keycloak-uncached

KEYCLOAK-6262 Incorporate new visual design from PatternFly

3/21/2018 6:47:33 AM

Changes

themes/pom.xml 2(+2 -0)

themes/src/main/resources-product/theme/rh-sso/login/resources/css/login.css 340(+0 -340)

Details

diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/auth/page/login/LoginActions.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/auth/page/login/LoginActions.java
index 73ec838..2c235fa 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/auth/page/login/LoginActions.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/auth/page/login/LoginActions.java
@@ -30,6 +30,9 @@ import static org.keycloak.testsuite.util.WaitUtils.waitUntilElement;
  */
 public class LoginActions extends AuthRealm {
 
+    @FindBy(id = "kc-page-title")
+    protected WebElement heading;
+
     @Override
     public UriBuilder createUriBuilder() {
         return super.createUriBuilder()
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/auth/page/login/LoginForm.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/auth/page/login/LoginForm.java
index ff2a570..824c79e 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/auth/page/login/LoginForm.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/auth/page/login/LoginForm.java
@@ -80,9 +80,6 @@ public class LoginForm extends Form {
     }
 
     public void login() {
-        labelPassword.click(); // This is a nasty trick for IE; As IE was "moving the cursor" towards the login button
-                               // it opened the internationalization menu (when present) and then clicked
-                               // one of the languages instead of the Login button
         clickLink(loginButton);
     }
 
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/auth/page/login/TermsAndConditions.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/auth/page/login/TermsAndConditions.java
index 9adb530..e1dbd1b 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/auth/page/login/TermsAndConditions.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/auth/page/login/TermsAndConditions.java
@@ -16,7 +16,6 @@
  */
 package org.keycloak.testsuite.auth.page.login;
 
-import org.keycloak.testsuite.util.UIUtils;
 import org.keycloak.testsuite.util.WaitUtils;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
@@ -37,7 +36,7 @@ public class TermsAndConditions extends LoginActions {
     
     @Override
     public boolean isCurrent() {
-        return UIUtils.currentTitleEquals("Terms and Conditions");
+        return heading.getText().equals("Terms and Conditions");
     }
 
     public void acceptTerms() {
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/auth/page/login/VerifyEmail.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/auth/page/login/VerifyEmail.java
index bb0d102..51863c5 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/auth/page/login/VerifyEmail.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/auth/page/login/VerifyEmail.java
@@ -19,27 +19,23 @@ package org.keycloak.testsuite.auth.page.login;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
 
-import static org.keycloak.testsuite.util.WaitUtils.waitUntilElement;
-
 /**
  *
  * @author <a href="mailto:vramik@redhat.com">Vlastislav Ramik</a>
  */
 public class VerifyEmail extends Authenticate {
 
-    @FindBy(xpath = "//div[@id='kc-form-wrapper']/p")
+    @FindBy(xpath = "//div[@id='kc-content-wrapper']/p[contains(@class, 'instruction')][1]")
     private WebElement instruction;
 
     @FindBy(id = "kc-error-message")
     private WebElement error;
 
     public String getInstructionMessage() {
-        waitUntilElement(instruction).is().present();
         return instruction.getText();
     }
 
     public String getErrorMessage() {
-        waitUntilElement(error).is().present();
         return error.getText();
     }
 }
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/console/page/fragment/Dropdown.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/console/page/fragment/Dropdown.java
index 6c5d4e1..80b98f8 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/console/page/fragment/Dropdown.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/console/page/fragment/Dropdown.java
@@ -5,9 +5,9 @@ import org.jboss.arquillian.test.api.ArquillianResource;
 import org.openqa.selenium.By;
 import org.openqa.selenium.WebDriver;
 import org.openqa.selenium.WebElement;
+import org.openqa.selenium.support.FindBy;
 
-import static org.keycloak.testsuite.util.URLUtils.navigateToUri;
-import static org.keycloak.testsuite.util.WaitUtils.waitUntilElement;
+import static org.keycloak.testsuite.util.UIUtils.clickLink;
 
 /**
  * @author Vaclav Muzikar <vmuzikar@redhat.com>
@@ -16,18 +16,18 @@ public class Dropdown {
     @Root
     private WebElement dropDownRoot; // MUST be .kc-dropdown
 
+    @FindBy(id = "kc-current-locale-link")
+    private WebElement localeLink;
+
     @ArquillianResource
     private WebDriver driver;
 
     public String getSelected() {
-        waitUntilElement(dropDownRoot).is().present();
-        WebElement element = dropDownRoot.findElement(By.xpath("./a"));
-        return element.getText();
+        return localeLink.getText();
     }
 
     public void selectByText(String text) {
-        waitUntilElement(dropDownRoot).is().present();
-        WebElement element = dropDownRoot.findElement(By.xpath("./ul/li/a[text()='" + text + "']"));
-        navigateToUri(element.getAttribute("href"), true); // TODO: move cursor to show the menu and then click the menu item
+        localeLink.click();
+        clickLink(dropDownRoot.findElement(By.xpath("./ul/li/a[text()='" + text + "']")));
     }
 }
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/page/LoginPasswordUpdatePage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/page/LoginPasswordUpdatePage.java
index 9f3f196..7979ac3 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/page/LoginPasswordUpdatePage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/page/LoginPasswordUpdatePage.java
@@ -19,6 +19,8 @@ package org.keycloak.testsuite.page;
 
 import org.jboss.arquillian.drone.api.annotation.Drone;
 import org.junit.Assert;
+import org.keycloak.testsuite.pages.PageUtils;
+import org.openqa.selenium.By;
 import org.openqa.selenium.WebDriver;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
@@ -55,9 +57,7 @@ public class LoginPasswordUpdatePage {
     }
 
     public void assertCurrent() {
-        String name = getClass().getSimpleName();
-        Assert.assertTrue("Expected " + name + " but was " + driver.getTitle() + " (" + driver.getCurrentUrl() + ")",
-                isCurrent());
+        Assert.assertEquals("Update password", PageUtils.getPageTitle(driver));
     }
 
     public void open() {
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/AbstractPage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/AbstractPage.java
index 2b1f789..424c620 100755
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/AbstractPage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/AbstractPage.java
@@ -21,6 +21,7 @@ import org.jboss.arquillian.test.api.ArquillianResource;
 import org.junit.Assert;
 import org.keycloak.common.util.KeycloakUriBuilder;
 import org.keycloak.testsuite.arquillian.SuiteContext;
+import org.openqa.selenium.By;
 import org.openqa.selenium.WebDriver;
 
 import java.net.URI;
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/ConsentPage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/ConsentPage.java
index 5110b32..3abfcfd 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/ConsentPage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/ConsentPage.java
@@ -41,7 +41,7 @@ public class ConsentPage extends AbstractPage {
 
     @Override
     public boolean isCurrent() {
-        return driver.getTitle().equalsIgnoreCase("grant access");
+        return PageUtils.getPageTitle(driver).contains("Grant Access to ");
     }
 
     @Override
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/ErrorPage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/ErrorPage.java
index fc1c078..f36afa7 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/ErrorPage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/ErrorPage.java
@@ -52,7 +52,7 @@ public class ErrorPage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle() != null && driver.getTitle().equals("We're sorry...");
+        return PageUtils.getPageTitle(driver) != null && PageUtils.getPageTitle(driver).equals("We're sorry...");
     }
 
     @Override
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/IdpConfirmLinkPage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/IdpConfirmLinkPage.java
index db64eff..c577499 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/IdpConfirmLinkPage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/IdpConfirmLinkPage.java
@@ -36,7 +36,7 @@ public class IdpConfirmLinkPage extends AbstractPage {
 
     @Override
     public boolean isCurrent() {
-        return driver.getTitle().equals("Account already exists");
+        return PageUtils.getPageTitle(driver).equals("Account already exists");
     }
 
     public String getMessage() {
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/IdpLinkEmailPage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/IdpLinkEmailPage.java
index 8ed8461..1080a44 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/IdpLinkEmailPage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/IdpLinkEmailPage.java
@@ -30,7 +30,7 @@ public class IdpLinkEmailPage extends AbstractPage {
 
     @Override
     public boolean isCurrent() {
-        return driver.getTitle().startsWith("Link ");
+        return PageUtils.getPageTitle(driver).startsWith("Link ");
     }
 
     @Override
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginConfigTotpPage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginConfigTotpPage.java
index f5183ac..2ee8350 100755
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginConfigTotpPage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginConfigTotpPage.java
@@ -49,7 +49,7 @@ public class LoginConfigTotpPage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Mobile Authenticator Setup");
+        return PageUtils.getPageTitle(driver).equals("Mobile Authenticator Setup");
     }
 
     public void open() {
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginExpiredPage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginExpiredPage.java
index e3ff938..d41e252 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginExpiredPage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginExpiredPage.java
@@ -42,7 +42,7 @@ public class LoginExpiredPage extends AbstractPage {
 
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Page has expired");
+        return PageUtils.getPageTitle(driver).equals("Page has expired");
     }
 
     public void open() {
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginPasswordResetPage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginPasswordResetPage.java
index 7d63b66..7496f03 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginPasswordResetPage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginPasswordResetPage.java
@@ -46,7 +46,7 @@ public class LoginPasswordResetPage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Forgot Your Password?");
+        return PageUtils.getPageTitle(driver).equals("Forgot Your Password?");
     }
 
     public void open() {
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginPasswordUpdatePage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginPasswordUpdatePage.java
index 5ea846b..0918518 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginPasswordUpdatePage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginPasswordUpdatePage.java
@@ -47,7 +47,7 @@ public class LoginPasswordUpdatePage extends LanguageComboboxAwarePage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Update password");
+        return PageUtils.getPageTitle(driver).equals("Update password");
     }
 
     public void open() {
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginRecoverUsernamePage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginRecoverUsernamePage.java
index 59b3ebc..d6c3d7e 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginRecoverUsernamePage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginRecoverUsernamePage.java
@@ -40,7 +40,7 @@ public class LoginRecoverUsernamePage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Forgot Your Username?");
+        return PageUtils.getPageTitle(driver).equals("Forgot Your Username?");
     }
 
     public void open() {
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginUpdateProfileEditUsernameAllowedPage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginUpdateProfileEditUsernameAllowedPage.java
index 6acce4d..c97ed46 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginUpdateProfileEditUsernameAllowedPage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginUpdateProfileEditUsernameAllowedPage.java
@@ -35,7 +35,7 @@ public class LoginUpdateProfileEditUsernameAllowedPage extends LoginUpdateProfil
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Update Account Information");
+        return PageUtils.getPageTitle(driver).equals("Update Account Information");
     }
 
     @Override
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginUpdateProfilePage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginUpdateProfilePage.java
index 239cfb9..08969cd 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginUpdateProfilePage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/LoginUpdateProfilePage.java
@@ -73,7 +73,7 @@ public class LoginUpdateProfilePage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Update Account Information");
+        return PageUtils.getPageTitle(driver).equals("Update Account Information");
     }
 
     @Override
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/OAuthGrantPage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/OAuthGrantPage.java
index cfb1f06..059b398 100755
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/OAuthGrantPage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/OAuthGrantPage.java
@@ -40,7 +40,7 @@ public class OAuthGrantPage extends LanguageComboboxAwarePage {
 
     @Override
     public boolean isCurrent() {
-        return driver.getTitle().equals("Grant Access");
+        return PageUtils.getPageTitle(driver).contains("Grant Access to ");
     }
 
     @Override
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/PageUtils.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/PageUtils.java
new file mode 100644
index 0000000..5612e5a
--- /dev/null
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/PageUtils.java
@@ -0,0 +1,12 @@
+package org.keycloak.testsuite.pages;
+
+import org.openqa.selenium.By;
+import org.openqa.selenium.WebDriver;
+
+public class PageUtils {
+
+    public static String getPageTitle(WebDriver driver) {
+        return driver.findElement(By.id("kc-page-title")).getText();
+    }
+
+}
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/RegisterPage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/RegisterPage.java
index 0fb07bf..fe75cba 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/RegisterPage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/RegisterPage.java
@@ -170,7 +170,7 @@ public class RegisterPage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Register with test");
+        return PageUtils.getPageTitle(driver).equals("Register");
     }
 
     @Override
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/TermsAndConditionsPage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/TermsAndConditionsPage.java
index e898176..6ca6bf2 100755
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/TermsAndConditionsPage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/TermsAndConditionsPage.java
@@ -31,7 +31,7 @@ public class TermsAndConditionsPage extends AbstractPage {
     private WebElement cancelButton;
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Terms and Conditions");
+        return PageUtils.getPageTitle(driver).equals("Terms and Conditions");
     }
 
     public void acceptTerms() {
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/UpdateAccountInformationPage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/UpdateAccountInformationPage.java
index b7b30ed..de24f2d 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/UpdateAccountInformationPage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/UpdateAccountInformationPage.java
@@ -52,7 +52,7 @@ public class UpdateAccountInformationPage extends AbstractPage {
 
     @Override
     public boolean isCurrent() {
-        return driver.getTitle().equalsIgnoreCase("update account information");
+        return PageUtils.getPageTitle(driver).equalsIgnoreCase("update account information");
     }
 
     @Override
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/ValidatePassworrdEmailResetPage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/ValidatePassworrdEmailResetPage.java
index 1f0d3af..2ffeb6f 100755
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/ValidatePassworrdEmailResetPage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/ValidatePassworrdEmailResetPage.java
@@ -50,7 +50,7 @@ public class ValidatePassworrdEmailResetPage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Forgot Your Password?");
+        return PageUtils.getPageTitle(driver).equals("Forgot Your Password?");
     }
 
     public void open() {
diff --git a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/VerifyEmailPage.java b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/VerifyEmailPage.java
index 5a969c1..ef05161 100644
--- a/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/VerifyEmailPage.java
+++ b/testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/pages/VerifyEmailPage.java
@@ -38,7 +38,7 @@ public class VerifyEmailPage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Email verification");
+        return PageUtils.getPageTitle(driver).equals("Email verification");
     }
 
     public void clickResendEmail() {
diff --git a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/account/custom/CustomAuthFlowOTPTest.java b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/account/custom/CustomAuthFlowOTPTest.java
index 969a577..d0d5c06 100644
--- a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/account/custom/CustomAuthFlowOTPTest.java
+++ b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/account/custom/CustomAuthFlowOTPTest.java
@@ -30,6 +30,7 @@ import org.keycloak.testsuite.admin.ApiUtil;
 import org.keycloak.testsuite.admin.Users;
 import org.keycloak.testsuite.auth.page.login.OneTimeCode;
 import org.keycloak.testsuite.pages.LoginConfigTotpPage;
+import org.keycloak.testsuite.pages.PageUtils;
 
 import javax.ws.rs.NotFoundException;
 import javax.ws.rs.core.Response;
@@ -384,7 +385,7 @@ public class CustomAuthFlowOTPTest extends AbstractCustomAccountManagementTest {
         //test OTP is required
         testRealmAccountManagementPage.navigateTo();
         testRealmLoginPage.form().login(testUser);
-        assertEquals(driver.getTitle(), "Mobile Authenticator Setup");
+        assertEquals(PageUtils.getPageTitle(driver), "Mobile Authenticator Setup");
 
         configureOTP();
         testRealmLoginPage.form().login(testUser);
diff --git a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/admin/UserTest.java b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/admin/UserTest.java
index a3d4df1..c08ecfd 100755
--- a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/admin/UserTest.java
+++ b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/admin/UserTest.java
@@ -59,6 +59,7 @@ import org.keycloak.testsuite.page.LoginPasswordUpdatePage;
 import org.keycloak.testsuite.pages.ErrorPage;
 import org.keycloak.testsuite.pages.InfoPage;
 import org.keycloak.testsuite.pages.LoginPage;
+import org.keycloak.testsuite.pages.PageUtils;
 import org.keycloak.testsuite.pages.ProceedPage;
 import org.keycloak.testsuite.runonserver.RunOnServerDeployment;
 import org.keycloak.testsuite.util.AdminEventPaths;
@@ -69,6 +70,7 @@ import org.keycloak.testsuite.util.OAuthClient;
 import org.keycloak.testsuite.util.RealmBuilder;
 import org.keycloak.testsuite.util.RoleBuilder;
 import org.keycloak.testsuite.util.UserBuilder;
+import org.openqa.selenium.By;
 import org.openqa.selenium.WebDriver;
 
 import javax.mail.MessagingException;
@@ -702,11 +704,11 @@ public class UserTest extends AbstractAdminTest {
 
         passwordUpdatePage.changePassword("new-pass", "new-pass");
 
-        assertEquals("Your account has been updated.", driver.getTitle());
+        assertEquals("Your account has been updated.", PageUtils.getPageTitle(driver));
 
         driver.navigate().to(link);
 
-        assertEquals("We're sorry...", driver.getTitle());
+        assertEquals("We're sorry...", PageUtils.getPageTitle(driver));
     }
 
     @Test
@@ -742,7 +744,7 @@ public class UserTest extends AbstractAdminTest {
             passwordUpdatePage.changePassword("new-pass" + i, "new-pass" + i);
             i++;
 
-            assertEquals("Your account has been updated.", driver.getTitle());
+            assertEquals("Your account has been updated.", PageUtils.getPageTitle(driver));
         }
 
         for (MimeMessage message : greenMail.getReceivedMessages()) {
@@ -787,7 +789,7 @@ public class UserTest extends AbstractAdminTest {
             passwordUpdatePage.changePassword("new-pass" + i, "new-pass" + i);
             i++;
 
-            assertEquals("Your account has been updated.", driver.getTitle());
+            assertEquals("Your account has been updated.", PageUtils.getPageTitle(driver));
         }
 
         for (MimeMessage message : greenMail.getReceivedMessages()) {
@@ -837,7 +839,7 @@ public class UserTest extends AbstractAdminTest {
 
         passwordUpdatePage.changePassword("new-pass", "new-pass");
 
-        assertEquals("Your account has been updated.", driver.getTitle());
+        assertEquals("Your account has been updated.", PageUtils.getPageTitle(driver));
     }
 
     @Test
@@ -939,11 +941,11 @@ public class UserTest extends AbstractAdminTest {
 
         passwordUpdatePage.changePassword("new-pass", "new-pass");
 
-        assertEquals("Your account has been updated.", driver.getTitle());
+        assertEquals("Your account has been updated.", PageUtils.getPageTitle(driver));
 
         driver.navigate().to(link);
 
-        assertEquals("We're sorry...", driver.getTitle());
+        assertEquals("We're sorry...", PageUtils.getPageTitle(driver));
     }
 
     @Test
@@ -1002,7 +1004,7 @@ public class UserTest extends AbstractAdminTest {
 
         passwordUpdatePage.changePassword("new-pass", "new-pass");
 
-        assertEquals("Your account has been updated.", driver.getTitle());
+        assertEquals("Your account has been updated.", driver.findElement(By.id("kc-page-title")).getText());
 
         String pageSource = driver.getPageSource();
 
@@ -1011,7 +1013,7 @@ public class UserTest extends AbstractAdminTest {
 
         driver.navigate().to(link);
 
-        assertEquals("We're sorry...", driver.getTitle());
+        assertEquals("We're sorry...", PageUtils.getPageTitle(driver));
     }
 
 
@@ -1209,7 +1211,7 @@ public class UserTest extends AbstractAdminTest {
 
         driver.navigate().to(accountUrl);
 
-        assertEquals("Log in to admin-client-test", driver.getTitle());
+        assertEquals("Log In", PageUtils.getPageTitle(driver));
 
         loginPage.login("user1", "password");
 
diff --git a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/AbstractBaseBrokerTest.java b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/AbstractBaseBrokerTest.java
index 1643070..09f289f 100644
--- a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/AbstractBaseBrokerTest.java
+++ b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/AbstractBaseBrokerTest.java
@@ -108,7 +108,7 @@ public abstract class AbstractBaseBrokerTest extends AbstractKeycloakTest {
         log.debug("Clicking social " + bc.getIDPAlias());
         accountLoginPage.clickSocial(bc.getIDPAlias());
 
-        waitForPage(driver, "log in to");
+        waitForPage(driver, "log in to", true);
 
         Assert.assertTrue("Driver should be on the provider realm page right now",
                 driver.getCurrentUrl().contains("/auth/realms/" + bc.providerRealmName() + "/"));
@@ -122,7 +122,7 @@ public abstract class AbstractBaseBrokerTest extends AbstractKeycloakTest {
     protected void logInAsUserInIDPForFirstTime() {
         logInAsUserInIDP();
 
-        waitForPage(driver, "update account information");
+        waitForPage(driver, "update account information", false);
 
         Assert.assertTrue(updateAccountInformationPage.isCurrent());
         Assert.assertTrue("We must be on correct realm right now",
@@ -152,7 +152,7 @@ public abstract class AbstractBaseBrokerTest extends AbstractKeycloakTest {
         try {
             Retry.execute(() -> {
                 try {
-                    waitForPage(driver, "log in to " + realm);
+                    waitForPage(driver, "log in to " + realm, true);
                 } catch (TimeoutException ex) {
                     driver.navigate().refresh();
                     log.debug("[Retriable] Timed out waiting for login page");
diff --git a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/AbstractBrokerTest.java b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/AbstractBrokerTest.java
index 8e59302..ab5ff26 100644
--- a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/AbstractBrokerTest.java
+++ b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/AbstractBrokerTest.java
@@ -111,7 +111,7 @@ public abstract class AbstractBrokerTest extends AbstractBaseBrokerTest {
         log.debug("Clicking social " + bc.getIDPAlias());
         accountLoginPage.clickSocial(bc.getIDPAlias());
 
-        waitForPage(driver, "log in to");
+        waitForPage(driver, "log in to", true);
 
         Assert.assertTrue("Driver should be on the provider realm page right now",
           driver.getCurrentUrl().contains("/auth/realms/" + bc.providerRealmName() + "/"));
@@ -119,7 +119,7 @@ public abstract class AbstractBrokerTest extends AbstractBaseBrokerTest {
         log.debug("Logging in");
         accountLoginPage.login(bc.getUserLogin(), bc.getUserPassword());
 
-        waitForPage(driver, "update account information");
+        waitForPage(driver, "update account information", false);
 
         updateAccountInformationPage.assertCurrent();
         Assert.assertTrue("We must be on correct realm right now",
@@ -158,7 +158,7 @@ public abstract class AbstractBrokerTest extends AbstractBaseBrokerTest {
         log.debug("Clicking social " + bc.getIDPAlias());
         accountLoginPage.clickSocial(bc.getIDPAlias());
 
-        waitForPage(driver, "log in to");
+        waitForPage(driver, "log in to", true);
 
         Assert.assertTrue("Driver should be on the provider realm page right now", driver.getCurrentUrl().contains("/auth/realms/" + bc.providerRealmName() + "/"));
 
@@ -193,7 +193,7 @@ public abstract class AbstractBrokerTest extends AbstractBaseBrokerTest {
             log.debug("Clicking social " + bc.getIDPAlias());
             accountLoginPage.clickSocial(bc.getIDPAlias());
 
-            waitForPage(driver, "log in to");
+            waitForPage(driver, "log in to", true);
 
             Assert.assertTrue("Driver should be on the provider realm page right now",
                     driver.getCurrentUrl().contains("/auth/realms/" + bc.providerRealmName() + "/"));
@@ -201,7 +201,7 @@ public abstract class AbstractBrokerTest extends AbstractBaseBrokerTest {
             log.debug("Logging in");
             accountLoginPage.login(bc.getUserLogin(), bc.getUserPassword());
 
-            waitForPage(driver, "update account information");
+            waitForPage(driver, "update account information", false);
 
             Assert.assertTrue(updateAccountInformationPage.isCurrent());
             Assert.assertTrue("We must be on correct realm right now",
@@ -211,7 +211,7 @@ public abstract class AbstractBrokerTest extends AbstractBaseBrokerTest {
             updateAccountInformationPage.updateAccountInformation("Firstname", "Lastname");
 
             //link account by email
-            waitForPage(driver, "account already exists");
+            waitForPage(driver, "account already exists", false);
             idpConfirmLinkPage.clickLinkAccount();
             
             String url = assertEmailAndGetUrl(MailServerConfiguration.FROM, USER_EMAIL, 
@@ -247,7 +247,7 @@ public abstract class AbstractBrokerTest extends AbstractBaseBrokerTest {
         driver.navigate().to(getAccountUrl(bc.consumerRealmName()));
 
         try {
-            waitForPage(driver, "log in to");
+            waitForPage(driver, "log in to", true);
         } catch (TimeoutException e) {
             log.debug(driver.getTitle());
             log.debug(driver.getPageSource());
@@ -269,7 +269,7 @@ public abstract class AbstractBrokerTest extends AbstractBaseBrokerTest {
         accountLoginPage.clickSocial(bc.getIDPAlias());
 
         try {
-            waitForPage(driver, "log in to");
+            waitForPage(driver, "log in to", true);
         } catch (TimeoutException e) {
             log.debug(driver.getTitle());
             log.debug(driver.getPageSource());
@@ -304,7 +304,7 @@ public abstract class AbstractBrokerTest extends AbstractBaseBrokerTest {
         log.debug("Clicking social " + bc.getIDPAlias());
         accountLoginPage.clickSocial(bc.getIDPAlias());
 
-        waitForPage(driver, "log in to");
+        waitForPage(driver, "log in to", true);
 
         Assert.assertTrue("Driver should be on the provider realm page right now",
                 driver.getCurrentUrl().contains("/auth/realms/" + bc.providerRealmName() + "/"));
@@ -314,10 +314,10 @@ public abstract class AbstractBrokerTest extends AbstractBaseBrokerTest {
 
         driver.manage().timeouts().pageLoadTimeout(30, TimeUnit.MINUTES);
 
-        waitForPage(driver, "grant access");
+        waitForPage(driver, "grant access", false);
         consentPage.cancel();
 
-        waitForPage(driver, "log in to");
+        waitForPage(driver, "log in to", true);
 
         // Revert consentRequired
         adminClient.realm(bc.providerRealmName())
@@ -422,7 +422,7 @@ public abstract class AbstractBrokerTest extends AbstractBaseBrokerTest {
         log.debug("Clicking social " + bc.getIDPAlias());
         accountLoginPage.clickSocial(bc.getIDPAlias());
 
-        waitForPage(driver, "sorry");
+        waitForPage(driver, "sorry", false);
         errorPage.assertCurrent();
         String link = errorPage.getBackToApplicationLink();
         Assert.assertTrue(link.endsWith("/auth/realms/consumer/account"));
diff --git a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/BrokerTestTools.java b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/BrokerTestTools.java
index a43d842..ff08b1a 100644
--- a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/BrokerTestTools.java
+++ b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/BrokerTestTools.java
@@ -11,6 +11,7 @@ import java.util.Collections;
 import java.util.List;
 import java.util.Map;
 
+import org.keycloak.testsuite.pages.PageUtils;
 import org.openqa.selenium.By;
 import org.openqa.selenium.WebDriver;
 import org.openqa.selenium.WebElement;
@@ -45,10 +46,13 @@ public class BrokerTestTools {
         return identityProviderRepresentation;
     }
 
-    public static void waitForPage(WebDriver driver, final String title) {
+    public static void waitForPage(WebDriver driver, final String title, final boolean isHtmlTitle) {
         WebDriverWait wait = new WebDriverWait(driver, 5);
 
-        ExpectedCondition<Boolean> condition = (WebDriver input) -> input.getTitle().toLowerCase().contains(title);
+        ExpectedCondition<Boolean> condition = (WebDriver input) -> isHtmlTitle ? input.getTitle().toLowerCase().contains(title) : PageUtils.getPageTitle(input).toLowerCase().contains(title);
+
+        System.out.println("WAIT FOR " + title);
+        System.out.println(driver.getPageSource());
 
         wait.until(condition);
     }
diff --git a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcOidcBrokerAcrParameterTest.java b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcOidcBrokerAcrParameterTest.java
index d21bd72..26b8c07 100644
--- a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcOidcBrokerAcrParameterTest.java
+++ b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcOidcBrokerAcrParameterTest.java
@@ -52,7 +52,7 @@ public class KcOidcBrokerAcrParameterTest extends AbstractBrokerTest {
         log.debug("Clicking social " + bc.getIDPAlias());
         accountLoginPage.clickSocial(bc.getIDPAlias());
 
-        waitForPage(driver, "log in to");
+        waitForPage(driver, "log in to", true);
 
         Assert.assertTrue("Driver should be on the provider realm page right now",
                 driver.getCurrentUrl().contains("/auth/realms/" + bc.providerRealmName() + "/"));
@@ -63,7 +63,7 @@ public class KcOidcBrokerAcrParameterTest extends AbstractBrokerTest {
         log.debug("Logging in");
         accountLoginPage.login(bc.getUserLogin(), bc.getUserPassword());
 
-        waitForPage(driver, "update account information");
+        waitForPage(driver, "update account information", false);
 
         updateAccountInformationPage.assertCurrent();
         Assert.assertTrue("We must be on correct realm right now",
diff --git a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcOidcBrokerLoginHintTest.java b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcOidcBrokerLoginHintTest.java
index 49ed362..b0ce697 100644
--- a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcOidcBrokerLoginHintTest.java
+++ b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcOidcBrokerLoginHintTest.java
@@ -73,7 +73,7 @@ public class KcOidcBrokerLoginHintTest extends AbstractBrokerTest {
         log.debug("Clicking social " + bc.getIDPAlias());
         accountLoginPage.clickSocial(bc.getIDPAlias());
 
-        waitForPage(driver, "log in to");
+        waitForPage(driver, "log in to", true);
 
         Assert.assertTrue("Driver should be on the provider realm page right now",
                 driver.getCurrentUrl().contains("/auth/realms/" + bc.providerRealmName() + "/"));
@@ -84,7 +84,7 @@ public class KcOidcBrokerLoginHintTest extends AbstractBrokerTest {
         log.debug("Logging in");
         accountLoginPage.login(bc.getUserPassword());
 
-        waitForPage(driver, "update account information");
+        waitForPage(driver, "update account information", false);
 
         updateAccountInformationPage.assertCurrent();
         Assert.assertTrue("We must be on correct realm right now",
diff --git a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcOidcBrokerNoLoginHintTest.java b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcOidcBrokerNoLoginHintTest.java
index d812ea4..843b390 100644
--- a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcOidcBrokerNoLoginHintTest.java
+++ b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcOidcBrokerNoLoginHintTest.java
@@ -44,7 +44,7 @@ public class KcOidcBrokerNoLoginHintTest extends KcOidcBrokerLoginHintTest {
         log.debug("Clicking social " + bc.getIDPAlias());
         accountLoginPage.clickSocial(bc.getIDPAlias());
 
-        waitForPage(driver, "log in to");
+        waitForPage(driver, "log in to", true);
 
         Assert.assertTrue("Driver should be on the provider realm page right now",
                 driver.getCurrentUrl().contains("/auth/realms/" + bc.providerRealmName() + "/"));
@@ -55,7 +55,7 @@ public class KcOidcBrokerNoLoginHintTest extends KcOidcBrokerLoginHintTest {
         log.debug("Logging in");
         accountLoginPage.login(bc.getUserLogin(), bc.getUserPassword());
 
-        waitForPage(driver, "update account information");
+        waitForPage(driver, "update account information", false);
 
         updateAccountInformationPage.assertCurrent();
         Assert.assertTrue("We must be on correct realm right now",
diff --git a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcOidcBrokerPromptParameterTest.java b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcOidcBrokerPromptParameterTest.java
index bf85af8..c2ec5d0 100644
--- a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcOidcBrokerPromptParameterTest.java
+++ b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcOidcBrokerPromptParameterTest.java
@@ -55,7 +55,7 @@ public class KcOidcBrokerPromptParameterTest extends AbstractBrokerTest {
         log.debug("Clicking social " + bc.getIDPAlias());
         accountLoginPage.clickSocial(bc.getIDPAlias());
 
-        waitForPage(driver, "log in to");
+        waitForPage(driver, "log in to", true);
 
         Assert.assertTrue("Driver should be on the provider realm page right now",
                 driver.getCurrentUrl().contains("/auth/realms/" + bc.providerRealmName() + "/"));
@@ -69,7 +69,7 @@ public class KcOidcBrokerPromptParameterTest extends AbstractBrokerTest {
         log.debug("Logging in");
         accountLoginPage.login(bc.getUserLogin(), bc.getUserPassword());
 
-        waitForPage(driver, "update account information");
+        waitForPage(driver, "update account information", false);
 
         updateAccountInformationPage.assertCurrent();
         Assert.assertTrue("We must be on correct realm right now",
diff --git a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcSamlIdPInitiatedSsoTest.java b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcSamlIdPInitiatedSsoTest.java
index f1f5bf1..1ebdd0f 100644
--- a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcSamlIdPInitiatedSsoTest.java
+++ b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/broker/KcSamlIdPInitiatedSsoTest.java
@@ -14,6 +14,7 @@ import org.keycloak.saml.processing.core.saml.v2.common.SAMLDocumentHolder;
 import org.keycloak.testsuite.AbstractKeycloakTest;
 import org.keycloak.testsuite.Assert;
 import org.keycloak.testsuite.pages.LoginPage;
+import org.keycloak.testsuite.pages.PageUtils;
 import org.keycloak.testsuite.pages.UpdateAccountInformationPage;
 import org.keycloak.testsuite.util.IOUtil;
 
@@ -102,7 +103,7 @@ public class KcSamlIdPInitiatedSsoTest extends AbstractKeycloakTest {
     public void testProviderIdpInitiatedLogin() throws Exception {
         driver.navigate().to(getSamlIdpInitiatedUrl(REALM_PROV_NAME, "samlbroker"));
 
-        waitForPage("log in to");
+        waitForPage("log in to", true);
 
         Assert.assertThat("Driver should be on the provider realm page right now",
                 driver.getCurrentUrl(), containsString("/auth/realms/" + REALM_PROV_NAME + "/"));
@@ -110,7 +111,7 @@ public class KcSamlIdPInitiatedSsoTest extends AbstractKeycloakTest {
         log.debug("Logging in");
         accountLoginPage.login(PROVIDER_REALM_USER_NAME, PROVIDER_REALM_USER_PASSWORD);
 
-        waitForPage("update account information");
+        waitForPage("update account information", false);
 
         Assert.assertTrue(updateAccountInformationPage.isCurrent());
         Assert.assertThat("We must be on consumer realm right now",
@@ -144,10 +145,10 @@ public class KcSamlIdPInitiatedSsoTest extends AbstractKeycloakTest {
         return getAuthRoot() + "/auth/realms/" + realmName + "/broker/saml-leaf/endpoint";
     }
 
-    private void waitForPage(final String title) {
+    private void waitForPage(final String title, final boolean htmlTitle) {
         WebDriverWait wait = new WebDriverWait(driver, 5);
 
-        ExpectedCondition<Boolean> condition = (WebDriver input) -> input.getTitle().toLowerCase().contains(title);
+        ExpectedCondition<Boolean> condition = (WebDriver input) -> htmlTitle ? input.getTitle().toLowerCase().contains(title) : PageUtils.getPageTitle(input).toLowerCase().contains(title);
 
         wait.until(condition);
     }
diff --git a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/oauth/AuthorizationCodeTest.java b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/oauth/AuthorizationCodeTest.java
index 7ab9512..f588207 100755
--- a/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/oauth/AuthorizationCodeTest.java
+++ b/testsuite/integration-arquillian/tests/base/src/test/java/org/keycloak/testsuite/oauth/AuthorizationCodeTest.java
@@ -30,6 +30,7 @@ import org.keycloak.protocol.oidc.utils.OIDCResponseMode;
 import org.keycloak.representations.idm.RealmRepresentation;
 import org.keycloak.testsuite.AbstractKeycloakTest;
 import org.keycloak.testsuite.AssertEvents;
+import org.keycloak.testsuite.pages.PageUtils;
 import org.keycloak.testsuite.util.ClientManager;
 import org.keycloak.testsuite.util.OAuthClient;
 import org.openqa.selenium.By;
@@ -83,7 +84,7 @@ public class AuthorizationCodeTest extends AbstractKeycloakTest {
 
         oauth.doLogin("test-user@localhost", "password");
 
-        String title = driver.getTitle();
+        String title = PageUtils.getPageTitle(driver);
         Assert.assertEquals("Success code", title);
 
         String code = driver.findElement(By.id(OAuth2Constants.CODE)).getAttribute("value");
diff --git a/testsuite/integration-arquillian/tests/other/console/src/test/java/org/keycloak/testsuite/console/authentication/RequiredActionsTest.java b/testsuite/integration-arquillian/tests/other/console/src/test/java/org/keycloak/testsuite/console/authentication/RequiredActionsTest.java
index d0c9068..141145d 100644
--- a/testsuite/integration-arquillian/tests/other/console/src/test/java/org/keycloak/testsuite/console/authentication/RequiredActionsTest.java
+++ b/testsuite/integration-arquillian/tests/other/console/src/test/java/org/keycloak/testsuite/console/authentication/RequiredActionsTest.java
@@ -23,6 +23,7 @@ import org.junit.Test;
 import org.keycloak.representations.idm.UserRepresentation;
 import org.keycloak.testsuite.Assert;
 import org.keycloak.testsuite.auth.page.login.Registration;
+import org.keycloak.testsuite.auth.page.login.TermsAndConditions;
 import org.keycloak.testsuite.console.AbstractConsoleTest;
 import org.keycloak.testsuite.console.page.authentication.RequiredActions;
 import org.keycloak.testsuite.console.page.realm.LoginSettings;
@@ -46,6 +47,9 @@ public class RequiredActionsTest extends AbstractConsoleTest {
     @Page
     private Registration testRealmRegistrationPage;
 
+    @Page
+    private TermsAndConditions termsAndConditionsPage;
+
     @Override
     public void setDefaultPageUriParameters() {
         super.setDefaultPageUriParameters();
@@ -69,7 +73,7 @@ public class RequiredActionsTest extends AbstractConsoleTest {
 
         registerTestUser();
 
-        driver.findElement(By.xpath("//div[@id='kc-header-wrapper' and text()[contains(.,'Terms and Conditions')]]"));
+        Assert.assertTrue(termsAndConditionsPage.isCurrent());
     }
 
     @Test
@@ -129,7 +133,7 @@ public class RequiredActionsTest extends AbstractConsoleTest {
 
         registerTestUser();
 
-        driver.findElement(By.xpath("//div[@id='kc-header-wrapper' and text()[contains(.,'Mobile Authenticator Setup')]]"));
+        Assert.assertTrue(driver.findElement(By.id("kc-page-title")).getText().equals("Mobile Authenticator Setup"));
     }
 
     private void allowTestRealmUserRegistration() {
diff --git a/testsuite/integration-arquillian/tests/other/console/src/test/java/org/keycloak/testsuite/console/users/RequiredUserActionsTest.java b/testsuite/integration-arquillian/tests/other/console/src/test/java/org/keycloak/testsuite/console/users/RequiredUserActionsTest.java
index 787303f..14d9ceb 100644
--- a/testsuite/integration-arquillian/tests/other/console/src/test/java/org/keycloak/testsuite/console/users/RequiredUserActionsTest.java
+++ b/testsuite/integration-arquillian/tests/other/console/src/test/java/org/keycloak/testsuite/console/users/RequiredUserActionsTest.java
@@ -4,6 +4,7 @@ import org.jboss.arquillian.graphene.page.Page;
 import org.junit.Before;
 import org.junit.Test;
 import org.keycloak.testsuite.auth.page.account.Account;
+import org.keycloak.testsuite.auth.page.login.TermsAndConditions;
 import org.keycloak.testsuite.auth.page.login.UpdateAccount;
 import org.keycloak.testsuite.auth.page.login.UpdatePassword;
 import org.keycloak.testsuite.console.page.authentication.RequiredActions;
@@ -13,9 +14,12 @@ import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
 
 import static org.jboss.arquillian.graphene.Graphene.waitGui;
+import static org.junit.Assert.assertTrue;
 import static org.keycloak.representations.idm.CredentialRepresentation.PASSWORD;
 import static org.keycloak.testsuite.auth.page.AuthRealm.TEST;
-import static org.keycloak.testsuite.model.RequiredUserAction.*;
+import static org.keycloak.testsuite.model.RequiredUserAction.TERMS_AND_CONDITIONS;
+import static org.keycloak.testsuite.model.RequiredUserAction.UPDATE_PASSWORD;
+import static org.keycloak.testsuite.model.RequiredUserAction.UPDATE_PROFILE;
 import static org.keycloak.testsuite.util.URLAssert.assertCurrentUrlStartsWith;
 
 /**
@@ -39,6 +43,9 @@ public class RequiredUserActionsTest extends AbstractUserTest {
     @Page
     private RequiredActions requiredActionsPage;
 
+    @Page
+    private TermsAndConditions termsAndConditionsPage;
+
     @FindBy(css = "kc-feedback-text")
     protected WebElement feedbackText;
 
@@ -134,7 +141,7 @@ public class RequiredUserActionsTest extends AbstractUserTest {
 
         testRealmLoginPage.form().login(testUser);
 
-        driver.findElement(By.xpath("//div[@id='kc-header-wrapper' and text()[contains(.,'Terms and Conditions')]]"));
+        assertTrue(termsAndConditionsPage.isCurrent());
     }
 
 
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/helper/adapter/SamlAdapterTestStrategy.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/helper/adapter/SamlAdapterTestStrategy.java
index 8b28eb4..f25156a 100755
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/helper/adapter/SamlAdapterTestStrategy.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/helper/adapter/SamlAdapterTestStrategy.java
@@ -48,6 +48,7 @@ import org.keycloak.saml.common.constants.JBossSAMLURIConstants;
 import org.keycloak.saml.processing.core.saml.v2.constants.X500SAMLProfileConstants;
 import org.keycloak.services.managers.RealmManager;
 import org.keycloak.testsuite.KeycloakServer;
+import org.keycloak.testsuite.PageUtils;
 import org.keycloak.testsuite.adapter.servlet.SamlSPFacade;
 import org.keycloak.testsuite.pages.InputPage;
 import org.keycloak.testsuite.pages.LoginPage;
@@ -582,7 +583,7 @@ public class SamlAdapterTestStrategy extends ExternalResource {
         driver.navigate().to(APP_SERVER_BASE_URL + "/bad-client-sales-post-sig/");
         System.out.println(driver.getCurrentUrl());
         Assert.assertTrue(driver.getCurrentUrl().startsWith(AUTH_SERVER_URL + "/realms/demo/protocol/saml"));
-        assertEquals(driver.getTitle(), "We're sorry...");
+        assertEquals(PageUtils.getPageTitle(driver), "We're sorry...");
 
     }
     public static interface CheckAuthError {
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/AbstractPage.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/AbstractPage.java
index 7a57830..7f9d4d4 100755
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/AbstractPage.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/AbstractPage.java
@@ -17,6 +17,7 @@
 package org.keycloak.testsuite.pages;
 
 import org.junit.Assert;
+import org.keycloak.testsuite.PageUtils;
 import org.keycloak.testsuite.rule.WebResource;
 import org.openqa.selenium.WebDriver;
 
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/ErrorPage.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/ErrorPage.java
index b3a9298..0def01b 100644
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/ErrorPage.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/ErrorPage.java
@@ -17,6 +17,7 @@
 package org.keycloak.testsuite.pages;
 
 import org.keycloak.testsuite.OAuthClient;
+import org.keycloak.testsuite.PageUtils;
 import org.keycloak.testsuite.rule.WebResource;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
@@ -44,7 +45,7 @@ public class ErrorPage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle() != null && driver.getTitle().equals("We're sorry...");
+        return driver.getTitle() != null && PageUtils.getPageTitle(driver).equals("We're sorry...");
     }
 
     @Override
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/IdpConfirmLinkPage.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/IdpConfirmLinkPage.java
index db64eff..5912bf4 100644
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/IdpConfirmLinkPage.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/IdpConfirmLinkPage.java
@@ -17,6 +17,7 @@
 
 package org.keycloak.testsuite.pages;
 
+import org.keycloak.testsuite.PageUtils;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
 
@@ -36,7 +37,7 @@ public class IdpConfirmLinkPage extends AbstractPage {
 
     @Override
     public boolean isCurrent() {
-        return driver.getTitle().equals("Account already exists");
+        return PageUtils.getPageTitle(driver).equals("Account already exists");
     }
 
     public String getMessage() {
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/IdpLinkEmailPage.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/IdpLinkEmailPage.java
index e6bb660..3d03b35 100644
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/IdpLinkEmailPage.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/IdpLinkEmailPage.java
@@ -17,6 +17,7 @@
 
 package org.keycloak.testsuite.pages;
 
+import org.keycloak.testsuite.PageUtils;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
 
@@ -36,7 +37,7 @@ public class IdpLinkEmailPage extends AbstractPage {
 
     @Override
     public boolean isCurrent() {
-        return driver.getTitle().startsWith("Link ");
+        return PageUtils.getPageTitle(driver).startsWith("Link ");
     }
 
     public void clickResendEmail() {
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginConfigTotpPage.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginConfigTotpPage.java
index da289f8..e11fcab 100755
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginConfigTotpPage.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginConfigTotpPage.java
@@ -16,6 +16,7 @@
  */
 package org.keycloak.testsuite.pages;
 
+import org.keycloak.testsuite.PageUtils;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
 
@@ -43,7 +44,7 @@ public class LoginConfigTotpPage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Mobile Authenticator Setup");
+        return PageUtils.getPageTitle(driver).equals("Mobile Authenticator Setup");
     }
 
     public void open() {
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginExpiredPage.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginExpiredPage.java
index e3ff938..0d5b5b4 100644
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginExpiredPage.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginExpiredPage.java
@@ -17,6 +17,7 @@
 
 package org.keycloak.testsuite.pages;
 
+import org.keycloak.testsuite.PageUtils;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
 
@@ -42,7 +43,7 @@ public class LoginExpiredPage extends AbstractPage {
 
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Page has expired");
+        return PageUtils.getPageTitle(driver).equals("Page has expired");
     }
 
     public void open() {
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginPasswordResetPage.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginPasswordResetPage.java
index 7d63b66..0fbb945 100644
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginPasswordResetPage.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginPasswordResetPage.java
@@ -16,6 +16,7 @@
  */
 package org.keycloak.testsuite.pages;
 
+import org.keycloak.testsuite.PageUtils;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
 
@@ -46,7 +47,7 @@ public class LoginPasswordResetPage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Forgot Your Password?");
+        return PageUtils.getPageTitle(driver).equals("Forgot Your Password?");
     }
 
     public void open() {
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginPasswordUpdatePage.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginPasswordUpdatePage.java
index 93d203d..871186f 100644
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginPasswordUpdatePage.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginPasswordUpdatePage.java
@@ -16,6 +16,7 @@
  */
 package org.keycloak.testsuite.pages;
 
+import org.keycloak.testsuite.PageUtils;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
 
@@ -44,7 +45,7 @@ public class LoginPasswordUpdatePage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Update password");
+        return PageUtils.getPageTitle(driver).equals("Update password");
     }
 
     public void open() {
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginRecoverUsernamePage.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginRecoverUsernamePage.java
index 59b3ebc..a02a3a6 100644
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginRecoverUsernamePage.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginRecoverUsernamePage.java
@@ -16,6 +16,7 @@
  */
 package org.keycloak.testsuite.pages;
 
+import org.keycloak.testsuite.PageUtils;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
 
@@ -40,7 +41,7 @@ public class LoginRecoverUsernamePage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Forgot Your Username?");
+        return PageUtils.getPageTitle(driver).equals("Forgot Your Username?");
     }
 
     public void open() {
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginTotpPage.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginTotpPage.java
index f58540b..cddcf29 100755
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginTotpPage.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginTotpPage.java
@@ -56,14 +56,12 @@ public class LoginTotpPage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        if (driver.getTitle().startsWith("Log in to ")) {
-            try {
-                driver.findElement(By.id("totp"));
-                return true;
-            } catch (Throwable t) {
-            }
+        try {
+            driver.findElement(By.id("totp"));
+            return true;
+        } catch (Throwable t) {
+            return false;
         }
-        return false;
     }
 
     @Override
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginUpdateProfileEditUsernameAllowedPage.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginUpdateProfileEditUsernameAllowedPage.java
index 6acce4d..d32b1b0 100644
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginUpdateProfileEditUsernameAllowedPage.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginUpdateProfileEditUsernameAllowedPage.java
@@ -16,6 +16,7 @@
  */
 package org.keycloak.testsuite.pages;
 
+import org.keycloak.testsuite.PageUtils;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
 
@@ -35,7 +36,7 @@ public class LoginUpdateProfileEditUsernameAllowedPage extends LoginUpdateProfil
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Update Account Information");
+        return PageUtils.getPageTitle(driver).equals("Update Account Information");
     }
 
     @Override
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginUpdateProfilePage.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginUpdateProfilePage.java
index 17a2ed7..5faf48a 100644
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginUpdateProfilePage.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/LoginUpdateProfilePage.java
@@ -16,6 +16,7 @@
  */
 package org.keycloak.testsuite.pages;
 
+import org.keycloak.testsuite.PageUtils;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
 
@@ -66,7 +67,7 @@ public class LoginUpdateProfilePage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Update Account Information");
+        return PageUtils.getPageTitle(driver).equals("Update Account Information");
     }
 
     @Override
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/OAuthGrantPage.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/OAuthGrantPage.java
index 1a550ec..ca6819c 100755
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/OAuthGrantPage.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/OAuthGrantPage.java
@@ -16,6 +16,7 @@
  */
 package org.keycloak.testsuite.pages;
 
+import org.keycloak.testsuite.PageUtils;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
 
@@ -40,7 +41,7 @@ public class OAuthGrantPage extends AbstractPage {
 
     @Override
     public boolean isCurrent() {
-        return driver.getTitle().equals("Grant Access");
+        return PageUtils.getPageTitle(driver).startsWith("Grant Access to ");
     }
 
     @Override
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/RegisterPage.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/RegisterPage.java
index 506889e..b6bfba1 100644
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/RegisterPage.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/RegisterPage.java
@@ -17,6 +17,7 @@
 package org.keycloak.testsuite.pages;
 
 import org.junit.Assert;
+import org.keycloak.testsuite.PageUtils;
 import org.openqa.selenium.NoSuchElementException;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
@@ -162,7 +163,7 @@ public class RegisterPage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Register with test");
+        return PageUtils.getPageTitle(driver).equals("Register");
     }
 
     @Override
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/TermsAndConditionsPage.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/TermsAndConditionsPage.java
index e898176..22712c9 100755
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/TermsAndConditionsPage.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/TermsAndConditionsPage.java
@@ -16,6 +16,7 @@
  */
 package org.keycloak.testsuite.pages;
 
+import org.keycloak.testsuite.PageUtils;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
 
@@ -31,7 +32,7 @@ public class TermsAndConditionsPage extends AbstractPage {
     private WebElement cancelButton;
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Terms and Conditions");
+        return PageUtils.getPageTitle(driver).equals("Terms and Conditions");
     }
 
     public void acceptTerms() {
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/ValidatePassworrdEmailResetPage.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/ValidatePassworrdEmailResetPage.java
index 1f0d3af..99660b9 100755
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/ValidatePassworrdEmailResetPage.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/ValidatePassworrdEmailResetPage.java
@@ -16,6 +16,7 @@
  */
 package org.keycloak.testsuite.pages;
 
+import org.keycloak.testsuite.PageUtils;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
 
@@ -50,7 +51,7 @@ public class ValidatePassworrdEmailResetPage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Forgot Your Password?");
+        return PageUtils.getPageTitle(driver).equals("Forgot Your Password?");
     }
 
     public void open() {
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/VerifyEmailPage.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/VerifyEmailPage.java
index 8521f5e..ccf603e 100644
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/VerifyEmailPage.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/pages/VerifyEmailPage.java
@@ -17,6 +17,7 @@
 package org.keycloak.testsuite.pages;
 
 import org.keycloak.testsuite.OAuthClient;
+import org.keycloak.testsuite.PageUtils;
 import org.keycloak.testsuite.rule.WebResource;
 import org.openqa.selenium.WebElement;
 import org.openqa.selenium.support.FindBy;
@@ -38,7 +39,7 @@ public class VerifyEmailPage extends AbstractPage {
     }
 
     public boolean isCurrent() {
-        return driver.getTitle().equals("Email verification");
+        return PageUtils.getPageTitle(driver).equals("Email verification");
     }
 
     public void clickResendEmail() {
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/PageUtils.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/PageUtils.java
new file mode 100644
index 0000000..f5157ca
--- /dev/null
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/PageUtils.java
@@ -0,0 +1,12 @@
+package org.keycloak.testsuite;
+
+import org.openqa.selenium.By;
+import org.openqa.selenium.WebDriver;
+
+public class PageUtils {
+
+    public static String getPageTitle(WebDriver driver) {
+        return driver.findElement(By.id("kc-page-title")).getText();
+    }
+
+}
diff --git a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/saml/SamlPicketlinkSPTest.java b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/saml/SamlPicketlinkSPTest.java
index e62b6db..023003c 100755
--- a/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/saml/SamlPicketlinkSPTest.java
+++ b/testsuite/integration-deprecated/src/test/java/org/keycloak/testsuite/saml/SamlPicketlinkSPTest.java
@@ -48,6 +48,7 @@ import org.keycloak.saml.processing.api.saml.v2.response.SAML2Response;
 import org.keycloak.saml.processing.core.saml.v2.constants.X500SAMLProfileConstants;
 import org.keycloak.saml.processing.web.util.PostBindingUtil;
 import org.keycloak.services.managers.RealmManager;
+import org.keycloak.testsuite.PageUtils;
 import org.keycloak.testsuite.pages.LoginPage;
 import org.keycloak.testsuite.rule.KeycloakRule;
 import org.keycloak.testsuite.rule.WebResource;
@@ -482,7 +483,7 @@ public class SamlPicketlinkSPTest {
     public void testPostBadClientSignature() {
         driver.navigate().to("http://localhost:8081/bad-client-sales-post-sig/");
         Assert.assertEquals(driver.getCurrentUrl(), "http://localhost:8081/auth/realms/demo/protocol/saml");
-        Assert.assertEquals(driver.getTitle(), "We're sorry...");
+        Assert.assertEquals(PageUtils.getPageTitle(driver), "We're sorry...");
 
     }
 

themes/pom.xml 2(+2 -0)

diff --git a/themes/pom.xml b/themes/pom.xml
index 53000bd..b3f7f10 100755
--- a/themes/pom.xml
+++ b/themes/pom.xml
@@ -217,6 +217,7 @@
                                                 <exclude>**/src/**</exclude>
                                                 <exclude>**/test/**</exclude>
                                                 <exclude>**/tests/**</exclude>
+                                                <exclude>**/_config.yml</exclude>
                                                 <exclude>**/api.md</exclude>
                                                 <exclude>**/AUTHORS.txt</exclude>
                                                 <exclude>**/CHANGELOG.md</exclude>
@@ -224,6 +225,7 @@
                                                 <exclude>**/HELP-US-OUT.txt</exclude>
                                                 <exclude>**/README.md</exclude>
                                                 <exclude>**/Gruntfile.js</exclude>
+                                                <exclude>**/Gemfile*</exclude>
                                                 <exclude>**/index.js</exclude>
                                                 <exclude>**/.*</exclude>
                                             </excludes>
diff --git a/themes/src/main/node_modules/patternfly/dist/css/patternfly.css b/themes/src/main/node_modules/patternfly/dist/css/patternfly.css
index a6a6bfb..82499f6 100644
--- a/themes/src/main/node_modules/patternfly/dist/css/patternfly.css
+++ b/themes/src/main/node_modules/patternfly/dist/css/patternfly.css
@@ -9147,7 +9147,7 @@ button.close {
 }
 .breadcrumb > li + li:before {
   color: #9c9c9c;
-  content: "\f101";
+  content: "\f105";
   font-family: "FontAwesome";
   font-size: 11px;
   padding: 0 9px 0 7px;
@@ -9799,7 +9799,7 @@ fieldset[disabled] .pager li > span.active {
   background: #f5f5f5;
   box-shadow: none;
   color: #8b8d8f;
-  cursor: default;
+  cursor: not-allowed;
 }
 .pager .next > a > .i,
 .pager .next > span > .i {
@@ -9939,7 +9939,7 @@ fieldset[disabled] .pagination > li > span.active {
 .pagination > .disabled > a:hover,
 .pagination > .disabled > a:focus {
   box-shadow: none;
-  cursor: default;
+  cursor: not-allowed;
   background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
   background-repeat: repeat-x;
   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
diff --git a/themes/src/main/node_modules/patternfly/dist/css/patternfly.css.map b/themes/src/main/node_modules/patternfly/dist/css/patternfly.css.map
index 187bbae..716927b 100644
--- a/themes/src/main/node_modules/patternfly/dist/css/patternfly.css.map
+++ b/themes/src/main/node_modules/patternfly/dist/css/patternfly.css.map
@@ -1 +1 @@
-{"version":3,"sources":["src/less/fonts.less","node_modules/bootstrap/less/normalize.less","node_modules/bootstrap/less/print.less","node_modules/bootstrap/less/glyphicons.less","node_modules/bootstrap/less/scaffolding.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","src/less/variables.less","node_modules/bootstrap/less/mixins/tab-focus.less","node_modules/bootstrap/less/thumbnails.less","node_modules/bootstrap/less/carousel.less","node_modules/bootstrap/less/mixins/image.less","node_modules/bootstrap/less/type.less","node_modules/bootstrap/less/mixins/text-emphasis.less","node_modules/bootstrap/less/mixins/background-variant.less","node_modules/bootstrap/less/mixins/text-overflow.less","node_modules/bootstrap/less/code.less","node_modules/bootstrap/less/grid.less","node_modules/bootstrap/less/mixins/grid.less","node_modules/bootstrap/less/mixins/grid-framework.less","node_modules/bootstrap/less/tables.less","node_modules/bootstrap/less/mixins/table-row.less","node_modules/bootstrap/less/forms.less","node_modules/bootstrap/less/mixins/forms.less","src/less/bootstrap-mixin-overrides.less","node_modules/bootstrap/less/buttons.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap/less/button-groups.less","node_modules/bootstrap/less/component-animations.less","node_modules/bootstrap/less/dropdowns.less","node_modules/bootstrap/less/mixins/nav-divider.less","node_modules/bootstrap/less/mixins/reset-filter.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/input-groups.less","node_modules/bootstrap/less/navs.less","node_modules/bootstrap/less/navbar.less","node_modules/bootstrap/less/mixins/nav-vertical-align.less","node_modules/bootstrap/less/utilities.less","node_modules/font-awesome/less/bordered-pulled.less","node_modules/bootstrap/less/breadcrumbs.less","node_modules/bootstrap/less/pagination.less","node_modules/bootstrap/less/mixins/pagination.less","node_modules/bootstrap/less/pager.less","node_modules/bootstrap/less/labels.less","node_modules/bootstrap/less/mixins/labels.less","node_modules/bootstrap/less/badges.less","node_modules/bootstrap/less/jumbotron.less","node_modules/bootstrap/less/alerts.less","node_modules/bootstrap/less/mixins/alerts.less","node_modules/bootstrap/less/progress-bars.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/progress-bar.less","node_modules/bootstrap/less/media.less","node_modules/bootstrap/less/list-group.less","node_modules/bootstrap/less/mixins/list-group.less","node_modules/bootstrap/less/panels.less","node_modules/bootstrap/less/mixins/panels.less","node_modules/bootstrap/less/responsive-embed.less","node_modules/bootstrap/less/wells.less","node_modules/bootstrap/less/close.less","node_modules/bootstrap/less/modals.less","node_modules/bootstrap/less/tooltip.less","node_modules/bootstrap/less/mixins/reset-text.less","node_modules/bootstrap/less/popovers.less","node_modules/bootstrap/less/mixins/clearfix.less","node_modules/bootstrap/less/mixins/center-block.less","node_modules/bootstrap/less/mixins/hide-text.less","node_modules/bootstrap/less/responsive-utilities.less","node_modules/bootstrap/less/mixins/responsive-visibility.less","node_modules/font-awesome/less/path.less","node_modules/font-awesome/less/core.less","node_modules/font-awesome/less/larger.less","node_modules/font-awesome/less/fixed-width.less","node_modules/font-awesome/less/list.less","node_modules/font-awesome/less/animated.less","node_modules/font-awesome/less/rotated-flipped.less","node_modules/font-awesome/less/mixins.less","node_modules/font-awesome/less/stacked.less","node_modules/font-awesome/less/icons.less","node_modules/font-awesome/less/variables.less","node_modules/font-awesome/less/screen-reader.less","src/less/mixins.less","src/less/alerts.less","src/less/badges.less","src/less/breadcrumbs.less","src/less/buttons.less","src/less/dropdowns.less","src/less/forms.less","src/less/labels.less","src/less/list-group.less","src/less/modals.less","src/less/pager.less","src/less/pagination.less","src/less/panels.less","src/less/popovers.less","src/less/progress-bars.less","src/less/tables.less","src/less/tabs.less","src/less/tooltip.less","src/less/type.less"],"names":[],"mappings":"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ACA,YAAA;IACA,iBAAA;IACA,eAAA;;EARJ,iBAUE;EAVF,iBAWE;IACE,kBAAA;;EAZJ,iBAcE;EAdF,iBAeE;IACE,mBAAA;;EAKJ;IACE,SAAA;IACA,UAAA;IACA,oBAAA;;EAIF;IACE,YAAA;;;AuD9PF,SAAC;AACD,SAAC;ArDkMH,cACE,GqDpMC;ArDmMH,cACE,GqDnMC;AhDLH,UgDIG;AhDJH,UgDKG;AhDeH,gBgDhBG;AhDgBH,gBgDfG;AhDwBH,IgDzBG;AhDyBH,IgDxBG;A3CuhBH,gBAqBE,Y2C7iBC;A3CwhBH,gBAqBE,Y2C5iBC;ArCoBH,YqCrBG;ArCqBH,YqCpBG;ArCiIH,mBAWE,aqC7IC;ArCkIH,mBAWE,aqC5IC;A9BNH,I8BKG;A9BLH,I8BMG;A7BJH,O6BGG;A7BHH,O6BIG;A7BgBH,c6BjBG;A7BiBH,c6BhBG;A7BmCH,gB6BpCG;A7BoCH,gB6BnCG;AtBTH,MsBQG;AtBRH,MsBSG;ATCH,WSFG;ATEH,WSDG;AJgEH,aIjEG;AJiEH,aIhEG;AJwFH,aIzFG;AJyFH,aIxFG;EACC,SAAS,GAAT;EACA,cAAA;;AAEF,SAAC;ArD8LH,cACE,GqD/LC;AhDTH,UgDSG;AhDWH,gBgDXG;AhDoBH,IgDpBG;A3CmhBH,gBAqBE,Y2CxiBC;ArCgBH,YqChBG;ArC6HH,mBAWE,aqCxIC;A9BVH,I8BUG;A7BRH,O6BQG;A7BYH,c6BZG;A7B+BH,gB6B/BG;AtBbH,MsBaG;ATHH,WSGG;AJ4DH,aI5DG;AJoFH,aIpFG;EACC,WAAA;;A3BRJ;E4BRE,cAAA;EACA,iBAAA;EACA,kBAAA;;A5BSF;EACE,uBAAA;;AAEF;EACE,sBAAA;;AAQF;EACE,wBAAA;;AAEF;EACE,yBAAA;;AAEF;EACE,kBAAA;;AAEF;E6BzBE,WAAA;EACA,kBAAA;EACA,iBAAA;EACA,6BAAA;EACA,SAAA;;A7B8BF;EACE,wBAAA;;AAOF;EACE,eAAA;;A8BjCF;EACE,mBAAA;;AAMF;AACA;AACA;AACA;ECjBE,wBAAA;;ADqBF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;E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","sourcesContent":["//\n// Fonts\n// --------------------------------------------------\n\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 300;\n  src: url(\"@{font-path}/OpenSans-Light-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Light\"), local(\"OpenSans-Light\"),\n       url(\"@{font-path}/OpenSans-Light-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Light-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Light-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Light-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Light-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 400;\n  src: url(\"@{font-path}/OpenSans-Regular-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans\"), local(\"OpenSans\"),\n       url(\"@{font-path}/OpenSans-Regular-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Regular-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Regular-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Regular-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Regular-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 300;\n  src: url(\"@{font-path}/OpenSans-LightItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Light Italic\"), local(\"OpenSansLight-Italic\"),\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 400;\n  src: url(\"@{font-path}/OpenSans-Italic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Italic\"), local(\"OpenSans-Italic\"),\n       url(\"@{font-path}/OpenSans-Italic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Italic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Italic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Italic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Italic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 600;\n  src: url(\"@{font-path}/OpenSans-Semibold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Semibold\"), local(\"OpenSans-Semibold-webfont\"),\n       url(\"@{font-path}/OpenSans-Semibold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 600;\n  src: url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Semibold Italic\"), local(\"OpenSans-SemiboldItalic-webfont\"),\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 700;\n  src: url(\"@{font-path}/OpenSans-Bold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Bold\"), local(\"OpenSans-Bold\"),\n       url(\"@{font-path}/OpenSans-Bold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Bold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Bold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Bold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Bold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 700;\n  src: url(\"@{font-path}/OpenSans-BoldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Bold Italic\"), local(\"OpenSans-BoldItalic\"),\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 800;\n  src: url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Extrabold Italic\"), local(\"OpenSans-ExtraboldItalic\"),\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 800;\n  src: url(\"@{font-path}/OpenSans-ExtraBold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Extrabold\"), local(\"OpenSans-Extrabold\"),\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n","/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS and IE text size adjust after device orientation change,\n//    without disabling user zoom.\n//\n\nhtml {\n  font-family: sans-serif; // 1\n  -ms-text-size-adjust: 100%; // 2\n  -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n  margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n  display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n  display: inline-block; // 1\n  vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n  display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n  background-color: transparent;\n}\n\n//\n// Improve readability of focused elements when they are also in an\n// active/hover state.\n//\n\na:active,\na:hover {\n  outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n  border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n  font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n  font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n  background: #ff0;\n  color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n  font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\n\nsup {\n  top: -0.5em;\n}\n\nsub {\n  bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n  border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n  overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n  margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n  box-sizing: content-box;\n  height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n  overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace, monospace;\n  font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n//    Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  color: inherit; // 1\n  font: inherit; // 2\n  margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n  overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n  text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n//    and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n//    `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n  -webkit-appearance: button; // 2\n  cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n  cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n  border: 0;\n  padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n  line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n  box-sizing: border-box; // 1\n  padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.\n//\n\ninput[type=\"search\"] {\n  -webkit-appearance: textfield; // 1\n  box-sizing: content-box; //2\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n  border: 1px solid #c0c0c0;\n  margin: 0 2px;\n  padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n  border: 0; // 1\n  padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n  overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n  font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n  border-collapse: collapse;\n  border-spacing: 0;\n}\n\ntd,\nth {\n  padding: 0;\n}\n","/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n    *,\n    *:before,\n    *:after {\n        background: transparent !important;\n        color: #000 !important; // Black prints faster: h5bp.com/s\n        box-shadow: none !important;\n        text-shadow: none !important;\n    }\n\n    a,\n    a:visited {\n        text-decoration: underline;\n    }\n\n    a[href]:after {\n        content: \" (\" attr(href) \")\";\n    }\n\n    abbr[title]:after {\n        content: \" (\" attr(title) \")\";\n    }\n\n    // Don't show links that are fragment identifiers,\n    // or use the `javascript:` pseudo protocol\n    a[href^=\"#\"]:after,\n    a[href^=\"javascript:\"]:after {\n        content: \"\";\n    }\n\n    pre,\n    blockquote {\n        border: 1px solid #999;\n        page-break-inside: avoid;\n    }\n\n    thead {\n        display: table-header-group; // h5bp.com/t\n    }\n\n    tr,\n    img {\n        page-break-inside: avoid;\n    }\n\n    img {\n        max-width: 100% !important;\n    }\n\n    p,\n    h2,\n    h3 {\n        orphans: 3;\n        widows: 3;\n    }\n\n    h2,\n    h3 {\n        page-break-after: avoid;\n    }\n\n    // Bootstrap specific changes start\n\n    // Bootstrap components\n    .navbar {\n        display: none;\n    }\n    .btn,\n    .dropup > .btn {\n        > .caret {\n            border-top-color: #000 !important;\n        }\n    }\n    .label {\n        border: 1px solid #000;\n    }\n\n    .table {\n        border-collapse: collapse !important;\n\n        td,\n        th {\n            background-color: #fff !important;\n        }\n    }\n    .table-bordered {\n        th,\n        td {\n            border: 1px solid #ddd !important;\n        }\n    }\n\n    // Bootstrap specific changes end\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// <a href=\"#\"><span class=\"glyphicon glyphicon-star\"></span> Star</a>\n\n// Import the fonts\n@font-face {\n  font-family: 'Glyphicons Halflings';\n  src: url('@{icon-font-path}@{icon-font-name}.eot');\n  src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),\n       url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),\n       url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),\n       url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),\n       url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');\n}\n\n// Catchall baseclass\n.glyphicon {\n  position: relative;\n  top: 1px;\n  display: inline-block;\n  font-family: 'Glyphicons Halflings';\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk               { &:before { content: \"\\002a\"; } }\n.glyphicon-plus                   { &:before { content: \"\\002b\"; } }\n.glyphicon-euro,\n.glyphicon-eur                    { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus                  { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud                  { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope               { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil                 { &:before { content: \"\\270f\"; } }\n.glyphicon-glass                  { &:before { content: \"\\e001\"; } }\n.glyphicon-music                  { &:before { content: \"\\e002\"; } }\n.glyphicon-search                 { &:before { content: \"\\e003\"; } }\n.glyphicon-heart                  { &:before { content: \"\\e005\"; } }\n.glyphicon-star                   { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty             { &:before { content: \"\\e007\"; } }\n.glyphicon-user                   { &:before { content: \"\\e008\"; } }\n.glyphicon-film                   { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large               { &:before { content: \"\\e010\"; } }\n.glyphicon-th                     { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list                { &:before { content: \"\\e012\"; } }\n.glyphicon-ok                     { &:before { content: \"\\e013\"; } }\n.glyphicon-remove                 { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in                { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out               { &:before { content: \"\\e016\"; } }\n.glyphicon-off                    { &:before { content: \"\\e017\"; } }\n.glyphicon-signal                 { &:before { content: \"\\e018\"; } }\n.glyphicon-cog                    { &:before { content: \"\\e019\"; } }\n.glyphicon-trash                  { &:before { content: \"\\e020\"; } }\n.glyphicon-home                   { &:before { content: \"\\e021\"; } }\n.glyphicon-file                   { &:before { content: \"\\e022\"; } }\n.glyphicon-time                   { &:before { content: \"\\e023\"; } }\n.glyphicon-road                   { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt           { &:before { content: \"\\e025\"; } }\n.glyphicon-download               { &:before { content: \"\\e026\"; } }\n.glyphicon-upload                 { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox                  { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle            { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat                 { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh                { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt               { &:before { content: \"\\e032\"; } }\n.glyphicon-lock                   { &:before { content: \"\\e033\"; } }\n.glyphicon-flag                   { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones             { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off             { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down            { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up              { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode                 { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode                { &:before { content: \"\\e040\"; } }\n.glyphicon-tag                    { &:before { content: \"\\e041\"; } }\n.glyphicon-tags                   { &:before { content: \"\\e042\"; } }\n.glyphicon-book                   { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark               { &:before { content: \"\\e044\"; } }\n.glyphicon-print                  { &:before { content: \"\\e045\"; } }\n.glyphicon-camera                 { &:before { content: \"\\e046\"; } }\n.glyphicon-font                   { &:before { content: \"\\e047\"; } }\n.glyphicon-bold                   { &:before { content: \"\\e048\"; } }\n.glyphicon-italic                 { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height            { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width             { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left             { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center           { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right            { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify          { &:before { content: \"\\e055\"; } }\n.glyphicon-list                   { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left            { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right           { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video         { &:before { content: \"\\e059\"; } }\n.glyphicon-picture                { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker             { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust                 { &:before { content: \"\\e063\"; } }\n.glyphicon-tint                   { &:before { content: \"\\e064\"; } }\n.glyphicon-edit                   { &:before { content: \"\\e065\"; } }\n.glyphicon-share                  { &:before { content: \"\\e066\"; } }\n.glyphicon-check                  { &:before { content: \"\\e067\"; } }\n.glyphicon-move                   { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward          { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward          { &:before { content: \"\\e070\"; } }\n.glyphicon-backward               { &:before { content: \"\\e071\"; } }\n.glyphicon-play                   { &:before { content: \"\\e072\"; } }\n.glyphicon-pause                  { &:before { content: \"\\e073\"; } }\n.glyphicon-stop                   { &:before { content: \"\\e074\"; } }\n.glyphicon-forward                { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward           { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward           { &:before { content: \"\\e077\"; } }\n.glyphicon-eject                  { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left           { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right          { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign              { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign             { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign            { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign                { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign          { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign              { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot             { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle          { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle              { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle             { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left             { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right            { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up               { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down             { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt              { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full            { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small           { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign       { &:before { content: \"\\e101\"; } }\n.glyphicon-gift                   { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf                   { &:before { content: \"\\e103\"; } }\n.glyphicon-fire                   { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open               { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close              { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign           { &:before { content: \"\\e107\"; } }\n.glyphicon-plane                  { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar               { &:before { content: \"\\e109\"; } }\n.glyphicon-random                 { &:before { content: \"\\e110\"; } }\n.glyphicon-comment                { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet                 { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up             { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down           { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet                { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart          { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close           { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open            { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical        { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal      { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd                    { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn               { &:before { content: \"\\e122\"; } }\n.glyphicon-bell                   { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate            { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up              { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down            { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right             { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left              { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up                { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down              { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right     { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left      { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up        { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down      { &:before { content: \"\\e134\"; } }\n.glyphicon-globe                  { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench                 { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks                  { &:before { content: \"\\e137\"; } }\n.glyphicon-filter                 { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase              { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen             { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard              { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip              { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty            { &:before { content: \"\\e143\"; } }\n.glyphicon-link                   { &:before { content: \"\\e144\"; } }\n.glyphicon-phone                  { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin                { &:before { content: \"\\e146\"; } }\n.glyphicon-usd                    { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp                    { &:before { content: \"\\e149\"; } }\n.glyphicon-sort                   { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet       { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt   { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order          { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt      { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes     { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked              { &:before { content: \"\\e157\"; } }\n.glyphicon-expand                 { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down          { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up            { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in                 { &:before { content: \"\\e161\"; } }\n.glyphicon-flash                  { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out                { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window             { &:before { content: \"\\e164\"; } }\n.glyphicon-record                 { &:before { content: \"\\e165\"; } }\n.glyphicon-save                   { &:before { content: \"\\e166\"; } }\n.glyphicon-open                   { &:before { content: \"\\e167\"; } }\n.glyphicon-saved                  { &:before { content: \"\\e168\"; } }\n.glyphicon-import                 { &:before { content: \"\\e169\"; } }\n.glyphicon-export                 { &:before { content: \"\\e170\"; } }\n.glyphicon-send                   { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk            { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved           { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove          { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save            { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open            { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card            { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer               { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery                { &:before { content: \"\\e179\"; } }\n.glyphicon-header                 { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed             { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone               { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt              { &:before { content: \"\\e183\"; } }\n.glyphicon-tower                  { &:before { content: \"\\e184\"; } }\n.glyphicon-stats                  { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video               { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video               { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles              { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo           { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby            { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1              { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1              { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1              { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark         { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark      { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download         { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload           { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer           { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous         { &:before { content: \"\\e200\"; } }\n.glyphicon-cd                     { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file              { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file              { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up               { &:before { content: \"\\e204\"; } }\n.glyphicon-copy                   { &:before { content: \"\\e205\"; } }\n.glyphicon-paste                  { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door                   { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key                    { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert                  { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer              { &:before { content: \"\\e210\"; } }\n.glyphicon-king                   { &:before { content: \"\\e211\"; } }\n.glyphicon-queen                  { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn                   { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop                 { &:before { content: \"\\e214\"; } }\n.glyphicon-knight                 { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula           { &:before { content: \"\\e216\"; } }\n.glyphicon-tent                   { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard             { &:before { content: \"\\e218\"; } }\n.glyphicon-bed                    { &:before { content: \"\\e219\"; } }\n.glyphicon-apple                  { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase                  { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass              { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp                   { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate              { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank             { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors               { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin                { &:before { content: \"\\e227\"; } }\n.glyphicon-btc                    { &:before { content: \"\\e227\"; } }\n.glyphicon-xbt                    { &:before { content: \"\\e227\"; } }\n.glyphicon-yen                    { &:before { content: \"\\00a5\"; } }\n.glyphicon-jpy                    { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble                  { &:before { content: \"\\20bd\"; } }\n.glyphicon-rub                    { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale                  { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly              { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted       { &:before { content: \"\\e232\"; } }\n.glyphicon-education              { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal      { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical        { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger         { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window           { &:before { content: \"\\e237\"; } }\n.glyphicon-oil                    { &:before { content: \"\\e238\"; } }\n.glyphicon-grain                  { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses             { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size              { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color             { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background        { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top       { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom    { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left      { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical  { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right     { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right         { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left          { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom        { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top           { &:before { content: \"\\e253\"; } }\n.glyphicon-console                { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript            { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript              { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left              { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right             { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down              { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up                { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n  .box-sizing(border-box);\n}\n*:before,\n*:after {\n  .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n  font-size: 10px;\n  -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n  font-family: @font-family-base;\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @text-color;\n  background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n}\n\n\n// Links\n\na {\n  color: @link-color;\n  text-decoration: none;\n\n  &:hover,\n  &:focus {\n    color: @link-hover-color;\n    text-decoration: @link-hover-decoration;\n  }\n\n  &:focus {\n    .tab-focus();\n  }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n  margin: 0;\n}\n\n\n// Images\n\nimg {\n  vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n  .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n  border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n  padding: @thumbnail-padding;\n  line-height: @line-height-base;\n  background-color: @thumbnail-bg;\n  border: 1px solid @thumbnail-border;\n  border-radius: @thumbnail-border-radius;\n  .transition(all .2s ease-in-out);\n\n  // Keep them at most 100% wide\n  .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n  border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n  margin-top:    @line-height-computed;\n  margin-bottom: @line-height-computed;\n  border: 0;\n  border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content\n\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n  &:active,\n  &:focus {\n    position: static;\n    width: auto;\n    height: auto;\n    margin: 0;\n    overflow: visible;\n    clip: auto;\n  }\n}\n\n\n// iOS \"clickable elements\" fix for role=\"button\"\n//\n// Fixes \"clickability\" issue (and more generally, the firing of events such as focus as well)\n// for traditionally non-focusable elements with role=\"button\"\n// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n\n[role=\"button\"] {\n  cursor: pointer;\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n  -webkit-animation: @animation;\n       -o-animation: @animation;\n          animation: @animation;\n}\n.animation-name(@name) {\n  -webkit-animation-name: @name;\n          animation-name: @name;\n}\n.animation-duration(@duration) {\n  -webkit-animation-duration: @duration;\n          animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n  -webkit-animation-timing-function: @timing-function;\n          animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n  -webkit-animation-delay: @delay;\n          animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n  -webkit-animation-iteration-count: @iteration-count;\n          animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n  -webkit-animation-direction: @direction;\n          animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n  -webkit-animation-fill-mode: @fill-mode;\n          animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n  -webkit-backface-visibility: @visibility;\n     -moz-backface-visibility: @visibility;\n          backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n          box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n  -webkit-box-sizing: @boxmodel;\n     -moz-box-sizing: @boxmodel;\n          box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n  -webkit-column-count: @column-count;\n     -moz-column-count: @column-count;\n          column-count: @column-count;\n  -webkit-column-gap: @column-gap;\n     -moz-column-gap: @column-gap;\n          column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n  word-wrap: break-word;\n  -webkit-hyphens: @mode;\n     -moz-hyphens: @mode;\n      -ms-hyphens: @mode; // IE10+\n       -o-hyphens: @mode;\n          hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  // Firefox\n  &::-moz-placeholder {\n    color: @color;\n    opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n  }\n  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n  -webkit-transform: scale(@ratio);\n      -ms-transform: scale(@ratio); // IE9 only\n       -o-transform: scale(@ratio);\n          transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n  -webkit-transform: scale(@ratioX, @ratioY);\n      -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n       -o-transform: scale(@ratioX, @ratioY);\n          transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n  -webkit-transform: scaleX(@ratio);\n      -ms-transform: scaleX(@ratio); // IE9 only\n       -o-transform: scaleX(@ratio);\n          transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n  -webkit-transform: scaleY(@ratio);\n      -ms-transform: scaleY(@ratio); // IE9 only\n       -o-transform: scaleY(@ratio);\n          transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n  -webkit-transform: skewX(@x) skewY(@y);\n      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n       -o-transform: skewX(@x) skewY(@y);\n          transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n  -webkit-transform: translate(@x, @y);\n      -ms-transform: translate(@x, @y); // IE9 only\n       -o-transform: translate(@x, @y);\n          transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n  -webkit-transform: translate3d(@x, @y, @z);\n          transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees); // IE9 only\n       -o-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n  -webkit-transform: rotateX(@degrees);\n      -ms-transform: rotateX(@degrees); // IE9 only\n       -o-transform: rotateX(@degrees);\n          transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n  -webkit-transform: rotateY(@degrees);\n      -ms-transform: rotateY(@degrees); // IE9 only\n       -o-transform: rotateY(@degrees);\n          transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n  -webkit-perspective: @perspective;\n     -moz-perspective: @perspective;\n          perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n  -webkit-perspective-origin: @perspective;\n     -moz-perspective-origin: @perspective;\n          perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n  -webkit-transform-origin: @origin;\n     -moz-transform-origin: @origin;\n      -ms-transform-origin: @origin; // IE9 only\n          transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n  -webkit-transition: @transition;\n       -o-transition: @transition;\n          transition: @transition;\n}\n.transition-property(@transition-property) {\n  -webkit-transition-property: @transition-property;\n          transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n  -webkit-transition-delay: @transition-delay;\n          transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n  -webkit-transition-duration: @transition-duration;\n          transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n  -webkit-transition-timing-function: @timing-function;\n          transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n  -webkit-transition: -webkit-transform @transition;\n     -moz-transition: -moz-transform @transition;\n       -o-transition: -o-transform @transition;\n          transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n  -webkit-user-select: @select;\n     -moz-user-select: @select;\n      -ms-user-select: @select; // IE10+\n          user-select: @select;\n}\n","//\n// Variables\n// --------------------------------------------------\n// Bootstrap overrides and PatternFly-specific variables\n\n// Sass compass/sprockets asset helper flag\n// ----------------------\n@pf-sass-asset-helper:                                              false;\n\n// PatternFly-specific\n// -------------------\n@import \"color-variables.less\";\n\n@applauncher-pf-dropdown-menu-border-width:                         1px;\n@applauncher-pf-dropdown-menu-padding:                              9px;\n@applauncher-pf-dropdown-menu-width:                                220px;\n@applauncher-pf-dropdown-toggle-padding:                            7px 10px;\n@applauncher-pf-icon-padding-right:                                 4px;\n@applauncher-pf-menu-link-border-color:                             @color-pf-white;\n@applauncher-pf-menu-link-border-color-hover:                       @color-pf-black-400;\n@applauncher-pf-menu-link-border-width:                             1px;\n@applauncher-pf-menu-link-color:                                    @color-pf-black-300;\n@applauncher-pf-menu-link-color-disabled:                           @color-pf-black-500;\n@applauncher-pf-menu-link-color-hover:                              @color-pf-blue-400;\n@applauncher-pf-menu-link-padding:                                  7px 10px;\n@applauncher-pf-menu-link-padding-block-list:                       15px 10px;\n@applauncher-pf-menu-link-background-color-hover:                   @color-pf-black-150;\n@applauncher-pf-menu-link-shadow:                                   @color-pf-black-300;\n@applauncher-pf-menu-link-icon-font-size:                           2em;\n@applauncher-pf-menu-link-icon-width:                               ((9 * @applauncher-pf-menu-link-icon-font-size) / 14); //Numbers to imitate fa-fw class\n@bootstrap-switch-handle-default-bg-color:                          @color-pf-black-100;\n@bootstrap-treeview-highlight-color:                                @color-pf-blue-300;\n@btn-default-bg-img-start:                                          @color-pf-black-100;\n@btn-default-bg-img-stop:                                           @color-pf-black-200;\n@btn-xs-font-weight:                                                400;\n@card-pf-accented-border-top-color:                                 @color-pf-blue-300;\n@card-pf-aggregate-status-title-icon-color:                         @color-pf-black-900;\n@card-pf-bg-color:                                                  @color-pf-white;\n@card-pf-border-color:                                              @color-pf-black-300;\n@card-pf-border-top-color:                                          transparent;\n@card-pf-container-bg-color:                                        @color-pf-black-150;\n@card-pf-footer-bg-color:                                           @color-pf-black-100;\n@card-pf-selected-border-color:                                     @color-pf-blue-300;\n@donut-font-size-big:                                               30px;\n@drawer-pf-top-vertical:                                            58px;\n@drawer-pf-top-horizontal:                                          26px;\n@dropdown-divider-margin:                                           4px 1px;\n@dropdown-link-active-border-color:                                 @color-pf-blue;\n@dropdown-link-hover-border-color:                                  @color-pf-blue-100;\n@dropdown-link-focus-color:                                         @color-pf-white;\n@flyout-transition-pf:                                              all 200ms cubic-bezier(.35, 0, .25, 1);\n@font-family-monospace:                                             Menlo, Monaco, Consolas, monospace;\n@font-path:                                                         \"../fonts\";\n@footer-pf-bg-color:                                                @color-pf-black;\n@footer-pf-padding-left:                                            25px;\n@footer-pf-padding-top:                                             10px;\n@footer-pf-height:                                                  37px;\n@gray-light-pf:                                                     @color-pf-black-400;\n@gray-pf:                                                           @color-pf-black-700;\n@icon-font-name-fa:                                                 \"FontAwesome\";\n@icon-font-name-pf:                                                 \"PatternFlyIcons-webfont\";\n@icon-prefix:                                                       pficon;\n@img-bg-login:                                                      \"bg-login.jpg\";\n@img-path:                                                          \"../img\";\n@img-spinner:                                                       \"spinner.gif\";\n@img-spinner-inverse:                                               \"spinner-inverse.gif\";\n@img-spinner-inverse-lg:                                            \"spinner-inverse-lg.gif\";\n@img-spinner-inverse-sm:                                            \"spinner-inverse-sm.gif\";\n@img-spinner-inverse-xs:                                            \"spinner-inverse-xs.gif\";\n@img-spinner-lg:                                                    \"spinner-lg.gif\";\n@img-spinner-sm:                                                    \"spinner-sm.gif\";\n@img-spinner-xs:                                                    \"spinner-xs.gif\";\n@input-border-hover:                                                @color-pf-blue-200;\n@input-border-focus:                                                @color-pf-blue-400;\n@list-pf-border-color:                                              @color-pf-black-200;\n@list-pf-active-border-color:                                       @color-pf-black-400;\n@list-pf-header-background-color:                                   @color-pf-black-200;\n@list-pf-hover-background-color:                                    @color-pf-blue-25;\n@list-pf-main-content-width:                                        70%; // sets the proportional width of the main content vs the additional content\n@list-pf-padding:                                                   20px;\n@list-view-accented-border:                                         @color-pf-blue-300;\n@list-view-active-bg:                                               @color-pf-blue-50;\n@list-view-active-border:                                           @color-pf-black-400;\n@list-view-divider:                                                 @color-pf-black-300;\n@list-view-hover-bg:                                                @color-pf-blue-25;\n@list-group-top-border:                                             @color-pf-black-200;\n@login-bg-color:                                                    @color-pf-black;\n@login-container-bg-color-rgba:                                     fade(@color-pf-white, 5.5%);\n@modal-about-pf-bg-img:                                             \"bg-modal-about-pf.png\";\n@modal-title-padding-horizontal:                                    18px;\n@modal-title-padding-vertical:                                      10px;\n@navbar-pf-active-color:                                            @color-pf-black-150;\n@navbar-pf-alt-active-color:                                        @color-pf-white;\n@navbar-pf-alt-bg-color:                                            @color-pf-black;\n@navbar-pf-alt-bg-img:                                              \"bg-navbar-pf-alt.svg\";\n@navbar-pf-bg-color:                                                @color-pf-black;\n@navbar-pf-border-color:                                            @color-pf-blue-300;\n@navbar-pf-color:                                                   @color-pf-black-300;\n@navbar-pf-height:                                                  60px;\n@navbar-pf-icon-bar-bg-color:                                       @color-pf-white;\n@navbar-pf-navbar-navbar-brand-min-width:                           270px;\n@navbar-pf-navbar-navbar-brand-padding:                             8px 0 7px;\n@navbar-pf-navbar-navbar-persistent-bg-color:                       @color-pf-black-150;\n@navbar-pf-navbar-navbar-persistent-border-color:                   @color-pf-black-300;\n@navbar-pf-vertical-active-color:                                   @color-pf-white;\n@navbar-pf-vertical-bg-color:                                       #1d1d1d;\n@navbar-pf-vertical-bg-repeat:                                      no-repeat;\n@navbar-pf-vertical-bg-size:                                        auto 100%;\n@navbar-pf-vertical-border-color:                                   @color-pf-blue-300;\n@navbar-pf-vertical-border-style:                                   solid;\n@navbar-pf-vertical-border-width:                                   2px;\n@navbar-pf-vertical-color:                                          @color-pf-black-300;\n@navbar-pf-vertical-height:                                         60px;\n@navbar-pf-vertical-icon-bar-bg-color:                              @color-pf-white;\n@navbar-pf-vertical-navbar-brand-color:                             @color-pf-white;\n@navbar-pf-vertical-navbar-brand-icon-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-margin:                            0 0 0 25px;\n@navbar-pf-vertical-navbar-brand-min-height:                        35px;\n@navbar-pf-vertical-navbar-brand-max-height:                        35px;\n@navbar-pf-vertical-navbar-brand-line-height:                       34px;\n@navbar-pf-vertical-navbar-brand-name-breakpoint:                   480px;\n@navbar-pf-vertical-navbar-brand-name-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-padding:                           11px 0 12px;\n@navbar-pf-vertical-navbar-toggle-margin:                           13px 15px;\n@navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg:                @color-pf-white;\n@navbar-pf-vertical-nav-item-iconic-padding:                        21px 12px;\n@nav-pf-container-transition-period:                                250ms;\n@nav-pf-menu-transition-period:                                     100ms;\n@nav-pf-vertical-active-color:                                      @color-pf-white;\n@nav-pf-vertical-active-before-color:                               @color-pf-blue-300;\n@nav-pf-vertical-active-bg-color:                                   @color-pf-black-800;\n@nav-pf-vertical-active-border-color:                               @color-pf-black-900;\n@nav-pf-vertical-active-font-weight:                                600;\n@nav-pf-vertical-active-icon-color:                                 @color-pf-blue-300;\n@nav-pf-vertical-badge-color:                                       @color-pf-white;\n@nav-pf-vertical-badge-bg-color:                                    @color-pf-black-900;\n@nav-pf-vertical-bg-color:                                          @color-pf-black-900;\n@nav-pf-vertical-border-color:                                      @color-pf-black-900;\n@nav-pf-vertical-collapsed-width:                                   75px;\n@nav-pf-vertical-color:                                             @color-pf-black-300;\n@nav-pf-vertical-font-weight:                                       400;\n@nav-pf-vertical-icon-color:                                        @color-pf-black-600;\n@nav-pf-vertical-icon-width:                                        24px;\n@nav-pf-vertical-item-border-color:                                 @color-pf-black;\n@nav-pf-vertical-link-height:                                       63px;\n@nav-pf-vertical-link-padding:                                      17px 20px 17px 25px;\n@nav-pf-vertical-secondary-active-color:                            @color-pf-white;\n@nav-pf-vertical-secondary-active-bg-color:                         @color-pf-black-700;\n@nav-pf-vertical-secondary-active-icon-color:                       @color-pf-blue-300;\n@nav-pf-vertical-secondary-badge-color:                             @color-pf-white;\n@nav-pf-vertical-secondary-badge-bg-color:                          @color-pf-black-900;\n@nav-pf-vertical-secondary-border-color:                            @color-pf-blue-300;\n@nav-pf-vertical-secondary-color:                                   @color-pf-white;\n@nav-pf-vertical-secondary-header-margin:                           18px 20px 10px 20px;\n@nav-pf-vertical-secondary-indicator-color:                         @color-pf-black-600;\n@nav-pf-vertical-secondary-indicator-padding:                       14px 0;\n@nav-pf-vertical-secondary-item-color:                              @color-pf-black-300;\n@nav-pf-vertical-secondary-item-padding:                            0 0 5px 0;\n@nav-pf-vertical-secondary-link-height:                             63px;\n@nav-pf-vertical-secondary-link-padding:                            4px 0 2px 0;\n@nav-pf-vertical-secondary-list-header-margin:                      30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-active-color:                             @color-pf-white;\n@nav-pf-vertical-tertiary-active-bg-color:                          @color-pf-black-800;\n@nav-pf-vertical-tertiary-indicator-padding:                        0;\n@nav-pf-vertical-tertiary-bg-color:                                 @color-pf-black-700;\n@nav-pf-vertical-tertiary-color:                                    #fff;\n@nav-pf-vertical-tertiary-header-margin:                            18px 20px 10px 20px;\n@nav-pf-vertical-tertiary-list-header-margin:                       30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-item-padding:                             0 0 5px 0;\n@nav-pf-vertical-tertiary-item-color:                               @color-pf-black-300;\n@nav-pf-vertical-tertiary-link-margin:                              0 20px 0 20px;\n@nav-pf-vertical-tertiary-link-padding:                             4px 0 2px 0;\n@nav-pf-vertical-tertiary-badge-color:                              @color-pf-white;\n@nav-pf-vertical-tertiary-badge-bg-color:                           @color-pf-black-900;\n@nav-pf-vertical-width:                                             200px;\n@toast-notification-top:                                            80px;\n@pagination-padding-small-vertical:                                 0;\n@panel-default-border-color:                                        @color-pf-black-400;\n@pficon-var-add-circle-o:                                           \"\\e61b\";\n@pficon-var-applications:                                           \"\\e936\";\n@pficon-var-arrow:                                                  \"\\e929\";\n@pficon-var-asleep:                                                 \"\\e925\";\n@pficon-var-automation:                                             \"\\e937\";\n@pficon-var-blueprint:                                              \"\\e915\";\n@pficon-var-build:                                                  \"\\e902\";\n@pficon-var-builder-image:                                          \"\\e800\";\n@pficon-var-bundle:                                                 \"\\e918\";\n@pficon-var-catalog:                                                \"\\e939\";\n@pficon-var-chat:                                                   \"\\e928\";\n@pficon-var-close:                                                  \"\\e60b\";\n@pficon-var-cloud-security:                                         \"\\e903\";\n@pficon-var-cloud-tenant:                                           \"\\e904\";\n@pficon-var-cluster:                                                \"\\e620\";\n@pficon-var-connected:                                              \"\\e938\";\n@pficon-var-container-node:                                         \"\\e621\";\n@pficon-var-cpu:                                                    \"\\e927\";\n@pficon-var-degraded:                                               \"\\e91b\";\n@pficon-var-delete:                                                 \"\\e611\";\n@pficon-var-disconnected:                                           \"\\e93c\";\n@pficon-var-domain:                                                 \"\\e919\";\n@pficon-var-edit:                                                   \"\\e60a\";\n@pficon-var-enhancement:                                            \"\\e93a\";\n@pficon-var-enterprise:                                             \"\\e906\";\n@pficon-var-equalizer:                                              \"\\e610\";\n@pficon-var-error-circle-o:                                         \"\\e926\";\n@pficon-var-export:                                                 \"\\e616\";\n@pficon-var-flag:                                                   \"\\e603\";\n@pficon-var-flavor:                                                 \"\\e907\";\n@pficon-var-filter:                                                 \"\\e943\";\n@pficon-var-folder-close:                                           \"\\e607\";\n@pficon-var-folder-open:                                            \"\\e606\";\n@pficon-var-help:                                                   \"\\e605\";\n@pficon-var-history:                                                \"\\e617\";\n@pficon-var-home:                                                   \"\\e618\";\n@pficon-var-image:                                                  \"\\e61f\";\n@pficon-var-import:                                                 \"\\e615\";\n@pficon-var-info:                                                   \"\\e92b\";\n@pficon-var-infrastructure:                                         \"\\e93d\";\n@pficon-var-integration:                                            \"\\e948\";\n@pficon-var-in-progress:                                            \"\\e92c\";\n@pficon-var-key:                                                    \"\\e924\";\n@pficon-var-kubernetes:                                             \"\\e627\";\n@pficon-var-locked:                                                 \"\\e923\";\n@pficon-var-maintenance:                                            \"\\e92d\";\n@pficon-var-memory:                                                 \"\\e908\";\n@pficon-var-messages:                                               \"\\e603\";\n@pficon-var-middleware:                                             \"\\e917\";\n@pficon-var-migration:                                              \"\\e92e\";\n@pficon-var-monitoring:                                             \"\\e944\";\n@pficon-var-network:                                                \"\\e909\";\n@pficon-var-off:                                                    \"\\e92f\";\n@pficon-var-ok:                                                     \"\\e602\";\n@pficon-var-on:                                                     \"\\e931\";\n@pficon-var-on-running:                                             \"\\e930\";\n@pficon-var-openshift:                                              \"\\e626\";\n@pficon-var-optimize:                                               \"\\e93e\";\n@pficon-var-orders:                                                 \"\\e93f\";\n@pficon-var-paused:                                                 \"\\e932\";\n@pficon-var-pending:                                                \"\\e933\";\n@pficon-var-plugged:                                                \"\\e940\";\n@pficon-var-port:                                                   \"\\e945\";\n@pficon-var-private:                                                \"\\e914\";\n@pficon-var-print:                                                  \"\\e612\";\n@pficon-var-process-automation:                                     \"\\e949\";\n@pficon-var-project:                                                \"\\e905\";\n@pficon-var-rebalance:                                              \"\\e91c\";\n@pficon-var-rebooting:                                              \"\\e934\";\n@pficon-var-regions:                                                \"\\e90a\";\n@pficon-var-registry:                                               \"\\e623\";\n@pficon-var-remove:                                                 \"\\e611\";\n@pficon-var-replicator:                                             \"\\e624\";\n@pficon-var-repository:                                             \"\\e90b\";\n@pficon-var-resource-pool:                                          \"\\e90c\";\n@pficon-var-resources-almost-empty:                                 \"\\e91d\";\n@pficon-var-resources-almost-full:                                  \"\\e912\";\n@pficon-var-resources-full:                                         \"\\e92a\";\n@pficon-var-restart:                                                \"\\e617\";\n@pficon-var-route:                                                  \"\\e625\";\n@pficon-var-running:                                                \"\\e614\";\n@pficon-var-save:                                                   \"\\e601\";\n@pficon-var-screen:                                                 \"\\e600\";\n@pficon-var-search:                                                 \"\\e921\";\n@pficon-var-security:                                               \"\\e946\";\n@pficon-var-server:                                                 \"\\e90d\";\n@pficon-var-server-group:                                           \"\\e91a\";\n@pficon-var-service:                                                \"\\e61e\";\n@pficon-var-service-catalog:                                        \"\\e941\";\n@pficon-var-services:                                               \"\\e947\";\n@pficon-var-settings:                                               \"\\e610\";\n@pficon-var-spinner:                                                \"\\e614\";\n@pficon-var-spinner2:                                               \"\\e613\";\n@pficon-var-storage-domain:                                         \"\\e90e\";\n@pficon-var-tenant:                                                 \"\\e916\";\n@pficon-var-thumb-tack-o:                                           \"\\e920\";\n@pficon-var-topology:                                               \"\\e608\";\n@pficon-var-trend-down:                                             \"\\e900\";\n@pficon-var-trend-up:                                               \"\\e901\";\n@pficon-var-unlocked:                                               \"\\e922\";\n@pficon-var-unplugged:                                              \"\\e942\";\n@pficon-var-unknown:                                                \"\\e935\";\n@pficon-var-user:                                                   \"\\e91e\";\n@pficon-var-users:                                                  \"\\e91f\";\n@pficon-var-virtual-machine:                                        \"\\e90f\";\n@pficon-var-volume:                                                 \"\\e910\";\n@pficon-var-warning-triangle-o:                                     \"\\e913\";\n@pficon-var-zone:                                                   \"\\e911\";\n@progress-description-label-width:                                  85px;\n@sidebar-pf-bg:                                                     @color-pf-black-100;\n@sidebar-pf-border-color:                                           @color-pf-black-300;\n@skiplink-pf-top:                                                   12px;\n@skiplink-pf-left:                                                  10px;\n@table-border-hover:                                                @color-pf-blue-200;\n@table-cell-padding-bottom:                                         3px;\n@table-cell-padding-top:                                            2px;\n// Reference variables declared in block above\n@bootstrap-switch-bg-color-start:                                   @btn-default-bg-img-start;\n@bootstrap-switch-bg-color-stop:                                    @btn-default-bg-img-stop;\n@fa-font-path:                                                      @font-path;\n@navbar-pf-navbar-header-border-color:                              lighten(@navbar-pf-bg-color, 15%);\n@navbar-pf-navbar-nav-active-active-bg-color:                       lighten(@navbar-pf-bg-color, 8%);\n@navbar-pf-navbar-nav-active-active-open-bg-color:                  lighten(@navbar-pf-bg-color, 11%);\n@navbar-pf-navbar-nav-active-bg-color:                              lighten(@navbar-pf-bg-color, 12.5%);\n@navbar-pf-navbar-primary-bg-color-start:                           lighten(@navbar-pf-bg-color, 10%); // #474C50\n@navbar-pf-navbar-primary-bg-color-stop:                            @navbar-pf-bg-color; // #383F43\n@navbar-pf-navbar-utility-border-color:                             lighten(@navbar-pf-bg-color, 15.5%);\n@navbar-pf-navbar-utility-color:                                    @navbar-pf-color;\n@navbar-pf-navbar-utility-hover-bg-color:                           lighten(@navbar-pf-bg-color, 12.5%);\n@nav-pf-vertical-secondary-bg-color:                                @nav-pf-vertical-active-bg-color;\n@nav-tabs-color:                                                    @gray-pf;\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-bg-color-start:                   lighten(@navbar-pf-navbar-primary-bg-color-start, 8.5%);\n@navbar-pf-navbar-primary-context-bg-color-stop:                    lighten(@navbar-pf-navbar-primary-bg-color-stop, 11%);\n@navbar-pf-navbar-primary-hover-bg-color-start:                     lighten(@navbar-pf-navbar-primary-bg-color-start, 10%);\n@navbar-pf-navbar-primary-hover-bg-color-stop:                      lighten(@navbar-pf-navbar-primary-bg-color-stop, 10%);\n@navbar-pf-navbar-primary-hover-border-color:                       lighten(@navbar-pf-navbar-header-border-color, 20%);\n@navbar-pf-navbar-primary-context-border-color:                     lighten(@navbar-pf-navbar-header-border-color, 8%);\n@navbar-pf-navbar-primary-context-border-top-color:                 lighten(@navbar-pf-navbar-header-border-color, 7%);\n@navbar-pf-navbar-utility-hover-border-color:                       lighten(@navbar-pf-navbar-utility-border-color, 5%);\n@navbar-pf-navbar-utility-open-bg-color:                            lighten(@navbar-pf-navbar-utility-hover-bg-color, 7.5%);\n@navbar-pf-navbar-utility-open-border-color:                        lighten(@navbar-pf-navbar-utility-hover-border-color, 5%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-active-bg-color-start:                    lighten(@navbar-pf-navbar-primary-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-active-bg-color-stop:                     lighten(@navbar-pf-navbar-primary-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-active-border-color:                      lighten(@navbar-pf-navbar-primary-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-start:             lighten(@navbar-pf-navbar-primary-context-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-stop:              lighten(@navbar-pf-navbar-primary-context-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-hover-border-color:               lighten(@navbar-pf-navbar-primary-context-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-border-top-color:           lighten(@navbar-pf-navbar-primary-context-border-top-color, 6%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-active-bg-color-start:            lighten(@navbar-pf-navbar-primary-context-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-active-bg-color-stop:             lighten(@navbar-pf-navbar-primary-context-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-active-border-color:              lighten(@navbar-pf-navbar-primary-context-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-active-border-top-color:          lighten(@navbar-pf-navbar-primary-context-hover-border-top-color, 6%);\n// References variable declared in block above\n@navbar-pf-navbar-primary-context-active-border-right-color:        @navbar-pf-navbar-primary-context-active-border-color;\n@slider-line-height:                                                16px;\n@slider-horizontal-width:                                           100%;\n@slider-primary-top:                                                @color-pf-black-100;\n@slider-primary-bottom:                                             @color-pf-black-200;\n@slider-secondary-top:                                              @color-pf-blue-400;\n@slider-secondary-bottom:                                           @color-pf-blue-300;\n\n// Alternate navigation layout - Kept for backwards compatibility\n// --------------------------------------------------------------\n@footer-pf-alt-bg-color:                                            @footer-pf-bg-color;\n@footer-pf-alt-padding-left:                                        @footer-pf-padding-left;\n@footer-pf-alt-padding-top:                                         @footer-pf-padding-top;\n@footer-pf-alt-height:                                              @footer-pf-height;\n@img-path-alt:                                                      @img-path;\n@nav-pf-vertical-alt-active-color:                                  @color-pf-blue-300;\n@nav-pf-vertical-alt-bg-color:                                      @color-pf-white;\n@nav-pf-vertical-alt-badge-color:                                   @color-pf-white;\n@nav-pf-vertical-alt-border-color:                                  @sidebar-pf-border-color;\n@nav-pf-vertical-alt-collapsed-width:                               75px;\n@nav-pf-vertical-alt-link-height:                                   63px;\n@nav-pf-vertical-alt-link-padding:                                  17px 20px 17px 25px;\n@nav-pf-vertical-alt-width:                                         250px;\n@navbar-pf-alt-bg-repeat:                                           @navbar-pf-vertical-bg-repeat;\n@navbar-pf-alt-bg-size:                                             @navbar-pf-vertical-bg-size;\n@navbar-pf-alt-border-color:                                        @navbar-pf-vertical-border-color;\n@navbar-pf-alt-border-style:                                        @navbar-pf-vertical-border-style;\n@navbar-pf-alt-border-width:                                        @navbar-pf-vertical-border-width;\n@navbar-pf-alt-color:                                               @navbar-pf-vertical-color;\n@navbar-pf-alt-height:                                              @navbar-pf-vertical-height;\n@navbar-pf-alt-nav-item-iconic-padding:                             @navbar-pf-vertical-nav-item-iconic-padding;\n@navbar-pf-alt-navbar-brand-color:                                  @navbar-pf-vertical-navbar-brand-color;\n@navbar-pf-alt-navbar-brand-icon-margin:                            @navbar-pf-vertical-navbar-brand-icon-margin;\n@navbar-pf-alt-navbar-brand-margin:                                 @navbar-pf-vertical-navbar-brand-margin;\n@navbar-pf-alt-navbar-brand-min-height:                             @navbar-pf-vertical-navbar-brand-min-height;\n@navbar-pf-alt-navbar-brand-name-breakpoint:                        @navbar-pf-vertical-navbar-brand-name-breakpoint;\n@navbar-pf-alt-navbar-brand-name-margin:                            @navbar-pf-vertical-navbar-brand-name-margin;\n@navbar-pf-alt-navbar-brand-padding:                                @navbar-pf-vertical-navbar-brand-padding;\n@navbar-pf-alt-navbar-toggle-margin:                                @navbar-pf-vertical-navbar-toggle-margin;\n@navbar-pf-alt-navbar-toggle-icon-bar-hover-bg:                     @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n\n// Login page\n// -------------------\n@login-pf-brand-margin-top:                                               20px;\n@login-pf-brand-desktop-margin-top:                                       62px;\n@login-pf-page-header-margin-bottom:                                      20px;\n@login-pf-page-header-desktop-margin-bottom:                              40px;\n@login-pf-page-header-paragraph-margin-top:                               20px;\n@login-pf-card-pf-padding:                                 10px 20px 30px 20px;\n@login-pf-card-pf-desktop-padding:                         20px 40px 30px 40px;\n@login-pf-card-pf-max-width:                                             840px;\n@login-pf-checkbox-label-margin-bottom:                                   15px;\n@login-pf-dropdown-toggle-padding-right:                                  15px;\n@login-pf-btn-primary-margin-top:                                         40px;\n@login-pf-header-margin-bottom:                                           20px;\n@login-pf-header-desktop-margin-bottom:                                   30px;\n@login-pf-signup-margin-top:                                              40px;\n@login-pf-signup-a-margin-left:                                           10px;\n@login-pf-page-footer-links-margin-top:                                   60px;\n@login-pf-page-footer-links-li-margin-right:                              20px;\n@login-pf-page-footer-sso-margin-top:                                     40px;\n@login-pf-page-footer-sso-logos-li-margin:                                5px;\n@login-pf-page-accounts-margin:                                           20px;\n@login-pf-accounts-section-heading-margin-top:                            30px;\n@login-pf-accounts-section-heading-margin-bottom:                         30px;\n@login-pf-accounts-section-heading-desktop-margin-bottom:                 15px;\n@login-pf-accounts-section-heading-desktop-padding-right:                 40px;\n@login-pf-accounts-section-heading-desktop-padding-left:                  40px;\n@login-pf-accounts-link-margin-bottom:                                    15px;\n@login-pf-accounts-link-img-margin-right:                                 10px;\n@login-pf-accounts-link-a-padding:                                        7px;\n@login-pf-accounts-more-caret-margin-left:                                5px;\n@login-pf-social-margin:                                           40px 0 0 0;\n\n\n// Bootstrap overrides\n// -------------------\n@alert-info-border:                                                 @color-pf-black-500;\n@alert-link-font-weight:                                            500;\n@alert-padding:                                                     11px;\n@body-bg:                                                           @color-pf-white;\n@border-radius-base:                                                1px;\n@brand-danger:                                                      @color-pf-red;\n@brand-info:                                                        @color-pf-blue-500;\n@brand-primary:                                                     @color-pf-blue-300;\n@brand-success:                                                     @color-pf-green;\n@brand-warning:                                                     @color-pf-orange;\n@breadcrumb-bg:                                                     transparent;\n@breadcrumb-separator:                                              \"\\f105\";\n@bs-datetimepicker-timepicker-font-size:                            1em;\n@bs-datetimepicker-btn-hover-bg:                                    transparent;\n@btn-danger-bg:                                                     @color-pf-red-200;\n@btn-danger-border:                                                 @color-pf-red-300;\n@btn-default-border:                                                @color-pf-black-400;\n@btn-font-weight:                                                   600;\n@btn-primary-bg:                                                    @color-pf-blue;\n@btn-primary-border:                                                @color-pf-blue-500;\n@caret-width-base:                                                  0;\n@code-bg:                                                           @color-pf-blue-50;\n@dropdown-border:                                                   @color-pf-black-400;\n@dropdown-divider-bg:                                               @color-pf-black-200;\n@dropdown-link-active-color:                                        @color-pf-white;\n@dropdown-link-hover-bg:                                            @color-pf-blue-50;\n@font-family-base:                                                  \"Open Sans\", Helvetica, Arial, sans-serif;\n@font-size-base:                                                    12px;\n@gray-dark:                                                         lighten(@color-pf-black, 20%);   // #333\n@gray-darker:                                                       lighten(@color-pf-black, 13.5%); // #222\n@gray-light:                                                        lighten(@color-pf-black, 60%);   // #999\n@gray-lighter:                                                      lighten(@color-pf-black, 93.5%); // #eee\n@grid-gutter-width:                                                 40px;\n@icon-font-path:                                                    \"../fonts/\";\n@input-bg-disabled:                                                 @color-pf-black-150;\n@input-border:                                                      @color-pf-black-400;\n@line-height-base:                                                  1.66666667; // 20/12\n@link-color:                                                        @color-pf-blue;\n@list-group-border:                                                 @color-pf-black-150;\n@list-group-border-radius:                                          0;\n@list-group-hover-bg:                                               @color-pf-blue-50;\n@link-hover-color:                                                  @color-pf-blue-500;\n@nav-tabs-border-color:                                             @color-pf-black-200;\n@nav-tabs-link-hover-border-color:                                  transparent;\n@padding-large-horizontal:                                          10px;\n@padding-base-horizontal:                                           6px;\n@padding-base-vertical:                                             2px;\n@padding-large-vertical:                                            6px;\n@pager-border-radius:                                               0;\n@pager-disabled-color:                                              @color-pf-black-500;\n@pagination-bg:                                                     @color-pf-black-150;\n@pagination-border:                                                 @color-pf-black-400;\n@pagination-hover-bg:                                               @color-pf-black-200;\n@panel-inner-border:                                                @color-pf-black-300;\n@popover-arrow-color:                                               @color-pf-white;\n@popover-arrow-outer-color:                                         @color-pf-black-400;\n@popover-border-color:                                              @color-pf-black-400;\n@popover-max-width:                                                 220px;\n@popover-title-bg:                                                  @color-pf-black-150;\n@pre-bg:                                                            @color-pf-black-100;\n@progress-bg:                                                       @color-pf-black-200;\n@table-bg-accent:                                                   @color-pf-black-150;\n@table-bg-hover:                                                    @color-pf-blue-50;\n@table-border-color:                                                @color-pf-black-300;\n@table-cell-padding:                                                10px;\n@tooltip-arrow-width:                                               8px;\n@tooltip-bg:                                                        @color-pf-black-800;\n@tooltip-max-width:                                                 220px;\n// Reference variables declared in block above\n@alert-danger-bg:                                                   lighten(@color-pf-red-100, 55%);\n@alert-danger-border:                                               @brand-danger;\n@alert-danger-text:                                                 @gray-dark;\n@alert-info-bg:                                                     @color-pf-black-150;\n@alert-info-text:                                                   @gray-dark;\n@alert-success-bg:                                                  lighten(@color-pf-green-100, 8%);\n@alert-success-border:                                              @brand-success;\n@alert-success-text:                                                @gray-dark;\n@alert-warning-bg:                                                  lighten(@color-pf-orange-100, 8%);\n@alert-warning-border:                                              @brand-warning;\n@alert-warning-text:                                                @gray-dark;\n@badge-border-radius:                                               @border-radius-base;\n@border-radius-large:                                               @border-radius-base;\n@border-radius-small:                                               @border-radius-base;\n@breadcrumb-active-color:                                           @gray-pf;\n@breadcrumb-color:                                                  @gray-pf;\n@btn-default-bg:                                                    @gray-lighter;\n@btn-default-color:                                                 @gray-pf;\n@caret-width-large:                                                 @caret-width-base;\n@code-color:                                                        @color-pf-blue-600;\n@dropdown-fallback-border:                                          @dropdown-border;\n@dropdown-link-active-bg:                                           @link-color;\n@dropdown-link-hover-color:                                         @gray-pf;\n@font-size-h1:                                                      ceil((@font-size-base * 2)); // ~24px\n@font-size-h2:                                                      ceil((@font-size-base * 1.8333)); // ~22px\n@font-size-h3:                                                      ceil((@font-size-base * 1.3333)); // ~16px\n@font-size-h5:                                                      ceil((@font-size-base * 1.0833)); // ~13px\n@font-size-large:                                                   ceil((@font-size-base * 1.1666)); // ~14px\n@font-size-small:                                                   ceil((@font-size-base * .9166)); // ~11px\n@input-color:                                                       @gray-dark;\n@nav-tabs-active-link-hover-color:                                  @link-color;\n@nav-tabs-justified-link-border-color:                              @nav-tabs-border-color;\n@nav-pf-vertical-badges-width:                                      (@nav-pf-vertical-width + 50px);\n@padding-small-horizontal:                                          @padding-base-horizontal;\n@padding-small-vertical:                                            @padding-base-vertical;\n@panel-group-pf-danger-heading-bg:                                  @alert-danger-bg;\n@panel-group-pf-primary-heading-bg:                                 lighten(@brand-primary, 38%);\n@panel-group-pf-success-heading-bg:                                 @alert-success-bg;\n@panel-group-pf-warning-heading-bg:                                 @alert-warning-bg;\n@panel-group-pf-info-heading-bg:                                    lighten(desaturate(spin(@brand-info, 13), 45), 60%);\n@panel-danger-border:                                               @brand-danger;\n@panel-danger-heading-bg:                                           @brand-danger;\n@panel-info-border:                                                 @brand-info;\n@panel-info-heading-bg:                                             @brand-info;\n@panel-primary-border:                                              @brand-primary;\n@panel-primary-text:                                                @body-bg;\n@panel-success-border:                                              @brand-success;\n@panel-success-heading-bg:                                          @brand-success;\n@panel-warning-border:                                              @brand-warning;\n@panel-warning-heading-bg:                                          @brand-warning;\n@state-warning-text:                                                @brand-warning;\n@state-danger-text:                                                 @brand-danger;\n// Reference variable declared in block above\n@panel-danger-text:                                                 @panel-primary-text;\n@panel-info-text:                                                   @panel-primary-text;\n@panel-success-text:                                                @panel-primary-text;\n@panel-warning-text:                                                @panel-primary-text;\n\n// PatternFly-specific variables based on Bootstrap overides\n// ---------------------------------------------------------\n@bootstrap-switch-bg-color:                                         @btn-default-bg;\n@btn-danger-bg-img-start:                                           @brand-danger;\n@btn-danger-bg-img-stop:                                            @btn-danger-bg;\n@btn-primary-bg-img-start:                                          @brand-primary;\n@btn-primary-bg-img-stop:                                           @btn-primary-bg;\n@dropdown-link-focus-bg:                                            @link-color;\n@line-height-computed:                                              floor((@font-size-base * @line-height-base));\n@nav-pf-vertical-icon-size:                                         (@font-size-base + 8);\n@notification-badge-color:                                          @color-pf-blue-400;\n@progress-sm:                                                       (@line-height-computed - 6);\n@progress-xs:                                                       (@line-height-computed - 14);\n@syntax-1:                                                          @btn-danger-bg;\n@syntax-2:                                                          @gray-dark;\n@syntax-3:                                                          @brand-success;\n@syntax-4:                                                          @brand-info;\n@tooltip-font-size:                                                 @font-size-base;\n","// WebKit-style focus\n\n.tab-focus() {\n  // WebKit-specific. Other browsers will keep their default outline style.\n  // (Initially tried to also force default via `outline: initial`,\n  // but that seems to erroneously remove the outline in Firefox altogether.)\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\n","//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n  display: block;\n  padding: @thumbnail-padding;\n  margin-bottom: @line-height-computed;\n  line-height: @line-height-base;\n  background-color: @thumbnail-bg;\n  border: 1px solid @thumbnail-border;\n  border-radius: @thumbnail-border-radius;\n  .transition(border .2s ease-in-out);\n\n  > img,\n  a > img {\n    &:extend(.img-responsive);\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  // Add a hover state for linked versions only\n  a&:hover,\n  a&:focus,\n  a&.active {\n    border-color: @link-color;\n  }\n\n  // Image captions\n  .caption {\n    padding: @thumbnail-caption-padding;\n    color: @thumbnail-caption-color;\n  }\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n  position: relative;\n}\n\n.carousel-inner {\n  position: relative;\n  overflow: hidden;\n  width: 100%;\n\n  > .item {\n    display: none;\n    position: relative;\n    .transition(.6s ease-in-out left);\n\n    // Account for jankitude on images\n    > img,\n    > a > img {\n      &:extend(.img-responsive);\n      line-height: 1;\n    }\n\n    // WebKit CSS3 transforms for supported devices\n    @media all and (transform-3d), (-webkit-transform-3d) {\n      .transition-transform(~'0.6s ease-in-out');\n      .backface-visibility(~'hidden');\n      .perspective(1000px);\n\n      &.next,\n      &.active.right {\n        .translate3d(100%, 0, 0);\n        left: 0;\n      }\n      &.prev,\n      &.active.left {\n        .translate3d(-100%, 0, 0);\n        left: 0;\n      }\n      &.next.left,\n      &.prev.right,\n      &.active {\n        .translate3d(0, 0, 0);\n        left: 0;\n      }\n    }\n  }\n\n  > .active,\n  > .next,\n  > .prev {\n    display: block;\n  }\n\n  > .active {\n    left: 0;\n  }\n\n  > .next,\n  > .prev {\n    position: absolute;\n    top: 0;\n    width: 100%;\n  }\n\n  > .next {\n    left: 100%;\n  }\n  > .prev {\n    left: -100%;\n  }\n  > .next.left,\n  > .prev.right {\n    left: 0;\n  }\n\n  > .active.left {\n    left: -100%;\n  }\n  > .active.right {\n    left: 100%;\n  }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  width: @carousel-control-width;\n  .opacity(@carousel-control-opacity);\n  font-size: @carousel-control-font-size;\n  color: @carousel-control-color;\n  text-align: center;\n  text-shadow: @carousel-text-shadow;\n  background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug\n  // We can't have this transition here because WebKit cancels the carousel\n  // animation if you trip this while in the middle of another animation.\n\n  // Set gradients for backgrounds\n  &.left {\n    #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n  }\n  &.right {\n    left: auto;\n    right: 0;\n    #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n  }\n\n  // Hover/focus state\n  &:hover,\n  &:focus {\n    outline: 0;\n    color: @carousel-control-color;\n    text-decoration: none;\n    .opacity(.9);\n  }\n\n  // Toggles\n  .icon-prev,\n  .icon-next,\n  .glyphicon-chevron-left,\n  .glyphicon-chevron-right {\n    position: absolute;\n    top: 50%;\n    margin-top: -10px;\n    z-index: 5;\n    display: inline-block;\n  }\n  .icon-prev,\n  .glyphicon-chevron-left {\n    left: 50%;\n    margin-left: -10px;\n  }\n  .icon-next,\n  .glyphicon-chevron-right {\n    right: 50%;\n    margin-right: -10px;\n  }\n  .icon-prev,\n  .icon-next {\n    width:  20px;\n    height: 20px;\n    line-height: 1;\n    font-family: serif;\n  }\n\n\n  .icon-prev {\n    &:before {\n      content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n    }\n  }\n  .icon-next {\n    &:before {\n      content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n    }\n  }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n  position: absolute;\n  bottom: 10px;\n  left: 50%;\n  z-index: 15;\n  width: 60%;\n  margin-left: -30%;\n  padding-left: 0;\n  list-style: none;\n  text-align: center;\n\n  li {\n    display: inline-block;\n    width:  10px;\n    height: 10px;\n    margin: 1px;\n    text-indent: -999px;\n    border: 1px solid @carousel-indicator-border-color;\n    border-radius: 10px;\n    cursor: pointer;\n\n    // IE8-9 hack for event handling\n    //\n    // Internet Explorer 8-9 does not support clicks on elements without a set\n    // `background-color`. We cannot use `filter` since that's not viewed as a\n    // background color by the browser. Thus, a hack is needed.\n    // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer\n    //\n    // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n    // set alpha transparency for the best results possible.\n    background-color: #000 \\9; // IE8\n    background-color: rgba(0,0,0,0); // IE9\n  }\n  .active {\n    margin: 0;\n    width:  12px;\n    height: 12px;\n    background-color: @carousel-indicator-active-bg;\n  }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n  position: absolute;\n  left: 15%;\n  right: 15%;\n  bottom: 20px;\n  z-index: 10;\n  padding-top: 20px;\n  padding-bottom: 20px;\n  color: @carousel-caption-color;\n  text-align: center;\n  text-shadow: @carousel-text-shadow;\n  & .btn {\n    text-shadow: none; // No shadow for button elements in carousel-caption\n  }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n  // Scale up the controls a smidge\n  .carousel-control {\n    .glyphicon-chevron-left,\n    .glyphicon-chevron-right,\n    .icon-prev,\n    .icon-next {\n      width: (@carousel-control-font-size * 1.5);\n      height: (@carousel-control-font-size * 1.5);\n      margin-top: (@carousel-control-font-size / -2);\n      font-size: (@carousel-control-font-size * 1.5);\n    }\n    .glyphicon-chevron-left,\n    .icon-prev {\n      margin-left: (@carousel-control-font-size / -2);\n    }\n    .glyphicon-chevron-right,\n    .icon-next {\n      margin-right: (@carousel-control-font-size / -2);\n    }\n  }\n\n  // Show and left align the captions\n  .carousel-caption {\n    left: 20%;\n    right: 20%;\n    padding-bottom: 30px;\n  }\n\n  // Move up the indicators\n  .carousel-indicators {\n    bottom: 20px;\n  }\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n  display: @display;\n  max-width: 100%; // Part 1: Set a maximum relative to the parent\n  height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n  background-image: url(\"@{file-1x}\");\n\n  @media\n  only screen and (-webkit-min-device-pixel-ratio: 2),\n  only screen and (   min--moz-device-pixel-ratio: 2),\n  only screen and (     -o-min-device-pixel-ratio: 2/1),\n  only screen and (        min-device-pixel-ratio: 2),\n  only screen and (                min-resolution: 192dpi),\n  only screen and (                min-resolution: 2dppx) {\n    background-image: url(\"@{file-2x}\");\n    background-size: @width-1x @height-1x;\n  }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n  font-family: @headings-font-family;\n  font-weight: @headings-font-weight;\n  line-height: @headings-line-height;\n  color: @headings-color;\n\n  small,\n  .small {\n    font-weight: normal;\n    line-height: 1;\n    color: @headings-small-color;\n  }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n  margin-top: @line-height-computed;\n  margin-bottom: (@line-height-computed / 2);\n\n  small,\n  .small {\n    font-size: 65%;\n  }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n  margin-top: (@line-height-computed / 2);\n  margin-bottom: (@line-height-computed / 2);\n\n  small,\n  .small {\n    font-size: 75%;\n  }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n  margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n  margin-bottom: @line-height-computed;\n  font-size: floor((@font-size-base * 1.15));\n  font-weight: 300;\n  line-height: 1.4;\n\n  @media (min-width: @screen-sm-min) {\n    font-size: (@font-size-base * 1.5);\n  }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n  font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n  background-color: @state-warning-bg;\n  padding: .2em;\n}\n\n// Alignment\n.text-left           { text-align: left; }\n.text-right          { text-align: right; }\n.text-center         { text-align: center; }\n.text-justify        { text-align: justify; }\n.text-nowrap         { white-space: nowrap; }\n\n// Transformation\n.text-lowercase      { text-transform: lowercase; }\n.text-uppercase      { text-transform: uppercase; }\n.text-capitalize     { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n  color: @text-muted;\n}\n.text-primary {\n  .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n  .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n  .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n  .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n  .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n  // Given the contrast here, this is the only class to have its color inverted\n  // automatically.\n  color: #fff;\n  .bg-variant(@brand-primary);\n}\n.bg-success {\n  .bg-variant(@state-success-bg);\n}\n.bg-info {\n  .bg-variant(@state-info-bg);\n}\n.bg-warning {\n  .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n  .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n  padding-bottom: ((@line-height-computed / 2) - 1);\n  margin: (@line-height-computed * 2) 0 @line-height-computed;\n  border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n  margin-top: 0;\n  margin-bottom: (@line-height-computed / 2);\n  ul,\n  ol {\n    margin-bottom: 0;\n  }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n  padding-left: 0;\n  list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n  .list-unstyled();\n  margin-left: -5px;\n\n  > li {\n    display: inline-block;\n    padding-left: 5px;\n    padding-right: 5px;\n  }\n}\n\n// Description Lists\ndl {\n  margin-top: 0; // Remove browser default\n  margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n  line-height: @line-height-base;\n}\ndt {\n  font-weight: bold;\n}\ndd {\n  margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n  dd {\n    &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n  }\n\n  @media (min-width: @dl-horizontal-breakpoint) {\n    dt {\n      float: left;\n      width: (@dl-horizontal-offset - 20);\n      clear: left;\n      text-align: right;\n      .text-overflow();\n    }\n    dd {\n      margin-left: @dl-horizontal-offset;\n    }\n  }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n  cursor: help;\n  border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n  font-size: 90%;\n  .text-uppercase();\n}\n\n// Blockquotes\nblockquote {\n  padding: (@line-height-computed / 2) @line-height-computed;\n  margin: 0 0 @line-height-computed;\n  font-size: @blockquote-font-size;\n  border-left: 5px solid @blockquote-border-color;\n\n  p,\n  ul,\n  ol {\n    &:last-child {\n      margin-bottom: 0;\n    }\n  }\n\n  // Note: Deprecated small and .small as of v3.1.0\n  // Context: https://github.com/twbs/bootstrap/issues/11660\n  footer,\n  small,\n  .small {\n    display: block;\n    font-size: 80%; // back to default font-size\n    line-height: @line-height-base;\n    color: @blockquote-small-color;\n\n    &:before {\n      content: '\\2014 \\00A0'; // em dash, nbsp\n    }\n  }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n  padding-right: 15px;\n  padding-left: 0;\n  border-right: 5px solid @blockquote-border-color;\n  border-left: 0;\n  text-align: right;\n\n  // Account for citation\n  footer,\n  small,\n  .small {\n    &:before { content: ''; }\n    &:after {\n      content: '\\00A0 \\2014'; // nbsp, em dash\n    }\n  }\n}\n\n// Addresses\naddress {\n  margin-bottom: @line-height-computed;\n  font-style: normal;\n  line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n  color: @color;\n  a&:hover,\n  a&:focus {\n    color: darken(@color, 10%);\n  }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n  background-color: @color;\n  a&:hover,\n  a&:focus {\n    background-color: darken(@color, 10%);\n  }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n  font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: @code-color;\n  background-color: @code-bg;\n  border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: @kbd-color;\n  background-color: @kbd-bg;\n  border-radius: @border-radius-small;\n  box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n\n  kbd {\n    padding: 0;\n    font-size: 100%;\n    font-weight: bold;\n    box-shadow: none;\n  }\n}\n\n// Blocks of code\npre {\n  display: block;\n  padding: ((@line-height-computed - 1) / 2);\n  margin: 0 0 (@line-height-computed / 2);\n  font-size: (@font-size-base - 1); // 14px to 13px\n  line-height: @line-height-base;\n  word-break: break-all;\n  word-wrap: break-word;\n  color: @pre-color;\n  background-color: @pre-bg;\n  border: 1px solid @pre-border-color;\n  border-radius: @border-radius-base;\n\n  // Account for some code outputs that place code tags in pre tags\n  code {\n    padding: 0;\n    font-size: inherit;\n    color: inherit;\n    white-space: pre-wrap;\n    background-color: transparent;\n    border-radius: 0;\n  }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n  max-height: @pre-scrollable-max-height;\n  overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n  .container-fixed();\n\n  @media (min-width: @screen-sm-min) {\n    width: @container-sm;\n  }\n  @media (min-width: @screen-md-min) {\n    width: @container-md;\n  }\n  @media (min-width: @screen-lg-min) {\n    width: @container-lg;\n  }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n  .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n  .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n  .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n  .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n  .make-grid(lg);\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @grid-gutter-width) {\n  margin-right: auto;\n  margin-left: auto;\n  padding-left:  floor((@gutter / 2));\n  padding-right: ceil((@gutter / 2));\n  &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n  margin-left:  ceil((@gutter / -2));\n  margin-right: floor((@gutter / -2));\n  &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  float: left;\n  width: percentage((@columns / @grid-columns));\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n  margin-left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-push(@columns) {\n  left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-pull(@columns) {\n  right: percentage((@columns / @grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-sm-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-offset(@columns) {\n  @media (min-width: @screen-sm-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-push(@columns) {\n  @media (min-width: @screen-sm-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-pull(@columns) {\n  @media (min-width: @screen-sm-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-md-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-offset(@columns) {\n  @media (min-width: @screen-md-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-push(@columns) {\n  @media (min-width: @screen-md-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-pull(@columns) {\n  @media (min-width: @screen-md-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-lg-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-offset(@columns) {\n  @media (min-width: @screen-lg-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-push(@columns) {\n  @media (min-width: @screen-lg-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-pull(@columns) {\n  @media (min-width: @screen-lg-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n  // Common styles for all sizes of grid columns, widths 1-12\n  .col(@index) { // initial\n    @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n    .col((@index + 1), @item);\n  }\n  .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n    @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n    .col((@index + 1), ~\"@{list}, @{item}\");\n  }\n  .col(@index, @list) when (@index > @grid-columns) { // terminal\n    @{list} {\n      position: relative;\n      // Prevent columns from collapsing when empty\n      min-height: 1px;\n      // Inner gutter via padding\n      padding-left:  ceil((@grid-gutter-width / 2));\n      padding-right: floor((@grid-gutter-width / 2));\n    }\n  }\n  .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n  .col(@index) { // initial\n    @item: ~\".col-@{class}-@{index}\";\n    .col((@index + 1), @item);\n  }\n  .col(@index, @list) when (@index =< @grid-columns) { // general\n    @item: ~\".col-@{class}-@{index}\";\n    .col((@index + 1), ~\"@{list}, @{item}\");\n  }\n  .col(@index, @list) when (@index > @grid-columns) { // terminal\n    @{list} {\n      float: left;\n    }\n  }\n  .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n  .col-@{class}-@{index} {\n    width: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n  .col-@{class}-push-@{index} {\n    left: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n  .col-@{class}-push-0 {\n    left: auto;\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n  .col-@{class}-pull-@{index} {\n    right: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n  .col-@{class}-pull-0 {\n    right: auto;\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n  .col-@{class}-offset-@{index} {\n    margin-left: percentage((@index / @grid-columns));\n  }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n  .calc-grid-column(@index, @class, @type);\n  // next iteration\n  .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n  .float-grid-columns(@class);\n  .loop-grid-columns(@grid-columns, @class, width);\n  .loop-grid-columns(@grid-columns, @class, pull);\n  .loop-grid-columns(@grid-columns, @class, push);\n  .loop-grid-columns(@grid-columns, @class, offset);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n  background-color: @table-bg;\n}\ncaption {\n  padding-top: @table-cell-padding;\n  padding-bottom: @table-cell-padding;\n  color: @text-muted;\n  text-align: left;\n}\nth {\n  text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n  width: 100%;\n  max-width: 100%;\n  margin-bottom: @line-height-computed;\n  // Cells\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-cell-padding;\n        line-height: @line-height-base;\n        vertical-align: top;\n        border-top: 1px solid @table-border-color;\n      }\n    }\n  }\n  // Bottom align for column headings\n  > thead > tr > th {\n    vertical-align: bottom;\n    border-bottom: 2px solid @table-border-color;\n  }\n  // Remove top border from thead by default\n  > caption + thead,\n  > colgroup + thead,\n  > thead:first-child {\n    > tr:first-child {\n      > th,\n      > td {\n        border-top: 0;\n      }\n    }\n  }\n  // Account for multiple tbody instances\n  > tbody + tbody {\n    border-top: 2px solid @table-border-color;\n  }\n\n  // Nesting\n  .table {\n    background-color: @body-bg;\n  }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-condensed-cell-padding;\n      }\n    }\n  }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n  border: 1px solid @table-border-color;\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        border: 1px solid @table-border-color;\n      }\n    }\n  }\n  > thead > tr {\n    > th,\n    > td {\n      border-bottom-width: 2px;\n    }\n  }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n  > tbody > tr:nth-of-type(odd) {\n    background-color: @table-bg-accent;\n  }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n  > tbody > tr:hover {\n    background-color: @table-bg-hover;\n  }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n  position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n  float: none;\n  display: table-column;\n}\ntable {\n  td,\n  th {\n    &[class*=\"col-\"] {\n      position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n      float: none;\n      display: table-cell;\n    }\n  }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n  overflow-x: auto;\n  min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n\n  @media screen and (max-width: @screen-xs-max) {\n    width: 100%;\n    margin-bottom: (@line-height-computed * 0.75);\n    overflow-y: hidden;\n    -ms-overflow-style: -ms-autohiding-scrollbar;\n    border: 1px solid @table-border-color;\n\n    // Tighten up spacing\n    > .table {\n      margin-bottom: 0;\n\n      // Ensure the content doesn't wrap\n      > thead,\n      > tbody,\n      > tfoot {\n        > tr {\n          > th,\n          > td {\n            white-space: nowrap;\n          }\n        }\n      }\n    }\n\n    // Special overrides for the bordered tables\n    > .table-bordered {\n      border: 0;\n\n      // Nuke the appropriate borders so that the parent can handle them\n      > thead,\n      > tbody,\n      > tfoot {\n        > tr {\n          > th:first-child,\n          > td:first-child {\n            border-left: 0;\n          }\n          > th:last-child,\n          > td:last-child {\n            border-right: 0;\n          }\n        }\n      }\n\n      // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n      // chances are there will be only one `tr` in a `thead` and that would\n      // remove the border altogether.\n      > tbody,\n      > tfoot {\n        > tr:last-child {\n          > th,\n          > td {\n            border-bottom: 0;\n          }\n        }\n      }\n\n    }\n  }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n  // Exact selectors below required to override `.table-striped` and prevent\n  // inheritance to nested tables.\n  .table > thead > tr,\n  .table > tbody > tr,\n  .table > tfoot > tr {\n    > td.@{state},\n    > th.@{state},\n    &.@{state} > td,\n    &.@{state} > th {\n      background-color: @background;\n    }\n  }\n\n  // Hover states for `.table-hover`\n  // Note: this is not available for cells or rows within `thead` or `tfoot`.\n  .table-hover > tbody > tr {\n    > td.@{state}:hover,\n    > th.@{state}:hover,\n    &.@{state}:hover > td,\n    &:hover > .@{state},\n    &.@{state}:hover > th {\n      background-color: darken(@background, 5%);\n    }\n  }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n  padding: 0;\n  margin: 0;\n  border: 0;\n  // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n  // so we reset that to ensure it behaves more like a standard block element.\n  // See https://github.com/twbs/bootstrap/issues/12359.\n  min-width: 0;\n}\n\nlegend {\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin-bottom: @line-height-computed;\n  font-size: (@font-size-base * 1.5);\n  line-height: inherit;\n  color: @legend-color;\n  border: 0;\n  border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n  display: inline-block;\n  max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n  margin-bottom: 5px;\n  font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n  .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  margin: 4px 0 0;\n  margin-top: 1px \\9; // IE8-9\n  line-height: normal;\n}\n\ninput[type=\"file\"] {\n  display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n  display: block;\n  width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n  height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n  .tab-focus();\n}\n\n// Adjust output element\noutput {\n  display: block;\n  padding-top: (@padding-base-vertical + 1);\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n  display: block;\n  width: 100%;\n  height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n  padding: @padding-base-vertical @padding-base-horizontal;\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @input-color;\n  background-color: @input-bg;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid @input-border;\n  border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.\n  .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n  .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n  // Customize the `:focus` state to imitate native WebKit styles.\n  .form-control-focus();\n\n  // Placeholder\n  .placeholder();\n\n  // Unstyle the caret on `<select>`s in IE10+.\n  &::-ms-expand {\n    border: 0;\n    background-color: transparent;\n  }\n\n  // Disabled and read-only inputs\n  //\n  // HTML5 says that controls under a fieldset > legend:first-child won't be\n  // disabled if the fieldset is disabled. Due to implementation difficulty, we\n  // don't honor that edge case; we style them as disabled anyway.\n  &[disabled],\n  &[readonly],\n  fieldset[disabled] & {\n    background-color: @input-bg-disabled;\n    opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655\n  }\n\n  &[disabled],\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n\n  // Reset height for `textarea`s\n  textarea& {\n    height: auto;\n  }\n}\n\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n  -webkit-appearance: none;\n}\n\n\n// Special styles for iOS temporal inputs\n//\n// In Mobile Safari, setting `display: block` on temporal inputs causes the\n// text within the input to become vertically misaligned. As a workaround, we\n// set a pixel line-height that matches the given height of the input, but only\n// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848\n//\n// Note that as of 9.3, iOS doesn't support `week`.\n\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n  input[type=\"date\"],\n  input[type=\"time\"],\n  input[type=\"datetime-local\"],\n  input[type=\"month\"] {\n    &.form-control {\n      line-height: @input-height-base;\n    }\n\n    &.input-sm,\n    .input-group-sm & {\n      line-height: @input-height-small;\n    }\n\n    &.input-lg,\n    .input-group-lg & {\n      line-height: @input-height-large;\n    }\n  }\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n  margin-bottom: @form-group-margin-bottom;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n  position: relative;\n  display: block;\n  margin-top: 10px;\n  margin-bottom: 10px;\n\n  label {\n    min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: normal;\n    cursor: pointer;\n  }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n  position: absolute;\n  margin-left: -20px;\n  margin-top: 4px \\9;\n}\n\n.radio + .radio,\n.checkbox + .checkbox {\n  margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n  position: relative;\n  display: inline-block;\n  padding-left: 20px;\n  margin-bottom: 0;\n  vertical-align: middle;\n  font-weight: normal;\n  cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n  margin-top: 0;\n  margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n// Some special care is needed because <label>s don't inherit their parent's `cursor`.\n//\n// Note: Neither radios nor checkboxes can be readonly.\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  &[disabled],\n  &.disabled,\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n}\n// These classes are used directly on <label>s\n.radio-inline,\n.checkbox-inline {\n  &.disabled,\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n}\n// These classes are used on elements with <label> descendants\n.radio,\n.checkbox {\n  &.disabled,\n  fieldset[disabled] & {\n    label {\n      cursor: @cursor-disabled;\n    }\n  }\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n.form-control-static {\n  // Size it appropriately next to real form controls\n  padding-top: (@padding-base-vertical + 1);\n  padding-bottom: (@padding-base-vertical + 1);\n  // Remove default margin from `p`\n  margin-bottom: 0;\n  min-height: (@line-height-computed + @font-size-base);\n\n  &.input-lg,\n  &.input-sm {\n    padding-left: 0;\n    padding-right: 0;\n  }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n//\n// The `.form-group-* form-control` variations are sadly duplicated to avoid the\n// issue documented in https://github.com/twbs/bootstrap/issues/15074.\n\n.input-sm {\n  .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);\n}\n.form-group-sm {\n  .form-control {\n    height: @input-height-small;\n    padding: @padding-small-vertical @padding-small-horizontal;\n    font-size: @font-size-small;\n    line-height: @line-height-small;\n    border-radius: @input-border-radius-small;\n  }\n  select.form-control {\n    height: @input-height-small;\n    line-height: @input-height-small;\n  }\n  textarea.form-control,\n  select[multiple].form-control {\n    height: auto;\n  }\n  .form-control-static {\n    height: @input-height-small;\n    min-height: (@line-height-computed + @font-size-small);\n    padding: (@padding-small-vertical + 1) @padding-small-horizontal;\n    font-size: @font-size-small;\n    line-height: @line-height-small;\n  }\n}\n\n.input-lg {\n  .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);\n}\n.form-group-lg {\n  .form-control {\n    height: @input-height-large;\n    padding: @padding-large-vertical @padding-large-horizontal;\n    font-size: @font-size-large;\n    line-height: @line-height-large;\n    border-radius: @input-border-radius-large;\n  }\n  select.form-control {\n    height: @input-height-large;\n    line-height: @input-height-large;\n  }\n  textarea.form-control,\n  select[multiple].form-control {\n    height: auto;\n  }\n  .form-control-static {\n    height: @input-height-large;\n    min-height: (@line-height-computed + @font-size-large);\n    padding: (@padding-large-vertical + 1) @padding-large-horizontal;\n    font-size: @font-size-large;\n    line-height: @line-height-large;\n  }\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n.has-feedback {\n  // Enable absolute positioning\n  position: relative;\n\n  // Ensure icons don't overlap text\n  .form-control {\n    padding-right: (@input-height-base * 1.25);\n  }\n}\n// Feedback icon (requires .glyphicon classes)\n.form-control-feedback {\n  position: absolute;\n  top: 0;\n  right: 0;\n  z-index: 2; // Ensure icon is above input groups\n  display: block;\n  width: @input-height-base;\n  height: @input-height-base;\n  line-height: @input-height-base;\n  text-align: center;\n  pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n  width: @input-height-large;\n  height: @input-height-large;\n  line-height: @input-height-large;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n  width: @input-height-small;\n  height: @input-height-small;\n  line-height: @input-height-small;\n}\n\n// Feedback states\n.has-success {\n  .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n.has-warning {\n  .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);\n}\n.has-error {\n  .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);\n}\n\n// Reposition feedback icon if input has visible label above\n.has-feedback label {\n\n  & ~ .form-control-feedback {\n    top: (@line-height-computed + 5); // Height of the `label` and its margin\n  }\n  &.sr-only ~ .form-control-feedback {\n    top: 0;\n  }\n}\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n  display: block; // account for any element using help-block\n  margin-top: 5px;\n  margin-bottom: 10px;\n  color: lighten(@text-color, 25%); // lighten the text some for contrast\n}\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n  // Kick in the inline\n  @media (min-width: @screen-sm-min) {\n    // Inline-block all the things for \"inline\"\n    .form-group {\n      display: inline-block;\n      margin-bottom: 0;\n      vertical-align: middle;\n    }\n\n    // In navbar-form, allow folks to *not* use `.form-group`\n    .form-control {\n      display: inline-block;\n      width: auto; // Prevent labels from stacking above inputs in `.form-group`\n      vertical-align: middle;\n    }\n\n    // Make static controls behave like regular ones\n    .form-control-static {\n      display: inline-block;\n    }\n\n    .input-group {\n      display: inline-table;\n      vertical-align: middle;\n\n      .input-group-addon,\n      .input-group-btn,\n      .form-control {\n        width: auto;\n      }\n    }\n\n    // Input groups need that 100% width though\n    .input-group > .form-control {\n      width: 100%;\n    }\n\n    .control-label {\n      margin-bottom: 0;\n      vertical-align: middle;\n    }\n\n    // Remove default margin on radios/checkboxes that were used for stacking, and\n    // then undo the floating of radios and checkboxes to match.\n    .radio,\n    .checkbox {\n      display: inline-block;\n      margin-top: 0;\n      margin-bottom: 0;\n      vertical-align: middle;\n\n      label {\n        padding-left: 0;\n      }\n    }\n    .radio input[type=\"radio\"],\n    .checkbox input[type=\"checkbox\"] {\n      position: relative;\n      margin-left: 0;\n    }\n\n    // Re-override the feedback icon.\n    .has-feedback .form-control-feedback {\n      top: 0;\n    }\n  }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n  // Consistent vertical alignment of radios and checkboxes\n  //\n  // Labels also get some reset styles, but that is scoped to a media query below.\n  .radio,\n  .checkbox,\n  .radio-inline,\n  .checkbox-inline {\n    margin-top: 0;\n    margin-bottom: 0;\n    padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n  }\n  // Account for padding we're adding to ensure the alignment and of help text\n  // and other content below items\n  .radio,\n  .checkbox {\n    min-height: (@line-height-computed + (@padding-base-vertical + 1));\n  }\n\n  // Make form groups behave like rows\n  .form-group {\n    .make-row();\n  }\n\n  // Reset spacing and right align labels, but scope to media queries so that\n  // labels on narrow viewports stack the same as a default form example.\n  @media (min-width: @screen-sm-min) {\n    .control-label {\n      text-align: right;\n      margin-bottom: 0;\n      padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n    }\n  }\n\n  // Validation states\n  //\n  // Reposition the icon because it's now within a grid column and columns have\n  // `position: relative;` on them. Also accounts for the grid gutter padding.\n  .has-feedback .form-control-feedback {\n    right: floor((@grid-gutter-width / 2));\n  }\n\n  // Form group sizes\n  //\n  // Quick utility class for applying `.input-lg` and `.input-sm` styles to the\n  // inputs and labels within a `.form-group`.\n  .form-group-lg {\n    @media (min-width: @screen-sm-min) {\n      .control-label {\n        padding-top: (@padding-large-vertical + 1);\n        font-size: @font-size-large;\n      }\n    }\n  }\n  .form-group-sm {\n    @media (min-width: @screen-sm-min) {\n      .control-label {\n        padding-top: (@padding-small-vertical + 1);\n        font-size: @font-size-small;\n      }\n    }\n  }\n}\n","// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n  // Color the label and help text\n  .help-block,\n  .control-label,\n  .radio,\n  .checkbox,\n  .radio-inline,\n  .checkbox-inline,\n  &.radio label,\n  &.checkbox label,\n  &.radio-inline label,\n  &.checkbox-inline label  {\n    color: @text-color;\n  }\n  // Set the border and box shadow on specific inputs to match\n  .form-control {\n    border-color: @border-color;\n    .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n    &:focus {\n      border-color: darken(@border-color, 10%);\n      @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n      .box-shadow(@shadow);\n    }\n  }\n  // Set validation states also for addons\n  .input-group-addon {\n    color: @text-color;\n    border-color: @border-color;\n    background-color: @background-color;\n  }\n  // Optional feedback icon\n  .form-control-feedback {\n    color: @text-color;\n  }\n}\n\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-border-focus` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n.form-control-focus(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0;\n    .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  height: @input-height;\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n\n  select& {\n    height: @input-height;\n    line-height: @input-height;\n  }\n\n  textarea&,\n  select[multiple]& {\n    height: auto;\n  }\n}\n","// Mixins - Bootstrap overrides\n// -------------------\n\n// Form control outline\n.form-control-outline(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0 !important;\n    .box-shadow(~\"inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Gradients\n#gradient {\n  .striped(@color: fade(@color-pf-black, 15%); @angle: -45deg) {\n    background-image: linear-gradient(@angle, @color 25%, @color 26%, transparent 27%, transparent 49%, @color 50%, @color 51%, transparent 52%, transparent 74%, @color 75%, @color 76%, transparent 77%);\n  }\n}\n\n// Horizontal dividers\n.nav-divider(@color: @color-pf-black-200, @margin: 4px 1px) {\n  background-color: @color;\n  height: 1px;\n  margin: @margin;\n  overflow: hidden;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  &:-moz-placeholder            { color: @color; font-style: italic; } // Firefox 4-18\n  &::-moz-placeholder           { color: @color; font-style: italic; opacity: 1; } // Firefox 19+\n  &:-ms-input-placeholder       { color: @color; font-style: italic; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; font-style: italic; } // Safari and Chrome\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n  display: inline-block;\n  margin-bottom: 0; // For input.btn\n  font-weight: @btn-font-weight;\n  text-align: center;\n  vertical-align: middle;\n  touch-action: manipulation;\n  cursor: pointer;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid transparent;\n  white-space: nowrap;\n  .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);\n  .user-select(none);\n\n  &,\n  &:active,\n  &.active {\n    &:focus,\n    &.focus {\n      .tab-focus();\n    }\n  }\n\n  &:hover,\n  &:focus,\n  &.focus {\n    color: @btn-default-color;\n    text-decoration: none;\n  }\n\n  &:active,\n  &.active {\n    outline: 0;\n    background-image: none;\n    .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n  }\n\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n    .opacity(.65);\n    .box-shadow(none);\n  }\n\n  a& {\n    &.disabled,\n    fieldset[disabled] & {\n      pointer-events: none; // Future-proof disabling of clicks on `<a>` elements\n    }\n  }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n  .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n  .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n  .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n  .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n  .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n  .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n  color: @link-color;\n  font-weight: normal;\n  border-radius: 0;\n\n  &,\n  &:active,\n  &.active,\n  &[disabled],\n  fieldset[disabled] & {\n    background-color: transparent;\n    .box-shadow(none);\n  }\n  &,\n  &:hover,\n  &:focus,\n  &:active {\n    border-color: transparent;\n  }\n  &:hover,\n  &:focus {\n    color: @link-hover-color;\n    text-decoration: @link-hover-decoration;\n    background-color: transparent;\n  }\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus {\n      color: @btn-link-disabled-color;\n      text-decoration: none;\n    }\n  }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n  // line-height: ensure even-numbered height of button next to large input\n  .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @btn-border-radius-large);\n}\n.btn-sm {\n  // line-height: ensure proper height of button next to small input\n  .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n.btn-xs {\n  .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n  display: block;\n  width: 100%;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n  margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n  &.btn-block {\n    width: 100%;\n  }\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n  color: @color;\n  background-color: @background;\n  border-color: @border;\n\n  &:focus,\n  &.focus {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 25%);\n  }\n  &:hover {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n\n    &:hover,\n    &:focus,\n    &.focus {\n      color: @color;\n      background-color: darken(@background, 17%);\n          border-color: darken(@border, 25%);\n    }\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    background-image: none;\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: @background;\n          border-color: @border;\n    }\n  }\n\n  .badge {\n    color: @background;\n    background-color: @color;\n  }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n  opacity: @opacity;\n  // IE8 filter\n  @opacity-ie: (@opacity * 100);\n  filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","//\n// Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n  position: relative;\n  display: inline-block;\n  vertical-align: middle; // match .btn alignment given font-size hack above\n  > .btn {\n    position: relative;\n    float: left;\n    // Bring the \"active\" button to the front\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      z-index: 2;\n    }\n  }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n  .btn + .btn,\n  .btn + .btn-group,\n  .btn-group + .btn,\n  .btn-group + .btn-group {\n    margin-left: -1px;\n  }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n  margin-left: -5px; // Offset the first child's margin\n  &:extend(.clearfix all);\n\n  .btn,\n  .btn-group,\n  .input-group {\n    float: left;\n  }\n  > .btn,\n  > .btn-group,\n  > .input-group {\n    margin-left: 5px;\n  }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n  border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n  margin-left: 0;\n  &:not(:last-child):not(.dropdown-toggle) {\n    .border-right-radius(0);\n  }\n}\n// Need .dropdown-toggle since :last-child doesn't apply, given that a .dropdown-menu is used immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n  .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n  float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) {\n  > .btn:last-child,\n  > .dropdown-toggle {\n    .border-right-radius(0);\n  }\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n  outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { &:extend(.btn-xs); }\n.btn-group-sm > .btn { &:extend(.btn-sm); }\n.btn-group-lg > .btn { &:extend(.btn-lg); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n  padding-left: 8px;\n  padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n  padding-left: 12px;\n  padding-right: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n  .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n\n  // Show no shadow for `.btn-link` since it has no other button styles.\n  &.btn-link {\n    .box-shadow(none);\n  }\n}\n\n\n// Reposition the caret\n.btn .caret {\n  margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n  border-width: @caret-width-large @caret-width-large 0;\n  border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n  border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n  > .btn,\n  > .btn-group,\n  > .btn-group > .btn {\n    display: block;\n    float: none;\n    width: 100%;\n    max-width: 100%;\n  }\n\n  // Clear floats so dropdown menus can be properly placed\n  > .btn-group {\n    &:extend(.clearfix all);\n    > .btn {\n      float: none;\n    }\n  }\n\n  > .btn + .btn,\n  > .btn + .btn-group,\n  > .btn-group + .btn,\n  > .btn-group + .btn-group {\n    margin-top: -1px;\n    margin-left: 0;\n  }\n}\n\n.btn-group-vertical > .btn {\n  &:not(:first-child):not(:last-child) {\n    border-radius: 0;\n  }\n  &:first-child:not(:last-child) {\n    .border-top-radius(@btn-border-radius-base);\n    .border-bottom-radius(0);\n  }\n  &:last-child:not(:first-child) {\n    .border-top-radius(0);\n    .border-bottom-radius(@btn-border-radius-base);\n  }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) {\n  > .btn:last-child,\n  > .dropdown-toggle {\n    .border-bottom-radius(0);\n  }\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  .border-top-radius(0);\n}\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n  display: table;\n  width: 100%;\n  table-layout: fixed;\n  border-collapse: separate;\n  > .btn,\n  > .btn-group {\n    float: none;\n    display: table-cell;\n    width: 1%;\n  }\n  > .btn-group .btn {\n    width: 100%;\n  }\n\n  > .btn-group .dropdown-menu {\n    left: auto;\n  }\n}\n\n\n// Checkbox and radio options\n//\n// In order to support the browser's form validation feedback, powered by the\n// `required` attribute, we have to \"hide\" the inputs via `clip`. We cannot use\n// `display: none;` or `visibility: hidden;` as that also hides the popover.\n// Simply visually hiding the inputs via `opacity` would leave them clickable in\n// certain cases which is prevented by using `clip` and `pointer-events`.\n// This way, we ensure a DOM element is visible to position the popover from.\n//\n// See https://github.com/twbs/bootstrap/pull/12794 and\n// https://github.com/twbs/bootstrap/pull/14559 for more information.\n\n[data-toggle=\"buttons\"] {\n  > .btn,\n  > .btn-group > .btn {\n    input[type=\"radio\"],\n    input[type=\"checkbox\"] {\n      position: absolute;\n      clip: rect(0,0,0,0);\n      pointer-events: none;\n    }\n  }\n}\n","//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.\n\n.fade {\n  opacity: 0;\n  .transition(opacity .15s linear);\n  &.in {\n    opacity: 1;\n  }\n}\n\n.collapse {\n  display: none;\n\n  &.in      { display: block; }\n  tr&.in    { display: table-row; }\n  tbody&.in { display: table-row-group; }\n}\n\n.collapsing {\n  position: relative;\n  height: 0;\n  overflow: hidden;\n  .transition-property(~\"height, visibility\");\n  .transition-duration(.35s);\n  .transition-timing-function(ease);\n}\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 2px;\n  vertical-align: middle;\n  border-top:   @caret-width-base dashed;\n  border-top:   @caret-width-base solid ~\"\\9\"; // IE8\n  border-right: @caret-width-base solid transparent;\n  border-left:  @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropup,\n.dropdown {\n  position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n  outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  z-index: @zindex-dropdown;\n  display: none; // none by default, but block on \"open\" of the menu\n  float: left;\n  min-width: 160px;\n  padding: 5px 0;\n  margin: 2px 0 0; // override default ul\n  list-style: none;\n  font-size: @font-size-base;\n  text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n  background-color: @dropdown-bg;\n  border: 1px solid @dropdown-fallback-border; // IE8 fallback\n  border: 1px solid @dropdown-border;\n  border-radius: @border-radius-base;\n  .box-shadow(0 6px 12px rgba(0,0,0,.175));\n  background-clip: padding-box;\n\n  // Aligns the dropdown menu to right\n  //\n  // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n  &.pull-right {\n    right: 0;\n    left: auto;\n  }\n\n  // Dividers (basically an hr) within the dropdown\n  .divider {\n    .nav-divider(@dropdown-divider-bg);\n  }\n\n  // Links within the dropdown menu\n  > li > a {\n    display: block;\n    padding: 3px 20px;\n    clear: both;\n    font-weight: normal;\n    line-height: @line-height-base;\n    color: @dropdown-link-color;\n    white-space: nowrap; // prevent links from randomly breaking onto new lines\n  }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    color: @dropdown-link-hover-color;\n    background-color: @dropdown-link-hover-bg;\n  }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n  &,\n  &:hover,\n  &:focus {\n    color: @dropdown-link-active-color;\n    text-decoration: none;\n    outline: 0;\n    background-color: @dropdown-link-active-bg;\n  }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n  &,\n  &:hover,\n  &:focus {\n    color: @dropdown-link-disabled-color;\n  }\n\n  // Nuke hover/focus effects\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    background-color: transparent;\n    background-image: none; // Remove CSS gradient\n    .reset-filter();\n    cursor: @cursor-disabled;\n  }\n}\n\n// Open state for the dropdown\n.open {\n  // Show the menu\n  > .dropdown-menu {\n    display: block;\n  }\n\n  // Remove the outline when :focus is triggered\n  > a {\n    outline: 0;\n  }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n  left: auto; // Reset the default from `.dropdown-menu`\n  right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n  left: 0;\n  right: auto;\n}\n\n// Dropdown section headers\n.dropdown-header {\n  display: block;\n  padding: 3px 20px;\n  font-size: @font-size-small;\n  line-height: @line-height-base;\n  color: @dropdown-header-color;\n  white-space: nowrap; // as with > li > a\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n  position: fixed;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  top: 0;\n  z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n  right: 0;\n  left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n  // Reverse the caret\n  .caret {\n    border-top: 0;\n    border-bottom: @caret-width-base dashed;\n    border-bottom: @caret-width-base solid ~\"\\9\"; // IE8\n    content: \"\";\n  }\n  // Different positioning for bottom up menu\n  .dropdown-menu {\n    top: auto;\n    bottom: 100%;\n    margin-bottom: 2px;\n  }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-right {\n    .dropdown-menu {\n      .dropdown-menu-right();\n    }\n    // Necessary for overrides of the default right aligned menu.\n    // Will remove come v4 in all likelihood.\n    .dropdown-menu-left {\n      .dropdown-menu-left();\n    }\n  }\n}\n","// Horizontal dividers\n//\n// Dividers (basically an hr) within dropdowns and nav lists\n\n.nav-divider(@color: #e5e5e5) {\n  height: 1px;\n  margin: ((@line-height-computed / 2) - 1) 0;\n  overflow: hidden;\n  background-color: @color;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n  filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n  border-top-right-radius: @radius;\n   border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n  border-bottom-right-radius: @radius;\n     border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n  border-bottom-right-radius: @radius;\n   border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n  border-bottom-left-radius: @radius;\n     border-top-left-radius: @radius;\n}\n","//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n  position: relative; // For dropdowns\n  display: table;\n  border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n  // Undo padding and float of grid classes\n  &[class*=\"col-\"] {\n    float: none;\n    padding-left: 0;\n    padding-right: 0;\n  }\n\n  .form-control {\n    // Ensure that the input is always above the *appended* addon button for\n    // proper border colors.\n    position: relative;\n    z-index: 2;\n\n    // IE9 fubars the placeholder attribute in text inputs and the arrows on\n    // select elements in input groups. To fix it, we float the input. Details:\n    // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n    float: left;\n\n    width: 100%;\n    margin-bottom: 0;\n\n    &:focus {\n      z-index: 3;\n    }\n  }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n  .input-lg();\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n  .input-sm();\n}\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n  display: table-cell;\n\n  &:not(:first-child):not(:last-child) {\n    border-radius: 0;\n  }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n  width: 1%;\n  white-space: nowrap;\n  vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n  padding: @padding-base-vertical @padding-base-horizontal;\n  font-size: @font-size-base;\n  font-weight: normal;\n  line-height: 1;\n  color: @input-color;\n  text-align: center;\n  background-color: @input-group-addon-bg;\n  border: 1px solid @input-group-addon-border-color;\n  border-radius: @input-border-radius;\n\n  // Sizing\n  &.input-sm {\n    padding: @padding-small-vertical @padding-small-horizontal;\n    font-size: @font-size-small;\n    border-radius: @input-border-radius-small;\n  }\n  &.input-lg {\n    padding: @padding-large-vertical @padding-large-horizontal;\n    font-size: @font-size-large;\n    border-radius: @input-border-radius-large;\n  }\n\n  // Nuke default margins from checkboxes and radios to vertically center within.\n  input[type=\"radio\"],\n  input[type=\"checkbox\"] {\n    margin-top: 0;\n  }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n  .border-right-radius(0);\n}\n.input-group-addon:first-child {\n  border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n  .border-left-radius(0);\n}\n.input-group-addon:last-child {\n  border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n  position: relative;\n  // Jankily prevent input button groups from wrapping with `white-space` and\n  // `font-size` in combination with `inline-block` on buttons.\n  font-size: 0;\n  white-space: nowrap;\n\n  // Negative margin for spacing, position for bringing hovered/focused/actived\n  // element above the siblings.\n  > .btn {\n    position: relative;\n    + .btn {\n      margin-left: -1px;\n    }\n    // Bring the \"active\" button to the front\n    &:hover,\n    &:focus,\n    &:active {\n      z-index: 2;\n    }\n  }\n\n  // Negative margin to only have a 1px border between the two\n  &:first-child {\n    > .btn,\n    > .btn-group {\n      margin-right: -1px;\n    }\n  }\n  &:last-child {\n    > .btn,\n    > .btn-group {\n      z-index: 2;\n      margin-left: -1px;\n    }\n  }\n}\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n  margin-bottom: 0;\n  padding-left: 0; // Override default ul/ol\n  list-style: none;\n  &:extend(.clearfix all);\n\n  > li {\n    position: relative;\n    display: block;\n\n    > a {\n      position: relative;\n      display: block;\n      padding: @nav-link-padding;\n      &:hover,\n      &:focus {\n        text-decoration: none;\n        background-color: @nav-link-hover-bg;\n      }\n    }\n\n    // Disabled state sets text to gray and nukes hover/tab effects\n    &.disabled > a {\n      color: @nav-disabled-link-color;\n\n      &:hover,\n      &:focus {\n        color: @nav-disabled-link-hover-color;\n        text-decoration: none;\n        background-color: transparent;\n        cursor: @cursor-disabled;\n      }\n    }\n  }\n\n  // Open dropdowns\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: @nav-link-hover-bg;\n      border-color: @link-color;\n    }\n  }\n\n  // Nav dividers (deprecated with v3.0.1)\n  //\n  // This should have been removed in v3 with the dropping of `.nav-list`, but\n  // we missed it. We don't currently support this anywhere, but in the interest\n  // of maintaining backward compatibility in case you use it, it's deprecated.\n  .nav-divider {\n    .nav-divider();\n  }\n\n  // Prevent IE8 from misplacing imgs\n  //\n  // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n  > li > a > img {\n    max-width: none;\n  }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n  border-bottom: 1px solid @nav-tabs-border-color;\n  > li {\n    float: left;\n    // Make the list-items overlay the bottom border\n    margin-bottom: -1px;\n\n    // Actual tabs (as links)\n    > a {\n      margin-right: 2px;\n      line-height: @line-height-base;\n      border: 1px solid transparent;\n      border-radius: @border-radius-base @border-radius-base 0 0;\n      &:hover {\n        border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n      }\n    }\n\n    // Active state, and its :hover to override normal :hover\n    &.active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @nav-tabs-active-link-hover-color;\n        background-color: @nav-tabs-active-link-hover-bg;\n        border: 1px solid @nav-tabs-active-link-hover-border-color;\n        border-bottom-color: transparent;\n        cursor: default;\n      }\n    }\n  }\n  // pulling this in mainly for less shorthand\n  &.nav-justified {\n    .nav-justified();\n    .nav-tabs-justified();\n  }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n  > li {\n    float: left;\n\n    // Links rendered as pills\n    > a {\n      border-radius: @nav-pills-border-radius;\n    }\n    + li {\n      margin-left: 2px;\n    }\n\n    // Active state\n    &.active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @nav-pills-active-link-hover-color;\n        background-color: @nav-pills-active-link-hover-bg;\n      }\n    }\n  }\n}\n\n\n// Stacked pills\n.nav-stacked {\n  > li {\n    float: none;\n    + li {\n      margin-top: 2px;\n      margin-left: 0; // no need for this gap between nav items\n    }\n  }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n  width: 100%;\n\n  > li {\n    float: none;\n    > a {\n      text-align: center;\n      margin-bottom: 5px;\n    }\n  }\n\n  > .dropdown .dropdown-menu {\n    top: auto;\n    left: auto;\n  }\n\n  @media (min-width: @screen-sm-min) {\n    > li {\n      display: table-cell;\n      width: 1%;\n      > a {\n        margin-bottom: 0;\n      }\n    }\n  }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n  border-bottom: 0;\n\n  > li > a {\n    // Override margin from .nav-tabs\n    margin-right: 0;\n    border-radius: @border-radius-base;\n  }\n\n  > .active > a,\n  > .active > a:hover,\n  > .active > a:focus {\n    border: 1px solid @nav-tabs-justified-link-border-color;\n  }\n\n  @media (min-width: @screen-sm-min) {\n    > li > a {\n      border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n      border-radius: @border-radius-base @border-radius-base 0 0;\n    }\n    > .active > a,\n    > .active > a:hover,\n    > .active > a:focus {\n      border-bottom-color: @nav-tabs-justified-active-link-border-color;\n    }\n  }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Hide tabbable panes to start, show them when `.active`\n.tab-content {\n  > .tab-pane {\n    display: none;\n  }\n  > .active {\n    display: block;\n  }\n}\n\n\n// Dropdowns\n// -------------------------\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n  // make dropdown border overlap tab border\n  margin-top: -1px;\n  // Remove the top rounded corners here since there is a hard edge above the menu\n  .border-top-radius(0);\n}\n","//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n  position: relative;\n  min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n  margin-bottom: @navbar-margin-bottom;\n  border: 1px solid transparent;\n\n  // Prevent floats from breaking the navbar\n  &:extend(.clearfix all);\n\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: @navbar-border-radius;\n  }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n  &:extend(.clearfix all);\n\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n  }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n  overflow-x: visible;\n  padding-right: @navbar-padding-horizontal;\n  padding-left:  @navbar-padding-horizontal;\n  border-top: 1px solid transparent;\n  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n  &:extend(.clearfix all);\n  -webkit-overflow-scrolling: touch;\n\n  &.in {\n    overflow-y: auto;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    width: auto;\n    border-top: 0;\n    box-shadow: none;\n\n    &.collapse {\n      display: block !important;\n      height: auto !important;\n      padding-bottom: 0; // Override default setting\n      overflow: visible !important;\n    }\n\n    &.in {\n      overflow-y: visible;\n    }\n\n    // Undo the collapse side padding for navbars with containers to ensure\n    // alignment of right-aligned contents.\n    .navbar-fixed-top &,\n    .navbar-static-top &,\n    .navbar-fixed-bottom & {\n      padding-left: 0;\n      padding-right: 0;\n    }\n  }\n}\n\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  .navbar-collapse {\n    max-height: @navbar-collapse-max-height;\n\n    @media (max-device-width: @screen-xs-min) and (orientation: landscape) {\n      max-height: 200px;\n    }\n  }\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container,\n.container-fluid {\n  > .navbar-header,\n  > .navbar-collapse {\n    margin-right: -@navbar-padding-horizontal;\n    margin-left:  -@navbar-padding-horizontal;\n\n    @media (min-width: @grid-float-breakpoint) {\n      margin-right: 0;\n      margin-left:  0;\n    }\n  }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n  z-index: @zindex-navbar;\n  border-width: 0 0 1px;\n\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: 0;\n  }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  position: fixed;\n  right: 0;\n  left: 0;\n  z-index: @zindex-navbar-fixed;\n\n  // Undo the rounded corners\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top {\n  top: 0;\n  border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n  bottom: 0;\n  margin-bottom: 0; // override .navbar defaults\n  border-width: 1px 0 0;\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n  float: left;\n  padding: @navbar-padding-vertical @navbar-padding-horizontal;\n  font-size: @font-size-large;\n  line-height: @line-height-computed;\n  height: @navbar-height;\n\n  &:hover,\n  &:focus {\n    text-decoration: none;\n  }\n\n  > img {\n    display: block;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    .navbar > .container &,\n    .navbar > .container-fluid & {\n      margin-left: -@navbar-padding-horizontal;\n    }\n  }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n  position: relative;\n  float: right;\n  margin-right: @navbar-padding-horizontal;\n  padding: 9px 10px;\n  .navbar-vertical-align(34px);\n  background-color: transparent;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid transparent;\n  border-radius: @border-radius-base;\n\n  // We remove the `outline` here, but later compensate by attaching `:hover`\n  // styles to `:focus`.\n  &:focus {\n    outline: 0;\n  }\n\n  // Bars\n  .icon-bar {\n    display: block;\n    width: 22px;\n    height: 2px;\n    border-radius: 1px;\n  }\n  .icon-bar + .icon-bar {\n    margin-top: 4px;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    display: none;\n  }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n  margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n  > li > a {\n    padding-top:    10px;\n    padding-bottom: 10px;\n    line-height: @line-height-computed;\n  }\n\n  @media (max-width: @grid-float-breakpoint-max) {\n    // Dropdowns get custom display when collapsed\n    .open .dropdown-menu {\n      position: static;\n      float: none;\n      width: auto;\n      margin-top: 0;\n      background-color: transparent;\n      border: 0;\n      box-shadow: none;\n      > li > a,\n      .dropdown-header {\n        padding: 5px 15px 5px 25px;\n      }\n      > li > a {\n        line-height: @line-height-computed;\n        &:hover,\n        &:focus {\n          background-image: none;\n        }\n      }\n    }\n  }\n\n  // Uncollapse the nav\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n    margin: 0;\n\n    > li {\n      float: left;\n      > a {\n        padding-top:    @navbar-padding-vertical;\n        padding-bottom: @navbar-padding-vertical;\n      }\n    }\n  }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n  margin-left: -@navbar-padding-horizontal;\n  margin-right: -@navbar-padding-horizontal;\n  padding: 10px @navbar-padding-horizontal;\n  border-top: 1px solid transparent;\n  border-bottom: 1px solid transparent;\n  @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);\n  .box-shadow(@shadow);\n\n  // Mixin behavior for optimum display\n  .form-inline();\n\n  .form-group {\n    @media (max-width: @grid-float-breakpoint-max) {\n      margin-bottom: 5px;\n\n      &:last-child {\n        margin-bottom: 0;\n      }\n    }\n  }\n\n  // Vertically center in expanded, horizontal navbar\n  .navbar-vertical-align(@input-height-base);\n\n  // Undo 100% width for pull classes\n  @media (min-width: @grid-float-breakpoint) {\n    width: auto;\n    border: 0;\n    margin-left: 0;\n    margin-right: 0;\n    padding-top: 0;\n    padding-bottom: 0;\n    .box-shadow(none);\n  }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n  margin-top: 0;\n  .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n  margin-bottom: 0;\n  .border-top-radius(@navbar-border-radius);\n  .border-bottom-radius(0);\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n  .navbar-vertical-align(@input-height-base);\n\n  &.btn-sm {\n    .navbar-vertical-align(@input-height-small);\n  }\n  &.btn-xs {\n    .navbar-vertical-align(22);\n  }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n  .navbar-vertical-align(@line-height-computed);\n\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n    margin-left: @navbar-padding-horizontal;\n    margin-right: @navbar-padding-horizontal;\n  }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n//\n// Declared after the navbar components to ensure more specificity on the margins.\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-left  { .pull-left(); }\n  .navbar-right {\n    .pull-right();\n    margin-right: -@navbar-padding-horizontal;\n\n    ~ .navbar-right {\n      margin-right: 0;\n    }\n  }\n}\n\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n  background-color: @navbar-default-bg;\n  border-color: @navbar-default-border;\n\n  .navbar-brand {\n    color: @navbar-default-brand-color;\n    &:hover,\n    &:focus {\n      color: @navbar-default-brand-hover-color;\n      background-color: @navbar-default-brand-hover-bg;\n    }\n  }\n\n  .navbar-text {\n    color: @navbar-default-color;\n  }\n\n  .navbar-nav {\n    > li > a {\n      color: @navbar-default-link-color;\n\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-hover-color;\n        background-color: @navbar-default-link-hover-bg;\n      }\n    }\n    > .active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-active-color;\n        background-color: @navbar-default-link-active-bg;\n      }\n    }\n    > .disabled > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-disabled-color;\n        background-color: @navbar-default-link-disabled-bg;\n      }\n    }\n  }\n\n  .navbar-toggle {\n    border-color: @navbar-default-toggle-border-color;\n    &:hover,\n    &:focus {\n      background-color: @navbar-default-toggle-hover-bg;\n    }\n    .icon-bar {\n      background-color: @navbar-default-toggle-icon-bar-bg;\n    }\n  }\n\n  .navbar-collapse,\n  .navbar-form {\n    border-color: @navbar-default-border;\n  }\n\n  // Dropdown menu items\n  .navbar-nav {\n    // Remove background color from open dropdown\n    > .open > a {\n      &,\n      &:hover,\n      &:focus {\n        background-color: @navbar-default-link-active-bg;\n        color: @navbar-default-link-active-color;\n      }\n    }\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      // Dropdowns get custom display when collapsed\n      .open .dropdown-menu {\n        > li > a {\n          color: @navbar-default-link-color;\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-hover-color;\n            background-color: @navbar-default-link-hover-bg;\n          }\n        }\n        > .active > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-active-color;\n            background-color: @navbar-default-link-active-bg;\n          }\n        }\n        > .disabled > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-disabled-color;\n            background-color: @navbar-default-link-disabled-bg;\n          }\n        }\n      }\n    }\n  }\n\n\n  // Links in navbars\n  //\n  // Add a class to ensure links outside the navbar nav are colored correctly.\n\n  .navbar-link {\n    color: @navbar-default-link-color;\n    &:hover {\n      color: @navbar-default-link-hover-color;\n    }\n  }\n\n  .btn-link {\n    color: @navbar-default-link-color;\n    &:hover,\n    &:focus {\n      color: @navbar-default-link-hover-color;\n    }\n    &[disabled],\n    fieldset[disabled] & {\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-disabled-color;\n      }\n    }\n  }\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n  background-color: @navbar-inverse-bg;\n  border-color: @navbar-inverse-border;\n\n  .navbar-brand {\n    color: @navbar-inverse-brand-color;\n    &:hover,\n    &:focus {\n      color: @navbar-inverse-brand-hover-color;\n      background-color: @navbar-inverse-brand-hover-bg;\n    }\n  }\n\n  .navbar-text {\n    color: @navbar-inverse-color;\n  }\n\n  .navbar-nav {\n    > li > a {\n      color: @navbar-inverse-link-color;\n\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-hover-color;\n        background-color: @navbar-inverse-link-hover-bg;\n      }\n    }\n    > .active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-active-color;\n        background-color: @navbar-inverse-link-active-bg;\n      }\n    }\n    > .disabled > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-disabled-color;\n        background-color: @navbar-inverse-link-disabled-bg;\n      }\n    }\n  }\n\n  // Darken the responsive nav toggle\n  .navbar-toggle {\n    border-color: @navbar-inverse-toggle-border-color;\n    &:hover,\n    &:focus {\n      background-color: @navbar-inverse-toggle-hover-bg;\n    }\n    .icon-bar {\n      background-color: @navbar-inverse-toggle-icon-bar-bg;\n    }\n  }\n\n  .navbar-collapse,\n  .navbar-form {\n    border-color: darken(@navbar-inverse-bg, 7%);\n  }\n\n  // Dropdowns\n  .navbar-nav {\n    > .open > a {\n      &,\n      &:hover,\n      &:focus {\n        background-color: @navbar-inverse-link-active-bg;\n        color: @navbar-inverse-link-active-color;\n      }\n    }\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      // Dropdowns get custom display\n      .open .dropdown-menu {\n        > .dropdown-header {\n          border-color: @navbar-inverse-border;\n        }\n        .divider {\n          background-color: @navbar-inverse-border;\n        }\n        > li > a {\n          color: @navbar-inverse-link-color;\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-hover-color;\n            background-color: @navbar-inverse-link-hover-bg;\n          }\n        }\n        > .active > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-active-color;\n            background-color: @navbar-inverse-link-active-bg;\n          }\n        }\n        > .disabled > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-disabled-color;\n            background-color: @navbar-inverse-link-disabled-bg;\n          }\n        }\n      }\n    }\n  }\n\n  .navbar-link {\n    color: @navbar-inverse-link-color;\n    &:hover {\n      color: @navbar-inverse-link-hover-color;\n    }\n  }\n\n  .btn-link {\n    color: @navbar-inverse-link-color;\n    &:hover,\n    &:focus {\n      color: @navbar-inverse-link-hover-color;\n    }\n    &[disabled],\n    fieldset[disabled] & {\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-disabled-color;\n      }\n    }\n  }\n}\n","// Navbar vertical align\n//\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n\n.navbar-vertical-align(@element-height) {\n  margin-top: ((@navbar-height - @element-height) / 2);\n  margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n","//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n  .clearfix();\n}\n.center-block {\n  .center-block();\n}\n.pull-right {\n  float: right !important;\n}\n.pull-left {\n  float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1\n.hide {\n  display: none !important;\n}\n.show {\n  display: block !important;\n}\n.invisible {\n  visibility: hidden;\n}\n.text-hide {\n  .text-hide();\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n  display: none !important;\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n  position: fixed;\n}\n","// Bordered & Pulled\n// -------------------------\n\n.@{fa-css-prefix}-border {\n  padding: .2em .25em .15em;\n  border: solid .08em @fa-border-color;\n  border-radius: .1em;\n}\n\n.@{fa-css-prefix}-pull-left { float: left; }\n.@{fa-css-prefix}-pull-right { float: right; }\n\n.@{fa-css-prefix} {\n  &.@{fa-css-prefix}-pull-left { margin-right: .3em; }\n  &.@{fa-css-prefix}-pull-right { margin-left: .3em; }\n}\n\n/* Deprecated as of 4.4.0 */\n.pull-right { float: right; }\n.pull-left { float: left; }\n\n.@{fa-css-prefix} {\n  &.pull-left { margin-right: .3em; }\n  &.pull-right { margin-left: .3em; }\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n  padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n  margin-bottom: @line-height-computed;\n  list-style: none;\n  background-color: @breadcrumb-bg;\n  border-radius: @border-radius-base;\n\n  > li {\n    display: inline-block;\n\n    + li:before {\n      content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n      padding: 0 5px;\n      color: @breadcrumb-color;\n    }\n  }\n\n  > .active {\n    color: @breadcrumb-active-color;\n  }\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n  display: inline-block;\n  padding-left: 0;\n  margin: @line-height-computed 0;\n  border-radius: @border-radius-base;\n\n  > li {\n    display: inline; // Remove list-style and block-level defaults\n    > a,\n    > span {\n      position: relative;\n      float: left; // Collapse white-space\n      padding: @padding-base-vertical @padding-base-horizontal;\n      line-height: @line-height-base;\n      text-decoration: none;\n      color: @pagination-color;\n      background-color: @pagination-bg;\n      border: 1px solid @pagination-border;\n      margin-left: -1px;\n    }\n    &:first-child {\n      > a,\n      > span {\n        margin-left: 0;\n        .border-left-radius(@border-radius-base);\n      }\n    }\n    &:last-child {\n      > a,\n      > span {\n        .border-right-radius(@border-radius-base);\n      }\n    }\n  }\n\n  > li > a,\n  > li > span {\n    &:hover,\n    &:focus {\n      z-index: 2;\n      color: @pagination-hover-color;\n      background-color: @pagination-hover-bg;\n      border-color: @pagination-hover-border;\n    }\n  }\n\n  > .active > a,\n  > .active > span {\n    &,\n    &:hover,\n    &:focus {\n      z-index: 3;\n      color: @pagination-active-color;\n      background-color: @pagination-active-bg;\n      border-color: @pagination-active-border;\n      cursor: default;\n    }\n  }\n\n  > .disabled {\n    > span,\n    > span:hover,\n    > span:focus,\n    > a,\n    > a:hover,\n    > a:focus {\n      color: @pagination-disabled-color;\n      background-color: @pagination-disabled-bg;\n      border-color: @pagination-disabled-border;\n      cursor: @cursor-disabled;\n    }\n  }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n  .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n  .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n","// Pagination\n\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  > li {\n    > a,\n    > span {\n      padding: @padding-vertical @padding-horizontal;\n      font-size: @font-size;\n      line-height: @line-height;\n    }\n    &:first-child {\n      > a,\n      > span {\n        .border-left-radius(@border-radius);\n      }\n    }\n    &:last-child {\n      > a,\n      > span {\n        .border-right-radius(@border-radius);\n      }\n    }\n  }\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n  padding-left: 0;\n  margin: @line-height-computed 0;\n  list-style: none;\n  text-align: center;\n  &:extend(.clearfix all);\n  li {\n    display: inline;\n    > a,\n    > span {\n      display: inline-block;\n      padding: 5px 14px;\n      background-color: @pager-bg;\n      border: 1px solid @pager-border;\n      border-radius: @pager-border-radius;\n    }\n\n    > a:hover,\n    > a:focus {\n      text-decoration: none;\n      background-color: @pager-hover-bg;\n    }\n  }\n\n  .next {\n    > a,\n    > span {\n      float: right;\n    }\n  }\n\n  .previous {\n    > a,\n    > span {\n      float: left;\n    }\n  }\n\n  .disabled {\n    > a,\n    > a:hover,\n    > a:focus,\n    > span {\n      color: @pager-disabled-color;\n      background-color: @pager-bg;\n      cursor: @cursor-disabled;\n    }\n  }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n  display: inline;\n  padding: .2em .6em .3em;\n  font-size: 75%;\n  font-weight: bold;\n  line-height: 1;\n  color: @label-color;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  border-radius: .25em;\n\n  // Add hover effects, but only for links\n  a& {\n    &:hover,\n    &:focus {\n      color: @label-link-hover-color;\n      text-decoration: none;\n      cursor: pointer;\n    }\n  }\n\n  // Empty labels collapse automatically (not available in IE8)\n  &:empty {\n    display: none;\n  }\n\n  // Quick fix for labels in buttons\n  .btn & {\n    position: relative;\n    top: -1px;\n  }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n  .label-variant(@label-default-bg);\n}\n\n.label-primary {\n  .label-variant(@label-primary-bg);\n}\n\n.label-success {\n  .label-variant(@label-success-bg);\n}\n\n.label-info {\n  .label-variant(@label-info-bg);\n}\n\n.label-warning {\n  .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n  .label-variant(@label-danger-bg);\n}\n","// Labels\n\n.label-variant(@color) {\n  background-color: @color;\n\n  &[href] {\n    &:hover,\n    &:focus {\n      background-color: darken(@color, 10%);\n    }\n  }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base class\n.badge {\n  display: inline-block;\n  min-width: 10px;\n  padding: 3px 7px;\n  font-size: @font-size-small;\n  font-weight: @badge-font-weight;\n  color: @badge-color;\n  line-height: @badge-line-height;\n  vertical-align: middle;\n  white-space: nowrap;\n  text-align: center;\n  background-color: @badge-bg;\n  border-radius: @badge-border-radius;\n\n  // Empty badges collapse automatically (not available in IE8)\n  &:empty {\n    display: none;\n  }\n\n  // Quick fix for badges in buttons\n  .btn & {\n    position: relative;\n    top: -1px;\n  }\n\n  .btn-xs &,\n  .btn-group-xs > .btn & {\n    top: 0;\n    padding: 1px 5px;\n  }\n\n  // Hover state, but only for links\n  a& {\n    &:hover,\n    &:focus {\n      color: @badge-link-hover-color;\n      text-decoration: none;\n      cursor: pointer;\n    }\n  }\n\n  // Account for badges in navs\n  .list-group-item.active > &,\n  .nav-pills > .active > a > & {\n    color: @badge-active-color;\n    background-color: @badge-active-bg;\n  }\n\n  .list-group-item > & {\n    float: right;\n  }\n\n  .list-group-item > & + & {\n    margin-right: 5px;\n  }\n\n  .nav-pills > li > a > & {\n    margin-left: 3px;\n  }\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n  padding-top:    @jumbotron-padding;\n  padding-bottom: @jumbotron-padding;\n  margin-bottom: @jumbotron-padding;\n  color: @jumbotron-color;\n  background-color: @jumbotron-bg;\n\n  h1,\n  .h1 {\n    color: @jumbotron-heading-color;\n  }\n\n  p {\n    margin-bottom: (@jumbotron-padding / 2);\n    font-size: @jumbotron-font-size;\n    font-weight: 200;\n  }\n\n  > hr {\n    border-top-color: darken(@jumbotron-bg, 10%);\n  }\n\n  .container &,\n  .container-fluid & {\n    border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n    padding-left:  (@grid-gutter-width / 2);\n    padding-right: (@grid-gutter-width / 2);\n  }\n\n  .container {\n    max-width: 100%;\n  }\n\n  @media screen and (min-width: @screen-sm-min) {\n    padding-top:    (@jumbotron-padding * 1.6);\n    padding-bottom: (@jumbotron-padding * 1.6);\n\n    .container &,\n    .container-fluid & {\n      padding-left:  (@jumbotron-padding * 2);\n      padding-right: (@jumbotron-padding * 2);\n    }\n\n    h1,\n    .h1 {\n      font-size: @jumbotron-heading-font-size;\n    }\n  }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n  padding: @alert-padding;\n  margin-bottom: @line-height-computed;\n  border: 1px solid transparent;\n  border-radius: @alert-border-radius;\n\n  // Headings for larger alerts\n  h4 {\n    margin-top: 0;\n    // Specified for the h4 to prevent conflicts of changing @headings-color\n    color: inherit;\n  }\n\n  // Provide class for links that match alerts\n  .alert-link {\n    font-weight: @alert-link-font-weight;\n  }\n\n  // Improve alignment and spacing of inner content\n  > p,\n  > ul {\n    margin-bottom: 0;\n  }\n\n  > p + p {\n    margin-top: 5px;\n  }\n}\n\n// Dismissible alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.\n.alert-dismissible {\n  padding-right: (@alert-padding + 20);\n\n  // Adjust close link position\n  .close {\n    position: relative;\n    top: -2px;\n    right: -21px;\n    color: inherit;\n  }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n  .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n\n.alert-info {\n  .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n\n.alert-warning {\n  .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n\n.alert-danger {\n  .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","// Alerts\n\n.alert-variant(@background; @border; @text-color) {\n  background-color: @background;\n  border-color: @border;\n  color: @text-color;\n\n  hr {\n    border-top-color: darken(@border, 5%);\n  }\n  .alert-link {\n    color: darken(@text-color, 10%);\n  }\n}\n","//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// WebKit\n@-webkit-keyframes progress-bar-stripes {\n  from  { background-position: 40px 0; }\n  to    { background-position: 0 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n  from  { background-position: 40px 0; }\n  to    { background-position: 0 0; }\n}\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n  overflow: hidden;\n  height: @line-height-computed;\n  margin-bottom: @line-height-computed;\n  background-color: @progress-bg;\n  border-radius: @progress-border-radius;\n  .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n}\n\n// Bar of progress\n.progress-bar {\n  float: left;\n  width: 0%;\n  height: 100%;\n  font-size: @font-size-small;\n  line-height: @line-height-computed;\n  color: @progress-bar-color;\n  text-align: center;\n  background-color: @progress-bar-bg;\n  .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n  .transition(width .6s ease);\n}\n\n// Striped bars\n//\n// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar-striped` class, which you just add to an existing\n// `.progress-bar`.\n.progress-striped .progress-bar,\n.progress-bar-striped {\n  #gradient > .striped();\n  background-size: 40px 40px;\n}\n\n// Call animation for the active one\n//\n// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar.active` approach.\n.progress.active .progress-bar,\n.progress-bar.active {\n  .animation(progress-bar-stripes 2s linear infinite);\n}\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n  .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n  .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n  .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n  .progress-bar-variant(@progress-bar-danger-bg);\n}\n","// Gradients\n\n#gradient {\n\n  // Horizontal gradient, from left to right\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  // Vertical gradient, from top to bottom\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12\n    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n    background-repeat: repeat-x;\n    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n  }\n  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .radial(@inner-color: #555; @outer-color: #333) {\n    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n    background-image: radial-gradient(circle, @inner-color, @outer-color);\n    background-repeat: no-repeat;\n  }\n  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n  }\n}\n","// Progress bars\n\n.progress-bar-variant(@color) {\n  background-color: @color;\n\n  // Deprecated parent class requirement as of v3.2.0\n  .progress-striped & {\n    #gradient > .striped();\n  }\n}\n",".media {\n  // Proper spacing between instances of .media\n  margin-top: 15px;\n\n  &:first-child {\n    margin-top: 0;\n  }\n}\n\n.media,\n.media-body {\n  zoom: 1;\n  overflow: hidden;\n}\n\n.media-body {\n  width: 10000px;\n}\n\n.media-object {\n  display: block;\n\n  // Fix collapse in webkit from max-width: 100% and display: table-cell.\n  &.img-thumbnail {\n    max-width: none;\n  }\n}\n\n.media-right,\n.media > .pull-right {\n  padding-left: 10px;\n}\n\n.media-left,\n.media > .pull-left {\n  padding-right: 10px;\n}\n\n.media-left,\n.media-right,\n.media-body {\n  display: table-cell;\n  vertical-align: top;\n}\n\n.media-middle {\n  vertical-align: middle;\n}\n\n.media-bottom {\n  vertical-align: bottom;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n\n// Media list variation\n//\n// Undo default ul/ol styles\n.media-list {\n  padding-left: 0;\n  list-style: none;\n}\n","//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n  // No need to set list-style: none; since .list-group-item is block level\n  margin-bottom: 20px;\n  padding-left: 0; // reset padding because ul and ol\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n  // Place the border on the list items and negative margin up for better styling\n  margin-bottom: -1px;\n  background-color: @list-group-bg;\n  border: 1px solid @list-group-border;\n\n  // Round the first and last items\n  &:first-child {\n    .border-top-radius(@list-group-border-radius);\n  }\n  &:last-child {\n    margin-bottom: 0;\n    .border-bottom-radius(@list-group-border-radius);\n  }\n}\n\n\n// Interactive list items\n//\n// Use anchor or button elements instead of `li`s or `div`s to create interactive items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item,\nbutton.list-group-item {\n  color: @list-group-link-color;\n\n  .list-group-item-heading {\n    color: @list-group-link-heading-color;\n  }\n\n  // Hover state\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    color: @list-group-link-hover-color;\n    background-color: @list-group-hover-bg;\n  }\n}\n\nbutton.list-group-item {\n  width: 100%;\n  text-align: left;\n}\n\n.list-group-item {\n  // Disabled state\n  &.disabled,\n  &.disabled:hover,\n  &.disabled:focus {\n    background-color: @list-group-disabled-bg;\n    color: @list-group-disabled-color;\n    cursor: @cursor-disabled;\n\n    // Force color to inherit for custom content\n    .list-group-item-heading {\n      color: inherit;\n    }\n    .list-group-item-text {\n      color: @list-group-disabled-text-color;\n    }\n  }\n\n  // Active class on item itself, not parent\n  &.active,\n  &.active:hover,\n  &.active:focus {\n    z-index: 2; // Place active items above their siblings for proper border styling\n    color: @list-group-active-color;\n    background-color: @list-group-active-bg;\n    border-color: @list-group-active-border;\n\n    // Force color to inherit for custom content\n    .list-group-item-heading,\n    .list-group-item-heading > small,\n    .list-group-item-heading > .small {\n      color: inherit;\n    }\n    .list-group-item-text {\n      color: @list-group-active-text-color;\n    }\n  }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.list-group-item-text {\n  margin-bottom: 0;\n  line-height: 1.3;\n}\n","// List Groups\n\n.list-group-item-variant(@state; @background; @color) {\n  .list-group-item-@{state} {\n    color: @color;\n    background-color: @background;\n\n    a&,\n    button& {\n      color: @color;\n\n      .list-group-item-heading {\n        color: inherit;\n      }\n\n      &:hover,\n      &:focus {\n        color: @color;\n        background-color: darken(@background, 5%);\n      }\n      &.active,\n      &.active:hover,\n      &.active:focus {\n        color: #fff;\n        background-color: @color;\n        border-color: @color;\n      }\n    }\n  }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n  margin-bottom: @line-height-computed;\n  background-color: @panel-bg;\n  border: 1px solid transparent;\n  border-radius: @panel-border-radius;\n  .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n  padding: @panel-body-padding;\n  &:extend(.clearfix all);\n}\n\n// Optional heading\n.panel-heading {\n  padding: @panel-heading-padding;\n  border-bottom: 1px solid transparent;\n  .border-top-radius((@panel-border-radius - 1));\n\n  > .dropdown .dropdown-toggle {\n    color: inherit;\n  }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n  margin-top: 0;\n  margin-bottom: 0;\n  font-size: ceil((@font-size-base * 1.125));\n  color: inherit;\n\n  > a,\n  > small,\n  > .small,\n  > small > a,\n  > .small > a {\n    color: inherit;\n  }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n  padding: @panel-footer-padding;\n  background-color: @panel-footer-bg;\n  border-top: 1px solid @panel-inner-border;\n  .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n  > .list-group,\n  > .panel-collapse > .list-group {\n    margin-bottom: 0;\n\n    .list-group-item {\n      border-width: 1px 0;\n      border-radius: 0;\n    }\n\n    // Add border top radius for first one\n    &:first-child {\n      .list-group-item:first-child {\n        border-top: 0;\n        .border-top-radius((@panel-border-radius - 1));\n      }\n    }\n\n    // Add border bottom radius for last one\n    &:last-child {\n      .list-group-item:last-child {\n        border-bottom: 0;\n        .border-bottom-radius((@panel-border-radius - 1));\n      }\n    }\n  }\n  > .panel-heading + .panel-collapse > .list-group {\n    .list-group-item:first-child {\n      .border-top-radius(0);\n    }\n  }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n  .list-group-item:first-child {\n    border-top-width: 0;\n  }\n}\n.list-group + .panel-footer {\n  border-top-width: 0;\n}\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n  > .table,\n  > .table-responsive > .table,\n  > .panel-collapse > .table {\n    margin-bottom: 0;\n\n    caption {\n      padding-left: @panel-body-padding;\n      padding-right: @panel-body-padding;\n    }\n  }\n  // Add border top radius for first one\n  > .table:first-child,\n  > .table-responsive:first-child > .table:first-child {\n    .border-top-radius((@panel-border-radius - 1));\n\n    > thead:first-child,\n    > tbody:first-child {\n      > tr:first-child {\n        border-top-left-radius: (@panel-border-radius - 1);\n        border-top-right-radius: (@panel-border-radius - 1);\n\n        td:first-child,\n        th:first-child {\n          border-top-left-radius: (@panel-border-radius - 1);\n        }\n        td:last-child,\n        th:last-child {\n          border-top-right-radius: (@panel-border-radius - 1);\n        }\n      }\n    }\n  }\n  // Add border bottom radius for last one\n  > .table:last-child,\n  > .table-responsive:last-child > .table:last-child {\n    .border-bottom-radius((@panel-border-radius - 1));\n\n    > tbody:last-child,\n    > tfoot:last-child {\n      > tr:last-child {\n        border-bottom-left-radius: (@panel-border-radius - 1);\n        border-bottom-right-radius: (@panel-border-radius - 1);\n\n        td:first-child,\n        th:first-child {\n          border-bottom-left-radius: (@panel-border-radius - 1);\n        }\n        td:last-child,\n        th:last-child {\n          border-bottom-right-radius: (@panel-border-radius - 1);\n        }\n      }\n    }\n  }\n  > .panel-body + .table,\n  > .panel-body + .table-responsive,\n  > .table + .panel-body,\n  > .table-responsive + .panel-body {\n    border-top: 1px solid @table-border-color;\n  }\n  > .table > tbody:first-child > tr:first-child th,\n  > .table > tbody:first-child > tr:first-child td {\n    border-top: 0;\n  }\n  > .table-bordered,\n  > .table-responsive > .table-bordered {\n    border: 0;\n    > thead,\n    > tbody,\n    > tfoot {\n      > tr {\n        > th:first-child,\n        > td:first-child {\n          border-left: 0;\n        }\n        > th:last-child,\n        > td:last-child {\n          border-right: 0;\n        }\n      }\n    }\n    > thead,\n    > tbody {\n      > tr:first-child {\n        > td,\n        > th {\n          border-bottom: 0;\n        }\n      }\n    }\n    > tbody,\n    > tfoot {\n      > tr:last-child {\n        > td,\n        > th {\n          border-bottom: 0;\n        }\n      }\n    }\n  }\n  > .table-responsive {\n    border: 0;\n    margin-bottom: 0;\n  }\n}\n\n\n// Collapsible panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n  margin-bottom: @line-height-computed;\n\n  // Tighten up margin so it's only between panels\n  .panel {\n    margin-bottom: 0;\n    border-radius: @panel-border-radius;\n\n    + .panel {\n      margin-top: 5px;\n    }\n  }\n\n  .panel-heading {\n    border-bottom: 0;\n\n    + .panel-collapse > .panel-body,\n    + .panel-collapse > .list-group {\n      border-top: 1px solid @panel-inner-border;\n    }\n  }\n\n  .panel-footer {\n    border-top: 0;\n    + .panel-collapse .panel-body {\n      border-bottom: 1px solid @panel-inner-border;\n    }\n  }\n}\n\n\n// Contextual variations\n.panel-default {\n  .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n  .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n  .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n  .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n  .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n  .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","// Panels\n\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n  border-color: @border;\n\n  & > .panel-heading {\n    color: @heading-text-color;\n    background-color: @heading-bg-color;\n    border-color: @heading-border;\n\n    + .panel-collapse > .panel-body {\n      border-top-color: @border;\n    }\n    .badge {\n      color: @heading-bg-color;\n      background-color: @heading-text-color;\n    }\n  }\n  & > .panel-footer {\n    + .panel-collapse > .panel-body {\n      border-bottom-color: @border;\n    }\n  }\n}\n","// Embeds responsive\n//\n// Credit: Nicolas Gallagher and SUIT CSS.\n\n.embed-responsive {\n  position: relative;\n  display: block;\n  height: 0;\n  padding: 0;\n  overflow: hidden;\n\n  .embed-responsive-item,\n  iframe,\n  embed,\n  object,\n  video {\n    position: absolute;\n    top: 0;\n    left: 0;\n    bottom: 0;\n    height: 100%;\n    width: 100%;\n    border: 0;\n  }\n}\n\n// Modifier class for 16:9 aspect ratio\n.embed-responsive-16by9 {\n  padding-bottom: 56.25%;\n}\n\n// Modifier class for 4:3 aspect ratio\n.embed-responsive-4by3 {\n  padding-bottom: 75%;\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n  min-height: 20px;\n  padding: 19px;\n  margin-bottom: 20px;\n  background-color: @well-bg;\n  border: 1px solid @well-border;\n  border-radius: @border-radius-base;\n  .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n  blockquote {\n    border-color: #ddd;\n    border-color: rgba(0,0,0,.15);\n  }\n}\n\n// Sizes\n.well-lg {\n  padding: 24px;\n  border-radius: @border-radius-large;\n}\n.well-sm {\n  padding: 9px;\n  border-radius: @border-radius-small;\n}\n","//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n  float: right;\n  font-size: (@font-size-base * 1.5);\n  font-weight: @close-font-weight;\n  line-height: 1;\n  color: @close-color;\n  text-shadow: @close-text-shadow;\n  .opacity(.2);\n\n  &:hover,\n  &:focus {\n    color: @close-color;\n    text-decoration: none;\n    cursor: pointer;\n    .opacity(.5);\n  }\n\n  // Additional properties for button version\n  // iOS requires the button element instead of an anchor tag.\n  // If you want the anchor version, it requires `href=\"#\"`.\n  // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n  button& {\n    padding: 0;\n    cursor: pointer;\n    background: transparent;\n    border: 0;\n    -webkit-appearance: none;\n  }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open      - body class for killing the scroll\n// .modal           - container to scroll within\n// .modal-dialog    - positioning shell for the actual modal\n// .modal-content   - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n  overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n  display: none;\n  overflow: hidden;\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: @zindex-modal;\n  -webkit-overflow-scrolling: touch;\n\n  // Prevent Chrome on Windows from adding a focus outline. For details, see\n  // https://github.com/twbs/bootstrap/pull/10951.\n  outline: 0;\n\n  // When fading in the modal, animate it to slide down\n  &.fade .modal-dialog {\n    .translate(0, -25%);\n    .transition-transform(~\"0.3s ease-out\");\n  }\n  &.in .modal-dialog { .translate(0, 0) }\n}\n.modal-open .modal {\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n  position: relative;\n  width: auto;\n  margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n  position: relative;\n  background-color: @modal-content-bg;\n  border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n  border: 1px solid @modal-content-border-color;\n  border-radius: @border-radius-large;\n  .box-shadow(0 3px 9px rgba(0,0,0,.5));\n  background-clip: padding-box;\n  // Remove focus outline from opened modal\n  outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: @zindex-modal-background;\n  background-color: @modal-backdrop-bg;\n  // Fade for backdrop\n  &.fade { .opacity(0); }\n  &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n  padding: @modal-title-padding;\n  border-bottom: 1px solid @modal-header-border-color;\n  &:extend(.clearfix all);\n}\n// Close icon\n.modal-header .close {\n  margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n  margin: 0;\n  line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n  position: relative;\n  padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n  padding: @modal-inner-padding;\n  text-align: right; // right align buttons\n  border-top: 1px solid @modal-footer-border-color;\n  &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n  // Properly space out buttons\n  .btn + .btn {\n    margin-left: 5px;\n    margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n  }\n  // but override that for button groups\n  .btn-group .btn + .btn {\n    margin-left: -1px;\n  }\n  // and override it for block buttons as well\n  .btn-block + .btn-block {\n    margin-left: 0;\n  }\n}\n\n// Measure scrollbar width for padding body during modal show/hide\n.modal-scrollbar-measure {\n  position: absolute;\n  top: -9999px;\n  width: 50px;\n  height: 50px;\n  overflow: scroll;\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n  // Automatically set modal's width for larger viewports\n  .modal-dialog {\n    width: @modal-md;\n    margin: 30px auto;\n  }\n  .modal-content {\n    .box-shadow(0 5px 15px rgba(0,0,0,.5));\n  }\n\n  // Modal sizes\n  .modal-sm { width: @modal-sm; }\n}\n\n@media (min-width: @screen-md-min) {\n  .modal-lg { width: @modal-lg; }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n  position: absolute;\n  z-index: @zindex-tooltip;\n  display: block;\n  // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n  // So reset our font and text properties to avoid inheriting weird values.\n  .reset-text();\n  font-size: @font-size-small;\n\n  .opacity(0);\n\n  &.in     { .opacity(@tooltip-opacity); }\n  &.top    { margin-top:  -3px; padding: @tooltip-arrow-width 0; }\n  &.right  { margin-left:  3px; padding: 0 @tooltip-arrow-width; }\n  &.bottom { margin-top:   3px; padding: @tooltip-arrow-width 0; }\n  &.left   { margin-left: -3px; padding: 0 @tooltip-arrow-width; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n  max-width: @tooltip-max-width;\n  padding: 3px 8px;\n  color: @tooltip-color;\n  text-align: center;\n  background-color: @tooltip-bg;\n  border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n  position: absolute;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1\n.tooltip {\n  &.top .tooltip-arrow {\n    bottom: 0;\n    left: 50%;\n    margin-left: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.top-left .tooltip-arrow {\n    bottom: 0;\n    right: @tooltip-arrow-width;\n    margin-bottom: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.top-right .tooltip-arrow {\n    bottom: 0;\n    left: @tooltip-arrow-width;\n    margin-bottom: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.right .tooltip-arrow {\n    top: 50%;\n    left: 0;\n    margin-top: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-right-color: @tooltip-arrow-color;\n  }\n  &.left .tooltip-arrow {\n    top: 50%;\n    right: 0;\n    margin-top: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-left-color: @tooltip-arrow-color;\n  }\n  &.bottom .tooltip-arrow {\n    top: 0;\n    left: 50%;\n    margin-left: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n  &.bottom-left .tooltip-arrow {\n    top: 0;\n    right: @tooltip-arrow-width;\n    margin-top: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n  &.bottom-right .tooltip-arrow {\n    top: 0;\n    left: @tooltip-arrow-width;\n    margin-top: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n}\n",".reset-text() {\n  font-family: @font-family-base;\n  // We deliberately do NOT reset font-size.\n  font-style: normal;\n  font-weight: normal;\n  letter-spacing: normal;\n  line-break: auto;\n  line-height: @line-height-base;\n  text-align: left; // Fallback for where `start` is not supported\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  white-space: normal;\n  word-break: normal;\n  word-spacing: normal;\n  word-wrap: normal;\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n  position: absolute;\n  top: 0;\n  left: 0;\n  z-index: @zindex-popover;\n  display: none;\n  max-width: @popover-max-width;\n  padding: 1px;\n  // Our parent element can be arbitrary since popovers are by default inserted as a sibling of their target element.\n  // So reset our font and text properties to avoid inheriting weird values.\n  .reset-text();\n  font-size: @font-size-base;\n\n  background-color: @popover-bg;\n  background-clip: padding-box;\n  border: 1px solid @popover-fallback-border-color;\n  border: 1px solid @popover-border-color;\n  border-radius: @border-radius-large;\n  .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n  // Offset the popover to account for the popover arrow\n  &.top     { margin-top: -@popover-arrow-width; }\n  &.right   { margin-left: @popover-arrow-width; }\n  &.bottom  { margin-top: @popover-arrow-width; }\n  &.left    { margin-left: -@popover-arrow-width; }\n}\n\n.popover-title {\n  margin: 0; // reset heading margin\n  padding: 8px 14px;\n  font-size: @font-size-base;\n  background-color: @popover-title-bg;\n  border-bottom: 1px solid darken(@popover-title-bg, 5%);\n  border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;\n}\n\n.popover-content {\n  padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover > .arrow {\n  &,\n  &:after {\n    position: absolute;\n    display: block;\n    width: 0;\n    height: 0;\n    border-color: transparent;\n    border-style: solid;\n  }\n}\n.popover > .arrow {\n  border-width: @popover-arrow-outer-width;\n}\n.popover > .arrow:after {\n  border-width: @popover-arrow-width;\n  content: \"\";\n}\n\n.popover {\n  &.top > .arrow {\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    border-bottom-width: 0;\n    border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-top-color: @popover-arrow-outer-color;\n    bottom: -@popover-arrow-outer-width;\n    &:after {\n      content: \" \";\n      bottom: 1px;\n      margin-left: -@popover-arrow-width;\n      border-bottom-width: 0;\n      border-top-color: @popover-arrow-color;\n    }\n  }\n  &.right > .arrow {\n    top: 50%;\n    left: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    border-left-width: 0;\n    border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-right-color: @popover-arrow-outer-color;\n    &:after {\n      content: \" \";\n      left: 1px;\n      bottom: -@popover-arrow-width;\n      border-left-width: 0;\n      border-right-color: @popover-arrow-color;\n    }\n  }\n  &.bottom > .arrow {\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    border-top-width: 0;\n    border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-bottom-color: @popover-arrow-outer-color;\n    top: -@popover-arrow-outer-width;\n    &:after {\n      content: \" \";\n      top: 1px;\n      margin-left: -@popover-arrow-width;\n      border-top-width: 0;\n      border-bottom-color: @popover-arrow-color;\n    }\n  }\n\n  &.left > .arrow {\n    top: 50%;\n    right: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    border-right-width: 0;\n    border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-left-color: @popover-arrow-outer-color;\n    &:after {\n      content: \" \";\n      right: 1px;\n      border-right-width: 0;\n      border-left-color: @popover-arrow-color;\n      bottom: -@popover-arrow-width;\n    }\n  }\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n//    contenteditable attribute is included anywhere else in the document.\n//    Otherwise it causes space to appear at the top and bottom of elements\n//    that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n//    `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n  &:before,\n  &:after {\n    content: \" \"; // 1\n    display: table; // 2\n  }\n  &:after {\n    clear: both;\n  }\n}\n","// Center-align a block level element\n\n.center-block() {\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n","// CSS image replacement\n//\n// Heads up! v3 launched with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (has been removed in v4)\n.hide-text() {\n  font: ~\"0/0\" a;\n  color: transparent;\n  text-shadow: none;\n  background-color: transparent;\n  border: 0;\n}\n\n// New mixin to use as of v3.0.1\n.text-hide() {\n  .hide-text();\n}\n","//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#support-ie10-width\n// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n  width: device-width;\n}\n\n\n// Visibility utilities\n// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n  .responsive-invisibility();\n}\n\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n  display: none !important;\n}\n\n.visible-xs {\n  @media (max-width: @screen-xs-max) {\n    .responsive-visibility();\n  }\n}\n.visible-xs-block {\n  @media (max-width: @screen-xs-max) {\n    display: block !important;\n  }\n}\n.visible-xs-inline {\n  @media (max-width: @screen-xs-max) {\n    display: inline !important;\n  }\n}\n.visible-xs-inline-block {\n  @media (max-width: @screen-xs-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-sm {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    .responsive-visibility();\n  }\n}\n.visible-sm-block {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: block !important;\n  }\n}\n.visible-sm-inline {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: inline !important;\n  }\n}\n.visible-sm-inline-block {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-md {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    .responsive-visibility();\n  }\n}\n.visible-md-block {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: block !important;\n  }\n}\n.visible-md-inline {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: inline !important;\n  }\n}\n.visible-md-inline-block {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-lg {\n  @media (min-width: @screen-lg-min) {\n    .responsive-visibility();\n  }\n}\n.visible-lg-block {\n  @media (min-width: @screen-lg-min) {\n    display: block !important;\n  }\n}\n.visible-lg-inline {\n  @media (min-width: @screen-lg-min) {\n    display: inline !important;\n  }\n}\n.visible-lg-inline-block {\n  @media (min-width: @screen-lg-min) {\n    display: inline-block !important;\n  }\n}\n\n.hidden-xs {\n  @media (max-width: @screen-xs-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-sm {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-md {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-lg {\n  @media (min-width: @screen-lg-min) {\n    .responsive-invisibility();\n  }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n// Note: Deprecated .visible-print as of v3.2.0\n.visible-print {\n  .responsive-invisibility();\n\n  @media print {\n    .responsive-visibility();\n  }\n}\n.visible-print-block {\n  display: none !important;\n\n  @media print {\n    display: block !important;\n  }\n}\n.visible-print-inline {\n  display: none !important;\n\n  @media print {\n    display: inline !important;\n  }\n}\n.visible-print-inline-block {\n  display: none !important;\n\n  @media print {\n    display: inline-block !important;\n  }\n}\n\n.hidden-print {\n  @media print {\n    .responsive-invisibility();\n  }\n}\n","// Responsive utilities\n\n//\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n  display: block !important;\n  table&  { display: table !important; }\n  tr&     { display: table-row !important; }\n  th&,\n  td&     { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n  display: none !important;\n}\n","/* FONT PATH\n * -------------------------- */\n\n@font-face {\n  font-family: 'FontAwesome';\n  src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');\n  src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),\n    url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),\n    url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),\n    url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),\n    url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');\n  // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts\n  font-weight: normal;\n  font-style: normal;\n}\n","// Base Class Definition\n// -------------------------\n\n.@{fa-css-prefix} {\n  display: inline-block;\n  font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration\n  font-size: inherit; // can't have font-size inherit on line above, so need to override\n  text-rendering: auto; // optimizelegibility throws things off #1094\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n\n}\n","// Icon Sizes\n// -------------------------\n\n/* makes the font 33% larger relative to the icon container */\n.@{fa-css-prefix}-lg {\n  font-size: (4em / 3);\n  line-height: (3em / 4);\n  vertical-align: -15%;\n}\n.@{fa-css-prefix}-2x { font-size: 2em; }\n.@{fa-css-prefix}-3x { font-size: 3em; }\n.@{fa-css-prefix}-4x { font-size: 4em; }\n.@{fa-css-prefix}-5x { font-size: 5em; }\n","// Fixed Width Icons\n// -------------------------\n.@{fa-css-prefix}-fw {\n  width: (18em / 14);\n  text-align: center;\n}\n","// List Icons\n// -------------------------\n\n.@{fa-css-prefix}-ul {\n  padding-left: 0;\n  margin-left: @fa-li-width;\n  list-style-type: none;\n  > li { position: relative; }\n}\n.@{fa-css-prefix}-li {\n  position: absolute;\n  left: -@fa-li-width;\n  width: @fa-li-width;\n  top: (2em / 14);\n  text-align: center;\n  &.@{fa-css-prefix}-lg {\n    left: (-@fa-li-width + (4em / 14));\n  }\n}\n","// Animated Icons\n// --------------------------\n\n.@{fa-css-prefix}-spin {\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear;\n}\n\n.@{fa-css-prefix}-pulse {\n  -webkit-animation: fa-spin 1s infinite steps(8);\n          animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n            transform: rotate(359deg);\n  }\n}\n\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n            transform: rotate(359deg);\n  }\n}\n","// Rotated & Flipped Icons\n// -------------------------\n\n.@{fa-css-prefix}-rotate-90  { .fa-icon-rotate(90deg, 1);  }\n.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }\n.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }\n\n.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }\n.@{fa-css-prefix}-flip-vertical   { .fa-icon-flip(1, -1, 2); }\n\n// Hook for IE8-9\n// -------------------------\n\n:root .@{fa-css-prefix}-rotate-90,\n:root .@{fa-css-prefix}-rotate-180,\n:root .@{fa-css-prefix}-rotate-270,\n:root .@{fa-css-prefix}-flip-horizontal,\n:root .@{fa-css-prefix}-flip-vertical {\n  filter: none;\n}\n","// Mixins\n// --------------------------\n\n.fa-icon() {\n  display: inline-block;\n  font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration\n  font-size: inherit; // can't have font-size inherit on line above, so need to override\n  text-rendering: auto; // optimizelegibility throws things off #1094\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n\n}\n\n.fa-icon-rotate(@degrees, @rotation) {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})\";\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n\n.fa-icon-flip(@horiz, @vert, @rotation) {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)\";\n  -webkit-transform: scale(@horiz, @vert);\n      -ms-transform: scale(@horiz, @vert);\n          transform: scale(@horiz, @vert);\n}\n\n\n// Only display content to screen readers. A la Bootstrap 4.\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n//\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n//\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable() {\n  &:active,\n  &:focus {\n    position: static;\n    width: auto;\n    height: auto;\n    margin: 0;\n    overflow: visible;\n    clip: auto;\n  }\n}\n","// Stacked Icons\n// -------------------------\n\n.@{fa-css-prefix}-stack {\n  position: relative;\n  display: inline-block;\n  width: 2em;\n  height: 2em;\n  line-height: 2em;\n  vertical-align: middle;\n}\n.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {\n  position: absolute;\n  left: 0;\n  width: 100%;\n  text-align: center;\n}\n.@{fa-css-prefix}-stack-1x { line-height: inherit; }\n.@{fa-css-prefix}-stack-2x { font-size: 2em; }\n.@{fa-css-prefix}-inverse { color: @fa-inverse; }\n","/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n   readers do not read off random characters that represent icons */\n\n.@{fa-css-prefix}-glass:before { content: @fa-var-glass; }\n.@{fa-css-prefix}-music:before { content: @fa-var-music; }\n.@{fa-css-prefix}-search:before { content: @fa-var-search; }\n.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; }\n.@{fa-css-prefix}-heart:before { content: @fa-var-heart; }\n.@{fa-css-prefix}-star:before { content: @fa-var-star; }\n.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; }\n.@{fa-css-prefix}-user:before { content: @fa-var-user; }\n.@{fa-css-prefix}-film:before { content: @fa-var-film; }\n.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; }\n.@{fa-css-prefix}-th:before { content: @fa-var-th; }\n.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; }\n.@{fa-css-prefix}-check:before { content: @fa-var-check; }\n.@{fa-css-prefix}-remove:before,\n.@{fa-css-prefix}-close:before,\n.@{fa-css-prefix}-times:before { content: @fa-var-times; }\n.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; }\n.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; }\n.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; }\n.@{fa-css-prefix}-signal:before { content: @fa-var-signal; }\n.@{fa-css-prefix}-gear:before,\n.@{fa-css-prefix}-cog:before { content: @fa-var-cog; }\n.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; }\n.@{fa-css-prefix}-home:before { content: @fa-var-home; }\n.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; }\n.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; }\n.@{fa-css-prefix}-road:before { content: @fa-var-road; }\n.@{fa-css-prefix}-download:before { content: @fa-var-download; }\n.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; }\n.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; }\n.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; }\n.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; }\n.@{fa-css-prefix}-rotate-right:before,\n.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; }\n.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; }\n.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; }\n.@{fa-css-prefix}-lock:before { content: @fa-var-lock; }\n.@{fa-css-prefix}-flag:before { content: @fa-var-flag; }\n.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; }\n.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; }\n.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; }\n.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; }\n.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; }\n.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; }\n.@{fa-css-prefix}-tag:before { content: @fa-var-tag; }\n.@{fa-css-prefix}-tags:before { content: @fa-var-tags; }\n.@{fa-css-prefix}-book:before { content: @fa-var-book; }\n.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; }\n.@{fa-css-prefix}-print:before { content: @fa-var-print; }\n.@{fa-css-prefix}-camera:before { content: @fa-var-camera; }\n.@{fa-css-prefix}-font:before { content: @fa-var-font; }\n.@{fa-css-prefix}-bold:before { content: @fa-var-bold; }\n.@{fa-css-prefix}-italic:before { content: @fa-var-italic; }\n.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; }\n.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; }\n.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; }\n.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; }\n.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; }\n.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; }\n.@{fa-css-prefix}-list:before { content: @fa-var-list; }\n.@{fa-css-prefix}-dedent:before,\n.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; }\n.@{fa-css-prefix}-indent:before { content: @fa-var-indent; }\n.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; }\n.@{fa-css-prefix}-photo:before,\n.@{fa-css-prefix}-image:before,\n.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; }\n.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; }\n.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; }\n.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; }\n.@{fa-css-prefix}-tint:before { content: @fa-var-tint; }\n.@{fa-css-prefix}-edit:before,\n.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; }\n.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; }\n.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; }\n.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; }\n.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; }\n.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; }\n.@{fa-css-prefix}-backward:before { content: @fa-var-backward; }\n.@{fa-css-prefix}-play:before { content: @fa-var-play; }\n.@{fa-css-prefix}-pause:before { content: @fa-var-pause; }\n.@{fa-css-prefix}-stop:before { content: @fa-var-stop; }\n.@{fa-css-prefix}-forward:before { content: @fa-var-forward; }\n.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; }\n.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; }\n.@{fa-css-prefix}-eject:before { content: @fa-var-eject; }\n.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; }\n.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; }\n.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; }\n.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; }\n.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; }\n.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; }\n.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; }\n.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; }\n.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; }\n.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; }\n.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; }\n.@{fa-css-prefix}-ban:before { content: @fa-var-ban; }\n.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; }\n.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; }\n.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; }\n.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; }\n.@{fa-css-prefix}-mail-forward:before,\n.@{fa-css-prefix}-share:before { content: @fa-var-share; }\n.@{fa-css-prefix}-expand:before { content: @fa-var-expand; }\n.@{fa-css-prefix}-compress:before { content: @fa-var-compress; }\n.@{fa-css-prefix}-plus:before { content: @fa-var-plus; }\n.@{fa-css-prefix}-minus:before { content: @fa-var-minus; }\n.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; }\n.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; }\n.@{fa-css-prefix}-gift:before { content: @fa-var-gift; }\n.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; }\n.@{fa-css-prefix}-fire:before { content: @fa-var-fire; }\n.@{fa-css-prefix}-eye:before { content: @fa-var-eye; }\n.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; }\n.@{fa-css-prefix}-warning:before,\n.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; }\n.@{fa-css-prefix}-plane:before { content: @fa-var-plane; }\n.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; }\n.@{fa-css-prefix}-random:before { content: @fa-var-random; }\n.@{fa-css-prefix}-comment:before { content: @fa-var-comment; }\n.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; }\n.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; }\n.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; }\n.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; }\n.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; }\n.@{fa-css-prefix}-folder:before { content: @fa-var-folder; }\n.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; }\n.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; }\n.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; }\n.@{fa-css-prefix}-bar-chart-o:before,\n.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; }\n.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; }\n.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; }\n.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; }\n.@{fa-css-prefix}-key:before { content: @fa-var-key; }\n.@{fa-css-prefix}-gears:before,\n.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; }\n.@{fa-css-prefix}-comments:before { content: @fa-var-comments; }\n.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; }\n.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; }\n.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; }\n.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; }\n.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; }\n.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; }\n.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; }\n.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; }\n.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; }\n.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; }\n.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; }\n.@{fa-css-prefix}-upload:before { content: @fa-var-upload; }\n.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; }\n.@{fa-css-prefix}-phone:before { content: @fa-var-phone; }\n.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; }\n.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; }\n.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; }\n.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; }\n.@{fa-css-prefix}-facebook-f:before,\n.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; }\n.@{fa-css-prefix}-github:before { content: @fa-var-github; }\n.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; }\n.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; }\n.@{fa-css-prefix}-feed:before,\n.@{fa-css-prefix}-rss:before { content: @fa-var-rss; }\n.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; }\n.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; }\n.@{fa-css-prefix}-bell:before { content: @fa-var-bell; }\n.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; }\n.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; }\n.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; }\n.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; }\n.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; }\n.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; }\n.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; }\n.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; }\n.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; }\n.@{fa-css-prefix}-globe:before { content: @fa-var-globe; }\n.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; }\n.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; }\n.@{fa-css-prefix}-filter:before { content: @fa-var-filter; }\n.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; }\n.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; }\n.@{fa-css-prefix}-group:before,\n.@{fa-css-prefix}-users:before { content: @fa-var-users; }\n.@{fa-css-prefix}-chain:before,\n.@{fa-css-prefix}-link:before { content: @fa-var-link; }\n.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; }\n.@{fa-css-prefix}-flask:before { content: @fa-var-flask; }\n.@{fa-css-prefix}-cut:before,\n.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; }\n.@{fa-css-prefix}-copy:before,\n.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; }\n.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; }\n.@{fa-css-prefix}-save:before,\n.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; }\n.@{fa-css-prefix}-square:before { content: @fa-var-square; }\n.@{fa-css-prefix}-navicon:before,\n.@{fa-css-prefix}-reorder:before,\n.@{fa-css-prefix}-bars:before { content: @fa-var-bars; }\n.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; }\n.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; }\n.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; }\n.@{fa-css-prefix}-underline:before { content: @fa-var-underline; }\n.@{fa-css-prefix}-table:before { content: @fa-var-table; }\n.@{fa-css-prefix}-magic:before { content: @fa-var-magic; }\n.@{fa-css-prefix}-truck:before { content: @fa-var-truck; }\n.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; }\n.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; }\n.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; }\n.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; }\n.@{fa-css-prefix}-money:before { content: @fa-var-money; }\n.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; }\n.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; }\n.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; }\n.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; }\n.@{fa-css-prefix}-columns:before { content: @fa-var-columns; }\n.@{fa-css-prefix}-unsorted:before,\n.@{fa-css-prefix}-sort:before { content: @fa-var-sort; }\n.@{fa-css-prefix}-sort-down:before,\n.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; }\n.@{fa-css-prefix}-sort-up:before,\n.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; }\n.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; }\n.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; }\n.@{fa-css-prefix}-rotate-left:before,\n.@{fa-css-prefix}-undo:before { content: @fa-var-undo; }\n.@{fa-css-prefix}-legal:before,\n.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; }\n.@{fa-css-prefix}-dashboard:before,\n.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; }\n.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; }\n.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; }\n.@{fa-css-prefix}-flash:before,\n.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; }\n.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; }\n.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; }\n.@{fa-css-prefix}-paste:before,\n.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; }\n.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; }\n.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; }\n.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; }\n.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; }\n.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; }\n.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; }\n.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; }\n.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; }\n.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; }\n.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; }\n.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; }\n.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; }\n.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; }\n.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; }\n.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; }\n.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; }\n.@{fa-css-prefix}-beer:before { content: @fa-var-beer; }\n.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; }\n.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; }\n.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; }\n.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; }\n.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; }\n.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; }\n.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; }\n.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; }\n.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; }\n.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; }\n.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; }\n.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; }\n.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; }\n.@{fa-css-prefix}-mobile-phone:before,\n.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; }\n.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; }\n.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; }\n.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; }\n.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; }\n.@{fa-css-prefix}-circle:before { content: @fa-var-circle; }\n.@{fa-css-prefix}-mail-reply:before,\n.@{fa-css-prefix}-reply:before { content: @fa-var-reply; }\n.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; }\n.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; }\n.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; }\n.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; }\n.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; }\n.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; }\n.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; }\n.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; }\n.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; }\n.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; }\n.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; }\n.@{fa-css-prefix}-code:before { content: @fa-var-code; }\n.@{fa-css-prefix}-mail-reply-all:before,\n.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; }\n.@{fa-css-prefix}-star-half-empty:before,\n.@{fa-css-prefix}-star-half-full:before,\n.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; }\n.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; }\n.@{fa-css-prefix}-crop:before { content: @fa-var-crop; }\n.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; }\n.@{fa-css-prefix}-unlink:before,\n.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; }\n.@{fa-css-prefix}-question:before { content: @fa-var-question; }\n.@{fa-css-prefix}-info:before { content: @fa-var-info; }\n.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; }\n.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; }\n.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; }\n.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; }\n.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; }\n.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; }\n.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; }\n.@{fa-css-prefix}-shield:before { content: @fa-var-shield; }\n.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; }\n.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; }\n.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; }\n.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; }\n.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; }\n.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; }\n.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; }\n.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; }\n.@{fa-css-prefix}-html5:before { content: @fa-var-html5; }\n.@{fa-css-prefix}-css3:before { content: @fa-var-css3; }\n.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; }\n.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; }\n.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; }\n.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; }\n.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; }\n.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; }\n.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; }\n.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; }\n.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; }\n.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; }\n.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; }\n.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; }\n.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; }\n.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; }\n.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; }\n.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; }\n.@{fa-css-prefix}-compass:before { content: @fa-var-compass; }\n.@{fa-css-prefix}-toggle-down:before,\n.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; }\n.@{fa-css-prefix}-toggle-up:before,\n.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; }\n.@{fa-css-prefix}-toggle-right:before,\n.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; }\n.@{fa-css-prefix}-euro:before,\n.@{fa-css-prefix}-eur:before { content: @fa-var-eur; }\n.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; }\n.@{fa-css-prefix}-dollar:before,\n.@{fa-css-prefix}-usd:before { content: @fa-var-usd; }\n.@{fa-css-prefix}-rupee:before,\n.@{fa-css-prefix}-inr:before { content: @fa-var-inr; }\n.@{fa-css-prefix}-cny:before,\n.@{fa-css-prefix}-rmb:before,\n.@{fa-css-prefix}-yen:before,\n.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; }\n.@{fa-css-prefix}-ruble:before,\n.@{fa-css-prefix}-rouble:before,\n.@{fa-css-prefix}-rub:before { content: @fa-var-rub; }\n.@{fa-css-prefix}-won:before,\n.@{fa-css-prefix}-krw:before { content: @fa-var-krw; }\n.@{fa-css-prefix}-bitcoin:before,\n.@{fa-css-prefix}-btc:before { content: @fa-var-btc; }\n.@{fa-css-prefix}-file:before { content: @fa-var-file; }\n.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; }\n.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; }\n.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; }\n.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; }\n.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; }\n.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; }\n.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; }\n.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; }\n.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; }\n.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; }\n.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; }\n.@{fa-css-prefix}-xing:before { content: @fa-var-xing; }\n.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; }\n.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; }\n.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; }\n.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; }\n.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; }\n.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; }\n.@{fa-css-prefix}-adn:before { content: @fa-var-adn; }\n.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; }\n.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; }\n.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; }\n.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; }\n.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; }\n.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; }\n.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; }\n.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; }\n.@{fa-css-prefix}-apple:before { content: @fa-var-apple; }\n.@{fa-css-prefix}-windows:before { content: @fa-var-windows; }\n.@{fa-css-prefix}-android:before { content: @fa-var-android; }\n.@{fa-css-prefix}-linux:before { content: @fa-var-linux; }\n.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; }\n.@{fa-css-prefix}-skype:before { content: @fa-var-skype; }\n.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; }\n.@{fa-css-prefix}-trello:before { content: @fa-var-trello; }\n.@{fa-css-prefix}-female:before { content: @fa-var-female; }\n.@{fa-css-prefix}-male:before { content: @fa-var-male; }\n.@{fa-css-prefix}-gittip:before,\n.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; }\n.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; }\n.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; }\n.@{fa-css-prefix}-archive:before { content: @fa-var-archive; }\n.@{fa-css-prefix}-bug:before { content: @fa-var-bug; }\n.@{fa-css-prefix}-vk:before { content: @fa-var-vk; }\n.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; }\n.@{fa-css-prefix}-renren:before { content: @fa-var-renren; }\n.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; }\n.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; }\n.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; }\n.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; }\n.@{fa-css-prefix}-toggle-left:before,\n.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; }\n.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; }\n.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; }\n.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; }\n.@{fa-css-prefix}-turkish-lira:before,\n.@{fa-css-prefix}-try:before { content: @fa-var-try; }\n.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; }\n.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; }\n.@{fa-css-prefix}-slack:before { content: @fa-var-slack; }\n.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; }\n.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; }\n.@{fa-css-prefix}-openid:before { content: @fa-var-openid; }\n.@{fa-css-prefix}-institution:before,\n.@{fa-css-prefix}-bank:before,\n.@{fa-css-prefix}-university:before { content: @fa-var-university; }\n.@{fa-css-prefix}-mortar-board:before,\n.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; }\n.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; }\n.@{fa-css-prefix}-google:before { content: @fa-var-google; }\n.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; }\n.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; }\n.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; }\n.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; }\n.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; }\n.@{fa-css-prefix}-digg:before { content: @fa-var-digg; }\n.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; }\n.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; }\n.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; }\n.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; }\n.@{fa-css-prefix}-language:before { content: @fa-var-language; }\n.@{fa-css-prefix}-fax:before { content: @fa-var-fax; }\n.@{fa-css-prefix}-building:before { content: @fa-var-building; }\n.@{fa-css-prefix}-child:before { content: @fa-var-child; }\n.@{fa-css-prefix}-paw:before { content: @fa-var-paw; }\n.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; }\n.@{fa-css-prefix}-cube:before { content: @fa-var-cube; }\n.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; }\n.@{fa-css-prefix}-behance:before { content: @fa-var-behance; }\n.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; }\n.@{fa-css-prefix}-steam:before { content: @fa-var-steam; }\n.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; }\n.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; }\n.@{fa-css-prefix}-automobile:before,\n.@{fa-css-prefix}-car:before { content: @fa-var-car; }\n.@{fa-css-prefix}-cab:before,\n.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; }\n.@{fa-css-prefix}-tree:before { content: @fa-var-tree; }\n.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; }\n.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; }\n.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; }\n.@{fa-css-prefix}-database:before { content: @fa-var-database; }\n.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; }\n.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; }\n.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; }\n.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; }\n.@{fa-css-prefix}-file-photo-o:before,\n.@{fa-css-prefix}-file-picture-o:before,\n.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; }\n.@{fa-css-prefix}-file-zip-o:before,\n.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; }\n.@{fa-css-prefix}-file-sound-o:before,\n.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; }\n.@{fa-css-prefix}-file-movie-o:before,\n.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; }\n.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; }\n.@{fa-css-prefix}-vine:before { content: @fa-var-vine; }\n.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; }\n.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; }\n.@{fa-css-prefix}-life-bouy:before,\n.@{fa-css-prefix}-life-buoy:before,\n.@{fa-css-prefix}-life-saver:before,\n.@{fa-css-prefix}-support:before,\n.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; }\n.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; }\n.@{fa-css-prefix}-ra:before,\n.@{fa-css-prefix}-resistance:before,\n.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; }\n.@{fa-css-prefix}-ge:before,\n.@{fa-css-prefix}-empire:before { content: @fa-var-empire; }\n.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; }\n.@{fa-css-prefix}-git:before { content: @fa-var-git; }\n.@{fa-css-prefix}-y-combinator-square:before,\n.@{fa-css-prefix}-yc-square:before,\n.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; }\n.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; }\n.@{fa-css-prefix}-qq:before { content: @fa-var-qq; }\n.@{fa-css-prefix}-wechat:before,\n.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; }\n.@{fa-css-prefix}-send:before,\n.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; }\n.@{fa-css-prefix}-send-o:before,\n.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; }\n.@{fa-css-prefix}-history:before { content: @fa-var-history; }\n.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; }\n.@{fa-css-prefix}-header:before { content: @fa-var-header; }\n.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; }\n.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; }\n.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; }\n.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; }\n.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; }\n.@{fa-css-prefix}-soccer-ball-o:before,\n.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; }\n.@{fa-css-prefix}-tty:before { content: @fa-var-tty; }\n.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; }\n.@{fa-css-prefix}-plug:before { content: @fa-var-plug; }\n.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; }\n.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; }\n.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; }\n.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; }\n.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; }\n.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; }\n.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; }\n.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; }\n.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; }\n.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; }\n.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; }\n.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; }\n.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; }\n.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; }\n.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; }\n.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; }\n.@{fa-css-prefix}-trash:before { content: @fa-var-trash; }\n.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; }\n.@{fa-css-prefix}-at:before { content: @fa-var-at; }\n.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; }\n.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; }\n.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; }\n.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; }\n.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; }\n.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; }\n.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; }\n.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; }\n.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; }\n.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; }\n.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; }\n.@{fa-css-prefix}-bus:before { content: @fa-var-bus; }\n.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; }\n.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; }\n.@{fa-css-prefix}-cc:before { content: @fa-var-cc; }\n.@{fa-css-prefix}-shekel:before,\n.@{fa-css-prefix}-sheqel:before,\n.@{fa-css-prefix}-ils:before { content: @fa-var-ils; }\n.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; }\n.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; }\n.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; }\n.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; }\n.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; }\n.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; }\n.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; }\n.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; }\n.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; }\n.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; }\n.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; }\n.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; }\n.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; }\n.@{fa-css-prefix}-ship:before { content: @fa-var-ship; }\n.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; }\n.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; }\n.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; }\n.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; }\n.@{fa-css-prefix}-venus:before { content: @fa-var-venus; }\n.@{fa-css-prefix}-mars:before { content: @fa-var-mars; }\n.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; }\n.@{fa-css-prefix}-intersex:before,\n.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; }\n.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; }\n.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; }\n.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; }\n.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; }\n.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; }\n.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; }\n.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; }\n.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; }\n.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; }\n.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; }\n.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; }\n.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; }\n.@{fa-css-prefix}-server:before { content: @fa-var-server; }\n.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; }\n.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; }\n.@{fa-css-prefix}-hotel:before,\n.@{fa-css-prefix}-bed:before { content: @fa-var-bed; }\n.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; }\n.@{fa-css-prefix}-train:before { content: @fa-var-train; }\n.@{fa-css-prefix}-subway:before { content: @fa-var-subway; }\n.@{fa-css-prefix}-medium:before { content: @fa-var-medium; }\n.@{fa-css-prefix}-yc:before,\n.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; }\n.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; }\n.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; }\n.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; }\n.@{fa-css-prefix}-battery-4:before,\n.@{fa-css-prefix}-battery:before,\n.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; }\n.@{fa-css-prefix}-battery-3:before,\n.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; }\n.@{fa-css-prefix}-battery-2:before,\n.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; }\n.@{fa-css-prefix}-battery-1:before,\n.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; }\n.@{fa-css-prefix}-battery-0:before,\n.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; }\n.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; }\n.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; }\n.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; }\n.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; }\n.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; }\n.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; }\n.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; }\n.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; }\n.@{fa-css-prefix}-clone:before { content: @fa-var-clone; }\n.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; }\n.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; }\n.@{fa-css-prefix}-hourglass-1:before,\n.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; }\n.@{fa-css-prefix}-hourglass-2:before,\n.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; }\n.@{fa-css-prefix}-hourglass-3:before,\n.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; }\n.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; }\n.@{fa-css-prefix}-hand-grab-o:before,\n.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; }\n.@{fa-css-prefix}-hand-stop-o:before,\n.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; }\n.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; }\n.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; }\n.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; }\n.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; }\n.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; }\n.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; }\n.@{fa-css-prefix}-registered:before { content: @fa-var-registered; }\n.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; }\n.@{fa-css-prefix}-gg:before { content: @fa-var-gg; }\n.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; }\n.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; }\n.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; }\n.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; }\n.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; }\n.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; }\n.@{fa-css-prefix}-safari:before { content: @fa-var-safari; }\n.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; }\n.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; }\n.@{fa-css-prefix}-opera:before { content: @fa-var-opera; }\n.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; }\n.@{fa-css-prefix}-tv:before,\n.@{fa-css-prefix}-television:before { content: @fa-var-television; }\n.@{fa-css-prefix}-contao:before { content: @fa-var-contao; }\n.@{fa-css-prefix}-500px:before { content: @fa-var-500px; }\n.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; }\n.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; }\n.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; }\n.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; }\n.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; }\n.@{fa-css-prefix}-industry:before { content: @fa-var-industry; }\n.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; }\n.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; }\n.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; }\n.@{fa-css-prefix}-map:before { content: @fa-var-map; }\n.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; }\n.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; }\n.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; }\n.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; }\n.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; }\n.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; }\n.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; }\n.@{fa-css-prefix}-edge:before { content: @fa-var-edge; }\n.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; }\n.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; }\n.@{fa-css-prefix}-modx:before { content: @fa-var-modx; }\n.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; }\n.@{fa-css-prefix}-usb:before { content: @fa-var-usb; }\n.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; }\n.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; }\n.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; }\n.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; }\n.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; }\n.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; }\n.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; }\n.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; }\n.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; }\n.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; }\n.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; }\n.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; }\n.@{fa-css-prefix}-percent:before { content: @fa-var-percent; }\n.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; }\n.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; }\n.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; }\n.@{fa-css-prefix}-envira:before { content: @fa-var-envira; }\n.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; }\n.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; }\n.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; }\n.@{fa-css-prefix}-blind:before { content: @fa-var-blind; }\n.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; }\n.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; }\n.@{fa-css-prefix}-braille:before { content: @fa-var-braille; }\n.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; }\n.@{fa-css-prefix}-asl-interpreting:before,\n.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; }\n.@{fa-css-prefix}-deafness:before,\n.@{fa-css-prefix}-hard-of-hearing:before,\n.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; }\n.@{fa-css-prefix}-glide:before { content: @fa-var-glide; }\n.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; }\n.@{fa-css-prefix}-signing:before,\n.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; }\n.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; }\n.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; }\n.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; }\n.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; }\n.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; }\n.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; }\n.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; }\n.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; }\n.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; }\n.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; }\n.@{fa-css-prefix}-google-plus-circle:before,\n.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; }\n.@{fa-css-prefix}-fa:before,\n.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; }\n.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; }\n.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; }\n.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; }\n.@{fa-css-prefix}-linode:before { content: @fa-var-linode; }\n.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; }\n.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; }\n.@{fa-css-prefix}-vcard:before,\n.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; }\n.@{fa-css-prefix}-vcard-o:before,\n.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; }\n.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; }\n.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; }\n.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; }\n.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; }\n.@{fa-css-prefix}-drivers-license:before,\n.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; }\n.@{fa-css-prefix}-drivers-license-o:before,\n.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; }\n.@{fa-css-prefix}-quora:before { content: @fa-var-quora; }\n.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; }\n.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; }\n.@{fa-css-prefix}-thermometer-4:before,\n.@{fa-css-prefix}-thermometer:before,\n.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; }\n.@{fa-css-prefix}-thermometer-3:before,\n.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; }\n.@{fa-css-prefix}-thermometer-2:before,\n.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; }\n.@{fa-css-prefix}-thermometer-1:before,\n.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; }\n.@{fa-css-prefix}-thermometer-0:before,\n.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; }\n.@{fa-css-prefix}-shower:before { content: @fa-var-shower; }\n.@{fa-css-prefix}-bathtub:before,\n.@{fa-css-prefix}-s15:before,\n.@{fa-css-prefix}-bath:before { content: @fa-var-bath; }\n.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; }\n.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; }\n.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; }\n.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; }\n.@{fa-css-prefix}-times-rectangle:before,\n.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; }\n.@{fa-css-prefix}-times-rectangle-o:before,\n.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; }\n.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; }\n.@{fa-css-prefix}-grav:before { content: @fa-var-grav; }\n.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; }\n.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; }\n.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; }\n.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; }\n.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; }\n.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; }\n.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; }\n.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; }\n.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; }\n","// Variables\n// --------------------------\n\n@fa-font-path:        \"../fonts\";\n@fa-font-size-base:   14px;\n@fa-line-height-base: 1;\n//@fa-font-path:        \"//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts\"; // for referencing Bootstrap CDN font files directly\n@fa-css-prefix:       fa;\n@fa-version:          \"4.7.0\";\n@fa-border-color:     #eee;\n@fa-inverse:          #fff;\n@fa-li-width:         (30em / 14);\n\n@fa-var-500px: \"\\f26e\";\n@fa-var-address-book: \"\\f2b9\";\n@fa-var-address-book-o: \"\\f2ba\";\n@fa-var-address-card: \"\\f2bb\";\n@fa-var-address-card-o: \"\\f2bc\";\n@fa-var-adjust: \"\\f042\";\n@fa-var-adn: \"\\f170\";\n@fa-var-align-center: \"\\f037\";\n@fa-var-align-justify: \"\\f039\";\n@fa-var-align-left: \"\\f036\";\n@fa-var-align-right: \"\\f038\";\n@fa-var-amazon: \"\\f270\";\n@fa-var-ambulance: \"\\f0f9\";\n@fa-var-american-sign-language-interpreting: \"\\f2a3\";\n@fa-var-anchor: \"\\f13d\";\n@fa-var-android: \"\\f17b\";\n@fa-var-angellist: \"\\f209\";\n@fa-var-angle-double-down: \"\\f103\";\n@fa-var-angle-double-left: \"\\f100\";\n@fa-var-angle-double-right: \"\\f101\";\n@fa-var-angle-double-up: \"\\f102\";\n@fa-var-angle-down: \"\\f107\";\n@fa-var-angle-left: \"\\f104\";\n@fa-var-angle-right: \"\\f105\";\n@fa-var-angle-up: \"\\f106\";\n@fa-var-apple: \"\\f179\";\n@fa-var-archive: \"\\f187\";\n@fa-var-area-chart: \"\\f1fe\";\n@fa-var-arrow-circle-down: \"\\f0ab\";\n@fa-var-arrow-circle-left: \"\\f0a8\";\n@fa-var-arrow-circle-o-down: \"\\f01a\";\n@fa-var-arrow-circle-o-left: \"\\f190\";\n@fa-var-arrow-circle-o-right: \"\\f18e\";\n@fa-var-arrow-circle-o-up: \"\\f01b\";\n@fa-var-arrow-circle-right: \"\\f0a9\";\n@fa-var-arrow-circle-up: \"\\f0aa\";\n@fa-var-arrow-down: \"\\f063\";\n@fa-var-arrow-left: \"\\f060\";\n@fa-var-arrow-right: \"\\f061\";\n@fa-var-arrow-up: \"\\f062\";\n@fa-var-arrows: \"\\f047\";\n@fa-var-arrows-alt: \"\\f0b2\";\n@fa-var-arrows-h: \"\\f07e\";\n@fa-var-arrows-v: \"\\f07d\";\n@fa-var-asl-interpreting: \"\\f2a3\";\n@fa-var-assistive-listening-systems: \"\\f2a2\";\n@fa-var-asterisk: \"\\f069\";\n@fa-var-at: \"\\f1fa\";\n@fa-var-audio-description: \"\\f29e\";\n@fa-var-automobile: \"\\f1b9\";\n@fa-var-backward: \"\\f04a\";\n@fa-var-balance-scale: \"\\f24e\";\n@fa-var-ban: \"\\f05e\";\n@fa-var-bandcamp: \"\\f2d5\";\n@fa-var-bank: \"\\f19c\";\n@fa-var-bar-chart: \"\\f080\";\n@fa-var-bar-chart-o: \"\\f080\";\n@fa-var-barcode: \"\\f02a\";\n@fa-var-bars: \"\\f0c9\";\n@fa-var-bath: \"\\f2cd\";\n@fa-var-bathtub: \"\\f2cd\";\n@fa-var-battery: \"\\f240\";\n@fa-var-battery-0: \"\\f244\";\n@fa-var-battery-1: \"\\f243\";\n@fa-var-battery-2: \"\\f242\";\n@fa-var-battery-3: \"\\f241\";\n@fa-var-battery-4: \"\\f240\";\n@fa-var-battery-empty: \"\\f244\";\n@fa-var-battery-full: \"\\f240\";\n@fa-var-battery-half: \"\\f242\";\n@fa-var-battery-quarter: \"\\f243\";\n@fa-var-battery-three-quarters: \"\\f241\";\n@fa-var-bed: \"\\f236\";\n@fa-var-beer: \"\\f0fc\";\n@fa-var-behance: \"\\f1b4\";\n@fa-var-behance-square: \"\\f1b5\";\n@fa-var-bell: \"\\f0f3\";\n@fa-var-bell-o: \"\\f0a2\";\n@fa-var-bell-slash: \"\\f1f6\";\n@fa-var-bell-slash-o: \"\\f1f7\";\n@fa-var-bicycle: \"\\f206\";\n@fa-var-binoculars: \"\\f1e5\";\n@fa-var-birthday-cake: \"\\f1fd\";\n@fa-var-bitbucket: \"\\f171\";\n@fa-var-bitbucket-square: \"\\f172\";\n@fa-var-bitcoin: \"\\f15a\";\n@fa-var-black-tie: \"\\f27e\";\n@fa-var-blind: \"\\f29d\";\n@fa-var-bluetooth: \"\\f293\";\n@fa-var-bluetooth-b: \"\\f294\";\n@fa-var-bold: \"\\f032\";\n@fa-var-bolt: \"\\f0e7\";\n@fa-var-bomb: \"\\f1e2\";\n@fa-var-book: \"\\f02d\";\n@fa-var-bookmark: \"\\f02e\";\n@fa-var-bookmark-o: \"\\f097\";\n@fa-var-braille: \"\\f2a1\";\n@fa-var-briefcase: \"\\f0b1\";\n@fa-var-btc: \"\\f15a\";\n@fa-var-bug: \"\\f188\";\n@fa-var-building: \"\\f1ad\";\n@fa-var-building-o: \"\\f0f7\";\n@fa-var-bullhorn: \"\\f0a1\";\n@fa-var-bullseye: \"\\f140\";\n@fa-var-bus: \"\\f207\";\n@fa-var-buysellads: \"\\f20d\";\n@fa-var-cab: \"\\f1ba\";\n@fa-var-calculator: \"\\f1ec\";\n@fa-var-calendar: \"\\f073\";\n@fa-var-calendar-check-o: \"\\f274\";\n@fa-var-calendar-minus-o: \"\\f272\";\n@fa-var-calendar-o: \"\\f133\";\n@fa-var-calendar-plus-o: \"\\f271\";\n@fa-var-calendar-times-o: \"\\f273\";\n@fa-var-camera: \"\\f030\";\n@fa-var-camera-retro: \"\\f083\";\n@fa-var-car: \"\\f1b9\";\n@fa-var-caret-down: \"\\f0d7\";\n@fa-var-caret-left: \"\\f0d9\";\n@fa-var-caret-right: \"\\f0da\";\n@fa-var-caret-square-o-down: \"\\f150\";\n@fa-var-caret-square-o-left: \"\\f191\";\n@fa-var-caret-square-o-right: \"\\f152\";\n@fa-var-caret-square-o-up: \"\\f151\";\n@fa-var-caret-up: \"\\f0d8\";\n@fa-var-cart-arrow-down: \"\\f218\";\n@fa-var-cart-plus: \"\\f217\";\n@fa-var-cc: \"\\f20a\";\n@fa-var-cc-amex: \"\\f1f3\";\n@fa-var-cc-diners-club: \"\\f24c\";\n@fa-var-cc-discover: \"\\f1f2\";\n@fa-var-cc-jcb: \"\\f24b\";\n@fa-var-cc-mastercard: \"\\f1f1\";\n@fa-var-cc-paypal: \"\\f1f4\";\n@fa-var-cc-stripe: \"\\f1f5\";\n@fa-var-cc-visa: \"\\f1f0\";\n@fa-var-certificate: \"\\f0a3\";\n@fa-var-chain: \"\\f0c1\";\n@fa-var-chain-broken: \"\\f127\";\n@fa-var-check: \"\\f00c\";\n@fa-var-check-circle: \"\\f058\";\n@fa-var-check-circle-o: \"\\f05d\";\n@fa-var-check-square: \"\\f14a\";\n@fa-var-check-square-o: \"\\f046\";\n@fa-var-chevron-circle-down: \"\\f13a\";\n@fa-var-chevron-circle-left: \"\\f137\";\n@fa-var-chevron-circle-right: \"\\f138\";\n@fa-var-chevron-circle-up: \"\\f139\";\n@fa-var-chevron-down: \"\\f078\";\n@fa-var-chevron-left: \"\\f053\";\n@fa-var-chevron-right: \"\\f054\";\n@fa-var-chevron-up: \"\\f077\";\n@fa-var-child: \"\\f1ae\";\n@fa-var-chrome: \"\\f268\";\n@fa-var-circle: \"\\f111\";\n@fa-var-circle-o: \"\\f10c\";\n@fa-var-circle-o-notch: \"\\f1ce\";\n@fa-var-circle-thin: \"\\f1db\";\n@fa-var-clipboard: \"\\f0ea\";\n@fa-var-clock-o: \"\\f017\";\n@fa-var-clone: \"\\f24d\";\n@fa-var-close: \"\\f00d\";\n@fa-var-cloud: \"\\f0c2\";\n@fa-var-cloud-download: \"\\f0ed\";\n@fa-var-cloud-upload: \"\\f0ee\";\n@fa-var-cny: \"\\f157\";\n@fa-var-code: \"\\f121\";\n@fa-var-code-fork: \"\\f126\";\n@fa-var-codepen: \"\\f1cb\";\n@fa-var-codiepie: \"\\f284\";\n@fa-var-coffee: \"\\f0f4\";\n@fa-var-cog: \"\\f013\";\n@fa-var-cogs: \"\\f085\";\n@fa-var-columns: \"\\f0db\";\n@fa-var-comment: \"\\f075\";\n@fa-var-comment-o: \"\\f0e5\";\n@fa-var-commenting: \"\\f27a\";\n@fa-var-commenting-o: \"\\f27b\";\n@fa-var-comments: \"\\f086\";\n@fa-var-comments-o: \"\\f0e6\";\n@fa-var-compass: \"\\f14e\";\n@fa-var-compress: \"\\f066\";\n@fa-var-connectdevelop: \"\\f20e\";\n@fa-var-contao: \"\\f26d\";\n@fa-var-copy: \"\\f0c5\";\n@fa-var-copyright: \"\\f1f9\";\n@fa-var-creative-commons: \"\\f25e\";\n@fa-var-credit-card: \"\\f09d\";\n@fa-var-credit-card-alt: \"\\f283\";\n@fa-var-crop: \"\\f125\";\n@fa-var-crosshairs: \"\\f05b\";\n@fa-var-css3: \"\\f13c\";\n@fa-var-cube: \"\\f1b2\";\n@fa-var-cubes: \"\\f1b3\";\n@fa-var-cut: \"\\f0c4\";\n@fa-var-cutlery: \"\\f0f5\";\n@fa-var-dashboard: \"\\f0e4\";\n@fa-var-dashcube: \"\\f210\";\n@fa-var-database: \"\\f1c0\";\n@fa-var-deaf: \"\\f2a4\";\n@fa-var-deafness: \"\\f2a4\";\n@fa-var-dedent: \"\\f03b\";\n@fa-var-delicious: \"\\f1a5\";\n@fa-var-desktop: \"\\f108\";\n@fa-var-deviantart: \"\\f1bd\";\n@fa-var-diamond: \"\\f219\";\n@fa-var-digg: \"\\f1a6\";\n@fa-var-dollar: \"\\f155\";\n@fa-var-dot-circle-o: \"\\f192\";\n@fa-var-download: \"\\f019\";\n@fa-var-dribbble: \"\\f17d\";\n@fa-var-drivers-license: \"\\f2c2\";\n@fa-var-drivers-license-o: \"\\f2c3\";\n@fa-var-dropbox: \"\\f16b\";\n@fa-var-drupal: \"\\f1a9\";\n@fa-var-edge: \"\\f282\";\n@fa-var-edit: \"\\f044\";\n@fa-var-eercast: \"\\f2da\";\n@fa-var-eject: \"\\f052\";\n@fa-var-ellipsis-h: \"\\f141\";\n@fa-var-ellipsis-v: \"\\f142\";\n@fa-var-empire: \"\\f1d1\";\n@fa-var-envelope: \"\\f0e0\";\n@fa-var-envelope-o: \"\\f003\";\n@fa-var-envelope-open: \"\\f2b6\";\n@fa-var-envelope-open-o: \"\\f2b7\";\n@fa-var-envelope-square: \"\\f199\";\n@fa-var-envira: \"\\f299\";\n@fa-var-eraser: \"\\f12d\";\n@fa-var-etsy: \"\\f2d7\";\n@fa-var-eur: \"\\f153\";\n@fa-var-euro: \"\\f153\";\n@fa-var-exchange: \"\\f0ec\";\n@fa-var-exclamation: \"\\f12a\";\n@fa-var-exclamation-circle: \"\\f06a\";\n@fa-var-exclamation-triangle: \"\\f071\";\n@fa-var-expand: \"\\f065\";\n@fa-var-expeditedssl: \"\\f23e\";\n@fa-var-external-link: \"\\f08e\";\n@fa-var-external-link-square: \"\\f14c\";\n@fa-var-eye: \"\\f06e\";\n@fa-var-eye-slash: \"\\f070\";\n@fa-var-eyedropper: \"\\f1fb\";\n@fa-var-fa: \"\\f2b4\";\n@fa-var-facebook: \"\\f09a\";\n@fa-var-facebook-f: \"\\f09a\";\n@fa-var-facebook-official: \"\\f230\";\n@fa-var-facebook-square: \"\\f082\";\n@fa-var-fast-backward: \"\\f049\";\n@fa-var-fast-forward: \"\\f050\";\n@fa-var-fax: \"\\f1ac\";\n@fa-var-feed: \"\\f09e\";\n@fa-var-female: \"\\f182\";\n@fa-var-fighter-jet: \"\\f0fb\";\n@fa-var-file: \"\\f15b\";\n@fa-var-file-archive-o: \"\\f1c6\";\n@fa-var-file-audio-o: \"\\f1c7\";\n@fa-var-file-code-o: \"\\f1c9\";\n@fa-var-file-excel-o: \"\\f1c3\";\n@fa-var-file-image-o: \"\\f1c5\";\n@fa-var-file-movie-o: \"\\f1c8\";\n@fa-var-file-o: \"\\f016\";\n@fa-var-file-pdf-o: \"\\f1c1\";\n@fa-var-file-photo-o: \"\\f1c5\";\n@fa-var-file-picture-o: \"\\f1c5\";\n@fa-var-file-powerpoint-o: \"\\f1c4\";\n@fa-var-file-sound-o: \"\\f1c7\";\n@fa-var-file-text: \"\\f15c\";\n@fa-var-file-text-o: \"\\f0f6\";\n@fa-var-file-video-o: \"\\f1c8\";\n@fa-var-file-word-o: \"\\f1c2\";\n@fa-var-file-zip-o: \"\\f1c6\";\n@fa-var-files-o: \"\\f0c5\";\n@fa-var-film: \"\\f008\";\n@fa-var-filter: \"\\f0b0\";\n@fa-var-fire: \"\\f06d\";\n@fa-var-fire-extinguisher: \"\\f134\";\n@fa-var-firefox: \"\\f269\";\n@fa-var-first-order: \"\\f2b0\";\n@fa-var-flag: \"\\f024\";\n@fa-var-flag-checkered: \"\\f11e\";\n@fa-var-flag-o: \"\\f11d\";\n@fa-var-flash: \"\\f0e7\";\n@fa-var-flask: \"\\f0c3\";\n@fa-var-flickr: \"\\f16e\";\n@fa-var-floppy-o: \"\\f0c7\";\n@fa-var-folder: \"\\f07b\";\n@fa-var-folder-o: \"\\f114\";\n@fa-var-folder-open: \"\\f07c\";\n@fa-var-folder-open-o: \"\\f115\";\n@fa-var-font: \"\\f031\";\n@fa-var-font-awesome: \"\\f2b4\";\n@fa-var-fonticons: \"\\f280\";\n@fa-var-fort-awesome: \"\\f286\";\n@fa-var-forumbee: \"\\f211\";\n@fa-var-forward: \"\\f04e\";\n@fa-var-foursquare: \"\\f180\";\n@fa-var-free-code-camp: \"\\f2c5\";\n@fa-var-frown-o: \"\\f119\";\n@fa-var-futbol-o: \"\\f1e3\";\n@fa-var-gamepad: \"\\f11b\";\n@fa-var-gavel: \"\\f0e3\";\n@fa-var-gbp: \"\\f154\";\n@fa-var-ge: \"\\f1d1\";\n@fa-var-gear: \"\\f013\";\n@fa-var-gears: \"\\f085\";\n@fa-var-genderless: \"\\f22d\";\n@fa-var-get-pocket: \"\\f265\";\n@fa-var-gg: \"\\f260\";\n@fa-var-gg-circle: \"\\f261\";\n@fa-var-gift: \"\\f06b\";\n@fa-var-git: \"\\f1d3\";\n@fa-var-git-square: \"\\f1d2\";\n@fa-var-github: \"\\f09b\";\n@fa-var-github-alt: \"\\f113\";\n@fa-var-github-square: \"\\f092\";\n@fa-var-gitlab: \"\\f296\";\n@fa-var-gittip: \"\\f184\";\n@fa-var-glass: \"\\f000\";\n@fa-var-glide: \"\\f2a5\";\n@fa-var-glide-g: \"\\f2a6\";\n@fa-var-globe: \"\\f0ac\";\n@fa-var-google: \"\\f1a0\";\n@fa-var-google-plus: \"\\f0d5\";\n@fa-var-google-plus-circle: \"\\f2b3\";\n@fa-var-google-plus-official: \"\\f2b3\";\n@fa-var-google-plus-square: \"\\f0d4\";\n@fa-var-google-wallet: \"\\f1ee\";\n@fa-var-graduation-cap: \"\\f19d\";\n@fa-var-gratipay: \"\\f184\";\n@fa-var-grav: \"\\f2d6\";\n@fa-var-group: \"\\f0c0\";\n@fa-var-h-square: \"\\f0fd\";\n@fa-var-hacker-news: \"\\f1d4\";\n@fa-var-hand-grab-o: \"\\f255\";\n@fa-var-hand-lizard-o: \"\\f258\";\n@fa-var-hand-o-down: \"\\f0a7\";\n@fa-var-hand-o-left: \"\\f0a5\";\n@fa-var-hand-o-right: \"\\f0a4\";\n@fa-var-hand-o-up: \"\\f0a6\";\n@fa-var-hand-paper-o: \"\\f256\";\n@fa-var-hand-peace-o: \"\\f25b\";\n@fa-var-hand-pointer-o: \"\\f25a\";\n@fa-var-hand-rock-o: \"\\f255\";\n@fa-var-hand-scissors-o: \"\\f257\";\n@fa-var-hand-spock-o: \"\\f259\";\n@fa-var-hand-stop-o: \"\\f256\";\n@fa-var-handshake-o: \"\\f2b5\";\n@fa-var-hard-of-hearing: \"\\f2a4\";\n@fa-var-hashtag: \"\\f292\";\n@fa-var-hdd-o: \"\\f0a0\";\n@fa-var-header: \"\\f1dc\";\n@fa-var-headphones: \"\\f025\";\n@fa-var-heart: \"\\f004\";\n@fa-var-heart-o: \"\\f08a\";\n@fa-var-heartbeat: \"\\f21e\";\n@fa-var-history: \"\\f1da\";\n@fa-var-home: \"\\f015\";\n@fa-var-hospital-o: \"\\f0f8\";\n@fa-var-hotel: \"\\f236\";\n@fa-var-hourglass: \"\\f254\";\n@fa-var-hourglass-1: \"\\f251\";\n@fa-var-hourglass-2: \"\\f252\";\n@fa-var-hourglass-3: \"\\f253\";\n@fa-var-hourglass-end: \"\\f253\";\n@fa-var-hourglass-half: \"\\f252\";\n@fa-var-hourglass-o: \"\\f250\";\n@fa-var-hourglass-start: \"\\f251\";\n@fa-var-houzz: \"\\f27c\";\n@fa-var-html5: \"\\f13b\";\n@fa-var-i-cursor: \"\\f246\";\n@fa-var-id-badge: \"\\f2c1\";\n@fa-var-id-card: \"\\f2c2\";\n@fa-var-id-card-o: \"\\f2c3\";\n@fa-var-ils: \"\\f20b\";\n@fa-var-image: \"\\f03e\";\n@fa-var-imdb: \"\\f2d8\";\n@fa-var-inbox: \"\\f01c\";\n@fa-var-indent: \"\\f03c\";\n@fa-var-industry: \"\\f275\";\n@fa-var-info: \"\\f129\";\n@fa-var-info-circle: \"\\f05a\";\n@fa-var-inr: \"\\f156\";\n@fa-var-instagram: \"\\f16d\";\n@fa-var-institution: \"\\f19c\";\n@fa-var-internet-explorer: \"\\f26b\";\n@fa-var-intersex: \"\\f224\";\n@fa-var-ioxhost: \"\\f208\";\n@fa-var-italic: \"\\f033\";\n@fa-var-joomla: \"\\f1aa\";\n@fa-var-jpy: \"\\f157\";\n@fa-var-jsfiddle: \"\\f1cc\";\n@fa-var-key: \"\\f084\";\n@fa-var-keyboard-o: \"\\f11c\";\n@fa-var-krw: \"\\f159\";\n@fa-var-language: \"\\f1ab\";\n@fa-var-laptop: \"\\f109\";\n@fa-var-lastfm: \"\\f202\";\n@fa-var-lastfm-square: \"\\f203\";\n@fa-var-leaf: \"\\f06c\";\n@fa-var-leanpub: \"\\f212\";\n@fa-var-legal: \"\\f0e3\";\n@fa-var-lemon-o: \"\\f094\";\n@fa-var-level-down: \"\\f149\";\n@fa-var-level-up: \"\\f148\";\n@fa-var-life-bouy: \"\\f1cd\";\n@fa-var-life-buoy: \"\\f1cd\";\n@fa-var-life-ring: \"\\f1cd\";\n@fa-var-life-saver: \"\\f1cd\";\n@fa-var-lightbulb-o: \"\\f0eb\";\n@fa-var-line-chart: \"\\f201\";\n@fa-var-link: \"\\f0c1\";\n@fa-var-linkedin: \"\\f0e1\";\n@fa-var-linkedin-square: \"\\f08c\";\n@fa-var-linode: \"\\f2b8\";\n@fa-var-linux: \"\\f17c\";\n@fa-var-list: \"\\f03a\";\n@fa-var-list-alt: \"\\f022\";\n@fa-var-list-ol: \"\\f0cb\";\n@fa-var-list-ul: \"\\f0ca\";\n@fa-var-location-arrow: \"\\f124\";\n@fa-var-lock: \"\\f023\";\n@fa-var-long-arrow-down: \"\\f175\";\n@fa-var-long-arrow-left: \"\\f177\";\n@fa-var-long-arrow-right: \"\\f178\";\n@fa-var-long-arrow-up: \"\\f176\";\n@fa-var-low-vision: \"\\f2a8\";\n@fa-var-magic: \"\\f0d0\";\n@fa-var-magnet: \"\\f076\";\n@fa-var-mail-forward: \"\\f064\";\n@fa-var-mail-reply: \"\\f112\";\n@fa-var-mail-reply-all: \"\\f122\";\n@fa-var-male: \"\\f183\";\n@fa-var-map: \"\\f279\";\n@fa-var-map-marker: \"\\f041\";\n@fa-var-map-o: \"\\f278\";\n@fa-var-map-pin: \"\\f276\";\n@fa-var-map-signs: \"\\f277\";\n@fa-var-mars: \"\\f222\";\n@fa-var-mars-double: \"\\f227\";\n@fa-var-mars-stroke: \"\\f229\";\n@fa-var-mars-stroke-h: \"\\f22b\";\n@fa-var-mars-stroke-v: \"\\f22a\";\n@fa-var-maxcdn: \"\\f136\";\n@fa-var-meanpath: \"\\f20c\";\n@fa-var-medium: \"\\f23a\";\n@fa-var-medkit: \"\\f0fa\";\n@fa-var-meetup: \"\\f2e0\";\n@fa-var-meh-o: \"\\f11a\";\n@fa-var-mercury: \"\\f223\";\n@fa-var-microchip: \"\\f2db\";\n@fa-var-microphone: \"\\f130\";\n@fa-var-microphone-slash: \"\\f131\";\n@fa-var-minus: \"\\f068\";\n@fa-var-minus-circle: \"\\f056\";\n@fa-var-minus-square: \"\\f146\";\n@fa-var-minus-square-o: \"\\f147\";\n@fa-var-mixcloud: \"\\f289\";\n@fa-var-mobile: \"\\f10b\";\n@fa-var-mobile-phone: \"\\f10b\";\n@fa-var-modx: \"\\f285\";\n@fa-var-money: \"\\f0d6\";\n@fa-var-moon-o: \"\\f186\";\n@fa-var-mortar-board: \"\\f19d\";\n@fa-var-motorcycle: \"\\f21c\";\n@fa-var-mouse-pointer: \"\\f245\";\n@fa-var-music: \"\\f001\";\n@fa-var-navicon: \"\\f0c9\";\n@fa-var-neuter: \"\\f22c\";\n@fa-var-newspaper-o: \"\\f1ea\";\n@fa-var-object-group: \"\\f247\";\n@fa-var-object-ungroup: \"\\f248\";\n@fa-var-odnoklassniki: \"\\f263\";\n@fa-var-odnoklassniki-square: \"\\f264\";\n@fa-var-opencart: \"\\f23d\";\n@fa-var-openid: \"\\f19b\";\n@fa-var-opera: \"\\f26a\";\n@fa-var-optin-monster: \"\\f23c\";\n@fa-var-outdent: \"\\f03b\";\n@fa-var-pagelines: \"\\f18c\";\n@fa-var-paint-brush: \"\\f1fc\";\n@fa-var-paper-plane: \"\\f1d8\";\n@fa-var-paper-plane-o: \"\\f1d9\";\n@fa-var-paperclip: \"\\f0c6\";\n@fa-var-paragraph: \"\\f1dd\";\n@fa-var-paste: \"\\f0ea\";\n@fa-var-pause: \"\\f04c\";\n@fa-var-pause-circle: \"\\f28b\";\n@fa-var-pause-circle-o: \"\\f28c\";\n@fa-var-paw: \"\\f1b0\";\n@fa-var-paypal: \"\\f1ed\";\n@fa-var-pencil: \"\\f040\";\n@fa-var-pencil-square: \"\\f14b\";\n@fa-var-pencil-square-o: \"\\f044\";\n@fa-var-percent: \"\\f295\";\n@fa-var-phone: \"\\f095\";\n@fa-var-phone-square: \"\\f098\";\n@fa-var-photo: \"\\f03e\";\n@fa-var-picture-o: \"\\f03e\";\n@fa-var-pie-chart: \"\\f200\";\n@fa-var-pied-piper: \"\\f2ae\";\n@fa-var-pied-piper-alt: \"\\f1a8\";\n@fa-var-pied-piper-pp: \"\\f1a7\";\n@fa-var-pinterest: \"\\f0d2\";\n@fa-var-pinterest-p: \"\\f231\";\n@fa-var-pinterest-square: \"\\f0d3\";\n@fa-var-plane: \"\\f072\";\n@fa-var-play: \"\\f04b\";\n@fa-var-play-circle: \"\\f144\";\n@fa-var-play-circle-o: \"\\f01d\";\n@fa-var-plug: \"\\f1e6\";\n@fa-var-plus: \"\\f067\";\n@fa-var-plus-circle: \"\\f055\";\n@fa-var-plus-square: \"\\f0fe\";\n@fa-var-plus-square-o: \"\\f196\";\n@fa-var-podcast: \"\\f2ce\";\n@fa-var-power-off: \"\\f011\";\n@fa-var-print: \"\\f02f\";\n@fa-var-product-hunt: \"\\f288\";\n@fa-var-puzzle-piece: \"\\f12e\";\n@fa-var-qq: \"\\f1d6\";\n@fa-var-qrcode: \"\\f029\";\n@fa-var-question: \"\\f128\";\n@fa-var-question-circle: \"\\f059\";\n@fa-var-question-circle-o: \"\\f29c\";\n@fa-var-quora: \"\\f2c4\";\n@fa-var-quote-left: \"\\f10d\";\n@fa-var-quote-right: \"\\f10e\";\n@fa-var-ra: \"\\f1d0\";\n@fa-var-random: \"\\f074\";\n@fa-var-ravelry: \"\\f2d9\";\n@fa-var-rebel: \"\\f1d0\";\n@fa-var-recycle: \"\\f1b8\";\n@fa-var-reddit: \"\\f1a1\";\n@fa-var-reddit-alien: \"\\f281\";\n@fa-var-reddit-square: \"\\f1a2\";\n@fa-var-refresh: \"\\f021\";\n@fa-var-registered: \"\\f25d\";\n@fa-var-remove: \"\\f00d\";\n@fa-var-renren: \"\\f18b\";\n@fa-var-reorder: \"\\f0c9\";\n@fa-var-repeat: \"\\f01e\";\n@fa-var-reply: \"\\f112\";\n@fa-var-reply-all: \"\\f122\";\n@fa-var-resistance: \"\\f1d0\";\n@fa-var-retweet: \"\\f079\";\n@fa-var-rmb: \"\\f157\";\n@fa-var-road: \"\\f018\";\n@fa-var-rocket: \"\\f135\";\n@fa-var-rotate-left: \"\\f0e2\";\n@fa-var-rotate-right: \"\\f01e\";\n@fa-var-rouble: \"\\f158\";\n@fa-var-rss: \"\\f09e\";\n@fa-var-rss-square: \"\\f143\";\n@fa-var-rub: \"\\f158\";\n@fa-var-ruble: \"\\f158\";\n@fa-var-rupee: \"\\f156\";\n@fa-var-s15: \"\\f2cd\";\n@fa-var-safari: \"\\f267\";\n@fa-var-save: \"\\f0c7\";\n@fa-var-scissors: \"\\f0c4\";\n@fa-var-scribd: \"\\f28a\";\n@fa-var-search: \"\\f002\";\n@fa-var-search-minus: \"\\f010\";\n@fa-var-search-plus: \"\\f00e\";\n@fa-var-sellsy: \"\\f213\";\n@fa-var-send: \"\\f1d8\";\n@fa-var-send-o: \"\\f1d9\";\n@fa-var-server: \"\\f233\";\n@fa-var-share: \"\\f064\";\n@fa-var-share-alt: \"\\f1e0\";\n@fa-var-share-alt-square: \"\\f1e1\";\n@fa-var-share-square: \"\\f14d\";\n@fa-var-share-square-o: \"\\f045\";\n@fa-var-shekel: \"\\f20b\";\n@fa-var-sheqel: \"\\f20b\";\n@fa-var-shield: \"\\f132\";\n@fa-var-ship: \"\\f21a\";\n@fa-var-shirtsinbulk: \"\\f214\";\n@fa-var-shopping-bag: \"\\f290\";\n@fa-var-shopping-basket: \"\\f291\";\n@fa-var-shopping-cart: \"\\f07a\";\n@fa-var-shower: \"\\f2cc\";\n@fa-var-sign-in: \"\\f090\";\n@fa-var-sign-language: \"\\f2a7\";\n@fa-var-sign-out: \"\\f08b\";\n@fa-var-signal: \"\\f012\";\n@fa-var-signing: \"\\f2a7\";\n@fa-var-simplybuilt: \"\\f215\";\n@fa-var-sitemap: \"\\f0e8\";\n@fa-var-skyatlas: \"\\f216\";\n@fa-var-skype: \"\\f17e\";\n@fa-var-slack: \"\\f198\";\n@fa-var-sliders: \"\\f1de\";\n@fa-var-slideshare: \"\\f1e7\";\n@fa-var-smile-o: \"\\f118\";\n@fa-var-snapchat: \"\\f2ab\";\n@fa-var-snapchat-ghost: \"\\f2ac\";\n@fa-var-snapchat-square: \"\\f2ad\";\n@fa-var-snowflake-o: \"\\f2dc\";\n@fa-var-soccer-ball-o: \"\\f1e3\";\n@fa-var-sort: \"\\f0dc\";\n@fa-var-sort-alpha-asc: \"\\f15d\";\n@fa-var-sort-alpha-desc: \"\\f15e\";\n@fa-var-sort-amount-asc: \"\\f160\";\n@fa-var-sort-amount-desc: \"\\f161\";\n@fa-var-sort-asc: \"\\f0de\";\n@fa-var-sort-desc: \"\\f0dd\";\n@fa-var-sort-down: \"\\f0dd\";\n@fa-var-sort-numeric-asc: \"\\f162\";\n@fa-var-sort-numeric-desc: \"\\f163\";\n@fa-var-sort-up: \"\\f0de\";\n@fa-var-soundcloud: \"\\f1be\";\n@fa-var-space-shuttle: \"\\f197\";\n@fa-var-spinner: \"\\f110\";\n@fa-var-spoon: \"\\f1b1\";\n@fa-var-spotify: \"\\f1bc\";\n@fa-var-square: \"\\f0c8\";\n@fa-var-square-o: \"\\f096\";\n@fa-var-stack-exchange: \"\\f18d\";\n@fa-var-stack-overflow: \"\\f16c\";\n@fa-var-star: \"\\f005\";\n@fa-var-star-half: \"\\f089\";\n@fa-var-star-half-empty: \"\\f123\";\n@fa-var-star-half-full: \"\\f123\";\n@fa-var-star-half-o: \"\\f123\";\n@fa-var-star-o: \"\\f006\";\n@fa-var-steam: \"\\f1b6\";\n@fa-var-steam-square: \"\\f1b7\";\n@fa-var-step-backward: \"\\f048\";\n@fa-var-step-forward: \"\\f051\";\n@fa-var-stethoscope: \"\\f0f1\";\n@fa-var-sticky-note: \"\\f249\";\n@fa-var-sticky-note-o: \"\\f24a\";\n@fa-var-stop: \"\\f04d\";\n@fa-var-stop-circle: \"\\f28d\";\n@fa-var-stop-circle-o: \"\\f28e\";\n@fa-var-street-view: \"\\f21d\";\n@fa-var-strikethrough: \"\\f0cc\";\n@fa-var-stumbleupon: \"\\f1a4\";\n@fa-var-stumbleupon-circle: \"\\f1a3\";\n@fa-var-subscript: \"\\f12c\";\n@fa-var-subway: \"\\f239\";\n@fa-var-suitcase: \"\\f0f2\";\n@fa-var-sun-o: \"\\f185\";\n@fa-var-superpowers: \"\\f2dd\";\n@fa-var-superscript: \"\\f12b\";\n@fa-var-support: \"\\f1cd\";\n@fa-var-table: \"\\f0ce\";\n@fa-var-tablet: \"\\f10a\";\n@fa-var-tachometer: \"\\f0e4\";\n@fa-var-tag: \"\\f02b\";\n@fa-var-tags: \"\\f02c\";\n@fa-var-tasks: \"\\f0ae\";\n@fa-var-taxi: \"\\f1ba\";\n@fa-var-telegram: \"\\f2c6\";\n@fa-var-television: \"\\f26c\";\n@fa-var-tencent-weibo: \"\\f1d5\";\n@fa-var-terminal: \"\\f120\";\n@fa-var-text-height: \"\\f034\";\n@fa-var-text-width: \"\\f035\";\n@fa-var-th: \"\\f00a\";\n@fa-var-th-large: \"\\f009\";\n@fa-var-th-list: \"\\f00b\";\n@fa-var-themeisle: \"\\f2b2\";\n@fa-var-thermometer: \"\\f2c7\";\n@fa-var-thermometer-0: \"\\f2cb\";\n@fa-var-thermometer-1: \"\\f2ca\";\n@fa-var-thermometer-2: \"\\f2c9\";\n@fa-var-thermometer-3: \"\\f2c8\";\n@fa-var-thermometer-4: \"\\f2c7\";\n@fa-var-thermometer-empty: \"\\f2cb\";\n@fa-var-thermometer-full: \"\\f2c7\";\n@fa-var-thermometer-half: \"\\f2c9\";\n@fa-var-thermometer-quarter: \"\\f2ca\";\n@fa-var-thermometer-three-quarters: \"\\f2c8\";\n@fa-var-thumb-tack: \"\\f08d\";\n@fa-var-thumbs-down: \"\\f165\";\n@fa-var-thumbs-o-down: \"\\f088\";\n@fa-var-thumbs-o-up: \"\\f087\";\n@fa-var-thumbs-up: \"\\f164\";\n@fa-var-ticket: \"\\f145\";\n@fa-var-times: \"\\f00d\";\n@fa-var-times-circle: \"\\f057\";\n@fa-var-times-circle-o: \"\\f05c\";\n@fa-var-times-rectangle: \"\\f2d3\";\n@fa-var-times-rectangle-o: \"\\f2d4\";\n@fa-var-tint: \"\\f043\";\n@fa-var-toggle-down: \"\\f150\";\n@fa-var-toggle-left: \"\\f191\";\n@fa-var-toggle-off: \"\\f204\";\n@fa-var-toggle-on: \"\\f205\";\n@fa-var-toggle-right: \"\\f152\";\n@fa-var-toggle-up: \"\\f151\";\n@fa-var-trademark: \"\\f25c\";\n@fa-var-train: \"\\f238\";\n@fa-var-transgender: \"\\f224\";\n@fa-var-transgender-alt: \"\\f225\";\n@fa-var-trash: \"\\f1f8\";\n@fa-var-trash-o: \"\\f014\";\n@fa-var-tree: \"\\f1bb\";\n@fa-var-trello: \"\\f181\";\n@fa-var-tripadvisor: \"\\f262\";\n@fa-var-trophy: \"\\f091\";\n@fa-var-truck: \"\\f0d1\";\n@fa-var-try: \"\\f195\";\n@fa-var-tty: \"\\f1e4\";\n@fa-var-tumblr: \"\\f173\";\n@fa-var-tumblr-square: \"\\f174\";\n@fa-var-turkish-lira: \"\\f195\";\n@fa-var-tv: \"\\f26c\";\n@fa-var-twitch: \"\\f1e8\";\n@fa-var-twitter: \"\\f099\";\n@fa-var-twitter-square: \"\\f081\";\n@fa-var-umbrella: \"\\f0e9\";\n@fa-var-underline: \"\\f0cd\";\n@fa-var-undo: \"\\f0e2\";\n@fa-var-universal-access: \"\\f29a\";\n@fa-var-university: \"\\f19c\";\n@fa-var-unlink: \"\\f127\";\n@fa-var-unlock: \"\\f09c\";\n@fa-var-unlock-alt: \"\\f13e\";\n@fa-var-unsorted: \"\\f0dc\";\n@fa-var-upload: \"\\f093\";\n@fa-var-usb: \"\\f287\";\n@fa-var-usd: \"\\f155\";\n@fa-var-user: \"\\f007\";\n@fa-var-user-circle: \"\\f2bd\";\n@fa-var-user-circle-o: \"\\f2be\";\n@fa-var-user-md: \"\\f0f0\";\n@fa-var-user-o: \"\\f2c0\";\n@fa-var-user-plus: \"\\f234\";\n@fa-var-user-secret: \"\\f21b\";\n@fa-var-user-times: \"\\f235\";\n@fa-var-users: \"\\f0c0\";\n@fa-var-vcard: \"\\f2bb\";\n@fa-var-vcard-o: \"\\f2bc\";\n@fa-var-venus: \"\\f221\";\n@fa-var-venus-double: \"\\f226\";\n@fa-var-venus-mars: \"\\f228\";\n@fa-var-viacoin: \"\\f237\";\n@fa-var-viadeo: \"\\f2a9\";\n@fa-var-viadeo-square: \"\\f2aa\";\n@fa-var-video-camera: \"\\f03d\";\n@fa-var-vimeo: \"\\f27d\";\n@fa-var-vimeo-square: \"\\f194\";\n@fa-var-vine: \"\\f1ca\";\n@fa-var-vk: \"\\f189\";\n@fa-var-volume-control-phone: \"\\f2a0\";\n@fa-var-volume-down: \"\\f027\";\n@fa-var-volume-off: \"\\f026\";\n@fa-var-volume-up: \"\\f028\";\n@fa-var-warning: \"\\f071\";\n@fa-var-wechat: \"\\f1d7\";\n@fa-var-weibo: \"\\f18a\";\n@fa-var-weixin: \"\\f1d7\";\n@fa-var-whatsapp: \"\\f232\";\n@fa-var-wheelchair: \"\\f193\";\n@fa-var-wheelchair-alt: \"\\f29b\";\n@fa-var-wifi: \"\\f1eb\";\n@fa-var-wikipedia-w: \"\\f266\";\n@fa-var-window-close: \"\\f2d3\";\n@fa-var-window-close-o: \"\\f2d4\";\n@fa-var-window-maximize: \"\\f2d0\";\n@fa-var-window-minimize: \"\\f2d1\";\n@fa-var-window-restore: \"\\f2d2\";\n@fa-var-windows: \"\\f17a\";\n@fa-var-won: \"\\f159\";\n@fa-var-wordpress: \"\\f19a\";\n@fa-var-wpbeginner: \"\\f297\";\n@fa-var-wpexplorer: \"\\f2de\";\n@fa-var-wpforms: \"\\f298\";\n@fa-var-wrench: \"\\f0ad\";\n@fa-var-xing: \"\\f168\";\n@fa-var-xing-square: \"\\f169\";\n@fa-var-y-combinator: \"\\f23b\";\n@fa-var-y-combinator-square: \"\\f1d4\";\n@fa-var-yahoo: \"\\f19e\";\n@fa-var-yc: \"\\f23b\";\n@fa-var-yc-square: \"\\f1d4\";\n@fa-var-yelp: \"\\f1e9\";\n@fa-var-yen: \"\\f157\";\n@fa-var-yoast: \"\\f2b1\";\n@fa-var-youtube: \"\\f167\";\n@fa-var-youtube-play: \"\\f16a\";\n@fa-var-youtube-square: \"\\f166\";\n\n","// Screen Readers\n// -------------------------\n\n.sr-only { .sr-only(); }\n.sr-only-focusable { .sr-only-focusable(); }\n","//\n// Patternfly Mixins\n// --------------------------------------------------\n// PatternFly-specific mixins\n\n// Patternfly button variants.\n.button-variant(@color; @background; @background-image-start; @background-image-stop; @border) {\n  background-color: @background;\n  #gradient > .vertical(@background-image-start, @background-image-stop);\n  border-color: @border;\n  color: @color;\n\n  &:hover,\n  &:focus,\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-color: @background;\n    background-image: none;\n    border-color: @border;\n    color: @color;\n  }\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-image: none;\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: darken(@background, 5%);\n          border-color: darken(@border, 7%);\n    }\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &,\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      background-color: @background;\n      border-color: @border;\n    }\n  }\n}\n\n// SASS CONVERSION FIX.\n// Allows inclusion of sr-only rules in nested media queries where @extends .sr-only\n// will not work.\n.sr-only-pf() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n\n.tab-indicator(@background: @gray-light-pf, @left: 15px, @right: 15px) {\n  &:before {\n    background: @background;\n    bottom: -1px;\n    content: \"\";\n    display: block;\n    height: 2px;\n    left: @left;\n    position: absolute;\n    right: @right;\n  }\n}\n\n// Ellipse overflow text\n.text-overflow-pf {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  word-wrap: normal;\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n.alert {\n  border-width: 1px;\n  padding-left: 47px;\n  padding-right: (@alert-padding + 3);\n  position: relative;\n  word-wrap: break-word;\n  .alert-link {\n    color: @link-color;\n    &:hover {\n      color: @link-hover-color;\n    }\n  }\n  > .btn.pull-right {\n    margin-top: -3px;\n  }\n  > .pficon {\n    font-size: 22px;\n    position: absolute;\n    left: 13px;\n    top: 10px;\n  }\n  .close {\n    .opacity(.85);\n    &:hover,\n    &:focus {\n      .opacity(1);\n    }\n  }\n  .pficon-info {\n    color: @color-pf-black-700;\n  }\n}\n\n.alert-dismissable {\n  padding-right: (@alert-padding + 17);\n  .close {\n    right: -13px;\n    top: 1px;\n  }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n.badge {\n  margin-left: 6px;\n}\n\n.nav-pills > li > a > .badge {\n  margin-left: 6px;\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n.breadcrumb {\n  padding-left: 0;\n  > .active strong {\n    font-weight: 600;\n  }\n  > li {\n      display: inline; /* IE8 */\n      + li:before {\n      color: @gray-light;\n      content: @fa-var-angle-double-right;\n      font-family: @icon-font-name-fa;\n      font-size: (@font-size-base - 1);\n      padding: 0 9px 0 7px;\n    }\n  }\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n.btn {\n  .box-shadow(0 2px 3px fade(@color-pf-black, 10%));\n  &:active {\n    .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    background-color: @color-pf-black-100 !important;\n    background-image: none !important;\n    border-color: @color-pf-black-300 !important;\n    color: @color-pf-black-500 !important;\n    opacity: 1;\n    &:active {\n      .box-shadow(none);\n    }\n    &.btn-link {\n      background-color: transparent !important;\n      border: 0;\n    }\n  }\n}\n\n.btn-danger {\n  .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-bg-img-start; @btn-danger-bg-img-stop; @btn-danger-border);\n}\n\n.btn-default {\n  .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n}\n\n.btn-link {\n  &,\n  &:active {\n    .box-shadow(none);\n  }\n}\n\n.btn-primary {\n  .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-bg-img-start; @btn-primary-bg-img-stop; @btn-primary-border);\n}\n\n.btn-xs,\n.btn-group-xs .btn {\n  font-weight: @btn-xs-font-weight;\n}\n","//\n// Dropdowns\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n// Modified to use Font Awesome's angle-down icon\n.caret {\n  font-family: @icon-font-name-fa;\n  font-weight: normal;\n  height: (@font-size-base - 3);\n  position: relative;\n  vertical-align: baseline;\n  width: @font-size-base;\n  &:before {\n    bottom: 0;\n    content: @fa-var-angle-down;\n    left: 0;\n    line-height: @font-size-base;\n    position: absolute;\n    text-align: center;\n    top: -1px;\n    right: 0;\n  }\n  .dropup & {\n    &:before {\n      content: @fa-var-angle-up;\n    }\n  }\n}\n\n// Bootstrap removes the focus ring on dropdowns; this replaces it for better accessibility\n.dropdown-toggle:focus {\n  .tab-focus();\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n  // Dividers (basically an hr) within the dropdown\n  .divider {\n    .nav-divider(@dropdown-divider-bg, @dropdown-divider-margin);\n  }\n  // Links within the dropdown menu\n  > li > a {\n    border-color: transparent;\n    border-style: solid;\n    border-width: 1px 0;\n    padding: 1px 10px;\n  }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n  &:hover,\n  &:focus {\n    border-color: @dropdown-link-hover-border-color;\n    .reset-filter();\n  }\n  &:active {\n    background-color: @dropdown-link-focus-bg;\n    border-color: @dropdown-link-active-border-color;\n    color: @dropdown-link-focus-color !important;\n    .reset-filter();\n  }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n  &,\n  &:hover,\n  &:focus {\n    background-color: @dropdown-link-active-bg !important;\n    border-color: @dropdown-link-active-border-color !important;\n    .reset-filter();\n  }\n}\n\n// Disabled state\n.dropdown-menu > .disabled > a {\n  &,\n  &:hover,\n  &:focus {\n    border-color: transparent;\n  }\n}\n\n// Selected state\n.dropdown-menu > .selected > a {\n  background-color: @dropdown-link-active-bg;\n  border-color: @dropdown-link-active-border-color;\n  color: @color-pf-white;\n  small {\n    color: fade(@color-pf-white, 50%);\n  }\n}\n\n// Nuke hover/focus effects\n.dropdown-menu > .disabled > a {\n  &:hover,\n  &:focus {\n    border-color: transparent;\n  }\n}\n\n// Dropdown section headers\n.dropdown-header {\n  padding-left: 10px;\n  padding-right: 10px;\n  text-transform: uppercase;\n}\n\n// Position Menu closer to button\n.btn-group,\n.dropdown,\n.input-group-btn {\n  > .dropdown-menu {\n    margin-top: -1px;\n  }\n}\n\n// Position Menu closer to button (dropup-menu)\n.dropup .dropdown-menu {\n  margin-bottom: -1px;\n}\n\n// Add back styles for dropdown-submenu\n.dropdown-submenu {\n  position:relative;\n  &:hover {\n    > a {\n      background-color: @dropdown-link-hover-bg;\n      border-color: @dropdown-link-hover-border-color;\n    }\n    > .dropdown-menu {\n      display: block;\n    }\n  }\n  &.pull-left {\n    float: none !important;\n    > .dropdown-menu {\n      left: auto;\n      margin-left: 10px;\n      right: 100%;\n    }\n  }\n  > a {\n    padding-right: 20px !important;\n    &:after {\n      content: @fa-var-angle-right;\n      font-family: @icon-font-name-fa;\n      display: block;\n      position: absolute;\n      right: 10px;\n      top: 2px;\n    }\n  }\n  > .dropdown-menu {\n    left: 100%;\n    margin-top: 0;\n    top: -6px;\n  }\n  .dropup & > .dropdown-menu {\n    bottom: -5px;\n    top: auto;\n  }\n  .open &.active > .dropdown-menu {\n    display: block;\n  }\n}\n\n// Kebab dropmenu\n.dropdown-kebab-pf {\n  &.btn-group > .btn:first-child,\n  .btn-link {\n    color: @gray-darker;\n    font-size: (@font-size-base + 4);\n    line-height: 1;\n    padding: 4px (@grid-gutter-width/4);\n    margin-left: (@grid-gutter-width/(-4));\n    margin-right: (@grid-gutter-width/(-4));\n    &:active,\n    &:focus,\n    &:hover {\n      color: @link-color;\n    }\n  }\n  &.btn-group { margin-left: (@grid-gutter-width/4); }\n  .dropdown-menu {\n    left: -15px;\n    margin-top: 11px;\n    &.dropdown-menu-right {\n      left: auto;\n      right: -15px;\n      &:after,\n      &:before {\n        left: auto;\n        right: 6px;\n      }\n    }\n    &:after,\n    &:before {\n      border-bottom-color: @dropdown-border;\n      border-bottom-style: solid;\n      border-bottom-width: 10px;\n      border-left: 10px solid transparent;\n      border-right: 10px solid transparent;\n      content: \"\";\n      display: inline-block;\n      left: 6px;\n      position: absolute;\n      top: -11px;\n    }\n    &:after {\n      border-bottom-color: @dropdown-bg;\n      top: -10px;\n    }\n  }\n  &.dropup .dropdown-menu {\n    margin-bottom: 11px;\n    margin-top: 0;\n    &:after,\n    &:before {\n      border-bottom: none;\n      border-top-color: @dropdown-border;\n      border-top-style: solid;\n      border-top-width: 10px;\n      bottom: -11px;\n      top: auto;\n    }\n    &:after {\n      border-top-color: @dropdown-bg;\n      bottom: -10px;\n    }\n  }\n}\n","//\n// Forms\n// --------------------------------------------------\n.chars-remaining-pf span {\n  font-weight: 600;\n  padding-right: 5px;\n}\n\n.chars-warn-remaining-pf {\n  color: @brand-danger;\n}\n\n.fields-status-pf {\n  color: @color-pf-black-500;\n  margin-bottom: 15px;\n}\n\n.form-control {\n  &[disabled],\n  &[readonly],\n  fieldset[disabled] & {\n    .box-shadow(none);\n    color: @color-pf-black-500;\n    &:hover {\n      border-color: @input-border;\n    }\n  }\n  &:hover {\n    border-color: @input-border-hover;\n    .has-error & {\n      border-color: darken(@state-danger-text, 10%);\n    }\n    .has-success & {\n      border-color: darken(@state-success-text, 10%);\n    }\n    .has-warning & {\n      border-color: darken(@state-warning-text, 10%);\n    }\n  }\n}\n\n.has-error, .has-success, .has-warning {\n  .checkbox,\n  .checkbox-inline,\n  .control-label,\n  .radio,\n  .radio-inline,\n  &.checkbox label,\n  &.checkbox-inline label,\n  &.radio label,\n  &.radio-inline label {\n    color: @text-color;\n  }\n}\n\n.help-block {\n  margin-bottom: 0px;\n}\n\n.input-group .input-group-btn .btn {\n  .box-shadow(none);\n}\n\nlabel {\n  font-weight: 600;\n  &.required-pf:after {\n    color: @brand-danger;\n    content: \"*\";\n    margin-left: 3px;\n  }\n}\n\nspan.required-pf {\n  color: @brand-danger;\n}\n\n.fields-section-pf {\n  border-color: @color-pf-black-200;\n  border-style: solid;\n  border-width: 1px 0 0;\n  margin-top: 25px;\n  padding: 15px 0 0;\n}\n.fields-section-header-pf {\n  border: none;\n  font-size: @font-size-base;\n  margin: 0;\n  padding-right: @padding-large-horizontal;\n  width: auto;\n  .fa-angle-right {\n    cursor: pointer;\n    font-size: @font-size-large;\n    width: @font-size-large;\n  }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n  border-radius: 0;\n  font-size: 100%;\n  font-weight: 600;\n  h1 &,\n  h2 &,\n  h3 &,\n  h4 &,\n  h5 &,\n  h6 & {\n    font-size: 75%;\n  }\n}\n","//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n  border-top: 1px solid @list-group-top-border;\n  .list-group-item:first-child {\n    border-top: 0;\n  }\n}\n.list-group-item {\n  border-left: 0;\n  border-right: 0;\n}\n\n.list-group-item-heading {\n  font-weight: 600;\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n  background-color: @color-pf-black-150;\n  border-bottom: none;\n  padding: @modal-title-padding-vertical @modal-title-padding-horizontal;\n}\n// Close icon\n.modal-header .close {\n  margin-top: 2px;\n}\n\n// Title text within header\n.modal-title {\n  font-size: 13px;\n  font-weight: 700;\n}\n\n// Footer (for actions)\n.modal-footer {\n  border-top: none;\n  margin-top: 15px;\n  padding: (@modal-inner-padding - 1) @modal-inner-padding @modal-inner-padding;\n  > .btn {\n    padding-left: 10px;\n    padding-right: 10px;\n    > .fa-angle-left {\n      margin-right: 5px;\n    }\n    > .fa-angle-right {\n      margin-left: 5px;\n    }\n  }\n}\n","//\n// Pager\n// --------------------------------------------------\n\n.pager {\n  li {\n    > a,\n    > span {\n      .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n      color: @gray-pf;\n      font-weight: 600;\n      line-height: 22px;\n      padding: 2px 14px;\n      > .i {\n        font-size: 18px;\n        vertical-align: top;\n        margin: 2px 0;\n      }\n    }\n    a:active {\n      background-image: none;\n      .box-shadow(inset 0 3px 5px fade(@color-pf-black, 12.5%));\n      outline: 0;\n    }\n  }\n  .disabled {\n    > a,\n    > a:hover,\n    > a:focus,\n    > a:active,\n    > span {\n      background: @pagination-bg;\n      .box-shadow(none);\n      color: @pager-disabled-color;\n      cursor: default;\n    }\n  }\n  .next {\n     > a,\n     > span {\n       > .i {\n          margin-left: 5px;\n       }\n     }\n  }\n  .previous {\n     > a,\n     > span {\n       > .i {\n          margin-right: 5px;\n       }\n     }\n  }\n}\n\n.pager-sm {\n  li {\n    > a,\n    > span {\n      font-weight: 400;\n      line-height: 16px;\n      padding: 1px 10px;\n      > .i {\n        font-size: 12px;\n      }\n    }\n  }\n}\n","//\n// Pagination\n// --------------------------------------------------\n\n.pagination {\n  > li {\n    > a,\n    > span {\n      .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n      cursor: default;\n      font-weight: 600;\n      padding: @padding-base-vertical @padding-large-horizontal;\n      > .i {\n        font-size: 15px;\n        vertical-align: top;\n        margin: 2px 0;\n      }\n    }\n  }\n  > li > a,\n  > li > span {\n    &:active {\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n    }\n  }\n  > .active > a,\n  > .active > span {\n    &,\n    &:hover,\n    &:focus {\n      background-color: @btn-default-bg;\n      border-color: @pagination-border;\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n      color: @btn-default-color;\n      #gradient > .vertical(@btn-default-bg-img-start; @btn-default-bg-img-stop);\n    }\n  }\n  > .disabled {\n    > span,\n    > span:hover,\n    > span:focus,\n    > a,\n    > a:hover,\n    > a:focus {\n      .box-shadow(none);\n      cursor: default;\n      #gradient > .vertical(@btn-default-bg-img-start; @btn-default-bg-img-stop);\n    }\n  }\n}\n\n.pagination-sm {\n  .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n  > li {\n    > a,\n    > span {\n      font-weight: 400;\n      > .i {\n        font-size: 12px;\n        margin-top: 2px;\n      }\n    }\n  }\n}\n\n.content-view-pf-pagination {\n  background-color: @table-bg-accent;\n  border: 1px solid @table-border-color;\n  display: flex;\n  flex-wrap: wrap;\n  justify-content: space-between;\n  &.table-view-pf-pagination {\n    border-top: none;\n  }\n  .form-group {\n    align-items: baseline;\n    display: flex;\n    flex-grow: 1;\n    float: left; //IE9 fallback\n    @supports (display: flex) {\n      float: none;\n    }\n    margin: 5px;\n    &:last-child {\n      justify-content: flex-end; // if pagination controls wrap, pagination buttons stay on the right\n      float: right; //IE9 fallback\n      @supports (display: flex) {\n        float: none;\n      }\n    }\n    .pagination-pf-pagesize.bootstrap-select.btn-group, \n    .pagination-pf-pagesize.btn-group {\n      display: flex;\n      float: none;\n      margin-bottom: 0;\n      margin-left: 0;\n      margin-right: 5px;\n      width: auto;\n    }\n    .dropdown-menu {\n      min-width: auto;\n    }\n  }\n  .pagination-pf-page {\n    margin-left: 10px;\n    margin-right: 5px;\n    padding: 0 2px 2px;\n    text-align: right;\n    width: 2.5em;\n  }\n  .pagination {\n    display: flex;\n    margin: 0 0 0 10px;\n    a {\n      float: none;\n      @supports (display: flex) {\n        display: block;\n      }\n    }\n  }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n.panel-title {\n  font-weight: 700;\n}\n\n//\n// Collapsable panels (aka, accordion)\n// --------------------------------------------------\n\n.panel-group {\n  .panel {\n    color: @gray-pf;\n    + .panel {\n      margin-top: -1px;\n    }\n  }\n  .panel-default {\n    border-color: @panel-default-border-color;\n    border-top-color: @panel-default-border-color;\n    .panel-heading {\n      #gradient > .vertical(@btn-default-bg-img-start, @btn-default-bg-img-stop);\n      + .panel-collapse .panel-body {\n        border-top: 1px solid @panel-inner-border;\n      }\n    }\n  }\n\n  .panel-info {\n    border-color: @panel-info-border;\n    .panel-heading {\n      background-color: @panel-group-pf-info-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-info-border;\n    }\n  }\n  .panel-primary {\n    border-color: @panel-primary-border;\n    .panel-heading {\n      background-color: @panel-group-pf-primary-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-primary-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-primary-border;\n    }\n  }\n  .panel-success {\n    border-color: @panel-success-border;\n    .panel-heading {\n      background-color: @panel-group-pf-success-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-success-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-success-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-success-border;\n    }\n  }\n  .panel-warning {\n    border-color: @panel-warning-border;\n    .panel-heading {\n      background-color: @panel-group-pf-warning-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-success {\n      border-top-color: @panel-warning-border;\n    }\n  }\n  .panel-danger {\n    border-color: @panel-danger-border;\n    .panel-heading {\n      background-color: @panel-group-pf-danger-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-success {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-warning {\n      border-top-color: @panel-danger-border;\n    }\n  }\n  .panel-title {\n    font-weight: 500;\n    line-height: 1;\n    > a {\n      color: @gray-pf;\n      font-weight: @btn-font-weight;\n      &:before {\n        content: \"\\f107\";\n        display: inline-block;\n        font-family: @icon-font-name-fa;\n        font-size: 13px;\n        margin-right: 5px;\n        text-align: center;\n        vertical-align: 0;\n        width: 8px;\n      }\n      &:focus {\n        outline: none;\n        text-decoration: none;\n      }\n      &:hover {\n        text-decoration: none;\n      }\n      &.collapsed:before {\n        content: \"\\f105\";\n      }\n    }\n  }\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n.popover {\n  .box-shadow(0 2px 2px fade(@color-pf-black, 8%));\n  padding: 0;\n}\n\n.popover-content {\n  color: @gray-pf;\n  line-height: 18px;\n  padding: 10px 14px;\n}\n\n.popover-title {\n  border-bottom: none;\n  border-radius: 0;\n  color: @gray-pf;\n  font-size: (@font-size-base + 1);\n  font-weight: 700;\n  min-height: 34px;\n  .close {\n    height: 22px;\n    position: absolute;\n    right: 8px;\n    top: 6px;\n  }\n  &.closable {\n    padding-right: 30px;\n  }\n}\n","//\n// Progress Bar\n// --------------------------------------------------\n\n@keyframes progress-bar-stripes {\n  from  { background-position: 0 0; }\n  to    { background-position: 40px 0; }\n}\n\n.progress {\n  .box-shadow(inset 0 0 1px fade(@color-pf-black, 25%));\n  &.progress-label-left,\n  &.progress-label-top-right {\n    overflow: visible;\n    position: relative;\n  }\n  &.progress-label-left {\n    margin-left: 40px;\n  }\n  &.progress-sm {\n    height: @progress-sm;\n    margin-bottom: @progress-sm;\n  }\n  &.progress-xs {\n    height: @progress-xs;\n    margin-bottom: @progress-xs;\n  }\n  td > &:first-child:last-child {\n    margin-bottom: 0;\n    margin-top: 3px;\n  }\n}\n\n.progress-bar {\n  box-shadow: none;\n  .progress-label-left & span,\n  .progress-label-right & span,\n  .progress-label-top-right & span {\n    color: @text-color;\n    position: absolute;\n    text-align: right;\n  }\n  .progress-label-left & span {\n    font-size: @font-size-large;\n    left: -40px;\n    top: 0;\n    width: 35px;\n  }\n  .progress-label-right & span,\n  .progress-label-top-right & span {\n    font-size: @font-size-small;\n    overflow: hidden;\n    right: 0;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    strong {\n      font-weight: 600;\n    }\n  }\n  .progress-label-right & span {\n    max-width: @progress-description-label-width;\n    top: 0;\n  }\n  .progress-label-top-right & span {\n    max-width: 47%;\n    top: (-(@line-height-computed * 1.5)); // -30px\n  }\n  .progress-label-left.progress-sm & span,\n  .progress-label-top-right.progress-sm & span {\n    font-size: @font-size-base;\n  }\n  .progress-sm & {\n    line-height: @progress-sm;\n  }\n  .progress-xs & {\n    line-height: @progress-xs;\n  }\n}\n\n.progress-bar-remaining {\n  background: transparent;\n}\n\n.progress-container {\n  position: relative;\n  &.progress-description-left {\n    padding-left :(@progress-description-label-width + 5);\n  }\n  &.progress-label-right {\n    padding-right :(@progress-description-label-width + 5);\n  }\n}\n\n.progress-description {\n  margin-bottom: (@line-height-computed / 2); // 10px\n  max-width: 52%;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  .count {\n    font-size: (@font-size-base * 1.667); // 20px\n    font-weight: 300;\n    line-height: 1;\n    margin-right: 5px;\n  }\n  .fa,\n  .pficon {\n    font-size: 14px;\n    margin-right: 3px;\n  }\n  .progress-description-left & {\n    left: 0;\n    margin-bottom: 0;\n    max-width: @progress-description-label-width;\n    position: absolute;\n    top: 0;\n  }\n  .tooltip {\n    white-space: normal;\n  }\n}\n","//\n// Tables\n// --------------------------------------------------\n\n.table {\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-cell-padding-top @table-cell-padding @table-cell-padding-bottom;\n        > a:hover {\n          text-decoration: none;\n        }\n      }\n      > th {\n        font-family: \"Open Sans\";\n        font-style: normal;\n        font-weight: 600;\n      }\n    }\n  }\n  > thead {\n    background-clip: padding-box;\n    background-color: @color-pf-black-150;\n    #gradient > .vertical(@start-color: @color-pf-black-100; @end-color: @color-pf-black-200; @start-percent: 0%; @end-percent: 100%);\n  }\n}\n\n.table-bordered {\n  border: 1px solid @table-border-color;\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        border: 1px solid @table-border-color;\n      }\n    }\n  }\n  > thead > tr {\n    > th,\n    > td {\n      border-bottom-width: 1px;\n    }\n  }\n}\n\n.table-striped {\n  > tbody > tr {\n    &:nth-of-type(even) {\n      background-color: @table-bg-accent;\n    }\n    &:nth-of-type(odd) {\n      background-color: transparent;\n    }\n  }\n}\n\n.table-hover {\n  > tbody > tr:hover {\n    > td,\n    > th {\n      background-color: @table-bg-hover;\n      border-bottom-color: @table-border-hover;\n    }\n  }\n}\n\n.table-treegrid {\n  span.indent {\n    margin-left: 10px;\n    margin-right: 10px;\n  }\n  span.icon {\n    display: inline-block;\n    font-size: 13px;\n    margin-right: 5px;\n    min-width: 10px;\n    text-align: center;\n  }\n  span.expand-icon, span.collapse-icon {\n    cursor: pointer;\n  }\n  > tbody > tr.odd {\n    background-color: @table-bg-accent;\n  }\n}\n","//\n// Tabs\n// --------------------------------------------------\n\n.nav-tabs {\n  font-size: @font-size-large;\n  > li {\n    > a {\n      color: @nav-tabs-color;\n      margin-right: -1px;\n      padding-bottom: 5px;\n      padding-top: 5px;\n      &:active,\n      &:focus,\n      &:hover {\n        background: transparent;\n        border-color: @nav-tabs-border-color;\n        color: @gray-darker;\n      }\n    }\n    > .dropdown-menu {\n      border-top: 0;\n      border-color: @nav-tabs-border-color;\n      &.pull-right {\n        right: -1px;\n      }\n    }\n  }\n  + .nav-tabs-pf, &.nav-tabs-pf-secondary {\n    font-size: @font-size-base;\n    > li:first-child > a {\n      padding-left: 15px;\n      &:before {\n        left: 15px !important;\n      }\n    }\n  }\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: transparent;\n      border-color: @nav-tabs-border-color;\n    }\n  }\n}\n\n.nav-tabs-pf {\n  &.nav-justified {\n    @media (min-width: @grid-float-breakpoint) {\n      border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n    }\n    > li {\n      &:first-child > a {\n        padding-left: 15px;\n      }\n      > a {\n        border-bottom: 0;\n        &:before {\n          left: 0 !important;\n          right: 0 !important;\n        }\n      }\n    }\n  }\n  > li {\n    margin-bottom: 0;\n    &.active > a {\n      .tab-indicator(@background: @nav-tabs-active-link-hover-color);\n      &,\n      &:active,\n      &:focus,\n      &:hover {\n        background-color: transparent;\n        border: 0 !important;\n        color: @link-color;\n        &:before {\n          background: @nav-tabs-active-link-hover-color;\n        }\n      }\n    }\n    &:first-child {\n      > a {\n        padding-left: 0;\n        &:before {\n          left: 0 !important;\n        }\n      }\n    }\n    > a {\n      border: 0;\n      line-height: 1;\n      margin-right: 0;\n      padding-bottom: 10px;\n      padding-top: 10px;\n      &:active,\n      &:focus,\n      &:hover {\n        .tab-indicator()\n      }\n    }\n    > .dropdown-menu {\n      left: 15px;\n      margin-top: 1px;\n      &.pull-right {\n        left: auto;\n        right: 15px;\n      }\n    }\n  }\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: transparent;\n    }\n  }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n// Base class\n.tooltip {\n  font-size: @tooltip-font-size;\n  line-height: 1.4;\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n  padding: 7px 12px;\n  text-align: left;\n}\n","//\n// Typography\n// --------------------------------------------------\n\nh1,\n.h1,\nh2,\n.h2 {\n  font-weight: 300;\n}\n\n.page-header .actions {\n  margin-top: 8px;\n  a > .pficon {\n    margin-right: 4px;\n  }\n}\n\n@media (min-width: @grid-float-breakpoint-max) {\n  .page-header-bleed-left {\n    margin-left: (-(@grid-gutter-width / 2));\n  }\n  .page-header-bleed-right {\n    margin-right: ((-@grid-gutter-width / 2));\n    .actions {\n      margin-right: (@grid-gutter-width / 2);\n    }\n  }\n}\n"]}
\ No newline at end of file
+{"version":3,"sources":["src/less/fonts.less","node_modules/bootstrap/less/normalize.less","node_modules/bootstrap/less/print.less","node_modules/bootstrap/less/glyphicons.less","node_modules/bootstrap/less/scaffolding.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","src/less/variables.less","node_modules/bootstrap/less/mixins/tab-focus.less","node_modules/bootstrap/less/thumbnails.less","node_modules/bootstrap/less/carousel.less","node_modules/bootstrap/less/mixins/image.less","node_modules/bootstrap/less/type.less","node_modules/bootstrap/less/mixins/text-emphasis.less","node_modules/bootstrap/less/mixins/background-variant.less","node_modules/bootstrap/less/mixins/text-overflow.less","node_modules/bootstrap/less/code.less","node_modules/bootstrap/less/grid.less","node_modules/bootstrap/less/mixins/grid.less","node_modules/bootstrap/less/mixins/grid-framework.less","node_modules/bootstrap/less/tables.less","node_modules/bootstrap/less/mixins/table-row.less","node_modules/bootstrap/less/forms.less","node_modules/bootstrap/less/mixins/forms.less","src/less/bootstrap-mixin-overrides.less","node_modules/bootstrap/less/buttons.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap/less/button-groups.less","node_modules/bootstrap/less/component-animations.less","node_modules/bootstrap/less/dropdowns.less","node_modules/bootstrap/less/mixins/nav-divider.less","node_modules/bootstrap/less/mixins/reset-filter.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/input-groups.less","node_modules/bootstrap/less/navs.less","node_modules/bootstrap/less/navbar.less","node_modules/bootstrap/less/mixins/nav-vertical-align.less","node_modules/bootstrap/less/utilities.less","node_modules/font-awesome/less/bordered-pulled.less","node_modules/bootstrap/less/breadcrumbs.less","node_modules/bootstrap/less/pagination.less","node_modules/bootstrap/less/mixins/pagination.less","node_modules/bootstrap/less/pager.less","node_modules/bootstrap/less/labels.less","node_modules/bootstrap/less/mixins/labels.less","node_modules/bootstrap/less/badges.less","node_modules/bootstrap/less/jumbotron.less","node_modules/bootstrap/less/alerts.less","node_modules/bootstrap/less/mixins/alerts.less","node_modules/bootstrap/less/progress-bars.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/progress-bar.less","node_modules/bootstrap/less/media.less","node_modules/bootstrap/less/list-group.less","node_modules/bootstrap/less/mixins/list-group.less","node_modules/bootstrap/less/panels.less","node_modules/bootstrap/less/mixins/panels.less","node_modules/bootstrap/less/responsive-embed.less","node_modules/bootstrap/less/wells.less","node_modules/bootstrap/less/close.less","node_modules/bootstrap/less/modals.less","node_modules/bootstrap/less/tooltip.less","node_modules/bootstrap/less/mixins/reset-text.less","node_modules/bootstrap/less/popovers.less","node_modules/bootstrap/less/mixins/clearfix.less","node_modules/bootstrap/less/mixins/center-block.less","node_modules/bootstrap/less/mixins/hide-text.less","node_modules/bootstrap/less/responsive-utilities.less","node_modules/bootstrap/less/mixins/responsive-visibility.less","node_modules/font-awesome/less/path.less","node_modules/font-awesome/less/core.less","node_modules/font-awesome/less/larger.less","node_modules/font-awesome/less/fixed-width.less","node_modules/font-awesome/less/list.less","node_modules/font-awesome/less/animated.less","node_modules/font-awesome/less/rotated-flipped.less","node_modules/font-awesome/less/mixins.less","node_modules/font-awesome/less/stacked.less","node_modules/font-awesome/less/icons.less","node_modules/font-awesome/less/variables.less","node_modules/font-awesome/less/screen-reader.less","src/less/mixins.less","src/less/alerts.less","src/less/badges.less","src/less/breadcrumbs.less","src/less/buttons.less","src/less/dropdowns.less","src/less/forms.less","src/less/labels.less","src/less/list-group.less","src/less/modals.less","src/less/pager.less","src/less/pagination.less","src/less/panels.less","src/less/popovers.less","src/less/progress-bars.less","src/less/tables.less","src/less/tabs.less","src/less/tooltip.less","src/less/type.less"],"names":[],"mappings":";AAIA;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,sCAAT;;EACA,KAAK,MAAM,oBAAoB,MAAM,uBAC5B,8CAAkD,OAAO,wCACzD,yCAA6C,OAAO,0CACpD,wCAA4C,OAAO,mCACnD,uCAA2C,OAAO,4CAClD,gDAAoD,OAAO,MALpE;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,wCAAT;;EACA,KAAK,MAAM,cAAc,MAAM,iBACtB,gDAAoD,OAAO,wCAC3D,2CAA+C,OAAO,0CACtD,0CAA8C,OAAO,mCACrD,yCAA6C,OAAO,4CACpD,kDAAsD,OAAO,MALtE;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,4CAAT;;EACA,KAAK,MAAM,2BAA2B,MAAM,6BACnC,oDAAwD,OAAO,wCAC/D,+CAAmD,OAAO,0CAC1D,8CAAkD,OAAO,mCACzD,6CAAiD,OAAO,4CACxD,sDAA0D,OAAO,MAL1E;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,uCAAT;;EACA,KAAK,MAAM,qBAAqB,MAAM,wBAC7B,+CAAmD,OAAO,wCAC1D,0CAA8C,OAAO,0CACrD,yCAA6C,OAAO,mCACpD,wCAA4C,OAAO,4CACnD,iDAAqD,OAAO,MALrE;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,yCAAT;;EACA,KAAK,MAAM,uBAAuB,MAAM,kCAC/B,iDAAqD,OAAO,wCAC5D,4CAAgD,OAAO,0CACvD,2CAA+C,OAAO,mCACtD,0CAA8C,OAAO,4CACrD,mDAAuD,OAAO,MALvE;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,+CAAT;;EACA,KAAK,MAAM,8BAA8B,MAAM,wCACtC,uDAA2D,OAAO,wCAClE,kDAAsD,OAAO,0CAC7D,iDAAqD,OAAO,mCAC5D,gDAAoD,OAAO,4CAC3D,yDAA6D,OAAO,MAL7E;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,qCAAT;;EACA,KAAK,MAAM,mBAAmB,MAAM,sBAC3B,6CAAiD,OAAO,wCACxD,wCAA4C,OAAO,0CACnD,uCAA2C,OAAO,mCAClD,sCAA0C,OAAO,4CACjD,+CAAmD,OAAO,MALnE;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,2CAAT;;EACA,KAAK,MAAM,0BAA0B,MAAM,4BAClC,mDAAuD,OAAO,wCAC9D,8CAAkD,OAAO,0CACzD,6CAAiD,OAAO,mCACxD,4CAAgD,OAAO,4CACvD,qDAAyD,OAAO,MALzE;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,gDAAT;;EACA,KAAK,MAAM,+BAA+B,MAAM,iCACvC,wDAA4D,OAAO,wCACnE,mDAAuD,OAAO,0CAC9D,kDAAsD,OAAO,mCAC7D,iDAAqD,OAAO,4CAC5D,0DAA8D,OAAO,MAL9E;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,0CAAT;;EACA,KAAK,MAAM,wBAAwB,MAAM,2BAChC,kDAAsD,OAAO,wCAC7D,6CAAiD,OAAO,0CACxD,4CAAgD,OAAO,mCACvD,2CAA+C,OAAO,4CACtD,oDAAwD,OAAO,MALxE;;;;;;;;;AC7GF;EACE,uBAAA;EACA,0BAAA;EACA,8BAAA;;AAOF;EACE,SAAA;;AAaF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,cAAA;;AAQF;AACA;AACA;AACA;EACE,qBAAA;EACA,wBAAA;;AAQF,KAAK,IAAI;EACP,aAAA;EACA,SAAA;;AAQF;AACA;EACE,aAAA;;AAUF;EACE,6BAAA;;AAQF,CAAC;AACD,CAAC;EACC,UAAA;;AAUF,IAAI;EACF,yBAAA;;AAOF;AACA;EACE,iBAAA;;AAOF;EACE,kBAAA;;AAQF;EACE,cAAA;EACA,gBAAA;;AAOF;EACE,gBAAA;EACA,WAAA;;AAOF;EACE,cAAA;;AAOF;AACA;EACE,cAAA;EACA,cAAA;EACA,kBAAA;EACA,wBAAA;;AAGF;EACE,WAAA;;AAGF;EACE,eAAA;;AAUF;EACE,SAAA;;AAOF,GAAG,IAAI;EACL,gBAAA;;AAUF;EACE,gBAAA;;AAOF;EACE,uBAAA;EACA,SAAA;;AAOF;EACE,cAAA;;AAOF;AACA;AACA;AACA;EACE,iCAAA;EACA,cAAA;;AAkBF;AACA;AACA;AACA;AACA;EACE,cAAA;EACA,aAAA;EACA,SAAA;;AAOF;EACE,iBAAA;;AAUF;AACA;EACE,oBAAA;;AAWF;AACA,IAAK,MAAK;AACV,KAAK;AACL,KAAK;EACH,0BAAA;EACA,eAAA;;AAOF,MAAM;AACN,IAAK,MAAK;EACR,eAAA;;AAOF,MAAM;AACN,KAAK;EACH,SAAA;EACA,UAAA;;AAQF;EACE,mBAAA;;AAWF,KAAK;AACL,KAAK;EACH,sBAAA;EACA,UAAA;;AASF,KAAK,eAAe;AACpB,KAAK,eAAe;EAClB,YAAA;;AAQF,KAAK;EACH,6BAAA;EACA,uBAAA;;AASF,KAAK,eAAe;AACpB,KAAK,eAAe;EAClB,wBAAA;;AAOF;EACE,yBAAA;EACA,aAAA;EACA,8BAAA;;AAQF;EACE,SAAA;EACA,UAAA;;AAOF;EACE,cAAA;;AAQF;EACE,iBAAA;;AAUF;EACE,yBAAA;EACA,iBAAA;;AAGF;AACA;EACE,UAAA;;;AC/ZF;EACI;EACA,CAAC;EACD,CAAC;IACG,kCAAA;IACA,sBAAA;IACA,2BAAA;IACA,4BAAA;;EAGJ;EACA,CAAC;IACG,0BAAA;;EAGJ,CAAC,MAAM;IACH,SAAS,KAAK,WAAW,GAAzB;;EAGJ,IAAI,OAAO;IACP,SAAS,KAAK,YAAY,GAA1B;;EAKJ,CAAC,WAAW;EACZ,CAAC,qBAAqB;IAClB,SAAS,EAAT;;EAGJ;EACA;IACI,sBAAA;IACA,wBAAA;;EAGJ;IACI,2BAAA;;EAGJ;EACA;IACI,wBAAA;;EAGJ;IACI,0BAAA;;EAGJ;EACA;EACA;IACI,UAAA;IACA,SAAA;;EAGJ;EACA;IACI,uBAAA;;EAMJ;IACI,aAAA;;EAEJ,IAEI;EADJ,OAAQ,OACJ;IACI,iCAAA;;EAGR;IACI,sBAAA;;EAGJ;IACI,oCAAA;;EADJ,MAGI;EAHJ,MAII;IACI,iCAAA;;EAGR,eACI;EADJ,eAEI;IACI,iCAAA;;;ACrFZ;EACE,aAAa,sBAAb;EACA,SAAS,4CAAT;EACA,SAAS,oDAAiD,OAAO,0BACxD,+CAA4C,OAAO,cACnD,8CAA2C,OAAO,aAClD,6CAA0C,OAAO,iBACjD,yEAA8D,OAAO,MAJ9E;;AAQF;EACE,kBAAA;EACA,QAAA;EACA,qBAAA;EACA,aAAa,sBAAb;EACA,kBAAA;EACA,mBAAA;EACA,cAAA;EACA,mCAAA;EACA,kCAAA;;AAIkC,mBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AAEX,eAAC;AAAD,cAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,aAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,aAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,yBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,2BAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,0BAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,6BAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,0BAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,2BAAC;EAAU,SAAS,OAAT;;AACX,+BAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,6BAAC;EAAU,SAAS,OAAT;;AACX,iCAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,yBAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,yBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,yBAAC;EAAU,SAAS,OAAT;;AACX,aAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AASX,gBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,2BAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,0BAAC;EAAU,SAAS,OAAT;;AACX,yBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,0BAAC;EAAU,SAAS,OAAT;;AACX,2BAAC;EAAU,SAAS,OAAT;;AACX,8BAAC;EAAU,SAAS,OAAT;;AACX,kCAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,gCAAC;EAAU,SAAS,OAAT;;AACX,6BAAC;EAAU,SAAS,OAAT;;AACX,yBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,0BAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;ACtS/C;ECgEE,8BAAA;EACG,2BAAA;EACK,sBAAA;;AD/DV,CAAC;AACD,CAAC;EC4DC,8BAAA;EACG,2BAAA;EACK,sBAAA;;ADvDV;EACE,eAAA;EACA,6CAAA;;AAGF;EACE,aEsakE,yCFtalE;EACA,eAAA;EACA,uBAAA;EACA,cAAA;EACA,sBAAA;;AAIF;AACA;AACA;AACA;EACE,oBAAA;EACA,kBAAA;EACA,oBAAA;;AAMF;EACE,cAAA;EACA,qBAAA;;AAEA,CAAC;AACD,CAAC;EACC,cAAA;EACA,0BAAA;;AAGF,CAAC;EGnDD,0CAAA;EACA,oBAAA;;AH6DF;EACE,SAAA;;AAMF;EACE,sBAAA;;AAIF;AI1EA,UAUE;AAVF,UAWE,EAAE;ACPJ,eAKE,QAME;AAXJ,eAKE,QAOE,IAAI;ECbN,cAAA;EACA,eAAA;EACA,YAAA;;AN0EF;EACE,kBAAA;;AAMF;EACE,YAAA;EACA,uBAAA;EACA,sBAAA;EACA,sBAAA;EACA,kBAAA;EC6FA,wCAAA;EACK,mCAAA;EACG,gCAAA;EKvLR,qBAAA;EACA,eAAA;EACA,YAAA;;AN8FF;EACE,kBAAA;;AAMF;EACE,gBAAA;EACA,mBAAA;EACA,SAAA;EACA,6BAAA;;AAQF;EACE,kBAAA;EACA,UAAA;EACA,WAAA;EACA,YAAA;EACA,UAAA;EACA,gBAAA;EACA,MAAM,gBAAN;EACA,SAAA;;AAQA,kBAAC;AACD,kBAAC;EACC,gBAAA;EACA,WAAA;EACA,YAAA;EACA,SAAA;EACA,iBAAA;EACA,UAAA;;AAWJ;EACE,eAAA;;AOvJF;AAAI;AAAI;AAAI;AAAI;AAAI;AACpB;AAAK;AAAK;AAAK;AAAK;AAAK;EACvB,oBAAA;EACA,gBAAA;EACA,gBAAA;EACA,cAAA;;AALF,EAOE;AAPE,EAOF;AAPM,EAON;AAPU,EAOV;AAPc,EAOd;AAPkB,EAOlB;AANF,GAME;AANG,GAMH;AANQ,GAMR;AANa,GAMb;AANkB,GAMlB;AANuB,GAMvB;AAPF,EAQE;AARE,EAQF;AARM,EAQN;AARU,EAQV;AARc,EAQd;AARkB,EAQlB;AAPF,GAOE;AAPG,GAOH;AAPQ,GAOR;AAPa,GAOb;AAPkB,GAOlB;AAPuB,GAOvB;EACE,mBAAA;EACA,cAAA;EACA,cAAA;;AAIJ;AAAI;AACJ;AAAI;AACJ;AAAI;EACF,gBAAA;EACA,mBAAA;;AAJF,EAME;AANE,GAMF;AALF,EAKE;AALE,GAKF;AAJF,EAIE;AAJE,GAIF;AANF,EAOE;AAPE,GAOF;AANF,EAME;AANE,GAMF;AALF,EAKE;AALE,GAKF;EACE,cAAA;;AAGJ;AAAI;AACJ;AAAI;AACJ;AAAI;EACF,gBAAA;EACA,mBAAA;;AAJF,EAME;AANE,GAMF;AALF,EAKE;AALE,GAKF;AAJF,EAIE;AAJE,GAIF;AANF,EAOE;AAPE,GAOF;AANF,EAME;AANE,GAMF;AALF,EAKE;AALE,GAKF;EACE,cAAA;;AAIJ;AAAI;EAAM,eAAA;;AACV;AAAI;EAAM,eAAA;;AACV;AAAI;EAAM,eAAA;;AACV;AAAI;EAAM,eAAA;;AACV;AAAI;EAAM,eAAA;;AACV;AAAI;EAAM,eAAA;;AAMV;EACE,gBAAA;;AAGF;EACE,mBAAA;EACA,eAAA;EACA,gBAAA;EACA,gBAAA;;AAEA,QAAmC;EA2OrC;IA1OI,eAAA;;;AASJ;AACA;EACE,cAAA;;AAGF;AACA;EACE,yBAAA;EACA,aAAA;;AAIF;EAAuB,gBAAA;;AACvB;EAAuB,iBAAA;;AACvB;EAAuB,kBAAA;;AACvB;EAAuB,mBAAA;;AACvB;EAAuB,mBAAA;;AAGvB;EAAuB,yBAAA;;AACvB;EAAuB,yBAAA;;AACvB;EAAuB,0BAAA;;AAGvB;EACE,cAAA;;AAEF;ECrGE,cAAA;;AACA,CAAC,aAAC;AACF,CAAC,aAAC;EACA,cAAA;;ADqGJ;ECxGE,cAAA;;AACA,CAAC,aAAC;AACF,CAAC,aAAC;EACA,cAAA;;ADwGJ;EC3GE,cAAA;;AACA,CAAC,UAAC;AACF,CAAC,UAAC;EACA,cAAA;;AD2GJ;EC9GE,cAAA;;AACA,CAAC,aAAC;AACF,CAAC,aAAC;EACA,cAAA;;AD8GJ;ECjHE,cAAA;;AACA,CAAC,YAAC;AACF,CAAC,YAAC;EACA,cAAA;;ADqHJ;EAGE,WAAA;EE3HA,yBAAA;;AACA,CAAC,WAAC;AACF,CAAC,WAAC;EACA,yBAAA;;AF2HJ;EE9HE,yBAAA;;AACA,CAAC,WAAC;AACF,CAAC,WAAC;EACA,yBAAA;;AF8HJ;EEjIE,yBAAA;;AACA,CAAC,QAAC;AACF,CAAC,QAAC;EACA,yBAAA;;AFiIJ;EEpIE,yBAAA;;AACA,CAAC,WAAC;AACF,CAAC,WAAC;EACA,yBAAA;;AFoIJ;EEvIE,yBAAA;;AACA,CAAC,UAAC;AACF,CAAC,UAAC;EACA,yBAAA;;AF4IJ;EACE,mBAAA;EACA,mBAAA;EACA,gCAAA;;AAQF;AACA;EACE,aAAA;EACA,mBAAA;;AAHF,EAIE;AAHF,EAGE;AAJF,EAKE;AAJF,EAIE;EACE,gBAAA;;AAOJ;EACE,eAAA;EACA,gBAAA;;AAIF;EALE,eAAA;EACA,gBAAA;EAMA,iBAAA;;AAFF,YAIE;EACE,qBAAA;EACA,iBAAA;EACA,kBAAA;;AAKJ;EACE,aAAA;EACA,mBAAA;;AAEF;AACA;EACE,uBAAA;;AAEF;EACE,iBAAA;;AAEF;EACE,cAAA;;AAaA,QAA8C;EAyFhD,cAxFI;IACE,WAAA;IACA,YAAA;IACA,WAAA;IACA,iBAAA;IGtNJ,gBAAA;IACA,uBAAA;IACA,mBAAA;;EHwSF,cAjFI;IACE,kBAAA;;;AAUN,IAAI;AAEJ,IAAI;EACF,YAAA;EACA,iCAAA;;AAEF;EACE,cAAA;EA9IqB,yBAAA;;AAmJvB;EACE,kBAAA;EACA,gBAAA;EACA,eAAA;EACA,8BAAA;;AAKE,UAHF,EAGG;AAAD,UAFF,GAEG;AAAD,UADF,GACG;EACC,gBAAA;;AAVN,UAgBE;AAhBF,UAiBE;AAjBF,UAkBE;EACE,cAAA;EACA,cAAA;EACA,uBAAA;EACA,cAAA;;AAEA,UARF,OAQG;AAAD,UAPF,MAOG;AAAD,UANF,OAMG;EACC,SAAS,aAAT;;AAQN;AACA,UAAU;EACR,mBAAA;EACA,eAAA;EACA,+BAAA;EACA,cAAA;EACA,iBAAA;;AAME,mBAHF,OAGG;AAAD,UAXM,WAQR,OAGG;AAAD,mBAFF,MAEG;AAAD,UAXM,WASR,MAEG;AAAD,mBADF,OACG;AAAD,UAXM,WAUR,OACG;EAAU,SAAS,EAAT;;AACX,mBAJF,OAIG;AAAD,UAZM,WAQR,OAIG;AAAD,mBAHF,MAGG;AAAD,UAZM,WASR,MAGG;AAAD,mBAFF,OAEG;AAAD,UAZM,WAUR,OAEG;EACC,SAAS,aAAT;;AAMN;EACE,mBAAA;EACA,kBAAA;EACA,uBAAA;;AItSF;AACA;AACA;AACA;EACE,+CAAA;;AAIF;EACE,gBAAA;EACA,cAAA;EACA,cAAA;EACA,yBAAA;EACA,kBAAA;;AAIF;EACE,gBAAA;EACA,cAAA;EACA,WAAA;EACA,sBAAA;EACA,kBAAA;EACA,8CAAA;;AANF,GAQE;EACE,UAAA;EACA,eAAA;EACA,iBAAA;EACA,gBAAA;;AAKJ;EACE,cAAA;EACA,cAAA;EACA,gBAAA;EACA,eAAA;EACA,uBAAA;EACA,qBAAA;EACA,qBAAA;EACA,cAAA;EACA,yBAAA;EACA,sBAAA;EACA,kBAAA;;AAXF,GAcE;EACE,UAAA;EACA,kBAAA;EACA,cAAA;EACA,qBAAA;EACA,6BAAA;EACA,gBAAA;;AAKJ;EACE,iBAAA;EACA,kBAAA;;AC1DF;ECHE,kBAAA;EACA,iBAAA;EACA,kBAAA;EACA,mBAAA;;ADGA,QAAmC;EAwErC;IAvEI,YAAA;;;AAEF,QAAmC;EAqErC;IApEI,YAAA;;;AAEF,QAAmC;EAkErC;IAjEI,aAAA;;;AAUJ;ECvBE,kBAAA;EACA,iBAAA;EACA,kBAAA;EACA,mBAAA;;AD6BF;ECvBE,kBAAA;EACA,mBAAA;;ACAE;EACE,kBAAA;EAEA,eAAA;EAEA,kBAAA;EACA,mBAAA;;AAgBF;EACE,WAAA;;AAOJ,KAAK,EAAQ,CAAC;EACZ,WAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,UAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,UAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,UAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,kBAAA;;AAcF,KAAK,EAAQ,MAAM;EACjB,WAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,UAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,UAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,UAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AAIF,KAAK,EAAQ;EACX,WAAA;;AAhBF,KAAK,EAAQ,MAAM;EACjB,UAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,SAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,SAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,SAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,iBAAA;;AAIF,KAAK,EAAQ;EACX,UAAA;;AAcF,KAAK,EAAQ,QAAQ;EACnB,iBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,gBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,gBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,gBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,wBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,eAAA;;AFTJ,QAAmC;EEzB/B;IACE,WAAA;;EAOJ,KAAK,EAAQ,CAAC;IACZ,WAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,kBAAA;;EAcF,KAAK,EAAQ,MAAM;IACjB,WAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EAIF,KAAK,EAAQ;IACX,WAAA;;EAhBF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,iBAAA;;EAIF,KAAK,EAAQ;IACX,UAAA;;EAcF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,wBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,eAAA;;;AFAJ,QAAmC;EElC/B;IACE,WAAA;;EAOJ,KAAK,EAAQ,CAAC;IACZ,WAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,kBAAA;;EAcF,KAAK,EAAQ,MAAM;IACjB,WAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EAIF,KAAK,EAAQ;IACX,WAAA;;EAhBF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,iBAAA;;EAIF,KAAK,EAAQ;IACX,UAAA;;EAcF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,wBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,eAAA;;;AFSJ,QAAmC;EE3C/B;IACE,WAAA;;EAOJ,KAAK,EAAQ,CAAC;IACZ,WAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,kBAAA;;EAcF,KAAK,EAAQ,MAAM;IACjB,WAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EAIF,KAAK,EAAQ;IACX,WAAA;;EAhBF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,iBAAA;;EAIF,KAAK,EAAQ;IACX,UAAA;;EAcF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,wBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,eAAA;;;ACnEJ;EACE,6BAAA;;AAEF;EACE,iBAAA;EACA,oBAAA;EACA,cAAA;EACA,gBAAA;;AAEF;EACE,gBAAA;;AAMF;EACE,WAAA;EACA,eAAA;EACA,mBAAA;;AAHF,MAKE,QAGE,KACE;AATN,MAME,QAEE,KACE;AATN,MAOE,QACE,KACE;AATN,MAKE,QAGE,KAEE;AAVN,MAME,QAEE,KAEE;AAVN,MAOE,QACE,KAEE;EACE,aAAA;EACA,uBAAA;EACA,mBAAA;EACA,6BAAA;;AAdR,MAmBE,QAAQ,KAAK;EACX,sBAAA;EACA,gCAAA;;AArBJ,MAwBE,UAAU,QAGR,KAAI,YACF;AA5BN,MAyBE,WAAW,QAET,KAAI,YACF;AA5BN,MA0BE,QAAO,YACL,KAAI,YACF;AA5BN,MAwBE,UAAU,QAGR,KAAI,YAEF;AA7BN,MAyBE,WAAW,QAET,KAAI,YAEF;AA7BN,MA0BE,QAAO,YACL,KAAI,YAEF;EACE,aAAA;;AA9BR,MAmCE,QAAQ;EACN,6BAAA;;AApCJ,MAwCE;EACE,sBAAA;;AAOJ,gBACE,QAGE,KACE;AALN,gBAEE,QAEE,KACE;AALN,gBAGE,QACE,KACE;AALN,gBACE,QAGE,KAEE;AANN,gBAEE,QAEE,KAEE;AANN,gBAGE,QACE,KAEE;EACE,YAAA;;AAWR;EACE,yBAAA;;AADF,eAEE,QAGE,KACE;AANN,eAGE,QAEE,KACE;AANN,eAIE,QACE,KACE;AANN,eAEE,QAGE,KAEE;AAPN,eAGE,QAEE,KAEE;AAPN,eAIE,QACE,KAEE;EACE,yBAAA;;AARR,eAYE,QAAQ,KACN;AAbJ,eAYE,QAAQ,KAEN;EACE,wBAAA;;AAUN,cACE,QAAQ,KAAI,YAAY;EACtB,yBAAA;;AASJ,YACE,QAAQ,KAAI;EACV,yBAAA;;AASJ,KAAM,IAAG;EACP,gBAAA;EACA,WAAA;EACA,qBAAA;;AAKE,KAFF,GAEG;AAAD,KADF,GACG;EACC,gBAAA;EACA,WAAA;EACA,mBAAA;;AC5IJ,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AADP,MAAO,QAAQ,KACb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAIb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AACL,MALK,QAAQ,KAKZ,CAAC,MAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,MAAS;AAAX,MAHK,QAAQ,KAGZ,CAAC,MAAS;AACX,MANK,QAAQ,KAMZ,CAAC,MAAS;AAAX,MALK,QAAQ,KAKZ,CAAC,MAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,MAAS;EACT,yBAAA;;AAMJ,YAAa,QAAQ,KACnB,KAAI,CAAC,MAAQ;AADf,YAAa,QAAQ,KAEnB,KAAI,CAAC,MAAQ;AACb,YAHW,QAAQ,KAGlB,CAAC,MAAQ,MAAO;AACjB,YAJW,QAAQ,KAIlB,MAAO,IAAG;AACX,YALW,QAAQ,KAKlB,CAAC,MAAQ,MAAO;EACf,yBAAA;;AAnBJ,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AADP,MAAO,QAAQ,KACb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAIb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AACL,MALK,QAAQ,KAKZ,CAAC,OAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,OAAS;AAAX,MAHK,QAAQ,KAGZ,CAAC,OAAS;AACX,MANK,QAAQ,KAMZ,CAAC,OAAS;AAAX,MALK,QAAQ,KAKZ,CAAC,OAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,OAAS;EACT,yBAAA;;AAMJ,YAAa,QAAQ,KACnB,KAAI,CAAC,OAAQ;AADf,YAAa,QAAQ,KAEnB,KAAI,CAAC,OAAQ;AACb,YAHW,QAAQ,KAGlB,CAAC,OAAQ,MAAO;AACjB,YAJW,QAAQ,KAIlB,MAAO,IAAG;AACX,YALW,QAAQ,KAKlB,CAAC,OAAQ,MAAO;EACf,yBAAA;;AAnBJ,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AADP,MAAO,QAAQ,KACb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAIb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AACL,MALK,QAAQ,KAKZ,CAAC,IAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,IAAS;AAAX,MAHK,QAAQ,KAGZ,CAAC,IAAS;AACX,MANK,QAAQ,KAMZ,CAAC,IAAS;AAAX,MALK,QAAQ,KAKZ,CAAC,IAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,IAAS;EACT,yBAAA;;AAMJ,YAAa,QAAQ,KACnB,KAAI,CAAC,IAAQ;AADf,YAAa,QAAQ,KAEnB,KAAI,CAAC,IAAQ;AACb,YAHW,QAAQ,KAGlB,CAAC,IAAQ,MAAO;AACjB,YAJW,QAAQ,KAIlB,MAAO,IAAG;AACX,YALW,QAAQ,KAKlB,CAAC,IAAQ,MAAO;EACf,yBAAA;;AAnBJ,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AADP,MAAO,QAAQ,KACb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAIb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AACL,MALK,QAAQ,KAKZ,CAAC,OAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,OAAS;AAAX,MAHK,QAAQ,KAGZ,CAAC,OAAS;AACX,MANK,QAAQ,KAMZ,CAAC,OAAS;AAAX,MALK,QAAQ,KAKZ,CAAC,OAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,OAAS;EACT,yBAAA;;AAMJ,YAAa,QAAQ,KACnB,KAAI,CAAC,OAAQ;AADf,YAAa,QAAQ,KAEnB,KAAI,CAAC,OAAQ;AACb,YAHW,QAAQ,KAGlB,CAAC,OAAQ,MAAO;AACjB,YAJW,QAAQ,KAIlB,MAAO,IAAG;AACX,YALW,QAAQ,KAKlB,CAAC,OAAQ,MAAO;EACf,yBAAA;;AAnBJ,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AADP,MAAO,QAAQ,KACb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAIb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AACL,MALK,QAAQ,KAKZ,CAAC,MAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,MAAS;AAAX,MAHK,QAAQ,KAGZ,CAAC,MAAS;AACX,MANK,QAAQ,KAMZ,CAAC,MAAS;AAAX,MALK,QAAQ,KAKZ,CAAC,MAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,MAAS;EACT,yBAAA;;AAMJ,YAAa,QAAQ,KACnB,KAAI,CAAC,MAAQ;AADf,YAAa,QAAQ,KAEnB,KAAI,CAAC,MAAQ;AACb,YAHW,QAAQ,KAGlB,CAAC,MAAQ,MAAO;AACjB,YAJW,QAAQ,KAIlB,MAAO,IAAG;AACX,YALW,QAAQ,KAKlB,CAAC,MAAQ,MAAO;EACf,yBAAA;;ADkJN;EACE,gBAAA;EACA,iBAAA;;AAEA,mBAA8C;EA4DhD;IA3DI,WAAA;IACA,mBAAA;IACA,kBAAA;IACA,4CAAA;IACA,yBAAA;;EAuDJ,iBApDI;IACE,gBAAA;;EAmDN,iBApDI,SAIE,QAGE,KACE;EA4CV,iBApDI,SAKE,QAEE,KACE;EA4CV,iBApDI,SAME,QACE,KACE;EA4CV,iBApDI,SAIE,QAGE,KAEE;EA2CV,iBApDI,SAKE,QAEE,KAEE;EA2CV,iBApDI,SAME,QACE,KAEE;IACE,mBAAA;;EA0CZ,iBAnCI;IACE,SAAA;;EAkCN,iBAnCI,kBAIE,QAGE,KACE,KAAI;EA2Bd,iBAnCI,kBAKE,QAEE,KACE,KAAI;EA2Bd,iBAnCI,kBAME,QACE,KACE,KAAI;EA2Bd,iBAnCI,kBAIE,QAGE,KAEE,KAAI;EA0Bd,iBAnCI,kBAKE,QAEE,KAEE,KAAI;EA0Bd,iBAnCI,kBAME,QACE,KAEE,KAAI;IACF,cAAA;;EAyBZ,iBAnCI,kBAIE,QAGE,KAKE,KAAI;EAuBd,iBAnCI,kBAKE,QAEE,KAKE,KAAI;EAuBd,iBAnCI,kBAME,QACE,KAKE,KAAI;EAuBd,iBAnCI,kBAIE,QAGE,KAME,KAAI;EAsBd,iBAnCI,kBAKE,QAEE,KAME,KAAI;EAsBd,iBAnCI,kBAME,QACE,KAME,KAAI;IACF,eAAA;;EAqBZ,iBAnCI,kBAsBE,QAEE,KAAI,WACF;EAUV,iBAnCI,kBAuBE,QACE,KAAI,WACF;EAUV,iBAnCI,kBAsBE,QAEE,KAAI,WAEF;EASV,iBAnCI,kBAuBE,QACE,KAAI,WAEF;IACE,gBAAA;;;AEzNZ;EACE,UAAA;EACA,SAAA;EACA,SAAA;EAIA,YAAA;;AAGF;EACE,cAAA;EACA,WAAA;EACA,UAAA;EACA,mBAAA;EACA,eAAA;EACA,oBAAA;EACA,cAAA;EACA,SAAA;EACA,gCAAA;;AAGF;EACE,qBAAA;EACA,eAAA;EACA,kBAAA;EACA,iBAAA;;AAWF,KAAK;EhB4BH,8BAAA;EACG,2BAAA;EACK,sBAAA;;AgBzBV,KAAK;AACL,KAAK;EACH,eAAA;EACA,kBAAA;EACA,mBAAA;;AAGF,KAAK;EACH,cAAA;;AAIF,KAAK;EACH,cAAA;EACA,WAAA;;AAIF,MAAM;AACN,MAAM;EACJ,YAAA;;AAIF,KAAK,aAAa;AAClB,KAAK,cAAc;AACnB,KAAK,iBAAiB;EdvEpB,0CAAA;EACA,oBAAA;;Ac2EF;EACE,cAAA;EACA,gBAAA;EACA,eAAA;EACA,uBAAA;EACA,cAAA;;AA0BF;EACE,cAAA;EACA,WAAA;EACA,YAAA;EACA,gBAAA;EACA,eAAA;EACA,uBAAA;EACA,cAAA;EACA,sBAAA;EACA,sBAAA;EACA,sBAAA;EACA,kBAAA;EhBxDA,wDAAA;EACQ,gDAAA;EAyHR,8EAAA;EACK,yEAAA;EACG,sEAAA;;AiBxIR,aAAC;EACC,qBAAA;EACA,UAAA;EjBUF,oFAAA;EACQ,4EAAA;;AAiCR,aAAC;EACC,WAAA;EACA,UAAA;;AAEF,aAAC;EAAyB,WAAA;;AAC1B,aAAC;EAA+B,WAAA;;AkB7EhC,aAAC;EAA+B,WAAA;EAAe,kBAAA;;AAC/C,aAAC;EAA+B,WAAA;EAAe,kBAAA;EAAoB,UAAA;;AACnE,aAAC;EAA+B,WAAA;EAAe,kBAAA;;AAC/C,aAAC;EAA+B,WAAA;EAAe,kBAAA;;AFsG/C,aAAC;EACC,SAAA;EACA,6BAAA;;AAQF,aAAC;AACD,aAAC;AACD,QAAQ,UAAW;EACjB,yBAAA;EACA,UAAA;;AAGF,aAAC;AACD,QAAQ,UAAW;EACjB,mBAAA;;AAIF,QAAQ;EACN,YAAA;;AAYJ,KAAK;EACH,wBAAA;;AAaF,mBAAsD;EAKlD,KAJG,aAIF;EAAD,KAHG,aAGF;EAAD,KAFG,uBAEF;EAAD,KADG,cACF;IACC,iBAAA;;EAGF,KARG,aAQF;EAAD,KAPG,aAOF;EAAD,KANG,uBAMF;EAAD,KALG,cAKF;EACD,eAAgB,MATb;EASH,eAAgB,MARb;EAQH,eAAgB,MAPb;EAOH,eAAgB,MANb;IAOD,iBAAA;;EAGF,KAbG,aAaF;EAAD,KAZG,aAYF;EAAD,KAXG,uBAWF;EAAD,KAVG,cAUF;EACD,eAAgB,MAdb;EAcH,eAAgB,MAbb;EAaH,eAAgB,MAZb;EAYH,eAAgB,MAXb;IAYD,iBAAA;;;AAWN;EACE,mBAAA;;AAQF;AACA;EACE,kBAAA;EACA,cAAA;EACA,gBAAA;EACA,mBAAA;;AALF,MAOE;AANF,SAME;EACE,gBAAA;EACA,kBAAA;EACA,gBAAA;EACA,mBAAA;EACA,eAAA;;AAGJ,MAAO,MAAK;AACZ,aAAc,MAAK;AACnB,SAAU,MAAK;AACf,gBAAiB,MAAK;EACpB,kBAAA;EACA,kBAAA;EACA,kBAAA;;AAGF,MAAO;AACP,SAAU;EACR,gBAAA;;AAIF;AACA;EACE,kBAAA;EACA,qBAAA;EACA,kBAAA;EACA,gBAAA;EACA,sBAAA;EACA,mBAAA;EACA,eAAA;;AAEF,aAAc;AACd,gBAAiB;EACf,aAAA;EACA,iBAAA;;AASA,KAFG,cAEF;AAAD,KADG,iBACF;AACD,KAHG,cAGF;AAAD,KAFG,iBAEF;AACD,QAAQ,UAAW,MAJhB;AAIH,QAAQ,UAAW,MAHhB;EAID,mBAAA;;AAMF,aAAC;AAAD,gBAAC;AACD,QAAQ,UAAW;AAAnB,QAAQ,UAAW;EACjB,mBAAA;;AAMF,MAAC,SAEC;AAFF,SAAC,SAEC;AADF,QAAQ,UAAW,OACjB;AADF,QAAQ,UAAW,UACjB;EACE,mBAAA;;AAWN;EAEE,gBAAA;EACA,mBAAA;EAEA,gBAAA;EACA,gBAAA;;AAEA,oBAAC;AACD,oBAAC;EACC,eAAA;EACA,gBAAA;;AAaJ;ECnQE,YAAA;EACA,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AAEA,MAAM;EACJ,YAAA;EACA,iBAAA;;AAGF,QAAQ;AACR,MAAM,UAAU;EACd,YAAA;;ADyPJ,cACE;EACE,YAAA;EACA,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AANJ,cAQE,OAAM;EACJ,YAAA;EACA,iBAAA;;AAVJ,cAYE,SAAQ;AAZV,cAaE,OAAM,UAAU;EACd,YAAA;;AAdJ,cAgBE;EACE,YAAA;EACA,gBAAA;EACA,gBAAA;EACA,eAAA;EACA,gBAAA;;AAIJ;EC/RE,YAAA;EACA,iBAAA;EACA,eAAA;EACA,sBAAA;EACA,kBAAA;;AAEA,MAAM;EACJ,YAAA;EACA,iBAAA;;AAGF,QAAQ;AACR,MAAM,UAAU;EACd,YAAA;;ADqRJ,cACE;EACE,YAAA;EACA,iBAAA;EACA,eAAA;EACA,sBAAA;EACA,kBAAA;;AANJ,cAQE,OAAM;EACJ,YAAA;EACA,iBAAA;;AAVJ,cAYE,SAAQ;AAZV,cAaE,OAAM,UAAU;EACd,YAAA;;AAdJ,cAgBE;EACE,YAAA;EACA,gBAAA;EACA,iBAAA;EACA,eAAA;EACA,sBAAA;;AASJ;EAEE,kBAAA;;AAFF,aAKE;EACE,qBAAA;;AAIJ;EACE,kBAAA;EACA,MAAA;EACA,QAAA;EACA,UAAA;EACA,cAAA;EACA,WAAA;EACA,YAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;;AAEF,SAAU;AACV,eAAgB;AAChB,cAAe,cAAc;EAC3B,WAAA;EACA,YAAA;EACA,iBAAA;;AAEF,SAAU;AACV,eAAgB;AAChB,cAAe,cAAc;EAC3B,WAAA;EACA,YAAA;EACA,iBAAA;;AAIF,YCpaE;ADoaF,YCnaE;ADmaF,YClaE;ADkaF,YCjaE;ADiaF,YChaE;ADgaF,YC/ZE;AACA,YAAC,MAAO;AACR,YAAC,SAAU;AACX,YAAC,aAAc;AACf,YAAC,gBAAiB;EAChB,cAAA;;AD0ZJ,YCvZE;EACE,qBAAA;EjB+CF,wDAAA;EACQ,gDAAA;;AiB9CN,YAHF,cAGG;EACC,qBAAA;EjB4CJ,yEAAA;EACQ,iEAAA;;AgBsWV,YC7YE;EACE,cAAA;EACA,qBAAA;EACA,yBAAA;;AD0YJ,YCvYE;EACE,cAAA;;ADyYJ,YCvaE;ADuaF,YCtaE;ADsaF,YCraE;ADqaF,YCpaE;ADoaF,YCnaE;ADmaF,YClaE;AACA,YAAC,MAAO;AACR,YAAC,SAAU;AACX,YAAC,aAAc;AACf,YAAC,gBAAiB;EAChB,cAAA;;AD6ZJ,YC1ZE;EACE,qBAAA;EjB+CF,wDAAA;EACQ,gDAAA;;AiB9CN,YAHF,cAGG;EACC,qBAAA;EjB4CJ,yEAAA;EACQ,iEAAA;;AgByWV,YChZE;EACE,cAAA;EACA,qBAAA;EACA,yBAAA;;AD6YJ,YC1YE;EACE,cAAA;;AD4YJ,UC1aE;AD0aF,UCzaE;ADyaF,UCxaE;ADwaF,UCvaE;ADuaF,UCtaE;ADsaF,UCraE;AACA,UAAC,MAAO;AACR,UAAC,SAAU;AACX,UAAC,aAAc;AACf,UAAC,gBAAiB;EAChB,cAAA;;ADgaJ,UC7ZE;EACE,qBAAA;EjB+CF,wDAAA;EACQ,gDAAA;;AiB9CN,UAHF,cAGG;EACC,qBAAA;EjB4CJ,yEAAA;EACQ,iEAAA;;AgB4WV,UCnZE;EACE,cAAA;EACA,qBAAA;EACA,yBAAA;;ADgZJ,UC7YE;EACE,cAAA;;ADmZF,aAFY,MAEV;EACA,SAAA;;AAEF,aALY,MAKX,QAAS;EACR,MAAA;;AAUJ;EACE,cAAA;EACA,eAAA;EACA,mBAAA;EACA,cAAA;;AAkBA,QAAmC;EAyIrC,YAvII;IACE,qBAAA;IACA,gBAAA;IACA,sBAAA;;EAoIN,YAhII;IACE,qBAAA;IACA,WAAA;IACA,sBAAA;;EA6HN,YAzHI;IACE,qBAAA;;EAwHN,YArHI;IACE,qBAAA;IACA,sBAAA;;EAmHN,YArHI,aAIE;EAiHN,YArHI,aAKE;EAgHN,YArHI,aAME;IACE,WAAA;;EA8GR,YAzGI,aAAa;IACX,WAAA;;EAwGN,YArGI;IACE,gBAAA;IACA,sBAAA;;EAmGN,YA9FI;EA8FJ,YA7FI;IACE,qBAAA;IACA,aAAA;IACA,gBAAA;IACA,sBAAA;;EAyFN,YA9FI,OAOE;EAuFN,YA7FI,UAME;IACE,eAAA;;EAsFR,YAnFI,OAAO,MAAK;EAmFhB,YAlFI,UAAU,MAAK;IACb,kBAAA;IACA,cAAA;;EAgFN,YA5EI,cAAc;IACZ,MAAA;;;AAWN,gBAKE;AALF,gBAME;AANF,gBAOE;AAPF,gBAQE;EACE,aAAA;EACA,gBAAA;EACA,gBAAA;;AAXJ,gBAeE;AAfF,gBAgBE;EACE,gBAAA;;AAjBJ,gBAqBE;EJ3iBA,kBAAA;EACA,mBAAA;;AIgjBA,QAAmC;EAqCrC,gBApCI;IACE,iBAAA;IACA,gBAAA;IACA,gBAAA;;;AA/BN,gBAuCE,cAAc;EACZ,WAAA;;AAQA,QAAmC;EAgBvC,gBAjBE,eAEI;IACE,gBAAA;IACA,eAAA;;;AAKJ,QAAmC;EAQvC,gBATE,eAEI;IACE,gBAAA;IACA,eAAA;;;AGxlBR;EACE,qBAAA;EACA,gBAAA;EACA,gBAAA;EACA,kBAAA;EACA,sBAAA;EACA,0BAAA;EACA,eAAA;EACA,sBAAA;EACA,6BAAA;EACA,mBAAA;EC0CA,gBAAA;EACA,eAAA;EACA,uBAAA;EACA,kBAAA;EpB+JA,yBAAA;EACG,sBAAA;EACC,qBAAA;EACI,iBAAA;;AmBxMN,IAAC;AAAD,IAFD,OAEE;AAAD,IADD,OACE;AACD,IAAC;AAAD,IAHD,OAGE;AAAD,IAFD,OAEE;EjBpBH,0CAAA;EACA,oBAAA;;AiBwBA,IAAC;AACD,IAAC;AACD,IAAC;EACC,cAAA;EACA,qBAAA;;AAGF,IAAC;AACD,IAAC;EACC,UAAA;EACA,sBAAA;EnB2BF,wDAAA;EACQ,gDAAA;;AmBxBR,IAAC;AACD,IAAC;AACD,QAAQ,UAAW;EACjB,mBAAA;EE7CF,aAAA;EAGA,yBAAA;ErB8DA,wBAAA;EACQ,gBAAA;;AmBfN,CADD,IACE;AACD,QAAQ,UAAW,EAFpB;EAGG,oBAAA;;AASN;EC3DE,cAAA;EACA,yBAAA;EACA,kBAAA;;AAEA,YAAC;AACD,YAAC;EACC,cAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;EACC,cAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;AACD,YAAC;AACD,KAAM,mBAAkB;EACtB,cAAA;EACA,yBAAA;EACI,qBAAA;;AAEJ,YAPD,OAOE;AAAD,YAND,OAME;AAAD,KALI,mBAAkB,YAKrB;AACD,YARD,OAQE;AAAD,YAPD,OAOE;AAAD,KANI,mBAAkB,YAMrB;AACD,YATD,OASE;AAAD,YARD,OAQE;AAAD,KAPI,mBAAkB,YAOrB;EACC,cAAA;EACA,yBAAA;EACI,qBAAA;;AAGR,YAAC;AACD,YAAC;AACD,KAAM,mBAAkB;EACtB,sBAAA;;AAKA,YAHD,SAGE;AAAD,YAFD,UAEE;AAAD,QADM,UAAW,aAChB;AACD,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;EACC,yBAAA;EACI,kBAAA;;ADiBV,YCbE;EACE,cAAA;EACA,yBAAA;;ADcJ;EC9DE,WAAA;EACA,yBAAA;EACA,qBAAA;;AAEA,YAAC;AACD,YAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;AACD,YAAC;AACD,KAAM,mBAAkB;EACtB,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEJ,YAPD,OAOE;AAAD,YAND,OAME;AAAD,KALI,mBAAkB,YAKrB;AACD,YARD,OAQE;AAAD,YAPD,OAOE;AAAD,KANI,mBAAkB,YAMrB;AACD,YATD,OASE;AAAD,YARD,OAQE;AAAD,KAPI,mBAAkB,YAOrB;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAGR,YAAC;AACD,YAAC;AACD,KAAM,mBAAkB;EACtB,sBAAA;;AAKA,YAHD,SAGE;AAAD,YAFD,UAEE;AAAD,QADM,UAAW,aAChB;AACD,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;EACC,yBAAA;EACI,qBAAA;;ADoBV,YChBE;EACE,cAAA;EACA,sBAAA;;ADkBJ;EClEE,WAAA;EACA,yBAAA;EACA,qBAAA;;AAEA,YAAC;AACD,YAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;AACD,YAAC;AACD,KAAM,mBAAkB;EACtB,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEJ,YAPD,OAOE;AAAD,YAND,OAME;AAAD,KALI,mBAAkB,YAKrB;AACD,YARD,OAQE;AAAD,YAPD,OAOE;AAAD,KANI,mBAAkB,YAMrB;AACD,YATD,OASE;AAAD,YARD,OAQE;AAAD,KAPI,mBAAkB,YAOrB;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAGR,YAAC;AACD,YAAC;AACD,KAAM,mBAAkB;EACtB,sBAAA;;AAKA,YAHD,SAGE;AAAD,YAFD,UAEE;AAAD,QADM,UAAW,aAChB;AACD,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;EACC,yBAAA;EACI,qBAAA;;ADwBV,YCpBE;EACE,cAAA;EACA,sBAAA;;ADsBJ;ECtEE,WAAA;EACA,yBAAA;EACA,qBAAA;;AAEA,SAAC;AACD,SAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,SAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,SAAC;AACD,SAAC;AACD,KAAM,mBAAkB;EACtB,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEJ,SAPD,OAOE;AAAD,SAND,OAME;AAAD,KALI,mBAAkB,SAKrB;AACD,SARD,OAQE;AAAD,SAPD,OAOE;AAAD,KANI,mBAAkB,SAMrB;AACD,SATD,OASE;AAAD,SARD,OAQE;AAAD,KAPI,mBAAkB,SAOrB;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAGR,SAAC;AACD,SAAC;AACD,KAAM,mBAAkB;EACtB,sBAAA;;AAKA,SAHD,SAGE;AAAD,SAFD,UAEE;AAAD,QADM,UAAW,UAChB;AACD,SAJD,SAIE;AAAD,SAHD,UAGE;AAAD,QAFM,UAAW,UAEhB;AACD,SALD,SAKE;AAAD,SAJD,UAIE;AAAD,QAHM,UAAW,UAGhB;EACC,yBAAA;EACI,qBAAA;;AD4BV,SCxBE;EACE,cAAA;EACA,sBAAA;;AD0BJ;EC1EE,WAAA;EACA,yBAAA;EACA,qBAAA;;AAEA,YAAC;AACD,YAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;AACD,YAAC;AACD,KAAM,mBAAkB;EACtB,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEJ,YAPD,OAOE;AAAD,YAND,OAME;AAAD,KALI,mBAAkB,YAKrB;AACD,YARD,OAQE;AAAD,YAPD,OAOE;AAAD,KANI,mBAAkB,YAMrB;AACD,YATD,OASE;AAAD,YARD,OAQE;AAAD,KAPI,mBAAkB,YAOrB;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAGR,YAAC;AACD,YAAC;AACD,KAAM,mBAAkB;EACtB,sBAAA;;AAKA,YAHD,SAGE;AAAD,YAFD,UAEE;AAAD,QADM,UAAW,aAChB;AACD,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;EACC,yBAAA;EACI,qBAAA;;ADgCV,YC5BE;EACE,cAAA;EACA,sBAAA;;AD8BJ;EC9EE,WAAA;EACA,yBAAA;EACA,qBAAA;;AAEA,WAAC;AACD,WAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,WAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,WAAC;AACD,WAAC;AACD,KAAM,mBAAkB;EACtB,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEJ,WAPD,OAOE;AAAD,WAND,OAME;AAAD,KALI,mBAAkB,WAKrB;AACD,WARD,OAQE;AAAD,WAPD,OAOE;AAAD,KANI,mBAAkB,WAMrB;AACD,WATD,OASE;AAAD,WARD,OAQE;AAAD,KAPI,mBAAkB,WAOrB;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAGR,WAAC;AACD,WAAC;AACD,KAAM,mBAAkB;EACtB,sBAAA;;AAKA,WAHD,SAGE;AAAD,WAFD,UAEE;AAAD,QADM,UAAW,YAChB;AACD,WAJD,SAIE;AAAD,WAHD,UAGE;AAAD,QAFM,UAAW,YAEhB;AACD,WALD,SAKE;AAAD,WAJD,UAIE;AAAD,QAHM,UAAW,YAGhB;EACC,yBAAA;EACI,qBAAA;;ADoCV,WChCE;EACE,cAAA;EACA,sBAAA;;ADuCJ;EACE,cAAA;EACA,mBAAA;EACA,gBAAA;;AAEA;AACA,SAAC;AACD,SAAC;AACD,SAAC;AACD,QAAQ,UAAW;EACjB,6BAAA;EnBnCF,wBAAA;EACQ,gBAAA;;AmBqCR;AACA,SAAC;AACD,SAAC;AACD,SAAC;EACC,yBAAA;;AAEF,SAAC;AACD,SAAC;EACC,cAAA;EACA,0BAAA;EACA,6BAAA;;AAIA,SAFD,UAEE;AAAD,QADM,UAAW,UAChB;AACD,SAHD,UAGE;AAAD,QAFM,UAAW,UAEhB;EACC,cAAA;EACA,qBAAA;;AASN;AGnCA,aAAc;EFrCZ,iBAAA;EACA,eAAA;EACA,sBAAA;EACA,kBAAA;;ADyEF;AGxCA,aAAc;EFpCZ,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AD6EF;AG7CA,aAAc;EFnCZ,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;ADqFF;EACE,cAAA;EACA,WAAA;;AAIF,UAAW;EACT,eAAA;;AAOA,KAHG,eAGF;AAAD,KAFG,cAEF;AAAD,KADG,eACF;EACC,WAAA;;AI1JJ;EACE,UAAA;EvBoLA,wCAAA;EACK,mCAAA;EACG,gCAAA;;AuBpLR,KAAC;EACC,UAAA;;AAIJ;EACE,aAAA;;AAEA,SAAC;EAAW,cAAA;;AACZ,EAAE,SAAC;EAAS,kBAAA;;AACZ,KAAK,SAAC;EAAM,wBAAA;;AAGd;EACE,kBAAA;EACA,SAAA;EACA,gBAAA;EvBuKA,+CAAA;EACQ,uCAAA;EAOR,kCAAA;EACQ,0BAAA;EAGR,wCAAA;EACQ,gCAAA;;AwB1MV;EACE,qBAAA;EACA,QAAA;EACA,SAAA;EACA,gBAAA;EACA,sBAAA;EACA,oBAAA;EACA,sBAAA;EACA,iCAAA;EACA,gCAAA;;AAIF;AACA;EACE,kBAAA;;AAIF,gBAAgB;EACd,UAAA;;AAIF;EACE,kBAAA;EACA,SAAA;EACA,OAAA;EACA,aAAA;EACA,aAAA;EACA,WAAA;EACA,gBAAA;EACA,cAAA;EACA,eAAA;EACA,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,sBAAA;EAEA,sBAAA;EACA,kBAAA;ExBsBA,mDAAA;EACQ,2CAAA;EwBrBR,4BAAA;;AAKA,cAAC;EACC,QAAA;EACA,UAAA;;AAzBJ,cA6BE;ECrDA,aAAA;EPgBA,yBAAA;EACA,WAAA;EACA,eAAA;EACA,gBAAA;;AMKF,cAkCE,KAAK;EACH,cAAA;EACA,iBAAA;EACA,WAAA;EACA,mBAAA;EACA,uBAAA;EACA,cAAA;EACA,mBAAA;;AAMF,cADa,KAAK,IACjB;AACD,cAFa,KAAK,IAEjB;EACC,qBAAA;EACA,cAAA;EACA,yBAAA;;AAMF,cADa,UAAU;AAEvB,cAFa,UAAU,IAEtB;AACD,cAHa,UAAU,IAGtB;EACC,WAAA;EACA,qBAAA;EACA,UAAA;EACA,yBAAA;;AASF,cADa,YAAY;AAEzB,cAFa,YAAY,IAExB;AACD,cAHa,YAAY,IAGxB;EACC,cAAA;;AAIF,cARa,YAAY,IAQxB;AACD,cATa,YAAY,IASxB;EACC,qBAAA;EACA,6BAAA;EACA,sBAAA;EE3GF,QAAQ,2DAAR;EF6GE,mBAAA;;AAKJ,KAEE;EACE,cAAA;;AAHJ,KAOE;EACE,UAAA;;AAQJ;EACE,UAAA;EACA,QAAA;;AAQF;EACE,OAAA;EACA,WAAA;;AAIF;EACE,cAAA;EACA,iBAAA;EACA,eAAA;EACA,uBAAA;EACA,cAAA;EACA,mBAAA;;AAIF;EACE,eAAA;EACA,OAAA;EACA,QAAA;EACA,SAAA;EACA,MAAA;EACA,YAAA;;AAIF,WAAY;EACV,QAAA;EACA,UAAA;;AAQF,OAGE;AAFF,oBAAqB,UAEnB;EACE,aAAA;EACA,uBAAA;EACA,yBAAA;EACA,SAAS,EAAT;;AAPJ,OAUE;AATF,oBAAqB,UASnB;EACE,SAAA;EACA,YAAA;EACA,kBAAA;;AASJ,QAA2C;EACzC,aACE;IArEF,UAAA;IACA,QAAA;;EAmEA,aAME;IAhEF,OAAA;IACA,WAAA;;;AF/IF;AACA;EACE,kBAAA;EACA,qBAAA;EACA,sBAAA;;AAJF,UAKE;AAJF,mBAIE;EACE,kBAAA;EACA,WAAA;;AAEA,UAJF,OAIG;AAAD,mBAJF,OAIG;AACD,UALF,OAKG;AAAD,mBALF,OAKG;AACD,UANF,OAMG;AAAD,mBANF,OAMG;AACD,UAPF,OAOG;AAAD,mBAPF,OAOG;EACC,UAAA;;AAMN,UACE,KAAK;AADP,UAEE,KAAK;AAFP,UAGE,WAAW;AAHb,UAIE,WAAW;EACT,iBAAA;;AAKJ;EACE,iBAAA;;AADF,YAIE;AAJF,YAKE;AALF,YAME;EACE,WAAA;;AAPJ,YASE;AATF,YAUE;AAVF,YAWE;EACE,gBAAA;;AAIJ,UAAW,OAAM,IAAI,cAAc,IAAI,aAAa,IAAI;EACtD,gBAAA;;AAIF,UAAW,OAAM;EACf,cAAA;;AACA,UAFS,OAAM,YAEd,IAAI,aAAa,IAAI;EKlDtB,6BAAA;EACG,0BAAA;;ALsDL,UAAW,OAAM,WAAW,IAAI;AAChC,UAAW,mBAAkB,IAAI;EKhD/B,4BAAA;EACG,yBAAA;;ALoDL,UAAW;EACT,WAAA;;AAEF,UAAW,aAAY,IAAI,cAAc,IAAI,aAAc;EACzD,gBAAA;;AAEF,UAAW,aAAY,YAAY,IAAI,aACrC,OAAM;AADR,UAAW,aAAY,YAAY,IAAI,aAErC;EKrEA,6BAAA;EACG,0BAAA;;ALwEL,UAAW,aAAY,WAAW,IAAI,cAAe,OAAM;EKjEzD,4BAAA;EACG,yBAAA;;ALqEL,UAAW,iBAAgB;AAC3B,UAAU,KAAM;EACd,UAAA;;AAiBF,UAAW,OAAO;EAChB,iBAAA;EACA,kBAAA;;AAEF,UAAW,UAAU;EACnB,kBAAA;EACA,mBAAA;;AAKF,UAAU,KAAM;EtB/Cd,wDAAA;EACQ,gDAAA;;AsBkDR,UAJQ,KAAM,iBAIb;EtBnDD,wBAAA;EACQ,gBAAA;;AsByDV,IAAK;EACH,cAAA;;AAGF,OAAQ;EACN,mBAAA;EACA,sBAAA;;AAGF,OAAQ,QAAQ;EACd,mBAAA;;AAOF,mBACE;AADF,mBAEE;AAFF,mBAGE,aAAa;EACX,cAAA;EACA,WAAA;EACA,WAAA;EACA,eAAA;;AAPJ,mBAWE,aAEE;EACE,WAAA;;AAdN,mBAkBE,OAAO;AAlBT,mBAmBE,OAAO;AAnBT,mBAoBE,aAAa;AApBf,mBAqBE,aAAa;EACX,gBAAA;EACA,cAAA;;AAKF,mBADkB,OACjB,IAAI,cAAc,IAAI;EACrB,gBAAA;;AAEF,mBAJkB,OAIjB,YAAY,IAAI;EK3KjB,4BAAA;EACC,2BAAA;EAOD,6BAAA;EACC,4BAAA;;ALsKD,mBARkB,OAQjB,WAAW,IAAI;EK/KhB,0BAAA;EACC,yBAAA;EAOD,+BAAA;EACC,8BAAA;;AL2KH,mBAAoB,aAAY,IAAI,cAAc,IAAI,aAAc;EAClE,gBAAA;;AAEF,mBAAoB,aAAY,YAAY,IAAI,aAC9C,OAAM;AADR,mBAAoB,aAAY,YAAY,IAAI,aAE9C;EKjLA,6BAAA;EACC,4BAAA;;ALoLH,mBAAoB,aAAY,WAAW,IAAI,cAAe,OAAM;EK7LlE,0BAAA;EACC,yBAAA;;ALoMH;EACE,cAAA;EACA,WAAA;EACA,mBAAA;EACA,yBAAA;;AAJF,oBAKE;AALF,oBAME;EACE,WAAA;EACA,mBAAA;EACA,SAAA;;AATJ,oBAWE,aAAa;EACX,WAAA;;AAZJ,oBAeE,aAAa;EACX,UAAA;;AAiBJ,uBACE,OAEE,MAAK;AAHT,uBAEE,aAAa,OACX,MAAK;AAHT,uBACE,OAGE,MAAK;AAJT,uBAEE,aAAa,OAEX,MAAK;EACH,kBAAA;EACA,MAAM,gBAAN;EACA,oBAAA;;AM1ON;EACE,kBAAA;EACA,cAAA;EACA,yBAAA;;AAGA,YAAC;EACC,WAAA;EACA,eAAA;EACA,gBAAA;;AATJ,YAYE;EAGE,kBAAA;EACA,UAAA;EAKA,WAAA;EAEA,WAAA;EACA,gBAAA;;AAEA,YAdF,cAcG;EACC,UAAA;;AAUN,eAAgB;AAChB,eAAgB;AAChB,eAAgB,mBAAmB;EXwBjC,YAAA;EACA,iBAAA;EACA,eAAA;EACA,sBAAA;EACA,kBAAA;;AAEA,MAAM,eWhCQ;AXgCd,MAAM,eW/BQ;AX+Bd,MAAM,eW9BQ,mBAAmB;EX+B/B,YAAA;EACA,iBAAA;;AAGF,QAAQ,eWrCM;AXqCd,QAAQ,eWpCM;AXoCd,QAAQ,eWnCM,mBAAmB;AXoCjC,MAAM,UAAU,eWtCF;AXsCd,MAAM,UAAU,eWrCF;AXqCd,MAAM,UAAU,eWpCF,mBAAmB;EXqC/B,YAAA;;AWlCJ,eAAgB;AAChB,eAAgB;AAChB,eAAgB,mBAAmB;EXmBjC,YAAA;EACA,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AAEA,MAAM,eW3BQ;AX2Bd,MAAM,eW1BQ;AX0Bd,MAAM,eWzBQ,mBAAmB;EX0B/B,YAAA;EACA,iBAAA;;AAGF,QAAQ,eWhCM;AXgCd,QAAQ,eW/BM;AX+Bd,QAAQ,eW9BM,mBAAmB;AX+BjC,MAAM,UAAU,eWjCF;AXiCd,MAAM,UAAU,eWhCF;AXgCd,MAAM,UAAU,eW/BF,mBAAmB;EXgC/B,YAAA;;AWzBJ;AACA;AACA,YAAa;EACX,mBAAA;;AAEA,kBAAC,IAAI,cAAc,IAAI;AAAvB,gBAAC,IAAI,cAAc,IAAI;AAAvB,YAHW,cAGV,IAAI,cAAc,IAAI;EACrB,gBAAA;;AAIJ;AACA;EACE,SAAA;EACA,mBAAA;EACA,sBAAA;;AAKF;EACE,gBAAA;EACA,eAAA;EACA,mBAAA;EACA,cAAA;EACA,cAAA;EACA,kBAAA;EACA,yBAAA;EACA,sBAAA;EACA,kBAAA;;AAGA,kBAAC;EACC,gBAAA;EACA,eAAA;EACA,kBAAA;;AAEF,kBAAC;EACC,iBAAA;EACA,eAAA;EACA,kBAAA;;AApBJ,kBAwBE,MAAK;AAxBP,kBAyBE,MAAK;EACH,aAAA;;AAKJ,YAAa,cAAa;AAC1B,kBAAkB;AAClB,gBAAgB,YAAa;AAC7B,gBAAgB,YAAa,aAAa;AAC1C,gBAAgB,YAAa;AAC7B,gBAAgB,WAAY,OAAM,IAAI,aAAa,IAAI;AACvD,gBAAgB,WAAY,aAAY,IAAI,aAAc;ED1GxD,6BAAA;EACG,0BAAA;;AC4GL,kBAAkB;EAChB,eAAA;;AAEF,YAAa,cAAa;AAC1B,kBAAkB;AAClB,gBAAgB,WAAY;AAC5B,gBAAgB,WAAY,aAAa;AACzC,gBAAgB,WAAY;AAC5B,gBAAgB,YAAa,OAAM,IAAI;AACvC,gBAAgB,YAAa,aAAY,IAAI,cAAe;ED9G1D,4BAAA;EACG,yBAAA;;ACgHL,kBAAkB;EAChB,cAAA;;AAKF;EACE,kBAAA;EAGA,YAAA;EACA,mBAAA;;AALF,gBASE;EACE,kBAAA;;AAVJ,gBASE,OAEE;EACE,iBAAA;;AAGF,gBANF,OAMG;AACD,gBAPF,OAOG;AACD,gBARF,OAQG;EACC,UAAA;;AAKJ,gBAAC,YACC;AADF,gBAAC,YAEC;EACE,kBAAA;;AAGJ,gBAAC,WACC;AADF,gBAAC,WAEC;EACE,UAAA;EACA,iBAAA;;AC/JN;EACE,gBAAA;EACA,eAAA;EACA,gBAAA;;AAHF,IAME;EACE,kBAAA;EACA,cAAA;;AARJ,IAME,KAIE;EACE,kBAAA;EACA,cAAA;EACA,kBAAA;;AACA,IARJ,KAIE,IAIG;AACD,IATJ,KAIE,IAKG;EACC,qBAAA;EACA,yBAAA;;AAKJ,IAhBF,KAgBG,SAAU;EACT,cAAA;;AAEA,IAnBJ,KAgBG,SAAU,IAGR;AACD,IApBJ,KAgBG,SAAU,IAIR;EACC,cAAA;EACA,qBAAA;EACA,6BAAA;EACA,mBAAA;;AAOJ,IADF,MAAM;AAEJ,IAFF,MAAM,IAEH;AACD,IAHF,MAAM,IAGH;EACC,yBAAA;EACA,qBAAA;;AAzCN,IAkDE;EJpDA,aAAA;EAEA,yBAAA;EPcA,yBAAA;EACA,WAAA;EACA,eAAA;EACA,gBAAA;;AWjBF,IAyDE,KAAK,IAAI;EACP,eAAA;;AASJ;EACE,gCAAA;;AADF,SAEE;EACE,WAAA;EAEA,mBAAA;;AALJ,SAEE,KAME;EACE,iBAAA;EACA,uBAAA;EACA,6BAAA;EACA,0BAAA;;AACA,SAXJ,KAME,IAKG;EACC,6CAAA;;AAMF,SAlBJ,KAiBG,OAAQ;AAEP,SAnBJ,KAiBG,OAAQ,IAEN;AACD,SApBJ,KAiBG,OAAQ,IAGN;EACC,cAAA;EACA,sBAAA;EACA,sBAAA;EACA,gCAAA;EACA,eAAA;;AAKN,SAAC;EAqDD,WAAA;EA8BA,gBAAA;;AAnFA,SAAC,cAuDD;EACE,WAAA;;AAxDF,SAAC,cAuDD,KAEE;EACE,kBAAA;EACA,kBAAA;;AA3DJ,SAAC,cA+DD,YAAY;EACV,SAAA;EACA,UAAA;;AAGF,QAAmC;EAmErC,SAvIG,cAqEC;IACE,mBAAA;IACA,SAAA;;EAgEN,SAvIG,cAqEC,KAGE;IACE,gBAAA;;;AAzEN,SAAC,cAqFD,KAAK;EAEH,eAAA;EACA,kBAAA;;AAxFF,SAAC,cA2FD,UAAU;AA3FV,SAAC,cA4FD,UAAU,IAAG;AA5Fb,SAAC,cA6FD,UAAU,IAAG;EACX,yBAAA;;AAGF,QAAmC;EAsCrC,SAvIG,cAkGC,KAAK;IACH,gCAAA;IACA,0BAAA;;EAmCN,SAvIG,cAsGC,UAAU;EAiCd,SAvIG,cAuGC,UAAU,IAAG;EAgCjB,SAvIG,cAwGC,UAAU,IAAG;IACX,yBAAA;;;AAhGN,UACE;EACE,WAAA;;AAFJ,UACE,KAIE;EACE,kBAAA;;AANN,UACE,KAOE;EACE,gBAAA;;AAKA,UAbJ,KAYG,OAAQ;AAEP,UAdJ,KAYG,OAAQ,IAEN;AACD,UAfJ,KAYG,OAAQ,IAGN;EACC,WAAA;EACA,yBAAA;;AAQR,YACE;EACE,WAAA;;AAFJ,YACE,KAEE;EACE,eAAA;EACA,cAAA;;AAYN;EACE,WAAA;;AADF,cAGE;EACE,WAAA;;AAJJ,cAGE,KAEE;EACE,kBAAA;EACA,kBAAA;;AAPN,cAWE,YAAY;EACV,SAAA;EACA,UAAA;;AAGF,QAAmC;EAmErC,cAlEI;IACE,mBAAA;IACA,SAAA;;EAgEN,cAlEI,KAGE;IACE,gBAAA;;;AASR;EACE,gBAAA;;AADF,mBAGE,KAAK;EAEH,eAAA;EACA,kBAAA;;AANJ,mBASE,UAAU;AATZ,mBAUE,UAAU,IAAG;AAVf,mBAWE,UAAU,IAAG;EACX,yBAAA;;AAGF,QAAmC;EAsCrC,mBArCI,KAAK;IACH,gCAAA;IACA,0BAAA;;EAmCN,mBAjCI,UAAU;EAiCd,mBAhCI,UAAU,IAAG;EAgCjB,mBA/BI,UAAU,IAAG;IACX,yBAAA;;;AAUN,YACE;EACE,aAAA;;AAFJ,YAIE;EACE,cAAA;;AASJ,SAAU;EAER,gBAAA;EF3OA,0BAAA;EACC,yBAAA;;AGMH;EACE,kBAAA;EACA,gBAAA;EACA,mBAAA;EACA,6BAAA;;AAKA,QAA2C;EAioB7C;IAhoBI,kBAAA;;;AAaF,QAA2C;EAmnB7C;IAlnBI,WAAA;;;AAeJ;EACE,mBAAA;EACA,mBAAA;EACA,kBAAA;EACA,iCAAA;EACA,kDAAA;EAEA,iCAAA;;AAEA,gBAAC;EACC,gBAAA;;AAGF,QAA2C;EAslB7C;IArlBI,WAAA;IACA,aAAA;IACA,gBAAA;;EAEA,gBAAC;IACC,yBAAA;IACA,uBAAA;IACA,iBAAA;IACA,4BAAA;;EAGF,gBAAC;IACC,mBAAA;;EAKF,iBAAkB;EAClB,kBAAmB;EACnB,oBAAqB;IACnB,eAAA;IACA,gBAAA;;;AAKN,iBAEE;AADF,oBACE;EACE,iBAAA;;AAEA,QAA0C,8BAA6B;EAsjB3E,iBAzjBE;EAyjBF,oBAzjBE;IAII,iBAAA;;;AAUN,UAEE;AADF,gBACE;AAFF,UAGE;AAFF,gBAEE;EACE,mBAAA;EACA,kBAAA;;AAEA,QAA2C;EAoiB/C,UAziBE;EAyiBF,gBAziBE;EAyiBF,UAxiBE;EAwiBF,gBAxiBE;IAKI,eAAA;IACA,cAAA;;;AAaN;EACE,aAAA;EACA,qBAAA;;AAEA,QAA2C;EAihB7C;IAhhBI,gBAAA;;;AAKJ;AACA;EACE,eAAA;EACA,QAAA;EACA,OAAA;EACA,aAAA;;AAGA,QAA2C;EAmgB7C;EAAA;IAlgBI,gBAAA;;;AAGJ;EACE,MAAA;EACA,qBAAA;;AAEF;EACE,SAAA;EACA,gBAAA;EACA,qBAAA;;AAMF;EACE,WAAA;EACA,kBAAA;EACA,eAAA;EACA,iBAAA;EACA,YAAA;;AAEA,aAAC;AACD,aAAC;EACC,qBAAA;;AATJ,aAYE;EACE,cAAA;;AAGF,QAA2C;EACzC,OAAQ,aAAa;EACrB,OAAQ,mBAAmB;IACzB,kBAAA;;;AAWN;EACE,kBAAA;EACA,YAAA;EACA,kBAAA;EACA,iBAAA;EC9LA,eAAA;EACA,kBAAA;ED+LA,6BAAA;EACA,sBAAA;EACA,6BAAA;EACA,kBAAA;;AAIA,cAAC;EACC,UAAA;;AAdJ,cAkBE;EACE,cAAA;EACA,WAAA;EACA,WAAA;EACA,kBAAA;;AAtBJ,cAwBE,UAAU;EACR,eAAA;;AAGF,QAA2C;EAwb7C;IAvbI,aAAA;;;AAUJ;EACE,mBAAA;;AADF,WAGE,KAAK;EACH,iBAAA;EACA,oBAAA;EACA,iBAAA;;AAGF,QAA+C;EAoajD,WAlaI,MAAM;IACJ,gBAAA;IACA,WAAA;IACA,WAAA;IACA,aAAA;IACA,6BAAA;IACA,SAAA;IACA,gBAAA;;EA2ZN,WAlaI,MAAM,eAQJ,KAAK;EA0ZX,WAlaI,MAAM,eASJ;IACE,0BAAA;;EAwZR,WAlaI,MAAM,eAYJ,KAAK;IACH,iBAAA;;EACA,WAdJ,MAAM,eAYJ,KAAK,IAEF;EACD,WAfJ,MAAM,eAYJ,KAAK,IAGF;IACC,sBAAA;;;AAOR,QAA2C;EA2Y7C;IA1YI,WAAA;IACA,SAAA;;EAyYJ,WAvYI;IACE,WAAA;;EAsYN,WAvYI,KAEE;IACE,iBAAA;IACA,oBAAA;;;AAYR;EACE,kBAAA;EACA,mBAAA;EACA,kBAAA;EACA,iCAAA;EACA,oCAAA;E9B9NA,4FAAA;EACQ,oFAAA;E+B/DR,gBAAA;EACA,mBAAA;;AfqdA,QAAmC;EAyIrC,YAvII;IACE,qBAAA;IACA,gBAAA;IACA,sBAAA;;EAoIN,YAhII;IACE,qBAAA;IACA,WAAA;IACA,sBAAA;;EA6HN,YAzHI;IACE,qBAAA;;EAwHN,YArHI;IACE,qBAAA;IACA,sBAAA;;EAmHN,YArHI,aAIE;EAiHN,YArHI,aAKE;EAgHN,YArHI,aAME;IACE,WAAA;;EA8GR,YAzGI,aAAa;IACX,WAAA;;EAwGN,YArGI;IACE,gBAAA;IACA,sBAAA;;EAmGN,YA9FI;EA8FJ,YA7FI;IACE,qBAAA;IACA,aAAA;IACA,gBAAA;IACA,sBAAA;;EAyFN,YA9FI,OAOE;EAuFN,YA7FI,UAME;IACE,eAAA;;EAsFR,YAnFI,OAAO,MAAK;EAmFhB,YAlFI,UAAU,MAAK;IACb,kBAAA;IACA,cAAA;;EAgFN,YA5EI,cAAc;IACZ,MAAA;;;AchPF,QAA+C;EA0WnD,YA3WE;IAEI,kBAAA;;EAEA,YAJJ,YAIK;IACC,gBAAA;;;AASN,QAA2C;EA6V7C;IA5VI,WAAA;IACA,SAAA;IACA,cAAA;IACA,eAAA;IACA,cAAA;IACA,iBAAA;I9BzPF,wBAAA;IACQ,gBAAA;;;A8BiQV,WAAY,KAAK;EACf,aAAA;EHpUA,0BAAA;EACC,yBAAA;;AGuUH,oBAAqB,YAAY,KAAK;EACpC,gBAAA;EHzUA,4BAAA;EACC,2BAAA;EAOD,6BAAA;EACC,4BAAA;;AG0UH;EChVE,gBAAA;EACA,mBAAA;;ADkVA,WAAC;ECnVD,gBAAA;EACA,mBAAA;;ADqVA,WAAC;ECtVD,gBAAA;EACA,mBAAA;;AD+VF;EChWE,gBAAA;EACA,mBAAA;;ADkWA,QAA2C;EA2S7C;IA1SI,WAAA;IACA,iBAAA;IACA,kBAAA;;;AAaJ,QAA2C;EACzC;IExWA,sBAAA;ICCW,WAAA;;EHwWX;IE5WA,uBAAA;ICGY,YAAA;IH2WV,mBAAA;;EAFF,aAIE;IACE,eAAA;;;AAUN;EACE,yBAAA;EACA,qBAAA;;AAFF,eAIE;EACE,WAAA;;AACA,eAFF,cAEG;AACD,eAHF,cAGG;EACC,cAAA;EACA,6BAAA;;AATN,eAaE;EACE,WAAA;;AAdJ,eAiBE,YACE,KAAK;EACH,WAAA;;AAEA,eAJJ,YACE,KAAK,IAGF;AACD,eALJ,YACE,KAAK,IAIF;EACC,WAAA;EACA,6BAAA;;AAIF,eAXJ,YAUE,UAAU;AAER,eAZJ,YAUE,UAAU,IAEP;AACD,eAbJ,YAUE,UAAU,IAGP;EACC,WAAA;EACA,yBAAA;;AAIF,eAnBJ,YAkBE,YAAY;AAEV,eApBJ,YAkBE,YAAY,IAET;AACD,eArBJ,YAkBE,YAAY,IAGT;EACC,WAAA;EACA,6BAAA;;AAxCR,eA6CE;EACE,kBAAA;;AACA,eAFF,eAEG;AACD,eAHF,eAGG;EACC,sBAAA;;AAjDN,eA6CE,eAME;EACE,sBAAA;;AApDN,eAwDE;AAxDF,eAyDE;EACE,qBAAA;;AAOE,eAHJ,YAEE,QAAQ;AAEN,eAJJ,YAEE,QAAQ,IAEL;AACD,eALJ,YAEE,QAAQ,IAGL;EACC,yBAAA;EACA,WAAA;;AAIJ,QAA+C;EAiMnD,eA5ME,YAaI,MAAM,eACJ,KAAK;IACH,WAAA;;EACA,eAhBR,YAaI,MAAM,eACJ,KAAK,IAEF;EACD,eAjBR,YAaI,MAAM,eACJ,KAAK,IAGF;IACC,WAAA;IACA,6BAAA;;EAIF,eAvBR,YAaI,MAAM,eASJ,UAAU;EAER,eAxBR,YAaI,MAAM,eASJ,UAAU,IAEP;EACD,eAzBR,YAaI,MAAM,eASJ,UAAU,IAGP;IACC,WAAA;IACA,yBAAA;;EAIF,eA/BR,YAaI,MAAM,eAiBJ,YAAY;EAEV,eAhCR,YAaI,MAAM,eAiBJ,YAAY,IAET;EACD,eAjCR,YAaI,MAAM,eAiBJ,YAAY,IAGT;IACC,WAAA;IACA,6BAAA;;;AAjGZ,eA6GE;EACE,WAAA;;AACA,eAFF,aAEG;EACC,WAAA;;AAhHN,eAoHE;EACE,WAAA;;AACA,eAFF,UAEG;AACD,eAHF,UAGG;EACC,WAAA;;AAIA,eARJ,UAMG,UAEE;AAAD,QADM,UAAW,gBAPrB,UAQK;AACD,eATJ,UAMG,UAGE;AAAD,QAFM,UAAW,gBAPrB,UASK;EACC,WAAA;;AAQR;EACE,sBAAA;EACA,qBAAA;;AAFF,eAIE;EACE,cAAA;;AACA,eAFF,cAEG;AACD,eAHF,cAGG;EACC,WAAA;EACA,6BAAA;;AATN,eAaE;EACE,cAAA;;AAdJ,eAiBE,YACE,KAAK;EACH,cAAA;;AAEA,eAJJ,YACE,KAAK,IAGF;AACD,eALJ,YACE,KAAK,IAIF;EACC,WAAA;EACA,6BAAA;;AAIF,eAXJ,YAUE,UAAU;AAER,eAZJ,YAUE,UAAU,IAEP;AACD,eAbJ,YAUE,UAAU,IAGP;EACC,WAAA;EACA,yBAAA;;AAIF,eAnBJ,YAkBE,YAAY;AAEV,eApBJ,YAkBE,YAAY,IAET;AACD,eArBJ,YAkBE,YAAY,IAGT;EACC,WAAA;EACA,6BAAA;;AAxCR,eA8CE;EACE,kBAAA;;AACA,eAFF,eAEG;AACD,eAHF,eAGG;EACC,sBAAA;;AAlDN,eA8CE,eAME;EACE,sBAAA;;AArDN,eAyDE;AAzDF,eA0DE;EACE,qBAAA;;AAME,eAFJ,YACE,QAAQ;AAEN,eAHJ,YACE,QAAQ,IAEL;AACD,eAJJ,YACE,QAAQ,IAGL;EACC,yBAAA;EACA,WAAA;;AAIJ,QAA+C;EA2DnD,eArEE,YAYI,MAAM,eACJ;IACE,qBAAA;;EAuDV,eArEE,YAYI,MAAM,eAIJ;IACE,yBAAA;;EAoDV,eArEE,YAYI,MAAM,eAOJ,KAAK;IACH,cAAA;;EACA,eArBR,YAYI,MAAM,eAOJ,KAAK,IAEF;EACD,eAtBR,YAYI,MAAM,eAOJ,KAAK,IAGF;IACC,WAAA;IACA,6BAAA;;EAIF,eA5BR,YAYI,MAAM,eAeJ,UAAU;EAER,eA7BR,YAYI,MAAM,eAeJ,UAAU,IAEP;EACD,eA9BR,YAYI,MAAM,eAeJ,UAAU,IAGP;IACC,WAAA;IACA,yBAAA;;EAIF,eApCR,YAYI,MAAM,eAuBJ,YAAY;EAEV,eArCR,YAYI,MAAM,eAuBJ,YAAY,IAET;EACD,eAtCR,YAYI,MAAM,eAuBJ,YAAY,IAGT;IACC,WAAA;IACA,6BAAA;;;AAvGZ,eA8GE;EACE,cAAA;;AACA,eAFF,aAEG;EACC,WAAA;;AAjHN,eAqHE;EACE,cAAA;;AACA,eAFF,UAEG;AACD,eAHF,UAGG;EACC,WAAA;;AAIA,eARJ,UAMG,UAEE;AAAD,QADM,UAAW,gBAPrB,UAQK;AACD,eATJ,UAMG,UAGE;AAAD,QAFM,UAAW,gBAPrB,UASK;EACC,WAAA;;AI1oBR;EACE,iBAAA;EACA,mBAAA;EACA,gBAAA;EACA,6BAAA;EACA,kBAAA;;AALF,WAOE;EACE,qBAAA;;AARJ,WAOE,KAGE,KAAI;EACF,SAAS,YAAT;EACA,cAAA;EACA,cAAA;;AAbN,WAiBE;EACE,cAAA;;ACpBJ;EACE,qBAAA;EACA,eAAA;EACA,cAAA;EACA,kBAAA;;AAJF,WAME;EACE,eAAA;;AAPJ,WAME,KAEE;AARJ,WAME,KAGE;EACE,kBAAA;EACA,WAAA;EACA,gBAAA;EACA,uBAAA;EACA,qBAAA;EACA,cAAA;EACA,yBAAA;EACA,sBAAA;EACA,iBAAA;;AAEF,WAdF,KAcG,YACC;AADF,WAdF,KAcG,YAEC;EACE,cAAA;ERXN,8BAAA;EACG,2BAAA;;AQcD,WArBF,KAqBG,WACC;AADF,WArBF,KAqBG,WAEC;ERzBJ,+BAAA;EACG,4BAAA;;AQgCD,WAFF,KAAK,IAEF;AAAD,WADF,KAAK,OACF;AACD,WAHF,KAAK,IAGF;AAAD,WAFF,KAAK,OAEF;EACC,UAAA;EACA,cAAA;EACA,yBAAA;EACA,kBAAA;;AAMF,WAFF,UAAU;AAER,WADF,UAAU;AAER,WAHF,UAAU,IAGP;AAAD,WAFF,UAAU,OAEP;AACD,WAJF,UAAU,IAIP;AAAD,WAHF,UAAU,OAGP;EACC,UAAA;EACA,WAAA;EACA,yBAAA;EACA,qBAAA;EACA,eAAA;;AAvDN,WA2DE,YACE;AA5DJ,WA2DE,YAEE,OAAM;AA7DV,WA2DE,YAGE,OAAM;AA9DV,WA2DE,YAIE;AA/DJ,WA2DE,YAKE,IAAG;AAhEP,WA2DE,YAME,IAAG;EACD,cAAA;EACA,sBAAA;EACA,kBAAA;EACA,mBAAA;;AASN,cC9EE,KACE;AD6EJ,cC9EE,KAEE;EACE,iBAAA;EACA,eAAA;EACA,sBAAA;;AAEF,cAPF,KAOG,YACC;AADF,cAPF,KAOG,YAEC;ETGJ,8BAAA;EACG,2BAAA;;ASAD,cAbF,KAaG,WACC;AADF,cAbF,KAaG,WAEC;ETXJ,+BAAA;EACG,4BAAA;;AQ8EL,cCnFE,KACE;ADkFJ,cCnFE,KAEE;EACE,gBAAA;EACA,eAAA;EACA,gBAAA;;AAEF,cAPF,KAOG,YACC;AADF,cAPF,KAOG,YAEC;ETGJ,8BAAA;EACG,2BAAA;;ASAD,cAbF,KAaG,WACC;AADF,cAbF,KAaG,WAEC;ETXJ,+BAAA;EACG,4BAAA;;AUHL;EACE,eAAA;EACA,cAAA;EACA,gBAAA;EACA,kBAAA;;AAJF,MAME;EACE,eAAA;;AAPJ,MAME,GAEE;AARJ,MAME,GAGE;EACE,qBAAA;EACA,iBAAA;EACA,yBAAA;EACA,sBAAA;EACA,gBAAA;;AAdN,MAME,GAWE,IAAG;AAjBP,MAME,GAYE,IAAG;EACD,qBAAA;EACA,yBAAA;;AApBN,MAwBE,MACE;AAzBJ,MAwBE,MAEE;EACE,YAAA;;AA3BN,MA+BE,UACE;AAhCJ,MA+BE,UAEE;EACE,WAAA;;AAlCN,MAsCE,UACE;AAvCJ,MAsCE,UAEE,IAAG;AAxCP,MAsCE,UAGE,IAAG;AAzCP,MAsCE,UAIE;EACE,cAAA;EACA,yBAAA;EACA,mBAAA;;AC9CN;EACE,eAAA;EACA,uBAAA;EACA,cAAA;EACA,iBAAA;EACA,cAAA;EACA,WAAA;EACA,kBAAA;EACA,mBAAA;EACA,wBAAA;EACA,oBAAA;;AAIE,CADD,MACE;AACD,CAFD,MAEE;EACC,WAAA;EACA,qBAAA;EACA,eAAA;;AAKJ,MAAC;EACC,aAAA;;AAIF,IAAK;EACH,kBAAA;EACA,SAAA;;AAOJ;ECtCE,yBAAA;;AAGE,cADD,MACE;AACD,cAFD,MAEE;EACC,yBAAA;;ADqCN;EC1CE,yBAAA;;AAGE,cADD,MACE;AACD,cAFD,MAEE;EACC,yBAAA;;ADyCN;EC9CE,yBAAA;;AAGE,cADD,MACE;AACD,cAFD,MAEE;EACC,yBAAA;;AD6CN;EClDE,yBAAA;;AAGE,WADD,MACE;AACD,WAFD,MAEE;EACC,yBAAA;;ADiDN;ECtDE,yBAAA;;AAGE,cADD,MACE;AACD,cAFD,MAEE;EACC,yBAAA;;ADqDN;EC1DE,yBAAA;;AAGE,aADD,MACE;AACD,aAFD,MAEE;EACC,yBAAA;;ACFN;EACE,qBAAA;EACA,eAAA;EACA,gBAAA;EACA,eAAA;EACA,iBAAA;EACA,WAAA;EACA,cAAA;EACA,sBAAA;EACA,mBAAA;EACA,kBAAA;EACA,yBAAA;EACA,kBAAA;;AAGA,MAAC;EACC,aAAA;;AAIF,IAAK;EACH,kBAAA;EACA,SAAA;;AAGF,OAAQ;AACR,aAAc,OAAO;EACnB,MAAA;EACA,gBAAA;;AAKA,CADD,MACE;AACD,CAFD,MAEE;EACC,WAAA;EACA,qBAAA;EACA,eAAA;;AAKJ,gBAAgB,OAAQ;AACxB,UAAW,UAAU,IAAI;EACvB,cAAA;EACA,sBAAA;;AAGF,gBAAiB;EACf,YAAA;;AAGF,gBAAiB,SAAI;EACnB,iBAAA;;AAGF,UAAW,KAAK,IAAI;EAClB,gBAAA;;AC1DJ;EACE,iBAAA;EACA,oBAAA;EACA,mBAAA;EACA,cAAA;EACA,yBAAA;;AALF,UAOE;AAPF,UAQE;EACE,cAAA;;AATJ,UAYE;EACE,mBAAA;EACA,eAAA;EACA,gBAAA;;AAfJ,UAkBE;EACE,yBAAA;;AAGF,UAAW;AACX,gBAAiB;EACf,kBAAA;EACA,kBAAA;EACA,mBAAA;;AA1BJ,UA6BE;EACE,eAAA;;AAGF,mBAA8C;EAgBhD;IAfI,iBAAA;IACA,oBAAA;;EAEA,UAAW;EACX,gBAAiB;IACf,kBAAA;IACA,mBAAA;;EASN,UANI;EAMJ,UALI;IACE,eAAA;;;AtC5CN;EACE,cAAA;EACA,YAAA;EACA,mBAAA;EACA,uBAAA;EACA,sBAAA;EACA,sBAAA;EACA,kBAAA;EHiLA,2CAAA;EACK,sCAAA;EACG,mCAAA;;AG1LV,UAUE;AAVF,UAWE,EAAE;EAEA,iBAAA;EACA,kBAAA;;AAIF,CAAC,UAAC;AACF,CAAC,UAAC;AACF,CAAC,UAAC;EACA,qBAAA;;AArBJ,UAyBE;EACE,YAAA;EACA,cAAA;;AuCzBJ;EACE,aAAA;EACA,mBAAA;EACA,6BAAA;EACA,kBAAA;;AAJF,MAOE;EACE,aAAA;EAEA,cAAA;;AAVJ,MAcE;EACE,gBAAA;;AAfJ,MAmBE;AAnBF,MAoBE;EACE,gBAAA;;AArBJ,MAwBE,IAAI;EACF,eAAA;;AAQJ;AACA;EACE,mBAAA;;AAFF,kBAKE;AAJF,kBAIE;EACE,kBAAA;EACA,SAAA;EACA,YAAA;EACA,cAAA;;AAQJ;ECvDE,yBAAA;EACA,qBAAA;EACA,cAAA;;ADqDF,cCnDE;EACE,yBAAA;;ADkDJ,cChDE;EACE,cAAA;;ADmDJ;EC3DE,yBAAA;EACA,qBAAA;EACA,cAAA;;ADyDF,WCvDE;EACE,yBAAA;;ADsDJ,WCpDE;EACE,cAAA;;ADuDJ;EC/DE,yBAAA;EACA,qBAAA;EACA,cAAA;;AD6DF,cC3DE;EACE,yBAAA;;AD0DJ,cCxDE;EACE,cAAA;;AD2DJ;ECnEE,yBAAA;EACA,qBAAA;EACA,cAAA;;ADiEF,aC/DE;EACE,yBAAA;;AD8DJ,aC5DE;EACE,cAAA;;ACFJ;EACE;IAAQ,2BAAA;;EACR;IAAQ,wBAAA;;;AAIV;EACE;IAAQ,2BAAA;;EACR;IAAQ,wBAAA;;;AAQV;EACE,gBAAA;EACA,YAAA;EACA,mBAAA;EACA,yBAAA;EACA,kBAAA;E5CsCA,sDAAA;EACQ,8CAAA;;A4ClCV;EACE,WAAA;EACA,SAAA;EACA,YAAA;EACA,eAAA;EACA,iBAAA;EACA,WAAA;EACA,kBAAA;EACA,yBAAA;E5CyBA,sDAAA;EACQ,8CAAA;EAyHR,mCAAA;EACK,8BAAA;EACG,2BAAA;;A4C3IV,iBAAkB;AAClB;ECAI,kBAAkB,2LAAlB;EACA,kBAAkB,sLAAlB;EACA,kBAAkB,mLAAlB;E3BxCA,kBAAkB,kQAAlB;E0BwCF,0BAAA;;AAOF,SAAS,OAAQ;AACjB,aAAa;E5C7CX,0DAAA;EACK,qDAAA;EACG,kDAAA;;A4CmDV;EErEE,yBAAA;;AAGA,iBAAkB;EDgDhB,kBAAkB,2LAAlB;EACA,kBAAkB,sLAAlB;EACA,kBAAkB,mLAAlB;E3BxCA,kBAAkB,kQAAlB;;A0B4DJ;EEzEE,yBAAA;;AAGA,iBAAkB;EDgDhB,kBAAkB,2LAAlB;EACA,kBAAkB,sLAAlB;EACA,kBAAkB,mLAAlB;E3BxCA,kBAAkB,kQAAlB;;A0BgEJ;EE7EE,yBAAA;;AAGA,iBAAkB;EDgDhB,kBAAkB,2LAAlB;EACA,kBAAkB,sLAAlB;EACA,kBAAkB,mLAAlB;E3BxCA,kBAAkB,kQAAlB;;A0BoEJ;EEjFE,yBAAA;;AAGA,iBAAkB;EDgDhB,kBAAkB,2LAAlB;EACA,kBAAkB,sLAAlB;EACA,kBAAkB,mLAAlB;E3BxCA,kBAAkB,kQAAlB;;A6BhBJ;EAEE,gBAAA;;AAEA,MAAC;EACC,aAAA;;AAIJ;AACA;EACE,OAAA;EACA,gBAAA;;AAGF;EACE,cAAA;;AAGF;EACE,cAAA;;AAGA,aAAC;EACC,eAAA;;AAIJ;AACA,MAAO;EACL,kBAAA;;AAGF;AACA,MAAO;EACL,mBAAA;;AAGF;AACA;AACA;EACE,mBAAA;EACA,mBAAA;;AAGF;EACE,sBAAA;;AAGF;EACE,sBAAA;;AAIF;EACE,aAAA;EACA,kBAAA;;AAMF;EACE,eAAA;EACA,gBAAA;;ACvDF;EAEE,mBAAA;EACA,eAAA;;AAQF;EACE,kBAAA;EACA,cAAA;EACA,kBAAA;EAEA,mBAAA;EACA,sBAAA;EACA,yBAAA;;AAGA,gBAAC;ErB3BD,0BAAA;EACC,yBAAA;;AqB6BD,gBAAC;EACC,gBAAA;ErBvBF,6BAAA;EACC,4BAAA;;AqBiCH,CAAC;AACD,MAAM;EACJ,WAAA;;AAFF,CAAC,gBAIC;AAHF,MAAM,gBAGJ;EACE,WAAA;;AAIF,CATD,gBASE;AAAD,MARI,gBAQH;AACD,CAVD,gBAUE;AAAD,MATI,gBASH;EACC,qBAAA;EACA,WAAA;EACA,yBAAA;;AAIJ,MAAM;EACJ,WAAA;EACA,gBAAA;;AAKA,gBAAC;AACD,gBAAC,SAAS;AACV,gBAAC,SAAS;EACR,yBAAA;EACA,cAAA;EACA,mBAAA;;AALF,gBAAC,SAQC;AAPF,gBAAC,SAAS,MAOR;AANF,gBAAC,SAAS,MAMR;EACE,cAAA;;AATJ,gBAAC,SAWC;AAVF,gBAAC,SAAS,MAUR;AATF,gBAAC,SAAS,MASR;EACE,cAAA;;AAKJ,gBAAC;AACD,gBAAC,OAAO;AACR,gBAAC,OAAO;EACN,UAAA;EACA,WAAA;EACA,yBAAA;EACA,qBAAA;;AANF,gBAAC,OASC;AARF,gBAAC,OAAO,MAQN;AAPF,gBAAC,OAAO,MAON;AATF,gBAAC,OAUC,yBAAyB;AAT3B,gBAAC,OAAO,MASN,yBAAyB;AAR3B,gBAAC,OAAO,MAQN,yBAAyB;AAV3B,gBAAC,OAWC,yBAAyB;AAV3B,gBAAC,OAAO,MAUN,yBAAyB;AAT3B,gBAAC,OAAO,MASN,yBAAyB;EACvB,cAAA;;AAZJ,gBAAC,OAcC;AAbF,gBAAC,OAAO,MAaN;AAZF,gBAAC,OAAO,MAYN;EACE,cAAA;;AClGJ,iBAAiB;EACf,cAAA;EACA,yBAAA;;AAEA,CAAC,iBAJc;AAKf,MAAM,iBALS;EAMb,cAAA;;AAFF,CAAC,iBAJc,OAQb;AAHF,MAAM,iBALS,OAQb;EACE,cAAA;;AAGF,CARD,iBAJc,OAYZ;AAAD,MAPI,iBALS,OAYZ;AACD,CATD,iBAJc,OAaZ;AAAD,MARI,iBALS,OAaZ;EACC,cAAA;EACA,yBAAA;;AAEF,CAbD,iBAJc,OAiBZ;AAAD,MAZI,iBALS,OAiBZ;AACD,CAdD,iBAJc,OAkBZ,OAAO;AAAR,MAbI,iBALS,OAkBZ,OAAO;AACR,CAfD,iBAJc,OAmBZ,OAAO;AAAR,MAdI,iBALS,OAmBZ,OAAO;EACN,WAAA;EACA,yBAAA;EACA,qBAAA;;AAtBN,iBAAiB;EACf,cAAA;EACA,yBAAA;;AAEA,CAAC,iBAJc;AAKf,MAAM,iBALS;EAMb,cAAA;;AAFF,CAAC,iBAJc,IAQb;AAHF,MAAM,iBALS,IAQb;EACE,cAAA;;AAGF,CARD,iBAJc,IAYZ;AAAD,MAPI,iBALS,IAYZ;AACD,CATD,iBAJc,IAaZ;AAAD,MARI,iBALS,IAaZ;EACC,cAAA;EACA,yBAAA;;AAEF,CAbD,iBAJc,IAiBZ;AAAD,MAZI,iBALS,IAiBZ;AACD,CAdD,iBAJc,IAkBZ,OAAO;AAAR,MAbI,iBALS,IAkBZ,OAAO;AACR,CAfD,iBAJc,IAmBZ,OAAO;AAAR,MAdI,iBALS,IAmBZ,OAAO;EACN,WAAA;EACA,yBAAA;EACA,qBAAA;;AAtBN,iBAAiB;EACf,cAAA;EACA,yBAAA;;AAEA,CAAC,iBAJc;AAKf,MAAM,iBALS;EAMb,cAAA;;AAFF,CAAC,iBAJc,OAQb;AAHF,MAAM,iBALS,OAQb;EACE,cAAA;;AAGF,CARD,iBAJc,OAYZ;AAAD,MAPI,iBALS,OAYZ;AACD,CATD,iBAJc,OAaZ;AAAD,MARI,iBALS,OAaZ;EACC,cAAA;EACA,yBAAA;;AAEF,CAbD,iBAJc,OAiBZ;AAAD,MAZI,iBALS,OAiBZ;AACD,CAdD,iBAJc,OAkBZ,OAAO;AAAR,MAbI,iBALS,OAkBZ,OAAO;AACR,CAfD,iBAJc,OAmBZ,OAAO;AAAR,MAdI,iBALS,OAmBZ,OAAO;EACN,WAAA;EACA,yBAAA;EACA,qBAAA;;AAtBN,iBAAiB;EACf,cAAA;EACA,yBAAA;;AAEA,CAAC,iBAJc;AAKf,MAAM,iBALS;EAMb,cAAA;;AAFF,CAAC,iBAJc,MAQb;AAHF,MAAM,iBALS,MAQb;EACE,cAAA;;AAGF,CARD,iBAJc,MAYZ;AAAD,MAPI,iBALS,MAYZ;AACD,CATD,iBAJc,MAaZ;AAAD,MARI,iBALS,MAaZ;EACC,cAAA;EACA,yBAAA;;AAEF,CAbD,iBAJc,MAiBZ;AAAD,MAZI,iBALS,MAiBZ;AACD,CAdD,iBAJc,MAkBZ,OAAO;AAAR,MAbI,iBALS,MAkBZ,OAAO;AACR,CAfD,iBAJc,MAmBZ,OAAO;AAAR,MAdI,iBALS,MAmBZ,OAAO;EACN,WAAA;EACA,yBAAA;EACA,qBAAA;;ADiGR;EACE,aAAA;EACA,kBAAA;;AAEF;EACE,gBAAA;EACA,gBAAA;;AE1HF;EACE,mBAAA;EACA,sBAAA;EACA,6BAAA;EACA,kBAAA;ElD0DA,iDAAA;EACQ,yCAAA;;AkDtDV;EACE,aAAA;;AAKF;EACE,kBAAA;EACA,oCAAA;EvBpBA,4BAAA;EACC,2BAAA;;AuBiBH,cAKE,YAAY;EACV,cAAA;;AAKJ;EACE,aAAA;EACA,gBAAA;EACA,eAAA;EACA,cAAA;;AAJF,YAME;AANF,YAOE;AAPF,YAQE;AARF,YASE,QAAQ;AATV,YAUE,SAAS;EACP,cAAA;;AAKJ;EACE,kBAAA;EACA,yBAAA;EACA,6BAAA;EvBxCA,+BAAA;EACC,8BAAA;;AuBiDH,MACE;AADF,MAEE,kBAAkB;EAChB,gBAAA;;AAHJ,MACE,cAIE;AALJ,MAEE,kBAAkB,cAGhB;EACE,mBAAA;EACA,gBAAA;;AAIF,MAVF,cAUG,YACC,iBAAgB;AADlB,MATF,kBAAkB,cASf,YACC,iBAAgB;EACd,aAAA;EvBvEN,4BAAA;EACC,2BAAA;;AuB4EC,MAlBF,cAkBG,WACC,iBAAgB;AADlB,MAjBF,kBAAkB,cAiBf,WACC,iBAAgB;EACd,gBAAA;EvBvEN,+BAAA;EACC,8BAAA;;AuBiDH,MA0BE,iBAAiB,kBAAkB,cACjC,iBAAgB;EvBrFlB,0BAAA;EACC,yBAAA;;AuB0FH,cAAe,cACb,iBAAgB;EACd,mBAAA;;AAGJ,WAAY;EACV,mBAAA;;AAQF,MACE;AADF,MAEE,oBAAoB;AAFtB,MAGE,kBAAkB;EAChB,gBAAA;;AAJJ,MACE,SAKE;AANJ,MAEE,oBAAoB,SAIlB;AANJ,MAGE,kBAAkB,SAGhB;EACE,kBAAA;EACA,mBAAA;;AARN,MAYE,SAAQ;AAZV,MAaE,oBAAmB,YAAa,SAAQ;EvBtHxC,4BAAA;EACC,2BAAA;;AuBwGH,MAYE,SAAQ,YAIN,QAAO,YAEL,KAAI;AAlBV,MAaE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YAEL,KAAI;AAlBV,MAYE,SAAQ,YAKN,QAAO,YACL,KAAI;AAlBV,MAaE,oBAAmB,YAAa,SAAQ,YAItC,QAAO,YACL,KAAI;EACF,2BAAA;EACA,4BAAA;;AApBR,MAYE,SAAQ,YAIN,QAAO,YAEL,KAAI,YAIF,GAAE;AAtBV,MAaE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YAEL,KAAI,YAIF,GAAE;AAtBV,MAYE,SAAQ,YAKN,QAAO,YACL,KAAI,YAIF,GAAE;AAtBV,MAaE,oBAAmB,YAAa,SAAQ,YAItC,QAAO,YACL,KAAI,YAIF,GAAE;AAtBV,MAYE,SAAQ,YAIN,QAAO,YAEL,KAAI,YAKF,GAAE;AAvBV,MAaE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YAEL,KAAI,YAKF,GAAE;AAvBV,MAYE,SAAQ,YAKN,QAAO,YACL,KAAI,YAKF,GAAE;AAvBV,MAaE,oBAAmB,YAAa,SAAQ,YAItC,QAAO,YACL,KAAI,YAKF,GAAE;EACA,2BAAA;;AAxBV,MAYE,SAAQ,YAIN,QAAO,YAEL,KAAI,YAQF,GAAE;AA1BV,MAaE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YAEL,KAAI,YAQF,GAAE;AA1BV,MAYE,SAAQ,YAKN,QAAO,YACL,KAAI,YAQF,GAAE;AA1BV,MAaE,oBAAmB,YAAa,SAAQ,YAItC,QAAO,YACL,KAAI,YAQF,GAAE;AA1BV,MAYE,SAAQ,YAIN,QAAO,YAEL,KAAI,YASF,GAAE;AA3BV,MAaE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YAEL,KAAI,YASF,GAAE;AA3BV,MAYE,SAAQ,YAKN,QAAO,YACL,KAAI,YASF,GAAE;AA3BV,MAaE,oBAAmB,YAAa,SAAQ,YAItC,QAAO,YACL,KAAI,YASF,GAAE;EACA,4BAAA;;AA5BV,MAkCE,SAAQ;AAlCV,MAmCE,oBAAmB,WAAY,SAAQ;EvBpIvC,+BAAA;EACC,8BAAA;;AuBgGH,MAkCE,SAAQ,WAIN,QAAO,WAEL,KAAI;AAxCV,MAmCE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WAEL,KAAI;AAxCV,MAkCE,SAAQ,WAKN,QAAO,WACL,KAAI;AAxCV,MAmCE,oBAAmB,WAAY,SAAQ,WAIrC,QAAO,WACL,KAAI;EACF,8BAAA;EACA,+BAAA;;AA1CR,MAkCE,SAAQ,WAIN,QAAO,WAEL,KAAI,WAIF,GAAE;AA5CV,MAmCE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WAEL,KAAI,WAIF,GAAE;AA5CV,MAkCE,SAAQ,WAKN,QAAO,WACL,KAAI,WAIF,GAAE;AA5CV,MAmCE,oBAAmB,WAAY,SAAQ,WAIrC,QAAO,WACL,KAAI,WAIF,GAAE;AA5CV,MAkCE,SAAQ,WAIN,QAAO,WAEL,KAAI,WAKF,GAAE;AA7CV,MAmCE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WAEL,KAAI,WAKF,GAAE;AA7CV,MAkCE,SAAQ,WAKN,QAAO,WACL,KAAI,WAKF,GAAE;AA7CV,MAmCE,oBAAmB,WAAY,SAAQ,WAIrC,QAAO,WACL,KAAI,WAKF,GAAE;EACA,8BAAA;;AA9CV,MAkCE,SAAQ,WAIN,QAAO,WAEL,KAAI,WAQF,GAAE;AAhDV,MAmCE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WAEL,KAAI,WAQF,GAAE;AAhDV,MAkCE,SAAQ,WAKN,QAAO,WACL,KAAI,WAQF,GAAE;AAhDV,MAmCE,oBAAmB,WAAY,SAAQ,WAIrC,QAAO,WACL,KAAI,WAQF,GAAE;AAhDV,MAkCE,SAAQ,WAIN,QAAO,WAEL,KAAI,WASF,GAAE;AAjDV,MAmCE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WAEL,KAAI,WASF,GAAE;AAjDV,MAkCE,SAAQ,WAKN,QAAO,WACL,KAAI,WASF,GAAE;AAjDV,MAmCE,oBAAmB,WAAY,SAAQ,WAIrC,QAAO,WACL,KAAI,WASF,GAAE;EACA,+BAAA;;AAlDV,MAuDE,cAAc;AAvDhB,MAwDE,cAAc;AAxDhB,MAyDE,SAAS;AAzDX,MA0DE,oBAAoB;EAClB,6BAAA;;AA3DJ,MA6DE,SAAS,QAAO,YAAa,KAAI,YAAa;AA7DhD,MA8DE,SAAS,QAAO,YAAa,KAAI,YAAa;EAC5C,aAAA;;AA/DJ,MAiEE;AAjEF,MAkEE,oBAAoB;EAClB,SAAA;;AAnEJ,MAiEE,kBAGE,QAGE,KACE,KAAI;AAxEZ,MAkEE,oBAAoB,kBAElB,QAGE,KACE,KAAI;AAxEZ,MAiEE,kBAIE,QAEE,KACE,KAAI;AAxEZ,MAkEE,oBAAoB,kBAGlB,QAEE,KACE,KAAI;AAxEZ,MAiEE,kBAKE,QACE,KACE,KAAI;AAxEZ,MAkEE,oBAAoB,kBAIlB,QACE,KACE,KAAI;AAxEZ,MAiEE,kBAGE,QAGE,KAEE,KAAI;AAzEZ,MAkEE,oBAAoB,kBAElB,QAGE,KAEE,KAAI;AAzEZ,MAiEE,kBAIE,QAEE,KAEE,KAAI;AAzEZ,MAkEE,oBAAoB,kBAGlB,QAEE,KAEE,KAAI;AAzEZ,MAiEE,kBAKE,QACE,KAEE,KAAI;AAzEZ,MAkEE,oBAAoB,kBAIlB,QACE,KAEE,KAAI;EACF,cAAA;;AA1EV,MAiEE,kBAGE,QAGE,KAKE,KAAI;AA5EZ,MAkEE,oBAAoB,kBAElB,QAGE,KAKE,KAAI;AA5EZ,MAiEE,kBAIE,QAEE,KAKE,KAAI;AA5EZ,MAkEE,oBAAoB,kBAGlB,QAEE,KAKE,KAAI;AA5EZ,MAiEE,kBAKE,QACE,KAKE,KAAI;AA5EZ,MAkEE,oBAAoB,kBAIlB,QACE,KAKE,KAAI;AA5EZ,MAiEE,kBAGE,QAGE,KAME,KAAI;AA7EZ,MAkEE,oBAAoB,kBAElB,QAGE,KAME,KAAI;AA7EZ,MAiEE,kBAIE,QAEE,KAME,KAAI;AA7EZ,MAkEE,oBAAoB,kBAGlB,QAEE,KAME,KAAI;AA7EZ,MAiEE,kBAKE,QACE,KAME,KAAI;AA7EZ,MAkEE,oBAAoB,kBAIlB,QACE,KAME,KAAI;EACF,eAAA;;AA9EV,MAiEE,kBAiBE,QAEE,KAAI,YACF;AArFR,MAkEE,oBAAoB,kBAgBlB,QAEE,KAAI,YACF;AArFR,MAiEE,kBAkBE,QACE,KAAI,YACF;AArFR,MAkEE,oBAAoB,kBAiBlB,QACE,KAAI,YACF;AArFR,MAiEE,kBAiBE,QAEE,KAAI,YAEF;AAtFR,MAkEE,oBAAoB,kBAgBlB,QAEE,KAAI,YAEF;AAtFR,MAiEE,kBAkBE,QACE,KAAI,YAEF;AAtFR,MAkEE,oBAAoB,kBAiBlB,QACE,KAAI,YAEF;EACE,gBAAA;;AAvFV,MAiEE,kBA0BE,QAEE,KAAI,WACF;AA9FR,MAkEE,oBAAoB,kBAyBlB,QAEE,KAAI,WACF;AA9FR,MAiEE,kBA2BE,QACE,KAAI,WACF;AA9FR,MAkEE,oBAAoB,kBA0BlB,QACE,KAAI,WACF;AA9FR,MAiEE,kBA0BE,QAEE,KAAI,WAEF;AA/FR,MAkEE,oBAAoB,kBAyBlB,QAEE,KAAI,WAEF;AA/FR,MAiEE,kBA2BE,QACE,KAAI,WAEF;AA/FR,MAkEE,oBAAoB,kBA0BlB,QACE,KAAI,WAEF;EACE,gBAAA;;AAhGV,MAqGE;EACE,SAAA;EACA,gBAAA;;AAUJ;EACE,mBAAA;;AADF,YAIE;EACE,gBAAA;EACA,kBAAA;;AANJ,YAIE,OAIE;EACE,eAAA;;AATN,YAaE;EACE,gBAAA;;AAdJ,YAaE,eAGE,kBAAkB;AAhBtB,YAaE,eAIE,kBAAkB;EAChB,6BAAA;;AAlBN,YAsBE;EACE,aAAA;;AAvBJ,YAsBE,cAEE,kBAAkB;EAChB,gCAAA;;AAON;EC1PE,kBAAA;;AAEA,cAAE;EACA,cAAA;EACA,yBAAA;EACA,kBAAA;;AAHF,cAAE,iBAKA,kBAAkB;EAChB,sBAAA;;AANJ,cAAE,iBAQA;EACE,cAAA;EACA,yBAAA;;AAGJ,cAAE,gBACA,kBAAkB;EAChB,yBAAA;;AD4ON;EC7PE,qBAAA;;AAEA,cAAE;EACA,WAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,cAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AANJ,cAAE,iBAQA;EACE,cAAA;EACA,sBAAA;;AAGJ,cAAE,gBACA,kBAAkB;EAChB,4BAAA;;AD+ON;EChQE,qBAAA;;AAEA,cAAE;EACA,WAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,cAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AANJ,cAAE,iBAQA;EACE,cAAA;EACA,sBAAA;;AAGJ,cAAE,gBACA,kBAAkB;EAChB,4BAAA;;ADkPN;ECnQE,qBAAA;;AAEA,WAAE;EACA,WAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,WAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AANJ,WAAE,iBAQA;EACE,cAAA;EACA,sBAAA;;AAGJ,WAAE,gBACA,kBAAkB;EAChB,4BAAA;;ADqPN;ECtQE,qBAAA;;AAEA,cAAE;EACA,WAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,cAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AANJ,cAAE,iBAQA;EACE,cAAA;EACA,sBAAA;;AAGJ,cAAE,gBACA,kBAAkB;EAChB,4BAAA;;ADwPN;ECzQE,qBAAA;;AAEA,aAAE;EACA,WAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,aAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AANJ,aAAE,iBAQA;EACE,cAAA;EACA,sBAAA;;AAGJ,aAAE,gBACA,kBAAkB;EAChB,4BAAA;;AChBN;EACE,kBAAA;EACA,cAAA;EACA,SAAA;EACA,UAAA;EACA,gBAAA;;AALF,iBAOE;AAPF,iBAQE;AARF,iBASE;AATF,iBAUE;AAVF,iBAWE;EACE,kBAAA;EACA,MAAA;EACA,OAAA;EACA,SAAA;EACA,YAAA;EACA,WAAA;EACA,SAAA;;AAKJ;EACE,sBAAA;;AAIF;EACE,mBAAA;;AC3BF;EACE,gBAAA;EACA,aAAA;EACA,mBAAA;EACA,yBAAA;EACA,yBAAA;EACA,kBAAA;ErDwDA,uDAAA;EACQ,+CAAA;;AqD/DV,KAQE;EACE,kBAAA;EACA,iCAAA;;AAKJ;EACE,aAAA;EACA,kBAAA;;AAEF;EACE,YAAA;EACA,kBAAA;;ACtBF;EACE,YAAA;EACA,eAAA;EACA,iBAAA;EACA,cAAA;EACA,WAAA;EACA,yBAAA;EjCRA,YAAA;EAGA,yBAAA;;AiCQA,MAAC;AACD,MAAC;EACC,WAAA;EACA,qBAAA;EACA,eAAA;EjCfF,YAAA;EAGA,yBAAA;;AiCoBA,MAAM;EACJ,UAAA;EACA,eAAA;EACA,uBAAA;EACA,SAAA;EACA,wBAAA;;ACrBJ;EACE,gBAAA;;AAIF;EACE,aAAA;EACA,gBAAA;EACA,eAAA;EACA,MAAA;EACA,QAAA;EACA,SAAA;EACA,OAAA;EACA,aAAA;EACA,iCAAA;EAIA,UAAA;;AAGA,MAAC,KAAM;EvD+GP,mBAAmB,kBAAnB;EACI,eAAe,kBAAf;EACC,cAAc,kBAAd;EACG,WAAW,kBAAX;EAkER,mDAAA;EACG,6CAAA;EACE,yCAAA;EACG,mCAAA;;AuDnLR,MAAC,GAAI;EvD2GL,mBAAmB,eAAnB;EACI,eAAe,eAAf;EACC,cAAc,eAAd;EACG,WAAW,eAAX;;AuD5GV,WAAY;EACV,kBAAA;EACA,gBAAA;;AAIF;EACE,kBAAA;EACA,WAAA;EACA,YAAA;;AAIF;EACE,kBAAA;EACA,sBAAA;EACA,sBAAA;EACA,oCAAA;EACA,kBAAA;EvDaA,gDAAA;EACQ,wCAAA;EuDZR,4BAAA;EAEA,UAAA;;AAIF;EACE,eAAA;EACA,MAAA;EACA,QAAA;EACA,SAAA;EACA,OAAA;EACA,aAAA;EACA,sBAAA;;AAEA,eAAC;ElCrED,UAAA;EAGA,wBAAA;;AkCmEA,eAAC;ElCtED,YAAA;EAGA,yBAAA;;AkCwEF;EACE,aAAA;EACA,gCAAA;;AAIF,aAAc;EACZ,gBAAA;;AAIF;EACE,SAAA;EACA,uBAAA;;AAKF;EACE,kBAAA;EACA,aAAA;;AAIF;EACE,aAAA;EACA,iBAAA;EACA,6BAAA;;AAHF,aAOE,KAAK;EACH,gBAAA;EACA,gBAAA;;AATJ,aAYE,WAAW,KAAK;EACd,iBAAA;;AAbJ,aAgBE,WAAW;EACT,cAAA;;AAKJ;EACE,kBAAA;EACA,YAAA;EACA,WAAA;EACA,YAAA;EACA,gBAAA;;AAIF,QAAmC;EAEjC;IACE,YAAA;IACA,iBAAA;;EAEF;IvDvEA,iDAAA;IACQ,yCAAA;;EuD2ER;IAAY,YAAA;;;AAGd,QAAmC;EACjC;IAAY,YAAA;;;AC9Id;EACE,kBAAA;EACA,aAAA;EACA,cAAA;ECRA,axDgckE,yCwDhclE;EAEA,kBAAA;EACA,mBAAA;EACA,sBAAA;EACA,gBAAA;EACA,uBAAA;EACA,gBAAA;EACA,iBAAA;EACA,qBAAA;EACA,iBAAA;EACA,oBAAA;EACA,mBAAA;EACA,kBAAA;EACA,oBAAA;EACA,iBAAA;EDHA,eAAA;EnCVA,UAAA;EAGA,wBAAA;;AmCWA,QAAC;EnCdD,YAAA;EAGA,yBAAA;;AmCYA,QAAC;EAAU,gBAAA;EAAmB,cAAA;;AAC9B,QAAC;EAAU,gBAAA;EAAmB,cAAA;;AAC9B,QAAC;EAAU,eAAA;EAAmB,cAAA;;AAC9B,QAAC;EAAU,iBAAA;EAAmB,cAAA;;AAIhC;EACE,gBAAA;EACA,gBAAA;EACA,WAAA;EACA,kBAAA;EACA,yBAAA;EACA,kBAAA;;AAIF;EACE,kBAAA;EACA,QAAA;EACA,SAAA;EACA,yBAAA;EACA,mBAAA;;AAIA,QAAC,IAAK;EACJ,SAAA;EACA,SAAA;EACA,iBAAA;EACA,uBAAA;EACA,yBAAA;;AAEF,QAAC,SAAU;EACT,SAAA;EACA,UAAA;EACA,mBAAA;EACA,uBAAA;EACA,yBAAA;;AAEF,QAAC,UAAW;EACV,SAAA;EACA,SAAA;EACA,mBAAA;EACA,uBAAA;EACA,yBAAA;;AAEF,QAAC,MAAO;EACN,QAAA;EACA,OAAA;EACA,gBAAA;EACA,2BAAA;EACA,2BAAA;;AAEF,QAAC,KAAM;EACL,QAAA;EACA,QAAA;EACA,gBAAA;EACA,2BAAA;EACA,0BAAA;;AAEF,QAAC,OAAQ;EACP,MAAA;EACA,SAAA;EACA,iBAAA;EACA,uBAAA;EACA,4BAAA;;AAEF,QAAC,YAAa;EACZ,MAAA;EACA,UAAA;EACA,gBAAA;EACA,uBAAA;EACA,4BAAA;;AAEF,QAAC,aAAc;EACb,MAAA;EACA,SAAA;EACA,gBAAA;EACA,uBAAA;EACA,4BAAA;;AE7FJ;EACE,kBAAA;EACA,MAAA;EACA,OAAA;EACA,aAAA;EACA,aAAA;EACA,gBAAA;EACA,YAAA;EDXA,axDgckE,yCwDhclE;EAEA,kBAAA;EACA,mBAAA;EACA,sBAAA;EACA,gBAAA;EACA,uBAAA;EACA,gBAAA;EACA,iBAAA;EACA,qBAAA;EACA,iBAAA;EACA,oBAAA;EACA,mBAAA;EACA,kBAAA;EACA,oBAAA;EACA,iBAAA;ECAA,eAAA;EAEA,sBAAA;EACA,4BAAA;EACA,sBAAA;EACA,sBAAA;EACA,kBAAA;E1D8CA,iDAAA;EACQ,yCAAA;;A0D3CR,QAAC;EAAW,iBAAA;;AACZ,QAAC;EAAW,iBAAA;;AACZ,QAAC;EAAW,gBAAA;;AACZ,QAAC;EAAW,kBAAA;;AAGd;EACE,SAAA;EACA,iBAAA;EACA,eAAA;EACA,yBAAA;EACA,gCAAA;EACA,0BAAA;;AAGF;EACE,iBAAA;;AAQA,QADO;AAEP,QAFO,SAEN;EACC,kBAAA;EACA,cAAA;EACA,QAAA;EACA,SAAA;EACA,yBAAA;EACA,mBAAA;;AAGJ,QAAS;EACP,kBAAA;;AAEF,QAAS,SAAQ;EACf,kBAAA;EACA,SAAS,EAAT;;AAIA,QAAC,IAAK;EACJ,SAAA;EACA,kBAAA;EACA,sBAAA;EACA,yBAAA;EACA,sBAAA;EACA,aAAA;;AACA,QAPD,IAAK,SAOH;EACC,SAAS,GAAT;EACA,WAAA;EACA,kBAAA;EACA,sBAAA;EACA,sBAAA;;AAGJ,QAAC,MAAO;EACN,QAAA;EACA,WAAA;EACA,iBAAA;EACA,oBAAA;EACA,2BAAA;EACA,wBAAA;;AACA,QAPD,MAAO,SAOL;EACC,SAAS,GAAT;EACA,SAAA;EACA,aAAA;EACA,oBAAA;EACA,wBAAA;;AAGJ,QAAC,OAAQ;EACP,SAAA;EACA,kBAAA;EACA,mBAAA;EACA,4BAAA;EACA,yBAAA;EACA,UAAA;;AACA,QAPD,OAAQ,SAON;EACC,SAAS,GAAT;EACA,QAAA;EACA,kBAAA;EACA,mBAAA;EACA,yBAAA;;AAIJ,QAAC,KAAM;EACL,QAAA;EACA,YAAA;EACA,iBAAA;EACA,qBAAA;EACA,0BAAA;EACA,uBAAA;;AACA,QAPD,KAAM,SAOJ;EACC,SAAS,GAAT;EACA,UAAA;EACA,qBAAA;EACA,uBAAA;EACA,aAAA;;AtDzHN;EACE,kBAAA;;AAGF;EACE,kBAAA;EACA,gBAAA;EACA,WAAA;;AAHF,eAKE;EACE,aAAA;EACA,kBAAA;EJ6KF,yCAAA;EACK,oCAAA;EACG,iCAAA;;AItLV,eAKE,QAME;AAXJ,eAKE,QAOE,IAAI;EAEF,cAAA;;AAIF;EAkPJ,eA/PE;IJoMA,sDAAA;IACG,gDAAA;IACE,4CAAA;IACG,sCAAA;IA7JR,mCAAA;IACG,gCAAA;IACK,2BAAA;IA+GR,2BAAA;IACG,wBAAA;IACK,mBAAA;;EI3IJ,eAlBJ,QAkBK;EACD,eAnBJ,QAmBK,OAAO;IJkHZ,mBAAmB,uBAAnB;IACQ,WAAW,uBAAX;IIjHF,OAAA;;EAEF,eAvBJ,QAuBK;EACD,eAxBJ,QAwBK,OAAO;IJ6GZ,mBAAmB,wBAAnB;IACQ,WAAW,wBAAX;II5GF,OAAA;;EAEF,eA5BJ,QA4BK,KAAK;EACN,eA7BJ,QA6BK,KAAK;EACN,eA9BJ,QA8BK;IJuGL,mBAAmB,oBAAnB;IACQ,WAAW,oBAAX;IItGF,OAAA;;;AArCR,eA0CE;AA1CF,eA2CE;AA3CF,eA4CE;EACE,cAAA;;AA7CJ,eAgDE;EACE,OAAA;;AAjDJ,eAoDE;AApDF,eAqDE;EACE,kBAAA;EACA,MAAA;EACA,WAAA;;AAxDJ,eA2DE;EACE,UAAA;;AA5DJ,eA8DE;EACE,WAAA;;AA/DJ,eAiEE,QAAO;AAjET,eAkEE,QAAO;EACL,OAAA;;AAnEJ,eAsEE,UAAS;EACP,WAAA;;AAvEJ,eAyEE,UAAS;EACP,UAAA;;AAQJ;EACE,kBAAA;EACA,MAAA;EACA,OAAA;EACA,SAAA;EACA,UAAA;EiB9FA,YAAA;EAGA,yBAAA;EjB6FA,eAAA;EACA,WAAA;EACA,kBAAA;EACA,yCAAA;EACA,kCAAA;;AAKA,iBAAC;EyCnGC,kBAAkB,gFAAlB;EACA,kBAAkB,2EAAlB;EACA,kBAAkB,4EAAlB;EACA,2BAAA;EACA,QAAQ,8GAAR;;AzCkGF,iBAAC;EACC,UAAA;EACA,QAAA;EyCxGA,kBAAkB,gFAAlB;EACA,kBAAkB,2EAAlB;EACA,kBAAkB,4EAAlB;EACA,2BAAA;EACA,QAAQ,8GAAR;;AzCyGF,iBAAC;AACD,iBAAC;EACC,UAAA;EACA,WAAA;EACA,qBAAA;EiBvHF,YAAA;EAGA,yBAAA;;AjBsFF,iBAmCE;AAnCF,iBAoCE;AApCF,iBAqCE;AArCF,iBAsCE;EACE,kBAAA;EACA,QAAA;EACA,iBAAA;EACA,UAAA;EACA,qBAAA;;AA3CJ,iBA6CE;AA7CF,iBA8CE;EACE,SAAA;EACA,kBAAA;;AAhDJ,iBAkDE;AAlDF,iBAmDE;EACE,UAAA;EACA,mBAAA;;AArDJ,iBAuDE;AAvDF,iBAwDE;EACE,WAAA;EACA,YAAA;EACA,cAAA;EACA,kBAAA;;AAKA,iBADF,WACG;EACC,SAAS,OAAT;;AAIF,iBADF,WACG;EACC,SAAS,OAAT;;AAUN;EACE,kBAAA;EACA,YAAA;EACA,SAAA;EACA,WAAA;EACA,UAAA;EACA,iBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AATF,oBAWE;EACE,qBAAA;EACA,WAAA;EACA,YAAA;EACA,WAAA;EACA,mBAAA;EACA,sBAAA;EACA,mBAAA;EACA,eAAA;EAWA,yBAAA;EACA,kCAAA;;AA/BJ,oBAiCE;EACE,SAAA;EACA,WAAA;EACA,YAAA;EACA,sBAAA;;AAOJ;EACE,kBAAA;EACA,SAAA;EACA,UAAA;EACA,YAAA;EACA,WAAA;EACA,iBAAA;EACA,oBAAA;EACA,WAAA;EACA,kBAAA;EACA,yCAAA;;AACA,iBAAE;EACA,iBAAA;;AAMJ,mBAA8C;EAG5C,iBACE;EADF,iBAEE;EAFF,iBAGE;EAHF,iBAIE;IACE,WAAA;IACA,YAAA;IACA,iBAAA;IACA,eAAA;;EARJ,iBAUE;EAVF,iBAWE;IACE,kBAAA;;EAZJ,iBAcE;EAdF,iBAeE;IACE,mBAAA;;EAKJ;IACE,SAAA;IACA,UAAA;IACA,oBAAA;;EAIF;IACE,YAAA;;;AuD9PF,SAAC;AACD,SAAC;ArDkMH,cACE,GqDpMC;ArDmMH,cACE,GqDnMC;AhDLH,UgDIG;AhDJH,UgDKG;AhDeH,gBgDhBG;AhDgBH,gBgDfG;AhDwBH,IgDzBG;AhDyBH,IgDxBG;A3CuhBH,gBAqBE,Y2C7iBC;A3CwhBH,gBAqBE,Y2C5iBC;ArCoBH,YqCrBG;ArCqBH,YqCpBG;ArCiIH,mBAWE,aqC7IC;ArCkIH,mBAWE,aqC5IC;A9BNH,I8BKG;A9BLH,I8BMG;A7BJH,O6BGG;A7BHH,O6BIG;A7BgBH,c6BjBG;A7BiBH,c6BhBG;A7BmCH,gB6BpCG;A7BoCH,gB6BnCG;AtBTH,MsBQG;AtBRH,MsBSG;ATCH,WSFG;ATEH,WSDG;AJgEH,aIjEG;AJiEH,aIhEG;AJwFH,aIzFG;AJyFH,aIxFG;EACC,SAAS,GAAT;EACA,cAAA;;AAEF,SAAC;ArD8LH,cACE,GqD/LC;AhDTH,UgDSG;AhDWH,gBgDXG;AhDoBH,IgDpBG;A3CmhBH,gBAqBE,Y2CxiBC;ArCgBH,YqChBG;ArC6HH,mBAWE,aqCxIC;A9BVH,I8BUG;A7BRH,O6BQG;A7BYH,c6BZG;A7B+BH,gB6B/BG;AtBbH,MsBaG;ATHH,WSGG;AJ4DH,aI5DG;AJoFH,aIpFG;EACC,WAAA;;A3BRJ;E4BRE,cAAA;EACA,iBAAA;EACA,kBAAA;;A5BSF;EACE,uBAAA;;AAEF;EACE,sBAAA;;AAQF;EACE,wBAAA;;AAEF;EACE,yBAAA;;AAEF;EACE,kBAAA;;AAEF;E6BzBE,WAAA;EACA,kBAAA;EACA,iBAAA;EACA,6BAAA;EACA,SAAA;;A7B8BF;EACE,wBAAA;;AAOF;EACE,eAAA;;A8BjCF;EACE,mBAAA;;AAMF;AACA;AACA;AACA;ECjBE,wBAAA;;ADqBF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;E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","sourcesContent":["//\n// Fonts\n// --------------------------------------------------\n\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 300;\n  src: url(\"@{font-path}/OpenSans-Light-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Light\"), local(\"OpenSans-Light\"),\n       url(\"@{font-path}/OpenSans-Light-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Light-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Light-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Light-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Light-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 400;\n  src: url(\"@{font-path}/OpenSans-Regular-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans\"), local(\"OpenSans\"),\n       url(\"@{font-path}/OpenSans-Regular-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Regular-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Regular-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Regular-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Regular-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 300;\n  src: url(\"@{font-path}/OpenSans-LightItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Light Italic\"), local(\"OpenSansLight-Italic\"),\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 400;\n  src: url(\"@{font-path}/OpenSans-Italic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Italic\"), local(\"OpenSans-Italic\"),\n       url(\"@{font-path}/OpenSans-Italic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Italic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Italic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Italic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Italic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 600;\n  src: url(\"@{font-path}/OpenSans-Semibold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Semibold\"), local(\"OpenSans-Semibold-webfont\"),\n       url(\"@{font-path}/OpenSans-Semibold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 600;\n  src: url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Semibold Italic\"), local(\"OpenSans-SemiboldItalic-webfont\"),\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 700;\n  src: url(\"@{font-path}/OpenSans-Bold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Bold\"), local(\"OpenSans-Bold\"),\n       url(\"@{font-path}/OpenSans-Bold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Bold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Bold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Bold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Bold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 700;\n  src: url(\"@{font-path}/OpenSans-BoldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Bold Italic\"), local(\"OpenSans-BoldItalic\"),\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 800;\n  src: url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Extrabold Italic\"), local(\"OpenSans-ExtraboldItalic\"),\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 800;\n  src: url(\"@{font-path}/OpenSans-ExtraBold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Extrabold\"), local(\"OpenSans-Extrabold\"),\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n","/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS and IE text size adjust after device orientation change,\n//    without disabling user zoom.\n//\n\nhtml {\n  font-family: sans-serif; // 1\n  -ms-text-size-adjust: 100%; // 2\n  -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n  margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n  display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n  display: inline-block; // 1\n  vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n  display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n  background-color: transparent;\n}\n\n//\n// Improve readability of focused elements when they are also in an\n// active/hover state.\n//\n\na:active,\na:hover {\n  outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n  border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n  font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n  font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n  background: #ff0;\n  color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n  font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\n\nsup {\n  top: -0.5em;\n}\n\nsub {\n  bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n  border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n  overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n  margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n  box-sizing: content-box;\n  height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n  overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace, monospace;\n  font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n//    Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  color: inherit; // 1\n  font: inherit; // 2\n  margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n  overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n  text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n//    and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n//    `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n  -webkit-appearance: button; // 2\n  cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n  cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n  border: 0;\n  padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n  line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n  box-sizing: border-box; // 1\n  padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.\n//\n\ninput[type=\"search\"] {\n  -webkit-appearance: textfield; // 1\n  box-sizing: content-box; //2\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n  border: 1px solid #c0c0c0;\n  margin: 0 2px;\n  padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n  border: 0; // 1\n  padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n  overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n  font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n  border-collapse: collapse;\n  border-spacing: 0;\n}\n\ntd,\nth {\n  padding: 0;\n}\n","/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n    *,\n    *:before,\n    *:after {\n        background: transparent !important;\n        color: #000 !important; // Black prints faster: h5bp.com/s\n        box-shadow: none !important;\n        text-shadow: none !important;\n    }\n\n    a,\n    a:visited {\n        text-decoration: underline;\n    }\n\n    a[href]:after {\n        content: \" (\" attr(href) \")\";\n    }\n\n    abbr[title]:after {\n        content: \" (\" attr(title) \")\";\n    }\n\n    // Don't show links that are fragment identifiers,\n    // or use the `javascript:` pseudo protocol\n    a[href^=\"#\"]:after,\n    a[href^=\"javascript:\"]:after {\n        content: \"\";\n    }\n\n    pre,\n    blockquote {\n        border: 1px solid #999;\n        page-break-inside: avoid;\n    }\n\n    thead {\n        display: table-header-group; // h5bp.com/t\n    }\n\n    tr,\n    img {\n        page-break-inside: avoid;\n    }\n\n    img {\n        max-width: 100% !important;\n    }\n\n    p,\n    h2,\n    h3 {\n        orphans: 3;\n        widows: 3;\n    }\n\n    h2,\n    h3 {\n        page-break-after: avoid;\n    }\n\n    // Bootstrap specific changes start\n\n    // Bootstrap components\n    .navbar {\n        display: none;\n    }\n    .btn,\n    .dropup > .btn {\n        > .caret {\n            border-top-color: #000 !important;\n        }\n    }\n    .label {\n        border: 1px solid #000;\n    }\n\n    .table {\n        border-collapse: collapse !important;\n\n        td,\n        th {\n            background-color: #fff !important;\n        }\n    }\n    .table-bordered {\n        th,\n        td {\n            border: 1px solid #ddd !important;\n        }\n    }\n\n    // Bootstrap specific changes end\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// <a href=\"#\"><span class=\"glyphicon glyphicon-star\"></span> Star</a>\n\n// Import the fonts\n@font-face {\n  font-family: 'Glyphicons Halflings';\n  src: url('@{icon-font-path}@{icon-font-name}.eot');\n  src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),\n       url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),\n       url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),\n       url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),\n       url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');\n}\n\n// Catchall baseclass\n.glyphicon {\n  position: relative;\n  top: 1px;\n  display: inline-block;\n  font-family: 'Glyphicons Halflings';\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk               { &:before { content: \"\\002a\"; } }\n.glyphicon-plus                   { &:before { content: \"\\002b\"; } }\n.glyphicon-euro,\n.glyphicon-eur                    { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus                  { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud                  { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope               { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil                 { &:before { content: \"\\270f\"; } }\n.glyphicon-glass                  { &:before { content: \"\\e001\"; } }\n.glyphicon-music                  { &:before { content: \"\\e002\"; } }\n.glyphicon-search                 { &:before { content: \"\\e003\"; } }\n.glyphicon-heart                  { &:before { content: \"\\e005\"; } }\n.glyphicon-star                   { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty             { &:before { content: \"\\e007\"; } }\n.glyphicon-user                   { &:before { content: \"\\e008\"; } }\n.glyphicon-film                   { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large               { &:before { content: \"\\e010\"; } }\n.glyphicon-th                     { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list                { &:before { content: \"\\e012\"; } }\n.glyphicon-ok                     { &:before { content: \"\\e013\"; } }\n.glyphicon-remove                 { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in                { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out               { &:before { content: \"\\e016\"; } }\n.glyphicon-off                    { &:before { content: \"\\e017\"; } }\n.glyphicon-signal                 { &:before { content: \"\\e018\"; } }\n.glyphicon-cog                    { &:before { content: \"\\e019\"; } }\n.glyphicon-trash                  { &:before { content: \"\\e020\"; } }\n.glyphicon-home                   { &:before { content: \"\\e021\"; } }\n.glyphicon-file                   { &:before { content: \"\\e022\"; } }\n.glyphicon-time                   { &:before { content: \"\\e023\"; } }\n.glyphicon-road                   { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt           { &:before { content: \"\\e025\"; } }\n.glyphicon-download               { &:before { content: \"\\e026\"; } }\n.glyphicon-upload                 { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox                  { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle            { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat                 { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh                { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt               { &:before { content: \"\\e032\"; } }\n.glyphicon-lock                   { &:before { content: \"\\e033\"; } }\n.glyphicon-flag                   { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones             { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off             { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down            { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up              { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode                 { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode                { &:before { content: \"\\e040\"; } }\n.glyphicon-tag                    { &:before { content: \"\\e041\"; } }\n.glyphicon-tags                   { &:before { content: \"\\e042\"; } }\n.glyphicon-book                   { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark               { &:before { content: \"\\e044\"; } }\n.glyphicon-print                  { &:before { content: \"\\e045\"; } }\n.glyphicon-camera                 { &:before { content: \"\\e046\"; } }\n.glyphicon-font                   { &:before { content: \"\\e047\"; } }\n.glyphicon-bold                   { &:before { content: \"\\e048\"; } }\n.glyphicon-italic                 { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height            { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width             { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left             { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center           { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right            { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify          { &:before { content: \"\\e055\"; } }\n.glyphicon-list                   { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left            { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right           { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video         { &:before { content: \"\\e059\"; } }\n.glyphicon-picture                { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker             { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust                 { &:before { content: \"\\e063\"; } }\n.glyphicon-tint                   { &:before { content: \"\\e064\"; } }\n.glyphicon-edit                   { &:before { content: \"\\e065\"; } }\n.glyphicon-share                  { &:before { content: \"\\e066\"; } }\n.glyphicon-check                  { &:before { content: \"\\e067\"; } }\n.glyphicon-move                   { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward          { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward          { &:before { content: \"\\e070\"; } }\n.glyphicon-backward               { &:before { content: \"\\e071\"; } }\n.glyphicon-play                   { &:before { content: \"\\e072\"; } }\n.glyphicon-pause                  { &:before { content: \"\\e073\"; } }\n.glyphicon-stop                   { &:before { content: \"\\e074\"; } }\n.glyphicon-forward                { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward           { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward           { &:before { content: \"\\e077\"; } }\n.glyphicon-eject                  { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left           { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right          { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign              { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign             { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign            { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign                { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign          { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign              { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot             { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle          { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle              { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle             { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left             { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right            { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up               { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down             { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt              { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full            { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small           { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign       { &:before { content: \"\\e101\"; } }\n.glyphicon-gift                   { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf                   { &:before { content: \"\\e103\"; } }\n.glyphicon-fire                   { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open               { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close              { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign           { &:before { content: \"\\e107\"; } }\n.glyphicon-plane                  { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar               { &:before { content: \"\\e109\"; } }\n.glyphicon-random                 { &:before { content: \"\\e110\"; } }\n.glyphicon-comment                { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet                 { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up             { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down           { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet                { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart          { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close           { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open            { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical        { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal      { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd                    { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn               { &:before { content: \"\\e122\"; } }\n.glyphicon-bell                   { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate            { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up              { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down            { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right             { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left              { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up                { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down              { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right     { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left      { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up        { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down      { &:before { content: \"\\e134\"; } }\n.glyphicon-globe                  { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench                 { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks                  { &:before { content: \"\\e137\"; } }\n.glyphicon-filter                 { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase              { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen             { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard              { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip              { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty            { &:before { content: \"\\e143\"; } }\n.glyphicon-link                   { &:before { content: \"\\e144\"; } }\n.glyphicon-phone                  { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin                { &:before { content: \"\\e146\"; } }\n.glyphicon-usd                    { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp                    { &:before { content: \"\\e149\"; } }\n.glyphicon-sort                   { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet       { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt   { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order          { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt      { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes     { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked              { &:before { content: \"\\e157\"; } }\n.glyphicon-expand                 { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down          { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up            { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in                 { &:before { content: \"\\e161\"; } }\n.glyphicon-flash                  { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out                { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window             { &:before { content: \"\\e164\"; } }\n.glyphicon-record                 { &:before { content: \"\\e165\"; } }\n.glyphicon-save                   { &:before { content: \"\\e166\"; } }\n.glyphicon-open                   { &:before { content: \"\\e167\"; } }\n.glyphicon-saved                  { &:before { content: \"\\e168\"; } }\n.glyphicon-import                 { &:before { content: \"\\e169\"; } }\n.glyphicon-export                 { &:before { content: \"\\e170\"; } }\n.glyphicon-send                   { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk            { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved           { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove          { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save            { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open            { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card            { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer               { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery                { &:before { content: \"\\e179\"; } }\n.glyphicon-header                 { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed             { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone               { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt              { &:before { content: \"\\e183\"; } }\n.glyphicon-tower                  { &:before { content: \"\\e184\"; } }\n.glyphicon-stats                  { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video               { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video               { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles              { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo           { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby            { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1              { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1              { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1              { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark         { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark      { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download         { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload           { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer           { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous         { &:before { content: \"\\e200\"; } }\n.glyphicon-cd                     { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file              { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file              { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up               { &:before { content: \"\\e204\"; } }\n.glyphicon-copy                   { &:before { content: \"\\e205\"; } }\n.glyphicon-paste                  { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door                   { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key                    { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert                  { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer              { &:before { content: \"\\e210\"; } }\n.glyphicon-king                   { &:before { content: \"\\e211\"; } }\n.glyphicon-queen                  { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn                   { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop                 { &:before { content: \"\\e214\"; } }\n.glyphicon-knight                 { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula           { &:before { content: \"\\e216\"; } }\n.glyphicon-tent                   { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard             { &:before { content: \"\\e218\"; } }\n.glyphicon-bed                    { &:before { content: \"\\e219\"; } }\n.glyphicon-apple                  { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase                  { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass              { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp                   { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate              { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank             { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors               { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin                { &:before { content: \"\\e227\"; } }\n.glyphicon-btc                    { &:before { content: \"\\e227\"; } }\n.glyphicon-xbt                    { &:before { content: \"\\e227\"; } }\n.glyphicon-yen                    { &:before { content: \"\\00a5\"; } }\n.glyphicon-jpy                    { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble                  { &:before { content: \"\\20bd\"; } }\n.glyphicon-rub                    { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale                  { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly              { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted       { &:before { content: \"\\e232\"; } }\n.glyphicon-education              { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal      { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical        { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger         { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window           { &:before { content: \"\\e237\"; } }\n.glyphicon-oil                    { &:before { content: \"\\e238\"; } }\n.glyphicon-grain                  { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses             { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size              { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color             { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background        { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top       { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom    { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left      { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical  { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right     { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right         { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left          { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom        { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top           { &:before { content: \"\\e253\"; } }\n.glyphicon-console                { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript            { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript              { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left              { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right             { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down              { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up                { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n  .box-sizing(border-box);\n}\n*:before,\n*:after {\n  .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n  font-size: 10px;\n  -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n  font-family: @font-family-base;\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @text-color;\n  background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n}\n\n\n// Links\n\na {\n  color: @link-color;\n  text-decoration: none;\n\n  &:hover,\n  &:focus {\n    color: @link-hover-color;\n    text-decoration: @link-hover-decoration;\n  }\n\n  &:focus {\n    .tab-focus();\n  }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n  margin: 0;\n}\n\n\n// Images\n\nimg {\n  vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n  .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n  border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n  padding: @thumbnail-padding;\n  line-height: @line-height-base;\n  background-color: @thumbnail-bg;\n  border: 1px solid @thumbnail-border;\n  border-radius: @thumbnail-border-radius;\n  .transition(all .2s ease-in-out);\n\n  // Keep them at most 100% wide\n  .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n  border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n  margin-top:    @line-height-computed;\n  margin-bottom: @line-height-computed;\n  border: 0;\n  border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content\n\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n  &:active,\n  &:focus {\n    position: static;\n    width: auto;\n    height: auto;\n    margin: 0;\n    overflow: visible;\n    clip: auto;\n  }\n}\n\n\n// iOS \"clickable elements\" fix for role=\"button\"\n//\n// Fixes \"clickability\" issue (and more generally, the firing of events such as focus as well)\n// for traditionally non-focusable elements with role=\"button\"\n// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n\n[role=\"button\"] {\n  cursor: pointer;\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n  -webkit-animation: @animation;\n       -o-animation: @animation;\n          animation: @animation;\n}\n.animation-name(@name) {\n  -webkit-animation-name: @name;\n          animation-name: @name;\n}\n.animation-duration(@duration) {\n  -webkit-animation-duration: @duration;\n          animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n  -webkit-animation-timing-function: @timing-function;\n          animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n  -webkit-animation-delay: @delay;\n          animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n  -webkit-animation-iteration-count: @iteration-count;\n          animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n  -webkit-animation-direction: @direction;\n          animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n  -webkit-animation-fill-mode: @fill-mode;\n          animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n  -webkit-backface-visibility: @visibility;\n     -moz-backface-visibility: @visibility;\n          backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n          box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n  -webkit-box-sizing: @boxmodel;\n     -moz-box-sizing: @boxmodel;\n          box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n  -webkit-column-count: @column-count;\n     -moz-column-count: @column-count;\n          column-count: @column-count;\n  -webkit-column-gap: @column-gap;\n     -moz-column-gap: @column-gap;\n          column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n  word-wrap: break-word;\n  -webkit-hyphens: @mode;\n     -moz-hyphens: @mode;\n      -ms-hyphens: @mode; // IE10+\n       -o-hyphens: @mode;\n          hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  // Firefox\n  &::-moz-placeholder {\n    color: @color;\n    opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n  }\n  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n  -webkit-transform: scale(@ratio);\n      -ms-transform: scale(@ratio); // IE9 only\n       -o-transform: scale(@ratio);\n          transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n  -webkit-transform: scale(@ratioX, @ratioY);\n      -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n       -o-transform: scale(@ratioX, @ratioY);\n          transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n  -webkit-transform: scaleX(@ratio);\n      -ms-transform: scaleX(@ratio); // IE9 only\n       -o-transform: scaleX(@ratio);\n          transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n  -webkit-transform: scaleY(@ratio);\n      -ms-transform: scaleY(@ratio); // IE9 only\n       -o-transform: scaleY(@ratio);\n          transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n  -webkit-transform: skewX(@x) skewY(@y);\n      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n       -o-transform: skewX(@x) skewY(@y);\n          transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n  -webkit-transform: translate(@x, @y);\n      -ms-transform: translate(@x, @y); // IE9 only\n       -o-transform: translate(@x, @y);\n          transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n  -webkit-transform: translate3d(@x, @y, @z);\n          transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees); // IE9 only\n       -o-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n  -webkit-transform: rotateX(@degrees);\n      -ms-transform: rotateX(@degrees); // IE9 only\n       -o-transform: rotateX(@degrees);\n          transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n  -webkit-transform: rotateY(@degrees);\n      -ms-transform: rotateY(@degrees); // IE9 only\n       -o-transform: rotateY(@degrees);\n          transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n  -webkit-perspective: @perspective;\n     -moz-perspective: @perspective;\n          perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n  -webkit-perspective-origin: @perspective;\n     -moz-perspective-origin: @perspective;\n          perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n  -webkit-transform-origin: @origin;\n     -moz-transform-origin: @origin;\n      -ms-transform-origin: @origin; // IE9 only\n          transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n  -webkit-transition: @transition;\n       -o-transition: @transition;\n          transition: @transition;\n}\n.transition-property(@transition-property) {\n  -webkit-transition-property: @transition-property;\n          transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n  -webkit-transition-delay: @transition-delay;\n          transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n  -webkit-transition-duration: @transition-duration;\n          transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n  -webkit-transition-timing-function: @timing-function;\n          transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n  -webkit-transition: -webkit-transform @transition;\n     -moz-transition: -moz-transform @transition;\n       -o-transition: -o-transform @transition;\n          transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n  -webkit-user-select: @select;\n     -moz-user-select: @select;\n      -ms-user-select: @select; // IE10+\n          user-select: @select;\n}\n","//\n// Variables\n// --------------------------------------------------\n// Bootstrap overrides and PatternFly-specific variables\n\n// Sass compass/sprockets asset helper flag\n// ----------------------\n@pf-sass-asset-helper:                                              false;\n\n// PatternFly-specific\n// -------------------\n@import \"color-variables.less\";\n\n@applauncher-pf-dropdown-menu-border-width:                         1px;\n@applauncher-pf-dropdown-menu-padding:                              9px;\n@applauncher-pf-dropdown-menu-width:                                220px;\n@applauncher-pf-dropdown-toggle-padding:                            7px 10px;\n@applauncher-pf-icon-padding-right:                                 4px;\n@applauncher-pf-menu-link-border-color:                             @color-pf-white;\n@applauncher-pf-menu-link-border-color-hover:                       @color-pf-black-400;\n@applauncher-pf-menu-link-border-width:                             1px;\n@applauncher-pf-menu-link-color:                                    @color-pf-black-300;\n@applauncher-pf-menu-link-color-disabled:                           @color-pf-black-500;\n@applauncher-pf-menu-link-color-hover:                              @color-pf-blue-400;\n@applauncher-pf-menu-link-padding:                                  7px 10px;\n@applauncher-pf-menu-link-padding-block-list:                       15px 10px;\n@applauncher-pf-menu-link-background-color-hover:                   @color-pf-black-150;\n@applauncher-pf-menu-link-shadow:                                   @color-pf-black-300;\n@applauncher-pf-menu-link-icon-font-size:                           2em;\n@applauncher-pf-menu-link-icon-width:                               ((9 * @applauncher-pf-menu-link-icon-font-size) / 14); //Numbers to imitate fa-fw class\n@bootstrap-switch-handle-default-bg-color:                          @color-pf-black-100;\n@bootstrap-treeview-highlight-color:                                @color-pf-blue-300;\n@btn-default-bg-img-start:                                          @color-pf-black-100;\n@btn-default-bg-img-stop:                                           @color-pf-black-200;\n@btn-xs-font-weight:                                                400;\n@card-pf-accented-border-top-color:                                 @color-pf-blue-300;\n@card-pf-aggregate-status-title-icon-color:                         @color-pf-black-900;\n@card-pf-bg-color:                                                  @color-pf-white;\n@card-pf-border-color:                                              @color-pf-black-300;\n@card-pf-border-top-color:                                          transparent;\n@card-pf-container-bg-color:                                        @color-pf-black-150;\n@card-pf-footer-bg-color:                                           @color-pf-black-100;\n@card-pf-selected-border-color:                                     @color-pf-blue-300;\n@contextselector-pf-margin-left:                                    10px;\n@contextselector-pf-nav-item-iconic-padding:                        23px 20px 18px 10px;\n@contextselector-title-width-mobile:                                170px;\n@contextselector-title-width-desktop:                               210px;\n@contextselector-pf-form-group-margin:                              0 5px 5px 5px;\n@contextselector-pf-list-max-height:                                200px;\n@contextselector-pf-list-li-padding:                                1px 10px;\n@contextselector-pf-list-li-border-width:                           1px 0;\n@donut-font-size-big:                                               30px;\n@drawer-pf-top-vertical:                                            58px;\n@drawer-pf-top-horizontal:                                          26px;\n@dropdown-divider-margin:                                           4px 1px;\n@dropdown-link-active-border-color:                                 @color-pf-blue;\n@dropdown-link-hover-border-color:                                  @color-pf-blue-100;\n@dropdown-link-focus-color:                                         @color-pf-white;\n@flyout-transition-pf:                                              all 200ms cubic-bezier(.35, 0, .25, 1);\n@font-family-monospace:                                             Menlo, Monaco, Consolas, monospace;\n@font-path:                                                         \"../fonts\";\n@footer-pf-bg-color:                                                @color-pf-black;\n@footer-pf-padding-left:                                            25px;\n@footer-pf-padding-top:                                             10px;\n@footer-pf-height:                                                  37px;\n@gray-light-pf:                                                     @color-pf-black-400;\n@gray-pf:                                                           @color-pf-black-700;\n@icon-font-name-fa:                                                 \"FontAwesome\";\n@icon-font-name-pf:                                                 \"PatternFlyIcons-webfont\";\n@icon-prefix:                                                       pficon;\n@img-bg-login:                                                      \"bg-login.jpg\";\n@img-path:                                                          \"../img\";\n@img-spinner:                                                       \"spinner.gif\";\n@img-spinner-inverse:                                               \"spinner-inverse.gif\";\n@img-spinner-inverse-lg:                                            \"spinner-inverse-lg.gif\";\n@img-spinner-inverse-sm:                                            \"spinner-inverse-sm.gif\";\n@img-spinner-inverse-xs:                                            \"spinner-inverse-xs.gif\";\n@img-spinner-lg:                                                    \"spinner-lg.gif\";\n@img-spinner-sm:                                                    \"spinner-sm.gif\";\n@img-spinner-xs:                                                    \"spinner-xs.gif\";\n@input-border-hover:                                                @color-pf-blue-200;\n@input-border-focus:                                                @color-pf-blue-400;\n@list-pf-border-color:                                              @color-pf-black-200;\n@list-pf-active-border-color:                                       @color-pf-black-400;\n@list-pf-header-background-color:                                   @color-pf-black-200;\n@list-pf-hover-background-color:                                    @color-pf-blue-25;\n@list-pf-main-content-width:                                        70%; // sets the proportional width of the main content vs the additional content\n@list-pf-padding:                                                   20px;\n@list-view-accented-border:                                         @color-pf-blue-300;\n@list-view-active-bg:                                               @color-pf-blue-50;\n@list-view-active-border:                                           @color-pf-black-400;\n@list-view-divider:                                                 @color-pf-black-300;\n@list-view-hover-bg:                                                @color-pf-blue-25;\n@list-group-top-border:                                             @color-pf-black-200;\n@login-bg-color:                                                    @color-pf-black;\n@login-container-bg-color-rgba:                                     fade(@color-pf-white, 5.5%);\n@modal-about-pf-bg-img:                                             \"bg-modal-about-pf.png\";\n@modal-title-padding-horizontal:                                    18px;\n@modal-title-padding-vertical:                                      10px;\n@navbar-pf-active-color:                                            @color-pf-black-150;\n@navbar-pf-alt-active-color:                                        @color-pf-white;\n@navbar-pf-alt-bg-color:                                            @color-pf-black;\n@navbar-pf-alt-bg-img:                                              \"bg-navbar-pf-alt.svg\";\n@navbar-pf-bg-color:                                                @color-pf-black;\n@navbar-pf-border-color:                                            @color-pf-blue-300;\n@navbar-pf-color:                                                   @color-pf-black-300;\n@navbar-pf-height:                                                  60px;\n@navbar-pf-icon-bar-bg-color:                                       @color-pf-white;\n@navbar-pf-navbar-navbar-brand-min-width:                           270px;\n@navbar-pf-navbar-navbar-brand-padding:                             8px 0 7px;\n@navbar-pf-navbar-navbar-persistent-bg-color:                       @color-pf-black-150;\n@navbar-pf-navbar-navbar-persistent-border-color:                   @color-pf-black-300;\n@navbar-pf-vertical-active-color:                                   @color-pf-white;\n@navbar-pf-vertical-bg-color:                                       #1d1d1d;\n@navbar-pf-vertical-bg-repeat:                                      no-repeat;\n@navbar-pf-vertical-bg-size:                                        auto 100%;\n@navbar-pf-vertical-border-color:                                   @color-pf-blue-300;\n@navbar-pf-vertical-border-style:                                   solid;\n@navbar-pf-vertical-border-width:                                   2px;\n@navbar-pf-vertical-color:                                          @color-pf-black-300;\n@navbar-pf-vertical-height:                                         60px;\n@navbar-pf-vertical-icon-bar-bg-color:                              @color-pf-white;\n@navbar-pf-vertical-navbar-brand-color:                             @color-pf-white;\n@navbar-pf-vertical-navbar-brand-icon-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-margin:                            0 0 0 25px;\n@navbar-pf-vertical-navbar-brand-min-height:                        35px;\n@navbar-pf-vertical-navbar-brand-max-height:                        35px;\n@navbar-pf-vertical-navbar-brand-line-height:                       34px;\n@navbar-pf-vertical-navbar-brand-name-breakpoint:                   480px;\n@navbar-pf-vertical-navbar-brand-name-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-padding:                           11px 0 12px;\n@navbar-pf-vertical-navbar-toggle-margin:                           13px 15px;\n@navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg:                @color-pf-white;\n@navbar-pf-vertical-nav-item-iconic-padding:                        21px 12px;\n@nav-pf-container-transition-period:                                250ms;\n@nav-pf-menu-transition-period:                                     100ms;\n@nav-pf-vertical-active-color:                                      @color-pf-white;\n@nav-pf-vertical-active-before-color:                               @color-pf-blue-300;\n@nav-pf-vertical-active-bg-color:                                   @color-pf-black-800;\n@nav-pf-vertical-active-border-color:                               @color-pf-black-900;\n@nav-pf-vertical-active-font-weight:                                600;\n@nav-pf-vertical-active-icon-color:                                 @color-pf-blue-300;\n@nav-pf-vertical-badge-color:                                       @color-pf-white;\n@nav-pf-vertical-badge-bg-color:                                    @color-pf-black-900;\n@nav-pf-vertical-bg-color:                                          @color-pf-black-900;\n@nav-pf-vertical-border-color:                                      @color-pf-black-900;\n@nav-pf-vertical-collapsed-width:                                   75px;\n@nav-pf-vertical-color:                                             @color-pf-black-300;\n@nav-pf-vertical-font-weight:                                       400;\n@nav-pf-vertical-icon-color:                                        @color-pf-black-600;\n@nav-pf-vertical-icon-width:                                        24px;\n@nav-pf-vertical-item-border-color:                                 @color-pf-black;\n@nav-pf-vertical-link-height:                                       63px;\n@nav-pf-vertical-link-padding:                                      17px 20px 17px 25px;\n@nav-pf-vertical-secondary-active-color:                            @color-pf-white;\n@nav-pf-vertical-secondary-active-bg-color:                         @color-pf-black-700;\n@nav-pf-vertical-secondary-active-icon-color:                       @color-pf-blue-300;\n@nav-pf-vertical-secondary-badge-color:                             @color-pf-white;\n@nav-pf-vertical-secondary-badge-bg-color:                          @color-pf-black-900;\n@nav-pf-vertical-secondary-border-color:                            @color-pf-blue-300;\n@nav-pf-vertical-secondary-color:                                   @color-pf-white;\n@nav-pf-vertical-secondary-header-margin:                           18px 20px 10px 20px;\n@nav-pf-vertical-secondary-indicator-color:                         @color-pf-black-600;\n@nav-pf-vertical-secondary-indicator-padding:                       14px 0;\n@nav-pf-vertical-secondary-item-color:                              @color-pf-black-300;\n@nav-pf-vertical-secondary-item-padding:                            0 0 5px 0;\n@nav-pf-vertical-secondary-link-height:                             63px;\n@nav-pf-vertical-secondary-link-padding:                            4px 0 2px 0;\n@nav-pf-vertical-secondary-list-header-margin:                      30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-active-color:                             @color-pf-white;\n@nav-pf-vertical-tertiary-active-bg-color:                          @color-pf-black-800;\n@nav-pf-vertical-tertiary-indicator-padding:                        0;\n@nav-pf-vertical-tertiary-bg-color:                                 @color-pf-black-700;\n@nav-pf-vertical-tertiary-color:                                    #fff;\n@nav-pf-vertical-tertiary-header-margin:                            18px 20px 10px 20px;\n@nav-pf-vertical-tertiary-list-header-margin:                       30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-item-padding:                             0 0 5px 0;\n@nav-pf-vertical-tertiary-item-color:                               @color-pf-black-300;\n@nav-pf-vertical-tertiary-link-margin:                              0 20px 0 20px;\n@nav-pf-vertical-tertiary-link-padding:                             4px 0 2px 0;\n@nav-pf-vertical-tertiary-badge-color:                              @color-pf-white;\n@nav-pf-vertical-tertiary-badge-bg-color:                           @color-pf-black-900;\n@nav-pf-vertical-width:                                             200px;\n@toast-notification-top:                                            80px;\n@pagination-padding-small-vertical:                                 0;\n@panel-default-border-color:                                        @color-pf-black-400;\n@pficon-var-add-circle-o:                                           \"\\e61b\";\n@pficon-var-applications:                                           \"\\e936\";\n@pficon-var-arrow:                                                  \"\\e929\";\n@pficon-var-asleep:                                                 \"\\e925\";\n@pficon-var-automation:                                             \"\\e937\";\n@pficon-var-blueprint:                                              \"\\e915\";\n@pficon-var-build:                                                  \"\\e902\";\n@pficon-var-builder-image:                                          \"\\e800\";\n@pficon-var-bundle:                                                 \"\\e918\";\n@pficon-var-catalog:                                                \"\\e939\";\n@pficon-var-chat:                                                   \"\\e928\";\n@pficon-var-close:                                                  \"\\e60b\";\n@pficon-var-cloud-security:                                         \"\\e903\";\n@pficon-var-cloud-tenant:                                           \"\\e904\";\n@pficon-var-cluster:                                                \"\\e620\";\n@pficon-var-connected:                                              \"\\e938\";\n@pficon-var-container-node:                                         \"\\e621\";\n@pficon-var-cpu:                                                    \"\\e927\";\n@pficon-var-degraded:                                               \"\\e91b\";\n@pficon-var-delete:                                                 \"\\e611\";\n@pficon-var-disconnected:                                           \"\\e93c\";\n@pficon-var-domain:                                                 \"\\e919\";\n@pficon-var-edit:                                                   \"\\e60a\";\n@pficon-var-enhancement:                                            \"\\e93a\";\n@pficon-var-enterprise:                                             \"\\e906\";\n@pficon-var-equalizer:                                              \"\\e610\";\n@pficon-var-error-circle-o:                                         \"\\e926\";\n@pficon-var-export:                                                 \"\\e616\";\n@pficon-var-flag:                                                   \"\\e603\";\n@pficon-var-flavor:                                                 \"\\e907\";\n@pficon-var-filter:                                                 \"\\e943\";\n@pficon-var-folder-close:                                           \"\\e607\";\n@pficon-var-folder-open:                                            \"\\e606\";\n@pficon-var-help:                                                   \"\\e605\";\n@pficon-var-history:                                                \"\\e93b\";\n@pficon-var-home:                                                   \"\\e618\";\n@pficon-var-image:                                                  \"\\e61f\";\n@pficon-var-import:                                                 \"\\e615\";\n@pficon-var-info:                                                   \"\\e92b\";\n@pficon-var-infrastructure:                                         \"\\e93d\";\n@pficon-var-integration:                                            \"\\e948\";\n@pficon-var-in-progress:                                            \"\\e92c\";\n@pficon-var-key:                                                    \"\\e924\";\n@pficon-var-kubernetes:                                             \"\\e627\";\n@pficon-var-locked:                                                 \"\\e923\";\n@pficon-var-maintenance:                                            \"\\e92d\";\n@pficon-var-memory:                                                 \"\\e908\";\n@pficon-var-messages:                                               \"\\e603\";\n@pficon-var-middleware:                                             \"\\e917\";\n@pficon-var-migration:                                              \"\\e92e\";\n@pficon-var-monitoring:                                             \"\\e944\";\n@pficon-var-network:                                                \"\\e909\";\n@pficon-var-network-range:                                          \"\\e94a\";\n@pficon-var-off:                                                    \"\\e92f\";\n@pficon-var-ok:                                                     \"\\e602\";\n@pficon-var-on:                                                     \"\\e931\";\n@pficon-var-on-running:                                             \"\\e930\";\n@pficon-var-openshift:                                              \"\\e626\";\n@pficon-var-optimize:                                               \"\\e93e\";\n@pficon-var-orders:                                                 \"\\e93f\";\n@pficon-var-paused:                                                 \"\\e932\";\n@pficon-var-pending:                                                \"\\e933\";\n@pficon-var-plugged:                                                \"\\e940\";\n@pficon-var-port:                                                   \"\\e945\";\n@pficon-var-private:                                                \"\\e914\";\n@pficon-var-print:                                                  \"\\e612\";\n@pficon-var-process-automation:                                     \"\\e949\";\n@pficon-var-project:                                                \"\\e905\";\n@pficon-var-rebalance:                                              \"\\e91c\";\n@pficon-var-rebooting:                                              \"\\e934\";\n@pficon-var-regions:                                                \"\\e90a\";\n@pficon-var-registry:                                               \"\\e623\";\n@pficon-var-remove:                                                 \"\\e611\";\n@pficon-var-replicator:                                             \"\\e624\";\n@pficon-var-repository:                                             \"\\e90b\";\n@pficon-var-resource-pool:                                          \"\\e90c\";\n@pficon-var-resources-almost-empty:                                 \"\\e91d\";\n@pficon-var-resources-almost-full:                                  \"\\e912\";\n@pficon-var-resources-full:                                         \"\\e92a\";\n@pficon-var-restart:                                                \"\\e617\";\n@pficon-var-route:                                                  \"\\e625\";\n@pficon-var-running:                                                \"\\e614\";\n@pficon-var-save:                                                   \"\\e601\";\n@pficon-var-satellite:                                              \"\\e94b\";\n@pficon-var-screen:                                                 \"\\e600\";\n@pficon-var-search:                                                 \"\\e921\";\n@pficon-var-security:                                               \"\\e946\";\n@pficon-var-server:                                                 \"\\e90d\";\n@pficon-var-server-group:                                           \"\\e91a\";\n@pficon-var-service:                                                \"\\e61e\";\n@pficon-var-service-catalog:                                        \"\\e941\";\n@pficon-var-services:                                               \"\\e947\";\n@pficon-var-settings:                                               \"\\e610\";\n@pficon-var-spinner:                                                \"\\e614\";\n@pficon-var-spinner2:                                               \"\\e613\";\n@pficon-var-storage-domain:                                         \"\\e90e\";\n@pficon-var-template:                                               \"\\e94c\";\n@pficon-var-tenant:                                                 \"\\e916\";\n@pficon-var-thumb-tack-o:                                           \"\\e920\";\n@pficon-var-topology:                                               \"\\e608\";\n@pficon-var-trend-down:                                             \"\\e900\";\n@pficon-var-trend-up:                                               \"\\e901\";\n@pficon-var-unlocked:                                               \"\\e922\";\n@pficon-var-unplugged:                                              \"\\e942\";\n@pficon-var-unknown:                                                \"\\e935\";\n@pficon-var-user:                                                   \"\\e91e\";\n@pficon-var-users:                                                  \"\\e91f\";\n@pficon-var-vcenter:                                                \"\\e94d\";\n@pficon-var-virtual-machine:                                        \"\\e90f\";\n@pficon-var-volume:                                                 \"\\e910\";\n@pficon-var-warning-triangle-o:                                     \"\\e913\";\n@pficon-var-zone:                                                   \"\\e911\";\n@progress-description-label-width:                                  85px;\n@sidebar-pf-bg:                                                     @color-pf-black-100;\n@sidebar-pf-border-color:                                           @color-pf-black-300;\n@skiplink-pf-top:                                                   12px;\n@skiplink-pf-left:                                                  10px;\n@table-border-hover:                                                @color-pf-blue-200;\n@table-cell-padding-bottom:                                         3px;\n@table-cell-padding-top:                                            2px;\n// Reference variables declared in block above\n@bootstrap-switch-bg-color-start:                                   @btn-default-bg-img-start;\n@bootstrap-switch-bg-color-stop:                                    @btn-default-bg-img-stop;\n@fa-font-path:                                                      @font-path;\n@navbar-pf-navbar-header-border-color:                              lighten(@navbar-pf-bg-color, 15%);\n@navbar-pf-navbar-nav-active-active-bg-color:                       lighten(@navbar-pf-bg-color, 8%);\n@navbar-pf-navbar-nav-active-active-open-bg-color:                  lighten(@navbar-pf-bg-color, 11%);\n@navbar-pf-navbar-nav-active-bg-color:                              lighten(@navbar-pf-bg-color, 12.5%);\n@navbar-pf-navbar-primary-bg-color-start:                           lighten(@navbar-pf-bg-color, 10%); // #474C50\n@navbar-pf-navbar-primary-bg-color-stop:                            @navbar-pf-bg-color; // #383F43\n@navbar-pf-navbar-utility-border-color:                             lighten(@navbar-pf-bg-color, 15.5%);\n@navbar-pf-navbar-utility-color:                                    @navbar-pf-color;\n@navbar-pf-navbar-utility-hover-bg-color:                           lighten(@navbar-pf-bg-color, 12.5%);\n@nav-pf-vertical-secondary-bg-color:                                @nav-pf-vertical-active-bg-color;\n@nav-tabs-color:                                                    @gray-pf;\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-bg-color-start:                   lighten(@navbar-pf-navbar-primary-bg-color-start, 8.5%);\n@navbar-pf-navbar-primary-context-bg-color-stop:                    lighten(@navbar-pf-navbar-primary-bg-color-stop, 11%);\n@navbar-pf-navbar-primary-hover-bg-color-start:                     lighten(@navbar-pf-navbar-primary-bg-color-start, 10%);\n@navbar-pf-navbar-primary-hover-bg-color-stop:                      lighten(@navbar-pf-navbar-primary-bg-color-stop, 10%);\n@navbar-pf-navbar-primary-hover-border-color:                       lighten(@navbar-pf-navbar-header-border-color, 20%);\n@navbar-pf-navbar-primary-context-border-color:                     lighten(@navbar-pf-navbar-header-border-color, 8%);\n@navbar-pf-navbar-primary-context-border-top-color:                 lighten(@navbar-pf-navbar-header-border-color, 7%);\n@navbar-pf-navbar-utility-hover-border-color:                       lighten(@navbar-pf-navbar-utility-border-color, 5%);\n@navbar-pf-navbar-utility-open-bg-color:                            lighten(@navbar-pf-navbar-utility-hover-bg-color, 7.5%);\n@navbar-pf-navbar-utility-open-border-color:                        lighten(@navbar-pf-navbar-utility-hover-border-color, 5%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-active-bg-color-start:                    lighten(@navbar-pf-navbar-primary-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-active-bg-color-stop:                     lighten(@navbar-pf-navbar-primary-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-active-border-color:                      lighten(@navbar-pf-navbar-primary-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-start:             lighten(@navbar-pf-navbar-primary-context-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-stop:              lighten(@navbar-pf-navbar-primary-context-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-hover-border-color:               lighten(@navbar-pf-navbar-primary-context-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-border-top-color:           lighten(@navbar-pf-navbar-primary-context-border-top-color, 6%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-active-bg-color-start:            lighten(@navbar-pf-navbar-primary-context-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-active-bg-color-stop:             lighten(@navbar-pf-navbar-primary-context-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-active-border-color:              lighten(@navbar-pf-navbar-primary-context-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-active-border-top-color:          lighten(@navbar-pf-navbar-primary-context-hover-border-top-color, 6%);\n// References variable declared in block above\n@navbar-pf-navbar-primary-context-active-border-right-color:        @navbar-pf-navbar-primary-context-active-border-color;\n@slider-line-height:                                                16px;\n@slider-horizontal-width:                                           100%;\n@slider-primary-top:                                                @color-pf-black-100;\n@slider-primary-bottom:                                             @color-pf-black-200;\n@slider-secondary-top:                                              @color-pf-blue-400;\n@slider-secondary-bottom:                                           @color-pf-blue-300;\n\n// Alternate navigation layout - Kept for backwards compatibility\n// --------------------------------------------------------------\n@footer-pf-alt-bg-color:                                            @footer-pf-bg-color;\n@footer-pf-alt-padding-left:                                        @footer-pf-padding-left;\n@footer-pf-alt-padding-top:                                         @footer-pf-padding-top;\n@footer-pf-alt-height:                                              @footer-pf-height;\n@img-path-alt:                                                      @img-path;\n@nav-pf-vertical-alt-active-color:                                  @color-pf-blue-300;\n@nav-pf-vertical-alt-bg-color:                                      @color-pf-white;\n@nav-pf-vertical-alt-badge-color:                                   @color-pf-white;\n@nav-pf-vertical-alt-border-color:                                  @sidebar-pf-border-color;\n@nav-pf-vertical-alt-collapsed-width:                               75px;\n@nav-pf-vertical-alt-link-height:                                   63px;\n@nav-pf-vertical-alt-link-padding:                                  17px 20px 17px 25px;\n@nav-pf-vertical-alt-width:                                         250px;\n@navbar-pf-alt-bg-repeat:                                           @navbar-pf-vertical-bg-repeat;\n@navbar-pf-alt-bg-size:                                             @navbar-pf-vertical-bg-size;\n@navbar-pf-alt-border-color:                                        @navbar-pf-vertical-border-color;\n@navbar-pf-alt-border-style:                                        @navbar-pf-vertical-border-style;\n@navbar-pf-alt-border-width:                                        @navbar-pf-vertical-border-width;\n@navbar-pf-alt-color:                                               @navbar-pf-vertical-color;\n@navbar-pf-alt-height:                                              @navbar-pf-vertical-height;\n@navbar-pf-alt-nav-item-iconic-padding:                             @navbar-pf-vertical-nav-item-iconic-padding;\n@navbar-pf-alt-navbar-brand-color:                                  @navbar-pf-vertical-navbar-brand-color;\n@navbar-pf-alt-navbar-brand-icon-margin:                            @navbar-pf-vertical-navbar-brand-icon-margin;\n@navbar-pf-alt-navbar-brand-margin:                                 @navbar-pf-vertical-navbar-brand-margin;\n@navbar-pf-alt-navbar-brand-min-height:                             @navbar-pf-vertical-navbar-brand-min-height;\n@navbar-pf-alt-navbar-brand-name-breakpoint:                        @navbar-pf-vertical-navbar-brand-name-breakpoint;\n@navbar-pf-alt-navbar-brand-name-margin:                            @navbar-pf-vertical-navbar-brand-name-margin;\n@navbar-pf-alt-navbar-brand-padding:                                @navbar-pf-vertical-navbar-brand-padding;\n@navbar-pf-alt-navbar-toggle-margin:                                @navbar-pf-vertical-navbar-toggle-margin;\n@navbar-pf-alt-navbar-toggle-icon-bar-hover-bg:                     @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n\n// Login page\n// -------------------\n@login-pf-brand-margin-top:                                               20px;\n@login-pf-brand-desktop-margin-top:                                       62px;\n@login-pf-page-header-margin-bottom:                                      20px;\n@login-pf-page-header-desktop-margin-bottom:                              40px;\n@login-pf-page-header-paragraph-margin-top:                               20px;\n@login-pf-card-pf-padding:                                 10px 20px 30px 20px;\n@login-pf-card-pf-desktop-padding:                         20px 40px 30px 40px;\n@login-pf-card-pf-max-width:                                             840px;\n@login-pf-checkbox-label-margin-bottom:                                   15px;\n@login-pf-dropdown-toggle-padding-right:                                  15px;\n@login-pf-btn-primary-margin-top:                                         40px;\n@login-pf-header-margin-bottom:                                           20px;\n@login-pf-header-desktop-margin-bottom:                                   30px;\n@login-pf-signup-margin-top:                                              40px;\n@login-pf-signup-a-margin-left:                                           10px;\n@login-pf-page-footer-links-margin-top:                                   60px;\n@login-pf-page-footer-links-li-margin-right:                              20px;\n@login-pf-page-footer-sso-margin-top:                                     40px;\n@login-pf-page-footer-sso-logos-li-margin:                                5px;\n@login-pf-page-accounts-margin:                                           20px;\n@login-pf-accounts-section-heading-margin-top:                            30px;\n@login-pf-accounts-section-heading-margin-bottom:                         30px;\n@login-pf-accounts-section-heading-desktop-margin-bottom:                 15px;\n@login-pf-accounts-section-heading-desktop-padding-right:                 40px;\n@login-pf-accounts-section-heading-desktop-padding-left:                  40px;\n@login-pf-accounts-link-margin-bottom:                                    15px;\n@login-pf-accounts-link-img-margin-right:                                 10px;\n@login-pf-accounts-link-a-padding:                                        7px;\n@login-pf-accounts-more-caret-margin-left:                                5px;\n@login-pf-social-margin:                                           40px 0 0 0;\n\n\n// Bootstrap overrides\n// -------------------\n@alert-info-border:                                                 @color-pf-black-500;\n@alert-link-font-weight:                                            500;\n@alert-padding:                                                     11px;\n@body-bg:                                                           @color-pf-white;\n@border-radius-base:                                                1px;\n@brand-danger:                                                      @color-pf-red;\n@brand-info:                                                        @color-pf-blue-500;\n@brand-primary:                                                     @color-pf-blue-300;\n@brand-success:                                                     @color-pf-green;\n@brand-warning:                                                     @color-pf-orange;\n@breadcrumb-bg:                                                     transparent;\n@breadcrumb-separator:                                              \"\\f105\";\n@bs-datetimepicker-timepicker-font-size:                            1em;\n@bs-datetimepicker-btn-hover-bg:                                    transparent;\n@btn-danger-bg:                                                     @color-pf-red-200;\n@btn-danger-border:                                                 @color-pf-red-300;\n@btn-default-border:                                                @color-pf-black-400;\n@btn-font-weight:                                                   600;\n@btn-primary-bg:                                                    @color-pf-blue;\n@btn-primary-border:                                                @color-pf-blue-500;\n@caret-width-base:                                                  0;\n@code-bg:                                                           @color-pf-blue-50;\n@dropdown-border:                                                   @color-pf-black-400;\n@dropdown-divider-bg:                                               @color-pf-black-200;\n@dropdown-link-active-color:                                        @color-pf-white;\n@dropdown-link-hover-bg:                                            @color-pf-blue-50;\n@font-family-base:                                                  \"Open Sans\", Helvetica, Arial, sans-serif;\n@font-size-base:                                                    12px;\n@gray-dark:                                                         lighten(@color-pf-black, 20%);   // #333\n@gray-darker:                                                       lighten(@color-pf-black, 13.5%); // #222\n@gray-light:                                                        lighten(@color-pf-black, 60%);   // #999\n@gray-lighter:                                                      lighten(@color-pf-black, 93.5%); // #eee\n@grid-gutter-width:                                                 40px;\n@icon-font-path:                                                    \"../fonts/\";\n@input-bg-disabled:                                                 @color-pf-black-150;\n@input-border:                                                      @color-pf-black-400;\n@line-height-base:                                                  1.66666667; // 20/12\n@link-color:                                                        @color-pf-blue;\n@list-group-border:                                                 @color-pf-black-150;\n@list-group-border-radius:                                          0;\n@list-group-hover-bg:                                               @color-pf-blue-50;\n@link-hover-color:                                                  @color-pf-blue-500;\n@nav-tabs-border-color:                                             @color-pf-black-200;\n@nav-tabs-link-hover-border-color:                                  transparent;\n@padding-large-horizontal:                                          10px;\n@padding-base-horizontal:                                           6px;\n@padding-base-vertical:                                             2px;\n@padding-large-vertical:                                            6px;\n@pager-border-radius:                                               0;\n@pager-disabled-color:                                              @color-pf-black-500;\n@pagination-bg:                                                     @color-pf-black-150;\n@pagination-border:                                                 @color-pf-black-400;\n@pagination-hover-bg:                                               @color-pf-black-200;\n@panel-inner-border:                                                @color-pf-black-300;\n@popover-arrow-color:                                               @color-pf-white;\n@popover-arrow-outer-color:                                         @color-pf-black-400;\n@popover-border-color:                                              @color-pf-black-400;\n@popover-max-width:                                                 220px;\n@popover-title-bg:                                                  @color-pf-black-150;\n@pre-bg:                                                            @color-pf-black-100;\n@progress-bg:                                                       @color-pf-black-200;\n@table-bg-accent:                                                   @color-pf-black-150;\n@table-bg-hover:                                                    @color-pf-blue-50;\n@table-border-color:                                                @color-pf-black-300;\n@table-cell-padding:                                                10px;\n@tooltip-arrow-width:                                               8px;\n@tooltip-bg:                                                        @color-pf-black-800;\n@tooltip-max-width:                                                 220px;\n// Reference variables declared in block above\n@alert-danger-bg:                                                   lighten(@color-pf-red-100, 55%);\n@alert-danger-border:                                               @brand-danger;\n@alert-danger-text:                                                 @gray-dark;\n@alert-info-bg:                                                     @color-pf-black-150;\n@alert-info-text:                                                   @gray-dark;\n@alert-success-bg:                                                  lighten(@color-pf-green-100, 8%);\n@alert-success-border:                                              @brand-success;\n@alert-success-text:                                                @gray-dark;\n@alert-warning-bg:                                                  lighten(@color-pf-orange-100, 8%);\n@alert-warning-border:                                              @brand-warning;\n@alert-warning-text:                                                @gray-dark;\n@badge-border-radius:                                               @border-radius-base;\n@border-radius-large:                                               @border-radius-base;\n@border-radius-small:                                               @border-radius-base;\n@breadcrumb-active-color:                                           @gray-pf;\n@breadcrumb-color:                                                  @gray-pf;\n@btn-default-bg:                                                    @gray-lighter;\n@btn-default-color:                                                 @gray-pf;\n@caret-width-large:                                                 @caret-width-base;\n@code-color:                                                        @color-pf-blue-600;\n@dropdown-fallback-border:                                          @dropdown-border;\n@dropdown-link-active-bg:                                           @link-color;\n@dropdown-link-hover-color:                                         @gray-pf;\n@font-size-h1:                                                      ceil((@font-size-base * 2)); // ~24px\n@font-size-h2:                                                      ceil((@font-size-base * 1.8333)); // ~22px\n@font-size-h3:                                                      ceil((@font-size-base * 1.3333)); // ~16px\n@font-size-h5:                                                      ceil((@font-size-base * 1.0833)); // ~13px\n@font-size-large:                                                   ceil((@font-size-base * 1.1666)); // ~14px\n@font-size-small:                                                   ceil((@font-size-base * .9166)); // ~11px\n@input-color:                                                       @gray-dark;\n@nav-tabs-active-link-hover-color:                                  @link-color;\n@nav-tabs-justified-link-border-color:                              @nav-tabs-border-color;\n@nav-pf-vertical-badges-width:                                      (@nav-pf-vertical-width + 50px);\n@padding-small-horizontal:                                          @padding-base-horizontal;\n@padding-small-vertical:                                            @padding-base-vertical;\n@panel-group-pf-danger-heading-bg:                                  @alert-danger-bg;\n@panel-group-pf-primary-heading-bg:                                 lighten(@brand-primary, 38%);\n@panel-group-pf-success-heading-bg:                                 @alert-success-bg;\n@panel-group-pf-warning-heading-bg:                                 @alert-warning-bg;\n@panel-group-pf-info-heading-bg:                                    lighten(desaturate(spin(@brand-info, 13), 45), 60%);\n@panel-danger-border:                                               @brand-danger;\n@panel-danger-heading-bg:                                           @brand-danger;\n@panel-info-border:                                                 @brand-info;\n@panel-info-heading-bg:                                             @brand-info;\n@panel-primary-border:                                              @brand-primary;\n@panel-primary-text:                                                @body-bg;\n@panel-success-border:                                              @brand-success;\n@panel-success-heading-bg:                                          @brand-success;\n@panel-warning-border:                                              @brand-warning;\n@panel-warning-heading-bg:                                          @brand-warning;\n@state-warning-text:                                                @brand-warning;\n@state-danger-text:                                                 @brand-danger;\n// Reference variable declared in block above\n@panel-danger-text:                                                 @panel-primary-text;\n@panel-info-text:                                                   @panel-primary-text;\n@panel-success-text:                                                @panel-primary-text;\n@panel-warning-text:                                                @panel-primary-text;\n\n// PatternFly-specific variables based on Bootstrap overides\n// ---------------------------------------------------------\n@bootstrap-switch-bg-color:                                         @btn-default-bg;\n@btn-danger-bg-img-start:                                           @brand-danger;\n@btn-danger-bg-img-stop:                                            @btn-danger-bg;\n@btn-primary-bg-img-start:                                          @brand-primary;\n@btn-primary-bg-img-stop:                                           @btn-primary-bg;\n@dropdown-link-focus-bg:                                            @link-color;\n@line-height-computed:                                              floor((@font-size-base * @line-height-base));\n@nav-pf-vertical-icon-size:                                         (@font-size-base + 8);\n@notification-badge-color:                                          @color-pf-blue-400;\n@progress-sm:                                                       (@line-height-computed - 6);\n@progress-xs:                                                       (@line-height-computed - 14);\n@syntax-1:                                                          @btn-danger-bg;\n@syntax-2:                                                          @gray-dark;\n@syntax-3:                                                          @brand-success;\n@syntax-4:                                                          @brand-info;\n@tooltip-font-size:                                                 @font-size-base;\n","// WebKit-style focus\n\n.tab-focus() {\n  // WebKit-specific. Other browsers will keep their default outline style.\n  // (Initially tried to also force default via `outline: initial`,\n  // but that seems to erroneously remove the outline in Firefox altogether.)\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\n","//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n  display: block;\n  padding: @thumbnail-padding;\n  margin-bottom: @line-height-computed;\n  line-height: @line-height-base;\n  background-color: @thumbnail-bg;\n  border: 1px solid @thumbnail-border;\n  border-radius: @thumbnail-border-radius;\n  .transition(border .2s ease-in-out);\n\n  > img,\n  a > img {\n    &:extend(.img-responsive);\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  // Add a hover state for linked versions only\n  a&:hover,\n  a&:focus,\n  a&.active {\n    border-color: @link-color;\n  }\n\n  // Image captions\n  .caption {\n    padding: @thumbnail-caption-padding;\n    color: @thumbnail-caption-color;\n  }\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n  position: relative;\n}\n\n.carousel-inner {\n  position: relative;\n  overflow: hidden;\n  width: 100%;\n\n  > .item {\n    display: none;\n    position: relative;\n    .transition(.6s ease-in-out left);\n\n    // Account for jankitude on images\n    > img,\n    > a > img {\n      &:extend(.img-responsive);\n      line-height: 1;\n    }\n\n    // WebKit CSS3 transforms for supported devices\n    @media all and (transform-3d), (-webkit-transform-3d) {\n      .transition-transform(~'0.6s ease-in-out');\n      .backface-visibility(~'hidden');\n      .perspective(1000px);\n\n      &.next,\n      &.active.right {\n        .translate3d(100%, 0, 0);\n        left: 0;\n      }\n      &.prev,\n      &.active.left {\n        .translate3d(-100%, 0, 0);\n        left: 0;\n      }\n      &.next.left,\n      &.prev.right,\n      &.active {\n        .translate3d(0, 0, 0);\n        left: 0;\n      }\n    }\n  }\n\n  > .active,\n  > .next,\n  > .prev {\n    display: block;\n  }\n\n  > .active {\n    left: 0;\n  }\n\n  > .next,\n  > .prev {\n    position: absolute;\n    top: 0;\n    width: 100%;\n  }\n\n  > .next {\n    left: 100%;\n  }\n  > .prev {\n    left: -100%;\n  }\n  > .next.left,\n  > .prev.right {\n    left: 0;\n  }\n\n  > .active.left {\n    left: -100%;\n  }\n  > .active.right {\n    left: 100%;\n  }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  width: @carousel-control-width;\n  .opacity(@carousel-control-opacity);\n  font-size: @carousel-control-font-size;\n  color: @carousel-control-color;\n  text-align: center;\n  text-shadow: @carousel-text-shadow;\n  background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug\n  // We can't have this transition here because WebKit cancels the carousel\n  // animation if you trip this while in the middle of another animation.\n\n  // Set gradients for backgrounds\n  &.left {\n    #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n  }\n  &.right {\n    left: auto;\n    right: 0;\n    #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n  }\n\n  // Hover/focus state\n  &:hover,\n  &:focus {\n    outline: 0;\n    color: @carousel-control-color;\n    text-decoration: none;\n    .opacity(.9);\n  }\n\n  // Toggles\n  .icon-prev,\n  .icon-next,\n  .glyphicon-chevron-left,\n  .glyphicon-chevron-right {\n    position: absolute;\n    top: 50%;\n    margin-top: -10px;\n    z-index: 5;\n    display: inline-block;\n  }\n  .icon-prev,\n  .glyphicon-chevron-left {\n    left: 50%;\n    margin-left: -10px;\n  }\n  .icon-next,\n  .glyphicon-chevron-right {\n    right: 50%;\n    margin-right: -10px;\n  }\n  .icon-prev,\n  .icon-next {\n    width:  20px;\n    height: 20px;\n    line-height: 1;\n    font-family: serif;\n  }\n\n\n  .icon-prev {\n    &:before {\n      content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n    }\n  }\n  .icon-next {\n    &:before {\n      content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n    }\n  }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n  position: absolute;\n  bottom: 10px;\n  left: 50%;\n  z-index: 15;\n  width: 60%;\n  margin-left: -30%;\n  padding-left: 0;\n  list-style: none;\n  text-align: center;\n\n  li {\n    display: inline-block;\n    width:  10px;\n    height: 10px;\n    margin: 1px;\n    text-indent: -999px;\n    border: 1px solid @carousel-indicator-border-color;\n    border-radius: 10px;\n    cursor: pointer;\n\n    // IE8-9 hack for event handling\n    //\n    // Internet Explorer 8-9 does not support clicks on elements without a set\n    // `background-color`. We cannot use `filter` since that's not viewed as a\n    // background color by the browser. Thus, a hack is needed.\n    // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer\n    //\n    // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n    // set alpha transparency for the best results possible.\n    background-color: #000 \\9; // IE8\n    background-color: rgba(0,0,0,0); // IE9\n  }\n  .active {\n    margin: 0;\n    width:  12px;\n    height: 12px;\n    background-color: @carousel-indicator-active-bg;\n  }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n  position: absolute;\n  left: 15%;\n  right: 15%;\n  bottom: 20px;\n  z-index: 10;\n  padding-top: 20px;\n  padding-bottom: 20px;\n  color: @carousel-caption-color;\n  text-align: center;\n  text-shadow: @carousel-text-shadow;\n  & .btn {\n    text-shadow: none; // No shadow for button elements in carousel-caption\n  }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n  // Scale up the controls a smidge\n  .carousel-control {\n    .glyphicon-chevron-left,\n    .glyphicon-chevron-right,\n    .icon-prev,\n    .icon-next {\n      width: (@carousel-control-font-size * 1.5);\n      height: (@carousel-control-font-size * 1.5);\n      margin-top: (@carousel-control-font-size / -2);\n      font-size: (@carousel-control-font-size * 1.5);\n    }\n    .glyphicon-chevron-left,\n    .icon-prev {\n      margin-left: (@carousel-control-font-size / -2);\n    }\n    .glyphicon-chevron-right,\n    .icon-next {\n      margin-right: (@carousel-control-font-size / -2);\n    }\n  }\n\n  // Show and left align the captions\n  .carousel-caption {\n    left: 20%;\n    right: 20%;\n    padding-bottom: 30px;\n  }\n\n  // Move up the indicators\n  .carousel-indicators {\n    bottom: 20px;\n  }\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n  display: @display;\n  max-width: 100%; // Part 1: Set a maximum relative to the parent\n  height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n  background-image: url(\"@{file-1x}\");\n\n  @media\n  only screen and (-webkit-min-device-pixel-ratio: 2),\n  only screen and (   min--moz-device-pixel-ratio: 2),\n  only screen and (     -o-min-device-pixel-ratio: 2/1),\n  only screen and (        min-device-pixel-ratio: 2),\n  only screen and (                min-resolution: 192dpi),\n  only screen and (                min-resolution: 2dppx) {\n    background-image: url(\"@{file-2x}\");\n    background-size: @width-1x @height-1x;\n  }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n  font-family: @headings-font-family;\n  font-weight: @headings-font-weight;\n  line-height: @headings-line-height;\n  color: @headings-color;\n\n  small,\n  .small {\n    font-weight: normal;\n    line-height: 1;\n    color: @headings-small-color;\n  }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n  margin-top: @line-height-computed;\n  margin-bottom: (@line-height-computed / 2);\n\n  small,\n  .small {\n    font-size: 65%;\n  }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n  margin-top: (@line-height-computed / 2);\n  margin-bottom: (@line-height-computed / 2);\n\n  small,\n  .small {\n    font-size: 75%;\n  }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n  margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n  margin-bottom: @line-height-computed;\n  font-size: floor((@font-size-base * 1.15));\n  font-weight: 300;\n  line-height: 1.4;\n\n  @media (min-width: @screen-sm-min) {\n    font-size: (@font-size-base * 1.5);\n  }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n  font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n  background-color: @state-warning-bg;\n  padding: .2em;\n}\n\n// Alignment\n.text-left           { text-align: left; }\n.text-right          { text-align: right; }\n.text-center         { text-align: center; }\n.text-justify        { text-align: justify; }\n.text-nowrap         { white-space: nowrap; }\n\n// Transformation\n.text-lowercase      { text-transform: lowercase; }\n.text-uppercase      { text-transform: uppercase; }\n.text-capitalize     { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n  color: @text-muted;\n}\n.text-primary {\n  .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n  .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n  .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n  .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n  .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n  // Given the contrast here, this is the only class to have its color inverted\n  // automatically.\n  color: #fff;\n  .bg-variant(@brand-primary);\n}\n.bg-success {\n  .bg-variant(@state-success-bg);\n}\n.bg-info {\n  .bg-variant(@state-info-bg);\n}\n.bg-warning {\n  .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n  .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n  padding-bottom: ((@line-height-computed / 2) - 1);\n  margin: (@line-height-computed * 2) 0 @line-height-computed;\n  border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n  margin-top: 0;\n  margin-bottom: (@line-height-computed / 2);\n  ul,\n  ol {\n    margin-bottom: 0;\n  }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n  padding-left: 0;\n  list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n  .list-unstyled();\n  margin-left: -5px;\n\n  > li {\n    display: inline-block;\n    padding-left: 5px;\n    padding-right: 5px;\n  }\n}\n\n// Description Lists\ndl {\n  margin-top: 0; // Remove browser default\n  margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n  line-height: @line-height-base;\n}\ndt {\n  font-weight: bold;\n}\ndd {\n  margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n  dd {\n    &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n  }\n\n  @media (min-width: @dl-horizontal-breakpoint) {\n    dt {\n      float: left;\n      width: (@dl-horizontal-offset - 20);\n      clear: left;\n      text-align: right;\n      .text-overflow();\n    }\n    dd {\n      margin-left: @dl-horizontal-offset;\n    }\n  }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n  cursor: help;\n  border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n  font-size: 90%;\n  .text-uppercase();\n}\n\n// Blockquotes\nblockquote {\n  padding: (@line-height-computed / 2) @line-height-computed;\n  margin: 0 0 @line-height-computed;\n  font-size: @blockquote-font-size;\n  border-left: 5px solid @blockquote-border-color;\n\n  p,\n  ul,\n  ol {\n    &:last-child {\n      margin-bottom: 0;\n    }\n  }\n\n  // Note: Deprecated small and .small as of v3.1.0\n  // Context: https://github.com/twbs/bootstrap/issues/11660\n  footer,\n  small,\n  .small {\n    display: block;\n    font-size: 80%; // back to default font-size\n    line-height: @line-height-base;\n    color: @blockquote-small-color;\n\n    &:before {\n      content: '\\2014 \\00A0'; // em dash, nbsp\n    }\n  }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n  padding-right: 15px;\n  padding-left: 0;\n  border-right: 5px solid @blockquote-border-color;\n  border-left: 0;\n  text-align: right;\n\n  // Account for citation\n  footer,\n  small,\n  .small {\n    &:before { content: ''; }\n    &:after {\n      content: '\\00A0 \\2014'; // nbsp, em dash\n    }\n  }\n}\n\n// Addresses\naddress {\n  margin-bottom: @line-height-computed;\n  font-style: normal;\n  line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n  color: @color;\n  a&:hover,\n  a&:focus {\n    color: darken(@color, 10%);\n  }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n  background-color: @color;\n  a&:hover,\n  a&:focus {\n    background-color: darken(@color, 10%);\n  }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n  font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: @code-color;\n  background-color: @code-bg;\n  border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: @kbd-color;\n  background-color: @kbd-bg;\n  border-radius: @border-radius-small;\n  box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n\n  kbd {\n    padding: 0;\n    font-size: 100%;\n    font-weight: bold;\n    box-shadow: none;\n  }\n}\n\n// Blocks of code\npre {\n  display: block;\n  padding: ((@line-height-computed - 1) / 2);\n  margin: 0 0 (@line-height-computed / 2);\n  font-size: (@font-size-base - 1); // 14px to 13px\n  line-height: @line-height-base;\n  word-break: break-all;\n  word-wrap: break-word;\n  color: @pre-color;\n  background-color: @pre-bg;\n  border: 1px solid @pre-border-color;\n  border-radius: @border-radius-base;\n\n  // Account for some code outputs that place code tags in pre tags\n  code {\n    padding: 0;\n    font-size: inherit;\n    color: inherit;\n    white-space: pre-wrap;\n    background-color: transparent;\n    border-radius: 0;\n  }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n  max-height: @pre-scrollable-max-height;\n  overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n  .container-fixed();\n\n  @media (min-width: @screen-sm-min) {\n    width: @container-sm;\n  }\n  @media (min-width: @screen-md-min) {\n    width: @container-md;\n  }\n  @media (min-width: @screen-lg-min) {\n    width: @container-lg;\n  }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n  .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n  .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n  .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n  .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n  .make-grid(lg);\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @grid-gutter-width) {\n  margin-right: auto;\n  margin-left: auto;\n  padding-left:  floor((@gutter / 2));\n  padding-right: ceil((@gutter / 2));\n  &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n  margin-left:  ceil((@gutter / -2));\n  margin-right: floor((@gutter / -2));\n  &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  float: left;\n  width: percentage((@columns / @grid-columns));\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n  margin-left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-push(@columns) {\n  left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-pull(@columns) {\n  right: percentage((@columns / @grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-sm-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-offset(@columns) {\n  @media (min-width: @screen-sm-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-push(@columns) {\n  @media (min-width: @screen-sm-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-pull(@columns) {\n  @media (min-width: @screen-sm-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-md-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-offset(@columns) {\n  @media (min-width: @screen-md-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-push(@columns) {\n  @media (min-width: @screen-md-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-pull(@columns) {\n  @media (min-width: @screen-md-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-lg-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-offset(@columns) {\n  @media (min-width: @screen-lg-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-push(@columns) {\n  @media (min-width: @screen-lg-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-pull(@columns) {\n  @media (min-width: @screen-lg-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n  // Common styles for all sizes of grid columns, widths 1-12\n  .col(@index) { // initial\n    @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n    .col((@index + 1), @item);\n  }\n  .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n    @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n    .col((@index + 1), ~\"@{list}, @{item}\");\n  }\n  .col(@index, @list) when (@index > @grid-columns) { // terminal\n    @{list} {\n      position: relative;\n      // Prevent columns from collapsing when empty\n      min-height: 1px;\n      // Inner gutter via padding\n      padding-left:  ceil((@grid-gutter-width / 2));\n      padding-right: floor((@grid-gutter-width / 2));\n    }\n  }\n  .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n  .col(@index) { // initial\n    @item: ~\".col-@{class}-@{index}\";\n    .col((@index + 1), @item);\n  }\n  .col(@index, @list) when (@index =< @grid-columns) { // general\n    @item: ~\".col-@{class}-@{index}\";\n    .col((@index + 1), ~\"@{list}, @{item}\");\n  }\n  .col(@index, @list) when (@index > @grid-columns) { // terminal\n    @{list} {\n      float: left;\n    }\n  }\n  .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n  .col-@{class}-@{index} {\n    width: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n  .col-@{class}-push-@{index} {\n    left: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n  .col-@{class}-push-0 {\n    left: auto;\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n  .col-@{class}-pull-@{index} {\n    right: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n  .col-@{class}-pull-0 {\n    right: auto;\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n  .col-@{class}-offset-@{index} {\n    margin-left: percentage((@index / @grid-columns));\n  }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n  .calc-grid-column(@index, @class, @type);\n  // next iteration\n  .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n  .float-grid-columns(@class);\n  .loop-grid-columns(@grid-columns, @class, width);\n  .loop-grid-columns(@grid-columns, @class, pull);\n  .loop-grid-columns(@grid-columns, @class, push);\n  .loop-grid-columns(@grid-columns, @class, offset);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n  background-color: @table-bg;\n}\ncaption {\n  padding-top: @table-cell-padding;\n  padding-bottom: @table-cell-padding;\n  color: @text-muted;\n  text-align: left;\n}\nth {\n  text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n  width: 100%;\n  max-width: 100%;\n  margin-bottom: @line-height-computed;\n  // Cells\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-cell-padding;\n        line-height: @line-height-base;\n        vertical-align: top;\n        border-top: 1px solid @table-border-color;\n      }\n    }\n  }\n  // Bottom align for column headings\n  > thead > tr > th {\n    vertical-align: bottom;\n    border-bottom: 2px solid @table-border-color;\n  }\n  // Remove top border from thead by default\n  > caption + thead,\n  > colgroup + thead,\n  > thead:first-child {\n    > tr:first-child {\n      > th,\n      > td {\n        border-top: 0;\n      }\n    }\n  }\n  // Account for multiple tbody instances\n  > tbody + tbody {\n    border-top: 2px solid @table-border-color;\n  }\n\n  // Nesting\n  .table {\n    background-color: @body-bg;\n  }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-condensed-cell-padding;\n      }\n    }\n  }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n  border: 1px solid @table-border-color;\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        border: 1px solid @table-border-color;\n      }\n    }\n  }\n  > thead > tr {\n    > th,\n    > td {\n      border-bottom-width: 2px;\n    }\n  }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n  > tbody > tr:nth-of-type(odd) {\n    background-color: @table-bg-accent;\n  }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n  > tbody > tr:hover {\n    background-color: @table-bg-hover;\n  }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n  position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n  float: none;\n  display: table-column;\n}\ntable {\n  td,\n  th {\n    &[class*=\"col-\"] {\n      position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n      float: none;\n      display: table-cell;\n    }\n  }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n  overflow-x: auto;\n  min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n\n  @media screen and (max-width: @screen-xs-max) {\n    width: 100%;\n    margin-bottom: (@line-height-computed * 0.75);\n    overflow-y: hidden;\n    -ms-overflow-style: -ms-autohiding-scrollbar;\n    border: 1px solid @table-border-color;\n\n    // Tighten up spacing\n    > .table {\n      margin-bottom: 0;\n\n      // Ensure the content doesn't wrap\n      > thead,\n      > tbody,\n      > tfoot {\n        > tr {\n          > th,\n          > td {\n            white-space: nowrap;\n          }\n        }\n      }\n    }\n\n    // Special overrides for the bordered tables\n    > .table-bordered {\n      border: 0;\n\n      // Nuke the appropriate borders so that the parent can handle them\n      > thead,\n      > tbody,\n      > tfoot {\n        > tr {\n          > th:first-child,\n          > td:first-child {\n            border-left: 0;\n          }\n          > th:last-child,\n          > td:last-child {\n            border-right: 0;\n          }\n        }\n      }\n\n      // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n      // chances are there will be only one `tr` in a `thead` and that would\n      // remove the border altogether.\n      > tbody,\n      > tfoot {\n        > tr:last-child {\n          > th,\n          > td {\n            border-bottom: 0;\n          }\n        }\n      }\n\n    }\n  }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n  // Exact selectors below required to override `.table-striped` and prevent\n  // inheritance to nested tables.\n  .table > thead > tr,\n  .table > tbody > tr,\n  .table > tfoot > tr {\n    > td.@{state},\n    > th.@{state},\n    &.@{state} > td,\n    &.@{state} > th {\n      background-color: @background;\n    }\n  }\n\n  // Hover states for `.table-hover`\n  // Note: this is not available for cells or rows within `thead` or `tfoot`.\n  .table-hover > tbody > tr {\n    > td.@{state}:hover,\n    > th.@{state}:hover,\n    &.@{state}:hover > td,\n    &:hover > .@{state},\n    &.@{state}:hover > th {\n      background-color: darken(@background, 5%);\n    }\n  }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n  padding: 0;\n  margin: 0;\n  border: 0;\n  // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n  // so we reset that to ensure it behaves more like a standard block element.\n  // See https://github.com/twbs/bootstrap/issues/12359.\n  min-width: 0;\n}\n\nlegend {\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin-bottom: @line-height-computed;\n  font-size: (@font-size-base * 1.5);\n  line-height: inherit;\n  color: @legend-color;\n  border: 0;\n  border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n  display: inline-block;\n  max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n  margin-bottom: 5px;\n  font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n  .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  margin: 4px 0 0;\n  margin-top: 1px \\9; // IE8-9\n  line-height: normal;\n}\n\ninput[type=\"file\"] {\n  display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n  display: block;\n  width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n  height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n  .tab-focus();\n}\n\n// Adjust output element\noutput {\n  display: block;\n  padding-top: (@padding-base-vertical + 1);\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n  display: block;\n  width: 100%;\n  height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n  padding: @padding-base-vertical @padding-base-horizontal;\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @input-color;\n  background-color: @input-bg;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid @input-border;\n  border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.\n  .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n  .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n  // Customize the `:focus` state to imitate native WebKit styles.\n  .form-control-focus();\n\n  // Placeholder\n  .placeholder();\n\n  // Unstyle the caret on `<select>`s in IE10+.\n  &::-ms-expand {\n    border: 0;\n    background-color: transparent;\n  }\n\n  // Disabled and read-only inputs\n  //\n  // HTML5 says that controls under a fieldset > legend:first-child won't be\n  // disabled if the fieldset is disabled. Due to implementation difficulty, we\n  // don't honor that edge case; we style them as disabled anyway.\n  &[disabled],\n  &[readonly],\n  fieldset[disabled] & {\n    background-color: @input-bg-disabled;\n    opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655\n  }\n\n  &[disabled],\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n\n  // Reset height for `textarea`s\n  textarea& {\n    height: auto;\n  }\n}\n\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n  -webkit-appearance: none;\n}\n\n\n// Special styles for iOS temporal inputs\n//\n// In Mobile Safari, setting `display: block` on temporal inputs causes the\n// text within the input to become vertically misaligned. As a workaround, we\n// set a pixel line-height that matches the given height of the input, but only\n// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848\n//\n// Note that as of 9.3, iOS doesn't support `week`.\n\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n  input[type=\"date\"],\n  input[type=\"time\"],\n  input[type=\"datetime-local\"],\n  input[type=\"month\"] {\n    &.form-control {\n      line-height: @input-height-base;\n    }\n\n    &.input-sm,\n    .input-group-sm & {\n      line-height: @input-height-small;\n    }\n\n    &.input-lg,\n    .input-group-lg & {\n      line-height: @input-height-large;\n    }\n  }\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n  margin-bottom: @form-group-margin-bottom;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n  position: relative;\n  display: block;\n  margin-top: 10px;\n  margin-bottom: 10px;\n\n  label {\n    min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: normal;\n    cursor: pointer;\n  }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n  position: absolute;\n  margin-left: -20px;\n  margin-top: 4px \\9;\n}\n\n.radio + .radio,\n.checkbox + .checkbox {\n  margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n  position: relative;\n  display: inline-block;\n  padding-left: 20px;\n  margin-bottom: 0;\n  vertical-align: middle;\n  font-weight: normal;\n  cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n  margin-top: 0;\n  margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n// Some special care is needed because <label>s don't inherit their parent's `cursor`.\n//\n// Note: Neither radios nor checkboxes can be readonly.\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  &[disabled],\n  &.disabled,\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n}\n// These classes are used directly on <label>s\n.radio-inline,\n.checkbox-inline {\n  &.disabled,\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n}\n// These classes are used on elements with <label> descendants\n.radio,\n.checkbox {\n  &.disabled,\n  fieldset[disabled] & {\n    label {\n      cursor: @cursor-disabled;\n    }\n  }\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n.form-control-static {\n  // Size it appropriately next to real form controls\n  padding-top: (@padding-base-vertical + 1);\n  padding-bottom: (@padding-base-vertical + 1);\n  // Remove default margin from `p`\n  margin-bottom: 0;\n  min-height: (@line-height-computed + @font-size-base);\n\n  &.input-lg,\n  &.input-sm {\n    padding-left: 0;\n    padding-right: 0;\n  }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n//\n// The `.form-group-* form-control` variations are sadly duplicated to avoid the\n// issue documented in https://github.com/twbs/bootstrap/issues/15074.\n\n.input-sm {\n  .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);\n}\n.form-group-sm {\n  .form-control {\n    height: @input-height-small;\n    padding: @padding-small-vertical @padding-small-horizontal;\n    font-size: @font-size-small;\n    line-height: @line-height-small;\n    border-radius: @input-border-radius-small;\n  }\n  select.form-control {\n    height: @input-height-small;\n    line-height: @input-height-small;\n  }\n  textarea.form-control,\n  select[multiple].form-control {\n    height: auto;\n  }\n  .form-control-static {\n    height: @input-height-small;\n    min-height: (@line-height-computed + @font-size-small);\n    padding: (@padding-small-vertical + 1) @padding-small-horizontal;\n    font-size: @font-size-small;\n    line-height: @line-height-small;\n  }\n}\n\n.input-lg {\n  .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);\n}\n.form-group-lg {\n  .form-control {\n    height: @input-height-large;\n    padding: @padding-large-vertical @padding-large-horizontal;\n    font-size: @font-size-large;\n    line-height: @line-height-large;\n    border-radius: @input-border-radius-large;\n  }\n  select.form-control {\n    height: @input-height-large;\n    line-height: @input-height-large;\n  }\n  textarea.form-control,\n  select[multiple].form-control {\n    height: auto;\n  }\n  .form-control-static {\n    height: @input-height-large;\n    min-height: (@line-height-computed + @font-size-large);\n    padding: (@padding-large-vertical + 1) @padding-large-horizontal;\n    font-size: @font-size-large;\n    line-height: @line-height-large;\n  }\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n.has-feedback {\n  // Enable absolute positioning\n  position: relative;\n\n  // Ensure icons don't overlap text\n  .form-control {\n    padding-right: (@input-height-base * 1.25);\n  }\n}\n// Feedback icon (requires .glyphicon classes)\n.form-control-feedback {\n  position: absolute;\n  top: 0;\n  right: 0;\n  z-index: 2; // Ensure icon is above input groups\n  display: block;\n  width: @input-height-base;\n  height: @input-height-base;\n  line-height: @input-height-base;\n  text-align: center;\n  pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n  width: @input-height-large;\n  height: @input-height-large;\n  line-height: @input-height-large;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n  width: @input-height-small;\n  height: @input-height-small;\n  line-height: @input-height-small;\n}\n\n// Feedback states\n.has-success {\n  .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n.has-warning {\n  .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);\n}\n.has-error {\n  .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);\n}\n\n// Reposition feedback icon if input has visible label above\n.has-feedback label {\n\n  & ~ .form-control-feedback {\n    top: (@line-height-computed + 5); // Height of the `label` and its margin\n  }\n  &.sr-only ~ .form-control-feedback {\n    top: 0;\n  }\n}\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n  display: block; // account for any element using help-block\n  margin-top: 5px;\n  margin-bottom: 10px;\n  color: lighten(@text-color, 25%); // lighten the text some for contrast\n}\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n  // Kick in the inline\n  @media (min-width: @screen-sm-min) {\n    // Inline-block all the things for \"inline\"\n    .form-group {\n      display: inline-block;\n      margin-bottom: 0;\n      vertical-align: middle;\n    }\n\n    // In navbar-form, allow folks to *not* use `.form-group`\n    .form-control {\n      display: inline-block;\n      width: auto; // Prevent labels from stacking above inputs in `.form-group`\n      vertical-align: middle;\n    }\n\n    // Make static controls behave like regular ones\n    .form-control-static {\n      display: inline-block;\n    }\n\n    .input-group {\n      display: inline-table;\n      vertical-align: middle;\n\n      .input-group-addon,\n      .input-group-btn,\n      .form-control {\n        width: auto;\n      }\n    }\n\n    // Input groups need that 100% width though\n    .input-group > .form-control {\n      width: 100%;\n    }\n\n    .control-label {\n      margin-bottom: 0;\n      vertical-align: middle;\n    }\n\n    // Remove default margin on radios/checkboxes that were used for stacking, and\n    // then undo the floating of radios and checkboxes to match.\n    .radio,\n    .checkbox {\n      display: inline-block;\n      margin-top: 0;\n      margin-bottom: 0;\n      vertical-align: middle;\n\n      label {\n        padding-left: 0;\n      }\n    }\n    .radio input[type=\"radio\"],\n    .checkbox input[type=\"checkbox\"] {\n      position: relative;\n      margin-left: 0;\n    }\n\n    // Re-override the feedback icon.\n    .has-feedback .form-control-feedback {\n      top: 0;\n    }\n  }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n  // Consistent vertical alignment of radios and checkboxes\n  //\n  // Labels also get some reset styles, but that is scoped to a media query below.\n  .radio,\n  .checkbox,\n  .radio-inline,\n  .checkbox-inline {\n    margin-top: 0;\n    margin-bottom: 0;\n    padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n  }\n  // Account for padding we're adding to ensure the alignment and of help text\n  // and other content below items\n  .radio,\n  .checkbox {\n    min-height: (@line-height-computed + (@padding-base-vertical + 1));\n  }\n\n  // Make form groups behave like rows\n  .form-group {\n    .make-row();\n  }\n\n  // Reset spacing and right align labels, but scope to media queries so that\n  // labels on narrow viewports stack the same as a default form example.\n  @media (min-width: @screen-sm-min) {\n    .control-label {\n      text-align: right;\n      margin-bottom: 0;\n      padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n    }\n  }\n\n  // Validation states\n  //\n  // Reposition the icon because it's now within a grid column and columns have\n  // `position: relative;` on them. Also accounts for the grid gutter padding.\n  .has-feedback .form-control-feedback {\n    right: floor((@grid-gutter-width / 2));\n  }\n\n  // Form group sizes\n  //\n  // Quick utility class for applying `.input-lg` and `.input-sm` styles to the\n  // inputs and labels within a `.form-group`.\n  .form-group-lg {\n    @media (min-width: @screen-sm-min) {\n      .control-label {\n        padding-top: (@padding-large-vertical + 1);\n        font-size: @font-size-large;\n      }\n    }\n  }\n  .form-group-sm {\n    @media (min-width: @screen-sm-min) {\n      .control-label {\n        padding-top: (@padding-small-vertical + 1);\n        font-size: @font-size-small;\n      }\n    }\n  }\n}\n","// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n  // Color the label and help text\n  .help-block,\n  .control-label,\n  .radio,\n  .checkbox,\n  .radio-inline,\n  .checkbox-inline,\n  &.radio label,\n  &.checkbox label,\n  &.radio-inline label,\n  &.checkbox-inline label  {\n    color: @text-color;\n  }\n  // Set the border and box shadow on specific inputs to match\n  .form-control {\n    border-color: @border-color;\n    .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n    &:focus {\n      border-color: darken(@border-color, 10%);\n      @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n      .box-shadow(@shadow);\n    }\n  }\n  // Set validation states also for addons\n  .input-group-addon {\n    color: @text-color;\n    border-color: @border-color;\n    background-color: @background-color;\n  }\n  // Optional feedback icon\n  .form-control-feedback {\n    color: @text-color;\n  }\n}\n\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-border-focus` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n.form-control-focus(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0;\n    .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  height: @input-height;\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n\n  select& {\n    height: @input-height;\n    line-height: @input-height;\n  }\n\n  textarea&,\n  select[multiple]& {\n    height: auto;\n  }\n}\n","// Mixins - Bootstrap overrides\n// -------------------\n\n// Form control outline\n.form-control-outline(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0 !important;\n    .box-shadow(~\"inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Gradients\n#gradient {\n  .striped(@color: fade(@color-pf-black, 15%); @angle: -45deg) {\n    background-image: linear-gradient(@angle, @color 25%, @color 26%, transparent 27%, transparent 49%, @color 50%, @color 51%, transparent 52%, transparent 74%, @color 75%, @color 76%, transparent 77%);\n  }\n}\n\n// Horizontal dividers\n.nav-divider(@color: @color-pf-black-200, @margin: 4px 1px) {\n  background-color: @color;\n  height: 1px;\n  margin: @margin;\n  overflow: hidden;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  &:-moz-placeholder            { color: @color; font-style: italic; } // Firefox 4-18\n  &::-moz-placeholder           { color: @color; font-style: italic; opacity: 1; } // Firefox 19+\n  &:-ms-input-placeholder       { color: @color; font-style: italic; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; font-style: italic; } // Safari and Chrome\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n  display: inline-block;\n  margin-bottom: 0; // For input.btn\n  font-weight: @btn-font-weight;\n  text-align: center;\n  vertical-align: middle;\n  touch-action: manipulation;\n  cursor: pointer;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid transparent;\n  white-space: nowrap;\n  .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);\n  .user-select(none);\n\n  &,\n  &:active,\n  &.active {\n    &:focus,\n    &.focus {\n      .tab-focus();\n    }\n  }\n\n  &:hover,\n  &:focus,\n  &.focus {\n    color: @btn-default-color;\n    text-decoration: none;\n  }\n\n  &:active,\n  &.active {\n    outline: 0;\n    background-image: none;\n    .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n  }\n\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n    .opacity(.65);\n    .box-shadow(none);\n  }\n\n  a& {\n    &.disabled,\n    fieldset[disabled] & {\n      pointer-events: none; // Future-proof disabling of clicks on `<a>` elements\n    }\n  }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n  .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n  .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n  .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n  .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n  .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n  .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n  color: @link-color;\n  font-weight: normal;\n  border-radius: 0;\n\n  &,\n  &:active,\n  &.active,\n  &[disabled],\n  fieldset[disabled] & {\n    background-color: transparent;\n    .box-shadow(none);\n  }\n  &,\n  &:hover,\n  &:focus,\n  &:active {\n    border-color: transparent;\n  }\n  &:hover,\n  &:focus {\n    color: @link-hover-color;\n    text-decoration: @link-hover-decoration;\n    background-color: transparent;\n  }\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus {\n      color: @btn-link-disabled-color;\n      text-decoration: none;\n    }\n  }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n  // line-height: ensure even-numbered height of button next to large input\n  .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @btn-border-radius-large);\n}\n.btn-sm {\n  // line-height: ensure proper height of button next to small input\n  .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n.btn-xs {\n  .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n  display: block;\n  width: 100%;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n  margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n  &.btn-block {\n    width: 100%;\n  }\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n  color: @color;\n  background-color: @background;\n  border-color: @border;\n\n  &:focus,\n  &.focus {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 25%);\n  }\n  &:hover {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n\n    &:hover,\n    &:focus,\n    &.focus {\n      color: @color;\n      background-color: darken(@background, 17%);\n          border-color: darken(@border, 25%);\n    }\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    background-image: none;\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: @background;\n          border-color: @border;\n    }\n  }\n\n  .badge {\n    color: @background;\n    background-color: @color;\n  }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n  opacity: @opacity;\n  // IE8 filter\n  @opacity-ie: (@opacity * 100);\n  filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","//\n// Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n  position: relative;\n  display: inline-block;\n  vertical-align: middle; // match .btn alignment given font-size hack above\n  > .btn {\n    position: relative;\n    float: left;\n    // Bring the \"active\" button to the front\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      z-index: 2;\n    }\n  }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n  .btn + .btn,\n  .btn + .btn-group,\n  .btn-group + .btn,\n  .btn-group + .btn-group {\n    margin-left: -1px;\n  }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n  margin-left: -5px; // Offset the first child's margin\n  &:extend(.clearfix all);\n\n  .btn,\n  .btn-group,\n  .input-group {\n    float: left;\n  }\n  > .btn,\n  > .btn-group,\n  > .input-group {\n    margin-left: 5px;\n  }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n  border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n  margin-left: 0;\n  &:not(:last-child):not(.dropdown-toggle) {\n    .border-right-radius(0);\n  }\n}\n// Need .dropdown-toggle since :last-child doesn't apply, given that a .dropdown-menu is used immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n  .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n  float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) {\n  > .btn:last-child,\n  > .dropdown-toggle {\n    .border-right-radius(0);\n  }\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n  outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { &:extend(.btn-xs); }\n.btn-group-sm > .btn { &:extend(.btn-sm); }\n.btn-group-lg > .btn { &:extend(.btn-lg); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n  padding-left: 8px;\n  padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n  padding-left: 12px;\n  padding-right: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n  .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n\n  // Show no shadow for `.btn-link` since it has no other button styles.\n  &.btn-link {\n    .box-shadow(none);\n  }\n}\n\n\n// Reposition the caret\n.btn .caret {\n  margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n  border-width: @caret-width-large @caret-width-large 0;\n  border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n  border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n  > .btn,\n  > .btn-group,\n  > .btn-group > .btn {\n    display: block;\n    float: none;\n    width: 100%;\n    max-width: 100%;\n  }\n\n  // Clear floats so dropdown menus can be properly placed\n  > .btn-group {\n    &:extend(.clearfix all);\n    > .btn {\n      float: none;\n    }\n  }\n\n  > .btn + .btn,\n  > .btn + .btn-group,\n  > .btn-group + .btn,\n  > .btn-group + .btn-group {\n    margin-top: -1px;\n    margin-left: 0;\n  }\n}\n\n.btn-group-vertical > .btn {\n  &:not(:first-child):not(:last-child) {\n    border-radius: 0;\n  }\n  &:first-child:not(:last-child) {\n    .border-top-radius(@btn-border-radius-base);\n    .border-bottom-radius(0);\n  }\n  &:last-child:not(:first-child) {\n    .border-top-radius(0);\n    .border-bottom-radius(@btn-border-radius-base);\n  }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) {\n  > .btn:last-child,\n  > .dropdown-toggle {\n    .border-bottom-radius(0);\n  }\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  .border-top-radius(0);\n}\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n  display: table;\n  width: 100%;\n  table-layout: fixed;\n  border-collapse: separate;\n  > .btn,\n  > .btn-group {\n    float: none;\n    display: table-cell;\n    width: 1%;\n  }\n  > .btn-group .btn {\n    width: 100%;\n  }\n\n  > .btn-group .dropdown-menu {\n    left: auto;\n  }\n}\n\n\n// Checkbox and radio options\n//\n// In order to support the browser's form validation feedback, powered by the\n// `required` attribute, we have to \"hide\" the inputs via `clip`. We cannot use\n// `display: none;` or `visibility: hidden;` as that also hides the popover.\n// Simply visually hiding the inputs via `opacity` would leave them clickable in\n// certain cases which is prevented by using `clip` and `pointer-events`.\n// This way, we ensure a DOM element is visible to position the popover from.\n//\n// See https://github.com/twbs/bootstrap/pull/12794 and\n// https://github.com/twbs/bootstrap/pull/14559 for more information.\n\n[data-toggle=\"buttons\"] {\n  > .btn,\n  > .btn-group > .btn {\n    input[type=\"radio\"],\n    input[type=\"checkbox\"] {\n      position: absolute;\n      clip: rect(0,0,0,0);\n      pointer-events: none;\n    }\n  }\n}\n","//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.\n\n.fade {\n  opacity: 0;\n  .transition(opacity .15s linear);\n  &.in {\n    opacity: 1;\n  }\n}\n\n.collapse {\n  display: none;\n\n  &.in      { display: block; }\n  tr&.in    { display: table-row; }\n  tbody&.in { display: table-row-group; }\n}\n\n.collapsing {\n  position: relative;\n  height: 0;\n  overflow: hidden;\n  .transition-property(~\"height, visibility\");\n  .transition-duration(.35s);\n  .transition-timing-function(ease);\n}\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 2px;\n  vertical-align: middle;\n  border-top:   @caret-width-base dashed;\n  border-top:   @caret-width-base solid ~\"\\9\"; // IE8\n  border-right: @caret-width-base solid transparent;\n  border-left:  @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropup,\n.dropdown {\n  position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n  outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  z-index: @zindex-dropdown;\n  display: none; // none by default, but block on \"open\" of the menu\n  float: left;\n  min-width: 160px;\n  padding: 5px 0;\n  margin: 2px 0 0; // override default ul\n  list-style: none;\n  font-size: @font-size-base;\n  text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n  background-color: @dropdown-bg;\n  border: 1px solid @dropdown-fallback-border; // IE8 fallback\n  border: 1px solid @dropdown-border;\n  border-radius: @border-radius-base;\n  .box-shadow(0 6px 12px rgba(0,0,0,.175));\n  background-clip: padding-box;\n\n  // Aligns the dropdown menu to right\n  //\n  // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n  &.pull-right {\n    right: 0;\n    left: auto;\n  }\n\n  // Dividers (basically an hr) within the dropdown\n  .divider {\n    .nav-divider(@dropdown-divider-bg);\n  }\n\n  // Links within the dropdown menu\n  > li > a {\n    display: block;\n    padding: 3px 20px;\n    clear: both;\n    font-weight: normal;\n    line-height: @line-height-base;\n    color: @dropdown-link-color;\n    white-space: nowrap; // prevent links from randomly breaking onto new lines\n  }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    color: @dropdown-link-hover-color;\n    background-color: @dropdown-link-hover-bg;\n  }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n  &,\n  &:hover,\n  &:focus {\n    color: @dropdown-link-active-color;\n    text-decoration: none;\n    outline: 0;\n    background-color: @dropdown-link-active-bg;\n  }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n  &,\n  &:hover,\n  &:focus {\n    color: @dropdown-link-disabled-color;\n  }\n\n  // Nuke hover/focus effects\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    background-color: transparent;\n    background-image: none; // Remove CSS gradient\n    .reset-filter();\n    cursor: @cursor-disabled;\n  }\n}\n\n// Open state for the dropdown\n.open {\n  // Show the menu\n  > .dropdown-menu {\n    display: block;\n  }\n\n  // Remove the outline when :focus is triggered\n  > a {\n    outline: 0;\n  }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n  left: auto; // Reset the default from `.dropdown-menu`\n  right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n  left: 0;\n  right: auto;\n}\n\n// Dropdown section headers\n.dropdown-header {\n  display: block;\n  padding: 3px 20px;\n  font-size: @font-size-small;\n  line-height: @line-height-base;\n  color: @dropdown-header-color;\n  white-space: nowrap; // as with > li > a\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n  position: fixed;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  top: 0;\n  z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n  right: 0;\n  left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n  // Reverse the caret\n  .caret {\n    border-top: 0;\n    border-bottom: @caret-width-base dashed;\n    border-bottom: @caret-width-base solid ~\"\\9\"; // IE8\n    content: \"\";\n  }\n  // Different positioning for bottom up menu\n  .dropdown-menu {\n    top: auto;\n    bottom: 100%;\n    margin-bottom: 2px;\n  }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-right {\n    .dropdown-menu {\n      .dropdown-menu-right();\n    }\n    // Necessary for overrides of the default right aligned menu.\n    // Will remove come v4 in all likelihood.\n    .dropdown-menu-left {\n      .dropdown-menu-left();\n    }\n  }\n}\n","// Horizontal dividers\n//\n// Dividers (basically an hr) within dropdowns and nav lists\n\n.nav-divider(@color: #e5e5e5) {\n  height: 1px;\n  margin: ((@line-height-computed / 2) - 1) 0;\n  overflow: hidden;\n  background-color: @color;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n  filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n  border-top-right-radius: @radius;\n   border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n  border-bottom-right-radius: @radius;\n     border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n  border-bottom-right-radius: @radius;\n   border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n  border-bottom-left-radius: @radius;\n     border-top-left-radius: @radius;\n}\n","//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n  position: relative; // For dropdowns\n  display: table;\n  border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n  // Undo padding and float of grid classes\n  &[class*=\"col-\"] {\n    float: none;\n    padding-left: 0;\n    padding-right: 0;\n  }\n\n  .form-control {\n    // Ensure that the input is always above the *appended* addon button for\n    // proper border colors.\n    position: relative;\n    z-index: 2;\n\n    // IE9 fubars the placeholder attribute in text inputs and the arrows on\n    // select elements in input groups. To fix it, we float the input. Details:\n    // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n    float: left;\n\n    width: 100%;\n    margin-bottom: 0;\n\n    &:focus {\n      z-index: 3;\n    }\n  }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n  .input-lg();\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n  .input-sm();\n}\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n  display: table-cell;\n\n  &:not(:first-child):not(:last-child) {\n    border-radius: 0;\n  }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n  width: 1%;\n  white-space: nowrap;\n  vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n  padding: @padding-base-vertical @padding-base-horizontal;\n  font-size: @font-size-base;\n  font-weight: normal;\n  line-height: 1;\n  color: @input-color;\n  text-align: center;\n  background-color: @input-group-addon-bg;\n  border: 1px solid @input-group-addon-border-color;\n  border-radius: @input-border-radius;\n\n  // Sizing\n  &.input-sm {\n    padding: @padding-small-vertical @padding-small-horizontal;\n    font-size: @font-size-small;\n    border-radius: @input-border-radius-small;\n  }\n  &.input-lg {\n    padding: @padding-large-vertical @padding-large-horizontal;\n    font-size: @font-size-large;\n    border-radius: @input-border-radius-large;\n  }\n\n  // Nuke default margins from checkboxes and radios to vertically center within.\n  input[type=\"radio\"],\n  input[type=\"checkbox\"] {\n    margin-top: 0;\n  }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n  .border-right-radius(0);\n}\n.input-group-addon:first-child {\n  border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n  .border-left-radius(0);\n}\n.input-group-addon:last-child {\n  border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n  position: relative;\n  // Jankily prevent input button groups from wrapping with `white-space` and\n  // `font-size` in combination with `inline-block` on buttons.\n  font-size: 0;\n  white-space: nowrap;\n\n  // Negative margin for spacing, position for bringing hovered/focused/actived\n  // element above the siblings.\n  > .btn {\n    position: relative;\n    + .btn {\n      margin-left: -1px;\n    }\n    // Bring the \"active\" button to the front\n    &:hover,\n    &:focus,\n    &:active {\n      z-index: 2;\n    }\n  }\n\n  // Negative margin to only have a 1px border between the two\n  &:first-child {\n    > .btn,\n    > .btn-group {\n      margin-right: -1px;\n    }\n  }\n  &:last-child {\n    > .btn,\n    > .btn-group {\n      z-index: 2;\n      margin-left: -1px;\n    }\n  }\n}\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n  margin-bottom: 0;\n  padding-left: 0; // Override default ul/ol\n  list-style: none;\n  &:extend(.clearfix all);\n\n  > li {\n    position: relative;\n    display: block;\n\n    > a {\n      position: relative;\n      display: block;\n      padding: @nav-link-padding;\n      &:hover,\n      &:focus {\n        text-decoration: none;\n        background-color: @nav-link-hover-bg;\n      }\n    }\n\n    // Disabled state sets text to gray and nukes hover/tab effects\n    &.disabled > a {\n      color: @nav-disabled-link-color;\n\n      &:hover,\n      &:focus {\n        color: @nav-disabled-link-hover-color;\n        text-decoration: none;\n        background-color: transparent;\n        cursor: @cursor-disabled;\n      }\n    }\n  }\n\n  // Open dropdowns\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: @nav-link-hover-bg;\n      border-color: @link-color;\n    }\n  }\n\n  // Nav dividers (deprecated with v3.0.1)\n  //\n  // This should have been removed in v3 with the dropping of `.nav-list`, but\n  // we missed it. We don't currently support this anywhere, but in the interest\n  // of maintaining backward compatibility in case you use it, it's deprecated.\n  .nav-divider {\n    .nav-divider();\n  }\n\n  // Prevent IE8 from misplacing imgs\n  //\n  // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n  > li > a > img {\n    max-width: none;\n  }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n  border-bottom: 1px solid @nav-tabs-border-color;\n  > li {\n    float: left;\n    // Make the list-items overlay the bottom border\n    margin-bottom: -1px;\n\n    // Actual tabs (as links)\n    > a {\n      margin-right: 2px;\n      line-height: @line-height-base;\n      border: 1px solid transparent;\n      border-radius: @border-radius-base @border-radius-base 0 0;\n      &:hover {\n        border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n      }\n    }\n\n    // Active state, and its :hover to override normal :hover\n    &.active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @nav-tabs-active-link-hover-color;\n        background-color: @nav-tabs-active-link-hover-bg;\n        border: 1px solid @nav-tabs-active-link-hover-border-color;\n        border-bottom-color: transparent;\n        cursor: default;\n      }\n    }\n  }\n  // pulling this in mainly for less shorthand\n  &.nav-justified {\n    .nav-justified();\n    .nav-tabs-justified();\n  }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n  > li {\n    float: left;\n\n    // Links rendered as pills\n    > a {\n      border-radius: @nav-pills-border-radius;\n    }\n    + li {\n      margin-left: 2px;\n    }\n\n    // Active state\n    &.active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @nav-pills-active-link-hover-color;\n        background-color: @nav-pills-active-link-hover-bg;\n      }\n    }\n  }\n}\n\n\n// Stacked pills\n.nav-stacked {\n  > li {\n    float: none;\n    + li {\n      margin-top: 2px;\n      margin-left: 0; // no need for this gap between nav items\n    }\n  }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n  width: 100%;\n\n  > li {\n    float: none;\n    > a {\n      text-align: center;\n      margin-bottom: 5px;\n    }\n  }\n\n  > .dropdown .dropdown-menu {\n    top: auto;\n    left: auto;\n  }\n\n  @media (min-width: @screen-sm-min) {\n    > li {\n      display: table-cell;\n      width: 1%;\n      > a {\n        margin-bottom: 0;\n      }\n    }\n  }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n  border-bottom: 0;\n\n  > li > a {\n    // Override margin from .nav-tabs\n    margin-right: 0;\n    border-radius: @border-radius-base;\n  }\n\n  > .active > a,\n  > .active > a:hover,\n  > .active > a:focus {\n    border: 1px solid @nav-tabs-justified-link-border-color;\n  }\n\n  @media (min-width: @screen-sm-min) {\n    > li > a {\n      border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n      border-radius: @border-radius-base @border-radius-base 0 0;\n    }\n    > .active > a,\n    > .active > a:hover,\n    > .active > a:focus {\n      border-bottom-color: @nav-tabs-justified-active-link-border-color;\n    }\n  }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Hide tabbable panes to start, show them when `.active`\n.tab-content {\n  > .tab-pane {\n    display: none;\n  }\n  > .active {\n    display: block;\n  }\n}\n\n\n// Dropdowns\n// -------------------------\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n  // make dropdown border overlap tab border\n  margin-top: -1px;\n  // Remove the top rounded corners here since there is a hard edge above the menu\n  .border-top-radius(0);\n}\n","//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n  position: relative;\n  min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n  margin-bottom: @navbar-margin-bottom;\n  border: 1px solid transparent;\n\n  // Prevent floats from breaking the navbar\n  &:extend(.clearfix all);\n\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: @navbar-border-radius;\n  }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n  &:extend(.clearfix all);\n\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n  }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n  overflow-x: visible;\n  padding-right: @navbar-padding-horizontal;\n  padding-left:  @navbar-padding-horizontal;\n  border-top: 1px solid transparent;\n  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n  &:extend(.clearfix all);\n  -webkit-overflow-scrolling: touch;\n\n  &.in {\n    overflow-y: auto;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    width: auto;\n    border-top: 0;\n    box-shadow: none;\n\n    &.collapse {\n      display: block !important;\n      height: auto !important;\n      padding-bottom: 0; // Override default setting\n      overflow: visible !important;\n    }\n\n    &.in {\n      overflow-y: visible;\n    }\n\n    // Undo the collapse side padding for navbars with containers to ensure\n    // alignment of right-aligned contents.\n    .navbar-fixed-top &,\n    .navbar-static-top &,\n    .navbar-fixed-bottom & {\n      padding-left: 0;\n      padding-right: 0;\n    }\n  }\n}\n\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  .navbar-collapse {\n    max-height: @navbar-collapse-max-height;\n\n    @media (max-device-width: @screen-xs-min) and (orientation: landscape) {\n      max-height: 200px;\n    }\n  }\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container,\n.container-fluid {\n  > .navbar-header,\n  > .navbar-collapse {\n    margin-right: -@navbar-padding-horizontal;\n    margin-left:  -@navbar-padding-horizontal;\n\n    @media (min-width: @grid-float-breakpoint) {\n      margin-right: 0;\n      margin-left:  0;\n    }\n  }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n  z-index: @zindex-navbar;\n  border-width: 0 0 1px;\n\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: 0;\n  }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  position: fixed;\n  right: 0;\n  left: 0;\n  z-index: @zindex-navbar-fixed;\n\n  // Undo the rounded corners\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top {\n  top: 0;\n  border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n  bottom: 0;\n  margin-bottom: 0; // override .navbar defaults\n  border-width: 1px 0 0;\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n  float: left;\n  padding: @navbar-padding-vertical @navbar-padding-horizontal;\n  font-size: @font-size-large;\n  line-height: @line-height-computed;\n  height: @navbar-height;\n\n  &:hover,\n  &:focus {\n    text-decoration: none;\n  }\n\n  > img {\n    display: block;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    .navbar > .container &,\n    .navbar > .container-fluid & {\n      margin-left: -@navbar-padding-horizontal;\n    }\n  }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n  position: relative;\n  float: right;\n  margin-right: @navbar-padding-horizontal;\n  padding: 9px 10px;\n  .navbar-vertical-align(34px);\n  background-color: transparent;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid transparent;\n  border-radius: @border-radius-base;\n\n  // We remove the `outline` here, but later compensate by attaching `:hover`\n  // styles to `:focus`.\n  &:focus {\n    outline: 0;\n  }\n\n  // Bars\n  .icon-bar {\n    display: block;\n    width: 22px;\n    height: 2px;\n    border-radius: 1px;\n  }\n  .icon-bar + .icon-bar {\n    margin-top: 4px;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    display: none;\n  }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n  margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n  > li > a {\n    padding-top:    10px;\n    padding-bottom: 10px;\n    line-height: @line-height-computed;\n  }\n\n  @media (max-width: @grid-float-breakpoint-max) {\n    // Dropdowns get custom display when collapsed\n    .open .dropdown-menu {\n      position: static;\n      float: none;\n      width: auto;\n      margin-top: 0;\n      background-color: transparent;\n      border: 0;\n      box-shadow: none;\n      > li > a,\n      .dropdown-header {\n        padding: 5px 15px 5px 25px;\n      }\n      > li > a {\n        line-height: @line-height-computed;\n        &:hover,\n        &:focus {\n          background-image: none;\n        }\n      }\n    }\n  }\n\n  // Uncollapse the nav\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n    margin: 0;\n\n    > li {\n      float: left;\n      > a {\n        padding-top:    @navbar-padding-vertical;\n        padding-bottom: @navbar-padding-vertical;\n      }\n    }\n  }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n  margin-left: -@navbar-padding-horizontal;\n  margin-right: -@navbar-padding-horizontal;\n  padding: 10px @navbar-padding-horizontal;\n  border-top: 1px solid transparent;\n  border-bottom: 1px solid transparent;\n  @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);\n  .box-shadow(@shadow);\n\n  // Mixin behavior for optimum display\n  .form-inline();\n\n  .form-group {\n    @media (max-width: @grid-float-breakpoint-max) {\n      margin-bottom: 5px;\n\n      &:last-child {\n        margin-bottom: 0;\n      }\n    }\n  }\n\n  // Vertically center in expanded, horizontal navbar\n  .navbar-vertical-align(@input-height-base);\n\n  // Undo 100% width for pull classes\n  @media (min-width: @grid-float-breakpoint) {\n    width: auto;\n    border: 0;\n    margin-left: 0;\n    margin-right: 0;\n    padding-top: 0;\n    padding-bottom: 0;\n    .box-shadow(none);\n  }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n  margin-top: 0;\n  .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n  margin-bottom: 0;\n  .border-top-radius(@navbar-border-radius);\n  .border-bottom-radius(0);\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n  .navbar-vertical-align(@input-height-base);\n\n  &.btn-sm {\n    .navbar-vertical-align(@input-height-small);\n  }\n  &.btn-xs {\n    .navbar-vertical-align(22);\n  }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n  .navbar-vertical-align(@line-height-computed);\n\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n    margin-left: @navbar-padding-horizontal;\n    margin-right: @navbar-padding-horizontal;\n  }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n//\n// Declared after the navbar components to ensure more specificity on the margins.\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-left  { .pull-left(); }\n  .navbar-right {\n    .pull-right();\n    margin-right: -@navbar-padding-horizontal;\n\n    ~ .navbar-right {\n      margin-right: 0;\n    }\n  }\n}\n\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n  background-color: @navbar-default-bg;\n  border-color: @navbar-default-border;\n\n  .navbar-brand {\n    color: @navbar-default-brand-color;\n    &:hover,\n    &:focus {\n      color: @navbar-default-brand-hover-color;\n      background-color: @navbar-default-brand-hover-bg;\n    }\n  }\n\n  .navbar-text {\n    color: @navbar-default-color;\n  }\n\n  .navbar-nav {\n    > li > a {\n      color: @navbar-default-link-color;\n\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-hover-color;\n        background-color: @navbar-default-link-hover-bg;\n      }\n    }\n    > .active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-active-color;\n        background-color: @navbar-default-link-active-bg;\n      }\n    }\n    > .disabled > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-disabled-color;\n        background-color: @navbar-default-link-disabled-bg;\n      }\n    }\n  }\n\n  .navbar-toggle {\n    border-color: @navbar-default-toggle-border-color;\n    &:hover,\n    &:focus {\n      background-color: @navbar-default-toggle-hover-bg;\n    }\n    .icon-bar {\n      background-color: @navbar-default-toggle-icon-bar-bg;\n    }\n  }\n\n  .navbar-collapse,\n  .navbar-form {\n    border-color: @navbar-default-border;\n  }\n\n  // Dropdown menu items\n  .navbar-nav {\n    // Remove background color from open dropdown\n    > .open > a {\n      &,\n      &:hover,\n      &:focus {\n        background-color: @navbar-default-link-active-bg;\n        color: @navbar-default-link-active-color;\n      }\n    }\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      // Dropdowns get custom display when collapsed\n      .open .dropdown-menu {\n        > li > a {\n          color: @navbar-default-link-color;\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-hover-color;\n            background-color: @navbar-default-link-hover-bg;\n          }\n        }\n        > .active > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-active-color;\n            background-color: @navbar-default-link-active-bg;\n          }\n        }\n        > .disabled > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-disabled-color;\n            background-color: @navbar-default-link-disabled-bg;\n          }\n        }\n      }\n    }\n  }\n\n\n  // Links in navbars\n  //\n  // Add a class to ensure links outside the navbar nav are colored correctly.\n\n  .navbar-link {\n    color: @navbar-default-link-color;\n    &:hover {\n      color: @navbar-default-link-hover-color;\n    }\n  }\n\n  .btn-link {\n    color: @navbar-default-link-color;\n    &:hover,\n    &:focus {\n      color: @navbar-default-link-hover-color;\n    }\n    &[disabled],\n    fieldset[disabled] & {\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-disabled-color;\n      }\n    }\n  }\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n  background-color: @navbar-inverse-bg;\n  border-color: @navbar-inverse-border;\n\n  .navbar-brand {\n    color: @navbar-inverse-brand-color;\n    &:hover,\n    &:focus {\n      color: @navbar-inverse-brand-hover-color;\n      background-color: @navbar-inverse-brand-hover-bg;\n    }\n  }\n\n  .navbar-text {\n    color: @navbar-inverse-color;\n  }\n\n  .navbar-nav {\n    > li > a {\n      color: @navbar-inverse-link-color;\n\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-hover-color;\n        background-color: @navbar-inverse-link-hover-bg;\n      }\n    }\n    > .active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-active-color;\n        background-color: @navbar-inverse-link-active-bg;\n      }\n    }\n    > .disabled > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-disabled-color;\n        background-color: @navbar-inverse-link-disabled-bg;\n      }\n    }\n  }\n\n  // Darken the responsive nav toggle\n  .navbar-toggle {\n    border-color: @navbar-inverse-toggle-border-color;\n    &:hover,\n    &:focus {\n      background-color: @navbar-inverse-toggle-hover-bg;\n    }\n    .icon-bar {\n      background-color: @navbar-inverse-toggle-icon-bar-bg;\n    }\n  }\n\n  .navbar-collapse,\n  .navbar-form {\n    border-color: darken(@navbar-inverse-bg, 7%);\n  }\n\n  // Dropdowns\n  .navbar-nav {\n    > .open > a {\n      &,\n      &:hover,\n      &:focus {\n        background-color: @navbar-inverse-link-active-bg;\n        color: @navbar-inverse-link-active-color;\n      }\n    }\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      // Dropdowns get custom display\n      .open .dropdown-menu {\n        > .dropdown-header {\n          border-color: @navbar-inverse-border;\n        }\n        .divider {\n          background-color: @navbar-inverse-border;\n        }\n        > li > a {\n          color: @navbar-inverse-link-color;\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-hover-color;\n            background-color: @navbar-inverse-link-hover-bg;\n          }\n        }\n        > .active > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-active-color;\n            background-color: @navbar-inverse-link-active-bg;\n          }\n        }\n        > .disabled > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-disabled-color;\n            background-color: @navbar-inverse-link-disabled-bg;\n          }\n        }\n      }\n    }\n  }\n\n  .navbar-link {\n    color: @navbar-inverse-link-color;\n    &:hover {\n      color: @navbar-inverse-link-hover-color;\n    }\n  }\n\n  .btn-link {\n    color: @navbar-inverse-link-color;\n    &:hover,\n    &:focus {\n      color: @navbar-inverse-link-hover-color;\n    }\n    &[disabled],\n    fieldset[disabled] & {\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-disabled-color;\n      }\n    }\n  }\n}\n","// Navbar vertical align\n//\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n\n.navbar-vertical-align(@element-height) {\n  margin-top: ((@navbar-height - @element-height) / 2);\n  margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n","//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n  .clearfix();\n}\n.center-block {\n  .center-block();\n}\n.pull-right {\n  float: right !important;\n}\n.pull-left {\n  float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1\n.hide {\n  display: none !important;\n}\n.show {\n  display: block !important;\n}\n.invisible {\n  visibility: hidden;\n}\n.text-hide {\n  .text-hide();\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n  display: none !important;\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n  position: fixed;\n}\n","// Bordered & Pulled\n// -------------------------\n\n.@{fa-css-prefix}-border {\n  padding: .2em .25em .15em;\n  border: solid .08em @fa-border-color;\n  border-radius: .1em;\n}\n\n.@{fa-css-prefix}-pull-left { float: left; }\n.@{fa-css-prefix}-pull-right { float: right; }\n\n.@{fa-css-prefix} {\n  &.@{fa-css-prefix}-pull-left { margin-right: .3em; }\n  &.@{fa-css-prefix}-pull-right { margin-left: .3em; }\n}\n\n/* Deprecated as of 4.4.0 */\n.pull-right { float: right; }\n.pull-left { float: left; }\n\n.@{fa-css-prefix} {\n  &.pull-left { margin-right: .3em; }\n  &.pull-right { margin-left: .3em; }\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n  padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n  margin-bottom: @line-height-computed;\n  list-style: none;\n  background-color: @breadcrumb-bg;\n  border-radius: @border-radius-base;\n\n  > li {\n    display: inline-block;\n\n    + li:before {\n      content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n      padding: 0 5px;\n      color: @breadcrumb-color;\n    }\n  }\n\n  > .active {\n    color: @breadcrumb-active-color;\n  }\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n  display: inline-block;\n  padding-left: 0;\n  margin: @line-height-computed 0;\n  border-radius: @border-radius-base;\n\n  > li {\n    display: inline; // Remove list-style and block-level defaults\n    > a,\n    > span {\n      position: relative;\n      float: left; // Collapse white-space\n      padding: @padding-base-vertical @padding-base-horizontal;\n      line-height: @line-height-base;\n      text-decoration: none;\n      color: @pagination-color;\n      background-color: @pagination-bg;\n      border: 1px solid @pagination-border;\n      margin-left: -1px;\n    }\n    &:first-child {\n      > a,\n      > span {\n        margin-left: 0;\n        .border-left-radius(@border-radius-base);\n      }\n    }\n    &:last-child {\n      > a,\n      > span {\n        .border-right-radius(@border-radius-base);\n      }\n    }\n  }\n\n  > li > a,\n  > li > span {\n    &:hover,\n    &:focus {\n      z-index: 2;\n      color: @pagination-hover-color;\n      background-color: @pagination-hover-bg;\n      border-color: @pagination-hover-border;\n    }\n  }\n\n  > .active > a,\n  > .active > span {\n    &,\n    &:hover,\n    &:focus {\n      z-index: 3;\n      color: @pagination-active-color;\n      background-color: @pagination-active-bg;\n      border-color: @pagination-active-border;\n      cursor: default;\n    }\n  }\n\n  > .disabled {\n    > span,\n    > span:hover,\n    > span:focus,\n    > a,\n    > a:hover,\n    > a:focus {\n      color: @pagination-disabled-color;\n      background-color: @pagination-disabled-bg;\n      border-color: @pagination-disabled-border;\n      cursor: @cursor-disabled;\n    }\n  }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n  .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n  .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n","// Pagination\n\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  > li {\n    > a,\n    > span {\n      padding: @padding-vertical @padding-horizontal;\n      font-size: @font-size;\n      line-height: @line-height;\n    }\n    &:first-child {\n      > a,\n      > span {\n        .border-left-radius(@border-radius);\n      }\n    }\n    &:last-child {\n      > a,\n      > span {\n        .border-right-radius(@border-radius);\n      }\n    }\n  }\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n  padding-left: 0;\n  margin: @line-height-computed 0;\n  list-style: none;\n  text-align: center;\n  &:extend(.clearfix all);\n  li {\n    display: inline;\n    > a,\n    > span {\n      display: inline-block;\n      padding: 5px 14px;\n      background-color: @pager-bg;\n      border: 1px solid @pager-border;\n      border-radius: @pager-border-radius;\n    }\n\n    > a:hover,\n    > a:focus {\n      text-decoration: none;\n      background-color: @pager-hover-bg;\n    }\n  }\n\n  .next {\n    > a,\n    > span {\n      float: right;\n    }\n  }\n\n  .previous {\n    > a,\n    > span {\n      float: left;\n    }\n  }\n\n  .disabled {\n    > a,\n    > a:hover,\n    > a:focus,\n    > span {\n      color: @pager-disabled-color;\n      background-color: @pager-bg;\n      cursor: @cursor-disabled;\n    }\n  }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n  display: inline;\n  padding: .2em .6em .3em;\n  font-size: 75%;\n  font-weight: bold;\n  line-height: 1;\n  color: @label-color;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  border-radius: .25em;\n\n  // Add hover effects, but only for links\n  a& {\n    &:hover,\n    &:focus {\n      color: @label-link-hover-color;\n      text-decoration: none;\n      cursor: pointer;\n    }\n  }\n\n  // Empty labels collapse automatically (not available in IE8)\n  &:empty {\n    display: none;\n  }\n\n  // Quick fix for labels in buttons\n  .btn & {\n    position: relative;\n    top: -1px;\n  }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n  .label-variant(@label-default-bg);\n}\n\n.label-primary {\n  .label-variant(@label-primary-bg);\n}\n\n.label-success {\n  .label-variant(@label-success-bg);\n}\n\n.label-info {\n  .label-variant(@label-info-bg);\n}\n\n.label-warning {\n  .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n  .label-variant(@label-danger-bg);\n}\n","// Labels\n\n.label-variant(@color) {\n  background-color: @color;\n\n  &[href] {\n    &:hover,\n    &:focus {\n      background-color: darken(@color, 10%);\n    }\n  }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base class\n.badge {\n  display: inline-block;\n  min-width: 10px;\n  padding: 3px 7px;\n  font-size: @font-size-small;\n  font-weight: @badge-font-weight;\n  color: @badge-color;\n  line-height: @badge-line-height;\n  vertical-align: middle;\n  white-space: nowrap;\n  text-align: center;\n  background-color: @badge-bg;\n  border-radius: @badge-border-radius;\n\n  // Empty badges collapse automatically (not available in IE8)\n  &:empty {\n    display: none;\n  }\n\n  // Quick fix for badges in buttons\n  .btn & {\n    position: relative;\n    top: -1px;\n  }\n\n  .btn-xs &,\n  .btn-group-xs > .btn & {\n    top: 0;\n    padding: 1px 5px;\n  }\n\n  // Hover state, but only for links\n  a& {\n    &:hover,\n    &:focus {\n      color: @badge-link-hover-color;\n      text-decoration: none;\n      cursor: pointer;\n    }\n  }\n\n  // Account for badges in navs\n  .list-group-item.active > &,\n  .nav-pills > .active > a > & {\n    color: @badge-active-color;\n    background-color: @badge-active-bg;\n  }\n\n  .list-group-item > & {\n    float: right;\n  }\n\n  .list-group-item > & + & {\n    margin-right: 5px;\n  }\n\n  .nav-pills > li > a > & {\n    margin-left: 3px;\n  }\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n  padding-top:    @jumbotron-padding;\n  padding-bottom: @jumbotron-padding;\n  margin-bottom: @jumbotron-padding;\n  color: @jumbotron-color;\n  background-color: @jumbotron-bg;\n\n  h1,\n  .h1 {\n    color: @jumbotron-heading-color;\n  }\n\n  p {\n    margin-bottom: (@jumbotron-padding / 2);\n    font-size: @jumbotron-font-size;\n    font-weight: 200;\n  }\n\n  > hr {\n    border-top-color: darken(@jumbotron-bg, 10%);\n  }\n\n  .container &,\n  .container-fluid & {\n    border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n    padding-left:  (@grid-gutter-width / 2);\n    padding-right: (@grid-gutter-width / 2);\n  }\n\n  .container {\n    max-width: 100%;\n  }\n\n  @media screen and (min-width: @screen-sm-min) {\n    padding-top:    (@jumbotron-padding * 1.6);\n    padding-bottom: (@jumbotron-padding * 1.6);\n\n    .container &,\n    .container-fluid & {\n      padding-left:  (@jumbotron-padding * 2);\n      padding-right: (@jumbotron-padding * 2);\n    }\n\n    h1,\n    .h1 {\n      font-size: @jumbotron-heading-font-size;\n    }\n  }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n  padding: @alert-padding;\n  margin-bottom: @line-height-computed;\n  border: 1px solid transparent;\n  border-radius: @alert-border-radius;\n\n  // Headings for larger alerts\n  h4 {\n    margin-top: 0;\n    // Specified for the h4 to prevent conflicts of changing @headings-color\n    color: inherit;\n  }\n\n  // Provide class for links that match alerts\n  .alert-link {\n    font-weight: @alert-link-font-weight;\n  }\n\n  // Improve alignment and spacing of inner content\n  > p,\n  > ul {\n    margin-bottom: 0;\n  }\n\n  > p + p {\n    margin-top: 5px;\n  }\n}\n\n// Dismissible alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.\n.alert-dismissible {\n  padding-right: (@alert-padding + 20);\n\n  // Adjust close link position\n  .close {\n    position: relative;\n    top: -2px;\n    right: -21px;\n    color: inherit;\n  }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n  .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n\n.alert-info {\n  .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n\n.alert-warning {\n  .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n\n.alert-danger {\n  .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","// Alerts\n\n.alert-variant(@background; @border; @text-color) {\n  background-color: @background;\n  border-color: @border;\n  color: @text-color;\n\n  hr {\n    border-top-color: darken(@border, 5%);\n  }\n  .alert-link {\n    color: darken(@text-color, 10%);\n  }\n}\n","//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// WebKit\n@-webkit-keyframes progress-bar-stripes {\n  from  { background-position: 40px 0; }\n  to    { background-position: 0 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n  from  { background-position: 40px 0; }\n  to    { background-position: 0 0; }\n}\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n  overflow: hidden;\n  height: @line-height-computed;\n  margin-bottom: @line-height-computed;\n  background-color: @progress-bg;\n  border-radius: @progress-border-radius;\n  .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n}\n\n// Bar of progress\n.progress-bar {\n  float: left;\n  width: 0%;\n  height: 100%;\n  font-size: @font-size-small;\n  line-height: @line-height-computed;\n  color: @progress-bar-color;\n  text-align: center;\n  background-color: @progress-bar-bg;\n  .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n  .transition(width .6s ease);\n}\n\n// Striped bars\n//\n// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar-striped` class, which you just add to an existing\n// `.progress-bar`.\n.progress-striped .progress-bar,\n.progress-bar-striped {\n  #gradient > .striped();\n  background-size: 40px 40px;\n}\n\n// Call animation for the active one\n//\n// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar.active` approach.\n.progress.active .progress-bar,\n.progress-bar.active {\n  .animation(progress-bar-stripes 2s linear infinite);\n}\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n  .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n  .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n  .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n  .progress-bar-variant(@progress-bar-danger-bg);\n}\n","// Gradients\n\n#gradient {\n\n  // Horizontal gradient, from left to right\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  // Vertical gradient, from top to bottom\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12\n    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n    background-repeat: repeat-x;\n    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n  }\n  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .radial(@inner-color: #555; @outer-color: #333) {\n    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n    background-image: radial-gradient(circle, @inner-color, @outer-color);\n    background-repeat: no-repeat;\n  }\n  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n  }\n}\n","// Progress bars\n\n.progress-bar-variant(@color) {\n  background-color: @color;\n\n  // Deprecated parent class requirement as of v3.2.0\n  .progress-striped & {\n    #gradient > .striped();\n  }\n}\n",".media {\n  // Proper spacing between instances of .media\n  margin-top: 15px;\n\n  &:first-child {\n    margin-top: 0;\n  }\n}\n\n.media,\n.media-body {\n  zoom: 1;\n  overflow: hidden;\n}\n\n.media-body {\n  width: 10000px;\n}\n\n.media-object {\n  display: block;\n\n  // Fix collapse in webkit from max-width: 100% and display: table-cell.\n  &.img-thumbnail {\n    max-width: none;\n  }\n}\n\n.media-right,\n.media > .pull-right {\n  padding-left: 10px;\n}\n\n.media-left,\n.media > .pull-left {\n  padding-right: 10px;\n}\n\n.media-left,\n.media-right,\n.media-body {\n  display: table-cell;\n  vertical-align: top;\n}\n\n.media-middle {\n  vertical-align: middle;\n}\n\n.media-bottom {\n  vertical-align: bottom;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n\n// Media list variation\n//\n// Undo default ul/ol styles\n.media-list {\n  padding-left: 0;\n  list-style: none;\n}\n","//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n  // No need to set list-style: none; since .list-group-item is block level\n  margin-bottom: 20px;\n  padding-left: 0; // reset padding because ul and ol\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n  // Place the border on the list items and negative margin up for better styling\n  margin-bottom: -1px;\n  background-color: @list-group-bg;\n  border: 1px solid @list-group-border;\n\n  // Round the first and last items\n  &:first-child {\n    .border-top-radius(@list-group-border-radius);\n  }\n  &:last-child {\n    margin-bottom: 0;\n    .border-bottom-radius(@list-group-border-radius);\n  }\n}\n\n\n// Interactive list items\n//\n// Use anchor or button elements instead of `li`s or `div`s to create interactive items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item,\nbutton.list-group-item {\n  color: @list-group-link-color;\n\n  .list-group-item-heading {\n    color: @list-group-link-heading-color;\n  }\n\n  // Hover state\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    color: @list-group-link-hover-color;\n    background-color: @list-group-hover-bg;\n  }\n}\n\nbutton.list-group-item {\n  width: 100%;\n  text-align: left;\n}\n\n.list-group-item {\n  // Disabled state\n  &.disabled,\n  &.disabled:hover,\n  &.disabled:focus {\n    background-color: @list-group-disabled-bg;\n    color: @list-group-disabled-color;\n    cursor: @cursor-disabled;\n\n    // Force color to inherit for custom content\n    .list-group-item-heading {\n      color: inherit;\n    }\n    .list-group-item-text {\n      color: @list-group-disabled-text-color;\n    }\n  }\n\n  // Active class on item itself, not parent\n  &.active,\n  &.active:hover,\n  &.active:focus {\n    z-index: 2; // Place active items above their siblings for proper border styling\n    color: @list-group-active-color;\n    background-color: @list-group-active-bg;\n    border-color: @list-group-active-border;\n\n    // Force color to inherit for custom content\n    .list-group-item-heading,\n    .list-group-item-heading > small,\n    .list-group-item-heading > .small {\n      color: inherit;\n    }\n    .list-group-item-text {\n      color: @list-group-active-text-color;\n    }\n  }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.list-group-item-text {\n  margin-bottom: 0;\n  line-height: 1.3;\n}\n","// List Groups\n\n.list-group-item-variant(@state; @background; @color) {\n  .list-group-item-@{state} {\n    color: @color;\n    background-color: @background;\n\n    a&,\n    button& {\n      color: @color;\n\n      .list-group-item-heading {\n        color: inherit;\n      }\n\n      &:hover,\n      &:focus {\n        color: @color;\n        background-color: darken(@background, 5%);\n      }\n      &.active,\n      &.active:hover,\n      &.active:focus {\n        color: #fff;\n        background-color: @color;\n        border-color: @color;\n      }\n    }\n  }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n  margin-bottom: @line-height-computed;\n  background-color: @panel-bg;\n  border: 1px solid transparent;\n  border-radius: @panel-border-radius;\n  .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n  padding: @panel-body-padding;\n  &:extend(.clearfix all);\n}\n\n// Optional heading\n.panel-heading {\n  padding: @panel-heading-padding;\n  border-bottom: 1px solid transparent;\n  .border-top-radius((@panel-border-radius - 1));\n\n  > .dropdown .dropdown-toggle {\n    color: inherit;\n  }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n  margin-top: 0;\n  margin-bottom: 0;\n  font-size: ceil((@font-size-base * 1.125));\n  color: inherit;\n\n  > a,\n  > small,\n  > .small,\n  > small > a,\n  > .small > a {\n    color: inherit;\n  }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n  padding: @panel-footer-padding;\n  background-color: @panel-footer-bg;\n  border-top: 1px solid @panel-inner-border;\n  .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n  > .list-group,\n  > .panel-collapse > .list-group {\n    margin-bottom: 0;\n\n    .list-group-item {\n      border-width: 1px 0;\n      border-radius: 0;\n    }\n\n    // Add border top radius for first one\n    &:first-child {\n      .list-group-item:first-child {\n        border-top: 0;\n        .border-top-radius((@panel-border-radius - 1));\n      }\n    }\n\n    // Add border bottom radius for last one\n    &:last-child {\n      .list-group-item:last-child {\n        border-bottom: 0;\n        .border-bottom-radius((@panel-border-radius - 1));\n      }\n    }\n  }\n  > .panel-heading + .panel-collapse > .list-group {\n    .list-group-item:first-child {\n      .border-top-radius(0);\n    }\n  }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n  .list-group-item:first-child {\n    border-top-width: 0;\n  }\n}\n.list-group + .panel-footer {\n  border-top-width: 0;\n}\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n  > .table,\n  > .table-responsive > .table,\n  > .panel-collapse > .table {\n    margin-bottom: 0;\n\n    caption {\n      padding-left: @panel-body-padding;\n      padding-right: @panel-body-padding;\n    }\n  }\n  // Add border top radius for first one\n  > .table:first-child,\n  > .table-responsive:first-child > .table:first-child {\n    .border-top-radius((@panel-border-radius - 1));\n\n    > thead:first-child,\n    > tbody:first-child {\n      > tr:first-child {\n        border-top-left-radius: (@panel-border-radius - 1);\n        border-top-right-radius: (@panel-border-radius - 1);\n\n        td:first-child,\n        th:first-child {\n          border-top-left-radius: (@panel-border-radius - 1);\n        }\n        td:last-child,\n        th:last-child {\n          border-top-right-radius: (@panel-border-radius - 1);\n        }\n      }\n    }\n  }\n  // Add border bottom radius for last one\n  > .table:last-child,\n  > .table-responsive:last-child > .table:last-child {\n    .border-bottom-radius((@panel-border-radius - 1));\n\n    > tbody:last-child,\n    > tfoot:last-child {\n      > tr:last-child {\n        border-bottom-left-radius: (@panel-border-radius - 1);\n        border-bottom-right-radius: (@panel-border-radius - 1);\n\n        td:first-child,\n        th:first-child {\n          border-bottom-left-radius: (@panel-border-radius - 1);\n        }\n        td:last-child,\n        th:last-child {\n          border-bottom-right-radius: (@panel-border-radius - 1);\n        }\n      }\n    }\n  }\n  > .panel-body + .table,\n  > .panel-body + .table-responsive,\n  > .table + .panel-body,\n  > .table-responsive + .panel-body {\n    border-top: 1px solid @table-border-color;\n  }\n  > .table > tbody:first-child > tr:first-child th,\n  > .table > tbody:first-child > tr:first-child td {\n    border-top: 0;\n  }\n  > .table-bordered,\n  > .table-responsive > .table-bordered {\n    border: 0;\n    > thead,\n    > tbody,\n    > tfoot {\n      > tr {\n        > th:first-child,\n        > td:first-child {\n          border-left: 0;\n        }\n        > th:last-child,\n        > td:last-child {\n          border-right: 0;\n        }\n      }\n    }\n    > thead,\n    > tbody {\n      > tr:first-child {\n        > td,\n        > th {\n          border-bottom: 0;\n        }\n      }\n    }\n    > tbody,\n    > tfoot {\n      > tr:last-child {\n        > td,\n        > th {\n          border-bottom: 0;\n        }\n      }\n    }\n  }\n  > .table-responsive {\n    border: 0;\n    margin-bottom: 0;\n  }\n}\n\n\n// Collapsible panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n  margin-bottom: @line-height-computed;\n\n  // Tighten up margin so it's only between panels\n  .panel {\n    margin-bottom: 0;\n    border-radius: @panel-border-radius;\n\n    + .panel {\n      margin-top: 5px;\n    }\n  }\n\n  .panel-heading {\n    border-bottom: 0;\n\n    + .panel-collapse > .panel-body,\n    + .panel-collapse > .list-group {\n      border-top: 1px solid @panel-inner-border;\n    }\n  }\n\n  .panel-footer {\n    border-top: 0;\n    + .panel-collapse .panel-body {\n      border-bottom: 1px solid @panel-inner-border;\n    }\n  }\n}\n\n\n// Contextual variations\n.panel-default {\n  .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n  .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n  .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n  .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n  .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n  .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","// Panels\n\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n  border-color: @border;\n\n  & > .panel-heading {\n    color: @heading-text-color;\n    background-color: @heading-bg-color;\n    border-color: @heading-border;\n\n    + .panel-collapse > .panel-body {\n      border-top-color: @border;\n    }\n    .badge {\n      color: @heading-bg-color;\n      background-color: @heading-text-color;\n    }\n  }\n  & > .panel-footer {\n    + .panel-collapse > .panel-body {\n      border-bottom-color: @border;\n    }\n  }\n}\n","// Embeds responsive\n//\n// Credit: Nicolas Gallagher and SUIT CSS.\n\n.embed-responsive {\n  position: relative;\n  display: block;\n  height: 0;\n  padding: 0;\n  overflow: hidden;\n\n  .embed-responsive-item,\n  iframe,\n  embed,\n  object,\n  video {\n    position: absolute;\n    top: 0;\n    left: 0;\n    bottom: 0;\n    height: 100%;\n    width: 100%;\n    border: 0;\n  }\n}\n\n// Modifier class for 16:9 aspect ratio\n.embed-responsive-16by9 {\n  padding-bottom: 56.25%;\n}\n\n// Modifier class for 4:3 aspect ratio\n.embed-responsive-4by3 {\n  padding-bottom: 75%;\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n  min-height: 20px;\n  padding: 19px;\n  margin-bottom: 20px;\n  background-color: @well-bg;\n  border: 1px solid @well-border;\n  border-radius: @border-radius-base;\n  .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n  blockquote {\n    border-color: #ddd;\n    border-color: rgba(0,0,0,.15);\n  }\n}\n\n// Sizes\n.well-lg {\n  padding: 24px;\n  border-radius: @border-radius-large;\n}\n.well-sm {\n  padding: 9px;\n  border-radius: @border-radius-small;\n}\n","//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n  float: right;\n  font-size: (@font-size-base * 1.5);\n  font-weight: @close-font-weight;\n  line-height: 1;\n  color: @close-color;\n  text-shadow: @close-text-shadow;\n  .opacity(.2);\n\n  &:hover,\n  &:focus {\n    color: @close-color;\n    text-decoration: none;\n    cursor: pointer;\n    .opacity(.5);\n  }\n\n  // Additional properties for button version\n  // iOS requires the button element instead of an anchor tag.\n  // If you want the anchor version, it requires `href=\"#\"`.\n  // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n  button& {\n    padding: 0;\n    cursor: pointer;\n    background: transparent;\n    border: 0;\n    -webkit-appearance: none;\n  }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open      - body class for killing the scroll\n// .modal           - container to scroll within\n// .modal-dialog    - positioning shell for the actual modal\n// .modal-content   - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n  overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n  display: none;\n  overflow: hidden;\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: @zindex-modal;\n  -webkit-overflow-scrolling: touch;\n\n  // Prevent Chrome on Windows from adding a focus outline. For details, see\n  // https://github.com/twbs/bootstrap/pull/10951.\n  outline: 0;\n\n  // When fading in the modal, animate it to slide down\n  &.fade .modal-dialog {\n    .translate(0, -25%);\n    .transition-transform(~\"0.3s ease-out\");\n  }\n  &.in .modal-dialog { .translate(0, 0) }\n}\n.modal-open .modal {\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n  position: relative;\n  width: auto;\n  margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n  position: relative;\n  background-color: @modal-content-bg;\n  border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n  border: 1px solid @modal-content-border-color;\n  border-radius: @border-radius-large;\n  .box-shadow(0 3px 9px rgba(0,0,0,.5));\n  background-clip: padding-box;\n  // Remove focus outline from opened modal\n  outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: @zindex-modal-background;\n  background-color: @modal-backdrop-bg;\n  // Fade for backdrop\n  &.fade { .opacity(0); }\n  &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n  padding: @modal-title-padding;\n  border-bottom: 1px solid @modal-header-border-color;\n  &:extend(.clearfix all);\n}\n// Close icon\n.modal-header .close {\n  margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n  margin: 0;\n  line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n  position: relative;\n  padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n  padding: @modal-inner-padding;\n  text-align: right; // right align buttons\n  border-top: 1px solid @modal-footer-border-color;\n  &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n  // Properly space out buttons\n  .btn + .btn {\n    margin-left: 5px;\n    margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n  }\n  // but override that for button groups\n  .btn-group .btn + .btn {\n    margin-left: -1px;\n  }\n  // and override it for block buttons as well\n  .btn-block + .btn-block {\n    margin-left: 0;\n  }\n}\n\n// Measure scrollbar width for padding body during modal show/hide\n.modal-scrollbar-measure {\n  position: absolute;\n  top: -9999px;\n  width: 50px;\n  height: 50px;\n  overflow: scroll;\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n  // Automatically set modal's width for larger viewports\n  .modal-dialog {\n    width: @modal-md;\n    margin: 30px auto;\n  }\n  .modal-content {\n    .box-shadow(0 5px 15px rgba(0,0,0,.5));\n  }\n\n  // Modal sizes\n  .modal-sm { width: @modal-sm; }\n}\n\n@media (min-width: @screen-md-min) {\n  .modal-lg { width: @modal-lg; }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n  position: absolute;\n  z-index: @zindex-tooltip;\n  display: block;\n  // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n  // So reset our font and text properties to avoid inheriting weird values.\n  .reset-text();\n  font-size: @font-size-small;\n\n  .opacity(0);\n\n  &.in     { .opacity(@tooltip-opacity); }\n  &.top    { margin-top:  -3px; padding: @tooltip-arrow-width 0; }\n  &.right  { margin-left:  3px; padding: 0 @tooltip-arrow-width; }\n  &.bottom { margin-top:   3px; padding: @tooltip-arrow-width 0; }\n  &.left   { margin-left: -3px; padding: 0 @tooltip-arrow-width; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n  max-width: @tooltip-max-width;\n  padding: 3px 8px;\n  color: @tooltip-color;\n  text-align: center;\n  background-color: @tooltip-bg;\n  border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n  position: absolute;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1\n.tooltip {\n  &.top .tooltip-arrow {\n    bottom: 0;\n    left: 50%;\n    margin-left: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.top-left .tooltip-arrow {\n    bottom: 0;\n    right: @tooltip-arrow-width;\n    margin-bottom: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.top-right .tooltip-arrow {\n    bottom: 0;\n    left: @tooltip-arrow-width;\n    margin-bottom: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.right .tooltip-arrow {\n    top: 50%;\n    left: 0;\n    margin-top: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-right-color: @tooltip-arrow-color;\n  }\n  &.left .tooltip-arrow {\n    top: 50%;\n    right: 0;\n    margin-top: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-left-color: @tooltip-arrow-color;\n  }\n  &.bottom .tooltip-arrow {\n    top: 0;\n    left: 50%;\n    margin-left: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n  &.bottom-left .tooltip-arrow {\n    top: 0;\n    right: @tooltip-arrow-width;\n    margin-top: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n  &.bottom-right .tooltip-arrow {\n    top: 0;\n    left: @tooltip-arrow-width;\n    margin-top: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n}\n",".reset-text() {\n  font-family: @font-family-base;\n  // We deliberately do NOT reset font-size.\n  font-style: normal;\n  font-weight: normal;\n  letter-spacing: normal;\n  line-break: auto;\n  line-height: @line-height-base;\n  text-align: left; // Fallback for where `start` is not supported\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  white-space: normal;\n  word-break: normal;\n  word-spacing: normal;\n  word-wrap: normal;\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n  position: absolute;\n  top: 0;\n  left: 0;\n  z-index: @zindex-popover;\n  display: none;\n  max-width: @popover-max-width;\n  padding: 1px;\n  // Our parent element can be arbitrary since popovers are by default inserted as a sibling of their target element.\n  // So reset our font and text properties to avoid inheriting weird values.\n  .reset-text();\n  font-size: @font-size-base;\n\n  background-color: @popover-bg;\n  background-clip: padding-box;\n  border: 1px solid @popover-fallback-border-color;\n  border: 1px solid @popover-border-color;\n  border-radius: @border-radius-large;\n  .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n  // Offset the popover to account for the popover arrow\n  &.top     { margin-top: -@popover-arrow-width; }\n  &.right   { margin-left: @popover-arrow-width; }\n  &.bottom  { margin-top: @popover-arrow-width; }\n  &.left    { margin-left: -@popover-arrow-width; }\n}\n\n.popover-title {\n  margin: 0; // reset heading margin\n  padding: 8px 14px;\n  font-size: @font-size-base;\n  background-color: @popover-title-bg;\n  border-bottom: 1px solid darken(@popover-title-bg, 5%);\n  border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;\n}\n\n.popover-content {\n  padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover > .arrow {\n  &,\n  &:after {\n    position: absolute;\n    display: block;\n    width: 0;\n    height: 0;\n    border-color: transparent;\n    border-style: solid;\n  }\n}\n.popover > .arrow {\n  border-width: @popover-arrow-outer-width;\n}\n.popover > .arrow:after {\n  border-width: @popover-arrow-width;\n  content: \"\";\n}\n\n.popover {\n  &.top > .arrow {\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    border-bottom-width: 0;\n    border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-top-color: @popover-arrow-outer-color;\n    bottom: -@popover-arrow-outer-width;\n    &:after {\n      content: \" \";\n      bottom: 1px;\n      margin-left: -@popover-arrow-width;\n      border-bottom-width: 0;\n      border-top-color: @popover-arrow-color;\n    }\n  }\n  &.right > .arrow {\n    top: 50%;\n    left: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    border-left-width: 0;\n    border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-right-color: @popover-arrow-outer-color;\n    &:after {\n      content: \" \";\n      left: 1px;\n      bottom: -@popover-arrow-width;\n      border-left-width: 0;\n      border-right-color: @popover-arrow-color;\n    }\n  }\n  &.bottom > .arrow {\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    border-top-width: 0;\n    border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-bottom-color: @popover-arrow-outer-color;\n    top: -@popover-arrow-outer-width;\n    &:after {\n      content: \" \";\n      top: 1px;\n      margin-left: -@popover-arrow-width;\n      border-top-width: 0;\n      border-bottom-color: @popover-arrow-color;\n    }\n  }\n\n  &.left > .arrow {\n    top: 50%;\n    right: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    border-right-width: 0;\n    border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-left-color: @popover-arrow-outer-color;\n    &:after {\n      content: \" \";\n      right: 1px;\n      border-right-width: 0;\n      border-left-color: @popover-arrow-color;\n      bottom: -@popover-arrow-width;\n    }\n  }\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n//    contenteditable attribute is included anywhere else in the document.\n//    Otherwise it causes space to appear at the top and bottom of elements\n//    that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n//    `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n  &:before,\n  &:after {\n    content: \" \"; // 1\n    display: table; // 2\n  }\n  &:after {\n    clear: both;\n  }\n}\n","// Center-align a block level element\n\n.center-block() {\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n","// CSS image replacement\n//\n// Heads up! v3 launched with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (has been removed in v4)\n.hide-text() {\n  font: ~\"0/0\" a;\n  color: transparent;\n  text-shadow: none;\n  background-color: transparent;\n  border: 0;\n}\n\n// New mixin to use as of v3.0.1\n.text-hide() {\n  .hide-text();\n}\n","//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#support-ie10-width\n// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n  width: device-width;\n}\n\n\n// Visibility utilities\n// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n  .responsive-invisibility();\n}\n\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n  display: none !important;\n}\n\n.visible-xs {\n  @media (max-width: @screen-xs-max) {\n    .responsive-visibility();\n  }\n}\n.visible-xs-block {\n  @media (max-width: @screen-xs-max) {\n    display: block !important;\n  }\n}\n.visible-xs-inline {\n  @media (max-width: @screen-xs-max) {\n    display: inline !important;\n  }\n}\n.visible-xs-inline-block {\n  @media (max-width: @screen-xs-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-sm {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    .responsive-visibility();\n  }\n}\n.visible-sm-block {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: block !important;\n  }\n}\n.visible-sm-inline {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: inline !important;\n  }\n}\n.visible-sm-inline-block {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-md {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    .responsive-visibility();\n  }\n}\n.visible-md-block {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: block !important;\n  }\n}\n.visible-md-inline {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: inline !important;\n  }\n}\n.visible-md-inline-block {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-lg {\n  @media (min-width: @screen-lg-min) {\n    .responsive-visibility();\n  }\n}\n.visible-lg-block {\n  @media (min-width: @screen-lg-min) {\n    display: block !important;\n  }\n}\n.visible-lg-inline {\n  @media (min-width: @screen-lg-min) {\n    display: inline !important;\n  }\n}\n.visible-lg-inline-block {\n  @media (min-width: @screen-lg-min) {\n    display: inline-block !important;\n  }\n}\n\n.hidden-xs {\n  @media (max-width: @screen-xs-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-sm {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-md {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-lg {\n  @media (min-width: @screen-lg-min) {\n    .responsive-invisibility();\n  }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n// Note: Deprecated .visible-print as of v3.2.0\n.visible-print {\n  .responsive-invisibility();\n\n  @media print {\n    .responsive-visibility();\n  }\n}\n.visible-print-block {\n  display: none !important;\n\n  @media print {\n    display: block !important;\n  }\n}\n.visible-print-inline {\n  display: none !important;\n\n  @media print {\n    display: inline !important;\n  }\n}\n.visible-print-inline-block {\n  display: none !important;\n\n  @media print {\n    display: inline-block !important;\n  }\n}\n\n.hidden-print {\n  @media print {\n    .responsive-invisibility();\n  }\n}\n","// Responsive utilities\n\n//\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n  display: block !important;\n  table&  { display: table !important; }\n  tr&     { display: table-row !important; }\n  th&,\n  td&     { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n  display: none !important;\n}\n","/* FONT PATH\n * -------------------------- */\n\n@font-face {\n  font-family: 'FontAwesome';\n  src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');\n  src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),\n    url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),\n    url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),\n    url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),\n    url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');\n  // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts\n  font-weight: normal;\n  font-style: normal;\n}\n","// Base Class Definition\n// -------------------------\n\n.@{fa-css-prefix} {\n  display: inline-block;\n  font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration\n  font-size: inherit; // can't have font-size inherit on line above, so need to override\n  text-rendering: auto; // optimizelegibility throws things off #1094\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n\n}\n","// Icon Sizes\n// -------------------------\n\n/* makes the font 33% larger relative to the icon container */\n.@{fa-css-prefix}-lg {\n  font-size: (4em / 3);\n  line-height: (3em / 4);\n  vertical-align: -15%;\n}\n.@{fa-css-prefix}-2x { font-size: 2em; }\n.@{fa-css-prefix}-3x { font-size: 3em; }\n.@{fa-css-prefix}-4x { font-size: 4em; }\n.@{fa-css-prefix}-5x { font-size: 5em; }\n","// Fixed Width Icons\n// -------------------------\n.@{fa-css-prefix}-fw {\n  width: (18em / 14);\n  text-align: center;\n}\n","// List Icons\n// -------------------------\n\n.@{fa-css-prefix}-ul {\n  padding-left: 0;\n  margin-left: @fa-li-width;\n  list-style-type: none;\n  > li { position: relative; }\n}\n.@{fa-css-prefix}-li {\n  position: absolute;\n  left: -@fa-li-width;\n  width: @fa-li-width;\n  top: (2em / 14);\n  text-align: center;\n  &.@{fa-css-prefix}-lg {\n    left: (-@fa-li-width + (4em / 14));\n  }\n}\n","// Animated Icons\n// --------------------------\n\n.@{fa-css-prefix}-spin {\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear;\n}\n\n.@{fa-css-prefix}-pulse {\n  -webkit-animation: fa-spin 1s infinite steps(8);\n          animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n            transform: rotate(359deg);\n  }\n}\n\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n            transform: rotate(359deg);\n  }\n}\n","// Rotated & Flipped Icons\n// -------------------------\n\n.@{fa-css-prefix}-rotate-90  { .fa-icon-rotate(90deg, 1);  }\n.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }\n.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }\n\n.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }\n.@{fa-css-prefix}-flip-vertical   { .fa-icon-flip(1, -1, 2); }\n\n// Hook for IE8-9\n// -------------------------\n\n:root .@{fa-css-prefix}-rotate-90,\n:root .@{fa-css-prefix}-rotate-180,\n:root .@{fa-css-prefix}-rotate-270,\n:root .@{fa-css-prefix}-flip-horizontal,\n:root .@{fa-css-prefix}-flip-vertical {\n  filter: none;\n}\n","// Mixins\n// --------------------------\n\n.fa-icon() {\n  display: inline-block;\n  font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration\n  font-size: inherit; // can't have font-size inherit on line above, so need to override\n  text-rendering: auto; // optimizelegibility throws things off #1094\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n\n}\n\n.fa-icon-rotate(@degrees, @rotation) {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})\";\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n\n.fa-icon-flip(@horiz, @vert, @rotation) {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)\";\n  -webkit-transform: scale(@horiz, @vert);\n      -ms-transform: scale(@horiz, @vert);\n          transform: scale(@horiz, @vert);\n}\n\n\n// Only display content to screen readers. A la Bootstrap 4.\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n//\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n//\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable() {\n  &:active,\n  &:focus {\n    position: static;\n    width: auto;\n    height: auto;\n    margin: 0;\n    overflow: visible;\n    clip: auto;\n  }\n}\n","// Stacked Icons\n// -------------------------\n\n.@{fa-css-prefix}-stack {\n  position: relative;\n  display: inline-block;\n  width: 2em;\n  height: 2em;\n  line-height: 2em;\n  vertical-align: middle;\n}\n.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {\n  position: absolute;\n  left: 0;\n  width: 100%;\n  text-align: center;\n}\n.@{fa-css-prefix}-stack-1x { line-height: inherit; }\n.@{fa-css-prefix}-stack-2x { font-size: 2em; }\n.@{fa-css-prefix}-inverse { color: @fa-inverse; }\n","/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n   readers do not read off random characters that represent icons */\n\n.@{fa-css-prefix}-glass:before { content: @fa-var-glass; }\n.@{fa-css-prefix}-music:before { content: @fa-var-music; }\n.@{fa-css-prefix}-search:before { content: @fa-var-search; }\n.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; }\n.@{fa-css-prefix}-heart:before { content: @fa-var-heart; }\n.@{fa-css-prefix}-star:before { content: @fa-var-star; }\n.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; }\n.@{fa-css-prefix}-user:before { content: @fa-var-user; }\n.@{fa-css-prefix}-film:before { content: @fa-var-film; }\n.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; }\n.@{fa-css-prefix}-th:before { content: @fa-var-th; }\n.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; }\n.@{fa-css-prefix}-check:before { content: @fa-var-check; }\n.@{fa-css-prefix}-remove:before,\n.@{fa-css-prefix}-close:before,\n.@{fa-css-prefix}-times:before { content: @fa-var-times; }\n.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; }\n.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; }\n.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; }\n.@{fa-css-prefix}-signal:before { content: @fa-var-signal; }\n.@{fa-css-prefix}-gear:before,\n.@{fa-css-prefix}-cog:before { content: @fa-var-cog; }\n.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; }\n.@{fa-css-prefix}-home:before { content: @fa-var-home; }\n.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; }\n.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; }\n.@{fa-css-prefix}-road:before { content: @fa-var-road; }\n.@{fa-css-prefix}-download:before { content: @fa-var-download; }\n.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; }\n.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; }\n.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; }\n.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; }\n.@{fa-css-prefix}-rotate-right:before,\n.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; }\n.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; }\n.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; }\n.@{fa-css-prefix}-lock:before { content: @fa-var-lock; }\n.@{fa-css-prefix}-flag:before { content: @fa-var-flag; }\n.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; }\n.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; }\n.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; }\n.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; }\n.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; }\n.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; }\n.@{fa-css-prefix}-tag:before { content: @fa-var-tag; }\n.@{fa-css-prefix}-tags:before { content: @fa-var-tags; }\n.@{fa-css-prefix}-book:before { content: @fa-var-book; }\n.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; }\n.@{fa-css-prefix}-print:before { content: @fa-var-print; }\n.@{fa-css-prefix}-camera:before { content: @fa-var-camera; }\n.@{fa-css-prefix}-font:before { content: @fa-var-font; }\n.@{fa-css-prefix}-bold:before { content: @fa-var-bold; }\n.@{fa-css-prefix}-italic:before { content: @fa-var-italic; }\n.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; }\n.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; }\n.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; }\n.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; }\n.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; }\n.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; }\n.@{fa-css-prefix}-list:before { content: @fa-var-list; }\n.@{fa-css-prefix}-dedent:before,\n.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; }\n.@{fa-css-prefix}-indent:before { content: @fa-var-indent; }\n.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; }\n.@{fa-css-prefix}-photo:before,\n.@{fa-css-prefix}-image:before,\n.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; }\n.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; }\n.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; }\n.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; }\n.@{fa-css-prefix}-tint:before { content: @fa-var-tint; }\n.@{fa-css-prefix}-edit:before,\n.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; }\n.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; }\n.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; }\n.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; }\n.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; }\n.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; }\n.@{fa-css-prefix}-backward:before { content: @fa-var-backward; }\n.@{fa-css-prefix}-play:before { content: @fa-var-play; }\n.@{fa-css-prefix}-pause:before { content: @fa-var-pause; }\n.@{fa-css-prefix}-stop:before { content: @fa-var-stop; }\n.@{fa-css-prefix}-forward:before { content: @fa-var-forward; }\n.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; }\n.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; }\n.@{fa-css-prefix}-eject:before { content: @fa-var-eject; }\n.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; }\n.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; }\n.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; }\n.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; }\n.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; }\n.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; }\n.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; }\n.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; }\n.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; }\n.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; }\n.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; }\n.@{fa-css-prefix}-ban:before { content: @fa-var-ban; }\n.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; }\n.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; }\n.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; }\n.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; }\n.@{fa-css-prefix}-mail-forward:before,\n.@{fa-css-prefix}-share:before { content: @fa-var-share; }\n.@{fa-css-prefix}-expand:before { content: @fa-var-expand; }\n.@{fa-css-prefix}-compress:before { content: @fa-var-compress; }\n.@{fa-css-prefix}-plus:before { content: @fa-var-plus; }\n.@{fa-css-prefix}-minus:before { content: @fa-var-minus; }\n.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; }\n.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; }\n.@{fa-css-prefix}-gift:before { content: @fa-var-gift; }\n.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; }\n.@{fa-css-prefix}-fire:before { content: @fa-var-fire; }\n.@{fa-css-prefix}-eye:before { content: @fa-var-eye; }\n.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; }\n.@{fa-css-prefix}-warning:before,\n.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; }\n.@{fa-css-prefix}-plane:before { content: @fa-var-plane; }\n.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; }\n.@{fa-css-prefix}-random:before { content: @fa-var-random; }\n.@{fa-css-prefix}-comment:before { content: @fa-var-comment; }\n.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; }\n.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; }\n.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; }\n.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; }\n.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; }\n.@{fa-css-prefix}-folder:before { content: @fa-var-folder; }\n.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; }\n.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; }\n.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; }\n.@{fa-css-prefix}-bar-chart-o:before,\n.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; }\n.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; }\n.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; }\n.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; }\n.@{fa-css-prefix}-key:before { content: @fa-var-key; }\n.@{fa-css-prefix}-gears:before,\n.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; }\n.@{fa-css-prefix}-comments:before { content: @fa-var-comments; }\n.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; }\n.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; }\n.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; }\n.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; }\n.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; }\n.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; }\n.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; }\n.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; }\n.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; }\n.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; }\n.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; }\n.@{fa-css-prefix}-upload:before { content: @fa-var-upload; }\n.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; }\n.@{fa-css-prefix}-phone:before { content: @fa-var-phone; }\n.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; }\n.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; }\n.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; }\n.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; }\n.@{fa-css-prefix}-facebook-f:before,\n.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; }\n.@{fa-css-prefix}-github:before { content: @fa-var-github; }\n.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; }\n.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; }\n.@{fa-css-prefix}-feed:before,\n.@{fa-css-prefix}-rss:before { content: @fa-var-rss; }\n.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; }\n.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; }\n.@{fa-css-prefix}-bell:before { content: @fa-var-bell; }\n.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; }\n.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; }\n.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; }\n.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; }\n.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; }\n.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; }\n.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; }\n.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; }\n.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; }\n.@{fa-css-prefix}-globe:before { content: @fa-var-globe; }\n.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; }\n.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; }\n.@{fa-css-prefix}-filter:before { content: @fa-var-filter; }\n.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; }\n.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; }\n.@{fa-css-prefix}-group:before,\n.@{fa-css-prefix}-users:before { content: @fa-var-users; }\n.@{fa-css-prefix}-chain:before,\n.@{fa-css-prefix}-link:before { content: @fa-var-link; }\n.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; }\n.@{fa-css-prefix}-flask:before { content: @fa-var-flask; }\n.@{fa-css-prefix}-cut:before,\n.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; }\n.@{fa-css-prefix}-copy:before,\n.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; }\n.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; }\n.@{fa-css-prefix}-save:before,\n.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; }\n.@{fa-css-prefix}-square:before { content: @fa-var-square; }\n.@{fa-css-prefix}-navicon:before,\n.@{fa-css-prefix}-reorder:before,\n.@{fa-css-prefix}-bars:before { content: @fa-var-bars; }\n.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; }\n.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; }\n.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; }\n.@{fa-css-prefix}-underline:before { content: @fa-var-underline; }\n.@{fa-css-prefix}-table:before { content: @fa-var-table; }\n.@{fa-css-prefix}-magic:before { content: @fa-var-magic; }\n.@{fa-css-prefix}-truck:before { content: @fa-var-truck; }\n.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; }\n.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; }\n.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; }\n.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; }\n.@{fa-css-prefix}-money:before { content: @fa-var-money; }\n.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; }\n.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; }\n.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; }\n.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; }\n.@{fa-css-prefix}-columns:before { content: @fa-var-columns; }\n.@{fa-css-prefix}-unsorted:before,\n.@{fa-css-prefix}-sort:before { content: @fa-var-sort; }\n.@{fa-css-prefix}-sort-down:before,\n.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; }\n.@{fa-css-prefix}-sort-up:before,\n.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; }\n.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; }\n.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; }\n.@{fa-css-prefix}-rotate-left:before,\n.@{fa-css-prefix}-undo:before { content: @fa-var-undo; }\n.@{fa-css-prefix}-legal:before,\n.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; }\n.@{fa-css-prefix}-dashboard:before,\n.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; }\n.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; }\n.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; }\n.@{fa-css-prefix}-flash:before,\n.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; }\n.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; }\n.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; }\n.@{fa-css-prefix}-paste:before,\n.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; }\n.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; }\n.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; }\n.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; }\n.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; }\n.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; }\n.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; }\n.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; }\n.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; }\n.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; }\n.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; }\n.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; }\n.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; }\n.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; }\n.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; }\n.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; }\n.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; }\n.@{fa-css-prefix}-beer:before { content: @fa-var-beer; }\n.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; }\n.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; }\n.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; }\n.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; }\n.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; }\n.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; }\n.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; }\n.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; }\n.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; }\n.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; }\n.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; }\n.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; }\n.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; }\n.@{fa-css-prefix}-mobile-phone:before,\n.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; }\n.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; }\n.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; }\n.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; }\n.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; }\n.@{fa-css-prefix}-circle:before { content: @fa-var-circle; }\n.@{fa-css-prefix}-mail-reply:before,\n.@{fa-css-prefix}-reply:before { content: @fa-var-reply; }\n.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; }\n.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; }\n.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; }\n.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; }\n.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; }\n.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; }\n.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; }\n.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; }\n.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; }\n.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; }\n.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; }\n.@{fa-css-prefix}-code:before { content: @fa-var-code; }\n.@{fa-css-prefix}-mail-reply-all:before,\n.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; }\n.@{fa-css-prefix}-star-half-empty:before,\n.@{fa-css-prefix}-star-half-full:before,\n.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; }\n.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; }\n.@{fa-css-prefix}-crop:before { content: @fa-var-crop; }\n.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; }\n.@{fa-css-prefix}-unlink:before,\n.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; }\n.@{fa-css-prefix}-question:before { content: @fa-var-question; }\n.@{fa-css-prefix}-info:before { content: @fa-var-info; }\n.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; }\n.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; }\n.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; }\n.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; }\n.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; }\n.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; }\n.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; }\n.@{fa-css-prefix}-shield:before { content: @fa-var-shield; }\n.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; }\n.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; }\n.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; }\n.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; }\n.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; }\n.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; }\n.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; }\n.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; }\n.@{fa-css-prefix}-html5:before { content: @fa-var-html5; }\n.@{fa-css-prefix}-css3:before { content: @fa-var-css3; }\n.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; }\n.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; }\n.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; }\n.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; }\n.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; }\n.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; }\n.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; }\n.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; }\n.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; }\n.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; }\n.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; }\n.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; }\n.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; }\n.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; }\n.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; }\n.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; }\n.@{fa-css-prefix}-compass:before { content: @fa-var-compass; }\n.@{fa-css-prefix}-toggle-down:before,\n.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; }\n.@{fa-css-prefix}-toggle-up:before,\n.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; }\n.@{fa-css-prefix}-toggle-right:before,\n.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; }\n.@{fa-css-prefix}-euro:before,\n.@{fa-css-prefix}-eur:before { content: @fa-var-eur; }\n.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; }\n.@{fa-css-prefix}-dollar:before,\n.@{fa-css-prefix}-usd:before { content: @fa-var-usd; }\n.@{fa-css-prefix}-rupee:before,\n.@{fa-css-prefix}-inr:before { content: @fa-var-inr; }\n.@{fa-css-prefix}-cny:before,\n.@{fa-css-prefix}-rmb:before,\n.@{fa-css-prefix}-yen:before,\n.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; }\n.@{fa-css-prefix}-ruble:before,\n.@{fa-css-prefix}-rouble:before,\n.@{fa-css-prefix}-rub:before { content: @fa-var-rub; }\n.@{fa-css-prefix}-won:before,\n.@{fa-css-prefix}-krw:before { content: @fa-var-krw; }\n.@{fa-css-prefix}-bitcoin:before,\n.@{fa-css-prefix}-btc:before { content: @fa-var-btc; }\n.@{fa-css-prefix}-file:before { content: @fa-var-file; }\n.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; }\n.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; }\n.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; }\n.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; }\n.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; }\n.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; }\n.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; }\n.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; }\n.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; }\n.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; }\n.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; }\n.@{fa-css-prefix}-xing:before { content: @fa-var-xing; }\n.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; }\n.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; }\n.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; }\n.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; }\n.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; }\n.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; }\n.@{fa-css-prefix}-adn:before { content: @fa-var-adn; }\n.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; }\n.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; }\n.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; }\n.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; }\n.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; }\n.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; }\n.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; }\n.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; }\n.@{fa-css-prefix}-apple:before { content: @fa-var-apple; }\n.@{fa-css-prefix}-windows:before { content: @fa-var-windows; }\n.@{fa-css-prefix}-android:before { content: @fa-var-android; }\n.@{fa-css-prefix}-linux:before { content: @fa-var-linux; }\n.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; }\n.@{fa-css-prefix}-skype:before { content: @fa-var-skype; }\n.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; }\n.@{fa-css-prefix}-trello:before { content: @fa-var-trello; }\n.@{fa-css-prefix}-female:before { content: @fa-var-female; }\n.@{fa-css-prefix}-male:before { content: @fa-var-male; }\n.@{fa-css-prefix}-gittip:before,\n.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; }\n.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; }\n.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; }\n.@{fa-css-prefix}-archive:before { content: @fa-var-archive; }\n.@{fa-css-prefix}-bug:before { content: @fa-var-bug; }\n.@{fa-css-prefix}-vk:before { content: @fa-var-vk; }\n.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; }\n.@{fa-css-prefix}-renren:before { content: @fa-var-renren; }\n.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; }\n.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; }\n.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; }\n.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; }\n.@{fa-css-prefix}-toggle-left:before,\n.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; }\n.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; }\n.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; }\n.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; }\n.@{fa-css-prefix}-turkish-lira:before,\n.@{fa-css-prefix}-try:before { content: @fa-var-try; }\n.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; }\n.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; }\n.@{fa-css-prefix}-slack:before { content: @fa-var-slack; }\n.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; }\n.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; }\n.@{fa-css-prefix}-openid:before { content: @fa-var-openid; }\n.@{fa-css-prefix}-institution:before,\n.@{fa-css-prefix}-bank:before,\n.@{fa-css-prefix}-university:before { content: @fa-var-university; }\n.@{fa-css-prefix}-mortar-board:before,\n.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; }\n.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; }\n.@{fa-css-prefix}-google:before { content: @fa-var-google; }\n.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; }\n.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; }\n.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; }\n.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; }\n.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; }\n.@{fa-css-prefix}-digg:before { content: @fa-var-digg; }\n.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; }\n.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; }\n.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; }\n.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; }\n.@{fa-css-prefix}-language:before { content: @fa-var-language; }\n.@{fa-css-prefix}-fax:before { content: @fa-var-fax; }\n.@{fa-css-prefix}-building:before { content: @fa-var-building; }\n.@{fa-css-prefix}-child:before { content: @fa-var-child; }\n.@{fa-css-prefix}-paw:before { content: @fa-var-paw; }\n.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; }\n.@{fa-css-prefix}-cube:before { content: @fa-var-cube; }\n.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; }\n.@{fa-css-prefix}-behance:before { content: @fa-var-behance; }\n.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; }\n.@{fa-css-prefix}-steam:before { content: @fa-var-steam; }\n.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; }\n.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; }\n.@{fa-css-prefix}-automobile:before,\n.@{fa-css-prefix}-car:before { content: @fa-var-car; }\n.@{fa-css-prefix}-cab:before,\n.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; }\n.@{fa-css-prefix}-tree:before { content: @fa-var-tree; }\n.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; }\n.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; }\n.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; }\n.@{fa-css-prefix}-database:before { content: @fa-var-database; }\n.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; }\n.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; }\n.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; }\n.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; }\n.@{fa-css-prefix}-file-photo-o:before,\n.@{fa-css-prefix}-file-picture-o:before,\n.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; }\n.@{fa-css-prefix}-file-zip-o:before,\n.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; }\n.@{fa-css-prefix}-file-sound-o:before,\n.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; }\n.@{fa-css-prefix}-file-movie-o:before,\n.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; }\n.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; }\n.@{fa-css-prefix}-vine:before { content: @fa-var-vine; }\n.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; }\n.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; }\n.@{fa-css-prefix}-life-bouy:before,\n.@{fa-css-prefix}-life-buoy:before,\n.@{fa-css-prefix}-life-saver:before,\n.@{fa-css-prefix}-support:before,\n.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; }\n.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; }\n.@{fa-css-prefix}-ra:before,\n.@{fa-css-prefix}-resistance:before,\n.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; }\n.@{fa-css-prefix}-ge:before,\n.@{fa-css-prefix}-empire:before { content: @fa-var-empire; }\n.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; }\n.@{fa-css-prefix}-git:before { content: @fa-var-git; }\n.@{fa-css-prefix}-y-combinator-square:before,\n.@{fa-css-prefix}-yc-square:before,\n.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; }\n.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; }\n.@{fa-css-prefix}-qq:before { content: @fa-var-qq; }\n.@{fa-css-prefix}-wechat:before,\n.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; }\n.@{fa-css-prefix}-send:before,\n.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; }\n.@{fa-css-prefix}-send-o:before,\n.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; }\n.@{fa-css-prefix}-history:before { content: @fa-var-history; }\n.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; }\n.@{fa-css-prefix}-header:before { content: @fa-var-header; }\n.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; }\n.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; }\n.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; }\n.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; }\n.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; }\n.@{fa-css-prefix}-soccer-ball-o:before,\n.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; }\n.@{fa-css-prefix}-tty:before { content: @fa-var-tty; }\n.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; }\n.@{fa-css-prefix}-plug:before { content: @fa-var-plug; }\n.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; }\n.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; }\n.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; }\n.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; }\n.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; }\n.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; }\n.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; }\n.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; }\n.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; }\n.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; }\n.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; }\n.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; }\n.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; }\n.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; }\n.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; }\n.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; }\n.@{fa-css-prefix}-trash:before { content: @fa-var-trash; }\n.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; }\n.@{fa-css-prefix}-at:before { content: @fa-var-at; }\n.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; }\n.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; }\n.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; }\n.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; }\n.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; }\n.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; }\n.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; }\n.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; }\n.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; }\n.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; }\n.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; }\n.@{fa-css-prefix}-bus:before { content: @fa-var-bus; }\n.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; }\n.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; }\n.@{fa-css-prefix}-cc:before { content: @fa-var-cc; }\n.@{fa-css-prefix}-shekel:before,\n.@{fa-css-prefix}-sheqel:before,\n.@{fa-css-prefix}-ils:before { content: @fa-var-ils; }\n.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; }\n.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; }\n.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; }\n.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; }\n.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; }\n.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; }\n.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; }\n.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; }\n.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; }\n.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; }\n.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; }\n.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; }\n.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; }\n.@{fa-css-prefix}-ship:before { content: @fa-var-ship; }\n.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; }\n.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; }\n.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; }\n.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; }\n.@{fa-css-prefix}-venus:before { content: @fa-var-venus; }\n.@{fa-css-prefix}-mars:before { content: @fa-var-mars; }\n.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; }\n.@{fa-css-prefix}-intersex:before,\n.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; }\n.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; }\n.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; }\n.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; }\n.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; }\n.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; }\n.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; }\n.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; }\n.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; }\n.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; }\n.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; }\n.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; }\n.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; }\n.@{fa-css-prefix}-server:before { content: @fa-var-server; }\n.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; }\n.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; }\n.@{fa-css-prefix}-hotel:before,\n.@{fa-css-prefix}-bed:before { content: @fa-var-bed; }\n.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; }\n.@{fa-css-prefix}-train:before { content: @fa-var-train; }\n.@{fa-css-prefix}-subway:before { content: @fa-var-subway; }\n.@{fa-css-prefix}-medium:before { content: @fa-var-medium; }\n.@{fa-css-prefix}-yc:before,\n.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; }\n.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; }\n.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; }\n.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; }\n.@{fa-css-prefix}-battery-4:before,\n.@{fa-css-prefix}-battery:before,\n.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; }\n.@{fa-css-prefix}-battery-3:before,\n.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; }\n.@{fa-css-prefix}-battery-2:before,\n.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; }\n.@{fa-css-prefix}-battery-1:before,\n.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; }\n.@{fa-css-prefix}-battery-0:before,\n.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; }\n.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; }\n.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; }\n.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; }\n.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; }\n.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; }\n.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; }\n.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; }\n.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; }\n.@{fa-css-prefix}-clone:before { content: @fa-var-clone; }\n.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; }\n.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; }\n.@{fa-css-prefix}-hourglass-1:before,\n.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; }\n.@{fa-css-prefix}-hourglass-2:before,\n.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; }\n.@{fa-css-prefix}-hourglass-3:before,\n.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; }\n.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; }\n.@{fa-css-prefix}-hand-grab-o:before,\n.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; }\n.@{fa-css-prefix}-hand-stop-o:before,\n.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; }\n.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; }\n.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; }\n.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; }\n.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; }\n.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; }\n.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; }\n.@{fa-css-prefix}-registered:before { content: @fa-var-registered; }\n.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; }\n.@{fa-css-prefix}-gg:before { content: @fa-var-gg; }\n.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; }\n.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; }\n.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; }\n.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; }\n.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; }\n.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; }\n.@{fa-css-prefix}-safari:before { content: @fa-var-safari; }\n.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; }\n.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; }\n.@{fa-css-prefix}-opera:before { content: @fa-var-opera; }\n.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; }\n.@{fa-css-prefix}-tv:before,\n.@{fa-css-prefix}-television:before { content: @fa-var-television; }\n.@{fa-css-prefix}-contao:before { content: @fa-var-contao; }\n.@{fa-css-prefix}-500px:before { content: @fa-var-500px; }\n.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; }\n.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; }\n.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; }\n.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; }\n.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; }\n.@{fa-css-prefix}-industry:before { content: @fa-var-industry; }\n.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; }\n.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; }\n.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; }\n.@{fa-css-prefix}-map:before { content: @fa-var-map; }\n.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; }\n.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; }\n.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; }\n.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; }\n.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; }\n.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; }\n.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; }\n.@{fa-css-prefix}-edge:before { content: @fa-var-edge; }\n.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; }\n.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; }\n.@{fa-css-prefix}-modx:before { content: @fa-var-modx; }\n.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; }\n.@{fa-css-prefix}-usb:before { content: @fa-var-usb; }\n.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; }\n.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; }\n.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; }\n.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; }\n.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; }\n.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; }\n.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; }\n.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; }\n.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; }\n.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; }\n.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; }\n.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; }\n.@{fa-css-prefix}-percent:before { content: @fa-var-percent; }\n.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; }\n.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; }\n.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; }\n.@{fa-css-prefix}-envira:before { content: @fa-var-envira; }\n.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; }\n.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; }\n.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; }\n.@{fa-css-prefix}-blind:before { content: @fa-var-blind; }\n.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; }\n.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; }\n.@{fa-css-prefix}-braille:before { content: @fa-var-braille; }\n.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; }\n.@{fa-css-prefix}-asl-interpreting:before,\n.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; }\n.@{fa-css-prefix}-deafness:before,\n.@{fa-css-prefix}-hard-of-hearing:before,\n.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; }\n.@{fa-css-prefix}-glide:before { content: @fa-var-glide; }\n.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; }\n.@{fa-css-prefix}-signing:before,\n.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; }\n.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; }\n.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; }\n.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; }\n.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; }\n.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; }\n.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; }\n.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; }\n.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; }\n.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; }\n.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; }\n.@{fa-css-prefix}-google-plus-circle:before,\n.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; }\n.@{fa-css-prefix}-fa:before,\n.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; }\n.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; }\n.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; }\n.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; }\n.@{fa-css-prefix}-linode:before { content: @fa-var-linode; }\n.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; }\n.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; }\n.@{fa-css-prefix}-vcard:before,\n.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; }\n.@{fa-css-prefix}-vcard-o:before,\n.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; }\n.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; }\n.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; }\n.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; }\n.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; }\n.@{fa-css-prefix}-drivers-license:before,\n.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; }\n.@{fa-css-prefix}-drivers-license-o:before,\n.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; }\n.@{fa-css-prefix}-quora:before { content: @fa-var-quora; }\n.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; }\n.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; }\n.@{fa-css-prefix}-thermometer-4:before,\n.@{fa-css-prefix}-thermometer:before,\n.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; }\n.@{fa-css-prefix}-thermometer-3:before,\n.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; }\n.@{fa-css-prefix}-thermometer-2:before,\n.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; }\n.@{fa-css-prefix}-thermometer-1:before,\n.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; }\n.@{fa-css-prefix}-thermometer-0:before,\n.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; }\n.@{fa-css-prefix}-shower:before { content: @fa-var-shower; }\n.@{fa-css-prefix}-bathtub:before,\n.@{fa-css-prefix}-s15:before,\n.@{fa-css-prefix}-bath:before { content: @fa-var-bath; }\n.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; }\n.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; }\n.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; }\n.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; }\n.@{fa-css-prefix}-times-rectangle:before,\n.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; }\n.@{fa-css-prefix}-times-rectangle-o:before,\n.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; }\n.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; }\n.@{fa-css-prefix}-grav:before { content: @fa-var-grav; }\n.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; }\n.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; }\n.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; }\n.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; }\n.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; }\n.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; }\n.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; }\n.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; }\n.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; }\n","// Variables\n// --------------------------\n\n@fa-font-path:        \"../fonts\";\n@fa-font-size-base:   14px;\n@fa-line-height-base: 1;\n//@fa-font-path:        \"//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts\"; // for referencing Bootstrap CDN font files directly\n@fa-css-prefix:       fa;\n@fa-version:          \"4.7.0\";\n@fa-border-color:     #eee;\n@fa-inverse:          #fff;\n@fa-li-width:         (30em / 14);\n\n@fa-var-500px: \"\\f26e\";\n@fa-var-address-book: \"\\f2b9\";\n@fa-var-address-book-o: \"\\f2ba\";\n@fa-var-address-card: \"\\f2bb\";\n@fa-var-address-card-o: \"\\f2bc\";\n@fa-var-adjust: \"\\f042\";\n@fa-var-adn: \"\\f170\";\n@fa-var-align-center: \"\\f037\";\n@fa-var-align-justify: \"\\f039\";\n@fa-var-align-left: \"\\f036\";\n@fa-var-align-right: \"\\f038\";\n@fa-var-amazon: \"\\f270\";\n@fa-var-ambulance: \"\\f0f9\";\n@fa-var-american-sign-language-interpreting: \"\\f2a3\";\n@fa-var-anchor: \"\\f13d\";\n@fa-var-android: \"\\f17b\";\n@fa-var-angellist: \"\\f209\";\n@fa-var-angle-double-down: \"\\f103\";\n@fa-var-angle-double-left: \"\\f100\";\n@fa-var-angle-double-right: \"\\f101\";\n@fa-var-angle-double-up: \"\\f102\";\n@fa-var-angle-down: \"\\f107\";\n@fa-var-angle-left: \"\\f104\";\n@fa-var-angle-right: \"\\f105\";\n@fa-var-angle-up: \"\\f106\";\n@fa-var-apple: \"\\f179\";\n@fa-var-archive: \"\\f187\";\n@fa-var-area-chart: \"\\f1fe\";\n@fa-var-arrow-circle-down: \"\\f0ab\";\n@fa-var-arrow-circle-left: \"\\f0a8\";\n@fa-var-arrow-circle-o-down: \"\\f01a\";\n@fa-var-arrow-circle-o-left: \"\\f190\";\n@fa-var-arrow-circle-o-right: \"\\f18e\";\n@fa-var-arrow-circle-o-up: \"\\f01b\";\n@fa-var-arrow-circle-right: \"\\f0a9\";\n@fa-var-arrow-circle-up: \"\\f0aa\";\n@fa-var-arrow-down: \"\\f063\";\n@fa-var-arrow-left: \"\\f060\";\n@fa-var-arrow-right: \"\\f061\";\n@fa-var-arrow-up: \"\\f062\";\n@fa-var-arrows: \"\\f047\";\n@fa-var-arrows-alt: \"\\f0b2\";\n@fa-var-arrows-h: \"\\f07e\";\n@fa-var-arrows-v: \"\\f07d\";\n@fa-var-asl-interpreting: \"\\f2a3\";\n@fa-var-assistive-listening-systems: \"\\f2a2\";\n@fa-var-asterisk: \"\\f069\";\n@fa-var-at: \"\\f1fa\";\n@fa-var-audio-description: \"\\f29e\";\n@fa-var-automobile: \"\\f1b9\";\n@fa-var-backward: \"\\f04a\";\n@fa-var-balance-scale: \"\\f24e\";\n@fa-var-ban: \"\\f05e\";\n@fa-var-bandcamp: \"\\f2d5\";\n@fa-var-bank: \"\\f19c\";\n@fa-var-bar-chart: \"\\f080\";\n@fa-var-bar-chart-o: \"\\f080\";\n@fa-var-barcode: \"\\f02a\";\n@fa-var-bars: \"\\f0c9\";\n@fa-var-bath: \"\\f2cd\";\n@fa-var-bathtub: \"\\f2cd\";\n@fa-var-battery: \"\\f240\";\n@fa-var-battery-0: \"\\f244\";\n@fa-var-battery-1: \"\\f243\";\n@fa-var-battery-2: \"\\f242\";\n@fa-var-battery-3: \"\\f241\";\n@fa-var-battery-4: \"\\f240\";\n@fa-var-battery-empty: \"\\f244\";\n@fa-var-battery-full: \"\\f240\";\n@fa-var-battery-half: \"\\f242\";\n@fa-var-battery-quarter: \"\\f243\";\n@fa-var-battery-three-quarters: \"\\f241\";\n@fa-var-bed: \"\\f236\";\n@fa-var-beer: \"\\f0fc\";\n@fa-var-behance: \"\\f1b4\";\n@fa-var-behance-square: \"\\f1b5\";\n@fa-var-bell: \"\\f0f3\";\n@fa-var-bell-o: \"\\f0a2\";\n@fa-var-bell-slash: \"\\f1f6\";\n@fa-var-bell-slash-o: \"\\f1f7\";\n@fa-var-bicycle: \"\\f206\";\n@fa-var-binoculars: \"\\f1e5\";\n@fa-var-birthday-cake: \"\\f1fd\";\n@fa-var-bitbucket: \"\\f171\";\n@fa-var-bitbucket-square: \"\\f172\";\n@fa-var-bitcoin: \"\\f15a\";\n@fa-var-black-tie: \"\\f27e\";\n@fa-var-blind: \"\\f29d\";\n@fa-var-bluetooth: \"\\f293\";\n@fa-var-bluetooth-b: \"\\f294\";\n@fa-var-bold: \"\\f032\";\n@fa-var-bolt: \"\\f0e7\";\n@fa-var-bomb: \"\\f1e2\";\n@fa-var-book: \"\\f02d\";\n@fa-var-bookmark: \"\\f02e\";\n@fa-var-bookmark-o: \"\\f097\";\n@fa-var-braille: \"\\f2a1\";\n@fa-var-briefcase: \"\\f0b1\";\n@fa-var-btc: \"\\f15a\";\n@fa-var-bug: \"\\f188\";\n@fa-var-building: \"\\f1ad\";\n@fa-var-building-o: \"\\f0f7\";\n@fa-var-bullhorn: \"\\f0a1\";\n@fa-var-bullseye: \"\\f140\";\n@fa-var-bus: \"\\f207\";\n@fa-var-buysellads: \"\\f20d\";\n@fa-var-cab: \"\\f1ba\";\n@fa-var-calculator: \"\\f1ec\";\n@fa-var-calendar: \"\\f073\";\n@fa-var-calendar-check-o: \"\\f274\";\n@fa-var-calendar-minus-o: \"\\f272\";\n@fa-var-calendar-o: \"\\f133\";\n@fa-var-calendar-plus-o: \"\\f271\";\n@fa-var-calendar-times-o: \"\\f273\";\n@fa-var-camera: \"\\f030\";\n@fa-var-camera-retro: \"\\f083\";\n@fa-var-car: \"\\f1b9\";\n@fa-var-caret-down: \"\\f0d7\";\n@fa-var-caret-left: \"\\f0d9\";\n@fa-var-caret-right: \"\\f0da\";\n@fa-var-caret-square-o-down: \"\\f150\";\n@fa-var-caret-square-o-left: \"\\f191\";\n@fa-var-caret-square-o-right: \"\\f152\";\n@fa-var-caret-square-o-up: \"\\f151\";\n@fa-var-caret-up: \"\\f0d8\";\n@fa-var-cart-arrow-down: \"\\f218\";\n@fa-var-cart-plus: \"\\f217\";\n@fa-var-cc: \"\\f20a\";\n@fa-var-cc-amex: \"\\f1f3\";\n@fa-var-cc-diners-club: \"\\f24c\";\n@fa-var-cc-discover: \"\\f1f2\";\n@fa-var-cc-jcb: \"\\f24b\";\n@fa-var-cc-mastercard: \"\\f1f1\";\n@fa-var-cc-paypal: \"\\f1f4\";\n@fa-var-cc-stripe: \"\\f1f5\";\n@fa-var-cc-visa: \"\\f1f0\";\n@fa-var-certificate: \"\\f0a3\";\n@fa-var-chain: \"\\f0c1\";\n@fa-var-chain-broken: \"\\f127\";\n@fa-var-check: \"\\f00c\";\n@fa-var-check-circle: \"\\f058\";\n@fa-var-check-circle-o: \"\\f05d\";\n@fa-var-check-square: \"\\f14a\";\n@fa-var-check-square-o: \"\\f046\";\n@fa-var-chevron-circle-down: \"\\f13a\";\n@fa-var-chevron-circle-left: \"\\f137\";\n@fa-var-chevron-circle-right: \"\\f138\";\n@fa-var-chevron-circle-up: \"\\f139\";\n@fa-var-chevron-down: \"\\f078\";\n@fa-var-chevron-left: \"\\f053\";\n@fa-var-chevron-right: \"\\f054\";\n@fa-var-chevron-up: \"\\f077\";\n@fa-var-child: \"\\f1ae\";\n@fa-var-chrome: \"\\f268\";\n@fa-var-circle: \"\\f111\";\n@fa-var-circle-o: \"\\f10c\";\n@fa-var-circle-o-notch: \"\\f1ce\";\n@fa-var-circle-thin: \"\\f1db\";\n@fa-var-clipboard: \"\\f0ea\";\n@fa-var-clock-o: \"\\f017\";\n@fa-var-clone: \"\\f24d\";\n@fa-var-close: \"\\f00d\";\n@fa-var-cloud: \"\\f0c2\";\n@fa-var-cloud-download: \"\\f0ed\";\n@fa-var-cloud-upload: \"\\f0ee\";\n@fa-var-cny: \"\\f157\";\n@fa-var-code: \"\\f121\";\n@fa-var-code-fork: \"\\f126\";\n@fa-var-codepen: \"\\f1cb\";\n@fa-var-codiepie: \"\\f284\";\n@fa-var-coffee: \"\\f0f4\";\n@fa-var-cog: \"\\f013\";\n@fa-var-cogs: \"\\f085\";\n@fa-var-columns: \"\\f0db\";\n@fa-var-comment: \"\\f075\";\n@fa-var-comment-o: \"\\f0e5\";\n@fa-var-commenting: \"\\f27a\";\n@fa-var-commenting-o: \"\\f27b\";\n@fa-var-comments: \"\\f086\";\n@fa-var-comments-o: \"\\f0e6\";\n@fa-var-compass: \"\\f14e\";\n@fa-var-compress: \"\\f066\";\n@fa-var-connectdevelop: \"\\f20e\";\n@fa-var-contao: \"\\f26d\";\n@fa-var-copy: \"\\f0c5\";\n@fa-var-copyright: \"\\f1f9\";\n@fa-var-creative-commons: \"\\f25e\";\n@fa-var-credit-card: \"\\f09d\";\n@fa-var-credit-card-alt: \"\\f283\";\n@fa-var-crop: \"\\f125\";\n@fa-var-crosshairs: \"\\f05b\";\n@fa-var-css3: \"\\f13c\";\n@fa-var-cube: \"\\f1b2\";\n@fa-var-cubes: \"\\f1b3\";\n@fa-var-cut: \"\\f0c4\";\n@fa-var-cutlery: \"\\f0f5\";\n@fa-var-dashboard: \"\\f0e4\";\n@fa-var-dashcube: \"\\f210\";\n@fa-var-database: \"\\f1c0\";\n@fa-var-deaf: \"\\f2a4\";\n@fa-var-deafness: \"\\f2a4\";\n@fa-var-dedent: \"\\f03b\";\n@fa-var-delicious: \"\\f1a5\";\n@fa-var-desktop: \"\\f108\";\n@fa-var-deviantart: \"\\f1bd\";\n@fa-var-diamond: \"\\f219\";\n@fa-var-digg: \"\\f1a6\";\n@fa-var-dollar: \"\\f155\";\n@fa-var-dot-circle-o: \"\\f192\";\n@fa-var-download: \"\\f019\";\n@fa-var-dribbble: \"\\f17d\";\n@fa-var-drivers-license: \"\\f2c2\";\n@fa-var-drivers-license-o: \"\\f2c3\";\n@fa-var-dropbox: \"\\f16b\";\n@fa-var-drupal: \"\\f1a9\";\n@fa-var-edge: \"\\f282\";\n@fa-var-edit: \"\\f044\";\n@fa-var-eercast: \"\\f2da\";\n@fa-var-eject: \"\\f052\";\n@fa-var-ellipsis-h: \"\\f141\";\n@fa-var-ellipsis-v: \"\\f142\";\n@fa-var-empire: \"\\f1d1\";\n@fa-var-envelope: \"\\f0e0\";\n@fa-var-envelope-o: \"\\f003\";\n@fa-var-envelope-open: \"\\f2b6\";\n@fa-var-envelope-open-o: \"\\f2b7\";\n@fa-var-envelope-square: \"\\f199\";\n@fa-var-envira: \"\\f299\";\n@fa-var-eraser: \"\\f12d\";\n@fa-var-etsy: \"\\f2d7\";\n@fa-var-eur: \"\\f153\";\n@fa-var-euro: \"\\f153\";\n@fa-var-exchange: \"\\f0ec\";\n@fa-var-exclamation: \"\\f12a\";\n@fa-var-exclamation-circle: \"\\f06a\";\n@fa-var-exclamation-triangle: \"\\f071\";\n@fa-var-expand: \"\\f065\";\n@fa-var-expeditedssl: \"\\f23e\";\n@fa-var-external-link: \"\\f08e\";\n@fa-var-external-link-square: \"\\f14c\";\n@fa-var-eye: \"\\f06e\";\n@fa-var-eye-slash: \"\\f070\";\n@fa-var-eyedropper: \"\\f1fb\";\n@fa-var-fa: \"\\f2b4\";\n@fa-var-facebook: \"\\f09a\";\n@fa-var-facebook-f: \"\\f09a\";\n@fa-var-facebook-official: \"\\f230\";\n@fa-var-facebook-square: \"\\f082\";\n@fa-var-fast-backward: \"\\f049\";\n@fa-var-fast-forward: \"\\f050\";\n@fa-var-fax: \"\\f1ac\";\n@fa-var-feed: \"\\f09e\";\n@fa-var-female: \"\\f182\";\n@fa-var-fighter-jet: \"\\f0fb\";\n@fa-var-file: \"\\f15b\";\n@fa-var-file-archive-o: \"\\f1c6\";\n@fa-var-file-audio-o: \"\\f1c7\";\n@fa-var-file-code-o: \"\\f1c9\";\n@fa-var-file-excel-o: \"\\f1c3\";\n@fa-var-file-image-o: \"\\f1c5\";\n@fa-var-file-movie-o: \"\\f1c8\";\n@fa-var-file-o: \"\\f016\";\n@fa-var-file-pdf-o: \"\\f1c1\";\n@fa-var-file-photo-o: \"\\f1c5\";\n@fa-var-file-picture-o: \"\\f1c5\";\n@fa-var-file-powerpoint-o: \"\\f1c4\";\n@fa-var-file-sound-o: \"\\f1c7\";\n@fa-var-file-text: \"\\f15c\";\n@fa-var-file-text-o: \"\\f0f6\";\n@fa-var-file-video-o: \"\\f1c8\";\n@fa-var-file-word-o: \"\\f1c2\";\n@fa-var-file-zip-o: \"\\f1c6\";\n@fa-var-files-o: \"\\f0c5\";\n@fa-var-film: \"\\f008\";\n@fa-var-filter: \"\\f0b0\";\n@fa-var-fire: \"\\f06d\";\n@fa-var-fire-extinguisher: \"\\f134\";\n@fa-var-firefox: \"\\f269\";\n@fa-var-first-order: \"\\f2b0\";\n@fa-var-flag: \"\\f024\";\n@fa-var-flag-checkered: \"\\f11e\";\n@fa-var-flag-o: \"\\f11d\";\n@fa-var-flash: \"\\f0e7\";\n@fa-var-flask: \"\\f0c3\";\n@fa-var-flickr: \"\\f16e\";\n@fa-var-floppy-o: \"\\f0c7\";\n@fa-var-folder: \"\\f07b\";\n@fa-var-folder-o: \"\\f114\";\n@fa-var-folder-open: \"\\f07c\";\n@fa-var-folder-open-o: \"\\f115\";\n@fa-var-font: \"\\f031\";\n@fa-var-font-awesome: \"\\f2b4\";\n@fa-var-fonticons: \"\\f280\";\n@fa-var-fort-awesome: \"\\f286\";\n@fa-var-forumbee: \"\\f211\";\n@fa-var-forward: \"\\f04e\";\n@fa-var-foursquare: \"\\f180\";\n@fa-var-free-code-camp: \"\\f2c5\";\n@fa-var-frown-o: \"\\f119\";\n@fa-var-futbol-o: \"\\f1e3\";\n@fa-var-gamepad: \"\\f11b\";\n@fa-var-gavel: \"\\f0e3\";\n@fa-var-gbp: \"\\f154\";\n@fa-var-ge: \"\\f1d1\";\n@fa-var-gear: \"\\f013\";\n@fa-var-gears: \"\\f085\";\n@fa-var-genderless: \"\\f22d\";\n@fa-var-get-pocket: \"\\f265\";\n@fa-var-gg: \"\\f260\";\n@fa-var-gg-circle: \"\\f261\";\n@fa-var-gift: \"\\f06b\";\n@fa-var-git: \"\\f1d3\";\n@fa-var-git-square: \"\\f1d2\";\n@fa-var-github: \"\\f09b\";\n@fa-var-github-alt: \"\\f113\";\n@fa-var-github-square: \"\\f092\";\n@fa-var-gitlab: \"\\f296\";\n@fa-var-gittip: \"\\f184\";\n@fa-var-glass: \"\\f000\";\n@fa-var-glide: \"\\f2a5\";\n@fa-var-glide-g: \"\\f2a6\";\n@fa-var-globe: \"\\f0ac\";\n@fa-var-google: \"\\f1a0\";\n@fa-var-google-plus: \"\\f0d5\";\n@fa-var-google-plus-circle: \"\\f2b3\";\n@fa-var-google-plus-official: \"\\f2b3\";\n@fa-var-google-plus-square: \"\\f0d4\";\n@fa-var-google-wallet: \"\\f1ee\";\n@fa-var-graduation-cap: \"\\f19d\";\n@fa-var-gratipay: \"\\f184\";\n@fa-var-grav: \"\\f2d6\";\n@fa-var-group: \"\\f0c0\";\n@fa-var-h-square: \"\\f0fd\";\n@fa-var-hacker-news: \"\\f1d4\";\n@fa-var-hand-grab-o: \"\\f255\";\n@fa-var-hand-lizard-o: \"\\f258\";\n@fa-var-hand-o-down: \"\\f0a7\";\n@fa-var-hand-o-left: \"\\f0a5\";\n@fa-var-hand-o-right: \"\\f0a4\";\n@fa-var-hand-o-up: \"\\f0a6\";\n@fa-var-hand-paper-o: \"\\f256\";\n@fa-var-hand-peace-o: \"\\f25b\";\n@fa-var-hand-pointer-o: \"\\f25a\";\n@fa-var-hand-rock-o: \"\\f255\";\n@fa-var-hand-scissors-o: \"\\f257\";\n@fa-var-hand-spock-o: \"\\f259\";\n@fa-var-hand-stop-o: \"\\f256\";\n@fa-var-handshake-o: \"\\f2b5\";\n@fa-var-hard-of-hearing: \"\\f2a4\";\n@fa-var-hashtag: \"\\f292\";\n@fa-var-hdd-o: \"\\f0a0\";\n@fa-var-header: \"\\f1dc\";\n@fa-var-headphones: \"\\f025\";\n@fa-var-heart: \"\\f004\";\n@fa-var-heart-o: \"\\f08a\";\n@fa-var-heartbeat: \"\\f21e\";\n@fa-var-history: \"\\f1da\";\n@fa-var-home: \"\\f015\";\n@fa-var-hospital-o: \"\\f0f8\";\n@fa-var-hotel: \"\\f236\";\n@fa-var-hourglass: \"\\f254\";\n@fa-var-hourglass-1: \"\\f251\";\n@fa-var-hourglass-2: \"\\f252\";\n@fa-var-hourglass-3: \"\\f253\";\n@fa-var-hourglass-end: \"\\f253\";\n@fa-var-hourglass-half: \"\\f252\";\n@fa-var-hourglass-o: \"\\f250\";\n@fa-var-hourglass-start: \"\\f251\";\n@fa-var-houzz: \"\\f27c\";\n@fa-var-html5: \"\\f13b\";\n@fa-var-i-cursor: \"\\f246\";\n@fa-var-id-badge: \"\\f2c1\";\n@fa-var-id-card: \"\\f2c2\";\n@fa-var-id-card-o: \"\\f2c3\";\n@fa-var-ils: \"\\f20b\";\n@fa-var-image: \"\\f03e\";\n@fa-var-imdb: \"\\f2d8\";\n@fa-var-inbox: \"\\f01c\";\n@fa-var-indent: \"\\f03c\";\n@fa-var-industry: \"\\f275\";\n@fa-var-info: \"\\f129\";\n@fa-var-info-circle: \"\\f05a\";\n@fa-var-inr: \"\\f156\";\n@fa-var-instagram: \"\\f16d\";\n@fa-var-institution: \"\\f19c\";\n@fa-var-internet-explorer: \"\\f26b\";\n@fa-var-intersex: \"\\f224\";\n@fa-var-ioxhost: \"\\f208\";\n@fa-var-italic: \"\\f033\";\n@fa-var-joomla: \"\\f1aa\";\n@fa-var-jpy: \"\\f157\";\n@fa-var-jsfiddle: \"\\f1cc\";\n@fa-var-key: \"\\f084\";\n@fa-var-keyboard-o: \"\\f11c\";\n@fa-var-krw: \"\\f159\";\n@fa-var-language: \"\\f1ab\";\n@fa-var-laptop: \"\\f109\";\n@fa-var-lastfm: \"\\f202\";\n@fa-var-lastfm-square: \"\\f203\";\n@fa-var-leaf: \"\\f06c\";\n@fa-var-leanpub: \"\\f212\";\n@fa-var-legal: \"\\f0e3\";\n@fa-var-lemon-o: \"\\f094\";\n@fa-var-level-down: \"\\f149\";\n@fa-var-level-up: \"\\f148\";\n@fa-var-life-bouy: \"\\f1cd\";\n@fa-var-life-buoy: \"\\f1cd\";\n@fa-var-life-ring: \"\\f1cd\";\n@fa-var-life-saver: \"\\f1cd\";\n@fa-var-lightbulb-o: \"\\f0eb\";\n@fa-var-line-chart: \"\\f201\";\n@fa-var-link: \"\\f0c1\";\n@fa-var-linkedin: \"\\f0e1\";\n@fa-var-linkedin-square: \"\\f08c\";\n@fa-var-linode: \"\\f2b8\";\n@fa-var-linux: \"\\f17c\";\n@fa-var-list: \"\\f03a\";\n@fa-var-list-alt: \"\\f022\";\n@fa-var-list-ol: \"\\f0cb\";\n@fa-var-list-ul: \"\\f0ca\";\n@fa-var-location-arrow: \"\\f124\";\n@fa-var-lock: \"\\f023\";\n@fa-var-long-arrow-down: \"\\f175\";\n@fa-var-long-arrow-left: \"\\f177\";\n@fa-var-long-arrow-right: \"\\f178\";\n@fa-var-long-arrow-up: \"\\f176\";\n@fa-var-low-vision: \"\\f2a8\";\n@fa-var-magic: \"\\f0d0\";\n@fa-var-magnet: \"\\f076\";\n@fa-var-mail-forward: \"\\f064\";\n@fa-var-mail-reply: \"\\f112\";\n@fa-var-mail-reply-all: \"\\f122\";\n@fa-var-male: \"\\f183\";\n@fa-var-map: \"\\f279\";\n@fa-var-map-marker: \"\\f041\";\n@fa-var-map-o: \"\\f278\";\n@fa-var-map-pin: \"\\f276\";\n@fa-var-map-signs: \"\\f277\";\n@fa-var-mars: \"\\f222\";\n@fa-var-mars-double: \"\\f227\";\n@fa-var-mars-stroke: \"\\f229\";\n@fa-var-mars-stroke-h: \"\\f22b\";\n@fa-var-mars-stroke-v: \"\\f22a\";\n@fa-var-maxcdn: \"\\f136\";\n@fa-var-meanpath: \"\\f20c\";\n@fa-var-medium: \"\\f23a\";\n@fa-var-medkit: \"\\f0fa\";\n@fa-var-meetup: \"\\f2e0\";\n@fa-var-meh-o: \"\\f11a\";\n@fa-var-mercury: \"\\f223\";\n@fa-var-microchip: \"\\f2db\";\n@fa-var-microphone: \"\\f130\";\n@fa-var-microphone-slash: \"\\f131\";\n@fa-var-minus: \"\\f068\";\n@fa-var-minus-circle: \"\\f056\";\n@fa-var-minus-square: \"\\f146\";\n@fa-var-minus-square-o: \"\\f147\";\n@fa-var-mixcloud: \"\\f289\";\n@fa-var-mobile: \"\\f10b\";\n@fa-var-mobile-phone: \"\\f10b\";\n@fa-var-modx: \"\\f285\";\n@fa-var-money: \"\\f0d6\";\n@fa-var-moon-o: \"\\f186\";\n@fa-var-mortar-board: \"\\f19d\";\n@fa-var-motorcycle: \"\\f21c\";\n@fa-var-mouse-pointer: \"\\f245\";\n@fa-var-music: \"\\f001\";\n@fa-var-navicon: \"\\f0c9\";\n@fa-var-neuter: \"\\f22c\";\n@fa-var-newspaper-o: \"\\f1ea\";\n@fa-var-object-group: \"\\f247\";\n@fa-var-object-ungroup: \"\\f248\";\n@fa-var-odnoklassniki: \"\\f263\";\n@fa-var-odnoklassniki-square: \"\\f264\";\n@fa-var-opencart: \"\\f23d\";\n@fa-var-openid: \"\\f19b\";\n@fa-var-opera: \"\\f26a\";\n@fa-var-optin-monster: \"\\f23c\";\n@fa-var-outdent: \"\\f03b\";\n@fa-var-pagelines: \"\\f18c\";\n@fa-var-paint-brush: \"\\f1fc\";\n@fa-var-paper-plane: \"\\f1d8\";\n@fa-var-paper-plane-o: \"\\f1d9\";\n@fa-var-paperclip: \"\\f0c6\";\n@fa-var-paragraph: \"\\f1dd\";\n@fa-var-paste: \"\\f0ea\";\n@fa-var-pause: \"\\f04c\";\n@fa-var-pause-circle: \"\\f28b\";\n@fa-var-pause-circle-o: \"\\f28c\";\n@fa-var-paw: \"\\f1b0\";\n@fa-var-paypal: \"\\f1ed\";\n@fa-var-pencil: \"\\f040\";\n@fa-var-pencil-square: \"\\f14b\";\n@fa-var-pencil-square-o: \"\\f044\";\n@fa-var-percent: \"\\f295\";\n@fa-var-phone: \"\\f095\";\n@fa-var-phone-square: \"\\f098\";\n@fa-var-photo: \"\\f03e\";\n@fa-var-picture-o: \"\\f03e\";\n@fa-var-pie-chart: \"\\f200\";\n@fa-var-pied-piper: \"\\f2ae\";\n@fa-var-pied-piper-alt: \"\\f1a8\";\n@fa-var-pied-piper-pp: \"\\f1a7\";\n@fa-var-pinterest: \"\\f0d2\";\n@fa-var-pinterest-p: \"\\f231\";\n@fa-var-pinterest-square: \"\\f0d3\";\n@fa-var-plane: \"\\f072\";\n@fa-var-play: \"\\f04b\";\n@fa-var-play-circle: \"\\f144\";\n@fa-var-play-circle-o: \"\\f01d\";\n@fa-var-plug: \"\\f1e6\";\n@fa-var-plus: \"\\f067\";\n@fa-var-plus-circle: \"\\f055\";\n@fa-var-plus-square: \"\\f0fe\";\n@fa-var-plus-square-o: \"\\f196\";\n@fa-var-podcast: \"\\f2ce\";\n@fa-var-power-off: \"\\f011\";\n@fa-var-print: \"\\f02f\";\n@fa-var-product-hunt: \"\\f288\";\n@fa-var-puzzle-piece: \"\\f12e\";\n@fa-var-qq: \"\\f1d6\";\n@fa-var-qrcode: \"\\f029\";\n@fa-var-question: \"\\f128\";\n@fa-var-question-circle: \"\\f059\";\n@fa-var-question-circle-o: \"\\f29c\";\n@fa-var-quora: \"\\f2c4\";\n@fa-var-quote-left: \"\\f10d\";\n@fa-var-quote-right: \"\\f10e\";\n@fa-var-ra: \"\\f1d0\";\n@fa-var-random: \"\\f074\";\n@fa-var-ravelry: \"\\f2d9\";\n@fa-var-rebel: \"\\f1d0\";\n@fa-var-recycle: \"\\f1b8\";\n@fa-var-reddit: \"\\f1a1\";\n@fa-var-reddit-alien: \"\\f281\";\n@fa-var-reddit-square: \"\\f1a2\";\n@fa-var-refresh: \"\\f021\";\n@fa-var-registered: \"\\f25d\";\n@fa-var-remove: \"\\f00d\";\n@fa-var-renren: \"\\f18b\";\n@fa-var-reorder: \"\\f0c9\";\n@fa-var-repeat: \"\\f01e\";\n@fa-var-reply: \"\\f112\";\n@fa-var-reply-all: \"\\f122\";\n@fa-var-resistance: \"\\f1d0\";\n@fa-var-retweet: \"\\f079\";\n@fa-var-rmb: \"\\f157\";\n@fa-var-road: \"\\f018\";\n@fa-var-rocket: \"\\f135\";\n@fa-var-rotate-left: \"\\f0e2\";\n@fa-var-rotate-right: \"\\f01e\";\n@fa-var-rouble: \"\\f158\";\n@fa-var-rss: \"\\f09e\";\n@fa-var-rss-square: \"\\f143\";\n@fa-var-rub: \"\\f158\";\n@fa-var-ruble: \"\\f158\";\n@fa-var-rupee: \"\\f156\";\n@fa-var-s15: \"\\f2cd\";\n@fa-var-safari: \"\\f267\";\n@fa-var-save: \"\\f0c7\";\n@fa-var-scissors: \"\\f0c4\";\n@fa-var-scribd: \"\\f28a\";\n@fa-var-search: \"\\f002\";\n@fa-var-search-minus: \"\\f010\";\n@fa-var-search-plus: \"\\f00e\";\n@fa-var-sellsy: \"\\f213\";\n@fa-var-send: \"\\f1d8\";\n@fa-var-send-o: \"\\f1d9\";\n@fa-var-server: \"\\f233\";\n@fa-var-share: \"\\f064\";\n@fa-var-share-alt: \"\\f1e0\";\n@fa-var-share-alt-square: \"\\f1e1\";\n@fa-var-share-square: \"\\f14d\";\n@fa-var-share-square-o: \"\\f045\";\n@fa-var-shekel: \"\\f20b\";\n@fa-var-sheqel: \"\\f20b\";\n@fa-var-shield: \"\\f132\";\n@fa-var-ship: \"\\f21a\";\n@fa-var-shirtsinbulk: \"\\f214\";\n@fa-var-shopping-bag: \"\\f290\";\n@fa-var-shopping-basket: \"\\f291\";\n@fa-var-shopping-cart: \"\\f07a\";\n@fa-var-shower: \"\\f2cc\";\n@fa-var-sign-in: \"\\f090\";\n@fa-var-sign-language: \"\\f2a7\";\n@fa-var-sign-out: \"\\f08b\";\n@fa-var-signal: \"\\f012\";\n@fa-var-signing: \"\\f2a7\";\n@fa-var-simplybuilt: \"\\f215\";\n@fa-var-sitemap: \"\\f0e8\";\n@fa-var-skyatlas: \"\\f216\";\n@fa-var-skype: \"\\f17e\";\n@fa-var-slack: \"\\f198\";\n@fa-var-sliders: \"\\f1de\";\n@fa-var-slideshare: \"\\f1e7\";\n@fa-var-smile-o: \"\\f118\";\n@fa-var-snapchat: \"\\f2ab\";\n@fa-var-snapchat-ghost: \"\\f2ac\";\n@fa-var-snapchat-square: \"\\f2ad\";\n@fa-var-snowflake-o: \"\\f2dc\";\n@fa-var-soccer-ball-o: \"\\f1e3\";\n@fa-var-sort: \"\\f0dc\";\n@fa-var-sort-alpha-asc: \"\\f15d\";\n@fa-var-sort-alpha-desc: \"\\f15e\";\n@fa-var-sort-amount-asc: \"\\f160\";\n@fa-var-sort-amount-desc: \"\\f161\";\n@fa-var-sort-asc: \"\\f0de\";\n@fa-var-sort-desc: \"\\f0dd\";\n@fa-var-sort-down: \"\\f0dd\";\n@fa-var-sort-numeric-asc: \"\\f162\";\n@fa-var-sort-numeric-desc: \"\\f163\";\n@fa-var-sort-up: \"\\f0de\";\n@fa-var-soundcloud: \"\\f1be\";\n@fa-var-space-shuttle: \"\\f197\";\n@fa-var-spinner: \"\\f110\";\n@fa-var-spoon: \"\\f1b1\";\n@fa-var-spotify: \"\\f1bc\";\n@fa-var-square: \"\\f0c8\";\n@fa-var-square-o: \"\\f096\";\n@fa-var-stack-exchange: \"\\f18d\";\n@fa-var-stack-overflow: \"\\f16c\";\n@fa-var-star: \"\\f005\";\n@fa-var-star-half: \"\\f089\";\n@fa-var-star-half-empty: \"\\f123\";\n@fa-var-star-half-full: \"\\f123\";\n@fa-var-star-half-o: \"\\f123\";\n@fa-var-star-o: \"\\f006\";\n@fa-var-steam: \"\\f1b6\";\n@fa-var-steam-square: \"\\f1b7\";\n@fa-var-step-backward: \"\\f048\";\n@fa-var-step-forward: \"\\f051\";\n@fa-var-stethoscope: \"\\f0f1\";\n@fa-var-sticky-note: \"\\f249\";\n@fa-var-sticky-note-o: \"\\f24a\";\n@fa-var-stop: \"\\f04d\";\n@fa-var-stop-circle: \"\\f28d\";\n@fa-var-stop-circle-o: \"\\f28e\";\n@fa-var-street-view: \"\\f21d\";\n@fa-var-strikethrough: \"\\f0cc\";\n@fa-var-stumbleupon: \"\\f1a4\";\n@fa-var-stumbleupon-circle: \"\\f1a3\";\n@fa-var-subscript: \"\\f12c\";\n@fa-var-subway: \"\\f239\";\n@fa-var-suitcase: \"\\f0f2\";\n@fa-var-sun-o: \"\\f185\";\n@fa-var-superpowers: \"\\f2dd\";\n@fa-var-superscript: \"\\f12b\";\n@fa-var-support: \"\\f1cd\";\n@fa-var-table: \"\\f0ce\";\n@fa-var-tablet: \"\\f10a\";\n@fa-var-tachometer: \"\\f0e4\";\n@fa-var-tag: \"\\f02b\";\n@fa-var-tags: \"\\f02c\";\n@fa-var-tasks: \"\\f0ae\";\n@fa-var-taxi: \"\\f1ba\";\n@fa-var-telegram: \"\\f2c6\";\n@fa-var-television: \"\\f26c\";\n@fa-var-tencent-weibo: \"\\f1d5\";\n@fa-var-terminal: \"\\f120\";\n@fa-var-text-height: \"\\f034\";\n@fa-var-text-width: \"\\f035\";\n@fa-var-th: \"\\f00a\";\n@fa-var-th-large: \"\\f009\";\n@fa-var-th-list: \"\\f00b\";\n@fa-var-themeisle: \"\\f2b2\";\n@fa-var-thermometer: \"\\f2c7\";\n@fa-var-thermometer-0: \"\\f2cb\";\n@fa-var-thermometer-1: \"\\f2ca\";\n@fa-var-thermometer-2: \"\\f2c9\";\n@fa-var-thermometer-3: \"\\f2c8\";\n@fa-var-thermometer-4: \"\\f2c7\";\n@fa-var-thermometer-empty: \"\\f2cb\";\n@fa-var-thermometer-full: \"\\f2c7\";\n@fa-var-thermometer-half: \"\\f2c9\";\n@fa-var-thermometer-quarter: \"\\f2ca\";\n@fa-var-thermometer-three-quarters: \"\\f2c8\";\n@fa-var-thumb-tack: \"\\f08d\";\n@fa-var-thumbs-down: \"\\f165\";\n@fa-var-thumbs-o-down: \"\\f088\";\n@fa-var-thumbs-o-up: \"\\f087\";\n@fa-var-thumbs-up: \"\\f164\";\n@fa-var-ticket: \"\\f145\";\n@fa-var-times: \"\\f00d\";\n@fa-var-times-circle: \"\\f057\";\n@fa-var-times-circle-o: \"\\f05c\";\n@fa-var-times-rectangle: \"\\f2d3\";\n@fa-var-times-rectangle-o: \"\\f2d4\";\n@fa-var-tint: \"\\f043\";\n@fa-var-toggle-down: \"\\f150\";\n@fa-var-toggle-left: \"\\f191\";\n@fa-var-toggle-off: \"\\f204\";\n@fa-var-toggle-on: \"\\f205\";\n@fa-var-toggle-right: \"\\f152\";\n@fa-var-toggle-up: \"\\f151\";\n@fa-var-trademark: \"\\f25c\";\n@fa-var-train: \"\\f238\";\n@fa-var-transgender: \"\\f224\";\n@fa-var-transgender-alt: \"\\f225\";\n@fa-var-trash: \"\\f1f8\";\n@fa-var-trash-o: \"\\f014\";\n@fa-var-tree: \"\\f1bb\";\n@fa-var-trello: \"\\f181\";\n@fa-var-tripadvisor: \"\\f262\";\n@fa-var-trophy: \"\\f091\";\n@fa-var-truck: \"\\f0d1\";\n@fa-var-try: \"\\f195\";\n@fa-var-tty: \"\\f1e4\";\n@fa-var-tumblr: \"\\f173\";\n@fa-var-tumblr-square: \"\\f174\";\n@fa-var-turkish-lira: \"\\f195\";\n@fa-var-tv: \"\\f26c\";\n@fa-var-twitch: \"\\f1e8\";\n@fa-var-twitter: \"\\f099\";\n@fa-var-twitter-square: \"\\f081\";\n@fa-var-umbrella: \"\\f0e9\";\n@fa-var-underline: \"\\f0cd\";\n@fa-var-undo: \"\\f0e2\";\n@fa-var-universal-access: \"\\f29a\";\n@fa-var-university: \"\\f19c\";\n@fa-var-unlink: \"\\f127\";\n@fa-var-unlock: \"\\f09c\";\n@fa-var-unlock-alt: \"\\f13e\";\n@fa-var-unsorted: \"\\f0dc\";\n@fa-var-upload: \"\\f093\";\n@fa-var-usb: \"\\f287\";\n@fa-var-usd: \"\\f155\";\n@fa-var-user: \"\\f007\";\n@fa-var-user-circle: \"\\f2bd\";\n@fa-var-user-circle-o: \"\\f2be\";\n@fa-var-user-md: \"\\f0f0\";\n@fa-var-user-o: \"\\f2c0\";\n@fa-var-user-plus: \"\\f234\";\n@fa-var-user-secret: \"\\f21b\";\n@fa-var-user-times: \"\\f235\";\n@fa-var-users: \"\\f0c0\";\n@fa-var-vcard: \"\\f2bb\";\n@fa-var-vcard-o: \"\\f2bc\";\n@fa-var-venus: \"\\f221\";\n@fa-var-venus-double: \"\\f226\";\n@fa-var-venus-mars: \"\\f228\";\n@fa-var-viacoin: \"\\f237\";\n@fa-var-viadeo: \"\\f2a9\";\n@fa-var-viadeo-square: \"\\f2aa\";\n@fa-var-video-camera: \"\\f03d\";\n@fa-var-vimeo: \"\\f27d\";\n@fa-var-vimeo-square: \"\\f194\";\n@fa-var-vine: \"\\f1ca\";\n@fa-var-vk: \"\\f189\";\n@fa-var-volume-control-phone: \"\\f2a0\";\n@fa-var-volume-down: \"\\f027\";\n@fa-var-volume-off: \"\\f026\";\n@fa-var-volume-up: \"\\f028\";\n@fa-var-warning: \"\\f071\";\n@fa-var-wechat: \"\\f1d7\";\n@fa-var-weibo: \"\\f18a\";\n@fa-var-weixin: \"\\f1d7\";\n@fa-var-whatsapp: \"\\f232\";\n@fa-var-wheelchair: \"\\f193\";\n@fa-var-wheelchair-alt: \"\\f29b\";\n@fa-var-wifi: \"\\f1eb\";\n@fa-var-wikipedia-w: \"\\f266\";\n@fa-var-window-close: \"\\f2d3\";\n@fa-var-window-close-o: \"\\f2d4\";\n@fa-var-window-maximize: \"\\f2d0\";\n@fa-var-window-minimize: \"\\f2d1\";\n@fa-var-window-restore: \"\\f2d2\";\n@fa-var-windows: \"\\f17a\";\n@fa-var-won: \"\\f159\";\n@fa-var-wordpress: \"\\f19a\";\n@fa-var-wpbeginner: \"\\f297\";\n@fa-var-wpexplorer: \"\\f2de\";\n@fa-var-wpforms: \"\\f298\";\n@fa-var-wrench: \"\\f0ad\";\n@fa-var-xing: \"\\f168\";\n@fa-var-xing-square: \"\\f169\";\n@fa-var-y-combinator: \"\\f23b\";\n@fa-var-y-combinator-square: \"\\f1d4\";\n@fa-var-yahoo: \"\\f19e\";\n@fa-var-yc: \"\\f23b\";\n@fa-var-yc-square: \"\\f1d4\";\n@fa-var-yelp: \"\\f1e9\";\n@fa-var-yen: \"\\f157\";\n@fa-var-yoast: \"\\f2b1\";\n@fa-var-youtube: \"\\f167\";\n@fa-var-youtube-play: \"\\f16a\";\n@fa-var-youtube-square: \"\\f166\";\n\n","// Screen Readers\n// -------------------------\n\n.sr-only { .sr-only(); }\n.sr-only-focusable { .sr-only-focusable(); }\n","//\n// Patternfly Mixins\n// --------------------------------------------------\n// PatternFly-specific mixins\n\n// Patternfly button variants.\n.button-variant(@color; @background; @background-image-start; @background-image-stop; @border) {\n  background-color: @background;\n  #gradient > .vertical(@background-image-start, @background-image-stop);\n  border-color: @border;\n  color: @color;\n\n  &:hover,\n  &:focus,\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-color: @background;\n    background-image: none;\n    border-color: @border;\n    color: @color;\n  }\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-image: none;\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: darken(@background, 5%);\n          border-color: darken(@border, 7%);\n    }\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &,\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      background-color: @background;\n      border-color: @border;\n    }\n  }\n}\n\n// SASS CONVERSION FIX.\n// Allows inclusion of sr-only rules in nested media queries where @extends .sr-only\n// will not work.\n.sr-only-pf() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n\n.tab-indicator(@background: @gray-light-pf, @left: 15px, @right: 15px) {\n  &:before {\n    background: @background;\n    bottom: -1px;\n    content: \"\";\n    display: block;\n    height: 2px;\n    left: @left;\n    position: absolute;\n    right: @right;\n  }\n}\n\n// Ellipse overflow text\n.text-overflow-pf {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  word-wrap: normal;\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n.alert {\n  border-width: 1px;\n  padding-left: 47px;\n  padding-right: (@alert-padding + 3);\n  position: relative;\n  word-wrap: break-word;\n  .alert-link {\n    color: @link-color;\n    &:hover {\n      color: @link-hover-color;\n    }\n  }\n  > .btn.pull-right {\n    margin-top: -3px;\n  }\n  > .pficon {\n    font-size: 22px;\n    position: absolute;\n    left: 13px;\n    top: 10px;\n  }\n  .close {\n    .opacity(.85);\n    &:hover,\n    &:focus {\n      .opacity(1);\n    }\n  }\n  .pficon-info {\n    color: @color-pf-black-700;\n  }\n}\n\n.alert-dismissable {\n  padding-right: (@alert-padding + 17);\n  .close {\n    right: -13px;\n    top: 1px;\n  }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n.badge {\n  margin-left: 6px;\n}\n\n.nav-pills > li > a > .badge {\n  margin-left: 6px;\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n.breadcrumb {\n  padding-left: 0;\n  > .active strong {\n    font-weight: 600;\n  }\n  > li {\n      display: inline; /* IE8 */\n      + li:before {\n      color: @gray-light;\n      content: @fa-var-angle-right;\n      font-family: @icon-font-name-fa;\n      font-size: (@font-size-base - 1);\n      padding: 0 9px 0 7px;\n    }\n  }\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n.btn {\n  .box-shadow(0 2px 3px fade(@color-pf-black, 10%));\n  &:active {\n    .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    background-color: @color-pf-black-100 !important;\n    background-image: none !important;\n    border-color: @color-pf-black-300 !important;\n    color: @color-pf-black-500 !important;\n    opacity: 1;\n    &:active {\n      .box-shadow(none);\n    }\n    &.btn-link {\n      background-color: transparent !important;\n      border: 0;\n    }\n  }\n}\n\n.btn-danger {\n  .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-bg-img-start; @btn-danger-bg-img-stop; @btn-danger-border);\n}\n\n.btn-default {\n  .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n}\n\n.btn-link {\n  &,\n  &:active {\n    .box-shadow(none);\n  }\n}\n\n.btn-primary {\n  .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-bg-img-start; @btn-primary-bg-img-stop; @btn-primary-border);\n}\n\n.btn-xs,\n.btn-group-xs .btn {\n  font-weight: @btn-xs-font-weight;\n}\n","//\n// Dropdowns\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n// Modified to use Font Awesome's angle-down icon\n.caret {\n  font-family: @icon-font-name-fa;\n  font-weight: normal;\n  height: (@font-size-base - 3);\n  position: relative;\n  vertical-align: baseline;\n  width: @font-size-base;\n  &:before {\n    bottom: 0;\n    content: @fa-var-angle-down;\n    left: 0;\n    line-height: @font-size-base;\n    position: absolute;\n    text-align: center;\n    top: -1px;\n    right: 0;\n  }\n  .dropup & {\n    &:before {\n      content: @fa-var-angle-up;\n    }\n  }\n}\n\n// Bootstrap removes the focus ring on dropdowns; this replaces it for better accessibility\n.dropdown-toggle:focus {\n  .tab-focus();\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n  // Dividers (basically an hr) within the dropdown\n  .divider {\n    .nav-divider(@dropdown-divider-bg, @dropdown-divider-margin);\n  }\n  // Links within the dropdown menu\n  > li > a {\n    border-color: transparent;\n    border-style: solid;\n    border-width: 1px 0;\n    padding: 1px 10px;\n  }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n  &:hover,\n  &:focus {\n    border-color: @dropdown-link-hover-border-color;\n    .reset-filter();\n  }\n  &:active {\n    background-color: @dropdown-link-focus-bg;\n    border-color: @dropdown-link-active-border-color;\n    color: @dropdown-link-focus-color !important;\n    .reset-filter();\n  }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n  &,\n  &:hover,\n  &:focus {\n    background-color: @dropdown-link-active-bg !important;\n    border-color: @dropdown-link-active-border-color !important;\n    .reset-filter();\n  }\n}\n\n// Disabled state\n.dropdown-menu > .disabled > a {\n  &,\n  &:hover,\n  &:focus {\n    border-color: transparent;\n  }\n}\n\n// Selected state\n.dropdown-menu > .selected > a {\n  background-color: @dropdown-link-active-bg;\n  border-color: @dropdown-link-active-border-color;\n  color: @color-pf-white;\n  small {\n    color: fade(@color-pf-white, 50%);\n  }\n}\n\n// Nuke hover/focus effects\n.dropdown-menu > .disabled > a {\n  &:hover,\n  &:focus {\n    border-color: transparent;\n  }\n}\n\n// Dropdown section headers\n.dropdown-header {\n  padding-left: 10px;\n  padding-right: 10px;\n  text-transform: uppercase;\n}\n\n// Position Menu closer to button\n.btn-group,\n.dropdown,\n.input-group-btn {\n  > .dropdown-menu {\n    margin-top: -1px;\n  }\n}\n\n// Position Menu closer to button (dropup-menu)\n.dropup .dropdown-menu {\n  margin-bottom: -1px;\n}\n\n// Add back styles for dropdown-submenu\n.dropdown-submenu {\n  position:relative;\n  &:hover {\n    > a {\n      background-color: @dropdown-link-hover-bg;\n      border-color: @dropdown-link-hover-border-color;\n    }\n    > .dropdown-menu {\n      display: block;\n    }\n  }\n  &.pull-left {\n    float: none !important;\n    > .dropdown-menu {\n      left: auto;\n      margin-left: 10px;\n      right: 100%;\n    }\n  }\n  > a {\n    padding-right: 20px !important;\n    &:after {\n      content: @fa-var-angle-right;\n      font-family: @icon-font-name-fa;\n      display: block;\n      position: absolute;\n      right: 10px;\n      top: 2px;\n    }\n  }\n  > .dropdown-menu {\n    left: 100%;\n    margin-top: 0;\n    top: -6px;\n  }\n  .dropup & > .dropdown-menu {\n    bottom: -5px;\n    top: auto;\n  }\n  .open &.active > .dropdown-menu {\n    display: block;\n  }\n}\n\n// Kebab dropmenu\n.dropdown-kebab-pf {\n  &.btn-group > .btn:first-child,\n  .btn-link {\n    color: @gray-darker;\n    font-size: (@font-size-base + 4);\n    line-height: 1;\n    padding: 4px (@grid-gutter-width/4);\n    margin-left: (@grid-gutter-width/(-4));\n    margin-right: (@grid-gutter-width/(-4));\n    &:active,\n    &:focus,\n    &:hover {\n      color: @link-color;\n    }\n  }\n  &.btn-group { margin-left: (@grid-gutter-width/4); }\n  .dropdown-menu {\n    left: -15px;\n    margin-top: 11px;\n    &.dropdown-menu-right {\n      left: auto;\n      right: -15px;\n      &:after,\n      &:before {\n        left: auto;\n        right: 6px;\n      }\n    }\n    &:after,\n    &:before {\n      border-bottom-color: @dropdown-border;\n      border-bottom-style: solid;\n      border-bottom-width: 10px;\n      border-left: 10px solid transparent;\n      border-right: 10px solid transparent;\n      content: \"\";\n      display: inline-block;\n      left: 6px;\n      position: absolute;\n      top: -11px;\n    }\n    &:after {\n      border-bottom-color: @dropdown-bg;\n      top: -10px;\n    }\n  }\n  &.dropup .dropdown-menu {\n    margin-bottom: 11px;\n    margin-top: 0;\n    &:after,\n    &:before {\n      border-bottom: none;\n      border-top-color: @dropdown-border;\n      border-top-style: solid;\n      border-top-width: 10px;\n      bottom: -11px;\n      top: auto;\n    }\n    &:after {\n      border-top-color: @dropdown-bg;\n      bottom: -10px;\n    }\n  }\n}\n","//\n// Forms\n// --------------------------------------------------\n.chars-remaining-pf span {\n  font-weight: 600;\n  padding-right: 5px;\n}\n\n.chars-warn-remaining-pf {\n  color: @brand-danger;\n}\n\n.fields-status-pf {\n  color: @color-pf-black-500;\n  margin-bottom: 15px;\n}\n\n.form-control {\n  &[disabled],\n  &[readonly],\n  fieldset[disabled] & {\n    .box-shadow(none);\n    color: @color-pf-black-500;\n    &:hover {\n      border-color: @input-border;\n    }\n  }\n  &:hover {\n    border-color: @input-border-hover;\n    .has-error & {\n      border-color: darken(@state-danger-text, 10%);\n    }\n    .has-success & {\n      border-color: darken(@state-success-text, 10%);\n    }\n    .has-warning & {\n      border-color: darken(@state-warning-text, 10%);\n    }\n  }\n}\n\n.has-error, .has-success, .has-warning {\n  .checkbox,\n  .checkbox-inline,\n  .control-label,\n  .radio,\n  .radio-inline,\n  &.checkbox label,\n  &.checkbox-inline label,\n  &.radio label,\n  &.radio-inline label {\n    color: @text-color;\n  }\n}\n\n.help-block {\n  margin-bottom: 0px;\n}\n\n.input-group .input-group-btn .btn {\n  .box-shadow(none);\n}\n\nlabel {\n  font-weight: 600;\n  &.required-pf:after {\n    color: @brand-danger;\n    content: \"*\";\n    margin-left: 3px;\n  }\n}\n\nspan.required-pf {\n  color: @brand-danger;\n}\n\n.fields-section-pf {\n  border-color: @color-pf-black-200;\n  border-style: solid;\n  border-width: 1px 0 0;\n  margin-top: 25px;\n  padding: 15px 0 0;\n}\n.fields-section-header-pf {\n  border: none;\n  font-size: @font-size-base;\n  margin: 0;\n  padding-right: @padding-large-horizontal;\n  width: auto;\n  .fa-angle-right {\n    cursor: pointer;\n    font-size: @font-size-large;\n    width: @font-size-large;\n  }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n  border-radius: 0;\n  font-size: 100%;\n  font-weight: 600;\n  h1 &,\n  h2 &,\n  h3 &,\n  h4 &,\n  h5 &,\n  h6 & {\n    font-size: 75%;\n  }\n}\n","//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n  border-top: 1px solid @list-group-top-border;\n  .list-group-item:first-child {\n    border-top: 0;\n  }\n}\n.list-group-item {\n  border-left: 0;\n  border-right: 0;\n}\n\n.list-group-item-heading {\n  font-weight: 600;\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n  background-color: @color-pf-black-150;\n  border-bottom: none;\n  padding: @modal-title-padding-vertical @modal-title-padding-horizontal;\n}\n// Close icon\n.modal-header .close {\n  margin-top: 2px;\n}\n\n// Title text within header\n.modal-title {\n  font-size: 13px;\n  font-weight: 700;\n}\n\n// Footer (for actions)\n.modal-footer {\n  border-top: none;\n  margin-top: 15px;\n  padding: (@modal-inner-padding - 1) @modal-inner-padding @modal-inner-padding;\n  > .btn {\n    padding-left: 10px;\n    padding-right: 10px;\n    > .fa-angle-left {\n      margin-right: 5px;\n    }\n    > .fa-angle-right {\n      margin-left: 5px;\n    }\n  }\n}\n","//\n// Pager\n// --------------------------------------------------\n\n.pager {\n  li {\n    > a,\n    > span {\n      .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n      color: @gray-pf;\n      font-weight: 600;\n      line-height: 22px;\n      padding: 2px 14px;\n      > .i {\n        font-size: 18px;\n        vertical-align: top;\n        margin: 2px 0;\n      }\n    }\n    a:active {\n      background-image: none;\n      .box-shadow(inset 0 3px 5px fade(@color-pf-black, 12.5%));\n      outline: 0;\n    }\n  }\n  .disabled {\n    > a,\n    > a:hover,\n    > a:focus,\n    > a:active,\n    > span {\n      background: @pagination-bg;\n      .box-shadow(none);\n      color: @pager-disabled-color;\n      cursor: not-allowed;\n    }\n  }\n  .next {\n     > a,\n     > span {\n       > .i {\n          margin-left: 5px;\n       }\n     }\n  }\n  .previous {\n     > a,\n     > span {\n       > .i {\n          margin-right: 5px;\n       }\n     }\n  }\n}\n\n.pager-sm {\n  li {\n    > a,\n    > span {\n      font-weight: 400;\n      line-height: 16px;\n      padding: 1px 10px;\n      > .i {\n        font-size: 12px;\n      }\n    }\n  }\n}\n","//\n// Pagination\n// --------------------------------------------------\n\n.pagination {\n  > li {\n    > a,\n    > span {\n      .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n      cursor: default;\n      font-weight: 600;\n      padding: @padding-base-vertical @padding-large-horizontal;\n      > .i {\n        font-size: 15px;\n        vertical-align: top;\n        margin: 2px 0;\n      }\n    }\n  }\n  > li > a,\n  > li > span {\n    &:active {\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n    }\n  }\n  > .active > a,\n  > .active > span {\n    &,\n    &:hover,\n    &:focus {\n      background-color: @btn-default-bg;\n      border-color: @pagination-border;\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n      color: @btn-default-color;\n      #gradient > .vertical(@btn-default-bg-img-start; @btn-default-bg-img-stop);\n    }\n  }\n  > .disabled {\n    > span,\n    > span:hover,\n    > span:focus,\n    > a,\n    > a:hover,\n    > a:focus {\n      .box-shadow(none);\n      cursor: not-allowed;\n      #gradient > .vertical(@btn-default-bg-img-start; @btn-default-bg-img-stop);\n    }\n  }\n}\n\n.pagination-sm {\n  .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n  > li {\n    > a,\n    > span {\n      font-weight: 400;\n      > .i {\n        font-size: 12px;\n        margin-top: 2px;\n      }\n    }\n  }\n}\n\n.content-view-pf-pagination {\n  background-color: @table-bg-accent;\n  border: 1px solid @table-border-color;\n  display: flex;\n  flex-wrap: wrap;\n  justify-content: space-between;\n  &.table-view-pf-pagination {\n    border-top: none;\n  }\n  .form-group {\n    align-items: baseline;\n    display: flex;\n    flex-grow: 1;\n    float: left; //IE9 fallback\n    @supports (display: flex) {\n      float: none;\n    }\n    margin: 5px;\n    &:last-child {\n      justify-content: flex-end; // if pagination controls wrap, pagination buttons stay on the right\n      float: right; //IE9 fallback\n      @supports (display: flex) {\n        float: none;\n      }\n    }\n    .pagination-pf-pagesize.bootstrap-select.btn-group,\n    .pagination-pf-pagesize.btn-group {\n      display: flex;\n      float: none;\n      margin-bottom: 0;\n      margin-left: 0;\n      margin-right: 5px;\n      width: auto;\n    }\n    .dropdown-menu {\n      min-width: auto;\n    }\n  }\n  .pagination-pf-page {\n    margin-left: 10px;\n    margin-right: 5px;\n    padding: 0 2px 2px;\n    text-align: right;\n    width: 2.5em;\n  }\n  .pagination {\n    display: flex;\n    margin: 0 0 0 10px;\n    a {\n      float: none;\n      @supports (display: flex) {\n        display: block;\n      }\n    }\n  }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n.panel-title {\n  font-weight: 700;\n}\n\n//\n// Collapsable panels (aka, accordion)\n// --------------------------------------------------\n\n.panel-group {\n  .panel {\n    color: @gray-pf;\n    + .panel {\n      margin-top: -1px;\n    }\n  }\n  .panel-default {\n    border-color: @panel-default-border-color;\n    border-top-color: @panel-default-border-color;\n    .panel-heading {\n      #gradient > .vertical(@btn-default-bg-img-start, @btn-default-bg-img-stop);\n      + .panel-collapse .panel-body {\n        border-top: 1px solid @panel-inner-border;\n      }\n    }\n  }\n\n  .panel-info {\n    border-color: @panel-info-border;\n    .panel-heading {\n      background-color: @panel-group-pf-info-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-info-border;\n    }\n  }\n  .panel-primary {\n    border-color: @panel-primary-border;\n    .panel-heading {\n      background-color: @panel-group-pf-primary-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-primary-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-primary-border;\n    }\n  }\n  .panel-success {\n    border-color: @panel-success-border;\n    .panel-heading {\n      background-color: @panel-group-pf-success-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-success-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-success-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-success-border;\n    }\n  }\n  .panel-warning {\n    border-color: @panel-warning-border;\n    .panel-heading {\n      background-color: @panel-group-pf-warning-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-success {\n      border-top-color: @panel-warning-border;\n    }\n  }\n  .panel-danger {\n    border-color: @panel-danger-border;\n    .panel-heading {\n      background-color: @panel-group-pf-danger-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-success {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-warning {\n      border-top-color: @panel-danger-border;\n    }\n  }\n  .panel-title {\n    font-weight: 500;\n    line-height: 1;\n    > a {\n      color: @gray-pf;\n      font-weight: @btn-font-weight;\n      &:before {\n        content: \"\\f107\";\n        display: inline-block;\n        font-family: @icon-font-name-fa;\n        font-size: 13px;\n        margin-right: 5px;\n        text-align: center;\n        vertical-align: 0;\n        width: 8px;\n      }\n      &:focus {\n        outline: none;\n        text-decoration: none;\n      }\n      &:hover {\n        text-decoration: none;\n      }\n      &.collapsed:before {\n        content: \"\\f105\";\n      }\n    }\n  }\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n.popover {\n  .box-shadow(0 2px 2px fade(@color-pf-black, 8%));\n  padding: 0;\n}\n\n.popover-content {\n  color: @gray-pf;\n  line-height: 18px;\n  padding: 10px 14px;\n}\n\n.popover-title {\n  border-bottom: none;\n  border-radius: 0;\n  color: @gray-pf;\n  font-size: (@font-size-base + 1);\n  font-weight: 700;\n  min-height: 34px;\n  .close {\n    height: 22px;\n    position: absolute;\n    right: 8px;\n    top: 6px;\n  }\n  &.closable {\n    padding-right: 30px;\n  }\n}\n","//\n// Progress Bar\n// --------------------------------------------------\n\n@keyframes progress-bar-stripes {\n  from  { background-position: 0 0; }\n  to    { background-position: 40px 0; }\n}\n\n.progress {\n  .box-shadow(inset 0 0 1px fade(@color-pf-black, 25%));\n  &.progress-label-left,\n  &.progress-label-top-right {\n    overflow: visible;\n    position: relative;\n  }\n  &.progress-label-left {\n    margin-left: 40px;\n  }\n  &.progress-sm {\n    height: @progress-sm;\n    margin-bottom: @progress-sm;\n  }\n  &.progress-xs {\n    height: @progress-xs;\n    margin-bottom: @progress-xs;\n  }\n  td > &:first-child:last-child {\n    margin-bottom: 0;\n    margin-top: 3px;\n  }\n}\n\n.progress-bar {\n  box-shadow: none;\n  .progress-label-left & span,\n  .progress-label-right & span,\n  .progress-label-top-right & span {\n    color: @text-color;\n    position: absolute;\n    text-align: right;\n  }\n  .progress-label-left & span {\n    font-size: @font-size-large;\n    left: -40px;\n    top: 0;\n    width: 35px;\n  }\n  .progress-label-right & span,\n  .progress-label-top-right & span {\n    font-size: @font-size-small;\n    overflow: hidden;\n    right: 0;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    strong {\n      font-weight: 600;\n    }\n  }\n  .progress-label-right & span {\n    max-width: @progress-description-label-width;\n    top: 0;\n  }\n  .progress-label-top-right & span {\n    max-width: 47%;\n    top: (-(@line-height-computed * 1.5)); // -30px\n  }\n  .progress-label-left.progress-sm & span,\n  .progress-label-top-right.progress-sm & span {\n    font-size: @font-size-base;\n  }\n  .progress-sm & {\n    line-height: @progress-sm;\n  }\n  .progress-xs & {\n    line-height: @progress-xs;\n  }\n}\n\n.progress-bar-remaining {\n  background: transparent;\n}\n\n.progress-container {\n  position: relative;\n  &.progress-description-left {\n    padding-left :(@progress-description-label-width + 5);\n  }\n  &.progress-label-right {\n    padding-right :(@progress-description-label-width + 5);\n  }\n}\n\n.progress-description {\n  margin-bottom: (@line-height-computed / 2); // 10px\n  max-width: 52%;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  .count {\n    font-size: (@font-size-base * 1.667); // 20px\n    font-weight: 300;\n    line-height: 1;\n    margin-right: 5px;\n  }\n  .fa,\n  .pficon {\n    font-size: 14px;\n    margin-right: 3px;\n  }\n  .progress-description-left & {\n    left: 0;\n    margin-bottom: 0;\n    max-width: @progress-description-label-width;\n    position: absolute;\n    top: 0;\n  }\n  .tooltip {\n    white-space: normal;\n  }\n}\n","//\n// Tables\n// --------------------------------------------------\n\n.table {\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-cell-padding-top @table-cell-padding @table-cell-padding-bottom;\n        > a:hover {\n          text-decoration: none;\n        }\n      }\n      > th {\n        font-family: \"Open Sans\";\n        font-style: normal;\n        font-weight: 600;\n      }\n    }\n  }\n  > thead {\n    background-clip: padding-box;\n    background-color: @color-pf-black-150;\n    #gradient > .vertical(@start-color: @color-pf-black-100; @end-color: @color-pf-black-200; @start-percent: 0%; @end-percent: 100%);\n  }\n}\n\n.table-bordered {\n  border: 1px solid @table-border-color;\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        border: 1px solid @table-border-color;\n      }\n    }\n  }\n  > thead > tr {\n    > th,\n    > td {\n      border-bottom-width: 1px;\n    }\n  }\n}\n\n.table-striped {\n  > tbody > tr {\n    &:nth-of-type(even) {\n      background-color: @table-bg-accent;\n    }\n    &:nth-of-type(odd) {\n      background-color: transparent;\n    }\n  }\n}\n\n.table-hover {\n  > tbody > tr:hover {\n    > td,\n    > th {\n      background-color: @table-bg-hover;\n      border-bottom-color: @table-border-hover;\n    }\n  }\n}\n\n.table-treegrid {\n  span.indent {\n    margin-left: 10px;\n    margin-right: 10px;\n  }\n  span.icon {\n    display: inline-block;\n    font-size: 13px;\n    margin-right: 5px;\n    min-width: 10px;\n    text-align: center;\n  }\n  span.expand-icon, span.collapse-icon {\n    cursor: pointer;\n  }\n  > tbody > tr.odd {\n    background-color: @table-bg-accent;\n  }\n}\n","//\n// Tabs\n// --------------------------------------------------\n\n.nav-tabs {\n  font-size: @font-size-large;\n  > li {\n    > a {\n      color: @nav-tabs-color;\n      margin-right: -1px;\n      padding-bottom: 5px;\n      padding-top: 5px;\n      &:active,\n      &:focus,\n      &:hover {\n        background: transparent;\n        border-color: @nav-tabs-border-color;\n        color: @gray-darker;\n      }\n    }\n    > .dropdown-menu {\n      border-top: 0;\n      border-color: @nav-tabs-border-color;\n      &.pull-right {\n        right: -1px;\n      }\n    }\n  }\n  + .nav-tabs-pf, &.nav-tabs-pf-secondary {\n    font-size: @font-size-base;\n    > li:first-child > a {\n      padding-left: 15px;\n      &:before {\n        left: 15px !important;\n      }\n    }\n  }\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: transparent;\n      border-color: @nav-tabs-border-color;\n    }\n  }\n}\n\n.nav-tabs-pf {\n  &.nav-justified {\n    @media (min-width: @grid-float-breakpoint) {\n      border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n    }\n    > li {\n      &:first-child > a {\n        padding-left: 15px;\n      }\n      > a {\n        border-bottom: 0;\n        &:before {\n          left: 0 !important;\n          right: 0 !important;\n        }\n      }\n    }\n  }\n  > li {\n    margin-bottom: 0;\n    &.active > a {\n      .tab-indicator(@background: @nav-tabs-active-link-hover-color);\n      &,\n      &:active,\n      &:focus,\n      &:hover {\n        background-color: transparent;\n        border: 0 !important;\n        color: @link-color;\n        &:before {\n          background: @nav-tabs-active-link-hover-color;\n        }\n      }\n    }\n    &:first-child {\n      > a {\n        padding-left: 0;\n        &:before {\n          left: 0 !important;\n        }\n      }\n    }\n    > a {\n      border: 0;\n      line-height: 1;\n      margin-right: 0;\n      padding-bottom: 10px;\n      padding-top: 10px;\n      &:active,\n      &:focus,\n      &:hover {\n        .tab-indicator()\n      }\n    }\n    > .dropdown-menu {\n      left: 15px;\n      margin-top: 1px;\n      &.pull-right {\n        left: auto;\n        right: 15px;\n      }\n    }\n  }\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: transparent;\n    }\n  }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n// Base class\n.tooltip {\n  font-size: @tooltip-font-size;\n  line-height: 1.4;\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n  padding: 7px 12px;\n  text-align: left;\n}\n","//\n// Typography\n// --------------------------------------------------\n\nh1,\n.h1,\nh2,\n.h2 {\n  font-weight: 300;\n}\n\n.page-header .actions {\n  margin-top: 8px;\n  a > .pficon {\n    margin-right: 4px;\n  }\n}\n\n@media (min-width: @grid-float-breakpoint-max) {\n  .page-header-bleed-left {\n    margin-left: (-(@grid-gutter-width / 2));\n  }\n  .page-header-bleed-right {\n    margin-right: ((-@grid-gutter-width / 2));\n    .actions {\n      margin-right: (@grid-gutter-width / 2);\n    }\n  }\n}\n"]}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/patternfly/dist/css/patternfly.min.css b/themes/src/main/node_modules/patternfly/dist/css/patternfly.min.css
index ea8e7ed..1a2a6eb 100644
--- a/themes/src/main/node_modules/patternfly/dist/css/patternfly.min.css
+++ b/themes/src/main/node_modules/patternfly/dist/css/patternfly.min.css
@@ -5,4 +5,4 @@
  *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{background:0 0!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{box-sizing:border-box}:after,:before{box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:"Open Sans",Helvetica,Arial,sans-serif;font-size:12px;line-height:1.66666667;color:#363636;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#0088ce;text-decoration:none}a:focus,a:hover{color:#00659c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:1px}.img-thumbnail{padding:4px;line-height:1.66666667;background-color:#fff;border:1px solid #ddd;border-radius:1px;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #f1f1f1}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#9c9c9c}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:24px}.h2,h2{font-size:22px}.h3,h3{font-size:16px}.h4,h4{font-size:15px}.h5,h5{font-size:13px}.h6,h6{font-size:11px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:13px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:18px}}.small,small{font-size:91%}.mark,mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#9c9c9c}.text-primary{color:#39a5dc}a.text-primary:focus,a.text-primary:hover{color:#228bc0}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#ec7a08}a.text-warning:focus,a.text-warning:hover{color:#bb6106}.text-danger{color:#c00}a.text-danger:focus,a.text-danger:hover{color:#900}.bg-primary{color:#fff;background-color:#39a5dc}a.bg-primary:focus,a.bg-primary:hover{background-color:#228bc0}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #f1f1f1}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.66666667}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #9c9c9c}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:15px;border-left:5px solid #f1f1f1}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.66666667;color:#9c9c9c}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #f1f1f1;border-left:0;text-align:right}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.66666667}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,monospace}code{padding:2px 4px;font-size:90%;color:#004368;background-color:#def3ff;border-radius:1px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:1px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:11px;line-height:1.66666667;word-break:break-all;word-wrap:break-word;color:#363636;background-color:#fafafa;border:1px solid #ccc;border-radius:1px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:20px;padding-right:20px}@media (min-width:768px){.container{width:760px}}@media (min-width:992px){.container{width:980px}}@media (min-width:1200px){.container{width:1180px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:20px;padding-right:20px}.row{margin-left:-20px;margin-right:-20px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:20px;padding-right:20px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:10px;padding-bottom:10px;color:#9c9c9c;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:10px;line-height:1.66666667;vertical-align:top;border-top:1px solid #d1d1d1}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #d1d1d1}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #d1d1d1}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #d1d1d1}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #d1d1d1}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f5f5f5}.table-hover>tbody>tr:hover{background-color:#def3ff}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#def3ff}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#c4eaff}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #d1d1d1}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:18px;line-height:inherit;color:#363636;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:3px;font-size:12px;line-height:1.66666667;color:#363636}.form-control{display:block;width:100%;height:26px;padding:2px 6px;font-size:12px;line-height:1.66666667;color:#363636;background-color:#fff;background-image:none;border:1px solid #bbb;border-radius:1px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#0088ce;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,136,206,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control:-moz-placeholder{color:#999;font-style:italic}.form-control::-moz-placeholder{color:#999;font-style:italic;opacity:1}.form-control:-ms-input-placeholder{color:#999;font-style:italic}.form-control::-webkit-input-placeholder{color:#999;font-style:italic}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#f5f5f5;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:26px}.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:22px}.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:33px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{padding-top:3px;padding-bottom:3px;margin-bottom:0;min-height:32px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:22px;padding:2px 6px;font-size:11px;line-height:1.5;border-radius:1px}select.input-sm{height:22px;line-height:22px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:22px;padding:2px 6px;font-size:11px;line-height:1.5;border-radius:1px}.form-group-sm select.form-control{height:22px;line-height:22px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:22px;min-height:31px;padding:3px 6px;font-size:11px;line-height:1.5}.input-lg{height:33px;padding:6px 10px;font-size:14px;line-height:1.3333333;border-radius:1px}select.input-lg{height:33px;line-height:33px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:33px;padding:6px 10px;font-size:14px;line-height:1.3333333;border-radius:1px}.form-group-lg select.form-control{height:33px;line-height:33px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:33px;min-height:34px;padding:7px 10px;font-size:14px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:32.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:26px;height:26px;line-height:26px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:33px;height:33px;line-height:33px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:22px;height:22px;line-height:22px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#ec7a08}.has-warning .form-control{border-color:#ec7a08;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#bb6106;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #faad60}.has-warning .input-group-addon{color:#ec7a08;border-color:#ec7a08;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#ec7a08}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#c00}.has-error .form-control{border-color:#c00;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#900;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #f33}.has-error .input-group-addon{color:#c00;border-color:#c00;background-color:#f2dede}.has-error .form-control-feedback{color:#c00}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#767676}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:3px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:23px}.form-horizontal .form-group{margin-left:-20px;margin-right:-20px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:3px}}.form-horizontal .has-feedback .form-control-feedback{right:20px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:7px;font-size:14px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:3px;font-size:11px}}.btn{display:inline-block;margin-bottom:0;font-weight:600;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:2px 6px;font-size:12px;line-height:1.66666667;border-radius:1px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#4d5258;text-decoration:none}.btn.active,.btn:active{outline:0;background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#4d5258;background-color:#f1f1f1;border-color:#bbb}.btn-default.focus,.btn-default:focus{color:#4d5258;background-color:#d8d8d8;border-color:#7b7b7b}.btn-default:hover{color:#4d5258;background-color:#d8d8d8;border-color:#9c9c9c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#4d5258;background-color:#d8d8d8;border-color:#9c9c9c}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#4d5258;background-color:#c6c6c6;border-color:#7b7b7b}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#f1f1f1;border-color:#bbb}.btn-default .badge{color:#f1f1f1;background-color:#4d5258}.btn-primary{color:#fff;background-color:#0088ce;border-color:#00659c}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#00669b;border-color:#00121d}.btn-primary:hover{color:#fff;background-color:#00669b;border-color:#003d5f}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#00669b;border-color:#003d5f}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#004f77;border-color:#00121d}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#0088ce;border-color:#00659c}.btn-primary .badge{color:#0088ce;background-color:#fff}.btn-success{color:#fff;background-color:#3f9c35;border-color:#37892f}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#307628;border-color:#112a0e}.btn-success:hover{color:#fff;background-color:#307628;border-color:#255b1f}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#307628;border-color:#255b1f}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#255b1f;border-color:#112a0e}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#3f9c35;border-color:#37892f}.btn-success .badge{color:#3f9c35;background-color:#fff}.btn-info{color:#fff;background-color:#00659c;border-color:#005483}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#004469;border-color:#000203}.btn-info:hover{color:#fff;background-color:#004469;border-color:#002d45}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#004469;border-color:#002d45}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#002d45;border-color:#000203}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#00659c;border-color:#005483}.btn-info .badge{color:#00659c;background-color:#fff}.btn-warning{color:#fff;background-color:#ec7a08;border-color:#d36d07}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#bb6106;border-color:#582e03}.btn-warning:hover{color:#fff;background-color:#bb6106;border-color:#984f05}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#bb6106;border-color:#984f05}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#984f05;border-color:#582e03}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#ec7a08;border-color:#d36d07}.btn-warning .badge{color:#ec7a08;background-color:#fff}.btn-danger{color:#fff;background-color:#a30000;border-color:#8b0000}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#700000;border-color:#0b0000}.btn-danger:hover{color:#fff;background-color:#700000;border-color:#4e0000}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#700000;border-color:#4e0000}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#4c0000;border-color:#0b0000}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#a30000;border-color:#8b0000}.btn-danger .badge{color:#a30000;background-color:#fff}.btn-link{color:#0088ce;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#00659c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#9c9c9c;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:6px 10px;font-size:14px;line-height:1.3333333;border-radius:1px}.btn-group-sm>.btn,.btn-sm{padding:2px 6px;font-size:11px;line-height:1.5;border-radius:1px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:11px;line-height:1.5;border-radius:1px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;transition-property:height,visibility;transition-duration:.35s;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:0 dashed;border-right:0 solid transparent;border-left:0 solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:12px;text-align:left;background-color:#fff;border:1px solid #bbb;border-radius:1px;box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{margin:9px 0;background-color:#ededed;height:1px;margin:4px 1px;overflow:hidden}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.66666667;color:#363636;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#4d5258;background-color:#def3ff}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#0088ce}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#9c9c9c}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:11px;line-height:1.66666667;color:#9c9c9c;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:0 dashed;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:0 0 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 0 0}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:1px;border-top-left-radius:1px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:33px;padding:6px 10px;font-size:14px;line-height:1.3333333;border-radius:1px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:33px;line-height:33px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:22px;padding:2px 6px;font-size:11px;line-height:1.5;border-radius:1px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:22px;line-height:22px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:2px 6px;font-size:12px;font-weight:400;line-height:1;color:#363636;text-align:center;background-color:#f1f1f1;border:1px solid #bbb;border-radius:1px}.input-group-addon.input-sm{padding:2px 6px;font-size:11px;border-radius:1px}.input-group-addon.input-lg{padding:6px 10px;font-size:14px;border-radius:1px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#f1f1f1}.nav>li.disabled>a{color:#9c9c9c}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#9c9c9c;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#f1f1f1;border-color:#0088ce}.nav .nav-divider{margin:9px 0;background-color:#e5e5e5;background-color:#ededed;height:1px;margin:4px 1px;overflow:hidden}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ededed}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.66666667;border:1px solid transparent;border-radius:1px 1px 0 0}.nav-tabs>li>a:hover{border-color:transparent transparent #ededed}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#0088ce;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:1px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ededed}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ededed;border-radius:1px 1px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:1px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#39a5dc}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:1px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ededed}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ededed;border-radius:1px 1px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:1px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:20px;padding-left:20px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-20px;margin-left:-20px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 20px;font-size:14px;line-height:20px;height:50px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-20px}}.navbar-toggle{position:relative;float:right;margin-right:20px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:1px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -20px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-20px;margin-right:-20px;padding:10px 20px;border-top:1px solid transparent;border-bottom:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin-top:12px;margin-bottom:12px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:1px;border-top-left-radius:1px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:12px;margin-bottom:12px}.navbar-btn.btn-sm{margin-top:14px;margin-bottom:14px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:20px;margin-right:20px}}@media (min-width:768px){.navbar-left{float:left!important;float:left}.navbar-right{float:right!important;float:right;margin-right:-20px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#c2c2c2}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#c2c2c2}.navbar-inverse .navbar-nav>li>a{color:#c2c2c2}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#c2c2c2}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#c2c2c2}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#c2c2c2}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:transparent;border-radius:1px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"\f105\00a0";padding:0 5px;color:#4d5258}.breadcrumb>.active{color:#4d5258}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:1px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:2px 6px;line-height:1.66666667;text-decoration:none;color:#0088ce;background-color:#f5f5f5;border:1px solid #bbb;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#00659c;background-color:#ededed;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#39a5dc;border-color:#39a5dc;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#9c9c9c;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:6px 10px;font-size:14px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pagination-sm>li>a,.pagination-sm>li>span{padding:2px 6px;font-size:11px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#f5f5f5;border:1px solid #bbb;border-radius:0}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#ededed}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#8b8d8f;background-color:#f5f5f5;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#9c9c9c}.label-default[href]:focus,.label-default[href]:hover{background-color:#838383}.label-primary{background-color:#39a5dc}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#228bc0}.label-success{background-color:#3f9c35}.label-success[href]:focus,.label-success[href]:hover{background-color:#307628}.label-info{background-color:#00659c}.label-info[href]:focus,.label-info[href]:hover{background-color:#004469}.label-warning{background-color:#ec7a08}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#bb6106}.label-danger{background-color:#c00}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#900}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:11px;font-weight:700;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#9c9c9c;border-radius:1px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#0088ce;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#f1f1f1}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:18px;font-weight:200}.jumbotron>hr{border-top-color:#d8d8d8}.container .jumbotron,.container-fluid .jumbotron{border-radius:1px;padding-left:20px;padding-right:20px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:54px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.66666667;background-color:#fff;border:1px solid #ddd;border-radius:1px;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-left:auto;margin-right:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#0088ce}.thumbnail .caption{padding:9px;color:#363636}.alert{padding:11px;margin-bottom:20px;border:1px solid transparent;border-radius:1px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:500}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:31px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#e9f4e9;border-color:#3f9c35;color:#363636}.alert-success hr{border-top-color:#37892f}.alert-success .alert-link{color:#1d1d1d}.alert-info{background-color:#f5f5f5;border-color:#8b8d8f;color:#363636}.alert-info hr{border-top-color:#7e8082}.alert-info .alert-link{color:#1d1d1d}.alert-warning{background-color:#fdf2e5;border-color:#ec7a08;color:#363636}.alert-warning hr{border-top-color:#d36d07}.alert-warning .alert-link{color:#1d1d1d}.alert-danger{background-color:#ffe6e6;border-color:#c00;color:#363636}.alert-danger hr{border-top-color:#b30000}.alert-danger .alert-link{color:#1d1d1d}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#ededed;border-radius:1px;box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0%;height:100%;font-size:11px;line-height:20px;color:#fff;text-align:center;background-color:#39a5dc;box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%);background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#3f9c35}.progress-striped .progress-bar-success{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%)}.progress-bar-info{background-color:#00659c}.progress-striped .progress-bar-info{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%)}.progress-bar-warning{background-color:#ec7a08}.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%)}.progress-bar-danger{background-color:#c00}.progress-striped .progress-bar-danger{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #f5f5f5}.list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{text-decoration:none;color:#555;background-color:#def3ff}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#f1f1f1;color:#9c9c9c;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#9c9c9c}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#39a5dc;border-color:#39a5dc}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#e6f4fb}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#ec7a08;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#ec7a08}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#ec7a08;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#ec7a08;border-color:#ec7a08}.list-group-item-danger{color:#c00;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#c00}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#c00;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#c00;border-color:#c00}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:1px;box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:0;border-top-left-radius:0}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:14px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #d1d1d1;border-bottom-right-radius:0;border-bottom-left-radius:0}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:0;border-top-left-radius:0}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:0}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:0}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:0;border-bottom-left-radius:0}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:0;border-bottom-right-radius:0}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:0}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:0}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #d1d1d1}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:1px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #d1d1d1}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #d1d1d1}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#363636;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#363636}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#39a5dc}.panel-primary>.panel-heading{color:#fff;background-color:#39a5dc;border-color:#39a5dc}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#39a5dc}.panel-primary>.panel-heading .badge{color:#39a5dc;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#39a5dc}.panel-success{border-color:#3f9c35}.panel-success>.panel-heading{color:#fff;background-color:#3f9c35;border-color:#3f9c35}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#3f9c35}.panel-success>.panel-heading .badge{color:#3f9c35;background-color:#fff}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#3f9c35}.panel-info{border-color:#00659c}.panel-info>.panel-heading{color:#fff;background-color:#00659c;border-color:#00659c}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#00659c}.panel-info>.panel-heading .badge{color:#00659c;background-color:#fff}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#00659c}.panel-warning{border-color:#ec7a08}.panel-warning>.panel-heading{color:#fff;background-color:#ec7a08;border-color:#ec7a08}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ec7a08}.panel-warning>.panel-heading .badge{color:#ec7a08;background-color:#fff}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ec7a08}.panel-danger{border-color:#c00}.panel-danger>.panel-heading{color:#fff;background-color:#c00;border-color:#c00}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#c00}.panel-danger>.panel-heading .badge{color:#c00;background-color:#fff}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#c00}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:1px;box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:1px}.well-sm{padding:9px;border-radius:1px}.close{float:right;font-size:18px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-ms-transform:translate(0,-25%);transform:translate(0,-25%);transition:transform .3s ease-out}.modal.in .modal-dialog{-ms-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:1px;box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.in{opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.66666667}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.66666667;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:11px;opacity:0}.tooltip.in{opacity:.9}.tooltip.top{margin-top:-3px;padding:8px 0}.tooltip.right{margin-left:3px;padding:0 8px}.tooltip.bottom{margin-top:3px;padding:8px 0}.tooltip.left{margin-left:-3px;padding:0 8px}.tooltip-inner{max-width:220px;padding:3px 8px;color:#fff;text-align:center;background-color:#393f44;border-radius:1px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-8px;border-width:8px 8px 0;border-top-color:#393f44}.tooltip.top-left .tooltip-arrow{bottom:0;right:8px;margin-bottom:-8px;border-width:8px 8px 0;border-top-color:#393f44}.tooltip.top-right .tooltip-arrow{bottom:0;left:8px;margin-bottom:-8px;border-width:8px 8px 0;border-top-color:#393f44}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-8px;border-width:8px 8px 8px 0;border-right-color:#393f44}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-8px;border-width:8px 0 8px 8px;border-left-color:#393f44}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-8px;border-width:0 8px 8px;border-bottom-color:#393f44}.tooltip.bottom-left .tooltip-arrow{top:0;right:8px;margin-top:-8px;border-width:0 8px 8px;border-bottom-color:#393f44}.tooltip.bottom-right .tooltip-arrow{top:0;left:8px;margin-top:-8px;border-width:0 8px 8px;border-bottom-color:#393f44}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:220px;padding:1px;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.66666667;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid #bbb;border-radius:1px;box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:12px;background-color:#f5f5f5;border-bottom:1px solid #e8e8e8;border-radius:0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:#bbb;bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:#bbb}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:#bbb;top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:#bbb}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{transform:translate3d(0,0,0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x}.carousel-control.right{left:auto;right:0;background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{content:" ";display:table}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}/*!
  *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
  *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.7.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(../fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}.fa-rotate-90{-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.text-overflow-pf{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.alert{border-width:1px;padding-left:47px;padding-right:14px;position:relative;word-wrap:break-word}.alert .alert-link{color:#0088ce}.alert .alert-link:hover{color:#00659c}.alert>.btn.pull-right{margin-top:-3px}.alert>.pficon{font-size:22px;position:absolute;left:13px;top:10px}.alert .close{opacity:.85}.alert .close:focus,.alert .close:hover{opacity:1}.alert .pficon-info{color:#4d5258}.alert-dismissable{padding-right:28px}.alert-dismissable .close{right:-13px;top:1px}.badge{margin-left:6px}.nav-pills>li>a>.badge{margin-left:6px}.breadcrumb{padding-left:0}.breadcrumb>.active strong{font-weight:600}.breadcrumb>li{display:inline}.breadcrumb>li+li:before{color:#9c9c9c;content:"\f101";font-family:FontAwesome;font-size:11px;padding:0 9px 0 7px}.btn{box-shadow:0 2px 3px rgba(3,3,3,.1)}.btn:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{background-color:#fafafa!important;background-image:none!important;border-color:#d1d1d1!important;color:#8b8d8f!important;opacity:1}.btn.disabled:active,.btn[disabled]:active,fieldset[disabled] .btn:active{box-shadow:none}.btn.disabled.btn-link,.btn[disabled].btn-link,fieldset[disabled] .btn.btn-link{background-color:transparent!important;border:0}.btn-danger{background-color:#a30000;background-image:linear-gradient(to bottom,#c00 0,#a30000 100%);background-repeat:repeat-x;border-color:#8b0000;color:#fff}.btn-danger.active,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open .dropdown-toggle.btn-danger{background-color:#a30000;background-image:none;border-color:#8b0000;color:#fff}.btn-danger.active,.btn-danger:active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open .dropdown-toggle.btn-danger.focus,.open .dropdown-toggle.btn-danger:focus,.open .dropdown-toggle.btn-danger:hover{background-color:#8a0000;border-color:#670000}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#a30000;border-color:#8b0000}.btn-default{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258}.btn-default.active,.btn-default:active,.btn-default:focus,.btn-default:hover,.open .dropdown-toggle.btn-default{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.btn-default.active,.btn-default:active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open .dropdown-toggle.btn-default.focus,.open .dropdown-toggle.btn-default:focus,.open .dropdown-toggle.btn-default:hover{background-color:#e5e5e5;border-color:#a9a9a9}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#f1f1f1;border-color:#bbb}.btn-link,.btn-link:active{box-shadow:none}.btn-primary{background-color:#0088ce;background-image:linear-gradient(to bottom,#39a5dc 0,#0088ce 100%);background-repeat:repeat-x;border-color:#00659c;color:#fff}.btn-primary.active,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open .dropdown-toggle.btn-primary{background-color:#0088ce;background-image:none;border-color:#00659c;color:#fff}.btn-primary.active,.btn-primary:active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open .dropdown-toggle.btn-primary.focus,.open .dropdown-toggle.btn-primary:focus,.open .dropdown-toggle.btn-primary:hover{background-color:#0077b5;border-color:#004e78}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#0088ce;border-color:#00659c}.btn-group-xs .btn,.btn-group-xs>.btn,.btn-xs{font-weight:400}.caret{font-family:FontAwesome;font-weight:400;height:9px;position:relative;vertical-align:baseline;width:12px}.caret:before{bottom:0;content:"\f107";left:0;line-height:12px;position:absolute;text-align:center;top:-1px;right:0}.dropup .caret:before{content:"\f106"}.dropdown-toggle:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.dropdown-menu .divider{background-color:#ededed;height:1px;margin:4px 1px;overflow:hidden}.dropdown-menu>li>a{border-color:transparent;border-style:solid;border-width:1px 0;padding:1px 10px}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{border-color:#bee1f4}.dropdown-menu>li>a:active{background-color:#0088ce;border-color:#0088ce;color:#fff!important}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#0088ce!important;border-color:#0088ce!important}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{border-color:transparent}.dropdown-menu>.selected>a{background-color:#0088ce;border-color:#0088ce;color:#fff}.dropdown-menu>.selected>a small{color:rgba(255,255,255,.5)}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{border-color:transparent}.dropdown-header{padding-left:10px;padding-right:10px;text-transform:uppercase}.btn-group>.dropdown-menu,.dropdown>.dropdown-menu,.input-group-btn>.dropdown-menu{margin-top:-1px}.dropup .dropdown-menu{margin-bottom:-1px}.dropdown-submenu{position:relative}.dropdown-submenu:hover>a{background-color:#def3ff;border-color:#bee1f4}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropdown-submenu.pull-left{float:none!important}.dropdown-submenu.pull-left>.dropdown-menu{left:auto;margin-left:10px;right:100%}.dropdown-submenu>a{padding-right:20px!important}.dropdown-submenu>a:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:2px}.dropdown-submenu>.dropdown-menu{left:100%;margin-top:0;top:-6px}.dropup .dropdown-submenu>.dropdown-menu{bottom:-5px;top:auto}.open .dropdown-submenu.active>.dropdown-menu{display:block}.dropdown-kebab-pf .btn-link,.dropdown-kebab-pf.btn-group>.btn:first-child{color:#252525;font-size:16px;line-height:1;padding:4px 10px;margin-left:-10px;margin-right:-10px}.dropdown-kebab-pf .btn-link:active,.dropdown-kebab-pf .btn-link:focus,.dropdown-kebab-pf .btn-link:hover,.dropdown-kebab-pf.btn-group>.btn:first-child:active,.dropdown-kebab-pf.btn-group>.btn:first-child:focus,.dropdown-kebab-pf.btn-group>.btn:first-child:hover{color:#0088ce}.dropdown-kebab-pf.btn-group{margin-left:10px}.dropdown-kebab-pf .dropdown-menu{left:-15px;margin-top:11px}.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right{left:auto;right:-15px}.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:after,.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:before{left:auto;right:6px}.dropdown-kebab-pf .dropdown-menu:after,.dropdown-kebab-pf .dropdown-menu:before{border-bottom-color:#bbb;border-bottom-style:solid;border-bottom-width:10px;border-left:10px solid transparent;border-right:10px solid transparent;content:"";display:inline-block;left:6px;position:absolute;top:-11px}.dropdown-kebab-pf .dropdown-menu:after{border-bottom-color:#fff;top:-10px}.dropdown-kebab-pf.dropup .dropdown-menu{margin-bottom:11px;margin-top:0}.dropdown-kebab-pf.dropup .dropdown-menu:after,.dropdown-kebab-pf.dropup .dropdown-menu:before{border-bottom:none;border-top-color:#bbb;border-top-style:solid;border-top-width:10px;bottom:-11px;top:auto}.dropdown-kebab-pf.dropup .dropdown-menu:after{border-top-color:#fff;bottom:-10px}.chars-remaining-pf span{font-weight:600;padding-right:5px}.chars-warn-remaining-pf{color:#c00}.fields-status-pf{color:#8b8d8f;margin-bottom:15px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{box-shadow:none;color:#8b8d8f}.form-control[disabled]:hover,.form-control[readonly]:hover,fieldset[disabled] .form-control:hover{border-color:#bbb}.form-control:hover{border-color:#7dc3e8}.has-error .form-control:hover{border-color:#900}.has-success .form-control:hover{border-color:#2b542c}.has-warning .form-control:hover{border-color:#bb6106}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label,.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label,.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#363636}.help-block{margin-bottom:0}.input-group .input-group-btn .btn{box-shadow:none}label{font-weight:600}label.required-pf:after{color:#c00;content:"*";margin-left:3px}span.required-pf{color:#c00}.fields-section-pf{border-color:#ededed;border-style:solid;border-width:1px 0 0;margin-top:25px;padding:15px 0 0}.fields-section-header-pf{border:none;font-size:12px;margin:0;padding-right:10px;width:auto}.fields-section-header-pf .fa-angle-right{cursor:pointer;font-size:14px;width:14px}.label{border-radius:0;font-size:100%;font-weight:600}h1 .label,h2 .label,h3 .label,h4 .label,h5 .label,h6 .label{font-size:75%}.list-group{border-top:1px solid #ededed}.list-group .list-group-item:first-child{border-top:0}.list-group-item{border-left:0;border-right:0}.list-group-item-heading{font-weight:600}.modal-header{background-color:#f5f5f5;border-bottom:none;padding:10px 18px}.modal-header .close{margin-top:2px}.modal-title{font-size:13px;font-weight:700}.modal-footer{border-top:none;margin-top:15px;padding:14px 15px 15px}.modal-footer>.btn{padding-left:10px;padding-right:10px}.modal-footer>.btn>.fa-angle-left{margin-right:5px}.modal-footer>.btn>.fa-angle-right{margin-left:5px}.pager li>a,.pager li>span{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;font-weight:600;line-height:22px;padding:2px 14px}.open .dropdown-toggle.pager li>a,.open .dropdown-toggle.pager li>span,.pager li>a.active,.pager li>a:active,.pager li>a:focus,.pager li>a:hover,.pager li>span.active,.pager li>span:active,.pager li>span:focus,.pager li>span:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.open .dropdown-toggle.pager li>a,.open .dropdown-toggle.pager li>span,.pager li>a.active,.pager li>a:active,.pager li>span.active,.pager li>span:active{background-image:none}.open .dropdown-toggle.pager li>a.focus,.open .dropdown-toggle.pager li>a:focus,.open .dropdown-toggle.pager li>a:hover,.open .dropdown-toggle.pager li>span.focus,.open .dropdown-toggle.pager li>span:focus,.open .dropdown-toggle.pager li>span:hover,.pager li>a.active.focus,.pager li>a.active:focus,.pager li>a.active:hover,.pager li>a:active.focus,.pager li>a:active:focus,.pager li>a:active:hover,.pager li>span.active.focus,.pager li>span.active:focus,.pager li>span.active:hover,.pager li>span:active.focus,.pager li>span:active:focus,.pager li>span:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.pager li>a.disabled,.pager li>a.disabled.active,.pager li>a.disabled:active,.pager li>a.disabled:focus,.pager li>a.disabled:hover,.pager li>a[disabled],.pager li>a[disabled].active,.pager li>a[disabled]:active,.pager li>a[disabled]:focus,.pager li>a[disabled]:hover,.pager li>span.disabled,.pager li>span.disabled.active,.pager li>span.disabled:active,.pager li>span.disabled:focus,.pager li>span.disabled:hover,.pager li>span[disabled],.pager li>span[disabled].active,.pager li>span[disabled]:active,.pager li>span[disabled]:focus,.pager li>span[disabled]:hover,fieldset[disabled] .pager li>a,fieldset[disabled] .pager li>a.active,fieldset[disabled] .pager li>a:active,fieldset[disabled] .pager li>a:focus,fieldset[disabled] .pager li>a:hover,fieldset[disabled] .pager li>span,fieldset[disabled] .pager li>span.active,fieldset[disabled] .pager li>span:active,fieldset[disabled] .pager li>span:focus,fieldset[disabled] .pager li>span:hover{background-color:#f1f1f1;border-color:#bbb}.pager li>a>.i,.pager li>span>.i{font-size:18px;vertical-align:top;margin:2px 0}.pager li a:active{background-image:none;box-shadow:inset 0 3px 5px rgba(3,3,3,.125);outline:0}.pager .disabled>a,.pager .disabled>a:active,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{background:#f5f5f5;box-shadow:none;color:#8b8d8f;cursor:default}.pager .next>a>.i,.pager .next>span>.i{margin-left:5px}.pager .previous>a>.i,.pager .previous>span>.i{margin-right:5px}.pager-sm li>a,.pager-sm li>span{font-weight:400;line-height:16px;padding:1px 10px}.pager-sm li>a>.i,.pager-sm li>span>.i{font-size:12px}.pagination>li>a,.pagination>li>span{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;cursor:default;font-weight:600;padding:2px 10px}.open .dropdown-toggle.pagination>li>a,.open .dropdown-toggle.pagination>li>span,.pagination>li>a.active,.pagination>li>a:active,.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span.active,.pagination>li>span:active,.pagination>li>span:focus,.pagination>li>span:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.open .dropdown-toggle.pagination>li>a,.open .dropdown-toggle.pagination>li>span,.pagination>li>a.active,.pagination>li>a:active,.pagination>li>span.active,.pagination>li>span:active{background-image:none}.open .dropdown-toggle.pagination>li>a.focus,.open .dropdown-toggle.pagination>li>a:focus,.open .dropdown-toggle.pagination>li>a:hover,.open .dropdown-toggle.pagination>li>span.focus,.open .dropdown-toggle.pagination>li>span:focus,.open .dropdown-toggle.pagination>li>span:hover,.pagination>li>a.active.focus,.pagination>li>a.active:focus,.pagination>li>a.active:hover,.pagination>li>a:active.focus,.pagination>li>a:active:focus,.pagination>li>a:active:hover,.pagination>li>span.active.focus,.pagination>li>span.active:focus,.pagination>li>span.active:hover,.pagination>li>span:active.focus,.pagination>li>span:active:focus,.pagination>li>span:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.pagination>li>a.disabled,.pagination>li>a.disabled.active,.pagination>li>a.disabled:active,.pagination>li>a.disabled:focus,.pagination>li>a.disabled:hover,.pagination>li>a[disabled],.pagination>li>a[disabled].active,.pagination>li>a[disabled]:active,.pagination>li>a[disabled]:focus,.pagination>li>a[disabled]:hover,.pagination>li>span.disabled,.pagination>li>span.disabled.active,.pagination>li>span.disabled:active,.pagination>li>span.disabled:focus,.pagination>li>span.disabled:hover,.pagination>li>span[disabled],.pagination>li>span[disabled].active,.pagination>li>span[disabled]:active,.pagination>li>span[disabled]:focus,.pagination>li>span[disabled]:hover,fieldset[disabled] .pagination>li>a,fieldset[disabled] .pagination>li>a.active,fieldset[disabled] .pagination>li>a:active,fieldset[disabled] .pagination>li>a:focus,fieldset[disabled] .pagination>li>a:hover,fieldset[disabled] .pagination>li>span,fieldset[disabled] .pagination>li>span.active,fieldset[disabled] .pagination>li>span:active,fieldset[disabled] .pagination>li>span:focus,fieldset[disabled] .pagination>li>span:hover{background-color:#f1f1f1;border-color:#bbb}.pagination>li>a>.i,.pagination>li>span>.i{font-size:15px;vertical-align:top;margin:2px 0}.pagination>li>a:active,.pagination>li>span:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{background-color:#f1f1f1;border-color:#bbb;box-shadow:inset 0 2px 8px rgba(3,3,3,.2);color:#4d5258;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{box-shadow:none;cursor:default;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.pagination-sm>li>a,.pagination-sm>li>span{padding:2px 6px;font-size:11px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pagination-sm>li>a,.pagination-sm>li>span{font-weight:400}.pagination-sm>li>a>.i,.pagination-sm>li>span>.i{font-size:12px;margin-top:2px}.content-view-pf-pagination{background-color:#f5f5f5;border:1px solid #d1d1d1;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between}.content-view-pf-pagination.table-view-pf-pagination{border-top:none}.content-view-pf-pagination .form-group{-ms-flex-align:baseline;align-items:baseline;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;float:left;margin:5px}@supports (display:flex){.content-view-pf-pagination .form-group{float:none}}.content-view-pf-pagination .form-group:last-child{-ms-flex-pack:end;justify-content:flex-end;float:right}@supports (display:flex){.content-view-pf-pagination .form-group:last-child{float:none}}.content-view-pf-pagination .form-group .pagination-pf-pagesize.bootstrap-select.btn-group,.content-view-pf-pagination .form-group .pagination-pf-pagesize.btn-group{display:-ms-flexbox;display:flex;float:none;margin-bottom:0;margin-left:0;margin-right:5px;width:auto}.content-view-pf-pagination .form-group .dropdown-menu{min-width:auto}.content-view-pf-pagination .pagination-pf-page{margin-left:10px;margin-right:5px;padding:0 2px 2px;text-align:right;width:2.5em}.content-view-pf-pagination .pagination{display:-ms-flexbox;display:flex;margin:0 0 0 10px}.content-view-pf-pagination .pagination a{float:none}@supports (display:flex){.content-view-pf-pagination .pagination a{display:block}}.panel-title{font-weight:700}.panel-group .panel{color:#4d5258}.panel-group .panel+.panel{margin-top:-1px}.panel-group .panel-default{border-color:#bbb;border-top-color:#bbb}.panel-group .panel-default .panel-heading{background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.panel-group .panel-default .panel-heading+.panel-collapse .panel-body{border-top:1px solid #d1d1d1}.panel-group .panel-info{border-color:#00659c}.panel-group .panel-info .panel-heading{background-color:#dae5f4}.panel-group .panel-info+.panel-default{border-top-color:#00659c}.panel-group .panel-primary{border-color:#39a5dc}.panel-group .panel-primary .panel-heading{background-color:#def0f9}.panel-group .panel-primary+.panel-default{border-top-color:#39a5dc}.panel-group .panel-primary+.panel-info{border-top-color:#39a5dc}.panel-group .panel-success{border-color:#3f9c35}.panel-group .panel-success .panel-heading{background-color:#e9f4e9}.panel-group .panel-success+.panel-default{border-top-color:#3f9c35}.panel-group .panel-success+.panel-info{border-top-color:#3f9c35}.panel-group .panel-success+.panel-primary{border-top-color:#3f9c35}.panel-group .panel-warning{border-color:#ec7a08}.panel-group .panel-warning .panel-heading{background-color:#fdf2e5}.panel-group .panel-warning+.panel-default{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-info{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-primary{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-success{border-top-color:#ec7a08}.panel-group .panel-danger{border-color:#c00}.panel-group .panel-danger .panel-heading{background-color:#ffe6e6}.panel-group .panel-danger+.panel-default{border-top-color:#c00}.panel-group .panel-danger+.panel-info{border-top-color:#c00}.panel-group .panel-danger+.panel-primary{border-top-color:#c00}.panel-group .panel-danger+.panel-success{border-top-color:#c00}.panel-group .panel-danger+.panel-warning{border-top-color:#c00}.panel-group .panel-title{font-weight:500;line-height:1}.panel-group .panel-title>a{color:#4d5258;font-weight:600}.panel-group .panel-title>a:before{content:"\f107";display:inline-block;font-family:FontAwesome;font-size:13px;margin-right:5px;text-align:center;vertical-align:0;width:8px}.panel-group .panel-title>a:focus{outline:0;text-decoration:none}.panel-group .panel-title>a:hover{text-decoration:none}.panel-group .panel-title>a.collapsed:before{content:"\f105"}.popover{box-shadow:0 2px 2px rgba(3,3,3,.08);padding:0}.popover-content{color:#4d5258;line-height:18px;padding:10px 14px}.popover-title{border-bottom:none;border-radius:0;color:#4d5258;font-size:13px;font-weight:700;min-height:34px}.popover-title .close{height:22px;position:absolute;right:8px;top:6px}.popover-title.closable{padding-right:30px}@keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}.progress{box-shadow:inset 0 0 1px rgba(3,3,3,.25)}.progress.progress-label-left,.progress.progress-label-top-right{overflow:visible;position:relative}.progress.progress-label-left{margin-left:40px}.progress.progress-sm{height:14px;margin-bottom:14px}.progress.progress-xs{height:6px;margin-bottom:6px}td>.progress:first-child:last-child{margin-bottom:0;margin-top:3px}.progress-bar{box-shadow:none}.progress-label-left .progress-bar span,.progress-label-right .progress-bar span,.progress-label-top-right .progress-bar span{color:#363636;position:absolute;text-align:right}.progress-label-left .progress-bar span{font-size:14px;left:-40px;top:0;width:35px}.progress-label-right .progress-bar span,.progress-label-top-right .progress-bar span{font-size:11px;overflow:hidden;right:0;text-overflow:ellipsis;white-space:nowrap}.progress-label-right .progress-bar span strong,.progress-label-top-right .progress-bar span strong{font-weight:600}.progress-label-right .progress-bar span{max-width:85px;top:0}.progress-label-top-right .progress-bar span{max-width:47%;top:-30px}.progress-label-left.progress-sm .progress-bar span,.progress-label-top-right.progress-sm .progress-bar span{font-size:12px}.progress-sm .progress-bar{line-height:14px}.progress-xs .progress-bar{line-height:6px}.progress-bar-remaining{background:0 0}.progress-container{position:relative}.progress-container.progress-description-left{padding-left:90px}.progress-container.progress-label-right{padding-right:90px}.progress-description{margin-bottom:10px;max-width:52%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.progress-description .count{font-size:20.004px;font-weight:300;line-height:1;margin-right:5px}.progress-description .fa,.progress-description .pficon{font-size:14px;margin-right:3px}.progress-description-left .progress-description{left:0;margin-bottom:0;max-width:85px;position:absolute;top:0}.progress-description .tooltip{white-space:normal}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:2px 10px 3px}.table>tbody>tr>td>a:hover,.table>tbody>tr>th>a:hover,.table>tfoot>tr>td>a:hover,.table>tfoot>tr>th>a:hover,.table>thead>tr>td>a:hover,.table>thead>tr>th>a:hover{text-decoration:none}.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>th{font-family:"Open Sans";font-style:normal;font-weight:600}.table>thead{background-clip:padding-box;background-color:#f5f5f5;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.table-bordered{border:1px solid #d1d1d1}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #d1d1d1}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:1px}.table-striped>tbody>tr:nth-of-type(even){background-color:#f5f5f5}.table-striped>tbody>tr:nth-of-type(odd){background-color:transparent}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#def3ff;border-bottom-color:#7dc3e8}.table-treegrid span.indent{margin-left:10px;margin-right:10px}.table-treegrid span.icon{display:inline-block;font-size:13px;margin-right:5px;min-width:10px;text-align:center}.table-treegrid span.collapse-icon,.table-treegrid span.expand-icon{cursor:pointer}.table-treegrid>tbody>tr.odd{background-color:#f5f5f5}.nav-tabs{font-size:14px}.nav-tabs>li>a{color:#4d5258;margin-right:-1px;padding-bottom:5px;padding-top:5px}.nav-tabs>li>a:active,.nav-tabs>li>a:focus,.nav-tabs>li>a:hover{background:0 0;border-color:#ededed;color:#252525}.nav-tabs>li>.dropdown-menu{border-top:0;border-color:#ededed}.nav-tabs>li>.dropdown-menu.pull-right{right:-1px}.nav-tabs+.nav-tabs-pf,.nav-tabs.nav-tabs-pf-secondary{font-size:12px}.nav-tabs+.nav-tabs-pf>li:first-child>a,.nav-tabs.nav-tabs-pf-secondary>li:first-child>a{padding-left:15px}.nav-tabs+.nav-tabs-pf>li:first-child>a:before,.nav-tabs.nav-tabs-pf-secondary>li:first-child>a:before{left:15px!important}.nav-tabs .open>a,.nav-tabs .open>a:focus,.nav-tabs .open>a:hover{background-color:transparent;border-color:#ededed}@media (min-width:768px){.nav-tabs-pf.nav-justified{border-bottom:1px solid #ededed}}.nav-tabs-pf.nav-justified>li:first-child>a{padding-left:15px}.nav-tabs-pf.nav-justified>li>a{border-bottom:0}.nav-tabs-pf.nav-justified>li>a:before{left:0!important;right:0!important}.nav-tabs-pf>li{margin-bottom:0}.nav-tabs-pf>li.active>a:before{background:#0088ce;bottom:-1px;content:"";display:block;height:2px;left:15px;position:absolute;right:15px}.nav-tabs-pf>li.active>a,.nav-tabs-pf>li.active>a:active,.nav-tabs-pf>li.active>a:focus,.nav-tabs-pf>li.active>a:hover{background-color:transparent;border:0!important;color:#0088ce}.nav-tabs-pf>li.active>a:active:before,.nav-tabs-pf>li.active>a:before,.nav-tabs-pf>li.active>a:focus:before,.nav-tabs-pf>li.active>a:hover:before{background:#0088ce}.nav-tabs-pf>li:first-child>a{padding-left:0}.nav-tabs-pf>li:first-child>a:before{left:0!important}.nav-tabs-pf>li>a{border:0;line-height:1;margin-right:0;padding-bottom:10px;padding-top:10px}.nav-tabs-pf>li>a:active:before,.nav-tabs-pf>li>a:focus:before,.nav-tabs-pf>li>a:hover:before{background:#bbb;bottom:-1px;content:"";display:block;height:2px;left:15px;position:absolute;right:15px}.nav-tabs-pf>li>.dropdown-menu{left:15px;margin-top:1px}.nav-tabs-pf>li>.dropdown-menu.pull-right{left:auto;right:15px}.nav-tabs-pf .open>a,.nav-tabs-pf .open>a:focus,.nav-tabs-pf .open>a:hover{background-color:transparent}.tooltip{font-size:12px;line-height:1.4}.tooltip-inner{padding:7px 12px;text-align:left}.h1,.h2,h1,h2{font-weight:300}.page-header .actions{margin-top:8px}.page-header .actions a>.pficon{margin-right:4px}@media (min-width:767px){.page-header-bleed-left{margin-left:-20px}.page-header-bleed-right{margin-right:-20px}.page-header-bleed-right .actions{margin-right:20px}}
\ No newline at end of file
+ */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.7.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(../fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}.fa-rotate-90{-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.text-overflow-pf{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.alert{border-width:1px;padding-left:47px;padding-right:14px;position:relative;word-wrap:break-word}.alert .alert-link{color:#0088ce}.alert .alert-link:hover{color:#00659c}.alert>.btn.pull-right{margin-top:-3px}.alert>.pficon{font-size:22px;position:absolute;left:13px;top:10px}.alert .close{opacity:.85}.alert .close:focus,.alert .close:hover{opacity:1}.alert .pficon-info{color:#4d5258}.alert-dismissable{padding-right:28px}.alert-dismissable .close{right:-13px;top:1px}.badge{margin-left:6px}.nav-pills>li>a>.badge{margin-left:6px}.breadcrumb{padding-left:0}.breadcrumb>.active strong{font-weight:600}.breadcrumb>li{display:inline}.breadcrumb>li+li:before{color:#9c9c9c;content:"\f105";font-family:FontAwesome;font-size:11px;padding:0 9px 0 7px}.btn{box-shadow:0 2px 3px rgba(3,3,3,.1)}.btn:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{background-color:#fafafa!important;background-image:none!important;border-color:#d1d1d1!important;color:#8b8d8f!important;opacity:1}.btn.disabled:active,.btn[disabled]:active,fieldset[disabled] .btn:active{box-shadow:none}.btn.disabled.btn-link,.btn[disabled].btn-link,fieldset[disabled] .btn.btn-link{background-color:transparent!important;border:0}.btn-danger{background-color:#a30000;background-image:linear-gradient(to bottom,#c00 0,#a30000 100%);background-repeat:repeat-x;border-color:#8b0000;color:#fff}.btn-danger.active,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open .dropdown-toggle.btn-danger{background-color:#a30000;background-image:none;border-color:#8b0000;color:#fff}.btn-danger.active,.btn-danger:active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open .dropdown-toggle.btn-danger.focus,.open .dropdown-toggle.btn-danger:focus,.open .dropdown-toggle.btn-danger:hover{background-color:#8a0000;border-color:#670000}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#a30000;border-color:#8b0000}.btn-default{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258}.btn-default.active,.btn-default:active,.btn-default:focus,.btn-default:hover,.open .dropdown-toggle.btn-default{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.btn-default.active,.btn-default:active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open .dropdown-toggle.btn-default.focus,.open .dropdown-toggle.btn-default:focus,.open .dropdown-toggle.btn-default:hover{background-color:#e5e5e5;border-color:#a9a9a9}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#f1f1f1;border-color:#bbb}.btn-link,.btn-link:active{box-shadow:none}.btn-primary{background-color:#0088ce;background-image:linear-gradient(to bottom,#39a5dc 0,#0088ce 100%);background-repeat:repeat-x;border-color:#00659c;color:#fff}.btn-primary.active,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open .dropdown-toggle.btn-primary{background-color:#0088ce;background-image:none;border-color:#00659c;color:#fff}.btn-primary.active,.btn-primary:active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open .dropdown-toggle.btn-primary.focus,.open .dropdown-toggle.btn-primary:focus,.open .dropdown-toggle.btn-primary:hover{background-color:#0077b5;border-color:#004e78}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#0088ce;border-color:#00659c}.btn-group-xs .btn,.btn-group-xs>.btn,.btn-xs{font-weight:400}.caret{font-family:FontAwesome;font-weight:400;height:9px;position:relative;vertical-align:baseline;width:12px}.caret:before{bottom:0;content:"\f107";left:0;line-height:12px;position:absolute;text-align:center;top:-1px;right:0}.dropup .caret:before{content:"\f106"}.dropdown-toggle:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.dropdown-menu .divider{background-color:#ededed;height:1px;margin:4px 1px;overflow:hidden}.dropdown-menu>li>a{border-color:transparent;border-style:solid;border-width:1px 0;padding:1px 10px}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{border-color:#bee1f4}.dropdown-menu>li>a:active{background-color:#0088ce;border-color:#0088ce;color:#fff!important}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#0088ce!important;border-color:#0088ce!important}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{border-color:transparent}.dropdown-menu>.selected>a{background-color:#0088ce;border-color:#0088ce;color:#fff}.dropdown-menu>.selected>a small{color:rgba(255,255,255,.5)}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{border-color:transparent}.dropdown-header{padding-left:10px;padding-right:10px;text-transform:uppercase}.btn-group>.dropdown-menu,.dropdown>.dropdown-menu,.input-group-btn>.dropdown-menu{margin-top:-1px}.dropup .dropdown-menu{margin-bottom:-1px}.dropdown-submenu{position:relative}.dropdown-submenu:hover>a{background-color:#def3ff;border-color:#bee1f4}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropdown-submenu.pull-left{float:none!important}.dropdown-submenu.pull-left>.dropdown-menu{left:auto;margin-left:10px;right:100%}.dropdown-submenu>a{padding-right:20px!important}.dropdown-submenu>a:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:2px}.dropdown-submenu>.dropdown-menu{left:100%;margin-top:0;top:-6px}.dropup .dropdown-submenu>.dropdown-menu{bottom:-5px;top:auto}.open .dropdown-submenu.active>.dropdown-menu{display:block}.dropdown-kebab-pf .btn-link,.dropdown-kebab-pf.btn-group>.btn:first-child{color:#252525;font-size:16px;line-height:1;padding:4px 10px;margin-left:-10px;margin-right:-10px}.dropdown-kebab-pf .btn-link:active,.dropdown-kebab-pf .btn-link:focus,.dropdown-kebab-pf .btn-link:hover,.dropdown-kebab-pf.btn-group>.btn:first-child:active,.dropdown-kebab-pf.btn-group>.btn:first-child:focus,.dropdown-kebab-pf.btn-group>.btn:first-child:hover{color:#0088ce}.dropdown-kebab-pf.btn-group{margin-left:10px}.dropdown-kebab-pf .dropdown-menu{left:-15px;margin-top:11px}.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right{left:auto;right:-15px}.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:after,.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:before{left:auto;right:6px}.dropdown-kebab-pf .dropdown-menu:after,.dropdown-kebab-pf .dropdown-menu:before{border-bottom-color:#bbb;border-bottom-style:solid;border-bottom-width:10px;border-left:10px solid transparent;border-right:10px solid transparent;content:"";display:inline-block;left:6px;position:absolute;top:-11px}.dropdown-kebab-pf .dropdown-menu:after{border-bottom-color:#fff;top:-10px}.dropdown-kebab-pf.dropup .dropdown-menu{margin-bottom:11px;margin-top:0}.dropdown-kebab-pf.dropup .dropdown-menu:after,.dropdown-kebab-pf.dropup .dropdown-menu:before{border-bottom:none;border-top-color:#bbb;border-top-style:solid;border-top-width:10px;bottom:-11px;top:auto}.dropdown-kebab-pf.dropup .dropdown-menu:after{border-top-color:#fff;bottom:-10px}.chars-remaining-pf span{font-weight:600;padding-right:5px}.chars-warn-remaining-pf{color:#c00}.fields-status-pf{color:#8b8d8f;margin-bottom:15px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{box-shadow:none;color:#8b8d8f}.form-control[disabled]:hover,.form-control[readonly]:hover,fieldset[disabled] .form-control:hover{border-color:#bbb}.form-control:hover{border-color:#7dc3e8}.has-error .form-control:hover{border-color:#900}.has-success .form-control:hover{border-color:#2b542c}.has-warning .form-control:hover{border-color:#bb6106}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label,.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label,.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#363636}.help-block{margin-bottom:0}.input-group .input-group-btn .btn{box-shadow:none}label{font-weight:600}label.required-pf:after{color:#c00;content:"*";margin-left:3px}span.required-pf{color:#c00}.fields-section-pf{border-color:#ededed;border-style:solid;border-width:1px 0 0;margin-top:25px;padding:15px 0 0}.fields-section-header-pf{border:none;font-size:12px;margin:0;padding-right:10px;width:auto}.fields-section-header-pf .fa-angle-right{cursor:pointer;font-size:14px;width:14px}.label{border-radius:0;font-size:100%;font-weight:600}h1 .label,h2 .label,h3 .label,h4 .label,h5 .label,h6 .label{font-size:75%}.list-group{border-top:1px solid #ededed}.list-group .list-group-item:first-child{border-top:0}.list-group-item{border-left:0;border-right:0}.list-group-item-heading{font-weight:600}.modal-header{background-color:#f5f5f5;border-bottom:none;padding:10px 18px}.modal-header .close{margin-top:2px}.modal-title{font-size:13px;font-weight:700}.modal-footer{border-top:none;margin-top:15px;padding:14px 15px 15px}.modal-footer>.btn{padding-left:10px;padding-right:10px}.modal-footer>.btn>.fa-angle-left{margin-right:5px}.modal-footer>.btn>.fa-angle-right{margin-left:5px}.pager li>a,.pager li>span{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;font-weight:600;line-height:22px;padding:2px 14px}.open .dropdown-toggle.pager li>a,.open .dropdown-toggle.pager li>span,.pager li>a.active,.pager li>a:active,.pager li>a:focus,.pager li>a:hover,.pager li>span.active,.pager li>span:active,.pager li>span:focus,.pager li>span:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.open .dropdown-toggle.pager li>a,.open .dropdown-toggle.pager li>span,.pager li>a.active,.pager li>a:active,.pager li>span.active,.pager li>span:active{background-image:none}.open .dropdown-toggle.pager li>a.focus,.open .dropdown-toggle.pager li>a:focus,.open .dropdown-toggle.pager li>a:hover,.open .dropdown-toggle.pager li>span.focus,.open .dropdown-toggle.pager li>span:focus,.open .dropdown-toggle.pager li>span:hover,.pager li>a.active.focus,.pager li>a.active:focus,.pager li>a.active:hover,.pager li>a:active.focus,.pager li>a:active:focus,.pager li>a:active:hover,.pager li>span.active.focus,.pager li>span.active:focus,.pager li>span.active:hover,.pager li>span:active.focus,.pager li>span:active:focus,.pager li>span:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.pager li>a.disabled,.pager li>a.disabled.active,.pager li>a.disabled:active,.pager li>a.disabled:focus,.pager li>a.disabled:hover,.pager li>a[disabled],.pager li>a[disabled].active,.pager li>a[disabled]:active,.pager li>a[disabled]:focus,.pager li>a[disabled]:hover,.pager li>span.disabled,.pager li>span.disabled.active,.pager li>span.disabled:active,.pager li>span.disabled:focus,.pager li>span.disabled:hover,.pager li>span[disabled],.pager li>span[disabled].active,.pager li>span[disabled]:active,.pager li>span[disabled]:focus,.pager li>span[disabled]:hover,fieldset[disabled] .pager li>a,fieldset[disabled] .pager li>a.active,fieldset[disabled] .pager li>a:active,fieldset[disabled] .pager li>a:focus,fieldset[disabled] .pager li>a:hover,fieldset[disabled] .pager li>span,fieldset[disabled] .pager li>span.active,fieldset[disabled] .pager li>span:active,fieldset[disabled] .pager li>span:focus,fieldset[disabled] .pager li>span:hover{background-color:#f1f1f1;border-color:#bbb}.pager li>a>.i,.pager li>span>.i{font-size:18px;vertical-align:top;margin:2px 0}.pager li a:active{background-image:none;box-shadow:inset 0 3px 5px rgba(3,3,3,.125);outline:0}.pager .disabled>a,.pager .disabled>a:active,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{background:#f5f5f5;box-shadow:none;color:#8b8d8f;cursor:not-allowed}.pager .next>a>.i,.pager .next>span>.i{margin-left:5px}.pager .previous>a>.i,.pager .previous>span>.i{margin-right:5px}.pager-sm li>a,.pager-sm li>span{font-weight:400;line-height:16px;padding:1px 10px}.pager-sm li>a>.i,.pager-sm li>span>.i{font-size:12px}.pagination>li>a,.pagination>li>span{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;cursor:default;font-weight:600;padding:2px 10px}.open .dropdown-toggle.pagination>li>a,.open .dropdown-toggle.pagination>li>span,.pagination>li>a.active,.pagination>li>a:active,.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span.active,.pagination>li>span:active,.pagination>li>span:focus,.pagination>li>span:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.open .dropdown-toggle.pagination>li>a,.open .dropdown-toggle.pagination>li>span,.pagination>li>a.active,.pagination>li>a:active,.pagination>li>span.active,.pagination>li>span:active{background-image:none}.open .dropdown-toggle.pagination>li>a.focus,.open .dropdown-toggle.pagination>li>a:focus,.open .dropdown-toggle.pagination>li>a:hover,.open .dropdown-toggle.pagination>li>span.focus,.open .dropdown-toggle.pagination>li>span:focus,.open .dropdown-toggle.pagination>li>span:hover,.pagination>li>a.active.focus,.pagination>li>a.active:focus,.pagination>li>a.active:hover,.pagination>li>a:active.focus,.pagination>li>a:active:focus,.pagination>li>a:active:hover,.pagination>li>span.active.focus,.pagination>li>span.active:focus,.pagination>li>span.active:hover,.pagination>li>span:active.focus,.pagination>li>span:active:focus,.pagination>li>span:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.pagination>li>a.disabled,.pagination>li>a.disabled.active,.pagination>li>a.disabled:active,.pagination>li>a.disabled:focus,.pagination>li>a.disabled:hover,.pagination>li>a[disabled],.pagination>li>a[disabled].active,.pagination>li>a[disabled]:active,.pagination>li>a[disabled]:focus,.pagination>li>a[disabled]:hover,.pagination>li>span.disabled,.pagination>li>span.disabled.active,.pagination>li>span.disabled:active,.pagination>li>span.disabled:focus,.pagination>li>span.disabled:hover,.pagination>li>span[disabled],.pagination>li>span[disabled].active,.pagination>li>span[disabled]:active,.pagination>li>span[disabled]:focus,.pagination>li>span[disabled]:hover,fieldset[disabled] .pagination>li>a,fieldset[disabled] .pagination>li>a.active,fieldset[disabled] .pagination>li>a:active,fieldset[disabled] .pagination>li>a:focus,fieldset[disabled] .pagination>li>a:hover,fieldset[disabled] .pagination>li>span,fieldset[disabled] .pagination>li>span.active,fieldset[disabled] .pagination>li>span:active,fieldset[disabled] .pagination>li>span:focus,fieldset[disabled] .pagination>li>span:hover{background-color:#f1f1f1;border-color:#bbb}.pagination>li>a>.i,.pagination>li>span>.i{font-size:15px;vertical-align:top;margin:2px 0}.pagination>li>a:active,.pagination>li>span:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{background-color:#f1f1f1;border-color:#bbb;box-shadow:inset 0 2px 8px rgba(3,3,3,.2);color:#4d5258;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{box-shadow:none;cursor:not-allowed;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.pagination-sm>li>a,.pagination-sm>li>span{padding:2px 6px;font-size:11px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pagination-sm>li>a,.pagination-sm>li>span{font-weight:400}.pagination-sm>li>a>.i,.pagination-sm>li>span>.i{font-size:12px;margin-top:2px}.content-view-pf-pagination{background-color:#f5f5f5;border:1px solid #d1d1d1;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between}.content-view-pf-pagination.table-view-pf-pagination{border-top:none}.content-view-pf-pagination .form-group{-ms-flex-align:baseline;align-items:baseline;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;float:left;margin:5px}@supports (display:flex){.content-view-pf-pagination .form-group{float:none}}.content-view-pf-pagination .form-group:last-child{-ms-flex-pack:end;justify-content:flex-end;float:right}@supports (display:flex){.content-view-pf-pagination .form-group:last-child{float:none}}.content-view-pf-pagination .form-group .pagination-pf-pagesize.bootstrap-select.btn-group,.content-view-pf-pagination .form-group .pagination-pf-pagesize.btn-group{display:-ms-flexbox;display:flex;float:none;margin-bottom:0;margin-left:0;margin-right:5px;width:auto}.content-view-pf-pagination .form-group .dropdown-menu{min-width:auto}.content-view-pf-pagination .pagination-pf-page{margin-left:10px;margin-right:5px;padding:0 2px 2px;text-align:right;width:2.5em}.content-view-pf-pagination .pagination{display:-ms-flexbox;display:flex;margin:0 0 0 10px}.content-view-pf-pagination .pagination a{float:none}@supports (display:flex){.content-view-pf-pagination .pagination a{display:block}}.panel-title{font-weight:700}.panel-group .panel{color:#4d5258}.panel-group .panel+.panel{margin-top:-1px}.panel-group .panel-default{border-color:#bbb;border-top-color:#bbb}.panel-group .panel-default .panel-heading{background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.panel-group .panel-default .panel-heading+.panel-collapse .panel-body{border-top:1px solid #d1d1d1}.panel-group .panel-info{border-color:#00659c}.panel-group .panel-info .panel-heading{background-color:#dae5f4}.panel-group .panel-info+.panel-default{border-top-color:#00659c}.panel-group .panel-primary{border-color:#39a5dc}.panel-group .panel-primary .panel-heading{background-color:#def0f9}.panel-group .panel-primary+.panel-default{border-top-color:#39a5dc}.panel-group .panel-primary+.panel-info{border-top-color:#39a5dc}.panel-group .panel-success{border-color:#3f9c35}.panel-group .panel-success .panel-heading{background-color:#e9f4e9}.panel-group .panel-success+.panel-default{border-top-color:#3f9c35}.panel-group .panel-success+.panel-info{border-top-color:#3f9c35}.panel-group .panel-success+.panel-primary{border-top-color:#3f9c35}.panel-group .panel-warning{border-color:#ec7a08}.panel-group .panel-warning .panel-heading{background-color:#fdf2e5}.panel-group .panel-warning+.panel-default{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-info{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-primary{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-success{border-top-color:#ec7a08}.panel-group .panel-danger{border-color:#c00}.panel-group .panel-danger .panel-heading{background-color:#ffe6e6}.panel-group .panel-danger+.panel-default{border-top-color:#c00}.panel-group .panel-danger+.panel-info{border-top-color:#c00}.panel-group .panel-danger+.panel-primary{border-top-color:#c00}.panel-group .panel-danger+.panel-success{border-top-color:#c00}.panel-group .panel-danger+.panel-warning{border-top-color:#c00}.panel-group .panel-title{font-weight:500;line-height:1}.panel-group .panel-title>a{color:#4d5258;font-weight:600}.panel-group .panel-title>a:before{content:"\f107";display:inline-block;font-family:FontAwesome;font-size:13px;margin-right:5px;text-align:center;vertical-align:0;width:8px}.panel-group .panel-title>a:focus{outline:0;text-decoration:none}.panel-group .panel-title>a:hover{text-decoration:none}.panel-group .panel-title>a.collapsed:before{content:"\f105"}.popover{box-shadow:0 2px 2px rgba(3,3,3,.08);padding:0}.popover-content{color:#4d5258;line-height:18px;padding:10px 14px}.popover-title{border-bottom:none;border-radius:0;color:#4d5258;font-size:13px;font-weight:700;min-height:34px}.popover-title .close{height:22px;position:absolute;right:8px;top:6px}.popover-title.closable{padding-right:30px}@keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}.progress{box-shadow:inset 0 0 1px rgba(3,3,3,.25)}.progress.progress-label-left,.progress.progress-label-top-right{overflow:visible;position:relative}.progress.progress-label-left{margin-left:40px}.progress.progress-sm{height:14px;margin-bottom:14px}.progress.progress-xs{height:6px;margin-bottom:6px}td>.progress:first-child:last-child{margin-bottom:0;margin-top:3px}.progress-bar{box-shadow:none}.progress-label-left .progress-bar span,.progress-label-right .progress-bar span,.progress-label-top-right .progress-bar span{color:#363636;position:absolute;text-align:right}.progress-label-left .progress-bar span{font-size:14px;left:-40px;top:0;width:35px}.progress-label-right .progress-bar span,.progress-label-top-right .progress-bar span{font-size:11px;overflow:hidden;right:0;text-overflow:ellipsis;white-space:nowrap}.progress-label-right .progress-bar span strong,.progress-label-top-right .progress-bar span strong{font-weight:600}.progress-label-right .progress-bar span{max-width:85px;top:0}.progress-label-top-right .progress-bar span{max-width:47%;top:-30px}.progress-label-left.progress-sm .progress-bar span,.progress-label-top-right.progress-sm .progress-bar span{font-size:12px}.progress-sm .progress-bar{line-height:14px}.progress-xs .progress-bar{line-height:6px}.progress-bar-remaining{background:0 0}.progress-container{position:relative}.progress-container.progress-description-left{padding-left:90px}.progress-container.progress-label-right{padding-right:90px}.progress-description{margin-bottom:10px;max-width:52%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.progress-description .count{font-size:20.004px;font-weight:300;line-height:1;margin-right:5px}.progress-description .fa,.progress-description .pficon{font-size:14px;margin-right:3px}.progress-description-left .progress-description{left:0;margin-bottom:0;max-width:85px;position:absolute;top:0}.progress-description .tooltip{white-space:normal}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:2px 10px 3px}.table>tbody>tr>td>a:hover,.table>tbody>tr>th>a:hover,.table>tfoot>tr>td>a:hover,.table>tfoot>tr>th>a:hover,.table>thead>tr>td>a:hover,.table>thead>tr>th>a:hover{text-decoration:none}.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>th{font-family:"Open Sans";font-style:normal;font-weight:600}.table>thead{background-clip:padding-box;background-color:#f5f5f5;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.table-bordered{border:1px solid #d1d1d1}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #d1d1d1}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:1px}.table-striped>tbody>tr:nth-of-type(even){background-color:#f5f5f5}.table-striped>tbody>tr:nth-of-type(odd){background-color:transparent}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#def3ff;border-bottom-color:#7dc3e8}.table-treegrid span.indent{margin-left:10px;margin-right:10px}.table-treegrid span.icon{display:inline-block;font-size:13px;margin-right:5px;min-width:10px;text-align:center}.table-treegrid span.collapse-icon,.table-treegrid span.expand-icon{cursor:pointer}.table-treegrid>tbody>tr.odd{background-color:#f5f5f5}.nav-tabs{font-size:14px}.nav-tabs>li>a{color:#4d5258;margin-right:-1px;padding-bottom:5px;padding-top:5px}.nav-tabs>li>a:active,.nav-tabs>li>a:focus,.nav-tabs>li>a:hover{background:0 0;border-color:#ededed;color:#252525}.nav-tabs>li>.dropdown-menu{border-top:0;border-color:#ededed}.nav-tabs>li>.dropdown-menu.pull-right{right:-1px}.nav-tabs+.nav-tabs-pf,.nav-tabs.nav-tabs-pf-secondary{font-size:12px}.nav-tabs+.nav-tabs-pf>li:first-child>a,.nav-tabs.nav-tabs-pf-secondary>li:first-child>a{padding-left:15px}.nav-tabs+.nav-tabs-pf>li:first-child>a:before,.nav-tabs.nav-tabs-pf-secondary>li:first-child>a:before{left:15px!important}.nav-tabs .open>a,.nav-tabs .open>a:focus,.nav-tabs .open>a:hover{background-color:transparent;border-color:#ededed}@media (min-width:768px){.nav-tabs-pf.nav-justified{border-bottom:1px solid #ededed}}.nav-tabs-pf.nav-justified>li:first-child>a{padding-left:15px}.nav-tabs-pf.nav-justified>li>a{border-bottom:0}.nav-tabs-pf.nav-justified>li>a:before{left:0!important;right:0!important}.nav-tabs-pf>li{margin-bottom:0}.nav-tabs-pf>li.active>a:before{background:#0088ce;bottom:-1px;content:"";display:block;height:2px;left:15px;position:absolute;right:15px}.nav-tabs-pf>li.active>a,.nav-tabs-pf>li.active>a:active,.nav-tabs-pf>li.active>a:focus,.nav-tabs-pf>li.active>a:hover{background-color:transparent;border:0!important;color:#0088ce}.nav-tabs-pf>li.active>a:active:before,.nav-tabs-pf>li.active>a:before,.nav-tabs-pf>li.active>a:focus:before,.nav-tabs-pf>li.active>a:hover:before{background:#0088ce}.nav-tabs-pf>li:first-child>a{padding-left:0}.nav-tabs-pf>li:first-child>a:before{left:0!important}.nav-tabs-pf>li>a{border:0;line-height:1;margin-right:0;padding-bottom:10px;padding-top:10px}.nav-tabs-pf>li>a:active:before,.nav-tabs-pf>li>a:focus:before,.nav-tabs-pf>li>a:hover:before{background:#bbb;bottom:-1px;content:"";display:block;height:2px;left:15px;position:absolute;right:15px}.nav-tabs-pf>li>.dropdown-menu{left:15px;margin-top:1px}.nav-tabs-pf>li>.dropdown-menu.pull-right{left:auto;right:15px}.nav-tabs-pf .open>a,.nav-tabs-pf .open>a:focus,.nav-tabs-pf .open>a:hover{background-color:transparent}.tooltip{font-size:12px;line-height:1.4}.tooltip-inner{padding:7px 12px;text-align:left}.h1,.h2,h1,h2{font-weight:300}.page-header .actions{margin-top:8px}.page-header .actions a>.pficon{margin-right:4px}@media (min-width:767px){.page-header-bleed-left{margin-left:-20px}.page-header-bleed-right{margin-right:-20px}.page-header-bleed-right .actions{margin-right:20px}}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/patternfly/dist/css/patternfly.min.css.map b/themes/src/main/node_modules/patternfly/dist/css/patternfly.min.css.map
index db368ad..1340aae 100644
--- a/themes/src/main/node_modules/patternfly/dist/css/patternfly.min.css.map
+++ b/themes/src/main/node_modules/patternfly/dist/css/patternfly.min.css.map
@@ -1 +1 @@
-{"version":3,"sources":["src/less/fonts.less","tests/build/less/patternfly.css","node_modules/bootstrap/less/normalize.less","node_modules/bootstrap/less/print.less","node_modules/bootstrap/less/glyphicons.less","node_modules/bootstrap/less/scaffolding.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","src/less/variables.less","node_modules/bootstrap/less/mixins/tab-focus.less","node_modules/bootstrap/less/carousel.less","node_modules/bootstrap/less/thumbnails.less","node_modules/bootstrap/less/mixins/image.less","node_modules/bootstrap/less/type.less","node_modules/bootstrap/less/mixins/text-emphasis.less","node_modules/bootstrap/less/mixins/background-variant.less","node_modules/bootstrap/less/mixins/text-overflow.less","node_modules/bootstrap/less/code.less","node_modules/bootstrap/less/grid.less","node_modules/bootstrap/less/mixins/grid.less","node_modules/bootstrap/less/mixins/grid-framework.less","node_modules/bootstrap/less/tables.less","node_modules/bootstrap/less/mixins/table-row.less","node_modules/bootstrap/less/forms.less","node_modules/bootstrap/less/mixins/forms.less","src/less/bootstrap-mixin-overrides.less","node_modules/bootstrap/less/buttons.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap/less/button-groups.less","node_modules/bootstrap/less/component-animations.less","node_modules/bootstrap/less/dropdowns.less","node_modules/bootstrap/less/mixins/nav-divider.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/input-groups.less","node_modules/bootstrap/less/navs.less","node_modules/bootstrap/less/navbar.less","node_modules/bootstrap/less/mixins/nav-vertical-align.less","node_modules/bootstrap/less/utilities.less","node_modules/font-awesome/less/bordered-pulled.less","node_modules/bootstrap/less/breadcrumbs.less","node_modules/bootstrap/less/pagination.less","node_modules/bootstrap/less/mixins/pagination.less","node_modules/bootstrap/less/pager.less","node_modules/bootstrap/less/labels.less","node_modules/bootstrap/less/mixins/labels.less","node_modules/bootstrap/less/badges.less","node_modules/bootstrap/less/jumbotron.less","node_modules/bootstrap/less/alerts.less","node_modules/bootstrap/less/mixins/alerts.less","node_modules/bootstrap/less/progress-bars.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/progress-bar.less","node_modules/bootstrap/less/media.less","node_modules/bootstrap/less/list-group.less","node_modules/bootstrap/less/mixins/list-group.less","node_modules/bootstrap/less/panels.less","node_modules/bootstrap/less/mixins/panels.less","node_modules/bootstrap/less/responsive-embed.less","node_modules/bootstrap/less/wells.less","node_modules/bootstrap/less/close.less","node_modules/bootstrap/less/modals.less","node_modules/bootstrap/less/tooltip.less","node_modules/bootstrap/less/mixins/reset-text.less","node_modules/bootstrap/less/popovers.less","node_modules/bootstrap/less/mixins/clearfix.less","node_modules/bootstrap/less/mixins/center-block.less","node_modules/bootstrap/less/mixins/hide-text.less","node_modules/bootstrap/less/responsive-utilities.less","node_modules/bootstrap/less/mixins/responsive-visibility.less","node_modules/font-awesome/less/path.less","node_modules/font-awesome/less/core.less","node_modules/font-awesome/less/larger.less","node_modules/font-awesome/less/fixed-width.less","node_modules/font-awesome/less/list.less","node_modules/font-awesome/less/animated.less","node_modules/font-awesome/less/rotated-flipped.less","node_modules/font-awesome/less/mixins.less","node_modules/font-awesome/less/stacked.less","node_modules/font-awesome/less/icons.less","node_modules/font-awesome/less/variables.less","node_modules/font-awesome/less/screen-reader.less","src/less/mixins.less","src/less/alerts.less","src/less/badges.less","src/less/breadcrumbs.less","src/less/buttons.less","src/less/dropdowns.less","src/less/forms.less","src/less/labels.less","src/less/list-group.less","src/less/modals.less","src/less/pager.less","src/less/pagination.less","src/less/panels.less","src/less/popovers.less","src/less/progress-bars.less","src/less/tables.less","src/less/tabs.less","src/less/tooltip.less","src/less/type.less"],"names":[],"mappings":"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A,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,EFT+B,yBEzB/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GFA+B,yBElC/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GFS+B,0BE3C/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GCnEJ,MACE,iBAAA,YAEF,QACE,YAAA,KACA,eAAA,KAC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lB,QDlhBY,oBAAU,QCgMlB,QD/LmB,+BAAU,QCYlB,QDXM,6BAAU,QCclB,QDbJ,iBAAU,QCqWlB,QDpWgB,yBAAU,QCwelB,QDteC,kBADM,wBACI,QCsgBlB,QDrgBS,mBAAU,QCggBlB,QD/fS,oBAAU,QCwYlB,QDvYI,gBAAU,QC2YlB,QD1YQ,gBAAU,QC4PlB,QD3Pc,sBAAU,QCoUlB,QDnUQ,sBAAU,QCitBlB,QDhtBS,uBAAU,QC+sBlB,QD9sBM,qBAAU,QCgtBlB,QD/sBK,kBAAU,QCyelB,QDxeS,mBAAU,QCwBlB,QDvBI,eAAU,QCymBlB,QDxmBS,gBAAU,QCymBlB,QDxmBQ,gBAAU,QCyDlB,QDxDY,oBAAU,QCyDlB,QDxDK,iBAAU,QC+dlB,QD9dS,kBAAU,QC2ElB,QD1EM,gBAAU,QC0PlB,QDzPQ,gBAAU,QCiDlB,QDhDU,kBAAU,QC0VlB,QDzVa,uBAAU,QCwmBlB,QDvmBO,sBAAU,QCwmBlB,QDvmBQ,sBAAU,QCpClB,QDqCU,wBAAU,QCvClB,QDwCO,uBAAU,QCrClB,QDsCU,yBAAU,QCxClB,QDyCD,gBAAU,QC+WlB,QD9WU,kBACC,mBAAU,QC2alB,QD1aO,kBAAU,QCsUlB,QDrUc,wBAAU,QCkrBlB,QDhrBC,iBADA,iBAEI,qBAAU,QC0blB,QDzbK,kBAAU,QCkblB,QDjbY,sBAAU,QCwXlB,QDvXI,kBAAU,QCtDlB,QDuDM,gBAAU,QCmnBlB,QDlnBQ,gBACW,2BAAU,QC+alB,QD9aO,0BAAU,QC8flB,QD7fQ,0BAAU,QC+ElB,QD9EA,kBAAU,QCzBlB,QD0Be,yBAAU,QCmjBlB,QDljBQ,yBAAU,QCqLlB,QDpLG,oBAAU,QClBlB,QDmBI,gBAAU,QCsblB,QDrbS,iBAAU,QCgalB,QD/ZO,gBAAU,QCmjBlB,QDljBW,mBAAU,QC+NlB,QD9Na,wBAAU,QCgLlB,QD/KQ,wBAAU,QC4iBlB,QD3iBC,iBAAU,QC+IlB,QD9Ie,wBAAU,QCyElB,QDxES,yBAAU,QCyElB,QDxEM,uBAAU,QCkblB,QDjbS,wBAAU,QCuXlB,QDtXQ,wBAAU,QC2lBlB,QD1lBQ,wBAAU,QC2DlB,QD1DW,2BAAU,QCyblB,QDxbI,uBAAU,QC0SlB,QDzSO,sBAAU,QC0GlB,QDzGY,0BAAU,QCulBlB,QDtlBQ,0BAAU,QCuDlB,QDtDH,eAAU,QCnClB,QDoCe,sBAAU,QCnDlB,QDoDS,uBAAU,QCnDlB,QDoDK,oBAAU,QCnDlB,QDoDU,sBAAU,QCvDlB,QDwDU,wBACP,iBAAU,QC4dlB,QD3dS,kBAAU,QC8IlB,QD7IU,oBAAU,QCsFlB,QDrFI,gBAAU,QC+ZlB,QD9ZS,iBAAU,QCoWlB,QDnWW,oBAAU,QCpDlB,QDqDkB,8BAAU,QCuIlB,QDtIN,gBAAU,QCkNlB,QDjNQ,gBAAU,QC0SlB,QDzSQ,gBAAU,QC6KlB,QD5KO,eAAU,QCyIlB,QDxIc,qBAAU,QCyIlB,QDvImB,gCADb,mBACuB,QCiIlB,QDhIP,iBAAU,QC+YlB,QD9YW,oBAAU,QCAlB,QDCM,kBAAU,QCoalB,QDnaS,mBAAU,QCgElB,QD/DO,kBAAU,QC6TlB,QD5TY,sBAAU,QCuClB,QDtCU,wBAAU,QCmClB,QDlCG,mBAAU,QC+alB,QD9ac,yBAAU,QCkdlB,QDjdC,kBAAU,QC0KlB,QDzKa,uBAAU,QC2KlB,QD1KK,oBAAU,QC3ElB,QD4EQ,oBAAU,QC7ElB,QD8EW,uBACF,qBAAU,QClElB,QDmEa,0BAAU,QC+kBlB,QD9kBS,2BAAU,QC4HlB,QD3HK,wBAAU,QCTlB,QDUD,eAAU,QC2QlB,QDzQS,gBADC,iBACS,QC6ClB,QD5CY,oBAAU,QCkDlB,QDjDW,uBAAU,QCsiBlB,QDriBU,yBAAU,QCoiBlB,QDniBI,qBAAU,QC2elB,QD1eM,mBAAU,QC8NlB,QD7NS,oBAAU,QCoclB,QDnce,2BAAU,QCuRlB,QDtRG,sBAAU,QC6hBlB,QD5hBW,yBAAU,QCsGlB,QDrGE,mBAAU,QC8blB,QD7bO,kBAAU,QCqjBlB,QDpjBe,yBAAU,QCgLlB,QD/KC,kBAAU,QCukBlB,QDtkBS,mBAAU,QCqQlB,QDpQM,iBAAU,QCiWlB,QDhWW,oBAAU,QC2dlB,QD1dU,sBAAU,QCjDlB,QDkDU,wBAAU,QC+VlB,QD9VG,mBAAU,QCsjBlB,QDrjBW,sBACF,oBAAU,QCgGlB,QD/FM,kBAAU,QCoKlB,QDnKQ,kBAAU,QC0jBlB,QDzjBa,uBAAU,QCoClB,QDnCC,gBACD,eAAU,QC+YlB,QD9YU,iBAAU,QCoMlB,QDnMW,oBAAU,QCrDlB,QDsDI,gBAAU,QChFlB,QDiFe,uBAAU,QCrBlB,QDsBS,wBAAU,QCoLlB,QDnLO,uBAAU,QCkLlB,QDjLM,qBAAU,QCmLlB,QDlLU,uBAAU,QC+KlB,QD9Kc,6BAAU,QCrIlB,QDsIS,8BAAU,QCjIlB,QDkIK,2BAAU,QCjIlB,QDkIU,6BAAU,QCzIlB,QD0IJ,iBAAU,QC2JlB,QD1JS,kBAAU,QC6lBlB,QD5lBO,iBAAU,QCqelB,QDpeS,kBAAU,QCyGlB,QDxGW,qBAAU,QCzElB,QD0ES,sBAAU,QClIlB,QDmIG,iBACA,iBAAU,QCijBlB,QDhjBQ,iBACD,gBAAU,QC4OlB,QD3OS,iBAAU,QCdlB,QDeQ,iBAAU,QC0GlB,QDzGM,eACK,oBAAU,QC6XlB,QD5XI,gBACG,mBAAU,QC2FlB,QD1FU,qBAAU,QC6SlB,QD3SO,oBADJ,gBACc,QCqGlB,QDpGM,kBAAU,QCgblB,QD7aM,gBAFG,mBACA,mBACO,QClIlB,QDmIW,mBAAU,QCsOlB,QDrOQ,mBAAU,QCoOlB,QDnOc,yBAAU,QC+blB,QD9bI,qBAAU,QC2gBlB,QD1gBI,iBAAU,QCuclB,QDtcQ,iBAAU,QCyOlB,QDxOQ,iBAAU,QC6flB,QD5fY,qBAAU,QCmTlB,QDlTe,4BAAU,QCoTlB,QDnTU,8BAAU,QCgIlB,QD/HC,uBAAU,QC4HlB,QD3HE,iBAAU,QCqQlB,QDpQa,sBAAU,QCpFlB,QDqFM,oBAAU,QC9ElB,QD+EU,sBAAU,QCrFlB,QDsFS,uBAAU,QCrFlB,QDsFI,mBAAU,QChClB,QDkCK,gBADI,oBACM,QC0YlB,QDxYa,qBADA,qBACU,QC8YlB,QD5YO,oBADD,mBACW,QC2YlB,QD1YQ,oBAAU,QCUlB,QDTQ,oBAAU,QCuMlB,QDtMW,uBACP,gBAAU,QCqflB,QDnfS,iBADA,iBACU,QCoFlB,QDnFY,qBACC,sBAAU,QC+alB,QD9aO,qBAAU,QC7ClB,QD8CS,sBAAU,QC1ClB,QD4CE,gBADC,iBACS,QCpIlB,QDqIW,mBAAU,QC6WlB,QD5WS,oBAAU,QCyelB,QDveS,qBADJ,iBACc,QCrElB,QDsEU,uBAAU,QCqLlB,QDpLK,oBAAU,QCGlB,QDFc,0BAAU,QCnElB,QDoEM,wBAAU,QCnElB,QDoEG,mBAAU,QCiflB,QDhfY,uBAAU,QC8YlB,QD7YK,oBAAU,QCyZlB,QDxZM,kBAAU,QC9JlB,QD+JQ,kBAAU,QClElB,QDmES,mBAAU,QC1ClB,QD2CY,uBAAU,QC8BlB,QD7BO,sBAAU,QC1IlB,QD2IQ,sBAAU,QCsHlB,QDrHO,qBAAU,QCrOlB,QDsOK,kBAAU,QC4MlB,QD3Ma,uBAAU,QCUlB,QDTC,gBAAU,QC3KlB,QD4KY,oBAAU,QCuFlB,QDtFW,uBAAU,QC2QlB,QD1Qc,6BAAU,QCrOlB,QDsOS,8BAAU,QCrOlB,QDsOK,2BAAU,QCrOlB,QDsOU,6BAAU,QCzOlB,QD0OC,sBAAU,QCrOlB,QDsOS,uBAAU,QCrOlB,QDsOK,oBAAU,QCrOlB,QDsOU,sBAAU,QCzOlB,QD0OK,mBAAU,QCpDlB,QDqDO,kBAAU,QC4IlB,QD3IQ,kBAAU,QCwYlB,QDvYc,wBACN,kBAAU,QCuMlB,QDtMU,oBAAU,QCzGlB,QD0GU,sBAAU,QCyQlB,QDxQS,uBAAU,QCyQlB,QDxQI,mBAAU,QC+VlB,QD9VO,kBAAU,QC9GlB,QD+GY,sBACL,iBAAU,QCoRlB,QDnRa,sBAAU,QC+ClB,QD9CM,oBAAU,QCmBlB,QDlBa,yBAAU,QCoBlB,QDnBE,mBAAU,QCqUlB,QDpUQ,mBAAU,QC2BlB,QD1BM,iBAAU,QCgLlB,QD/KU,mBAAU,QC2BlB,QD1BW,sBAAU,QCuHlB,QDtHI,kBAAU,QCMlB,QDLgB,0BAAU,QCIlB,QDHE,oBAAU,QC6XlB,QD5XI,gBAAU,QChHlB,QDiHkB,0BACL,qBAAU,QCuQlB,QDtQc,2BACD,0BACH,uBAAU,QCsVlB,QDrVW,0BAAU,QCwIlB,QDvIF,gBAAU,QChGlB,QDiGa,qBAAU,QCvHlB,QDyHW,wBADN,kBACgB,QCtJlB,QDuJI,oBAAU,QCyOlB,QDxOI,gBAAU,QC0FlB,QDzFe,uBAAU,QC1DlB,QD2DQ,uBAAU,QCkWlB,QDjWM,qBAAU,QC4VlB,QD3VK,kBAAU,QClElB,QDmEc,wBAAU,QCgOlB,QD/NM,sBAAU,QC2JlB,QD1Jc,4BAAU,QC2JlB,QD1JF,kBAAU,QCsRlB,QDrRY,sBAAU,QC5LlB,QD6Le,6BAAU,QCxBlB,QDyBH,kBAAU,QCuPlB,QDtPQ,kBAAU,QC6IlB,QD5IqB,+BAAU,QC9JlB,QD+JS,gCAAU,QC9JlB,QD+JK,6BAAU,QC9JlB,QD+JU,+BAAU,QClKlB,QDmKN,iBAAU,QC8DlB,QD7DO,gBAAU,QCrHlB,QDsHU,kBAAU,QCvSlB,QDwSY,sBAAU,QC2ZlB,QD1ZM,oBAAU,QChNlB,QDiNU,sBAAU,QC7FlB,QD8FQ,sBAAU,QC7FlB,QD8FQ,sBAAU,QC+OlB,QD9OS,uBAAU,QCiMlB,QDhMG,kBAAU,QC6WlB,QD5Wc,wBAAU,QC0IlB,QDzIU,0BAAU,QC0IlB,QDzIE,oBAAU,QCqFlB,QDpFU,sBAAU,QCmFlB,QDlFU,wBAAU,QCnLlB,QDoLS,yBAAU,QC0KlB,QDzKe,gCAAU,QCpFlB,QDqFA,wBAAU,QCwPlB,QDvPG,mBAAU,QCjJlB,QDmJoB,+BADR,uBACkB,QC/MlB,QDiNM,6BADR,qBACkB,QC9MlB,QDgNW,gCADR,wBACkB,QCjNlB,QDmNT,eADC,gBACS,QCvGlB,QDwGQ,eAAU,QChClB,QDiCW,kBACH,eAAU,QCqYlB,QDnYQ,eADE,iBACQ,QC4ClB,QD3CQ,eAGA,eAFA,eACA,eACU,QCgDlB,QD9CW,kBACH,eAFE,iBAEQ,QCiNlB,QD/MQ,eADA,eACU,QC+ClB,QD9CY,mBACJ,eAAU,QC3PlB,QD4PS,gBAAU,QChGlB,QDiGa,qBAAU,QCpFlB,QDqFa,0BAAU,QC0PlB,QDzPS,2BAAU,QC0PlB,QDzPQ,2BAAU,QC0PlB,QDzPS,4BAAU,QC0PlB,QDzPQ,4BAAU,QC6PlB,QD5PS,6BAAU,QC6PlB,QD5PA,qBAAU,QCkUlB,QDjUU,uBAAU,QC8TlB,QD7TW,0BAAU,QCyalB,QDxaC,mBAAU,QCsalB,QDraK,gBAAU,QC2ZlB,QD1Ze,uBAAU,QC2ZlB,QD1ZS,wBAAU,QCoalB,QDnaG,mBAAU,QCxJlB,QDyJe,0BAAU,QC8PlB,QD7PG,qBAAU,QCgBlB,QDfK,kBAAU,QCpFlB,QDqFK,eAAU,QC3WlB,QD4Wc,qBAAU,QC/RlB,QDgSe,4BAAU,QC/RlB,QDgSF,kBAAU,QC+UlB,QD9Ue,yBAAU,QC+UlB,QD9UU,2BAAU,QCgDlB,QD/CM,yBAAU,QCkDlB,QDjDU,2BAAU,QC+ClB,QD9CS,4BAAU,QC+ClB,QD9CH,iBAAU,QCjWlB,QDkWU,mBAAU,QCmYlB,QDlYQ,mBAAU,QC7WlB,QD8WM,iBAAU,QCkClB,QDjCW,oBAAU,QC5KlB,QD6KK,iBAAU,QCgNlB,QD/Ma,sBAAU,QCxFlB,QDyFI,kBAAU,QC4TlB,QD3TQ,kBAAU,QCtIlB,QDuIM,gBAAU,QC6ClB,QD5CU,kBACE,oBAAU,QC5DlB,QD6DK,iBAAU,QC8PlB,QD7PS,kBAAU,QCuElB,QDtES,mBAAU,QC9WlB,QD+WI,eAAU,QCtSlB,QDuSO,cAAU,QCiWlB,QDhWW,iBAAU,QCuWlB,QDtWS,kBAAU,QC+IlB,QD9IW,qBAAU,QCkFlB,QDjFa,0BAAU,QC6NlB,QD5Nc,gCAAU,QC/WlB,QDgXO,+BAAU,QCjXlB,QDmXQ,+BADR,uBACkB,QCzRlB,QD0RC,wBAAU,QCnMlB,QDoMM,sBAAU,QCiWlB,QDhWU,wBAAU,QCoVlB,QDlVD,eADS,wBACC,QC0SlB,QDzSkB,yBAAU,QC0GlB,QDzGQ,yBAAU,QC4MlB,QD3MA,iBAAU,QCsLlB,QDrLkB,2BAAU,QCzLlB,QD0LE,qBAAU,QCoWlB,QDnWK,kBAAU,QC8DlB,QD5DM,gBADO,uBAED,sBAAU,QC8SlB,QD5SY,0BADF,wBACY,QC1FlB,QD2FD,iBAAU,QCsWlB,QDrWS,kBAAU,QClGlB,QDmGQ,kBAAU,QCgHlB,QD/Ge,yBAAU,QCiHlB,QDhHa,8BAAU,QCyNlB,QDxNC,uBAAU,QCuNlB,QDtNM,qBAAU,QC/NlB,QDgOG,gBAAU,QC5NlB,QD6NiB,yBAAU,QC2ElB,QD1ES,0BAAU,QCyElB,QDxEA,kBAAU,QCvNlB,QDwNQ,kBAAU,QCzClB,QD0CU,oBAAU,QCpClB,QDqCG,eAAU,QCtLlB,QDuLa,oBAAU,QC7UlB,QD8UK,iBAAU,QC1RlB,QD2RM,eAAU,QCsDlB,QDrDU,iBAAU,QCmLlB,QDlLO,gBAAU,QCrPlB,QDsPS,iBAAU,QCrPlB,QDsPU,mBAAU,QC7WlB,QD8We,0BAAU,QC7WlB,QD8WD,iBAAU,QC0LlB,QDzLe,wBAAU,QC0LlB,QDzLG,mBAAU,QCyFlB,QDxFW,sBACP,eAAU,QCzUlB,QD0UQ,eACC,gBAAU,QC+MlB,QD9MQ,gBAAU,QC4PlB,QD3PW,mBAAU,QCuKlB,QDtKW,sBAAU,QCtPlB,QDuPQ,sBAAU,QCiKlB,QDhKM,oBAAU,QC9PlB,QD+PU,sBAAU,QC/LlB,QDgMS,uBAAU,QCxLlB,QDyLS,wBAAU,QCrMlB,QDsMa,6BAAU,QC/LlB,QDkMG,wBAFA,wBACE,0BACQ,QCxMlB,QD0MU,0BADJ,sBACc,QC9MlB,QDgNM,wBADA,wBACU,QC/MlB,QDgNQ,wBACA,wBAAU,QCpMlB,QDqMO,uBAAU,QCjNlB,QDkNC,gBAAU,QCuRlB,QDtRW,mBAAU,QC5SlB,QD6SS,oBAAU,QC9ElB,QD+ES,qBACA,qBAGA,qBAFC,sBACH,mBACY,QCnElB,QDoEa,0BAAU,QC/TlB,QDgUJ,cAEG,iBADK,sBACK,QCqDlB,QDnDS,kBADJ,cACc,QCnQlB,QDoQY,sBAAU,QCzKlB,QD0KC,eAAU,QC3KlB,QD8KgB,uBAFQ,+BACV,qBACY,QCxJlB,QDyJU,yBAAU,QC2KlB,QD1KH,cAAU,QCiClB,QDhCY,kBACA,kBAAU,QC0QlB,QDxQa,uBADP,gBACiB,QCVlB,QDYU,yBADP,kBACiB,QCXlB,QDYE,mBAAU,QC1IlB,QD2IY,uBAAU,QClVlB,QDmVG,kBAAU,QCjJlB,QDkJW,qBAAU,QCblB,QDcM,mBAAU,QC+FlB,QD9FU,qBAAU,QCuElB,QDtEe,4BAAU,QCuElB,QDtEJ,gBAAU,QCzZlB,QD2ZY,oBADK,yBACK,QC5MlB,QD6MG,eAAU,QC0MlB,QDzMe,sBAAU,QCxalB,QDyaE,gBAAU,QCIlB,QDHc,sBAAU,QCuFlB,QDtFI,kBAAU,QC2MlB,QD1MM,gBAAU,QC+QlB,QD9Qe,uBAAU,QCzClB,QD0CC,gBAAU,QCwPlB,QDvPc,sBAAU,QCrZlB,QDsZI,kBAAU,QCvBlB,QDwBe,yBAAU,QC3LlB,QD4LE,mBAAU,QC5XlB,QD6Xc,yBAAU,QChYlB,QDiYM,uBAAU,QCnYlB,QDoYI,mBAAU,QCtYlB,QDuYU,qBAAU,QClYlB,QDmYQ,qBAAU,QClYlB,QDmYS,sBAAU,QC3blB,QD4bU,wBAAU,QC3blB,QD4bC,iBAAU,QC+KlB,QD9KY,qBAAU,QCnVlB,QDoVC,cAAU,QC9dlB,QD+dgB,sBAAU,QC5RlB,QD6RS,uBAAU,QC/ClB,QDgDU,yBAAU,QC9blB,QD+bK,sBAAU,QCtflB,QDufO,qBAAU,QC/BlB,QDgCS,sBAAU,QCzHlB,QD0HI,kBAAU,QCvIlB,QDwIe,yBAAU,QCvIlB,QDwIK,sBAAU,QC4JlB,QD3JO,qBAAU,QC4JlB,QD3JM,mBAAU,QCxclB,QDycI,eAAU,QCjblB,QDkbY,mBAAU,QCvJlB,QDwJU,qBAAU,QC3gBlB,QD4gBC,cAAU,QC7ZlB,QDgaS,eAFG,kBACA,kBACO,QCzKlB,QD0Ka,oBAAU,QCpGlB,QDqGU,sBAAU,QCxblB,QDybY,0BAAU,QC5WlB,QD6WE,oBAAU,QC9VlB,QD+VQ,oBAAU,QC9PlB,QD+PO,mBAAU,QCrJlB,QDsJO,kBAAU,QCelB,QDdc,wBAAU,QC2BlB,QD1BO,uBAAU,QCoClB,QDnCK,oBAAU,QCqClB,QDpCS,qBAAU,QC5alB,QD6ac,2BAAU,QC9alB,QD+aA,mBAAU,QC/VlB,QDgWK,gBAAU,QCoBlB,QDnBe,uBAAU,QC8KlB,QD7KO,sBAAU,QC/FlB,QDgGS,uBAAU,QC6ElB,QD5EM,qBAAU,QC9MlB,QD+MI,iBAAU,QC+KlB,QD9KO,gBAAU,QC7HlB,QD8HW,mBAAU,QCnHlB,QDoHS,oBACG,uBAAU,QCkIlB,QDjIY,2BAAU,QCkIlB,QDjIK,wBAAU,QC0KlB,QDzKO,uBAAU,QClIlB,QDmIO,sBAAU,QCyKlB,QDxKS,uBAAU,QCnIlB,QDoIU,yBAAU,QClIlB,QDmIQ,yBAAU,QCpIlB,QDqIC,kBAAU,QC1GlB,QD2GY,sBAAU,QC7QlB,QD8Qe,6BAAU,QC1UlB,QD2UE,uBAAU,QCzElB,QD0EK,oBAAU,QCkLlB,QDjLM,kBAAU,QCXlB,QDYW,qBAAU,QCuJlB,QDtJS,sBAAU,QCwJlB,QDtJC,eADE,iBACQ,QC/flB,QDggBY,mBAAU,QC4JlB,QD3JM,iBAAU,QC8GlB,QD7GS,kBAAU,QCwDlB,QDvDQ,kBAAU,QC9IlB,QDgJc,wBADV,cACoB,QC0LlB,QDzLS,yBAAU,QCjHlB,QDkHG,oBAAU,QCrHlB,QDsHY,wBAAU,QCnWlB,QDoWK,qBAEG,wBADL,mBACe,QC/gBlB,QDghBK,qBACa,kCAAU,QC9gBlB,QD+gBL,qBACG,wBAAU,QClhBlB,QDmhBK,qBACM,2BAAU,QCnhBlB,QDohBE,qBACI,yBAAU,QCxhBlB,QDyhBQ,yBAAU,QC3IlB,QD4IG,oBAAU,QC3OlB,QD4OY,wBAAU,QCxIlB,QDyIU,0BAAU,QCxIlB,QDyIK,uBAAU,QCwBlB,QDvBU,yBAAU,QCwBlB,QDvBC,kBAAU,QC/dlB,QDgegB,0BAAU,QClelB,QDmeD,iBAAU,QCpclB,QDqcgB,yBAAU,QCljBlB,QDmjBM,uBAAU,QCxPlB,QDyPQ,uBACI,2BAAU,QCzPlB,QD0PI,uBACG,0BAAU,QC7PlB,QD8PK,uBACE,yBAAU,QChQlB,QDiQI,qBAAU,QCrQlB,QDsQU,uBACA,uBAAU,QCxRlB,QD0RS,wBADD,uBACW,QC7RlB,QD8RW,2BAAU,QC1RlB,QD2RM,yBAAU,QCpSlB,QDqSO,wBAAU,QC3RlB,QD4RU,0BAAU,QC/RlB,QDgSM,wBAAU,QCjSlB,QDkSK,qBAAU,QC+DlB,QD9DS,sBAAU,QC/FlB,QDgGc,4BAAU,QC/blB,QDgcN,cAAU,QCtUlB,QDuUe,qBAAU,QCtUlB,QDuUU,uBAAU,QCkElB,QDjEU,yBAAU,QCrKlB,QDsKe,gCAAU,QCrKlB,QDsKF,sBAAU,QC5UlB,QD6US,uBAAU,QCwHlB,QDvHG,kBAAU,QCnFlB,QDoFQ,kBAAU,QCzelB,QD0eS,mBAAU,QC9WlB,QD+WM,iBAAU,QCxKlB,QDyKoB,6BAAU,QCpQlB,QDsQC,sBADR,cACkB,QCSlB,QDRI,kBAAU,QCjdlB,QDkdO,iBAAU,QCzoBlB,QD0oBS,kBAAU,QC/nBlB,QDgoBiB,2BAAU,QC3hBlB,QD4hBS,4BAAU,QC9hBlB,QD+hBQ,4BAAU,QC5hBlB,QD6hBQ,4BAAU,QCjiBlB,QDkiBA,oBAAU,QCpRlB,QDqRO,mBAAU,QC5NlB,QD6NU,qBAAU,QC5NlB,QD6NI,iBAAU,QC/NlB,QDgOM,eAAU,QClOlB,QDmOe,sBAAU,QCpelB,QDqeU,wBAAU,QCpelB,QDqeC,iBAAU,QCtSlB,QDuSQ,iBAAU,QCiFlB,QDhFY,qBAAU,QClkBlB,QDmkBQ,qBAAU,QCrXlB,QDsXW,wBAAU,QCpIlB,QDqIA,gBAAU,QCpclB,QDqcmB,2BAAU,QChelB,QDieC,oBAAU,QCpflB,QDqfI,gBAAU,QClNlB,QDmNgB,wBAAU,QC1XlB,QD2XD,eAAU,QCoDlB,QDnDiB,wBAAU,QC3JlB,QD4JI,oBAAU,QCzNlB,QD0NM,kBAAU,QClHlB,QDmHc,wBAAU,QC7LlB,QD8LU,0BAAU,QC7LlB,QD8LK,uBAAU,QC3ClB,QD4CU,yBAAU,QC3ClB,QD4CO,wBAAU,QCrGlB,QDsGW,2BAAU,QCrGlB,QDsGA,mBAAU,QC7UlB,QD8UU,qBAAU,QCnlBlB,QDolBU,uBAAU,QCnlBlB,QDolBI,mBAAU,QC/LlB,QDgMO,kBAAU,QClXlB,QDmXY,sBAAU,QCkFlB,QDjFK,mBAAU,QCmFlB,QDlFO,kBAAU,QC9clB,QD+ckB,4BAAU,QC2BlB,QD1BM,0BAAU,QCmElB,QDlEW,6BAAU,QCxKlB,QDyKJ,iBAAU,QC9lBlB,QD+lBoB,6BAAU,QCtoBlB,QDuoBW,gCAAU,QCqDlB,QDpDL,mBAAU,QCxlBlB,QDylB4B,uCAAU,QC5oBlB,QD8oBgB,+CADnB,4BAC6B,QC9qBlB,QDirBvB,gBAFI,oBACO,2BACD,QCvflB,QDwfS,iBAAU,QChYlB,QDiYU,mBAAU,QChYlB,QDkYc,yBADN,mBACgB,QC1HlB,QD2HK,sBAAU,QCzRlB,QD0RI,kBAAU,QCiClB,QDhCe,yBAAU,QCiClB,QDhCG,oBAAU,QClHlB,QDmHc,0BAAU,QClHlB,QDmHS,2BAAU,QClHlB,QDmHG,sBAAU,QCrNlB,QDsNS,uBAAU,QCpblB,QDqbE,iBAAU,QCmElB,QDlEY,qBAAU,QCpDlB,QDqDiB,8BACE,gCAAU,QCzYlB,QD0YV,cACU,wBAAU,QC7alB,QD8aO,uBAAU,QCtXlB,QDuXU,yBAAU,QClflB,QDmfU,2BAAU,QClflB,QDmfD,kBAAU,QCtTlB,QDuTc,wBAAU,QCptBlB,QDqtBU,0BAAU,QCptBlB,QDstBM,wBADP,iBACiB,QCrtBlB,QDutBU,0BADP,mBACiB,QCttBlB,QDutBK,uBAAU,QCJlB,QDKU,yBAAU,QCJlB,QDKC,kBAAU,QCHlB,QDIU,oBAAU,QC3WlB,QD4We,2BACR,mBAAU,QC5WlB,QD6WkB,6BACR,qBAAU,QC7WlB,QD8WI,iBAAU,QCtNlB,QDuNiB,0BAAU,QC3blB,QD4bE,oBAAU,QCtFlB,QDuFa,yBAEG,4BADL,uBACe,QCxElB,QDyEK,yBACa,sCAAU,QCvElB,QDwEL,yBACG,4BAAU,QC3ElB,QD4EK,yBACM,+BAAU,QC5ElB,QD6EE,yBACI,6BAAU,QCjFlB,QDkFH,kBAAU,QC3KlB,QD8KM,gBAFG,mBACJ,eACW,QCzrBlB,QD0rBW,mBAAU,QClPlB,QDmPgB,2BAAU,QCKlB,QDJQ,2BAAU,QCKlB,QDJO,0BAAU,QCKlB,QDJS,2BACH,wBAAU,QCDlB,QDEa,6BACH,0BAAU,QCFlB,QDGE,oBAAU,QCxsBlB,QDysBI,gBAAU,QCpblB,QDqbQ,gBAAU,QC1hBlB,QD2hBQ,gBAAU,QCxYlB,QDyYW,mBAAU,QC/OlB,QDgPQ,mBAAU,QCziBlB,QD0iBU,qBAAU,QCjUlB,QDkUU,uBAAU,QC7KlB,QD8KQ,uBAAU,QChIlB,QDiIO,sBAAU,QCJlB,QDKI,kBAAU,QCxUlB,QCzchB,SJ8BE,SAAA,SACA,MAAA,IACA,OAAA,IACA,QAAA,EACA,OAAA,KACA,SAAA,OACA,KAAM,cACN,OAAA,EvEoGC,0BACA,yBACC,SAAA,OACA,MA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"}
\ No newline at end of file
+{"version":3,"sources":["src/less/fonts.less","tests/build/less/patternfly.css","node_modules/bootstrap/less/normalize.less","node_modules/bootstrap/less/print.less","node_modules/bootstrap/less/glyphicons.less","node_modules/bootstrap/less/scaffolding.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","src/less/variables.less","node_modules/bootstrap/less/mixins/tab-focus.less","node_modules/bootstrap/less/carousel.less","node_modules/bootstrap/less/thumbnails.less","node_modules/bootstrap/less/mixins/image.less","node_modules/bootstrap/less/type.less","node_modules/bootstrap/less/mixins/text-emphasis.less","node_modules/bootstrap/less/mixins/background-variant.less","node_modules/bootstrap/less/mixins/text-overflow.less","node_modules/bootstrap/less/code.less","node_modules/bootstrap/less/grid.less","node_modules/bootstrap/less/mixins/grid.less","node_modules/bootstrap/less/mixins/grid-framework.less","node_modules/bootstrap/less/tables.less","node_modules/bootstrap/less/mixins/table-row.less","node_modules/bootstrap/less/forms.less","node_modules/bootstrap/less/mixins/forms.less","src/less/bootstrap-mixin-overrides.less","node_modules/bootstrap/less/buttons.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap/less/button-groups.less","node_modules/bootstrap/less/component-animations.less","node_modules/bootstrap/less/dropdowns.less","node_modules/bootstrap/less/mixins/nav-divider.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/input-groups.less","node_modules/bootstrap/less/navs.less","node_modules/bootstrap/less/navbar.less","node_modules/bootstrap/less/mixins/nav-vertical-align.less","node_modules/bootstrap/less/utilities.less","node_modules/font-awesome/less/bordered-pulled.less","node_modules/bootstrap/less/breadcrumbs.less","node_modules/bootstrap/less/pagination.less","node_modules/bootstrap/less/mixins/pagination.less","node_modules/bootstrap/less/pager.less","node_modules/bootstrap/less/labels.less","node_modules/bootstrap/less/mixins/labels.less","node_modules/bootstrap/less/badges.less","node_modules/bootstrap/less/jumbotron.less","node_modules/bootstrap/less/alerts.less","node_modules/bootstrap/less/mixins/alerts.less","node_modules/bootstrap/less/progress-bars.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/progress-bar.less","node_modules/bootstrap/less/media.less","node_modules/bootstrap/less/list-group.less","node_modules/bootstrap/less/mixins/list-group.less","node_modules/bootstrap/less/panels.less","node_modules/bootstrap/less/mixins/panels.less","node_modules/bootstrap/less/responsive-embed.less","node_modules/bootstrap/less/wells.less","node_modules/bootstrap/less/close.less","node_modules/bootstrap/less/modals.less","node_modules/bootstrap/less/tooltip.less","node_modules/bootstrap/less/mixins/reset-text.less","node_modules/bootstrap/less/popovers.less","node_modules/bootstrap/less/mixins/clearfix.less","node_modules/bootstrap/less/mixins/center-block.less","node_modules/bootstrap/less/mixins/hide-text.less","node_modules/bootstrap/less/responsive-utilities.less","node_modules/bootstrap/less/mixins/responsive-visibility.less","node_modules/font-awesome/less/path.less","node_modules/font-awesome/less/core.less","node_modules/font-awesome/less/larger.less","node_modules/font-awesome/less/fixed-width.less","node_modules/font-awesome/less/list.less","node_modules/font-awesome/less/animated.less","node_modules/font-awesome/less/rotated-flipped.less","node_modules/font-awesome/less/mixins.less","node_modules/font-awesome/less/stacked.less","node_modules/font-awesome/less/icons.less","node_modules/font-awesome/less/variables.less","node_modules/font-awesome/less/screen-reader.less","src/less/mixins.less","src/less/alerts.less","src/less/badges.less","src/less/breadcrumbs.less","src/less/buttons.less","src/less/dropdowns.less","src/less/forms.less","src/less/labels.less","src/less/list-group.less","src/less/modals.less","src/less/pager.less","src/less/pagination.less","src/less/panels.less","src/less/popovers.less","src/less/progress-bars.less","src/less/tables.less","src/less/tabs.less","src/less/tooltip.less","src/less/type.less"],"names":[],"mappings":"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A,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,EFT+B,yBEzB/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GFA+B,yBElC/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GFS+B,0BE3C/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GCnEJ,MACE,iBAAA,YAEF,QACE,YAAA,KACA,eAAA,KAC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lB,QDlhBY,oBAAU,QCgMlB,QD/LmB,+BAAU,QCYlB,QDXM,6BAAU,QCclB,QDbJ,iBAAU,QCqWlB,QDpWgB,yBAAU,QCwelB,QDteC,kBADM,wBACI,QCsgBlB,QDrgBS,mBAAU,QCggBlB,QD/fS,oBAAU,QCwYlB,QDvYI,gBAAU,QC2YlB,QD1YQ,gBAAU,QC4PlB,QD3Pc,sBAAU,QCoUlB,QDnUQ,sBAAU,QCitBlB,QDhtBS,uBAAU,QC+sBlB,QD9sBM,qBAAU,QCgtBlB,QD/sBK,kBAAU,QCyelB,QDxeS,mBAAU,QCwBlB,QDvBI,eAAU,QCymBlB,QDxmBS,gBAAU,QCymBlB,QDxmBQ,gBAAU,QCyDlB,QDxDY,oBAAU,QCyDlB,QDxDK,iBAAU,QC+dlB,QD9dS,kBAAU,QC2ElB,QD1EM,gBAAU,QC0PlB,QDzPQ,gBAAU,QCiDlB,QDhDU,kBAAU,QC0VlB,QDzVa,uBAAU,QCwmBlB,QDvmBO,sBAAU,QCwmBlB,QDvmBQ,sBAAU,QCpClB,QDqCU,wBAAU,QCvClB,QDwCO,uBAAU,QCrClB,QDsCU,yBAAU,QCxClB,QDyCD,gBAAU,QC+WlB,QD9WU,kBACC,mBAAU,QC2alB,QD1aO,kBAAU,QCsUlB,QDrUc,wBAAU,QCkrBlB,QDhrBC,iBADA,iBAEI,qBAAU,QC0blB,QDzbK,kBAAU,QCkblB,QDjbY,sBAAU,QCwXlB,QDvXI,kBAAU,QCtDlB,QDuDM,gBAAU,QCmnBlB,QDlnBQ,gBACW,2BAAU,QC+alB,QD9aO,0BAAU,QC8flB,QD7fQ,0BAAU,QC+ElB,QD9EA,kBAAU,QCzBlB,QD0Be,yBAAU,QCmjBlB,QDljBQ,yBAAU,QCqLlB,QDpLG,oBAAU,QClBlB,QDmBI,gBAAU,QCsblB,QDrbS,iBAAU,QCgalB,QD/ZO,gBAAU,QCmjBlB,QDljBW,mBAAU,QC+NlB,QD9Na,wBAAU,QCgLlB,QD/KQ,wBAAU,QC4iBlB,QD3iBC,iBAAU,QC+IlB,QD9Ie,wBAAU,QCyElB,QDxES,yBAAU,QCyElB,QDxEM,uBAAU,QCkblB,QDjbS,wBAAU,QCuXlB,QDtXQ,wBAAU,QC2lBlB,QD1lBQ,wBAAU,QC2DlB,QD1DW,2BAAU,QCyblB,QDxbI,uBAAU,QC0SlB,QDzSO,sBAAU,QC0GlB,QDzGY,0BAAU,QCulBlB,QDtlBQ,0BAAU,QCuDlB,QDtDH,eAAU,QCnClB,QDoCe,sBAAU,QCnDlB,QDoDS,uBAAU,QCnDlB,QDoDK,oBAAU,QCnDlB,QDoDU,sBAAU,QCvDlB,QDwDU,wBACP,iBAAU,QC4dlB,QD3dS,kBAAU,QC8IlB,QD7IU,oBAAU,QCsFlB,QDrFI,gBAAU,QC+ZlB,QD9ZS,iBAAU,QCoWlB,QDnWW,oBAAU,QCpDlB,QDqDkB,8BAAU,QCuIlB,QDtIN,gBAAU,QCkNlB,QDjNQ,gBAAU,QC0SlB,QDzSQ,gBAAU,QC6KlB,QD5KO,eAAU,QCyIlB,QDxIc,qBAAU,QCyIlB,QDvImB,gCADb,mBACuB,QCiIlB,QDhIP,iBAAU,QC+YlB,QD9YW,oBAAU,QCAlB,QDCM,kBAAU,QCoalB,QDnaS,mBAAU,QCgElB,QD/DO,kBAAU,QC6TlB,QD5TY,sBAAU,QCuClB,QDtCU,wBAAU,QCmClB,QDlCG,mBAAU,QC+alB,QD9ac,yBAAU,QCkdlB,QDjdC,kBAAU,QC0KlB,QDzKa,uBAAU,QC2KlB,QD1KK,oBAAU,QC3ElB,QD4EQ,oBAAU,QC7ElB,QD8EW,uBACF,qBAAU,QClElB,QDmEa,0BAAU,QC+kBlB,QD9kBS,2BAAU,QC4HlB,QD3HK,wBAAU,QCTlB,QDUD,eAAU,QC2QlB,QDzQS,gBADC,iBACS,QC6ClB,QD5CY,oBAAU,QCkDlB,QDjDW,uBAAU,QCsiBlB,QDriBU,yBAAU,QCoiBlB,QDniBI,qBAAU,QC2elB,QD1eM,mBAAU,QC8NlB,QD7NS,oBAAU,QCoclB,QDnce,2BAAU,QCuRlB,QDtRG,sBAAU,QC6hBlB,QD5hBW,yBAAU,QCsGlB,QDrGE,mBAAU,QC8blB,QD7bO,kBAAU,QCqjBlB,QDpjBe,yBAAU,QCgLlB,QD/KC,kBAAU,QCukBlB,QDtkBS,mBAAU,QCqQlB,QDpQM,iBAAU,QCiWlB,QDhWW,oBAAU,QC2dlB,QD1dU,sBAAU,QCjDlB,QDkDU,wBAAU,QC+VlB,QD9VG,mBAAU,QCsjBlB,QDrjBW,sBACF,oBAAU,QCgGlB,QD/FM,kBAAU,QCoKlB,QDnKQ,kBAAU,QC0jBlB,QDzjBa,uBAAU,QCoClB,QDnCC,gBACD,eAAU,QC+YlB,QD9YU,iBAAU,QCoMlB,QDnMW,oBAAU,QCrDlB,QDsDI,gBAAU,QChFlB,QDiFe,uBAAU,QCrBlB,QDsBS,wBAAU,QCoLlB,QDnLO,uBAAU,QCkLlB,QDjLM,qBAAU,QCmLlB,QDlLU,uBAAU,QC+KlB,QD9Kc,6BAAU,QCrIlB,QDsIS,8BAAU,QCjIlB,QDkIK,2BAAU,QCjIlB,QDkIU,6BAAU,QCzIlB,QD0IJ,iBAAU,QC2JlB,QD1JS,kBAAU,QC6lBlB,QD5lBO,iBAAU,QCqelB,QDpeS,kBAAU,QCyGlB,QDxGW,qBAAU,QCzElB,QD0ES,sBAAU,QClIlB,QDmIG,iBACA,iBAAU,QCijBlB,QDhjBQ,iBACD,gBAAU,QC4OlB,QD3OS,iBAAU,QCdlB,QDeQ,iBAAU,QC0GlB,QDzGM,eACK,oBAAU,QC6XlB,QD5XI,gBACG,mBAAU,QC2FlB,QD1FU,qBAAU,QC6SlB,QD3SO,oBADJ,gBACc,QCqGlB,QDpGM,kBAAU,QCgblB,QD7aM,gBAFG,mBACA,mBACO,QClIlB,QDmIW,mBAAU,QCsOlB,QDrOQ,mBAAU,QCoOlB,QDnOc,yBAAU,QC+blB,QD9bI,qBAAU,QC2gBlB,QD1gBI,iBAAU,QCuclB,QDtcQ,iBAAU,QCyOlB,QDxOQ,iBAAU,QC6flB,QD5fY,qBAAU,QCmTlB,QDlTe,4BAAU,QCoTlB,QDnTU,8BAAU,QCgIlB,QD/HC,uBAAU,QC4HlB,QD3HE,iBAAU,QCqQlB,QDpQa,sBAAU,QCpFlB,QDqFM,oBAAU,QC9ElB,QD+EU,sBAAU,QCrFlB,QDsFS,uBAAU,QCrFlB,QDsFI,mBAAU,QChClB,QDkCK,gBADI,oBACM,QC0YlB,QDxYa,qBADA,qBACU,QC8YlB,QD5YO,oBADD,mBACW,QC2YlB,QD1YQ,oBAAU,QCUlB,QDTQ,oBAAU,QCuMlB,QDtMW,uBACP,gBAAU,QCqflB,QDnfS,iBADA,iBACU,QCoFlB,QDnFY,qBACC,sBAAU,QC+alB,QD9aO,qBAAU,QC7ClB,QD8CS,sBAAU,QC1ClB,QD4CE,gBADC,iBACS,QCpIlB,QDqIW,mBAAU,QC6WlB,QD5WS,oBAAU,QCyelB,QDveS,qBADJ,iBACc,QCrElB,QDsEU,uBAAU,QCqLlB,QDpLK,oBAAU,QCGlB,QDFc,0BAAU,QCnElB,QDoEM,wBAAU,QCnElB,QDoEG,mBAAU,QCiflB,QDhfY,uBAAU,QC8YlB,QD7YK,oBAAU,QCyZlB,QDxZM,kBAAU,QC9JlB,QD+JQ,kBAAU,QClElB,QDmES,mBAAU,QC1ClB,QD2CY,uBAAU,QC8BlB,QD7BO,sBAAU,QC1IlB,QD2IQ,sBAAU,QCsHlB,QDrHO,qBAAU,QCrOlB,QDsOK,kBAAU,QC4MlB,QD3Ma,uBAAU,QCUlB,QDTC,gBAAU,QC3KlB,QD4KY,oBAAU,QCuFlB,QDtFW,uBAAU,QC2QlB,QD1Qc,6BAAU,QCrOlB,QDsOS,8BAAU,QCrOlB,QDsOK,2BAAU,QCrOlB,QDsOU,6BAAU,QCzOlB,QD0OC,sBAAU,QCrOlB,QDsOS,uBAAU,QCrOlB,QDsOK,oBAAU,QCrOlB,QDsOU,sBAAU,QCzOlB,QD0OK,mBAAU,QCpDlB,QDqDO,kBAAU,QC4IlB,QD3IQ,kBAAU,QCwYlB,QDvYc,wBACN,kBAAU,QCuMlB,QDtMU,oBAAU,QCzGlB,QD0GU,sBAAU,QCyQlB,QDxQS,uBAAU,QCyQlB,QDxQI,mBAAU,QC+VlB,QD9VO,kBAAU,QC9GlB,QD+GY,sBACL,iBAAU,QCoRlB,QDnRa,sBAAU,QC+ClB,QD9CM,oBAAU,QCmBlB,QDlBa,yBAAU,QCoBlB,QDnBE,mBAAU,QCqUlB,QDpUQ,mBAAU,QC2BlB,QD1BM,iBAAU,QCgLlB,QD/KU,mBAAU,QC2BlB,QD1BW,sBAAU,QCuHlB,QDtHI,kBAAU,QCMlB,QDLgB,0BAAU,QCIlB,QDHE,oBAAU,QC6XlB,QD5XI,gBAAU,QChHlB,QDiHkB,0BACL,qBAAU,QCuQlB,QDtQc,2BACD,0BACH,uBAAU,QCsVlB,QDrVW,0BAAU,QCwIlB,QDvIF,gBAAU,QChGlB,QDiGa,qBAAU,QCvHlB,QDyHW,wBADN,kBACgB,QCtJlB,QDuJI,oBAAU,QCyOlB,QDxOI,gBAAU,QC0FlB,QDzFe,uBAAU,QC1DlB,QD2DQ,uBAAU,QCkWlB,QDjWM,qBAAU,QC4VlB,QD3VK,kBAAU,QClElB,QDmEc,wBAAU,QCgOlB,QD/NM,sBAAU,QC2JlB,QD1Jc,4BAAU,QC2JlB,QD1JF,kBAAU,QCsRlB,QDrRY,sBAAU,QC5LlB,QD6Le,6BAAU,QCxBlB,QDyBH,kBAAU,QCuPlB,QDtPQ,kBAAU,QC6IlB,QD5IqB,+BAAU,QC9JlB,QD+JS,gCAAU,QC9JlB,QD+JK,6BAAU,QC9JlB,QD+JU,+BAAU,QClKlB,QDmKN,iBAAU,QC8DlB,QD7DO,gBAAU,QCrHlB,QDsHU,kBAAU,QCvSlB,QDwSY,sBAAU,QC2ZlB,QD1ZM,oBAAU,QChNlB,QDiNU,sBAAU,QC7FlB,QD8FQ,sBAAU,QC7FlB,QD8FQ,sBAAU,QC+OlB,QD9OS,uBAAU,QCiMlB,QDhMG,kBAAU,QC6WlB,QD5Wc,wBAAU,QC0IlB,QDzIU,0BAAU,QC0IlB,QDzIE,oBAAU,QCqFlB,QDpFU,sBAAU,QCmFlB,QDlFU,wBAAU,QCnLlB,QDoLS,yBAAU,QC0KlB,QDzKe,gCAAU,QCpFlB,QDqFA,wBAAU,QCwPlB,QDvPG,mBAAU,QCjJlB,QDmJoB,+BADR,uBACkB,QC/MlB,QDiNM,6BADR,qBACkB,QC9MlB,QDgNW,gCADR,wBACkB,QCjNlB,QDmNT,eADC,gBACS,QCvGlB,QDwGQ,eAAU,QChClB,QDiCW,kBACH,eAAU,QCqYlB,QDnYQ,eADE,iBACQ,QC4ClB,QD3CQ,eAGA,eAFA,eACA,eACU,QCgDlB,QD9CW,kBACH,eAFE,iBAEQ,QCiNlB,QD/MQ,eADA,eACU,QC+ClB,QD9CY,mBACJ,eAAU,QC3PlB,QD4PS,gBAAU,QChGlB,QDiGa,qBAAU,QCpFlB,QDqFa,0BAAU,QC0PlB,QDzPS,2BAAU,QC0PlB,QDzPQ,2BAAU,QC0PlB,QDzPS,4BAAU,QC0PlB,QDzPQ,4BAAU,QC6PlB,QD5PS,6BAAU,QC6PlB,QD5PA,qBAAU,QCkUlB,QDjUU,uBAAU,QC8TlB,QD7TW,0BAAU,QCyalB,QDxaC,mBAAU,QCsalB,QDraK,gBAAU,QC2ZlB,QD1Ze,uBAAU,QC2ZlB,QD1ZS,wBAAU,QCoalB,QDnaG,mBAAU,QCxJlB,QDyJe,0BAAU,QC8PlB,QD7PG,qBAAU,QCgBlB,QDfK,kBAAU,QCpFlB,QDqFK,eAAU,QC3WlB,QD4Wc,qBAAU,QC/RlB,QDgSe,4BAAU,QC/RlB,QDgSF,kBAAU,QC+UlB,QD9Ue,yBAAU,QC+UlB,QD9UU,2BAAU,QCgDlB,QD/CM,yBAAU,QCkDlB,QDjDU,2BAAU,QC+ClB,QD9CS,4BAAU,QC+ClB,QD9CH,iBAAU,QCjWlB,QDkWU,mBAAU,QCmYlB,QDlYQ,mBAAU,QC7WlB,QD8WM,iBAAU,QCkClB,QDjCW,oBAAU,QC5KlB,QD6KK,iBAAU,QCgNlB,QD/Ma,sBAAU,QCxFlB,QDyFI,kBAAU,QC4TlB,QD3TQ,kBAAU,QCtIlB,QDuIM,gBAAU,QC6ClB,QD5CU,kBACE,oBAAU,QC5DlB,QD6DK,iBAAU,QC8PlB,QD7PS,kBAAU,QCuElB,QDtES,mBAAU,QC9WlB,QD+WI,eAAU,QCtSlB,QDuSO,cAAU,QCiWlB,QDhWW,iBAAU,QCuWlB,QDtWS,kBAAU,QC+IlB,QD9IW,qBAAU,QCkFlB,QDjFa,0BAAU,QC6NlB,QD5Nc,gCAAU,QC/WlB,QDgXO,+BAAU,QCjXlB,QDmXQ,+BADR,uBACkB,QCzRlB,QD0RC,wBAAU,QCnMlB,QDoMM,sBAAU,QCiWlB,QDhWU,wBAAU,QCoVlB,QDlVD,eADS,wBACC,QC0SlB,QDzSkB,yBAAU,QC0GlB,QDzGQ,yBAAU,QC4MlB,QD3MA,iBAAU,QCsLlB,QDrLkB,2BAAU,QCzLlB,QD0LE,qBAAU,QCoWlB,QDnWK,kBAAU,QC8DlB,QD5DM,gBADO,uBAED,sBAAU,QC8SlB,QD5SY,0BADF,wBACY,QC1FlB,QD2FD,iBAAU,QCsWlB,QDrWS,kBAAU,QClGlB,QDmGQ,kBAAU,QCgHlB,QD/Ge,yBAAU,QCiHlB,QDhHa,8BAAU,QCyNlB,QDxNC,uBAAU,QCuNlB,QDtNM,qBAAU,QC/NlB,QDgOG,gBAAU,QC5NlB,QD6NiB,yBAAU,QC2ElB,QD1ES,0BAAU,QCyElB,QDxEA,kBAAU,QCvNlB,QDwNQ,kBAAU,QCzClB,QD0CU,oBAAU,QCpClB,QDqCG,eAAU,QCtLlB,QDuLa,oBAAU,QC7UlB,QD8UK,iBAAU,QC1RlB,QD2RM,eAAU,QCsDlB,QDrDU,iBAAU,QCmLlB,QDlLO,gBAAU,QCrPlB,QDsPS,iBAAU,QCrPlB,QDsPU,mBAAU,QC7WlB,QD8We,0BAAU,QC7WlB,QD8WD,iBAAU,QC0LlB,QDzLe,wBAAU,QC0LlB,QDzLG,mBAAU,QCyFlB,QDxFW,sBACP,eAAU,QCzUlB,QD0UQ,eACC,gBAAU,QC+MlB,QD9MQ,gBAAU,QC4PlB,QD3PW,mBAAU,QCuKlB,QDtKW,sBAAU,QCtPlB,QDuPQ,sBAAU,QCiKlB,QDhKM,oBAAU,QC9PlB,QD+PU,sBAAU,QC/LlB,QDgMS,uBAAU,QCxLlB,QDyLS,wBAAU,QCrMlB,QDsMa,6BAAU,QC/LlB,QDkMG,wBAFA,wBACE,0BACQ,QCxMlB,QD0MU,0BADJ,sBACc,QC9MlB,QDgNM,wBADA,wBACU,QC/MlB,QDgNQ,wBACA,wBAAU,QCpMlB,QDqMO,uBAAU,QCjNlB,QDkNC,gBAAU,QCuRlB,QDtRW,mBAAU,QC5SlB,QD6SS,oBAAU,QC9ElB,QD+ES,qBACA,qBAGA,qBAFC,sBACH,mBACY,QCnElB,QDoEa,0BAAU,QC/TlB,QDgUJ,cAEG,iBADK,sBACK,QCqDlB,QDnDS,kBADJ,cACc,QCnQlB,QDoQY,sBAAU,QCzKlB,QD0KC,eAAU,QC3KlB,QD8KgB,uBAFQ,+BACV,qBACY,QCxJlB,QDyJU,yBAAU,QC2KlB,QD1KH,cAAU,QCiClB,QDhCY,kBACA,kBAAU,QC0QlB,QDxQa,uBADP,gBACiB,QCVlB,QDYU,yBADP,kBACiB,QCXlB,QDYE,mBAAU,QC1IlB,QD2IY,uBAAU,QClVlB,QDmVG,kBAAU,QCjJlB,QDkJW,qBAAU,QCblB,QDcM,mBAAU,QC+FlB,QD9FU,qBAAU,QCuElB,QDtEe,4BAAU,QCuElB,QDtEJ,gBAAU,QCzZlB,QD2ZY,oBADK,yBACK,QC5MlB,QD6MG,eAAU,QC0MlB,QDzMe,sBAAU,QCxalB,QDyaE,gBAAU,QCIlB,QDHc,sBAAU,QCuFlB,QDtFI,kBAAU,QC2MlB,QD1MM,gBAAU,QC+QlB,QD9Qe,uBAAU,QCzClB,QD0CC,gBAAU,QCwPlB,QDvPc,sBAAU,QCrZlB,QDsZI,kBAAU,QCvBlB,QDwBe,yBAAU,QC3LlB,QD4LE,mBAAU,QC5XlB,QD6Xc,yBAAU,QChYlB,QDiYM,uBAAU,QCnYlB,QDoYI,mBAAU,QCtYlB,QDuYU,qBAAU,QClYlB,QDmYQ,qBAAU,QClYlB,QDmYS,sBAAU,QC3blB,QD4bU,wBAAU,QC3blB,QD4bC,iBAAU,QC+KlB,QD9KY,qBAAU,QCnVlB,QDoVC,cAAU,QC9dlB,QD+dgB,sBAAU,QC5RlB,QD6RS,uBAAU,QC/ClB,QDgDU,yBAAU,QC9blB,QD+bK,sBAAU,QCtflB,QDufO,qBAAU,QC/BlB,QDgCS,sBAAU,QCzHlB,QD0HI,kBAAU,QCvIlB,QDwIe,yBAAU,QCvIlB,QDwIK,sBAAU,QC4JlB,QD3JO,qBAAU,QC4JlB,QD3JM,mBAAU,QCxclB,QDycI,eAAU,QCjblB,QDkbY,mBAAU,QCvJlB,QDwJU,qBAAU,QC3gBlB,QD4gBC,cAAU,QC7ZlB,QDgaS,eAFG,kBACA,kBACO,QCzKlB,QD0Ka,oBAAU,QCpGlB,QDqGU,sBAAU,QCxblB,QDybY,0BAAU,QC5WlB,QD6WE,oBAAU,QC9VlB,QD+VQ,oBAAU,QC9PlB,QD+PO,mBAAU,QCrJlB,QDsJO,kBAAU,QCelB,QDdc,wBAAU,QC2BlB,QD1BO,uBAAU,QCoClB,QDnCK,oBAAU,QCqClB,QDpCS,qBAAU,QC5alB,QD6ac,2BAAU,QC9alB,QD+aA,mBAAU,QC/VlB,QDgWK,gBAAU,QCoBlB,QDnBe,uBAAU,QC8KlB,QD7KO,sBAAU,QC/FlB,QDgGS,uBAAU,QC6ElB,QD5EM,qBAAU,QC9MlB,QD+MI,iBAAU,QC+KlB,QD9KO,gBAAU,QC7HlB,QD8HW,mBAAU,QCnHlB,QDoHS,oBACG,uBAAU,QCkIlB,QDjIY,2BAAU,QCkIlB,QDjIK,wBAAU,QC0KlB,QDzKO,uBAAU,QClIlB,QDmIO,sBAAU,QCyKlB,QDxKS,uBAAU,QCnIlB,QDoIU,yBAAU,QClIlB,QDmIQ,yBAAU,QCpIlB,QDqIC,kBAAU,QC1GlB,QD2GY,sBAAU,QC7QlB,QD8Qe,6BAAU,QC1UlB,QD2UE,uBAAU,QCzElB,QD0EK,oBAAU,QCkLlB,QDjLM,kBAAU,QCXlB,QDYW,qBAAU,QCuJlB,QDtJS,sBAAU,QCwJlB,QDtJC,eADE,iBACQ,QC/flB,QDggBY,mBAAU,QC4JlB,QD3JM,iBAAU,QC8GlB,QD7GS,kBAAU,QCwDlB,QDvDQ,kBAAU,QC9IlB,QDgJc,wBADV,cACoB,QC0LlB,QDzLS,yBAAU,QCjHlB,QDkHG,oBAAU,QCrHlB,QDsHY,wBAAU,QCnWlB,QDoWK,qBAEG,wBADL,mBACe,QC/gBlB,QDghBK,qBACa,kCAAU,QC9gBlB,QD+gBL,qBACG,wBAAU,QClhBlB,QDmhBK,qBACM,2BAAU,QCnhBlB,QDohBE,qBACI,yBAAU,QCxhBlB,QDyhBQ,yBAAU,QC3IlB,QD4IG,oBAAU,QC3OlB,QD4OY,wBAAU,QCxIlB,QDyIU,0BAAU,QCxIlB,QDyIK,uBAAU,QCwBlB,QDvBU,yBAAU,QCwBlB,QDvBC,kBAAU,QC/dlB,QDgegB,0BAAU,QClelB,QDmeD,iBAAU,QCpclB,QDqcgB,yBAAU,QCljBlB,QDmjBM,uBAAU,QCxPlB,QDyPQ,uBACI,2BAAU,QCzPlB,QD0PI,uBACG,0BAAU,QC7PlB,QD8PK,uBACE,yBAAU,QChQlB,QDiQI,qBAAU,QCrQlB,QDsQU,uBACA,uBAAU,QCxRlB,QD0RS,wBADD,uBACW,QC7RlB,QD8RW,2BAAU,QC1RlB,QD2RM,yBAAU,QCpSlB,QDqSO,wBAAU,QC3RlB,QD4RU,0BAAU,QC/RlB,QDgSM,wBAAU,QCjSlB,QDkSK,qBAAU,QC+DlB,QD9DS,sBAAU,QC/FlB,QDgGc,4BAAU,QC/blB,QDgcN,cAAU,QCtUlB,QDuUe,qBAAU,QCtUlB,QDuUU,uBAAU,QCkElB,QDjEU,yBAAU,QCrKlB,QDsKe,gCAAU,QCrKlB,QDsKF,sBAAU,QC5UlB,QD6US,uBAAU,QCwHlB,QDvHG,kBAAU,QCnFlB,QDoFQ,kBAAU,QCzelB,QD0eS,mBAAU,QC9WlB,QD+WM,iBAAU,QCxKlB,QDyKoB,6BAAU,QCpQlB,QDsQC,sBADR,cACkB,QCSlB,QDRI,kBAAU,QCjdlB,QDkdO,iBAAU,QCzoBlB,QD0oBS,kBAAU,QC/nBlB,QDgoBiB,2BAAU,QC3hBlB,QD4hBS,4BAAU,QC9hBlB,QD+hBQ,4BAAU,QC5hBlB,QD6hBQ,4BAAU,QCjiBlB,QDkiBA,oBAAU,QCpRlB,QDqRO,mBAAU,QC5NlB,QD6NU,qBAAU,QC5NlB,QD6NI,iBAAU,QC/NlB,QDgOM,eAAU,QClOlB,QDmOe,sBAAU,QCpelB,QDqeU,wBAAU,QCpelB,QDqeC,iBAAU,QCtSlB,QDuSQ,iBAAU,QCiFlB,QDhFY,qBAAU,QClkBlB,QDmkBQ,qBAAU,QCrXlB,QDsXW,wBAAU,QCpIlB,QDqIA,gBAAU,QCpclB,QDqcmB,2BAAU,QChelB,QDieC,oBAAU,QCpflB,QDqfI,gBAAU,QClNlB,QDmNgB,wBAAU,QC1XlB,QD2XD,eAAU,QCoDlB,QDnDiB,wBAAU,QC3JlB,QD4JI,oBAAU,QCzNlB,QD0NM,kBAAU,QClHlB,QDmHc,wBAAU,QC7LlB,QD8LU,0BAAU,QC7LlB,QD8LK,uBAAU,QC3ClB,QD4CU,yBAAU,QC3ClB,QD4CO,wBAAU,QCrGlB,QDsGW,2BAAU,QCrGlB,QDsGA,mBAAU,QC7UlB,QD8UU,qBAAU,QCnlBlB,QDolBU,uBAAU,QCnlBlB,QDolBI,mBAAU,QC/LlB,QDgMO,kBAAU,QClXlB,QDmXY,sBAAU,QCkFlB,QDjFK,mBAAU,QCmFlB,QDlFO,kBAAU,QC9clB,QD+ckB,4BAAU,QC2BlB,QD1BM,0BAAU,QCmElB,QDlEW,6BAAU,QCxKlB,QDyKJ,iBAAU,QC9lBlB,QD+lBoB,6BAAU,QCtoBlB,QDuoBW,gCAAU,QCqDlB,QDpDL,mBAAU,QCxlBlB,QDylB4B,uCAAU,QC5oBlB,QD8oBgB,+CADnB,4BAC6B,QC9qBlB,QDirBvB,gBAFI,oBACO,2BACD,QCvflB,QDwfS,iBAAU,QChYlB,QDiYU,mBAAU,QChYlB,QDkYc,yBADN,mBACgB,QC1HlB,QD2HK,sBAAU,QCzRlB,QD0RI,kBAAU,QCiClB,QDhCe,yBAAU,QCiClB,QDhCG,oBAAU,QClHlB,QDmHc,0BAAU,QClHlB,QDmHS,2BAAU,QClHlB,QDmHG,sBAAU,QCrNlB,QDsNS,uBAAU,QCpblB,QDqbE,iBAAU,QCmElB,QDlEY,qBAAU,QCpDlB,QDqDiB,8BACE,gCAAU,QCzYlB,QD0YV,cACU,wBAAU,QC7alB,QD8aO,uBAAU,QCtXlB,QDuXU,yBAAU,QClflB,QDmfU,2BAAU,QClflB,QDmfD,kBAAU,QCtTlB,QDuTc,wBAAU,QCptBlB,QDqtBU,0BAAU,QCptBlB,QDstBM,wBADP,iBACiB,QCrtBlB,QDutBU,0BADP,mBACiB,QCttBlB,QDutBK,uBAAU,QCJlB,QDKU,yBAAU,QCJlB,QDKC,kBAAU,QCHlB,QDIU,oBAAU,QC3WlB,QD4We,2BACR,mBAAU,QC5WlB,QD6WkB,6BACR,qBAAU,QC7WlB,QD8WI,iBAAU,QCtNlB,QDuNiB,0BAAU,QC3blB,QD4bE,oBAAU,QCtFlB,QDuFa,yBAEG,4BADL,uBACe,QCxElB,QDyEK,yBACa,sCAAU,QCvElB,QDwEL,yBACG,4BAAU,QC3ElB,QD4EK,yBACM,+BAAU,QC5ElB,QD6EE,yBACI,6BAAU,QCjFlB,QDkFH,kBAAU,QC3KlB,QD8KM,gBAFG,mBACJ,eACW,QCzrBlB,QD0rBW,mBAAU,QClPlB,QDmPgB,2BAAU,QCKlB,QDJQ,2BAAU,QCKlB,QDJO,0BAAU,QCKlB,QDJS,2BACH,wBAAU,QCDlB,QDEa,6BACH,0BAAU,QCFlB,QDGE,oBAAU,QCxsBlB,QDysBI,gBAAU,QCpblB,QDqbQ,gBAAU,QC1hBlB,QD2hBQ,gBAAU,QCxYlB,QDyYW,mBAAU,QC/OlB,QDgPQ,mBAAU,QCziBlB,QD0iBU,qBAAU,QCjUlB,QDkUU,uBAAU,QC7KlB,QD8KQ,uBAAU,QChIlB,QDiIO,sBAAU,QCJlB,QDKI,kBAAU,QCxUlB,QCzchB,SJ8BE,SAAA,SACA,MAAA,IACA,OAAA,IACA,QAAA,EACA,OAAA,KACA,SAAA,OACA,KAAM,cACN,OAAA,EvEoGC,0BACA,yBACC,SAAA,OACA,MA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"}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/patternfly/dist/css/patternfly-additions.css b/themes/src/main/node_modules/patternfly/dist/css/patternfly-additions.css
index 3c45659..76c8f8b 100644
--- a/themes/src/main/node_modules/patternfly/dist/css/patternfly-additions.css
+++ b/themes/src/main/node_modules/patternfly/dist/css/patternfly-additions.css
@@ -3518,6 +3518,74 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
   opacity: 0.9;
   filter: alpha(opacity=90);
 }
+.layout-pf-fixed .navbar-pf-vertical.navbar-pf-contextselector {
+  z-index: 1040;
+}
+.navbar-pf-vertical .nav.contextselector-pf {
+  border-left: 1px solid #4d5258;
+}
+@media (min-width: 768px) {
+  .navbar-pf-vertical .nav.contextselector-pf {
+    margin-left: 10px;
+  }
+}
+.navbar-pf-vertical .nav.contextselector-pf .nav-item-iconic {
+  padding: 23px 20px 18px 10px;
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-align: center;
+      align-items: center;
+}
+.contextselector-pf {
+  float: left;
+}
+.contextselector-pf-title {
+  width: 170px;
+  white-space: nowrap;
+  display: inline-block;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  line-height: normal;
+}
+@media (min-width: 480px) {
+  .contextselector-pf-title {
+    width: 210px;
+  }
+}
+.contextselector-pf .dropdown.open,
+.contextselector-pf .dropdown:hover {
+  background-color: #303030;
+}
+.contextselector-pf .dropdown-menu {
+  width: 100%;
+  margin-top: 0;
+}
+.contextselector-pf .form-group {
+  margin: 0 5px 5px 5px;
+}
+@media (min-width: 768px) {
+  .contextselector-pf .contextselector-pf-list {
+    max-height: 200px;
+    overflow-y: auto;
+  }
+}
+.contextselector-pf .contextselector-pf-list li {
+  padding: 1px 10px;
+  border-width: 1px 0;
+  border-style: solid;
+  border-color: transparent;
+}
+.contextselector-pf .contextselector-pf-list li:hover {
+  background: #def3ff;
+  border-color: #bee1f4;
+}
+.contextselector-pf .contextselector-pf-list li:hover a {
+  text-decoration: none;
+}
+.contextselector-pf .contextselector-pf-list a {
+  color: #393f44;
+  display: block;
+}
 .ColVis_Button:active:focus {
   outline: none;
 }
@@ -3956,7 +4024,7 @@ fieldset[disabled] .btn-experimental-pf.active {
   content: "\e605";
 }
 .pficon-history:before {
-  content: "\e617";
+  content: "\e93b";
 }
 .pficon-home:before {
   content: "\e618";
@@ -4003,6 +4071,9 @@ fieldset[disabled] .btn-experimental-pf.active {
 .pficon-network:before {
   content: "\e909";
 }
+.pficon-network-range:before {
+  content: "\e94a";
+}
 .pficon-on:before {
   content: "\e931";
 }
@@ -4089,6 +4160,9 @@ fieldset[disabled] .btn-experimental-pf.active {
 .pficon-running:before {
   content: "\e614";
 }
+.pficon-satellite:before {
+  content: "\e94b";
+}
 .pficon-save:before {
   content: "\e601";
 }
@@ -4128,6 +4202,9 @@ fieldset[disabled] .btn-experimental-pf.active {
 .pficon-storage-domain:before {
   content: "\e90e";
 }
+.pficon-template:before {
+  content: "\e94c";
+}
 .pficon-tenant:before {
   content: "\e916";
 }
@@ -4158,6 +4235,9 @@ fieldset[disabled] .btn-experimental-pf.active {
 .pficon-unplugged:before {
   content: "\e942";
 }
+.pficon-vcenter:before {
+  content: "\e94d";
+}
 .pficon-virtual-machine:before {
   content: "\e90f";
 }
@@ -4710,6 +4790,11 @@ a.disabled {
     width: calc(75% - 40px);
   }
 }
+.list-view-pf .close {
+  float: none;
+  position: absolute;
+  right: 15px;
+}
 .list-view-pf-actions {
   float: right;
   margin-bottom: 20px;
@@ -4971,7 +5056,7 @@ a.disabled {
   margin: -1px -15px 0;
   -ms-flex-order: 3;
       order: 3;
-  padding: 10px 15px;
+  padding: 15px;
   position: relative;
   width: 100%;
 }
@@ -6475,6 +6560,7 @@ a.disabled {
 }
 .drawer-pf-notification.unread .drawer-pf-notification-message {
   font-weight: bold;
+  cursor: pointer;
 }
 .drawer-pf-notification.expanded-notification .date {
   border-right: none;
@@ -6493,9 +6579,6 @@ a.disabled {
 .expanded-notification .drawer-pf-notification-message {
   display: inline-block;
 }
-.drawer-pf-notifications-non-clickable .drawer-pf-notification:hover {
-  background-color: #fff;
-}
 .drawer-pf-title {
   background-color: #fafafa;
   border-bottom: 1px solid #d1d1d1;
diff --git a/themes/src/main/node_modules/patternfly/dist/css/patternfly-additions.css.map b/themes/src/main/node_modules/patternfly/dist/css/patternfly-additions.css.map
index 4698ed7..d7a5023 100644
--- a/themes/src/main/node_modules/patternfly/dist/css/patternfly-additions.css.map
+++ b/themes/src/main/node_modules/patternfly/dist/css/patternfly-additions.css.map
@@ -1 +1 @@
-{"version":3,"sources":["node_modules/bootstrap-slider/src/less/rules.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","node_modules/patternfly-bootstrap-combobox/less/combobox.less","node_modules/bootstrap-datepicker/less/datepicker3.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap-select/less/bootstrap-select.less","node_modules/bootstrap-switch/src/less/bootstrap3/bootstrap-switch.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap-touchspin/dist/jquery.bootstrap-touchspin.css","node_modules/c3/c3.css","node_modules/eonasdan-bootstrap-datetimepicker/src/less/_bootstrap-datetimepicker.less","node_modules/eonasdan-bootstrap-datetimepicker/src/less/bootstrap-datetimepicker-build.less","src/less/mixins.less","src/less/about-modal.less","src/less/application-launcher.less","src/less/blank-slate.less","src/less/bootstrap-combobox.less","src/less/variables.less","src/less/bootstrap-datepicker.less","src/less/bootstrap-mixin-overrides.less","src/less/bootstrap-select.less","src/less/bootstrap-slider.less","src/less/bootstrap-switch.less","src/less/bootstrap-touchspin.less","src/less/bootstrap-treeview.less","src/less/cards.less","src/less/card-view.less","src/less/charts.less","src/less/close.less","src/less/datatables.less","node_modules/bootstrap/less/mixins/reset-filter.less","src/less/experimental-features.less","src/less/filter.less","src/less/footer.less","src/less/icons.less","src/less/infotip.less","src/less/layouts.less","src/less/links.less","src/less/list-pf.less","src/less/list-view.less","node_modules/bootstrap/less/mixins/clearfix.less","src/less/list-view-dnd.less","src/less/login.less","src/less/navbar.less","node_modules/font-awesome/less/variables.less","src/less/navbar-alt.less","src/less/navbar-vertical.less","src/less/nav-vertical-alt.less","src/less/notifications-drawer.less","src/less/search.less","src/less/sidebar.less","src/less/skip-to-content.less","src/less/spinner.less","src/less/syntax-highlighting.less","src/less/table-view.less","src/less/time-picker.less","src/less/toast.less","src/less/toolbar.less","src/less/vertical-nav.less","src/less/wizard.less"],"names":[],"mappings":"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","sourcesContent":[".slider {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n\tposition: relative;\n\t&.slider-horizontal {\n\t\twidth: @slider-horizontal-width;\n\t\theight: @slider-line-height;\n\t\t.slider-track {\n\t\t\theight: (@slider-line-height/2);\n\t\t\twidth: 100%;\n\t\t\tmargin-top: (-@slider-line-height/4);\n\t\t\ttop: 50%;\n\t\t\tleft: 0;\n\t\t}\n\t\t.slider-selection, .slider-track-low, .slider-track-high {\n\t\t\theight: 100%;\n\t\t\ttop: 0;\n\t\t\tbottom: 0;\n\t\t}\n\t\t.slider-tick,\n\t\t.slider-handle {\n\t\t\tmargin-left: (-@slider-line-height/2);\n\t\t\t&.triangle {\n\t\t\t\tposition: relative;\n\t\t\t\ttop: 50%;\n\t\t\t\ttransform: translateY(-50%);\n\t\t\t\tborder-width: 0 (@slider-line-height/2) (@slider-line-height/2) (@slider-line-height/2);\n\t\t\t\twidth: 0;\n\t\t\t\theight: 0;\n\t\t\t\tborder-bottom-color: @slider-primary-bottom;\n\t\t\t\tmargin-top: 0;\n\t\t\t}\n\t\t}\n\t\t.slider-tick-container {\n\t\t\twhite-space: nowrap;\n\t\t\tposition: absolute;\n    \ttop: 0;\n    \tleft: 0;\n    \twidth: 100%;\n\t\t}\n\t\t.slider-tick-label-container {\n\t\t\twhite-space: nowrap;\n\t\t\tmargin-top: @slider-line-height;\n\n\t\t\t.slider-tick-label {\n\t\t\t\tpadding-top: @slider-line-height * .2;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\ttext-align: center;\n\t\t\t}\n\t\t}\n\t\t&.slider-rtl {\n\t\t\t.slider-track {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t\t.slider-tick,\n\t\t\t.slider-handle {\n\t\t\t\tmargin-left: initial;\n\t\t\t\tmargin-right: (-@slider-line-height/2);\n\t\t\t}\n\t\t\t.slider-tick-container {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t}\n\t}\n\t&.slider-vertical {\n\t\theight: @slider-vertical-height;\n\t\twidth: @slider-line-height;\n\t\t.slider-track {\n\t\t\twidth: (@slider-line-height/2);\n\t\t\theight: 100%;\n\t\t\tleft: 25%;\n\t\t\ttop: 0;\n\t\t}\n\t\t.slider-selection {\n\t\t\twidth: 100%;\n\t\t\tleft: 0;\n\t\t\ttop: 0;\n\t\t\tbottom: 0;\n\t\t}\n\t\t.slider-track-low, .slider-track-high {\n\t\t\twidth: 100%;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t}\n\t\t.slider-tick,\n\t\t.slider-handle {\n\t\t\tmargin-top: (-@slider-line-height/2);\n\t\t\t&.triangle {\n\t\t\t\tborder-width: (@slider-line-height/2) 0 (@slider-line-height/2) (@slider-line-height/2);\n\t\t\t\twidth: 1px;\n\t\t\t\theight: 1px;\n\t\t\t\tborder-left-color: @slider-primary-bottom;\n\t\t\t\tborder-right-color: @slider-primary-bottom;\n\t\t\t\tmargin-left: 0;\n\t\t\t\tmargin-right: 0;\n\t\t\t}\n\t\t}\n\t\t.slider-tick-label-container {\n\t\t\twhite-space: nowrap;\n\n\t\t\t.slider-tick-label {\n\t\t\t\tpadding-left: @slider-line-height * .2;\n\t\t\t}\n\t\t}\n\n\t\t&.slider-rtl {\n\t\t\t.slider-track {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 25%;\n\t\t\t}\n\t\t\t.slider-selection {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t\t.slider-tick,\n\t\t\t.slider-handle {\n\t\t\t\t&.triangle {\n\t\t\t\t\tborder-width: (@slider-line-height/2) (@slider-line-height/2) (@slider-line-height/2) 0;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.slider-tick-label-container {\n\t\t\t\t.slider-tick-label {\n\t\t\t\t\tpadding-left: initial;\n\t\t\t\t\tpadding-right: @slider-line-height * .2;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t&.slider-disabled {\n\t\t.slider-handle {\n\t\t\t#gradient > .vertical(@slider-gray-2, @slider-gray-1);\n\t\t}\n\t\t.slider-track {\n\t\t\t#gradient > .vertical(@slider-gray-3, @slider-gray-4);\n\t\t\tcursor: not-allowed;\n\t\t}\n\t}\n\tinput {\n\t\tdisplay: none;\n\t}\n\t.tooltip {\n\t\t&.top {\n\t\t\tmargin-top: -36px;\n\t\t}\n\t}\n\t.tooltip-inner {\n\t\twhite-space: nowrap;\n\t\tmax-width: none;\n\t}\n\t.hide {\n\t\tdisplay: none;\n\t}\n}\n.slider-track {\n\tposition: absolute;\n\tcursor: pointer;\n\t#gradient > .vertical(@slider-gray-5, @slider-gray-6);\n\t.box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n\tborder-radius: @border-radius-base;\n}\n.slider-selection {\n\tposition: absolute;\n\t#gradient > .vertical(@slider-gray-6, @slider-gray-5);\n\t.box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n\t.box-sizing(border-box);\n\tborder-radius: @border-radius-base;\n}\n.slider-selection.tick-slider-selection {\n\t#gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n}\n.slider-track-low, .slider-track-high {\n\tposition: absolute;\n\tbackground: transparent;\n\t.box-sizing(border-box);\n\tborder-radius: @border-radius-base;\n}\n.slider-handle {\n\tposition: absolute;\n\ttop: 0;\n\twidth: @slider-line-height;\n\theight: @slider-line-height;\n\tbackground-color: @slider-primary;\n\t#gradient > .vertical(@slider-primary-top, @slider-primary-bottom);\n\tfilter: none;\n\t.box-shadow(~\"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)\");\n\tborder: 0px solid transparent;\n\t&.round {\n\t\tborder-radius: 50%;\n\t}\n\t&.triangle {\n\t\tbackground: transparent none;\n\t}\n\t&.custom {\n\t\tbackground: transparent none;\n\t\t&::before{\n\t\t\tline-height: @slider-line-height;\n\t\t\tfont-size: 20px;\n\t\t\tcontent: '\\2605'; //unicode star character\n\t\t\tcolor: @slider-unicode-color;\n\t\t}\n\t}\n}\n.slider-tick {\n\tposition: absolute;\n\twidth: @slider-line-height;\n\theight: @slider-line-height;\n\t#gradient.vertical(@slider-gray-6, @slider-gray-5);\n\t.box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n\t.box-sizing(border-box);\n\tfilter: none;\n\topacity: 0.8;\n\tborder: 0px solid transparent;\n\t&.round {\n\t\tborder-radius: 50%;\n\t}\n\t&.triangle {\n\t\tbackground: transparent none;\n\t}\n\t&.custom {\n\t\tbackground: transparent none;\n\t\t&::before{\n\t\t\tline-height: @slider-line-height;\n\t\t\tfont-size: 20px;\n\t\t\tcontent: '\\2605'; //unicode star character\n\t\t\tcolor: @slider-unicode-color;\n\t\t}\n\t}\n\t&.in-selection {\n\t\t#gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n\t\topacity: 1;\n\t}\n}\n","// Gradients\n\n#gradient {\n\n  // Horizontal gradient, from left to right\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  // Vertical gradient, from top to bottom\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12\n    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n    background-repeat: repeat-x;\n    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n  }\n  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .radial(@inner-color: #555; @outer-color: #333) {\n    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n    background-image: radial-gradient(circle, @inner-color, @outer-color);\n    background-repeat: no-repeat;\n  }\n  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n  }\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n  -webkit-animation: @animation;\n       -o-animation: @animation;\n          animation: @animation;\n}\n.animation-name(@name) {\n  -webkit-animation-name: @name;\n          animation-name: @name;\n}\n.animation-duration(@duration) {\n  -webkit-animation-duration: @duration;\n          animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n  -webkit-animation-timing-function: @timing-function;\n          animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n  -webkit-animation-delay: @delay;\n          animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n  -webkit-animation-iteration-count: @iteration-count;\n          animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n  -webkit-animation-direction: @direction;\n          animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n  -webkit-animation-fill-mode: @fill-mode;\n          animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n  -webkit-backface-visibility: @visibility;\n     -moz-backface-visibility: @visibility;\n          backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n          box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n  -webkit-box-sizing: @boxmodel;\n     -moz-box-sizing: @boxmodel;\n          box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n  -webkit-column-count: @column-count;\n     -moz-column-count: @column-count;\n          column-count: @column-count;\n  -webkit-column-gap: @column-gap;\n     -moz-column-gap: @column-gap;\n          column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n  word-wrap: break-word;\n  -webkit-hyphens: @mode;\n     -moz-hyphens: @mode;\n      -ms-hyphens: @mode; // IE10+\n       -o-hyphens: @mode;\n          hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  // Firefox\n  &::-moz-placeholder {\n    color: @color;\n    opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n  }\n  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n  -webkit-transform: scale(@ratio);\n      -ms-transform: scale(@ratio); // IE9 only\n       -o-transform: scale(@ratio);\n          transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n  -webkit-transform: scale(@ratioX, @ratioY);\n      -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n       -o-transform: scale(@ratioX, @ratioY);\n          transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n  -webkit-transform: scaleX(@ratio);\n      -ms-transform: scaleX(@ratio); // IE9 only\n       -o-transform: scaleX(@ratio);\n          transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n  -webkit-transform: scaleY(@ratio);\n      -ms-transform: scaleY(@ratio); // IE9 only\n       -o-transform: scaleY(@ratio);\n          transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n  -webkit-transform: skewX(@x) skewY(@y);\n      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n       -o-transform: skewX(@x) skewY(@y);\n          transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n  -webkit-transform: translate(@x, @y);\n      -ms-transform: translate(@x, @y); // IE9 only\n       -o-transform: translate(@x, @y);\n          transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n  -webkit-transform: translate3d(@x, @y, @z);\n          transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees); // IE9 only\n       -o-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n  -webkit-transform: rotateX(@degrees);\n      -ms-transform: rotateX(@degrees); // IE9 only\n       -o-transform: rotateX(@degrees);\n          transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n  -webkit-transform: rotateY(@degrees);\n      -ms-transform: rotateY(@degrees); // IE9 only\n       -o-transform: rotateY(@degrees);\n          transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n  -webkit-perspective: @perspective;\n     -moz-perspective: @perspective;\n          perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n  -webkit-perspective-origin: @perspective;\n     -moz-perspective-origin: @perspective;\n          perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n  -webkit-transform-origin: @origin;\n     -moz-transform-origin: @origin;\n      -ms-transform-origin: @origin; // IE9 only\n          transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n  -webkit-transition: @transition;\n       -o-transition: @transition;\n          transition: @transition;\n}\n.transition-property(@transition-property) {\n  -webkit-transition-property: @transition-property;\n          transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n  -webkit-transition-delay: @transition-delay;\n          transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n  -webkit-transition-duration: @transition-duration;\n          transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n  -webkit-transition-timing-function: @timing-function;\n          transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n  -webkit-transition: -webkit-transform @transition;\n     -moz-transition: -moz-transform @transition;\n       -o-transition: -o-transform @transition;\n          transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n  -webkit-user-select: @select;\n     -moz-user-select: @select;\n      -ms-user-select: @select; // IE10+\n          user-select: @select;\n}\n","@media (min-width: 768px) {\n  .form-search,\n  .form-inline {\n    .combobox-container {\n      display: inline-block;\n      margin-bottom: 0;\n      vertical-align: top;\n      .input-group-addon {\n        width: auto;\n      }\n    }\n  }\n}\n\n.combobox-selected .caret {\n  display: none;\n}\n\n/* :not doesn't work in IE8 */\n.combobox-container:not(.combobox-selected) .glyphicon-remove {\n  display: none;\n}\n\n.typeahead-long {\n  max-height: 300px;\n  overflow-y: auto;\n}\n\n.control-group.error .combobox-container{\n  .add-on {\n    color: #B94A48;\n    border-color: #B94A48;\n  }\n  .caret {\n    border-top-color: #B94A48;\n  }\n}\n\n.control-group.warning .combobox-container {\n  .add-on {\n    color: #C09853;\n    border-color: #C09853;\n  }\n  .caret {\n    border-top-color: #C09853;\n  }\n}\n\n.control-group.success .combobox-container{\n  .add-on {\n    color: #468847;\n    border-color: #468847;\n  }\n  .caret {\n    border-top-color: #468847;\n  }\n}\n",".datepicker {\n\tborder-radius: @border-radius-base;\n\t&-inline {\n\t\twidth: 220px;\n\t}\n\tdirection: ltr;\n\t&-rtl {\n\t\tdirection: rtl;\n\t\t&.dropdown-menu { left: auto; }\n\t\ttable tr td span {\n\t\t\tfloat: right;\n\t\t}\n\t}\n\t&-dropdown {\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tpadding: 4px;\n\t\t&:before {\n\t\t\tcontent: '';\n\t\t\tdisplay: inline-block;\n\t\t\tborder-left:   7px solid transparent;\n\t\t\tborder-right:  7px solid transparent;\n\t\t\tborder-bottom: 7px solid @dropdown-border;\n\t\t\tborder-top:    0;\n\t\t\tborder-bottom-color: rgba(0,0,0,.2);\n\t\t\tposition: absolute;\n\t\t}\n\t\t&:after {\n\t\t\tcontent: '';\n\t\t\tdisplay: inline-block;\n\t\t\tborder-left:   6px solid transparent;\n\t\t\tborder-right:  6px solid transparent;\n\t\t\tborder-bottom: 6px solid @dropdown-bg;\n\t\t\tborder-top:    0;\n\t\t\tposition: absolute;\n\t\t}\n\t\t&.datepicker-orient-left:before   { left: 6px; }\n\t\t&.datepicker-orient-left:after    { left: 7px; }\n\t\t&.datepicker-orient-right:before  { right: 6px; }\n\t\t&.datepicker-orient-right:after   { right: 7px; }\n\t\t&.datepicker-orient-bottom:before { top: -7px; }\n\t\t&.datepicker-orient-bottom:after  { top: -6px; }\n\t\t&.datepicker-orient-top:before {\n\t\t\tbottom: -7px;\n\t\t\tborder-bottom: 0;\n\t\t\tborder-top:    7px solid @dropdown-border;\n\t\t}\n\t\t&.datepicker-orient-top:after {\n\t\t\tbottom: -6px;\n\t\t\tborder-bottom: 0;\n\t\t\tborder-top:    6px solid @dropdown-bg;\n\t\t}\n\t}\n\ttable {\n\t\tmargin: 0;\n\t\t-webkit-touch-callout: none;\n\t\t-webkit-user-select: none;\n\t\t-khtml-user-select: none;\n\t\t-moz-user-select: none;\n\t\t-ms-user-select: none;\n\t\tuser-select: none;\n\t\ttr {\n\t\t\ttd, th {\n\t\t\t\ttext-align: center;\n\t\t\t\twidth: 30px;\n\t\t\t\theight: 30px;\n\t\t\t\tborder-radius: 4px;\n\t\t\t\tborder: none;\n\t\t\t}\n\t\t}\n\t}\n\t// Inline display inside a table presents some problems with\n\t// border and background colors.\n\t.table-striped & table tr {\n\t\ttd, th {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\ttable tr td {\n\t\t&.old,\n\t\t&.new {\n\t\t\tcolor: @btn-link-disabled-color;\n\t\t}\n\t\t&.day:hover,\n\t\t&.focused {\n\t\t\tbackground: @gray-lighter;\n\t\t\tcursor: pointer;\n\t\t}\n\t\t&.disabled,\n\t\t&.disabled:hover {\n\t\t\tbackground: none;\n\t\t\tcolor: @btn-link-disabled-color;\n\t\t\tcursor: default;\n\t\t}\n\t\t&.highlighted {\n\t\t\t@highlighted-bg: @state-info-bg;\n\t\t\t.button-variant(#000, @highlighted-bg, darken(@highlighted-bg, 20%));\n\t\t\tborder-radius: 0;\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@highlighted-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @highlighted-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.today {\n\t\t\t@today-bg: lighten(orange, 30%);\n\t\t\t.button-variant(#000, @today-bg, darken(@today-bg, 20%));\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@today-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @today-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range {\n\t\t\t@range-bg: @gray-lighter;\n\t\t\t.button-variant(#000, @range-bg, darken(@range-bg, 20%));\n\t\t\tborder-radius: 0;\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@range-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range.highlighted {\n\t\t\t@range-highlighted-bg: mix(@state-info-bg, @gray-lighter, 50%);\n\t\t\t.button-variant(#000, @range-highlighted-bg, darken(@range-highlighted-bg, 20%));\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@range-highlighted-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-highlighted-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range.today {\n\t\t\t@range-today-bg: mix(orange, @gray-lighter, 50%);\n\t\t\t.button-variant(#000, @range-today-bg, darken(@range-today-bg, 20%));\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-today-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.selected,\n\t\t&.selected.highlighted {\n\t\t\t.button-variant(#fff, @gray-light, @gray);\n\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t}\n\t\t&.active,\n\t\t&.active.highlighted {\n\t\t\t.button-variant(@btn-primary-color, @btn-primary-bg, @btn-primary-border);\n\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t}\n\t\tspan {\n\t\t\tdisplay: block;\n\t\t\twidth: 23%;\n\t\t\theight: 54px;\n\t\t\tline-height: 54px;\n\t\t\tfloat: left;\n\t\t\tmargin: 1%;\n\t\t\tcursor: pointer;\n\t\t\tborder-radius: 4px;\n\t\t\t&:hover,\n\t\t\t&.focused {\n\t\t\t\tbackground: @gray-lighter;\n\t\t\t}\n\t\t\t&.disabled,\n\t\t\t&.disabled:hover {\n\t\t\t\tbackground: none;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t\tcursor: default;\n\t\t\t}\n\t\t\t&.active,\n\t\t\t&.active:hover,\n\t\t\t&.active.disabled,\n\t\t\t&.active.disabled:hover {\n\t\t\t\t.button-variant(@btn-primary-color, @btn-primary-bg, @btn-primary-border);\n\t\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t\t}\n\t\t\t&.old,\n\t\t\t&.new {\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t}\n\n\t.datepicker-switch {\n\t\twidth: 145px;\n\t}\n\n\t.datepicker-switch,\n\t.prev,\n\t.next,\n\ttfoot tr th {\n\t\tcursor: pointer;\n\t\t&:hover {\n\t\t\tbackground: @gray-lighter;\n\t\t}\n\t}\n\n\t.prev, .next {\n\t\t&.disabled {\n\t\t\tvisibility: hidden;\n\t\t}\n\t}\n\n\t// Basic styling for calendar-week cells\n\t.cw {\n\t\tfont-size: 10px;\n\t\twidth: 12px;\n\t\tpadding: 0 2px 0 5px;\n\t\tvertical-align: middle;\n\t}\n}\n.input-group.date .input-group-addon {\n\tcursor: pointer;\n}\n.input-daterange {\n\twidth: 100%;\n\tinput {\n\t\ttext-align: center;\n\t}\n\tinput:first-child {\n\t\tborder-radius: 3px 0 0 3px;\n\t}\n\tinput:last-child {\n\t\tborder-radius: 0 3px 3px 0;\n\t}\n\t.input-group-addon {\n\t\twidth: auto;\n\t\tmin-width: 16px;\n\t\tpadding: 4px 5px;\n\t\tline-height: @line-height-base;\n\t\ttext-shadow: 0 1px 0 #fff;\n\t\tborder-width: 1px 0;\n\t\tmargin-left: -5px;\n\t\tmargin-right: -5px;\n\t}\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n  color: @color;\n  background-color: @background;\n  border-color: @border;\n\n  &:focus,\n  &.focus {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 25%);\n  }\n  &:hover {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n\n    &:hover,\n    &:focus,\n    &.focus {\n      color: @color;\n      background-color: darken(@background, 17%);\n          border-color: darken(@border, 25%);\n    }\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    background-image: none;\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: @background;\n          border-color: @border;\n    }\n  }\n\n  .badge {\n    color: @background;\n    background-color: @color;\n  }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n}\n","@import \"variables\";\n\n// Mixins\n.cursor-disabled() {\n  cursor: not-allowed;\n}\n\n// Rules\nselect.bs-select-hidden,\nselect.selectpicker {\n  display: none !important;\n}\n\n.bootstrap-select {\n  width: 220px \\0; /*IE9 and below*/\n\n  // The selectpicker button\n  > .dropdown-toggle {\n    width: 100%;\n    padding-right: 25px;\n    z-index: 1;\n\n    &.bs-placeholder,\n    &.bs-placeholder:hover,\n    &.bs-placeholder:focus,\n    &.bs-placeholder:active { color: @input-color-placeholder; }\n  }\n\n  > select {\n    position: absolute !important;\n    bottom: 0;\n    left: 50%;\n    display: block !important;\n    width: 0.5px !important;\n    height: 100% !important;\n    padding: 0 !important;\n    opacity: 0 !important;\n    border: none;\n\n    &.mobile-device {\n      top: 0;\n      left: 0;\n      display: block !important;\n      width: 100% !important;\n      z-index: 2;\n    }\n  }\n\n  // Error display\n  .has-error & .dropdown-toggle,\n  .error & .dropdown-toggle {\n    border-color: @color-red-error;\n  }\n\n  &.fit-width {\n    width: auto !important;\n  }\n\n  &:not([class*=\"col-\"]):not([class*=\"form-control\"]):not(.input-group-btn) {\n    width: @width-default;\n  }\n\n  .dropdown-toggle:focus {\n    outline: thin dotted #333333 !important;\n    outline: 5px auto -webkit-focus-ring-color !important;\n    outline-offset: -2px;\n  }\n}\n\n.bootstrap-select.form-control {\n  margin-bottom: 0;\n  padding: 0;\n  border: none;\n\n  &:not([class*=\"col-\"]) {\n    width: 100%;\n  }\n\n  &.input-group-btn {\n    z-index: auto;\n\n    &:not(:first-child):not(:last-child) {\n      > .btn {\n        border-radius: 0;\n      }\n    }\n  }\n}\n\n// The selectpicker components\n.bootstrap-select.btn-group {\n  &:not(.input-group-btn),\n  &[class*=\"col-\"] {\n    float: none;\n    display: inline-block;\n    margin-left: 0;\n  }\n\n  // Forces the pull to the right, if necessary\n  &,\n  &[class*=\"col-\"],\n  .row &[class*=\"col-\"] {\n    &.dropdown-menu-right {\n      float: right;\n    }\n  }\n\n  .form-inline &,\n  .form-horizontal &,\n  .form-group & {\n    margin-bottom: 0;\n  }\n\n  .form-group-lg &.form-control,\n  .form-group-sm &.form-control {\n    padding: 0;\n\n    .dropdown-toggle {\n      height: 100%;\n      font-size: inherit;\n      line-height: inherit;\n      border-radius: inherit;\n    }\n  }\n\n  // Set the width of the live search (and any other form control within an inline form)\n  // see https://github.com/silviomoreto/bootstrap-select/issues/685\n  .form-inline & .form-control {\n    width: 100%;\n  }\n\n  &.disabled,\n  > .disabled {\n    .cursor-disabled();\n\n    &:focus {\n      outline: none !important;\n    }\n  }\n\n  &.bs-container {\n    position: absolute;\n    height: 0 !important;\n    padding: 0 !important;\n    \n    .dropdown-menu {\n      z-index: @zindex-select-dropdown;\n    }\n  }\n\n  // The selectpicker button\n  .dropdown-toggle {\n    .filter-option {\n      display: inline-block;\n      overflow: hidden;\n      width: 100%;\n      text-align: left;\n    }\n\n    .caret {\n      position: absolute;\n      top: 50%;\n      right: 12px;\n      margin-top: -2px;\n      vertical-align: middle;\n    }\n  }\n\n  &[class*=\"col-\"] .dropdown-toggle {\n    width: 100%;\n  }\n\n  // The selectpicker dropdown\n  .dropdown-menu {\n    min-width: 100%;\n    box-sizing: border-box;\n\n    &.inner {\n      position: static;\n      float: none;\n      border: 0;\n      padding: 0;\n      margin: 0;\n      border-radius: 0;\n      box-shadow: none;\n    }\n\n    li {\n      position: relative;\n\n      &.active small {\n        color: #fff;\n      }\n\n      &.disabled a {\n        .cursor-disabled();\n      }\n\n      a {\n        cursor: pointer;\n        user-select: none;\n\n        &.opt {\n          position: relative;\n          padding-left: 2.25em;\n        }\n\n        span.check-mark {\n          display: none;\n        }\n\n        span.text {\n          display: inline-block;\n        }\n      }\n\n      small {\n        padding-left: 0.5em;\n      }\n    }\n\n    .notify {\n      position: absolute;\n      bottom: 5px;\n      width: 96%;\n      margin: 0 2%;\n      min-height: 26px;\n      padding: 3px 5px;\n      background: rgb(245, 245, 245);\n      border: 1px solid rgb(227, 227, 227);\n      box-shadow: inset 0 1px 1px fade(rgb(0, 0, 0), 5%);\n      pointer-events: none;\n      opacity: 0.9;\n      box-sizing: border-box;\n    }\n  }\n\n  .no-results {\n    padding: 3px;\n    background: #f5f5f5;\n    margin: 0 5px;\n    white-space: nowrap;\n  }\n\n  &.fit-width .dropdown-toggle {\n    .filter-option {\n      position: static;\n    }\n\n    .caret {\n      position: static;\n      top: auto;\n      margin-top: -1px;\n    }\n  }\n\n  &.show-tick .dropdown-menu li {\n    &.selected a span.check-mark {\n      position: absolute;\n      display: inline-block;\n      right: 15px;\n      margin-top: 5px;\n    }\n\n    a span.text {\n      margin-right: 34px;\n    }\n  }\n}\n\n.bootstrap-select.show-menu-arrow {\n  &.open > .dropdown-toggle {\n    z-index: (@zindex-select-dropdown + 1);\n  }\n\n  .dropdown-toggle {\n    &:before {\n      content: '';\n      border-left: 7px solid transparent;\n      border-right: 7px solid transparent;\n      border-bottom: 7px solid @color-grey-arrow;\n      position: absolute;\n      bottom: -4px;\n      left: 9px;\n      display: none;\n    }\n\n    &:after {\n      content: '';\n      border-left: 6px solid transparent;\n      border-right: 6px solid transparent;\n      border-bottom: 6px solid white;\n      position: absolute;\n      bottom: -4px;\n      left: 10px;\n      display: none;\n    }\n  }\n\n  &.dropup .dropdown-toggle {\n    &:before {\n      bottom: auto;\n      top: -3px;\n      border-top: 7px solid @color-grey-arrow;\n      border-bottom: 0;\n    }\n\n    &:after {\n      bottom: auto;\n      top: -3px;\n      border-top: 6px solid white;\n      border-bottom: 0;\n    }\n  }\n\n  &.pull-right .dropdown-toggle {\n    &:before {\n      right: 12px;\n      left: auto;\n    }\n\n    &:after {\n      right: 13px;\n      left: auto;\n    }\n  }\n\n  &.open > .dropdown-toggle {\n    &:before,\n    &:after {\n      display: block;\n    }\n  }\n}\n\n.bs-searchbox,\n.bs-actionsbox,\n.bs-donebutton {\n  padding: 4px 8px;\n}\n\n.bs-actionsbox {\n  width: 100%;\n  box-sizing: border-box;\n\n  & .btn-group button {\n    width: 50%;\n  }\n}\n\n.bs-donebutton {\n  float: left;\n  width: 100%;\n  box-sizing: border-box;\n\n  & .btn-group button {\n    width: 100%;\n  }\n}\n\n.bs-searchbox {\n  & + .bs-actionsbox {\n    padding: 0 8px 4px;\n  }\n\n  & .form-control {\n    margin-bottom: 0;\n    width: 100%;\n    float: none;\n  }\n}\n","@bootstrap-switch-base: bootstrap-switch;\n\n.@{bootstrap-switch-base} {\n  display: inline-block;\n  direction: ltr;\n  cursor: pointer;\n  border-radius: @border-radius-base;\n  border: 1px solid;\n  border-color: @btn-default-border;\n  position: relative;\n  text-align: left;\n  overflow: hidden;\n  line-height: 8px;\n  z-index: 0;\n  .user-select(none);\n  vertical-align: middle;\n  .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n  .@{bootstrap-switch-base}-container {\n    display: inline-block;\n    top: 0;\n    border-radius: @border-radius-base;\n    .translate3d(0, 0, 0);\n  }\n\n  .@{bootstrap-switch-base}-handle-on,\n  .@{bootstrap-switch-base}-handle-off,\n  .@{bootstrap-switch-base}-label {\n    .box-sizing(border-box);\n    cursor: pointer;\n    display: table-cell;\n    vertical-align: middle;\n    padding: @padding-base-vertical @padding-base-horizontal;\n    font-size: @font-size-base;\n    line-height: @line-height-computed;\n  }\n\n  .@{bootstrap-switch-base}-handle-on,\n  .@{bootstrap-switch-base}-handle-off {\n    text-align: center;\n    z-index: 1;\n\n    &.@{bootstrap-switch-base}-primary {\n      color: #fff;\n      background: @btn-primary-bg;\n    }\n\n    &.@{bootstrap-switch-base}-info {\n      color: #fff;\n      background: @btn-info-bg;\n    }\n\n    &.@{bootstrap-switch-base}-success {\n      color: #fff;\n      background: @btn-success-bg;\n    }\n\n    &.@{bootstrap-switch-base}-warning {\n      background: @btn-warning-bg;\n      color: #fff;\n    }\n\n    &.@{bootstrap-switch-base}-danger {\n      color: #fff;\n      background: @btn-danger-bg;\n    }\n\n    &.@{bootstrap-switch-base}-default {\n      color: #000;\n      background: @gray-lighter;\n    }\n  }\n\n  .@{bootstrap-switch-base}-label {\n    text-align: center;\n    margin-top: -1px;\n    margin-bottom: -1px;\n    z-index: 100;\n    color: @btn-default-color;\n    background: @btn-default-bg;\n  }\n\n  span::before {\n    content: \"\\200b\";\n  }\n\n  .@{bootstrap-switch-base}-handle-on {\n    .border-left-radius(@border-radius-base - 1);\n  }\n\n  .@{bootstrap-switch-base}-handle-off {\n    .border-right-radius(@border-radius-base - 1);\n  }\n\n  input[type='radio'],\n  input[type='checkbox'] {\n    position: absolute !important;\n    top: 0;\n    left: 0;\n    margin: 0;\n    z-index: -1;\n    .opacity(0);\n    visibility: hidden;\n  }\n\n  &.@{bootstrap-switch-base}-mini {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-xs-vertical @padding-xs-horizontal;\n      font-size: @font-size-small;\n      line-height: @line-height-small;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-small {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-small-vertical @padding-small-horizontal;\n      font-size: @font-size-small;\n      line-height: @line-height-small;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-large {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-base-vertical @padding-large-horizontal;\n      font-size: @font-size-large;\n      line-height: @line-height-large;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-disabled,\n  &.@{bootstrap-switch-base}-readonly,\n  &.@{bootstrap-switch-base}-indeterminate {\n    cursor: default !important;\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      .opacity(.5);\n      cursor: default !important;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-animate {\n\n    .@{bootstrap-switch-base}-container {\n      .transition(margin-left .5s);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-inverse {\n\n    .@{bootstrap-switch-base}-handle-on {\n      .border-left-radius(0);\n      .border-right-radius(@border-radius-base - 1);\n    }\n\n    .@{bootstrap-switch-base}-handle-off {\n      .border-right-radius(0);\n      .border-left-radius(@border-radius-base - 1);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-focused {\n    @color-rgba: rgba(red(@input-border-focus), green(@input-border-focus), blue(@input-border-focus), .6);\n    border-color: @input-border-focus;\n    outline: 0;\n    .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n  }\n\n  &.@{bootstrap-switch-base}-on,\n  &.@{bootstrap-switch-base}-inverse.@{bootstrap-switch-base}-off {\n\n    .@{bootstrap-switch-base}-label {\n      .border-right-radius(@border-radius-base - 1);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-off,\n  &.@{bootstrap-switch-base}-inverse.@{bootstrap-switch-base}-on {\n\n\n    .@{bootstrap-switch-base}-label {\n      .border-left-radius(@border-radius-base - 1);\n    }\n  }\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n  border-top-right-radius: @radius;\n   border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n  border-bottom-right-radius: @radius;\n     border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n  border-bottom-right-radius: @radius;\n   border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n  border-bottom-left-radius: @radius;\n     border-top-left-radius: @radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n  opacity: @opacity;\n  // IE8 filter\n  @opacity-ie: (@opacity * 100);\n  filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","/*\n *  Bootstrap TouchSpin - v3.1.1\n *  A mobile and touch friendly input spinner component for Bootstrap 3.\n *  http://www.virtuosoft.eu/code/bootstrap-touchspin/\n *\n *  Made by István Ujj-Mészáros\n *  Under Apache License v2.0 License\n */\n\n.bootstrap-touchspin .input-group-btn-vertical {\n  position: relative;\n  white-space: nowrap;\n  width: 1%;\n  vertical-align: middle;\n  display: table-cell;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical > .btn {\n  display: block;\n  float: none;\n  width: 100%;\n  max-width: 100%;\n  padding: 8px 10px;\n  margin-left: -1px;\n  position: relative;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {\n  border-radius: 0;\n  border-top-right-radius: 4px;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {\n  margin-top: -2px;\n  border-radius: 0;\n  border-bottom-right-radius: 4px;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical i {\n  position: absolute;\n  top: 3px;\n  left: 5px;\n  font-size: 9px;\n  font-weight: normal;\n}\n","/*-- Chart --*/\n.c3 svg {\n  font: 10px sans-serif;\n  -webkit-tap-highlight-color: transparent; }\n\n.c3 path, .c3 line {\n  fill: none;\n  stroke: #000; }\n\n.c3 text {\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  user-select: none; }\n\n.c3-legend-item-tile,\n.c3-xgrid-focus,\n.c3-ygrid,\n.c3-event-rect,\n.c3-bars path {\n  shape-rendering: crispEdges; }\n\n.c3-chart-arc path {\n  stroke: #fff; }\n\n.c3-chart-arc text {\n  fill: #fff;\n  font-size: 13px; }\n\n/*-- Axis --*/\n/*-- Grid --*/\n.c3-grid line {\n  stroke: #aaa; }\n\n.c3-grid text {\n  fill: #aaa; }\n\n.c3-xgrid, .c3-ygrid {\n  stroke-dasharray: 3 3; }\n\n/*-- Text on Chart --*/\n.c3-text.c3-empty {\n  fill: #808080;\n  font-size: 2em; }\n\n/*-- Line --*/\n.c3-line {\n  stroke-width: 1px; }\n\n/*-- Point --*/\n.c3-circle._expanded_ {\n  stroke-width: 1px;\n  stroke: white; }\n\n.c3-selected-circle {\n  fill: white;\n  stroke-width: 2px; }\n\n/*-- Bar --*/\n.c3-bar {\n  stroke-width: 0; }\n\n.c3-bar._expanded_ {\n  fill-opacity: 1;\n  fill-opacity: 0.75; }\n\n/*-- Focus --*/\n.c3-target.c3-focused {\n  opacity: 1; }\n\n.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {\n  stroke-width: 2px; }\n\n.c3-target.c3-defocused {\n  opacity: 0.3 !important; }\n\n/*-- Region --*/\n.c3-region {\n  fill: steelblue;\n  fill-opacity: .1; }\n\n/*-- Brush --*/\n.c3-brush .extent {\n  fill-opacity: .1; }\n\n/*-- Select - Drag --*/\n/*-- Legend --*/\n.c3-legend-item {\n  font-size: 12px; }\n\n.c3-legend-item-hidden {\n  opacity: 0.15; }\n\n.c3-legend-background {\n  opacity: 0.75;\n  fill: white;\n  stroke: lightgray;\n  stroke-width: 1; }\n\n/*-- Title --*/\n.c3-title {\n  font: 14px sans-serif; }\n\n/*-- Tooltip --*/\n.c3-tooltip-container {\n  z-index: 10; }\n\n.c3-tooltip {\n  border-collapse: collapse;\n  border-spacing: 0;\n  background-color: #fff;\n  empty-cells: show;\n  -webkit-box-shadow: 7px 7px 12px -9px #777777;\n  -moz-box-shadow: 7px 7px 12px -9px #777777;\n  box-shadow: 7px 7px 12px -9px #777777;\n  opacity: 0.9; }\n\n.c3-tooltip tr {\n  border: 1px solid #CCC; }\n\n.c3-tooltip th {\n  background-color: #aaa;\n  font-size: 14px;\n  padding: 2px 5px;\n  text-align: left;\n  color: #FFF; }\n\n.c3-tooltip td {\n  font-size: 13px;\n  padding: 3px 6px;\n  background-color: #fff;\n  border-left: 1px dotted #999; }\n\n.c3-tooltip td > span {\n  display: inline-block;\n  width: 10px;\n  height: 10px;\n  margin-right: 6px; }\n\n.c3-tooltip td.value {\n  text-align: right; }\n\n/*-- Area --*/\n.c3-area {\n  stroke-width: 0;\n  opacity: 0.2; }\n\n/*-- Arc --*/\n.c3-chart-arcs-title {\n  dominant-baseline: middle;\n  font-size: 1.3em; }\n\n.c3-chart-arcs .c3-chart-arcs-background {\n  fill: #e0e0e0;\n  stroke: none; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-unit {\n  fill: #000;\n  font-size: 16px; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-max {\n  fill: #777; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-min {\n  fill: #777; }\n\n.c3-chart-arc .c3-gauge-value {\n  fill: #000;\n  /*  font-size: 28px !important;*/ }\n\n.c3-chart-arc.c3-target g path {\n  opacity: 1; }\n\n.c3-chart-arc.c3-target.c3-focused g path {\n  opacity: 1; }\n","/*!\n * Datetimepicker for Bootstrap 3\n * version : 4.17.47\n * https://github.com/Eonasdan/bootstrap-datetimepicker/\n */\n@bs-datetimepicker-timepicker-font-size: 1.2em;\n@bs-datetimepicker-active-bg: @btn-primary-bg;\n@bs-datetimepicker-active-color: @btn-primary-color;\n@bs-datetimepicker-border-radius: @border-radius-base;\n@bs-datetimepicker-btn-hover-bg: @gray-lighter;\n@bs-datetimepicker-disabled-color: @gray-light;\n@bs-datetimepicker-alternate-color: @gray-light;\n@bs-datetimepicker-secondary-border-color: #ccc;\n@bs-datetimepicker-secondary-border-color-rgba: rgba(0, 0, 0, 0.2);\n@bs-datetimepicker-primary-border-color: white;\n@bs-datetimepicker-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n\n.bootstrap-datetimepicker-widget {\n    list-style: none;\n\n    &.dropdown-menu {\n        display: block;\n        margin: 2px 0;\n        padding: 4px;\n        width: 19em;\n\n        &.timepicker-sbs {\n            @media (min-width: @screen-sm-min) {\n                width: 38em;\n            }\n\n            @media (min-width: @screen-md-min) {\n                width: 38em;\n            }\n\n            @media (min-width: @screen-lg-min) {\n                width: 38em;\n            }\n        }\n\n        &:before, &:after {\n            content: '';\n            display: inline-block;\n            position: absolute;\n        }\n\n        &.bottom {\n            &:before {\n                border-left: 7px solid transparent;\n                border-right: 7px solid transparent;\n                border-bottom: 7px solid @bs-datetimepicker-secondary-border-color;\n                border-bottom-color: @bs-datetimepicker-secondary-border-color-rgba;\n                top: -7px;\n                left: 7px;\n            }\n\n            &:after {\n                border-left: 6px solid transparent;\n                border-right: 6px solid transparent;\n                border-bottom: 6px solid @bs-datetimepicker-primary-border-color;\n                top: -6px;\n                left: 8px;\n            }\n        }\n\n        &.top {\n            &:before {\n                border-left: 7px solid transparent;\n                border-right: 7px solid transparent;\n                border-top: 7px solid @bs-datetimepicker-secondary-border-color;\n                border-top-color: @bs-datetimepicker-secondary-border-color-rgba;\n                bottom: -7px;\n                left: 6px;\n            }\n\n            &:after {\n                border-left: 6px solid transparent;\n                border-right: 6px solid transparent;\n                border-top: 6px solid @bs-datetimepicker-primary-border-color;\n                bottom: -6px;\n                left: 7px;\n            }\n        }\n\n        &.pull-right {\n            &:before {\n                left: auto;\n                right: 6px;\n            }\n\n            &:after {\n                left: auto;\n                right: 7px;\n            }\n        }\n    }\n\n    .list-unstyled {\n        margin: 0;\n    }\n\n    a[data-action] {\n        padding: 6px 0;\n    }\n\n    a[data-action]:active {\n        box-shadow: none;\n    }\n\n    .timepicker-hour, .timepicker-minute, .timepicker-second {\n        width: 54px;\n        font-weight: bold;\n        font-size: @bs-datetimepicker-timepicker-font-size;\n        margin: 0;\n    }\n\n    button[data-action] {\n        padding: 6px;\n    }\n\n    .btn[data-action=\"incrementHours\"]::after {\n        .sr-only();\n        content: \"Increment Hours\";\n    }\n\n    .btn[data-action=\"incrementMinutes\"]::after {\n        .sr-only();\n        content: \"Increment Minutes\";\n    }\n\n    .btn[data-action=\"decrementHours\"]::after {\n        .sr-only();\n        content: \"Decrement Hours\";\n    }\n\n    .btn[data-action=\"decrementMinutes\"]::after {\n        .sr-only();\n        content: \"Decrement Minutes\";\n    }\n\n    .btn[data-action=\"showHours\"]::after {\n        .sr-only();\n        content: \"Show Hours\";\n    }\n\n    .btn[data-action=\"showMinutes\"]::after {\n        .sr-only();\n        content: \"Show Minutes\";\n    }\n\n    .btn[data-action=\"togglePeriod\"]::after {\n        .sr-only();\n        content: \"Toggle AM/PM\";\n    }\n\n    .btn[data-action=\"clear\"]::after {\n        .sr-only();\n        content: \"Clear the picker\";\n    }\n\n    .btn[data-action=\"today\"]::after {\n        .sr-only();\n        content: \"Set the date to today\";\n    }\n\n    .picker-switch {\n        text-align: center;\n\n        &::after {\n            .sr-only();\n            content: \"Toggle Date and Time Screens\";\n        }\n\n        td {\n            padding: 0;\n            margin: 0;\n            height: auto;\n            width: auto;\n            line-height: inherit;\n\n            span {\n                line-height: 2.5;\n                height: 2.5em;\n                width: 100%;\n            }\n        }\n    }\n\n    table {\n        width: 100%;\n        margin: 0;\n\n\n        & td,\n        & th {\n            text-align: center;\n            border-radius: @bs-datetimepicker-border-radius;\n        }\n\n        & th {\n            height: 20px;\n            line-height: 20px;\n            width: 20px;\n\n            &.picker-switch {\n                width: 145px;\n            }\n\n            &.disabled,\n            &.disabled:hover {\n                background: none;\n                color: @bs-datetimepicker-disabled-color;\n                cursor: not-allowed;\n            }\n\n            &.prev::after {\n                .sr-only();\n                content: \"Previous Month\";\n            }\n\n            &.next::after {\n                .sr-only();\n                content: \"Next Month\";\n            }\n        }\n\n        & thead tr:first-child th {\n            cursor: pointer;\n\n            &:hover {\n                background: @bs-datetimepicker-btn-hover-bg;\n            }\n        }\n\n        & td {\n            height: 54px;\n            line-height: 54px;\n            width: 54px;\n\n            &.cw {\n                font-size: .8em;\n                height: 20px;\n                line-height: 20px;\n                color: @bs-datetimepicker-alternate-color;\n            }\n\n            &.day {\n                height: 20px;\n                line-height: 20px;\n                width: 20px;\n            }\n\n            &.day:hover,\n            &.hour:hover,\n            &.minute:hover,\n            &.second:hover {\n                background: @bs-datetimepicker-btn-hover-bg;\n                cursor: pointer;\n            }\n\n            &.old,\n            &.new {\n                color: @bs-datetimepicker-alternate-color;\n            }\n\n            &.today {\n                position: relative;\n\n                &:before {\n                    content: '';\n                    display: inline-block;\n                    border: solid transparent;\n                    border-width: 0 0 7px 7px;\n                    border-bottom-color: @bs-datetimepicker-active-bg;\n                    border-top-color: @bs-datetimepicker-secondary-border-color-rgba;\n                    position: absolute;\n                    bottom: 4px;\n                    right: 4px;\n                }\n            }\n\n            &.active,\n            &.active:hover {\n                background-color: @bs-datetimepicker-active-bg;\n                color: @bs-datetimepicker-active-color;\n                text-shadow: @bs-datetimepicker-text-shadow;\n            }\n\n            &.active.today:before {\n                border-bottom-color: #fff;\n            }\n\n            &.disabled,\n            &.disabled:hover {\n                background: none;\n                color: @bs-datetimepicker-disabled-color;\n                cursor: not-allowed;\n            }\n\n            span {\n                display: inline-block;\n                width: 54px;\n                height: 54px;\n                line-height: 54px;\n                margin: 2px 1.5px;\n                cursor: pointer;\n                border-radius: @bs-datetimepicker-border-radius;\n\n                &:hover {\n                    background: @bs-datetimepicker-btn-hover-bg;\n                }\n\n                &.active {\n                    background-color: @bs-datetimepicker-active-bg;\n                    color: @bs-datetimepicker-active-color;\n                    text-shadow: @bs-datetimepicker-text-shadow;\n                }\n\n                &.old {\n                    color: @bs-datetimepicker-alternate-color;\n                }\n\n                &.disabled,\n                &.disabled:hover {\n                    background: none;\n                    color: @bs-datetimepicker-disabled-color;\n                    cursor: not-allowed;\n                }\n            }\n        }\n    }\n\n    &.usetwentyfour {\n        td.hour {\n            height: 27px;\n            line-height: 27px;\n        }\n    }\n\t\n\t&.wider {\n\t\twidth: 21em;\n\t}\n\n\t& .datepicker-decades .decade {\n        line-height: 1.8em !important;\n    }\n}\n\n.input-group.date {\n    & .input-group-addon {\n        cursor: pointer;\n    }\n}\n","// Import bootstrap variables including default color palette and fonts\n@import \"bootstrap/less/variables.less\";\n\n// Import datepicker component\n@import \"_bootstrap-datetimepicker.less\";\n\n//this is here so the compiler doesn't complain about a missing bootstrap mixin\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n","//\n// Patternfly Mixins\n// --------------------------------------------------\n// PatternFly-specific mixins\n\n// Patternfly button variants.\n.button-variant(@color; @background; @background-image-start; @background-image-stop; @border) {\n  background-color: @background;\n  #gradient > .vertical(@background-image-start, @background-image-stop);\n  border-color: @border;\n  color: @color;\n\n  &:hover,\n  &:focus,\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-color: @background;\n    background-image: none;\n    border-color: @border;\n    color: @color;\n  }\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-image: none;\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: darken(@background, 5%);\n          border-color: darken(@border, 7%);\n    }\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &,\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      background-color: @background;\n      border-color: @border;\n    }\n  }\n}\n\n// SASS CONVERSION FIX.\n// Allows inclusion of sr-only rules in nested media queries where @extends .sr-only\n// will not work.\n.sr-only-pf() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n\n.tab-indicator(@background: @gray-light-pf, @left: 15px, @right: 15px) {\n  &:before {\n    background: @background;\n    bottom: -1px;\n    content: \"\";\n    display: block;\n    height: 2px;\n    left: @left;\n    position: absolute;\n    right: @right;\n  }\n}\n\n// Ellipse overflow text\n.text-overflow-pf {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  word-wrap: normal;\n}\n","//\n// About Modal\n// --------------------------------------------------\n\n.about-modal-pf {\n  background-color: @color-pf-black-900;\n  background-image: url(\"@{img-path}/@{modal-about-pf-bg-img}\");\n  background-position: right bottom;\n  background-repeat: no-repeat;\n  background-size: 216px auto;\n  @media (min-width: @screen-sm-min) {\n    background-size: auto;\n  }\n  .modal-body {\n    color: @color-pf-white;\n    padding-bottom: 16px;\n    padding-left: @grid-gutter-width;\n    padding-right: @grid-gutter-width;\n    @media (min-width: @screen-sm-min) {\n      padding-left: (@grid-gutter-width * 2);\n      padding-right: (@grid-gutter-width * 2);\n    }\n  }\n  .modal-header {\n    background-color: transparent;\n  }\n  .pficon-close {\n    color: @color-pf-white;\n  }\n}\n\n.product-versions-pf {\n  margin-bottom: 30px;\n  margin-top: 30px;\n  li {\n    strong {\n      margin-right: (@grid-gutter-width / 4);\n    }\n  }\n}\n\n.trademark-pf {\n  font-size: ceil((@font-size-base - 1));\n}\n","//\n// Application Launcher\n// --------------------------------------------------\n.applauncher-pf {\n\n  display: inline-block;\n  overflow: visible;\n\n  .applauncher-pf-title {\n    .sr-only-pf();\n  }\n\n  .dropdown-toggle {\n    &.disabled {\n      cursor: not-allowed;\n    }\n  }\n\n  &.open > .dropdown-menu {\n    display:flex;\n    flex-wrap:wrap;\n  }\n\n  .applauncher-pf-item {\n    width: 100%;\n  }\n\n  .applauncher-pf-link {\n    display:flex;\n    white-space: initial;\n    align-items: center;\n  }\n\n  &-block-list {\n    .applauncher-pf-item {\n      @media (min-width: @screen-sm-min) {\n        flex:0 0 50%;\n      }\n    }\n\n    .applauncher-pf-link {\n        flex-wrap: wrap;\n      @media (min-width: @screen-sm-min) {\n          flex-direction:column;\n          text-align: center;\n          padding:15px 0;\n          height: 100%;\n      }\n    }\n\n    .applauncher-pf-link-icon {\n      padding: 0;\n    }\n\n    .applauncher-pf-link-title {\n      margin-top: auto;\n    }\n  }//block-list\n\n  &:not(.applauncher-pf-block-list) {\n\n    .applauncher-pf-link {\n      @media (min-width: @screen-sm-min) {\n        padding:@applauncher-pf-dropdown-menu-padding;\n        &-icon {\n          flex:1 0 0;\n          text-align: left;\n        }\n        &-title{flex:3;}\n      }\n    }\n  }\n\n  .dropdown-menu {\n    padding: @applauncher-pf-dropdown-menu-padding;\n    min-width: @applauncher-pf-dropdown-menu-width;\n  }\n\n  .applauncher-pf-link {\n    border-style: solid;\n    border-width: @applauncher-pf-menu-link-border-width;\n    border-color: transparent;\n\n    &:hover {\n      background-color: @applauncher-pf-menu-link-background-color-hover;\n      border-color: @applauncher-pf-menu-link-border-color-hover;\n      color: @applauncher-pf-menu-link-color-hover;\n      text-decoration: none;\n\n      .box-shadow(0 0 2px 0 @applauncher-pf-menu-link-shadow);\n    }\n  }\n\n  .applauncher-pf-link-icon {\n    font-size: 1.2em;\n    text-align: center;\n    width: @applauncher-pf-menu-link-icon-width;\n\n    @media (min-width: @screen-sm-min) {\n      font-size: @applauncher-pf-menu-link-icon-font-size;\n    }\n  }\n\n}//.applauncher-pf\n\n.navbar-utility .applauncher-pf {\n    .dropdown-menu {\n      border-width: @applauncher-pf-menu-link-border-width !important;\n      @media (min-width: @screen-sm-min) {\n              margin-top: 3px;\n              right:0;\n            }\n    }//.dropdown-menu\n}\n\n.navbar-pf, .navbar-pf-alt {\n\n  .navbar-utility .applauncher-pf, .applauncher-pf {\n\n    &.open > a,\n        &.open > a:focus {\n          background-color: @navbar-pf-navbar-nav-active-bg-color;\n          color: @navbar-pf-active-color;\n\n          @media (min-width: @screen-sm-min) {\n            background-color: @navbar-pf-navbar-utility-open-bg-color;\n            border-color: @navbar-pf-navbar-utility-border-color;\n            color: @navbar-pf-navbar-utility-color;\n          }\n        }\n\n        &.open {\n          .dropdown-menu > li > a {\n            @media (max-width: @grid-float-breakpoint-max) {\n              padding-left: 20px;\n              .applauncher-pf-link-icon {\n                padding-right: 20px;\n              }\n            }\n          }\n        }\n\n        &.dropdown > .dropdown-toggle,\n            .dropdown-toggle {\n              background-color: inherit;\n              color: @applauncher-pf-menu-link-color;\n              text-align: left;\n              text-decoration: none;\n              border-width: 0;\n              display: block;\n              padding-left: 20px;\n\n              &.disabled {\n                color: @applauncher-pf-menu-link-color-disabled !important;\n              }\n\n              @media (min-width: @screen-sm-min) {\n                border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n                padding: @applauncher-pf-dropdown-toggle-padding;\n                line-height: 1;\n              }\n        }\n\n        .applauncher-pf-icon {\n              padding-right:@applauncher-pf-icon-padding-right;\n\n              @media (min-width: @screen-sm-min) {\n                padding: 0;\n              }\n            }\n\n        .applauncher-pf-title {\n          display: inline;\n          position: relative;\n        }\n\n\n        .applauncher-pf-link {\n          overflow: hidden;\n          width: 100%;\n\n          &:hover {\n            background-color: transparent;\n            border-color: transparent;\n            .box-shadow(none);\n          }\n        }\n\n        .applauncher-pf-link-title {\n          overflow: hidden;\n        }\n\n        @media (min-width: @screen-sm-min) {\n          //Apply mixin\n          .applauncher-pf;\n        }\n    }\n}//.navbar-pf .navbar-pf-alt ovrerides\n\n.navbar-iconic {\n\n  .navbar-utility .applauncher-pf,\n  .applauncher-pf {\n\n    &.dropdown > .dropdown-toggle,\n    .dropdown-toggle {\n\n      @media (min-width: @screen-sm-min) {\n        padding: 22px 10px;\n        line-height: inherit;\n      }\n    }\n  }\n}\n","//\n// Blank Slate\n// --------------------------------------------------\n\n.blank-slate-pf {\n  @media (min-width: @screen-sm-min) {\n    padding: (@jumbotron-padding * 2) (@jumbotron-padding * 2);\n  }\n  @media (min-width: @screen-md-min) {\n    padding: (@jumbotron-padding * 3) (@jumbotron-padding * 4);\n  }\n  background-color: @well-bg;\n  border: 1px solid @well-border;\n  border-radius: @border-radius-base;\n  margin-bottom: 20px;\n  padding: @jumbotron-padding;\n  text-align: center;\n  .blank-slate-pf-icon {\n    color: @gray-light;\n    font-size: (@font-size-h1 * 2.4);\n    line-height: (@font-size-h1 * 2.4);\n  }\n  .blank-slate-pf-main-action {\n    margin-top: @line-height-computed;\n  }\n  .blank-slate-pf-secondary-action {\n    margin-top: @line-height-computed;\n  }\n  button {\n    margin-right: 5px;\n    &:last-of-type {\n      margin-right: 0;\n    }\n  }\n}\n","//\n// Bootstrap-Combobox\n// --------------------------------------------------\n\n.combobox-container {\n  &.combobox-selected .glyphicon-remove {\n    display: inline-block;\n  }\n  .caret {\n    margin-left: 0;\n  }\n  .combobox::-ms-clear {\n    display: none;\n  }\n  .dropdown-menu {\n    margin-top: -1px;\n    width: 100%;\n  }\n  .glyphicon-remove {\n    display: none;\n    top: auto;\n    width: 12px;\n    &:before {\n      content: \"\\e60b\";\n      font-family: @icon-font-name-pf;\n    }\n  }\n  .input-group-addon {\n    .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n    position: relative; // IE8\n    &:active {\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n    }\n  }\n}\n","//\n// Variables\n// --------------------------------------------------\n// Bootstrap overrides and PatternFly-specific variables\n\n// Sass compass/sprockets asset helper flag\n// ----------------------\n@pf-sass-asset-helper:                                              false;\n\n// PatternFly-specific\n// -------------------\n@import \"color-variables.less\";\n\n@applauncher-pf-dropdown-menu-border-width:                         1px;\n@applauncher-pf-dropdown-menu-padding:                              9px;\n@applauncher-pf-dropdown-menu-width:                                220px;\n@applauncher-pf-dropdown-toggle-padding:                            7px 10px;\n@applauncher-pf-icon-padding-right:                                 4px;\n@applauncher-pf-menu-link-border-color:                             @color-pf-white;\n@applauncher-pf-menu-link-border-color-hover:                       @color-pf-black-400;\n@applauncher-pf-menu-link-border-width:                             1px;\n@applauncher-pf-menu-link-color:                                    @color-pf-black-300;\n@applauncher-pf-menu-link-color-disabled:                           @color-pf-black-500;\n@applauncher-pf-menu-link-color-hover:                              @color-pf-blue-400;\n@applauncher-pf-menu-link-padding:                                  7px 10px;\n@applauncher-pf-menu-link-padding-block-list:                       15px 10px;\n@applauncher-pf-menu-link-background-color-hover:                   @color-pf-black-150;\n@applauncher-pf-menu-link-shadow:                                   @color-pf-black-300;\n@applauncher-pf-menu-link-icon-font-size:                           2em;\n@applauncher-pf-menu-link-icon-width:                               ((9 * @applauncher-pf-menu-link-icon-font-size) / 14); //Numbers to imitate fa-fw class\n@bootstrap-switch-handle-default-bg-color:                          @color-pf-black-100;\n@bootstrap-treeview-highlight-color:                                @color-pf-blue-300;\n@btn-default-bg-img-start:                                          @color-pf-black-100;\n@btn-default-bg-img-stop:                                           @color-pf-black-200;\n@btn-xs-font-weight:                                                400;\n@card-pf-accented-border-top-color:                                 @color-pf-blue-300;\n@card-pf-aggregate-status-title-icon-color:                         @color-pf-black-900;\n@card-pf-bg-color:                                                  @color-pf-white;\n@card-pf-border-color:                                              @color-pf-black-300;\n@card-pf-border-top-color:                                          transparent;\n@card-pf-container-bg-color:                                        @color-pf-black-150;\n@card-pf-footer-bg-color:                                           @color-pf-black-100;\n@card-pf-selected-border-color:                                     @color-pf-blue-300;\n@donut-font-size-big:                                               30px;\n@drawer-pf-top-vertical:                                            58px;\n@drawer-pf-top-horizontal:                                          26px;\n@dropdown-divider-margin:                                           4px 1px;\n@dropdown-link-active-border-color:                                 @color-pf-blue;\n@dropdown-link-hover-border-color:                                  @color-pf-blue-100;\n@dropdown-link-focus-color:                                         @color-pf-white;\n@flyout-transition-pf:                                              all 200ms cubic-bezier(.35, 0, .25, 1);\n@font-family-monospace:                                             Menlo, Monaco, Consolas, monospace;\n@font-path:                                                         \"../fonts\";\n@footer-pf-bg-color:                                                @color-pf-black;\n@footer-pf-padding-left:                                            25px;\n@footer-pf-padding-top:                                             10px;\n@footer-pf-height:                                                  37px;\n@gray-light-pf:                                                     @color-pf-black-400;\n@gray-pf:                                                           @color-pf-black-700;\n@icon-font-name-fa:                                                 \"FontAwesome\";\n@icon-font-name-pf:                                                 \"PatternFlyIcons-webfont\";\n@icon-prefix:                                                       pficon;\n@img-bg-login:                                                      \"bg-login.jpg\";\n@img-path:                                                          \"../img\";\n@img-spinner:                                                       \"spinner.gif\";\n@img-spinner-inverse:                                               \"spinner-inverse.gif\";\n@img-spinner-inverse-lg:                                            \"spinner-inverse-lg.gif\";\n@img-spinner-inverse-sm:                                            \"spinner-inverse-sm.gif\";\n@img-spinner-inverse-xs:                                            \"spinner-inverse-xs.gif\";\n@img-spinner-lg:                                                    \"spinner-lg.gif\";\n@img-spinner-sm:                                                    \"spinner-sm.gif\";\n@img-spinner-xs:                                                    \"spinner-xs.gif\";\n@input-border-hover:                                                @color-pf-blue-200;\n@input-border-focus:                                                @color-pf-blue-400;\n@list-pf-border-color:                                              @color-pf-black-200;\n@list-pf-active-border-color:                                       @color-pf-black-400;\n@list-pf-header-background-color:                                   @color-pf-black-200;\n@list-pf-hover-background-color:                                    @color-pf-blue-25;\n@list-pf-main-content-width:                                        70%; // sets the proportional width of the main content vs the additional content\n@list-pf-padding:                                                   20px;\n@list-view-accented-border:                                         @color-pf-blue-300;\n@list-view-active-bg:                                               @color-pf-blue-50;\n@list-view-active-border:                                           @color-pf-black-400;\n@list-view-divider:                                                 @color-pf-black-300;\n@list-view-hover-bg:                                                @color-pf-blue-25;\n@list-group-top-border:                                             @color-pf-black-200;\n@login-bg-color:                                                    @color-pf-black;\n@login-container-bg-color-rgba:                                     fade(@color-pf-white, 5.5%);\n@modal-about-pf-bg-img:                                             \"bg-modal-about-pf.png\";\n@modal-title-padding-horizontal:                                    18px;\n@modal-title-padding-vertical:                                      10px;\n@navbar-pf-active-color:                                            @color-pf-black-150;\n@navbar-pf-alt-active-color:                                        @color-pf-white;\n@navbar-pf-alt-bg-color:                                            @color-pf-black;\n@navbar-pf-alt-bg-img:                                              \"bg-navbar-pf-alt.svg\";\n@navbar-pf-bg-color:                                                @color-pf-black;\n@navbar-pf-border-color:                                            @color-pf-blue-300;\n@navbar-pf-color:                                                   @color-pf-black-300;\n@navbar-pf-height:                                                  60px;\n@navbar-pf-icon-bar-bg-color:                                       @color-pf-white;\n@navbar-pf-navbar-navbar-brand-min-width:                           270px;\n@navbar-pf-navbar-navbar-brand-padding:                             8px 0 7px;\n@navbar-pf-navbar-navbar-persistent-bg-color:                       @color-pf-black-150;\n@navbar-pf-navbar-navbar-persistent-border-color:                   @color-pf-black-300;\n@navbar-pf-vertical-active-color:                                   @color-pf-white;\n@navbar-pf-vertical-bg-color:                                       #1d1d1d;\n@navbar-pf-vertical-bg-repeat:                                      no-repeat;\n@navbar-pf-vertical-bg-size:                                        auto 100%;\n@navbar-pf-vertical-border-color:                                   @color-pf-blue-300;\n@navbar-pf-vertical-border-style:                                   solid;\n@navbar-pf-vertical-border-width:                                   2px;\n@navbar-pf-vertical-color:                                          @color-pf-black-300;\n@navbar-pf-vertical-height:                                         60px;\n@navbar-pf-vertical-icon-bar-bg-color:                              @color-pf-white;\n@navbar-pf-vertical-navbar-brand-color:                             @color-pf-white;\n@navbar-pf-vertical-navbar-brand-icon-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-margin:                            0 0 0 25px;\n@navbar-pf-vertical-navbar-brand-min-height:                        35px;\n@navbar-pf-vertical-navbar-brand-max-height:                        35px;\n@navbar-pf-vertical-navbar-brand-line-height:                       34px;\n@navbar-pf-vertical-navbar-brand-name-breakpoint:                   480px;\n@navbar-pf-vertical-navbar-brand-name-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-padding:                           11px 0 12px;\n@navbar-pf-vertical-navbar-toggle-margin:                           13px 15px;\n@navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg:                @color-pf-white;\n@navbar-pf-vertical-nav-item-iconic-padding:                        21px 12px;\n@nav-pf-container-transition-period:                                250ms;\n@nav-pf-menu-transition-period:                                     100ms;\n@nav-pf-vertical-active-color:                                      @color-pf-white;\n@nav-pf-vertical-active-before-color:                               @color-pf-blue-300;\n@nav-pf-vertical-active-bg-color:                                   @color-pf-black-800;\n@nav-pf-vertical-active-border-color:                               @color-pf-black-900;\n@nav-pf-vertical-active-font-weight:                                600;\n@nav-pf-vertical-active-icon-color:                                 @color-pf-blue-300;\n@nav-pf-vertical-badge-color:                                       @color-pf-white;\n@nav-pf-vertical-badge-bg-color:                                    @color-pf-black-900;\n@nav-pf-vertical-bg-color:                                          @color-pf-black-900;\n@nav-pf-vertical-border-color:                                      @color-pf-black-900;\n@nav-pf-vertical-collapsed-width:                                   75px;\n@nav-pf-vertical-color:                                             @color-pf-black-300;\n@nav-pf-vertical-font-weight:                                       400;\n@nav-pf-vertical-icon-color:                                        @color-pf-black-600;\n@nav-pf-vertical-icon-width:                                        24px;\n@nav-pf-vertical-item-border-color:                                 @color-pf-black;\n@nav-pf-vertical-link-height:                                       63px;\n@nav-pf-vertical-link-padding:                                      17px 20px 17px 25px;\n@nav-pf-vertical-secondary-active-color:                            @color-pf-white;\n@nav-pf-vertical-secondary-active-bg-color:                         @color-pf-black-700;\n@nav-pf-vertical-secondary-active-icon-color:                       @color-pf-blue-300;\n@nav-pf-vertical-secondary-badge-color:                             @color-pf-white;\n@nav-pf-vertical-secondary-badge-bg-color:                          @color-pf-black-900;\n@nav-pf-vertical-secondary-border-color:                            @color-pf-blue-300;\n@nav-pf-vertical-secondary-color:                                   @color-pf-white;\n@nav-pf-vertical-secondary-header-margin:                           18px 20px 10px 20px;\n@nav-pf-vertical-secondary-indicator-color:                         @color-pf-black-600;\n@nav-pf-vertical-secondary-indicator-padding:                       14px 0;\n@nav-pf-vertical-secondary-item-color:                              @color-pf-black-300;\n@nav-pf-vertical-secondary-item-padding:                            0 0 5px 0;\n@nav-pf-vertical-secondary-link-height:                             63px;\n@nav-pf-vertical-secondary-link-padding:                            4px 0 2px 0;\n@nav-pf-vertical-secondary-list-header-margin:                      30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-active-color:                             @color-pf-white;\n@nav-pf-vertical-tertiary-active-bg-color:                          @color-pf-black-800;\n@nav-pf-vertical-tertiary-indicator-padding:                        0;\n@nav-pf-vertical-tertiary-bg-color:                                 @color-pf-black-700;\n@nav-pf-vertical-tertiary-color:                                    #fff;\n@nav-pf-vertical-tertiary-header-margin:                            18px 20px 10px 20px;\n@nav-pf-vertical-tertiary-list-header-margin:                       30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-item-padding:                             0 0 5px 0;\n@nav-pf-vertical-tertiary-item-color:                               @color-pf-black-300;\n@nav-pf-vertical-tertiary-link-margin:                              0 20px 0 20px;\n@nav-pf-vertical-tertiary-link-padding:                             4px 0 2px 0;\n@nav-pf-vertical-tertiary-badge-color:                              @color-pf-white;\n@nav-pf-vertical-tertiary-badge-bg-color:                           @color-pf-black-900;\n@nav-pf-vertical-width:                                             200px;\n@toast-notification-top:                                            80px;\n@pagination-padding-small-vertical:                                 0;\n@panel-default-border-color:                                        @color-pf-black-400;\n@pficon-var-add-circle-o:                                           \"\\e61b\";\n@pficon-var-applications:                                           \"\\e936\";\n@pficon-var-arrow:                                                  \"\\e929\";\n@pficon-var-asleep:                                                 \"\\e925\";\n@pficon-var-automation:                                             \"\\e937\";\n@pficon-var-blueprint:                                              \"\\e915\";\n@pficon-var-build:                                                  \"\\e902\";\n@pficon-var-builder-image:                                          \"\\e800\";\n@pficon-var-bundle:                                                 \"\\e918\";\n@pficon-var-catalog:                                                \"\\e939\";\n@pficon-var-chat:                                                   \"\\e928\";\n@pficon-var-close:                                                  \"\\e60b\";\n@pficon-var-cloud-security:                                         \"\\e903\";\n@pficon-var-cloud-tenant:                                           \"\\e904\";\n@pficon-var-cluster:                                                \"\\e620\";\n@pficon-var-connected:                                              \"\\e938\";\n@pficon-var-container-node:                                         \"\\e621\";\n@pficon-var-cpu:                                                    \"\\e927\";\n@pficon-var-degraded:                                               \"\\e91b\";\n@pficon-var-delete:                                                 \"\\e611\";\n@pficon-var-disconnected:                                           \"\\e93c\";\n@pficon-var-domain:                                                 \"\\e919\";\n@pficon-var-edit:                                                   \"\\e60a\";\n@pficon-var-enhancement:                                            \"\\e93a\";\n@pficon-var-enterprise:                                             \"\\e906\";\n@pficon-var-equalizer:                                              \"\\e610\";\n@pficon-var-error-circle-o:                                         \"\\e926\";\n@pficon-var-export:                                                 \"\\e616\";\n@pficon-var-flag:                                                   \"\\e603\";\n@pficon-var-flavor:                                                 \"\\e907\";\n@pficon-var-filter:                                                 \"\\e943\";\n@pficon-var-folder-close:                                           \"\\e607\";\n@pficon-var-folder-open:                                            \"\\e606\";\n@pficon-var-help:                                                   \"\\e605\";\n@pficon-var-history:                                                \"\\e617\";\n@pficon-var-home:                                                   \"\\e618\";\n@pficon-var-image:                                                  \"\\e61f\";\n@pficon-var-import:                                                 \"\\e615\";\n@pficon-var-info:                                                   \"\\e92b\";\n@pficon-var-infrastructure:                                         \"\\e93d\";\n@pficon-var-integration:                                            \"\\e948\";\n@pficon-var-in-progress:                                            \"\\e92c\";\n@pficon-var-key:                                                    \"\\e924\";\n@pficon-var-kubernetes:                                             \"\\e627\";\n@pficon-var-locked:                                                 \"\\e923\";\n@pficon-var-maintenance:                                            \"\\e92d\";\n@pficon-var-memory:                                                 \"\\e908\";\n@pficon-var-messages:                                               \"\\e603\";\n@pficon-var-middleware:                                             \"\\e917\";\n@pficon-var-migration:                                              \"\\e92e\";\n@pficon-var-monitoring:                                             \"\\e944\";\n@pficon-var-network:                                                \"\\e909\";\n@pficon-var-off:                                                    \"\\e92f\";\n@pficon-var-ok:                                                     \"\\e602\";\n@pficon-var-on:                                                     \"\\e931\";\n@pficon-var-on-running:                                             \"\\e930\";\n@pficon-var-openshift:                                              \"\\e626\";\n@pficon-var-optimize:                                               \"\\e93e\";\n@pficon-var-orders:                                                 \"\\e93f\";\n@pficon-var-paused:                                                 \"\\e932\";\n@pficon-var-pending:                                                \"\\e933\";\n@pficon-var-plugged:                                                \"\\e940\";\n@pficon-var-port:                                                   \"\\e945\";\n@pficon-var-private:                                                \"\\e914\";\n@pficon-var-print:                                                  \"\\e612\";\n@pficon-var-process-automation:                                     \"\\e949\";\n@pficon-var-project:                                                \"\\e905\";\n@pficon-var-rebalance:                                              \"\\e91c\";\n@pficon-var-rebooting:                                              \"\\e934\";\n@pficon-var-regions:                                                \"\\e90a\";\n@pficon-var-registry:                                               \"\\e623\";\n@pficon-var-remove:                                                 \"\\e611\";\n@pficon-var-replicator:                                             \"\\e624\";\n@pficon-var-repository:                                             \"\\e90b\";\n@pficon-var-resource-pool:                                          \"\\e90c\";\n@pficon-var-resources-almost-empty:                                 \"\\e91d\";\n@pficon-var-resources-almost-full:                                  \"\\e912\";\n@pficon-var-resources-full:                                         \"\\e92a\";\n@pficon-var-restart:                                                \"\\e617\";\n@pficon-var-route:                                                  \"\\e625\";\n@pficon-var-running:                                                \"\\e614\";\n@pficon-var-save:                                                   \"\\e601\";\n@pficon-var-screen:                                                 \"\\e600\";\n@pficon-var-search:                                                 \"\\e921\";\n@pficon-var-security:                                               \"\\e946\";\n@pficon-var-server:                                                 \"\\e90d\";\n@pficon-var-server-group:                                           \"\\e91a\";\n@pficon-var-service:                                                \"\\e61e\";\n@pficon-var-service-catalog:                                        \"\\e941\";\n@pficon-var-services:                                               \"\\e947\";\n@pficon-var-settings:                                               \"\\e610\";\n@pficon-var-spinner:                                                \"\\e614\";\n@pficon-var-spinner2:                                               \"\\e613\";\n@pficon-var-storage-domain:                                         \"\\e90e\";\n@pficon-var-tenant:                                                 \"\\e916\";\n@pficon-var-thumb-tack-o:                                           \"\\e920\";\n@pficon-var-topology:                                               \"\\e608\";\n@pficon-var-trend-down:                                             \"\\e900\";\n@pficon-var-trend-up:                                               \"\\e901\";\n@pficon-var-unlocked:                                               \"\\e922\";\n@pficon-var-unplugged:                                              \"\\e942\";\n@pficon-var-unknown:                                                \"\\e935\";\n@pficon-var-user:                                                   \"\\e91e\";\n@pficon-var-users:                                                  \"\\e91f\";\n@pficon-var-virtual-machine:                                        \"\\e90f\";\n@pficon-var-volume:                                                 \"\\e910\";\n@pficon-var-warning-triangle-o:                                     \"\\e913\";\n@pficon-var-zone:                                                   \"\\e911\";\n@progress-description-label-width:                                  85px;\n@sidebar-pf-bg:                                                     @color-pf-black-100;\n@sidebar-pf-border-color:                                           @color-pf-black-300;\n@skiplink-pf-top:                                                   12px;\n@skiplink-pf-left:                                                  10px;\n@table-border-hover:                                                @color-pf-blue-200;\n@table-cell-padding-bottom:                                         3px;\n@table-cell-padding-top:                                            2px;\n// Reference variables declared in block above\n@bootstrap-switch-bg-color-start:                                   @btn-default-bg-img-start;\n@bootstrap-switch-bg-color-stop:                                    @btn-default-bg-img-stop;\n@fa-font-path:                                                      @font-path;\n@navbar-pf-navbar-header-border-color:                              lighten(@navbar-pf-bg-color, 15%);\n@navbar-pf-navbar-nav-active-active-bg-color:                       lighten(@navbar-pf-bg-color, 8%);\n@navbar-pf-navbar-nav-active-active-open-bg-color:                  lighten(@navbar-pf-bg-color, 11%);\n@navbar-pf-navbar-nav-active-bg-color:                              lighten(@navbar-pf-bg-color, 12.5%);\n@navbar-pf-navbar-primary-bg-color-start:                           lighten(@navbar-pf-bg-color, 10%); // #474C50\n@navbar-pf-navbar-primary-bg-color-stop:                            @navbar-pf-bg-color; // #383F43\n@navbar-pf-navbar-utility-border-color:                             lighten(@navbar-pf-bg-color, 15.5%);\n@navbar-pf-navbar-utility-color:                                    @navbar-pf-color;\n@navbar-pf-navbar-utility-hover-bg-color:                           lighten(@navbar-pf-bg-color, 12.5%);\n@nav-pf-vertical-secondary-bg-color:                                @nav-pf-vertical-active-bg-color;\n@nav-tabs-color:                                                    @gray-pf;\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-bg-color-start:                   lighten(@navbar-pf-navbar-primary-bg-color-start, 8.5%);\n@navbar-pf-navbar-primary-context-bg-color-stop:                    lighten(@navbar-pf-navbar-primary-bg-color-stop, 11%);\n@navbar-pf-navbar-primary-hover-bg-color-start:                     lighten(@navbar-pf-navbar-primary-bg-color-start, 10%);\n@navbar-pf-navbar-primary-hover-bg-color-stop:                      lighten(@navbar-pf-navbar-primary-bg-color-stop, 10%);\n@navbar-pf-navbar-primary-hover-border-color:                       lighten(@navbar-pf-navbar-header-border-color, 20%);\n@navbar-pf-navbar-primary-context-border-color:                     lighten(@navbar-pf-navbar-header-border-color, 8%);\n@navbar-pf-navbar-primary-context-border-top-color:                 lighten(@navbar-pf-navbar-header-border-color, 7%);\n@navbar-pf-navbar-utility-hover-border-color:                       lighten(@navbar-pf-navbar-utility-border-color, 5%);\n@navbar-pf-navbar-utility-open-bg-color:                            lighten(@navbar-pf-navbar-utility-hover-bg-color, 7.5%);\n@navbar-pf-navbar-utility-open-border-color:                        lighten(@navbar-pf-navbar-utility-hover-border-color, 5%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-active-bg-color-start:                    lighten(@navbar-pf-navbar-primary-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-active-bg-color-stop:                     lighten(@navbar-pf-navbar-primary-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-active-border-color:                      lighten(@navbar-pf-navbar-primary-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-start:             lighten(@navbar-pf-navbar-primary-context-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-stop:              lighten(@navbar-pf-navbar-primary-context-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-hover-border-color:               lighten(@navbar-pf-navbar-primary-context-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-border-top-color:           lighten(@navbar-pf-navbar-primary-context-border-top-color, 6%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-active-bg-color-start:            lighten(@navbar-pf-navbar-primary-context-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-active-bg-color-stop:             lighten(@navbar-pf-navbar-primary-context-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-active-border-color:              lighten(@navbar-pf-navbar-primary-context-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-active-border-top-color:          lighten(@navbar-pf-navbar-primary-context-hover-border-top-color, 6%);\n// References variable declared in block above\n@navbar-pf-navbar-primary-context-active-border-right-color:        @navbar-pf-navbar-primary-context-active-border-color;\n@slider-line-height:                                                16px;\n@slider-horizontal-width:                                           100%;\n@slider-primary-top:                                                @color-pf-black-100;\n@slider-primary-bottom:                                             @color-pf-black-200;\n@slider-secondary-top:                                              @color-pf-blue-400;\n@slider-secondary-bottom:                                           @color-pf-blue-300;\n\n// Alternate navigation layout - Kept for backwards compatibility\n// --------------------------------------------------------------\n@footer-pf-alt-bg-color:                                            @footer-pf-bg-color;\n@footer-pf-alt-padding-left:                                        @footer-pf-padding-left;\n@footer-pf-alt-padding-top:                                         @footer-pf-padding-top;\n@footer-pf-alt-height:                                              @footer-pf-height;\n@img-path-alt:                                                      @img-path;\n@nav-pf-vertical-alt-active-color:                                  @color-pf-blue-300;\n@nav-pf-vertical-alt-bg-color:                                      @color-pf-white;\n@nav-pf-vertical-alt-badge-color:                                   @color-pf-white;\n@nav-pf-vertical-alt-border-color:                                  @sidebar-pf-border-color;\n@nav-pf-vertical-alt-collapsed-width:                               75px;\n@nav-pf-vertical-alt-link-height:                                   63px;\n@nav-pf-vertical-alt-link-padding:                                  17px 20px 17px 25px;\n@nav-pf-vertical-alt-width:                                         250px;\n@navbar-pf-alt-bg-repeat:                                           @navbar-pf-vertical-bg-repeat;\n@navbar-pf-alt-bg-size:                                             @navbar-pf-vertical-bg-size;\n@navbar-pf-alt-border-color:                                        @navbar-pf-vertical-border-color;\n@navbar-pf-alt-border-style:                                        @navbar-pf-vertical-border-style;\n@navbar-pf-alt-border-width:                                        @navbar-pf-vertical-border-width;\n@navbar-pf-alt-color:                                               @navbar-pf-vertical-color;\n@navbar-pf-alt-height:                                              @navbar-pf-vertical-height;\n@navbar-pf-alt-nav-item-iconic-padding:                             @navbar-pf-vertical-nav-item-iconic-padding;\n@navbar-pf-alt-navbar-brand-color:                                  @navbar-pf-vertical-navbar-brand-color;\n@navbar-pf-alt-navbar-brand-icon-margin:                            @navbar-pf-vertical-navbar-brand-icon-margin;\n@navbar-pf-alt-navbar-brand-margin:                                 @navbar-pf-vertical-navbar-brand-margin;\n@navbar-pf-alt-navbar-brand-min-height:                             @navbar-pf-vertical-navbar-brand-min-height;\n@navbar-pf-alt-navbar-brand-name-breakpoint:                        @navbar-pf-vertical-navbar-brand-name-breakpoint;\n@navbar-pf-alt-navbar-brand-name-margin:                            @navbar-pf-vertical-navbar-brand-name-margin;\n@navbar-pf-alt-navbar-brand-padding:                                @navbar-pf-vertical-navbar-brand-padding;\n@navbar-pf-alt-navbar-toggle-margin:                                @navbar-pf-vertical-navbar-toggle-margin;\n@navbar-pf-alt-navbar-toggle-icon-bar-hover-bg:                     @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n\n// Login page\n// -------------------\n@login-pf-brand-margin-top:                                               20px;\n@login-pf-brand-desktop-margin-top:                                       62px;\n@login-pf-page-header-margin-bottom:                                      20px;\n@login-pf-page-header-desktop-margin-bottom:                              40px;\n@login-pf-page-header-paragraph-margin-top:                               20px;\n@login-pf-card-pf-padding:                                 10px 20px 30px 20px;\n@login-pf-card-pf-desktop-padding:                         20px 40px 30px 40px;\n@login-pf-card-pf-max-width:                                             840px;\n@login-pf-checkbox-label-margin-bottom:                                   15px;\n@login-pf-dropdown-toggle-padding-right:                                  15px;\n@login-pf-btn-primary-margin-top:                                         40px;\n@login-pf-header-margin-bottom:                                           20px;\n@login-pf-header-desktop-margin-bottom:                                   30px;\n@login-pf-signup-margin-top:                                              40px;\n@login-pf-signup-a-margin-left:                                           10px;\n@login-pf-page-footer-links-margin-top:                                   60px;\n@login-pf-page-footer-links-li-margin-right:                              20px;\n@login-pf-page-footer-sso-margin-top:                                     40px;\n@login-pf-page-footer-sso-logos-li-margin:                                5px;\n@login-pf-page-accounts-margin:                                           20px;\n@login-pf-accounts-section-heading-margin-top:                            30px;\n@login-pf-accounts-section-heading-margin-bottom:                         30px;\n@login-pf-accounts-section-heading-desktop-margin-bottom:                 15px;\n@login-pf-accounts-section-heading-desktop-padding-right:                 40px;\n@login-pf-accounts-section-heading-desktop-padding-left:                  40px;\n@login-pf-accounts-link-margin-bottom:                                    15px;\n@login-pf-accounts-link-img-margin-right:                                 10px;\n@login-pf-accounts-link-a-padding:                                        7px;\n@login-pf-accounts-more-caret-margin-left:                                5px;\n@login-pf-social-margin:                                           40px 0 0 0;\n\n\n// Bootstrap overrides\n// -------------------\n@alert-info-border:                                                 @color-pf-black-500;\n@alert-link-font-weight:                                            500;\n@alert-padding:                                                     11px;\n@body-bg:                                                           @color-pf-white;\n@border-radius-base:                                                1px;\n@brand-danger:                                                      @color-pf-red;\n@brand-info:                                                        @color-pf-blue-500;\n@brand-primary:                                                     @color-pf-blue-300;\n@brand-success:                                                     @color-pf-green;\n@brand-warning:                                                     @color-pf-orange;\n@breadcrumb-bg:                                                     transparent;\n@breadcrumb-separator:                                              \"\\f105\";\n@bs-datetimepicker-timepicker-font-size:                            1em;\n@bs-datetimepicker-btn-hover-bg:                                    transparent;\n@btn-danger-bg:                                                     @color-pf-red-200;\n@btn-danger-border:                                                 @color-pf-red-300;\n@btn-default-border:                                                @color-pf-black-400;\n@btn-font-weight:                                                   600;\n@btn-primary-bg:                                                    @color-pf-blue;\n@btn-primary-border:                                                @color-pf-blue-500;\n@caret-width-base:                                                  0;\n@code-bg:                                                           @color-pf-blue-50;\n@dropdown-border:                                                   @color-pf-black-400;\n@dropdown-divider-bg:                                               @color-pf-black-200;\n@dropdown-link-active-color:                                        @color-pf-white;\n@dropdown-link-hover-bg:                                            @color-pf-blue-50;\n@font-family-base:                                                  \"Open Sans\", Helvetica, Arial, sans-serif;\n@font-size-base:                                                    12px;\n@gray-dark:                                                         lighten(@color-pf-black, 20%);   // #333\n@gray-darker:                                                       lighten(@color-pf-black, 13.5%); // #222\n@gray-light:                                                        lighten(@color-pf-black, 60%);   // #999\n@gray-lighter:                                                      lighten(@color-pf-black, 93.5%); // #eee\n@grid-gutter-width:                                                 40px;\n@icon-font-path:                                                    \"../fonts/\";\n@input-bg-disabled:                                                 @color-pf-black-150;\n@input-border:                                                      @color-pf-black-400;\n@line-height-base:                                                  1.66666667; // 20/12\n@link-color:                                                        @color-pf-blue;\n@list-group-border:                                                 @color-pf-black-150;\n@list-group-border-radius:                                          0;\n@list-group-hover-bg:                                               @color-pf-blue-50;\n@link-hover-color:                                                  @color-pf-blue-500;\n@nav-tabs-border-color:                                             @color-pf-black-200;\n@nav-tabs-link-hover-border-color:                                  transparent;\n@padding-large-horizontal:                                          10px;\n@padding-base-horizontal:                                           6px;\n@padding-base-vertical:                                             2px;\n@padding-large-vertical:                                            6px;\n@pager-border-radius:                                               0;\n@pager-disabled-color:                                              @color-pf-black-500;\n@pagination-bg:                                                     @color-pf-black-150;\n@pagination-border:                                                 @color-pf-black-400;\n@pagination-hover-bg:                                               @color-pf-black-200;\n@panel-inner-border:                                                @color-pf-black-300;\n@popover-arrow-color:                                               @color-pf-white;\n@popover-arrow-outer-color:                                         @color-pf-black-400;\n@popover-border-color:                                              @color-pf-black-400;\n@popover-max-width:                                                 220px;\n@popover-title-bg:                                                  @color-pf-black-150;\n@pre-bg:                                                            @color-pf-black-100;\n@progress-bg:                                                       @color-pf-black-200;\n@table-bg-accent:                                                   @color-pf-black-150;\n@table-bg-hover:                                                    @color-pf-blue-50;\n@table-border-color:                                                @color-pf-black-300;\n@table-cell-padding:                                                10px;\n@tooltip-arrow-width:                                               8px;\n@tooltip-bg:                                                        @color-pf-black-800;\n@tooltip-max-width:                                                 220px;\n// Reference variables declared in block above\n@alert-danger-bg:                                                   lighten(@color-pf-red-100, 55%);\n@alert-danger-border:                                               @brand-danger;\n@alert-danger-text:                                                 @gray-dark;\n@alert-info-bg:                                                     @color-pf-black-150;\n@alert-info-text:                                                   @gray-dark;\n@alert-success-bg:                                                  lighten(@color-pf-green-100, 8%);\n@alert-success-border:                                              @brand-success;\n@alert-success-text:                                                @gray-dark;\n@alert-warning-bg:                                                  lighten(@color-pf-orange-100, 8%);\n@alert-warning-border:                                              @brand-warning;\n@alert-warning-text:                                                @gray-dark;\n@badge-border-radius:                                               @border-radius-base;\n@border-radius-large:                                               @border-radius-base;\n@border-radius-small:                                               @border-radius-base;\n@breadcrumb-active-color:                                           @gray-pf;\n@breadcrumb-color:                                                  @gray-pf;\n@btn-default-bg:                                                    @gray-lighter;\n@btn-default-color:                                                 @gray-pf;\n@caret-width-large:                                                 @caret-width-base;\n@code-color:                                                        @color-pf-blue-600;\n@dropdown-fallback-border:                                          @dropdown-border;\n@dropdown-link-active-bg:                                           @link-color;\n@dropdown-link-hover-color:                                         @gray-pf;\n@font-size-h1:                                                      ceil((@font-size-base * 2)); // ~24px\n@font-size-h2:                                                      ceil((@font-size-base * 1.8333)); // ~22px\n@font-size-h3:                                                      ceil((@font-size-base * 1.3333)); // ~16px\n@font-size-h5:                                                      ceil((@font-size-base * 1.0833)); // ~13px\n@font-size-large:                                                   ceil((@font-size-base * 1.1666)); // ~14px\n@font-size-small:                                                   ceil((@font-size-base * .9166)); // ~11px\n@input-color:                                                       @gray-dark;\n@nav-tabs-active-link-hover-color:                                  @link-color;\n@nav-tabs-justified-link-border-color:                              @nav-tabs-border-color;\n@nav-pf-vertical-badges-width:                                      (@nav-pf-vertical-width + 50px);\n@padding-small-horizontal:                                          @padding-base-horizontal;\n@padding-small-vertical:                                            @padding-base-vertical;\n@panel-group-pf-danger-heading-bg:                                  @alert-danger-bg;\n@panel-group-pf-primary-heading-bg:                                 lighten(@brand-primary, 38%);\n@panel-group-pf-success-heading-bg:                                 @alert-success-bg;\n@panel-group-pf-warning-heading-bg:                                 @alert-warning-bg;\n@panel-group-pf-info-heading-bg:                                    lighten(desaturate(spin(@brand-info, 13), 45), 60%);\n@panel-danger-border:                                               @brand-danger;\n@panel-danger-heading-bg:                                           @brand-danger;\n@panel-info-border:                                                 @brand-info;\n@panel-info-heading-bg:                                             @brand-info;\n@panel-primary-border:                                              @brand-primary;\n@panel-primary-text:                                                @body-bg;\n@panel-success-border:                                              @brand-success;\n@panel-success-heading-bg:                                          @brand-success;\n@panel-warning-border:                                              @brand-warning;\n@panel-warning-heading-bg:                                          @brand-warning;\n@state-warning-text:                                                @brand-warning;\n@state-danger-text:                                                 @brand-danger;\n// Reference variable declared in block above\n@panel-danger-text:                                                 @panel-primary-text;\n@panel-info-text:                                                   @panel-primary-text;\n@panel-success-text:                                                @panel-primary-text;\n@panel-warning-text:                                                @panel-primary-text;\n\n// PatternFly-specific variables based on Bootstrap overides\n// ---------------------------------------------------------\n@bootstrap-switch-bg-color:                                         @btn-default-bg;\n@btn-danger-bg-img-start:                                           @brand-danger;\n@btn-danger-bg-img-stop:                                            @btn-danger-bg;\n@btn-primary-bg-img-start:                                          @brand-primary;\n@btn-primary-bg-img-stop:                                           @btn-primary-bg;\n@dropdown-link-focus-bg:                                            @link-color;\n@line-height-computed:                                              floor((@font-size-base * @line-height-base));\n@nav-pf-vertical-icon-size:                                         (@font-size-base + 8);\n@notification-badge-color:                                          @color-pf-blue-400;\n@progress-sm:                                                       (@line-height-computed - 6);\n@progress-xs:                                                       (@line-height-computed - 14);\n@syntax-1:                                                          @btn-danger-bg;\n@syntax-2:                                                          @gray-dark;\n@syntax-3:                                                          @brand-success;\n@syntax-4:                                                          @brand-info;\n@tooltip-font-size:                                                 @font-size-base;\n","//\n// Bootstrap-Datepicker\n// --------------------------------------------------\n\n.bootstrap-datepicker.form-control[readonly] {\n  background-color: @input-bg;\n  border-color: @input-border !important;\n  color: @input-color;\n  .box-shadow(inset 0 1px 1px fade(@color-pf-black, 7.5%));\n  .form-control-outline();\n  &:focus {\n    // TODO Create global variables for validation box shadows?\n    @input-validation-focus-box-shadow: fade(@color-pf-black, 7.5%);\n    border-color: @input-border-focus !important;\n    .has-error & {\n      // TODO Create global variables for validation box shadows?\n      @state-danger-input-focus: lighten(@state-danger-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-danger-input-focus}\";\n      border-color: darken(@state-danger-text, 10%);\n      .box-shadow(@shadow);\n    }\n    .has-success & {\n      // TODO Create global variables for validation box shadows?\n      @state-success-input-focus: lighten(@state-success-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-success-input-focus}\";\n      border-color: darken(@state-success-text, 10%);\n      .box-shadow(@shadow);\n    }\n    .has-warning & {\n      // TODO Create global variables for validation box shadows?\n      @state-warning-input-focus: lighten(@state-warning-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-warning-input-focus}\";\n      border-color: darken(@state-warning-text, 10%);\n      .box-shadow(@shadow);\n    }\n  }\n  &:hover {\n    border-color: @input-border-hover !important;\n    .has-error & {\n      border-color: darken(@state-danger-text, 10%) !important;\n    }\n    .has-success & {\n      border-color: darken(@state-success-text, 10%) !important;\n    }\n    .has-warning & {\n      border-color: darken(@state-warning-text, 10%) !important;\n    }\n  }\n  .has-error & {\n    border-color: @state-danger-text !important;\n  }\n  .has-success & {\n    border-color: @state-success-text !important;\n  }\n  .has-warning & {\n    border-color: @state-warning-text !important;\n  }\n}\n\n.datepicker {\n  border-radius: @border-radius-base;\n  .datepicker-switch,\n  tfoot .clear,\n  tfoot .today {\n    font-size: @font-size-large;\n    font-weight: 500;\n  }\n  .next,\n  .prev {\n    font-weight: 500;\n  }\n  table tr {\n    td,\n    th {\n      border-radius: @border-radius-base;\n    }\n    td {\n      &.active,\n      &.active:hover,\n      &.active.disabled,\n      &.active.disabled:hover {\n        background: @dropdown-link-active-bg !important;\n        color: @color-pf-white !important;\n        text-shadow: none;\n      }\n      &.day:hover,\n      &.day.focused {\n        background: @dropdown-link-hover-bg;\n      }\n      &.selected,\n      &.selected:hover,\n      &.selected.disabled,\n      &.selected.disabled:hover {\n        text-shadow: none;\n      }\n      span {\n        border-radius: @border-radius-base;\n        &.active,\n        &.active:hover,\n        &.active.disabled,\n        &.active.disabled:hover {\n          background: @dropdown-link-active-bg;\n          text-shadow: none;\n        }\n        &:hover {\n          background: @dropdown-link-hover-bg;\n        }\n      }\n    }\n  }\n  thead tr:first-child th,\n  tfoot tr th {\n    &:hover {\n      background: @dropdown-link-hover-bg;\n    }\n  }\n}\n\n.input-daterange {\n  input:first-child {\n    border-radius: @border-radius-base 0 0 @border-radius-base;\n  }\n  input:last-child {\n    border-radius: 0 @border-radius-base @border-radius-base 0;\n  }\n  .input-group-addon {\n    background-color: @input-group-addon-bg;\n    border-color: @input-group-addon-border-color;\n    line-height: @line-height-base;\n    padding: @padding-base-vertical @padding-base-horizontal;\n  }\n}\n","// Mixins - Bootstrap overrides\n// -------------------\n\n// Form control outline\n.form-control-outline(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0 !important;\n    .box-shadow(~\"inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Gradients\n#gradient {\n  .striped(@color: fade(@color-pf-black, 15%); @angle: -45deg) {\n    background-image: linear-gradient(@angle, @color 25%, @color 26%, transparent 27%, transparent 49%, @color 50%, @color 51%, transparent 52%, transparent 74%, @color 75%, @color 76%, transparent 77%);\n  }\n}\n\n// Horizontal dividers\n.nav-divider(@color: @color-pf-black-200, @margin: 4px 1px) {\n  background-color: @color;\n  height: 1px;\n  margin: @margin;\n  overflow: hidden;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  &:-moz-placeholder            { color: @color; font-style: italic; } // Firefox 4-18\n  &::-moz-placeholder           { color: @color; font-style: italic; opacity: 1; } // Firefox 19+\n  &:-ms-input-placeholder       { color: @color; font-style: italic; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; font-style: italic; } // Safari and Chrome\n}\n","//\n// Bootstrap-select\n// --------------------------------------------------\n\n.bootstrap-select.btn-group {\n  &.form-control {\n    margin-bottom: 0;\n  }\n  .btn {\n    // TODO Create global variable for validation state box shadows?\n    @input-validation-focus-box-shadow: fade(@color-pf-black, 7.5%);\n    &:hover {\n      border-color: @input-border-hover;\n    }\n    .caret {\n      margin-top: -4px;\n    }\n    .form-control-outline();\n    .has-error & {\n      border-color: @state-danger-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-danger-input-focus: lighten(@state-danger-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-danger-input-focus}\";\n        border-color: darken(@state-danger-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .has-success & {\n      border-color: @state-success-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-success-input-focus: lighten(@state-success-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-success-input-focus}\";\n        border-color: darken(@state-success-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .has-warning & {\n      border-color: @state-warning-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-warning-input-focus: lighten(@state-warning-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-warning-input-focus}\";\n        border-color: darken(@state-warning-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n  }\n  .dropdown-menu { // Also see navbar.less\n    > .active > a {\n      &,\n      &:active {\n        background-color: @dropdown-link-hover-bg !important;\n        border-color: @dropdown-link-hover-border-color !important;\n        color: @gray-dark !important;\n        small {\n          color: @gray-light !important;\n        }\n      }\n    }\n    > .disabled > a {\n      color: @gray-light !important;\n    }\n    > .selected > a {\n      background-color: @dropdown-link-active-bg !important;\n      border-color: @dropdown-link-active-border-color !important;\n      color: @color-pf-white !important;\n      small {\n        color: fade(@color-pf-white, 50%) !important;\n      }\n    }\n    .divider {\n      background: @dropdown-divider-bg !important;\n      margin: @dropdown-divider-margin !important;\n    }\n    dt {\n      color: @color-pf-black-500;\n      font-weight:normal;\n      padding: 1px 10px;\n    }\n    li {\n      & > a.opt {\n        padding: 1px 10px;\n      }\n      & a {\n        &:active small {\n          color: fade(@color-pf-white, 50%) !important;\n        }\n        &:hover,\n        &:focus {\n          small {\n            color: @gray-light;\n          }\n        }\n      }\n      &:not(.disabled) {\n        a:hover,\n        a:focus {\n          small {\n            color: @gray-light;\n          }\n        }\n      }\n    }\n  }\n}\n","//\n// Bootstrap slider\n// --------------------------------------------------\n// https://github.com/seiyria/bootstrap-slider\n\n\n// Overwrites and fixes to Bootstrap slider\n\n// https //github.com/seiyria/bootstrap-slider/issues/797\n.slider-tick-label-container {\n  display: flex;\n  justify-content: space-between;\n  margin-left: 0!important;\n}\n\n.slider-tick-label {\n  width: auto !important;\n}\n\n.slider {\n  .tooltip {\n    top: -10px;\n  }\n}\n.slider-track {\n  background-color: @color-pf-black-200;\n  box-shadow: inset 0 2px 3px rgba(0, 0, 0, .1), 0 0px 2px @color-pf-black-200;\n  border: 1px solid @color-pf-black-400;\n}\n\n.slider-selection {\n  #gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n}\n\n.slider-handle {\n  width: @slider-line-height;\n  height: @slider-line-height;\n  border: 1px solid @color-pf-black-400; //THIS!\n}\n\n.slider-tick {\n  background-color: transparent !important;\n  background-image:\n    radial-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3) 2px, transparent 2px) !important;\n  .box-shadow(none);\n}\n\n\n// Styles to create the pf slider\n.slider-pf {\n  display: flex;\n  align-items: center;\n\n  * {\n    margin-right: 10px;\n\n    &:last-child {\n      margin: 0;\n    }\n  }\n\n  .slider {\n    width: auto;\n    flex: 1 1 100%;\n  }\n}\n","//\n// Bootstrap Switch\n// --------------------------------------------------\n\n.@{bootstrap-switch-base} {\n  .@{bootstrap-switch-base}-handle-off,\n  .@{bootstrap-switch-base}-handle-on {\n    &.@{bootstrap-switch-base}-default {\n      background: @bootstrap-switch-handle-default-bg-color;\n    }\n  }\n  .@{bootstrap-switch-base}-label {\n    background: @bootstrap-switch-bg-color;\n    box-shadow: 0 0 2px fade(@color-pf-black, 40%);\n    #gradient > .vertical(@bootstrap-switch-bg-color-start, @bootstrap-switch-bg-color-stop);\n    position: relative;\n    z-index: 9;\n  }\n}\n","//\n// Bootstrap Touchspin\n// --------------------------------------------------\n\n.bootstrap-touchspin .input-group-btn-vertical {\n  > .btn {\n    padding-bottom: 6px;\n    padding-top: 6px;\n  }\n  .bootstrap-touchspin-down {\n    border-bottom-right-radius: @border-radius-base;\n  }\n  .bootstrap-touchspin-up {\n    border-top-right-radius: @border-radius-base;\n  }\n  i {\n    font-size: (@font-size-base - 4);\n    left: 6px;\n    top: 2px;\n    &.fa-angle-down,\n    &.fa-angle-up {\n      font-size: @font-size-base;\n      line-height: @font-size-base;\n      top: 0;\n    }\n    &.fa-angle-down,\n    &.fa-angle-up {\n      left: 7px;\n    }\n  }\n}\n","//\n// Bootstrap Tree View\n// --------------------------------------------------\n\n.treeview {\n  .list-group {\n    border-top: 0;\n  }\n  .list-group-item {\n    background: transparent;\n    border-bottom: 1px solid transparent !important;\n    border-top: 1px solid transparent !important;\n    cursor: default !important;\n    margin-bottom: 0;\n    overflow: hidden;\n    padding: 0 10px;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    &:hover {\n      background: none !important;\n    }\n    &.node-selected {\n      background: none !important;\n      border-color: transparent !important;\n      color: inherit !important;\n    }\n    &.node-check-changed {\n      span.node-icon,\n      span.text {\n        color: @bootstrap-treeview-highlight-color;\n      }\n    }\n  }\n  span.icon {\n    display: inline-block;\n    font-size: (@font-size-base + 1);\n    min-width: 10px;\n    text-align: center;\n    > [class*=\"fa-angle\"] {\n      font-size: (@font-size-base + 3);\n    }\n    &.check-icon {\n      margin-right: 10px;\n    }\n    &.expand-icon {\n      cursor: pointer !important;\n    }\n  }\n  span.image {\n    background-repeat: no-repeat;\n    background-size: contain;\n    display: inline-block;\n    height: 1.19em;\n    line-height: 1em;\n    margin-right: 5px;\n    vertical-align: middle;\n    width: 12px;\n  }\n  span.indent {\n    margin-right: 5px;\n  }\n  .node-disabled {\n    color: @color-pf-black-300;\n    cursor: not-allowed;\n    span.expand-icon {\n      cursor: default !important;\n    }\n  }\n  .node-hidden {\n    display:none;\n  }\n}\n\n.treeview-pf-hover .list-group-item {\n  cursor: pointer !important;\n  &:hover {\n    background-color: @dropdown-link-hover-bg !important;\n    border-color: @dropdown-link-hover-border-color !important;\n  }\n}\n\n.treeview-pf-select .list-group-item {\n  cursor: pointer !important;\n  &.node-selected {\n    background: @dropdown-link-active-bg !important;\n    border-color: @dropdown-link-active-border-color !important;\n    color: @dropdown-link-active-color !important;\n  }\n}\n","//\n// Cards\n// --------------------------------------------------\n\n.card-pf {\n  background: @card-pf-bg-color;\n  border-top: 2px solid @card-pf-border-top-color;\n  .box-shadow(0 1px 1px fade(@color-pf-black, 17.5%));\n  margin: 0 (-(@grid-gutter-width / 4)) (@grid-gutter-width / 2);\n  padding: 0 (@grid-gutter-width / 2);\n  &.card-pf-accented {\n    border-top-color: @card-pf-accented-border-top-color;\n  }\n  &.card-pf-aggregate-status {\n    .card-pf-aggregate-status-notifications,\n    .card-pf-title {\n      a {\n        color: @text-color;\n        &.add {\n          color: @link-color;\n          &:hover {\n            color: @link-hover-color;\n          }\n        }\n        &:hover {\n          color: @link-hover-color;\n        }\n      }\n    }\n  }\n  &.card-pf-aggregate-status {\n    padding: 0 (@grid-gutter-width / 4);\n    text-align: center;\n  }\n  &.card-pf-aggregate-status-mini {\n    padding-bottom: (@grid-gutter-width / 4);\n    position: relative;\n  }\n  @media (min-width: @grid-float-breakpoint) {\n    &.card-pf-bleed-left {\n      margin-left: (-(@grid-gutter-width / 2));\n    }\n    &.card-pf-bleed-right {\n      border-right: 1px solid @card-pf-border-color;\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n  }\n}\n\n.card-pf-aggregate-status-notifications {\n  font-size: (@font-size-base * 2); // 24px\n  font-weight: 300;\n  .card-pf-aggregate-status-mini & {\n    line-height: 1;\n  }\n  .card-pf-aggregate-status-notification + .card-pf-aggregate-status-notification {\n    border-left: 1px solid @card-pf-border-color;\n    margin-left: (@grid-gutter-width / 8 - 2);\n    padding-left: (@grid-gutter-width / 4);\n  }\n  .fa, .pficon {\n    font-size: (@font-size-base * 1.5); // 18px\n    margin-right: 7px;\n  }\n}\n\n.card-pf-body {\n  margin: (@grid-gutter-width / 2) 0 0;\n  padding: 0 0 (@grid-gutter-width / 2);\n  .card-pf-aggregate-status & {\n    margin-top: (@grid-gutter-width / 4);\n    padding-bottom: (@grid-gutter-width / 4);\n  }\n  .card-pf-aggregate-status-mini & {\n    margin-bottom: 0;\n    margin-top: 0;\n    padding-bottom: 0;\n    position: absolute;\n    right: (@grid-gutter-width / 2);\n    top: 15px;\n  }\n  .card-pf-utilization .card-pf-title + & {\n    margin-top: -8px;\n  }\n  > *:last-child {\n    margin-bottom: 0;\n  }\n}\n\n.card-pf-footer {\n  background-color: @card-pf-footer-bg-color;\n  border-top: 1px solid @card-pf-border-color;\n  margin: 0 (-(@grid-gutter-width / 2)) !important;\n  padding: (@grid-gutter-width / 2) (@grid-gutter-width / 2) (@grid-gutter-width / 4);\n  a > {\n    .fa,\n    .pficon {\n      margin-right: 5px;\n    }\n  }\n  .card-pf-time-frame-filter {\n    margin-top: -2px;\n  }\n}\n\n.card-pf-link-with-icon {\n  padding-left: 21px;\n  position: relative;\n  .fa,\n  .pficon {\n    font-size: 16px;\n    left: 0;\n    position: absolute;\n    top: 0;\n  }\n}\n\n.card-pf-time-frame-filter {\n  .card-pf-heading &,\n  .card-pf-footer & {\n    float: right;\n    margin-left: 20px;\n  }\n}\n\n.card-pf-heading {\n  border-bottom: 1px solid @card-pf-border-color;\n  margin: 0 (-(@grid-gutter-width / 2)) (@grid-gutter-width / 2);\n  padding: 0 (@grid-gutter-width / 2) 0;\n  & .card-pf-time-frame-filter {\n    margin-top: -5px;\n  }\n}\n\n.card-pf-heading-details {\n  float: right;\n  font-size: (@font-size-small - 1);\n}\n\n.card-pf-subtitle {\n  font-size: @font-size-h3;\n  margin-top: @line-height-computed;\n  margin-bottom: (@line-height-computed / 2);\n  [class^=\"col\"] & {\n    margin-top: 0;\n  }\n  @media (max-width: @screen-xs-max) {\n    .card-pf-body [class^=\"col\"] + [class^=\"col\"] > & {\n      margin-top: (@grid-gutter-width);\n    }\n  }\n}\n\n.card-pf-title {\n  font-size: @font-size-h3;\n  font-weight: 400;\n  margin: (@grid-gutter-width / 2) 0;\n  padding: 0;\n  .card-pf-aggregate-status & {\n    font-size: @font-size-large;\n    margin: (@grid-gutter-width / 4) 0 0;\n    .fa,\n    .pficon {\n      color: @card-pf-aggregate-status-title-icon-color;\n      font-size: @font-size-h3;\n      margin-right: 7px;\n    }\n  }\n  .card-pf-aggregate-status-count {\n    font-size: @font-size-h3;\n    .card-pf-aggregate-status-mini & {\n      display: block;\n      font-size: (@font-size-base * 2); // 24px\n      font-weight: 300;\n      margin-bottom: 3px;\n    }\n  }\n  .card-pf-aggregate-status-mini & {\n    font-size: @font-size-base;\n    margin-top: (@grid-gutter-width / 8);\n    a {\n      display: inline-block;\n    }\n    .fa,\n    .pficon {\n      font-size: (@font-size-base * 2 + 2); // 26px\n      margin-right: 0;\n      min-width: (@font-size-base * 2 + 2); // 26px\n      position: absolute;\n      left: (@grid-gutter-width / 2);\n      text-align: center;\n      top: 15px;\n    }\n  }\n}\n\n.card-pf-utilization-details {\n  border-bottom: 1px solid @card-pf-border-color;\n  display: table;\n  margin: 12px 0 15px;\n  padding: 0 0 15px;\n  width: 100%;\n  .card-pf-utilization-card-details-count,\n  .card-pf-utilization-card-details-description {\n    float: left;\n    line-height: 1;\n  }\n  .card-pf-utilization-card-details-count {\n    font-size: (@font-size-base * 2 + 2); // 26px\n    font-weight: 300;\n    margin-right: 10px;\n  }\n  .card-pf-utilization-card-details-line-1,\n  .card-pf-utilization-card-details-line-2 {\n    display: block;\n  }\n  .card-pf-utilization-card-details-line-1 {\n    font-size: (@font-size-small - 1);\n    margin-bottom: 2px;\n  }\n}\n\n.cards-pf {\n  background: @card-pf-container-bg-color;\n  .row-cards-pf {\n    padding: 0 20px;\n    &:first-child { padding-top: 20px; }\n  }\n}\n\n.container-cards-pf {\n  margin-top: (@grid-gutter-width / 2);\n}\n\n.row-cards-pf {\n  margin-left: (-(@grid-gutter-width / 4));\n  margin-right: (-(@grid-gutter-width / 4));\n}\n","//\n// Card View\n// --------------------------------------------------\n\n.card-pf-view {\n  border: 2px solid transparent;\n  .card-pf-heading-kebab {\n    .dropdown-kebab-pf {\n      margin-top: -3px;\n    }\n    + .progress-pf-legend {\n      p { margin-bottom: 0; }\n      .progress {\n        margin-bottom: 7px;\n        margin-top: 16px;\n      }\n    }\n  }\n  .card-pf-info {\n    margin-top: 15px;\n    strong {\n      font-size: ceil((@font-size-base + 1));\n      margin-right: 10px;\n    }\n  }\n  .card-pf-item {\n    display: inline-block;\n    font-size: @font-size-h3;\n    padding: 0 13px 0 15px;\n    &:first-child { padding-left: 0; }\n    &:last-child { padding-right: 0; }\n    + .card-pf-item { border-left: 1px solid @card-pf-border-color; }\n    .fa-check { color: @brand-success; }\n    .fa,\n    .pficon {\n      + .card-pf-item-text { margin-left: 10px; }\n    }\n  }\n  .card-pf-items { margin-top: 15px; }\n  .card-pf-title {\n    font-size: ceil((@font-size-base * 1.6666));\n    font-weight: 300;\n    margin-bottom: 0;\n    margin-top: 15px;\n    .fa,\n    .pficon {\n      font-size: ceil((@font-size-base * 1.5));\n      margin-right: 2px;\n    }\n    .col-lg-2 & { font-size: @font-size-h3; }\n  }\n  .card-pf-top-element .card-pf-icon-circle {\n    border: 2px solid @color-pf-blue-300;\n    border-radius: 50%;\n    display: block;\n    font-size: 46px;\n    height: 106px;\n    line-height: 102px;\n    margin: 0 auto;\n    text-align: center;\n    width: 106px;\n    .col-lg-2 & {\n      font-size: 23px;\n      height: 54px;\n      line-height: 50px;\n      width: 54px;\n    }\n  }\n  .card-pf-view-checkbox {\n    position: absolute;\n    top: 11px;\n    left: 15px;\n    input[type=checkbox] { display: none; }\n  }\n  &.card-pf-view-multi-select {\n    .card-pf-view-checkbox {\n      input[type=checkbox] {\n        display: block;\n        @media(min-width:@screen-sm-min) {\n          visibility: hidden;\n          &:checked { visibility: visible; }\n        }\n      }\n    }\n    &:hover .card-pf-view-checkbox input[type=checkbox] { visibility: visible; }\n  }\n  &.card-pf-view-select {\n    position: relative;\n    &:hover { .box-shadow(0 1px 6px fade(@color-pf-black, 35%)); }\n    &.active { border: 2px solid @card-pf-selected-border-color; }\n  }\n  &.card-pf-view-single-select { cursor: pointer; }\n  &.card-pf-view-xs {\n    .card-pf-title {\n      font-size: 16px;\n      font-weight: normal;\n      margin-bottom: 10px;\n      .fa,\n      .pficon {\n        font-size: 14px;\n        margin-right: 5px;\n      }\n    }\n  }\n}\n","//\n// Charts\n// --------------------------------------------------\n\n.c3 {\n  path {\n    stroke: @table-border-color;\n  }\n  svg {\n    font-family: @font-family-base;\n  }\n}\n\n.c3-axis-x .tick line {\n  stroke: @table-border-color;\n}\n\n.c3-axis-y .tick line {\n  display: none;\n}\n\n.c3-chart-arc path {\n  stroke: @color-pf-white;\n}\n\n.c3-grid line {\n  stroke: @table-border-color;\n}\n\n.c3-line {\n  stroke-width: 2px;\n}\n\n.c3-tooltip {\n  background: @tooltip-bg;\n  .box-shadow(none);\n  .opacity(@tooltip-opacity);\n\n  td {\n    background: transparent;\n    border: 0;\n    color: @tooltip-color;\n    font-size: @font-size-base;\n    padding: 5px 10px;\n  }\n\n  th {\n    background: transparent;\n    font-size: @font-size-base;\n    padding: 5px 10px 0;\n    border-bottom: solid 2px @color-pf-black;\n  }\n\n  tr {\n    border: 0;\n    + tr > td {\n      padding-top: 0;\n    }\n  }\n}\n\n.c3-tooltip-sparkline,\n.donut-tooltip-pf {\n  background: @tooltip-bg;\n  color: @tooltip-color;\n  .opacity(@tooltip-opacity);\n  padding: 2px 6px;\n}\n\n.c3-xgrid,\n.c3-ygrid {\n  stroke-dasharray: 0 0;\n}\n\n.chart-pf-sparkline {\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.donut-title-big-pf {\n  font-size: @donut-font-size-big;\n  font-weight: 300;\n}\n\n.donut-title-small-pf {\n  font-size: @font-size-base;\n  font-weight: 400;\n}\n\n.line-chart-pf {\n  .c3-zoom-rect {\n    opacity: 1 !important;\n    fill: @color-pf-black-100;\n    stroke: @table-border-color;\n    stroke-width: 1px;\n  }\n}\n\n.pct-donut-chart-pf {\n\n  .pct-donut-chart-pf-label {\n    display: block;\n  }\n\n  &.pct-donut-chart-pf-left,\n  &.pct-donut-chart-pf-right,\n  .pct-donut-chart-pf-left,\n  .pct-donut-chart-pf-right {\n    display: flex;\n    flex-direction: row;\n    justify-content: center;\n    align-items: center;\n  }\n\n  &.pct-donut-chart-pf-left,\n  &.pct-donut-chart-pf-right {\n    display: inline-flex;\n  }\n\n  &.pct-donut-chart-pf-left,\n  .pct-donut-chart-pf-left {\n    flex-direction: row-reverse;\n  }\n}\n\n","//\n// Close icons\n// --------------------------------------------------\n\n//this should no longer be needed and be replaced with pficon-close. This is here for legacy. For further info see https://github.com/patternfly/patternfly/pull/781\n\n.close {\n  text-shadow: none;\n  z-index: 1;\n  position: relative;\n  .opacity(.6);\n  &:hover,\n  &:focus {\n    .opacity(.9);\n  }\n}\n","//\n// DataTables\n// --------------------------------------------------\n\n// Deprecated\n.ColVis_Button {\n  &:active {\n    &:focus {\n      outline: none;\n    }\n  }\n}\n\n// Deprecated\n.ColVis_catcher {\n  position: absolute;\n  z-index: 999;\n}\n\n// Deprecated\n.ColVis_collection {\n  background-color: @dropdown-bg;\n  border: 1px solid @dropdown-border;\n  border-radius: @border-radius-base;\n  .box-shadow(0 6px 12px fade(@color-pf-black, 17.5%));\n  background-clip: padding-box;\n  list-style: none;\n  margin: -1px 0 0 0;\n  padding: 5px 10px;\n  width: 150px;\n  z-index: @zindex-dropdown;\n  label {\n    font-weight: normal;\n    margin-bottom: 5px;\n    margin-top: 5px;\n    padding-left: 20px;\n  }\n}\n\n// Deprecated\n.ColVis_collectionBackground {\n  background-color: @color-pf-white;\n  height: 100%;\n  left: 0;\n  position: fixed;\n  top: 0;\n  width: 100%;\n  z-index: 998;\n}\n\n// Note: We won't be using this class with the Patternfly toolbar\n.dataTables_header {\n  background-color: @color-pf-black-150;\n  border: 1px solid @table-border-color;\n  border-bottom: none;\n  padding: 5px;\n  position: relative;\n  text-align: center;\n  .btn {\n    .box-shadow(none);\n  }\n  // Deprecated\n  .ColVis {\n    position: absolute;\n    right: 5px;\n    text-align: left;\n    top: 5px;\n    + .dataTables_info {\n      padding-right: 30px;\n    }\n  }\n  .dataTables_filter {\n    position: absolute;\n    input {\n      border: 1px solid @color-pf-black-400;\n      height: 24px;\n      @media (max-width: @screen-xs-max) {\n        width: 100px;\n      }\n    }\n  }\n  .dataTables_info {\n    padding: 2px 0;\n    @media (max-width: @screen-xs) {\n     text-align: right;\n    }\n    b {\n      font-weight: bold;\n    }\n  }\n}\n\n// Note: We won't be using this class with the table view\n.dataTables_footer {\n  background-color: @color-pf-white;\n  border: 1px solid @table-border-color;\n  border-top: none;\n  overflow: hidden;\n}\n\n// Not in use with latest example: May be used with pagination?\n.dataTables_paginate {\n  background: @color-pf-black-100;\n  float: right;\n  margin: 0;\n  .pagination {\n    float: left;\n    margin: 0;\n    > li {\n      > span {\n        border-color: @color-pf-white @color-pf-black-300 @color-pf-black-150;\n        border-width: 0 1px;\n        font-size: (@font-size-base + 4);\n        font-weight: normal;\n        padding: 0;\n        text-align: center;\n        width: 31px;\n        &:hover,\n        &:focus {\n          .reset-filter();\n        }\n      }\n      &.last > span {\n        border-right: none;\n      }\n      &.disabled > span {\n        background: @color-pf-black-150;\n        border-left-color: @color-pf-black-200;\n        border-right-color: @color-pf-black-200;\n        .reset-filter();\n      }\n    }\n  }\n  .pagination-input {\n    float: left;\n    font-size: @font-size-base;\n    line-height: 1em;\n    padding: 4px 15px 0;\n    text-align: right;\n    .paginate_input {\n      border: 1px solid @color-pf-black-300;\n      .box-shadow(inset 0 1px 1px fade(@color-pf-black, 7.5%));\n      font-size: @font-size-base;\n      font-weight: 600;\n      height: 19px;\n      margin-right: 8px;\n      padding-right: 3px;\n      text-align: right;\n      width: 30px;\n    }\n    .paginate_of {\n      position: relative;\n      b {\n        margin-left: 3px;\n      }\n    }\n  }\n}\n\n.dataTables_empty {\n  background: @table-bg-accent;\n}\n\n/* Might need this for pagination?\n.dataTables_wrapper {\n  margin: @line-height-computed 0;\n  @media (max-width: @screen-xs-max) {\n    .table-responsive {\n      margin-bottom: 0;\n    }\n  }\n}\n*/\n\n// Not in use with latest example: May be used with column reordering?\n.DTCR_clonedTable {\n  background-color: fade(@color-pf-white, 70%);\n  z-index: 202;\n}\n\n// Not in use with latest example: May be used with column reordering?\n.DTCR_pointer {\n  background-color: @link-color;\n  width: 1px;\n  z-index: 201;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n  filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n",".experimental-pf > * {\n  border: 2px solid @color-pf-light-green-400;\n}\n\n.experimental-pf-bar {\n  background-color: @color-pf-light-green-400;\n  border: none;\n  text-align: center;\n  position: relative;\n}\n\n.experimental-pf-more-info {\n  background-color: @color-pf-light-green-400;\n  border: 0;\n  color: @color-pf-black;\n  display: block;\n  width: 100%;\n  padding-top: 10px;\n  padding-bottom: 10px;\n  position: static;\n  @media (min-width: @screen-md-min) {\n    padding: 0 10px;\n    position: absolute;\n    right: 0;\n    top: 0;\n    width: auto;\n  }\n}\n\n.experimental-pf-text {\n  @media (min-width: @screen-md-min) {\n    padding-left: 150px;\n    padding-right: 150px;\n  }\n\n  a {\n    color: @color-pf-black;\n    text-decoration: underline;\n    &:hover {\n      color: @color-pf-black;\n      cursor: pointer;\n    }\n  }\n}\n\n.btn-experimental-pf {\n  .button-variant(@btn-default-color; @color-pf-light-green-400; @color-pf-light-green-300; @color-pf-light-green-400; @color-pf-light-green-400);\n}\n",".filter-pf-category-select {\n  display: flex;\n}\n.filter-pf-category-select-value {\n  border-left-width: 0;\n}\n.filter-pf-category-item {\n  margin-bottom: 5px;\n}\n.filter-pf-category-label {\n  font-weight: 700;\n  margin-right: 5px;\n  padding: 5px 0 6px 5px;\n}\n.filter-pf-select {\n  .caret {\n    position: absolute;\n    top: 50%;\n    right: 10px;\n    transform: translateY(-50%);\n  }\n}\n.filter-pf-select-dropdown {\n  background-color: @color-pf-white;\n  background-image: none;\n  color: @color-pf-black-500;\n  font-size: 12px;\n  font-style: italic;\n  font-weight: 400;\n  padding-right: 25px;\n  text-align: left;\n  .caret {\n    font-style: normal;\n  }\n}\n.filter-pf-active-label {\n  margin-right: 5px;\n}\n","//\n// Footer\n// --------------------------------------------------\n\n.footer-pf-alt, .footer-pf {\n  background-color: @footer-pf-bg-color;\n  color: @gray-light;\n  font-size: @font-size-small;\n  line-height: 17px; // whole px unit to avoid height differences among browsers\n  padding-left: @footer-pf-padding-left;\n  padding-top: @footer-pf-padding-top;\n  .layout-pf-alt-fixed-with-footer &,  .layout-pf-fixed-with-footer & {\n    bottom: 0;\n    left: 0;\n    position: fixed;\n    right: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n}\n","//\n// Icons\n// --------------------------------------------------\n// Custom icons and selections from IcoMoon - Free (http://icomoon.io/#icons)\n\n@font-face {\n  font-family: \"@{icon-font-name-pf}\";\n  src:url(\"@{font-path}/@{icon-font-name-pf}.eot\");\n  src:url(\"@{font-path}/@{icon-font-name-pf}.eot?#iefix\") format(\"embedded-opentype\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.ttf\") format(\"truetype\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.woff\") format(\"woff\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.svg#@{icon-font-name-pf}\") format(\"svg\");\n  font-weight: normal;\n  font-style: normal;\n}\n\n[class^=\"@{icon-prefix}-\"],\n[class*=\" @{icon-prefix}-\"] {\n  display: inline-block;\n  font-family: \"@{icon-font-name-pf}\";\n  font-style: normal;\n  font-variant: normal;\n  font-weight: normal;\n  line-height: 1;\n  speak: none;\n  text-transform: none;\n  /* Better Font Rendering =========== */\n  -moz-osx-font-smoothing: grayscale;\n  -webkit-font-smoothing: antialiased;\n}\n.@{icon-prefix}-add-circle-o:before {\n  content: @pficon-var-add-circle-o;\n}\n.@{icon-prefix}-applications:before {\n  content: @pficon-var-applications;\n}\n.@{icon-prefix}-arrow:before {\n  content: @pficon-var-arrow;\n}\n.@{icon-prefix}-asleep:before {\n  content: @pficon-var-asleep;\n}\n.@{icon-prefix}-automation:before {\n  content: @pficon-var-automation;\n}\n.@{icon-prefix}-build:before {\n  content: @pficon-var-build;\n}\n.@{icon-prefix}-builder-image:before {\n  content: @pficon-var-builder-image;\n}\n.@{icon-prefix}-bundle:before {\n  content: @pficon-var-bundle;\n}\n.@{icon-prefix}-blueprint:before {\n  content: @pficon-var-blueprint;\n}\n.@{icon-prefix}-catalog:before {\n  content: @pficon-var-catalog;\n}\n.@{icon-prefix}-chat:before {\n  content: @pficon-var-chat;\n}\n.@{icon-prefix}-close:before {\n  content: @pficon-var-close;\n}\n.@{icon-prefix}-cloud-security:before {\n  content: @pficon-var-cloud-security;\n}\n.@{icon-prefix}-cloud-tenant:before {\n  content: @pficon-var-cloud-tenant;\n}\n.@{icon-prefix}-cluster:before {\n  content: @pficon-var-cluster;\n}\n.@{icon-prefix}-connected:before {\n  content: @pficon-var-connected;\n}\n.@{icon-prefix}-container-node:before {\n  content: @pficon-var-container-node;\n}\n.@{icon-prefix}-cpu:before {\n  content: @pficon-var-cpu;\n}\n.@{icon-prefix}-degraded:before {\n  content: @pficon-var-degraded;\n}\n.@{icon-prefix}-delete:before {\n  content: @pficon-var-delete;\n}\n.@{icon-prefix}-disconnected:before {\n  content: @pficon-var-disconnected;\n}\n.@{icon-prefix}-domain:before {\n  content: @pficon-var-domain;\n}\n.@{icon-prefix}-edit:before {\n  content: @pficon-var-edit;\n}\n.@{icon-prefix}-enhancement:before {\n  content: @pficon-var-enhancement;\n}\n.@{icon-prefix}-enterprise:before {\n  content: @pficon-var-enterprise;\n}\n.@{icon-prefix}-equalizer:before {\n  content: @pficon-var-equalizer;\n}\n.@{icon-prefix}-error-circle-o:before {\n  color: @brand-danger;\n  content: @pficon-var-error-circle-o;\n}\n.@{icon-prefix}-export:before {\n  content: @pficon-var-export;\n}\n.@{icon-prefix}-flag:before,\n.@{icon-prefix}-messages:before { // class name deprecated\n  content: @pficon-var-flag;\n}\n.@{icon-prefix}-flavor:before {\n  content: @pficon-var-flavor;\n}\n.@{icon-prefix}-filter:before {\n  content: @pficon-var-filter;\n}\n.@{icon-prefix}-folder-close:before {\n  content: @pficon-var-folder-close;\n}\n.@{icon-prefix}-folder-open:before {\n  content: @pficon-var-folder-open;\n}\n.@{icon-prefix}-help:before {\n  content: @pficon-var-help;\n}\n.@{icon-prefix}-history:before {\n  content: @pficon-var-history;\n}\n.@{icon-prefix}-home:before {\n  content: @pficon-var-home;\n}\n.@{icon-prefix}-image:before {\n  content: @pficon-var-image;\n}\n.@{icon-prefix}-import:before {\n  content: @pficon-var-import;\n}\n.@{icon-prefix}-in-progress:before {\n  content: @pficon-var-in-progress;\n}\n.@{icon-prefix}-info:before {\n  content: @pficon-var-info;\n}\n.@{icon-prefix}-infrastructure:before {\n  content: @pficon-var-infrastructure;\n}\n.@{icon-prefix}-integration:before {\n  content: @pficon-var-integration;\n}\n.@{icon-prefix}-key:before {\n  content: @pficon-var-key;\n}\n.@{icon-prefix}-locked:before {\n  content: @pficon-var-locked;\n}\n.@{icon-prefix}-maintenance:before {\n  content: @pficon-var-maintenance;\n}\n.@{icon-prefix}-memory:before {\n  content: @pficon-var-memory;\n}\n.@{icon-prefix}-middleware:before {\n  content: @pficon-var-middleware;\n}\n.@{icon-prefix}-migration:before {\n  content: @pficon-var-migration;\n}\n.@{icon-prefix}-monitoring:before {\n  content: @pficon-var-monitoring;\n}\n.@{icon-prefix}-network:before {\n  content: @pficon-var-network;\n}\n.@{icon-prefix}-on:before {\n  content: @pficon-var-on;\n}\n.@{icon-prefix}-on-running:before {\n  content: @pficon-var-on-running;\n}\n.@{icon-prefix}-optimize:before {\n  content: @pficon-var-optimize;\n}\n.@{icon-prefix}-orders:before {\n  content: @pficon-var-orders;\n}\n.@{icon-prefix}-off:before {\n  content: @pficon-var-off;\n}\n.@{icon-prefix}-ok:before {\n  color: @brand-success;\n  content: @pficon-var-ok;\n}\n.@{icon-prefix}-paused:before {\n  content: @pficon-var-paused;\n}\n.@{icon-prefix}-pending:before {\n  content: @pficon-var-pending;\n}\n.@{icon-prefix}-plugged:before {\n  content: @pficon-var-plugged;\n}\n.@{icon-prefix}-port:before {\n  content: @pficon-var-port;\n}\n.@{icon-prefix}-print:before {\n  content: @pficon-var-print;\n}\n.@{icon-prefix}-process-automation:before {\n  content: @pficon-var-process-automation;\n}\n.@{icon-prefix}-private:before {\n  content: @pficon-var-private;\n}\n.@{icon-prefix}-project:before {\n  content: @pficon-var-project;\n}\n.@{icon-prefix}-rebalance:before {\n  content: @pficon-var-rebalance;\n}\n.@{icon-prefix}-rebooting:before {\n  content: @pficon-var-rebooting;\n}\n.@{icon-prefix}-refresh:before, // class name deprecated\n.@{icon-prefix}-restart:before {\n  content: @pficon-var-restart;\n}\n.@{icon-prefix}-regions:before {\n  content: @pficon-var-regions;\n}\n.@{icon-prefix}-registry:before {\n  content: @pficon-var-registry;\n}\n.@{icon-prefix}-remove:before {\n  content: @pficon-var-remove;\n}\n.@{icon-prefix}-replicator:before {\n  content: @pficon-var-replicator;\n}\n.@{icon-prefix}-repository:before {\n  content: @pficon-var-repository;\n}\n.@{icon-prefix}-resource-pool:before {\n  content: @pficon-var-resource-pool;\n}\n.@{icon-prefix}-resources-almost-empty:before {\n  content: @pficon-var-resources-almost-empty;\n}\n.@{icon-prefix}-resources-almost-full:before {\n  content: @pficon-var-resources-almost-full;\n}\n.@{icon-prefix}-resources-full:before {\n  content: @pficon-var-resources-full;\n}\n.@{icon-prefix}-route:before {\n  content: @pficon-var-route;\n}\n.@{icon-prefix}-running:before {\n  content: @pficon-var-running;\n}\n.@{icon-prefix}-save:before {\n  content: @pficon-var-save;\n}\n.@{icon-prefix}-screen:before {\n  content: @pficon-var-screen;\n}\n.@{icon-prefix}-search:before {\n  content: @pficon-var-search;\n}\n.@{icon-prefix}-security:before {\n  content: @pficon-var-security;\n}\n.@{icon-prefix}-server:before {\n  content: @pficon-var-server;\n}\n.@{icon-prefix}-server-group:before {\n  content: @pficon-var-server-group;\n}\n.@{icon-prefix}-service:before {\n  content: @pficon-var-service;\n}\n.@{icon-prefix}-services:before {\n  content: @pficon-var-services;\n}\n.@{icon-prefix}-service-catalog:before {\n  content: @pficon-var-service-catalog;\n}\n.@{icon-prefix}-settings:before {\n  content: @pficon-var-settings;\n}\n.@{icon-prefix}-spinner:before {\n  content: @pficon-var-spinner;\n}\n.@{icon-prefix}-spinner2:before {\n  content: @pficon-var-spinner2;\n}\n.@{icon-prefix}-storage-domain:before {\n  content: @pficon-var-storage-domain;\n}\n.@{icon-prefix}-tenant:before {\n  content: @pficon-var-tenant;\n}\n.@{icon-prefix}-thumb-tack-o:before {\n  content: @pficon-var-thumb-tack-o;\n}\n.@{icon-prefix}-topology:before {\n  content: @pficon-var-topology;\n}\n.@{icon-prefix}-trend-down:before {\n  content: @pficon-var-trend-down;\n}\n.@{icon-prefix}-trend-up:before {\n  content: @pficon-var-trend-up;\n}\n.@{icon-prefix}-unknown:before {\n  content: @pficon-var-unknown;\n}\n.@{icon-prefix}-user:before {\n  content: @pficon-var-user;\n}\n.@{icon-prefix}-users:before {\n  content: @pficon-var-users;\n}\n.@{icon-prefix}-unlocked:before {\n  content: @pficon-var-unlocked;\n}\n.@{icon-prefix}-unplugged:before {\n  content: @pficon-var-unplugged;\n}\n.@{icon-prefix}-virtual-machine:before {\n  content: @pficon-var-virtual-machine;\n}\n.@{icon-prefix}-volume:before {\n  content: @pficon-var-volume;\n}\n.@{icon-prefix}-warning-triangle-o:before {\n  color: @brand-warning;\n  content: @pficon-var-warning-triangle-o;\n}\n.@{icon-prefix}-zone:before {\n  content: @pficon-var-zone;\n}\n","//\n// Info Tip\n// --------------------------------------------------\n\n// Overwrites for navbar.less\n.navbar-nav > li > .dropdown-menu.infotip {\n  border-top-width: 1px !important;\n  margin-top: @popover-arrow-width;\n}\n\n// Overwrites for PatternFly - navbar.less\n@media (max-width: @grid-float-breakpoint-max) {\n  .navbar-pf .navbar-nav .open .dropdown-menu.infotip {\n    background-color: @color-pf-white !important;\n    margin-top: 0;\n  }\n}\n\n// Extends \"dropdown-menu\"\n.infotip {\n  min-width: 235px;\n  padding: 0;\n  .list-group {\n    border-top: 0;\n    margin: 0;\n    padding: 8px 0;\n    .list-group-item {\n      border: none;\n      margin: 0 15px 0 34px;\n      padding: 5px 0;\n      > .i {\n        color: @gray-pf;\n        font-size: 13px;\n        left: -20px;\n        position: absolute;\n        top: 8px;\n      }\n      > a {\n        color: @gray-pf;\n        line-height: 13px;\n      }\n      > .close {\n        float: right;\n      }\n    }\n  }\n  .footer {\n    background-color: @color-pf-black-150;\n    padding: 6px 15px;\n    a:hover {\n      color: @link-color;\n    }\n  }\n}\n\n// Arrows (Copy from popovers.less)\n//\n// .arrow is outer, .arrow:after is inner\n\n.infotip .arrow {\n  &,\n  &:after {\n    border-color: transparent;\n    border-style: solid;\n    display: block;\n    height: 0;\n    position: absolute;\n    width: 0;\n  }\n}\n.infotip .arrow {\n  border-width: @popover-arrow-outer-width;\n}\n.infotip .arrow:after {\n  border-width: @popover-arrow-width;\n  content: \"\";\n}\n\n.infotip {\n  &.bottom .arrow,\n  &.bottom-left .arrow,\n  &.bottom-right .arrow {\n    border-bottom-color: @popover-arrow-outer-color;\n    border-top-width: 0;\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    top: -@popover-arrow-outer-width;\n    &:after {\n      border-top-width: 0;\n      border-bottom-color: @popover-arrow-color;\n      content: \" \";\n      margin-left: -@popover-arrow-width;\n      top: 1px;\n    }\n  }\n  &.bottom-left .arrow {\n    left: 20%;\n  }\n  // Default:\n  &.bottom-right .arrow {\n    left: 80%;\n  }\n  &.top .arrow {\n    border-bottom-width: 0;\n    border-top-color: @popover-arrow-outer-color;\n    bottom: -@popover-arrow-outer-width;\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    &:after {\n      border-bottom-width: 0;\n      border-top-color: @color-pf-black-150;\n      bottom: 1px;\n      content: \" \";\n      margin-left: -@popover-arrow-width;\n    }\n  }\n  &.right .arrow {\n    border-left-width: 0;\n    border-right-color: @popover-arrow-outer-color;\n    left: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    top: 50%;\n    &:after {\n      bottom: -@popover-arrow-width;\n      border-left-width: 0;\n      border-right-color: @popover-arrow-color;\n      content: \" \";\n      left: 1px;\n    }\n  }\n  &.left .arrow {\n    border-left-color: @popover-arrow-outer-color;\n    border-right-width: 0;\n    margin-top: -@popover-arrow-outer-width;\n    right: -@popover-arrow-outer-width;\n    top: 50%;\n    &:after {\n      border-left-color: @popover-arrow-color;\n      border-right-width: 0;\n      bottom: -@popover-arrow-width;\n      content: \" \";\n      right: 1px;\n    }\n  }\n}\n","//\n// Layouts\n// --------------------------------------------------\n.layout-pf {\n  &,\n  & body {\n    min-height: 100%;\n  }\n  &.layout-pf-fixed {\n    &.transitions .container-pf-nav-pf-vertical {\n      transition: @flyout-transition-pf;\n    }\n    body {\n      padding-top: @navbar-pf-height; // make space for the navbar\n    }\n    .navbar-pf {\n      left: 0;\n      position: fixed;\n      top:0;\n      right: 0;\n      z-index: 1030;\n    }\n    .container-pf-nav-pf-vertical {\n      margin-left: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        margin-left: @nav-pf-vertical-badges-width;\n      }\n      &.collapsed-nav {\n        margin-left: @nav-pf-vertical-collapsed-width;\n        &.hidden-icons-pf {\n          margin-left: 0;\n        }\n      }\n      &.hidden-nav {\n        margin-left: 0; // remove space as left nav is hidden\n      }\n      &.hide-nav-pf {\n        margin-left: 0 !important;\n      }\n      &.collapsed-secondary-nav-pf, &.collapsed-tertiary-nav-pf {\n        margin-left: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          margin-left: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.nav-pf-persistent-secondary.secondary-visible-pf {\n        @media (min-width: 1200px) {\n          margin-left: (@nav-pf-vertical-width + @nav-pf-vertical-width);\n          &.nav-pf-vertical-with-badges {\n            margin-left: (@nav-pf-vertical-badges-width + @nav-pf-vertical-badges-width);\n          }\n          &.hidden-nav {\n            margin-left: 0; // remove space as left nav is hidden\n          }\n          &.collapsed-secondary-nav-pf {\n            margin-left: @nav-pf-vertical-width;\n            &.nav-pf-vertical-with-badges {\n              margin-left: @nav-pf-vertical-badges-width;\n            }\n          }\n          &.collapsed-tertiary-nav-pf {\n            margin-left: @nav-pf-vertical-width;\n            &.nav-pf-vertical-with-badges {\n              margin-left: @nav-pf-vertical-badges-width;\n            }\n          }\n          &.collapsed-nav {\n            margin-left: (@nav-pf-vertical-collapsed-width + @nav-pf-vertical-width);\n            &.nav-pf-vertical-with-badges {\n              margin-left: (@nav-pf-vertical-collapsed-width + @nav-pf-vertical-badges-width);\n            }\n            &.collapsed-secondary-nav-pf {\n              margin-left: @nav-pf-vertical-width;\n              &.nav-pf-vertical-with-badges {\n                margin-left: @nav-pf-vertical-badges-width;\n              }\n            }\n            &.collapsed-tertiary-nav-pf {\n              margin-left: @nav-pf-vertical-width;\n              &.nav-pf-vertical-with-badges {\n                margin-left: @nav-pf-vertical-badges-width;\n              }\n            }\n            &.hidden-icons-pf {\n              margin-left: 0;\n            }\n          }\n        }\n      }\n    }\n  }\n  &.layout-pf-fixed-with-footer {\n    body {\n      padding-bottom: @footer-pf-height;\n    }\n  }\n}\n.layout-pf-alt {\n  &,\n  & body {\n    min-height: 100%;\n  }\n  &.layout-pf-alt-fixed {\n    &.layout-pf-alt-fixed-inner-scroll {\n      &,\n      & body {\n        height: 100%;\n        min-height: 0;\n      }\n      .container-pf-alt-nav-pf-vertical-alt {\n        height: 100%;\n        overflow: auto;\n        &.container-cards-pf {\n          margin-top: 0;\n          padding-top: (@grid-gutter-width/2);\n        }\n      }\n    }\n    &.transitions .container-pf-alt-nav-pf-vertical-alt {\n      transition: @flyout-transition-pf;\n    }\n    body {\n      padding-top: @navbar-pf-alt-height; // make space for the navbar\n    }\n    .container-pf-alt-nav-pf-vertical-alt {\n      margin-left: (@nav-pf-vertical-alt-width);\n      &.collapsed-nav {\n        margin-left: (@nav-pf-vertical-alt-collapsed-width); // adjust space for the collapsed left nav\n      }\n      &.hidden-nav {\n        margin-left: 0; // remove space as left nav is hidden\n      }\n    }\n  }\n  &.layout-pf-alt-fixed-with-footer {\n    body {\n      padding-bottom: @footer-pf-alt-height;\n    }\n  }\n}\n","a.disabled {\n  color: @color-pf-black-500;\n  cursor: @cursor-disabled;\n  text-decoration: none;\n}\n","//\n// PatternFly List\n// --------------------------------------------------\n\n.list-pf {\n  border-bottom: 1px solid @list-pf-border-color;\n}\n\n.list-pf-item {\n  border-color: @list-pf-border-color;\n  border-left-color: @color-pf-white;\n  border-right-color: @color-pf-white;\n  border-style: solid;\n  border-width: 1px;\n  border-bottom: none;\n  &:hover {\n    background-color: @list-pf-hover-background-color;\n  }\n  &.active {\n    background-color: @list-pf-header-background-color;\n    border-color: @list-pf-active-border-color;\n    border-bottom-width: 1px;\n    border-bottom-style: solid;\n  }\n}\n\n.list-pf-expansion {\n  background-color: @color-pf-white;\n}\n\n.list-pf-container {\n  align-items: flex-start;\n  display: flex;\n  padding: @list-pf-padding;\n  .list-pf-expansion & {\n    border-top: 1px solid @list-pf-active-border-color;\n  }\n  // when wide enough, if the list is not stacked, then center items vertically\n  @media (min-width: @screen-md-min) {\n    .list-pf:not(.list-pf-stacked) & {\n      align-items: center;\n    }\n  }\n}\n\n.list-pf-chevron {\n  min-width: 1.2em; // ensures that the width does not shift when the chevron is sideways\n}\n\n.list-pf-chevron,\n.list-pf-select {\n  margin-right: 10px;\n  //add the divider line if there is a chevron or a select\n  + .list-pf-content {\n    border-left: 1px solid @color-pf-black-300;\n    padding-left: (@grid-gutter-width/2);\n  }\n  .fa {\n    font-size: 22px;\n  }\n}\n\n// add this class to manage flexed contents in the list item content\n.list-pf-content-flex {\n  align-items: flex-start;\n  display:flex;\n  flex-grow: 1;\n  flex-wrap: nowrap;\n  justify-content: flex-start;\n  min-width: 0;\n  // when wide enough, if the list is not stacked, then center items vertically\n  @media (min-width: @screen-md-min) {\n    .list-pf:not(.list-pf-stacked) & {\n      align-items: center;\n    }\n  }\n}\n\n.list-pf-left {\n  flex-grow: 0;\n  margin-left: 0;\n  margin-right: (@grid-gutter-width/2);\n}\n.list-pf-icon {\n  align-items: center;\n  display:flex;\n  justify-content: center;\n}\n.list-pf-icon-bordered {\n  border-radius: 50%;\n  border: 2px solid @list-view-accented-border;\n}\n.list-pf-icon-small {\n  font-size: 1.4em;\n  height: 30px;\n  line-height: 30px;\n  width: 30px;\n}\n\n\n.list-pf-content-wrapper {\n  align-items: center;\n  display:flex;\n  flex-grow: 1;\n  flex-wrap: wrap;\n  min-width: 0;\n  // when at larger breakpoints, don't stack the contents and add some space between the children\n  @media (min-width: @screen-md-min) {\n    flex-wrap: nowrap;\n    & > * + * {\n      margin-left: @grid-gutter-width;\n    }\n  }\n  // if the list is stacked, then align the contents to the top\n  .list-pf-stacked & {\n    align-items: flex-start;\n  }\n\n}\n\n.list-pf-main-content {\n  align-items: center;\n  display: flex;\n  flex-basis: @list-pf-main-content-width;\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-wrap: wrap;\n  min-width: 0;\n}\n\n// at larger breakpoints, if the list is not stacked, then don't wrap the main contents and add some space between them\n.list-pf:not(.list-pf-stacked) .list-pf-main-content {\n  @media (min-width: @screen-md-min) {\n      flex-wrap: nowrap;\n      width: auto;\n      & > * + * {\n        margin-left: @grid-gutter-width;\n      }\n  }\n}\n\n// Title and description are break-word wrapped; add .text-overflow-pf to truncate and ellipse instead\n.list-pf-title {\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-basis: 100%;\n  font-weight: bold;\n  min-width: 0;\n  word-wrap: break-word;\n}\n.list-pf-description {\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-basis: 100%;\n  min-width: 0;\n  word-wrap: break-word;\n}\n\n.list-pf-additional-content {\n  display: flex;\n  flex-basis: ((100% - @list-pf-main-content-width) + 1%); // this adjusts the proportions but adding up to > 100% allows for proper wrapping\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-wrap: wrap;\n  justify-content: space-between;\n}\n.list-pf-actions {\n  display: flex;\n  align-items: flex-start;\n  flex-grow: 0;\n  margin-left: @grid-gutter-width;\n  //by default, space contents apart\n  & > * + * {\n    margin-left: (@grid-gutter-width / 4);\n  }\n\n}\n","//\n// List View\n// --------------------------------------------------\n\n\n.list-view-pf {\n  .list-group-item {\n    align-items: flex-start;\n    background-clip: padding-box;\n    border-color: transparent #fff;\n    border-style: solid;\n    border-width: 1px;\n    .clearfix(); //IE9 fallback\n    display: flex;\n    flex-wrap: wrap;\n    padding-bottom: 0;\n    padding-top: 0;\n    &.list-view-pf-expand-active {\n      background-color: @list-view-hover-bg;\n      box-shadow: 0 2px 6px rgba(3, 3, 3, .2);\n      z-index: 1;\n    }\n    &.active {\n      color: @list-group-link-color;\n      background-color: @list-view-active-bg;\n      background-clip: border-box;\n      border-color: @list-view-active-border transparent transparent;\n      z-index:auto;\n    }\n    &:hover {\n      background-color: @list-view-hover-bg;\n      border-left-color: transparent;\n      border-right-color: transparent;\n    }\n    &.list-view-pf-expand-active {\n      border: solid 1px @list-view-active-border;\n      &:first-child {\n        border-top-color: @list-view-active-border;\n      }\n    }\n    &:first-child {\n      border-top: 1px solid transparent;\n    }\n    @media (min-width: @screen-md-min) {\n      align-items: center;\n    }\n  }\n  .list-group-item-heading {\n    font-size: @font-size-h3;\n    small {\n      display: block;\n      font-size: (@font-size-base * .8);\n      font-weight: 400;\n    }\n    @media (min-width: @screen-md-min) {\n      flex:     1 0 ~\"calc(25% - 20px)\";\n      float: left; // IE9 fallback\n      font-size: @font-size-base;\n      margin: 0 (@grid-gutter-width/2) 0 0;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      white-space: nowrap;\n      width: ~\"calc(25% - 20px)\"; // IE9 fallback\n    }\n  }\n  .list-group-item-text {\n    color: currentColor !important; // to overwrite color change when active.\n    margin-bottom: 10px;\n    @media (min-width: @screen-md-min) {\n      flex:     1 0 auto; // it covers whats left from the title\n      float: left; // IE9 fallback\n      margin: 0 @grid-gutter-width 0 0;\n      width: ~\"calc(75% - 40px)\" // IE9 fallback\n    }\n  }\n}\n.list-view-pf-actions {\n  float: right; // IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-left: (@grid-gutter-width/2);\n  margin-top: (@grid-gutter-width/2);\n  order: 2;\n  button,\n  > a,\n  .dropdown-kebab-pf {\n    margin-left: (@grid-gutter-width/4);\n  }\n  .list-view-pf-top-align & {\n    align-self: flex-start;\n  }\n}\n.list-view-pf-additional-info {\n  align-items: center;\n  display: flex;\n  flex-wrap: wrap;\n  @media (min-width: @screen-md-min) {\n    flex: 1 0 auto; // it covers whats left from summary\n    float: left; // IE9 fallback\n    width: 50%; // IE9 fallback\n  }\n}\n.list-view-pf-additional-info-item {\n  align-items: center;\n  display: inline-block;\n  display: flex;\n  margin-right: (@grid-gutter-width/2);\n  max-width:100%;\n  text-align: center;\n  &.list-view-pf-additional-info-item-stacked {\n    text-align: center;\n    flex-direction: column;\n    strong {\n      font-size: @font-size-h5;\n      line-height: 1em;\n    }\n  }\n  .pficon, .fa {\n    font-size: @font-size-h3;\n    margin-right: (@grid-gutter-width/4);\n  }\n  strong {\n    font-size: @font-size-h3;\n    font-weight: 600;\n    margin-right: 5px;\n  }\n  &:last-child {\n    margin-right: 0;\n  }\n}\n.list-view-pf-additional-info-item-donut-chart { width: 60px; }\n.list-view-pf-body {\n  align-items: center;\n  display: table-cell; //IE9 fallback\n  flex:     1;\n  min-width: 0;\n  vertical-align: top; //IE9 fallback\n  width: 100%; // IE9 fallback, it extends the cell to size of the container\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    display: flex;\n    flex-direction: row;\n  }\n}\n.list-view-pf-checkbox {\n  border-right: 1px solid @list-view-divider;\n  float: left; //IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-right: 15px;\n  margin-top: (@grid-gutter-width/2);\n  padding: 3px (@grid-gutter-width/4) 3px 0;\n  .list-view-pf-top-align & {\n    align-self: flex-start;\n  }\n}\n.list-view-pf-description {\n  flex:     1 0 50%;\n  .list-view-pf-stacked & {\n    display: block;\n    flex: none; // Fix FF\n  }\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    display: flex;\n    float: left; //IE9 fallback\n    width: 50%; //IE9 fallback\n  }\n}\n.list-view-pf-left {\n  display: table-cell; //IE9 fallback\n  padding-right: (@grid-gutter-width/2);\n  text-align: center;\n  vertical-align: top; //IE9 fallback\n  .list-view-pf-calendar {\n    font-size: @font-size-small;\n    line-height: 1em;\n    strong {\n      display: block;\n      font-size: (@font-size-h2 * 2);\n      font-weight: 300;\n      line-height: 1em;\n    }\n  }\n  .pficon, .fa {\n    border-radius: 50%;\n    font-size: 2em;\n    // -md is out of alpha order to get correct bg on -danger\n    &.list-view-pf-icon-md {\n      background-color: @alert-info-bg;\n      height: 50px;\n      line-height: 50px;\n      width: 50px;\n    }\n    &.list-view-pf-icon-danger {\n      background-color: @alert-danger-bg;\n      color: @alert-danger-border;\n    }\n    &.list-view-pf-icon-info {\n      color: @alert-info-border;\n    }\n    &.list-view-pf-icon-lg {\n      background-color: @alert-info-bg;\n      height: 60px;\n      line-height: 60px;\n      width: 60px;\n    }\n    &.list-view-pf-icon-sm {\n      border: 2px solid @list-view-accented-border;\n      font-size: 1.4em;\n      height: 30px;\n      line-height: 30px;\n      width: 30px;\n      &:before {\n        display: block;\n        line-height: 26px;\n      }\n    }\n    &.list-view-pf-icon-success {\n      background-color: @alert-success-bg;\n      color: @alert-success-border;\n    }\n    &.list-view-pf-icon-warning {\n      background-color: @alert-warning-bg;\n      color: @alert-warning-border;\n    }\n  }\n}\n.list-view-pf-main-info {\n  align-items: flex-start;\n  display: flex;\n  flex: 1;\n  min-width: 0;\n  padding-bottom: (@grid-gutter-width/2);\n  padding-top: (@grid-gutter-width/2);\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    .list-view-pf-top-align & {\n      align-items: flex-start;\n    }\n  }\n}\n.list-view-pf-stacked {\n  .list-group-item-heading {\n    float: none; // IE9 fallback\n    font-size: @font-size-h3;\n    line-height: 1.2em;\n    margin-bottom: 5px;\n    margin-right: @grid-gutter-width;\n    width: auto; // IE9 fallback\n  }\n  .list-group-item-text {\n    float: none;\n    width: auto;\n  }\n}\n.list-view-pf-view {\n  background: @list-group-top-border;\n  border: none;\n  margin-top: 30px;\n}\n.list-group-item-header {\n  box-sizing: content-box;\n  cursor: pointer;\n  margin: 0 -15px;\n  padding: 0 15px; //filling the width of the list item\n  width: 100%;\n}\n.list-view-pf-expand {\n  cursor: pointer;\n  float: left; //IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-right: 2px;\n  margin-top: (@grid-gutter-width/2);\n  padding: 3px 0;\n  &.active,\n  &:hover {\n    color: @link-color;\n  }\n  .list-view-pf-additional-info-item & {\n    margin: 0;\n    padding: 0;\n  }\n  .fa-angle-right {\n    cursor: pointer;\n    font-size: (@font-size-large+3);\n    margin-right: 5px;\n    margin-top: 2px;\n    width: 10px;\n  }\n}\n.list-group-item-container {\n  background: #fff;\n  border-top: solid 1px @list-view-active-border;\n  box-sizing: content-box;\n  margin: -1px -15px 0;\n  order: 3;\n  padding: 10px 15px;\n  position: relative;\n  width: 100%;\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n//    contenteditable attribute is included anywhere else in the document.\n//    Otherwise it causes space to appear at the top and bottom of elements\n//    that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n//    `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n  &:before,\n  &:after {\n    content: \" \"; // 1\n    display: table; // 2\n  }\n  &:after {\n    clear: both;\n  }\n}\n","//\n// List View Drag and Drop\n// See: https://github.com/marceljuenemann/angular-drag-and-drop-lists\n// --------------------------------------------------\n\n.list-view-pf-dnd {\n  // Override dnd styles\n  .dndDragging {\n    &.drag-original {\n      display: none;\n      // Show when dragging original list items\n      .list-view-pf-dnd-original-items {\n        display: block;\n      }\n    }\n    // Show dragable list items during move operation\n    .list-view-pf-dnd-drag-items {\n      display: inline-block;\n    }\n    // Hide original list items during dnd move operation\n    .list-view-pf-dnd-original-items {\n      display: none;\n    }\n  }\n  // Override dnd placeholder element for dragging list items to\n  .dndPlaceholder {\n    background-color: @color-pf-black-200;\n    padding: 20px 0;\n  }\n  // A handle decoration shown to left of each list items row\n  .list-group-item-header {\n    margin-left: -10px;\n    &:before {\n      background-image: linear-gradient(to bottom, @color-pf-blue-400 60%, @color-pf-white 0%);\n      background-position: left;\n      background-repeat: repeat-y;\n      background-size: 2px 5px;\n      border: 4px solid @color-pf-blue-400;\n      border-color: @color-pf-blue-500;\n      content: \"\";\n      height: 55px;\n      left: 4px;\n      position: absolute;\n      top: 5px;\n      width: 10px;\n    }\n  }\n}\n\n// Always hide dragable list items until shown during dnd move operation\n.list-view-pf-dnd-drag-items {\n  display: none;\n}\n","//\n// Login\n// --------------------------------------------------\n\n.login-pf {\n  height: 100%;\n  #brand {\n    position: relative;\n    top: -70px;\n    img {\n      display: block;\n      height: 18px;\n      margin: 0 auto;\n      max-width: 100%;\n      @media (min-width: @screen-sm-min) {\n        margin: 0;\n        text-align: left;\n      }\n    }\n  }\n  #badge {\n    display: block;\n    margin: 20px auto 70px;\n    position: relative;\n    text-align: center;\n    @media (min-width: @screen-sm-min) {\n      float: right;\n      margin-right: 64px;\n      margin-top: 50px;\n    }\n  }\n  body {\n    background: @login-bg-color url(\"@{img-path}/@{img-bg-login}\") repeat-x 50% 0;\n    background-size: auto;\n    @media (min-width: @screen-sm-min) {\n      background-size: 100% auto;\n    }\n  }\n  .container {\n    background-color: @login-container-bg-color-rgba;\n    clear: right;\n    color: @color-pf-white;\n    padding-bottom: 40px;\n    padding-top: 20px;\n    width: auto;\n    @media (min-width: @screen-sm-min) {\n      bottom: 13%;\n      padding-left: 80px;\n      position: absolute;\n      width: 100%;\n    }\n    .details {\n      p:first-child {\n        border-top: 1px solid fade(@color-pf-white, 30%);\n        padding-top: 25px;\n        margin-top: 25px;\n      }\n      @media (min-width: @screen-sm-min) {\n        p:first-child {\n          border-top: 0;\n          padding-top: 0;\n          margin-top: 0;\n        }\n        border-left: 1px solid fade(@color-pf-white, 30%);\n        padding-left: 40px;\n      }\n      p {\n        margin-bottom: 2px;\n      }\n    }\n    .form-horizontal {\n      .control-label {\n        font-size: (@font-size-base + 1);\n        font-weight: 400;\n        text-align: left;\n      }\n      .form-group:last-child {\n        &,\n        .help-block:last-child {\n          margin-bottom: 0;\n        }\n      }\n    }\n    .help-block {\n      color: @color-pf-white;\n    }\n    .login {\n      @media (min-width: @screen-sm-min) {\n        padding-right: 40px;\n      }\n    }\n    .submit {\n      text-align: right;\n    }\n  }\n}\n\n//\n// Login\n// The following styles are for the new login\n// --------------------------------------------------\n.login-pf-page {\n  .login-pf-brand {\n    margin-top: @login-pf-brand-margin-top;\n    max-width:360px;\n    width: 70%;\n    @media (min-width: @screen-sm-min) {\n      margin-top: @login-pf-brand-desktop-margin-top;\n    }\n  }\n  .login-pf-page-header {\n    margin-bottom: @login-pf-page-header-margin-bottom;\n      @media (min-width: @screen-sm-min) {\n        margin-bottom: @login-pf-page-header-desktop-margin-bottom;\n      }\n    text-align: center;\n    p {\n      color: @color-pf-white;\n      font-size: @font-size-large;\n      margin-left: auto;\n      margin-right: auto;\n      margin-top: @login-pf-page-header-paragraph-margin-top;\n    }\n  }\n  .card-pf {\n    padding: @login-pf-card-pf-padding;\n    margin-bottom: 0;\n    @media (min-width: @screen-sm-min) {\n      padding: @login-pf-card-pf-desktop-padding;\n    }\n    p {\n      color: @color-pf-black-600;\n    }\n  }\n  .form-control {\n    height: ceil((@input-height-base + 10px ));\n  }\n  .checkbox-label {\n    color: @color-pf-black-600;\n    font-weight: 300;\n    margin-bottom: @login-pf-checkbox-label-margin-bottom;\n    @media (min-width: @screen-sm-min) {\n      margin: 0;\n    }\n  }\n  .btn-primary {\n    margin-top: @login-pf-btn-primary-margin-top;\n  }\n  .login-pf-header {\n    margin-bottom: @login-pf-header-margin-bottom;\n    @media (min-width: @screen-sm-min) {\n      margin-bottom:@login-pf-header-desktop-margin-bottom;\n    }\n    display:flex;\n    flex-direction: column;\n    h1, p {\n      text-align: center;\n    }\n    h1 {\n      font-size: @font-size-h3;\n      @media (min-width: @screen-sm-min) {\n        font-size: @font-size-h1;\n      }\n    }\n    //this is ugly but neccessary to get the desired style :(\n    .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {\n      width: auto;\n      align-self: flex-end;\n      .dropdown-toggle {\n        color: @color-pf-black-700;\n        background: none;\n        padding:0 @login-pf-dropdown-toggle-padding-right 0 0;\n        font-weight: 300;\n        &:not(:focus) {\n          box-shadow: none;\n          border: 1px solid transparent;\n        }\n          .caret {\n            right: 0;\n          }\n      }\n    }\n  }\n  .login-pf-signup {\n    margin: @login-pf-signup-margin-top 0 0;\n    font-size: ceil((@font-size-base * 1.25));\n    text-align: center;\n    a {\n      margin-left: @login-pf-signup-a-margin-left;\n    }\n  }\n  .login-pf-settings {\n    display: flex;\n    justify-content: space-between;\n    flex-wrap: wrap;\n  }\n  .login-pf-page-footer {\n    display: flex;\n    justify-content: center;\n    flex-wrap:wrap;\n    &-links {\n      display: flex;\n      margin: @login-pf-page-footer-links-margin-top 0 0 0;\n        li:not(:last-of-type) {\n          position: relative;\n          margin: 0 @login-pf-page-footer-links-li-margin-right 0 0;\n            &:after {\n              content:\".\";\n              color: @color-pf-white;\n              position: absolute;\n              top: 0px;\n              right: -10px;\n            }\n        }\n    }\n    &-link {\n      color: @color-pf-white;\n      font-size: @font-size-large;\n    }\n    &-sso-services {\n      flex: 1 0 100%;\n      margin-top: @login-pf-page-footer-sso-margin-top;\n      text-align: center;\n      color: @color-pf-white;\n      &-logos {\n        display: flex;\n        flex-wrap: wrap;\n        padding: 0;\n        margin: 0;\n        list-style: none;\n        justify-content: center;\n          li {\n            margin: 0 @login-pf-page-footer-sso-logos-li-margin @login-pf-page-footer-sso-logos-li-margin;\n          }\n      }\n    }\n  }//login-pf-footer\n\n\n  // The following styles are for the login page with different account options\n  // --------------------------------------------------------------------------\n\n  &.login-pf-page-accounts {\n    margin-left: @login-pf-page-accounts-margin;\n    margin-right: @login-pf-page-accounts-margin;\n  }\n  .login-pf-accounts {\n    display: flex;\n    justify-content: space-between;\n    flex-wrap: wrap;\n    .login-pf-header, .login-pf-signup {\n      flex-basis: 100%;\n    }\n    max-width: @login-pf-card-pf-max-width;\n    margin-left: auto;\n    margin-right: auto;\n  }\n  .login-pf-social-section {\n    flex-basis: 100%;\n    padding:0;\n    @media (min-width: @screen-sm-min) {\n    flex:0 1 50%;\n    max-width:50%;// this is for IE10/11 that doesn't consider padding with box-sizing on flex-children.\n    }\n    @media (min-width: @screen-sm-min) {\n      &:first-of-type {\n        padding-right: @login-pf-accounts-section-heading-desktop-padding-right;\n      }\n      &:last-of-type {\n        padding-left: ceil((@login-pf-accounts-section-heading-desktop-padding-left - 1px));\n        border-left: 1px solid @color-pf-black-300;\n      }\n    }\n  }//social-section\n  .login-pf-social {\n    margin: @login-pf-social-margin;\n    @media (min-width: @screen-sm-min) {\n      margin: 0;\n      &-double-col {\n        flex-wrap: wrap;\n        display: flex;\n        justify-content: space-between;\n        .login-pf-social-link {\n          flex-basis: 48%;\n        }\n      }\n    }\n\n    &:not(.login-pf-social-all) {\n      .login-pf-social-link-more {\n        display: none;\n      }\n    }\n\n    &-link {\n        margin-bottom: @login-pf-accounts-link-margin-bottom;\n      a {\n        display: block;\n        padding: @login-pf-accounts-link-a-padding 0;\n        font-size: @font-size-large;\n        background: @color-pf-black-150;\n        text-align: center;\n        color: @color-pf-black-600;\n          img {\n            margin: 0 @login-pf-accounts-link-img-margin-right 0 0;\n            width: 20px;\n            height: 20px;\n          }\n          &:hover {\n            text-decoration: none;\n            background: @color-pf-black-200;\n          }\n      }\n    }\n    &-toggle {\n      float: right;\n      padding: 0;\n      .caret {\n        margin-left: @login-pf-accounts-more-caret-margin-left;\n      }\n      &-active {\n        .caret {\n          transform: rotate(-180deg);\n        }\n      }\n    }\n  }\n\n}//login-pf-page\n","//\n// Navbar\n// --------------------------------------------------\n\n.navbar-pf {\n  background: @navbar-pf-bg-color;\n  border: 0;\n  border-radius: 0;\n  border-top: 3px solid @navbar-pf-border-color;\n  margin-bottom: 0;\n  min-height: 0;\n  .navbar-brand {\n    color: @navbar-pf-active-color;\n    height: auto;\n    padding: 12px 0;\n    margin: 0 0 0 20px;\n    img {\n      display: block;\n    }\n  }\n  .navbar-collapse {\n    border-top: 0;\n    .box-shadow(none);\n    padding: 0;\n  }\n  .navbar-header {\n    border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n    float: none;\n  }\n  .navbar-nav {\n    margin: 0;\n    > .active > a,\n    > .active > a:hover,\n    > .active > a:focus {\n      background-color: @navbar-pf-navbar-nav-active-bg-color;\n      color: @navbar-pf-active-color;\n    }\n    > li > a {\n      color: @navbar-pf-color;\n      line-height: 1;\n      padding: 10px 20px;\n      text-shadow: none;\n      &:hover,\n      &:focus {\n        color: @navbar-pf-active-color;\n      }\n    }\n    > .open {\n      > a {\n        &,\n        &:hover,\n        &:focus {\n          background-color: @navbar-pf-navbar-nav-active-bg-color;\n          color: @navbar-pf-active-color;\n        }\n      }\n    }\n .badge {\n    background-color: @notification-badge-color;\n    border-radius: 20px;\n    color: @navbar-pf-vertical-active-color;\n    cursor: pointer;\n    font-size: (@font-size-base - 3);\n    font-weight: 700;\n    left: 26px;\n    margin: 0;\n    padding: 2px 4px;\n    position: absolute;\n    min-width: 10px;\n    min-height: 10px;\n    top: 6px;\n    @media(min-width: @screen-sm-min) {\n      left: auto;\n      right: 6px;\n      top: 3px;\n    }\n    &.badge-pf-bordered {\n      border: 1px solid @navbar-pf-bg-color;\n    }\n}\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      .active .dropdown-menu,\n      .active .navbar-persistent,\n      .open .dropdown-menu {\n        background-color: @navbar-pf-navbar-nav-active-active-bg-color !important;\n        margin-left: 0;\n        padding-bottom: 0;\n        padding-top: 0;\n        > .active > a,\n        .dropdown-submenu.open > a {\n          &,\n          &:hover,\n          &:focus {\n            background-color: @navbar-pf-navbar-nav-active-active-open-bg-color !important;\n            color: @navbar-pf-active-color;\n          }\n        }\n        > li > a {\n          background-color: transparent;\n          border: 0;\n          color: @navbar-pf-color;\n          outline: none;\n          padding-left: 30px;\n          &:hover {\n            color: @navbar-pf-active-color;\n          }\n        }\n        .divider {\n          background-color: @navbar-pf-navbar-header-border-color;\n          margin: 0 1px;\n        }\n        .dropdown-header {\n          padding-bottom: 0;\n          padding-left: 30px;\n        }\n        .dropdown-submenu {\n          &.open .dropdown-toggle {\n            color: @navbar-pf-active-color;\n          }\n          &.pull-left {\n            float: none !important;\n          }\n          > a:after {\n            display: none;\n          }\n          .dropdown-header {\n            padding-left: 45px;\n          }\n          .dropdown-menu {\n            border: 0;\n            bottom: auto;\n            .box-shadow(none);\n            display: block;\n            float: none;\n            margin: 0;\n            min-width: 0;\n            padding: 0;\n            position: relative;\n            left: auto;\n            right: auto;\n            top: auto;\n            > li > a {\n              padding: 5px 15px 5px 45px;\n              line-height: 20px;\n            }\n            .dropdown-menu > li > a {\n              padding-left: 60px;\n            }\n          }\n        }\n      }\n      .active .navbar-persistent {\n        .dropdown-submenu {\n          &.open .dropdown-menu {\n            display: block;\n          }\n          > a:after {\n            display: inline-block !important;\n            position: relative;\n            right: auto;\n            top: 1px;\n          }\n          .dropdown-menu {\n            display: none;\n          }\n          .dropdown-submenu > a:after {\n            display: none !important;\n          }\n        }\n      }\n      .context-bootstrap-select { // Also see bootstrap-select.less\n        .open > .dropdown-menu {\n          background-color: @color-pf-white !important;\n          > .active > a {\n            &,\n            &:active {\n              background-color: @dropdown-link-hover-bg !important;\n              border-color: @dropdown-link-hover-border-color !important;\n              color: @gray-dark !important;\n              small {\n                color: @gray-light !important;\n              }\n            }\n          }\n          > .disabled > a {\n            color: @gray-light !important;\n          }\n          > .selected > a {\n            &,\n            &:active {\n              background-color: @dropdown-link-active-bg !important;\n              border-color: @dropdown-link-active-border-color !important;\n              color: @color-pf-white !important;\n              small {\n                color: fade(@color-pf-white, 50%) !important;\n              }\n            }\n          }\n          li {\n            > a.opt {\n              border-bottom: 1px solid transparent;\n              border-top: 1px solid transparent;\n              color: @gray-dark;\n              padding-left: 10px;\n              padding-right: 10px;\n            }\n            & a {\n              &:active small {\n                color: fade(@color-pf-white, 50%) !important;\n              }\n              &:hover,\n              &:focus {\n                small {\n                  color: @gray-light;\n                }\n              }\n            }\n          }\n        }\n        > .open > .dropdown-menu {\n          padding-bottom: 5px;\n          padding-top: 5px;\n        }\n      }\n    }\n  }\n  .navbar-persistent {\n    display: none;\n  }\n  .active > .navbar-persistent {\n    display: block;\n  }\n  .navbar-primary {\n    float: none;\n    .context {\n      border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n      &.context-bootstrap-select .bootstrap-select.btn-group {\n        &,\n        &[class*=\"span\"] {\n          margin: 8px 20px 9px;\n          width: auto; // known bug:  IE8 will make it as wide as the longest string\n        }\n      }\n    }\n    > li > .navbar-persistent > .dropdown-submenu > a {\n      position: relative;\n      &:after {\n        content: @fa-var-angle-down;\n        display: inline-block;\n        font-family: @icon-font-name-fa;\n        font-weight: normal;\n        @media (max-width: @grid-float-breakpoint-max) {\n          height: 10px;\n          margin-left: 4px;\n          vertical-align: baseline;\n        }\n      }\n    }\n  }\n  .navbar-toggle {\n    border: 0;\n    margin: 0;\n    padding: 10px 20px;\n    &:hover,\n    &:focus {\n      background-color: transparent;\n      outline: none;\n      .icon-bar {\n        .box-shadow(0 0 3px @color-pf-white);\n      }\n    }\n    .icon-bar {\n      background-color: @navbar-pf-icon-bar-bg-color;\n    }\n  }\n  .navbar-utility {\n    border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n    li.dropdown > .dropdown-toggle {\n      padding-left: 36px;\n      position: relative;\n      .pficon-user {\n        left: 20px;\n        position: absolute;\n        top: 10px;\n      }\n    }\n    @media (max-width: @grid-float-breakpoint-max) {\n      > li + li {\n        border-top: 1px solid @navbar-pf-navbar-header-border-color;\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-pf {\n    .navbar-brand {\n      padding: @navbar-pf-navbar-navbar-brand-padding;\n    }\n    .navbar-nav > li > a {\n      padding-bottom: 14px;\n      padding-top: 14px;\n    }\n    .navbar-persistent {\n      font-size: @font-size-large;\n    }\n    .navbar-primary {\n      font-size: @font-size-large;\n      #gradient > .vertical(@navbar-pf-navbar-primary-bg-color-start, @navbar-pf-navbar-primary-bg-color-stop);\n      &.persistent-secondary {\n        .context {\n          .dropdown-menu {\n            top: auto;\n          }\n        }\n        .dropup .dropdown-menu {\n          bottom: -5px;\n          top: auto;\n        }\n        > li {\n          position: static;\n          &.active {\n            margin-bottom: 32px;\n            > .navbar-persistent {\n              display: block;\n              left: 0;\n              position: absolute;\n            }\n          }\n          > .navbar-persistent {\n            background: @navbar-pf-navbar-navbar-persistent-bg-color;\n            border-bottom: 1px solid @navbar-pf-navbar-navbar-persistent-border-color;\n            padding: 0;\n            width: 100%;\n            a {\n              text-decoration: none !important;\n            }\n            > li {\n              &.active {\n                &,\n                &:hover {\n                  .tab-indicator(@background: @nav-tabs-active-link-hover-color, @left: 20px, @right: 20px);\n                }\n                > a,\n                > a:hover,\n                &:hover > a {\n                  color: @link-color !important;\n                }\n                .active > a {\n                  color: @navbar-pf-active-color;\n                }\n              }\n              &.dropdown-submenu {\n                &:hover > .dropdown-menu {\n                  display: none;\n                }\n                &.open {\n                  > .dropdown-menu {\n                    display: block;\n                    left: 20px;\n                    margin-top: 1px;\n                    top: 100%;\n                  }\n                  > .dropdown-toggle {\n                    color: @gray-darker;\n                    &:after {\n                      border-top-color: @gray-darker;\n                    }\n                  }\n                }\n                > .dropdown-toggle {\n                  padding-right: 35px !important;\n                  &:after {\n                    position: absolute;\n                    right: 20px;\n                    top: 10px;\n                  }\n                }\n              }\n              &:hover,\n              &.open {\n                .tab-indicator(@left: 20px, @right: 20px);\n                > a {\n                  color: @gray-darker;\n                  &:after {\n                    border-top-color: @gray-darker;\n                  }\n                }\n              }\n              > a {\n                background-color: transparent;\n                display: block;\n                line-height: 1;\n                padding: 9px 20px;\n                &.dropdown-toggle {\n                  padding-right: 35px;\n                  &:after {\n                    font-size: (@font-size-large + 1);\n                    position: absolute;\n                    right: 20px;\n                    top: 9px;\n                  }\n                }\n                &:hover {\n                  color: @gray-darker;\n                }\n              }\n              a {\n                color: @gray-pf;\n              }\n            }\n          }\n        }\n      }\n      > li > a {\n        border-bottom: 1px solid transparent;\n        border-top: 1px solid transparent;\n        position: relative;\n        margin: -1px 0 0;\n        &:hover {\n          background-color: @navbar-pf-navbar-primary-hover-bg-color-stop;\n          border-top-color: @navbar-pf-navbar-primary-hover-border-color;\n          color: @navbar-pf-color;\n          #gradient > .vertical(@navbar-pf-navbar-primary-hover-bg-color-start, @navbar-pf-navbar-primary-hover-bg-color-stop);\n        }\n      }\n      > .active > a,\n      > .active > a:hover,\n      > .active > a:focus,\n      > .open > a,\n      > .open > a:hover,\n      > .open > a:focus {\n        background-color: @navbar-pf-navbar-primary-active-bg-color-stop;\n        border-bottom-color: @navbar-pf-navbar-primary-active-bg-color-stop;\n        border-top-color: @navbar-pf-navbar-primary-active-border-color;\n        .box-shadow(none);\n        color: @navbar-pf-active-color;\n        #gradient > .vertical(@navbar-pf-navbar-primary-active-bg-color-start, @navbar-pf-navbar-primary-active-bg-color-stop);\n      }\n      li.context {\n        &.context-bootstrap-select .filter-option {\n          max-width: 160px;\n          text-overflow: ellipsis;\n        }\n        &.dropdown {\n          border-bottom: 0;\n        }\n        > a,\n        &.context-bootstrap-select {\n          background-color: @navbar-pf-navbar-primary-context-bg-color-stop;\n          border-bottom-color: @navbar-pf-navbar-primary-context-border-color;\n          border-right: 1px solid @navbar-pf-navbar-primary-context-border-color;\n          border-top-color: @navbar-pf-navbar-primary-context-border-top-color;\n          font-weight: 600;\n          #gradient > .vertical(@navbar-pf-navbar-primary-context-bg-color-start, @navbar-pf-navbar-primary-context-bg-color-stop);\n          &:hover {\n            background-color: @navbar-pf-navbar-primary-context-hover-bg-color-stop;\n            border-bottom-color: @navbar-pf-navbar-primary-context-hover-border-color;\n            border-right-color: @navbar-pf-navbar-primary-context-hover-border-color;\n            border-top-color: @navbar-pf-navbar-primary-context-hover-border-top-color;\n            #gradient > .vertical(@navbar-pf-navbar-primary-context-hover-bg-color-start, @navbar-pf-navbar-primary-context-hover-bg-color-stop);\n          }\n        }\n        &.open > a {\n          background-color: @navbar-pf-navbar-primary-context-active-bg-color-stop;\n          border-bottom-color: @navbar-pf-navbar-primary-context-active-border-color;\n          border-right-color: @navbar-pf-navbar-primary-context-active-border-right-color;\n          border-top-color: @navbar-pf-navbar-primary-context-active-border-top-color;\n          #gradient > .vertical(@navbar-pf-navbar-primary-context-active-bg-color-start, @navbar-pf-navbar-primary-context-active-bg-color-stop);\n        }\n      }\n    }\n    .navbar-utility {\n      border-bottom: 0;\n      font-size: @font-size-small;\n      position: absolute;\n      right: 0;\n      top: 0;\n      > .active > a,\n      > .active > a:hover,\n      > .active > a:focus,\n      > .open > a,\n      > .open > a:hover,\n      > .open > a:focus {\n        background: @navbar-pf-navbar-utility-open-bg-color;\n        color: @navbar-pf-navbar-utility-color;\n      }\n      > li > a {\n        border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n        color: @navbar-pf-navbar-utility-color !important;\n        padding: 7px 10px;\n        &:hover {\n          background: @navbar-pf-navbar-utility-hover-bg-color;\n          border-left-color: @navbar-pf-navbar-utility-hover-border-color;\n        }\n      }\n      > li.open > a {\n        border-left-color: @navbar-pf-navbar-utility-open-border-color;\n        color: @navbar-pf-active-color !important;\n      }\n      li.dropdown > .dropdown-toggle {\n        padding-left: 26px;\n        .pficon-user {\n          left: 10px;\n          top: 7px;\n        }\n      }\n      .open .dropdown-menu {\n        left: auto;\n        right: 0;\n        .dropdown-menu {\n          left: auto;\n          right: 100%;\n        }\n      }\n    }\n    .navbar-utility .open .dropdown-menu {\n        border-top-width: 0;\n    }\n    .open {\n      &.bootstrap-select .dropdown-menu,\n      .dropdown-submenu > .dropdown-menu {\n        border-top-width: 1px !important;\n      }\n    }\n  }\n}\n@media (max-width: 360px) {\n  .navbar-pf {\n    .navbar-brand {\n      margin-left: 10px;\n      width: 75%;\n      img {\n        height: auto;\n        max-width: 100%;\n      }\n    }\n    .navbar-toggle {\n      padding-left: 0;\n    }\n  }\n}\n","// Variables\n// --------------------------\n\n@fa-font-path:        \"../fonts\";\n@fa-font-size-base:   14px;\n@fa-line-height-base: 1;\n//@fa-font-path:        \"//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts\"; // for referencing Bootstrap CDN font files directly\n@fa-css-prefix:       fa;\n@fa-version:          \"4.7.0\";\n@fa-border-color:     #eee;\n@fa-inverse:          #fff;\n@fa-li-width:         (30em / 14);\n\n@fa-var-500px: \"\\f26e\";\n@fa-var-address-book: \"\\f2b9\";\n@fa-var-address-book-o: \"\\f2ba\";\n@fa-var-address-card: \"\\f2bb\";\n@fa-var-address-card-o: \"\\f2bc\";\n@fa-var-adjust: \"\\f042\";\n@fa-var-adn: \"\\f170\";\n@fa-var-align-center: \"\\f037\";\n@fa-var-align-justify: \"\\f039\";\n@fa-var-align-left: \"\\f036\";\n@fa-var-align-right: \"\\f038\";\n@fa-var-amazon: \"\\f270\";\n@fa-var-ambulance: \"\\f0f9\";\n@fa-var-american-sign-language-interpreting: \"\\f2a3\";\n@fa-var-anchor: \"\\f13d\";\n@fa-var-android: \"\\f17b\";\n@fa-var-angellist: \"\\f209\";\n@fa-var-angle-double-down: \"\\f103\";\n@fa-var-angle-double-left: \"\\f100\";\n@fa-var-angle-double-right: \"\\f101\";\n@fa-var-angle-double-up: \"\\f102\";\n@fa-var-angle-down: \"\\f107\";\n@fa-var-angle-left: \"\\f104\";\n@fa-var-angle-right: \"\\f105\";\n@fa-var-angle-up: \"\\f106\";\n@fa-var-apple: \"\\f179\";\n@fa-var-archive: \"\\f187\";\n@fa-var-area-chart: \"\\f1fe\";\n@fa-var-arrow-circle-down: \"\\f0ab\";\n@fa-var-arrow-circle-left: \"\\f0a8\";\n@fa-var-arrow-circle-o-down: \"\\f01a\";\n@fa-var-arrow-circle-o-left: \"\\f190\";\n@fa-var-arrow-circle-o-right: \"\\f18e\";\n@fa-var-arrow-circle-o-up: \"\\f01b\";\n@fa-var-arrow-circle-right: \"\\f0a9\";\n@fa-var-arrow-circle-up: \"\\f0aa\";\n@fa-var-arrow-down: \"\\f063\";\n@fa-var-arrow-left: \"\\f060\";\n@fa-var-arrow-right: \"\\f061\";\n@fa-var-arrow-up: \"\\f062\";\n@fa-var-arrows: \"\\f047\";\n@fa-var-arrows-alt: \"\\f0b2\";\n@fa-var-arrows-h: \"\\f07e\";\n@fa-var-arrows-v: \"\\f07d\";\n@fa-var-asl-interpreting: \"\\f2a3\";\n@fa-var-assistive-listening-systems: \"\\f2a2\";\n@fa-var-asterisk: \"\\f069\";\n@fa-var-at: \"\\f1fa\";\n@fa-var-audio-description: \"\\f29e\";\n@fa-var-automobile: \"\\f1b9\";\n@fa-var-backward: \"\\f04a\";\n@fa-var-balance-scale: \"\\f24e\";\n@fa-var-ban: \"\\f05e\";\n@fa-var-bandcamp: \"\\f2d5\";\n@fa-var-bank: \"\\f19c\";\n@fa-var-bar-chart: \"\\f080\";\n@fa-var-bar-chart-o: \"\\f080\";\n@fa-var-barcode: \"\\f02a\";\n@fa-var-bars: \"\\f0c9\";\n@fa-var-bath: \"\\f2cd\";\n@fa-var-bathtub: \"\\f2cd\";\n@fa-var-battery: \"\\f240\";\n@fa-var-battery-0: \"\\f244\";\n@fa-var-battery-1: \"\\f243\";\n@fa-var-battery-2: \"\\f242\";\n@fa-var-battery-3: \"\\f241\";\n@fa-var-battery-4: \"\\f240\";\n@fa-var-battery-empty: \"\\f244\";\n@fa-var-battery-full: \"\\f240\";\n@fa-var-battery-half: \"\\f242\";\n@fa-var-battery-quarter: \"\\f243\";\n@fa-var-battery-three-quarters: \"\\f241\";\n@fa-var-bed: \"\\f236\";\n@fa-var-beer: \"\\f0fc\";\n@fa-var-behance: \"\\f1b4\";\n@fa-var-behance-square: \"\\f1b5\";\n@fa-var-bell: \"\\f0f3\";\n@fa-var-bell-o: \"\\f0a2\";\n@fa-var-bell-slash: \"\\f1f6\";\n@fa-var-bell-slash-o: \"\\f1f7\";\n@fa-var-bicycle: \"\\f206\";\n@fa-var-binoculars: \"\\f1e5\";\n@fa-var-birthday-cake: \"\\f1fd\";\n@fa-var-bitbucket: \"\\f171\";\n@fa-var-bitbucket-square: \"\\f172\";\n@fa-var-bitcoin: \"\\f15a\";\n@fa-var-black-tie: \"\\f27e\";\n@fa-var-blind: \"\\f29d\";\n@fa-var-bluetooth: \"\\f293\";\n@fa-var-bluetooth-b: \"\\f294\";\n@fa-var-bold: \"\\f032\";\n@fa-var-bolt: \"\\f0e7\";\n@fa-var-bomb: \"\\f1e2\";\n@fa-var-book: \"\\f02d\";\n@fa-var-bookmark: \"\\f02e\";\n@fa-var-bookmark-o: \"\\f097\";\n@fa-var-braille: \"\\f2a1\";\n@fa-var-briefcase: \"\\f0b1\";\n@fa-var-btc: \"\\f15a\";\n@fa-var-bug: \"\\f188\";\n@fa-var-building: \"\\f1ad\";\n@fa-var-building-o: \"\\f0f7\";\n@fa-var-bullhorn: \"\\f0a1\";\n@fa-var-bullseye: \"\\f140\";\n@fa-var-bus: \"\\f207\";\n@fa-var-buysellads: \"\\f20d\";\n@fa-var-cab: \"\\f1ba\";\n@fa-var-calculator: \"\\f1ec\";\n@fa-var-calendar: \"\\f073\";\n@fa-var-calendar-check-o: \"\\f274\";\n@fa-var-calendar-minus-o: \"\\f272\";\n@fa-var-calendar-o: \"\\f133\";\n@fa-var-calendar-plus-o: \"\\f271\";\n@fa-var-calendar-times-o: \"\\f273\";\n@fa-var-camera: \"\\f030\";\n@fa-var-camera-retro: \"\\f083\";\n@fa-var-car: \"\\f1b9\";\n@fa-var-caret-down: \"\\f0d7\";\n@fa-var-caret-left: \"\\f0d9\";\n@fa-var-caret-right: \"\\f0da\";\n@fa-var-caret-square-o-down: \"\\f150\";\n@fa-var-caret-square-o-left: \"\\f191\";\n@fa-var-caret-square-o-right: \"\\f152\";\n@fa-var-caret-square-o-up: \"\\f151\";\n@fa-var-caret-up: \"\\f0d8\";\n@fa-var-cart-arrow-down: \"\\f218\";\n@fa-var-cart-plus: \"\\f217\";\n@fa-var-cc: \"\\f20a\";\n@fa-var-cc-amex: \"\\f1f3\";\n@fa-var-cc-diners-club: \"\\f24c\";\n@fa-var-cc-discover: \"\\f1f2\";\n@fa-var-cc-jcb: \"\\f24b\";\n@fa-var-cc-mastercard: \"\\f1f1\";\n@fa-var-cc-paypal: \"\\f1f4\";\n@fa-var-cc-stripe: \"\\f1f5\";\n@fa-var-cc-visa: \"\\f1f0\";\n@fa-var-certificate: \"\\f0a3\";\n@fa-var-chain: \"\\f0c1\";\n@fa-var-chain-broken: \"\\f127\";\n@fa-var-check: \"\\f00c\";\n@fa-var-check-circle: \"\\f058\";\n@fa-var-check-circle-o: \"\\f05d\";\n@fa-var-check-square: \"\\f14a\";\n@fa-var-check-square-o: \"\\f046\";\n@fa-var-chevron-circle-down: \"\\f13a\";\n@fa-var-chevron-circle-left: \"\\f137\";\n@fa-var-chevron-circle-right: \"\\f138\";\n@fa-var-chevron-circle-up: \"\\f139\";\n@fa-var-chevron-down: \"\\f078\";\n@fa-var-chevron-left: \"\\f053\";\n@fa-var-chevron-right: \"\\f054\";\n@fa-var-chevron-up: \"\\f077\";\n@fa-var-child: \"\\f1ae\";\n@fa-var-chrome: \"\\f268\";\n@fa-var-circle: \"\\f111\";\n@fa-var-circle-o: \"\\f10c\";\n@fa-var-circle-o-notch: \"\\f1ce\";\n@fa-var-circle-thin: \"\\f1db\";\n@fa-var-clipboard: \"\\f0ea\";\n@fa-var-clock-o: \"\\f017\";\n@fa-var-clone: \"\\f24d\";\n@fa-var-close: \"\\f00d\";\n@fa-var-cloud: \"\\f0c2\";\n@fa-var-cloud-download: \"\\f0ed\";\n@fa-var-cloud-upload: \"\\f0ee\";\n@fa-var-cny: \"\\f157\";\n@fa-var-code: \"\\f121\";\n@fa-var-code-fork: \"\\f126\";\n@fa-var-codepen: \"\\f1cb\";\n@fa-var-codiepie: \"\\f284\";\n@fa-var-coffee: \"\\f0f4\";\n@fa-var-cog: \"\\f013\";\n@fa-var-cogs: \"\\f085\";\n@fa-var-columns: \"\\f0db\";\n@fa-var-comment: \"\\f075\";\n@fa-var-comment-o: \"\\f0e5\";\n@fa-var-commenting: \"\\f27a\";\n@fa-var-commenting-o: \"\\f27b\";\n@fa-var-comments: \"\\f086\";\n@fa-var-comments-o: \"\\f0e6\";\n@fa-var-compass: \"\\f14e\";\n@fa-var-compress: \"\\f066\";\n@fa-var-connectdevelop: \"\\f20e\";\n@fa-var-contao: \"\\f26d\";\n@fa-var-copy: \"\\f0c5\";\n@fa-var-copyright: \"\\f1f9\";\n@fa-var-creative-commons: \"\\f25e\";\n@fa-var-credit-card: \"\\f09d\";\n@fa-var-credit-card-alt: \"\\f283\";\n@fa-var-crop: \"\\f125\";\n@fa-var-crosshairs: \"\\f05b\";\n@fa-var-css3: \"\\f13c\";\n@fa-var-cube: \"\\f1b2\";\n@fa-var-cubes: \"\\f1b3\";\n@fa-var-cut: \"\\f0c4\";\n@fa-var-cutlery: \"\\f0f5\";\n@fa-var-dashboard: \"\\f0e4\";\n@fa-var-dashcube: \"\\f210\";\n@fa-var-database: \"\\f1c0\";\n@fa-var-deaf: \"\\f2a4\";\n@fa-var-deafness: \"\\f2a4\";\n@fa-var-dedent: \"\\f03b\";\n@fa-var-delicious: \"\\f1a5\";\n@fa-var-desktop: \"\\f108\";\n@fa-var-deviantart: \"\\f1bd\";\n@fa-var-diamond: \"\\f219\";\n@fa-var-digg: \"\\f1a6\";\n@fa-var-dollar: \"\\f155\";\n@fa-var-dot-circle-o: \"\\f192\";\n@fa-var-download: \"\\f019\";\n@fa-var-dribbble: \"\\f17d\";\n@fa-var-drivers-license: \"\\f2c2\";\n@fa-var-drivers-license-o: \"\\f2c3\";\n@fa-var-dropbox: \"\\f16b\";\n@fa-var-drupal: \"\\f1a9\";\n@fa-var-edge: \"\\f282\";\n@fa-var-edit: \"\\f044\";\n@fa-var-eercast: \"\\f2da\";\n@fa-var-eject: \"\\f052\";\n@fa-var-ellipsis-h: \"\\f141\";\n@fa-var-ellipsis-v: \"\\f142\";\n@fa-var-empire: \"\\f1d1\";\n@fa-var-envelope: \"\\f0e0\";\n@fa-var-envelope-o: \"\\f003\";\n@fa-var-envelope-open: \"\\f2b6\";\n@fa-var-envelope-open-o: \"\\f2b7\";\n@fa-var-envelope-square: \"\\f199\";\n@fa-var-envira: \"\\f299\";\n@fa-var-eraser: \"\\f12d\";\n@fa-var-etsy: \"\\f2d7\";\n@fa-var-eur: \"\\f153\";\n@fa-var-euro: \"\\f153\";\n@fa-var-exchange: \"\\f0ec\";\n@fa-var-exclamation: \"\\f12a\";\n@fa-var-exclamation-circle: \"\\f06a\";\n@fa-var-exclamation-triangle: \"\\f071\";\n@fa-var-expand: \"\\f065\";\n@fa-var-expeditedssl: \"\\f23e\";\n@fa-var-external-link: \"\\f08e\";\n@fa-var-external-link-square: \"\\f14c\";\n@fa-var-eye: \"\\f06e\";\n@fa-var-eye-slash: \"\\f070\";\n@fa-var-eyedropper: \"\\f1fb\";\n@fa-var-fa: \"\\f2b4\";\n@fa-var-facebook: \"\\f09a\";\n@fa-var-facebook-f: \"\\f09a\";\n@fa-var-facebook-official: \"\\f230\";\n@fa-var-facebook-square: \"\\f082\";\n@fa-var-fast-backward: \"\\f049\";\n@fa-var-fast-forward: \"\\f050\";\n@fa-var-fax: \"\\f1ac\";\n@fa-var-feed: \"\\f09e\";\n@fa-var-female: \"\\f182\";\n@fa-var-fighter-jet: \"\\f0fb\";\n@fa-var-file: \"\\f15b\";\n@fa-var-file-archive-o: \"\\f1c6\";\n@fa-var-file-audio-o: \"\\f1c7\";\n@fa-var-file-code-o: \"\\f1c9\";\n@fa-var-file-excel-o: \"\\f1c3\";\n@fa-var-file-image-o: \"\\f1c5\";\n@fa-var-file-movie-o: \"\\f1c8\";\n@fa-var-file-o: \"\\f016\";\n@fa-var-file-pdf-o: \"\\f1c1\";\n@fa-var-file-photo-o: \"\\f1c5\";\n@fa-var-file-picture-o: \"\\f1c5\";\n@fa-var-file-powerpoint-o: \"\\f1c4\";\n@fa-var-file-sound-o: \"\\f1c7\";\n@fa-var-file-text: \"\\f15c\";\n@fa-var-file-text-o: \"\\f0f6\";\n@fa-var-file-video-o: \"\\f1c8\";\n@fa-var-file-word-o: \"\\f1c2\";\n@fa-var-file-zip-o: \"\\f1c6\";\n@fa-var-files-o: \"\\f0c5\";\n@fa-var-film: \"\\f008\";\n@fa-var-filter: \"\\f0b0\";\n@fa-var-fire: \"\\f06d\";\n@fa-var-fire-extinguisher: \"\\f134\";\n@fa-var-firefox: \"\\f269\";\n@fa-var-first-order: \"\\f2b0\";\n@fa-var-flag: \"\\f024\";\n@fa-var-flag-checkered: \"\\f11e\";\n@fa-var-flag-o: \"\\f11d\";\n@fa-var-flash: \"\\f0e7\";\n@fa-var-flask: \"\\f0c3\";\n@fa-var-flickr: \"\\f16e\";\n@fa-var-floppy-o: \"\\f0c7\";\n@fa-var-folder: \"\\f07b\";\n@fa-var-folder-o: \"\\f114\";\n@fa-var-folder-open: \"\\f07c\";\n@fa-var-folder-open-o: \"\\f115\";\n@fa-var-font: \"\\f031\";\n@fa-var-font-awesome: \"\\f2b4\";\n@fa-var-fonticons: \"\\f280\";\n@fa-var-fort-awesome: \"\\f286\";\n@fa-var-forumbee: \"\\f211\";\n@fa-var-forward: \"\\f04e\";\n@fa-var-foursquare: \"\\f180\";\n@fa-var-free-code-camp: \"\\f2c5\";\n@fa-var-frown-o: \"\\f119\";\n@fa-var-futbol-o: \"\\f1e3\";\n@fa-var-gamepad: \"\\f11b\";\n@fa-var-gavel: \"\\f0e3\";\n@fa-var-gbp: \"\\f154\";\n@fa-var-ge: \"\\f1d1\";\n@fa-var-gear: \"\\f013\";\n@fa-var-gears: \"\\f085\";\n@fa-var-genderless: \"\\f22d\";\n@fa-var-get-pocket: \"\\f265\";\n@fa-var-gg: \"\\f260\";\n@fa-var-gg-circle: \"\\f261\";\n@fa-var-gift: \"\\f06b\";\n@fa-var-git: \"\\f1d3\";\n@fa-var-git-square: \"\\f1d2\";\n@fa-var-github: \"\\f09b\";\n@fa-var-github-alt: \"\\f113\";\n@fa-var-github-square: \"\\f092\";\n@fa-var-gitlab: \"\\f296\";\n@fa-var-gittip: \"\\f184\";\n@fa-var-glass: \"\\f000\";\n@fa-var-glide: \"\\f2a5\";\n@fa-var-glide-g: \"\\f2a6\";\n@fa-var-globe: \"\\f0ac\";\n@fa-var-google: \"\\f1a0\";\n@fa-var-google-plus: \"\\f0d5\";\n@fa-var-google-plus-circle: \"\\f2b3\";\n@fa-var-google-plus-official: \"\\f2b3\";\n@fa-var-google-plus-square: \"\\f0d4\";\n@fa-var-google-wallet: \"\\f1ee\";\n@fa-var-graduation-cap: \"\\f19d\";\n@fa-var-gratipay: \"\\f184\";\n@fa-var-grav: \"\\f2d6\";\n@fa-var-group: \"\\f0c0\";\n@fa-var-h-square: \"\\f0fd\";\n@fa-var-hacker-news: \"\\f1d4\";\n@fa-var-hand-grab-o: \"\\f255\";\n@fa-var-hand-lizard-o: \"\\f258\";\n@fa-var-hand-o-down: \"\\f0a7\";\n@fa-var-hand-o-left: \"\\f0a5\";\n@fa-var-hand-o-right: \"\\f0a4\";\n@fa-var-hand-o-up: \"\\f0a6\";\n@fa-var-hand-paper-o: \"\\f256\";\n@fa-var-hand-peace-o: \"\\f25b\";\n@fa-var-hand-pointer-o: \"\\f25a\";\n@fa-var-hand-rock-o: \"\\f255\";\n@fa-var-hand-scissors-o: \"\\f257\";\n@fa-var-hand-spock-o: \"\\f259\";\n@fa-var-hand-stop-o: \"\\f256\";\n@fa-var-handshake-o: \"\\f2b5\";\n@fa-var-hard-of-hearing: \"\\f2a4\";\n@fa-var-hashtag: \"\\f292\";\n@fa-var-hdd-o: \"\\f0a0\";\n@fa-var-header: \"\\f1dc\";\n@fa-var-headphones: \"\\f025\";\n@fa-var-heart: \"\\f004\";\n@fa-var-heart-o: \"\\f08a\";\n@fa-var-heartbeat: \"\\f21e\";\n@fa-var-history: \"\\f1da\";\n@fa-var-home: \"\\f015\";\n@fa-var-hospital-o: \"\\f0f8\";\n@fa-var-hotel: \"\\f236\";\n@fa-var-hourglass: \"\\f254\";\n@fa-var-hourglass-1: \"\\f251\";\n@fa-var-hourglass-2: \"\\f252\";\n@fa-var-hourglass-3: \"\\f253\";\n@fa-var-hourglass-end: \"\\f253\";\n@fa-var-hourglass-half: \"\\f252\";\n@fa-var-hourglass-o: \"\\f250\";\n@fa-var-hourglass-start: \"\\f251\";\n@fa-var-houzz: \"\\f27c\";\n@fa-var-html5: \"\\f13b\";\n@fa-var-i-cursor: \"\\f246\";\n@fa-var-id-badge: \"\\f2c1\";\n@fa-var-id-card: \"\\f2c2\";\n@fa-var-id-card-o: \"\\f2c3\";\n@fa-var-ils: \"\\f20b\";\n@fa-var-image: \"\\f03e\";\n@fa-var-imdb: \"\\f2d8\";\n@fa-var-inbox: \"\\f01c\";\n@fa-var-indent: \"\\f03c\";\n@fa-var-industry: \"\\f275\";\n@fa-var-info: \"\\f129\";\n@fa-var-info-circle: \"\\f05a\";\n@fa-var-inr: \"\\f156\";\n@fa-var-instagram: \"\\f16d\";\n@fa-var-institution: \"\\f19c\";\n@fa-var-internet-explorer: \"\\f26b\";\n@fa-var-intersex: \"\\f224\";\n@fa-var-ioxhost: \"\\f208\";\n@fa-var-italic: \"\\f033\";\n@fa-var-joomla: \"\\f1aa\";\n@fa-var-jpy: \"\\f157\";\n@fa-var-jsfiddle: \"\\f1cc\";\n@fa-var-key: \"\\f084\";\n@fa-var-keyboard-o: \"\\f11c\";\n@fa-var-krw: \"\\f159\";\n@fa-var-language: \"\\f1ab\";\n@fa-var-laptop: \"\\f109\";\n@fa-var-lastfm: \"\\f202\";\n@fa-var-lastfm-square: \"\\f203\";\n@fa-var-leaf: \"\\f06c\";\n@fa-var-leanpub: \"\\f212\";\n@fa-var-legal: \"\\f0e3\";\n@fa-var-lemon-o: \"\\f094\";\n@fa-var-level-down: \"\\f149\";\n@fa-var-level-up: \"\\f148\";\n@fa-var-life-bouy: \"\\f1cd\";\n@fa-var-life-buoy: \"\\f1cd\";\n@fa-var-life-ring: \"\\f1cd\";\n@fa-var-life-saver: \"\\f1cd\";\n@fa-var-lightbulb-o: \"\\f0eb\";\n@fa-var-line-chart: \"\\f201\";\n@fa-var-link: \"\\f0c1\";\n@fa-var-linkedin: \"\\f0e1\";\n@fa-var-linkedin-square: \"\\f08c\";\n@fa-var-linode: \"\\f2b8\";\n@fa-var-linux: \"\\f17c\";\n@fa-var-list: \"\\f03a\";\n@fa-var-list-alt: \"\\f022\";\n@fa-var-list-ol: \"\\f0cb\";\n@fa-var-list-ul: \"\\f0ca\";\n@fa-var-location-arrow: \"\\f124\";\n@fa-var-lock: \"\\f023\";\n@fa-var-long-arrow-down: \"\\f175\";\n@fa-var-long-arrow-left: \"\\f177\";\n@fa-var-long-arrow-right: \"\\f178\";\n@fa-var-long-arrow-up: \"\\f176\";\n@fa-var-low-vision: \"\\f2a8\";\n@fa-var-magic: \"\\f0d0\";\n@fa-var-magnet: \"\\f076\";\n@fa-var-mail-forward: \"\\f064\";\n@fa-var-mail-reply: \"\\f112\";\n@fa-var-mail-reply-all: \"\\f122\";\n@fa-var-male: \"\\f183\";\n@fa-var-map: \"\\f279\";\n@fa-var-map-marker: \"\\f041\";\n@fa-var-map-o: \"\\f278\";\n@fa-var-map-pin: \"\\f276\";\n@fa-var-map-signs: \"\\f277\";\n@fa-var-mars: \"\\f222\";\n@fa-var-mars-double: \"\\f227\";\n@fa-var-mars-stroke: \"\\f229\";\n@fa-var-mars-stroke-h: \"\\f22b\";\n@fa-var-mars-stroke-v: \"\\f22a\";\n@fa-var-maxcdn: \"\\f136\";\n@fa-var-meanpath: \"\\f20c\";\n@fa-var-medium: \"\\f23a\";\n@fa-var-medkit: \"\\f0fa\";\n@fa-var-meetup: \"\\f2e0\";\n@fa-var-meh-o: \"\\f11a\";\n@fa-var-mercury: \"\\f223\";\n@fa-var-microchip: \"\\f2db\";\n@fa-var-microphone: \"\\f130\";\n@fa-var-microphone-slash: \"\\f131\";\n@fa-var-minus: \"\\f068\";\n@fa-var-minus-circle: \"\\f056\";\n@fa-var-minus-square: \"\\f146\";\n@fa-var-minus-square-o: \"\\f147\";\n@fa-var-mixcloud: \"\\f289\";\n@fa-var-mobile: \"\\f10b\";\n@fa-var-mobile-phone: \"\\f10b\";\n@fa-var-modx: \"\\f285\";\n@fa-var-money: \"\\f0d6\";\n@fa-var-moon-o: \"\\f186\";\n@fa-var-mortar-board: \"\\f19d\";\n@fa-var-motorcycle: \"\\f21c\";\n@fa-var-mouse-pointer: \"\\f245\";\n@fa-var-music: \"\\f001\";\n@fa-var-navicon: \"\\f0c9\";\n@fa-var-neuter: \"\\f22c\";\n@fa-var-newspaper-o: \"\\f1ea\";\n@fa-var-object-group: \"\\f247\";\n@fa-var-object-ungroup: \"\\f248\";\n@fa-var-odnoklassniki: \"\\f263\";\n@fa-var-odnoklassniki-square: \"\\f264\";\n@fa-var-opencart: \"\\f23d\";\n@fa-var-openid: \"\\f19b\";\n@fa-var-opera: \"\\f26a\";\n@fa-var-optin-monster: \"\\f23c\";\n@fa-var-outdent: \"\\f03b\";\n@fa-var-pagelines: \"\\f18c\";\n@fa-var-paint-brush: \"\\f1fc\";\n@fa-var-paper-plane: \"\\f1d8\";\n@fa-var-paper-plane-o: \"\\f1d9\";\n@fa-var-paperclip: \"\\f0c6\";\n@fa-var-paragraph: \"\\f1dd\";\n@fa-var-paste: \"\\f0ea\";\n@fa-var-pause: \"\\f04c\";\n@fa-var-pause-circle: \"\\f28b\";\n@fa-var-pause-circle-o: \"\\f28c\";\n@fa-var-paw: \"\\f1b0\";\n@fa-var-paypal: \"\\f1ed\";\n@fa-var-pencil: \"\\f040\";\n@fa-var-pencil-square: \"\\f14b\";\n@fa-var-pencil-square-o: \"\\f044\";\n@fa-var-percent: \"\\f295\";\n@fa-var-phone: \"\\f095\";\n@fa-var-phone-square: \"\\f098\";\n@fa-var-photo: \"\\f03e\";\n@fa-var-picture-o: \"\\f03e\";\n@fa-var-pie-chart: \"\\f200\";\n@fa-var-pied-piper: \"\\f2ae\";\n@fa-var-pied-piper-alt: \"\\f1a8\";\n@fa-var-pied-piper-pp: \"\\f1a7\";\n@fa-var-pinterest: \"\\f0d2\";\n@fa-var-pinterest-p: \"\\f231\";\n@fa-var-pinterest-square: \"\\f0d3\";\n@fa-var-plane: \"\\f072\";\n@fa-var-play: \"\\f04b\";\n@fa-var-play-circle: \"\\f144\";\n@fa-var-play-circle-o: \"\\f01d\";\n@fa-var-plug: \"\\f1e6\";\n@fa-var-plus: \"\\f067\";\n@fa-var-plus-circle: \"\\f055\";\n@fa-var-plus-square: \"\\f0fe\";\n@fa-var-plus-square-o: \"\\f196\";\n@fa-var-podcast: \"\\f2ce\";\n@fa-var-power-off: \"\\f011\";\n@fa-var-print: \"\\f02f\";\n@fa-var-product-hunt: \"\\f288\";\n@fa-var-puzzle-piece: \"\\f12e\";\n@fa-var-qq: \"\\f1d6\";\n@fa-var-qrcode: \"\\f029\";\n@fa-var-question: \"\\f128\";\n@fa-var-question-circle: \"\\f059\";\n@fa-var-question-circle-o: \"\\f29c\";\n@fa-var-quora: \"\\f2c4\";\n@fa-var-quote-left: \"\\f10d\";\n@fa-var-quote-right: \"\\f10e\";\n@fa-var-ra: \"\\f1d0\";\n@fa-var-random: \"\\f074\";\n@fa-var-ravelry: \"\\f2d9\";\n@fa-var-rebel: \"\\f1d0\";\n@fa-var-recycle: \"\\f1b8\";\n@fa-var-reddit: \"\\f1a1\";\n@fa-var-reddit-alien: \"\\f281\";\n@fa-var-reddit-square: \"\\f1a2\";\n@fa-var-refresh: \"\\f021\";\n@fa-var-registered: \"\\f25d\";\n@fa-var-remove: \"\\f00d\";\n@fa-var-renren: \"\\f18b\";\n@fa-var-reorder: \"\\f0c9\";\n@fa-var-repeat: \"\\f01e\";\n@fa-var-reply: \"\\f112\";\n@fa-var-reply-all: \"\\f122\";\n@fa-var-resistance: \"\\f1d0\";\n@fa-var-retweet: \"\\f079\";\n@fa-var-rmb: \"\\f157\";\n@fa-var-road: \"\\f018\";\n@fa-var-rocket: \"\\f135\";\n@fa-var-rotate-left: \"\\f0e2\";\n@fa-var-rotate-right: \"\\f01e\";\n@fa-var-rouble: \"\\f158\";\n@fa-var-rss: \"\\f09e\";\n@fa-var-rss-square: \"\\f143\";\n@fa-var-rub: \"\\f158\";\n@fa-var-ruble: \"\\f158\";\n@fa-var-rupee: \"\\f156\";\n@fa-var-s15: \"\\f2cd\";\n@fa-var-safari: \"\\f267\";\n@fa-var-save: \"\\f0c7\";\n@fa-var-scissors: \"\\f0c4\";\n@fa-var-scribd: \"\\f28a\";\n@fa-var-search: \"\\f002\";\n@fa-var-search-minus: \"\\f010\";\n@fa-var-search-plus: \"\\f00e\";\n@fa-var-sellsy: \"\\f213\";\n@fa-var-send: \"\\f1d8\";\n@fa-var-send-o: \"\\f1d9\";\n@fa-var-server: \"\\f233\";\n@fa-var-share: \"\\f064\";\n@fa-var-share-alt: \"\\f1e0\";\n@fa-var-share-alt-square: \"\\f1e1\";\n@fa-var-share-square: \"\\f14d\";\n@fa-var-share-square-o: \"\\f045\";\n@fa-var-shekel: \"\\f20b\";\n@fa-var-sheqel: \"\\f20b\";\n@fa-var-shield: \"\\f132\";\n@fa-var-ship: \"\\f21a\";\n@fa-var-shirtsinbulk: \"\\f214\";\n@fa-var-shopping-bag: \"\\f290\";\n@fa-var-shopping-basket: \"\\f291\";\n@fa-var-shopping-cart: \"\\f07a\";\n@fa-var-shower: \"\\f2cc\";\n@fa-var-sign-in: \"\\f090\";\n@fa-var-sign-language: \"\\f2a7\";\n@fa-var-sign-out: \"\\f08b\";\n@fa-var-signal: \"\\f012\";\n@fa-var-signing: \"\\f2a7\";\n@fa-var-simplybuilt: \"\\f215\";\n@fa-var-sitemap: \"\\f0e8\";\n@fa-var-skyatlas: \"\\f216\";\n@fa-var-skype: \"\\f17e\";\n@fa-var-slack: \"\\f198\";\n@fa-var-sliders: \"\\f1de\";\n@fa-var-slideshare: \"\\f1e7\";\n@fa-var-smile-o: \"\\f118\";\n@fa-var-snapchat: \"\\f2ab\";\n@fa-var-snapchat-ghost: \"\\f2ac\";\n@fa-var-snapchat-square: \"\\f2ad\";\n@fa-var-snowflake-o: \"\\f2dc\";\n@fa-var-soccer-ball-o: \"\\f1e3\";\n@fa-var-sort: \"\\f0dc\";\n@fa-var-sort-alpha-asc: \"\\f15d\";\n@fa-var-sort-alpha-desc: \"\\f15e\";\n@fa-var-sort-amount-asc: \"\\f160\";\n@fa-var-sort-amount-desc: \"\\f161\";\n@fa-var-sort-asc: \"\\f0de\";\n@fa-var-sort-desc: \"\\f0dd\";\n@fa-var-sort-down: \"\\f0dd\";\n@fa-var-sort-numeric-asc: \"\\f162\";\n@fa-var-sort-numeric-desc: \"\\f163\";\n@fa-var-sort-up: \"\\f0de\";\n@fa-var-soundcloud: \"\\f1be\";\n@fa-var-space-shuttle: \"\\f197\";\n@fa-var-spinner: \"\\f110\";\n@fa-var-spoon: \"\\f1b1\";\n@fa-var-spotify: \"\\f1bc\";\n@fa-var-square: \"\\f0c8\";\n@fa-var-square-o: \"\\f096\";\n@fa-var-stack-exchange: \"\\f18d\";\n@fa-var-stack-overflow: \"\\f16c\";\n@fa-var-star: \"\\f005\";\n@fa-var-star-half: \"\\f089\";\n@fa-var-star-half-empty: \"\\f123\";\n@fa-var-star-half-full: \"\\f123\";\n@fa-var-star-half-o: \"\\f123\";\n@fa-var-star-o: \"\\f006\";\n@fa-var-steam: \"\\f1b6\";\n@fa-var-steam-square: \"\\f1b7\";\n@fa-var-step-backward: \"\\f048\";\n@fa-var-step-forward: \"\\f051\";\n@fa-var-stethoscope: \"\\f0f1\";\n@fa-var-sticky-note: \"\\f249\";\n@fa-var-sticky-note-o: \"\\f24a\";\n@fa-var-stop: \"\\f04d\";\n@fa-var-stop-circle: \"\\f28d\";\n@fa-var-stop-circle-o: \"\\f28e\";\n@fa-var-street-view: \"\\f21d\";\n@fa-var-strikethrough: \"\\f0cc\";\n@fa-var-stumbleupon: \"\\f1a4\";\n@fa-var-stumbleupon-circle: \"\\f1a3\";\n@fa-var-subscript: \"\\f12c\";\n@fa-var-subway: \"\\f239\";\n@fa-var-suitcase: \"\\f0f2\";\n@fa-var-sun-o: \"\\f185\";\n@fa-var-superpowers: \"\\f2dd\";\n@fa-var-superscript: \"\\f12b\";\n@fa-var-support: \"\\f1cd\";\n@fa-var-table: \"\\f0ce\";\n@fa-var-tablet: \"\\f10a\";\n@fa-var-tachometer: \"\\f0e4\";\n@fa-var-tag: \"\\f02b\";\n@fa-var-tags: \"\\f02c\";\n@fa-var-tasks: \"\\f0ae\";\n@fa-var-taxi: \"\\f1ba\";\n@fa-var-telegram: \"\\f2c6\";\n@fa-var-television: \"\\f26c\";\n@fa-var-tencent-weibo: \"\\f1d5\";\n@fa-var-terminal: \"\\f120\";\n@fa-var-text-height: \"\\f034\";\n@fa-var-text-width: \"\\f035\";\n@fa-var-th: \"\\f00a\";\n@fa-var-th-large: \"\\f009\";\n@fa-var-th-list: \"\\f00b\";\n@fa-var-themeisle: \"\\f2b2\";\n@fa-var-thermometer: \"\\f2c7\";\n@fa-var-thermometer-0: \"\\f2cb\";\n@fa-var-thermometer-1: \"\\f2ca\";\n@fa-var-thermometer-2: \"\\f2c9\";\n@fa-var-thermometer-3: \"\\f2c8\";\n@fa-var-thermometer-4: \"\\f2c7\";\n@fa-var-thermometer-empty: \"\\f2cb\";\n@fa-var-thermometer-full: \"\\f2c7\";\n@fa-var-thermometer-half: \"\\f2c9\";\n@fa-var-thermometer-quarter: \"\\f2ca\";\n@fa-var-thermometer-three-quarters: \"\\f2c8\";\n@fa-var-thumb-tack: \"\\f08d\";\n@fa-var-thumbs-down: \"\\f165\";\n@fa-var-thumbs-o-down: \"\\f088\";\n@fa-var-thumbs-o-up: \"\\f087\";\n@fa-var-thumbs-up: \"\\f164\";\n@fa-var-ticket: \"\\f145\";\n@fa-var-times: \"\\f00d\";\n@fa-var-times-circle: \"\\f057\";\n@fa-var-times-circle-o: \"\\f05c\";\n@fa-var-times-rectangle: \"\\f2d3\";\n@fa-var-times-rectangle-o: \"\\f2d4\";\n@fa-var-tint: \"\\f043\";\n@fa-var-toggle-down: \"\\f150\";\n@fa-var-toggle-left: \"\\f191\";\n@fa-var-toggle-off: \"\\f204\";\n@fa-var-toggle-on: \"\\f205\";\n@fa-var-toggle-right: \"\\f152\";\n@fa-var-toggle-up: \"\\f151\";\n@fa-var-trademark: \"\\f25c\";\n@fa-var-train: \"\\f238\";\n@fa-var-transgender: \"\\f224\";\n@fa-var-transgender-alt: \"\\f225\";\n@fa-var-trash: \"\\f1f8\";\n@fa-var-trash-o: \"\\f014\";\n@fa-var-tree: \"\\f1bb\";\n@fa-var-trello: \"\\f181\";\n@fa-var-tripadvisor: \"\\f262\";\n@fa-var-trophy: \"\\f091\";\n@fa-var-truck: \"\\f0d1\";\n@fa-var-try: \"\\f195\";\n@fa-var-tty: \"\\f1e4\";\n@fa-var-tumblr: \"\\f173\";\n@fa-var-tumblr-square: \"\\f174\";\n@fa-var-turkish-lira: \"\\f195\";\n@fa-var-tv: \"\\f26c\";\n@fa-var-twitch: \"\\f1e8\";\n@fa-var-twitter: \"\\f099\";\n@fa-var-twitter-square: \"\\f081\";\n@fa-var-umbrella: \"\\f0e9\";\n@fa-var-underline: \"\\f0cd\";\n@fa-var-undo: \"\\f0e2\";\n@fa-var-universal-access: \"\\f29a\";\n@fa-var-university: \"\\f19c\";\n@fa-var-unlink: \"\\f127\";\n@fa-var-unlock: \"\\f09c\";\n@fa-var-unlock-alt: \"\\f13e\";\n@fa-var-unsorted: \"\\f0dc\";\n@fa-var-upload: \"\\f093\";\n@fa-var-usb: \"\\f287\";\n@fa-var-usd: \"\\f155\";\n@fa-var-user: \"\\f007\";\n@fa-var-user-circle: \"\\f2bd\";\n@fa-var-user-circle-o: \"\\f2be\";\n@fa-var-user-md: \"\\f0f0\";\n@fa-var-user-o: \"\\f2c0\";\n@fa-var-user-plus: \"\\f234\";\n@fa-var-user-secret: \"\\f21b\";\n@fa-var-user-times: \"\\f235\";\n@fa-var-users: \"\\f0c0\";\n@fa-var-vcard: \"\\f2bb\";\n@fa-var-vcard-o: \"\\f2bc\";\n@fa-var-venus: \"\\f221\";\n@fa-var-venus-double: \"\\f226\";\n@fa-var-venus-mars: \"\\f228\";\n@fa-var-viacoin: \"\\f237\";\n@fa-var-viadeo: \"\\f2a9\";\n@fa-var-viadeo-square: \"\\f2aa\";\n@fa-var-video-camera: \"\\f03d\";\n@fa-var-vimeo: \"\\f27d\";\n@fa-var-vimeo-square: \"\\f194\";\n@fa-var-vine: \"\\f1ca\";\n@fa-var-vk: \"\\f189\";\n@fa-var-volume-control-phone: \"\\f2a0\";\n@fa-var-volume-down: \"\\f027\";\n@fa-var-volume-off: \"\\f026\";\n@fa-var-volume-up: \"\\f028\";\n@fa-var-warning: \"\\f071\";\n@fa-var-wechat: \"\\f1d7\";\n@fa-var-weibo: \"\\f18a\";\n@fa-var-weixin: \"\\f1d7\";\n@fa-var-whatsapp: \"\\f232\";\n@fa-var-wheelchair: \"\\f193\";\n@fa-var-wheelchair-alt: \"\\f29b\";\n@fa-var-wifi: \"\\f1eb\";\n@fa-var-wikipedia-w: \"\\f266\";\n@fa-var-window-close: \"\\f2d3\";\n@fa-var-window-close-o: \"\\f2d4\";\n@fa-var-window-maximize: \"\\f2d0\";\n@fa-var-window-minimize: \"\\f2d1\";\n@fa-var-window-restore: \"\\f2d2\";\n@fa-var-windows: \"\\f17a\";\n@fa-var-won: \"\\f159\";\n@fa-var-wordpress: \"\\f19a\";\n@fa-var-wpbeginner: \"\\f297\";\n@fa-var-wpexplorer: \"\\f2de\";\n@fa-var-wpforms: \"\\f298\";\n@fa-var-wrench: \"\\f0ad\";\n@fa-var-xing: \"\\f168\";\n@fa-var-xing-square: \"\\f169\";\n@fa-var-y-combinator: \"\\f23b\";\n@fa-var-y-combinator-square: \"\\f1d4\";\n@fa-var-yahoo: \"\\f19e\";\n@fa-var-yc: \"\\f23b\";\n@fa-var-yc-square: \"\\f1d4\";\n@fa-var-yelp: \"\\f1e9\";\n@fa-var-yen: \"\\f157\";\n@fa-var-yoast: \"\\f2b1\";\n@fa-var-youtube: \"\\f167\";\n@fa-var-youtube-play: \"\\f16a\";\n@fa-var-youtube-square: \"\\f166\";\n\n","//\n// Navbar Alt\n// --------------------------------------------------\n\n.navbar-pf-alt {\n  background-color: @navbar-pf-alt-bg-color;\n  background-image: @navbar-pf-alt-bg-img;\n  background-repeat: @navbar-pf-alt-bg-repeat;\n  background-size: @navbar-pf-alt-bg-size;\n  border: none;\n  border-radius: 0;\n  border-top: @navbar-pf-alt-border-width @navbar-pf-alt-border-style @navbar-pf-alt-border-color;\n  margin-bottom: 0;\n\n  .infotip.bottom-right .arrow {\n    left: 90%;\n  }\n\n  .layout-pf-alt-fixed & {\n    left: 0;\n    position: fixed;\n    right: 0;\n    top: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n\n  .nav {\n    &.navbar-nav > li > .dropdown-menu.infotip {\n      margin-top: 0;\n    }\n\n    .nav-item-iconic {\n      cursor: pointer;\n      line-height: 1;\n      max-height: (@navbar-pf-alt-height - @navbar-pf-alt-border-width); // to keep Firefox from oversizing icons\n      padding: @navbar-pf-alt-nav-item-iconic-padding;\n      position: relative;\n\n      &:hover,\n      &:focus {\n        background-color: transparent;\n\n        .caret,\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @navbar-pf-alt-active-color;\n        }\n      }\n\n      .badge {\n        background-color: @notification-badge-color;\n        border-radius: 20px;\n        color: @navbar-pf-alt-active-color;\n        cursor: pointer;\n        font-size: (@font-size-base - 3);\n        font-weight: 700;\n        margin: 0 0 -11px -12px;\n        min-width: 0;\n        padding: 2px 4px;\n      }\n\n      .caret,\n      .fa,\n      .pficon {\n        color: @navbar-pf-alt-color;\n        font-size: (@font-size-base + 4);\n      }\n\n      .caret {\n        font-size: @font-size-base;\n        width: auto;\n      }\n\n    }\n\n    .open > .nav-item-iconic {\n      &,\n      &:hover,\n      &:focus {\n        background: transparent;\n\n        .caret,\n        .fa,\n        .pficon {\n          color: @navbar-pf-alt-active-color;\n        }\n      }\n    }\n  }\n\n  .navbar-brand {\n    color: @navbar-pf-alt-navbar-brand-color;\n    height: auto;\n    margin: @navbar-pf-alt-navbar-brand-margin;\n    min-height: @navbar-pf-alt-navbar-brand-min-height;\n    padding: @navbar-pf-alt-navbar-brand-padding;\n\n    .navbar-brand-name {\n      display: inline;\n      margin-left: @navbar-pf-alt-navbar-brand-name-margin;\n      margin-right: @navbar-pf-alt-navbar-brand-name-margin;\n      // hide once screen gets too small\n      @media (max-width: @navbar-pf-alt-navbar-brand-name-breakpoint) {\n        display: none;\n      }\n    }\n\n    .navbar-brand-icon {\n      display: inline;\n      margin-left: @navbar-pf-alt-navbar-brand-icon-margin;\n      margin-right: @navbar-pf-alt-navbar-brand-icon-margin;\n    }\n  }\n\n  .navbar-iconic {\n    margin-right: 0;\n  }\n\n  .navbar-toggle {\n    border: 0;\n    display: block;\n    float: left;\n    margin: @navbar-pf-alt-navbar-toggle-margin;\n\n    &:hover,\n    &:focus {\n      .icon-bar {\n        background: @navbar-pf-alt-navbar-toggle-icon-bar-hover-bg;\n      }\n    }\n\n    + .navbar-brand {\n      margin-left: 0;\n    }\n\n    .icon-bar {\n      background: @navbar-pf-alt-color;\n    }\n  }\n}\n","//\n//  Navigation Bar for use with vertical navigation\n// --------------------------------------------------\n\n.navbar-pf-vertical {\n  background-color: @navbar-pf-vertical-bg-color;\n  border: none;\n  border-radius: 0;\n  border-top: @navbar-pf-vertical-border-width @navbar-pf-vertical-border-style @navbar-pf-vertical-border-color;\n  margin-bottom: 0;\n\n  .infotip.bottom-right .arrow {\n    left: 90%;\n  }\n\n  .layout-pf-fixed & {\n    left: 0;\n    position: fixed;\n    right: 0;\n    top: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n\n  .nav {\n    &.navbar-nav > li > .dropdown-menu.infotip {\n      margin-top: 0;\n    }\n\n    .nav-item-iconic {\n      color: @navbar-pf-vertical-color;\n      cursor: pointer;\n      line-height: 1;\n      max-height: (@navbar-pf-vertical-height - @navbar-pf-vertical-border-width); // to keep Firefox from oversizing icons\n      padding: @navbar-pf-vertical-nav-item-iconic-padding;\n      position: relative;\n\n      &:hover,\n      &:focus {\n        color: @navbar-pf-vertical-active-color;\n        background-color: transparent;\n\n        .caret,\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @navbar-pf-vertical-active-color;\n        }\n      }\n\n      .badge {\n        background-color: @notification-badge-color;\n        border-radius: 20px;\n        color: @navbar-pf-vertical-active-color;\n        cursor: pointer;\n        font-size: (@font-size-base - 3);\n        font-weight: 700;\n        left: 20px;\n        margin: 0;\n        padding: 2px 4px;\n        position: absolute;\n        min-width: 10px;\n        min-height: 10px;\n        top: 18px;\n        &.badge-pf-bordered {\n          border: 1px solid @navbar-pf-vertical-bg-color;\n        }\n      }\n\n      .caret,\n      .fa,\n      .pficon {\n        color: @navbar-pf-vertical-color;\n        font-size: (@font-size-base + 4);\n      }\n\n      .caret {\n        font-size: @font-size-base;\n        width: auto;\n      }\n\n    }\n\n    .open > .nav-item-iconic {\n      &,\n      &:hover,\n      &:focus {\n        background: transparent;\n\n        .caret,\n        .fa,\n        .pficon {\n          color: @navbar-pf-vertical-active-color;\n        }\n      }\n    }\n  }\n\n  .navbar-brand {\n    color: @navbar-pf-vertical-navbar-brand-color;\n    height: auto;\n    margin: @navbar-pf-vertical-navbar-brand-margin;\n    min-height: @navbar-pf-vertical-navbar-brand-min-height;\n    padding: @navbar-pf-vertical-navbar-brand-padding;\n\n    .navbar-brand-name {\n      display: inline-block;\n      margin: @navbar-pf-vertical-navbar-brand-name-margin;\n      // hide once screen gets too small\n      @media (max-width: @navbar-pf-vertical-navbar-brand-name-breakpoint) {\n        display: none;\n      }\n    }\n\n    .navbar-brand-icon {\n      display: inline-block;\n      margin: @navbar-pf-vertical-navbar-brand-icon-margin;\n      max-height: @navbar-pf-vertical-navbar-brand-max-height;\n    }\n\n    .navbar-brand-txt {\n      line-height: @navbar-pf-vertical-navbar-brand-line-height;\n    }\n  }\n\n  .navbar-iconic {\n    margin-right: 0;\n  }\n\n  .navbar-toggle {\n    border: 0;\n    display: block;\n    float: left;\n    margin: @navbar-pf-vertical-navbar-toggle-margin;\n\n    &:hover,\n    &:focus {\n      .icon-bar {\n        background: @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n      }\n    }\n\n    + .navbar-brand {\n      margin-left: 0;\n    }\n\n    .icon-bar {\n      background: @navbar-pf-vertical-color;\n    }\n  }\n}\n","//\n// Nav Vertical Alt\n// --------------------------------------------------\n\n.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt {\n  transition: @flyout-transition-pf;\n\n  &.collapsed .list-group-item .list-group-item-value {\n    transition: opacity 0ms 100ms, opacity 100ms linear;\n  }\n\n  .list-group-item {\n    .badge {\n      transition: @flyout-transition-pf;\n    }\n\n    .list-group-item-value {\n      transition: opacity 500ms ease-out;\n      transition-delay: 150ms;\n    }\n  }\n}\n\n.nav-pf-vertical-alt {\n  background: @nav-pf-vertical-alt-bg-color;\n\n  .ie9.layout-pf-alt-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n\n  .layout-pf-alt-fixed & {\n    border-right: 1px solid @nav-pf-vertical-alt-border-color;\n    bottom: 0;\n    overflow-x: hidden;\n    overflow-y: auto;\n    left: 0;\n    position: fixed;\n    top: @navbar-pf-alt-height; // move out of way of navbar-pf-alt\n    width: @nav-pf-vertical-alt-width;\n    z-index: @zindex-navbar-fixed;\n\n    &.collapsed {\n      width: @nav-pf-vertical-alt-collapsed-width !important;\n\n      .list-group-item {\n        .badge {\n          padding: 2px 3px;\n          right: 21px;\n          top: 36px;\n        }\n\n        .list-group-item-value {\n          opacity: 0;\n        }\n      }\n    }\n\n    &.hidden {\n      display: none;\n\n      &.show-mobile-nav {\n        box-shadow: 0 0 3px fade(@color-pf-black, 15%);\n        display: block !important;\n      }\n    }\n  }\n\n  .layout-pf-alt-fixed-with-footer & {\n    bottom: @footer-pf-alt-height;\n  }\n\n  .list-group {\n    border-top: 0;\n    margin-bottom: 0;\n  }\n\n  .list-group-item {\n    padding: 0;\n\n    a {\n      color: @gray-dark;\n      display: block;\n      font-size: (@font-size-base + 2);\n      height: @nav-pf-vertical-alt-link-height;\n      padding: @nav-pf-vertical-alt-link-padding;\n      position: relative;\n      white-space: nowrap;\n\n      &:focus {\n        color: @gray-dark;\n        text-decoration: none;\n      }\n\n      &:hover {\n        color: @nav-pf-vertical-alt-active-color;\n        text-decoration: none;\n      }\n    }\n\n    &.active {\n      background-color: @nav-pf-vertical-alt-bg-color;\n      border-color: @list-group-border;\n\n      &:before {\n        background: @nav-pf-vertical-alt-active-color;\n        content: \" \";\n        display: block;\n        height: 100%;\n        left: 0;\n        position: absolute;\n        top: 0;\n        width: 5px;\n      }\n\n      a {\n        color: @nav-pf-vertical-alt-active-color;\n      }\n    }\n\n    .badge {\n      background: @gray-dark;\n      border: 1px solid @nav-pf-vertical-alt-bg-color;\n      border-radius: 3px;\n      color: @nav-pf-vertical-alt-badge-color;\n      font-weight: 700;\n      font-size: (@font-size-base - 3);\n      padding: 5px;\n      position: absolute;\n      right: 15px;\n      text-align: center;\n      top: 21px;\n\n      &.notifications {\n        background: @notification-badge-color;\n      }\n    }\n\n    .fa,\n    .glyphicon,\n    .pficon {\n      float: left;\n      font-size: 18px;\n      line-height: 30px;\n      margin-right: 10px;\n      text-align: center;\n      width: 18px;\n    }\n\n    .list-group-item-value {\n      display: inline-block;\n      line-height: 30px;\n      opacity: 1;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      width: 140px;\n    }\n\n  }\n\n  .list-group-item-separator {\n    border-top-width: 5px;\n  }\n\n  .sidebar-pf & {\n    margin-left: (-(@grid-gutter-width / 2));\n    margin-right: (-(@grid-gutter-width / 2));\n  }\n}\n","//\n// Notifications Drawer\n// --------------------------------------------------\n\n\n.drawer-pf {\n  background-color: @color-pf-black-100;\n  border: 1px solid @card-pf-border-color;\n  .box-shadow(0 6px 12px fade(@color-pf-black, 17.5%));\n  overflow-y: auto;\n  position: absolute;\n  right: 0;\n  width: 320px;\n  z-index: 2;\n  .panel {\n    border-bottom: none;\n    border-left: none;\n    border-right: none;\n  }\n  .panel-group .panel-heading + .panel-collapse .panel-body {\n    border-top: none;\n    border-bottom: 1px solid @card-pf-border-color;\n    padding: 0;\n  }\n  .panel-counter {\n    display: block;\n    font-style: italic;\n    line-height: 1.2;\n    padding-left: 18px;\n    padding-top: 5px;\n  }\n  .panel-heading { border-bottom: 1px solid @card-pf-border-color; }\n  .panel-group {\n    bottom: 0;\n    margin-bottom: 0;\n    position: absolute;\n    top: 25px; // Height of Notifications Drawer box.\n    width: 100%;\n  }\n  .panel-title a {\n    cursor: pointer;\n    display: block;\n  }\n  &.drawer-pf-expanded {\n    @media (max-width: @screen-xs-max) {\n      left:0;\n      width: 100%;\n    }\n    @media (min-width: @screen-xs-max) {\n      left: 270px;\n    } // if the drawer is expanded and the screen is reduced this ensures it switches to full width on smaller screens.\n    width: inherit;\n    .drawer-pf-toggle-expand:before {\n      content: \"\\f101\";\n    }\n  }\n  .blank-slate-pf {\n    border: 0;\n    margin-bottom: 0;\n    padding: 30px;\n\n    .blank-slate-pf-icon {\n      font-size: 3em;\n      line-height: 1em;\n    }\n\n    h1 {\n      font-size: 1em;\n      margin-bottom: 0;\n      margin-top: 15px;\n    }\n  }\n}\n.drawer-pf-close, .drawer-pf-toggle-expand {\n  color: @gray-darker;\n  cursor: pointer;\n  line-height: inherit;\n  padding: 2px 10px;\n  position: absolute;\n  &:hover,\n  &:focus {\n    color: @color-pf-blue-400;\n    text-decoration: none;\n  }\n}\n.drawer-pf-toggle-expand {\n  left: 0;\n  &:before {\n    content: \"\\f100\";\n    font-family: \"FontAwesome\";\n  }\n  &:hover {\n    color: @link-color;\n  }\n}\n.drawer-pf-close {\n  right: 0;\n}\n\n\n.drawer-pf-action {\n  display: flex;\n  border-bottom: 1px solid @card-pf-border-color;\n\n  .btn-link {\n    color: @link-color;\n    padding: 10px 0;\n    .pficon, .fa {\n      margin-right: 3px;\n    }\n    .pficon-close {\n      position: relative;\n      top: 1px;\n    }\n\n    &:hover { color: @link-hover-color; }\n  }\n}\n\n.drawer-pf-action-link {\n  border-left: solid 1px @color-pf-black-300;\n  flex: 1 1 0%;\n  margin: 10px 0;\n  text-align: center;\n\n  &:first-of-type {\n    border-left-width: 0;\n  }\n\n  .btn-link {\n    padding: 0;\n  }\n}\n\n.drawer-pf-loading {\n  color: @gray-pf;\n  font-size: (@font-size-base + 2);\n  padding: 20px 15px;\n}\n\n.drawer-pf-notification {\n  border-bottom: 1px solid @card-pf-border-color;\n  padding: 15px;\n  .date {\n    border-right: 1px solid #aaa;\n    display: inline-block;\n    line-height: 1;\n    margin-right: 5px;\n    padding-right: 9px;\n  }\n  > .dropdown-kebab-pf {\n    margin-top: -3px;\n  }\n\n  .pficon {\n    font-size: @font-size-large;\n    margin-top: 3px;\n  }\n  &:last-of-type {\n    border-bottom: none;\n  }\n  &:hover { background-color: @color-pf-blue-50; }\n  &.unread .drawer-pf-notification-message { font-weight: bold; }\n  &.expanded-notification {\n    .date {\n      border-right: none;\n      padding-right: 0;\n    }\n  }\n}\n\n.drawer-pf-notification-content {\n  cursor: default;\n}\n\n.drawer-pf-notification-info,\n.drawer-pf-notification-message {\n  display: block;\n  padding-left: 27px;\n  padding-right: 19px;\n  .expanded-notification & {\n    display: inline-block;\n  }\n}\n\n.drawer-pf-notifications-non-clickable .drawer-pf-notification:hover {\n  background-color: @color-pf-white;\n}\n\n.drawer-pf-title {\n  background-color: @color-pf-black-100;\n  border-bottom: 1px solid @card-pf-border-color;\n  position: absolute;\n  width: 100%;\n  h3 {\n    font-size: @font-size-base;\n    margin: 0;\n    padding: 6px 15px;\n  }\n}\n\n.drawer-pf-notification.expanded-notification {\n  .drawer-pf-notification-content {\n    display: flex;\n    @media (max-width: @screen-sm-max) {\n      flex-direction: column;\n    }\n    .drawer-pf-notification-message {\n      flex: 1 1;\n    }\n  }\n}\n\n/* Exclusive styles to work with Vertical Navigation */\n.navbar-pf-vertical {\n  .drawer-pf {\n    height: ~\"calc(100vh - @{drawer-pf-top-vertical} - 20px)\";//to create a 20px offset bottom\n    top: @drawer-pf-top-vertical; //menu height;\n      @media (max-width: @screen-xs-max) {\n        width:100%;\n        height: calc(~\"100vh - @{drawer-pf-top-vertical}\");\n      }\n\n  }\n  .nav .drawer-pf-trigger {\n    .drawer-pf-trigger-icon {\n      border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n      border-right: 1px solid @navbar-pf-navbar-utility-border-color;\n      padding-left: 15px;\n      padding-right: 15px;\n    }\n    &.open .drawer-pf-trigger-icon {\n      background-color: @navbar-pf-navbar-utility-hover-bg-color;\n    }\n  }\n}\n\n/* Exclusive styles to work with Horizontal Navigation */\n.navbar-pf {\n  .drawer-pf {\n    height: ~\"calc(100vh - @{drawer-pf-top-horizontal} - 20px)\";\n    top: @drawer-pf-top-horizontal;\n    @media (max-width: @screen-xs-max) {\n      width:100%;\n      height: calc(~\"100vh - @{drawer-pf-top-horizontal} - 32px\");\n      top:calc(~\"@{drawer-pf-top-horizontal} + 8px\");\n    }\n  }\n  .drawer-pf-trigger-icon { cursor: pointer; }\n}\n","//\n// Search\n// --------------------------------------------------\n\n.search-pf {\n  &.has-button {\n    border-collapse: separate;\n    display: table;\n    .form-group {\n      display: table-cell;\n      width: 100%;\n      .btn {\n        .box-shadow(none);\n        float: left;\n        margin-left: -1px;\n        &.btn-lg {\n          font-size: (@font-size-large + .5); // to make button height consistent across browsers!\n        }\n        &.btn-sm {\n          font-size: (@font-size-small - .3); // to make button height consistent across browsers!\n        }\n      }\n      .form-control {\n        float: left;\n      }\n    }\n  }\n  .has-clear {\n    .clear {\n      background: fade(@color-pf-white, 0%); // to make the whole button clickable in IE9+\n      border: 0;\n      height: (@input-height-base - 1);\n      line-height: 1;\n      padding: 0;\n      position: absolute;\n      right: 1px;\n      top: 1px;\n      width: 28px;\n      &:focus {\n        outline: none;\n      }\n    }\n    .form-control {\n      padding-right: 30px;\n      &::-ms-clear {\n        display: none;\n      }\n    }\n    .input-lg + .clear {\n      height: (@input-height-large - 2);\n      width: 28px;\n    }\n    .input-sm + .clear {\n      height: (@input-height-small - 2);\n      width: 28px;\n      span {\n        font-size: (@font-size-base - 2);\n      }\n    }\n    .search-pf-input-group {\n      position: relative;\n    }\n  }\n}\n","//\n// Sidebar\n// --------------------------------------------------\n\n.sidebar-header {\n  border-bottom: 1px solid darken(@page-header-border-color, 2%);\n  padding-bottom: ((@line-height-computed / 2) + 1);\n  margin: ((@line-height-computed * 2) + 10) 0 @line-height-computed;\n  .actions {\n    margin-top: -2px;\n  }\n}\n\n.sidebar-pf {\n  .sidebar-header + .list-group {\n    border-top: 0;\n    margin-top: (-@grid-gutter-width / 2 / 2);\n    .list-group-item {\n      background: transparent;\n      border-color: darken(@page-header-border-color, 2%);\n      padding-left: 0;\n    }\n    .list-group-item-heading {\n      font-size: @font-size-base;\n    }\n  }\n  .nav-category {\n    h2 {\n      color: @dropdown-header-color;\n      font-size: @font-size-base;\n      font-weight: 400;\n      line-height: (@line-height-computed + 1);\n      margin: 0;\n      padding: 8px 0;\n    }\n    + .nav-category {\n      margin-top: (@grid-gutter-width / 4);\n    }\n  }\n  .nav-pills > li {\n    &.active > a {\n      background: @dropdown-link-active-bg !important;\n      border-color: @dropdown-link-active-border-color !important;\n      color: @color-pf-white;\n      @media (min-width: @grid-float-breakpoint) {\n        &:after {\n          content: @fa-var-angle-right;\n          font-family: @icon-font-name-fa;\n          display: block;\n          position: absolute;\n          right: (@grid-gutter-width / 2 / 2);\n          top: 1px;\n        }\n      }\n      .fa {\n        color: @color-pf-white;\n      }\n    }\n    > a {\n      border-bottom: 1px solid transparent;\n      border-radius: 0;\n      border-top: 1px solid transparent;\n      color: @text-color;\n      font-size: (@font-size-base + 1);\n      line-height: (@line-height-computed + 1);\n      padding: 1px (@grid-gutter-width / 2);\n      &:hover {\n        background: @dropdown-link-hover-bg;\n        border-color: @dropdown-link-hover-border-color;\n      }\n      .fa {\n        color: lighten(@gray-pf, 12%);\n        font-size: (@font-size-base + 3);\n        margin-right: (@grid-gutter-width / 4);\n        text-align: center;\n        vertical-align: middle;\n        width: (@font-size-base + 3);\n      }\n    }\n  }\n  .nav-stacked {\n    margin-left: (-(@grid-gutter-width / 2));\n    margin-right: (-(@grid-gutter-width / 2));\n    li + li {\n      margin-top: 0;\n    }\n  }\n  .panel {\n    background: transparent;\n  }\n  .panel-body {\n    padding: 6px (@grid-gutter-width / 2);\n    .nav-pills > li > a {\n      padding-left: (@grid-gutter-width / 2 + 17);\n    }\n  }\n  .panel-heading {\n    padding: 9px (@grid-gutter-width / 2);\n  }\n  .panel-title {\n    font-size: @font-size-base;\n    > a {\n      &:before {\n        display: inline-block;\n        margin-left: 1px;\n        margin-right: 4px;\n        width: 9px;\n      }\n      &.collapsed:before {\n        margin-left: 3px;\n        margin-right: 2px;\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint-max) {\n  .sidebar-header-bleed-left {\n    margin-left: (-(@grid-gutter-width / 2));\n    > h2 {\n      margin-left: (@grid-gutter-width / 2);\n    }\n  }\n  .sidebar-header-bleed-right {\n    margin-right: (-(@grid-gutter-width / 2));\n    .actions {\n      margin-right: (@grid-gutter-width / 2);\n    }\n    > h2 {\n      margin-right: (@grid-gutter-width / 2);\n    }\n    + .list-group {\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n  }\n  .sidebar-pf {\n    .panel-group .panel-default,\n    .treeview {\n      border-left: 0;\n      border-right: 0;\n      margin-left: (-(@grid-gutter-width / 2));\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n    .treeview {\n      margin-top: 5px;\n      .list-group-item {\n        padding-left: (@grid-gutter-width / 2);\n        padding-right: (@grid-gutter-width / 2);\n        &.node-selected:after {\n          content: @fa-var-angle-right;\n          font-family: @icon-font-name-fa;\n          display: block;\n          position: absolute;\n          right: (@grid-gutter-width/2 / 2);\n          top: 1px;\n        }\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint) {\n  .sidebar-pf {\n    background: @sidebar-pf-bg;\n    &.sidebar-pf-left {\n      border-right: 1px solid @sidebar-pf-border-color;\n    }\n    &.sidebar-pf-right {\n      border-left: 1px solid @sidebar-pf-border-color;\n    }\n    > .nav-category,\n    > .nav-stacked {\n      margin-top: 5px;\n    }\n  }\n}\n","//\n// Skip to content\n// --------------------------------------------------\n.skiplink-pf {\n  position: absolute;\n  top: @skiplink-pf-top;\n  left: -300%; /* moves off screen */\n  z-index: @zindex-modal;\n}\n.skiplink-pf:focus {\n  left: @skiplink-pf-left;\n}\n","//\n// Spinner\n// --------------------------------------------------\n\n@keyframes rotation {\n  from {transform: rotate(0deg);}\n  to {transform: rotate(359deg);}\n}\n\n.spinner {\n  animation: rotation 600ms infinite linear;\n  border-bottom: 4px solid fade(@color-pf-black, 25%);\n  border-left: 4px solid fade(@color-pf-black, 25%);\n  border-right: 4px solid fade(@color-pf-black, 25%);\n  border-radius: 100%;\n  border-top: 4px solid fade(@color-pf-black, 75%);\n  height: (@font-size-base * 2);\n  margin: 0 auto;\n  position: relative;\n  width: (@font-size-base * 2);\n  &.spinner-inline {\n    display: inline-block;\n    margin-right: 3px;\n  }\n  &.spinner-lg {\n    border-width: 5px;\n    height: (@font-size-base * 2.5);\n    width: (@font-size-base * 2.5);\n  }\n  &.spinner-sm {\n    border-width: 3px;\n    height: (@font-size-base * 1.5);\n    width: (@font-size-base * 1.5);\n  }\n  &.spinner-xs {\n    border-width: 2px;\n    height: @font-size-base;\n    width: @font-size-base;\n  }\n  &.spinner-inverse {\n    border-bottom-color: fade(@color-pf-white, 25%);\n    border-left-color: fade(@color-pf-white, 25%);\n    border-right-color: fade(@color-pf-white, 25%);\n    border-top-color: fade(@color-pf-white, 75%);\n  }\n}\n\n.ie9 .spinner {\n  background: url(\"@{img-path}/@{img-spinner}\") no-repeat;\n  border: 0;\n  &.spinner-inverse {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse}\");\n  }\n  &.spinner-inverse-lg {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-lg}\");\n  }\n  &.spinner-inverse-sm {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-sm}\");\n  }\n  &.spinner-inverse-xs {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-xs}\");\n  }\n  &.spinner-lg {\n    background-image: url(\"@{img-path}/@{img-spinner-lg}\");\n  }\n  &.spinner-sm {\n    background-image: url(\"@{img-path}/@{img-spinner-sm}\");\n  }\n  &.spinner-xs {\n    background-image: url(\"@{img-path}/@{img-spinner-xs}\");\n  }\n}\n","//\n// Syntax Highlighting for google-code-prettify\n// --------------------------------------------------\n\n.prettyprint {\n  .atn,\n  .com,\n  .fun,\n  .var {\n    color: @syntax-3;\n  }\n\n  .atv,\n  .str {\n    color: @syntax-1;\n  }\n\n  .clo,\n  .dec,\n  .kwd,\n  .opn,\n  .pln,\n  .pun {\n    color: @syntax-2;\n  }\n\n  .lit,\n  .tag,\n  .typ {\n    color: @syntax-4;\n  }\n\n  ol.linenums {\n    margin-bottom: 0;\n  }\n}\n","//\n// Table View\n// --------------------------------------------------\n\n// Keep dataTable class for legacy apps\ntable.dataTable {\n  height: 100%;\n  margin-bottom: 0;\n  max-width: none !important;\n  tbody {\n    > tr {\n      > td {\n        // Styling for inline actions\n        &.table-view-pf-actions {\n          padding: 0;\n          vertical-align: middle;\n        }\n      }\n      &:hover {\n        // Styling when hovering anywhere else on a row\n        > td.table-view-pf-actions {\n          background-color: @table-bg-accent;\n          border-bottom-color: @table-border-color;\n        }\n      }\n    }\n    > tr.selected {\n      color: @color-pf-white;\n      background-color: @color-pf-blue-400;\n      > td {\n        border-bottom-color: @color-pf-blue-500;\n        &.table-view-pf-actions {\n          background-color: @table-bg-accent;\n          border-bottom-color: @table-border-color;\n        }\n      }\n      &:hover {\n        > td {\n          background-color: inherit;\n          border-bottom-color: @color-pf-blue-500;\n          &.table-view-pf-actions {\n            background-color: @table-bg-accent;\n            border-bottom-color: @table-border-color;\n          }\n        }\n      }\n    }\n  }\n  thead {\n    .sorting,\n    .sorting_asc,\n    .sorting_desc,\n    .sorting_asc_disabled,\n    .sorting_desc_disabled {\n      cursor: pointer;\n    }\n    .sorting_asc,\n    .sorting_desc {\n      color: @link-color !important;\n      position: relative;\n      &:after {\n        content: @fa-var-angle-down;\n        font-family: @icon-font-name-fa;\n        font-size: (@font-size-base - 2);\n        font-weight: normal;\n        height: (@font-size-base - 3);\n        left: 7px;\n        line-height: @font-size-base;\n        position: relative;\n        top: 2px;\n        vertical-align: baseline;\n        width: @font-size-base;\n      }\n      &:before {\n        background: @link-color;\n        content: \"\";\n        height: 2px;\n        position: absolute;\n        left: 0;\n        top: 0;\n        width: 100%;\n      }\n    }\n    .sorting_asc:after {\n      content: @fa-var-angle-up;\n      top: -3px;\n    }\n  }\n  th:active {\n    outline: none;\n  }\n}\n\n// Empty table\n.table-view-pf-empty {\n  &.blank-slate-pf {\n    background-color: @table-bg-accent;\n    border: 1px solid @table-border-color;\n    border-radius: 0;\n    margin-top: -1px;\n  }\n}\n\n// Embedded toolbar\n.table-view-pf-toolbar {\n  &.toolbar-pf {\n    background-color: @table-bg-accent;\n    border-bottom: none;\n    border-left: 1px solid @table-border-color;\n    border-right: 1px solid @table-border-color;\n    border-top: 1px solid @table-border-color;\n    box-shadow: none;\n    margin-left: 0px;\n    margin-right: 0px;\n    .toolbar-pf-results {\n      border-top: 1px solid @table-border-color;\n      min-height: 40px;\n      line-height: 40px;\n    }\n  }\n}\n\n// External Toolbar\n.table-view-pf-toolbar-external {\n  &.toolbar-pf {\n    border-bottom: none;\n    border-top: none;\n    box-shadow: none;\n    .toolbar-pf-results {\n      border-top: 1px solid @table-border-color;\n      min-height: 40px;\n      line-height: 40px;\n    }\n  }\n}\n\n.table-view-pf-colvis-menu {\n  > li {\n    padding: 5px 10px;\n    &:hover {\n      background-color: #def3ff;\n    }\n    > input {\n      margin-top: 0;\n      margin-right: 10px;\n      vertical-align: middle;\n    }\n    > label {\n      margin-bottom: 0;\n    }\n  }\n\n}\n\n// Inline action button and kebab\n// Sets button height to 100% of td height in firefox and chrome, but not in IE when wrapping occurs.\n// Button height must be set dynamically in IE to be equal to td height.\n.table-view-pf-actions {\n  background-color: @btn-default-bg; // included just in case there are gaps between the edges of the buttons and the table cell\n  height: 100%;\n  .btn,\n  .dropdown-toggle {\n    border: none;\n    box-shadow: none;\n    height: 100%;\n    width: 100%;\n  }\n  .dropdown,\n  .table-view-pf-btn {\n    height: 100%;\n  }\n  .dropdown-menu.dropdown-menu-right {\n    right: -5px;\n  }\n  &:last-child {\n    width: 24px;\n  }\n}\n\n// Selection column\n.table-view-pf-select {\n  width: 33px;\n}\n\n// Results area containing selected row text\n.table-view-pf-select-results {\n  text-align: right;\n}\n","//\n// Time Picker\n// --------------------------------------------------\n.bootstrap-datetimepicker-widget {\n  a[data-action] {\n    border: 0;\n    box-shadow: none;\n    color: @gray-dark;\n    display: block;\n    padding-bottom: 4px;\n    padding-top: 4px;\n    &:hover { color: @link-color; }\n  }\n  &.dropdown-menu {\n    left: 0!important;\n    padding: 0;\n    width: ~\"calc(100% - 25px)\";\n    &:before, &:after {\n      content: none;\n    }\n    &.top {\n      margin-bottom: -1px;\n    }\n    &.bottom {\n      margin-top: -1px;\n    }\n  }\n  .timepicker-hour {\n    width: 100%;\n    &:after {\n      content: \":\";\n      float: right;\n    }\n  }\n}\n.timepicker-hours,\n.timepicker-minutes {\n  table td {\n    font-weight: bold;\n    line-height: 30px;\n    height: 30px;\n    &:hover { color: @link-color; }\n  }\n  .table-condensed > tbody > tr > td { padding: 0; }\n}\n.time-picker-pf {\n  .input-group-addon {\n    .fa,\n    .pficon { width: 12px; }\n    &:not(.active) { box-shadow: none; }\n  }\n}\n.timepicker-picker {\n  table td {\n    span,\n    a span {\n      height: 24px;\n      line-height: 24px;\n      margin: 0;\n      width: 100%;\n    }\n  }\n  .table-condensed > tbody > tr > td {\n    height: 25px;\n    line-height: 18px;\n    padding: 0;\n  }\n  button[data-action] { // provisional until the button is removed\n    padding-bottom: 0;\n    padding-top: 0;\n  }\n  .separator { display: none; }\n  tr:nth-child(2) td {\n    background-color: @dropdown-link-hover-bg;\n    border-color: @dropdown-link-hover-border-color;\n    border-style: solid;\n    border-width: 1px;\n    border-left: 0;\n    border-right: 0;\n  }\n}\n","//\n// Toast notifications\n// --------------------------------------------------\n\n.toast-pf {\n  background-color: @color-pf-white;\n  border-color: @color-pf-black-400;\n  box-shadow: 0 2px 6px fade(@color-pf-black, 20%);\n  padding-left: 68px; //15px space between the icon and the text\n  margin-bottom: 5px;\n  &.alert-danger > .pficon  { background-color: @alert-danger-border; }\n  &.alert-info > .pficon    { background-color: @alert-info-border; }\n  &.alert-success > .pficon { background-color: @alert-success-border; }\n  &.alert-warning > .pficon { background-color: @alert-warning-border; }\n  .dropdown-kebab-pf { margin-left: 10px; }\n  > .pficon {\n    background-color: @gray-pf;\n    bottom:  -1px;\n    box-shadow: 2px 0 5px -2px fade(@color-pf-black, 20%);\n    left: -1px;\n    padding-top: 10px;\n    text-align: center;\n    top: -1px;\n    width: 53px;\n    &:before { color: fade(@color-pf-white, 74%); }\n  }\n  .toast-pf-action {\n    margin-left: 15px;\n  }\n  .dropdown-kebab-pf .btn-link {\n    padding-top: 0;\n    padding-bottom: 0;\n    vertical-align: text-bottom;\n  }\n  /* Medium devices (desktops, 992px and up) */\n  @media (min-width: @screen-md-min) {\n    display: inline-block;\n  }\n}\n// Sets max width on toast notifications\n.toast-pf-max-width {\n @media (min-width: @screen-md-min) {\n    max-width: 31.1%; // sets the size to 4 cols;\n  }\n}\n// To position the notification on the top right corner, used in context on cards layout\n.toast-pf-top-right {\n  left: (@grid-gutter-width / 2);\n  position: absolute;\n  right: (@grid-gutter-width / 2);\n  top: 12px;\n  z-index: 1055; // More than @zindex-modal\n  /* Medium devices (desktops, 992px and up) */\n  @media (min-width: @screen-md-min) {\n    left: auto;\n  }\n}\n\n.toast-notifications-list-pf {\n  margin-left: (@grid-gutter-width / 2);\n  position: fixed;\n  right: (@grid-gutter-width / 2);\n  top: @toast-notification-top;\n  z-index: 1055;\n  .toast-pf {\n    clear: both;\n    float: right;\n  }\n  @media (min-width: @screen-sm-min) {\n    max-width: calc(50%);\n  }\n  @media (min-width: @screen-md-min) {\n    max-width: calc(33.1% ); // sets the size to 4 cols;\n  }\n}\n","//\n// Toolbar (Filter and view options)\n// --------------------------------------------------\n\n.toolbar-pf {\n  background: @color-pf-white;\n  border-bottom: 1px solid @sidebar-pf-border-color;\n  box-shadow: 0 1px 0px fade(@color-pf-black, 4.5%);\n  padding-top: (@grid-gutter-width/4);\n  .form-group {\n    margin-bottom: (@grid-gutter-width/4);\n    @media (min-width: @grid-float-breakpoint) {\n      border-right: 1px solid @sidebar-pf-border-color;\n      float: left;\n      margin-bottom: 0;\n      padding-left: (@grid-gutter-width/2);\n      padding-right: (@grid-gutter-width/2);\n    }\n    &:last-child {\n      border-right: 0;\n      margin-bottom: 0;\n      padding-right: 0;\n    }\n    .btn,\n    .btn-group {\n      + .btn,\n      + .btn-group { margin-left: 5px; }\n      + .btn-link,\n      + .dropdown { margin-left: 10px; }\n    }\n    .btn-link {\n      color: @gray-darker;\n      font-size: (@font-size-base + 4);\n      line-height: 1;\n      padding: 4px 0;\n      &:active,\n      &:focus,\n      &:hover { color: @link-color; }\n    }\n    .dropdown-kebab-pf .btn-link {\n      padding: 4px (@grid-gutter-width/4);\n      margin-left: (@grid-gutter-width/(-4));\n      margin-right: (@grid-gutter-width/(-4));\n    }\n  }\n}\n.toolbar-pf-actions {\n  display: table;\n  margin-bottom: 10px;\n  width: 100%;\n  @media (min-width: @grid-float-breakpoint) {\n    .toolbar-pf-filter {\n      padding-left: 0;\n    }\n  }\n}\n.toolbar-pf-view-selector {\n  font-size: (@font-size-base + 4);\n  .btn-link.active {\n    color: @link-color;\n    cursor: default;\n  }\n}\n.toolbar-pf-action-right {\n  float: right;\n  @media (max-width: @grid-float-breakpoint) {\n    float: none;\n  }\n}\n.toolbar-pf-find {\n  font-size: (@font-size-base + 2);\n  position: relative;\n}\n.find-pf-dropdown-container {\n  background: @color-pf-white;\n  border: solid 1px @color-pf-black-400;\n  display: none;\n  right: -20px;\n  padding: 5px;\n  position: absolute;\n  top: 35px;\n  width: 300px;\n  z-index: 10000;\n  @media (max-width: @grid-float-breakpoint) {\n    left: 30px;\n    top: -5px;\n    width: calc(100% - 30px);\n  }\n  &:before,\n  &:after {\n    content: \"\";\n    position: absolute;\n  }\n  &:before {\n    border-bottom:11px solid @color-pf-black-400;\n    border-left:11px solid transparent;\n    border-right:11px solid transparent;\n    right: 35px;\n    .toolbar-pf-find:last-child & {\n      right: 15px;\n    }\n    top: -12px;\n    @media (max-width: @grid-float-breakpoint) {\n      border-bottom:11px solid transparent;\n      border-right:11px solid @color-pf-black-400;\n      border-top:11px solid transparent;\n      left: -22px;\n      right: initial;\n      top: 8px;\n    }\n  }\n  &:after {\n    border-bottom:10px solid @color-pf-white;\n    border-left:10px solid transparent;\n    border-right:10px solid transparent;\n    right: 36px;\n    .toolbar-pf-find:last-child & {\n      right: 16px;\n    }\n    top: -10px;\n    @media (max-width: @grid-float-breakpoint) {\n      border-bottom:10px solid transparent;\n      border-right:10px solid @color-pf-white;\n      border-top:10px solid transparent;\n      left: -20px;\n      right: initial;\n      top: 9px;\n    }\n  }\n  input {\n    height: 30px;\n    padding: 5px 117px 5px 5px; // 112px (components) + 5px (offset)\n    width: 100%;\n  }\n  .find-pf-buttons {\n    position: absolute;\n    right: 10px;\n    top: 5px;\n    .btn {\n      border: none;\n      cursor: pointer;\n      margin-left: 0 !important;\n      padding: 0;\n      width: 18px;\n      .fa-angle-up,\n      .fa-angle-down {\n        font-weight: bold;\n        font-size: (@font-size-base + 6);\n      }\n      .pficon-close { font-size: (@font-size-base + 2); }\n    }\n    span {\n      height: 30px;\n      line-height: 30px;\n      vertical-align: middle;\n    }\n    .find-pf-nums {\n      color: @color-pf-black-500;\n      margin-right: 3px;\n    }\n  }\n}\n\n.toolbar-pf-results {\n  border-top: 1px solid @sidebar-pf-border-color;\n  margin-top: (@grid-gutter-width/4);\n  h5,\n  p,\n  ul {\n    display: inline-block;\n    line-height: (@grid-gutter-width/1.5);\n    margin-bottom: 0;\n    margin-top: 0;\n    @media (min-width: @screen-sm-min) {\n      line-height: @grid-gutter-width;\n    }\n  }\n  h5 {\n    font-weight: 700;\n    margin-right: 20px;\n  }\n  .label {\n    font-size: (@font-size-base - 1);\n    a {\n      color: @color-pf-white;\n      display: inline-block;\n      margin-left: 5px;\n    }\n  }\n}\n","//\n//  Vertical navigation\n// --------------------------------------------------\n//\n// Basic Required Layout for Vertical Navigation\n//\n// .navbar navbar-pf-vertical\n//   .navbar-header\n//   .collapse navbar-collapse   <-- necessary for collapsing vertical nav and mobile\n// .nav-pf-vertical [.nav-pf-vertical-callapsible-menus] [.nav-pf-persistent-secondary] [.hidden-icons-pf]\n//   .list-group\n//     .list-group-item [.active] [.secondary-nav-item-pf]\n//       a\n//         [primary icon] <-- Not shown if .hidden-icons-pf above\n//         .list-group-item-value\n//       .nav-pf-secondary-nav  <-- if .secondary-nav-item-pf above\n//         .nav-item-pf-header\n//           .secondary-collapse-toggle-pf data-toggle=\"collapse-secondary-nav\"\n//         .list-group\n//           .list-group-item [.active] [tertiary-nav-item-pf]\n//             a\n//              .list-group-item-value\n//            .nav-pf-tertiary-nav  <-- if .tertiary-nav-item-pf above\n//              .nav-item-pf-header\n//                .tertiary-collapse-toggle-pf data-toggle=\"collapse-tertiary-nav\"\n//              .list-group\n//                .list-group-item [.active] [tertiary-nav-item-pf]\n//                  a\n//                    .list-group-item-value\n//\n// .container-pf-nav-pf-vertical [.nav-pf-persistent-secondary] [.hidden-icons-pf]\n//\n\n.nav-pf-vertical {\n  background: @nav-pf-vertical-bg-color;\n  border-right: 1px solid @nav-pf-vertical-border-color;\n  bottom: 0;\n  left: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n   &.hidden.show-mobile-nav {  // Mobile mode open\n    box-shadow: 0 0 3px fade(@color-pf-black, 15%);\n    display: block !important;\n  }\n  &.hide-nav-pf {  // Used to hide navigation initially to avoid startup flicker\n    visibility: hidden !important;\n  }\n  .list-group {\n    border-top: 0;\n    margin-bottom: 0;\n  }\n  .list-group-item {\n    background-color: transparent;\n    border-color: @nav-pf-vertical-item-border-color;\n    padding: 0;\n    > a {\n      background-color: transparent;\n      color: @nav-pf-vertical-color;\n      cursor: pointer;\n      display: block;\n      font-size: (@font-size-base + 2);\n      font-weight: @nav-pf-vertical-font-weight;\n      height: @nav-pf-vertical-link-height;\n      line-height: 26px;\n      padding: @nav-pf-vertical-link-padding;\n      position: relative;\n      white-space: nowrap;\n      width: @nav-pf-vertical-width;\n      // When flexbox is supported nav item names take up all available space\n      @supports (display: flex) {\n        display: flex;\n        padding-right: 0;\n      }\n      .fa,\n      .glyphicon,\n      .pficon {\n        color: @nav-pf-vertical-icon-color;\n        float: left;\n        font-size: (@font-size-base + 8);\n        line-height: 26px;\n        margin-right: 10px;\n        text-align: center;\n        width: @nav-pf-vertical-icon-width;\n      }\n      &:hover {\n        text-decoration: none;\n      }\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-active-bg-color;\n        color: @nav-pf-vertical-active-color;\n        font-weight: @nav-pf-vertical-active-font-weight;\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @nav-pf-vertical-active-icon-color;\n        }\n      }\n    }\n    &.active {\n      > a:before {\n        background: @nav-pf-vertical-active-before-color;\n        content: \" \";\n        height: 100%;\n        left: 0;\n        position: absolute;\n        top: 0;\n        width: 3px;\n      }\n      &:hover { // to over-ride default list group setting\n        background-color: transparent;\n        border-color: @nav-pf-vertical-item-border-color;\n      }\n    }\n    .list-group-item-value {\n      display: block;\n      line-height: 25px;\n      max-width: 120px;\n      // If flexbox is supported, do not set max-width, take all space with just some right padding\n      @supports (display: flex) {\n        flex: 1;\n        max-width: none;\n        padding-right: 15px;\n      }\n      overflow: hidden;\n      text-overflow: ellipsis;\n    }\n  }\n  .list-group-item-separator {\n    border-top-color: @nav-pf-vertical-item-border-color;\n    border-top-width: 2px;\n  }\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n    .list-group-item > a {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  h5 {\n    color: @nav-pf-vertical-secondary-color;\n    cursor: default;\n    font-size: (@font-size-base + 1);\n    font-weight: 600;\n    margin: @nav-pf-vertical-secondary-list-header-margin;\n  }\n  &.hidden-icons-pf {\n    > .list-group > .list-group-item { // only the primary menu hides icons\n      > a {\n        .fa,\n        .glyphicon,\n        .pficon {\n          display: none;\n        }\n      }\n    }\n    &.collapsed {\n      display: none;\n    }\n  }\n  .badge-container-pf {\n    position: absolute;\n    right: 15px;\n    top: 20px;\n    // If flexbox is supported, use relative positioning to place to the right of the label\n    // and adjust the top position so that the secondary and tertiary nav items don't need to change\n    @supports (display: flex) {\n      padding-left: 0;\n      padding-right: 15px;\n      position: relative;\n      right: 0;\n      margin-top: -3px;\n      top: 5px;\n    }\n    .badge {\n      background: @nav-pf-vertical-badge-bg-color;\n      color: @nav-pf-vertical-badge-color;\n      float: left;\n      font-size: @font-size-base;\n      font-weight: 700;\n      line-height: @line-height-base;\n      margin: 0;\n      padding: 0 7px;\n      text-align: center;\n      .pficon,\n      .fa {\n        font-size: (@font-size-base + 2);\n        height: 20px;\n        line-height: @line-height-base;\n        margin-right: 3px;\n        margin-top: -1px;\n      }\n    }\n  }\n}\n.nav-pf-vertical-tooltip.tooltip {\n  margin-left: 15px;\n  .tooltip-inner {\n    background-color: @color-pf-white;\n    color: @color-pf-black-900;\n  }\n  .tooltip-arrow {\n    border-bottom-color: @color-pf-white;\n    left: calc(50% - 15px) !important;\n  }\n}\n.hover-secondary-nav-pf {\n  width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  &.nav-pf-vertical-with-badges {\n    width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n  }\n}\n.hover-tertiary-nav-pf {\n  width: ~\"calc(@{nav-pf-vertical-width} * 3)\";\n  &.nav-pf-vertical-with-badges {\n    width: ~\"calc(@{nav-pf-vertical-badges-width} * 3)\";\n  }\n  .nav-pf-secondary-nav {\n    width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    .collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  .nav-pf-tertiary-nav {\n    left: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-secondary-nav {\n      width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n      .collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    .nav-pf-tertiary-nav {\n      left: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n    }\n  }\n}\n.nav-pf-vertical.collapsed {\n  width: @nav-pf-vertical-collapsed-width;\n  &.collapsed-secondary-nav-pf { // collapsed state with secondary menu pinned\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.collapsed-tertiary-nav-pf { // collapsed state with tertiary menu pinned\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.hover-secondary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-badges-width} * 2))\";\n    }\n  }\n}\n.show-mobile-nav {\n  &.show-mobile-secondary {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.show-mobile-tertiary {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .mobile-nav-item-pf,\n  .mobile-secondary-item-pf {\n    .nav-pf-secondary-nav {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 4);\n    }\n    > .nav-pf-tertiary-nav {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 8);\n    }\n  }\n  .nav-pf-secondary-nav {\n    left: 0;\n    .secondary-nav-item-pf:hover & {\n      opacity: 0;\n      visibility: hidden;\n    }\n  }\n  .tertiary-nav-item-pf:hover {\n    .nav-pf-tertiary-nav {\n      opacity: 0;\n      visibility: hidden;\n    }\n  }\n  .tertiary-nav-item-pf.mobile-nav-item-pf:hover {\n    .nav-pf-tertiary-nav {\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n}\n.secondary-nav-item-pf {\n  > a {\n    cursor: default;\n    &:after {\n      color: @nav-pf-vertical-secondary-indicator-color;\n      content: @fa-var-angle-right;\n      display: block;\n      font-family: \"FontAwesome\";\n      font-size: (@font-size-base * 2);\n      line-height: 30px;\n      padding: @nav-pf-vertical-secondary-indicator-padding;\n      position: absolute;\n      right: 20px;\n      top: 0;\n    }\n    .list-group-item-value {\n      // If flex box is supported add some padding to account for the submenu indicator\n      @supports (display: flex) {\n        padding-right: 35px;\n      }\n    }\n  }\n  &.active,\n  &:hover {\n    > a {\n      width: ~\"calc(@{nav-pf-vertical-width} + 1px)\";\n      z-index: (@zindex-navbar-fixed + 1);\n      &:after {\n        right: 21px;\n      }\n      .collapsed-secondary-nav-pf & {\n        z-index: 0;\n      }\n      .collapsed-tertiary-nav-pf & {\n        z-index: 0;\n      }\n    }\n  }\n  .nav-pf-vertical-with-badges & {\n    &.active,\n    &:hover {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} + 1px)\";\n      }\n    }\n  }\n}\n.nav-pf-vertical.collapsed-secondary-nav-pf {\n  width: @nav-pf-vertical-width;\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n  }\n  .secondary-nav-item-pf {  // Keep sub-menu indicators below collapsed menu\n    &.active,\n    &.hover {\n      > a {\n        z-index: @zindex-navbar-fixed;\n      }\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .nav-pf-secondary-nav {\n    left: 0;\n  }\n  .nav-pf-tertiary-nav {\n    left: @nav-pf-vertical-width;\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-tertiary-nav {\n      left: @nav-pf-vertical-badges-width;\n    }\n  }\n}\n.nav-pf-vertical.collapsed-tertiary-nav-pf {\n  width: @nav-pf-vertical-width;\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n  }\n  .nav-pf-secondary-nav {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .secondary-nav-item-pf,    // Keep sub-menu indicators below collapsed menu\n  .tertiary-nav-item-pf {\n    &.active,\n    &.hover {\n      > a {\n        z-index: 0;\n      }\n    }\n  }\n}\n.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf {  // Persistent secondary nav settings\n  @media (min-width: @screen-lg-min) { // secondary menu only persistent at lg screen\n    width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n    }\n    &.collapsed-secondary-nav-pf {\n      width: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        width: @nav-pf-vertical-badges-width;\n      }\n      &.hover-tertiary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n        &.nav-pf-vertical-with-badges {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n        }\n      }\n    }\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.collapsed {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n      &.collapsed-secondary-nav-pf {\n        width: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          width: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          width: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.hover-tertiary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n        &.nav-pf-vertical-with-badges {\n          width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-badges-width} * 2))\";\n        }\n      }\n    }\n    &.hover-tertiary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-width} * 3)\";\n      &.nav-pf-vertical-with-badges {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} * 3)\";\n      }\n    }\n    .secondary-nav-item-pf.active {\n      .nav-pf-secondary-nav {\n        visibility: visible;\n        opacity: 1;\n      }\n    }\n  }\n}\n.nav-item-pf-header {\n  color: @nav-pf-vertical-secondary-color;\n  font-size: (@font-size-base + 4);\n  margin: @nav-pf-vertical-secondary-header-margin;\n  > a {\n    cursor: pointer;\n    margin-right: 7px;\n    &:hover,\n    &:focus {\n      color: @link-color;\n      text-decoration: none;\n    }\n  }\n}\n.nav-pf-vertical.collapsed { // Collapsed Primary Menu state\n  width: @nav-pf-vertical-collapsed-width;\n  .list-group-item { // Show only the icons\n    > a {\n      width: @nav-pf-vertical-collapsed-width;\n      > .list-group-item-value {\n        display: none;\n      }\n      > .badge-container-pf {\n        display: none;\n      }\n    }\n    &.secondary-nav-item-pf { // Adjust widths\n      &.active > a,\n      > a {\n        width: @nav-pf-vertical-collapsed-width;\n        &:after {\n          right: 10px;\n        }\n      }\n      &.active,\n      &:hover {\n        > a {\n          width: (@nav-pf-vertical-collapsed-width + 2);\n          &:after {\n            right: 11px;\n          }\n        }\n      }\n    }\n  }\n}\n.nav-pf-secondary-nav {\n  background: @nav-pf-vertical-secondary-bg-color;\n  border: 1px solid @nav-pf-vertical-border-color;\n  border-bottom: none;\n  border-top: none;\n  bottom: 0;\n  display: block;\n  left: @nav-pf-vertical-width;\n  opacity: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  visibility: hidden;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .secondary-nav-item-pf.active & {  // Show secondary menu if active and either is collapsed\n    .collapsed-secondary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 2);\n    }\n    .collapsed-tertiary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n  .secondary-nav-item-pf.is-hover & { // Show secondary menu if hovering\n    .hover-secondary-nav-pf & {\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .list-group-item {\n    border: none;\n    padding: @nav-pf-vertical-secondary-item-padding;\n    width: @nav-pf-vertical-width;\n    > a {\n      background-color: @nav-pf-vertical-secondary-bg-color;\n      color: @nav-pf-vertical-secondary-item-color;\n      font-size: @font-size-base;\n      font-weight: inherit;\n      height: inherit;\n      padding: @nav-pf-vertical-secondary-link-padding;\n      margin-left: 20px;\n      width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n\n      &:hover {\n        .list-group-item-value {\n          text-decoration: underline;\n        }\n      }\n    }\n    &.active > a:before {\n      display: none;\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-secondary-active-bg-color;\n        color: @nav-pf-vertical-secondary-active-color;\n      }\n    }\n    .badge-container-pf {\n      top: 5px;\n      .badge {\n        background: @nav-pf-vertical-secondary-badge-bg-color;\n        color: @nav-pf-vertical-badge-color;\n      }\n    }\n    .list-group-item-value {\n      padding-left: 5px;\n    }\n    &.tertiary-nav-item-pf { // Secondary menu items with tertiary sub menus\n      > a {\n        cursor: default;\n        &:after {\n          color: @nav-pf-vertical-secondary-indicator-color;\n          content: @fa-var-angle-right;\n          display: block;\n          font-family: \"FontAwesome\";\n          font-size: 20px;\n          line-height: 20px;\n          padding: @nav-pf-vertical-tertiary-indicator-padding;\n          position: absolute;\n          right: 20px;\n          top: 4px;\n        }\n        // If flex box is supported add some padding to account for the submenu indicator\n        .list-group-item-value {\n          @supports (display: flex) {\n            padding-right: 35px;\n          }\n        }\n      }\n      &.active,\n      &:hover {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-width} - 19px)\";\n          z-index: (@zindex-navbar-fixed + 3);\n          &:after {\n            right: 21px;\n          }\n        }\n      }\n    }\n  }\n  .nav-pf-vertical-with-badges & {\n    left: @nav-pf-vertical-badges-width;\n    width: @nav-pf-vertical-badges-width;\n    .list-group-item {\n      width: @nav-pf-vertical-badges-width;\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n      }\n      &.tertiary-nav-item-pf { // Secondary menu items with tertiary sub menus\n        &.active,\n        &:hover {\n          > a {\n            width: ~\"calc(@{nav-pf-vertical-badges-width} - 19px)\";\n          }\n        }\n      }\n    }\n  }\n}\n.nav-pf-tertiary-nav {\n  background: @nav-pf-vertical-tertiary-bg-color;\n  border: 1px solid @nav-pf-vertical-border-color;\n  border-bottom: none;\n  border-top: none;\n  bottom: 0;\n  display: block;\n  left: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  opacity: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  visibility: hidden;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .nav-pf-vertical-with-badges & {\n    left: @nav-pf-vertical-badges-width;\n    width: @nav-pf-vertical-badges-width;\n    .show-mobile-nav {\n      left: 0;\n    }\n  }\n  .tertiary-nav-item-pf.active & {  // Show tertiary menu if active and collapsed\n    .collapsed-tertiary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 3);\n    }\n  }\n  .tertiary-nav-item-pf.is-hover & { // Show tertiary menu if hovering\n    .hover-tertiary-nav-pf & {\n      opacity: 1;\n      visibility: visible;\n      .collapsed.collapsed-tertiary-nav-pf & {\n        left: 0;\n      }\n    }\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .nav-item-pf-header {\n    color: @nav-pf-vertical-tertiary-color;\n    margin: @nav-pf-vertical-tertiary-header-margin;\n  }\n  h5 {\n    color: @nav-pf-vertical-tertiary-color;\n    margin: @nav-pf-vertical-tertiary-list-header-margin;\n  }\n  .list-group-item {\n    border: none;\n    padding: @nav-pf-vertical-tertiary-item-padding;\n    > a {\n      background-color: transparent;\n      color: @nav-pf-vertical-tertiary-item-color;\n      font-size: @font-size-base;\n      font-weight: inherit;\n      height: inherit;\n      margin: @nav-pf-vertical-tertiary-link-margin;\n      padding: @nav-pf-vertical-tertiary-link-padding;\n    }\n    &.active > a:before {\n      display: none;\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-tertiary-active-bg-color;\n        color: @nav-pf-vertical-tertiary-active-color;\n      }\n    }\n    .badge-container-pf {\n      top: 5px;\n      .badge {\n        background: @nav-pf-vertical-tertiary-badge-bg-color;\n        color: @nav-pf-vertical-tertiary-badge-color;\n      }\n    }\n    .list-group-item-value {\n      padding-left: 5px;\n    }\n  }\n}\n.collapsed {\n  .nav-pf-secondary-nav { // Adjust left placement\n    left: @nav-pf-vertical-collapsed-width;\n    .list-group-item {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n        > .list-group-item-value { // Continue to show labels for secondary menu items\n          display: inline-block;\n        }\n        > .badge-container-pf {\n          display: inline-block;\n        }\n      }\n    }\n  }\n  .nav-pf-tertiary-nav { // Adjust left placement\n    left: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n    .list-group-item {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n        > .list-group-item-value { // Continue to show labels for tertiary menu items\n          display: inline-block;\n        }\n        > .badge-container-pf {\n          display: inline-block;\n        }\n      }\n    }\n  }\n  &.collapsed-secondary-nav-pf,\n  &.collapsed-tertiary-nav-pf {\n    width: @nav-pf-vertical-width;\n    .secondary-nav-item-pf {\n      &:hover {\n        > a {\n          z-index: @zindex-navbar-fixed;\n        }\n      }\n    }\n    .nav-pf-secondary-nav {\n      left: 0;\n    }\n  }\n  &.collapsed-secondary-nav-pf {\n    .nav-pf-tertiary-nav {\n      left: @nav-pf-vertical-width;\n    }\n  }\n  &.collapsed-tertiary-nav-pf {\n    .nav-pf-tertiary-nav {\n      left: 0;\n    }\n  }\n  &.hover-secondary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n\n    &.collapsed-secondary-nav-pf,\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n    &.collapsed-secondary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    }\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-secondary-nav {\n      .list-group-item {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n        }\n      }\n    }\n    .nav-pf-tertiary-nav {\n      left: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n      .list-group-item {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n        }\n      }\n    }\n    &.collapsed-secondary-nav-pf,\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-badges-width;\n    }\n    &.collapsed-secondary-nav-pf {\n      .nav-pf-tertiary-nav {\n        left: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.hover-secondary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n      &.collapsed-secondary-nav-pf,\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.hover-tertiary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n      &.collapsed-secondary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n      }\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-width;\n      }\n    }\n  }\n}\n.secondary-collapse-toggle-pf {\n  display: none;\n  font-family: @icon-font-name-fa;\n  font-size: inherit;\n  opacity: 0;\n  pointer-events: none;\n  -webkit-font-smoothing: antialiased;\n  &:before {\n    content: @fa-var-arrow-circle-o-left;\n  }\n  &.collapsed {\n    &:before {\n      content: @fa-var-arrow-circle-o-right;\n    }\n  }\n}\n.tertiary-collapse-toggle-pf {\n  display: none;\n  font-family: @icon-font-name-fa;\n  font-size: inherit;\n  opacity: 0;\n  pointer-events: none;\n  -webkit-font-smoothing: antialiased;\n  &:before {\n    content: @fa-var-arrow-circle-o-left;\n  }\n  &.collapsed {\n    &:before {\n      content: @fa-var-arrow-circle-o-right;\n    }\n  }\n}\n.nav-pf-vertical-collapsible-menus {\n  .secondary-collapse-toggle-pf {\n    display: inline-block;\n  }\n  .secondary-nav-item-pf.active {\n    .secondary-collapse-toggle-pf {\n      opacity: 1;\n      pointer-events: all;\n    }\n  }\n  .tertiary-collapse-toggle-pf {\n    display: inline-block;\n  }\n  .tertiary-nav-item-pf.active {\n    .tertiary-collapse-toggle-pf {\n      opacity: 1;\n      pointer-events: all;\n    }\n  }\n}\n.show-mobile-nav {\n  .secondary-collapse-toggle-pf {\n    display: inline-block;\n    opacity: 1;\n    pointer-events: all;\n    &:before {\n      content: @fa-var-arrow-circle-o-left;\n    }\n  }\n  .tertiary-collapse-toggle-pf {\n    display: inline-block;\n    opacity: 1;\n    pointer-events: all;\n    &:before {\n      content: @fa-var-arrow-circle-o-left;\n    }\n  }\n}\n.force-hide-secondary-nav-pf { // Used to temporarily hide sub-menus on an unpin event\n  .nav-pf-secondary-nav {\n    display: none !important;\n  }\n  .nav-pf-tertiary-nav {\n    display: none !important;\n  }\n}\n.nav-pf-vertical.transitions {\n  transition: width @nav-pf-menu-transition-period;\n  .nav-pf-secondary-nav {\n    transition: visibility @nav-pf-menu-transition-period, opacity @nav-pf-menu-transition-period linear;\n  }\n  .nav-pf-tertiary-nav {\n    transition: visibility @nav-pf-menu-transition-period, opacity @nav-pf-menu-transition-period linear;\n  }\n}\n","//\n// Wizard\n// --------------------------------------------------\n.wizard-pf {\n  padding: 10px;\n  margin: 0 auto;\n  max-height: 900px;\n  width: auto;\n  .modal-content {\n    min-height:100%;\n  }\n}\n\n// Wizard header\n// Top section of the wizard w/ title and dismiss\n\n.wizard-pf-body {\n    background:@color-pf-white;\n    padding: 0;\n    position: static;\n}\n/* styles the sidebard containing the sub-steps */\n.wizard-pf-sidebar {\n    background: @color-pf-black-100;\n    border-right: 1px solid @color-pf-black-300;\n    display:none;\n  @media (min-width: @screen-sm-min) {\n    display:inherit;\n    flex:0 0 auto;\n    overflow-x: hidden;\n    overflow-y: auto;\n    .list-group {\n      border-top: 0;\n      margin-bottom: 0;\n    }\n      .list-group-item {\n        background-color: transparent;\n        border-color: @color-pf-black-200;\n        padding: 0;\n        > a {\n          color: @color-pf-black;\n          cursor: pointer;\n          display: block;\n          font-size: 14px;\n          font-weight: 700;\n          height: 50px;\n          outline: 0;\n          padding-top: 11px;\n          padding-left: 20px;\n          position: relative;\n          white-space: nowrap;\n          width: 14em;\n          &:hover {\n            text-decoration: none;\n            background-color: @color-pf-black-200;\n          }\n          &:focus {\n            //corrects odd behavior when hover and focus are combined.\n            text-decoration: none;\n            span {\n              text-decoration: underline;\n            }\n          }\n        }\n        &.active {\n          background-color: @color-pf-black-200;\n\n          //override default behavior\n          &:hover {\n            border-color: @color-pf-black-200;\n          }\n          > a {\n            color: @color-pf-blue-300;\n            cursor: default;\n          }\n          // line to left side showing active substep\n          > a:before {\n            content: \" \";\n            background: @color-pf-blue-300;\n            height: 100%;\n            left: 0;\n            position: absolute;\n            top: 0;\n            width: 3px;\n          }\n          // caret to right showing active substep\n          > a:after {\n            color: @color-pf-blue-300;\n            content: \"\\f105\"; // right caret\n            display: block;\n            font-family: FontAwesome;\n            font-size: 24px;\n            font-weight: 500;\n            line-height: 30px;\n            padding-top: 10px;\n            position: absolute;\n            right: 23px;\n            top: 0;\n          }\n        }\n      }\n    }\n}\n.wizard-pf-substep-number {\n  display:inline-block;\n  margin-right: 5px;\n  vertical-align: middle;\n  width: 25px;\n}\n.wizard-pf-substep-title {\n  display:inline-block;\n  margin-right: 5px;\n  text-align: left;\n  vertical-align: middle;\n}\n/* styles the steps indicator across the top of the wizard */\n.wizard-pf-steps {\n  border-bottom: solid 1px @color-pf-black-300;\n    @media (min-width: @screen-sm-min) {\n      text-align: center;\n    }\n}\n\n.wizard-pf-steps-indicator {\n  background: @color-pf-black-200;\n  border-top: 1px solid @color-pf-black-300;\n  display: inline-block;\n  display: flex;\n  font-size: ceil((@font-size-base * 1.3333));\n  list-style: none;\n  margin-bottom: 0;\n  padding: 15px 0;\n    @media (min-width: @screen-sm-min) {\n      background: @color-pf-white;\n      height: 120px;\n      padding: 38px 0 0;\n      justify-content: space-around;\n    }\n\n  li {\n    counter-increment: section;\n    float:left; /* float for IE9 since it doesn't support flex. If items wrap, they overlap */\n    flex-grow: 1;\n    flex-basis: 0;\n    line-height: 15px;\n    margin: 0;\n    padding: 0;\n    position: relative;\n    text-align: center;\n    &:not(.active) {\n      display: none;\n      @media (min-width: @screen-sm-min) {\n        display: block;\n      }\n    }\n    a {\n        align-items: center;\n        display: flex;\n        flex-wrap:wrap;\n        font-weight: 700;\n        @media (min-width: @screen-sm-min) {\n          font-weight: normal;\n          justify-content: center;\n        }\n          .wizard-pf-step-title {\n            margin-left: 10px;\n            @media(min-width: @screen-sm-min) {\n              margin-left: 0;\n            }\n\n            &-substep {\n              font-weight: normal;\n              margin-left: 10px;\n              text-transform: capitalize;\n              &:before {\n                content:\"\\00BB\";\n                font-size: 20px;\n                margin-right: 10px;\n              }\n              &:not(.active) {\n                display: none;\n              }\n            }\n          }\n    }\n    /* draw the line between the circles */\n    @media (min-width: @screen-sm-min) {\n      .wizard-pf-step-title-substep {\n        display: none;\n      }\n      &:before {\n        background-color: @color-pf-black-400;\n        content: \"\";\n        height: 2px;\n        left: 0;\n        position: absolute;\n        right: 0;\n        top: 40px; // needed for IE9/10 calculate 50% of just the li, others calc 50% of the entire thing including the a:before\n        //otherwise, use top: calc(50% - 1px);\n      }\n      /* don't draw the line between the circles on the ends */\n      &:first-child:before {\n        left: 50%;\n        right: 0;\n      }\n      &:last-child:before {\n        left: 0;\n        right: 50%;\n      }\n      &:only-of-type:before {\n        background-color: transparent;\n      }\n    }\n    a {\n      color: @color-pf-black;\n      cursor: pointer;\n      font-size: 16px;\n      margin-left:1em;\n      margin-right:1em;\n      text-decoration: none;\n      &:hover {\n        .wizard-pf-step-number {\n          background-color: @color-pf-black-400;\n          border-color: @color-pf-black-400;\n          color: @color-pf-white;\n        }\n      }\n    }\n}\n  /* draw the step number in the circle */\n\n  .wizard-pf-step-number {\n    background-color: @color-pf-white;\n    border-radius: 50%;\n    border: solid 2px @color-pf-black-400;\n    color: @color-pf-black-400;\n    font-size: @font-size-base;\n    font-weight: 700;\n    height: 25px;\n    line-height: 22px;\n      @media (min-width: @screen-sm-min) {\n        left: ~\"calc(50% - 13px)\";\n        position: absolute;\n        top: 27px;\n      }\n    width: 25px;\n  }\n  .active .wizard-pf-step-number {\n    background-color: @color-pf-blue-300;\n    border-color: @color-pf-blue-300;\n    cursor: default;\n    color: @color-pf-white;\n  }\n\n  .viewed-pf .wizard-pf-step-number {\n    color: @color-pf-black;\n    background-color: @color-pf-white;\n    border-color: @color-pf-blue-300;\n  }\n\n}\n\n/* styles the main content portion of the wizard */\n.wizard-pf-main {\n  height: 100%;\n  padding:1em;\n  vertical-align: top;\n  width:100%;\n  @media (min-width: @screen-sm-min) {\n    overflow: auto;\n    padding:3em;\n    flex:1 1 auto;\n  }\n  .blank-slate-pf {\n    background-color: transparent;\n    border: none;\n    left: 0;\n    right: 0;\n  }\n}\n\n.wizard-pf-contents textarea {\n  resize: vertical;\n}\n\n/* styles the content of a review page */\n.wizard-pf-review-steps {\n  list-style: none;\n  .list-group, .list-group-item {\n    border: none;\n    margin-bottom: 0;\n  }\n  > ul {\n    > li {\n      float: left;\n      line-height: 15px;\n      margin: 0;\n      padding-top: 0;\n      position: relative;\n      width: 100%;\n      > a {\n        color: #030303;\n        cursor: pointer;\n        font-size: 16px;\n        padding-left: 30px;\n        padding-right: 5px;\n        text-decoration: none;\n        transition: 250ms;\n        &:before {\n          content: \"\\f107\";\n          display: block;\n          font-family: FontAwesome;\n          font-size: 24px;\n          font-weight: 500;\n          left: 20px;\n          position: absolute;\n          top: 0;\n        }\n        &.collapsed {\n          &:before {\n            content: \"\\f105\";\n          }\n        }\n      }\n    }\n  }\n}\n\n.wizard-pf-review-substeps {\n  padding-left: 22px;\n  > ul {\n    > li {\n      float: left;\n      line-height: 15px;\n      margin: 0;\n      position: relative;\n      width: 100%;\n      a {\n        color: #030303;\n        cursor: pointer;\n        font-size: 16px;\n        padding-left: 30px;\n        padding-right: 5px;\n        text-decoration: none;\n        transition: 250ms;\n        &:before {\n          content: \"\\f107\";\n          display: block;\n          font-family: FontAwesome;\n          font-size: 24px;\n          font-weight: 500;\n          left: 20px;\n          position: absolute;\n          top: 10px;\n        }\n        &.collapsed {\n          &:before {\n            content: \"\\f105\";\n          }\n        }\n      }\n    }\n  }\n}\n\n.wizard-pf-review-content {\n  padding-top: 10px;\n  padding-left: 40px;\n  .wizard-pf-review-item {\n    padding: 5px 0;\n    &.sub-item {\n      margin-left: 10px;\n    }\n    .wizard-pf-review-item-label {\n      font-weight: 700;\n      padding-right: 10px;\n    }\n    .wizard-pf-review-item-field {\n      font-weight: 700;\n      margin: 5px 0;\n      padding-right: 10px;\n      &:first-of-type {\n        margin-top: 0;\n      }\n      &:last-of-type {\n        margin-bottom: 0;\n      }\n      &.sub-field {\n        margin-left: 10px;\n      }\n    }\n  }\n}\n\n.wizard-pf-success-icon {\n  color: @color-pf-green-400;\n  font-size: (@font-size-base * 5.6);\n  line-height: (@font-size-base * 5.6);\n}\n\n/* styles the footer */\n.wizard-pf-footer {\n  background:@color-pf-white;\n  border-top: 1px solid @color-pf-black-300;\n  margin-top: 0;\n  padding-bottom: 17px;\n  .btn-cancel {\n    margin-right:25px;\n  }\n}\n\n.wizard-pf-row {\n    @media (min-width: @screen-sm-min) {\n      display: flex;\n      width:100%;\n      height: 900px;\n      max-height: 65vh;\n    }\n}\n\n// Scale up the modal\n@media (min-width: @screen-md-min) {\n  // increasing space around modal for larger viewports\n  .wizard-pf {\n    padding: 30px 0;\n    width: 900px;\n  }\n  // increasing width of sidebar for larger viewports\n  .wizard-pf-sidebar .list-group-item > a {\n    width: 18em;\n  }\n}\n\n//\n//\n// This is for the new wizard that is more robust on mobile.\n// --------------------------------------------------\n\n.wizard-pf-steps-alt, .wizard-pf-steps-alt ul {\n  list-style: none;\n  margin: 0;\n  padding: 0;\n}\n\n.wizard-pf-steps-alt {\n  margin-left: 15px;\n  margin-top: 15px;\n  background-image: linear-gradient(to right, transparent 11px, @color-pf-black-300 11px, @color-pf-black-300 13px, transparent 13px);\n  @media (min-width: @screen-sm-min) {\n    display:none;\n  }\n  &-indicator {\n    position: relative;\n    // caret to top showing active substep\n    &:after {\n      color: @color-pf-black-700;\n      content: \"\\f107\"; // top caret\n      display: block;\n      font-family: FontAwesome;\n      font-size: 24px;\n      font-weight: 500;\n      position: absolute;\n      right: 17px;\n      top: 50%;\n      transform:translateY(-50%);\n      @media (min-width: @screen-sm-min) {\n        display:none;\n      }\n    }\n    &.active {\n      &:after {\n        content: \"\\f106\";\n      }\n    }\n  }//indicator\n}//.wizard-pf-steps-alt\n\n.wizard-pf-step-alt {\n  margin-bottom: 10px;\n  a {\n    display:flex;\n    flex:1;\n    &:hover {\n      text-decoration: none;\n      .wizard-pf-step-alt-title {\n        color: @color-pf-blue-300;\n      }\n    }\n  }\n  ul {\n    margin-left: 11px;\n  }\n  .wizard-pf-step-alt-title {\n    margin-left: 5px;\n    align-self:center;\n  }\n  .wizard-pf-step-alt-number {\n    flex:0 0 auto;\n  }\n\n  &.active {\n    .wizard-pf-step-alt-number {\n      background-color: @color-pf-blue-300;\n      border-color: @color-pf-blue-300;\n      cursor: default;\n      color: @color-pf-white;\n    }\n    .wizard-pf-step-alt-title {\n      color: @color-pf-blue-300;\n    }\n    .wizard-pf-step-alt-substep:first-of-type {\n      margin-top: 2px; // gives proper spacing below number in circle active state\n    }\n\n\n  }\n  &.viewed {\n    .wizard-pf-step-alt-number {\n      color: @color-pf-black;\n      background-color: @color-pf-white;\n      border-color: @color-pf-blue-300;\n    }\n  }\n\n}//.wizard-pf-step-alt\n\n.wizard-pf-step-alt-number {\n  background-color: @color-pf-white;\n  border-radius: 50%;\n  border: solid 2px @color-pf-black-400;\n  color: @color-pf-black-400;\n  font-size: @font-size-base;\n  font-weight: 700;\n  height: 24px;\n  width: 24px;\n  display: inline-block;\n  text-align: center;\n}\n\n\n.wizard-pf-step-alt-title {\n  color: @color-pf-black;\n  font-weight: 700;\n  text-transform: capitalize;\n  display:inline-block;\n\n}//.wizard-pf-steps-alt-title\n\n.wizard-pf-step-alt-substep {\n    display:flex;\n  a {\n    padding:5px 0 5px 18px;\n    color: @color-pf-black-800;\n  }\n\n&:not(.disabled) {\n  &.active, &:hover {\n    background-color: @color-pf-black-200;\n    background-image: linear-gradient(to right, @color-pf-blue-300 2px, transparent 2px);\n    a {\n      color:@color-pf-blue-300;\n    }\n  }\n}\n  &.active {\n    a {\n      font-weight:700;\n    }\n  }\n  &.disabled {\n    cursor: not-allowed;\n    a {\n      pointer-events: none;\n    }\n  }\n}\n"]}
\ No newline at end of file
+{"version":3,"sources":["node_modules/bootstrap-slider/src/less/rules.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","node_modules/patternfly-bootstrap-combobox/less/combobox.less","node_modules/bootstrap-datepicker/less/datepicker3.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap-select/less/bootstrap-select.less","node_modules/bootstrap-switch/src/less/bootstrap3/bootstrap-switch.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap-touchspin/dist/jquery.bootstrap-touchspin.css","node_modules/c3/c3.css","node_modules/eonasdan-bootstrap-datetimepicker/src/less/_bootstrap-datetimepicker.less","node_modules/eonasdan-bootstrap-datetimepicker/src/less/bootstrap-datetimepicker-build.less","src/less/mixins.less","src/less/about-modal.less","src/less/application-launcher.less","src/less/blank-slate.less","src/less/bootstrap-combobox.less","src/less/variables.less","src/less/bootstrap-datepicker.less","src/less/bootstrap-mixin-overrides.less","src/less/bootstrap-select.less","src/less/bootstrap-slider.less","src/less/bootstrap-switch.less","src/less/bootstrap-touchspin.less","src/less/bootstrap-treeview.less","src/less/cards.less","src/less/card-view.less","src/less/charts.less","src/less/close.less","src/less/context-selector.less","src/less/datatables.less","node_modules/bootstrap/less/mixins/reset-filter.less","src/less/experimental-features.less","src/less/filter.less","src/less/footer.less","src/less/icons.less","src/less/infotip.less","src/less/layouts.less","src/less/links.less","src/less/list-pf.less","src/less/list-view.less","node_modules/bootstrap/less/mixins/clearfix.less","src/less/list-view-dnd.less","src/less/login.less","src/less/navbar.less","node_modules/font-awesome/less/variables.less","src/less/navbar-alt.less","src/less/navbar-vertical.less","src/less/nav-vertical-alt.less","src/less/notifications-drawer.less","src/less/search.less","src/less/sidebar.less","src/less/skip-to-content.less","src/less/spinner.less","src/less/syntax-highlighting.less","src/less/table-view.less","src/less/time-picker.less","src/less/toast.less","src/less/toolbar.less","src/less/vertical-nav.less","src/less/wizard.less"],"names":[],"mappings":"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","sourcesContent":[".slider {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n\tposition: relative;\n\t&.slider-horizontal {\n\t\twidth: @slider-horizontal-width;\n\t\theight: @slider-line-height;\n\t\t.slider-track {\n\t\t\theight: (@slider-line-height/2);\n\t\t\twidth: 100%;\n\t\t\tmargin-top: (-@slider-line-height/4);\n\t\t\ttop: 50%;\n\t\t\tleft: 0;\n\t\t}\n\t\t.slider-selection, .slider-track-low, .slider-track-high {\n\t\t\theight: 100%;\n\t\t\ttop: 0;\n\t\t\tbottom: 0;\n\t\t}\n\t\t.slider-tick,\n\t\t.slider-handle {\n\t\t\tmargin-left: (-@slider-line-height/2);\n\t\t\t&.triangle {\n\t\t\t\tposition: relative;\n\t\t\t\ttop: 50%;\n\t\t\t\ttransform: translateY(-50%);\n\t\t\t\tborder-width: 0 (@slider-line-height/2) (@slider-line-height/2) (@slider-line-height/2);\n\t\t\t\twidth: 0;\n\t\t\t\theight: 0;\n\t\t\t\tborder-bottom-color: @slider-primary-bottom;\n\t\t\t\tmargin-top: 0;\n\t\t\t}\n\t\t}\n\t\t.slider-tick-container {\n\t\t\twhite-space: nowrap;\n\t\t\tposition: absolute;\n    \ttop: 0;\n    \tleft: 0;\n    \twidth: 100%;\n\t\t}\n\t\t.slider-tick-label-container {\n\t\t\twhite-space: nowrap;\n\t\t\tmargin-top: @slider-line-height;\n\n\t\t\t.slider-tick-label {\n\t\t\t\tpadding-top: @slider-line-height * .2;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\ttext-align: center;\n\t\t\t}\n\t\t}\n\t\t&.slider-rtl {\n\t\t\t.slider-track {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t\t.slider-tick,\n\t\t\t.slider-handle {\n\t\t\t\tmargin-left: initial;\n\t\t\t\tmargin-right: (-@slider-line-height/2);\n\t\t\t}\n\t\t\t.slider-tick-container {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t}\n\t}\n\t&.slider-vertical {\n\t\theight: @slider-vertical-height;\n\t\twidth: @slider-line-height;\n\t\t.slider-track {\n\t\t\twidth: (@slider-line-height/2);\n\t\t\theight: 100%;\n\t\t\tleft: 25%;\n\t\t\ttop: 0;\n\t\t}\n\t\t.slider-selection {\n\t\t\twidth: 100%;\n\t\t\tleft: 0;\n\t\t\ttop: 0;\n\t\t\tbottom: 0;\n\t\t}\n\t\t.slider-track-low, .slider-track-high {\n\t\t\twidth: 100%;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t}\n\t\t.slider-tick,\n\t\t.slider-handle {\n\t\t\tmargin-top: (-@slider-line-height/2);\n\t\t\t&.triangle {\n\t\t\t\tborder-width: (@slider-line-height/2) 0 (@slider-line-height/2) (@slider-line-height/2);\n\t\t\t\twidth: 1px;\n\t\t\t\theight: 1px;\n\t\t\t\tborder-left-color: @slider-primary-bottom;\n\t\t\t\tborder-right-color: @slider-primary-bottom;\n\t\t\t\tmargin-left: 0;\n\t\t\t\tmargin-right: 0;\n\t\t\t}\n\t\t}\n\t\t.slider-tick-label-container {\n\t\t\twhite-space: nowrap;\n\n\t\t\t.slider-tick-label {\n\t\t\t\tpadding-left: @slider-line-height * .2;\n\t\t\t}\n\t\t}\n\n\t\t&.slider-rtl {\n\t\t\t.slider-track {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 25%;\n\t\t\t}\n\t\t\t.slider-selection {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t\t.slider-tick,\n\t\t\t.slider-handle {\n\t\t\t\t&.triangle {\n\t\t\t\t\tborder-width: (@slider-line-height/2) (@slider-line-height/2) (@slider-line-height/2) 0;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.slider-tick-label-container {\n\t\t\t\t.slider-tick-label {\n\t\t\t\t\tpadding-left: initial;\n\t\t\t\t\tpadding-right: @slider-line-height * .2;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t&.slider-disabled {\n\t\t.slider-handle {\n\t\t\t#gradient > .vertical(@slider-gray-2, @slider-gray-1);\n\t\t}\n\t\t.slider-track {\n\t\t\t#gradient > .vertical(@slider-gray-3, @slider-gray-4);\n\t\t\tcursor: not-allowed;\n\t\t}\n\t}\n\tinput {\n\t\tdisplay: none;\n\t}\n\t.tooltip {\n\t\t&.top {\n\t\t\tmargin-top: -36px;\n\t\t}\n\t}\n\t.tooltip-inner {\n\t\twhite-space: nowrap;\n\t\tmax-width: none;\n\t}\n\t.hide {\n\t\tdisplay: none;\n\t}\n}\n.slider-track {\n\tposition: absolute;\n\tcursor: pointer;\n\t#gradient > .vertical(@slider-gray-5, @slider-gray-6);\n\t.box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n\tborder-radius: @border-radius-base;\n}\n.slider-selection {\n\tposition: absolute;\n\t#gradient > .vertical(@slider-gray-6, @slider-gray-5);\n\t.box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n\t.box-sizing(border-box);\n\tborder-radius: @border-radius-base;\n}\n.slider-selection.tick-slider-selection {\n\t#gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n}\n.slider-track-low, .slider-track-high {\n\tposition: absolute;\n\tbackground: transparent;\n\t.box-sizing(border-box);\n\tborder-radius: @border-radius-base;\n}\n.slider-handle {\n\tposition: absolute;\n\ttop: 0;\n\twidth: @slider-line-height;\n\theight: @slider-line-height;\n\tbackground-color: @slider-primary;\n\t#gradient > .vertical(@slider-primary-top, @slider-primary-bottom);\n\tfilter: none;\n\t.box-shadow(~\"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)\");\n\tborder: 0px solid transparent;\n\t&.round {\n\t\tborder-radius: 50%;\n\t}\n\t&.triangle {\n\t\tbackground: transparent none;\n\t}\n\t&.custom {\n\t\tbackground: transparent none;\n\t\t&::before{\n\t\t\tline-height: @slider-line-height;\n\t\t\tfont-size: 20px;\n\t\t\tcontent: '\\2605'; //unicode star character\n\t\t\tcolor: @slider-unicode-color;\n\t\t}\n\t}\n}\n.slider-tick {\n\tposition: absolute;\n\twidth: @slider-line-height;\n\theight: @slider-line-height;\n\t#gradient.vertical(@slider-gray-6, @slider-gray-5);\n\t.box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n\t.box-sizing(border-box);\n\tfilter: none;\n\topacity: 0.8;\n\tborder: 0px solid transparent;\n\t&.round {\n\t\tborder-radius: 50%;\n\t}\n\t&.triangle {\n\t\tbackground: transparent none;\n\t}\n\t&.custom {\n\t\tbackground: transparent none;\n\t\t&::before{\n\t\t\tline-height: @slider-line-height;\n\t\t\tfont-size: 20px;\n\t\t\tcontent: '\\2605'; //unicode star character\n\t\t\tcolor: @slider-unicode-color;\n\t\t}\n\t}\n\t&.in-selection {\n\t\t#gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n\t\topacity: 1;\n\t}\n}\n","// Gradients\n\n#gradient {\n\n  // Horizontal gradient, from left to right\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  // Vertical gradient, from top to bottom\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12\n    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n    background-repeat: repeat-x;\n    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n  }\n  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .radial(@inner-color: #555; @outer-color: #333) {\n    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n    background-image: radial-gradient(circle, @inner-color, @outer-color);\n    background-repeat: no-repeat;\n  }\n  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n  }\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n  -webkit-animation: @animation;\n       -o-animation: @animation;\n          animation: @animation;\n}\n.animation-name(@name) {\n  -webkit-animation-name: @name;\n          animation-name: @name;\n}\n.animation-duration(@duration) {\n  -webkit-animation-duration: @duration;\n          animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n  -webkit-animation-timing-function: @timing-function;\n          animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n  -webkit-animation-delay: @delay;\n          animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n  -webkit-animation-iteration-count: @iteration-count;\n          animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n  -webkit-animation-direction: @direction;\n          animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n  -webkit-animation-fill-mode: @fill-mode;\n          animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n  -webkit-backface-visibility: @visibility;\n     -moz-backface-visibility: @visibility;\n          backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n          box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n  -webkit-box-sizing: @boxmodel;\n     -moz-box-sizing: @boxmodel;\n          box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n  -webkit-column-count: @column-count;\n     -moz-column-count: @column-count;\n          column-count: @column-count;\n  -webkit-column-gap: @column-gap;\n     -moz-column-gap: @column-gap;\n          column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n  word-wrap: break-word;\n  -webkit-hyphens: @mode;\n     -moz-hyphens: @mode;\n      -ms-hyphens: @mode; // IE10+\n       -o-hyphens: @mode;\n          hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  // Firefox\n  &::-moz-placeholder {\n    color: @color;\n    opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n  }\n  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n  -webkit-transform: scale(@ratio);\n      -ms-transform: scale(@ratio); // IE9 only\n       -o-transform: scale(@ratio);\n          transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n  -webkit-transform: scale(@ratioX, @ratioY);\n      -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n       -o-transform: scale(@ratioX, @ratioY);\n          transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n  -webkit-transform: scaleX(@ratio);\n      -ms-transform: scaleX(@ratio); // IE9 only\n       -o-transform: scaleX(@ratio);\n          transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n  -webkit-transform: scaleY(@ratio);\n      -ms-transform: scaleY(@ratio); // IE9 only\n       -o-transform: scaleY(@ratio);\n          transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n  -webkit-transform: skewX(@x) skewY(@y);\n      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n       -o-transform: skewX(@x) skewY(@y);\n          transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n  -webkit-transform: translate(@x, @y);\n      -ms-transform: translate(@x, @y); // IE9 only\n       -o-transform: translate(@x, @y);\n          transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n  -webkit-transform: translate3d(@x, @y, @z);\n          transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees); // IE9 only\n       -o-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n  -webkit-transform: rotateX(@degrees);\n      -ms-transform: rotateX(@degrees); // IE9 only\n       -o-transform: rotateX(@degrees);\n          transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n  -webkit-transform: rotateY(@degrees);\n      -ms-transform: rotateY(@degrees); // IE9 only\n       -o-transform: rotateY(@degrees);\n          transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n  -webkit-perspective: @perspective;\n     -moz-perspective: @perspective;\n          perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n  -webkit-perspective-origin: @perspective;\n     -moz-perspective-origin: @perspective;\n          perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n  -webkit-transform-origin: @origin;\n     -moz-transform-origin: @origin;\n      -ms-transform-origin: @origin; // IE9 only\n          transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n  -webkit-transition: @transition;\n       -o-transition: @transition;\n          transition: @transition;\n}\n.transition-property(@transition-property) {\n  -webkit-transition-property: @transition-property;\n          transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n  -webkit-transition-delay: @transition-delay;\n          transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n  -webkit-transition-duration: @transition-duration;\n          transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n  -webkit-transition-timing-function: @timing-function;\n          transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n  -webkit-transition: -webkit-transform @transition;\n     -moz-transition: -moz-transform @transition;\n       -o-transition: -o-transform @transition;\n          transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n  -webkit-user-select: @select;\n     -moz-user-select: @select;\n      -ms-user-select: @select; // IE10+\n          user-select: @select;\n}\n","@media (min-width: 768px) {\n  .form-search,\n  .form-inline {\n    .combobox-container {\n      display: inline-block;\n      margin-bottom: 0;\n      vertical-align: top;\n      .input-group-addon {\n        width: auto;\n      }\n    }\n  }\n}\n\n.combobox-selected .caret {\n  display: none;\n}\n\n/* :not doesn't work in IE8 */\n.combobox-container:not(.combobox-selected) .glyphicon-remove {\n  display: none;\n}\n\n.typeahead-long {\n  max-height: 300px;\n  overflow-y: auto;\n}\n\n.control-group.error .combobox-container{\n  .add-on {\n    color: #B94A48;\n    border-color: #B94A48;\n  }\n  .caret {\n    border-top-color: #B94A48;\n  }\n}\n\n.control-group.warning .combobox-container {\n  .add-on {\n    color: #C09853;\n    border-color: #C09853;\n  }\n  .caret {\n    border-top-color: #C09853;\n  }\n}\n\n.control-group.success .combobox-container{\n  .add-on {\n    color: #468847;\n    border-color: #468847;\n  }\n  .caret {\n    border-top-color: #468847;\n  }\n}\n",".datepicker {\n\tborder-radius: @border-radius-base;\n\t&-inline {\n\t\twidth: 220px;\n\t}\n\tdirection: ltr;\n\t&-rtl {\n\t\tdirection: rtl;\n\t\t&.dropdown-menu { left: auto; }\n\t\ttable tr td span {\n\t\t\tfloat: right;\n\t\t}\n\t}\n\t&-dropdown {\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tpadding: 4px;\n\t\t&:before {\n\t\t\tcontent: '';\n\t\t\tdisplay: inline-block;\n\t\t\tborder-left:   7px solid transparent;\n\t\t\tborder-right:  7px solid transparent;\n\t\t\tborder-bottom: 7px solid @dropdown-border;\n\t\t\tborder-top:    0;\n\t\t\tborder-bottom-color: rgba(0,0,0,.2);\n\t\t\tposition: absolute;\n\t\t}\n\t\t&:after {\n\t\t\tcontent: '';\n\t\t\tdisplay: inline-block;\n\t\t\tborder-left:   6px solid transparent;\n\t\t\tborder-right:  6px solid transparent;\n\t\t\tborder-bottom: 6px solid @dropdown-bg;\n\t\t\tborder-top:    0;\n\t\t\tposition: absolute;\n\t\t}\n\t\t&.datepicker-orient-left:before   { left: 6px; }\n\t\t&.datepicker-orient-left:after    { left: 7px; }\n\t\t&.datepicker-orient-right:before  { right: 6px; }\n\t\t&.datepicker-orient-right:after   { right: 7px; }\n\t\t&.datepicker-orient-bottom:before { top: -7px; }\n\t\t&.datepicker-orient-bottom:after  { top: -6px; }\n\t\t&.datepicker-orient-top:before {\n\t\t\tbottom: -7px;\n\t\t\tborder-bottom: 0;\n\t\t\tborder-top:    7px solid @dropdown-border;\n\t\t}\n\t\t&.datepicker-orient-top:after {\n\t\t\tbottom: -6px;\n\t\t\tborder-bottom: 0;\n\t\t\tborder-top:    6px solid @dropdown-bg;\n\t\t}\n\t}\n\ttable {\n\t\tmargin: 0;\n\t\t-webkit-touch-callout: none;\n\t\t-webkit-user-select: none;\n\t\t-khtml-user-select: none;\n\t\t-moz-user-select: none;\n\t\t-ms-user-select: none;\n\t\tuser-select: none;\n\t\ttr {\n\t\t\ttd, th {\n\t\t\t\ttext-align: center;\n\t\t\t\twidth: 30px;\n\t\t\t\theight: 30px;\n\t\t\t\tborder-radius: 4px;\n\t\t\t\tborder: none;\n\t\t\t}\n\t\t}\n\t}\n\t// Inline display inside a table presents some problems with\n\t// border and background colors.\n\t.table-striped & table tr {\n\t\ttd, th {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\ttable tr td {\n\t\t&.old,\n\t\t&.new {\n\t\t\tcolor: @btn-link-disabled-color;\n\t\t}\n\t\t&.day:hover,\n\t\t&.focused {\n\t\t\tbackground: @gray-lighter;\n\t\t\tcursor: pointer;\n\t\t}\n\t\t&.disabled,\n\t\t&.disabled:hover {\n\t\t\tbackground: none;\n\t\t\tcolor: @btn-link-disabled-color;\n\t\t\tcursor: default;\n\t\t}\n\t\t&.highlighted {\n\t\t\t@highlighted-bg: @state-info-bg;\n\t\t\t.button-variant(#000, @highlighted-bg, darken(@highlighted-bg, 20%));\n\t\t\tborder-radius: 0;\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@highlighted-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @highlighted-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.today {\n\t\t\t@today-bg: lighten(orange, 30%);\n\t\t\t.button-variant(#000, @today-bg, darken(@today-bg, 20%));\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@today-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @today-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range {\n\t\t\t@range-bg: @gray-lighter;\n\t\t\t.button-variant(#000, @range-bg, darken(@range-bg, 20%));\n\t\t\tborder-radius: 0;\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@range-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range.highlighted {\n\t\t\t@range-highlighted-bg: mix(@state-info-bg, @gray-lighter, 50%);\n\t\t\t.button-variant(#000, @range-highlighted-bg, darken(@range-highlighted-bg, 20%));\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@range-highlighted-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-highlighted-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range.today {\n\t\t\t@range-today-bg: mix(orange, @gray-lighter, 50%);\n\t\t\t.button-variant(#000, @range-today-bg, darken(@range-today-bg, 20%));\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-today-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.selected,\n\t\t&.selected.highlighted {\n\t\t\t.button-variant(#fff, @gray-light, @gray);\n\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t}\n\t\t&.active,\n\t\t&.active.highlighted {\n\t\t\t.button-variant(@btn-primary-color, @btn-primary-bg, @btn-primary-border);\n\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t}\n\t\tspan {\n\t\t\tdisplay: block;\n\t\t\twidth: 23%;\n\t\t\theight: 54px;\n\t\t\tline-height: 54px;\n\t\t\tfloat: left;\n\t\t\tmargin: 1%;\n\t\t\tcursor: pointer;\n\t\t\tborder-radius: 4px;\n\t\t\t&:hover,\n\t\t\t&.focused {\n\t\t\t\tbackground: @gray-lighter;\n\t\t\t}\n\t\t\t&.disabled,\n\t\t\t&.disabled:hover {\n\t\t\t\tbackground: none;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t\tcursor: default;\n\t\t\t}\n\t\t\t&.active,\n\t\t\t&.active:hover,\n\t\t\t&.active.disabled,\n\t\t\t&.active.disabled:hover {\n\t\t\t\t.button-variant(@btn-primary-color, @btn-primary-bg, @btn-primary-border);\n\t\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t\t}\n\t\t\t&.old,\n\t\t\t&.new {\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t}\n\n\t.datepicker-switch {\n\t\twidth: 145px;\n\t}\n\n\t.datepicker-switch,\n\t.prev,\n\t.next,\n\ttfoot tr th {\n\t\tcursor: pointer;\n\t\t&:hover {\n\t\t\tbackground: @gray-lighter;\n\t\t}\n\t}\n\n\t.prev, .next {\n\t\t&.disabled {\n\t\t\tvisibility: hidden;\n\t\t}\n\t}\n\n\t// Basic styling for calendar-week cells\n\t.cw {\n\t\tfont-size: 10px;\n\t\twidth: 12px;\n\t\tpadding: 0 2px 0 5px;\n\t\tvertical-align: middle;\n\t}\n}\n.input-group.date .input-group-addon {\n\tcursor: pointer;\n}\n.input-daterange {\n\twidth: 100%;\n\tinput {\n\t\ttext-align: center;\n\t}\n\tinput:first-child {\n\t\tborder-radius: 3px 0 0 3px;\n\t}\n\tinput:last-child {\n\t\tborder-radius: 0 3px 3px 0;\n\t}\n\t.input-group-addon {\n\t\twidth: auto;\n\t\tmin-width: 16px;\n\t\tpadding: 4px 5px;\n\t\tline-height: @line-height-base;\n\t\ttext-shadow: 0 1px 0 #fff;\n\t\tborder-width: 1px 0;\n\t\tmargin-left: -5px;\n\t\tmargin-right: -5px;\n\t}\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n  color: @color;\n  background-color: @background;\n  border-color: @border;\n\n  &:focus,\n  &.focus {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 25%);\n  }\n  &:hover {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n\n    &:hover,\n    &:focus,\n    &.focus {\n      color: @color;\n      background-color: darken(@background, 17%);\n          border-color: darken(@border, 25%);\n    }\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    background-image: none;\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: @background;\n          border-color: @border;\n    }\n  }\n\n  .badge {\n    color: @background;\n    background-color: @color;\n  }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n}\n","@import \"variables\";\n\n// Mixins\n.cursor-disabled() {\n  cursor: not-allowed;\n}\n\n// Rules\nselect.bs-select-hidden,\nselect.selectpicker {\n  display: none !important;\n}\n\n.bootstrap-select {\n  width: 220px \\0; /*IE9 and below*/\n\n  // The selectpicker button\n  > .dropdown-toggle {\n    width: 100%;\n    padding-right: 25px;\n    z-index: 1;\n\n    &.bs-placeholder,\n    &.bs-placeholder:hover,\n    &.bs-placeholder:focus,\n    &.bs-placeholder:active { color: @input-color-placeholder; }\n  }\n\n  > select {\n    position: absolute !important;\n    bottom: 0;\n    left: 50%;\n    display: block !important;\n    width: 0.5px !important;\n    height: 100% !important;\n    padding: 0 !important;\n    opacity: 0 !important;\n    border: none;\n\n    &.mobile-device {\n      top: 0;\n      left: 0;\n      display: block !important;\n      width: 100% !important;\n      z-index: 2;\n    }\n  }\n\n  // Error display\n  .has-error & .dropdown-toggle,\n  .error & .dropdown-toggle {\n    border-color: @color-red-error;\n  }\n\n  &.fit-width {\n    width: auto !important;\n  }\n\n  &:not([class*=\"col-\"]):not([class*=\"form-control\"]):not(.input-group-btn) {\n    width: @width-default;\n  }\n\n  .dropdown-toggle:focus {\n    outline: thin dotted #333333 !important;\n    outline: 5px auto -webkit-focus-ring-color !important;\n    outline-offset: -2px;\n  }\n}\n\n.bootstrap-select.form-control {\n  margin-bottom: 0;\n  padding: 0;\n  border: none;\n\n  &:not([class*=\"col-\"]) {\n    width: 100%;\n  }\n\n  &.input-group-btn {\n    z-index: auto;\n\n    &:not(:first-child):not(:last-child) {\n      > .btn {\n        border-radius: 0;\n      }\n    }\n  }\n}\n\n// The selectpicker components\n.bootstrap-select.btn-group {\n  &:not(.input-group-btn),\n  &[class*=\"col-\"] {\n    float: none;\n    display: inline-block;\n    margin-left: 0;\n  }\n\n  // Forces the pull to the right, if necessary\n  &,\n  &[class*=\"col-\"],\n  .row &[class*=\"col-\"] {\n    &.dropdown-menu-right {\n      float: right;\n    }\n  }\n\n  .form-inline &,\n  .form-horizontal &,\n  .form-group & {\n    margin-bottom: 0;\n  }\n\n  .form-group-lg &.form-control,\n  .form-group-sm &.form-control {\n    padding: 0;\n\n    .dropdown-toggle {\n      height: 100%;\n      font-size: inherit;\n      line-height: inherit;\n      border-radius: inherit;\n    }\n  }\n\n  // Set the width of the live search (and any other form control within an inline form)\n  // see https://github.com/silviomoreto/bootstrap-select/issues/685\n  .form-inline & .form-control {\n    width: 100%;\n  }\n\n  &.disabled,\n  > .disabled {\n    .cursor-disabled();\n\n    &:focus {\n      outline: none !important;\n    }\n  }\n\n  &.bs-container {\n    position: absolute;\n    height: 0 !important;\n    padding: 0 !important;\n    \n    .dropdown-menu {\n      z-index: @zindex-select-dropdown;\n    }\n  }\n\n  // The selectpicker button\n  .dropdown-toggle {\n    .filter-option {\n      display: inline-block;\n      overflow: hidden;\n      width: 100%;\n      text-align: left;\n    }\n\n    .caret {\n      position: absolute;\n      top: 50%;\n      right: 12px;\n      margin-top: -2px;\n      vertical-align: middle;\n    }\n  }\n\n  &[class*=\"col-\"] .dropdown-toggle {\n    width: 100%;\n  }\n\n  // The selectpicker dropdown\n  .dropdown-menu {\n    min-width: 100%;\n    box-sizing: border-box;\n\n    &.inner {\n      position: static;\n      float: none;\n      border: 0;\n      padding: 0;\n      margin: 0;\n      border-radius: 0;\n      box-shadow: none;\n    }\n\n    li {\n      position: relative;\n\n      &.active small {\n        color: #fff;\n      }\n\n      &.disabled a {\n        .cursor-disabled();\n      }\n\n      a {\n        cursor: pointer;\n        user-select: none;\n\n        &.opt {\n          position: relative;\n          padding-left: 2.25em;\n        }\n\n        span.check-mark {\n          display: none;\n        }\n\n        span.text {\n          display: inline-block;\n        }\n      }\n\n      small {\n        padding-left: 0.5em;\n      }\n    }\n\n    .notify {\n      position: absolute;\n      bottom: 5px;\n      width: 96%;\n      margin: 0 2%;\n      min-height: 26px;\n      padding: 3px 5px;\n      background: rgb(245, 245, 245);\n      border: 1px solid rgb(227, 227, 227);\n      box-shadow: inset 0 1px 1px fade(rgb(0, 0, 0), 5%);\n      pointer-events: none;\n      opacity: 0.9;\n      box-sizing: border-box;\n    }\n  }\n\n  .no-results {\n    padding: 3px;\n    background: #f5f5f5;\n    margin: 0 5px;\n    white-space: nowrap;\n  }\n\n  &.fit-width .dropdown-toggle {\n    .filter-option {\n      position: static;\n    }\n\n    .caret {\n      position: static;\n      top: auto;\n      margin-top: -1px;\n    }\n  }\n\n  &.show-tick .dropdown-menu li {\n    &.selected a span.check-mark {\n      position: absolute;\n      display: inline-block;\n      right: 15px;\n      margin-top: 5px;\n    }\n\n    a span.text {\n      margin-right: 34px;\n    }\n  }\n}\n\n.bootstrap-select.show-menu-arrow {\n  &.open > .dropdown-toggle {\n    z-index: (@zindex-select-dropdown + 1);\n  }\n\n  .dropdown-toggle {\n    &:before {\n      content: '';\n      border-left: 7px solid transparent;\n      border-right: 7px solid transparent;\n      border-bottom: 7px solid @color-grey-arrow;\n      position: absolute;\n      bottom: -4px;\n      left: 9px;\n      display: none;\n    }\n\n    &:after {\n      content: '';\n      border-left: 6px solid transparent;\n      border-right: 6px solid transparent;\n      border-bottom: 6px solid white;\n      position: absolute;\n      bottom: -4px;\n      left: 10px;\n      display: none;\n    }\n  }\n\n  &.dropup .dropdown-toggle {\n    &:before {\n      bottom: auto;\n      top: -3px;\n      border-top: 7px solid @color-grey-arrow;\n      border-bottom: 0;\n    }\n\n    &:after {\n      bottom: auto;\n      top: -3px;\n      border-top: 6px solid white;\n      border-bottom: 0;\n    }\n  }\n\n  &.pull-right .dropdown-toggle {\n    &:before {\n      right: 12px;\n      left: auto;\n    }\n\n    &:after {\n      right: 13px;\n      left: auto;\n    }\n  }\n\n  &.open > .dropdown-toggle {\n    &:before,\n    &:after {\n      display: block;\n    }\n  }\n}\n\n.bs-searchbox,\n.bs-actionsbox,\n.bs-donebutton {\n  padding: 4px 8px;\n}\n\n.bs-actionsbox {\n  width: 100%;\n  box-sizing: border-box;\n\n  & .btn-group button {\n    width: 50%;\n  }\n}\n\n.bs-donebutton {\n  float: left;\n  width: 100%;\n  box-sizing: border-box;\n\n  & .btn-group button {\n    width: 100%;\n  }\n}\n\n.bs-searchbox {\n  & + .bs-actionsbox {\n    padding: 0 8px 4px;\n  }\n\n  & .form-control {\n    margin-bottom: 0;\n    width: 100%;\n    float: none;\n  }\n}\n","@bootstrap-switch-base: bootstrap-switch;\n\n.@{bootstrap-switch-base} {\n  display: inline-block;\n  direction: ltr;\n  cursor: pointer;\n  border-radius: @border-radius-base;\n  border: 1px solid;\n  border-color: @btn-default-border;\n  position: relative;\n  text-align: left;\n  overflow: hidden;\n  line-height: 8px;\n  z-index: 0;\n  .user-select(none);\n  vertical-align: middle;\n  .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n  .@{bootstrap-switch-base}-container {\n    display: inline-block;\n    top: 0;\n    border-radius: @border-radius-base;\n    .translate3d(0, 0, 0);\n  }\n\n  .@{bootstrap-switch-base}-handle-on,\n  .@{bootstrap-switch-base}-handle-off,\n  .@{bootstrap-switch-base}-label {\n    .box-sizing(border-box);\n    cursor: pointer;\n    display: table-cell;\n    vertical-align: middle;\n    padding: @padding-base-vertical @padding-base-horizontal;\n    font-size: @font-size-base;\n    line-height: @line-height-computed;\n  }\n\n  .@{bootstrap-switch-base}-handle-on,\n  .@{bootstrap-switch-base}-handle-off {\n    text-align: center;\n    z-index: 1;\n\n    &.@{bootstrap-switch-base}-primary {\n      color: #fff;\n      background: @btn-primary-bg;\n    }\n\n    &.@{bootstrap-switch-base}-info {\n      color: #fff;\n      background: @btn-info-bg;\n    }\n\n    &.@{bootstrap-switch-base}-success {\n      color: #fff;\n      background: @btn-success-bg;\n    }\n\n    &.@{bootstrap-switch-base}-warning {\n      background: @btn-warning-bg;\n      color: #fff;\n    }\n\n    &.@{bootstrap-switch-base}-danger {\n      color: #fff;\n      background: @btn-danger-bg;\n    }\n\n    &.@{bootstrap-switch-base}-default {\n      color: #000;\n      background: @gray-lighter;\n    }\n  }\n\n  .@{bootstrap-switch-base}-label {\n    text-align: center;\n    margin-top: -1px;\n    margin-bottom: -1px;\n    z-index: 100;\n    color: @btn-default-color;\n    background: @btn-default-bg;\n  }\n\n  span::before {\n    content: \"\\200b\";\n  }\n\n  .@{bootstrap-switch-base}-handle-on {\n    .border-left-radius(@border-radius-base - 1);\n  }\n\n  .@{bootstrap-switch-base}-handle-off {\n    .border-right-radius(@border-radius-base - 1);\n  }\n\n  input[type='radio'],\n  input[type='checkbox'] {\n    position: absolute !important;\n    top: 0;\n    left: 0;\n    margin: 0;\n    z-index: -1;\n    .opacity(0);\n    visibility: hidden;\n  }\n\n  &.@{bootstrap-switch-base}-mini {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-xs-vertical @padding-xs-horizontal;\n      font-size: @font-size-small;\n      line-height: @line-height-small;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-small {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-small-vertical @padding-small-horizontal;\n      font-size: @font-size-small;\n      line-height: @line-height-small;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-large {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-base-vertical @padding-large-horizontal;\n      font-size: @font-size-large;\n      line-height: @line-height-large;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-disabled,\n  &.@{bootstrap-switch-base}-readonly,\n  &.@{bootstrap-switch-base}-indeterminate {\n    cursor: default !important;\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      .opacity(.5);\n      cursor: default !important;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-animate {\n\n    .@{bootstrap-switch-base}-container {\n      .transition(margin-left .5s);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-inverse {\n\n    .@{bootstrap-switch-base}-handle-on {\n      .border-left-radius(0);\n      .border-right-radius(@border-radius-base - 1);\n    }\n\n    .@{bootstrap-switch-base}-handle-off {\n      .border-right-radius(0);\n      .border-left-radius(@border-radius-base - 1);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-focused {\n    @color-rgba: rgba(red(@input-border-focus), green(@input-border-focus), blue(@input-border-focus), .6);\n    border-color: @input-border-focus;\n    outline: 0;\n    .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n  }\n\n  &.@{bootstrap-switch-base}-on,\n  &.@{bootstrap-switch-base}-inverse.@{bootstrap-switch-base}-off {\n\n    .@{bootstrap-switch-base}-label {\n      .border-right-radius(@border-radius-base - 1);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-off,\n  &.@{bootstrap-switch-base}-inverse.@{bootstrap-switch-base}-on {\n\n\n    .@{bootstrap-switch-base}-label {\n      .border-left-radius(@border-radius-base - 1);\n    }\n  }\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n  border-top-right-radius: @radius;\n   border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n  border-bottom-right-radius: @radius;\n     border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n  border-bottom-right-radius: @radius;\n   border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n  border-bottom-left-radius: @radius;\n     border-top-left-radius: @radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n  opacity: @opacity;\n  // IE8 filter\n  @opacity-ie: (@opacity * 100);\n  filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","/*\n *  Bootstrap TouchSpin - v3.1.1\n *  A mobile and touch friendly input spinner component for Bootstrap 3.\n *  http://www.virtuosoft.eu/code/bootstrap-touchspin/\n *\n *  Made by István Ujj-Mészáros\n *  Under Apache License v2.0 License\n */\n\n.bootstrap-touchspin .input-group-btn-vertical {\n  position: relative;\n  white-space: nowrap;\n  width: 1%;\n  vertical-align: middle;\n  display: table-cell;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical > .btn {\n  display: block;\n  float: none;\n  width: 100%;\n  max-width: 100%;\n  padding: 8px 10px;\n  margin-left: -1px;\n  position: relative;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {\n  border-radius: 0;\n  border-top-right-radius: 4px;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {\n  margin-top: -2px;\n  border-radius: 0;\n  border-bottom-right-radius: 4px;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical i {\n  position: absolute;\n  top: 3px;\n  left: 5px;\n  font-size: 9px;\n  font-weight: normal;\n}\n","/*-- Chart --*/\n.c3 svg {\n  font: 10px sans-serif;\n  -webkit-tap-highlight-color: transparent; }\n\n.c3 path, .c3 line {\n  fill: none;\n  stroke: #000; }\n\n.c3 text {\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  user-select: none; }\n\n.c3-legend-item-tile,\n.c3-xgrid-focus,\n.c3-ygrid,\n.c3-event-rect,\n.c3-bars path {\n  shape-rendering: crispEdges; }\n\n.c3-chart-arc path {\n  stroke: #fff; }\n\n.c3-chart-arc text {\n  fill: #fff;\n  font-size: 13px; }\n\n/*-- Axis --*/\n/*-- Grid --*/\n.c3-grid line {\n  stroke: #aaa; }\n\n.c3-grid text {\n  fill: #aaa; }\n\n.c3-xgrid, .c3-ygrid {\n  stroke-dasharray: 3 3; }\n\n/*-- Text on Chart --*/\n.c3-text.c3-empty {\n  fill: #808080;\n  font-size: 2em; }\n\n/*-- Line --*/\n.c3-line {\n  stroke-width: 1px; }\n\n/*-- Point --*/\n.c3-circle._expanded_ {\n  stroke-width: 1px;\n  stroke: white; }\n\n.c3-selected-circle {\n  fill: white;\n  stroke-width: 2px; }\n\n/*-- Bar --*/\n.c3-bar {\n  stroke-width: 0; }\n\n.c3-bar._expanded_ {\n  fill-opacity: 1;\n  fill-opacity: 0.75; }\n\n/*-- Focus --*/\n.c3-target.c3-focused {\n  opacity: 1; }\n\n.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {\n  stroke-width: 2px; }\n\n.c3-target.c3-defocused {\n  opacity: 0.3 !important; }\n\n/*-- Region --*/\n.c3-region {\n  fill: steelblue;\n  fill-opacity: .1; }\n\n/*-- Brush --*/\n.c3-brush .extent {\n  fill-opacity: .1; }\n\n/*-- Select - Drag --*/\n/*-- Legend --*/\n.c3-legend-item {\n  font-size: 12px; }\n\n.c3-legend-item-hidden {\n  opacity: 0.15; }\n\n.c3-legend-background {\n  opacity: 0.75;\n  fill: white;\n  stroke: lightgray;\n  stroke-width: 1; }\n\n/*-- Title --*/\n.c3-title {\n  font: 14px sans-serif; }\n\n/*-- Tooltip --*/\n.c3-tooltip-container {\n  z-index: 10; }\n\n.c3-tooltip {\n  border-collapse: collapse;\n  border-spacing: 0;\n  background-color: #fff;\n  empty-cells: show;\n  -webkit-box-shadow: 7px 7px 12px -9px #777777;\n  -moz-box-shadow: 7px 7px 12px -9px #777777;\n  box-shadow: 7px 7px 12px -9px #777777;\n  opacity: 0.9; }\n\n.c3-tooltip tr {\n  border: 1px solid #CCC; }\n\n.c3-tooltip th {\n  background-color: #aaa;\n  font-size: 14px;\n  padding: 2px 5px;\n  text-align: left;\n  color: #FFF; }\n\n.c3-tooltip td {\n  font-size: 13px;\n  padding: 3px 6px;\n  background-color: #fff;\n  border-left: 1px dotted #999; }\n\n.c3-tooltip td > span {\n  display: inline-block;\n  width: 10px;\n  height: 10px;\n  margin-right: 6px; }\n\n.c3-tooltip td.value {\n  text-align: right; }\n\n/*-- Area --*/\n.c3-area {\n  stroke-width: 0;\n  opacity: 0.2; }\n\n/*-- Arc --*/\n.c3-chart-arcs-title {\n  dominant-baseline: middle;\n  font-size: 1.3em; }\n\n.c3-chart-arcs .c3-chart-arcs-background {\n  fill: #e0e0e0;\n  stroke: none; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-unit {\n  fill: #000;\n  font-size: 16px; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-max {\n  fill: #777; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-min {\n  fill: #777; }\n\n.c3-chart-arc .c3-gauge-value {\n  fill: #000;\n  /*  font-size: 28px !important;*/ }\n\n.c3-chart-arc.c3-target g path {\n  opacity: 1; }\n\n.c3-chart-arc.c3-target.c3-focused g path {\n  opacity: 1; }\n","/*!\n * Datetimepicker for Bootstrap 3\n * version : 4.17.47\n * https://github.com/Eonasdan/bootstrap-datetimepicker/\n */\n@bs-datetimepicker-timepicker-font-size: 1.2em;\n@bs-datetimepicker-active-bg: @btn-primary-bg;\n@bs-datetimepicker-active-color: @btn-primary-color;\n@bs-datetimepicker-border-radius: @border-radius-base;\n@bs-datetimepicker-btn-hover-bg: @gray-lighter;\n@bs-datetimepicker-disabled-color: @gray-light;\n@bs-datetimepicker-alternate-color: @gray-light;\n@bs-datetimepicker-secondary-border-color: #ccc;\n@bs-datetimepicker-secondary-border-color-rgba: rgba(0, 0, 0, 0.2);\n@bs-datetimepicker-primary-border-color: white;\n@bs-datetimepicker-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n\n.bootstrap-datetimepicker-widget {\n    list-style: none;\n\n    &.dropdown-menu {\n        display: block;\n        margin: 2px 0;\n        padding: 4px;\n        width: 19em;\n\n        &.timepicker-sbs {\n            @media (min-width: @screen-sm-min) {\n                width: 38em;\n            }\n\n            @media (min-width: @screen-md-min) {\n                width: 38em;\n            }\n\n            @media (min-width: @screen-lg-min) {\n                width: 38em;\n            }\n        }\n\n        &:before, &:after {\n            content: '';\n            display: inline-block;\n            position: absolute;\n        }\n\n        &.bottom {\n            &:before {\n                border-left: 7px solid transparent;\n                border-right: 7px solid transparent;\n                border-bottom: 7px solid @bs-datetimepicker-secondary-border-color;\n                border-bottom-color: @bs-datetimepicker-secondary-border-color-rgba;\n                top: -7px;\n                left: 7px;\n            }\n\n            &:after {\n                border-left: 6px solid transparent;\n                border-right: 6px solid transparent;\n                border-bottom: 6px solid @bs-datetimepicker-primary-border-color;\n                top: -6px;\n                left: 8px;\n            }\n        }\n\n        &.top {\n            &:before {\n                border-left: 7px solid transparent;\n                border-right: 7px solid transparent;\n                border-top: 7px solid @bs-datetimepicker-secondary-border-color;\n                border-top-color: @bs-datetimepicker-secondary-border-color-rgba;\n                bottom: -7px;\n                left: 6px;\n            }\n\n            &:after {\n                border-left: 6px solid transparent;\n                border-right: 6px solid transparent;\n                border-top: 6px solid @bs-datetimepicker-primary-border-color;\n                bottom: -6px;\n                left: 7px;\n            }\n        }\n\n        &.pull-right {\n            &:before {\n                left: auto;\n                right: 6px;\n            }\n\n            &:after {\n                left: auto;\n                right: 7px;\n            }\n        }\n    }\n\n    .list-unstyled {\n        margin: 0;\n    }\n\n    a[data-action] {\n        padding: 6px 0;\n    }\n\n    a[data-action]:active {\n        box-shadow: none;\n    }\n\n    .timepicker-hour, .timepicker-minute, .timepicker-second {\n        width: 54px;\n        font-weight: bold;\n        font-size: @bs-datetimepicker-timepicker-font-size;\n        margin: 0;\n    }\n\n    button[data-action] {\n        padding: 6px;\n    }\n\n    .btn[data-action=\"incrementHours\"]::after {\n        .sr-only();\n        content: \"Increment Hours\";\n    }\n\n    .btn[data-action=\"incrementMinutes\"]::after {\n        .sr-only();\n        content: \"Increment Minutes\";\n    }\n\n    .btn[data-action=\"decrementHours\"]::after {\n        .sr-only();\n        content: \"Decrement Hours\";\n    }\n\n    .btn[data-action=\"decrementMinutes\"]::after {\n        .sr-only();\n        content: \"Decrement Minutes\";\n    }\n\n    .btn[data-action=\"showHours\"]::after {\n        .sr-only();\n        content: \"Show Hours\";\n    }\n\n    .btn[data-action=\"showMinutes\"]::after {\n        .sr-only();\n        content: \"Show Minutes\";\n    }\n\n    .btn[data-action=\"togglePeriod\"]::after {\n        .sr-only();\n        content: \"Toggle AM/PM\";\n    }\n\n    .btn[data-action=\"clear\"]::after {\n        .sr-only();\n        content: \"Clear the picker\";\n    }\n\n    .btn[data-action=\"today\"]::after {\n        .sr-only();\n        content: \"Set the date to today\";\n    }\n\n    .picker-switch {\n        text-align: center;\n\n        &::after {\n            .sr-only();\n            content: \"Toggle Date and Time Screens\";\n        }\n\n        td {\n            padding: 0;\n            margin: 0;\n            height: auto;\n            width: auto;\n            line-height: inherit;\n\n            span {\n                line-height: 2.5;\n                height: 2.5em;\n                width: 100%;\n            }\n        }\n    }\n\n    table {\n        width: 100%;\n        margin: 0;\n\n\n        & td,\n        & th {\n            text-align: center;\n            border-radius: @bs-datetimepicker-border-radius;\n        }\n\n        & th {\n            height: 20px;\n            line-height: 20px;\n            width: 20px;\n\n            &.picker-switch {\n                width: 145px;\n            }\n\n            &.disabled,\n            &.disabled:hover {\n                background: none;\n                color: @bs-datetimepicker-disabled-color;\n                cursor: not-allowed;\n            }\n\n            &.prev::after {\n                .sr-only();\n                content: \"Previous Month\";\n            }\n\n            &.next::after {\n                .sr-only();\n                content: \"Next Month\";\n            }\n        }\n\n        & thead tr:first-child th {\n            cursor: pointer;\n\n            &:hover {\n                background: @bs-datetimepicker-btn-hover-bg;\n            }\n        }\n\n        & td {\n            height: 54px;\n            line-height: 54px;\n            width: 54px;\n\n            &.cw {\n                font-size: .8em;\n                height: 20px;\n                line-height: 20px;\n                color: @bs-datetimepicker-alternate-color;\n            }\n\n            &.day {\n                height: 20px;\n                line-height: 20px;\n                width: 20px;\n            }\n\n            &.day:hover,\n            &.hour:hover,\n            &.minute:hover,\n            &.second:hover {\n                background: @bs-datetimepicker-btn-hover-bg;\n                cursor: pointer;\n            }\n\n            &.old,\n            &.new {\n                color: @bs-datetimepicker-alternate-color;\n            }\n\n            &.today {\n                position: relative;\n\n                &:before {\n                    content: '';\n                    display: inline-block;\n                    border: solid transparent;\n                    border-width: 0 0 7px 7px;\n                    border-bottom-color: @bs-datetimepicker-active-bg;\n                    border-top-color: @bs-datetimepicker-secondary-border-color-rgba;\n                    position: absolute;\n                    bottom: 4px;\n                    right: 4px;\n                }\n            }\n\n            &.active,\n            &.active:hover {\n                background-color: @bs-datetimepicker-active-bg;\n                color: @bs-datetimepicker-active-color;\n                text-shadow: @bs-datetimepicker-text-shadow;\n            }\n\n            &.active.today:before {\n                border-bottom-color: #fff;\n            }\n\n            &.disabled,\n            &.disabled:hover {\n                background: none;\n                color: @bs-datetimepicker-disabled-color;\n                cursor: not-allowed;\n            }\n\n            span {\n                display: inline-block;\n                width: 54px;\n                height: 54px;\n                line-height: 54px;\n                margin: 2px 1.5px;\n                cursor: pointer;\n                border-radius: @bs-datetimepicker-border-radius;\n\n                &:hover {\n                    background: @bs-datetimepicker-btn-hover-bg;\n                }\n\n                &.active {\n                    background-color: @bs-datetimepicker-active-bg;\n                    color: @bs-datetimepicker-active-color;\n                    text-shadow: @bs-datetimepicker-text-shadow;\n                }\n\n                &.old {\n                    color: @bs-datetimepicker-alternate-color;\n                }\n\n                &.disabled,\n                &.disabled:hover {\n                    background: none;\n                    color: @bs-datetimepicker-disabled-color;\n                    cursor: not-allowed;\n                }\n            }\n        }\n    }\n\n    &.usetwentyfour {\n        td.hour {\n            height: 27px;\n            line-height: 27px;\n        }\n    }\n\t\n\t&.wider {\n\t\twidth: 21em;\n\t}\n\n\t& .datepicker-decades .decade {\n        line-height: 1.8em !important;\n    }\n}\n\n.input-group.date {\n    & .input-group-addon {\n        cursor: pointer;\n    }\n}\n","// Import bootstrap variables including default color palette and fonts\n@import \"bootstrap/less/variables.less\";\n\n// Import datepicker component\n@import \"_bootstrap-datetimepicker.less\";\n\n//this is here so the compiler doesn't complain about a missing bootstrap mixin\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n","//\n// Patternfly Mixins\n// --------------------------------------------------\n// PatternFly-specific mixins\n\n// Patternfly button variants.\n.button-variant(@color; @background; @background-image-start; @background-image-stop; @border) {\n  background-color: @background;\n  #gradient > .vertical(@background-image-start, @background-image-stop);\n  border-color: @border;\n  color: @color;\n\n  &:hover,\n  &:focus,\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-color: @background;\n    background-image: none;\n    border-color: @border;\n    color: @color;\n  }\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-image: none;\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: darken(@background, 5%);\n          border-color: darken(@border, 7%);\n    }\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &,\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      background-color: @background;\n      border-color: @border;\n    }\n  }\n}\n\n// SASS CONVERSION FIX.\n// Allows inclusion of sr-only rules in nested media queries where @extends .sr-only\n// will not work.\n.sr-only-pf() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n\n.tab-indicator(@background: @gray-light-pf, @left: 15px, @right: 15px) {\n  &:before {\n    background: @background;\n    bottom: -1px;\n    content: \"\";\n    display: block;\n    height: 2px;\n    left: @left;\n    position: absolute;\n    right: @right;\n  }\n}\n\n// Ellipse overflow text\n.text-overflow-pf {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  word-wrap: normal;\n}\n","//\n// About Modal\n// --------------------------------------------------\n\n.about-modal-pf {\n  background-color: @color-pf-black-900;\n  background-image: url(\"@{img-path}/@{modal-about-pf-bg-img}\");\n  background-position: right bottom;\n  background-repeat: no-repeat;\n  background-size: 216px auto;\n  @media (min-width: @screen-sm-min) {\n    background-size: auto;\n  }\n  .modal-body {\n    color: @color-pf-white;\n    padding-bottom: 16px;\n    padding-left: @grid-gutter-width;\n    padding-right: @grid-gutter-width;\n    @media (min-width: @screen-sm-min) {\n      padding-left: (@grid-gutter-width * 2);\n      padding-right: (@grid-gutter-width * 2);\n    }\n  }\n  .modal-header {\n    background-color: transparent;\n  }\n  .pficon-close {\n    color: @color-pf-white;\n  }\n}\n\n.product-versions-pf {\n  margin-bottom: 30px;\n  margin-top: 30px;\n  li {\n    strong {\n      margin-right: (@grid-gutter-width / 4);\n    }\n  }\n}\n\n.trademark-pf {\n  font-size: ceil((@font-size-base - 1));\n}\n","//\n// Application Launcher\n// --------------------------------------------------\n.applauncher-pf {\n\n  display: inline-block;\n  overflow: visible;\n\n  .applauncher-pf-title {\n    .sr-only-pf();\n  }\n\n  .dropdown-toggle {\n    &.disabled {\n      cursor: not-allowed;\n    }\n  }\n\n  &.open > .dropdown-menu {\n    display:flex;\n    flex-wrap:wrap;\n  }\n\n  .applauncher-pf-item {\n    width: 100%;\n  }\n\n  .applauncher-pf-link {\n    display:flex;\n    white-space: initial;\n    align-items: center;\n  }\n\n  &-block-list {\n    .applauncher-pf-item {\n      @media (min-width: @screen-sm-min) {\n        flex:0 0 50%;\n      }\n    }\n\n    .applauncher-pf-link {\n        flex-wrap: wrap;\n      @media (min-width: @screen-sm-min) {\n          flex-direction:column;\n          text-align: center;\n          padding:15px 0;\n          height: 100%;\n      }\n    }\n\n    .applauncher-pf-link-icon {\n      padding: 0;\n    }\n\n    .applauncher-pf-link-title {\n      margin-top: auto;\n    }\n  }//block-list\n\n  &:not(.applauncher-pf-block-list) {\n\n    .applauncher-pf-link {\n      @media (min-width: @screen-sm-min) {\n        padding:@applauncher-pf-dropdown-menu-padding;\n        &-icon {\n          flex:1 0 0;\n          text-align: left;\n        }\n        &-title{flex:3;}\n      }\n    }\n  }\n\n  .dropdown-menu {\n    padding: @applauncher-pf-dropdown-menu-padding;\n    min-width: @applauncher-pf-dropdown-menu-width;\n  }\n\n  .applauncher-pf-link {\n    border-style: solid;\n    border-width: @applauncher-pf-menu-link-border-width;\n    border-color: transparent;\n\n    &:hover {\n      background-color: @applauncher-pf-menu-link-background-color-hover;\n      border-color: @applauncher-pf-menu-link-border-color-hover;\n      color: @applauncher-pf-menu-link-color-hover;\n      text-decoration: none;\n\n      .box-shadow(0 0 2px 0 @applauncher-pf-menu-link-shadow);\n    }\n  }\n\n  .applauncher-pf-link-icon {\n    font-size: 1.2em;\n    text-align: center;\n    width: @applauncher-pf-menu-link-icon-width;\n\n    @media (min-width: @screen-sm-min) {\n      font-size: @applauncher-pf-menu-link-icon-font-size;\n    }\n  }\n\n}//.applauncher-pf\n\n.navbar-utility .applauncher-pf {\n    .dropdown-menu {\n      border-width: @applauncher-pf-menu-link-border-width !important;\n      @media (min-width: @screen-sm-min) {\n              margin-top: 3px;\n              right:0;\n            }\n    }//.dropdown-menu\n}\n\n.navbar-pf, .navbar-pf-alt {\n\n  .navbar-utility .applauncher-pf, .applauncher-pf {\n\n    &.open > a,\n        &.open > a:focus {\n          background-color: @navbar-pf-navbar-nav-active-bg-color;\n          color: @navbar-pf-active-color;\n\n          @media (min-width: @screen-sm-min) {\n            background-color: @navbar-pf-navbar-utility-open-bg-color;\n            border-color: @navbar-pf-navbar-utility-border-color;\n            color: @navbar-pf-navbar-utility-color;\n          }\n        }\n\n        &.open {\n          .dropdown-menu > li > a {\n            @media (max-width: @grid-float-breakpoint-max) {\n              padding-left: 20px;\n              .applauncher-pf-link-icon {\n                padding-right: 20px;\n              }\n            }\n          }\n        }\n\n        &.dropdown > .dropdown-toggle,\n            .dropdown-toggle {\n              background-color: inherit;\n              color: @applauncher-pf-menu-link-color;\n              text-align: left;\n              text-decoration: none;\n              border-width: 0;\n              display: block;\n              padding-left: 20px;\n\n              &.disabled {\n                color: @applauncher-pf-menu-link-color-disabled !important;\n              }\n\n              @media (min-width: @screen-sm-min) {\n                border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n                padding: @applauncher-pf-dropdown-toggle-padding;\n                line-height: 1;\n              }\n        }\n\n        .applauncher-pf-icon {\n              padding-right:@applauncher-pf-icon-padding-right;\n\n              @media (min-width: @screen-sm-min) {\n                padding: 0;\n              }\n            }\n\n        .applauncher-pf-title {\n          display: inline;\n          position: relative;\n        }\n\n\n        .applauncher-pf-link {\n          overflow: hidden;\n          width: 100%;\n\n          &:hover {\n            background-color: transparent;\n            border-color: transparent;\n            .box-shadow(none);\n          }\n        }\n\n        .applauncher-pf-link-title {\n          overflow: hidden;\n        }\n\n        @media (min-width: @screen-sm-min) {\n          //Apply mixin\n          .applauncher-pf;\n        }\n    }\n}//.navbar-pf .navbar-pf-alt ovrerides\n\n.navbar-iconic {\n\n  .navbar-utility .applauncher-pf,\n  .applauncher-pf {\n\n    &.dropdown > .dropdown-toggle,\n    .dropdown-toggle {\n\n      @media (min-width: @screen-sm-min) {\n        padding: 22px 10px;\n        line-height: inherit;\n      }\n    }\n  }\n}\n","//\n// Blank Slate\n// --------------------------------------------------\n\n.blank-slate-pf {\n  @media (min-width: @screen-sm-min) {\n    padding: (@jumbotron-padding * 2) (@jumbotron-padding * 2);\n  }\n  @media (min-width: @screen-md-min) {\n    padding: (@jumbotron-padding * 3) (@jumbotron-padding * 4);\n  }\n  background-color: @well-bg;\n  border: 1px solid @well-border;\n  border-radius: @border-radius-base;\n  margin-bottom: 20px;\n  padding: @jumbotron-padding;\n  text-align: center;\n  .blank-slate-pf-icon {\n    color: @gray-light;\n    font-size: (@font-size-h1 * 2.4);\n    line-height: (@font-size-h1 * 2.4);\n  }\n  .blank-slate-pf-main-action {\n    margin-top: @line-height-computed;\n  }\n  .blank-slate-pf-secondary-action {\n    margin-top: @line-height-computed;\n  }\n  button {\n    margin-right: 5px;\n    &:last-of-type {\n      margin-right: 0;\n    }\n  }\n}\n","//\n// Bootstrap-Combobox\n// --------------------------------------------------\n\n.combobox-container {\n  &.combobox-selected .glyphicon-remove {\n    display: inline-block;\n  }\n  .caret {\n    margin-left: 0;\n  }\n  .combobox::-ms-clear {\n    display: none;\n  }\n  .dropdown-menu {\n    margin-top: -1px;\n    width: 100%;\n  }\n  .glyphicon-remove {\n    display: none;\n    top: auto;\n    width: 12px;\n    &:before {\n      content: \"\\e60b\";\n      font-family: @icon-font-name-pf;\n    }\n  }\n  .input-group-addon {\n    .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n    position: relative; // IE8\n    &:active {\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n    }\n  }\n}\n","//\n// Variables\n// --------------------------------------------------\n// Bootstrap overrides and PatternFly-specific variables\n\n// Sass compass/sprockets asset helper flag\n// ----------------------\n@pf-sass-asset-helper:                                              false;\n\n// PatternFly-specific\n// -------------------\n@import \"color-variables.less\";\n\n@applauncher-pf-dropdown-menu-border-width:                         1px;\n@applauncher-pf-dropdown-menu-padding:                              9px;\n@applauncher-pf-dropdown-menu-width:                                220px;\n@applauncher-pf-dropdown-toggle-padding:                            7px 10px;\n@applauncher-pf-icon-padding-right:                                 4px;\n@applauncher-pf-menu-link-border-color:                             @color-pf-white;\n@applauncher-pf-menu-link-border-color-hover:                       @color-pf-black-400;\n@applauncher-pf-menu-link-border-width:                             1px;\n@applauncher-pf-menu-link-color:                                    @color-pf-black-300;\n@applauncher-pf-menu-link-color-disabled:                           @color-pf-black-500;\n@applauncher-pf-menu-link-color-hover:                              @color-pf-blue-400;\n@applauncher-pf-menu-link-padding:                                  7px 10px;\n@applauncher-pf-menu-link-padding-block-list:                       15px 10px;\n@applauncher-pf-menu-link-background-color-hover:                   @color-pf-black-150;\n@applauncher-pf-menu-link-shadow:                                   @color-pf-black-300;\n@applauncher-pf-menu-link-icon-font-size:                           2em;\n@applauncher-pf-menu-link-icon-width:                               ((9 * @applauncher-pf-menu-link-icon-font-size) / 14); //Numbers to imitate fa-fw class\n@bootstrap-switch-handle-default-bg-color:                          @color-pf-black-100;\n@bootstrap-treeview-highlight-color:                                @color-pf-blue-300;\n@btn-default-bg-img-start:                                          @color-pf-black-100;\n@btn-default-bg-img-stop:                                           @color-pf-black-200;\n@btn-xs-font-weight:                                                400;\n@card-pf-accented-border-top-color:                                 @color-pf-blue-300;\n@card-pf-aggregate-status-title-icon-color:                         @color-pf-black-900;\n@card-pf-bg-color:                                                  @color-pf-white;\n@card-pf-border-color:                                              @color-pf-black-300;\n@card-pf-border-top-color:                                          transparent;\n@card-pf-container-bg-color:                                        @color-pf-black-150;\n@card-pf-footer-bg-color:                                           @color-pf-black-100;\n@card-pf-selected-border-color:                                     @color-pf-blue-300;\n@contextselector-pf-margin-left:                                    10px;\n@contextselector-pf-nav-item-iconic-padding:                        23px 20px 18px 10px;\n@contextselector-title-width-mobile:                                170px;\n@contextselector-title-width-desktop:                               210px;\n@contextselector-pf-form-group-margin:                              0 5px 5px 5px;\n@contextselector-pf-list-max-height:                                200px;\n@contextselector-pf-list-li-padding:                                1px 10px;\n@contextselector-pf-list-li-border-width:                           1px 0;\n@donut-font-size-big:                                               30px;\n@drawer-pf-top-vertical:                                            58px;\n@drawer-pf-top-horizontal:                                          26px;\n@dropdown-divider-margin:                                           4px 1px;\n@dropdown-link-active-border-color:                                 @color-pf-blue;\n@dropdown-link-hover-border-color:                                  @color-pf-blue-100;\n@dropdown-link-focus-color:                                         @color-pf-white;\n@flyout-transition-pf:                                              all 200ms cubic-bezier(.35, 0, .25, 1);\n@font-family-monospace:                                             Menlo, Monaco, Consolas, monospace;\n@font-path:                                                         \"../fonts\";\n@footer-pf-bg-color:                                                @color-pf-black;\n@footer-pf-padding-left:                                            25px;\n@footer-pf-padding-top:                                             10px;\n@footer-pf-height:                                                  37px;\n@gray-light-pf:                                                     @color-pf-black-400;\n@gray-pf:                                                           @color-pf-black-700;\n@icon-font-name-fa:                                                 \"FontAwesome\";\n@icon-font-name-pf:                                                 \"PatternFlyIcons-webfont\";\n@icon-prefix:                                                       pficon;\n@img-bg-login:                                                      \"bg-login.jpg\";\n@img-path:                                                          \"../img\";\n@img-spinner:                                                       \"spinner.gif\";\n@img-spinner-inverse:                                               \"spinner-inverse.gif\";\n@img-spinner-inverse-lg:                                            \"spinner-inverse-lg.gif\";\n@img-spinner-inverse-sm:                                            \"spinner-inverse-sm.gif\";\n@img-spinner-inverse-xs:                                            \"spinner-inverse-xs.gif\";\n@img-spinner-lg:                                                    \"spinner-lg.gif\";\n@img-spinner-sm:                                                    \"spinner-sm.gif\";\n@img-spinner-xs:                                                    \"spinner-xs.gif\";\n@input-border-hover:                                                @color-pf-blue-200;\n@input-border-focus:                                                @color-pf-blue-400;\n@list-pf-border-color:                                              @color-pf-black-200;\n@list-pf-active-border-color:                                       @color-pf-black-400;\n@list-pf-header-background-color:                                   @color-pf-black-200;\n@list-pf-hover-background-color:                                    @color-pf-blue-25;\n@list-pf-main-content-width:                                        70%; // sets the proportional width of the main content vs the additional content\n@list-pf-padding:                                                   20px;\n@list-view-accented-border:                                         @color-pf-blue-300;\n@list-view-active-bg:                                               @color-pf-blue-50;\n@list-view-active-border:                                           @color-pf-black-400;\n@list-view-divider:                                                 @color-pf-black-300;\n@list-view-hover-bg:                                                @color-pf-blue-25;\n@list-group-top-border:                                             @color-pf-black-200;\n@login-bg-color:                                                    @color-pf-black;\n@login-container-bg-color-rgba:                                     fade(@color-pf-white, 5.5%);\n@modal-about-pf-bg-img:                                             \"bg-modal-about-pf.png\";\n@modal-title-padding-horizontal:                                    18px;\n@modal-title-padding-vertical:                                      10px;\n@navbar-pf-active-color:                                            @color-pf-black-150;\n@navbar-pf-alt-active-color:                                        @color-pf-white;\n@navbar-pf-alt-bg-color:                                            @color-pf-black;\n@navbar-pf-alt-bg-img:                                              \"bg-navbar-pf-alt.svg\";\n@navbar-pf-bg-color:                                                @color-pf-black;\n@navbar-pf-border-color:                                            @color-pf-blue-300;\n@navbar-pf-color:                                                   @color-pf-black-300;\n@navbar-pf-height:                                                  60px;\n@navbar-pf-icon-bar-bg-color:                                       @color-pf-white;\n@navbar-pf-navbar-navbar-brand-min-width:                           270px;\n@navbar-pf-navbar-navbar-brand-padding:                             8px 0 7px;\n@navbar-pf-navbar-navbar-persistent-bg-color:                       @color-pf-black-150;\n@navbar-pf-navbar-navbar-persistent-border-color:                   @color-pf-black-300;\n@navbar-pf-vertical-active-color:                                   @color-pf-white;\n@navbar-pf-vertical-bg-color:                                       #1d1d1d;\n@navbar-pf-vertical-bg-repeat:                                      no-repeat;\n@navbar-pf-vertical-bg-size:                                        auto 100%;\n@navbar-pf-vertical-border-color:                                   @color-pf-blue-300;\n@navbar-pf-vertical-border-style:                                   solid;\n@navbar-pf-vertical-border-width:                                   2px;\n@navbar-pf-vertical-color:                                          @color-pf-black-300;\n@navbar-pf-vertical-height:                                         60px;\n@navbar-pf-vertical-icon-bar-bg-color:                              @color-pf-white;\n@navbar-pf-vertical-navbar-brand-color:                             @color-pf-white;\n@navbar-pf-vertical-navbar-brand-icon-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-margin:                            0 0 0 25px;\n@navbar-pf-vertical-navbar-brand-min-height:                        35px;\n@navbar-pf-vertical-navbar-brand-max-height:                        35px;\n@navbar-pf-vertical-navbar-brand-line-height:                       34px;\n@navbar-pf-vertical-navbar-brand-name-breakpoint:                   480px;\n@navbar-pf-vertical-navbar-brand-name-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-padding:                           11px 0 12px;\n@navbar-pf-vertical-navbar-toggle-margin:                           13px 15px;\n@navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg:                @color-pf-white;\n@navbar-pf-vertical-nav-item-iconic-padding:                        21px 12px;\n@nav-pf-container-transition-period:                                250ms;\n@nav-pf-menu-transition-period:                                     100ms;\n@nav-pf-vertical-active-color:                                      @color-pf-white;\n@nav-pf-vertical-active-before-color:                               @color-pf-blue-300;\n@nav-pf-vertical-active-bg-color:                                   @color-pf-black-800;\n@nav-pf-vertical-active-border-color:                               @color-pf-black-900;\n@nav-pf-vertical-active-font-weight:                                600;\n@nav-pf-vertical-active-icon-color:                                 @color-pf-blue-300;\n@nav-pf-vertical-badge-color:                                       @color-pf-white;\n@nav-pf-vertical-badge-bg-color:                                    @color-pf-black-900;\n@nav-pf-vertical-bg-color:                                          @color-pf-black-900;\n@nav-pf-vertical-border-color:                                      @color-pf-black-900;\n@nav-pf-vertical-collapsed-width:                                   75px;\n@nav-pf-vertical-color:                                             @color-pf-black-300;\n@nav-pf-vertical-font-weight:                                       400;\n@nav-pf-vertical-icon-color:                                        @color-pf-black-600;\n@nav-pf-vertical-icon-width:                                        24px;\n@nav-pf-vertical-item-border-color:                                 @color-pf-black;\n@nav-pf-vertical-link-height:                                       63px;\n@nav-pf-vertical-link-padding:                                      17px 20px 17px 25px;\n@nav-pf-vertical-secondary-active-color:                            @color-pf-white;\n@nav-pf-vertical-secondary-active-bg-color:                         @color-pf-black-700;\n@nav-pf-vertical-secondary-active-icon-color:                       @color-pf-blue-300;\n@nav-pf-vertical-secondary-badge-color:                             @color-pf-white;\n@nav-pf-vertical-secondary-badge-bg-color:                          @color-pf-black-900;\n@nav-pf-vertical-secondary-border-color:                            @color-pf-blue-300;\n@nav-pf-vertical-secondary-color:                                   @color-pf-white;\n@nav-pf-vertical-secondary-header-margin:                           18px 20px 10px 20px;\n@nav-pf-vertical-secondary-indicator-color:                         @color-pf-black-600;\n@nav-pf-vertical-secondary-indicator-padding:                       14px 0;\n@nav-pf-vertical-secondary-item-color:                              @color-pf-black-300;\n@nav-pf-vertical-secondary-item-padding:                            0 0 5px 0;\n@nav-pf-vertical-secondary-link-height:                             63px;\n@nav-pf-vertical-secondary-link-padding:                            4px 0 2px 0;\n@nav-pf-vertical-secondary-list-header-margin:                      30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-active-color:                             @color-pf-white;\n@nav-pf-vertical-tertiary-active-bg-color:                          @color-pf-black-800;\n@nav-pf-vertical-tertiary-indicator-padding:                        0;\n@nav-pf-vertical-tertiary-bg-color:                                 @color-pf-black-700;\n@nav-pf-vertical-tertiary-color:                                    #fff;\n@nav-pf-vertical-tertiary-header-margin:                            18px 20px 10px 20px;\n@nav-pf-vertical-tertiary-list-header-margin:                       30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-item-padding:                             0 0 5px 0;\n@nav-pf-vertical-tertiary-item-color:                               @color-pf-black-300;\n@nav-pf-vertical-tertiary-link-margin:                              0 20px 0 20px;\n@nav-pf-vertical-tertiary-link-padding:                             4px 0 2px 0;\n@nav-pf-vertical-tertiary-badge-color:                              @color-pf-white;\n@nav-pf-vertical-tertiary-badge-bg-color:                           @color-pf-black-900;\n@nav-pf-vertical-width:                                             200px;\n@toast-notification-top:                                            80px;\n@pagination-padding-small-vertical:                                 0;\n@panel-default-border-color:                                        @color-pf-black-400;\n@pficon-var-add-circle-o:                                           \"\\e61b\";\n@pficon-var-applications:                                           \"\\e936\";\n@pficon-var-arrow:                                                  \"\\e929\";\n@pficon-var-asleep:                                                 \"\\e925\";\n@pficon-var-automation:                                             \"\\e937\";\n@pficon-var-blueprint:                                              \"\\e915\";\n@pficon-var-build:                                                  \"\\e902\";\n@pficon-var-builder-image:                                          \"\\e800\";\n@pficon-var-bundle:                                                 \"\\e918\";\n@pficon-var-catalog:                                                \"\\e939\";\n@pficon-var-chat:                                                   \"\\e928\";\n@pficon-var-close:                                                  \"\\e60b\";\n@pficon-var-cloud-security:                                         \"\\e903\";\n@pficon-var-cloud-tenant:                                           \"\\e904\";\n@pficon-var-cluster:                                                \"\\e620\";\n@pficon-var-connected:                                              \"\\e938\";\n@pficon-var-container-node:                                         \"\\e621\";\n@pficon-var-cpu:                                                    \"\\e927\";\n@pficon-var-degraded:                                               \"\\e91b\";\n@pficon-var-delete:                                                 \"\\e611\";\n@pficon-var-disconnected:                                           \"\\e93c\";\n@pficon-var-domain:                                                 \"\\e919\";\n@pficon-var-edit:                                                   \"\\e60a\";\n@pficon-var-enhancement:                                            \"\\e93a\";\n@pficon-var-enterprise:                                             \"\\e906\";\n@pficon-var-equalizer:                                              \"\\e610\";\n@pficon-var-error-circle-o:                                         \"\\e926\";\n@pficon-var-export:                                                 \"\\e616\";\n@pficon-var-flag:                                                   \"\\e603\";\n@pficon-var-flavor:                                                 \"\\e907\";\n@pficon-var-filter:                                                 \"\\e943\";\n@pficon-var-folder-close:                                           \"\\e607\";\n@pficon-var-folder-open:                                            \"\\e606\";\n@pficon-var-help:                                                   \"\\e605\";\n@pficon-var-history:                                                \"\\e93b\";\n@pficon-var-home:                                                   \"\\e618\";\n@pficon-var-image:                                                  \"\\e61f\";\n@pficon-var-import:                                                 \"\\e615\";\n@pficon-var-info:                                                   \"\\e92b\";\n@pficon-var-infrastructure:                                         \"\\e93d\";\n@pficon-var-integration:                                            \"\\e948\";\n@pficon-var-in-progress:                                            \"\\e92c\";\n@pficon-var-key:                                                    \"\\e924\";\n@pficon-var-kubernetes:                                             \"\\e627\";\n@pficon-var-locked:                                                 \"\\e923\";\n@pficon-var-maintenance:                                            \"\\e92d\";\n@pficon-var-memory:                                                 \"\\e908\";\n@pficon-var-messages:                                               \"\\e603\";\n@pficon-var-middleware:                                             \"\\e917\";\n@pficon-var-migration:                                              \"\\e92e\";\n@pficon-var-monitoring:                                             \"\\e944\";\n@pficon-var-network:                                                \"\\e909\";\n@pficon-var-network-range:                                          \"\\e94a\";\n@pficon-var-off:                                                    \"\\e92f\";\n@pficon-var-ok:                                                     \"\\e602\";\n@pficon-var-on:                                                     \"\\e931\";\n@pficon-var-on-running:                                             \"\\e930\";\n@pficon-var-openshift:                                              \"\\e626\";\n@pficon-var-optimize:                                               \"\\e93e\";\n@pficon-var-orders:                                                 \"\\e93f\";\n@pficon-var-paused:                                                 \"\\e932\";\n@pficon-var-pending:                                                \"\\e933\";\n@pficon-var-plugged:                                                \"\\e940\";\n@pficon-var-port:                                                   \"\\e945\";\n@pficon-var-private:                                                \"\\e914\";\n@pficon-var-print:                                                  \"\\e612\";\n@pficon-var-process-automation:                                     \"\\e949\";\n@pficon-var-project:                                                \"\\e905\";\n@pficon-var-rebalance:                                              \"\\e91c\";\n@pficon-var-rebooting:                                              \"\\e934\";\n@pficon-var-regions:                                                \"\\e90a\";\n@pficon-var-registry:                                               \"\\e623\";\n@pficon-var-remove:                                                 \"\\e611\";\n@pficon-var-replicator:                                             \"\\e624\";\n@pficon-var-repository:                                             \"\\e90b\";\n@pficon-var-resource-pool:                                          \"\\e90c\";\n@pficon-var-resources-almost-empty:                                 \"\\e91d\";\n@pficon-var-resources-almost-full:                                  \"\\e912\";\n@pficon-var-resources-full:                                         \"\\e92a\";\n@pficon-var-restart:                                                \"\\e617\";\n@pficon-var-route:                                                  \"\\e625\";\n@pficon-var-running:                                                \"\\e614\";\n@pficon-var-save:                                                   \"\\e601\";\n@pficon-var-satellite:                                              \"\\e94b\";\n@pficon-var-screen:                                                 \"\\e600\";\n@pficon-var-search:                                                 \"\\e921\";\n@pficon-var-security:                                               \"\\e946\";\n@pficon-var-server:                                                 \"\\e90d\";\n@pficon-var-server-group:                                           \"\\e91a\";\n@pficon-var-service:                                                \"\\e61e\";\n@pficon-var-service-catalog:                                        \"\\e941\";\n@pficon-var-services:                                               \"\\e947\";\n@pficon-var-settings:                                               \"\\e610\";\n@pficon-var-spinner:                                                \"\\e614\";\n@pficon-var-spinner2:                                               \"\\e613\";\n@pficon-var-storage-domain:                                         \"\\e90e\";\n@pficon-var-template:                                               \"\\e94c\";\n@pficon-var-tenant:                                                 \"\\e916\";\n@pficon-var-thumb-tack-o:                                           \"\\e920\";\n@pficon-var-topology:                                               \"\\e608\";\n@pficon-var-trend-down:                                             \"\\e900\";\n@pficon-var-trend-up:                                               \"\\e901\";\n@pficon-var-unlocked:                                               \"\\e922\";\n@pficon-var-unplugged:                                              \"\\e942\";\n@pficon-var-unknown:                                                \"\\e935\";\n@pficon-var-user:                                                   \"\\e91e\";\n@pficon-var-users:                                                  \"\\e91f\";\n@pficon-var-vcenter:                                                \"\\e94d\";\n@pficon-var-virtual-machine:                                        \"\\e90f\";\n@pficon-var-volume:                                                 \"\\e910\";\n@pficon-var-warning-triangle-o:                                     \"\\e913\";\n@pficon-var-zone:                                                   \"\\e911\";\n@progress-description-label-width:                                  85px;\n@sidebar-pf-bg:                                                     @color-pf-black-100;\n@sidebar-pf-border-color:                                           @color-pf-black-300;\n@skiplink-pf-top:                                                   12px;\n@skiplink-pf-left:                                                  10px;\n@table-border-hover:                                                @color-pf-blue-200;\n@table-cell-padding-bottom:                                         3px;\n@table-cell-padding-top:                                            2px;\n// Reference variables declared in block above\n@bootstrap-switch-bg-color-start:                                   @btn-default-bg-img-start;\n@bootstrap-switch-bg-color-stop:                                    @btn-default-bg-img-stop;\n@fa-font-path:                                                      @font-path;\n@navbar-pf-navbar-header-border-color:                              lighten(@navbar-pf-bg-color, 15%);\n@navbar-pf-navbar-nav-active-active-bg-color:                       lighten(@navbar-pf-bg-color, 8%);\n@navbar-pf-navbar-nav-active-active-open-bg-color:                  lighten(@navbar-pf-bg-color, 11%);\n@navbar-pf-navbar-nav-active-bg-color:                              lighten(@navbar-pf-bg-color, 12.5%);\n@navbar-pf-navbar-primary-bg-color-start:                           lighten(@navbar-pf-bg-color, 10%); // #474C50\n@navbar-pf-navbar-primary-bg-color-stop:                            @navbar-pf-bg-color; // #383F43\n@navbar-pf-navbar-utility-border-color:                             lighten(@navbar-pf-bg-color, 15.5%);\n@navbar-pf-navbar-utility-color:                                    @navbar-pf-color;\n@navbar-pf-navbar-utility-hover-bg-color:                           lighten(@navbar-pf-bg-color, 12.5%);\n@nav-pf-vertical-secondary-bg-color:                                @nav-pf-vertical-active-bg-color;\n@nav-tabs-color:                                                    @gray-pf;\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-bg-color-start:                   lighten(@navbar-pf-navbar-primary-bg-color-start, 8.5%);\n@navbar-pf-navbar-primary-context-bg-color-stop:                    lighten(@navbar-pf-navbar-primary-bg-color-stop, 11%);\n@navbar-pf-navbar-primary-hover-bg-color-start:                     lighten(@navbar-pf-navbar-primary-bg-color-start, 10%);\n@navbar-pf-navbar-primary-hover-bg-color-stop:                      lighten(@navbar-pf-navbar-primary-bg-color-stop, 10%);\n@navbar-pf-navbar-primary-hover-border-color:                       lighten(@navbar-pf-navbar-header-border-color, 20%);\n@navbar-pf-navbar-primary-context-border-color:                     lighten(@navbar-pf-navbar-header-border-color, 8%);\n@navbar-pf-navbar-primary-context-border-top-color:                 lighten(@navbar-pf-navbar-header-border-color, 7%);\n@navbar-pf-navbar-utility-hover-border-color:                       lighten(@navbar-pf-navbar-utility-border-color, 5%);\n@navbar-pf-navbar-utility-open-bg-color:                            lighten(@navbar-pf-navbar-utility-hover-bg-color, 7.5%);\n@navbar-pf-navbar-utility-open-border-color:                        lighten(@navbar-pf-navbar-utility-hover-border-color, 5%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-active-bg-color-start:                    lighten(@navbar-pf-navbar-primary-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-active-bg-color-stop:                     lighten(@navbar-pf-navbar-primary-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-active-border-color:                      lighten(@navbar-pf-navbar-primary-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-start:             lighten(@navbar-pf-navbar-primary-context-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-stop:              lighten(@navbar-pf-navbar-primary-context-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-hover-border-color:               lighten(@navbar-pf-navbar-primary-context-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-border-top-color:           lighten(@navbar-pf-navbar-primary-context-border-top-color, 6%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-active-bg-color-start:            lighten(@navbar-pf-navbar-primary-context-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-active-bg-color-stop:             lighten(@navbar-pf-navbar-primary-context-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-active-border-color:              lighten(@navbar-pf-navbar-primary-context-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-active-border-top-color:          lighten(@navbar-pf-navbar-primary-context-hover-border-top-color, 6%);\n// References variable declared in block above\n@navbar-pf-navbar-primary-context-active-border-right-color:        @navbar-pf-navbar-primary-context-active-border-color;\n@slider-line-height:                                                16px;\n@slider-horizontal-width:                                           100%;\n@slider-primary-top:                                                @color-pf-black-100;\n@slider-primary-bottom:                                             @color-pf-black-200;\n@slider-secondary-top:                                              @color-pf-blue-400;\n@slider-secondary-bottom:                                           @color-pf-blue-300;\n\n// Alternate navigation layout - Kept for backwards compatibility\n// --------------------------------------------------------------\n@footer-pf-alt-bg-color:                                            @footer-pf-bg-color;\n@footer-pf-alt-padding-left:                                        @footer-pf-padding-left;\n@footer-pf-alt-padding-top:                                         @footer-pf-padding-top;\n@footer-pf-alt-height:                                              @footer-pf-height;\n@img-path-alt:                                                      @img-path;\n@nav-pf-vertical-alt-active-color:                                  @color-pf-blue-300;\n@nav-pf-vertical-alt-bg-color:                                      @color-pf-white;\n@nav-pf-vertical-alt-badge-color:                                   @color-pf-white;\n@nav-pf-vertical-alt-border-color:                                  @sidebar-pf-border-color;\n@nav-pf-vertical-alt-collapsed-width:                               75px;\n@nav-pf-vertical-alt-link-height:                                   63px;\n@nav-pf-vertical-alt-link-padding:                                  17px 20px 17px 25px;\n@nav-pf-vertical-alt-width:                                         250px;\n@navbar-pf-alt-bg-repeat:                                           @navbar-pf-vertical-bg-repeat;\n@navbar-pf-alt-bg-size:                                             @navbar-pf-vertical-bg-size;\n@navbar-pf-alt-border-color:                                        @navbar-pf-vertical-border-color;\n@navbar-pf-alt-border-style:                                        @navbar-pf-vertical-border-style;\n@navbar-pf-alt-border-width:                                        @navbar-pf-vertical-border-width;\n@navbar-pf-alt-color:                                               @navbar-pf-vertical-color;\n@navbar-pf-alt-height:                                              @navbar-pf-vertical-height;\n@navbar-pf-alt-nav-item-iconic-padding:                             @navbar-pf-vertical-nav-item-iconic-padding;\n@navbar-pf-alt-navbar-brand-color:                                  @navbar-pf-vertical-navbar-brand-color;\n@navbar-pf-alt-navbar-brand-icon-margin:                            @navbar-pf-vertical-navbar-brand-icon-margin;\n@navbar-pf-alt-navbar-brand-margin:                                 @navbar-pf-vertical-navbar-brand-margin;\n@navbar-pf-alt-navbar-brand-min-height:                             @navbar-pf-vertical-navbar-brand-min-height;\n@navbar-pf-alt-navbar-brand-name-breakpoint:                        @navbar-pf-vertical-navbar-brand-name-breakpoint;\n@navbar-pf-alt-navbar-brand-name-margin:                            @navbar-pf-vertical-navbar-brand-name-margin;\n@navbar-pf-alt-navbar-brand-padding:                                @navbar-pf-vertical-navbar-brand-padding;\n@navbar-pf-alt-navbar-toggle-margin:                                @navbar-pf-vertical-navbar-toggle-margin;\n@navbar-pf-alt-navbar-toggle-icon-bar-hover-bg:                     @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n\n// Login page\n// -------------------\n@login-pf-brand-margin-top:                                               20px;\n@login-pf-brand-desktop-margin-top:                                       62px;\n@login-pf-page-header-margin-bottom:                                      20px;\n@login-pf-page-header-desktop-margin-bottom:                              40px;\n@login-pf-page-header-paragraph-margin-top:                               20px;\n@login-pf-card-pf-padding:                                 10px 20px 30px 20px;\n@login-pf-card-pf-desktop-padding:                         20px 40px 30px 40px;\n@login-pf-card-pf-max-width:                                             840px;\n@login-pf-checkbox-label-margin-bottom:                                   15px;\n@login-pf-dropdown-toggle-padding-right:                                  15px;\n@login-pf-btn-primary-margin-top:                                         40px;\n@login-pf-header-margin-bottom:                                           20px;\n@login-pf-header-desktop-margin-bottom:                                   30px;\n@login-pf-signup-margin-top:                                              40px;\n@login-pf-signup-a-margin-left:                                           10px;\n@login-pf-page-footer-links-margin-top:                                   60px;\n@login-pf-page-footer-links-li-margin-right:                              20px;\n@login-pf-page-footer-sso-margin-top:                                     40px;\n@login-pf-page-footer-sso-logos-li-margin:                                5px;\n@login-pf-page-accounts-margin:                                           20px;\n@login-pf-accounts-section-heading-margin-top:                            30px;\n@login-pf-accounts-section-heading-margin-bottom:                         30px;\n@login-pf-accounts-section-heading-desktop-margin-bottom:                 15px;\n@login-pf-accounts-section-heading-desktop-padding-right:                 40px;\n@login-pf-accounts-section-heading-desktop-padding-left:                  40px;\n@login-pf-accounts-link-margin-bottom:                                    15px;\n@login-pf-accounts-link-img-margin-right:                                 10px;\n@login-pf-accounts-link-a-padding:                                        7px;\n@login-pf-accounts-more-caret-margin-left:                                5px;\n@login-pf-social-margin:                                           40px 0 0 0;\n\n\n// Bootstrap overrides\n// -------------------\n@alert-info-border:                                                 @color-pf-black-500;\n@alert-link-font-weight:                                            500;\n@alert-padding:                                                     11px;\n@body-bg:                                                           @color-pf-white;\n@border-radius-base:                                                1px;\n@brand-danger:                                                      @color-pf-red;\n@brand-info:                                                        @color-pf-blue-500;\n@brand-primary:                                                     @color-pf-blue-300;\n@brand-success:                                                     @color-pf-green;\n@brand-warning:                                                     @color-pf-orange;\n@breadcrumb-bg:                                                     transparent;\n@breadcrumb-separator:                                              \"\\f105\";\n@bs-datetimepicker-timepicker-font-size:                            1em;\n@bs-datetimepicker-btn-hover-bg:                                    transparent;\n@btn-danger-bg:                                                     @color-pf-red-200;\n@btn-danger-border:                                                 @color-pf-red-300;\n@btn-default-border:                                                @color-pf-black-400;\n@btn-font-weight:                                                   600;\n@btn-primary-bg:                                                    @color-pf-blue;\n@btn-primary-border:                                                @color-pf-blue-500;\n@caret-width-base:                                                  0;\n@code-bg:                                                           @color-pf-blue-50;\n@dropdown-border:                                                   @color-pf-black-400;\n@dropdown-divider-bg:                                               @color-pf-black-200;\n@dropdown-link-active-color:                                        @color-pf-white;\n@dropdown-link-hover-bg:                                            @color-pf-blue-50;\n@font-family-base:                                                  \"Open Sans\", Helvetica, Arial, sans-serif;\n@font-size-base:                                                    12px;\n@gray-dark:                                                         lighten(@color-pf-black, 20%);   // #333\n@gray-darker:                                                       lighten(@color-pf-black, 13.5%); // #222\n@gray-light:                                                        lighten(@color-pf-black, 60%);   // #999\n@gray-lighter:                                                      lighten(@color-pf-black, 93.5%); // #eee\n@grid-gutter-width:                                                 40px;\n@icon-font-path:                                                    \"../fonts/\";\n@input-bg-disabled:                                                 @color-pf-black-150;\n@input-border:                                                      @color-pf-black-400;\n@line-height-base:                                                  1.66666667; // 20/12\n@link-color:                                                        @color-pf-blue;\n@list-group-border:                                                 @color-pf-black-150;\n@list-group-border-radius:                                          0;\n@list-group-hover-bg:                                               @color-pf-blue-50;\n@link-hover-color:                                                  @color-pf-blue-500;\n@nav-tabs-border-color:                                             @color-pf-black-200;\n@nav-tabs-link-hover-border-color:                                  transparent;\n@padding-large-horizontal:                                          10px;\n@padding-base-horizontal:                                           6px;\n@padding-base-vertical:                                             2px;\n@padding-large-vertical:                                            6px;\n@pager-border-radius:                                               0;\n@pager-disabled-color:                                              @color-pf-black-500;\n@pagination-bg:                                                     @color-pf-black-150;\n@pagination-border:                                                 @color-pf-black-400;\n@pagination-hover-bg:                                               @color-pf-black-200;\n@panel-inner-border:                                                @color-pf-black-300;\n@popover-arrow-color:                                               @color-pf-white;\n@popover-arrow-outer-color:                                         @color-pf-black-400;\n@popover-border-color:                                              @color-pf-black-400;\n@popover-max-width:                                                 220px;\n@popover-title-bg:                                                  @color-pf-black-150;\n@pre-bg:                                                            @color-pf-black-100;\n@progress-bg:                                                       @color-pf-black-200;\n@table-bg-accent:                                                   @color-pf-black-150;\n@table-bg-hover:                                                    @color-pf-blue-50;\n@table-border-color:                                                @color-pf-black-300;\n@table-cell-padding:                                                10px;\n@tooltip-arrow-width:                                               8px;\n@tooltip-bg:                                                        @color-pf-black-800;\n@tooltip-max-width:                                                 220px;\n// Reference variables declared in block above\n@alert-danger-bg:                                                   lighten(@color-pf-red-100, 55%);\n@alert-danger-border:                                               @brand-danger;\n@alert-danger-text:                                                 @gray-dark;\n@alert-info-bg:                                                     @color-pf-black-150;\n@alert-info-text:                                                   @gray-dark;\n@alert-success-bg:                                                  lighten(@color-pf-green-100, 8%);\n@alert-success-border:                                              @brand-success;\n@alert-success-text:                                                @gray-dark;\n@alert-warning-bg:                                                  lighten(@color-pf-orange-100, 8%);\n@alert-warning-border:                                              @brand-warning;\n@alert-warning-text:                                                @gray-dark;\n@badge-border-radius:                                               @border-radius-base;\n@border-radius-large:                                               @border-radius-base;\n@border-radius-small:                                               @border-radius-base;\n@breadcrumb-active-color:                                           @gray-pf;\n@breadcrumb-color:                                                  @gray-pf;\n@btn-default-bg:                                                    @gray-lighter;\n@btn-default-color:                                                 @gray-pf;\n@caret-width-large:                                                 @caret-width-base;\n@code-color:                                                        @color-pf-blue-600;\n@dropdown-fallback-border:                                          @dropdown-border;\n@dropdown-link-active-bg:                                           @link-color;\n@dropdown-link-hover-color:                                         @gray-pf;\n@font-size-h1:                                                      ceil((@font-size-base * 2)); // ~24px\n@font-size-h2:                                                      ceil((@font-size-base * 1.8333)); // ~22px\n@font-size-h3:                                                      ceil((@font-size-base * 1.3333)); // ~16px\n@font-size-h5:                                                      ceil((@font-size-base * 1.0833)); // ~13px\n@font-size-large:                                                   ceil((@font-size-base * 1.1666)); // ~14px\n@font-size-small:                                                   ceil((@font-size-base * .9166)); // ~11px\n@input-color:                                                       @gray-dark;\n@nav-tabs-active-link-hover-color:                                  @link-color;\n@nav-tabs-justified-link-border-color:                              @nav-tabs-border-color;\n@nav-pf-vertical-badges-width:                                      (@nav-pf-vertical-width + 50px);\n@padding-small-horizontal:                                          @padding-base-horizontal;\n@padding-small-vertical:                                            @padding-base-vertical;\n@panel-group-pf-danger-heading-bg:                                  @alert-danger-bg;\n@panel-group-pf-primary-heading-bg:                                 lighten(@brand-primary, 38%);\n@panel-group-pf-success-heading-bg:                                 @alert-success-bg;\n@panel-group-pf-warning-heading-bg:                                 @alert-warning-bg;\n@panel-group-pf-info-heading-bg:                                    lighten(desaturate(spin(@brand-info, 13), 45), 60%);\n@panel-danger-border:                                               @brand-danger;\n@panel-danger-heading-bg:                                           @brand-danger;\n@panel-info-border:                                                 @brand-info;\n@panel-info-heading-bg:                                             @brand-info;\n@panel-primary-border:                                              @brand-primary;\n@panel-primary-text:                                                @body-bg;\n@panel-success-border:                                              @brand-success;\n@panel-success-heading-bg:                                          @brand-success;\n@panel-warning-border:                                              @brand-warning;\n@panel-warning-heading-bg:                                          @brand-warning;\n@state-warning-text:                                                @brand-warning;\n@state-danger-text:                                                 @brand-danger;\n// Reference variable declared in block above\n@panel-danger-text:                                                 @panel-primary-text;\n@panel-info-text:                                                   @panel-primary-text;\n@panel-success-text:                                                @panel-primary-text;\n@panel-warning-text:                                                @panel-primary-text;\n\n// PatternFly-specific variables based on Bootstrap overides\n// ---------------------------------------------------------\n@bootstrap-switch-bg-color:                                         @btn-default-bg;\n@btn-danger-bg-img-start:                                           @brand-danger;\n@btn-danger-bg-img-stop:                                            @btn-danger-bg;\n@btn-primary-bg-img-start:                                          @brand-primary;\n@btn-primary-bg-img-stop:                                           @btn-primary-bg;\n@dropdown-link-focus-bg:                                            @link-color;\n@line-height-computed:                                              floor((@font-size-base * @line-height-base));\n@nav-pf-vertical-icon-size:                                         (@font-size-base + 8);\n@notification-badge-color:                                          @color-pf-blue-400;\n@progress-sm:                                                       (@line-height-computed - 6);\n@progress-xs:                                                       (@line-height-computed - 14);\n@syntax-1:                                                          @btn-danger-bg;\n@syntax-2:                                                          @gray-dark;\n@syntax-3:                                                          @brand-success;\n@syntax-4:                                                          @brand-info;\n@tooltip-font-size:                                                 @font-size-base;\n","//\n// Bootstrap-Datepicker\n// --------------------------------------------------\n\n.bootstrap-datepicker.form-control[readonly] {\n  background-color: @input-bg;\n  border-color: @input-border !important;\n  color: @input-color;\n  .box-shadow(inset 0 1px 1px fade(@color-pf-black, 7.5%));\n  .form-control-outline();\n  &:focus {\n    // TODO Create global variables for validation box shadows?\n    @input-validation-focus-box-shadow: fade(@color-pf-black, 7.5%);\n    border-color: @input-border-focus !important;\n    .has-error & {\n      // TODO Create global variables for validation box shadows?\n      @state-danger-input-focus: lighten(@state-danger-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-danger-input-focus}\";\n      border-color: darken(@state-danger-text, 10%);\n      .box-shadow(@shadow);\n    }\n    .has-success & {\n      // TODO Create global variables for validation box shadows?\n      @state-success-input-focus: lighten(@state-success-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-success-input-focus}\";\n      border-color: darken(@state-success-text, 10%);\n      .box-shadow(@shadow);\n    }\n    .has-warning & {\n      // TODO Create global variables for validation box shadows?\n      @state-warning-input-focus: lighten(@state-warning-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-warning-input-focus}\";\n      border-color: darken(@state-warning-text, 10%);\n      .box-shadow(@shadow);\n    }\n  }\n  &:hover {\n    border-color: @input-border-hover !important;\n    .has-error & {\n      border-color: darken(@state-danger-text, 10%) !important;\n    }\n    .has-success & {\n      border-color: darken(@state-success-text, 10%) !important;\n    }\n    .has-warning & {\n      border-color: darken(@state-warning-text, 10%) !important;\n    }\n  }\n  .has-error & {\n    border-color: @state-danger-text !important;\n  }\n  .has-success & {\n    border-color: @state-success-text !important;\n  }\n  .has-warning & {\n    border-color: @state-warning-text !important;\n  }\n}\n\n.datepicker {\n  border-radius: @border-radius-base;\n  .datepicker-switch,\n  tfoot .clear,\n  tfoot .today {\n    font-size: @font-size-large;\n    font-weight: 500;\n  }\n  .next,\n  .prev {\n    font-weight: 500;\n  }\n  table tr {\n    td,\n    th {\n      border-radius: @border-radius-base;\n    }\n    td {\n      &.active,\n      &.active:hover,\n      &.active.disabled,\n      &.active.disabled:hover {\n        background: @dropdown-link-active-bg !important;\n        color: @color-pf-white !important;\n        text-shadow: none;\n      }\n      &.day:hover,\n      &.day.focused {\n        background: @dropdown-link-hover-bg;\n      }\n      &.selected,\n      &.selected:hover,\n      &.selected.disabled,\n      &.selected.disabled:hover {\n        text-shadow: none;\n      }\n      span {\n        border-radius: @border-radius-base;\n        &.active,\n        &.active:hover,\n        &.active.disabled,\n        &.active.disabled:hover {\n          background: @dropdown-link-active-bg;\n          text-shadow: none;\n        }\n        &:hover {\n          background: @dropdown-link-hover-bg;\n        }\n      }\n    }\n  }\n  thead tr:first-child th,\n  tfoot tr th {\n    &:hover {\n      background: @dropdown-link-hover-bg;\n    }\n  }\n}\n\n.input-daterange {\n  input:first-child {\n    border-radius: @border-radius-base 0 0 @border-radius-base;\n  }\n  input:last-child {\n    border-radius: 0 @border-radius-base @border-radius-base 0;\n  }\n  .input-group-addon {\n    background-color: @input-group-addon-bg;\n    border-color: @input-group-addon-border-color;\n    line-height: @line-height-base;\n    padding: @padding-base-vertical @padding-base-horizontal;\n  }\n}\n","// Mixins - Bootstrap overrides\n// -------------------\n\n// Form control outline\n.form-control-outline(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0 !important;\n    .box-shadow(~\"inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Gradients\n#gradient {\n  .striped(@color: fade(@color-pf-black, 15%); @angle: -45deg) {\n    background-image: linear-gradient(@angle, @color 25%, @color 26%, transparent 27%, transparent 49%, @color 50%, @color 51%, transparent 52%, transparent 74%, @color 75%, @color 76%, transparent 77%);\n  }\n}\n\n// Horizontal dividers\n.nav-divider(@color: @color-pf-black-200, @margin: 4px 1px) {\n  background-color: @color;\n  height: 1px;\n  margin: @margin;\n  overflow: hidden;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  &:-moz-placeholder            { color: @color; font-style: italic; } // Firefox 4-18\n  &::-moz-placeholder           { color: @color; font-style: italic; opacity: 1; } // Firefox 19+\n  &:-ms-input-placeholder       { color: @color; font-style: italic; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; font-style: italic; } // Safari and Chrome\n}\n","//\n// Bootstrap-select\n// --------------------------------------------------\n\n.bootstrap-select.btn-group {\n  &.form-control {\n    margin-bottom: 0;\n  }\n  .btn {\n    // TODO Create global variable for validation state box shadows?\n    @input-validation-focus-box-shadow: fade(@color-pf-black, 7.5%);\n    &:hover {\n      border-color: @input-border-hover;\n    }\n    .caret {\n      margin-top: -4px;\n    }\n    .form-control-outline();\n    .has-error & {\n      border-color: @state-danger-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-danger-input-focus: lighten(@state-danger-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-danger-input-focus}\";\n        border-color: darken(@state-danger-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .has-success & {\n      border-color: @state-success-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-success-input-focus: lighten(@state-success-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-success-input-focus}\";\n        border-color: darken(@state-success-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .has-warning & {\n      border-color: @state-warning-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-warning-input-focus: lighten(@state-warning-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-warning-input-focus}\";\n        border-color: darken(@state-warning-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n  }\n  .dropdown-menu { // Also see navbar.less\n    > .active > a {\n      &,\n      &:active {\n        background-color: @dropdown-link-hover-bg !important;\n        border-color: @dropdown-link-hover-border-color !important;\n        color: @gray-dark !important;\n        small {\n          color: @gray-light !important;\n        }\n      }\n    }\n    > .disabled > a {\n      color: @gray-light !important;\n    }\n    > .selected > a {\n      background-color: @dropdown-link-active-bg !important;\n      border-color: @dropdown-link-active-border-color !important;\n      color: @color-pf-white !important;\n      small {\n        color: fade(@color-pf-white, 50%) !important;\n      }\n    }\n    .divider {\n      background: @dropdown-divider-bg !important;\n      margin: @dropdown-divider-margin !important;\n    }\n    dt {\n      color: @color-pf-black-500;\n      font-weight:normal;\n      padding: 1px 10px;\n    }\n    li {\n      & > a.opt {\n        padding: 1px 10px;\n      }\n      & a {\n        &:active small {\n          color: fade(@color-pf-white, 50%) !important;\n        }\n        &:hover,\n        &:focus {\n          small {\n            color: @gray-light;\n          }\n        }\n      }\n      &:not(.disabled) {\n        a:hover,\n        a:focus {\n          small {\n            color: @gray-light;\n          }\n        }\n      }\n    }\n  }\n}\n","//\n// Bootstrap slider\n// --------------------------------------------------\n// https://github.com/seiyria/bootstrap-slider\n\n\n// Overwrites and fixes to Bootstrap slider\n\n// https //github.com/seiyria/bootstrap-slider/issues/797\n.slider-tick-label-container {\n  display: flex;\n  justify-content: space-between;\n  margin-left: 0!important;\n}\n\n.slider-tick-label {\n  width: auto !important;\n}\n\n.slider {\n  .tooltip {\n    top: -10px;\n  }\n}\n.slider-track {\n  background-color: @color-pf-black-200;\n  box-shadow: inset 0 2px 3px rgba(0, 0, 0, .1), 0 0px 2px @color-pf-black-200;\n  border: 1px solid @color-pf-black-400;\n}\n\n.slider-selection {\n  #gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n}\n\n.slider-handle {\n  width: @slider-line-height;\n  height: @slider-line-height;\n  border: 1px solid @color-pf-black-400; //THIS!\n}\n\n.slider-tick {\n  background-color: transparent !important;\n  background-image:\n    radial-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3) 2px, transparent 2px) !important;\n  .box-shadow(none);\n}\n\n\n// Styles to create the pf slider\n.slider-pf {\n  display: flex;\n  align-items: center;\n\n  * {\n    margin-right: 10px;\n\n    &:last-child {\n      margin: 0;\n    }\n  }\n\n  .slider {\n    width: auto;\n    flex: 1 1 100%;\n  }\n}\n","//\n// Bootstrap Switch\n// --------------------------------------------------\n\n.@{bootstrap-switch-base} {\n  .@{bootstrap-switch-base}-handle-off,\n  .@{bootstrap-switch-base}-handle-on {\n    &.@{bootstrap-switch-base}-default {\n      background: @bootstrap-switch-handle-default-bg-color;\n    }\n  }\n  .@{bootstrap-switch-base}-label {\n    background: @bootstrap-switch-bg-color;\n    box-shadow: 0 0 2px fade(@color-pf-black, 40%);\n    #gradient > .vertical(@bootstrap-switch-bg-color-start, @bootstrap-switch-bg-color-stop);\n    position: relative;\n    z-index: 9;\n  }\n}\n","//\n// Bootstrap Touchspin\n// --------------------------------------------------\n\n.bootstrap-touchspin .input-group-btn-vertical {\n  > .btn {\n    padding-bottom: 6px;\n    padding-top: 6px;\n  }\n  .bootstrap-touchspin-down {\n    border-bottom-right-radius: @border-radius-base;\n  }\n  .bootstrap-touchspin-up {\n    border-top-right-radius: @border-radius-base;\n  }\n  i {\n    font-size: (@font-size-base - 4);\n    left: 6px;\n    top: 2px;\n    &.fa-angle-down,\n    &.fa-angle-up {\n      font-size: @font-size-base;\n      line-height: @font-size-base;\n      top: 0;\n    }\n    &.fa-angle-down,\n    &.fa-angle-up {\n      left: 7px;\n    }\n  }\n}\n","//\n// Bootstrap Tree View\n// --------------------------------------------------\n\n.treeview {\n  .list-group {\n    border-top: 0;\n  }\n  .list-group-item {\n    background: transparent;\n    border-bottom: 1px solid transparent !important;\n    border-top: 1px solid transparent !important;\n    cursor: default !important;\n    margin-bottom: 0;\n    overflow: hidden;\n    padding: 0 10px;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    &:hover {\n      background: none !important;\n    }\n    &.node-selected {\n      background: none !important;\n      border-color: transparent !important;\n      color: inherit !important;\n    }\n    &.node-check-changed {\n      span.node-icon,\n      span.text {\n        color: @bootstrap-treeview-highlight-color;\n      }\n    }\n  }\n  span.icon {\n    display: inline-block;\n    font-size: (@font-size-base + 1);\n    min-width: 10px;\n    text-align: center;\n    > [class*=\"fa-angle\"] {\n      font-size: (@font-size-base + 3);\n    }\n    &.check-icon {\n      margin-right: 10px;\n    }\n    &.expand-icon {\n      cursor: pointer !important;\n    }\n  }\n  span.image {\n    background-repeat: no-repeat;\n    background-size: contain;\n    display: inline-block;\n    height: 1.19em;\n    line-height: 1em;\n    margin-right: 5px;\n    vertical-align: middle;\n    width: 12px;\n  }\n  span.indent {\n    margin-right: 5px;\n  }\n  .node-disabled {\n    color: @color-pf-black-300;\n    cursor: not-allowed;\n    span.expand-icon {\n      cursor: default !important;\n    }\n  }\n  .node-hidden {\n    display:none;\n  }\n}\n\n.treeview-pf-hover .list-group-item {\n  cursor: pointer !important;\n  &:hover {\n    background-color: @dropdown-link-hover-bg !important;\n    border-color: @dropdown-link-hover-border-color !important;\n  }\n}\n\n.treeview-pf-select .list-group-item {\n  cursor: pointer !important;\n  &.node-selected {\n    background: @dropdown-link-active-bg !important;\n    border-color: @dropdown-link-active-border-color !important;\n    color: @dropdown-link-active-color !important;\n  }\n}\n","//\n// Cards\n// --------------------------------------------------\n\n.card-pf {\n  background: @card-pf-bg-color;\n  border-top: 2px solid @card-pf-border-top-color;\n  .box-shadow(0 1px 1px fade(@color-pf-black, 17.5%));\n  margin: 0 (-(@grid-gutter-width / 4)) (@grid-gutter-width / 2);\n  padding: 0 (@grid-gutter-width / 2);\n  &.card-pf-accented {\n    border-top-color: @card-pf-accented-border-top-color;\n  }\n  &.card-pf-aggregate-status {\n    .card-pf-aggregate-status-notifications,\n    .card-pf-title {\n      a {\n        color: @text-color;\n        &.add {\n          color: @link-color;\n          &:hover {\n            color: @link-hover-color;\n          }\n        }\n        &:hover {\n          color: @link-hover-color;\n        }\n      }\n    }\n  }\n  &.card-pf-aggregate-status {\n    padding: 0 (@grid-gutter-width / 4);\n    text-align: center;\n  }\n  &.card-pf-aggregate-status-mini {\n    padding-bottom: (@grid-gutter-width / 4);\n    position: relative;\n  }\n  @media (min-width: @grid-float-breakpoint) {\n    &.card-pf-bleed-left {\n      margin-left: (-(@grid-gutter-width / 2));\n    }\n    &.card-pf-bleed-right {\n      border-right: 1px solid @card-pf-border-color;\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n  }\n}\n\n.card-pf-aggregate-status-notifications {\n  font-size: (@font-size-base * 2); // 24px\n  font-weight: 300;\n  .card-pf-aggregate-status-mini & {\n    line-height: 1;\n  }\n  .card-pf-aggregate-status-notification + .card-pf-aggregate-status-notification {\n    border-left: 1px solid @card-pf-border-color;\n    margin-left: (@grid-gutter-width / 8 - 2);\n    padding-left: (@grid-gutter-width / 4);\n  }\n  .fa, .pficon {\n    font-size: (@font-size-base * 1.5); // 18px\n    margin-right: 7px;\n  }\n}\n\n.card-pf-body {\n  margin: (@grid-gutter-width / 2) 0 0;\n  padding: 0 0 (@grid-gutter-width / 2);\n  .card-pf-aggregate-status & {\n    margin-top: (@grid-gutter-width / 4);\n    padding-bottom: (@grid-gutter-width / 4);\n  }\n  .card-pf-aggregate-status-mini & {\n    margin-bottom: 0;\n    margin-top: 0;\n    padding-bottom: 0;\n    position: absolute;\n    right: (@grid-gutter-width / 2);\n    top: 15px;\n  }\n  .card-pf-utilization .card-pf-title + & {\n    margin-top: -8px;\n  }\n  > *:last-child {\n    margin-bottom: 0;\n  }\n}\n\n.card-pf-footer {\n  background-color: @card-pf-footer-bg-color;\n  border-top: 1px solid @card-pf-border-color;\n  margin: 0 (-(@grid-gutter-width / 2)) !important;\n  padding: (@grid-gutter-width / 2) (@grid-gutter-width / 2) (@grid-gutter-width / 4);\n  a > {\n    .fa,\n    .pficon {\n      margin-right: 5px;\n    }\n  }\n  .card-pf-time-frame-filter {\n    margin-top: -2px;\n  }\n}\n\n.card-pf-link-with-icon {\n  padding-left: 21px;\n  position: relative;\n  .fa,\n  .pficon {\n    font-size: 16px;\n    left: 0;\n    position: absolute;\n    top: 0;\n  }\n}\n\n.card-pf-time-frame-filter {\n  .card-pf-heading &,\n  .card-pf-footer & {\n    float: right;\n    margin-left: 20px;\n  }\n}\n\n.card-pf-heading {\n  border-bottom: 1px solid @card-pf-border-color;\n  margin: 0 (-(@grid-gutter-width / 2)) (@grid-gutter-width / 2);\n  padding: 0 (@grid-gutter-width / 2) 0;\n  & .card-pf-time-frame-filter {\n    margin-top: -5px;\n  }\n}\n\n.card-pf-heading-details {\n  float: right;\n  font-size: (@font-size-small - 1);\n}\n\n.card-pf-subtitle {\n  font-size: @font-size-h3;\n  margin-top: @line-height-computed;\n  margin-bottom: (@line-height-computed / 2);\n  [class^=\"col\"] & {\n    margin-top: 0;\n  }\n  @media (max-width: @screen-xs-max) {\n    .card-pf-body [class^=\"col\"] + [class^=\"col\"] > & {\n      margin-top: (@grid-gutter-width);\n    }\n  }\n}\n\n.card-pf-title {\n  font-size: @font-size-h3;\n  font-weight: 400;\n  margin: (@grid-gutter-width / 2) 0;\n  padding: 0;\n  .card-pf-aggregate-status & {\n    font-size: @font-size-large;\n    margin: (@grid-gutter-width / 4) 0 0;\n    .fa,\n    .pficon {\n      color: @card-pf-aggregate-status-title-icon-color;\n      font-size: @font-size-h3;\n      margin-right: 7px;\n    }\n  }\n  .card-pf-aggregate-status-count {\n    font-size: @font-size-h3;\n    .card-pf-aggregate-status-mini & {\n      display: block;\n      font-size: (@font-size-base * 2); // 24px\n      font-weight: 300;\n      margin-bottom: 3px;\n    }\n  }\n  .card-pf-aggregate-status-mini & {\n    font-size: @font-size-base;\n    margin-top: (@grid-gutter-width / 8);\n    a {\n      display: inline-block;\n    }\n    .fa,\n    .pficon {\n      font-size: (@font-size-base * 2 + 2); // 26px\n      margin-right: 0;\n      min-width: (@font-size-base * 2 + 2); // 26px\n      position: absolute;\n      left: (@grid-gutter-width / 2);\n      text-align: center;\n      top: 15px;\n    }\n  }\n}\n\n.card-pf-utilization-details {\n  border-bottom: 1px solid @card-pf-border-color;\n  display: table;\n  margin: 12px 0 15px;\n  padding: 0 0 15px;\n  width: 100%;\n  .card-pf-utilization-card-details-count,\n  .card-pf-utilization-card-details-description {\n    float: left;\n    line-height: 1;\n  }\n  .card-pf-utilization-card-details-count {\n    font-size: (@font-size-base * 2 + 2); // 26px\n    font-weight: 300;\n    margin-right: 10px;\n  }\n  .card-pf-utilization-card-details-line-1,\n  .card-pf-utilization-card-details-line-2 {\n    display: block;\n  }\n  .card-pf-utilization-card-details-line-1 {\n    font-size: (@font-size-small - 1);\n    margin-bottom: 2px;\n  }\n}\n\n.cards-pf {\n  background: @card-pf-container-bg-color;\n  .row-cards-pf {\n    padding: 0 20px;\n    &:first-child { padding-top: 20px; }\n  }\n}\n\n.container-cards-pf {\n  margin-top: (@grid-gutter-width / 2);\n}\n\n.row-cards-pf {\n  margin-left: (-(@grid-gutter-width / 4));\n  margin-right: (-(@grid-gutter-width / 4));\n}\n","//\n// Card View\n// --------------------------------------------------\n\n.card-pf-view {\n  border: 2px solid transparent;\n  .card-pf-heading-kebab {\n    .dropdown-kebab-pf {\n      margin-top: -3px;\n    }\n    + .progress-pf-legend {\n      p { margin-bottom: 0; }\n      .progress {\n        margin-bottom: 7px;\n        margin-top: 16px;\n      }\n    }\n  }\n  .card-pf-info {\n    margin-top: 15px;\n    strong {\n      font-size: ceil((@font-size-base + 1));\n      margin-right: 10px;\n    }\n  }\n  .card-pf-item {\n    display: inline-block;\n    font-size: @font-size-h3;\n    padding: 0 13px 0 15px;\n    &:first-child { padding-left: 0; }\n    &:last-child { padding-right: 0; }\n    + .card-pf-item { border-left: 1px solid @card-pf-border-color; }\n    .fa-check { color: @brand-success; }\n    .fa,\n    .pficon {\n      + .card-pf-item-text { margin-left: 10px; }\n    }\n  }\n  .card-pf-items { margin-top: 15px; }\n  .card-pf-title {\n    font-size: ceil((@font-size-base * 1.6666));\n    font-weight: 300;\n    margin-bottom: 0;\n    margin-top: 15px;\n    .fa,\n    .pficon {\n      font-size: ceil((@font-size-base * 1.5));\n      margin-right: 2px;\n    }\n    .col-lg-2 & { font-size: @font-size-h3; }\n  }\n  .card-pf-top-element .card-pf-icon-circle {\n    border: 2px solid @color-pf-blue-300;\n    border-radius: 50%;\n    display: block;\n    font-size: 46px;\n    height: 106px;\n    line-height: 102px;\n    margin: 0 auto;\n    text-align: center;\n    width: 106px;\n    .col-lg-2 & {\n      font-size: 23px;\n      height: 54px;\n      line-height: 50px;\n      width: 54px;\n    }\n  }\n  .card-pf-view-checkbox {\n    position: absolute;\n    top: 11px;\n    left: 15px;\n    input[type=checkbox] { display: none; }\n  }\n  &.card-pf-view-multi-select {\n    .card-pf-view-checkbox {\n      input[type=checkbox] {\n        display: block;\n        @media(min-width:@screen-sm-min) {\n          visibility: hidden;\n          &:checked { visibility: visible; }\n        }\n      }\n    }\n    &:hover .card-pf-view-checkbox input[type=checkbox] { visibility: visible; }\n  }\n  &.card-pf-view-select {\n    position: relative;\n    &:hover { .box-shadow(0 1px 6px fade(@color-pf-black, 35%)); }\n    &.active { border: 2px solid @card-pf-selected-border-color; }\n  }\n  &.card-pf-view-single-select { cursor: pointer; }\n  &.card-pf-view-xs {\n    .card-pf-title {\n      font-size: 16px;\n      font-weight: normal;\n      margin-bottom: 10px;\n      .fa,\n      .pficon {\n        font-size: 14px;\n        margin-right: 5px;\n      }\n    }\n  }\n}\n","//\n// Charts\n// --------------------------------------------------\n\n.c3 {\n  path {\n    stroke: @table-border-color;\n  }\n  svg {\n    font-family: @font-family-base;\n  }\n}\n\n.c3-axis-x .tick line {\n  stroke: @table-border-color;\n}\n\n.c3-axis-y .tick line {\n  display: none;\n}\n\n.c3-chart-arc path {\n  stroke: @color-pf-white;\n}\n\n.c3-grid line {\n  stroke: @table-border-color;\n}\n\n.c3-line {\n  stroke-width: 2px;\n}\n\n.c3-tooltip {\n  background: @tooltip-bg;\n  .box-shadow(none);\n  .opacity(@tooltip-opacity);\n\n  td {\n    background: transparent;\n    border: 0;\n    color: @tooltip-color;\n    font-size: @font-size-base;\n    padding: 5px 10px;\n  }\n\n  th {\n    background: transparent;\n    font-size: @font-size-base;\n    padding: 5px 10px 0;\n    border-bottom: solid 2px @color-pf-black;\n  }\n\n  tr {\n    border: 0;\n    + tr > td {\n      padding-top: 0;\n    }\n  }\n}\n\n.c3-tooltip-sparkline,\n.donut-tooltip-pf {\n  background: @tooltip-bg;\n  color: @tooltip-color;\n  .opacity(@tooltip-opacity);\n  padding: 2px 6px;\n}\n\n.c3-xgrid,\n.c3-ygrid {\n  stroke-dasharray: 0 0;\n}\n\n.chart-pf-sparkline {\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.donut-title-big-pf {\n  font-size: @donut-font-size-big;\n  font-weight: 300;\n}\n\n.donut-title-small-pf {\n  font-size: @font-size-base;\n  font-weight: 400;\n}\n\n.line-chart-pf {\n  .c3-zoom-rect {\n    opacity: 1 !important;\n    fill: @color-pf-black-100;\n    stroke: @table-border-color;\n    stroke-width: 1px;\n  }\n}\n\n.pct-donut-chart-pf {\n\n  .pct-donut-chart-pf-label {\n    display: block;\n  }\n\n  &.pct-donut-chart-pf-left,\n  &.pct-donut-chart-pf-right,\n  .pct-donut-chart-pf-left,\n  .pct-donut-chart-pf-right {\n    display: flex;\n    flex-direction: row;\n    justify-content: center;\n    align-items: center;\n  }\n\n  &.pct-donut-chart-pf-left,\n  &.pct-donut-chart-pf-right {\n    display: inline-flex;\n  }\n\n  &.pct-donut-chart-pf-left,\n  .pct-donut-chart-pf-left {\n    flex-direction: row-reverse;\n  }\n}\n\n","//\n// Close icons\n// --------------------------------------------------\n\n//this should no longer be needed and be replaced with pficon-close. This is here for legacy. For further info see https://github.com/patternfly/patternfly/pull/781\n\n.close {\n  text-shadow: none;\n  z-index: 1;\n  position: relative;\n  .opacity(.6);\n  &:hover,\n  &:focus {\n    .opacity(.9);\n  }\n}\n","//\n// Context Selector\n// --------------------------------------------------\n.layout-pf-fixed .navbar-pf-vertical.navbar-pf-contextselector {\n  z-index: @zindex-modal-background;\n}\n.navbar-pf-vertical .nav.contextselector-pf {\n    @media (min-width: @screen-sm-min) {\n      margin-left:@contextselector-pf-margin-left;\n    }\n    border-left:1px solid @color-pf-black-700;\n      .nav-item-iconic {\n        padding:@contextselector-pf-nav-item-iconic-padding;\n        display: flex;\n        align-items: center;\n      }\n  }\n\n  .contextselector-pf {\n    float:left;\n    &-title {\n      width: @contextselector-title-width-mobile;\n      @media (min-width: @screen-xs-min) {\n        width: @contextselector-title-width-desktop;\n      }\n      white-space: nowrap;\n      display:inline-block;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      line-height: normal;\n    }\n    .dropdown {\n      &.open, &:hover {\n        background-color: @navbar-pf-navbar-primary-active-bg-color-stop;\n      }\n    }\n    .dropdown-menu {\n      width: 100%;\n      margin-top:0;\n    }\n    .form-group {\n      margin: @contextselector-pf-form-group-margin;\n    }\n    .contextselector-pf-list {\n      @media (min-width: @screen-sm-min) {\n        max-height: @contextselector-pf-list-max-height;\n        overflow-y: auto;\n      }\n      li {\n        padding: @contextselector-pf-list-li-padding;\n        border-width: @contextselector-pf-list-li-border-width;\n        border-style: solid;\n        border-color: transparent;\n        &:hover {\n          background: @color-pf-blue-50;\n          border-color: @dropdown-link-hover-border-color;\n          a {\n            text-decoration: none;\n          }\n        }\n      }\n      a {\n        color: @color-pf-black-800;\n        display: block;\n      }\n    }\n  }\n","//\n// DataTables\n// --------------------------------------------------\n\n// Deprecated\n.ColVis_Button {\n  &:active {\n    &:focus {\n      outline: none;\n    }\n  }\n}\n\n// Deprecated\n.ColVis_catcher {\n  position: absolute;\n  z-index: 999;\n}\n\n// Deprecated\n.ColVis_collection {\n  background-color: @dropdown-bg;\n  border: 1px solid @dropdown-border;\n  border-radius: @border-radius-base;\n  .box-shadow(0 6px 12px fade(@color-pf-black, 17.5%));\n  background-clip: padding-box;\n  list-style: none;\n  margin: -1px 0 0 0;\n  padding: 5px 10px;\n  width: 150px;\n  z-index: @zindex-dropdown;\n  label {\n    font-weight: normal;\n    margin-bottom: 5px;\n    margin-top: 5px;\n    padding-left: 20px;\n  }\n}\n\n// Deprecated\n.ColVis_collectionBackground {\n  background-color: @color-pf-white;\n  height: 100%;\n  left: 0;\n  position: fixed;\n  top: 0;\n  width: 100%;\n  z-index: 998;\n}\n\n// Note: We won't be using this class with the Patternfly toolbar\n.dataTables_header {\n  background-color: @color-pf-black-150;\n  border: 1px solid @table-border-color;\n  border-bottom: none;\n  padding: 5px;\n  position: relative;\n  text-align: center;\n  .btn {\n    .box-shadow(none);\n  }\n  // Deprecated\n  .ColVis {\n    position: absolute;\n    right: 5px;\n    text-align: left;\n    top: 5px;\n    + .dataTables_info {\n      padding-right: 30px;\n    }\n  }\n  .dataTables_filter {\n    position: absolute;\n    input {\n      border: 1px solid @color-pf-black-400;\n      height: 24px;\n      @media (max-width: @screen-xs-max) {\n        width: 100px;\n      }\n    }\n  }\n  .dataTables_info {\n    padding: 2px 0;\n    @media (max-width: @screen-xs) {\n     text-align: right;\n    }\n    b {\n      font-weight: bold;\n    }\n  }\n}\n\n// Note: We won't be using this class with the table view\n.dataTables_footer {\n  background-color: @color-pf-white;\n  border: 1px solid @table-border-color;\n  border-top: none;\n  overflow: hidden;\n}\n\n// Not in use with latest example: May be used with pagination?\n.dataTables_paginate {\n  background: @color-pf-black-100;\n  float: right;\n  margin: 0;\n  .pagination {\n    float: left;\n    margin: 0;\n    > li {\n      > span {\n        border-color: @color-pf-white @color-pf-black-300 @color-pf-black-150;\n        border-width: 0 1px;\n        font-size: (@font-size-base + 4);\n        font-weight: normal;\n        padding: 0;\n        text-align: center;\n        width: 31px;\n        &:hover,\n        &:focus {\n          .reset-filter();\n        }\n      }\n      &.last > span {\n        border-right: none;\n      }\n      &.disabled > span {\n        background: @color-pf-black-150;\n        border-left-color: @color-pf-black-200;\n        border-right-color: @color-pf-black-200;\n        .reset-filter();\n      }\n    }\n  }\n  .pagination-input {\n    float: left;\n    font-size: @font-size-base;\n    line-height: 1em;\n    padding: 4px 15px 0;\n    text-align: right;\n    .paginate_input {\n      border: 1px solid @color-pf-black-300;\n      .box-shadow(inset 0 1px 1px fade(@color-pf-black, 7.5%));\n      font-size: @font-size-base;\n      font-weight: 600;\n      height: 19px;\n      margin-right: 8px;\n      padding-right: 3px;\n      text-align: right;\n      width: 30px;\n    }\n    .paginate_of {\n      position: relative;\n      b {\n        margin-left: 3px;\n      }\n    }\n  }\n}\n\n.dataTables_empty {\n  background: @table-bg-accent;\n}\n\n/* Might need this for pagination?\n.dataTables_wrapper {\n  margin: @line-height-computed 0;\n  @media (max-width: @screen-xs-max) {\n    .table-responsive {\n      margin-bottom: 0;\n    }\n  }\n}\n*/\n\n// Not in use with latest example: May be used with column reordering?\n.DTCR_clonedTable {\n  background-color: fade(@color-pf-white, 70%);\n  z-index: 202;\n}\n\n// Not in use with latest example: May be used with column reordering?\n.DTCR_pointer {\n  background-color: @link-color;\n  width: 1px;\n  z-index: 201;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n  filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n",".experimental-pf > * {\n  border: 2px solid @color-pf-light-green-400;\n}\n\n.experimental-pf-bar {\n  background-color: @color-pf-light-green-400;\n  border: none;\n  text-align: center;\n  position: relative;\n}\n\n.experimental-pf-more-info {\n  background-color: @color-pf-light-green-400;\n  border: 0;\n  color: @color-pf-black;\n  display: block;\n  width: 100%;\n  padding-top: 10px;\n  padding-bottom: 10px;\n  position: static;\n  @media (min-width: @screen-md-min) {\n    padding: 0 10px;\n    position: absolute;\n    right: 0;\n    top: 0;\n    width: auto;\n  }\n}\n\n.experimental-pf-text {\n  @media (min-width: @screen-md-min) {\n    padding-left: 150px;\n    padding-right: 150px;\n  }\n\n  a {\n    color: @color-pf-black;\n    text-decoration: underline;\n    &:hover {\n      color: @color-pf-black;\n      cursor: pointer;\n    }\n  }\n}\n\n.btn-experimental-pf {\n  .button-variant(@btn-default-color; @color-pf-light-green-400; @color-pf-light-green-300; @color-pf-light-green-400; @color-pf-light-green-400);\n}\n",".filter-pf-category-select {\n  display: flex;\n}\n.filter-pf-category-select-value {\n  border-left-width: 0;\n}\n.filter-pf-category-item {\n  margin-bottom: 5px;\n}\n.filter-pf-category-label {\n  font-weight: 700;\n  margin-right: 5px;\n  padding: 5px 0 6px 5px;\n}\n.filter-pf-select {\n  .caret {\n    position: absolute;\n    top: 50%;\n    right: 10px;\n    transform: translateY(-50%);\n  }\n}\n.filter-pf-select-dropdown {\n  background-color: @color-pf-white;\n  background-image: none;\n  color: @color-pf-black-500;\n  font-size: 12px;\n  font-style: italic;\n  font-weight: 400;\n  padding-right: 25px;\n  text-align: left;\n  .caret {\n    font-style: normal;\n  }\n}\n.filter-pf-active-label {\n  margin-right: 5px;\n}\n","//\n// Footer\n// --------------------------------------------------\n\n.footer-pf-alt, .footer-pf {\n  background-color: @footer-pf-bg-color;\n  color: @gray-light;\n  font-size: @font-size-small;\n  line-height: 17px; // whole px unit to avoid height differences among browsers\n  padding-left: @footer-pf-padding-left;\n  padding-top: @footer-pf-padding-top;\n  .layout-pf-alt-fixed-with-footer &,  .layout-pf-fixed-with-footer & {\n    bottom: 0;\n    left: 0;\n    position: fixed;\n    right: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n}\n","//\n// Icons\n// --------------------------------------------------\n// Custom icons and selections from IcoMoon - Free (http://icomoon.io/#icons)\n\n@font-face {\n  font-family: \"@{icon-font-name-pf}\";\n  src:url(\"@{font-path}/@{icon-font-name-pf}.eot\");\n  src:url(\"@{font-path}/@{icon-font-name-pf}.eot?#iefix\") format(\"embedded-opentype\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.ttf\") format(\"truetype\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.woff\") format(\"woff\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.svg#@{icon-font-name-pf}\") format(\"svg\");\n  font-weight: normal;\n  font-style: normal;\n}\n\n[class^=\"@{icon-prefix}-\"],\n[class*=\" @{icon-prefix}-\"] {\n  display: inline-block;\n  font-family: \"@{icon-font-name-pf}\";\n  font-style: normal;\n  font-variant: normal;\n  font-weight: normal;\n  line-height: 1;\n  speak: none;\n  text-transform: none;\n  /* Better Font Rendering =========== */\n  -moz-osx-font-smoothing: grayscale;\n  -webkit-font-smoothing: antialiased;\n}\n.@{icon-prefix}-add-circle-o:before {\n  content: @pficon-var-add-circle-o;\n}\n.@{icon-prefix}-applications:before {\n  content: @pficon-var-applications;\n}\n.@{icon-prefix}-arrow:before {\n  content: @pficon-var-arrow;\n}\n.@{icon-prefix}-asleep:before {\n  content: @pficon-var-asleep;\n}\n.@{icon-prefix}-automation:before {\n  content: @pficon-var-automation;\n}\n.@{icon-prefix}-build:before {\n  content: @pficon-var-build;\n}\n.@{icon-prefix}-builder-image:before {\n  content: @pficon-var-builder-image;\n}\n.@{icon-prefix}-bundle:before {\n  content: @pficon-var-bundle;\n}\n.@{icon-prefix}-blueprint:before {\n  content: @pficon-var-blueprint;\n}\n.@{icon-prefix}-catalog:before {\n  content: @pficon-var-catalog;\n}\n.@{icon-prefix}-chat:before {\n  content: @pficon-var-chat;\n}\n.@{icon-prefix}-close:before {\n  content: @pficon-var-close;\n}\n.@{icon-prefix}-cloud-security:before {\n  content: @pficon-var-cloud-security;\n}\n.@{icon-prefix}-cloud-tenant:before {\n  content: @pficon-var-cloud-tenant;\n}\n.@{icon-prefix}-cluster:before {\n  content: @pficon-var-cluster;\n}\n.@{icon-prefix}-connected:before {\n  content: @pficon-var-connected;\n}\n.@{icon-prefix}-container-node:before {\n  content: @pficon-var-container-node;\n}\n.@{icon-prefix}-cpu:before {\n  content: @pficon-var-cpu;\n}\n.@{icon-prefix}-degraded:before {\n  content: @pficon-var-degraded;\n}\n.@{icon-prefix}-delete:before {\n  content: @pficon-var-delete;\n}\n.@{icon-prefix}-disconnected:before {\n  content: @pficon-var-disconnected;\n}\n.@{icon-prefix}-domain:before {\n  content: @pficon-var-domain;\n}\n.@{icon-prefix}-edit:before {\n  content: @pficon-var-edit;\n}\n.@{icon-prefix}-enhancement:before {\n  content: @pficon-var-enhancement;\n}\n.@{icon-prefix}-enterprise:before {\n  content: @pficon-var-enterprise;\n}\n.@{icon-prefix}-equalizer:before {\n  content: @pficon-var-equalizer;\n}\n.@{icon-prefix}-error-circle-o:before {\n  color: @brand-danger;\n  content: @pficon-var-error-circle-o;\n}\n.@{icon-prefix}-export:before {\n  content: @pficon-var-export;\n}\n.@{icon-prefix}-flag:before,\n.@{icon-prefix}-messages:before { // class name deprecated\n  content: @pficon-var-flag;\n}\n.@{icon-prefix}-flavor:before {\n  content: @pficon-var-flavor;\n}\n.@{icon-prefix}-filter:before {\n  content: @pficon-var-filter;\n}\n.@{icon-prefix}-folder-close:before {\n  content: @pficon-var-folder-close;\n}\n.@{icon-prefix}-folder-open:before {\n  content: @pficon-var-folder-open;\n}\n.@{icon-prefix}-help:before {\n  content: @pficon-var-help;\n}\n.@{icon-prefix}-history:before {\n  content: @pficon-var-history;\n}\n.@{icon-prefix}-home:before {\n  content: @pficon-var-home;\n}\n.@{icon-prefix}-image:before {\n  content: @pficon-var-image;\n}\n.@{icon-prefix}-import:before {\n  content: @pficon-var-import;\n}\n.@{icon-prefix}-in-progress:before {\n  content: @pficon-var-in-progress;\n}\n.@{icon-prefix}-info:before {\n  content: @pficon-var-info;\n}\n.@{icon-prefix}-infrastructure:before {\n  content: @pficon-var-infrastructure;\n}\n.@{icon-prefix}-integration:before {\n  content: @pficon-var-integration;\n}\n.@{icon-prefix}-key:before {\n  content: @pficon-var-key;\n}\n.@{icon-prefix}-locked:before {\n  content: @pficon-var-locked;\n}\n.@{icon-prefix}-maintenance:before {\n  content: @pficon-var-maintenance;\n}\n.@{icon-prefix}-memory:before {\n  content: @pficon-var-memory;\n}\n.@{icon-prefix}-middleware:before {\n  content: @pficon-var-middleware;\n}\n.@{icon-prefix}-migration:before {\n  content: @pficon-var-migration;\n}\n.@{icon-prefix}-monitoring:before {\n  content: @pficon-var-monitoring;\n}\n.@{icon-prefix}-network:before {\n  content: @pficon-var-network;\n}\n.@{icon-prefix}-network-range:before {\n  content: @pficon-var-network-range;\n}\n.@{icon-prefix}-on:before {\n  content: @pficon-var-on;\n}\n.@{icon-prefix}-on-running:before {\n  content: @pficon-var-on-running;\n}\n.@{icon-prefix}-optimize:before {\n  content: @pficon-var-optimize;\n}\n.@{icon-prefix}-orders:before {\n  content: @pficon-var-orders;\n}\n.@{icon-prefix}-off:before {\n  content: @pficon-var-off;\n}\n.@{icon-prefix}-ok:before {\n  color: @brand-success;\n  content: @pficon-var-ok;\n}\n.@{icon-prefix}-paused:before {\n  content: @pficon-var-paused;\n}\n.@{icon-prefix}-pending:before {\n  content: @pficon-var-pending;\n}\n.@{icon-prefix}-plugged:before {\n  content: @pficon-var-plugged;\n}\n.@{icon-prefix}-port:before {\n  content: @pficon-var-port;\n}\n.@{icon-prefix}-print:before {\n  content: @pficon-var-print;\n}\n.@{icon-prefix}-process-automation:before {\n  content: @pficon-var-process-automation;\n}\n.@{icon-prefix}-private:before {\n  content: @pficon-var-private;\n}\n.@{icon-prefix}-project:before {\n  content: @pficon-var-project;\n}\n.@{icon-prefix}-rebalance:before {\n  content: @pficon-var-rebalance;\n}\n.@{icon-prefix}-rebooting:before {\n  content: @pficon-var-rebooting;\n}\n.@{icon-prefix}-refresh:before, // class name deprecated\n.@{icon-prefix}-restart:before {\n  content: @pficon-var-restart;\n}\n.@{icon-prefix}-regions:before {\n  content: @pficon-var-regions;\n}\n.@{icon-prefix}-registry:before {\n  content: @pficon-var-registry;\n}\n.@{icon-prefix}-remove:before {\n  content: @pficon-var-remove;\n}\n.@{icon-prefix}-replicator:before {\n  content: @pficon-var-replicator;\n}\n.@{icon-prefix}-repository:before {\n  content: @pficon-var-repository;\n}\n.@{icon-prefix}-resource-pool:before {\n  content: @pficon-var-resource-pool;\n}\n.@{icon-prefix}-resources-almost-empty:before {\n  content: @pficon-var-resources-almost-empty;\n}\n.@{icon-prefix}-resources-almost-full:before {\n  content: @pficon-var-resources-almost-full;\n}\n.@{icon-prefix}-resources-full:before {\n  content: @pficon-var-resources-full;\n}\n.@{icon-prefix}-route:before {\n  content: @pficon-var-route;\n}\n.@{icon-prefix}-running:before {\n  content: @pficon-var-running;\n}\n.@{icon-prefix}-satellite:before {\n  content: @pficon-var-satellite;\n}\n.@{icon-prefix}-save:before {\n  content: @pficon-var-save;\n}\n.@{icon-prefix}-screen:before {\n  content: @pficon-var-screen;\n}\n.@{icon-prefix}-search:before {\n  content: @pficon-var-search;\n}\n.@{icon-prefix}-security:before {\n  content: @pficon-var-security;\n}\n.@{icon-prefix}-server:before {\n  content: @pficon-var-server;\n}\n.@{icon-prefix}-server-group:before {\n  content: @pficon-var-server-group;\n}\n.@{icon-prefix}-service:before {\n  content: @pficon-var-service;\n}\n.@{icon-prefix}-services:before {\n  content: @pficon-var-services;\n}\n.@{icon-prefix}-service-catalog:before {\n  content: @pficon-var-service-catalog;\n}\n.@{icon-prefix}-settings:before {\n  content: @pficon-var-settings;\n}\n.@{icon-prefix}-spinner:before {\n  content: @pficon-var-spinner;\n}\n.@{icon-prefix}-spinner2:before {\n  content: @pficon-var-spinner2;\n}\n.@{icon-prefix}-storage-domain:before {\n  content: @pficon-var-storage-domain;\n}\n.@{icon-prefix}-template:before {\n  content: @pficon-var-template;\n}\n.@{icon-prefix}-tenant:before {\n  content: @pficon-var-tenant;\n}\n.@{icon-prefix}-thumb-tack-o:before {\n  content: @pficon-var-thumb-tack-o;\n}\n.@{icon-prefix}-topology:before {\n  content: @pficon-var-topology;\n}\n.@{icon-prefix}-trend-down:before {\n  content: @pficon-var-trend-down;\n}\n.@{icon-prefix}-trend-up:before {\n  content: @pficon-var-trend-up;\n}\n.@{icon-prefix}-unknown:before {\n  content: @pficon-var-unknown;\n}\n.@{icon-prefix}-user:before {\n  content: @pficon-var-user;\n}\n.@{icon-prefix}-users:before {\n  content: @pficon-var-users;\n}\n.@{icon-prefix}-unlocked:before {\n  content: @pficon-var-unlocked;\n}\n.@{icon-prefix}-unplugged:before {\n  content: @pficon-var-unplugged;\n}\n.@{icon-prefix}-vcenter:before {\n  content: @pficon-var-vcenter;\n}\n.@{icon-prefix}-virtual-machine:before {\n  content: @pficon-var-virtual-machine;\n}\n.@{icon-prefix}-volume:before {\n  content: @pficon-var-volume;\n}\n.@{icon-prefix}-warning-triangle-o:before {\n  color: @brand-warning;\n  content: @pficon-var-warning-triangle-o;\n}\n.@{icon-prefix}-zone:before {\n  content: @pficon-var-zone;\n}\n","//\n// Info Tip\n// --------------------------------------------------\n\n// Overwrites for navbar.less\n.navbar-nav > li > .dropdown-menu.infotip {\n  border-top-width: 1px !important;\n  margin-top: @popover-arrow-width;\n}\n\n// Overwrites for PatternFly - navbar.less\n@media (max-width: @grid-float-breakpoint-max) {\n  .navbar-pf .navbar-nav .open .dropdown-menu.infotip {\n    background-color: @color-pf-white !important;\n    margin-top: 0;\n  }\n}\n\n// Extends \"dropdown-menu\"\n.infotip {\n  min-width: 235px;\n  padding: 0;\n  .list-group {\n    border-top: 0;\n    margin: 0;\n    padding: 8px 0;\n    .list-group-item {\n      border: none;\n      margin: 0 15px 0 34px;\n      padding: 5px 0;\n      > .i {\n        color: @gray-pf;\n        font-size: 13px;\n        left: -20px;\n        position: absolute;\n        top: 8px;\n      }\n      > a {\n        color: @gray-pf;\n        line-height: 13px;\n      }\n      > .close {\n        float: right;\n      }\n    }\n  }\n  .footer {\n    background-color: @color-pf-black-150;\n    padding: 6px 15px;\n    a:hover {\n      color: @link-color;\n    }\n  }\n}\n\n// Arrows (Copy from popovers.less)\n//\n// .arrow is outer, .arrow:after is inner\n\n.infotip .arrow {\n  &,\n  &:after {\n    border-color: transparent;\n    border-style: solid;\n    display: block;\n    height: 0;\n    position: absolute;\n    width: 0;\n  }\n}\n.infotip .arrow {\n  border-width: @popover-arrow-outer-width;\n}\n.infotip .arrow:after {\n  border-width: @popover-arrow-width;\n  content: \"\";\n}\n\n.infotip {\n  &.bottom .arrow,\n  &.bottom-left .arrow,\n  &.bottom-right .arrow {\n    border-bottom-color: @popover-arrow-outer-color;\n    border-top-width: 0;\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    top: -@popover-arrow-outer-width;\n    &:after {\n      border-top-width: 0;\n      border-bottom-color: @popover-arrow-color;\n      content: \" \";\n      margin-left: -@popover-arrow-width;\n      top: 1px;\n    }\n  }\n  &.bottom-left .arrow {\n    left: 20%;\n  }\n  // Default:\n  &.bottom-right .arrow {\n    left: 80%;\n  }\n  &.top .arrow {\n    border-bottom-width: 0;\n    border-top-color: @popover-arrow-outer-color;\n    bottom: -@popover-arrow-outer-width;\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    &:after {\n      border-bottom-width: 0;\n      border-top-color: @color-pf-black-150;\n      bottom: 1px;\n      content: \" \";\n      margin-left: -@popover-arrow-width;\n    }\n  }\n  &.right .arrow {\n    border-left-width: 0;\n    border-right-color: @popover-arrow-outer-color;\n    left: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    top: 50%;\n    &:after {\n      bottom: -@popover-arrow-width;\n      border-left-width: 0;\n      border-right-color: @popover-arrow-color;\n      content: \" \";\n      left: 1px;\n    }\n  }\n  &.left .arrow {\n    border-left-color: @popover-arrow-outer-color;\n    border-right-width: 0;\n    margin-top: -@popover-arrow-outer-width;\n    right: -@popover-arrow-outer-width;\n    top: 50%;\n    &:after {\n      border-left-color: @popover-arrow-color;\n      border-right-width: 0;\n      bottom: -@popover-arrow-width;\n      content: \" \";\n      right: 1px;\n    }\n  }\n}\n","//\n// Layouts\n// --------------------------------------------------\n.layout-pf {\n  &,\n  & body {\n    min-height: 100%;\n  }\n  &.layout-pf-fixed {\n    &.transitions .container-pf-nav-pf-vertical {\n      transition: @flyout-transition-pf;\n    }\n    body {\n      padding-top: @navbar-pf-height; // make space for the navbar\n    }\n    .navbar-pf {\n      left: 0;\n      position: fixed;\n      top:0;\n      right: 0;\n      z-index: 1030;\n    }\n    .container-pf-nav-pf-vertical {\n      margin-left: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        margin-left: @nav-pf-vertical-badges-width;\n      }\n      &.collapsed-nav {\n        margin-left: @nav-pf-vertical-collapsed-width;\n        &.hidden-icons-pf {\n          margin-left: 0;\n        }\n      }\n      &.hidden-nav {\n        margin-left: 0; // remove space as left nav is hidden\n      }\n      &.hide-nav-pf {\n        margin-left: 0 !important;\n      }\n      &.collapsed-secondary-nav-pf, &.collapsed-tertiary-nav-pf {\n        margin-left: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          margin-left: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.nav-pf-persistent-secondary.secondary-visible-pf {\n        @media (min-width: 1200px) {\n          margin-left: (@nav-pf-vertical-width + @nav-pf-vertical-width);\n          &.nav-pf-vertical-with-badges {\n            margin-left: (@nav-pf-vertical-badges-width + @nav-pf-vertical-badges-width);\n          }\n          &.hidden-nav {\n            margin-left: 0; // remove space as left nav is hidden\n          }\n          &.collapsed-secondary-nav-pf {\n            margin-left: @nav-pf-vertical-width;\n            &.nav-pf-vertical-with-badges {\n              margin-left: @nav-pf-vertical-badges-width;\n            }\n          }\n          &.collapsed-tertiary-nav-pf {\n            margin-left: @nav-pf-vertical-width;\n            &.nav-pf-vertical-with-badges {\n              margin-left: @nav-pf-vertical-badges-width;\n            }\n          }\n          &.collapsed-nav {\n            margin-left: (@nav-pf-vertical-collapsed-width + @nav-pf-vertical-width);\n            &.nav-pf-vertical-with-badges {\n              margin-left: (@nav-pf-vertical-collapsed-width + @nav-pf-vertical-badges-width);\n            }\n            &.collapsed-secondary-nav-pf {\n              margin-left: @nav-pf-vertical-width;\n              &.nav-pf-vertical-with-badges {\n                margin-left: @nav-pf-vertical-badges-width;\n              }\n            }\n            &.collapsed-tertiary-nav-pf {\n              margin-left: @nav-pf-vertical-width;\n              &.nav-pf-vertical-with-badges {\n                margin-left: @nav-pf-vertical-badges-width;\n              }\n            }\n            &.hidden-icons-pf {\n              margin-left: 0;\n            }\n          }\n        }\n      }\n    }\n  }\n  &.layout-pf-fixed-with-footer {\n    body {\n      padding-bottom: @footer-pf-height;\n    }\n  }\n}\n.layout-pf-alt {\n  &,\n  & body {\n    min-height: 100%;\n  }\n  &.layout-pf-alt-fixed {\n    &.layout-pf-alt-fixed-inner-scroll {\n      &,\n      & body {\n        height: 100%;\n        min-height: 0;\n      }\n      .container-pf-alt-nav-pf-vertical-alt {\n        height: 100%;\n        overflow: auto;\n        &.container-cards-pf {\n          margin-top: 0;\n          padding-top: (@grid-gutter-width/2);\n        }\n      }\n    }\n    &.transitions .container-pf-alt-nav-pf-vertical-alt {\n      transition: @flyout-transition-pf;\n    }\n    body {\n      padding-top: @navbar-pf-alt-height; // make space for the navbar\n    }\n    .container-pf-alt-nav-pf-vertical-alt {\n      margin-left: (@nav-pf-vertical-alt-width);\n      &.collapsed-nav {\n        margin-left: (@nav-pf-vertical-alt-collapsed-width); // adjust space for the collapsed left nav\n      }\n      &.hidden-nav {\n        margin-left: 0; // remove space as left nav is hidden\n      }\n    }\n  }\n  &.layout-pf-alt-fixed-with-footer {\n    body {\n      padding-bottom: @footer-pf-alt-height;\n    }\n  }\n}\n","a.disabled {\n  color: @color-pf-black-500;\n  cursor: @cursor-disabled;\n  text-decoration: none;\n}\n","//\n// PatternFly List\n// --------------------------------------------------\n\n.list-pf {\n  border-bottom: 1px solid @list-pf-border-color;\n}\n\n.list-pf-item {\n  border-color: @list-pf-border-color;\n  border-left-color: @color-pf-white;\n  border-right-color: @color-pf-white;\n  border-style: solid;\n  border-width: 1px;\n  border-bottom: none;\n  &:hover {\n    background-color: @list-pf-hover-background-color;\n  }\n  &.active {\n    background-color: @list-pf-header-background-color;\n    border-color: @list-pf-active-border-color;\n    border-bottom-width: 1px;\n    border-bottom-style: solid;\n  }\n}\n\n.list-pf-expansion {\n  background-color: @color-pf-white;\n}\n\n.list-pf-container {\n  align-items: flex-start;\n  display: flex;\n  padding: @list-pf-padding;\n  .list-pf-expansion & {\n    border-top: 1px solid @list-pf-active-border-color;\n  }\n  // when wide enough, if the list is not stacked, then center items vertically\n  @media (min-width: @screen-md-min) {\n    .list-pf:not(.list-pf-stacked) & {\n      align-items: center;\n    }\n  }\n}\n\n.list-pf-chevron {\n  min-width: 1.2em; // ensures that the width does not shift when the chevron is sideways\n}\n\n.list-pf-chevron,\n.list-pf-select {\n  margin-right: 10px;\n  //add the divider line if there is a chevron or a select\n  + .list-pf-content {\n    border-left: 1px solid @color-pf-black-300;\n    padding-left: (@grid-gutter-width/2);\n  }\n  .fa {\n    font-size: 22px;\n  }\n}\n\n// add this class to manage flexed contents in the list item content\n.list-pf-content-flex {\n  align-items: flex-start;\n  display:flex;\n  flex-grow: 1;\n  flex-wrap: nowrap;\n  justify-content: flex-start;\n  min-width: 0;\n  // when wide enough, if the list is not stacked, then center items vertically\n  @media (min-width: @screen-md-min) {\n    .list-pf:not(.list-pf-stacked) & {\n      align-items: center;\n    }\n  }\n}\n\n.list-pf-left {\n  flex-grow: 0;\n  margin-left: 0;\n  margin-right: (@grid-gutter-width/2);\n}\n.list-pf-icon {\n  align-items: center;\n  display:flex;\n  justify-content: center;\n}\n.list-pf-icon-bordered {\n  border-radius: 50%;\n  border: 2px solid @list-view-accented-border;\n}\n.list-pf-icon-small {\n  font-size: 1.4em;\n  height: 30px;\n  line-height: 30px;\n  width: 30px;\n}\n\n\n.list-pf-content-wrapper {\n  align-items: center;\n  display:flex;\n  flex-grow: 1;\n  flex-wrap: wrap;\n  min-width: 0;\n  // when at larger breakpoints, don't stack the contents and add some space between the children\n  @media (min-width: @screen-md-min) {\n    flex-wrap: nowrap;\n    & > * + * {\n      margin-left: @grid-gutter-width;\n    }\n  }\n  // if the list is stacked, then align the contents to the top\n  .list-pf-stacked & {\n    align-items: flex-start;\n  }\n\n}\n\n.list-pf-main-content {\n  align-items: center;\n  display: flex;\n  flex-basis: @list-pf-main-content-width;\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-wrap: wrap;\n  min-width: 0;\n}\n\n// at larger breakpoints, if the list is not stacked, then don't wrap the main contents and add some space between them\n.list-pf:not(.list-pf-stacked) .list-pf-main-content {\n  @media (min-width: @screen-md-min) {\n      flex-wrap: nowrap;\n      width: auto;\n      & > * + * {\n        margin-left: @grid-gutter-width;\n      }\n  }\n}\n\n// Title and description are break-word wrapped; add .text-overflow-pf to truncate and ellipse instead\n.list-pf-title {\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-basis: 100%;\n  font-weight: bold;\n  min-width: 0;\n  word-wrap: break-word;\n}\n.list-pf-description {\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-basis: 100%;\n  min-width: 0;\n  word-wrap: break-word;\n}\n\n.list-pf-additional-content {\n  display: flex;\n  flex-basis: ((100% - @list-pf-main-content-width) + 1%); // this adjusts the proportions but adding up to > 100% allows for proper wrapping\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-wrap: wrap;\n  justify-content: space-between;\n}\n.list-pf-actions {\n  display: flex;\n  align-items: flex-start;\n  flex-grow: 0;\n  margin-left: @grid-gutter-width;\n  //by default, space contents apart\n  & > * + * {\n    margin-left: (@grid-gutter-width / 4);\n  }\n\n}\n","//\n// List View\n// --------------------------------------------------\n\n\n.list-view-pf {\n  .list-group-item {\n    align-items: flex-start;\n    background-clip: padding-box;\n    border-color: transparent #fff;\n    border-style: solid;\n    border-width: 1px;\n    .clearfix(); //IE9 fallback\n    display: flex;\n    flex-wrap: wrap;\n    padding-bottom: 0;\n    padding-top: 0;\n    &.list-view-pf-expand-active {\n      background-color: @list-view-hover-bg;\n      box-shadow: 0 2px 6px rgba(3, 3, 3, .2);\n      z-index: 1;\n    }\n    &.active {\n      color: @list-group-link-color;\n      background-color: @list-view-active-bg;\n      background-clip: border-box;\n      border-color: @list-view-active-border transparent transparent;\n      z-index:auto;\n    }\n    &:hover {\n      background-color: @list-view-hover-bg;\n      border-left-color: transparent;\n      border-right-color: transparent;\n    }\n    &.list-view-pf-expand-active {\n      border: solid 1px @list-view-active-border;\n      &:first-child {\n        border-top-color: @list-view-active-border;\n      }\n    }\n    &:first-child {\n      border-top: 1px solid transparent;\n    }\n    @media (min-width: @screen-md-min) {\n      align-items: center;\n    }\n  }\n  .list-group-item-heading {\n    font-size: @font-size-h3;\n    small {\n      display: block;\n      font-size: (@font-size-base * .8);\n      font-weight: 400;\n    }\n    @media (min-width: @screen-md-min) {\n      flex:     1 0 ~\"calc(25% - 20px)\";\n      float: left; // IE9 fallback\n      font-size: @font-size-base;\n      margin: 0 (@grid-gutter-width/2) 0 0;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      white-space: nowrap;\n      width: ~\"calc(25% - 20px)\"; // IE9 fallback\n    }\n  }\n  .list-group-item-text {\n    color: currentColor !important; // to overwrite color change when active.\n    margin-bottom: 10px;\n    @media (min-width: @screen-md-min) {\n      flex:     1 0 auto; // it covers whats left from the title\n      float: left; // IE9 fallback\n      margin: 0 @grid-gutter-width 0 0;\n      width: ~\"calc(75% - 40px)\" // IE9 fallback\n    }\n  }\n  .close {\n    float: none;\n    position: absolute;\n    right: 15px;\n  }\n}\n.list-view-pf-actions {\n  float: right; // IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-left: (@grid-gutter-width/2);\n  margin-top: (@grid-gutter-width/2);\n  order: 2;\n  button,\n  > a,\n  .dropdown-kebab-pf {\n    margin-left: (@grid-gutter-width/4);\n  }\n  .list-view-pf-top-align & {\n    align-self: flex-start;\n  }\n}\n.list-view-pf-additional-info {\n  align-items: center;\n  display: flex;\n  flex-wrap: wrap;\n  @media (min-width: @screen-md-min) {\n    flex: 1 0 auto; // it covers whats left from summary\n    float: left; // IE9 fallback\n    width: 50%; // IE9 fallback\n  }\n}\n.list-view-pf-additional-info-item {\n  align-items: center;\n  display: inline-block;\n  display: flex;\n  margin-right: (@grid-gutter-width/2);\n  max-width:100%;\n  text-align: center;\n  &.list-view-pf-additional-info-item-stacked {\n    text-align: center;\n    flex-direction: column;\n    strong {\n      font-size: @font-size-h5;\n      line-height: 1em;\n    }\n  }\n  .pficon, .fa {\n    font-size: @font-size-h3;\n    margin-right: (@grid-gutter-width/4);\n  }\n  strong {\n    font-size: @font-size-h3;\n    font-weight: 600;\n    margin-right: 5px;\n  }\n  &:last-child {\n    margin-right: 0;\n  }\n}\n.list-view-pf-additional-info-item-donut-chart { width: 60px; }\n.list-view-pf-body {\n  align-items: center;\n  display: table-cell; //IE9 fallback\n  flex:     1;\n  min-width: 0;\n  vertical-align: top; //IE9 fallback\n  width: 100%; // IE9 fallback, it extends the cell to size of the container\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    display: flex;\n    flex-direction: row;\n  }\n}\n.list-view-pf-checkbox {\n  border-right: 1px solid @list-view-divider;\n  float: left; //IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-right: 15px;\n  margin-top: (@grid-gutter-width/2);\n  padding: 3px (@grid-gutter-width/4) 3px 0;\n  .list-view-pf-top-align & {\n    align-self: flex-start;\n  }\n}\n.list-view-pf-description {\n  flex:     1 0 50%;\n  .list-view-pf-stacked & {\n    display: block;\n    flex: none; // Fix FF\n  }\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    display: flex;\n    float: left; //IE9 fallback\n    width: 50%; //IE9 fallback\n  }\n}\n.list-view-pf-left {\n  display: table-cell; //IE9 fallback\n  padding-right: (@grid-gutter-width/2);\n  text-align: center;\n  vertical-align: top; //IE9 fallback\n  .list-view-pf-calendar {\n    font-size: @font-size-small;\n    line-height: 1em;\n    strong {\n      display: block;\n      font-size: (@font-size-h2 * 2);\n      font-weight: 300;\n      line-height: 1em;\n    }\n  }\n  .pficon, .fa {\n    border-radius: 50%;\n    font-size: 2em;\n    // -md is out of alpha order to get correct bg on -danger\n    &.list-view-pf-icon-md {\n      background-color: @alert-info-bg;\n      height: 50px;\n      line-height: 50px;\n      width: 50px;\n    }\n    &.list-view-pf-icon-danger {\n      background-color: @alert-danger-bg;\n      color: @alert-danger-border;\n    }\n    &.list-view-pf-icon-info {\n      color: @alert-info-border;\n    }\n    &.list-view-pf-icon-lg {\n      background-color: @alert-info-bg;\n      height: 60px;\n      line-height: 60px;\n      width: 60px;\n    }\n    &.list-view-pf-icon-sm {\n      border: 2px solid @list-view-accented-border;\n      font-size: 1.4em;\n      height: 30px;\n      line-height: 30px;\n      width: 30px;\n      &:before {\n        display: block;\n        line-height: 26px;\n      }\n    }\n    &.list-view-pf-icon-success {\n      background-color: @alert-success-bg;\n      color: @alert-success-border;\n    }\n    &.list-view-pf-icon-warning {\n      background-color: @alert-warning-bg;\n      color: @alert-warning-border;\n    }\n  }\n}\n.list-view-pf-main-info {\n  align-items: flex-start;\n  display: flex;\n  flex: 1;\n  min-width: 0;\n  padding-bottom: (@grid-gutter-width/2);\n  padding-top: (@grid-gutter-width/2);\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    .list-view-pf-top-align & {\n      align-items: flex-start;\n    }\n  }\n}\n.list-view-pf-stacked {\n  .list-group-item-heading {\n    float: none; // IE9 fallback\n    font-size: @font-size-h3;\n    line-height: 1.2em;\n    margin-bottom: 5px;\n    margin-right: @grid-gutter-width;\n    width: auto; // IE9 fallback\n  }\n  .list-group-item-text {\n    float: none;\n    width: auto;\n  }\n}\n.list-view-pf-view {\n  background: @list-group-top-border;\n  border: none;\n  margin-top: 30px;\n}\n.list-group-item-header {\n  box-sizing: content-box;\n  cursor: pointer;\n  margin: 0 -15px;\n  padding: 0 15px; //filling the width of the list item\n  width: 100%;\n}\n.list-view-pf-expand {\n  cursor: pointer;\n  float: left; //IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-right: 2px;\n  margin-top: (@grid-gutter-width/2);\n  padding: 3px 0;\n  &.active,\n  &:hover {\n    color: @link-color;\n  }\n  .list-view-pf-additional-info-item & {\n    margin: 0;\n    padding: 0;\n  }\n  .fa-angle-right {\n    cursor: pointer;\n    font-size: (@font-size-large+3);\n    margin-right: 5px;\n    margin-top: 2px;\n    width: 10px;\n  }\n}\n.list-group-item-container {\n  background: #fff;\n  border-top: solid 1px @list-view-active-border;\n  box-sizing: content-box;\n  margin: -1px -15px 0;\n  order: 3;\n  padding: 15px;\n  position: relative;\n  width: 100%;\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n//    contenteditable attribute is included anywhere else in the document.\n//    Otherwise it causes space to appear at the top and bottom of elements\n//    that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n//    `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n  &:before,\n  &:after {\n    content: \" \"; // 1\n    display: table; // 2\n  }\n  &:after {\n    clear: both;\n  }\n}\n","//\n// List View Drag and Drop\n// See: https://github.com/marceljuenemann/angular-drag-and-drop-lists\n// --------------------------------------------------\n\n.list-view-pf-dnd {\n  // Override dnd styles\n  .dndDragging {\n    &.drag-original {\n      display: none;\n      // Show when dragging original list items\n      .list-view-pf-dnd-original-items {\n        display: block;\n      }\n    }\n    // Show dragable list items during move operation\n    .list-view-pf-dnd-drag-items {\n      display: inline-block;\n    }\n    // Hide original list items during dnd move operation\n    .list-view-pf-dnd-original-items {\n      display: none;\n    }\n  }\n  // Override dnd placeholder element for dragging list items to\n  .dndPlaceholder {\n    background-color: @color-pf-black-200;\n    padding: 20px 0;\n  }\n  // A handle decoration shown to left of each list items row\n  .list-group-item-header {\n    margin-left: -10px;\n    &:before {\n      background-image: linear-gradient(to bottom, @color-pf-blue-400 60%, @color-pf-white 0%);\n      background-position: left;\n      background-repeat: repeat-y;\n      background-size: 2px 5px;\n      border: 4px solid @color-pf-blue-400;\n      border-color: @color-pf-blue-500;\n      content: \"\";\n      height: 55px;\n      left: 4px;\n      position: absolute;\n      top: 5px;\n      width: 10px;\n    }\n  }\n}\n\n// Always hide dragable list items until shown during dnd move operation\n.list-view-pf-dnd-drag-items {\n  display: none;\n}\n","//\n// Login\n// --------------------------------------------------\n\n.login-pf {\n  height: 100%;\n  #brand {\n    position: relative;\n    top: -70px;\n    img {\n      display: block;\n      height: 18px;\n      margin: 0 auto;\n      max-width: 100%;\n      @media (min-width: @screen-sm-min) {\n        margin: 0;\n        text-align: left;\n      }\n    }\n  }\n  #badge {\n    display: block;\n    margin: 20px auto 70px;\n    position: relative;\n    text-align: center;\n    @media (min-width: @screen-sm-min) {\n      float: right;\n      margin-right: 64px;\n      margin-top: 50px;\n    }\n  }\n  body {\n    background: @login-bg-color url(\"@{img-path}/@{img-bg-login}\") repeat-x 50% 0;\n    background-size: auto;\n    @media (min-width: @screen-sm-min) {\n      background-size: 100% auto;\n    }\n  }\n  .container {\n    background-color: @login-container-bg-color-rgba;\n    clear: right;\n    color: @color-pf-white;\n    padding-bottom: 40px;\n    padding-top: 20px;\n    width: auto;\n    @media (min-width: @screen-sm-min) {\n      bottom: 13%;\n      padding-left: 80px;\n      position: absolute;\n      width: 100%;\n    }\n    .details {\n      p:first-child {\n        border-top: 1px solid fade(@color-pf-white, 30%);\n        padding-top: 25px;\n        margin-top: 25px;\n      }\n      @media (min-width: @screen-sm-min) {\n        p:first-child {\n          border-top: 0;\n          padding-top: 0;\n          margin-top: 0;\n        }\n        border-left: 1px solid fade(@color-pf-white, 30%);\n        padding-left: 40px;\n      }\n      p {\n        margin-bottom: 2px;\n      }\n    }\n    .form-horizontal {\n      .control-label {\n        font-size: (@font-size-base + 1);\n        font-weight: 400;\n        text-align: left;\n      }\n      .form-group:last-child {\n        &,\n        .help-block:last-child {\n          margin-bottom: 0;\n        }\n      }\n    }\n    .help-block {\n      color: @color-pf-white;\n    }\n    .login {\n      @media (min-width: @screen-sm-min) {\n        padding-right: 40px;\n      }\n    }\n    .submit {\n      text-align: right;\n    }\n  }\n}\n\n//\n// Login\n// The following styles are for the new login\n// --------------------------------------------------\n.login-pf-page {\n  .login-pf-brand {\n    margin-top: @login-pf-brand-margin-top;\n    max-width:360px;\n    width: 70%;\n    @media (min-width: @screen-sm-min) {\n      margin-top: @login-pf-brand-desktop-margin-top;\n    }\n  }\n  .login-pf-page-header {\n    margin-bottom: @login-pf-page-header-margin-bottom;\n      @media (min-width: @screen-sm-min) {\n        margin-bottom: @login-pf-page-header-desktop-margin-bottom;\n      }\n    text-align: center;\n    p {\n      color: @color-pf-white;\n      font-size: @font-size-large;\n      margin-left: auto;\n      margin-right: auto;\n      margin-top: @login-pf-page-header-paragraph-margin-top;\n    }\n  }\n  .card-pf {\n    padding: @login-pf-card-pf-padding;\n    margin-bottom: 0;\n    @media (min-width: @screen-sm-min) {\n      padding: @login-pf-card-pf-desktop-padding;\n    }\n    p {\n      color: @color-pf-black-600;\n    }\n  }\n  .form-control {\n    height: ceil((@input-height-base + 10px ));\n  }\n  .checkbox-label {\n    color: @color-pf-black-600;\n    font-weight: 300;\n    margin-bottom: @login-pf-checkbox-label-margin-bottom;\n    @media (min-width: @screen-sm-min) {\n      margin: 0;\n    }\n  }\n  .btn-primary {\n    margin-top: @login-pf-btn-primary-margin-top;\n  }\n  .login-pf-header {\n    margin-bottom: @login-pf-header-margin-bottom;\n    @media (min-width: @screen-sm-min) {\n      margin-bottom:@login-pf-header-desktop-margin-bottom;\n    }\n    display:flex;\n    flex-direction: column;\n    h1, p {\n      text-align: center;\n    }\n    h1 {\n      font-size: @font-size-h3;\n      @media (min-width: @screen-sm-min) {\n        font-size: @font-size-h1;\n      }\n    }\n    //this is ugly but neccessary to get the desired style :(\n    .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {\n      width: auto;\n      align-self: flex-end;\n      .dropdown-toggle {\n        color: @color-pf-black-700;\n        background: none;\n        padding:0 @login-pf-dropdown-toggle-padding-right 0 0;\n        font-weight: 300;\n        &:not(:focus) {\n          box-shadow: none;\n          border: 1px solid transparent;\n        }\n          .caret {\n            right: 0;\n          }\n      }\n    }\n  }\n  .login-pf-signup {\n    margin: @login-pf-signup-margin-top 0 0;\n    font-size: ceil((@font-size-base * 1.25));\n    text-align: center;\n    a {\n      margin-left: @login-pf-signup-a-margin-left;\n    }\n  }\n  .login-pf-settings {\n    display: flex;\n    justify-content: space-between;\n    flex-wrap: wrap;\n  }\n  .login-pf-page-footer {\n    display: flex;\n    justify-content: center;\n    flex-wrap:wrap;\n    &-links {\n      display: flex;\n      margin: @login-pf-page-footer-links-margin-top 0 0 0;\n        li:not(:last-of-type) {\n          position: relative;\n          margin: 0 @login-pf-page-footer-links-li-margin-right 0 0;\n            &:after {\n              content:\".\";\n              color: @color-pf-white;\n              position: absolute;\n              top: 0px;\n              right: -10px;\n            }\n        }\n    }\n    &-link {\n      color: @color-pf-white;\n      font-size: @font-size-large;\n    }\n    &-sso-services {\n      flex: 1 0 100%;\n      margin-top: @login-pf-page-footer-sso-margin-top;\n      text-align: center;\n      color: @color-pf-white;\n      &-logos {\n        display: flex;\n        flex-wrap: wrap;\n        padding: 0;\n        margin: 0;\n        list-style: none;\n        justify-content: center;\n          li {\n            margin: 0 @login-pf-page-footer-sso-logos-li-margin @login-pf-page-footer-sso-logos-li-margin;\n          }\n      }\n    }\n  }//login-pf-footer\n\n\n  // The following styles are for the login page with different account options\n  // --------------------------------------------------------------------------\n\n  &.login-pf-page-accounts {\n    margin-left: @login-pf-page-accounts-margin;\n    margin-right: @login-pf-page-accounts-margin;\n  }\n  .login-pf-accounts {\n    display: flex;\n    justify-content: space-between;\n    flex-wrap: wrap;\n    .login-pf-header, .login-pf-signup {\n      flex-basis: 100%;\n    }\n    max-width: @login-pf-card-pf-max-width;\n    margin-left: auto;\n    margin-right: auto;\n  }\n  .login-pf-social-section {\n    flex-basis: 100%;\n    padding:0;\n    @media (min-width: @screen-sm-min) {\n    flex:0 1 50%;\n    max-width:50%;// this is for IE10/11 that doesn't consider padding with box-sizing on flex-children.\n    }\n    @media (min-width: @screen-sm-min) {\n      &:first-of-type {\n        padding-right: @login-pf-accounts-section-heading-desktop-padding-right;\n      }\n      &:last-of-type {\n        padding-left: ceil((@login-pf-accounts-section-heading-desktop-padding-left - 1px));\n        border-left: 1px solid @color-pf-black-300;\n      }\n    }\n  }//social-section\n  .login-pf-social {\n    margin: @login-pf-social-margin;\n    @media (min-width: @screen-sm-min) {\n      margin: 0;\n      &-double-col {\n        flex-wrap: wrap;\n        display: flex;\n        justify-content: space-between;\n        .login-pf-social-link {\n          flex-basis: 48%;\n        }\n      }\n    }\n\n    &:not(.login-pf-social-all) {\n      .login-pf-social-link-more {\n        display: none;\n      }\n    }\n\n    &-link {\n        margin-bottom: @login-pf-accounts-link-margin-bottom;\n      a {\n        display: block;\n        padding: @login-pf-accounts-link-a-padding 0;\n        font-size: @font-size-large;\n        background: @color-pf-black-150;\n        text-align: center;\n        color: @color-pf-black-600;\n          img {\n            margin: 0 @login-pf-accounts-link-img-margin-right 0 0;\n            width: 20px;\n            height: 20px;\n          }\n          &:hover {\n            text-decoration: none;\n            background: @color-pf-black-200;\n          }\n      }\n    }\n    &-toggle {\n      float: right;\n      padding: 0;\n      .caret {\n        margin-left: @login-pf-accounts-more-caret-margin-left;\n      }\n      &-active {\n        .caret {\n          transform: rotate(-180deg);\n        }\n      }\n    }\n  }\n\n}//login-pf-page\n","//\n// Navbar\n// --------------------------------------------------\n\n.navbar-pf {\n  background: @navbar-pf-bg-color;\n  border: 0;\n  border-radius: 0;\n  border-top: 3px solid @navbar-pf-border-color;\n  margin-bottom: 0;\n  min-height: 0;\n  .navbar-brand {\n    color: @navbar-pf-active-color;\n    height: auto;\n    padding: 12px 0;\n    margin: 0 0 0 20px;\n    img {\n      display: block;\n    }\n  }\n  .navbar-collapse {\n    border-top: 0;\n    .box-shadow(none);\n    padding: 0;\n  }\n  .navbar-header {\n    border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n    float: none;\n  }\n  .navbar-nav {\n    margin: 0;\n    > .active > a,\n    > .active > a:hover,\n    > .active > a:focus {\n      background-color: @navbar-pf-navbar-nav-active-bg-color;\n      color: @navbar-pf-active-color;\n    }\n    > li > a {\n      color: @navbar-pf-color;\n      line-height: 1;\n      padding: 10px 20px;\n      text-shadow: none;\n      &:hover,\n      &:focus {\n        color: @navbar-pf-active-color;\n      }\n    }\n    > .open {\n      > a {\n        &,\n        &:hover,\n        &:focus {\n          background-color: @navbar-pf-navbar-nav-active-bg-color;\n          color: @navbar-pf-active-color;\n        }\n      }\n    }\n .badge {\n    background-color: @notification-badge-color;\n    border-radius: 20px;\n    color: @navbar-pf-vertical-active-color;\n    cursor: pointer;\n    font-size: (@font-size-base - 3);\n    font-weight: 700;\n    left: 26px;\n    margin: 0;\n    padding: 2px 4px;\n    position: absolute;\n    min-width: 10px;\n    min-height: 10px;\n    top: 6px;\n    @media(min-width: @screen-sm-min) {\n      left: auto;\n      right: 6px;\n      top: 3px;\n    }\n    &.badge-pf-bordered {\n      border: 1px solid @navbar-pf-bg-color;\n    }\n}\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      .active .dropdown-menu,\n      .active .navbar-persistent,\n      .open .dropdown-menu {\n        background-color: @navbar-pf-navbar-nav-active-active-bg-color !important;\n        margin-left: 0;\n        padding-bottom: 0;\n        padding-top: 0;\n        > .active > a,\n        .dropdown-submenu.open > a {\n          &,\n          &:hover,\n          &:focus {\n            background-color: @navbar-pf-navbar-nav-active-active-open-bg-color !important;\n            color: @navbar-pf-active-color;\n          }\n        }\n        > li > a {\n          background-color: transparent;\n          border: 0;\n          color: @navbar-pf-color;\n          outline: none;\n          padding-left: 30px;\n          &:hover {\n            color: @navbar-pf-active-color;\n          }\n        }\n        .divider {\n          background-color: @navbar-pf-navbar-header-border-color;\n          margin: 0 1px;\n        }\n        .dropdown-header {\n          padding-bottom: 0;\n          padding-left: 30px;\n        }\n        .dropdown-submenu {\n          &.open .dropdown-toggle {\n            color: @navbar-pf-active-color;\n          }\n          &.pull-left {\n            float: none !important;\n          }\n          > a:after {\n            display: none;\n          }\n          .dropdown-header {\n            padding-left: 45px;\n          }\n          .dropdown-menu {\n            border: 0;\n            bottom: auto;\n            .box-shadow(none);\n            display: block;\n            float: none;\n            margin: 0;\n            min-width: 0;\n            padding: 0;\n            position: relative;\n            left: auto;\n            right: auto;\n            top: auto;\n            > li > a {\n              padding: 5px 15px 5px 45px;\n              line-height: 20px;\n            }\n            .dropdown-menu > li > a {\n              padding-left: 60px;\n            }\n          }\n        }\n      }\n      .active .navbar-persistent {\n        .dropdown-submenu {\n          &.open .dropdown-menu {\n            display: block;\n          }\n          > a:after {\n            display: inline-block !important;\n            position: relative;\n            right: auto;\n            top: 1px;\n          }\n          .dropdown-menu {\n            display: none;\n          }\n          .dropdown-submenu > a:after {\n            display: none !important;\n          }\n        }\n      }\n      .context-bootstrap-select { // Also see bootstrap-select.less\n        .open > .dropdown-menu {\n          background-color: @color-pf-white !important;\n          > .active > a {\n            &,\n            &:active {\n              background-color: @dropdown-link-hover-bg !important;\n              border-color: @dropdown-link-hover-border-color !important;\n              color: @gray-dark !important;\n              small {\n                color: @gray-light !important;\n              }\n            }\n          }\n          > .disabled > a {\n            color: @gray-light !important;\n          }\n          > .selected > a {\n            &,\n            &:active {\n              background-color: @dropdown-link-active-bg !important;\n              border-color: @dropdown-link-active-border-color !important;\n              color: @color-pf-white !important;\n              small {\n                color: fade(@color-pf-white, 50%) !important;\n              }\n            }\n          }\n          li {\n            > a.opt {\n              border-bottom: 1px solid transparent;\n              border-top: 1px solid transparent;\n              color: @gray-dark;\n              padding-left: 10px;\n              padding-right: 10px;\n            }\n            & a {\n              &:active small {\n                color: fade(@color-pf-white, 50%) !important;\n              }\n              &:hover,\n              &:focus {\n                small {\n                  color: @gray-light;\n                }\n              }\n            }\n          }\n        }\n        > .open > .dropdown-menu {\n          padding-bottom: 5px;\n          padding-top: 5px;\n        }\n      }\n    }\n  }\n  .navbar-persistent {\n    display: none;\n  }\n  .active > .navbar-persistent {\n    display: block;\n  }\n  .navbar-primary {\n    float: none;\n    .context {\n      border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n      &.context-bootstrap-select .bootstrap-select.btn-group {\n        &,\n        &[class*=\"span\"] {\n          margin: 8px 20px 9px;\n          width: auto; // known bug:  IE8 will make it as wide as the longest string\n        }\n      }\n    }\n    > li > .navbar-persistent > .dropdown-submenu > a {\n      position: relative;\n      &:after {\n        content: @fa-var-angle-down;\n        display: inline-block;\n        font-family: @icon-font-name-fa;\n        font-weight: normal;\n        @media (max-width: @grid-float-breakpoint-max) {\n          height: 10px;\n          margin-left: 4px;\n          vertical-align: baseline;\n        }\n      }\n    }\n  }\n  .navbar-toggle {\n    border: 0;\n    margin: 0;\n    padding: 10px 20px;\n    &:hover,\n    &:focus {\n      background-color: transparent;\n      outline: none;\n      .icon-bar {\n        .box-shadow(0 0 3px @color-pf-white);\n      }\n    }\n    .icon-bar {\n      background-color: @navbar-pf-icon-bar-bg-color;\n    }\n  }\n  .navbar-utility {\n    border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n    li.dropdown > .dropdown-toggle {\n      padding-left: 36px;\n      position: relative;\n      .pficon-user {\n        left: 20px;\n        position: absolute;\n        top: 10px;\n      }\n    }\n    @media (max-width: @grid-float-breakpoint-max) {\n      > li + li {\n        border-top: 1px solid @navbar-pf-navbar-header-border-color;\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-pf {\n    .navbar-brand {\n      padding: @navbar-pf-navbar-navbar-brand-padding;\n    }\n    .navbar-nav > li > a {\n      padding-bottom: 14px;\n      padding-top: 14px;\n    }\n    .navbar-persistent {\n      font-size: @font-size-large;\n    }\n    .navbar-primary {\n      font-size: @font-size-large;\n      #gradient > .vertical(@navbar-pf-navbar-primary-bg-color-start, @navbar-pf-navbar-primary-bg-color-stop);\n      &.persistent-secondary {\n        .context {\n          .dropdown-menu {\n            top: auto;\n          }\n        }\n        .dropup .dropdown-menu {\n          bottom: -5px;\n          top: auto;\n        }\n        > li {\n          position: static;\n          &.active {\n            margin-bottom: 32px;\n            > .navbar-persistent {\n              display: block;\n              left: 0;\n              position: absolute;\n            }\n          }\n          > .navbar-persistent {\n            background: @navbar-pf-navbar-navbar-persistent-bg-color;\n            border-bottom: 1px solid @navbar-pf-navbar-navbar-persistent-border-color;\n            padding: 0;\n            width: 100%;\n            a {\n              text-decoration: none !important;\n            }\n            > li {\n              &.active {\n                &,\n                &:hover {\n                  .tab-indicator(@background: @nav-tabs-active-link-hover-color, @left: 20px, @right: 20px);\n                }\n                > a,\n                > a:hover,\n                &:hover > a {\n                  color: @link-color !important;\n                }\n                .active > a {\n                  color: @navbar-pf-active-color;\n                }\n              }\n              &.dropdown-submenu {\n                &:hover > .dropdown-menu {\n                  display: none;\n                }\n                &.open {\n                  > .dropdown-menu {\n                    display: block;\n                    left: 20px;\n                    margin-top: 1px;\n                    top: 100%;\n                  }\n                  > .dropdown-toggle {\n                    color: @gray-darker;\n                    &:after {\n                      border-top-color: @gray-darker;\n                    }\n                  }\n                }\n                > .dropdown-toggle {\n                  padding-right: 35px !important;\n                  &:after {\n                    position: absolute;\n                    right: 20px;\n                    top: 10px;\n                  }\n                }\n              }\n              &:hover,\n              &.open {\n                .tab-indicator(@left: 20px, @right: 20px);\n                > a {\n                  color: @gray-darker;\n                  &:after {\n                    border-top-color: @gray-darker;\n                  }\n                }\n              }\n              > a {\n                background-color: transparent;\n                display: block;\n                line-height: 1;\n                padding: 9px 20px;\n                &.dropdown-toggle {\n                  padding-right: 35px;\n                  &:after {\n                    font-size: (@font-size-large + 1);\n                    position: absolute;\n                    right: 20px;\n                    top: 9px;\n                  }\n                }\n                &:hover {\n                  color: @gray-darker;\n                }\n              }\n              a {\n                color: @gray-pf;\n              }\n            }\n          }\n        }\n      }\n      > li > a {\n        border-bottom: 1px solid transparent;\n        border-top: 1px solid transparent;\n        position: relative;\n        margin: -1px 0 0;\n        &:hover {\n          background-color: @navbar-pf-navbar-primary-hover-bg-color-stop;\n          border-top-color: @navbar-pf-navbar-primary-hover-border-color;\n          color: @navbar-pf-color;\n          #gradient > .vertical(@navbar-pf-navbar-primary-hover-bg-color-start, @navbar-pf-navbar-primary-hover-bg-color-stop);\n        }\n      }\n      > .active > a,\n      > .active > a:hover,\n      > .active > a:focus,\n      > .open > a,\n      > .open > a:hover,\n      > .open > a:focus {\n        background-color: @navbar-pf-navbar-primary-active-bg-color-stop;\n        border-bottom-color: @navbar-pf-navbar-primary-active-bg-color-stop;\n        border-top-color: @navbar-pf-navbar-primary-active-border-color;\n        .box-shadow(none);\n        color: @navbar-pf-active-color;\n        #gradient > .vertical(@navbar-pf-navbar-primary-active-bg-color-start, @navbar-pf-navbar-primary-active-bg-color-stop);\n      }\n      li.context {\n        &.context-bootstrap-select .filter-option {\n          max-width: 160px;\n          text-overflow: ellipsis;\n        }\n        &.dropdown {\n          border-bottom: 0;\n        }\n        > a,\n        &.context-bootstrap-select {\n          background-color: @navbar-pf-navbar-primary-context-bg-color-stop;\n          border-bottom-color: @navbar-pf-navbar-primary-context-border-color;\n          border-right: 1px solid @navbar-pf-navbar-primary-context-border-color;\n          border-top-color: @navbar-pf-navbar-primary-context-border-top-color;\n          font-weight: 600;\n          #gradient > .vertical(@navbar-pf-navbar-primary-context-bg-color-start, @navbar-pf-navbar-primary-context-bg-color-stop);\n          &:hover {\n            background-color: @navbar-pf-navbar-primary-context-hover-bg-color-stop;\n            border-bottom-color: @navbar-pf-navbar-primary-context-hover-border-color;\n            border-right-color: @navbar-pf-navbar-primary-context-hover-border-color;\n            border-top-color: @navbar-pf-navbar-primary-context-hover-border-top-color;\n            #gradient > .vertical(@navbar-pf-navbar-primary-context-hover-bg-color-start, @navbar-pf-navbar-primary-context-hover-bg-color-stop);\n          }\n        }\n        &.open > a {\n          background-color: @navbar-pf-navbar-primary-context-active-bg-color-stop;\n          border-bottom-color: @navbar-pf-navbar-primary-context-active-border-color;\n          border-right-color: @navbar-pf-navbar-primary-context-active-border-right-color;\n          border-top-color: @navbar-pf-navbar-primary-context-active-border-top-color;\n          #gradient > .vertical(@navbar-pf-navbar-primary-context-active-bg-color-start, @navbar-pf-navbar-primary-context-active-bg-color-stop);\n        }\n      }\n    }\n    .navbar-utility {\n      border-bottom: 0;\n      font-size: @font-size-small;\n      position: absolute;\n      right: 0;\n      top: 0;\n      > .active > a,\n      > .active > a:hover,\n      > .active > a:focus,\n      > .open > a,\n      > .open > a:hover,\n      > .open > a:focus {\n        background: @navbar-pf-navbar-utility-open-bg-color;\n        color: @navbar-pf-navbar-utility-color;\n      }\n      > li > a {\n        border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n        color: @navbar-pf-navbar-utility-color !important;\n        padding: 7px 10px;\n        &:hover {\n          background: @navbar-pf-navbar-utility-hover-bg-color;\n          border-left-color: @navbar-pf-navbar-utility-hover-border-color;\n        }\n      }\n      > li.open > a {\n        border-left-color: @navbar-pf-navbar-utility-open-border-color;\n        color: @navbar-pf-active-color !important;\n      }\n      li.dropdown > .dropdown-toggle {\n        padding-left: 26px;\n        .pficon-user {\n          left: 10px;\n          top: 7px;\n        }\n      }\n      .open .dropdown-menu {\n        left: auto;\n        right: 0;\n        .dropdown-menu {\n          left: auto;\n          right: 100%;\n        }\n      }\n    }\n    .navbar-utility .open .dropdown-menu {\n        border-top-width: 0;\n    }\n    .open {\n      &.bootstrap-select .dropdown-menu,\n      .dropdown-submenu > .dropdown-menu {\n        border-top-width: 1px !important;\n      }\n    }\n  }\n}\n@media (max-width: 360px) {\n  .navbar-pf {\n    .navbar-brand {\n      margin-left: 10px;\n      width: 75%;\n      img {\n        height: auto;\n        max-width: 100%;\n      }\n    }\n    .navbar-toggle {\n      padding-left: 0;\n    }\n  }\n}\n","// Variables\n// --------------------------\n\n@fa-font-path:        \"../fonts\";\n@fa-font-size-base:   14px;\n@fa-line-height-base: 1;\n//@fa-font-path:        \"//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts\"; // for referencing Bootstrap CDN font files directly\n@fa-css-prefix:       fa;\n@fa-version:          \"4.7.0\";\n@fa-border-color:     #eee;\n@fa-inverse:          #fff;\n@fa-li-width:         (30em / 14);\n\n@fa-var-500px: \"\\f26e\";\n@fa-var-address-book: \"\\f2b9\";\n@fa-var-address-book-o: \"\\f2ba\";\n@fa-var-address-card: \"\\f2bb\";\n@fa-var-address-card-o: \"\\f2bc\";\n@fa-var-adjust: \"\\f042\";\n@fa-var-adn: \"\\f170\";\n@fa-var-align-center: \"\\f037\";\n@fa-var-align-justify: \"\\f039\";\n@fa-var-align-left: \"\\f036\";\n@fa-var-align-right: \"\\f038\";\n@fa-var-amazon: \"\\f270\";\n@fa-var-ambulance: \"\\f0f9\";\n@fa-var-american-sign-language-interpreting: \"\\f2a3\";\n@fa-var-anchor: \"\\f13d\";\n@fa-var-android: \"\\f17b\";\n@fa-var-angellist: \"\\f209\";\n@fa-var-angle-double-down: \"\\f103\";\n@fa-var-angle-double-left: \"\\f100\";\n@fa-var-angle-double-right: \"\\f101\";\n@fa-var-angle-double-up: \"\\f102\";\n@fa-var-angle-down: \"\\f107\";\n@fa-var-angle-left: \"\\f104\";\n@fa-var-angle-right: \"\\f105\";\n@fa-var-angle-up: \"\\f106\";\n@fa-var-apple: \"\\f179\";\n@fa-var-archive: \"\\f187\";\n@fa-var-area-chart: \"\\f1fe\";\n@fa-var-arrow-circle-down: \"\\f0ab\";\n@fa-var-arrow-circle-left: \"\\f0a8\";\n@fa-var-arrow-circle-o-down: \"\\f01a\";\n@fa-var-arrow-circle-o-left: \"\\f190\";\n@fa-var-arrow-circle-o-right: \"\\f18e\";\n@fa-var-arrow-circle-o-up: \"\\f01b\";\n@fa-var-arrow-circle-right: \"\\f0a9\";\n@fa-var-arrow-circle-up: \"\\f0aa\";\n@fa-var-arrow-down: \"\\f063\";\n@fa-var-arrow-left: \"\\f060\";\n@fa-var-arrow-right: \"\\f061\";\n@fa-var-arrow-up: \"\\f062\";\n@fa-var-arrows: \"\\f047\";\n@fa-var-arrows-alt: \"\\f0b2\";\n@fa-var-arrows-h: \"\\f07e\";\n@fa-var-arrows-v: \"\\f07d\";\n@fa-var-asl-interpreting: \"\\f2a3\";\n@fa-var-assistive-listening-systems: \"\\f2a2\";\n@fa-var-asterisk: \"\\f069\";\n@fa-var-at: \"\\f1fa\";\n@fa-var-audio-description: \"\\f29e\";\n@fa-var-automobile: \"\\f1b9\";\n@fa-var-backward: \"\\f04a\";\n@fa-var-balance-scale: \"\\f24e\";\n@fa-var-ban: \"\\f05e\";\n@fa-var-bandcamp: \"\\f2d5\";\n@fa-var-bank: \"\\f19c\";\n@fa-var-bar-chart: \"\\f080\";\n@fa-var-bar-chart-o: \"\\f080\";\n@fa-var-barcode: \"\\f02a\";\n@fa-var-bars: \"\\f0c9\";\n@fa-var-bath: \"\\f2cd\";\n@fa-var-bathtub: \"\\f2cd\";\n@fa-var-battery: \"\\f240\";\n@fa-var-battery-0: \"\\f244\";\n@fa-var-battery-1: \"\\f243\";\n@fa-var-battery-2: \"\\f242\";\n@fa-var-battery-3: \"\\f241\";\n@fa-var-battery-4: \"\\f240\";\n@fa-var-battery-empty: \"\\f244\";\n@fa-var-battery-full: \"\\f240\";\n@fa-var-battery-half: \"\\f242\";\n@fa-var-battery-quarter: \"\\f243\";\n@fa-var-battery-three-quarters: \"\\f241\";\n@fa-var-bed: \"\\f236\";\n@fa-var-beer: \"\\f0fc\";\n@fa-var-behance: \"\\f1b4\";\n@fa-var-behance-square: \"\\f1b5\";\n@fa-var-bell: \"\\f0f3\";\n@fa-var-bell-o: \"\\f0a2\";\n@fa-var-bell-slash: \"\\f1f6\";\n@fa-var-bell-slash-o: \"\\f1f7\";\n@fa-var-bicycle: \"\\f206\";\n@fa-var-binoculars: \"\\f1e5\";\n@fa-var-birthday-cake: \"\\f1fd\";\n@fa-var-bitbucket: \"\\f171\";\n@fa-var-bitbucket-square: \"\\f172\";\n@fa-var-bitcoin: \"\\f15a\";\n@fa-var-black-tie: \"\\f27e\";\n@fa-var-blind: \"\\f29d\";\n@fa-var-bluetooth: \"\\f293\";\n@fa-var-bluetooth-b: \"\\f294\";\n@fa-var-bold: \"\\f032\";\n@fa-var-bolt: \"\\f0e7\";\n@fa-var-bomb: \"\\f1e2\";\n@fa-var-book: \"\\f02d\";\n@fa-var-bookmark: \"\\f02e\";\n@fa-var-bookmark-o: \"\\f097\";\n@fa-var-braille: \"\\f2a1\";\n@fa-var-briefcase: \"\\f0b1\";\n@fa-var-btc: \"\\f15a\";\n@fa-var-bug: \"\\f188\";\n@fa-var-building: \"\\f1ad\";\n@fa-var-building-o: \"\\f0f7\";\n@fa-var-bullhorn: \"\\f0a1\";\n@fa-var-bullseye: \"\\f140\";\n@fa-var-bus: \"\\f207\";\n@fa-var-buysellads: \"\\f20d\";\n@fa-var-cab: \"\\f1ba\";\n@fa-var-calculator: \"\\f1ec\";\n@fa-var-calendar: \"\\f073\";\n@fa-var-calendar-check-o: \"\\f274\";\n@fa-var-calendar-minus-o: \"\\f272\";\n@fa-var-calendar-o: \"\\f133\";\n@fa-var-calendar-plus-o: \"\\f271\";\n@fa-var-calendar-times-o: \"\\f273\";\n@fa-var-camera: \"\\f030\";\n@fa-var-camera-retro: \"\\f083\";\n@fa-var-car: \"\\f1b9\";\n@fa-var-caret-down: \"\\f0d7\";\n@fa-var-caret-left: \"\\f0d9\";\n@fa-var-caret-right: \"\\f0da\";\n@fa-var-caret-square-o-down: \"\\f150\";\n@fa-var-caret-square-o-left: \"\\f191\";\n@fa-var-caret-square-o-right: \"\\f152\";\n@fa-var-caret-square-o-up: \"\\f151\";\n@fa-var-caret-up: \"\\f0d8\";\n@fa-var-cart-arrow-down: \"\\f218\";\n@fa-var-cart-plus: \"\\f217\";\n@fa-var-cc: \"\\f20a\";\n@fa-var-cc-amex: \"\\f1f3\";\n@fa-var-cc-diners-club: \"\\f24c\";\n@fa-var-cc-discover: \"\\f1f2\";\n@fa-var-cc-jcb: \"\\f24b\";\n@fa-var-cc-mastercard: \"\\f1f1\";\n@fa-var-cc-paypal: \"\\f1f4\";\n@fa-var-cc-stripe: \"\\f1f5\";\n@fa-var-cc-visa: \"\\f1f0\";\n@fa-var-certificate: \"\\f0a3\";\n@fa-var-chain: \"\\f0c1\";\n@fa-var-chain-broken: \"\\f127\";\n@fa-var-check: \"\\f00c\";\n@fa-var-check-circle: \"\\f058\";\n@fa-var-check-circle-o: \"\\f05d\";\n@fa-var-check-square: \"\\f14a\";\n@fa-var-check-square-o: \"\\f046\";\n@fa-var-chevron-circle-down: \"\\f13a\";\n@fa-var-chevron-circle-left: \"\\f137\";\n@fa-var-chevron-circle-right: \"\\f138\";\n@fa-var-chevron-circle-up: \"\\f139\";\n@fa-var-chevron-down: \"\\f078\";\n@fa-var-chevron-left: \"\\f053\";\n@fa-var-chevron-right: \"\\f054\";\n@fa-var-chevron-up: \"\\f077\";\n@fa-var-child: \"\\f1ae\";\n@fa-var-chrome: \"\\f268\";\n@fa-var-circle: \"\\f111\";\n@fa-var-circle-o: \"\\f10c\";\n@fa-var-circle-o-notch: \"\\f1ce\";\n@fa-var-circle-thin: \"\\f1db\";\n@fa-var-clipboard: \"\\f0ea\";\n@fa-var-clock-o: \"\\f017\";\n@fa-var-clone: \"\\f24d\";\n@fa-var-close: \"\\f00d\";\n@fa-var-cloud: \"\\f0c2\";\n@fa-var-cloud-download: \"\\f0ed\";\n@fa-var-cloud-upload: \"\\f0ee\";\n@fa-var-cny: \"\\f157\";\n@fa-var-code: \"\\f121\";\n@fa-var-code-fork: \"\\f126\";\n@fa-var-codepen: \"\\f1cb\";\n@fa-var-codiepie: \"\\f284\";\n@fa-var-coffee: \"\\f0f4\";\n@fa-var-cog: \"\\f013\";\n@fa-var-cogs: \"\\f085\";\n@fa-var-columns: \"\\f0db\";\n@fa-var-comment: \"\\f075\";\n@fa-var-comment-o: \"\\f0e5\";\n@fa-var-commenting: \"\\f27a\";\n@fa-var-commenting-o: \"\\f27b\";\n@fa-var-comments: \"\\f086\";\n@fa-var-comments-o: \"\\f0e6\";\n@fa-var-compass: \"\\f14e\";\n@fa-var-compress: \"\\f066\";\n@fa-var-connectdevelop: \"\\f20e\";\n@fa-var-contao: \"\\f26d\";\n@fa-var-copy: \"\\f0c5\";\n@fa-var-copyright: \"\\f1f9\";\n@fa-var-creative-commons: \"\\f25e\";\n@fa-var-credit-card: \"\\f09d\";\n@fa-var-credit-card-alt: \"\\f283\";\n@fa-var-crop: \"\\f125\";\n@fa-var-crosshairs: \"\\f05b\";\n@fa-var-css3: \"\\f13c\";\n@fa-var-cube: \"\\f1b2\";\n@fa-var-cubes: \"\\f1b3\";\n@fa-var-cut: \"\\f0c4\";\n@fa-var-cutlery: \"\\f0f5\";\n@fa-var-dashboard: \"\\f0e4\";\n@fa-var-dashcube: \"\\f210\";\n@fa-var-database: \"\\f1c0\";\n@fa-var-deaf: \"\\f2a4\";\n@fa-var-deafness: \"\\f2a4\";\n@fa-var-dedent: \"\\f03b\";\n@fa-var-delicious: \"\\f1a5\";\n@fa-var-desktop: \"\\f108\";\n@fa-var-deviantart: \"\\f1bd\";\n@fa-var-diamond: \"\\f219\";\n@fa-var-digg: \"\\f1a6\";\n@fa-var-dollar: \"\\f155\";\n@fa-var-dot-circle-o: \"\\f192\";\n@fa-var-download: \"\\f019\";\n@fa-var-dribbble: \"\\f17d\";\n@fa-var-drivers-license: \"\\f2c2\";\n@fa-var-drivers-license-o: \"\\f2c3\";\n@fa-var-dropbox: \"\\f16b\";\n@fa-var-drupal: \"\\f1a9\";\n@fa-var-edge: \"\\f282\";\n@fa-var-edit: \"\\f044\";\n@fa-var-eercast: \"\\f2da\";\n@fa-var-eject: \"\\f052\";\n@fa-var-ellipsis-h: \"\\f141\";\n@fa-var-ellipsis-v: \"\\f142\";\n@fa-var-empire: \"\\f1d1\";\n@fa-var-envelope: \"\\f0e0\";\n@fa-var-envelope-o: \"\\f003\";\n@fa-var-envelope-open: \"\\f2b6\";\n@fa-var-envelope-open-o: \"\\f2b7\";\n@fa-var-envelope-square: \"\\f199\";\n@fa-var-envira: \"\\f299\";\n@fa-var-eraser: \"\\f12d\";\n@fa-var-etsy: \"\\f2d7\";\n@fa-var-eur: \"\\f153\";\n@fa-var-euro: \"\\f153\";\n@fa-var-exchange: \"\\f0ec\";\n@fa-var-exclamation: \"\\f12a\";\n@fa-var-exclamation-circle: \"\\f06a\";\n@fa-var-exclamation-triangle: \"\\f071\";\n@fa-var-expand: \"\\f065\";\n@fa-var-expeditedssl: \"\\f23e\";\n@fa-var-external-link: \"\\f08e\";\n@fa-var-external-link-square: \"\\f14c\";\n@fa-var-eye: \"\\f06e\";\n@fa-var-eye-slash: \"\\f070\";\n@fa-var-eyedropper: \"\\f1fb\";\n@fa-var-fa: \"\\f2b4\";\n@fa-var-facebook: \"\\f09a\";\n@fa-var-facebook-f: \"\\f09a\";\n@fa-var-facebook-official: \"\\f230\";\n@fa-var-facebook-square: \"\\f082\";\n@fa-var-fast-backward: \"\\f049\";\n@fa-var-fast-forward: \"\\f050\";\n@fa-var-fax: \"\\f1ac\";\n@fa-var-feed: \"\\f09e\";\n@fa-var-female: \"\\f182\";\n@fa-var-fighter-jet: \"\\f0fb\";\n@fa-var-file: \"\\f15b\";\n@fa-var-file-archive-o: \"\\f1c6\";\n@fa-var-file-audio-o: \"\\f1c7\";\n@fa-var-file-code-o: \"\\f1c9\";\n@fa-var-file-excel-o: \"\\f1c3\";\n@fa-var-file-image-o: \"\\f1c5\";\n@fa-var-file-movie-o: \"\\f1c8\";\n@fa-var-file-o: \"\\f016\";\n@fa-var-file-pdf-o: \"\\f1c1\";\n@fa-var-file-photo-o: \"\\f1c5\";\n@fa-var-file-picture-o: \"\\f1c5\";\n@fa-var-file-powerpoint-o: \"\\f1c4\";\n@fa-var-file-sound-o: \"\\f1c7\";\n@fa-var-file-text: \"\\f15c\";\n@fa-var-file-text-o: \"\\f0f6\";\n@fa-var-file-video-o: \"\\f1c8\";\n@fa-var-file-word-o: \"\\f1c2\";\n@fa-var-file-zip-o: \"\\f1c6\";\n@fa-var-files-o: \"\\f0c5\";\n@fa-var-film: \"\\f008\";\n@fa-var-filter: \"\\f0b0\";\n@fa-var-fire: \"\\f06d\";\n@fa-var-fire-extinguisher: \"\\f134\";\n@fa-var-firefox: \"\\f269\";\n@fa-var-first-order: \"\\f2b0\";\n@fa-var-flag: \"\\f024\";\n@fa-var-flag-checkered: \"\\f11e\";\n@fa-var-flag-o: \"\\f11d\";\n@fa-var-flash: \"\\f0e7\";\n@fa-var-flask: \"\\f0c3\";\n@fa-var-flickr: \"\\f16e\";\n@fa-var-floppy-o: \"\\f0c7\";\n@fa-var-folder: \"\\f07b\";\n@fa-var-folder-o: \"\\f114\";\n@fa-var-folder-open: \"\\f07c\";\n@fa-var-folder-open-o: \"\\f115\";\n@fa-var-font: \"\\f031\";\n@fa-var-font-awesome: \"\\f2b4\";\n@fa-var-fonticons: \"\\f280\";\n@fa-var-fort-awesome: \"\\f286\";\n@fa-var-forumbee: \"\\f211\";\n@fa-var-forward: \"\\f04e\";\n@fa-var-foursquare: \"\\f180\";\n@fa-var-free-code-camp: \"\\f2c5\";\n@fa-var-frown-o: \"\\f119\";\n@fa-var-futbol-o: \"\\f1e3\";\n@fa-var-gamepad: \"\\f11b\";\n@fa-var-gavel: \"\\f0e3\";\n@fa-var-gbp: \"\\f154\";\n@fa-var-ge: \"\\f1d1\";\n@fa-var-gear: \"\\f013\";\n@fa-var-gears: \"\\f085\";\n@fa-var-genderless: \"\\f22d\";\n@fa-var-get-pocket: \"\\f265\";\n@fa-var-gg: \"\\f260\";\n@fa-var-gg-circle: \"\\f261\";\n@fa-var-gift: \"\\f06b\";\n@fa-var-git: \"\\f1d3\";\n@fa-var-git-square: \"\\f1d2\";\n@fa-var-github: \"\\f09b\";\n@fa-var-github-alt: \"\\f113\";\n@fa-var-github-square: \"\\f092\";\n@fa-var-gitlab: \"\\f296\";\n@fa-var-gittip: \"\\f184\";\n@fa-var-glass: \"\\f000\";\n@fa-var-glide: \"\\f2a5\";\n@fa-var-glide-g: \"\\f2a6\";\n@fa-var-globe: \"\\f0ac\";\n@fa-var-google: \"\\f1a0\";\n@fa-var-google-plus: \"\\f0d5\";\n@fa-var-google-plus-circle: \"\\f2b3\";\n@fa-var-google-plus-official: \"\\f2b3\";\n@fa-var-google-plus-square: \"\\f0d4\";\n@fa-var-google-wallet: \"\\f1ee\";\n@fa-var-graduation-cap: \"\\f19d\";\n@fa-var-gratipay: \"\\f184\";\n@fa-var-grav: \"\\f2d6\";\n@fa-var-group: \"\\f0c0\";\n@fa-var-h-square: \"\\f0fd\";\n@fa-var-hacker-news: \"\\f1d4\";\n@fa-var-hand-grab-o: \"\\f255\";\n@fa-var-hand-lizard-o: \"\\f258\";\n@fa-var-hand-o-down: \"\\f0a7\";\n@fa-var-hand-o-left: \"\\f0a5\";\n@fa-var-hand-o-right: \"\\f0a4\";\n@fa-var-hand-o-up: \"\\f0a6\";\n@fa-var-hand-paper-o: \"\\f256\";\n@fa-var-hand-peace-o: \"\\f25b\";\n@fa-var-hand-pointer-o: \"\\f25a\";\n@fa-var-hand-rock-o: \"\\f255\";\n@fa-var-hand-scissors-o: \"\\f257\";\n@fa-var-hand-spock-o: \"\\f259\";\n@fa-var-hand-stop-o: \"\\f256\";\n@fa-var-handshake-o: \"\\f2b5\";\n@fa-var-hard-of-hearing: \"\\f2a4\";\n@fa-var-hashtag: \"\\f292\";\n@fa-var-hdd-o: \"\\f0a0\";\n@fa-var-header: \"\\f1dc\";\n@fa-var-headphones: \"\\f025\";\n@fa-var-heart: \"\\f004\";\n@fa-var-heart-o: \"\\f08a\";\n@fa-var-heartbeat: \"\\f21e\";\n@fa-var-history: \"\\f1da\";\n@fa-var-home: \"\\f015\";\n@fa-var-hospital-o: \"\\f0f8\";\n@fa-var-hotel: \"\\f236\";\n@fa-var-hourglass: \"\\f254\";\n@fa-var-hourglass-1: \"\\f251\";\n@fa-var-hourglass-2: \"\\f252\";\n@fa-var-hourglass-3: \"\\f253\";\n@fa-var-hourglass-end: \"\\f253\";\n@fa-var-hourglass-half: \"\\f252\";\n@fa-var-hourglass-o: \"\\f250\";\n@fa-var-hourglass-start: \"\\f251\";\n@fa-var-houzz: \"\\f27c\";\n@fa-var-html5: \"\\f13b\";\n@fa-var-i-cursor: \"\\f246\";\n@fa-var-id-badge: \"\\f2c1\";\n@fa-var-id-card: \"\\f2c2\";\n@fa-var-id-card-o: \"\\f2c3\";\n@fa-var-ils: \"\\f20b\";\n@fa-var-image: \"\\f03e\";\n@fa-var-imdb: \"\\f2d8\";\n@fa-var-inbox: \"\\f01c\";\n@fa-var-indent: \"\\f03c\";\n@fa-var-industry: \"\\f275\";\n@fa-var-info: \"\\f129\";\n@fa-var-info-circle: \"\\f05a\";\n@fa-var-inr: \"\\f156\";\n@fa-var-instagram: \"\\f16d\";\n@fa-var-institution: \"\\f19c\";\n@fa-var-internet-explorer: \"\\f26b\";\n@fa-var-intersex: \"\\f224\";\n@fa-var-ioxhost: \"\\f208\";\n@fa-var-italic: \"\\f033\";\n@fa-var-joomla: \"\\f1aa\";\n@fa-var-jpy: \"\\f157\";\n@fa-var-jsfiddle: \"\\f1cc\";\n@fa-var-key: \"\\f084\";\n@fa-var-keyboard-o: \"\\f11c\";\n@fa-var-krw: \"\\f159\";\n@fa-var-language: \"\\f1ab\";\n@fa-var-laptop: \"\\f109\";\n@fa-var-lastfm: \"\\f202\";\n@fa-var-lastfm-square: \"\\f203\";\n@fa-var-leaf: \"\\f06c\";\n@fa-var-leanpub: \"\\f212\";\n@fa-var-legal: \"\\f0e3\";\n@fa-var-lemon-o: \"\\f094\";\n@fa-var-level-down: \"\\f149\";\n@fa-var-level-up: \"\\f148\";\n@fa-var-life-bouy: \"\\f1cd\";\n@fa-var-life-buoy: \"\\f1cd\";\n@fa-var-life-ring: \"\\f1cd\";\n@fa-var-life-saver: \"\\f1cd\";\n@fa-var-lightbulb-o: \"\\f0eb\";\n@fa-var-line-chart: \"\\f201\";\n@fa-var-link: \"\\f0c1\";\n@fa-var-linkedin: \"\\f0e1\";\n@fa-var-linkedin-square: \"\\f08c\";\n@fa-var-linode: \"\\f2b8\";\n@fa-var-linux: \"\\f17c\";\n@fa-var-list: \"\\f03a\";\n@fa-var-list-alt: \"\\f022\";\n@fa-var-list-ol: \"\\f0cb\";\n@fa-var-list-ul: \"\\f0ca\";\n@fa-var-location-arrow: \"\\f124\";\n@fa-var-lock: \"\\f023\";\n@fa-var-long-arrow-down: \"\\f175\";\n@fa-var-long-arrow-left: \"\\f177\";\n@fa-var-long-arrow-right: \"\\f178\";\n@fa-var-long-arrow-up: \"\\f176\";\n@fa-var-low-vision: \"\\f2a8\";\n@fa-var-magic: \"\\f0d0\";\n@fa-var-magnet: \"\\f076\";\n@fa-var-mail-forward: \"\\f064\";\n@fa-var-mail-reply: \"\\f112\";\n@fa-var-mail-reply-all: \"\\f122\";\n@fa-var-male: \"\\f183\";\n@fa-var-map: \"\\f279\";\n@fa-var-map-marker: \"\\f041\";\n@fa-var-map-o: \"\\f278\";\n@fa-var-map-pin: \"\\f276\";\n@fa-var-map-signs: \"\\f277\";\n@fa-var-mars: \"\\f222\";\n@fa-var-mars-double: \"\\f227\";\n@fa-var-mars-stroke: \"\\f229\";\n@fa-var-mars-stroke-h: \"\\f22b\";\n@fa-var-mars-stroke-v: \"\\f22a\";\n@fa-var-maxcdn: \"\\f136\";\n@fa-var-meanpath: \"\\f20c\";\n@fa-var-medium: \"\\f23a\";\n@fa-var-medkit: \"\\f0fa\";\n@fa-var-meetup: \"\\f2e0\";\n@fa-var-meh-o: \"\\f11a\";\n@fa-var-mercury: \"\\f223\";\n@fa-var-microchip: \"\\f2db\";\n@fa-var-microphone: \"\\f130\";\n@fa-var-microphone-slash: \"\\f131\";\n@fa-var-minus: \"\\f068\";\n@fa-var-minus-circle: \"\\f056\";\n@fa-var-minus-square: \"\\f146\";\n@fa-var-minus-square-o: \"\\f147\";\n@fa-var-mixcloud: \"\\f289\";\n@fa-var-mobile: \"\\f10b\";\n@fa-var-mobile-phone: \"\\f10b\";\n@fa-var-modx: \"\\f285\";\n@fa-var-money: \"\\f0d6\";\n@fa-var-moon-o: \"\\f186\";\n@fa-var-mortar-board: \"\\f19d\";\n@fa-var-motorcycle: \"\\f21c\";\n@fa-var-mouse-pointer: \"\\f245\";\n@fa-var-music: \"\\f001\";\n@fa-var-navicon: \"\\f0c9\";\n@fa-var-neuter: \"\\f22c\";\n@fa-var-newspaper-o: \"\\f1ea\";\n@fa-var-object-group: \"\\f247\";\n@fa-var-object-ungroup: \"\\f248\";\n@fa-var-odnoklassniki: \"\\f263\";\n@fa-var-odnoklassniki-square: \"\\f264\";\n@fa-var-opencart: \"\\f23d\";\n@fa-var-openid: \"\\f19b\";\n@fa-var-opera: \"\\f26a\";\n@fa-var-optin-monster: \"\\f23c\";\n@fa-var-outdent: \"\\f03b\";\n@fa-var-pagelines: \"\\f18c\";\n@fa-var-paint-brush: \"\\f1fc\";\n@fa-var-paper-plane: \"\\f1d8\";\n@fa-var-paper-plane-o: \"\\f1d9\";\n@fa-var-paperclip: \"\\f0c6\";\n@fa-var-paragraph: \"\\f1dd\";\n@fa-var-paste: \"\\f0ea\";\n@fa-var-pause: \"\\f04c\";\n@fa-var-pause-circle: \"\\f28b\";\n@fa-var-pause-circle-o: \"\\f28c\";\n@fa-var-paw: \"\\f1b0\";\n@fa-var-paypal: \"\\f1ed\";\n@fa-var-pencil: \"\\f040\";\n@fa-var-pencil-square: \"\\f14b\";\n@fa-var-pencil-square-o: \"\\f044\";\n@fa-var-percent: \"\\f295\";\n@fa-var-phone: \"\\f095\";\n@fa-var-phone-square: \"\\f098\";\n@fa-var-photo: \"\\f03e\";\n@fa-var-picture-o: \"\\f03e\";\n@fa-var-pie-chart: \"\\f200\";\n@fa-var-pied-piper: \"\\f2ae\";\n@fa-var-pied-piper-alt: \"\\f1a8\";\n@fa-var-pied-piper-pp: \"\\f1a7\";\n@fa-var-pinterest: \"\\f0d2\";\n@fa-var-pinterest-p: \"\\f231\";\n@fa-var-pinterest-square: \"\\f0d3\";\n@fa-var-plane: \"\\f072\";\n@fa-var-play: \"\\f04b\";\n@fa-var-play-circle: \"\\f144\";\n@fa-var-play-circle-o: \"\\f01d\";\n@fa-var-plug: \"\\f1e6\";\n@fa-var-plus: \"\\f067\";\n@fa-var-plus-circle: \"\\f055\";\n@fa-var-plus-square: \"\\f0fe\";\n@fa-var-plus-square-o: \"\\f196\";\n@fa-var-podcast: \"\\f2ce\";\n@fa-var-power-off: \"\\f011\";\n@fa-var-print: \"\\f02f\";\n@fa-var-product-hunt: \"\\f288\";\n@fa-var-puzzle-piece: \"\\f12e\";\n@fa-var-qq: \"\\f1d6\";\n@fa-var-qrcode: \"\\f029\";\n@fa-var-question: \"\\f128\";\n@fa-var-question-circle: \"\\f059\";\n@fa-var-question-circle-o: \"\\f29c\";\n@fa-var-quora: \"\\f2c4\";\n@fa-var-quote-left: \"\\f10d\";\n@fa-var-quote-right: \"\\f10e\";\n@fa-var-ra: \"\\f1d0\";\n@fa-var-random: \"\\f074\";\n@fa-var-ravelry: \"\\f2d9\";\n@fa-var-rebel: \"\\f1d0\";\n@fa-var-recycle: \"\\f1b8\";\n@fa-var-reddit: \"\\f1a1\";\n@fa-var-reddit-alien: \"\\f281\";\n@fa-var-reddit-square: \"\\f1a2\";\n@fa-var-refresh: \"\\f021\";\n@fa-var-registered: \"\\f25d\";\n@fa-var-remove: \"\\f00d\";\n@fa-var-renren: \"\\f18b\";\n@fa-var-reorder: \"\\f0c9\";\n@fa-var-repeat: \"\\f01e\";\n@fa-var-reply: \"\\f112\";\n@fa-var-reply-all: \"\\f122\";\n@fa-var-resistance: \"\\f1d0\";\n@fa-var-retweet: \"\\f079\";\n@fa-var-rmb: \"\\f157\";\n@fa-var-road: \"\\f018\";\n@fa-var-rocket: \"\\f135\";\n@fa-var-rotate-left: \"\\f0e2\";\n@fa-var-rotate-right: \"\\f01e\";\n@fa-var-rouble: \"\\f158\";\n@fa-var-rss: \"\\f09e\";\n@fa-var-rss-square: \"\\f143\";\n@fa-var-rub: \"\\f158\";\n@fa-var-ruble: \"\\f158\";\n@fa-var-rupee: \"\\f156\";\n@fa-var-s15: \"\\f2cd\";\n@fa-var-safari: \"\\f267\";\n@fa-var-save: \"\\f0c7\";\n@fa-var-scissors: \"\\f0c4\";\n@fa-var-scribd: \"\\f28a\";\n@fa-var-search: \"\\f002\";\n@fa-var-search-minus: \"\\f010\";\n@fa-var-search-plus: \"\\f00e\";\n@fa-var-sellsy: \"\\f213\";\n@fa-var-send: \"\\f1d8\";\n@fa-var-send-o: \"\\f1d9\";\n@fa-var-server: \"\\f233\";\n@fa-var-share: \"\\f064\";\n@fa-var-share-alt: \"\\f1e0\";\n@fa-var-share-alt-square: \"\\f1e1\";\n@fa-var-share-square: \"\\f14d\";\n@fa-var-share-square-o: \"\\f045\";\n@fa-var-shekel: \"\\f20b\";\n@fa-var-sheqel: \"\\f20b\";\n@fa-var-shield: \"\\f132\";\n@fa-var-ship: \"\\f21a\";\n@fa-var-shirtsinbulk: \"\\f214\";\n@fa-var-shopping-bag: \"\\f290\";\n@fa-var-shopping-basket: \"\\f291\";\n@fa-var-shopping-cart: \"\\f07a\";\n@fa-var-shower: \"\\f2cc\";\n@fa-var-sign-in: \"\\f090\";\n@fa-var-sign-language: \"\\f2a7\";\n@fa-var-sign-out: \"\\f08b\";\n@fa-var-signal: \"\\f012\";\n@fa-var-signing: \"\\f2a7\";\n@fa-var-simplybuilt: \"\\f215\";\n@fa-var-sitemap: \"\\f0e8\";\n@fa-var-skyatlas: \"\\f216\";\n@fa-var-skype: \"\\f17e\";\n@fa-var-slack: \"\\f198\";\n@fa-var-sliders: \"\\f1de\";\n@fa-var-slideshare: \"\\f1e7\";\n@fa-var-smile-o: \"\\f118\";\n@fa-var-snapchat: \"\\f2ab\";\n@fa-var-snapchat-ghost: \"\\f2ac\";\n@fa-var-snapchat-square: \"\\f2ad\";\n@fa-var-snowflake-o: \"\\f2dc\";\n@fa-var-soccer-ball-o: \"\\f1e3\";\n@fa-var-sort: \"\\f0dc\";\n@fa-var-sort-alpha-asc: \"\\f15d\";\n@fa-var-sort-alpha-desc: \"\\f15e\";\n@fa-var-sort-amount-asc: \"\\f160\";\n@fa-var-sort-amount-desc: \"\\f161\";\n@fa-var-sort-asc: \"\\f0de\";\n@fa-var-sort-desc: \"\\f0dd\";\n@fa-var-sort-down: \"\\f0dd\";\n@fa-var-sort-numeric-asc: \"\\f162\";\n@fa-var-sort-numeric-desc: \"\\f163\";\n@fa-var-sort-up: \"\\f0de\";\n@fa-var-soundcloud: \"\\f1be\";\n@fa-var-space-shuttle: \"\\f197\";\n@fa-var-spinner: \"\\f110\";\n@fa-var-spoon: \"\\f1b1\";\n@fa-var-spotify: \"\\f1bc\";\n@fa-var-square: \"\\f0c8\";\n@fa-var-square-o: \"\\f096\";\n@fa-var-stack-exchange: \"\\f18d\";\n@fa-var-stack-overflow: \"\\f16c\";\n@fa-var-star: \"\\f005\";\n@fa-var-star-half: \"\\f089\";\n@fa-var-star-half-empty: \"\\f123\";\n@fa-var-star-half-full: \"\\f123\";\n@fa-var-star-half-o: \"\\f123\";\n@fa-var-star-o: \"\\f006\";\n@fa-var-steam: \"\\f1b6\";\n@fa-var-steam-square: \"\\f1b7\";\n@fa-var-step-backward: \"\\f048\";\n@fa-var-step-forward: \"\\f051\";\n@fa-var-stethoscope: \"\\f0f1\";\n@fa-var-sticky-note: \"\\f249\";\n@fa-var-sticky-note-o: \"\\f24a\";\n@fa-var-stop: \"\\f04d\";\n@fa-var-stop-circle: \"\\f28d\";\n@fa-var-stop-circle-o: \"\\f28e\";\n@fa-var-street-view: \"\\f21d\";\n@fa-var-strikethrough: \"\\f0cc\";\n@fa-var-stumbleupon: \"\\f1a4\";\n@fa-var-stumbleupon-circle: \"\\f1a3\";\n@fa-var-subscript: \"\\f12c\";\n@fa-var-subway: \"\\f239\";\n@fa-var-suitcase: \"\\f0f2\";\n@fa-var-sun-o: \"\\f185\";\n@fa-var-superpowers: \"\\f2dd\";\n@fa-var-superscript: \"\\f12b\";\n@fa-var-support: \"\\f1cd\";\n@fa-var-table: \"\\f0ce\";\n@fa-var-tablet: \"\\f10a\";\n@fa-var-tachometer: \"\\f0e4\";\n@fa-var-tag: \"\\f02b\";\n@fa-var-tags: \"\\f02c\";\n@fa-var-tasks: \"\\f0ae\";\n@fa-var-taxi: \"\\f1ba\";\n@fa-var-telegram: \"\\f2c6\";\n@fa-var-television: \"\\f26c\";\n@fa-var-tencent-weibo: \"\\f1d5\";\n@fa-var-terminal: \"\\f120\";\n@fa-var-text-height: \"\\f034\";\n@fa-var-text-width: \"\\f035\";\n@fa-var-th: \"\\f00a\";\n@fa-var-th-large: \"\\f009\";\n@fa-var-th-list: \"\\f00b\";\n@fa-var-themeisle: \"\\f2b2\";\n@fa-var-thermometer: \"\\f2c7\";\n@fa-var-thermometer-0: \"\\f2cb\";\n@fa-var-thermometer-1: \"\\f2ca\";\n@fa-var-thermometer-2: \"\\f2c9\";\n@fa-var-thermometer-3: \"\\f2c8\";\n@fa-var-thermometer-4: \"\\f2c7\";\n@fa-var-thermometer-empty: \"\\f2cb\";\n@fa-var-thermometer-full: \"\\f2c7\";\n@fa-var-thermometer-half: \"\\f2c9\";\n@fa-var-thermometer-quarter: \"\\f2ca\";\n@fa-var-thermometer-three-quarters: \"\\f2c8\";\n@fa-var-thumb-tack: \"\\f08d\";\n@fa-var-thumbs-down: \"\\f165\";\n@fa-var-thumbs-o-down: \"\\f088\";\n@fa-var-thumbs-o-up: \"\\f087\";\n@fa-var-thumbs-up: \"\\f164\";\n@fa-var-ticket: \"\\f145\";\n@fa-var-times: \"\\f00d\";\n@fa-var-times-circle: \"\\f057\";\n@fa-var-times-circle-o: \"\\f05c\";\n@fa-var-times-rectangle: \"\\f2d3\";\n@fa-var-times-rectangle-o: \"\\f2d4\";\n@fa-var-tint: \"\\f043\";\n@fa-var-toggle-down: \"\\f150\";\n@fa-var-toggle-left: \"\\f191\";\n@fa-var-toggle-off: \"\\f204\";\n@fa-var-toggle-on: \"\\f205\";\n@fa-var-toggle-right: \"\\f152\";\n@fa-var-toggle-up: \"\\f151\";\n@fa-var-trademark: \"\\f25c\";\n@fa-var-train: \"\\f238\";\n@fa-var-transgender: \"\\f224\";\n@fa-var-transgender-alt: \"\\f225\";\n@fa-var-trash: \"\\f1f8\";\n@fa-var-trash-o: \"\\f014\";\n@fa-var-tree: \"\\f1bb\";\n@fa-var-trello: \"\\f181\";\n@fa-var-tripadvisor: \"\\f262\";\n@fa-var-trophy: \"\\f091\";\n@fa-var-truck: \"\\f0d1\";\n@fa-var-try: \"\\f195\";\n@fa-var-tty: \"\\f1e4\";\n@fa-var-tumblr: \"\\f173\";\n@fa-var-tumblr-square: \"\\f174\";\n@fa-var-turkish-lira: \"\\f195\";\n@fa-var-tv: \"\\f26c\";\n@fa-var-twitch: \"\\f1e8\";\n@fa-var-twitter: \"\\f099\";\n@fa-var-twitter-square: \"\\f081\";\n@fa-var-umbrella: \"\\f0e9\";\n@fa-var-underline: \"\\f0cd\";\n@fa-var-undo: \"\\f0e2\";\n@fa-var-universal-access: \"\\f29a\";\n@fa-var-university: \"\\f19c\";\n@fa-var-unlink: \"\\f127\";\n@fa-var-unlock: \"\\f09c\";\n@fa-var-unlock-alt: \"\\f13e\";\n@fa-var-unsorted: \"\\f0dc\";\n@fa-var-upload: \"\\f093\";\n@fa-var-usb: \"\\f287\";\n@fa-var-usd: \"\\f155\";\n@fa-var-user: \"\\f007\";\n@fa-var-user-circle: \"\\f2bd\";\n@fa-var-user-circle-o: \"\\f2be\";\n@fa-var-user-md: \"\\f0f0\";\n@fa-var-user-o: \"\\f2c0\";\n@fa-var-user-plus: \"\\f234\";\n@fa-var-user-secret: \"\\f21b\";\n@fa-var-user-times: \"\\f235\";\n@fa-var-users: \"\\f0c0\";\n@fa-var-vcard: \"\\f2bb\";\n@fa-var-vcard-o: \"\\f2bc\";\n@fa-var-venus: \"\\f221\";\n@fa-var-venus-double: \"\\f226\";\n@fa-var-venus-mars: \"\\f228\";\n@fa-var-viacoin: \"\\f237\";\n@fa-var-viadeo: \"\\f2a9\";\n@fa-var-viadeo-square: \"\\f2aa\";\n@fa-var-video-camera: \"\\f03d\";\n@fa-var-vimeo: \"\\f27d\";\n@fa-var-vimeo-square: \"\\f194\";\n@fa-var-vine: \"\\f1ca\";\n@fa-var-vk: \"\\f189\";\n@fa-var-volume-control-phone: \"\\f2a0\";\n@fa-var-volume-down: \"\\f027\";\n@fa-var-volume-off: \"\\f026\";\n@fa-var-volume-up: \"\\f028\";\n@fa-var-warning: \"\\f071\";\n@fa-var-wechat: \"\\f1d7\";\n@fa-var-weibo: \"\\f18a\";\n@fa-var-weixin: \"\\f1d7\";\n@fa-var-whatsapp: \"\\f232\";\n@fa-var-wheelchair: \"\\f193\";\n@fa-var-wheelchair-alt: \"\\f29b\";\n@fa-var-wifi: \"\\f1eb\";\n@fa-var-wikipedia-w: \"\\f266\";\n@fa-var-window-close: \"\\f2d3\";\n@fa-var-window-close-o: \"\\f2d4\";\n@fa-var-window-maximize: \"\\f2d0\";\n@fa-var-window-minimize: \"\\f2d1\";\n@fa-var-window-restore: \"\\f2d2\";\n@fa-var-windows: \"\\f17a\";\n@fa-var-won: \"\\f159\";\n@fa-var-wordpress: \"\\f19a\";\n@fa-var-wpbeginner: \"\\f297\";\n@fa-var-wpexplorer: \"\\f2de\";\n@fa-var-wpforms: \"\\f298\";\n@fa-var-wrench: \"\\f0ad\";\n@fa-var-xing: \"\\f168\";\n@fa-var-xing-square: \"\\f169\";\n@fa-var-y-combinator: \"\\f23b\";\n@fa-var-y-combinator-square: \"\\f1d4\";\n@fa-var-yahoo: \"\\f19e\";\n@fa-var-yc: \"\\f23b\";\n@fa-var-yc-square: \"\\f1d4\";\n@fa-var-yelp: \"\\f1e9\";\n@fa-var-yen: \"\\f157\";\n@fa-var-yoast: \"\\f2b1\";\n@fa-var-youtube: \"\\f167\";\n@fa-var-youtube-play: \"\\f16a\";\n@fa-var-youtube-square: \"\\f166\";\n\n","//\n// Navbar Alt\n// --------------------------------------------------\n\n.navbar-pf-alt {\n  background-color: @navbar-pf-alt-bg-color;\n  background-image: @navbar-pf-alt-bg-img;\n  background-repeat: @navbar-pf-alt-bg-repeat;\n  background-size: @navbar-pf-alt-bg-size;\n  border: none;\n  border-radius: 0;\n  border-top: @navbar-pf-alt-border-width @navbar-pf-alt-border-style @navbar-pf-alt-border-color;\n  margin-bottom: 0;\n\n  .infotip.bottom-right .arrow {\n    left: 90%;\n  }\n\n  .layout-pf-alt-fixed & {\n    left: 0;\n    position: fixed;\n    right: 0;\n    top: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n\n  .nav {\n    &.navbar-nav > li > .dropdown-menu.infotip {\n      margin-top: 0;\n    }\n\n    .nav-item-iconic {\n      cursor: pointer;\n      line-height: 1;\n      max-height: (@navbar-pf-alt-height - @navbar-pf-alt-border-width); // to keep Firefox from oversizing icons\n      padding: @navbar-pf-alt-nav-item-iconic-padding;\n      position: relative;\n\n      &:hover,\n      &:focus {\n        background-color: transparent;\n\n        .caret,\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @navbar-pf-alt-active-color;\n        }\n      }\n\n      .badge {\n        background-color: @notification-badge-color;\n        border-radius: 20px;\n        color: @navbar-pf-alt-active-color;\n        cursor: pointer;\n        font-size: (@font-size-base - 3);\n        font-weight: 700;\n        margin: 0 0 -11px -12px;\n        min-width: 0;\n        padding: 2px 4px;\n      }\n\n      .caret,\n      .fa,\n      .pficon {\n        color: @navbar-pf-alt-color;\n        font-size: (@font-size-base + 4);\n      }\n\n      .caret {\n        font-size: @font-size-base;\n        width: auto;\n      }\n\n    }\n\n    .open > .nav-item-iconic {\n      &,\n      &:hover,\n      &:focus {\n        background: transparent;\n\n        .caret,\n        .fa,\n        .pficon {\n          color: @navbar-pf-alt-active-color;\n        }\n      }\n    }\n  }\n\n  .navbar-brand {\n    color: @navbar-pf-alt-navbar-brand-color;\n    height: auto;\n    margin: @navbar-pf-alt-navbar-brand-margin;\n    min-height: @navbar-pf-alt-navbar-brand-min-height;\n    padding: @navbar-pf-alt-navbar-brand-padding;\n\n    .navbar-brand-name {\n      display: inline;\n      margin-left: @navbar-pf-alt-navbar-brand-name-margin;\n      margin-right: @navbar-pf-alt-navbar-brand-name-margin;\n      // hide once screen gets too small\n      @media (max-width: @navbar-pf-alt-navbar-brand-name-breakpoint) {\n        display: none;\n      }\n    }\n\n    .navbar-brand-icon {\n      display: inline;\n      margin-left: @navbar-pf-alt-navbar-brand-icon-margin;\n      margin-right: @navbar-pf-alt-navbar-brand-icon-margin;\n    }\n  }\n\n  .navbar-iconic {\n    margin-right: 0;\n  }\n\n  .navbar-toggle {\n    border: 0;\n    display: block;\n    float: left;\n    margin: @navbar-pf-alt-navbar-toggle-margin;\n\n    &:hover,\n    &:focus {\n      .icon-bar {\n        background: @navbar-pf-alt-navbar-toggle-icon-bar-hover-bg;\n      }\n    }\n\n    + .navbar-brand {\n      margin-left: 0;\n    }\n\n    .icon-bar {\n      background: @navbar-pf-alt-color;\n    }\n  }\n}\n","//\n//  Navigation Bar for use with vertical navigation\n// --------------------------------------------------\n\n.navbar-pf-vertical {\n  background-color: @navbar-pf-vertical-bg-color;\n  border: none;\n  border-radius: 0;\n  border-top: @navbar-pf-vertical-border-width @navbar-pf-vertical-border-style @navbar-pf-vertical-border-color;\n  margin-bottom: 0;\n\n  .infotip.bottom-right .arrow {\n    left: 90%;\n  }\n\n  .layout-pf-fixed & {\n    left: 0;\n    position: fixed;\n    right: 0;\n    top: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n\n  .nav {\n    &.navbar-nav > li > .dropdown-menu.infotip {\n      margin-top: 0;\n    }\n\n    .nav-item-iconic {\n      color: @navbar-pf-vertical-color;\n      cursor: pointer;\n      line-height: 1;\n      max-height: (@navbar-pf-vertical-height - @navbar-pf-vertical-border-width); // to keep Firefox from oversizing icons\n      padding: @navbar-pf-vertical-nav-item-iconic-padding;\n      position: relative;\n\n      &:hover,\n      &:focus {\n        color: @navbar-pf-vertical-active-color;\n        background-color: transparent;\n\n        .caret,\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @navbar-pf-vertical-active-color;\n        }\n      }\n\n      .badge {\n        background-color: @notification-badge-color;\n        border-radius: 20px;\n        color: @navbar-pf-vertical-active-color;\n        cursor: pointer;\n        font-size: (@font-size-base - 3);\n        font-weight: 700;\n        left: 20px;\n        margin: 0;\n        padding: 2px 4px;\n        position: absolute;\n        min-width: 10px;\n        min-height: 10px;\n        top: 18px;\n        &.badge-pf-bordered {\n          border: 1px solid @navbar-pf-vertical-bg-color;\n        }\n      }\n\n      .caret,\n      .fa,\n      .pficon {\n        color: @navbar-pf-vertical-color;\n        font-size: (@font-size-base + 4);\n      }\n\n      .caret {\n        font-size: @font-size-base;\n        width: auto;\n      }\n\n    }\n\n    .open > .nav-item-iconic {\n      &,\n      &:hover,\n      &:focus {\n        background: transparent;\n\n        .caret,\n        .fa,\n        .pficon {\n          color: @navbar-pf-vertical-active-color;\n        }\n      }\n    }\n  }\n\n  .navbar-brand {\n    color: @navbar-pf-vertical-navbar-brand-color;\n    height: auto;\n    margin: @navbar-pf-vertical-navbar-brand-margin;\n    min-height: @navbar-pf-vertical-navbar-brand-min-height;\n    padding: @navbar-pf-vertical-navbar-brand-padding;\n\n    .navbar-brand-name {\n      display: inline-block;\n      margin: @navbar-pf-vertical-navbar-brand-name-margin;\n      // hide once screen gets too small\n      @media (max-width: @navbar-pf-vertical-navbar-brand-name-breakpoint) {\n        display: none;\n      }\n    }\n\n    .navbar-brand-icon {\n      display: inline-block;\n      margin: @navbar-pf-vertical-navbar-brand-icon-margin;\n      max-height: @navbar-pf-vertical-navbar-brand-max-height;\n    }\n\n    .navbar-brand-txt {\n      line-height: @navbar-pf-vertical-navbar-brand-line-height;\n    }\n  }\n\n  .navbar-iconic {\n    margin-right: 0;\n  }\n\n  .navbar-toggle {\n    border: 0;\n    display: block;\n    float: left;\n    margin: @navbar-pf-vertical-navbar-toggle-margin;\n\n    &:hover,\n    &:focus {\n      .icon-bar {\n        background: @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n      }\n    }\n\n    + .navbar-brand {\n      margin-left: 0;\n    }\n\n    .icon-bar {\n      background: @navbar-pf-vertical-color;\n    }\n  }\n}\n","//\n// Nav Vertical Alt\n// --------------------------------------------------\n\n.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt {\n  transition: @flyout-transition-pf;\n\n  &.collapsed .list-group-item .list-group-item-value {\n    transition: opacity 0ms 100ms, opacity 100ms linear;\n  }\n\n  .list-group-item {\n    .badge {\n      transition: @flyout-transition-pf;\n    }\n\n    .list-group-item-value {\n      transition: opacity 500ms ease-out;\n      transition-delay: 150ms;\n    }\n  }\n}\n\n.nav-pf-vertical-alt {\n  background: @nav-pf-vertical-alt-bg-color;\n\n  .ie9.layout-pf-alt-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n\n  .layout-pf-alt-fixed & {\n    border-right: 1px solid @nav-pf-vertical-alt-border-color;\n    bottom: 0;\n    overflow-x: hidden;\n    overflow-y: auto;\n    left: 0;\n    position: fixed;\n    top: @navbar-pf-alt-height; // move out of way of navbar-pf-alt\n    width: @nav-pf-vertical-alt-width;\n    z-index: @zindex-navbar-fixed;\n\n    &.collapsed {\n      width: @nav-pf-vertical-alt-collapsed-width !important;\n\n      .list-group-item {\n        .badge {\n          padding: 2px 3px;\n          right: 21px;\n          top: 36px;\n        }\n\n        .list-group-item-value {\n          opacity: 0;\n        }\n      }\n    }\n\n    &.hidden {\n      display: none;\n\n      &.show-mobile-nav {\n        box-shadow: 0 0 3px fade(@color-pf-black, 15%);\n        display: block !important;\n      }\n    }\n  }\n\n  .layout-pf-alt-fixed-with-footer & {\n    bottom: @footer-pf-alt-height;\n  }\n\n  .list-group {\n    border-top: 0;\n    margin-bottom: 0;\n  }\n\n  .list-group-item {\n    padding: 0;\n\n    a {\n      color: @gray-dark;\n      display: block;\n      font-size: (@font-size-base + 2);\n      height: @nav-pf-vertical-alt-link-height;\n      padding: @nav-pf-vertical-alt-link-padding;\n      position: relative;\n      white-space: nowrap;\n\n      &:focus {\n        color: @gray-dark;\n        text-decoration: none;\n      }\n\n      &:hover {\n        color: @nav-pf-vertical-alt-active-color;\n        text-decoration: none;\n      }\n    }\n\n    &.active {\n      background-color: @nav-pf-vertical-alt-bg-color;\n      border-color: @list-group-border;\n\n      &:before {\n        background: @nav-pf-vertical-alt-active-color;\n        content: \" \";\n        display: block;\n        height: 100%;\n        left: 0;\n        position: absolute;\n        top: 0;\n        width: 5px;\n      }\n\n      a {\n        color: @nav-pf-vertical-alt-active-color;\n      }\n    }\n\n    .badge {\n      background: @gray-dark;\n      border: 1px solid @nav-pf-vertical-alt-bg-color;\n      border-radius: 3px;\n      color: @nav-pf-vertical-alt-badge-color;\n      font-weight: 700;\n      font-size: (@font-size-base - 3);\n      padding: 5px;\n      position: absolute;\n      right: 15px;\n      text-align: center;\n      top: 21px;\n\n      &.notifications {\n        background: @notification-badge-color;\n      }\n    }\n\n    .fa,\n    .glyphicon,\n    .pficon {\n      float: left;\n      font-size: 18px;\n      line-height: 30px;\n      margin-right: 10px;\n      text-align: center;\n      width: 18px;\n    }\n\n    .list-group-item-value {\n      display: inline-block;\n      line-height: 30px;\n      opacity: 1;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      width: 140px;\n    }\n\n  }\n\n  .list-group-item-separator {\n    border-top-width: 5px;\n  }\n\n  .sidebar-pf & {\n    margin-left: (-(@grid-gutter-width / 2));\n    margin-right: (-(@grid-gutter-width / 2));\n  }\n}\n","//\n// Notifications Drawer\n// --------------------------------------------------\n\n\n.drawer-pf {\n  background-color: @color-pf-black-100;\n  border: 1px solid @card-pf-border-color;\n  .box-shadow(0 6px 12px fade(@color-pf-black, 17.5%));\n  overflow-y: auto;\n  position: absolute;\n  right: 0;\n  width: 320px;\n  z-index: 2;\n  .panel {\n    border-bottom: none;\n    border-left: none;\n    border-right: none;\n  }\n  .panel-group .panel-heading + .panel-collapse .panel-body {\n    border-top: none;\n    border-bottom: 1px solid @card-pf-border-color;\n    padding: 0;\n  }\n  .panel-counter {\n    display: block;\n    font-style: italic;\n    line-height: 1.2;\n    padding-left: 18px;\n    padding-top: 5px;\n  }\n  .panel-heading { border-bottom: 1px solid @card-pf-border-color; }\n  .panel-group {\n    bottom: 0;\n    margin-bottom: 0;\n    position: absolute;\n    top: 25px; // Height of Notifications Drawer box.\n    width: 100%;\n  }\n  .panel-title a {\n    cursor: pointer;\n    display: block;\n  }\n  &.drawer-pf-expanded {\n    @media (max-width: @screen-xs-max) {\n      left:0;\n      width: 100%;\n    }\n    @media (min-width: @screen-xs-max) {\n      left: 270px;\n    } // if the drawer is expanded and the screen is reduced this ensures it switches to full width on smaller screens.\n    width: inherit;\n    .drawer-pf-toggle-expand:before {\n      content: \"\\f101\";\n    }\n  }\n  .blank-slate-pf {\n    border: 0;\n    margin-bottom: 0;\n    padding: 30px;\n\n    .blank-slate-pf-icon {\n      font-size: 3em;\n      line-height: 1em;\n    }\n\n    h1 {\n      font-size: 1em;\n      margin-bottom: 0;\n      margin-top: 15px;\n    }\n  }\n}\n.drawer-pf-close, .drawer-pf-toggle-expand {\n  color: @gray-darker;\n  cursor: pointer;\n  line-height: inherit;\n  padding: 2px 10px;\n  position: absolute;\n  &:hover,\n  &:focus {\n    color: @color-pf-blue-400;\n    text-decoration: none;\n  }\n}\n.drawer-pf-toggle-expand {\n  left: 0;\n  &:before {\n    content: \"\\f100\";\n    font-family: \"FontAwesome\";\n  }\n  &:hover {\n    color: @link-color;\n  }\n}\n.drawer-pf-close {\n  right: 0;\n}\n\n\n.drawer-pf-action {\n  display: flex;\n  border-bottom: 1px solid @card-pf-border-color;\n\n  .btn-link {\n    color: @link-color;\n    padding: 10px 0;\n    .pficon, .fa {\n      margin-right: 3px;\n    }\n    .pficon-close {\n      position: relative;\n      top: 1px;\n    }\n\n    &:hover { color: @link-hover-color; }\n  }\n}\n\n.drawer-pf-action-link {\n  border-left: solid 1px @color-pf-black-300;\n  flex: 1 1 0%;\n  margin: 10px 0;\n  text-align: center;\n\n  &:first-of-type {\n    border-left-width: 0;\n  }\n\n  .btn-link {\n    padding: 0;\n  }\n}\n\n.drawer-pf-loading {\n  color: @gray-pf;\n  font-size: (@font-size-base + 2);\n  padding: 20px 15px;\n}\n\n.drawer-pf-notification {\n  border-bottom: 1px solid @card-pf-border-color;\n  padding: 15px;\n  .date {\n    border-right: 1px solid #aaa;\n    display: inline-block;\n    line-height: 1;\n    margin-right: 5px;\n    padding-right: 9px;\n  }\n  > .dropdown-kebab-pf {\n    margin-top: -3px;\n  }\n\n  .pficon {\n    font-size: @font-size-large;\n    margin-top: 3px;\n  }\n  &:last-of-type {\n    border-bottom: none;\n  }\n  &:hover { background-color: @color-pf-blue-50; }\n  &.unread .drawer-pf-notification-message {\n    font-weight: bold;\n    cursor: pointer;\n  }\n  &.expanded-notification {\n    .date {\n      border-right: none;\n      padding-right: 0;\n    }\n  }\n}\n\n.drawer-pf-notification-content {\n  cursor: default;\n}\n\n.drawer-pf-notification-info,\n.drawer-pf-notification-message {\n  display: block;\n  padding-left: 27px;\n  padding-right: 19px;\n  .expanded-notification & {\n    display: inline-block;\n  }\n}\n\n.drawer-pf-title {\n  background-color: @color-pf-black-100;\n  border-bottom: 1px solid @card-pf-border-color;\n  position: absolute;\n  width: 100%;\n  h3 {\n    font-size: @font-size-base;\n    margin: 0;\n    padding: 6px 15px;\n  }\n}\n\n.drawer-pf-notification.expanded-notification {\n  .drawer-pf-notification-content {\n    display: flex;\n    @media (max-width: @screen-sm-max) {\n      flex-direction: column;\n    }\n    .drawer-pf-notification-message {\n      flex: 1 1;\n    }\n  }\n}\n\n/* Exclusive styles to work with Vertical Navigation */\n.navbar-pf-vertical {\n  .drawer-pf {\n    height: ~\"calc(100vh - @{drawer-pf-top-vertical} - 20px)\";//to create a 20px offset bottom\n    top: @drawer-pf-top-vertical; //menu height;\n      @media (max-width: @screen-xs-max) {\n        width:100%;\n        height: calc(~\"100vh - @{drawer-pf-top-vertical}\");\n      }\n\n  }\n  .nav .drawer-pf-trigger {\n    .drawer-pf-trigger-icon {\n      border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n      border-right: 1px solid @navbar-pf-navbar-utility-border-color;\n      padding-left: 15px;\n      padding-right: 15px;\n    }\n    &.open .drawer-pf-trigger-icon {\n      background-color: @navbar-pf-navbar-utility-hover-bg-color;\n    }\n  }\n}\n\n/* Exclusive styles to work with Horizontal Navigation */\n.navbar-pf {\n  .drawer-pf {\n    height: ~\"calc(100vh - @{drawer-pf-top-horizontal} - 20px)\";\n    top: @drawer-pf-top-horizontal;\n    @media (max-width: @screen-xs-max) {\n      width:100%;\n      height: calc(~\"100vh - @{drawer-pf-top-horizontal} - 32px\");\n      top:calc(~\"@{drawer-pf-top-horizontal} + 8px\");\n    }\n  }\n  .drawer-pf-trigger-icon { cursor: pointer; }\n}\n","//\n// Search\n// --------------------------------------------------\n\n.search-pf {\n  &.has-button {\n    border-collapse: separate;\n    display: table;\n    .form-group {\n      display: table-cell;\n      width: 100%;\n      .btn {\n        .box-shadow(none);\n        float: left;\n        margin-left: -1px;\n        &.btn-lg {\n          font-size: (@font-size-large + .5); // to make button height consistent across browsers!\n        }\n        &.btn-sm {\n          font-size: (@font-size-small - .3); // to make button height consistent across browsers!\n        }\n      }\n      .form-control {\n        float: left;\n      }\n    }\n  }\n  .has-clear {\n    .clear {\n      background: fade(@color-pf-white, 0%); // to make the whole button clickable in IE9+\n      border: 0;\n      height: (@input-height-base - 1);\n      line-height: 1;\n      padding: 0;\n      position: absolute;\n      right: 1px;\n      top: 1px;\n      width: 28px;\n      &:focus {\n        outline: none;\n      }\n    }\n    .form-control {\n      padding-right: 30px;\n      &::-ms-clear {\n        display: none;\n      }\n    }\n    .input-lg + .clear {\n      height: (@input-height-large - 2);\n      width: 28px;\n    }\n    .input-sm + .clear {\n      height: (@input-height-small - 2);\n      width: 28px;\n      span {\n        font-size: (@font-size-base - 2);\n      }\n    }\n    .search-pf-input-group {\n      position: relative;\n    }\n  }\n}\n","//\n// Sidebar\n// --------------------------------------------------\n\n.sidebar-header {\n  border-bottom: 1px solid darken(@page-header-border-color, 2%);\n  padding-bottom: ((@line-height-computed / 2) + 1);\n  margin: ((@line-height-computed * 2) + 10) 0 @line-height-computed;\n  .actions {\n    margin-top: -2px;\n  }\n}\n\n.sidebar-pf {\n  .sidebar-header + .list-group {\n    border-top: 0;\n    margin-top: (-@grid-gutter-width / 2 / 2);\n    .list-group-item {\n      background: transparent;\n      border-color: darken(@page-header-border-color, 2%);\n      padding-left: 0;\n    }\n    .list-group-item-heading {\n      font-size: @font-size-base;\n    }\n  }\n  .nav-category {\n    h2 {\n      color: @dropdown-header-color;\n      font-size: @font-size-base;\n      font-weight: 400;\n      line-height: (@line-height-computed + 1);\n      margin: 0;\n      padding: 8px 0;\n    }\n    + .nav-category {\n      margin-top: (@grid-gutter-width / 4);\n    }\n  }\n  .nav-pills > li {\n    &.active > a {\n      background: @dropdown-link-active-bg !important;\n      border-color: @dropdown-link-active-border-color !important;\n      color: @color-pf-white;\n      @media (min-width: @grid-float-breakpoint) {\n        &:after {\n          content: @fa-var-angle-right;\n          font-family: @icon-font-name-fa;\n          display: block;\n          position: absolute;\n          right: (@grid-gutter-width / 2 / 2);\n          top: 1px;\n        }\n      }\n      .fa {\n        color: @color-pf-white;\n      }\n    }\n    > a {\n      border-bottom: 1px solid transparent;\n      border-radius: 0;\n      border-top: 1px solid transparent;\n      color: @text-color;\n      font-size: (@font-size-base + 1);\n      line-height: (@line-height-computed + 1);\n      padding: 1px (@grid-gutter-width / 2);\n      &:hover {\n        background: @dropdown-link-hover-bg;\n        border-color: @dropdown-link-hover-border-color;\n      }\n      .fa {\n        color: lighten(@gray-pf, 12%);\n        font-size: (@font-size-base + 3);\n        margin-right: (@grid-gutter-width / 4);\n        text-align: center;\n        vertical-align: middle;\n        width: (@font-size-base + 3);\n      }\n    }\n  }\n  .nav-stacked {\n    margin-left: (-(@grid-gutter-width / 2));\n    margin-right: (-(@grid-gutter-width / 2));\n    li + li {\n      margin-top: 0;\n    }\n  }\n  .panel {\n    background: transparent;\n  }\n  .panel-body {\n    padding: 6px (@grid-gutter-width / 2);\n    .nav-pills > li > a {\n      padding-left: (@grid-gutter-width / 2 + 17);\n    }\n  }\n  .panel-heading {\n    padding: 9px (@grid-gutter-width / 2);\n  }\n  .panel-title {\n    font-size: @font-size-base;\n    > a {\n      &:before {\n        display: inline-block;\n        margin-left: 1px;\n        margin-right: 4px;\n        width: 9px;\n      }\n      &.collapsed:before {\n        margin-left: 3px;\n        margin-right: 2px;\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint-max) {\n  .sidebar-header-bleed-left {\n    margin-left: (-(@grid-gutter-width / 2));\n    > h2 {\n      margin-left: (@grid-gutter-width / 2);\n    }\n  }\n  .sidebar-header-bleed-right {\n    margin-right: (-(@grid-gutter-width / 2));\n    .actions {\n      margin-right: (@grid-gutter-width / 2);\n    }\n    > h2 {\n      margin-right: (@grid-gutter-width / 2);\n    }\n    + .list-group {\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n  }\n  .sidebar-pf {\n    .panel-group .panel-default,\n    .treeview {\n      border-left: 0;\n      border-right: 0;\n      margin-left: (-(@grid-gutter-width / 2));\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n    .treeview {\n      margin-top: 5px;\n      .list-group-item {\n        padding-left: (@grid-gutter-width / 2);\n        padding-right: (@grid-gutter-width / 2);\n        &.node-selected:after {\n          content: @fa-var-angle-right;\n          font-family: @icon-font-name-fa;\n          display: block;\n          position: absolute;\n          right: (@grid-gutter-width/2 / 2);\n          top: 1px;\n        }\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint) {\n  .sidebar-pf {\n    background: @sidebar-pf-bg;\n    &.sidebar-pf-left {\n      border-right: 1px solid @sidebar-pf-border-color;\n    }\n    &.sidebar-pf-right {\n      border-left: 1px solid @sidebar-pf-border-color;\n    }\n    > .nav-category,\n    > .nav-stacked {\n      margin-top: 5px;\n    }\n  }\n}\n","//\n// Skip to content\n// --------------------------------------------------\n.skiplink-pf {\n  position: absolute;\n  top: @skiplink-pf-top;\n  left: -300%; /* moves off screen */\n  z-index: @zindex-modal;\n}\n.skiplink-pf:focus {\n  left: @skiplink-pf-left;\n}\n","//\n// Spinner\n// --------------------------------------------------\n\n@keyframes rotation {\n  from {transform: rotate(0deg);}\n  to {transform: rotate(359deg);}\n}\n\n.spinner {\n  animation: rotation 600ms infinite linear;\n  border-bottom: 4px solid fade(@color-pf-black, 25%);\n  border-left: 4px solid fade(@color-pf-black, 25%);\n  border-right: 4px solid fade(@color-pf-black, 25%);\n  border-radius: 100%;\n  border-top: 4px solid fade(@color-pf-black, 75%);\n  height: (@font-size-base * 2);\n  margin: 0 auto;\n  position: relative;\n  width: (@font-size-base * 2);\n  &.spinner-inline {\n    display: inline-block;\n    margin-right: 3px;\n  }\n  &.spinner-lg {\n    border-width: 5px;\n    height: (@font-size-base * 2.5);\n    width: (@font-size-base * 2.5);\n  }\n  &.spinner-sm {\n    border-width: 3px;\n    height: (@font-size-base * 1.5);\n    width: (@font-size-base * 1.5);\n  }\n  &.spinner-xs {\n    border-width: 2px;\n    height: @font-size-base;\n    width: @font-size-base;\n  }\n  &.spinner-inverse {\n    border-bottom-color: fade(@color-pf-white, 25%);\n    border-left-color: fade(@color-pf-white, 25%);\n    border-right-color: fade(@color-pf-white, 25%);\n    border-top-color: fade(@color-pf-white, 75%);\n  }\n}\n\n.ie9 .spinner {\n  background: url(\"@{img-path}/@{img-spinner}\") no-repeat;\n  border: 0;\n  &.spinner-inverse {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse}\");\n  }\n  &.spinner-inverse-lg {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-lg}\");\n  }\n  &.spinner-inverse-sm {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-sm}\");\n  }\n  &.spinner-inverse-xs {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-xs}\");\n  }\n  &.spinner-lg {\n    background-image: url(\"@{img-path}/@{img-spinner-lg}\");\n  }\n  &.spinner-sm {\n    background-image: url(\"@{img-path}/@{img-spinner-sm}\");\n  }\n  &.spinner-xs {\n    background-image: url(\"@{img-path}/@{img-spinner-xs}\");\n  }\n}\n","//\n// Syntax Highlighting for google-code-prettify\n// --------------------------------------------------\n\n.prettyprint {\n  .atn,\n  .com,\n  .fun,\n  .var {\n    color: @syntax-3;\n  }\n\n  .atv,\n  .str {\n    color: @syntax-1;\n  }\n\n  .clo,\n  .dec,\n  .kwd,\n  .opn,\n  .pln,\n  .pun {\n    color: @syntax-2;\n  }\n\n  .lit,\n  .tag,\n  .typ {\n    color: @syntax-4;\n  }\n\n  ol.linenums {\n    margin-bottom: 0;\n  }\n}\n","//\n// Table View\n// --------------------------------------------------\n\n// Keep dataTable class for legacy apps\ntable.dataTable {\n  height: 100%;\n  margin-bottom: 0;\n  max-width: none !important;\n  tbody {\n    > tr {\n      > td {\n        // Styling for inline actions\n        &.table-view-pf-actions {\n          padding: 0;\n          vertical-align: middle;\n        }\n      }\n      &:hover {\n        // Styling when hovering anywhere else on a row\n        > td.table-view-pf-actions {\n          background-color: @table-bg-accent;\n          border-bottom-color: @table-border-color;\n        }\n      }\n    }\n    > tr.selected {\n      color: @color-pf-white;\n      background-color: @color-pf-blue-400;\n      > td {\n        border-bottom-color: @color-pf-blue-500;\n        &.table-view-pf-actions {\n          background-color: @table-bg-accent;\n          border-bottom-color: @table-border-color;\n        }\n      }\n      &:hover {\n        > td {\n          background-color: inherit;\n          border-bottom-color: @color-pf-blue-500;\n          &.table-view-pf-actions {\n            background-color: @table-bg-accent;\n            border-bottom-color: @table-border-color;\n          }\n        }\n      }\n    }\n  }\n  thead {\n    .sorting,\n    .sorting_asc,\n    .sorting_desc,\n    .sorting_asc_disabled,\n    .sorting_desc_disabled {\n      cursor: pointer;\n    }\n    .sorting_asc,\n    .sorting_desc {\n      color: @link-color !important;\n      position: relative;\n      &:after {\n        content: @fa-var-angle-down;\n        font-family: @icon-font-name-fa;\n        font-size: (@font-size-base - 2);\n        font-weight: normal;\n        height: (@font-size-base - 3);\n        left: 7px;\n        line-height: @font-size-base;\n        position: relative;\n        top: 2px;\n        vertical-align: baseline;\n        width: @font-size-base;\n      }\n      &:before {\n        background: @link-color;\n        content: \"\";\n        height: 2px;\n        position: absolute;\n        left: 0;\n        top: 0;\n        width: 100%;\n      }\n    }\n    .sorting_asc:after {\n      content: @fa-var-angle-up;\n      top: -3px;\n    }\n  }\n  th:active {\n    outline: none;\n  }\n}\n\n// Empty table\n.table-view-pf-empty {\n  &.blank-slate-pf {\n    background-color: @table-bg-accent;\n    border: 1px solid @table-border-color;\n    border-radius: 0;\n    margin-top: -1px;\n  }\n}\n\n// Embedded toolbar\n.table-view-pf-toolbar {\n  &.toolbar-pf {\n    background-color: @table-bg-accent;\n    border-bottom: none;\n    border-left: 1px solid @table-border-color;\n    border-right: 1px solid @table-border-color;\n    border-top: 1px solid @table-border-color;\n    box-shadow: none;\n    margin-left: 0px;\n    margin-right: 0px;\n    .toolbar-pf-results {\n      border-top: 1px solid @table-border-color;\n      min-height: 40px;\n      line-height: 40px;\n    }\n  }\n}\n\n// External Toolbar\n.table-view-pf-toolbar-external {\n  &.toolbar-pf {\n    border-bottom: none;\n    border-top: none;\n    box-shadow: none;\n    .toolbar-pf-results {\n      border-top: 1px solid @table-border-color;\n      min-height: 40px;\n      line-height: 40px;\n    }\n  }\n}\n\n.table-view-pf-colvis-menu {\n  > li {\n    padding: 5px 10px;\n    &:hover {\n      background-color: #def3ff;\n    }\n    > input {\n      margin-top: 0;\n      margin-right: 10px;\n      vertical-align: middle;\n    }\n    > label {\n      margin-bottom: 0;\n    }\n  }\n\n}\n\n// Inline action button and kebab\n// Sets button height to 100% of td height in firefox and chrome, but not in IE when wrapping occurs.\n// Button height must be set dynamically in IE to be equal to td height.\n.table-view-pf-actions {\n  background-color: @btn-default-bg; // included just in case there are gaps between the edges of the buttons and the table cell\n  height: 100%;\n  .btn,\n  .dropdown-toggle {\n    border: none;\n    box-shadow: none;\n    height: 100%;\n    width: 100%;\n  }\n  .dropdown,\n  .table-view-pf-btn {\n    height: 100%;\n  }\n  .dropdown-menu.dropdown-menu-right {\n    right: -5px;\n  }\n  &:last-child {\n    width: 24px;\n  }\n}\n\n// Selection column\n.table-view-pf-select {\n  width: 33px;\n}\n\n// Results area containing selected row text\n.table-view-pf-select-results {\n  text-align: right;\n}\n","//\n// Time Picker\n// --------------------------------------------------\n.bootstrap-datetimepicker-widget {\n  a[data-action] {\n    border: 0;\n    box-shadow: none;\n    color: @gray-dark;\n    display: block;\n    padding-bottom: 4px;\n    padding-top: 4px;\n    &:hover { color: @link-color; }\n  }\n  &.dropdown-menu {\n    left: 0!important;\n    padding: 0;\n    width: ~\"calc(100% - 25px)\";\n    &:before, &:after {\n      content: none;\n    }\n    &.top {\n      margin-bottom: -1px;\n    }\n    &.bottom {\n      margin-top: -1px;\n    }\n  }\n  .timepicker-hour {\n    width: 100%;\n    &:after {\n      content: \":\";\n      float: right;\n    }\n  }\n}\n.timepicker-hours,\n.timepicker-minutes {\n  table td {\n    font-weight: bold;\n    line-height: 30px;\n    height: 30px;\n    &:hover { color: @link-color; }\n  }\n  .table-condensed > tbody > tr > td { padding: 0; }\n}\n.time-picker-pf {\n  .input-group-addon {\n    .fa,\n    .pficon { width: 12px; }\n    &:not(.active) { box-shadow: none; }\n  }\n}\n.timepicker-picker {\n  table td {\n    span,\n    a span {\n      height: 24px;\n      line-height: 24px;\n      margin: 0;\n      width: 100%;\n    }\n  }\n  .table-condensed > tbody > tr > td {\n    height: 25px;\n    line-height: 18px;\n    padding: 0;\n  }\n  button[data-action] { // provisional until the button is removed\n    padding-bottom: 0;\n    padding-top: 0;\n  }\n  .separator { display: none; }\n  tr:nth-child(2) td {\n    background-color: @dropdown-link-hover-bg;\n    border-color: @dropdown-link-hover-border-color;\n    border-style: solid;\n    border-width: 1px;\n    border-left: 0;\n    border-right: 0;\n  }\n}\n","//\n// Toast notifications\n// --------------------------------------------------\n\n.toast-pf {\n  background-color: @color-pf-white;\n  border-color: @color-pf-black-400;\n  box-shadow: 0 2px 6px fade(@color-pf-black, 20%);\n  padding-left: 68px; //15px space between the icon and the text\n  margin-bottom: 5px;\n  &.alert-danger > .pficon  { background-color: @alert-danger-border; }\n  &.alert-info > .pficon    { background-color: @alert-info-border; }\n  &.alert-success > .pficon { background-color: @alert-success-border; }\n  &.alert-warning > .pficon { background-color: @alert-warning-border; }\n  .dropdown-kebab-pf { margin-left: 10px; }\n  > .pficon {\n    background-color: @gray-pf;\n    bottom:  -1px;\n    box-shadow: 2px 0 5px -2px fade(@color-pf-black, 20%);\n    left: -1px;\n    padding-top: 10px;\n    text-align: center;\n    top: -1px;\n    width: 53px;\n    &:before { color: fade(@color-pf-white, 74%); }\n  }\n  .toast-pf-action {\n    margin-left: 15px;\n  }\n  .dropdown-kebab-pf .btn-link {\n    padding-top: 0;\n    padding-bottom: 0;\n    vertical-align: text-bottom;\n  }\n  /* Medium devices (desktops, 992px and up) */\n  @media (min-width: @screen-md-min) {\n    display: inline-block;\n  }\n}\n// Sets max width on toast notifications\n.toast-pf-max-width {\n @media (min-width: @screen-md-min) {\n    max-width: 31.1%; // sets the size to 4 cols;\n  }\n}\n// To position the notification on the top right corner, used in context on cards layout\n.toast-pf-top-right {\n  left: (@grid-gutter-width / 2);\n  position: absolute;\n  right: (@grid-gutter-width / 2);\n  top: 12px;\n  z-index: 1055; // More than @zindex-modal\n  /* Medium devices (desktops, 992px and up) */\n  @media (min-width: @screen-md-min) {\n    left: auto;\n  }\n}\n\n.toast-notifications-list-pf {\n  margin-left: (@grid-gutter-width / 2);\n  position: fixed;\n  right: (@grid-gutter-width / 2);\n  top: @toast-notification-top;\n  z-index: 1055;\n  .toast-pf {\n    clear: both;\n    float: right;\n  }\n  @media (min-width: @screen-sm-min) {\n    max-width: calc(50%);\n  }\n  @media (min-width: @screen-md-min) {\n    max-width: calc(33.1% ); // sets the size to 4 cols;\n  }\n}\n","//\n// Toolbar (Filter and view options)\n// --------------------------------------------------\n\n.toolbar-pf {\n  background: @color-pf-white;\n  border-bottom: 1px solid @sidebar-pf-border-color;\n  box-shadow: 0 1px 0px fade(@color-pf-black, 4.5%);\n  padding-top: (@grid-gutter-width/4);\n  .form-group {\n    margin-bottom: (@grid-gutter-width/4);\n    @media (min-width: @grid-float-breakpoint) {\n      border-right: 1px solid @sidebar-pf-border-color;\n      float: left;\n      margin-bottom: 0;\n      padding-left: (@grid-gutter-width/2);\n      padding-right: (@grid-gutter-width/2);\n    }\n    &:last-child {\n      border-right: 0;\n      margin-bottom: 0;\n      padding-right: 0;\n    }\n    .btn,\n    .btn-group {\n      + .btn,\n      + .btn-group { margin-left: 5px; }\n      + .btn-link,\n      + .dropdown { margin-left: 10px; }\n    }\n    .btn-link {\n      color: @gray-darker;\n      font-size: (@font-size-base + 4);\n      line-height: 1;\n      padding: 4px 0;\n      &:active,\n      &:focus,\n      &:hover { color: @link-color; }\n    }\n    .dropdown-kebab-pf .btn-link {\n      padding: 4px (@grid-gutter-width/4);\n      margin-left: (@grid-gutter-width/(-4));\n      margin-right: (@grid-gutter-width/(-4));\n    }\n  }\n}\n.toolbar-pf-actions {\n  display: table;\n  margin-bottom: 10px;\n  width: 100%;\n  @media (min-width: @grid-float-breakpoint) {\n    .toolbar-pf-filter {\n      padding-left: 0;\n    }\n  }\n}\n.toolbar-pf-view-selector {\n  font-size: (@font-size-base + 4);\n  .btn-link.active {\n    color: @link-color;\n    cursor: default;\n  }\n}\n.toolbar-pf-action-right {\n  float: right;\n  @media (max-width: @grid-float-breakpoint) {\n    float: none;\n  }\n}\n.toolbar-pf-find {\n  font-size: (@font-size-base + 2);\n  position: relative;\n}\n.find-pf-dropdown-container {\n  background: @color-pf-white;\n  border: solid 1px @color-pf-black-400;\n  display: none;\n  right: -20px;\n  padding: 5px;\n  position: absolute;\n  top: 35px;\n  width: 300px;\n  z-index: 10000;\n  @media (max-width: @grid-float-breakpoint) {\n    left: 30px;\n    top: -5px;\n    width: calc(100% - 30px);\n  }\n  &:before,\n  &:after {\n    content: \"\";\n    position: absolute;\n  }\n  &:before {\n    border-bottom:11px solid @color-pf-black-400;\n    border-left:11px solid transparent;\n    border-right:11px solid transparent;\n    right: 35px;\n    .toolbar-pf-find:last-child & {\n      right: 15px;\n    }\n    top: -12px;\n    @media (max-width: @grid-float-breakpoint) {\n      border-bottom:11px solid transparent;\n      border-right:11px solid @color-pf-black-400;\n      border-top:11px solid transparent;\n      left: -22px;\n      right: initial;\n      top: 8px;\n    }\n  }\n  &:after {\n    border-bottom:10px solid @color-pf-white;\n    border-left:10px solid transparent;\n    border-right:10px solid transparent;\n    right: 36px;\n    .toolbar-pf-find:last-child & {\n      right: 16px;\n    }\n    top: -10px;\n    @media (max-width: @grid-float-breakpoint) {\n      border-bottom:10px solid transparent;\n      border-right:10px solid @color-pf-white;\n      border-top:10px solid transparent;\n      left: -20px;\n      right: initial;\n      top: 9px;\n    }\n  }\n  input {\n    height: 30px;\n    padding: 5px 117px 5px 5px; // 112px (components) + 5px (offset)\n    width: 100%;\n  }\n  .find-pf-buttons {\n    position: absolute;\n    right: 10px;\n    top: 5px;\n    .btn {\n      border: none;\n      cursor: pointer;\n      margin-left: 0 !important;\n      padding: 0;\n      width: 18px;\n      .fa-angle-up,\n      .fa-angle-down {\n        font-weight: bold;\n        font-size: (@font-size-base + 6);\n      }\n      .pficon-close { font-size: (@font-size-base + 2); }\n    }\n    span {\n      height: 30px;\n      line-height: 30px;\n      vertical-align: middle;\n    }\n    .find-pf-nums {\n      color: @color-pf-black-500;\n      margin-right: 3px;\n    }\n  }\n}\n\n.toolbar-pf-results {\n  border-top: 1px solid @sidebar-pf-border-color;\n  margin-top: (@grid-gutter-width/4);\n  h5,\n  p,\n  ul {\n    display: inline-block;\n    line-height: (@grid-gutter-width/1.5);\n    margin-bottom: 0;\n    margin-top: 0;\n    @media (min-width: @screen-sm-min) {\n      line-height: @grid-gutter-width;\n    }\n  }\n  h5 {\n    font-weight: 700;\n    margin-right: 20px;\n  }\n  .label {\n    font-size: (@font-size-base - 1);\n    a {\n      color: @color-pf-white;\n      display: inline-block;\n      margin-left: 5px;\n    }\n  }\n}\n","//\n//  Vertical navigation\n// --------------------------------------------------\n//\n// Basic Required Layout for Vertical Navigation\n//\n// .navbar navbar-pf-vertical\n//   .navbar-header\n//   .collapse navbar-collapse   <-- necessary for collapsing vertical nav and mobile\n// .nav-pf-vertical [.nav-pf-vertical-callapsible-menus] [.nav-pf-persistent-secondary] [.hidden-icons-pf]\n//   .list-group\n//     .list-group-item [.active] [.secondary-nav-item-pf]\n//       a\n//         [primary icon] <-- Not shown if .hidden-icons-pf above\n//         .list-group-item-value\n//       .nav-pf-secondary-nav  <-- if .secondary-nav-item-pf above\n//         .nav-item-pf-header\n//           .secondary-collapse-toggle-pf data-toggle=\"collapse-secondary-nav\"\n//         .list-group\n//           .list-group-item [.active] [tertiary-nav-item-pf]\n//             a\n//              .list-group-item-value\n//            .nav-pf-tertiary-nav  <-- if .tertiary-nav-item-pf above\n//              .nav-item-pf-header\n//                .tertiary-collapse-toggle-pf data-toggle=\"collapse-tertiary-nav\"\n//              .list-group\n//                .list-group-item [.active] [tertiary-nav-item-pf]\n//                  a\n//                    .list-group-item-value\n//\n// .container-pf-nav-pf-vertical [.nav-pf-persistent-secondary] [.hidden-icons-pf]\n//\n\n.nav-pf-vertical {\n  background: @nav-pf-vertical-bg-color;\n  border-right: 1px solid @nav-pf-vertical-border-color;\n  bottom: 0;\n  left: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n   &.hidden.show-mobile-nav {  // Mobile mode open\n    box-shadow: 0 0 3px fade(@color-pf-black, 15%);\n    display: block !important;\n  }\n  &.hide-nav-pf {  // Used to hide navigation initially to avoid startup flicker\n    visibility: hidden !important;\n  }\n  .list-group {\n    border-top: 0;\n    margin-bottom: 0;\n  }\n  .list-group-item {\n    background-color: transparent;\n    border-color: @nav-pf-vertical-item-border-color;\n    padding: 0;\n    > a {\n      background-color: transparent;\n      color: @nav-pf-vertical-color;\n      cursor: pointer;\n      display: block;\n      font-size: (@font-size-base + 2);\n      font-weight: @nav-pf-vertical-font-weight;\n      height: @nav-pf-vertical-link-height;\n      line-height: 26px;\n      padding: @nav-pf-vertical-link-padding;\n      position: relative;\n      white-space: nowrap;\n      width: @nav-pf-vertical-width;\n      // When flexbox is supported nav item names take up all available space\n      @supports (display: flex) {\n        display: flex;\n        padding-right: 0;\n      }\n      .fa,\n      .glyphicon,\n      .pficon {\n        color: @nav-pf-vertical-icon-color;\n        float: left;\n        font-size: (@font-size-base + 8);\n        line-height: 26px;\n        margin-right: 10px;\n        text-align: center;\n        width: @nav-pf-vertical-icon-width;\n      }\n      &:hover {\n        text-decoration: none;\n      }\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-active-bg-color;\n        color: @nav-pf-vertical-active-color;\n        font-weight: @nav-pf-vertical-active-font-weight;\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @nav-pf-vertical-active-icon-color;\n        }\n      }\n    }\n    &.active {\n      > a:before {\n        background: @nav-pf-vertical-active-before-color;\n        content: \" \";\n        height: 100%;\n        left: 0;\n        position: absolute;\n        top: 0;\n        width: 3px;\n      }\n      &:hover { // to over-ride default list group setting\n        background-color: transparent;\n        border-color: @nav-pf-vertical-item-border-color;\n      }\n    }\n    .list-group-item-value {\n      display: block;\n      line-height: 25px;\n      max-width: 120px;\n      // If flexbox is supported, do not set max-width, take all space with just some right padding\n      @supports (display: flex) {\n        flex: 1;\n        max-width: none;\n        padding-right: 15px;\n      }\n      overflow: hidden;\n      text-overflow: ellipsis;\n    }\n  }\n  .list-group-item-separator {\n    border-top-color: @nav-pf-vertical-item-border-color;\n    border-top-width: 2px;\n  }\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n    .list-group-item > a {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  h5 {\n    color: @nav-pf-vertical-secondary-color;\n    cursor: default;\n    font-size: (@font-size-base + 1);\n    font-weight: 600;\n    margin: @nav-pf-vertical-secondary-list-header-margin;\n  }\n  &.hidden-icons-pf {\n    > .list-group > .list-group-item { // only the primary menu hides icons\n      > a {\n        .fa,\n        .glyphicon,\n        .pficon {\n          display: none;\n        }\n      }\n    }\n    &.collapsed {\n      display: none;\n    }\n  }\n  .badge-container-pf {\n    position: absolute;\n    right: 15px;\n    top: 20px;\n    // If flexbox is supported, use relative positioning to place to the right of the label\n    // and adjust the top position so that the secondary and tertiary nav items don't need to change\n    @supports (display: flex) {\n      padding-left: 0;\n      padding-right: 15px;\n      position: relative;\n      right: 0;\n      margin-top: -3px;\n      top: 5px;\n    }\n    .badge {\n      background: @nav-pf-vertical-badge-bg-color;\n      color: @nav-pf-vertical-badge-color;\n      float: left;\n      font-size: @font-size-base;\n      font-weight: 700;\n      line-height: @line-height-base;\n      margin: 0;\n      padding: 0 7px;\n      text-align: center;\n      .pficon,\n      .fa {\n        font-size: (@font-size-base + 2);\n        height: 20px;\n        line-height: @line-height-base;\n        margin-right: 3px;\n        margin-top: -1px;\n      }\n    }\n  }\n}\n.nav-pf-vertical-tooltip.tooltip {\n  margin-left: 15px;\n  .tooltip-inner {\n    background-color: @color-pf-white;\n    color: @color-pf-black-900;\n  }\n  .tooltip-arrow {\n    border-bottom-color: @color-pf-white;\n    left: calc(50% - 15px) !important;\n  }\n}\n.hover-secondary-nav-pf {\n  width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  &.nav-pf-vertical-with-badges {\n    width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n  }\n}\n.hover-tertiary-nav-pf {\n  width: ~\"calc(@{nav-pf-vertical-width} * 3)\";\n  &.nav-pf-vertical-with-badges {\n    width: ~\"calc(@{nav-pf-vertical-badges-width} * 3)\";\n  }\n  .nav-pf-secondary-nav {\n    width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    .collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  .nav-pf-tertiary-nav {\n    left: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-secondary-nav {\n      width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n      .collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    .nav-pf-tertiary-nav {\n      left: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n    }\n  }\n}\n.nav-pf-vertical.collapsed {\n  width: @nav-pf-vertical-collapsed-width;\n  &.collapsed-secondary-nav-pf { // collapsed state with secondary menu pinned\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.collapsed-tertiary-nav-pf { // collapsed state with tertiary menu pinned\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.hover-secondary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-badges-width} * 2))\";\n    }\n  }\n}\n.show-mobile-nav {\n  &.show-mobile-secondary {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.show-mobile-tertiary {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .mobile-nav-item-pf,\n  .mobile-secondary-item-pf {\n    .nav-pf-secondary-nav {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 4);\n    }\n    > .nav-pf-tertiary-nav {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 8);\n    }\n  }\n  .nav-pf-secondary-nav {\n    left: 0;\n    .secondary-nav-item-pf:hover & {\n      opacity: 0;\n      visibility: hidden;\n    }\n  }\n  .tertiary-nav-item-pf:hover {\n    .nav-pf-tertiary-nav {\n      opacity: 0;\n      visibility: hidden;\n    }\n  }\n  .tertiary-nav-item-pf.mobile-nav-item-pf:hover {\n    .nav-pf-tertiary-nav {\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n}\n.secondary-nav-item-pf {\n  > a {\n    cursor: default;\n    &:after {\n      color: @nav-pf-vertical-secondary-indicator-color;\n      content: @fa-var-angle-right;\n      display: block;\n      font-family: \"FontAwesome\";\n      font-size: (@font-size-base * 2);\n      line-height: 30px;\n      padding: @nav-pf-vertical-secondary-indicator-padding;\n      position: absolute;\n      right: 20px;\n      top: 0;\n    }\n    .list-group-item-value {\n      // If flex box is supported add some padding to account for the submenu indicator\n      @supports (display: flex) {\n        padding-right: 35px;\n      }\n    }\n  }\n  &.active,\n  &:hover {\n    > a {\n      width: ~\"calc(@{nav-pf-vertical-width} + 1px)\";\n      z-index: (@zindex-navbar-fixed + 1);\n      &:after {\n        right: 21px;\n      }\n      .collapsed-secondary-nav-pf & {\n        z-index: 0;\n      }\n      .collapsed-tertiary-nav-pf & {\n        z-index: 0;\n      }\n    }\n  }\n  .nav-pf-vertical-with-badges & {\n    &.active,\n    &:hover {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} + 1px)\";\n      }\n    }\n  }\n}\n.nav-pf-vertical.collapsed-secondary-nav-pf {\n  width: @nav-pf-vertical-width;\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n  }\n  .secondary-nav-item-pf {  // Keep sub-menu indicators below collapsed menu\n    &.active,\n    &.hover {\n      > a {\n        z-index: @zindex-navbar-fixed;\n      }\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .nav-pf-secondary-nav {\n    left: 0;\n  }\n  .nav-pf-tertiary-nav {\n    left: @nav-pf-vertical-width;\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-tertiary-nav {\n      left: @nav-pf-vertical-badges-width;\n    }\n  }\n}\n.nav-pf-vertical.collapsed-tertiary-nav-pf {\n  width: @nav-pf-vertical-width;\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n  }\n  .nav-pf-secondary-nav {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .secondary-nav-item-pf,    // Keep sub-menu indicators below collapsed menu\n  .tertiary-nav-item-pf {\n    &.active,\n    &.hover {\n      > a {\n        z-index: 0;\n      }\n    }\n  }\n}\n.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf {  // Persistent secondary nav settings\n  @media (min-width: @screen-lg-min) { // secondary menu only persistent at lg screen\n    width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n    }\n    &.collapsed-secondary-nav-pf {\n      width: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        width: @nav-pf-vertical-badges-width;\n      }\n      &.hover-tertiary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n        &.nav-pf-vertical-with-badges {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n        }\n      }\n    }\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.collapsed {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n      &.collapsed-secondary-nav-pf {\n        width: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          width: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          width: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.hover-tertiary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n        &.nav-pf-vertical-with-badges {\n          width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-badges-width} * 2))\";\n        }\n      }\n    }\n    &.hover-tertiary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-width} * 3)\";\n      &.nav-pf-vertical-with-badges {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} * 3)\";\n      }\n    }\n    .secondary-nav-item-pf.active {\n      .nav-pf-secondary-nav {\n        visibility: visible;\n        opacity: 1;\n      }\n    }\n  }\n}\n.nav-item-pf-header {\n  color: @nav-pf-vertical-secondary-color;\n  font-size: (@font-size-base + 4);\n  margin: @nav-pf-vertical-secondary-header-margin;\n  > a {\n    cursor: pointer;\n    margin-right: 7px;\n    &:hover,\n    &:focus {\n      color: @link-color;\n      text-decoration: none;\n    }\n  }\n}\n.nav-pf-vertical.collapsed { // Collapsed Primary Menu state\n  width: @nav-pf-vertical-collapsed-width;\n  .list-group-item { // Show only the icons\n    > a {\n      width: @nav-pf-vertical-collapsed-width;\n      > .list-group-item-value {\n        display: none;\n      }\n      > .badge-container-pf {\n        display: none;\n      }\n    }\n    &.secondary-nav-item-pf { // Adjust widths\n      &.active > a,\n      > a {\n        width: @nav-pf-vertical-collapsed-width;\n        &:after {\n          right: 10px;\n        }\n      }\n      &.active,\n      &:hover {\n        > a {\n          width: (@nav-pf-vertical-collapsed-width + 2);\n          &:after {\n            right: 11px;\n          }\n        }\n      }\n    }\n  }\n}\n.nav-pf-secondary-nav {\n  background: @nav-pf-vertical-secondary-bg-color;\n  border: 1px solid @nav-pf-vertical-border-color;\n  border-bottom: none;\n  border-top: none;\n  bottom: 0;\n  display: block;\n  left: @nav-pf-vertical-width;\n  opacity: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  visibility: hidden;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .secondary-nav-item-pf.active & {  // Show secondary menu if active and either is collapsed\n    .collapsed-secondary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 2);\n    }\n    .collapsed-tertiary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n  .secondary-nav-item-pf.is-hover & { // Show secondary menu if hovering\n    .hover-secondary-nav-pf & {\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .list-group-item {\n    border: none;\n    padding: @nav-pf-vertical-secondary-item-padding;\n    width: @nav-pf-vertical-width;\n    > a {\n      background-color: @nav-pf-vertical-secondary-bg-color;\n      color: @nav-pf-vertical-secondary-item-color;\n      font-size: @font-size-base;\n      font-weight: inherit;\n      height: inherit;\n      padding: @nav-pf-vertical-secondary-link-padding;\n      margin-left: 20px;\n      width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n\n      &:hover {\n        .list-group-item-value {\n          text-decoration: underline;\n        }\n      }\n    }\n    &.active > a:before {\n      display: none;\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-secondary-active-bg-color;\n        color: @nav-pf-vertical-secondary-active-color;\n      }\n    }\n    .badge-container-pf {\n      top: 5px;\n      .badge {\n        background: @nav-pf-vertical-secondary-badge-bg-color;\n        color: @nav-pf-vertical-badge-color;\n      }\n    }\n    .list-group-item-value {\n      padding-left: 5px;\n    }\n    &.tertiary-nav-item-pf { // Secondary menu items with tertiary sub menus\n      > a {\n        cursor: default;\n        &:after {\n          color: @nav-pf-vertical-secondary-indicator-color;\n          content: @fa-var-angle-right;\n          display: block;\n          font-family: \"FontAwesome\";\n          font-size: 20px;\n          line-height: 20px;\n          padding: @nav-pf-vertical-tertiary-indicator-padding;\n          position: absolute;\n          right: 20px;\n          top: 4px;\n        }\n        // If flex box is supported add some padding to account for the submenu indicator\n        .list-group-item-value {\n          @supports (display: flex) {\n            padding-right: 35px;\n          }\n        }\n      }\n      &.active,\n      &:hover {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-width} - 19px)\";\n          z-index: (@zindex-navbar-fixed + 3);\n          &:after {\n            right: 21px;\n          }\n        }\n      }\n    }\n  }\n  .nav-pf-vertical-with-badges & {\n    left: @nav-pf-vertical-badges-width;\n    width: @nav-pf-vertical-badges-width;\n    .list-group-item {\n      width: @nav-pf-vertical-badges-width;\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n      }\n      &.tertiary-nav-item-pf { // Secondary menu items with tertiary sub menus\n        &.active,\n        &:hover {\n          > a {\n            width: ~\"calc(@{nav-pf-vertical-badges-width} - 19px)\";\n          }\n        }\n      }\n    }\n  }\n}\n.nav-pf-tertiary-nav {\n  background: @nav-pf-vertical-tertiary-bg-color;\n  border: 1px solid @nav-pf-vertical-border-color;\n  border-bottom: none;\n  border-top: none;\n  bottom: 0;\n  display: block;\n  left: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  opacity: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  visibility: hidden;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .nav-pf-vertical-with-badges & {\n    left: @nav-pf-vertical-badges-width;\n    width: @nav-pf-vertical-badges-width;\n    .show-mobile-nav {\n      left: 0;\n    }\n  }\n  .tertiary-nav-item-pf.active & {  // Show tertiary menu if active and collapsed\n    .collapsed-tertiary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 3);\n    }\n  }\n  .tertiary-nav-item-pf.is-hover & { // Show tertiary menu if hovering\n    .hover-tertiary-nav-pf & {\n      opacity: 1;\n      visibility: visible;\n      .collapsed.collapsed-tertiary-nav-pf & {\n        left: 0;\n      }\n    }\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .nav-item-pf-header {\n    color: @nav-pf-vertical-tertiary-color;\n    margin: @nav-pf-vertical-tertiary-header-margin;\n  }\n  h5 {\n    color: @nav-pf-vertical-tertiary-color;\n    margin: @nav-pf-vertical-tertiary-list-header-margin;\n  }\n  .list-group-item {\n    border: none;\n    padding: @nav-pf-vertical-tertiary-item-padding;\n    > a {\n      background-color: transparent;\n      color: @nav-pf-vertical-tertiary-item-color;\n      font-size: @font-size-base;\n      font-weight: inherit;\n      height: inherit;\n      margin: @nav-pf-vertical-tertiary-link-margin;\n      padding: @nav-pf-vertical-tertiary-link-padding;\n    }\n    &.active > a:before {\n      display: none;\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-tertiary-active-bg-color;\n        color: @nav-pf-vertical-tertiary-active-color;\n      }\n    }\n    .badge-container-pf {\n      top: 5px;\n      .badge {\n        background: @nav-pf-vertical-tertiary-badge-bg-color;\n        color: @nav-pf-vertical-tertiary-badge-color;\n      }\n    }\n    .list-group-item-value {\n      padding-left: 5px;\n    }\n  }\n}\n.collapsed {\n  .nav-pf-secondary-nav { // Adjust left placement\n    left: @nav-pf-vertical-collapsed-width;\n    .list-group-item {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n        > .list-group-item-value { // Continue to show labels for secondary menu items\n          display: inline-block;\n        }\n        > .badge-container-pf {\n          display: inline-block;\n        }\n      }\n    }\n  }\n  .nav-pf-tertiary-nav { // Adjust left placement\n    left: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n    .list-group-item {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n        > .list-group-item-value { // Continue to show labels for tertiary menu items\n          display: inline-block;\n        }\n        > .badge-container-pf {\n          display: inline-block;\n        }\n      }\n    }\n  }\n  &.collapsed-secondary-nav-pf,\n  &.collapsed-tertiary-nav-pf {\n    width: @nav-pf-vertical-width;\n    .secondary-nav-item-pf {\n      &:hover {\n        > a {\n          z-index: @zindex-navbar-fixed;\n        }\n      }\n    }\n    .nav-pf-secondary-nav {\n      left: 0;\n    }\n  }\n  &.collapsed-secondary-nav-pf {\n    .nav-pf-tertiary-nav {\n      left: @nav-pf-vertical-width;\n    }\n  }\n  &.collapsed-tertiary-nav-pf {\n    .nav-pf-tertiary-nav {\n      left: 0;\n    }\n  }\n  &.hover-secondary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n\n    &.collapsed-secondary-nav-pf,\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n    &.collapsed-secondary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    }\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-secondary-nav {\n      .list-group-item {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n        }\n      }\n    }\n    .nav-pf-tertiary-nav {\n      left: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n      .list-group-item {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n        }\n      }\n    }\n    &.collapsed-secondary-nav-pf,\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-badges-width;\n    }\n    &.collapsed-secondary-nav-pf {\n      .nav-pf-tertiary-nav {\n        left: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.hover-secondary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n      &.collapsed-secondary-nav-pf,\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.hover-tertiary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n      &.collapsed-secondary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n      }\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-width;\n      }\n    }\n  }\n}\n.secondary-collapse-toggle-pf {\n  display: none;\n  font-family: @icon-font-name-fa;\n  font-size: inherit;\n  opacity: 0;\n  pointer-events: none;\n  -webkit-font-smoothing: antialiased;\n  &:before {\n    content: @fa-var-arrow-circle-o-left;\n  }\n  &.collapsed {\n    &:before {\n      content: @fa-var-arrow-circle-o-right;\n    }\n  }\n}\n.tertiary-collapse-toggle-pf {\n  display: none;\n  font-family: @icon-font-name-fa;\n  font-size: inherit;\n  opacity: 0;\n  pointer-events: none;\n  -webkit-font-smoothing: antialiased;\n  &:before {\n    content: @fa-var-arrow-circle-o-left;\n  }\n  &.collapsed {\n    &:before {\n      content: @fa-var-arrow-circle-o-right;\n    }\n  }\n}\n.nav-pf-vertical-collapsible-menus {\n  .secondary-collapse-toggle-pf {\n    display: inline-block;\n  }\n  .secondary-nav-item-pf.active {\n    .secondary-collapse-toggle-pf {\n      opacity: 1;\n      pointer-events: all;\n    }\n  }\n  .tertiary-collapse-toggle-pf {\n    display: inline-block;\n  }\n  .tertiary-nav-item-pf.active {\n    .tertiary-collapse-toggle-pf {\n      opacity: 1;\n      pointer-events: all;\n    }\n  }\n}\n.show-mobile-nav {\n  .secondary-collapse-toggle-pf {\n    display: inline-block;\n    opacity: 1;\n    pointer-events: all;\n    &:before {\n      content: @fa-var-arrow-circle-o-left;\n    }\n  }\n  .tertiary-collapse-toggle-pf {\n    display: inline-block;\n    opacity: 1;\n    pointer-events: all;\n    &:before {\n      content: @fa-var-arrow-circle-o-left;\n    }\n  }\n}\n.force-hide-secondary-nav-pf { // Used to temporarily hide sub-menus on an unpin event\n  .nav-pf-secondary-nav {\n    display: none !important;\n  }\n  .nav-pf-tertiary-nav {\n    display: none !important;\n  }\n}\n.nav-pf-vertical.transitions {\n  transition: width @nav-pf-menu-transition-period;\n  .nav-pf-secondary-nav {\n    transition: visibility @nav-pf-menu-transition-period, opacity @nav-pf-menu-transition-period linear;\n  }\n  .nav-pf-tertiary-nav {\n    transition: visibility @nav-pf-menu-transition-period, opacity @nav-pf-menu-transition-period linear;\n  }\n}\n","//\n// Wizard\n// --------------------------------------------------\n.wizard-pf {\n  padding: 10px;\n  margin: 0 auto;\n  max-height: 900px;\n  width: auto;\n  .modal-content {\n    min-height:100%;\n  }\n}\n\n// Wizard header\n// Top section of the wizard w/ title and dismiss\n\n.wizard-pf-body {\n    background:@color-pf-white;\n    padding: 0;\n    position: static;\n}\n/* styles the sidebard containing the sub-steps */\n.wizard-pf-sidebar {\n    background: @color-pf-black-100;\n    border-right: 1px solid @color-pf-black-300;\n    display:none;\n  @media (min-width: @screen-sm-min) {\n    display:inherit;\n    flex:0 0 auto;\n    overflow-x: hidden;\n    overflow-y: auto;\n    .list-group {\n      border-top: 0;\n      margin-bottom: 0;\n    }\n      .list-group-item {\n        background-color: transparent;\n        border-color: @color-pf-black-200;\n        padding: 0;\n        > a {\n          color: @color-pf-black;\n          cursor: pointer;\n          display: block;\n          font-size: 14px;\n          font-weight: 700;\n          height: 50px;\n          outline: 0;\n          padding-top: 11px;\n          padding-left: 20px;\n          position: relative;\n          white-space: nowrap;\n          width: 14em;\n          &:hover {\n            text-decoration: none;\n            background-color: @color-pf-black-200;\n          }\n          &:focus {\n            //corrects odd behavior when hover and focus are combined.\n            text-decoration: none;\n            span {\n              text-decoration: underline;\n            }\n          }\n        }\n        &.active {\n          background-color: @color-pf-black-200;\n\n          //override default behavior\n          &:hover {\n            border-color: @color-pf-black-200;\n          }\n          > a {\n            color: @color-pf-blue-300;\n            cursor: default;\n          }\n          // line to left side showing active substep\n          > a:before {\n            content: \" \";\n            background: @color-pf-blue-300;\n            height: 100%;\n            left: 0;\n            position: absolute;\n            top: 0;\n            width: 3px;\n          }\n          // caret to right showing active substep\n          > a:after {\n            color: @color-pf-blue-300;\n            content: \"\\f105\"; // right caret\n            display: block;\n            font-family: FontAwesome;\n            font-size: 24px;\n            font-weight: 500;\n            line-height: 30px;\n            padding-top: 10px;\n            position: absolute;\n            right: 23px;\n            top: 0;\n          }\n        }\n      }\n    }\n}\n.wizard-pf-substep-number {\n  display:inline-block;\n  margin-right: 5px;\n  vertical-align: middle;\n  width: 25px;\n}\n.wizard-pf-substep-title {\n  display:inline-block;\n  margin-right: 5px;\n  text-align: left;\n  vertical-align: middle;\n}\n/* styles the steps indicator across the top of the wizard */\n.wizard-pf-steps {\n  border-bottom: solid 1px @color-pf-black-300;\n    @media (min-width: @screen-sm-min) {\n      text-align: center;\n    }\n}\n\n.wizard-pf-steps-indicator {\n  background: @color-pf-black-200;\n  border-top: 1px solid @color-pf-black-300;\n  display: inline-block;\n  display: flex;\n  font-size: ceil((@font-size-base * 1.3333));\n  list-style: none;\n  margin-bottom: 0;\n  padding: 15px 0;\n    @media (min-width: @screen-sm-min) {\n      background: @color-pf-white;\n      height: 120px;\n      padding: 38px 0 0;\n      justify-content: space-around;\n    }\n\n  li {\n    counter-increment: section;\n    float:left; /* float for IE9 since it doesn't support flex. If items wrap, they overlap */\n    flex-grow: 1;\n    flex-basis: 0;\n    line-height: 15px;\n    margin: 0;\n    padding: 0;\n    position: relative;\n    text-align: center;\n    &:not(.active) {\n      display: none;\n      @media (min-width: @screen-sm-min) {\n        display: block;\n      }\n    }\n    a {\n        align-items: center;\n        display: flex;\n        flex-wrap:wrap;\n        font-weight: 700;\n        @media (min-width: @screen-sm-min) {\n          font-weight: normal;\n          justify-content: center;\n        }\n          .wizard-pf-step-title {\n            margin-left: 10px;\n            @media(min-width: @screen-sm-min) {\n              margin-left: 0;\n            }\n\n            &-substep {\n              font-weight: normal;\n              margin-left: 10px;\n              text-transform: capitalize;\n              &:before {\n                content:\"\\00BB\";\n                font-size: 20px;\n                margin-right: 10px;\n              }\n              &:not(.active) {\n                display: none;\n              }\n            }\n          }\n    }\n    /* draw the line between the circles */\n    @media (min-width: @screen-sm-min) {\n      .wizard-pf-step-title-substep {\n        display: none;\n      }\n      &:before {\n        background-color: @color-pf-black-400;\n        content: \"\";\n        height: 2px;\n        left: 0;\n        position: absolute;\n        right: 0;\n        top: 40px; // needed for IE9/10 calculate 50% of just the li, others calc 50% of the entire thing including the a:before\n        //otherwise, use top: calc(50% - 1px);\n      }\n      /* don't draw the line between the circles on the ends */\n      &:first-child:before {\n        left: 50%;\n        right: 0;\n      }\n      &:last-child:before {\n        left: 0;\n        right: 50%;\n      }\n      &:only-of-type:before {\n        background-color: transparent;\n      }\n    }\n    a {\n      color: @color-pf-black;\n      cursor: pointer;\n      font-size: 16px;\n      margin-left:1em;\n      margin-right:1em;\n      text-decoration: none;\n      &:hover {\n        .wizard-pf-step-number {\n          background-color: @color-pf-black-400;\n          border-color: @color-pf-black-400;\n          color: @color-pf-white;\n        }\n      }\n    }\n}\n  /* draw the step number in the circle */\n\n  .wizard-pf-step-number {\n    background-color: @color-pf-white;\n    border-radius: 50%;\n    border: solid 2px @color-pf-black-400;\n    color: @color-pf-black-400;\n    font-size: @font-size-base;\n    font-weight: 700;\n    height: 25px;\n    line-height: 22px;\n      @media (min-width: @screen-sm-min) {\n        left: ~\"calc(50% - 13px)\";\n        position: absolute;\n        top: 27px;\n      }\n    width: 25px;\n  }\n  .active .wizard-pf-step-number {\n    background-color: @color-pf-blue-300;\n    border-color: @color-pf-blue-300;\n    cursor: default;\n    color: @color-pf-white;\n  }\n\n  .viewed-pf .wizard-pf-step-number {\n    color: @color-pf-black;\n    background-color: @color-pf-white;\n    border-color: @color-pf-blue-300;\n  }\n\n}\n\n/* styles the main content portion of the wizard */\n.wizard-pf-main {\n  height: 100%;\n  padding:1em;\n  vertical-align: top;\n  width:100%;\n  @media (min-width: @screen-sm-min) {\n    overflow: auto;\n    padding:3em;\n    flex:1 1 auto;\n  }\n  .blank-slate-pf {\n    background-color: transparent;\n    border: none;\n    left: 0;\n    right: 0;\n  }\n}\n\n.wizard-pf-contents textarea {\n  resize: vertical;\n}\n\n/* styles the content of a review page */\n.wizard-pf-review-steps {\n  list-style: none;\n  .list-group, .list-group-item {\n    border: none;\n    margin-bottom: 0;\n  }\n  > ul {\n    > li {\n      float: left;\n      line-height: 15px;\n      margin: 0;\n      padding-top: 0;\n      position: relative;\n      width: 100%;\n      > a {\n        color: #030303;\n        cursor: pointer;\n        font-size: 16px;\n        padding-left: 30px;\n        padding-right: 5px;\n        text-decoration: none;\n        transition: 250ms;\n        &:before {\n          content: \"\\f107\";\n          display: block;\n          font-family: FontAwesome;\n          font-size: 24px;\n          font-weight: 500;\n          left: 20px;\n          position: absolute;\n          top: 0;\n        }\n        &.collapsed {\n          &:before {\n            content: \"\\f105\";\n          }\n        }\n      }\n    }\n  }\n}\n\n.wizard-pf-review-substeps {\n  padding-left: 22px;\n  > ul {\n    > li {\n      float: left;\n      line-height: 15px;\n      margin: 0;\n      position: relative;\n      width: 100%;\n      a {\n        color: #030303;\n        cursor: pointer;\n        font-size: 16px;\n        padding-left: 30px;\n        padding-right: 5px;\n        text-decoration: none;\n        transition: 250ms;\n        &:before {\n          content: \"\\f107\";\n          display: block;\n          font-family: FontAwesome;\n          font-size: 24px;\n          font-weight: 500;\n          left: 20px;\n          position: absolute;\n          top: 10px;\n        }\n        &.collapsed {\n          &:before {\n            content: \"\\f105\";\n          }\n        }\n      }\n    }\n  }\n}\n\n.wizard-pf-review-content {\n  padding-top: 10px;\n  padding-left: 40px;\n  .wizard-pf-review-item {\n    padding: 5px 0;\n    &.sub-item {\n      margin-left: 10px;\n    }\n    .wizard-pf-review-item-label {\n      font-weight: 700;\n      padding-right: 10px;\n    }\n    .wizard-pf-review-item-field {\n      font-weight: 700;\n      margin: 5px 0;\n      padding-right: 10px;\n      &:first-of-type {\n        margin-top: 0;\n      }\n      &:last-of-type {\n        margin-bottom: 0;\n      }\n      &.sub-field {\n        margin-left: 10px;\n      }\n    }\n  }\n}\n\n.wizard-pf-success-icon {\n  color: @color-pf-green-400;\n  font-size: (@font-size-base * 5.6);\n  line-height: (@font-size-base * 5.6);\n}\n\n/* styles the footer */\n.wizard-pf-footer {\n  background:@color-pf-white;\n  border-top: 1px solid @color-pf-black-300;\n  margin-top: 0;\n  padding-bottom: 17px;\n  .btn-cancel {\n    margin-right:25px;\n  }\n}\n\n.wizard-pf-row {\n    @media (min-width: @screen-sm-min) {\n      display: flex;\n      width:100%;\n      height: 900px;\n      max-height: 65vh;\n    }\n}\n\n// Scale up the modal\n@media (min-width: @screen-md-min) {\n  // increasing space around modal for larger viewports\n  .wizard-pf {\n    padding: 30px 0;\n    width: 900px;\n  }\n  // increasing width of sidebar for larger viewports\n  .wizard-pf-sidebar .list-group-item > a {\n    width: 18em;\n  }\n}\n\n//\n//\n// This is for the new wizard that is more robust on mobile.\n// --------------------------------------------------\n\n.wizard-pf-steps-alt, .wizard-pf-steps-alt ul {\n  list-style: none;\n  margin: 0;\n  padding: 0;\n}\n\n.wizard-pf-steps-alt {\n  margin-left: 15px;\n  margin-top: 15px;\n  background-image: linear-gradient(to right, transparent 11px, @color-pf-black-300 11px, @color-pf-black-300 13px, transparent 13px);\n  @media (min-width: @screen-sm-min) {\n    display:none;\n  }\n  &-indicator {\n    position: relative;\n    // caret to top showing active substep\n    &:after {\n      color: @color-pf-black-700;\n      content: \"\\f107\"; // top caret\n      display: block;\n      font-family: FontAwesome;\n      font-size: 24px;\n      font-weight: 500;\n      position: absolute;\n      right: 17px;\n      top: 50%;\n      transform:translateY(-50%);\n      @media (min-width: @screen-sm-min) {\n        display:none;\n      }\n    }\n    &.active {\n      &:after {\n        content: \"\\f106\";\n      }\n    }\n  }//indicator\n}//.wizard-pf-steps-alt\n\n.wizard-pf-step-alt {\n  margin-bottom: 10px;\n  a {\n    display:flex;\n    flex:1;\n    &:hover {\n      text-decoration: none;\n      .wizard-pf-step-alt-title {\n        color: @color-pf-blue-300;\n      }\n    }\n  }\n  ul {\n    margin-left: 11px;\n  }\n  .wizard-pf-step-alt-title {\n    margin-left: 5px;\n    align-self:center;\n  }\n  .wizard-pf-step-alt-number {\n    flex:0 0 auto;\n  }\n\n  &.active {\n    .wizard-pf-step-alt-number {\n      background-color: @color-pf-blue-300;\n      border-color: @color-pf-blue-300;\n      cursor: default;\n      color: @color-pf-white;\n    }\n    .wizard-pf-step-alt-title {\n      color: @color-pf-blue-300;\n    }\n    .wizard-pf-step-alt-substep:first-of-type {\n      margin-top: 2px; // gives proper spacing below number in circle active state\n    }\n\n\n  }\n  &.viewed {\n    .wizard-pf-step-alt-number {\n      color: @color-pf-black;\n      background-color: @color-pf-white;\n      border-color: @color-pf-blue-300;\n    }\n  }\n\n}//.wizard-pf-step-alt\n\n.wizard-pf-step-alt-number {\n  background-color: @color-pf-white;\n  border-radius: 50%;\n  border: solid 2px @color-pf-black-400;\n  color: @color-pf-black-400;\n  font-size: @font-size-base;\n  font-weight: 700;\n  height: 24px;\n  width: 24px;\n  display: inline-block;\n  text-align: center;\n}\n\n\n.wizard-pf-step-alt-title {\n  color: @color-pf-black;\n  font-weight: 700;\n  text-transform: capitalize;\n  display:inline-block;\n\n}//.wizard-pf-steps-alt-title\n\n.wizard-pf-step-alt-substep {\n    display:flex;\n  a {\n    padding:5px 0 5px 18px;\n    color: @color-pf-black-800;\n  }\n\n&:not(.disabled) {\n  &.active, &:hover {\n    background-color: @color-pf-black-200;\n    background-image: linear-gradient(to right, @color-pf-blue-300 2px, transparent 2px);\n    a {\n      color:@color-pf-blue-300;\n    }\n  }\n}\n  &.active {\n    a {\n      font-weight:700;\n    }\n  }\n  &.disabled {\n    cursor: not-allowed;\n    a {\n      pointer-events: none;\n    }\n  }\n}\n"]}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/patternfly/dist/css/patternfly-additions.min.css b/themes/src/main/node_modules/patternfly/dist/css/patternfly-additions.min.css
index 6d76c60..579955e 100644
--- a/themes/src/main/node_modules/patternfly/dist/css/patternfly-additions.min.css
+++ b/themes/src/main/node_modules/patternfly/dist/css/patternfly-additions.min.css
@@ -2,4 +2,4 @@
  * Datetimepicker for Bootstrap 3
  * version : 4.17.47
  * https://github.com/Eonasdan/bootstrap-datetimepicker/
- */.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{display:block;margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:700;font-size:1em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Increment Hours";content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Increment Minutes";content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Decrement Hours";content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Decrement Minutes";content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action=clear]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action=today]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:1px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:0 0}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#9c9c9c}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:0 0;cursor:pointer}.bootstrap-datetimepicker-widget table td.new,.bootstrap-datetimepicker-widget table td.old{color:#9c9c9c}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#0088ce;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#0088ce;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:1px}.bootstrap-datetimepicker-widget table td span:hover{background:0 0}.bootstrap-datetimepicker-widget table td span.active{background-color:#0088ce;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td span.old{color:#9c9c9c}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget.wider{width:21em}.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em!important}.input-group.date .input-group-addon{cursor:pointer}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.text-overflow-pf{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.about-modal-pf{background-color:#292e34;background-image:url(../img/bg-modal-about-pf.png);background-position:right bottom;background-repeat:no-repeat;background-size:216px auto}@media (min-width:768px){.about-modal-pf{background-size:auto}}.about-modal-pf .modal-body{color:#fff;padding-bottom:16px;padding-left:40px;padding-right:40px}@media (min-width:768px){.about-modal-pf .modal-body{padding-left:80px;padding-right:80px}}.about-modal-pf .modal-header{background-color:transparent}.about-modal-pf .pficon-close{color:#fff}.product-versions-pf{margin-bottom:30px;margin-top:30px}.product-versions-pf li strong{margin-right:10px}.trademark-pf{font-size:11px}.applauncher-pf{display:inline-block;overflow:visible}.applauncher-pf .applauncher-pf-title{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.applauncher-pf .dropdown-toggle.disabled{cursor:not-allowed}.applauncher-pf.open>.dropdown-menu{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.applauncher-pf .applauncher-pf-item{width:100%}.applauncher-pf .applauncher-pf-link{display:-ms-flexbox;display:flex;white-space:initial;-ms-flex-align:center;align-items:center}@media (min-width:768px){.applauncher-pf-block-list .applauncher-pf-item{-ms-flex:0 0 50%;flex:0 0 50%}}.applauncher-pf-block-list .applauncher-pf-link{-ms-flex-wrap:wrap;flex-wrap:wrap}@media (min-width:768px){.applauncher-pf-block-list .applauncher-pf-link{-ms-flex-direction:column;flex-direction:column;text-align:center;padding:15px 0;height:100%}}.applauncher-pf-block-list .applauncher-pf-link-icon{padding:0}.applauncher-pf-block-list .applauncher-pf-link-title{margin-top:auto}@media (min-width:768px){.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link{padding:9px}.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon{-ms-flex:1 0 0px;flex:1 0 0;text-align:left}.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title{-ms-flex:3;flex:3}}.applauncher-pf .dropdown-menu{padding:9px;min-width:220px}.applauncher-pf .applauncher-pf-link{border-style:solid;border-width:1px;border-color:transparent}.applauncher-pf .applauncher-pf-link:hover{background-color:#f5f5f5;border-color:#bbb;color:#0088ce;text-decoration:none;box-shadow:0 0 2px 0 #d1d1d1}.applauncher-pf .applauncher-pf-link-icon{font-size:1.2em;text-align:center;width:1.28571429em}@media (min-width:768px){.applauncher-pf .applauncher-pf-link-icon{font-size:2em}}.navbar-utility .applauncher-pf .dropdown-menu{border-width:1px!important}@media (min-width:768px){.navbar-utility .applauncher-pf .dropdown-menu{margin-top:3px;right:0}}.navbar-pf .applauncher-pf.open>a,.navbar-pf .applauncher-pf.open>a:focus,.navbar-pf .navbar-utility .applauncher-pf.open>a,.navbar-pf .navbar-utility .applauncher-pf.open>a:focus,.navbar-pf-alt .applauncher-pf.open>a,.navbar-pf-alt .applauncher-pf.open>a:focus,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a:focus{background-color:#232323;color:#f5f5f5}@media (min-width:768px){.navbar-pf .applauncher-pf.open>a,.navbar-pf .applauncher-pf.open>a:focus,.navbar-pf .navbar-utility .applauncher-pf.open>a,.navbar-pf .navbar-utility .applauncher-pf.open>a:focus,.navbar-pf-alt .applauncher-pf.open>a,.navbar-pf-alt .applauncher-pf.open>a:focus,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a:focus{background-color:#363636;border-color:#2b2b2b;color:#d1d1d1}}@media (max-width:767px){.navbar-pf .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf-alt .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu>li>a{padding-left:20px}.navbar-pf .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon{padding-right:20px}}.navbar-pf .applauncher-pf .dropdown-toggle,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .applauncher-pf .dropdown-toggle,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{background-color:inherit;color:#d1d1d1;text-align:left;text-decoration:none;border-width:0;display:block;padding-left:20px}.navbar-pf .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle.disabled{color:#8b8d8f!important}@media (min-width:768px){.navbar-pf .applauncher-pf .dropdown-toggle,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .applauncher-pf .dropdown-toggle,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{border-left:1px solid #2b2b2b;padding:7px 10px;line-height:1}}.navbar-pf .applauncher-pf .applauncher-pf-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon{padding-right:4px}@media (min-width:768px){.navbar-pf .applauncher-pf .applauncher-pf-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon{padding:0}}.navbar-pf .applauncher-pf .applauncher-pf-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title{display:inline;position:relative}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{overflow:hidden;width:100%}.navbar-pf .applauncher-pf .applauncher-pf-link:hover,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover{background-color:transparent;border-color:transparent;box-shadow:none}.navbar-pf .applauncher-pf .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-title{overflow:hidden}@media (min-width:768px){.navbar-pf .applauncher-pf,.navbar-pf .navbar-utility .applauncher-pf,.navbar-pf-alt .applauncher-pf,.navbar-pf-alt .navbar-utility .applauncher-pf{display:inline-block;overflow:visible}.navbar-pf .applauncher-pf .applauncher-pf-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.navbar-pf .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled{cursor:not-allowed}.navbar-pf .applauncher-pf.open>.dropdown-menu,.navbar-pf .navbar-utility .applauncher-pf.open>.dropdown-menu,.navbar-pf-alt .applauncher-pf.open>.dropdown-menu,.navbar-pf-alt .navbar-utility .applauncher-pf.open>.dropdown-menu{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.navbar-pf .applauncher-pf .applauncher-pf-item,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-item,.navbar-pf-alt .applauncher-pf .applauncher-pf-item,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-item{width:100%}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{display:-ms-flexbox;display:flex;white-space:initial;-ms-flex-align:center;align-items:center}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link{-ms-flex-wrap:wrap;flex-wrap:wrap}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon{padding:0}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-title{margin-top:auto}.navbar-pf .applauncher-pf .dropdown-menu,.navbar-pf .navbar-utility .applauncher-pf .dropdown-menu,.navbar-pf-alt .applauncher-pf .dropdown-menu,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-menu{padding:9px;min-width:220px}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{border-style:solid;border-width:1px;border-color:transparent}.navbar-pf .applauncher-pf .applauncher-pf-link:hover,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover{background-color:#f5f5f5;border-color:#bbb;color:#0088ce;text-decoration:none;box-shadow:0 0 2px 0 #d1d1d1}.navbar-pf .applauncher-pf .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon{font-size:1.2em;text-align:center;width:1.28571429em}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-item{-ms-flex:0 0 50%;flex:0 0 50%}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link{-ms-flex-direction:column;flex-direction:column;text-align:center;padding:15px 0;height:100%}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link{padding:9px}.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon{-ms-flex:1 0 0px;flex:1 0 0;text-align:left}.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title{-ms-flex:3;flex:3}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon{font-size:2em}}@media (min-width:768px){.navbar-iconic .applauncher-pf .dropdown-toggle,.navbar-iconic .applauncher-pf.dropdown>.dropdown-toggle,.navbar-iconic .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-iconic .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{padding:22px 10px;line-height:inherit}}.blank-slate-pf{background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:1px;margin-bottom:20px;padding:30px;text-align:center}@media (min-width:768px){.blank-slate-pf{padding:60px 60px}}@media (min-width:992px){.blank-slate-pf{padding:90px 120px}}.blank-slate-pf .blank-slate-pf-icon{color:#9c9c9c;font-size:57.6px;line-height:57.6px}.blank-slate-pf .blank-slate-pf-main-action{margin-top:20px}.blank-slate-pf .blank-slate-pf-secondary-action{margin-top:20px}.blank-slate-pf button{margin-right:5px}.blank-slate-pf button:last-of-type{margin-right:0}.combobox-container.combobox-selected .glyphicon-remove{display:inline-block}.combobox-container .caret{margin-left:0}.combobox-container .combobox::-ms-clear{display:none}.combobox-container .dropdown-menu{margin-top:-1px;width:100%}.combobox-container .glyphicon-remove{display:none;top:auto;width:12px}.combobox-container .glyphicon-remove:before{content:"\e60b";font-family:PatternFlyIcons-webfont}.combobox-container .input-group-addon{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;position:relative}.combobox-container .input-group-addon.active,.combobox-container .input-group-addon:active,.combobox-container .input-group-addon:focus,.combobox-container .input-group-addon:hover,.open .dropdown-toggle.combobox-container .input-group-addon{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.combobox-container .input-group-addon.active,.combobox-container .input-group-addon:active,.open .dropdown-toggle.combobox-container .input-group-addon{background-image:none}.combobox-container .input-group-addon.active.focus,.combobox-container .input-group-addon.active:focus,.combobox-container .input-group-addon.active:hover,.combobox-container .input-group-addon:active.focus,.combobox-container .input-group-addon:active:focus,.combobox-container .input-group-addon:active:hover,.open .dropdown-toggle.combobox-container .input-group-addon.focus,.open .dropdown-toggle.combobox-container .input-group-addon:focus,.open .dropdown-toggle.combobox-container .input-group-addon:hover{background-color:#e5e5e5;border-color:#a9a9a9}.combobox-container .input-group-addon.disabled,.combobox-container .input-group-addon.disabled.active,.combobox-container .input-group-addon.disabled:active,.combobox-container .input-group-addon.disabled:focus,.combobox-container .input-group-addon.disabled:hover,.combobox-container .input-group-addon[disabled],.combobox-container .input-group-addon[disabled].active,.combobox-container .input-group-addon[disabled]:active,.combobox-container .input-group-addon[disabled]:focus,.combobox-container .input-group-addon[disabled]:hover,fieldset[disabled] .combobox-container .input-group-addon,fieldset[disabled] .combobox-container .input-group-addon.active,fieldset[disabled] .combobox-container .input-group-addon:active,fieldset[disabled] .combobox-container .input-group-addon:focus,fieldset[disabled] .combobox-container .input-group-addon:hover{background-color:#f1f1f1;border-color:#bbb}.combobox-container .input-group-addon:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.bootstrap-datepicker.form-control[readonly]{background-color:#fff;border-color:#bbb!important;color:#363636;box-shadow:inset 0 1px 1px rgba(3,3,3,.075)}.bootstrap-datepicker.form-control[readonly]:focus{border-color:#0088ce;outline:0!important;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6)}.bootstrap-datepicker.form-control[readonly]:focus{border-color:#0088ce!important}.has-error .bootstrap-datepicker.form-control[readonly]:focus{border-color:#900;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33}.has-success .bootstrap-datepicker.form-control[readonly]:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168}.has-warning .bootstrap-datepicker.form-control[readonly]:focus{border-color:#bb6106;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60}.bootstrap-datepicker.form-control[readonly]:hover{border-color:#7dc3e8!important}.has-error .bootstrap-datepicker.form-control[readonly]:hover{border-color:#900!important}.has-success .bootstrap-datepicker.form-control[readonly]:hover{border-color:#2b542c!important}.has-warning .bootstrap-datepicker.form-control[readonly]:hover{border-color:#bb6106!important}.has-error .bootstrap-datepicker.form-control[readonly]{border-color:#c00!important}.has-success .bootstrap-datepicker.form-control[readonly]{border-color:#3c763d!important}.has-warning .bootstrap-datepicker.form-control[readonly]{border-color:#ec7a08!important}.datepicker{border-radius:1px}.datepicker .datepicker-switch,.datepicker tfoot .clear,.datepicker tfoot .today{font-size:14px;font-weight:500}.datepicker .next,.datepicker .prev{font-weight:500}.datepicker table tr td,.datepicker table tr th{border-radius:1px}.datepicker table tr td.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active:hover{background:#0088ce!important;color:#fff!important;text-shadow:none}.datepicker table tr td.day.focused,.datepicker table tr td.day:hover{background:#def3ff}.datepicker table tr td.selected,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected:hover{text-shadow:none}.datepicker table tr td span{border-radius:1px}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover{background:#0088ce;text-shadow:none}.datepicker table tr td span:hover{background:#def3ff}.datepicker tfoot tr th:hover,.datepicker thead tr:first-child th:hover{background:#def3ff}.input-daterange input:first-child{border-radius:1px 0 0 1px}.input-daterange input:last-child{border-radius:0 1px 1px 0}.input-daterange .input-group-addon{background-color:#f1f1f1;border-color:#bbb;line-height:1.66666667;padding:2px 6px}.bootstrap-select.btn-group.form-control{margin-bottom:0}.bootstrap-select.btn-group .btn{transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.bootstrap-select.btn-group .btn:hover{border-color:#7dc3e8}.bootstrap-select.btn-group .btn .caret{margin-top:-4px}.bootstrap-select.btn-group .btn:focus{border-color:#0088ce;outline:0!important;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6)}.has-error .bootstrap-select.btn-group .btn{border-color:#c00}.has-error .bootstrap-select.btn-group .btn:focus{border-color:#900;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33}.has-success .bootstrap-select.btn-group .btn{border-color:#3c763d}.has-success .bootstrap-select.btn-group .btn:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168}.has-warning .bootstrap-select.btn-group .btn{border-color:#ec7a08}.has-warning .bootstrap-select.btn-group .btn:focus{border-color:#bb6106;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60}.bootstrap-select.btn-group .dropdown-menu>.active>a,.bootstrap-select.btn-group .dropdown-menu>.active>a:active{background-color:#def3ff!important;border-color:#bee1f4!important;color:#363636!important}.bootstrap-select.btn-group .dropdown-menu>.active>a small,.bootstrap-select.btn-group .dropdown-menu>.active>a:active small{color:#9c9c9c!important}.bootstrap-select.btn-group .dropdown-menu>.disabled>a{color:#9c9c9c!important}.bootstrap-select.btn-group .dropdown-menu>.selected>a{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.bootstrap-select.btn-group .dropdown-menu>.selected>a small{color:rgba(255,255,255,.5)!important}.bootstrap-select.btn-group .dropdown-menu .divider{background:#ededed!important;margin:4px 1px!important}.bootstrap-select.btn-group .dropdown-menu dt{color:#8b8d8f;font-weight:400;padding:1px 10px}.bootstrap-select.btn-group .dropdown-menu li>a.opt{padding:1px 10px}.bootstrap-select.btn-group .dropdown-menu li a:active small{color:rgba(255,255,255,.5)!important}.bootstrap-select.btn-group .dropdown-menu li a:focus small,.bootstrap-select.btn-group .dropdown-menu li a:hover small{color:#9c9c9c}.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:focus small,.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:hover small{color:#9c9c9c}.slider-tick-label-container{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;margin-left:0!important}.slider-tick-label{width:auto!important}.slider .tooltip{top:-10px}.slider-track{background-color:#ededed;box-shadow:inset 0 2px 3px rgba(0,0,0,.1),0 0 2px #ededed;border:1px solid #bbb}.slider-selection{background-image:linear-gradient(to bottom,#0088ce 0,#39a5dc 100%);background-repeat:repeat-x}.slider-handle{width:16px;height:16px;border:1px solid #bbb}.slider-tick{background-color:transparent!important;background-image:radial-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3) 2px,transparent 2px)!important;box-shadow:none}.slider-pf{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.slider-pf *{margin-right:10px}.slider-pf :last-child{margin:0}.slider-pf .slider{width:auto;-ms-flex:1 1 100%;flex:1 1 100%}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default{background:#fafafa}.bootstrap-switch .bootstrap-switch-label{background:#f1f1f1;box-shadow:0 0 2px rgba(3,3,3,.4);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;position:relative;z-index:9}.bootstrap-touchspin .input-group-btn-vertical>.btn{padding-bottom:6px;padding-top:6px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{border-bottom-right-radius:1px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-top-right-radius:1px}.bootstrap-touchspin .input-group-btn-vertical i{font-size:8px;left:6px;top:2px}.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up{font-size:12px;line-height:12px;top:0}.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up{left:7px}.treeview .list-group{border-top:0}.treeview .list-group-item{background:0 0;border-bottom:1px solid transparent!important;border-top:1px solid transparent!important;cursor:default!important;margin-bottom:0;overflow:hidden;padding:0 10px;text-overflow:ellipsis;white-space:nowrap}.treeview .list-group-item:hover{background:0 0!important}.treeview .list-group-item.node-selected{background:0 0!important;border-color:transparent!important;color:inherit!important}.treeview .list-group-item.node-check-changed span.node-icon,.treeview .list-group-item.node-check-changed span.text{color:#39a5dc}.treeview span.icon{display:inline-block;font-size:13px;min-width:10px;text-align:center}.treeview span.icon>[class*=fa-angle]{font-size:15px}.treeview span.icon.check-icon{margin-right:10px}.treeview span.icon.expand-icon{cursor:pointer!important}.treeview span.image{background-repeat:no-repeat;background-size:contain;display:inline-block;height:1.19em;line-height:1em;margin-right:5px;vertical-align:middle;width:12px}.treeview span.indent{margin-right:5px}.treeview .node-disabled{color:#d1d1d1;cursor:not-allowed}.treeview .node-disabled span.expand-icon{cursor:default!important}.treeview .node-hidden{display:none}.treeview-pf-hover .list-group-item{cursor:pointer!important}.treeview-pf-hover .list-group-item:hover{background-color:#def3ff!important;border-color:#bee1f4!important}.treeview-pf-select .list-group-item{cursor:pointer!important}.treeview-pf-select .list-group-item.node-selected{background:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.card-pf{background:#fff;border-top:2px solid transparent;box-shadow:0 1px 1px rgba(3,3,3,.175);margin:0 -10px 20px;padding:0 20px}.card-pf.card-pf-accented{border-top-color:#39a5dc}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a,.card-pf.card-pf-aggregate-status .card-pf-title a{color:#363636}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add,.card-pf.card-pf-aggregate-status .card-pf-title a.add{color:#0088ce}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add:hover,.card-pf.card-pf-aggregate-status .card-pf-title a.add:hover{color:#00659c}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a:hover,.card-pf.card-pf-aggregate-status .card-pf-title a:hover{color:#00659c}.card-pf.card-pf-aggregate-status{padding:0 10px;text-align:center}.card-pf.card-pf-aggregate-status-mini{padding-bottom:10px;position:relative}@media (min-width:768px){.card-pf.card-pf-bleed-left{margin-left:-20px}.card-pf.card-pf-bleed-right{border-right:1px solid #d1d1d1;margin-right:-20px}}.card-pf-aggregate-status-notifications{font-size:24px;font-weight:300}.card-pf-aggregate-status-mini .card-pf-aggregate-status-notifications{line-height:1}.card-pf-aggregate-status-notifications .card-pf-aggregate-status-notification+.card-pf-aggregate-status-notification{border-left:1px solid #d1d1d1;margin-left:3px;padding-left:10px}.card-pf-aggregate-status-notifications .fa,.card-pf-aggregate-status-notifications .pficon{font-size:18px;margin-right:7px}.card-pf-body{margin:20px 0 0;padding:0 0 20px}.card-pf-aggregate-status .card-pf-body{margin-top:10px;padding-bottom:10px}.card-pf-aggregate-status-mini .card-pf-body{margin-bottom:0;margin-top:0;padding-bottom:0;position:absolute;right:20px;top:15px}.card-pf-utilization .card-pf-title+.card-pf-body{margin-top:-8px}.card-pf-body>:last-child{margin-bottom:0}.card-pf-footer{background-color:#fafafa;border-top:1px solid #d1d1d1;margin:0 -20px!important;padding:20px 20px 10px}.card-pf-footer a .fa,.card-pf-footer a .pficon{margin-right:5px}.card-pf-footer .card-pf-time-frame-filter{margin-top:-2px}.card-pf-link-with-icon{padding-left:21px;position:relative}.card-pf-link-with-icon .fa,.card-pf-link-with-icon .pficon{font-size:16px;left:0;position:absolute;top:0}.card-pf-footer .card-pf-time-frame-filter,.card-pf-heading .card-pf-time-frame-filter{float:right;margin-left:20px}.card-pf-heading{border-bottom:1px solid #d1d1d1;margin:0 -20px 20px;padding:0 20px 0}.card-pf-heading .card-pf-time-frame-filter{margin-top:-5px}.card-pf-heading-details{float:right;font-size:10px}.card-pf-subtitle{font-size:16px;margin-top:20px;margin-bottom:10px}[class^=col] .card-pf-subtitle{margin-top:0}@media (max-width:767px){.card-pf-body [class^=col]+[class^=col]>.card-pf-subtitle{margin-top:40px}}.card-pf-title{font-size:16px;font-weight:400;margin:20px 0;padding:0}.card-pf-aggregate-status .card-pf-title{font-size:14px;margin:10px 0 0}.card-pf-aggregate-status .card-pf-title .fa,.card-pf-aggregate-status .card-pf-title .pficon{color:#292e34;font-size:16px;margin-right:7px}.card-pf-title .card-pf-aggregate-status-count{font-size:16px}.card-pf-aggregate-status-mini .card-pf-title .card-pf-aggregate-status-count{display:block;font-size:24px;font-weight:300;margin-bottom:3px}.card-pf-aggregate-status-mini .card-pf-title{font-size:12px;margin-top:5px}.card-pf-aggregate-status-mini .card-pf-title a{display:inline-block}.card-pf-aggregate-status-mini .card-pf-title .fa,.card-pf-aggregate-status-mini .card-pf-title .pficon{font-size:26px;margin-right:0;min-width:26px;position:absolute;left:20px;text-align:center;top:15px}.card-pf-utilization-details{border-bottom:1px solid #d1d1d1;display:table;margin:12px 0 15px;padding:0 0 15px;width:100%}.card-pf-utilization-details .card-pf-utilization-card-details-count,.card-pf-utilization-details .card-pf-utilization-card-details-description{float:left;line-height:1}.card-pf-utilization-details .card-pf-utilization-card-details-count{font-size:26px;font-weight:300;margin-right:10px}.card-pf-utilization-details .card-pf-utilization-card-details-line-1,.card-pf-utilization-details .card-pf-utilization-card-details-line-2{display:block}.card-pf-utilization-details .card-pf-utilization-card-details-line-1{font-size:10px;margin-bottom:2px}.cards-pf{background:#f5f5f5}.cards-pf .row-cards-pf{padding:0 20px}.cards-pf .row-cards-pf:first-child{padding-top:20px}.container-cards-pf{margin-top:20px}.row-cards-pf{margin-left:-10px;margin-right:-10px}.card-pf-view{border:2px solid transparent}.card-pf-view .card-pf-heading-kebab .dropdown-kebab-pf{margin-top:-3px}.card-pf-view .card-pf-heading-kebab+.progress-pf-legend p{margin-bottom:0}.card-pf-view .card-pf-heading-kebab+.progress-pf-legend .progress{margin-bottom:7px;margin-top:16px}.card-pf-view .card-pf-info{margin-top:15px}.card-pf-view .card-pf-info strong{font-size:13px;margin-right:10px}.card-pf-view .card-pf-item{display:inline-block;font-size:16px;padding:0 13px 0 15px}.card-pf-view .card-pf-item:first-child{padding-left:0}.card-pf-view .card-pf-item:last-child{padding-right:0}.card-pf-view .card-pf-item+.card-pf-item{border-left:1px solid #d1d1d1}.card-pf-view .card-pf-item .fa-check{color:#3f9c35}.card-pf-view .card-pf-item .fa+.card-pf-item-text,.card-pf-view .card-pf-item .pficon+.card-pf-item-text{margin-left:10px}.card-pf-view .card-pf-items{margin-top:15px}.card-pf-view .card-pf-title{font-size:20px;font-weight:300;margin-bottom:0;margin-top:15px}.card-pf-view .card-pf-title .fa,.card-pf-view .card-pf-title .pficon{font-size:18px;margin-right:2px}.col-lg-2 .card-pf-view .card-pf-title{font-size:16px}.card-pf-view .card-pf-top-element .card-pf-icon-circle{border:2px solid #39a5dc;border-radius:50%;display:block;font-size:46px;height:106px;line-height:102px;margin:0 auto;text-align:center;width:106px}.col-lg-2 .card-pf-view .card-pf-top-element .card-pf-icon-circle{font-size:23px;height:54px;line-height:50px;width:54px}.card-pf-view .card-pf-view-checkbox{position:absolute;top:11px;left:15px}.card-pf-view .card-pf-view-checkbox input[type=checkbox]{display:none}.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]{display:block}@media (min-width:768px){.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]{visibility:hidden}.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]:checked{visibility:visible}}.card-pf-view.card-pf-view-multi-select:hover .card-pf-view-checkbox input[type=checkbox]{visibility:visible}.card-pf-view.card-pf-view-select{position:relative}.card-pf-view.card-pf-view-select:hover{box-shadow:0 1px 6px rgba(3,3,3,.35)}.card-pf-view.card-pf-view-select.active{border:2px solid #39a5dc}.card-pf-view.card-pf-view-single-select{cursor:pointer}.card-pf-view.card-pf-view-xs .card-pf-title{font-size:16px;font-weight:400;margin-bottom:10px}.card-pf-view.card-pf-view-xs .card-pf-title .fa,.card-pf-view.card-pf-view-xs .card-pf-title .pficon{font-size:14px;margin-right:5px}.c3 path{stroke:#d1d1d1}.c3 svg{font-family:"Open Sans",Helvetica,Arial,sans-serif}.c3-axis-x .tick line{stroke:#d1d1d1}.c3-axis-y .tick line{display:none}.c3-chart-arc path{stroke:#fff}.c3-grid line{stroke:#d1d1d1}.c3-line{stroke-width:2px}.c3-tooltip{background:#393f44;box-shadow:none;opacity:.9}.c3-tooltip td{background:0 0;border:0;color:#fff;font-size:12px;padding:5px 10px}.c3-tooltip th{background:0 0;font-size:12px;padding:5px 10px 0;border-bottom:solid 2px #030303}.c3-tooltip tr{border:0}.c3-tooltip tr+tr>td{padding-top:0}.c3-tooltip-sparkline,.donut-tooltip-pf{background:#393f44;color:#fff;opacity:.9;padding:2px 6px}.c3-xgrid,.c3-ygrid{stroke-dasharray:0 0}.chart-pf-sparkline{margin-left:-5px;margin-right:-5px}.donut-title-big-pf{font-size:30px;font-weight:300}.donut-title-small-pf{font-size:12px;font-weight:400}.line-chart-pf .c3-zoom-rect{opacity:1!important;fill:#fafafa;stroke:#d1d1d1;stroke-width:1px}.pct-donut-chart-pf .pct-donut-chart-pf-label{display:block}.pct-donut-chart-pf .pct-donut-chart-pf-left,.pct-donut-chart-pf .pct-donut-chart-pf-right,.pct-donut-chart-pf.pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-right{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.pct-donut-chart-pf.pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-right{display:-ms-inline-flexbox;display:inline-flex}.pct-donut-chart-pf .pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-left{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.close{text-shadow:none;z-index:1;position:relative;opacity:.6}.close:focus,.close:hover{opacity:.9}.ColVis_Button:active:focus{outline:0}.ColVis_catcher{position:absolute;z-index:999}.ColVis_collection{background-color:#fff;border:1px solid #bbb;border-radius:1px;box-shadow:0 6px 12px rgba(3,3,3,.175);background-clip:padding-box;list-style:none;margin:-1px 0 0 0;padding:5px 10px;width:150px;z-index:1000}.ColVis_collection label{font-weight:400;margin-bottom:5px;margin-top:5px;padding-left:20px}.ColVis_collectionBackground{background-color:#fff;height:100%;left:0;position:fixed;top:0;width:100%;z-index:998}.dataTables_header{background-color:#f5f5f5;border:1px solid #d1d1d1;border-bottom:none;padding:5px;position:relative;text-align:center}.dataTables_header .btn{box-shadow:none}.dataTables_header .ColVis{position:absolute;right:5px;text-align:left;top:5px}.dataTables_header .ColVis+.dataTables_info{padding-right:30px}.dataTables_header .dataTables_filter{position:absolute}.dataTables_header .dataTables_filter input{border:1px solid #bbb;height:24px}@media (max-width:767px){.dataTables_header .dataTables_filter input{width:100px}}.dataTables_header .dataTables_info{padding:2px 0}@media (max-width:480px){.dataTables_header .dataTables_info{text-align:right}}.dataTables_header .dataTables_info b{font-weight:700}.dataTables_footer{background-color:#fff;border:1px solid #d1d1d1;border-top:none;overflow:hidden}.dataTables_paginate{background:#fafafa;float:right;margin:0}.dataTables_paginate .pagination{float:left;margin:0}.dataTables_paginate .pagination>li>span{border-color:#fff #d1d1d1 #f5f5f5;border-width:0 1px;font-size:16px;font-weight:400;padding:0;text-align:center;width:31px}.dataTables_paginate .pagination>li.last>span{border-right:none}.dataTables_paginate .pagination>li.disabled>span{background:#f5f5f5;border-left-color:#ededed;border-right-color:#ededed}.dataTables_paginate .pagination-input{float:left;font-size:12px;line-height:1em;padding:4px 15px 0;text-align:right}.dataTables_paginate .pagination-input .paginate_input{border:1px solid #d1d1d1;box-shadow:inset 0 1px 1px rgba(3,3,3,.075);font-size:12px;font-weight:600;height:19px;margin-right:8px;padding-right:3px;text-align:right;width:30px}.dataTables_paginate .pagination-input .paginate_of{position:relative}.dataTables_paginate .pagination-input .paginate_of b{margin-left:3px}.dataTables_empty{background:#f5f5f5}.DTCR_clonedTable{background-color:rgba(255,255,255,.7);z-index:202}.DTCR_pointer{background-color:#0088ce;width:1px;z-index:201}.experimental-pf>*{border:2px solid #92d400}.experimental-pf-bar{background-color:#92d400;border:none;text-align:center;position:relative}.experimental-pf-more-info{background-color:#92d400;border:0;color:#030303;display:block;width:100%;padding-top:10px;padding-bottom:10px;position:static}@media (min-width:992px){.experimental-pf-more-info{padding:0 10px;position:absolute;right:0;top:0;width:auto}}@media (min-width:992px){.experimental-pf-text{padding-left:150px;padding-right:150px}}.experimental-pf-text a{color:#030303;text-decoration:underline}.experimental-pf-text a:hover{color:#030303;cursor:pointer}.btn-experimental-pf{background-color:#92d400;background-image:linear-gradient(to bottom,#ace12e 0,#92d400 100%);background-repeat:repeat-x;border-color:#92d400;color:#4d5258}.btn-experimental-pf.active,.btn-experimental-pf:active,.btn-experimental-pf:focus,.btn-experimental-pf:hover,.open .dropdown-toggle.btn-experimental-pf{background-color:#92d400;background-image:none;border-color:#92d400;color:#4d5258}.btn-experimental-pf.active,.btn-experimental-pf:active,.open .dropdown-toggle.btn-experimental-pf{background-image:none}.btn-experimental-pf.active.focus,.btn-experimental-pf.active:focus,.btn-experimental-pf.active:hover,.btn-experimental-pf:active.focus,.btn-experimental-pf:active:focus,.btn-experimental-pf:active:hover,.open .dropdown-toggle.btn-experimental-pf.focus,.open .dropdown-toggle.btn-experimental-pf:focus,.open .dropdown-toggle.btn-experimental-pf:hover{background-color:#80bb00;border-color:#79b000}.btn-experimental-pf.disabled,.btn-experimental-pf.disabled.active,.btn-experimental-pf.disabled:active,.btn-experimental-pf.disabled:focus,.btn-experimental-pf.disabled:hover,.btn-experimental-pf[disabled],.btn-experimental-pf[disabled].active,.btn-experimental-pf[disabled]:active,.btn-experimental-pf[disabled]:focus,.btn-experimental-pf[disabled]:hover,fieldset[disabled] .btn-experimental-pf,fieldset[disabled] .btn-experimental-pf.active,fieldset[disabled] .btn-experimental-pf:active,fieldset[disabled] .btn-experimental-pf:focus,fieldset[disabled] .btn-experimental-pf:hover{background-color:#92d400;border-color:#92d400}.filter-pf-category-select{display:-ms-flexbox;display:flex}.filter-pf-category-select-value{border-left-width:0}.filter-pf-category-item{margin-bottom:5px}.filter-pf-category-label{font-weight:700;margin-right:5px;padding:5px 0 6px 5px}.filter-pf-select .caret{position:absolute;top:50%;right:10px;-ms-transform:translateY(-50%);transform:translateY(-50%)}.filter-pf-select-dropdown{background-color:#fff;background-image:none;color:#8b8d8f;font-size:12px;font-style:italic;font-weight:400;padding-right:25px;text-align:left}.filter-pf-select-dropdown .caret{font-style:normal}.filter-pf-active-label{margin-right:5px}.footer-pf,.footer-pf-alt{background-color:#030303;color:#9c9c9c;font-size:11px;line-height:17px;padding-left:25px;padding-top:10px}.layout-pf-alt-fixed-with-footer .footer-pf,.layout-pf-alt-fixed-with-footer .footer-pf-alt,.layout-pf-fixed-with-footer .footer-pf,.layout-pf-fixed-with-footer .footer-pf-alt{bottom:0;left:0;position:fixed;right:0;z-index:1030}@font-face{font-family:PatternFlyIcons-webfont;src:url(../fonts/PatternFlyIcons-webfont.eot);src:url(../fonts/PatternFlyIcons-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/PatternFlyIcons-webfont.ttf) format("truetype"),url(../fonts/PatternFlyIcons-webfont.woff) format("woff"),url(../fonts/PatternFlyIcons-webfont.svg#PatternFlyIcons-webfont) format("svg");font-weight:400;font-style:normal}[class*=" pficon-"],[class^=pficon-]{display:inline-block;font-family:PatternFlyIcons-webfont;font-style:normal;font-variant:normal;font-weight:400;line-height:1;speak:none;text-transform:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.pficon-add-circle-o:before{content:"\e61b"}.pficon-applications:before{content:"\e936"}.pficon-arrow:before{content:"\e929"}.pficon-asleep:before{content:"\e925"}.pficon-automation:before{content:"\e937"}.pficon-build:before{content:"\e902"}.pficon-builder-image:before{content:"\e800"}.pficon-bundle:before{content:"\e918"}.pficon-blueprint:before{content:"\e915"}.pficon-catalog:before{content:"\e939"}.pficon-chat:before{content:"\e928"}.pficon-close:before{content:"\e60b"}.pficon-cloud-security:before{content:"\e903"}.pficon-cloud-tenant:before{content:"\e904"}.pficon-cluster:before{content:"\e620"}.pficon-connected:before{content:"\e938"}.pficon-container-node:before{content:"\e621"}.pficon-cpu:before{content:"\e927"}.pficon-degraded:before{content:"\e91b"}.pficon-delete:before{content:"\e611"}.pficon-disconnected:before{content:"\e93c"}.pficon-domain:before{content:"\e919"}.pficon-edit:before{content:"\e60a"}.pficon-enhancement:before{content:"\e93a"}.pficon-enterprise:before{content:"\e906"}.pficon-equalizer:before{content:"\e610"}.pficon-error-circle-o:before{color:#c00;content:"\e926"}.pficon-export:before{content:"\e616"}.pficon-flag:before,.pficon-messages:before{content:"\e603"}.pficon-flavor:before{content:"\e907"}.pficon-filter:before{content:"\e943"}.pficon-folder-close:before{content:"\e607"}.pficon-folder-open:before{content:"\e606"}.pficon-help:before{content:"\e605"}.pficon-history:before{content:"\e617"}.pficon-home:before{content:"\e618"}.pficon-image:before{content:"\e61f"}.pficon-import:before{content:"\e615"}.pficon-in-progress:before{content:"\e92c"}.pficon-info:before{content:"\e92b"}.pficon-infrastructure:before{content:"\e93d"}.pficon-integration:before{content:"\e948"}.pficon-key:before{content:"\e924"}.pficon-locked:before{content:"\e923"}.pficon-maintenance:before{content:"\e92d"}.pficon-memory:before{content:"\e908"}.pficon-middleware:before{content:"\e917"}.pficon-migration:before{content:"\e92e"}.pficon-monitoring:before{content:"\e944"}.pficon-network:before{content:"\e909"}.pficon-on:before{content:"\e931"}.pficon-on-running:before{content:"\e930"}.pficon-optimize:before{content:"\e93e"}.pficon-orders:before{content:"\e93f"}.pficon-off:before{content:"\e92f"}.pficon-ok:before{color:#3f9c35;content:"\e602"}.pficon-paused:before{content:"\e932"}.pficon-pending:before{content:"\e933"}.pficon-plugged:before{content:"\e940"}.pficon-port:before{content:"\e945"}.pficon-print:before{content:"\e612"}.pficon-process-automation:before{content:"\e949"}.pficon-private:before{content:"\e914"}.pficon-project:before{content:"\e905"}.pficon-rebalance:before{content:"\e91c"}.pficon-rebooting:before{content:"\e934"}.pficon-refresh:before,.pficon-restart:before{content:"\e617"}.pficon-regions:before{content:"\e90a"}.pficon-registry:before{content:"\e623"}.pficon-remove:before{content:"\e611"}.pficon-replicator:before{content:"\e624"}.pficon-repository:before{content:"\e90b"}.pficon-resource-pool:before{content:"\e90c"}.pficon-resources-almost-empty:before{content:"\e91d"}.pficon-resources-almost-full:before{content:"\e912"}.pficon-resources-full:before{content:"\e92a"}.pficon-route:before{content:"\e625"}.pficon-running:before{content:"\e614"}.pficon-save:before{content:"\e601"}.pficon-screen:before{content:"\e600"}.pficon-search:before{content:"\e921"}.pficon-security:before{content:"\e946"}.pficon-server:before{content:"\e90d"}.pficon-server-group:before{content:"\e91a"}.pficon-service:before{content:"\e61e"}.pficon-services:before{content:"\e947"}.pficon-service-catalog:before{content:"\e941"}.pficon-settings:before{content:"\e610"}.pficon-spinner:before{content:"\e614"}.pficon-spinner2:before{content:"\e613"}.pficon-storage-domain:before{content:"\e90e"}.pficon-tenant:before{content:"\e916"}.pficon-thumb-tack-o:before{content:"\e920"}.pficon-topology:before{content:"\e608"}.pficon-trend-down:before{content:"\e900"}.pficon-trend-up:before{content:"\e901"}.pficon-unknown:before{content:"\e935"}.pficon-user:before{content:"\e91e"}.pficon-users:before{content:"\e91f"}.pficon-unlocked:before{content:"\e922"}.pficon-unplugged:before{content:"\e942"}.pficon-virtual-machine:before{content:"\e90f"}.pficon-volume:before{content:"\e910"}.pficon-warning-triangle-o:before{color:#ec7a08;content:"\e913"}.pficon-zone:before{content:"\e911"}.navbar-nav>li>.dropdown-menu.infotip{border-top-width:1px!important;margin-top:10px}@media (max-width:767px){.navbar-pf .navbar-nav .open .dropdown-menu.infotip{background-color:#fff!important;margin-top:0}}.infotip{min-width:235px;padding:0}.infotip .list-group{border-top:0;margin:0;padding:8px 0}.infotip .list-group .list-group-item{border:none;margin:0 15px 0 34px;padding:5px 0}.infotip .list-group .list-group-item>.i{color:#4d5258;font-size:13px;left:-20px;position:absolute;top:8px}.infotip .list-group .list-group-item>a{color:#4d5258;line-height:13px}.infotip .list-group .list-group-item>.close{float:right}.infotip .footer{background-color:#f5f5f5;padding:6px 15px}.infotip .footer a:hover{color:#0088ce}.infotip .arrow,.infotip .arrow:after{border-color:transparent;border-style:solid;display:block;height:0;position:absolute;width:0}.infotip .arrow{border-width:11px}.infotip .arrow:after{border-width:10px;content:""}.infotip.bottom .arrow,.infotip.bottom-left .arrow,.infotip.bottom-right .arrow{border-bottom-color:#bbb;border-top-width:0;left:50%;margin-left:-11px;top:-11px}.infotip.bottom .arrow:after,.infotip.bottom-left .arrow:after,.infotip.bottom-right .arrow:after{border-top-width:0;border-bottom-color:#fff;content:" ";margin-left:-10px;top:1px}.infotip.bottom-left .arrow{left:20%}.infotip.bottom-right .arrow{left:80%}.infotip.top .arrow{border-bottom-width:0;border-top-color:#bbb;bottom:-11px;left:50%;margin-left:-11px}.infotip.top .arrow:after{border-bottom-width:0;border-top-color:#f5f5f5;bottom:1px;content:" ";margin-left:-10px}.infotip.right .arrow{border-left-width:0;border-right-color:#bbb;left:-11px;margin-top:-11px;top:50%}.infotip.right .arrow:after{bottom:-10px;border-left-width:0;border-right-color:#fff;content:" ";left:1px}.infotip.left .arrow{border-left-color:#bbb;border-right-width:0;margin-top:-11px;right:-11px;top:50%}.infotip.left .arrow:after{border-left-color:#fff;border-right-width:0;bottom:-10px;content:" ";right:1px}.layout-pf,.layout-pf body{min-height:100%}.layout-pf.layout-pf-fixed.transitions .container-pf-nav-pf-vertical{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf.layout-pf-fixed body{padding-top:60px}.layout-pf.layout-pf-fixed .navbar-pf{left:0;position:fixed;top:0;right:0;z-index:1030}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav{margin-left:75px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav.hidden-icons-pf{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hidden-nav{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hide-nav-pf{margin-left:0!important}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf,.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges,.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}@media (min-width:1200px){.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf{margin-left:400px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges{margin-left:500px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hidden-nav{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav{margin-left:275px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.nav-pf-vertical-with-badges{margin-left:325px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.hidden-icons-pf{margin-left:0}}.layout-pf.layout-pf-fixed-with-footer body{padding-bottom:37px}.layout-pf-alt,.layout-pf-alt body{min-height:100%}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll,.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll body{height:100%;min-height:0}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt{height:100%;overflow:auto}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt.container-cards-pf{margin-top:0;padding-top:20px}.layout-pf-alt.layout-pf-alt-fixed.transitions .container-pf-alt-nav-pf-vertical-alt{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt.layout-pf-alt-fixed body{padding-top:60px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt{margin-left:250px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.collapsed-nav{margin-left:75px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.hidden-nav{margin-left:0}.layout-pf-alt.layout-pf-alt-fixed-with-footer body{padding-bottom:37px}a.disabled{color:#8b8d8f;cursor:not-allowed;text-decoration:none}.list-pf{border-bottom:1px solid #ededed}.list-pf-item{border-color:#ededed;border-left-color:#fff;border-right-color:#fff;border-style:solid;border-width:1px;border-bottom:none}.list-pf-item:hover{background-color:#edf8ff}.list-pf-item.active{background-color:#ededed;border-color:#bbb;border-bottom-width:1px;border-bottom-style:solid}.list-pf-expansion{background-color:#fff}.list-pf-container{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;padding:20px}.list-pf-expansion .list-pf-container{border-top:1px solid #bbb}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-container{-ms-flex-align:center;align-items:center}}.list-pf-chevron{min-width:1.2em}.list-pf-chevron,.list-pf-select{margin-right:10px}.list-pf-chevron+.list-pf-content,.list-pf-select+.list-pf-content{border-left:1px solid #d1d1d1;padding-left:20px}.list-pf-chevron .fa,.list-pf-select .fa{font-size:22px}.list-pf-content-flex{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;min-width:0}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-content-flex{-ms-flex-align:center;align-items:center}}.list-pf-left{-ms-flex-positive:0;flex-grow:0;margin-left:0;margin-right:20px}.list-pf-icon{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.list-pf-icon-bordered{border-radius:50%;border:2px solid #39a5dc}.list-pf-icon-small{font-size:1.4em;height:30px;line-height:30px;width:30px}.list-pf-content-wrapper{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:0}@media (min-width:992px){.list-pf-content-wrapper{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.list-pf-content-wrapper>*+*{margin-left:40px}}.list-pf-stacked .list-pf-content-wrapper{-ms-flex-align:start;align-items:flex-start}.list-pf-main-content{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-preferred-size:70%;flex-basis:70%;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:0}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-main-content{-ms-flex-wrap:nowrap;flex-wrap:nowrap;width:auto}.list-pf:not(.list-pf-stacked) .list-pf-main-content>*+*{margin-left:40px}}.list-pf-title{-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:100%;flex-basis:100%;font-weight:700;min-width:0;word-wrap:break-word}.list-pf-description{-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:100%;flex-basis:100%;min-width:0;word-wrap:break-word}.list-pf-additional-content{display:-ms-flexbox;display:flex;-ms-flex-preferred-size:31%;flex-basis:31%;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between}.list-pf-actions{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-positive:0;flex-grow:0;margin-left:40px}.list-pf-actions>*+*{margin-left:10px}.list-view-pf .list-group-item{-ms-flex-align:start;align-items:flex-start;background-clip:padding-box;border-color:transparent #fff;border-style:solid;border-width:1px;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-bottom:0;padding-top:0}.list-view-pf .list-group-item:after,.list-view-pf .list-group-item:before{content:" ";display:table}.list-view-pf .list-group-item:after{clear:both}.list-view-pf .list-group-item.list-view-pf-expand-active{background-color:#edf8ff;box-shadow:0 2px 6px rgba(3,3,3,.2);z-index:1}.list-view-pf .list-group-item.active{color:#555;background-color:#def3ff;background-clip:border-box;border-color:#bbb transparent transparent;z-index:auto}.list-view-pf .list-group-item:hover{background-color:#edf8ff;border-left-color:transparent;border-right-color:transparent}.list-view-pf .list-group-item.list-view-pf-expand-active{border:solid 1px #bbb}.list-view-pf .list-group-item.list-view-pf-expand-active:first-child{border-top-color:#bbb}.list-view-pf .list-group-item:first-child{border-top:1px solid transparent}@media (min-width:992px){.list-view-pf .list-group-item{-ms-flex-align:center;align-items:center}}.list-view-pf .list-group-item-heading{font-size:16px}.list-view-pf .list-group-item-heading small{display:block;font-size:9.6px;font-weight:400}@media (min-width:992px){.list-view-pf .list-group-item-heading{-ms-flex:1 0 calc(25% - 20px);flex:1 0 calc(25% - 20px);float:left;font-size:12px;margin:0 20px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:calc(25% - 20px)}}.list-view-pf .list-group-item-text{color:currentColor!important;margin-bottom:10px}@media (min-width:992px){.list-view-pf .list-group-item-text{-ms-flex:1 0 auto;flex:1 0 auto;float:left;margin:0 40px 0 0;width:calc(75% - 40px)}}.list-view-pf-actions{float:right;margin-bottom:20px;margin-left:20px;margin-top:20px;-ms-flex-order:2;order:2}.list-view-pf-actions .dropdown-kebab-pf,.list-view-pf-actions button,.list-view-pf-actions>a{margin-left:10px}.list-view-pf-top-align .list-view-pf-actions{-ms-flex-item-align:start;align-self:flex-start}.list-view-pf-additional-info{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@media (min-width:992px){.list-view-pf-additional-info{-ms-flex:1 0 auto;flex:1 0 auto;float:left;width:50%}}.list-view-pf-additional-info-item{-ms-flex-align:center;align-items:center;display:inline-block;display:-ms-flexbox;display:flex;margin-right:20px;max-width:100%;text-align:center}.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked{text-align:center;-ms-flex-direction:column;flex-direction:column}.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked strong{font-size:13px;line-height:1em}.list-view-pf-additional-info-item .fa,.list-view-pf-additional-info-item .pficon{font-size:16px;margin-right:10px}.list-view-pf-additional-info-item strong{font-size:16px;font-weight:600;margin-right:5px}.list-view-pf-additional-info-item:last-child{margin-right:0}.list-view-pf-additional-info-item-donut-chart{width:60px}.list-view-pf-body{-ms-flex-align:center;align-items:center;display:table-cell;-ms-flex:1;flex:1;min-width:0;vertical-align:top;width:100%}@media (min-width:992px){.list-view-pf-body{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}}.list-view-pf-checkbox{border-right:1px solid #d1d1d1;float:left;margin-bottom:20px;margin-right:15px;margin-top:20px;padding:3px 10px 3px 0}.list-view-pf-top-align .list-view-pf-checkbox{-ms-flex-item-align:start;align-self:flex-start}.list-view-pf-description{-ms-flex:1 0 50%;flex:1 0 50%}.list-view-pf-stacked .list-view-pf-description{display:block;-ms-flex:none;flex:none}@media (min-width:992px){.list-view-pf-description{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;float:left;width:50%}}.list-view-pf-left{display:table-cell;padding-right:20px;text-align:center;vertical-align:top}.list-view-pf-left .list-view-pf-calendar{font-size:11px;line-height:1em}.list-view-pf-left .list-view-pf-calendar strong{display:block;font-size:44px;font-weight:300;line-height:1em}.list-view-pf-left .fa,.list-view-pf-left .pficon{border-radius:50%;font-size:2em}.list-view-pf-left .fa.list-view-pf-icon-md,.list-view-pf-left .pficon.list-view-pf-icon-md{background-color:#f5f5f5;height:50px;line-height:50px;width:50px}.list-view-pf-left .fa.list-view-pf-icon-danger,.list-view-pf-left .pficon.list-view-pf-icon-danger{background-color:#ffe6e6;color:#c00}.list-view-pf-left .fa.list-view-pf-icon-info,.list-view-pf-left .pficon.list-view-pf-icon-info{color:#8b8d8f}.list-view-pf-left .fa.list-view-pf-icon-lg,.list-view-pf-left .pficon.list-view-pf-icon-lg{background-color:#f5f5f5;height:60px;line-height:60px;width:60px}.list-view-pf-left .fa.list-view-pf-icon-sm,.list-view-pf-left .pficon.list-view-pf-icon-sm{border:2px solid #39a5dc;font-size:1.4em;height:30px;line-height:30px;width:30px}.list-view-pf-left .fa.list-view-pf-icon-sm:before,.list-view-pf-left .pficon.list-view-pf-icon-sm:before{display:block;line-height:26px}.list-view-pf-left .fa.list-view-pf-icon-success,.list-view-pf-left .pficon.list-view-pf-icon-success{background-color:#e9f4e9;color:#3f9c35}.list-view-pf-left .fa.list-view-pf-icon-warning,.list-view-pf-left .pficon.list-view-pf-icon-warning{background-color:#fdf2e5;color:#ec7a08}.list-view-pf-main-info{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;min-width:0;padding-bottom:20px;padding-top:20px}@media (min-width:992px){.list-view-pf-main-info{-ms-flex-align:center;align-items:center}.list-view-pf-top-align .list-view-pf-main-info{-ms-flex-align:start;align-items:flex-start}}.list-view-pf-stacked .list-group-item-heading{float:none;font-size:16px;line-height:1.2em;margin-bottom:5px;margin-right:40px;width:auto}.list-view-pf-stacked .list-group-item-text{float:none;width:auto}.list-view-pf-view{background:#ededed;border:none;margin-top:30px}.list-group-item-header{box-sizing:content-box;cursor:pointer;margin:0 -15px;padding:0 15px;width:100%}.list-view-pf-expand{cursor:pointer;float:left;margin-bottom:20px;margin-right:2px;margin-top:20px;padding:3px 0}.list-view-pf-expand.active,.list-view-pf-expand:hover{color:#0088ce}.list-view-pf-additional-info-item .list-view-pf-expand{margin:0;padding:0}.list-view-pf-expand .fa-angle-right{cursor:pointer;font-size:17px;margin-right:5px;margin-top:2px;width:10px}.list-group-item-container{background:#fff;border-top:solid 1px #bbb;box-sizing:content-box;margin:-1px -15px 0;-ms-flex-order:3;order:3;padding:10px 15px;position:relative;width:100%}.list-view-pf-dnd .dndDragging.drag-original{display:none}.list-view-pf-dnd .dndDragging.drag-original .list-view-pf-dnd-original-items{display:block}.list-view-pf-dnd .dndDragging .list-view-pf-dnd-drag-items{display:inline-block}.list-view-pf-dnd .dndDragging .list-view-pf-dnd-original-items{display:none}.list-view-pf-dnd .dndPlaceholder{background-color:#ededed;padding:20px 0}.list-view-pf-dnd .list-group-item-header{margin-left:-10px}.list-view-pf-dnd .list-group-item-header:before{background-image:linear-gradient(to bottom,#0088ce 60%,#fff 0);background-position:left;background-repeat:repeat-y;background-size:2px 5px;border:4px solid #0088ce;border-color:#00659c;content:"";height:55px;left:4px;position:absolute;top:5px;width:10px}.list-view-pf-dnd-drag-items{display:none}.login-pf{height:100%}.login-pf #brand{position:relative;top:-70px}.login-pf #brand img{display:block;height:18px;margin:0 auto;max-width:100%}@media (min-width:768px){.login-pf #brand img{margin:0;text-align:left}}.login-pf #badge{display:block;margin:20px auto 70px;position:relative;text-align:center}@media (min-width:768px){.login-pf #badge{float:right;margin-right:64px;margin-top:50px}}.login-pf body{background:#030303 url(../img/bg-login.jpg) repeat-x 50% 0;background-size:auto}@media (min-width:768px){.login-pf body{background-size:100% auto}}.login-pf .container{background-color:rgba(255,255,255,.055);clear:right;color:#fff;padding-bottom:40px;padding-top:20px;width:auto}@media (min-width:768px){.login-pf .container{bottom:13%;padding-left:80px;position:absolute;width:100%}}.login-pf .container .details p:first-child{border-top:1px solid rgba(255,255,255,.3);padding-top:25px;margin-top:25px}@media (min-width:768px){.login-pf .container .details{border-left:1px solid rgba(255,255,255,.3);padding-left:40px}.login-pf .container .details p:first-child{border-top:0;padding-top:0;margin-top:0}}.login-pf .container .details p{margin-bottom:2px}.login-pf .container .form-horizontal .control-label{font-size:13px;font-weight:400;text-align:left}.login-pf .container .form-horizontal .form-group:last-child,.login-pf .container .form-horizontal .form-group:last-child .help-block:last-child{margin-bottom:0}.login-pf .container .help-block{color:#fff}@media (min-width:768px){.login-pf .container .login{padding-right:40px}}.login-pf .container .submit{text-align:right}.login-pf-page .login-pf-brand{margin-top:20px;max-width:360px;width:70%}@media (min-width:768px){.login-pf-page .login-pf-brand{margin-top:62px}}.login-pf-page .login-pf-page-header{margin-bottom:20px;text-align:center}@media (min-width:768px){.login-pf-page .login-pf-page-header{margin-bottom:40px}}.login-pf-page .login-pf-page-header p{color:#fff;font-size:14px;margin-left:auto;margin-right:auto;margin-top:20px}.login-pf-page .card-pf{padding:10px 20px 30px 20px;margin-bottom:0}@media (min-width:768px){.login-pf-page .card-pf{padding:20px 40px 30px 40px}}.login-pf-page .card-pf p{color:#72767b}.login-pf-page .form-control{height:36px}.login-pf-page .checkbox-label{color:#72767b;font-weight:300;margin-bottom:15px}@media (min-width:768px){.login-pf-page .checkbox-label{margin:0}}.login-pf-page .btn-primary{margin-top:40px}.login-pf-page .login-pf-header{margin-bottom:20px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}@media (min-width:768px){.login-pf-page .login-pf-header{margin-bottom:30px}}.login-pf-page .login-pf-header h1,.login-pf-page .login-pf-header p{text-align:center}.login-pf-page .login-pf-header h1{font-size:16px}@media (min-width:768px){.login-pf-page .login-pf-header h1{font-size:24px}}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:auto;-ms-flex-item-align:end;align-self:flex-end}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle{color:#4d5258;background:0 0;padding:0 15px 0 0;font-weight:300}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle:not(:focus){box-shadow:none;border:1px solid transparent}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle .caret{right:0}.login-pf-page .login-pf-signup{margin:40px 0 0;font-size:15px;text-align:center}.login-pf-page .login-pf-signup a{margin-left:10px}.login-pf-page .login-pf-settings{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.login-pf-page .login-pf-page-footer{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.login-pf-page .login-pf-page-footer-links{display:-ms-flexbox;display:flex;margin:60px 0 0 0}.login-pf-page .login-pf-page-footer-links li:not(:last-of-type){position:relative;margin:0 20px 0 0}.login-pf-page .login-pf-page-footer-links li:not(:last-of-type):after{content:".";color:#fff;position:absolute;top:0;right:-10px}.login-pf-page .login-pf-page-footer-link{color:#fff;font-size:14px}.login-pf-page .login-pf-page-footer-sso-services{-ms-flex:1 0 100%;flex:1 0 100%;margin-top:40px;text-align:center;color:#fff}.login-pf-page .login-pf-page-footer-sso-services-logos{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0;margin:0;list-style:none;-ms-flex-pack:center;justify-content:center}.login-pf-page .login-pf-page-footer-sso-services-logos li{margin:0 5px 5px}.login-pf-page.login-pf-page-accounts{margin-left:20px;margin-right:20px}.login-pf-page .login-pf-accounts{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:840px;margin-left:auto;margin-right:auto}.login-pf-page .login-pf-accounts .login-pf-header,.login-pf-page .login-pf-accounts .login-pf-signup{-ms-flex-preferred-size:100%;flex-basis:100%}.login-pf-page .login-pf-social-section{-ms-flex-preferred-size:100%;flex-basis:100%;padding:0}@media (min-width:768px){.login-pf-page .login-pf-social-section{-ms-flex:0 1 50%;flex:0 1 50%;max-width:50%}}@media (min-width:768px){.login-pf-page .login-pf-social-section:first-of-type{padding-right:40px}.login-pf-page .login-pf-social-section:last-of-type{padding-left:39px;border-left:1px solid #d1d1d1}}.login-pf-page .login-pf-social{margin:40px 0 0 0}@media (min-width:768px){.login-pf-page .login-pf-social{margin:0}.login-pf-page .login-pf-social-double-col{-ms-flex-wrap:wrap;flex-wrap:wrap;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}.login-pf-page .login-pf-social-double-col .login-pf-social-link{-ms-flex-preferred-size:48%;flex-basis:48%}}.login-pf-page .login-pf-social:not(.login-pf-social-all) .login-pf-social-link-more{display:none}.login-pf-page .login-pf-social-link{margin-bottom:15px}.login-pf-page .login-pf-social-link a{display:block;padding:7px 0;font-size:14px;background:#f5f5f5;text-align:center;color:#72767b}.login-pf-page .login-pf-social-link a img{margin:0 10px 0 0;width:20px;height:20px}.login-pf-page .login-pf-social-link a:hover{text-decoration:none;background:#ededed}.login-pf-page .login-pf-social-toggle{float:right;padding:0}.login-pf-page .login-pf-social-toggle .caret{margin-left:5px}.login-pf-page .login-pf-social-toggle-active .caret{-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.navbar-pf{background:#030303;border:0;border-radius:0;border-top:3px solid #39a5dc;margin-bottom:0;min-height:0}.navbar-pf .navbar-brand{color:#f5f5f5;height:auto;padding:12px 0;margin:0 0 0 20px}.navbar-pf .navbar-brand img{display:block}.navbar-pf .navbar-collapse{border-top:0;box-shadow:none;padding:0}.navbar-pf .navbar-header{border-bottom:1px solid #292929;float:none}.navbar-pf .navbar-nav{margin:0}.navbar-pf .navbar-nav>.active>a,.navbar-pf .navbar-nav>.active>a:focus,.navbar-pf .navbar-nav>.active>a:hover{background-color:#232323;color:#f5f5f5}.navbar-pf .navbar-nav>li>a{color:#d1d1d1;line-height:1;padding:10px 20px;text-shadow:none}.navbar-pf .navbar-nav>li>a:focus,.navbar-pf .navbar-nav>li>a:hover{color:#f5f5f5}.navbar-pf .navbar-nav>.open>a,.navbar-pf .navbar-nav>.open>a:focus,.navbar-pf .navbar-nav>.open>a:hover{background-color:#232323;color:#f5f5f5}.navbar-pf .navbar-nav .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;left:26px;margin:0;padding:2px 4px;position:absolute;min-width:10px;min-height:10px;top:6px}@media (min-width:768px){.navbar-pf .navbar-nav .badge{left:auto;right:6px;top:3px}}.navbar-pf .navbar-nav .badge.badge-pf-bordered{border:1px solid #030303}@media (max-width:767px){.navbar-pf .navbar-nav .active .dropdown-menu,.navbar-pf .navbar-nav .active .navbar-persistent,.navbar-pf .navbar-nav .open .dropdown-menu{background-color:#171717!important;margin-left:0;padding-bottom:0;padding-top:0}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a,.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a:focus,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a:focus,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a:hover{background-color:#1f1f1f!important;color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent>li>a,.navbar-pf .navbar-nav .open .dropdown-menu>li>a{background-color:transparent;border:0;color:#d1d1d1;outline:0;padding-left:30px}.navbar-pf .navbar-nav .active .dropdown-menu>li>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent>li>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu>li>a:hover{color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu .divider,.navbar-pf .navbar-nav .active .navbar-persistent .divider,.navbar-pf .navbar-nav .open .dropdown-menu .divider{background-color:#292929;margin:0 1px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-header,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-header,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-header{padding-bottom:0;padding-left:30px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open .dropdown-toggle,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-toggle,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open .dropdown-toggle{color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.pull-left,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.pull-left,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.pull-left{float:none!important}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu>a:after,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu>a:after,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu>a:after{display:none}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-header,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-header,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-header{padding-left:45px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu{border:0;bottom:auto;box-shadow:none;display:block;float:none;margin:0;min-width:0;padding:0;position:relative;left:auto;right:auto;top:auto}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu>li>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu>li>a{padding:5px 15px 5px 45px;line-height:20px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu .dropdown-menu>li>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu>li>a{padding-left:60px}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-menu{display:block}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu>a:after{display:inline-block!important;position:relative;right:auto;top:1px}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu{display:none}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-submenu>a:after{display:none!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu{background-color:#fff!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a:active{background-color:#def3ff!important;border-color:#bee1f4!important;color:#363636!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a:active small{color:#9c9c9c!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.disabled>a{color:#9c9c9c!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a:active{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a:active small{color:rgba(255,255,255,.5)!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li>a.opt{border-bottom:1px solid transparent;border-top:1px solid transparent;color:#363636;padding-left:10px;padding-right:10px}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:active small{color:rgba(255,255,255,.5)!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:focus small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:hover small{color:#9c9c9c}.navbar-pf .navbar-nav .context-bootstrap-select>.open>.dropdown-menu{padding-bottom:5px;padding-top:5px}}.navbar-pf .navbar-persistent{display:none}.navbar-pf .active>.navbar-persistent{display:block}.navbar-pf .navbar-primary{float:none}.navbar-pf .navbar-primary .context{border-bottom:1px solid #292929}.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group,.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group[class*=span]{margin:8px 20px 9px;width:auto}.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a{position:relative}.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a:after{content:"\f107";display:inline-block;font-family:FontAwesome;font-weight:400}@media (max-width:767px){.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a:after{height:10px;margin-left:4px;vertical-align:baseline}}.navbar-pf .navbar-toggle{border:0;margin:0;padding:10px 20px}.navbar-pf .navbar-toggle:focus,.navbar-pf .navbar-toggle:hover{background-color:transparent;outline:0}.navbar-pf .navbar-toggle:focus .icon-bar,.navbar-pf .navbar-toggle:hover .icon-bar{box-shadow:0 0 3px #fff}.navbar-pf .navbar-toggle .icon-bar{background-color:#fff}.navbar-pf .navbar-utility{border-bottom:1px solid #292929}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle{padding-left:36px;position:relative}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle .pficon-user{left:20px;position:absolute;top:10px}@media (max-width:767px){.navbar-pf .navbar-utility>li+li{border-top:1px solid #292929}}@media (min-width:768px){.navbar-pf .navbar-brand{padding:8px 0 7px}.navbar-pf .navbar-nav>li>a{padding-bottom:14px;padding-top:14px}.navbar-pf .navbar-persistent{font-size:14px}.navbar-pf .navbar-primary{font-size:14px;background-image:linear-gradient(to bottom,#1d1d1d 0,#030303 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary.persistent-secondary .context .dropdown-menu{top:auto}.navbar-pf .navbar-primary.persistent-secondary .dropup .dropdown-menu{bottom:-5px;top:auto}.navbar-pf .navbar-primary.persistent-secondary>li{position:static}.navbar-pf .navbar-primary.persistent-secondary>li.active{margin-bottom:32px}.navbar-pf .navbar-primary.persistent-secondary>li.active>.navbar-persistent{display:block;left:0;position:absolute}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent{background:#f5f5f5;border-bottom:1px solid #d1d1d1;padding:0;width:100%}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent a{text-decoration:none!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:before,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:hover:before{background:#0088ce;bottom:-1px;content:"";display:block;height:2px;left:20px;position:absolute;right:20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:hover>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active>a:hover{color:#0088ce!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active .active>a{color:#f5f5f5}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu:hover>.dropdown-menu{display:none}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-menu{display:block;left:20px;margin-top:1px;top:100%}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-toggle{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-toggle:after{border-top-color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu>.dropdown-toggle{padding-right:35px!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu>.dropdown-toggle:after{position:absolute;right:20px;top:10px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open:before,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover:before{background:#bbb;bottom:-1px;content:"";display:block;height:2px;left:20px;position:absolute;right:20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover>a{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open>a:after,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover>a:after{border-top-color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a{background-color:transparent;display:block;line-height:1;padding:9px 20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a.dropdown-toggle{padding-right:35px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a.dropdown-toggle:after{font-size:15px;position:absolute;right:20px;top:9px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a:hover{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li a{color:#4d5258}.navbar-pf .navbar-primary>li>a{border-bottom:1px solid transparent;border-top:1px solid transparent;position:relative;margin:-1px 0 0}.navbar-pf .navbar-primary>li>a:hover{background-color:#1d1d1d;border-top-color:#5c5c5c;color:#d1d1d1;background-image:linear-gradient(to bottom,#363636 0,#1d1d1d 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary>.active>a,.navbar-pf .navbar-primary>.active>a:focus,.navbar-pf .navbar-primary>.active>a:hover,.navbar-pf .navbar-primary>.open>a,.navbar-pf .navbar-primary>.open>a:focus,.navbar-pf .navbar-primary>.open>a:hover{background-color:#303030;border-bottom-color:#303030;border-top-color:#696969;box-shadow:none;color:#f5f5f5;background-image:linear-gradient(to bottom,#434343 0,#303030 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.context-bootstrap-select .filter-option{max-width:160px;text-overflow:ellipsis}.navbar-pf .navbar-primary li.context.dropdown{border-bottom:0}.navbar-pf .navbar-primary li.context.context-bootstrap-select,.navbar-pf .navbar-primary li.context>a{background-color:#1f1f1f;border-bottom-color:#3e3e3e;border-right:1px solid #3e3e3e;border-top-color:#3b3b3b;font-weight:600;background-image:linear-gradient(to bottom,#323232 0,#1f1f1f 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.context-bootstrap-select:hover,.navbar-pf .navbar-primary li.context>a:hover{background-color:#323232;border-bottom-color:#4a4a4a;border-right-color:#4a4a4a;border-top-color:#4a4a4a;background-image:linear-gradient(to bottom,#3f3f3f 0,#323232 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.open>a{background-color:#454545;border-bottom-color:#575757;border-right-color:#575757;border-top-color:#5a5a5a;background-image:linear-gradient(to bottom,#4c4c4c 0,#454545 100%);background-repeat:repeat-x}.navbar-pf .navbar-utility{border-bottom:0;font-size:11px;position:absolute;right:0;top:0}.navbar-pf .navbar-utility>.active>a,.navbar-pf .navbar-utility>.active>a:focus,.navbar-pf .navbar-utility>.active>a:hover,.navbar-pf .navbar-utility>.open>a,.navbar-pf .navbar-utility>.open>a:focus,.navbar-pf .navbar-utility>.open>a:hover{background:#363636;color:#d1d1d1}.navbar-pf .navbar-utility>li>a{border-left:1px solid #2b2b2b;color:#d1d1d1!important;padding:7px 10px}.navbar-pf .navbar-utility>li>a:hover{background:#232323;border-left-color:#373737}.navbar-pf .navbar-utility>li.open>a{border-left-color:#444;color:#f5f5f5!important}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle{padding-left:26px}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle .pficon-user{left:10px;top:7px}.navbar-pf .navbar-utility .open .dropdown-menu{left:auto;right:0}.navbar-pf .navbar-utility .open .dropdown-menu .dropdown-menu{left:auto;right:100%}.navbar-pf .navbar-utility .open .dropdown-menu{border-top-width:0}.navbar-pf .open .dropdown-submenu>.dropdown-menu,.navbar-pf .open.bootstrap-select .dropdown-menu{border-top-width:1px!important}}@media (max-width:360px){.navbar-pf .navbar-brand{margin-left:10px;width:75%}.navbar-pf .navbar-brand img{height:auto;max-width:100%}.navbar-pf .navbar-toggle{padding-left:0}}.navbar-pf-alt{background-color:#030303;background-image:"bg-navbar-pf-alt.svg";background-repeat:no-repeat;background-size:auto 100%;border:none;border-radius:0;border-top:2px solid #39a5dc;margin-bottom:0}.navbar-pf-alt .infotip.bottom-right .arrow{left:90%}.layout-pf-alt-fixed .navbar-pf-alt{left:0;position:fixed;right:0;top:0;z-index:1030}.navbar-pf-alt .nav.navbar-nav>li>.dropdown-menu.infotip{margin-top:0}.navbar-pf-alt .nav .nav-item-iconic{cursor:pointer;line-height:1;max-height:58px;padding:21px 12px;position:relative}.navbar-pf-alt .nav .nav-item-iconic:focus,.navbar-pf-alt .nav .nav-item-iconic:hover{background-color:transparent}.navbar-pf-alt .nav .nav-item-iconic:focus .caret,.navbar-pf-alt .nav .nav-item-iconic:focus .fa,.navbar-pf-alt .nav .nav-item-iconic:focus .glyphicon,.navbar-pf-alt .nav .nav-item-iconic:focus .pficon,.navbar-pf-alt .nav .nav-item-iconic:hover .caret,.navbar-pf-alt .nav .nav-item-iconic:hover .fa,.navbar-pf-alt .nav .nav-item-iconic:hover .glyphicon,.navbar-pf-alt .nav .nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-alt .nav .nav-item-iconic .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;margin:0 0 -11px -12px;min-width:0;padding:2px 4px}.navbar-pf-alt .nav .nav-item-iconic .caret,.navbar-pf-alt .nav .nav-item-iconic .fa,.navbar-pf-alt .nav .nav-item-iconic .pficon{color:#d1d1d1;font-size:16px}.navbar-pf-alt .nav .nav-item-iconic .caret{font-size:12px;width:auto}.navbar-pf-alt .nav .open>.nav-item-iconic,.navbar-pf-alt .nav .open>.nav-item-iconic:focus,.navbar-pf-alt .nav .open>.nav-item-iconic:hover{background:0 0}.navbar-pf-alt .nav .open>.nav-item-iconic .caret,.navbar-pf-alt .nav .open>.nav-item-iconic .fa,.navbar-pf-alt .nav .open>.nav-item-iconic .pficon,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .caret,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .fa,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .pficon,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .caret,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .fa,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-alt .navbar-brand{color:#fff;height:auto;margin:0 0 0 25px;min-height:35px;padding:11px 0 12px}.navbar-pf-alt .navbar-brand .navbar-brand-name{display:inline;margin-left:0 15px 0 0;margin-right:0 15px 0 0}@media (max-width:480px){.navbar-pf-alt .navbar-brand .navbar-brand-name{display:none}}.navbar-pf-alt .navbar-brand .navbar-brand-icon{display:inline;margin-left:0 15px 0 0;margin-right:0 15px 0 0}.navbar-pf-alt .navbar-iconic{margin-right:0}.navbar-pf-alt .navbar-toggle{border:0;display:block;float:left;margin:13px 15px}.navbar-pf-alt .navbar-toggle:focus .icon-bar,.navbar-pf-alt .navbar-toggle:hover .icon-bar{background:#fff}.navbar-pf-alt .navbar-toggle+.navbar-brand{margin-left:0}.navbar-pf-alt .navbar-toggle .icon-bar{background:#d1d1d1}.navbar-pf-vertical{background-color:#1d1d1d;border:none;border-radius:0;border-top:2px solid #39a5dc;margin-bottom:0}.navbar-pf-vertical .infotip.bottom-right .arrow{left:90%}.layout-pf-fixed .navbar-pf-vertical{left:0;position:fixed;right:0;top:0;z-index:1030}.navbar-pf-vertical .nav.navbar-nav>li>.dropdown-menu.infotip{margin-top:0}.navbar-pf-vertical .nav .nav-item-iconic{color:#d1d1d1;cursor:pointer;line-height:1;max-height:58px;padding:21px 12px;position:relative}.navbar-pf-vertical .nav .nav-item-iconic:focus,.navbar-pf-vertical .nav .nav-item-iconic:hover{color:#fff;background-color:transparent}.navbar-pf-vertical .nav .nav-item-iconic:focus .caret,.navbar-pf-vertical .nav .nav-item-iconic:focus .fa,.navbar-pf-vertical .nav .nav-item-iconic:focus .glyphicon,.navbar-pf-vertical .nav .nav-item-iconic:focus .pficon,.navbar-pf-vertical .nav .nav-item-iconic:hover .caret,.navbar-pf-vertical .nav .nav-item-iconic:hover .fa,.navbar-pf-vertical .nav .nav-item-iconic:hover .glyphicon,.navbar-pf-vertical .nav .nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-vertical .nav .nav-item-iconic .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;left:20px;margin:0;padding:2px 4px;position:absolute;min-width:10px;min-height:10px;top:18px}.navbar-pf-vertical .nav .nav-item-iconic .badge.badge-pf-bordered{border:1px solid #1d1d1d}.navbar-pf-vertical .nav .nav-item-iconic .caret,.navbar-pf-vertical .nav .nav-item-iconic .fa,.navbar-pf-vertical .nav .nav-item-iconic .pficon{color:#d1d1d1;font-size:16px}.navbar-pf-vertical .nav .nav-item-iconic .caret{font-size:12px;width:auto}.navbar-pf-vertical .nav .open>.nav-item-iconic,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover{background:0 0}.navbar-pf-vertical .nav .open>.nav-item-iconic .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic .pficon,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .pficon,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-vertical .navbar-brand{color:#fff;height:auto;margin:0 0 0 25px;min-height:35px;padding:11px 0 12px}.navbar-pf-vertical .navbar-brand .navbar-brand-name{display:inline-block;margin:0 15px 0 0}@media (max-width:480px){.navbar-pf-vertical .navbar-brand .navbar-brand-name{display:none}}.navbar-pf-vertical .navbar-brand .navbar-brand-icon{display:inline-block;margin:0 15px 0 0;max-height:35px}.navbar-pf-vertical .navbar-brand .navbar-brand-txt{line-height:34px}.navbar-pf-vertical .navbar-iconic{margin-right:0}.navbar-pf-vertical .navbar-toggle{border:0;display:block;float:left;margin:13px 15px}.navbar-pf-vertical .navbar-toggle:focus .icon-bar,.navbar-pf-vertical .navbar-toggle:hover .icon-bar{background:#fff}.navbar-pf-vertical .navbar-toggle+.navbar-brand{margin-left:0}.navbar-pf-vertical .navbar-toggle .icon-bar{background:#d1d1d1}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value{transition:opacity 0s .1s,opacity .1s linear}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .badge{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .list-group-item-value{transition:opacity .5s ease-out;transition-delay:150ms}.nav-pf-vertical-alt{background:#fff}.ie9.layout-pf-alt-fixed .nav-pf-vertical-alt{box-sizing:content-box}.layout-pf-alt-fixed .nav-pf-vertical-alt{border-right:1px solid #d1d1d1;bottom:0;overflow-x:hidden;overflow-y:auto;left:0;position:fixed;top:60px;width:250px;z-index:1030}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed{width:75px!important}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .badge{padding:2px 3px;right:21px;top:36px}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value{opacity:0}.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden{display:none}.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden.show-mobile-nav{box-shadow:0 0 3px rgba(3,3,3,.15);display:block!important}.layout-pf-alt-fixed-with-footer .nav-pf-vertical-alt{bottom:37px}.nav-pf-vertical-alt .list-group{border-top:0;margin-bottom:0}.nav-pf-vertical-alt .list-group-item{padding:0}.nav-pf-vertical-alt .list-group-item a{color:#363636;display:block;font-size:14px;height:63px;padding:17px 20px 17px 25px;position:relative;white-space:nowrap}.nav-pf-vertical-alt .list-group-item a:focus{color:#363636;text-decoration:none}.nav-pf-vertical-alt .list-group-item a:hover{color:#39a5dc;text-decoration:none}.nav-pf-vertical-alt .list-group-item.active{background-color:#fff;border-color:#f5f5f5}.nav-pf-vertical-alt .list-group-item.active:before{background:#39a5dc;content:" ";display:block;height:100%;left:0;position:absolute;top:0;width:5px}.nav-pf-vertical-alt .list-group-item.active a{color:#39a5dc}.nav-pf-vertical-alt .list-group-item .badge{background:#363636;border:1px solid #fff;border-radius:3px;color:#fff;font-weight:700;font-size:9px;padding:5px;position:absolute;right:15px;text-align:center;top:21px}.nav-pf-vertical-alt .list-group-item .badge.notifications{background:#0088ce}.nav-pf-vertical-alt .list-group-item .fa,.nav-pf-vertical-alt .list-group-item .glyphicon,.nav-pf-vertical-alt .list-group-item .pficon{float:left;font-size:18px;line-height:30px;margin-right:10px;text-align:center;width:18px}.nav-pf-vertical-alt .list-group-item .list-group-item-value{display:inline-block;line-height:30px;opacity:1;overflow:hidden;text-overflow:ellipsis;width:140px}.nav-pf-vertical-alt .list-group-item-separator{border-top-width:5px}.sidebar-pf .nav-pf-vertical-alt{margin-left:-20px;margin-right:-20px}.drawer-pf{background-color:#fafafa;border:1px solid #d1d1d1;box-shadow:0 6px 12px rgba(3,3,3,.175);overflow-y:auto;position:absolute;right:0;width:320px;z-index:2}.drawer-pf .panel{border-bottom:none;border-left:none;border-right:none}.drawer-pf .panel-group .panel-heading+.panel-collapse .panel-body{border-top:none;border-bottom:1px solid #d1d1d1;padding:0}.drawer-pf .panel-counter{display:block;font-style:italic;line-height:1.2;padding-left:18px;padding-top:5px}.drawer-pf .panel-heading{border-bottom:1px solid #d1d1d1}.drawer-pf .panel-group{bottom:0;margin-bottom:0;position:absolute;top:25px;width:100%}.drawer-pf .panel-title a{cursor:pointer;display:block}.drawer-pf.drawer-pf-expanded{width:inherit}@media (max-width:767px){.drawer-pf.drawer-pf-expanded{left:0;width:100%}}@media (min-width:767px){.drawer-pf.drawer-pf-expanded{left:270px}}.drawer-pf.drawer-pf-expanded .drawer-pf-toggle-expand:before{content:"\f101"}.drawer-pf .blank-slate-pf{border:0;margin-bottom:0;padding:30px}.drawer-pf .blank-slate-pf .blank-slate-pf-icon{font-size:3em;line-height:1em}.drawer-pf .blank-slate-pf h1{font-size:1em;margin-bottom:0;margin-top:15px}.drawer-pf-close,.drawer-pf-toggle-expand{color:#252525;cursor:pointer;line-height:inherit;padding:2px 10px;position:absolute}.drawer-pf-close:focus,.drawer-pf-close:hover,.drawer-pf-toggle-expand:focus,.drawer-pf-toggle-expand:hover{color:#0088ce;text-decoration:none}.drawer-pf-toggle-expand{left:0}.drawer-pf-toggle-expand:before{content:"\f100";font-family:FontAwesome}.drawer-pf-toggle-expand:hover{color:#0088ce}.drawer-pf-close{right:0}.drawer-pf-action{display:-ms-flexbox;display:flex;border-bottom:1px solid #d1d1d1}.drawer-pf-action .btn-link{color:#0088ce;padding:10px 0}.drawer-pf-action .btn-link .fa,.drawer-pf-action .btn-link .pficon{margin-right:3px}.drawer-pf-action .btn-link .pficon-close{position:relative;top:1px}.drawer-pf-action .btn-link:hover{color:#00659c}.drawer-pf-action-link{border-left:solid 1px #d1d1d1;-ms-flex:1 1 0%;flex:1 1 0%;margin:10px 0;text-align:center}.drawer-pf-action-link:first-of-type{border-left-width:0}.drawer-pf-action-link .btn-link{padding:0}.drawer-pf-loading{color:#4d5258;font-size:14px;padding:20px 15px}.drawer-pf-notification{border-bottom:1px solid #d1d1d1;padding:15px}.drawer-pf-notification .date{border-right:1px solid #aaa;display:inline-block;line-height:1;margin-right:5px;padding-right:9px}.drawer-pf-notification>.dropdown-kebab-pf{margin-top:-3px}.drawer-pf-notification .pficon{font-size:14px;margin-top:3px}.drawer-pf-notification:last-of-type{border-bottom:none}.drawer-pf-notification:hover{background-color:#def3ff}.drawer-pf-notification.unread .drawer-pf-notification-message{font-weight:700}.drawer-pf-notification.expanded-notification .date{border-right:none;padding-right:0}.drawer-pf-notification-content{cursor:default}.drawer-pf-notification-info,.drawer-pf-notification-message{display:block;padding-left:27px;padding-right:19px}.expanded-notification .drawer-pf-notification-info,.expanded-notification .drawer-pf-notification-message{display:inline-block}.drawer-pf-notifications-non-clickable .drawer-pf-notification:hover{background-color:#fff}.drawer-pf-title{background-color:#fafafa;border-bottom:1px solid #d1d1d1;position:absolute;width:100%}.drawer-pf-title h3{font-size:12px;margin:0;padding:6px 15px}.drawer-pf-notification.expanded-notification .drawer-pf-notification-content{display:-ms-flexbox;display:flex}@media (max-width:991px){.drawer-pf-notification.expanded-notification .drawer-pf-notification-content{-ms-flex-direction:column;flex-direction:column}}.drawer-pf-notification.expanded-notification .drawer-pf-notification-content .drawer-pf-notification-message{-ms-flex:1 1;flex:1 1}.navbar-pf-vertical .drawer-pf{height:calc(100vh - 58px - 20px);top:58px}@media (max-width:767px){.navbar-pf-vertical .drawer-pf{width:100%;height:calc(100vh - 58px)}}.navbar-pf-vertical .nav .drawer-pf-trigger .drawer-pf-trigger-icon{border-left:1px solid #2b2b2b;border-right:1px solid #2b2b2b;padding-left:15px;padding-right:15px}.navbar-pf-vertical .nav .drawer-pf-trigger.open .drawer-pf-trigger-icon{background-color:#232323}.navbar-pf .drawer-pf{height:calc(100vh - 26px - 20px);top:26px}@media (max-width:767px){.navbar-pf .drawer-pf{width:100%;height:calc(100vh - 26px - 32px);top:calc(26px + 8px)}}.navbar-pf .drawer-pf-trigger-icon{cursor:pointer}.search-pf.has-button{border-collapse:separate;display:table}.search-pf.has-button .form-group{display:table-cell;width:100%}.search-pf.has-button .form-group .btn{box-shadow:none;float:left;margin-left:-1px}.search-pf.has-button .form-group .btn.btn-lg{font-size:14.5px}.search-pf.has-button .form-group .btn.btn-sm{font-size:10.7px}.search-pf.has-button .form-group .form-control{float:left}.search-pf .has-clear .clear{background:rgba(255,255,255,0);border:0;height:25px;line-height:1;padding:0;position:absolute;right:1px;top:1px;width:28px}.search-pf .has-clear .clear:focus{outline:0}.search-pf .has-clear .form-control{padding-right:30px}.search-pf .has-clear .form-control::-ms-clear{display:none}.search-pf .has-clear .input-lg+.clear{height:31px;width:28px}.search-pf .has-clear .input-sm+.clear{height:20px;width:28px}.search-pf .has-clear .input-sm+.clear span{font-size:10px}.search-pf .has-clear .search-pf-input-group{position:relative}.sidebar-header{border-bottom:1px solid #ececec;padding-bottom:11px;margin:50px 0 20px}.sidebar-header .actions{margin-top:-2px}.sidebar-pf .sidebar-header+.list-group{border-top:0;margin-top:-10px}.sidebar-pf .sidebar-header+.list-group .list-group-item{background:0 0;border-color:#ececec;padding-left:0}.sidebar-pf .sidebar-header+.list-group .list-group-item-heading{font-size:12px}.sidebar-pf .nav-category h2{color:#9c9c9c;font-size:12px;font-weight:400;line-height:21px;margin:0;padding:8px 0}.sidebar-pf .nav-category+.nav-category{margin-top:10px}.sidebar-pf .nav-pills>li.active>a{background:#0088ce!important;border-color:#0088ce!important;color:#fff}@media (min-width:768px){.sidebar-pf .nav-pills>li.active>a:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:1px}}.sidebar-pf .nav-pills>li.active>a .fa{color:#fff}.sidebar-pf .nav-pills>li>a{border-bottom:1px solid transparent;border-radius:0;border-top:1px solid transparent;color:#363636;font-size:13px;line-height:21px;padding:1px 20px}.sidebar-pf .nav-pills>li>a:hover{background:#def3ff;border-color:#bee1f4}.sidebar-pf .nav-pills>li>a .fa{color:#6a7079;font-size:15px;margin-right:10px;text-align:center;vertical-align:middle;width:15px}.sidebar-pf .nav-stacked{margin-left:-20px;margin-right:-20px}.sidebar-pf .nav-stacked li+li{margin-top:0}.sidebar-pf .panel{background:0 0}.sidebar-pf .panel-body{padding:6px 20px}.sidebar-pf .panel-body .nav-pills>li>a{padding-left:37px}.sidebar-pf .panel-heading{padding:9px 20px}.sidebar-pf .panel-title{font-size:12px}.sidebar-pf .panel-title>a:before{display:inline-block;margin-left:1px;margin-right:4px;width:9px}.sidebar-pf .panel-title>a.collapsed:before{margin-left:3px;margin-right:2px}@media (min-width:767px){.sidebar-header-bleed-left{margin-left:-20px}.sidebar-header-bleed-left>h2{margin-left:20px}.sidebar-header-bleed-right{margin-right:-20px}.sidebar-header-bleed-right .actions{margin-right:20px}.sidebar-header-bleed-right>h2{margin-right:20px}.sidebar-header-bleed-right+.list-group{margin-right:-20px}.sidebar-pf .panel-group .panel-default,.sidebar-pf .treeview{border-left:0;border-right:0;margin-left:-20px;margin-right:-20px}.sidebar-pf .treeview{margin-top:5px}.sidebar-pf .treeview .list-group-item{padding-left:20px;padding-right:20px}.sidebar-pf .treeview .list-group-item.node-selected:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:1px}}@media (min-width:768px){.sidebar-pf{background:#fafafa}.sidebar-pf.sidebar-pf-left{border-right:1px solid #d1d1d1}.sidebar-pf.sidebar-pf-right{border-left:1px solid #d1d1d1}.sidebar-pf>.nav-category,.sidebar-pf>.nav-stacked{margin-top:5px}}.skiplink-pf{position:absolute;top:12px;left:-300%;z-index:1050}.skiplink-pf:focus{left:10px}@keyframes rotation{from{transform:rotate(0)}to{transform:rotate(359deg)}}.spinner{animation:rotation .6s infinite linear;border-bottom:4px solid rgba(3,3,3,.25);border-left:4px solid rgba(3,3,3,.25);border-right:4px solid rgba(3,3,3,.25);border-radius:100%;border-top:4px solid rgba(3,3,3,.75);height:24px;margin:0 auto;position:relative;width:24px}.spinner.spinner-inline{display:inline-block;margin-right:3px}.spinner.spinner-lg{border-width:5px;height:30px;width:30px}.spinner.spinner-sm{border-width:3px;height:18px;width:18px}.spinner.spinner-xs{border-width:2px;height:12px;width:12px}.spinner.spinner-inverse{border-bottom-color:rgba(255,255,255,.25);border-left-color:rgba(255,255,255,.25);border-right-color:rgba(255,255,255,.25);border-top-color:rgba(255,255,255,.75)}.ie9 .spinner{background:url(../img/spinner.gif) no-repeat;border:0}.ie9 .spinner.spinner-inverse{background-image:url(../img/spinner-inverse.gif)}.ie9 .spinner.spinner-inverse-lg{background-image:url(../img/spinner-inverse-lg.gif)}.ie9 .spinner.spinner-inverse-sm{background-image:url(../img/spinner-inverse-sm.gif)}.ie9 .spinner.spinner-inverse-xs{background-image:url(../img/spinner-inverse-xs.gif)}.ie9 .spinner.spinner-lg{background-image:url(../img/spinner-lg.gif)}.ie9 .spinner.spinner-sm{background-image:url(../img/spinner-sm.gif)}.ie9 .spinner.spinner-xs{background-image:url(../img/spinner-xs.gif)}.prettyprint .atn,.prettyprint .com,.prettyprint .fun,.prettyprint .var{color:#3f9c35}.prettyprint .atv,.prettyprint .str{color:#a30000}.prettyprint .clo,.prettyprint .dec,.prettyprint .kwd,.prettyprint .opn,.prettyprint .pln,.prettyprint .pun{color:#363636}.prettyprint .lit,.prettyprint .tag,.prettyprint .typ{color:#00659c}.prettyprint ol.linenums{margin-bottom:0}table.dataTable{height:100%;margin-bottom:0;max-width:none!important}table.dataTable tbody>tr>td.table-view-pf-actions{padding:0;vertical-align:middle}table.dataTable tbody>tr:hover>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable tbody>tr.selected{color:#fff;background-color:#0088ce}table.dataTable tbody>tr.selected>td{border-bottom-color:#00659c}table.dataTable tbody>tr.selected>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable tbody>tr.selected:hover>td{background-color:inherit;border-bottom-color:#00659c}table.dataTable tbody>tr.selected:hover>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_desc_disabled{cursor:pointer}table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc{color:#0088ce!important;position:relative}table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after{content:"\f107";font-family:FontAwesome;font-size:10px;font-weight:400;height:9px;left:7px;line-height:12px;position:relative;top:2px;vertical-align:baseline;width:12px}table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_desc:before{background:#0088ce;content:"";height:2px;position:absolute;left:0;top:0;width:100%}table.dataTable thead .sorting_asc:after{content:"\f106";top:-3px}table.dataTable th:active{outline:0}.table-view-pf-empty.blank-slate-pf{background-color:#f5f5f5;border:1px solid #d1d1d1;border-radius:0;margin-top:-1px}.table-view-pf-toolbar.toolbar-pf{background-color:#f5f5f5;border-bottom:none;border-left:1px solid #d1d1d1;border-right:1px solid #d1d1d1;border-top:1px solid #d1d1d1;box-shadow:none;margin-left:0;margin-right:0}.table-view-pf-toolbar.toolbar-pf .toolbar-pf-results{border-top:1px solid #d1d1d1;min-height:40px;line-height:40px}.table-view-pf-toolbar-external.toolbar-pf{border-bottom:none;border-top:none;box-shadow:none}.table-view-pf-toolbar-external.toolbar-pf .toolbar-pf-results{border-top:1px solid #d1d1d1;min-height:40px;line-height:40px}.table-view-pf-colvis-menu>li{padding:5px 10px}.table-view-pf-colvis-menu>li:hover{background-color:#def3ff}.table-view-pf-colvis-menu>li>input{margin-top:0;margin-right:10px;vertical-align:middle}.table-view-pf-colvis-menu>li>label{margin-bottom:0}.table-view-pf-actions{background-color:#f1f1f1;height:100%}.table-view-pf-actions .btn,.table-view-pf-actions .dropdown-toggle{border:none;box-shadow:none;height:100%;width:100%}.table-view-pf-actions .dropdown,.table-view-pf-actions .table-view-pf-btn{height:100%}.table-view-pf-actions .dropdown-menu.dropdown-menu-right{right:-5px}.table-view-pf-actions:last-child{width:24px}.table-view-pf-select{width:33px}.table-view-pf-select-results{text-align:right}.bootstrap-datetimepicker-widget a[data-action]{border:0;box-shadow:none;color:#363636;display:block;padding-bottom:4px;padding-top:4px}.bootstrap-datetimepicker-widget a[data-action]:hover{color:#0088ce}.bootstrap-datetimepicker-widget.dropdown-menu{left:0!important;padding:0;width:calc(100% - 25px)}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:none}.bootstrap-datetimepicker-widget.dropdown-menu.top{margin-bottom:-1px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom{margin-top:-1px}.bootstrap-datetimepicker-widget .timepicker-hour{width:100%}.bootstrap-datetimepicker-widget .timepicker-hour:after{content:":";float:right}.timepicker-hours table td,.timepicker-minutes table td{font-weight:700;line-height:30px;height:30px}.timepicker-hours table td:hover,.timepicker-minutes table td:hover{color:#0088ce}.timepicker-hours .table-condensed>tbody>tr>td,.timepicker-minutes .table-condensed>tbody>tr>td{padding:0}.time-picker-pf .input-group-addon .fa,.time-picker-pf .input-group-addon .pficon{width:12px}.time-picker-pf .input-group-addon:not(.active){box-shadow:none}.timepicker-picker table td a span,.timepicker-picker table td span{height:24px;line-height:24px;margin:0;width:100%}.timepicker-picker .table-condensed>tbody>tr>td{height:25px;line-height:18px;padding:0}.timepicker-picker button[data-action]{padding-bottom:0;padding-top:0}.timepicker-picker .separator{display:none}.timepicker-picker tr:nth-child(2) td{background-color:#def3ff;border-color:#bee1f4;border-style:solid;border-width:1px;border-left:0;border-right:0}.toast-pf{background-color:#fff;border-color:#bbb;box-shadow:0 2px 6px rgba(3,3,3,.2);padding-left:68px;margin-bottom:5px}.toast-pf.alert-danger>.pficon{background-color:#c00}.toast-pf.alert-info>.pficon{background-color:#8b8d8f}.toast-pf.alert-success>.pficon{background-color:#3f9c35}.toast-pf.alert-warning>.pficon{background-color:#ec7a08}.toast-pf .dropdown-kebab-pf{margin-left:10px}.toast-pf>.pficon{background-color:#4d5258;bottom:-1px;box-shadow:2px 0 5px -2px rgba(3,3,3,.2);left:-1px;padding-top:10px;text-align:center;top:-1px;width:53px}.toast-pf>.pficon:before{color:rgba(255,255,255,.74)}.toast-pf .toast-pf-action{margin-left:15px}.toast-pf .dropdown-kebab-pf .btn-link{padding-top:0;padding-bottom:0;vertical-align:text-bottom}@media (min-width:992px){.toast-pf{display:inline-block}}@media (min-width:992px){.toast-pf-max-width{max-width:31.1%}}.toast-pf-top-right{left:20px;position:absolute;right:20px;top:12px;z-index:1055}@media (min-width:992px){.toast-pf-top-right{left:auto}}.toast-notifications-list-pf{margin-left:20px;position:fixed;right:20px;top:80px;z-index:1055}.toast-notifications-list-pf .toast-pf{clear:both;float:right}@media (min-width:768px){.toast-notifications-list-pf{max-width:calc(50%)}}@media (min-width:992px){.toast-notifications-list-pf{max-width:calc(33.1%)}}.toolbar-pf{background:#fff;border-bottom:1px solid #d1d1d1;box-shadow:0 1px 0 rgba(3,3,3,.045);padding-top:10px}.toolbar-pf .form-group{margin-bottom:10px}@media (min-width:768px){.toolbar-pf .form-group{border-right:1px solid #d1d1d1;float:left;margin-bottom:0;padding-left:20px;padding-right:20px}}.toolbar-pf .form-group:last-child{border-right:0;margin-bottom:0;padding-right:0}.toolbar-pf .form-group .btn+.btn,.toolbar-pf .form-group .btn+.btn-group,.toolbar-pf .form-group .btn-group+.btn,.toolbar-pf .form-group .btn-group+.btn-group{margin-left:5px}.toolbar-pf .form-group .btn+.btn-link,.toolbar-pf .form-group .btn+.dropdown,.toolbar-pf .form-group .btn-group+.btn-link,.toolbar-pf .form-group .btn-group+.dropdown{margin-left:10px}.toolbar-pf .form-group .btn-link{color:#252525;font-size:16px;line-height:1;padding:4px 0}.toolbar-pf .form-group .btn-link:active,.toolbar-pf .form-group .btn-link:focus,.toolbar-pf .form-group .btn-link:hover{color:#0088ce}.toolbar-pf .form-group .dropdown-kebab-pf .btn-link{padding:4px 10px;margin-left:-10px;margin-right:-10px}.toolbar-pf-actions{display:table;margin-bottom:10px;width:100%}@media (min-width:768px){.toolbar-pf-actions .toolbar-pf-filter{padding-left:0}}.toolbar-pf-view-selector{font-size:16px}.toolbar-pf-view-selector .btn-link.active{color:#0088ce;cursor:default}.toolbar-pf-action-right{float:right}@media (max-width:768px){.toolbar-pf-action-right{float:none}}.toolbar-pf-find{font-size:14px;position:relative}.find-pf-dropdown-container{background:#fff;border:solid 1px #bbb;display:none;right:-20px;padding:5px;position:absolute;top:35px;width:300px;z-index:10000}@media (max-width:768px){.find-pf-dropdown-container{left:30px;top:-5px;width:calc(100% - 30px)}}.find-pf-dropdown-container:after,.find-pf-dropdown-container:before{content:"";position:absolute}.find-pf-dropdown-container:before{border-bottom:11px solid #bbb;border-left:11px solid transparent;border-right:11px solid transparent;right:35px;top:-12px}.toolbar-pf-find:last-child .find-pf-dropdown-container:before{right:15px}@media (max-width:768px){.find-pf-dropdown-container:before{border-bottom:11px solid transparent;border-right:11px solid #bbb;border-top:11px solid transparent;left:-22px;right:initial;top:8px}}.find-pf-dropdown-container:after{border-bottom:10px solid #fff;border-left:10px solid transparent;border-right:10px solid transparent;right:36px;top:-10px}.toolbar-pf-find:last-child .find-pf-dropdown-container:after{right:16px}@media (max-width:768px){.find-pf-dropdown-container:after{border-bottom:10px solid transparent;border-right:10px solid #fff;border-top:10px solid transparent;left:-20px;right:initial;top:9px}}.find-pf-dropdown-container input{height:30px;padding:5px 117px 5px 5px;width:100%}.find-pf-dropdown-container .find-pf-buttons{position:absolute;right:10px;top:5px}.find-pf-dropdown-container .find-pf-buttons .btn{border:none;cursor:pointer;margin-left:0!important;padding:0;width:18px}.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-down,.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-up{font-weight:700;font-size:18px}.find-pf-dropdown-container .find-pf-buttons .btn .pficon-close{font-size:14px}.find-pf-dropdown-container .find-pf-buttons span{height:30px;line-height:30px;vertical-align:middle}.find-pf-dropdown-container .find-pf-buttons .find-pf-nums{color:#8b8d8f;margin-right:3px}.toolbar-pf-results{border-top:1px solid #d1d1d1;margin-top:10px}.toolbar-pf-results h5,.toolbar-pf-results p,.toolbar-pf-results ul{display:inline-block;line-height:26.66666667px;margin-bottom:0;margin-top:0}@media (min-width:768px){.toolbar-pf-results h5,.toolbar-pf-results p,.toolbar-pf-results ul{line-height:40px}}.toolbar-pf-results h5{font-weight:700;margin-right:20px}.toolbar-pf-results .label{font-size:11px}.toolbar-pf-results .label a{color:#fff;display:inline-block;margin-left:5px}.nav-pf-vertical{background:#292e34;border-right:1px solid #292e34;bottom:0;left:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;width:200px;z-index:1030}.layout-pf-fixed-with-footer .nav-pf-vertical{bottom:37px}.ie9.layout-pf-fixed .nav-pf-vertical{box-sizing:content-box}.nav-pf-vertical.hidden.show-mobile-nav{box-shadow:0 0 3px rgba(3,3,3,.15);display:block!important}.nav-pf-vertical.hide-nav-pf{visibility:hidden!important}.nav-pf-vertical .list-group{border-top:0;margin-bottom:0}.nav-pf-vertical .list-group-item{background-color:transparent;border-color:#030303;padding:0}.nav-pf-vertical .list-group-item>a{background-color:transparent;color:#d1d1d1;cursor:pointer;display:block;font-size:14px;font-weight:400;height:63px;line-height:26px;padding:17px 20px 17px 25px;position:relative;white-space:nowrap;width:200px}@supports (display:flex){.nav-pf-vertical .list-group-item>a{display:-ms-flexbox;display:flex;padding-right:0}}.nav-pf-vertical .list-group-item>a .fa,.nav-pf-vertical .list-group-item>a .glyphicon,.nav-pf-vertical .list-group-item>a .pficon{color:#72767b;float:left;font-size:20px;line-height:26px;margin-right:10px;text-align:center;width:24px}.nav-pf-vertical .list-group-item>a:hover{text-decoration:none}.nav-pf-vertical .list-group-item.active>a,.nav-pf-vertical .list-group-item:hover>a{background-color:#393f44;color:#fff;font-weight:600}.nav-pf-vertical .list-group-item.active>a .fa,.nav-pf-vertical .list-group-item.active>a .glyphicon,.nav-pf-vertical .list-group-item.active>a .pficon,.nav-pf-vertical .list-group-item:hover>a .fa,.nav-pf-vertical .list-group-item:hover>a .glyphicon,.nav-pf-vertical .list-group-item:hover>a .pficon{color:#39a5dc}.nav-pf-vertical .list-group-item.active>a:before{background:#39a5dc;content:" ";height:100%;left:0;position:absolute;top:0;width:3px}.nav-pf-vertical .list-group-item.active:hover{background-color:transparent;border-color:#030303}.nav-pf-vertical .list-group-item .list-group-item-value{display:block;line-height:25px;max-width:120px;overflow:hidden;text-overflow:ellipsis}@supports (display:flex){.nav-pf-vertical .list-group-item .list-group-item-value{-ms-flex:1;flex:1;max-width:none;padding-right:15px}}.nav-pf-vertical .list-group-item-separator{border-top-color:#030303;border-top-width:2px}.nav-pf-vertical.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-vertical-with-badges .list-group-item>a{width:250px}.nav-pf-vertical h5{color:#fff;cursor:default;font-size:13px;font-weight:600;margin:30px 20px 10px 20px}.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .fa,.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .glyphicon,.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .pficon{display:none}.nav-pf-vertical.hidden-icons-pf.collapsed{display:none}.nav-pf-vertical .badge-container-pf{position:absolute;right:15px;top:20px}@supports (display:flex){.nav-pf-vertical .badge-container-pf{padding-left:0;padding-right:15px;position:relative;right:0;margin-top:-3px;top:5px}}.nav-pf-vertical .badge-container-pf .badge{background:#292e34;color:#fff;float:left;font-size:12px;font-weight:700;line-height:1.66666667;margin:0;padding:0 7px;text-align:center}.nav-pf-vertical .badge-container-pf .badge .fa,.nav-pf-vertical .badge-container-pf .badge .pficon{font-size:14px;height:20px;line-height:1.66666667;margin-right:3px;margin-top:-1px}.nav-pf-vertical-tooltip.tooltip{margin-left:15px}.nav-pf-vertical-tooltip.tooltip .tooltip-inner{background-color:#fff;color:#292e34}.nav-pf-vertical-tooltip.tooltip .tooltip-arrow{border-bottom-color:#fff;left:calc(50% - 15px)!important}.hover-secondary-nav-pf{width:calc(200px * 2)}.hover-secondary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.hover-tertiary-nav-pf{width:calc(200px * 3)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 3)}.hover-tertiary-nav-pf .nav-pf-secondary-nav{width:calc(200px * 2)}.hover-tertiary-nav-pf .nav-pf-secondary-nav .collapsed-tertiary-nav-pf{width:200px}.hover-tertiary-nav-pf .nav-pf-tertiary-nav{left:calc(200px * 2)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav{width:calc(250px * 2)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav .collapsed-tertiary-nav-pf{width:250px}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:calc(250px * 2)}.nav-pf-vertical.collapsed{width:75px}.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed.hover-secondary-nav-pf{width:calc(75px + 200px)}.nav-pf-vertical.collapsed.hover-secondary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + 250px)}.nav-pf-vertical.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.nav-pf-vertical.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + (250px * 2))}.show-mobile-nav.show-mobile-secondary{width:200px}.show-mobile-nav.show-mobile-secondary.nav-pf-vertical-with-badges{width:250px}.show-mobile-nav.show-mobile-tertiary{width:200px}.show-mobile-nav.show-mobile-tertiary.nav-pf-vertical-with-badges{width:250px}.show-mobile-nav .mobile-nav-item-pf .nav-pf-secondary-nav,.show-mobile-nav .mobile-secondary-item-pf .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible;z-index:1034}.show-mobile-nav .mobile-nav-item-pf>.nav-pf-tertiary-nav,.show-mobile-nav .mobile-secondary-item-pf>.nav-pf-tertiary-nav{left:0;opacity:1;visibility:visible;z-index:1038}.show-mobile-nav .nav-pf-secondary-nav{left:0}.secondary-nav-item-pf:hover .show-mobile-nav .nav-pf-secondary-nav{opacity:0;visibility:hidden}.show-mobile-nav .tertiary-nav-item-pf:hover .nav-pf-tertiary-nav{opacity:0;visibility:hidden}.show-mobile-nav .tertiary-nav-item-pf.mobile-nav-item-pf:hover .nav-pf-tertiary-nav{opacity:1;visibility:visible}.secondary-nav-item-pf>a{cursor:default}.secondary-nav-item-pf>a:after{color:#72767b;content:"\f105";display:block;font-family:FontAwesome;font-size:24px;line-height:30px;padding:14px 0;position:absolute;right:20px;top:0}@supports (display:flex){.secondary-nav-item-pf>a .list-group-item-value{padding-right:35px}}.secondary-nav-item-pf.active>a,.secondary-nav-item-pf:hover>a{width:calc(200px + 1px);z-index:1031}.secondary-nav-item-pf.active>a:after,.secondary-nav-item-pf:hover>a:after{right:21px}.collapsed-secondary-nav-pf .secondary-nav-item-pf.active>a,.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover>a{z-index:0}.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active>a,.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover>a{z-index:0}.nav-pf-vertical-with-badges .secondary-nav-item-pf.active>a,.nav-pf-vertical-with-badges .secondary-nav-item-pf:hover>a{width:calc(250px + 1px)}.nav-pf-vertical.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.hover>a{z-index:1030}.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-secondary-nav{left:0}.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav{width:200px}.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.hover>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.hover>a{z-index:0}@media (min-width:1200px){.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf{width:calc(200px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf{width:calc(200px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed{width:calc(75px + 200px)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + (250px * 2))}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf{width:calc(200px * 3)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 3)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{visibility:visible;opacity:1}}.nav-item-pf-header{color:#fff;font-size:16px;margin:18px 20px 10px 20px}.nav-item-pf-header>a{cursor:pointer;margin-right:7px}.nav-item-pf-header>a:focus,.nav-item-pf-header>a:hover{color:#0088ce;text-decoration:none}.nav-pf-vertical.collapsed{width:75px}.nav-pf-vertical.collapsed .list-group-item>a{width:75px}.nav-pf-vertical.collapsed .list-group-item>a>.list-group-item-value{display:none}.nav-pf-vertical.collapsed .list-group-item>a>.badge-container-pf{display:none}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf>a{width:75px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a:after,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf>a:after{right:10px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover>a{width:77px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a:after,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover>a:after{right:11px}.nav-pf-secondary-nav{background:#393f44;border:1px solid #292e34;border-bottom:none;border-top:none;bottom:0;display:block;left:200px;opacity:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;visibility:hidden;width:200px;z-index:1030}.collapsed-secondary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible;z-index:1032}.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible}.hover-secondary-nav-pf .secondary-nav-item-pf.is-hover .nav-pf-secondary-nav{opacity:1;visibility:visible}.ie9.layout-pf-fixed .nav-pf-secondary-nav{box-sizing:content-box}.layout-pf-fixed-with-footer .nav-pf-secondary-nav{bottom:37px}.nav-pf-secondary-nav .list-group-item{border:none;padding:0 0 5px 0;width:200px}.nav-pf-secondary-nav .list-group-item>a{background-color:#393f44;color:#d1d1d1;font-size:12px;font-weight:inherit;height:inherit;padding:4px 0 2px 0;margin-left:20px;width:calc(200px - 20px)}.nav-pf-secondary-nav .list-group-item>a:hover .list-group-item-value{text-decoration:underline}.nav-pf-secondary-nav .list-group-item.active>a:before{display:none}.nav-pf-secondary-nav .list-group-item.active>a,.nav-pf-secondary-nav .list-group-item:hover>a{background-color:#4d5258;color:#fff}.nav-pf-secondary-nav .list-group-item .badge-container-pf{top:5px}.nav-pf-secondary-nav .list-group-item .badge-container-pf .badge{background:#292e34;color:#fff}.nav-pf-secondary-nav .list-group-item .list-group-item-value{padding-left:5px}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a{cursor:default}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a:after{color:#72767b;content:"\f105";display:block;font-family:FontAwesome;font-size:20px;line-height:20px;padding:0;position:absolute;right:20px;top:4px}@supports (display:flex){.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a .list-group-item-value{padding-right:35px}}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a,.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a{width:calc(200px - 19px);z-index:1033}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a:after,.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a:after{right:21px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav{left:250px;width:250px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item{width:250px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item>a{width:calc(250px - 20px)}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a,.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a{width:calc(250px - 19px)}.nav-pf-tertiary-nav{background:#4d5258;border:1px solid #292e34;border-bottom:none;border-top:none;bottom:0;display:block;left:calc(200px * 2);opacity:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;visibility:hidden;width:200px;z-index:1030}.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:250px;width:250px}.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .show-mobile-nav{left:0}.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active .nav-pf-tertiary-nav{left:0;opacity:1;visibility:visible;z-index:1033}.hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav{opacity:1;visibility:visible}.collapsed.collapsed-tertiary-nav-pf .hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav{left:0}.ie9.layout-pf-fixed .nav-pf-tertiary-nav{box-sizing:content-box}.layout-pf-fixed-with-footer .nav-pf-tertiary-nav{bottom:37px}.nav-pf-tertiary-nav .nav-item-pf-header{color:#fff;margin:18px 20px 10px 20px}.nav-pf-tertiary-nav h5{color:#fff;margin:30px 20px 10px 20px}.nav-pf-tertiary-nav .list-group-item{border:none;padding:0 0 5px 0}.nav-pf-tertiary-nav .list-group-item>a{background-color:transparent;color:#d1d1d1;font-size:12px;font-weight:inherit;height:inherit;margin:0 20px 0 20px;padding:4px 0 2px 0}.nav-pf-tertiary-nav .list-group-item.active>a:before{display:none}.nav-pf-tertiary-nav .list-group-item.active>a,.nav-pf-tertiary-nav .list-group-item:hover>a{background-color:#393f44;color:#fff}.nav-pf-tertiary-nav .list-group-item .badge-container-pf{top:5px}.nav-pf-tertiary-nav .list-group-item .badge-container-pf .badge{background:#292e34;color:#fff}.nav-pf-tertiary-nav .list-group-item .list-group-item-value{padding-left:5px}.collapsed .nav-pf-secondary-nav{left:75px}.collapsed .nav-pf-secondary-nav .list-group-item>a{width:calc(200px - 20px)}.collapsed .nav-pf-secondary-nav .list-group-item>a>.list-group-item-value{display:inline-block}.collapsed .nav-pf-secondary-nav .list-group-item>a>.badge-container-pf{display:inline-block}.collapsed .nav-pf-tertiary-nav{left:calc(75px + 200px)}.collapsed .nav-pf-tertiary-nav .list-group-item>a{width:calc(200px - 20px)}.collapsed .nav-pf-tertiary-nav .list-group-item>a>.list-group-item-value{display:inline-block}.collapsed .nav-pf-tertiary-nav .list-group-item>a>.badge-container-pf{display:inline-block}.collapsed.collapsed-secondary-nav-pf,.collapsed.collapsed-tertiary-nav-pf{width:200px}.collapsed.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover>a,.collapsed.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover>a{z-index:1030}.collapsed.collapsed-secondary-nav-pf .nav-pf-secondary-nav,.collapsed.collapsed-tertiary-nav-pf .nav-pf-secondary-nav{left:0}.collapsed.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:200px}.collapsed.collapsed-tertiary-nav-pf .nav-pf-tertiary-nav{left:0}.collapsed.hover-secondary-nav-pf{width:calc(75px + 200px)}.collapsed.hover-secondary-nav-pf.collapsed-secondary-nav-pf,.collapsed.hover-secondary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.collapsed.hover-tertiary-nav-pf.collapsed-secondary-nav-pf{width:calc(200px * 2)}.collapsed.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.collapsed.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item>a{width:calc(250px - 20px)}.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:calc(75px + 250px)}.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .list-group-item>a{width:calc(250px - 20px)}.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf,.collapsed.nav-pf-vertical-with-badges.collapsed-tertiary-nav-pf{width:250px}.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:250px}.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf{width:calc(75px + 250px)}.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-secondary-nav-pf,.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-tertiary-nav-pf{width:250px}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-secondary-nav-pf{width:calc(200px * 2)}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.secondary-collapse-toggle-pf{display:none;font-family:FontAwesome;font-size:inherit;opacity:0;pointer-events:none;-webkit-font-smoothing:antialiased}.secondary-collapse-toggle-pf:before{content:"\f190"}.secondary-collapse-toggle-pf.collapsed:before{content:"\f18e"}.tertiary-collapse-toggle-pf{display:none;font-family:FontAwesome;font-size:inherit;opacity:0;pointer-events:none;-webkit-font-smoothing:antialiased}.tertiary-collapse-toggle-pf:before{content:"\f190"}.tertiary-collapse-toggle-pf.collapsed:before{content:"\f18e"}.nav-pf-vertical-collapsible-menus .secondary-collapse-toggle-pf{display:inline-block}.nav-pf-vertical-collapsible-menus .secondary-nav-item-pf.active .secondary-collapse-toggle-pf{opacity:1;pointer-events:all}.nav-pf-vertical-collapsible-menus .tertiary-collapse-toggle-pf{display:inline-block}.nav-pf-vertical-collapsible-menus .tertiary-nav-item-pf.active .tertiary-collapse-toggle-pf{opacity:1;pointer-events:all}.show-mobile-nav .secondary-collapse-toggle-pf{display:inline-block;opacity:1;pointer-events:all}.show-mobile-nav .secondary-collapse-toggle-pf:before{content:"\f190"}.show-mobile-nav .tertiary-collapse-toggle-pf{display:inline-block;opacity:1;pointer-events:all}.show-mobile-nav .tertiary-collapse-toggle-pf:before{content:"\f190"}.force-hide-secondary-nav-pf .nav-pf-secondary-nav{display:none!important}.force-hide-secondary-nav-pf .nav-pf-tertiary-nav{display:none!important}.nav-pf-vertical.transitions{transition:width .1s}.nav-pf-vertical.transitions .nav-pf-secondary-nav{transition:visibility .1s,opacity .1s linear}.nav-pf-vertical.transitions .nav-pf-tertiary-nav{transition:visibility .1s,opacity .1s linear}.wizard-pf{padding:10px;margin:0 auto;max-height:900px;width:auto}.wizard-pf .modal-content{min-height:100%}.wizard-pf-body{background:#fff;padding:0;position:static}.wizard-pf-sidebar{background:#fafafa;border-right:1px solid #d1d1d1;display:none}@media (min-width:768px){.wizard-pf-sidebar{display:inherit;-ms-flex:0 0 auto;flex:0 0 auto;overflow-x:hidden;overflow-y:auto}.wizard-pf-sidebar .list-group{border-top:0;margin-bottom:0}.wizard-pf-sidebar .list-group-item{background-color:transparent;border-color:#ededed;padding:0}.wizard-pf-sidebar .list-group-item>a{color:#030303;cursor:pointer;display:block;font-size:14px;font-weight:700;height:50px;outline:0;padding-top:11px;padding-left:20px;position:relative;white-space:nowrap;width:14em}.wizard-pf-sidebar .list-group-item>a:hover{text-decoration:none;background-color:#ededed}.wizard-pf-sidebar .list-group-item>a:focus{text-decoration:none}.wizard-pf-sidebar .list-group-item>a:focus span{text-decoration:underline}.wizard-pf-sidebar .list-group-item.active{background-color:#ededed}.wizard-pf-sidebar .list-group-item.active:hover{border-color:#ededed}.wizard-pf-sidebar .list-group-item.active>a{color:#39a5dc;cursor:default}.wizard-pf-sidebar .list-group-item.active>a:before{content:" ";background:#39a5dc;height:100%;left:0;position:absolute;top:0;width:3px}.wizard-pf-sidebar .list-group-item.active>a:after{color:#39a5dc;content:"\f105";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;line-height:30px;padding-top:10px;position:absolute;right:23px;top:0}}.wizard-pf-substep-number{display:inline-block;margin-right:5px;vertical-align:middle;width:25px}.wizard-pf-substep-title{display:inline-block;margin-right:5px;text-align:left;vertical-align:middle}.wizard-pf-steps{border-bottom:solid 1px #d1d1d1}@media (min-width:768px){.wizard-pf-steps{text-align:center}}.wizard-pf-steps-indicator{background:#ededed;border-top:1px solid #d1d1d1;display:inline-block;display:-ms-flexbox;display:flex;font-size:16px;list-style:none;margin-bottom:0;padding:15px 0}@media (min-width:768px){.wizard-pf-steps-indicator{background:#fff;height:120px;padding:38px 0 0;-ms-flex-pack:distribute;justify-content:space-around}}.wizard-pf-steps-indicator li{counter-increment:section;float:left;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0;line-height:15px;margin:0;padding:0;position:relative;text-align:center}.wizard-pf-steps-indicator li:not(.active){display:none}@media (min-width:768px){.wizard-pf-steps-indicator li:not(.active){display:block}}.wizard-pf-steps-indicator li a{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;font-weight:700}@media (min-width:768px){.wizard-pf-steps-indicator li a{font-weight:400;-ms-flex-pack:center;justify-content:center}}.wizard-pf-steps-indicator li a .wizard-pf-step-title{margin-left:10px}@media (min-width:768px){.wizard-pf-steps-indicator li a .wizard-pf-step-title{margin-left:0}}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep{font-weight:400;margin-left:10px;text-transform:capitalize}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:before{content:"\00BB";font-size:20px;margin-right:10px}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:not(.active){display:none}@media (min-width:768px){.wizard-pf-steps-indicator li .wizard-pf-step-title-substep{display:none}.wizard-pf-steps-indicator li:before{background-color:#bbb;content:"";height:2px;left:0;position:absolute;right:0;top:40px}.wizard-pf-steps-indicator li:first-child:before{left:50%;right:0}.wizard-pf-steps-indicator li:last-child:before{left:0;right:50%}.wizard-pf-steps-indicator li:only-of-type:before{background-color:transparent}}.wizard-pf-steps-indicator li a{color:#030303;cursor:pointer;font-size:16px;margin-left:1em;margin-right:1em;text-decoration:none}.wizard-pf-steps-indicator li a:hover .wizard-pf-step-number{background-color:#bbb;border-color:#bbb;color:#fff}.wizard-pf-steps-indicator .wizard-pf-step-number{background-color:#fff;border-radius:50%;border:solid 2px #bbb;color:#bbb;font-size:12px;font-weight:700;height:25px;line-height:22px;width:25px}@media (min-width:768px){.wizard-pf-steps-indicator .wizard-pf-step-number{left:calc(50% - 13px);position:absolute;top:27px}}.wizard-pf-steps-indicator .active .wizard-pf-step-number{background-color:#39a5dc;border-color:#39a5dc;cursor:default;color:#fff}.wizard-pf-steps-indicator .viewed-pf .wizard-pf-step-number{color:#030303;background-color:#fff;border-color:#39a5dc}.wizard-pf-main{height:100%;padding:1em;vertical-align:top;width:100%}@media (min-width:768px){.wizard-pf-main{overflow:auto;padding:3em;-ms-flex:1 1 auto;flex:1 1 auto}}.wizard-pf-main .blank-slate-pf{background-color:transparent;border:none;left:0;right:0}.wizard-pf-contents textarea{resize:vertical}.wizard-pf-review-steps{list-style:none}.wizard-pf-review-steps .list-group,.wizard-pf-review-steps .list-group-item{border:none;margin-bottom:0}.wizard-pf-review-steps>ul>li{float:left;line-height:15px;margin:0;padding-top:0;position:relative;width:100%}.wizard-pf-review-steps>ul>li>a{color:#030303;cursor:pointer;font-size:16px;padding-left:30px;padding-right:5px;text-decoration:none;transition:250ms}.wizard-pf-review-steps>ul>li>a:before{content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;left:20px;position:absolute;top:0}.wizard-pf-review-steps>ul>li>a.collapsed:before{content:"\f105"}.wizard-pf-review-substeps{padding-left:22px}.wizard-pf-review-substeps>ul>li{float:left;line-height:15px;margin:0;position:relative;width:100%}.wizard-pf-review-substeps>ul>li a{color:#030303;cursor:pointer;font-size:16px;padding-left:30px;padding-right:5px;text-decoration:none;transition:250ms}.wizard-pf-review-substeps>ul>li a:before{content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;left:20px;position:absolute;top:10px}.wizard-pf-review-substeps>ul>li a.collapsed:before{content:"\f105"}.wizard-pf-review-content{padding-top:10px;padding-left:40px}.wizard-pf-review-content .wizard-pf-review-item{padding:5px 0}.wizard-pf-review-content .wizard-pf-review-item.sub-item{margin-left:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-label{font-weight:700;padding-right:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field{font-weight:700;margin:5px 0;padding-right:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:first-of-type{margin-top:0}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:last-of-type{margin-bottom:0}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field.sub-field{margin-left:10px}.wizard-pf-success-icon{color:#3f9c35;font-size:67.2px;line-height:67.2px}.wizard-pf-footer{background:#fff;border-top:1px solid #d1d1d1;margin-top:0;padding-bottom:17px}.wizard-pf-footer .btn-cancel{margin-right:25px}@media (min-width:768px){.wizard-pf-row{display:-ms-flexbox;display:flex;width:100%;height:900px;max-height:65vh}}@media (min-width:992px){.wizard-pf{padding:30px 0;width:900px}.wizard-pf-sidebar .list-group-item>a{width:18em}}.wizard-pf-steps-alt,.wizard-pf-steps-alt ul{list-style:none;margin:0;padding:0}.wizard-pf-steps-alt{margin-left:15px;margin-top:15px;background-image:linear-gradient(to right,transparent 11px,#d1d1d1 11px,#d1d1d1 13px,transparent 13px)}@media (min-width:768px){.wizard-pf-steps-alt{display:none}}.wizard-pf-steps-alt-indicator{position:relative}.wizard-pf-steps-alt-indicator:after{color:#4d5258;content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;position:absolute;right:17px;top:50%;-ms-transform:translateY(-50%);transform:translateY(-50%)}@media (min-width:768px){.wizard-pf-steps-alt-indicator:after{display:none}}.wizard-pf-steps-alt-indicator.active:after{content:"\f106"}.wizard-pf-step-alt{margin-bottom:10px}.wizard-pf-step-alt a{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1}.wizard-pf-step-alt a:hover{text-decoration:none}.wizard-pf-step-alt a:hover .wizard-pf-step-alt-title{color:#39a5dc}.wizard-pf-step-alt ul{margin-left:11px}.wizard-pf-step-alt .wizard-pf-step-alt-title{margin-left:5px;-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.wizard-pf-step-alt .wizard-pf-step-alt-number{-ms-flex:0 0 auto;flex:0 0 auto}.wizard-pf-step-alt.active .wizard-pf-step-alt-number{background-color:#39a5dc;border-color:#39a5dc;cursor:default;color:#fff}.wizard-pf-step-alt.active .wizard-pf-step-alt-title{color:#39a5dc}.wizard-pf-step-alt.active .wizard-pf-step-alt-substep:first-of-type{margin-top:2px}.wizard-pf-step-alt.viewed .wizard-pf-step-alt-number{color:#030303;background-color:#fff;border-color:#39a5dc}.wizard-pf-step-alt-number{background-color:#fff;border-radius:50%;border:solid 2px #bbb;color:#bbb;font-size:12px;font-weight:700;height:24px;width:24px;display:inline-block;text-align:center}.wizard-pf-step-alt-title{color:#030303;font-weight:700;text-transform:capitalize;display:inline-block}.wizard-pf-step-alt-substep{display:-ms-flexbox;display:flex}.wizard-pf-step-alt-substep a{padding:5px 0 5px 18px;color:#393f44}.wizard-pf-step-alt-substep:not(.disabled).active,.wizard-pf-step-alt-substep:not(.disabled):hover{background-color:#ededed;background-image:linear-gradient(to right,#39a5dc 2px,transparent 2px)}.wizard-pf-step-alt-substep:not(.disabled).active a,.wizard-pf-step-alt-substep:not(.disabled):hover a{color:#39a5dc}.wizard-pf-step-alt-substep.active a{font-weight:700}.wizard-pf-step-alt-substep.disabled{cursor:not-allowed}.wizard-pf-step-alt-substep.disabled a{pointer-events:none}
\ No newline at end of file
+ */.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{display:block;margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:700;font-size:1em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Increment Hours";content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Increment Minutes";content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Decrement Hours";content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Decrement Minutes";content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action=clear]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action=today]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:1px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:0 0}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#9c9c9c}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:0 0;cursor:pointer}.bootstrap-datetimepicker-widget table td.new,.bootstrap-datetimepicker-widget table td.old{color:#9c9c9c}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#0088ce;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#0088ce;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:1px}.bootstrap-datetimepicker-widget table td span:hover{background:0 0}.bootstrap-datetimepicker-widget table td span.active{background-color:#0088ce;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td span.old{color:#9c9c9c}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget.wider{width:21em}.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em!important}.input-group.date .input-group-addon{cursor:pointer}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.text-overflow-pf{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.about-modal-pf{background-color:#292e34;background-image:url(../img/bg-modal-about-pf.png);background-position:right bottom;background-repeat:no-repeat;background-size:216px auto}@media (min-width:768px){.about-modal-pf{background-size:auto}}.about-modal-pf .modal-body{color:#fff;padding-bottom:16px;padding-left:40px;padding-right:40px}@media (min-width:768px){.about-modal-pf .modal-body{padding-left:80px;padding-right:80px}}.about-modal-pf .modal-header{background-color:transparent}.about-modal-pf .pficon-close{color:#fff}.product-versions-pf{margin-bottom:30px;margin-top:30px}.product-versions-pf li strong{margin-right:10px}.trademark-pf{font-size:11px}.applauncher-pf{display:inline-block;overflow:visible}.applauncher-pf .applauncher-pf-title{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.applauncher-pf .dropdown-toggle.disabled{cursor:not-allowed}.applauncher-pf.open>.dropdown-menu{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.applauncher-pf .applauncher-pf-item{width:100%}.applauncher-pf .applauncher-pf-link{display:-ms-flexbox;display:flex;white-space:initial;-ms-flex-align:center;align-items:center}@media (min-width:768px){.applauncher-pf-block-list .applauncher-pf-item{-ms-flex:0 0 50%;flex:0 0 50%}}.applauncher-pf-block-list .applauncher-pf-link{-ms-flex-wrap:wrap;flex-wrap:wrap}@media (min-width:768px){.applauncher-pf-block-list .applauncher-pf-link{-ms-flex-direction:column;flex-direction:column;text-align:center;padding:15px 0;height:100%}}.applauncher-pf-block-list .applauncher-pf-link-icon{padding:0}.applauncher-pf-block-list .applauncher-pf-link-title{margin-top:auto}@media (min-width:768px){.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link{padding:9px}.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon{-ms-flex:1 0 0px;flex:1 0 0;text-align:left}.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title{-ms-flex:3;flex:3}}.applauncher-pf .dropdown-menu{padding:9px;min-width:220px}.applauncher-pf .applauncher-pf-link{border-style:solid;border-width:1px;border-color:transparent}.applauncher-pf .applauncher-pf-link:hover{background-color:#f5f5f5;border-color:#bbb;color:#0088ce;text-decoration:none;box-shadow:0 0 2px 0 #d1d1d1}.applauncher-pf .applauncher-pf-link-icon{font-size:1.2em;text-align:center;width:1.28571429em}@media (min-width:768px){.applauncher-pf .applauncher-pf-link-icon{font-size:2em}}.navbar-utility .applauncher-pf .dropdown-menu{border-width:1px!important}@media (min-width:768px){.navbar-utility .applauncher-pf .dropdown-menu{margin-top:3px;right:0}}.navbar-pf .applauncher-pf.open>a,.navbar-pf .applauncher-pf.open>a:focus,.navbar-pf .navbar-utility .applauncher-pf.open>a,.navbar-pf .navbar-utility .applauncher-pf.open>a:focus,.navbar-pf-alt .applauncher-pf.open>a,.navbar-pf-alt .applauncher-pf.open>a:focus,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a:focus{background-color:#232323;color:#f5f5f5}@media (min-width:768px){.navbar-pf .applauncher-pf.open>a,.navbar-pf .applauncher-pf.open>a:focus,.navbar-pf .navbar-utility .applauncher-pf.open>a,.navbar-pf .navbar-utility .applauncher-pf.open>a:focus,.navbar-pf-alt .applauncher-pf.open>a,.navbar-pf-alt .applauncher-pf.open>a:focus,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a:focus{background-color:#363636;border-color:#2b2b2b;color:#d1d1d1}}@media (max-width:767px){.navbar-pf .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf-alt .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu>li>a{padding-left:20px}.navbar-pf .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon{padding-right:20px}}.navbar-pf .applauncher-pf .dropdown-toggle,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .applauncher-pf .dropdown-toggle,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{background-color:inherit;color:#d1d1d1;text-align:left;text-decoration:none;border-width:0;display:block;padding-left:20px}.navbar-pf .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle.disabled{color:#8b8d8f!important}@media (min-width:768px){.navbar-pf .applauncher-pf .dropdown-toggle,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .applauncher-pf .dropdown-toggle,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{border-left:1px solid #2b2b2b;padding:7px 10px;line-height:1}}.navbar-pf .applauncher-pf .applauncher-pf-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon{padding-right:4px}@media (min-width:768px){.navbar-pf .applauncher-pf .applauncher-pf-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon{padding:0}}.navbar-pf .applauncher-pf .applauncher-pf-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title{display:inline;position:relative}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{overflow:hidden;width:100%}.navbar-pf .applauncher-pf .applauncher-pf-link:hover,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover{background-color:transparent;border-color:transparent;box-shadow:none}.navbar-pf .applauncher-pf .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-title{overflow:hidden}@media (min-width:768px){.navbar-pf .applauncher-pf,.navbar-pf .navbar-utility .applauncher-pf,.navbar-pf-alt .applauncher-pf,.navbar-pf-alt .navbar-utility .applauncher-pf{display:inline-block;overflow:visible}.navbar-pf .applauncher-pf .applauncher-pf-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.navbar-pf .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled{cursor:not-allowed}.navbar-pf .applauncher-pf.open>.dropdown-menu,.navbar-pf .navbar-utility .applauncher-pf.open>.dropdown-menu,.navbar-pf-alt .applauncher-pf.open>.dropdown-menu,.navbar-pf-alt .navbar-utility .applauncher-pf.open>.dropdown-menu{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.navbar-pf .applauncher-pf .applauncher-pf-item,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-item,.navbar-pf-alt .applauncher-pf .applauncher-pf-item,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-item{width:100%}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{display:-ms-flexbox;display:flex;white-space:initial;-ms-flex-align:center;align-items:center}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link{-ms-flex-wrap:wrap;flex-wrap:wrap}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon{padding:0}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-title{margin-top:auto}.navbar-pf .applauncher-pf .dropdown-menu,.navbar-pf .navbar-utility .applauncher-pf .dropdown-menu,.navbar-pf-alt .applauncher-pf .dropdown-menu,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-menu{padding:9px;min-width:220px}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{border-style:solid;border-width:1px;border-color:transparent}.navbar-pf .applauncher-pf .applauncher-pf-link:hover,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover{background-color:#f5f5f5;border-color:#bbb;color:#0088ce;text-decoration:none;box-shadow:0 0 2px 0 #d1d1d1}.navbar-pf .applauncher-pf .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon{font-size:1.2em;text-align:center;width:1.28571429em}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-item{-ms-flex:0 0 50%;flex:0 0 50%}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link{-ms-flex-direction:column;flex-direction:column;text-align:center;padding:15px 0;height:100%}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link{padding:9px}.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon{-ms-flex:1 0 0px;flex:1 0 0;text-align:left}.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title{-ms-flex:3;flex:3}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon{font-size:2em}}@media (min-width:768px){.navbar-iconic .applauncher-pf .dropdown-toggle,.navbar-iconic .applauncher-pf.dropdown>.dropdown-toggle,.navbar-iconic .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-iconic .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{padding:22px 10px;line-height:inherit}}.blank-slate-pf{background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:1px;margin-bottom:20px;padding:30px;text-align:center}@media (min-width:768px){.blank-slate-pf{padding:60px 60px}}@media (min-width:992px){.blank-slate-pf{padding:90px 120px}}.blank-slate-pf .blank-slate-pf-icon{color:#9c9c9c;font-size:57.6px;line-height:57.6px}.blank-slate-pf .blank-slate-pf-main-action{margin-top:20px}.blank-slate-pf .blank-slate-pf-secondary-action{margin-top:20px}.blank-slate-pf button{margin-right:5px}.blank-slate-pf button:last-of-type{margin-right:0}.combobox-container.combobox-selected .glyphicon-remove{display:inline-block}.combobox-container .caret{margin-left:0}.combobox-container .combobox::-ms-clear{display:none}.combobox-container .dropdown-menu{margin-top:-1px;width:100%}.combobox-container .glyphicon-remove{display:none;top:auto;width:12px}.combobox-container .glyphicon-remove:before{content:"\e60b";font-family:PatternFlyIcons-webfont}.combobox-container .input-group-addon{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;position:relative}.combobox-container .input-group-addon.active,.combobox-container .input-group-addon:active,.combobox-container .input-group-addon:focus,.combobox-container .input-group-addon:hover,.open .dropdown-toggle.combobox-container .input-group-addon{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.combobox-container .input-group-addon.active,.combobox-container .input-group-addon:active,.open .dropdown-toggle.combobox-container .input-group-addon{background-image:none}.combobox-container .input-group-addon.active.focus,.combobox-container .input-group-addon.active:focus,.combobox-container .input-group-addon.active:hover,.combobox-container .input-group-addon:active.focus,.combobox-container .input-group-addon:active:focus,.combobox-container .input-group-addon:active:hover,.open .dropdown-toggle.combobox-container .input-group-addon.focus,.open .dropdown-toggle.combobox-container .input-group-addon:focus,.open .dropdown-toggle.combobox-container .input-group-addon:hover{background-color:#e5e5e5;border-color:#a9a9a9}.combobox-container .input-group-addon.disabled,.combobox-container .input-group-addon.disabled.active,.combobox-container .input-group-addon.disabled:active,.combobox-container .input-group-addon.disabled:focus,.combobox-container .input-group-addon.disabled:hover,.combobox-container .input-group-addon[disabled],.combobox-container .input-group-addon[disabled].active,.combobox-container .input-group-addon[disabled]:active,.combobox-container .input-group-addon[disabled]:focus,.combobox-container .input-group-addon[disabled]:hover,fieldset[disabled] .combobox-container .input-group-addon,fieldset[disabled] .combobox-container .input-group-addon.active,fieldset[disabled] .combobox-container .input-group-addon:active,fieldset[disabled] .combobox-container .input-group-addon:focus,fieldset[disabled] .combobox-container .input-group-addon:hover{background-color:#f1f1f1;border-color:#bbb}.combobox-container .input-group-addon:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.bootstrap-datepicker.form-control[readonly]{background-color:#fff;border-color:#bbb!important;color:#363636;box-shadow:inset 0 1px 1px rgba(3,3,3,.075)}.bootstrap-datepicker.form-control[readonly]:focus{border-color:#0088ce;outline:0!important;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6)}.bootstrap-datepicker.form-control[readonly]:focus{border-color:#0088ce!important}.has-error .bootstrap-datepicker.form-control[readonly]:focus{border-color:#900;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33}.has-success .bootstrap-datepicker.form-control[readonly]:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168}.has-warning .bootstrap-datepicker.form-control[readonly]:focus{border-color:#bb6106;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60}.bootstrap-datepicker.form-control[readonly]:hover{border-color:#7dc3e8!important}.has-error .bootstrap-datepicker.form-control[readonly]:hover{border-color:#900!important}.has-success .bootstrap-datepicker.form-control[readonly]:hover{border-color:#2b542c!important}.has-warning .bootstrap-datepicker.form-control[readonly]:hover{border-color:#bb6106!important}.has-error .bootstrap-datepicker.form-control[readonly]{border-color:#c00!important}.has-success .bootstrap-datepicker.form-control[readonly]{border-color:#3c763d!important}.has-warning .bootstrap-datepicker.form-control[readonly]{border-color:#ec7a08!important}.datepicker{border-radius:1px}.datepicker .datepicker-switch,.datepicker tfoot .clear,.datepicker tfoot .today{font-size:14px;font-weight:500}.datepicker .next,.datepicker .prev{font-weight:500}.datepicker table tr td,.datepicker table tr th{border-radius:1px}.datepicker table tr td.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active:hover{background:#0088ce!important;color:#fff!important;text-shadow:none}.datepicker table tr td.day.focused,.datepicker table tr td.day:hover{background:#def3ff}.datepicker table tr td.selected,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected:hover{text-shadow:none}.datepicker table tr td span{border-radius:1px}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover{background:#0088ce;text-shadow:none}.datepicker table tr td span:hover{background:#def3ff}.datepicker tfoot tr th:hover,.datepicker thead tr:first-child th:hover{background:#def3ff}.input-daterange input:first-child{border-radius:1px 0 0 1px}.input-daterange input:last-child{border-radius:0 1px 1px 0}.input-daterange .input-group-addon{background-color:#f1f1f1;border-color:#bbb;line-height:1.66666667;padding:2px 6px}.bootstrap-select.btn-group.form-control{margin-bottom:0}.bootstrap-select.btn-group .btn{transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.bootstrap-select.btn-group .btn:hover{border-color:#7dc3e8}.bootstrap-select.btn-group .btn .caret{margin-top:-4px}.bootstrap-select.btn-group .btn:focus{border-color:#0088ce;outline:0!important;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6)}.has-error .bootstrap-select.btn-group .btn{border-color:#c00}.has-error .bootstrap-select.btn-group .btn:focus{border-color:#900;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33}.has-success .bootstrap-select.btn-group .btn{border-color:#3c763d}.has-success .bootstrap-select.btn-group .btn:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168}.has-warning .bootstrap-select.btn-group .btn{border-color:#ec7a08}.has-warning .bootstrap-select.btn-group .btn:focus{border-color:#bb6106;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60}.bootstrap-select.btn-group .dropdown-menu>.active>a,.bootstrap-select.btn-group .dropdown-menu>.active>a:active{background-color:#def3ff!important;border-color:#bee1f4!important;color:#363636!important}.bootstrap-select.btn-group .dropdown-menu>.active>a small,.bootstrap-select.btn-group .dropdown-menu>.active>a:active small{color:#9c9c9c!important}.bootstrap-select.btn-group .dropdown-menu>.disabled>a{color:#9c9c9c!important}.bootstrap-select.btn-group .dropdown-menu>.selected>a{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.bootstrap-select.btn-group .dropdown-menu>.selected>a small{color:rgba(255,255,255,.5)!important}.bootstrap-select.btn-group .dropdown-menu .divider{background:#ededed!important;margin:4px 1px!important}.bootstrap-select.btn-group .dropdown-menu dt{color:#8b8d8f;font-weight:400;padding:1px 10px}.bootstrap-select.btn-group .dropdown-menu li>a.opt{padding:1px 10px}.bootstrap-select.btn-group .dropdown-menu li a:active small{color:rgba(255,255,255,.5)!important}.bootstrap-select.btn-group .dropdown-menu li a:focus small,.bootstrap-select.btn-group .dropdown-menu li a:hover small{color:#9c9c9c}.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:focus small,.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:hover small{color:#9c9c9c}.slider-tick-label-container{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;margin-left:0!important}.slider-tick-label{width:auto!important}.slider .tooltip{top:-10px}.slider-track{background-color:#ededed;box-shadow:inset 0 2px 3px rgba(0,0,0,.1),0 0 2px #ededed;border:1px solid #bbb}.slider-selection{background-image:linear-gradient(to bottom,#0088ce 0,#39a5dc 100%);background-repeat:repeat-x}.slider-handle{width:16px;height:16px;border:1px solid #bbb}.slider-tick{background-color:transparent!important;background-image:radial-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3) 2px,transparent 2px)!important;box-shadow:none}.slider-pf{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.slider-pf *{margin-right:10px}.slider-pf :last-child{margin:0}.slider-pf .slider{width:auto;-ms-flex:1 1 100%;flex:1 1 100%}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default{background:#fafafa}.bootstrap-switch .bootstrap-switch-label{background:#f1f1f1;box-shadow:0 0 2px rgba(3,3,3,.4);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;position:relative;z-index:9}.bootstrap-touchspin .input-group-btn-vertical>.btn{padding-bottom:6px;padding-top:6px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{border-bottom-right-radius:1px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-top-right-radius:1px}.bootstrap-touchspin .input-group-btn-vertical i{font-size:8px;left:6px;top:2px}.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up{font-size:12px;line-height:12px;top:0}.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up{left:7px}.treeview .list-group{border-top:0}.treeview .list-group-item{background:0 0;border-bottom:1px solid transparent!important;border-top:1px solid transparent!important;cursor:default!important;margin-bottom:0;overflow:hidden;padding:0 10px;text-overflow:ellipsis;white-space:nowrap}.treeview .list-group-item:hover{background:0 0!important}.treeview .list-group-item.node-selected{background:0 0!important;border-color:transparent!important;color:inherit!important}.treeview .list-group-item.node-check-changed span.node-icon,.treeview .list-group-item.node-check-changed span.text{color:#39a5dc}.treeview span.icon{display:inline-block;font-size:13px;min-width:10px;text-align:center}.treeview span.icon>[class*=fa-angle]{font-size:15px}.treeview span.icon.check-icon{margin-right:10px}.treeview span.icon.expand-icon{cursor:pointer!important}.treeview span.image{background-repeat:no-repeat;background-size:contain;display:inline-block;height:1.19em;line-height:1em;margin-right:5px;vertical-align:middle;width:12px}.treeview span.indent{margin-right:5px}.treeview .node-disabled{color:#d1d1d1;cursor:not-allowed}.treeview .node-disabled span.expand-icon{cursor:default!important}.treeview .node-hidden{display:none}.treeview-pf-hover .list-group-item{cursor:pointer!important}.treeview-pf-hover .list-group-item:hover{background-color:#def3ff!important;border-color:#bee1f4!important}.treeview-pf-select .list-group-item{cursor:pointer!important}.treeview-pf-select .list-group-item.node-selected{background:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.card-pf{background:#fff;border-top:2px solid transparent;box-shadow:0 1px 1px rgba(3,3,3,.175);margin:0 -10px 20px;padding:0 20px}.card-pf.card-pf-accented{border-top-color:#39a5dc}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a,.card-pf.card-pf-aggregate-status .card-pf-title a{color:#363636}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add,.card-pf.card-pf-aggregate-status .card-pf-title a.add{color:#0088ce}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add:hover,.card-pf.card-pf-aggregate-status .card-pf-title a.add:hover{color:#00659c}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a:hover,.card-pf.card-pf-aggregate-status .card-pf-title a:hover{color:#00659c}.card-pf.card-pf-aggregate-status{padding:0 10px;text-align:center}.card-pf.card-pf-aggregate-status-mini{padding-bottom:10px;position:relative}@media (min-width:768px){.card-pf.card-pf-bleed-left{margin-left:-20px}.card-pf.card-pf-bleed-right{border-right:1px solid #d1d1d1;margin-right:-20px}}.card-pf-aggregate-status-notifications{font-size:24px;font-weight:300}.card-pf-aggregate-status-mini .card-pf-aggregate-status-notifications{line-height:1}.card-pf-aggregate-status-notifications .card-pf-aggregate-status-notification+.card-pf-aggregate-status-notification{border-left:1px solid #d1d1d1;margin-left:3px;padding-left:10px}.card-pf-aggregate-status-notifications .fa,.card-pf-aggregate-status-notifications .pficon{font-size:18px;margin-right:7px}.card-pf-body{margin:20px 0 0;padding:0 0 20px}.card-pf-aggregate-status .card-pf-body{margin-top:10px;padding-bottom:10px}.card-pf-aggregate-status-mini .card-pf-body{margin-bottom:0;margin-top:0;padding-bottom:0;position:absolute;right:20px;top:15px}.card-pf-utilization .card-pf-title+.card-pf-body{margin-top:-8px}.card-pf-body>:last-child{margin-bottom:0}.card-pf-footer{background-color:#fafafa;border-top:1px solid #d1d1d1;margin:0 -20px!important;padding:20px 20px 10px}.card-pf-footer a .fa,.card-pf-footer a .pficon{margin-right:5px}.card-pf-footer .card-pf-time-frame-filter{margin-top:-2px}.card-pf-link-with-icon{padding-left:21px;position:relative}.card-pf-link-with-icon .fa,.card-pf-link-with-icon .pficon{font-size:16px;left:0;position:absolute;top:0}.card-pf-footer .card-pf-time-frame-filter,.card-pf-heading .card-pf-time-frame-filter{float:right;margin-left:20px}.card-pf-heading{border-bottom:1px solid #d1d1d1;margin:0 -20px 20px;padding:0 20px 0}.card-pf-heading .card-pf-time-frame-filter{margin-top:-5px}.card-pf-heading-details{float:right;font-size:10px}.card-pf-subtitle{font-size:16px;margin-top:20px;margin-bottom:10px}[class^=col] .card-pf-subtitle{margin-top:0}@media (max-width:767px){.card-pf-body [class^=col]+[class^=col]>.card-pf-subtitle{margin-top:40px}}.card-pf-title{font-size:16px;font-weight:400;margin:20px 0;padding:0}.card-pf-aggregate-status .card-pf-title{font-size:14px;margin:10px 0 0}.card-pf-aggregate-status .card-pf-title .fa,.card-pf-aggregate-status .card-pf-title .pficon{color:#292e34;font-size:16px;margin-right:7px}.card-pf-title .card-pf-aggregate-status-count{font-size:16px}.card-pf-aggregate-status-mini .card-pf-title .card-pf-aggregate-status-count{display:block;font-size:24px;font-weight:300;margin-bottom:3px}.card-pf-aggregate-status-mini .card-pf-title{font-size:12px;margin-top:5px}.card-pf-aggregate-status-mini .card-pf-title a{display:inline-block}.card-pf-aggregate-status-mini .card-pf-title .fa,.card-pf-aggregate-status-mini .card-pf-title .pficon{font-size:26px;margin-right:0;min-width:26px;position:absolute;left:20px;text-align:center;top:15px}.card-pf-utilization-details{border-bottom:1px solid #d1d1d1;display:table;margin:12px 0 15px;padding:0 0 15px;width:100%}.card-pf-utilization-details .card-pf-utilization-card-details-count,.card-pf-utilization-details .card-pf-utilization-card-details-description{float:left;line-height:1}.card-pf-utilization-details .card-pf-utilization-card-details-count{font-size:26px;font-weight:300;margin-right:10px}.card-pf-utilization-details .card-pf-utilization-card-details-line-1,.card-pf-utilization-details .card-pf-utilization-card-details-line-2{display:block}.card-pf-utilization-details .card-pf-utilization-card-details-line-1{font-size:10px;margin-bottom:2px}.cards-pf{background:#f5f5f5}.cards-pf .row-cards-pf{padding:0 20px}.cards-pf .row-cards-pf:first-child{padding-top:20px}.container-cards-pf{margin-top:20px}.row-cards-pf{margin-left:-10px;margin-right:-10px}.card-pf-view{border:2px solid transparent}.card-pf-view .card-pf-heading-kebab .dropdown-kebab-pf{margin-top:-3px}.card-pf-view .card-pf-heading-kebab+.progress-pf-legend p{margin-bottom:0}.card-pf-view .card-pf-heading-kebab+.progress-pf-legend .progress{margin-bottom:7px;margin-top:16px}.card-pf-view .card-pf-info{margin-top:15px}.card-pf-view .card-pf-info strong{font-size:13px;margin-right:10px}.card-pf-view .card-pf-item{display:inline-block;font-size:16px;padding:0 13px 0 15px}.card-pf-view .card-pf-item:first-child{padding-left:0}.card-pf-view .card-pf-item:last-child{padding-right:0}.card-pf-view .card-pf-item+.card-pf-item{border-left:1px solid #d1d1d1}.card-pf-view .card-pf-item .fa-check{color:#3f9c35}.card-pf-view .card-pf-item .fa+.card-pf-item-text,.card-pf-view .card-pf-item .pficon+.card-pf-item-text{margin-left:10px}.card-pf-view .card-pf-items{margin-top:15px}.card-pf-view .card-pf-title{font-size:20px;font-weight:300;margin-bottom:0;margin-top:15px}.card-pf-view .card-pf-title .fa,.card-pf-view .card-pf-title .pficon{font-size:18px;margin-right:2px}.col-lg-2 .card-pf-view .card-pf-title{font-size:16px}.card-pf-view .card-pf-top-element .card-pf-icon-circle{border:2px solid #39a5dc;border-radius:50%;display:block;font-size:46px;height:106px;line-height:102px;margin:0 auto;text-align:center;width:106px}.col-lg-2 .card-pf-view .card-pf-top-element .card-pf-icon-circle{font-size:23px;height:54px;line-height:50px;width:54px}.card-pf-view .card-pf-view-checkbox{position:absolute;top:11px;left:15px}.card-pf-view .card-pf-view-checkbox input[type=checkbox]{display:none}.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]{display:block}@media (min-width:768px){.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]{visibility:hidden}.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]:checked{visibility:visible}}.card-pf-view.card-pf-view-multi-select:hover .card-pf-view-checkbox input[type=checkbox]{visibility:visible}.card-pf-view.card-pf-view-select{position:relative}.card-pf-view.card-pf-view-select:hover{box-shadow:0 1px 6px rgba(3,3,3,.35)}.card-pf-view.card-pf-view-select.active{border:2px solid #39a5dc}.card-pf-view.card-pf-view-single-select{cursor:pointer}.card-pf-view.card-pf-view-xs .card-pf-title{font-size:16px;font-weight:400;margin-bottom:10px}.card-pf-view.card-pf-view-xs .card-pf-title .fa,.card-pf-view.card-pf-view-xs .card-pf-title .pficon{font-size:14px;margin-right:5px}.c3 path{stroke:#d1d1d1}.c3 svg{font-family:"Open Sans",Helvetica,Arial,sans-serif}.c3-axis-x .tick line{stroke:#d1d1d1}.c3-axis-y .tick line{display:none}.c3-chart-arc path{stroke:#fff}.c3-grid line{stroke:#d1d1d1}.c3-line{stroke-width:2px}.c3-tooltip{background:#393f44;box-shadow:none;opacity:.9}.c3-tooltip td{background:0 0;border:0;color:#fff;font-size:12px;padding:5px 10px}.c3-tooltip th{background:0 0;font-size:12px;padding:5px 10px 0;border-bottom:solid 2px #030303}.c3-tooltip tr{border:0}.c3-tooltip tr+tr>td{padding-top:0}.c3-tooltip-sparkline,.donut-tooltip-pf{background:#393f44;color:#fff;opacity:.9;padding:2px 6px}.c3-xgrid,.c3-ygrid{stroke-dasharray:0 0}.chart-pf-sparkline{margin-left:-5px;margin-right:-5px}.donut-title-big-pf{font-size:30px;font-weight:300}.donut-title-small-pf{font-size:12px;font-weight:400}.line-chart-pf .c3-zoom-rect{opacity:1!important;fill:#fafafa;stroke:#d1d1d1;stroke-width:1px}.pct-donut-chart-pf .pct-donut-chart-pf-label{display:block}.pct-donut-chart-pf .pct-donut-chart-pf-left,.pct-donut-chart-pf .pct-donut-chart-pf-right,.pct-donut-chart-pf.pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-right{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.pct-donut-chart-pf.pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-right{display:-ms-inline-flexbox;display:inline-flex}.pct-donut-chart-pf .pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-left{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.close{text-shadow:none;z-index:1;position:relative;opacity:.6}.close:focus,.close:hover{opacity:.9}.layout-pf-fixed .navbar-pf-vertical.navbar-pf-contextselector{z-index:1040}.navbar-pf-vertical .nav.contextselector-pf{border-left:1px solid #4d5258}@media (min-width:768px){.navbar-pf-vertical .nav.contextselector-pf{margin-left:10px}}.navbar-pf-vertical .nav.contextselector-pf .nav-item-iconic{padding:23px 20px 18px 10px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.contextselector-pf{float:left}.contextselector-pf-title{width:170px;white-space:nowrap;display:inline-block;overflow:hidden;text-overflow:ellipsis;line-height:normal}@media (min-width:480px){.contextselector-pf-title{width:210px}}.contextselector-pf .dropdown.open,.contextselector-pf .dropdown:hover{background-color:#303030}.contextselector-pf .dropdown-menu{width:100%;margin-top:0}.contextselector-pf .form-group{margin:0 5px 5px 5px}@media (min-width:768px){.contextselector-pf .contextselector-pf-list{max-height:200px;overflow-y:auto}}.contextselector-pf .contextselector-pf-list li{padding:1px 10px;border-width:1px 0;border-style:solid;border-color:transparent}.contextselector-pf .contextselector-pf-list li:hover{background:#def3ff;border-color:#bee1f4}.contextselector-pf .contextselector-pf-list li:hover a{text-decoration:none}.contextselector-pf .contextselector-pf-list a{color:#393f44;display:block}.ColVis_Button:active:focus{outline:0}.ColVis_catcher{position:absolute;z-index:999}.ColVis_collection{background-color:#fff;border:1px solid #bbb;border-radius:1px;box-shadow:0 6px 12px rgba(3,3,3,.175);background-clip:padding-box;list-style:none;margin:-1px 0 0 0;padding:5px 10px;width:150px;z-index:1000}.ColVis_collection label{font-weight:400;margin-bottom:5px;margin-top:5px;padding-left:20px}.ColVis_collectionBackground{background-color:#fff;height:100%;left:0;position:fixed;top:0;width:100%;z-index:998}.dataTables_header{background-color:#f5f5f5;border:1px solid #d1d1d1;border-bottom:none;padding:5px;position:relative;text-align:center}.dataTables_header .btn{box-shadow:none}.dataTables_header .ColVis{position:absolute;right:5px;text-align:left;top:5px}.dataTables_header .ColVis+.dataTables_info{padding-right:30px}.dataTables_header .dataTables_filter{position:absolute}.dataTables_header .dataTables_filter input{border:1px solid #bbb;height:24px}@media (max-width:767px){.dataTables_header .dataTables_filter input{width:100px}}.dataTables_header .dataTables_info{padding:2px 0}@media (max-width:480px){.dataTables_header .dataTables_info{text-align:right}}.dataTables_header .dataTables_info b{font-weight:700}.dataTables_footer{background-color:#fff;border:1px solid #d1d1d1;border-top:none;overflow:hidden}.dataTables_paginate{background:#fafafa;float:right;margin:0}.dataTables_paginate .pagination{float:left;margin:0}.dataTables_paginate .pagination>li>span{border-color:#fff #d1d1d1 #f5f5f5;border-width:0 1px;font-size:16px;font-weight:400;padding:0;text-align:center;width:31px}.dataTables_paginate .pagination>li.last>span{border-right:none}.dataTables_paginate .pagination>li.disabled>span{background:#f5f5f5;border-left-color:#ededed;border-right-color:#ededed}.dataTables_paginate .pagination-input{float:left;font-size:12px;line-height:1em;padding:4px 15px 0;text-align:right}.dataTables_paginate .pagination-input .paginate_input{border:1px solid #d1d1d1;box-shadow:inset 0 1px 1px rgba(3,3,3,.075);font-size:12px;font-weight:600;height:19px;margin-right:8px;padding-right:3px;text-align:right;width:30px}.dataTables_paginate .pagination-input .paginate_of{position:relative}.dataTables_paginate .pagination-input .paginate_of b{margin-left:3px}.dataTables_empty{background:#f5f5f5}.DTCR_clonedTable{background-color:rgba(255,255,255,.7);z-index:202}.DTCR_pointer{background-color:#0088ce;width:1px;z-index:201}.experimental-pf>*{border:2px solid #92d400}.experimental-pf-bar{background-color:#92d400;border:none;text-align:center;position:relative}.experimental-pf-more-info{background-color:#92d400;border:0;color:#030303;display:block;width:100%;padding-top:10px;padding-bottom:10px;position:static}@media (min-width:992px){.experimental-pf-more-info{padding:0 10px;position:absolute;right:0;top:0;width:auto}}@media (min-width:992px){.experimental-pf-text{padding-left:150px;padding-right:150px}}.experimental-pf-text a{color:#030303;text-decoration:underline}.experimental-pf-text a:hover{color:#030303;cursor:pointer}.btn-experimental-pf{background-color:#92d400;background-image:linear-gradient(to bottom,#ace12e 0,#92d400 100%);background-repeat:repeat-x;border-color:#92d400;color:#4d5258}.btn-experimental-pf.active,.btn-experimental-pf:active,.btn-experimental-pf:focus,.btn-experimental-pf:hover,.open .dropdown-toggle.btn-experimental-pf{background-color:#92d400;background-image:none;border-color:#92d400;color:#4d5258}.btn-experimental-pf.active,.btn-experimental-pf:active,.open .dropdown-toggle.btn-experimental-pf{background-image:none}.btn-experimental-pf.active.focus,.btn-experimental-pf.active:focus,.btn-experimental-pf.active:hover,.btn-experimental-pf:active.focus,.btn-experimental-pf:active:focus,.btn-experimental-pf:active:hover,.open .dropdown-toggle.btn-experimental-pf.focus,.open .dropdown-toggle.btn-experimental-pf:focus,.open .dropdown-toggle.btn-experimental-pf:hover{background-color:#80bb00;border-color:#79b000}.btn-experimental-pf.disabled,.btn-experimental-pf.disabled.active,.btn-experimental-pf.disabled:active,.btn-experimental-pf.disabled:focus,.btn-experimental-pf.disabled:hover,.btn-experimental-pf[disabled],.btn-experimental-pf[disabled].active,.btn-experimental-pf[disabled]:active,.btn-experimental-pf[disabled]:focus,.btn-experimental-pf[disabled]:hover,fieldset[disabled] .btn-experimental-pf,fieldset[disabled] .btn-experimental-pf.active,fieldset[disabled] .btn-experimental-pf:active,fieldset[disabled] .btn-experimental-pf:focus,fieldset[disabled] .btn-experimental-pf:hover{background-color:#92d400;border-color:#92d400}.filter-pf-category-select{display:-ms-flexbox;display:flex}.filter-pf-category-select-value{border-left-width:0}.filter-pf-category-item{margin-bottom:5px}.filter-pf-category-label{font-weight:700;margin-right:5px;padding:5px 0 6px 5px}.filter-pf-select .caret{position:absolute;top:50%;right:10px;-ms-transform:translateY(-50%);transform:translateY(-50%)}.filter-pf-select-dropdown{background-color:#fff;background-image:none;color:#8b8d8f;font-size:12px;font-style:italic;font-weight:400;padding-right:25px;text-align:left}.filter-pf-select-dropdown .caret{font-style:normal}.filter-pf-active-label{margin-right:5px}.footer-pf,.footer-pf-alt{background-color:#030303;color:#9c9c9c;font-size:11px;line-height:17px;padding-left:25px;padding-top:10px}.layout-pf-alt-fixed-with-footer .footer-pf,.layout-pf-alt-fixed-with-footer .footer-pf-alt,.layout-pf-fixed-with-footer .footer-pf,.layout-pf-fixed-with-footer .footer-pf-alt{bottom:0;left:0;position:fixed;right:0;z-index:1030}@font-face{font-family:PatternFlyIcons-webfont;src:url(../fonts/PatternFlyIcons-webfont.eot);src:url(../fonts/PatternFlyIcons-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/PatternFlyIcons-webfont.ttf) format("truetype"),url(../fonts/PatternFlyIcons-webfont.woff) format("woff"),url(../fonts/PatternFlyIcons-webfont.svg#PatternFlyIcons-webfont) format("svg");font-weight:400;font-style:normal}[class*=" pficon-"],[class^=pficon-]{display:inline-block;font-family:PatternFlyIcons-webfont;font-style:normal;font-variant:normal;font-weight:400;line-height:1;speak:none;text-transform:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.pficon-add-circle-o:before{content:"\e61b"}.pficon-applications:before{content:"\e936"}.pficon-arrow:before{content:"\e929"}.pficon-asleep:before{content:"\e925"}.pficon-automation:before{content:"\e937"}.pficon-build:before{content:"\e902"}.pficon-builder-image:before{content:"\e800"}.pficon-bundle:before{content:"\e918"}.pficon-blueprint:before{content:"\e915"}.pficon-catalog:before{content:"\e939"}.pficon-chat:before{content:"\e928"}.pficon-close:before{content:"\e60b"}.pficon-cloud-security:before{content:"\e903"}.pficon-cloud-tenant:before{content:"\e904"}.pficon-cluster:before{content:"\e620"}.pficon-connected:before{content:"\e938"}.pficon-container-node:before{content:"\e621"}.pficon-cpu:before{content:"\e927"}.pficon-degraded:before{content:"\e91b"}.pficon-delete:before{content:"\e611"}.pficon-disconnected:before{content:"\e93c"}.pficon-domain:before{content:"\e919"}.pficon-edit:before{content:"\e60a"}.pficon-enhancement:before{content:"\e93a"}.pficon-enterprise:before{content:"\e906"}.pficon-equalizer:before{content:"\e610"}.pficon-error-circle-o:before{color:#c00;content:"\e926"}.pficon-export:before{content:"\e616"}.pficon-flag:before,.pficon-messages:before{content:"\e603"}.pficon-flavor:before{content:"\e907"}.pficon-filter:before{content:"\e943"}.pficon-folder-close:before{content:"\e607"}.pficon-folder-open:before{content:"\e606"}.pficon-help:before{content:"\e605"}.pficon-history:before{content:"\e93b"}.pficon-home:before{content:"\e618"}.pficon-image:before{content:"\e61f"}.pficon-import:before{content:"\e615"}.pficon-in-progress:before{content:"\e92c"}.pficon-info:before{content:"\e92b"}.pficon-infrastructure:before{content:"\e93d"}.pficon-integration:before{content:"\e948"}.pficon-key:before{content:"\e924"}.pficon-locked:before{content:"\e923"}.pficon-maintenance:before{content:"\e92d"}.pficon-memory:before{content:"\e908"}.pficon-middleware:before{content:"\e917"}.pficon-migration:before{content:"\e92e"}.pficon-monitoring:before{content:"\e944"}.pficon-network:before{content:"\e909"}.pficon-network-range:before{content:"\e94a"}.pficon-on:before{content:"\e931"}.pficon-on-running:before{content:"\e930"}.pficon-optimize:before{content:"\e93e"}.pficon-orders:before{content:"\e93f"}.pficon-off:before{content:"\e92f"}.pficon-ok:before{color:#3f9c35;content:"\e602"}.pficon-paused:before{content:"\e932"}.pficon-pending:before{content:"\e933"}.pficon-plugged:before{content:"\e940"}.pficon-port:before{content:"\e945"}.pficon-print:before{content:"\e612"}.pficon-process-automation:before{content:"\e949"}.pficon-private:before{content:"\e914"}.pficon-project:before{content:"\e905"}.pficon-rebalance:before{content:"\e91c"}.pficon-rebooting:before{content:"\e934"}.pficon-refresh:before,.pficon-restart:before{content:"\e617"}.pficon-regions:before{content:"\e90a"}.pficon-registry:before{content:"\e623"}.pficon-remove:before{content:"\e611"}.pficon-replicator:before{content:"\e624"}.pficon-repository:before{content:"\e90b"}.pficon-resource-pool:before{content:"\e90c"}.pficon-resources-almost-empty:before{content:"\e91d"}.pficon-resources-almost-full:before{content:"\e912"}.pficon-resources-full:before{content:"\e92a"}.pficon-route:before{content:"\e625"}.pficon-running:before{content:"\e614"}.pficon-satellite:before{content:"\e94b"}.pficon-save:before{content:"\e601"}.pficon-screen:before{content:"\e600"}.pficon-search:before{content:"\e921"}.pficon-security:before{content:"\e946"}.pficon-server:before{content:"\e90d"}.pficon-server-group:before{content:"\e91a"}.pficon-service:before{content:"\e61e"}.pficon-services:before{content:"\e947"}.pficon-service-catalog:before{content:"\e941"}.pficon-settings:before{content:"\e610"}.pficon-spinner:before{content:"\e614"}.pficon-spinner2:before{content:"\e613"}.pficon-storage-domain:before{content:"\e90e"}.pficon-template:before{content:"\e94c"}.pficon-tenant:before{content:"\e916"}.pficon-thumb-tack-o:before{content:"\e920"}.pficon-topology:before{content:"\e608"}.pficon-trend-down:before{content:"\e900"}.pficon-trend-up:before{content:"\e901"}.pficon-unknown:before{content:"\e935"}.pficon-user:before{content:"\e91e"}.pficon-users:before{content:"\e91f"}.pficon-unlocked:before{content:"\e922"}.pficon-unplugged:before{content:"\e942"}.pficon-vcenter:before{content:"\e94d"}.pficon-virtual-machine:before{content:"\e90f"}.pficon-volume:before{content:"\e910"}.pficon-warning-triangle-o:before{color:#ec7a08;content:"\e913"}.pficon-zone:before{content:"\e911"}.navbar-nav>li>.dropdown-menu.infotip{border-top-width:1px!important;margin-top:10px}@media (max-width:767px){.navbar-pf .navbar-nav .open .dropdown-menu.infotip{background-color:#fff!important;margin-top:0}}.infotip{min-width:235px;padding:0}.infotip .list-group{border-top:0;margin:0;padding:8px 0}.infotip .list-group .list-group-item{border:none;margin:0 15px 0 34px;padding:5px 0}.infotip .list-group .list-group-item>.i{color:#4d5258;font-size:13px;left:-20px;position:absolute;top:8px}.infotip .list-group .list-group-item>a{color:#4d5258;line-height:13px}.infotip .list-group .list-group-item>.close{float:right}.infotip .footer{background-color:#f5f5f5;padding:6px 15px}.infotip .footer a:hover{color:#0088ce}.infotip .arrow,.infotip .arrow:after{border-color:transparent;border-style:solid;display:block;height:0;position:absolute;width:0}.infotip .arrow{border-width:11px}.infotip .arrow:after{border-width:10px;content:""}.infotip.bottom .arrow,.infotip.bottom-left .arrow,.infotip.bottom-right .arrow{border-bottom-color:#bbb;border-top-width:0;left:50%;margin-left:-11px;top:-11px}.infotip.bottom .arrow:after,.infotip.bottom-left .arrow:after,.infotip.bottom-right .arrow:after{border-top-width:0;border-bottom-color:#fff;content:" ";margin-left:-10px;top:1px}.infotip.bottom-left .arrow{left:20%}.infotip.bottom-right .arrow{left:80%}.infotip.top .arrow{border-bottom-width:0;border-top-color:#bbb;bottom:-11px;left:50%;margin-left:-11px}.infotip.top .arrow:after{border-bottom-width:0;border-top-color:#f5f5f5;bottom:1px;content:" ";margin-left:-10px}.infotip.right .arrow{border-left-width:0;border-right-color:#bbb;left:-11px;margin-top:-11px;top:50%}.infotip.right .arrow:after{bottom:-10px;border-left-width:0;border-right-color:#fff;content:" ";left:1px}.infotip.left .arrow{border-left-color:#bbb;border-right-width:0;margin-top:-11px;right:-11px;top:50%}.infotip.left .arrow:after{border-left-color:#fff;border-right-width:0;bottom:-10px;content:" ";right:1px}.layout-pf,.layout-pf body{min-height:100%}.layout-pf.layout-pf-fixed.transitions .container-pf-nav-pf-vertical{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf.layout-pf-fixed body{padding-top:60px}.layout-pf.layout-pf-fixed .navbar-pf{left:0;position:fixed;top:0;right:0;z-index:1030}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav{margin-left:75px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav.hidden-icons-pf{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hidden-nav{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hide-nav-pf{margin-left:0!important}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf,.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges,.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}@media (min-width:1200px){.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf{margin-left:400px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges{margin-left:500px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hidden-nav{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav{margin-left:275px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.nav-pf-vertical-with-badges{margin-left:325px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.hidden-icons-pf{margin-left:0}}.layout-pf.layout-pf-fixed-with-footer body{padding-bottom:37px}.layout-pf-alt,.layout-pf-alt body{min-height:100%}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll,.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll body{height:100%;min-height:0}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt{height:100%;overflow:auto}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt.container-cards-pf{margin-top:0;padding-top:20px}.layout-pf-alt.layout-pf-alt-fixed.transitions .container-pf-alt-nav-pf-vertical-alt{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt.layout-pf-alt-fixed body{padding-top:60px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt{margin-left:250px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.collapsed-nav{margin-left:75px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.hidden-nav{margin-left:0}.layout-pf-alt.layout-pf-alt-fixed-with-footer body{padding-bottom:37px}a.disabled{color:#8b8d8f;cursor:not-allowed;text-decoration:none}.list-pf{border-bottom:1px solid #ededed}.list-pf-item{border-color:#ededed;border-left-color:#fff;border-right-color:#fff;border-style:solid;border-width:1px;border-bottom:none}.list-pf-item:hover{background-color:#edf8ff}.list-pf-item.active{background-color:#ededed;border-color:#bbb;border-bottom-width:1px;border-bottom-style:solid}.list-pf-expansion{background-color:#fff}.list-pf-container{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;padding:20px}.list-pf-expansion .list-pf-container{border-top:1px solid #bbb}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-container{-ms-flex-align:center;align-items:center}}.list-pf-chevron{min-width:1.2em}.list-pf-chevron,.list-pf-select{margin-right:10px}.list-pf-chevron+.list-pf-content,.list-pf-select+.list-pf-content{border-left:1px solid #d1d1d1;padding-left:20px}.list-pf-chevron .fa,.list-pf-select .fa{font-size:22px}.list-pf-content-flex{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;min-width:0}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-content-flex{-ms-flex-align:center;align-items:center}}.list-pf-left{-ms-flex-positive:0;flex-grow:0;margin-left:0;margin-right:20px}.list-pf-icon{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.list-pf-icon-bordered{border-radius:50%;border:2px solid #39a5dc}.list-pf-icon-small{font-size:1.4em;height:30px;line-height:30px;width:30px}.list-pf-content-wrapper{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:0}@media (min-width:992px){.list-pf-content-wrapper{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.list-pf-content-wrapper>*+*{margin-left:40px}}.list-pf-stacked .list-pf-content-wrapper{-ms-flex-align:start;align-items:flex-start}.list-pf-main-content{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-preferred-size:70%;flex-basis:70%;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:0}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-main-content{-ms-flex-wrap:nowrap;flex-wrap:nowrap;width:auto}.list-pf:not(.list-pf-stacked) .list-pf-main-content>*+*{margin-left:40px}}.list-pf-title{-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:100%;flex-basis:100%;font-weight:700;min-width:0;word-wrap:break-word}.list-pf-description{-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:100%;flex-basis:100%;min-width:0;word-wrap:break-word}.list-pf-additional-content{display:-ms-flexbox;display:flex;-ms-flex-preferred-size:31%;flex-basis:31%;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between}.list-pf-actions{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-positive:0;flex-grow:0;margin-left:40px}.list-pf-actions>*+*{margin-left:10px}.list-view-pf .list-group-item{-ms-flex-align:start;align-items:flex-start;background-clip:padding-box;border-color:transparent #fff;border-style:solid;border-width:1px;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-bottom:0;padding-top:0}.list-view-pf .list-group-item:after,.list-view-pf .list-group-item:before{content:" ";display:table}.list-view-pf .list-group-item:after{clear:both}.list-view-pf .list-group-item.list-view-pf-expand-active{background-color:#edf8ff;box-shadow:0 2px 6px rgba(3,3,3,.2);z-index:1}.list-view-pf .list-group-item.active{color:#555;background-color:#def3ff;background-clip:border-box;border-color:#bbb transparent transparent;z-index:auto}.list-view-pf .list-group-item:hover{background-color:#edf8ff;border-left-color:transparent;border-right-color:transparent}.list-view-pf .list-group-item.list-view-pf-expand-active{border:solid 1px #bbb}.list-view-pf .list-group-item.list-view-pf-expand-active:first-child{border-top-color:#bbb}.list-view-pf .list-group-item:first-child{border-top:1px solid transparent}@media (min-width:992px){.list-view-pf .list-group-item{-ms-flex-align:center;align-items:center}}.list-view-pf .list-group-item-heading{font-size:16px}.list-view-pf .list-group-item-heading small{display:block;font-size:9.6px;font-weight:400}@media (min-width:992px){.list-view-pf .list-group-item-heading{-ms-flex:1 0 calc(25% - 20px);flex:1 0 calc(25% - 20px);float:left;font-size:12px;margin:0 20px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:calc(25% - 20px)}}.list-view-pf .list-group-item-text{color:currentColor!important;margin-bottom:10px}@media (min-width:992px){.list-view-pf .list-group-item-text{-ms-flex:1 0 auto;flex:1 0 auto;float:left;margin:0 40px 0 0;width:calc(75% - 40px)}}.list-view-pf .close{float:none;position:absolute;right:15px}.list-view-pf-actions{float:right;margin-bottom:20px;margin-left:20px;margin-top:20px;-ms-flex-order:2;order:2}.list-view-pf-actions .dropdown-kebab-pf,.list-view-pf-actions button,.list-view-pf-actions>a{margin-left:10px}.list-view-pf-top-align .list-view-pf-actions{-ms-flex-item-align:start;align-self:flex-start}.list-view-pf-additional-info{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@media (min-width:992px){.list-view-pf-additional-info{-ms-flex:1 0 auto;flex:1 0 auto;float:left;width:50%}}.list-view-pf-additional-info-item{-ms-flex-align:center;align-items:center;display:inline-block;display:-ms-flexbox;display:flex;margin-right:20px;max-width:100%;text-align:center}.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked{text-align:center;-ms-flex-direction:column;flex-direction:column}.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked strong{font-size:13px;line-height:1em}.list-view-pf-additional-info-item .fa,.list-view-pf-additional-info-item .pficon{font-size:16px;margin-right:10px}.list-view-pf-additional-info-item strong{font-size:16px;font-weight:600;margin-right:5px}.list-view-pf-additional-info-item:last-child{margin-right:0}.list-view-pf-additional-info-item-donut-chart{width:60px}.list-view-pf-body{-ms-flex-align:center;align-items:center;display:table-cell;-ms-flex:1;flex:1;min-width:0;vertical-align:top;width:100%}@media (min-width:992px){.list-view-pf-body{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}}.list-view-pf-checkbox{border-right:1px solid #d1d1d1;float:left;margin-bottom:20px;margin-right:15px;margin-top:20px;padding:3px 10px 3px 0}.list-view-pf-top-align .list-view-pf-checkbox{-ms-flex-item-align:start;align-self:flex-start}.list-view-pf-description{-ms-flex:1 0 50%;flex:1 0 50%}.list-view-pf-stacked .list-view-pf-description{display:block;-ms-flex:none;flex:none}@media (min-width:992px){.list-view-pf-description{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;float:left;width:50%}}.list-view-pf-left{display:table-cell;padding-right:20px;text-align:center;vertical-align:top}.list-view-pf-left .list-view-pf-calendar{font-size:11px;line-height:1em}.list-view-pf-left .list-view-pf-calendar strong{display:block;font-size:44px;font-weight:300;line-height:1em}.list-view-pf-left .fa,.list-view-pf-left .pficon{border-radius:50%;font-size:2em}.list-view-pf-left .fa.list-view-pf-icon-md,.list-view-pf-left .pficon.list-view-pf-icon-md{background-color:#f5f5f5;height:50px;line-height:50px;width:50px}.list-view-pf-left .fa.list-view-pf-icon-danger,.list-view-pf-left .pficon.list-view-pf-icon-danger{background-color:#ffe6e6;color:#c00}.list-view-pf-left .fa.list-view-pf-icon-info,.list-view-pf-left .pficon.list-view-pf-icon-info{color:#8b8d8f}.list-view-pf-left .fa.list-view-pf-icon-lg,.list-view-pf-left .pficon.list-view-pf-icon-lg{background-color:#f5f5f5;height:60px;line-height:60px;width:60px}.list-view-pf-left .fa.list-view-pf-icon-sm,.list-view-pf-left .pficon.list-view-pf-icon-sm{border:2px solid #39a5dc;font-size:1.4em;height:30px;line-height:30px;width:30px}.list-view-pf-left .fa.list-view-pf-icon-sm:before,.list-view-pf-left .pficon.list-view-pf-icon-sm:before{display:block;line-height:26px}.list-view-pf-left .fa.list-view-pf-icon-success,.list-view-pf-left .pficon.list-view-pf-icon-success{background-color:#e9f4e9;color:#3f9c35}.list-view-pf-left .fa.list-view-pf-icon-warning,.list-view-pf-left .pficon.list-view-pf-icon-warning{background-color:#fdf2e5;color:#ec7a08}.list-view-pf-main-info{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;min-width:0;padding-bottom:20px;padding-top:20px}@media (min-width:992px){.list-view-pf-main-info{-ms-flex-align:center;align-items:center}.list-view-pf-top-align .list-view-pf-main-info{-ms-flex-align:start;align-items:flex-start}}.list-view-pf-stacked .list-group-item-heading{float:none;font-size:16px;line-height:1.2em;margin-bottom:5px;margin-right:40px;width:auto}.list-view-pf-stacked .list-group-item-text{float:none;width:auto}.list-view-pf-view{background:#ededed;border:none;margin-top:30px}.list-group-item-header{box-sizing:content-box;cursor:pointer;margin:0 -15px;padding:0 15px;width:100%}.list-view-pf-expand{cursor:pointer;float:left;margin-bottom:20px;margin-right:2px;margin-top:20px;padding:3px 0}.list-view-pf-expand.active,.list-view-pf-expand:hover{color:#0088ce}.list-view-pf-additional-info-item .list-view-pf-expand{margin:0;padding:0}.list-view-pf-expand .fa-angle-right{cursor:pointer;font-size:17px;margin-right:5px;margin-top:2px;width:10px}.list-group-item-container{background:#fff;border-top:solid 1px #bbb;box-sizing:content-box;margin:-1px -15px 0;-ms-flex-order:3;order:3;padding:15px;position:relative;width:100%}.list-view-pf-dnd .dndDragging.drag-original{display:none}.list-view-pf-dnd .dndDragging.drag-original .list-view-pf-dnd-original-items{display:block}.list-view-pf-dnd .dndDragging .list-view-pf-dnd-drag-items{display:inline-block}.list-view-pf-dnd .dndDragging .list-view-pf-dnd-original-items{display:none}.list-view-pf-dnd .dndPlaceholder{background-color:#ededed;padding:20px 0}.list-view-pf-dnd .list-group-item-header{margin-left:-10px}.list-view-pf-dnd .list-group-item-header:before{background-image:linear-gradient(to bottom,#0088ce 60%,#fff 0);background-position:left;background-repeat:repeat-y;background-size:2px 5px;border:4px solid #0088ce;border-color:#00659c;content:"";height:55px;left:4px;position:absolute;top:5px;width:10px}.list-view-pf-dnd-drag-items{display:none}.login-pf{height:100%}.login-pf #brand{position:relative;top:-70px}.login-pf #brand img{display:block;height:18px;margin:0 auto;max-width:100%}@media (min-width:768px){.login-pf #brand img{margin:0;text-align:left}}.login-pf #badge{display:block;margin:20px auto 70px;position:relative;text-align:center}@media (min-width:768px){.login-pf #badge{float:right;margin-right:64px;margin-top:50px}}.login-pf body{background:#030303 url(../img/bg-login.jpg) repeat-x 50% 0;background-size:auto}@media (min-width:768px){.login-pf body{background-size:100% auto}}.login-pf .container{background-color:rgba(255,255,255,.055);clear:right;color:#fff;padding-bottom:40px;padding-top:20px;width:auto}@media (min-width:768px){.login-pf .container{bottom:13%;padding-left:80px;position:absolute;width:100%}}.login-pf .container .details p:first-child{border-top:1px solid rgba(255,255,255,.3);padding-top:25px;margin-top:25px}@media (min-width:768px){.login-pf .container .details{border-left:1px solid rgba(255,255,255,.3);padding-left:40px}.login-pf .container .details p:first-child{border-top:0;padding-top:0;margin-top:0}}.login-pf .container .details p{margin-bottom:2px}.login-pf .container .form-horizontal .control-label{font-size:13px;font-weight:400;text-align:left}.login-pf .container .form-horizontal .form-group:last-child,.login-pf .container .form-horizontal .form-group:last-child .help-block:last-child{margin-bottom:0}.login-pf .container .help-block{color:#fff}@media (min-width:768px){.login-pf .container .login{padding-right:40px}}.login-pf .container .submit{text-align:right}.login-pf-page .login-pf-brand{margin-top:20px;max-width:360px;width:70%}@media (min-width:768px){.login-pf-page .login-pf-brand{margin-top:62px}}.login-pf-page .login-pf-page-header{margin-bottom:20px;text-align:center}@media (min-width:768px){.login-pf-page .login-pf-page-header{margin-bottom:40px}}.login-pf-page .login-pf-page-header p{color:#fff;font-size:14px;margin-left:auto;margin-right:auto;margin-top:20px}.login-pf-page .card-pf{padding:10px 20px 30px 20px;margin-bottom:0}@media (min-width:768px){.login-pf-page .card-pf{padding:20px 40px 30px 40px}}.login-pf-page .card-pf p{color:#72767b}.login-pf-page .form-control{height:36px}.login-pf-page .checkbox-label{color:#72767b;font-weight:300;margin-bottom:15px}@media (min-width:768px){.login-pf-page .checkbox-label{margin:0}}.login-pf-page .btn-primary{margin-top:40px}.login-pf-page .login-pf-header{margin-bottom:20px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}@media (min-width:768px){.login-pf-page .login-pf-header{margin-bottom:30px}}.login-pf-page .login-pf-header h1,.login-pf-page .login-pf-header p{text-align:center}.login-pf-page .login-pf-header h1{font-size:16px}@media (min-width:768px){.login-pf-page .login-pf-header h1{font-size:24px}}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:auto;-ms-flex-item-align:end;align-self:flex-end}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle{color:#4d5258;background:0 0;padding:0 15px 0 0;font-weight:300}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle:not(:focus){box-shadow:none;border:1px solid transparent}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle .caret{right:0}.login-pf-page .login-pf-signup{margin:40px 0 0;font-size:15px;text-align:center}.login-pf-page .login-pf-signup a{margin-left:10px}.login-pf-page .login-pf-settings{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.login-pf-page .login-pf-page-footer{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.login-pf-page .login-pf-page-footer-links{display:-ms-flexbox;display:flex;margin:60px 0 0 0}.login-pf-page .login-pf-page-footer-links li:not(:last-of-type){position:relative;margin:0 20px 0 0}.login-pf-page .login-pf-page-footer-links li:not(:last-of-type):after{content:".";color:#fff;position:absolute;top:0;right:-10px}.login-pf-page .login-pf-page-footer-link{color:#fff;font-size:14px}.login-pf-page .login-pf-page-footer-sso-services{-ms-flex:1 0 100%;flex:1 0 100%;margin-top:40px;text-align:center;color:#fff}.login-pf-page .login-pf-page-footer-sso-services-logos{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0;margin:0;list-style:none;-ms-flex-pack:center;justify-content:center}.login-pf-page .login-pf-page-footer-sso-services-logos li{margin:0 5px 5px}.login-pf-page.login-pf-page-accounts{margin-left:20px;margin-right:20px}.login-pf-page .login-pf-accounts{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:840px;margin-left:auto;margin-right:auto}.login-pf-page .login-pf-accounts .login-pf-header,.login-pf-page .login-pf-accounts .login-pf-signup{-ms-flex-preferred-size:100%;flex-basis:100%}.login-pf-page .login-pf-social-section{-ms-flex-preferred-size:100%;flex-basis:100%;padding:0}@media (min-width:768px){.login-pf-page .login-pf-social-section{-ms-flex:0 1 50%;flex:0 1 50%;max-width:50%}}@media (min-width:768px){.login-pf-page .login-pf-social-section:first-of-type{padding-right:40px}.login-pf-page .login-pf-social-section:last-of-type{padding-left:39px;border-left:1px solid #d1d1d1}}.login-pf-page .login-pf-social{margin:40px 0 0 0}@media (min-width:768px){.login-pf-page .login-pf-social{margin:0}.login-pf-page .login-pf-social-double-col{-ms-flex-wrap:wrap;flex-wrap:wrap;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}.login-pf-page .login-pf-social-double-col .login-pf-social-link{-ms-flex-preferred-size:48%;flex-basis:48%}}.login-pf-page .login-pf-social:not(.login-pf-social-all) .login-pf-social-link-more{display:none}.login-pf-page .login-pf-social-link{margin-bottom:15px}.login-pf-page .login-pf-social-link a{display:block;padding:7px 0;font-size:14px;background:#f5f5f5;text-align:center;color:#72767b}.login-pf-page .login-pf-social-link a img{margin:0 10px 0 0;width:20px;height:20px}.login-pf-page .login-pf-social-link a:hover{text-decoration:none;background:#ededed}.login-pf-page .login-pf-social-toggle{float:right;padding:0}.login-pf-page .login-pf-social-toggle .caret{margin-left:5px}.login-pf-page .login-pf-social-toggle-active .caret{-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.navbar-pf{background:#030303;border:0;border-radius:0;border-top:3px solid #39a5dc;margin-bottom:0;min-height:0}.navbar-pf .navbar-brand{color:#f5f5f5;height:auto;padding:12px 0;margin:0 0 0 20px}.navbar-pf .navbar-brand img{display:block}.navbar-pf .navbar-collapse{border-top:0;box-shadow:none;padding:0}.navbar-pf .navbar-header{border-bottom:1px solid #292929;float:none}.navbar-pf .navbar-nav{margin:0}.navbar-pf .navbar-nav>.active>a,.navbar-pf .navbar-nav>.active>a:focus,.navbar-pf .navbar-nav>.active>a:hover{background-color:#232323;color:#f5f5f5}.navbar-pf .navbar-nav>li>a{color:#d1d1d1;line-height:1;padding:10px 20px;text-shadow:none}.navbar-pf .navbar-nav>li>a:focus,.navbar-pf .navbar-nav>li>a:hover{color:#f5f5f5}.navbar-pf .navbar-nav>.open>a,.navbar-pf .navbar-nav>.open>a:focus,.navbar-pf .navbar-nav>.open>a:hover{background-color:#232323;color:#f5f5f5}.navbar-pf .navbar-nav .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;left:26px;margin:0;padding:2px 4px;position:absolute;min-width:10px;min-height:10px;top:6px}@media (min-width:768px){.navbar-pf .navbar-nav .badge{left:auto;right:6px;top:3px}}.navbar-pf .navbar-nav .badge.badge-pf-bordered{border:1px solid #030303}@media (max-width:767px){.navbar-pf .navbar-nav .active .dropdown-menu,.navbar-pf .navbar-nav .active .navbar-persistent,.navbar-pf .navbar-nav .open .dropdown-menu{background-color:#171717!important;margin-left:0;padding-bottom:0;padding-top:0}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a,.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a:focus,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a:focus,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a:hover{background-color:#1f1f1f!important;color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent>li>a,.navbar-pf .navbar-nav .open .dropdown-menu>li>a{background-color:transparent;border:0;color:#d1d1d1;outline:0;padding-left:30px}.navbar-pf .navbar-nav .active .dropdown-menu>li>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent>li>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu>li>a:hover{color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu .divider,.navbar-pf .navbar-nav .active .navbar-persistent .divider,.navbar-pf .navbar-nav .open .dropdown-menu .divider{background-color:#292929;margin:0 1px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-header,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-header,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-header{padding-bottom:0;padding-left:30px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open .dropdown-toggle,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-toggle,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open .dropdown-toggle{color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.pull-left,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.pull-left,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.pull-left{float:none!important}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu>a:after,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu>a:after,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu>a:after{display:none}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-header,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-header,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-header{padding-left:45px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu{border:0;bottom:auto;box-shadow:none;display:block;float:none;margin:0;min-width:0;padding:0;position:relative;left:auto;right:auto;top:auto}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu>li>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu>li>a{padding:5px 15px 5px 45px;line-height:20px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu .dropdown-menu>li>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu>li>a{padding-left:60px}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-menu{display:block}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu>a:after{display:inline-block!important;position:relative;right:auto;top:1px}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu{display:none}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-submenu>a:after{display:none!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu{background-color:#fff!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a:active{background-color:#def3ff!important;border-color:#bee1f4!important;color:#363636!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a:active small{color:#9c9c9c!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.disabled>a{color:#9c9c9c!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a:active{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a:active small{color:rgba(255,255,255,.5)!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li>a.opt{border-bottom:1px solid transparent;border-top:1px solid transparent;color:#363636;padding-left:10px;padding-right:10px}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:active small{color:rgba(255,255,255,.5)!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:focus small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:hover small{color:#9c9c9c}.navbar-pf .navbar-nav .context-bootstrap-select>.open>.dropdown-menu{padding-bottom:5px;padding-top:5px}}.navbar-pf .navbar-persistent{display:none}.navbar-pf .active>.navbar-persistent{display:block}.navbar-pf .navbar-primary{float:none}.navbar-pf .navbar-primary .context{border-bottom:1px solid #292929}.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group,.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group[class*=span]{margin:8px 20px 9px;width:auto}.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a{position:relative}.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a:after{content:"\f107";display:inline-block;font-family:FontAwesome;font-weight:400}@media (max-width:767px){.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a:after{height:10px;margin-left:4px;vertical-align:baseline}}.navbar-pf .navbar-toggle{border:0;margin:0;padding:10px 20px}.navbar-pf .navbar-toggle:focus,.navbar-pf .navbar-toggle:hover{background-color:transparent;outline:0}.navbar-pf .navbar-toggle:focus .icon-bar,.navbar-pf .navbar-toggle:hover .icon-bar{box-shadow:0 0 3px #fff}.navbar-pf .navbar-toggle .icon-bar{background-color:#fff}.navbar-pf .navbar-utility{border-bottom:1px solid #292929}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle{padding-left:36px;position:relative}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle .pficon-user{left:20px;position:absolute;top:10px}@media (max-width:767px){.navbar-pf .navbar-utility>li+li{border-top:1px solid #292929}}@media (min-width:768px){.navbar-pf .navbar-brand{padding:8px 0 7px}.navbar-pf .navbar-nav>li>a{padding-bottom:14px;padding-top:14px}.navbar-pf .navbar-persistent{font-size:14px}.navbar-pf .navbar-primary{font-size:14px;background-image:linear-gradient(to bottom,#1d1d1d 0,#030303 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary.persistent-secondary .context .dropdown-menu{top:auto}.navbar-pf .navbar-primary.persistent-secondary .dropup .dropdown-menu{bottom:-5px;top:auto}.navbar-pf .navbar-primary.persistent-secondary>li{position:static}.navbar-pf .navbar-primary.persistent-secondary>li.active{margin-bottom:32px}.navbar-pf .navbar-primary.persistent-secondary>li.active>.navbar-persistent{display:block;left:0;position:absolute}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent{background:#f5f5f5;border-bottom:1px solid #d1d1d1;padding:0;width:100%}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent a{text-decoration:none!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:before,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:hover:before{background:#0088ce;bottom:-1px;content:"";display:block;height:2px;left:20px;position:absolute;right:20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:hover>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active>a:hover{color:#0088ce!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active .active>a{color:#f5f5f5}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu:hover>.dropdown-menu{display:none}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-menu{display:block;left:20px;margin-top:1px;top:100%}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-toggle{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-toggle:after{border-top-color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu>.dropdown-toggle{padding-right:35px!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu>.dropdown-toggle:after{position:absolute;right:20px;top:10px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open:before,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover:before{background:#bbb;bottom:-1px;content:"";display:block;height:2px;left:20px;position:absolute;right:20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover>a{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open>a:after,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover>a:after{border-top-color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a{background-color:transparent;display:block;line-height:1;padding:9px 20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a.dropdown-toggle{padding-right:35px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a.dropdown-toggle:after{font-size:15px;position:absolute;right:20px;top:9px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a:hover{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li a{color:#4d5258}.navbar-pf .navbar-primary>li>a{border-bottom:1px solid transparent;border-top:1px solid transparent;position:relative;margin:-1px 0 0}.navbar-pf .navbar-primary>li>a:hover{background-color:#1d1d1d;border-top-color:#5c5c5c;color:#d1d1d1;background-image:linear-gradient(to bottom,#363636 0,#1d1d1d 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary>.active>a,.navbar-pf .navbar-primary>.active>a:focus,.navbar-pf .navbar-primary>.active>a:hover,.navbar-pf .navbar-primary>.open>a,.navbar-pf .navbar-primary>.open>a:focus,.navbar-pf .navbar-primary>.open>a:hover{background-color:#303030;border-bottom-color:#303030;border-top-color:#696969;box-shadow:none;color:#f5f5f5;background-image:linear-gradient(to bottom,#434343 0,#303030 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.context-bootstrap-select .filter-option{max-width:160px;text-overflow:ellipsis}.navbar-pf .navbar-primary li.context.dropdown{border-bottom:0}.navbar-pf .navbar-primary li.context.context-bootstrap-select,.navbar-pf .navbar-primary li.context>a{background-color:#1f1f1f;border-bottom-color:#3e3e3e;border-right:1px solid #3e3e3e;border-top-color:#3b3b3b;font-weight:600;background-image:linear-gradient(to bottom,#323232 0,#1f1f1f 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.context-bootstrap-select:hover,.navbar-pf .navbar-primary li.context>a:hover{background-color:#323232;border-bottom-color:#4a4a4a;border-right-color:#4a4a4a;border-top-color:#4a4a4a;background-image:linear-gradient(to bottom,#3f3f3f 0,#323232 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.open>a{background-color:#454545;border-bottom-color:#575757;border-right-color:#575757;border-top-color:#5a5a5a;background-image:linear-gradient(to bottom,#4c4c4c 0,#454545 100%);background-repeat:repeat-x}.navbar-pf .navbar-utility{border-bottom:0;font-size:11px;position:absolute;right:0;top:0}.navbar-pf .navbar-utility>.active>a,.navbar-pf .navbar-utility>.active>a:focus,.navbar-pf .navbar-utility>.active>a:hover,.navbar-pf .navbar-utility>.open>a,.navbar-pf .navbar-utility>.open>a:focus,.navbar-pf .navbar-utility>.open>a:hover{background:#363636;color:#d1d1d1}.navbar-pf .navbar-utility>li>a{border-left:1px solid #2b2b2b;color:#d1d1d1!important;padding:7px 10px}.navbar-pf .navbar-utility>li>a:hover{background:#232323;border-left-color:#373737}.navbar-pf .navbar-utility>li.open>a{border-left-color:#444;color:#f5f5f5!important}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle{padding-left:26px}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle .pficon-user{left:10px;top:7px}.navbar-pf .navbar-utility .open .dropdown-menu{left:auto;right:0}.navbar-pf .navbar-utility .open .dropdown-menu .dropdown-menu{left:auto;right:100%}.navbar-pf .navbar-utility .open .dropdown-menu{border-top-width:0}.navbar-pf .open .dropdown-submenu>.dropdown-menu,.navbar-pf .open.bootstrap-select .dropdown-menu{border-top-width:1px!important}}@media (max-width:360px){.navbar-pf .navbar-brand{margin-left:10px;width:75%}.navbar-pf .navbar-brand img{height:auto;max-width:100%}.navbar-pf .navbar-toggle{padding-left:0}}.navbar-pf-alt{background-color:#030303;background-image:"bg-navbar-pf-alt.svg";background-repeat:no-repeat;background-size:auto 100%;border:none;border-radius:0;border-top:2px solid #39a5dc;margin-bottom:0}.navbar-pf-alt .infotip.bottom-right .arrow{left:90%}.layout-pf-alt-fixed .navbar-pf-alt{left:0;position:fixed;right:0;top:0;z-index:1030}.navbar-pf-alt .nav.navbar-nav>li>.dropdown-menu.infotip{margin-top:0}.navbar-pf-alt .nav .nav-item-iconic{cursor:pointer;line-height:1;max-height:58px;padding:21px 12px;position:relative}.navbar-pf-alt .nav .nav-item-iconic:focus,.navbar-pf-alt .nav .nav-item-iconic:hover{background-color:transparent}.navbar-pf-alt .nav .nav-item-iconic:focus .caret,.navbar-pf-alt .nav .nav-item-iconic:focus .fa,.navbar-pf-alt .nav .nav-item-iconic:focus .glyphicon,.navbar-pf-alt .nav .nav-item-iconic:focus .pficon,.navbar-pf-alt .nav .nav-item-iconic:hover .caret,.navbar-pf-alt .nav .nav-item-iconic:hover .fa,.navbar-pf-alt .nav .nav-item-iconic:hover .glyphicon,.navbar-pf-alt .nav .nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-alt .nav .nav-item-iconic .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;margin:0 0 -11px -12px;min-width:0;padding:2px 4px}.navbar-pf-alt .nav .nav-item-iconic .caret,.navbar-pf-alt .nav .nav-item-iconic .fa,.navbar-pf-alt .nav .nav-item-iconic .pficon{color:#d1d1d1;font-size:16px}.navbar-pf-alt .nav .nav-item-iconic .caret{font-size:12px;width:auto}.navbar-pf-alt .nav .open>.nav-item-iconic,.navbar-pf-alt .nav .open>.nav-item-iconic:focus,.navbar-pf-alt .nav .open>.nav-item-iconic:hover{background:0 0}.navbar-pf-alt .nav .open>.nav-item-iconic .caret,.navbar-pf-alt .nav .open>.nav-item-iconic .fa,.navbar-pf-alt .nav .open>.nav-item-iconic .pficon,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .caret,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .fa,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .pficon,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .caret,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .fa,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-alt .navbar-brand{color:#fff;height:auto;margin:0 0 0 25px;min-height:35px;padding:11px 0 12px}.navbar-pf-alt .navbar-brand .navbar-brand-name{display:inline;margin-left:0 15px 0 0;margin-right:0 15px 0 0}@media (max-width:480px){.navbar-pf-alt .navbar-brand .navbar-brand-name{display:none}}.navbar-pf-alt .navbar-brand .navbar-brand-icon{display:inline;margin-left:0 15px 0 0;margin-right:0 15px 0 0}.navbar-pf-alt .navbar-iconic{margin-right:0}.navbar-pf-alt .navbar-toggle{border:0;display:block;float:left;margin:13px 15px}.navbar-pf-alt .navbar-toggle:focus .icon-bar,.navbar-pf-alt .navbar-toggle:hover .icon-bar{background:#fff}.navbar-pf-alt .navbar-toggle+.navbar-brand{margin-left:0}.navbar-pf-alt .navbar-toggle .icon-bar{background:#d1d1d1}.navbar-pf-vertical{background-color:#1d1d1d;border:none;border-radius:0;border-top:2px solid #39a5dc;margin-bottom:0}.navbar-pf-vertical .infotip.bottom-right .arrow{left:90%}.layout-pf-fixed .navbar-pf-vertical{left:0;position:fixed;right:0;top:0;z-index:1030}.navbar-pf-vertical .nav.navbar-nav>li>.dropdown-menu.infotip{margin-top:0}.navbar-pf-vertical .nav .nav-item-iconic{color:#d1d1d1;cursor:pointer;line-height:1;max-height:58px;padding:21px 12px;position:relative}.navbar-pf-vertical .nav .nav-item-iconic:focus,.navbar-pf-vertical .nav .nav-item-iconic:hover{color:#fff;background-color:transparent}.navbar-pf-vertical .nav .nav-item-iconic:focus .caret,.navbar-pf-vertical .nav .nav-item-iconic:focus .fa,.navbar-pf-vertical .nav .nav-item-iconic:focus .glyphicon,.navbar-pf-vertical .nav .nav-item-iconic:focus .pficon,.navbar-pf-vertical .nav .nav-item-iconic:hover .caret,.navbar-pf-vertical .nav .nav-item-iconic:hover .fa,.navbar-pf-vertical .nav .nav-item-iconic:hover .glyphicon,.navbar-pf-vertical .nav .nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-vertical .nav .nav-item-iconic .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;left:20px;margin:0;padding:2px 4px;position:absolute;min-width:10px;min-height:10px;top:18px}.navbar-pf-vertical .nav .nav-item-iconic .badge.badge-pf-bordered{border:1px solid #1d1d1d}.navbar-pf-vertical .nav .nav-item-iconic .caret,.navbar-pf-vertical .nav .nav-item-iconic .fa,.navbar-pf-vertical .nav .nav-item-iconic .pficon{color:#d1d1d1;font-size:16px}.navbar-pf-vertical .nav .nav-item-iconic .caret{font-size:12px;width:auto}.navbar-pf-vertical .nav .open>.nav-item-iconic,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover{background:0 0}.navbar-pf-vertical .nav .open>.nav-item-iconic .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic .pficon,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .pficon,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-vertical .navbar-brand{color:#fff;height:auto;margin:0 0 0 25px;min-height:35px;padding:11px 0 12px}.navbar-pf-vertical .navbar-brand .navbar-brand-name{display:inline-block;margin:0 15px 0 0}@media (max-width:480px){.navbar-pf-vertical .navbar-brand .navbar-brand-name{display:none}}.navbar-pf-vertical .navbar-brand .navbar-brand-icon{display:inline-block;margin:0 15px 0 0;max-height:35px}.navbar-pf-vertical .navbar-brand .navbar-brand-txt{line-height:34px}.navbar-pf-vertical .navbar-iconic{margin-right:0}.navbar-pf-vertical .navbar-toggle{border:0;display:block;float:left;margin:13px 15px}.navbar-pf-vertical .navbar-toggle:focus .icon-bar,.navbar-pf-vertical .navbar-toggle:hover .icon-bar{background:#fff}.navbar-pf-vertical .navbar-toggle+.navbar-brand{margin-left:0}.navbar-pf-vertical .navbar-toggle .icon-bar{background:#d1d1d1}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value{transition:opacity 0s .1s,opacity .1s linear}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .badge{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .list-group-item-value{transition:opacity .5s ease-out;transition-delay:150ms}.nav-pf-vertical-alt{background:#fff}.ie9.layout-pf-alt-fixed .nav-pf-vertical-alt{box-sizing:content-box}.layout-pf-alt-fixed .nav-pf-vertical-alt{border-right:1px solid #d1d1d1;bottom:0;overflow-x:hidden;overflow-y:auto;left:0;position:fixed;top:60px;width:250px;z-index:1030}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed{width:75px!important}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .badge{padding:2px 3px;right:21px;top:36px}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value{opacity:0}.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden{display:none}.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden.show-mobile-nav{box-shadow:0 0 3px rgba(3,3,3,.15);display:block!important}.layout-pf-alt-fixed-with-footer .nav-pf-vertical-alt{bottom:37px}.nav-pf-vertical-alt .list-group{border-top:0;margin-bottom:0}.nav-pf-vertical-alt .list-group-item{padding:0}.nav-pf-vertical-alt .list-group-item a{color:#363636;display:block;font-size:14px;height:63px;padding:17px 20px 17px 25px;position:relative;white-space:nowrap}.nav-pf-vertical-alt .list-group-item a:focus{color:#363636;text-decoration:none}.nav-pf-vertical-alt .list-group-item a:hover{color:#39a5dc;text-decoration:none}.nav-pf-vertical-alt .list-group-item.active{background-color:#fff;border-color:#f5f5f5}.nav-pf-vertical-alt .list-group-item.active:before{background:#39a5dc;content:" ";display:block;height:100%;left:0;position:absolute;top:0;width:5px}.nav-pf-vertical-alt .list-group-item.active a{color:#39a5dc}.nav-pf-vertical-alt .list-group-item .badge{background:#363636;border:1px solid #fff;border-radius:3px;color:#fff;font-weight:700;font-size:9px;padding:5px;position:absolute;right:15px;text-align:center;top:21px}.nav-pf-vertical-alt .list-group-item .badge.notifications{background:#0088ce}.nav-pf-vertical-alt .list-group-item .fa,.nav-pf-vertical-alt .list-group-item .glyphicon,.nav-pf-vertical-alt .list-group-item .pficon{float:left;font-size:18px;line-height:30px;margin-right:10px;text-align:center;width:18px}.nav-pf-vertical-alt .list-group-item .list-group-item-value{display:inline-block;line-height:30px;opacity:1;overflow:hidden;text-overflow:ellipsis;width:140px}.nav-pf-vertical-alt .list-group-item-separator{border-top-width:5px}.sidebar-pf .nav-pf-vertical-alt{margin-left:-20px;margin-right:-20px}.drawer-pf{background-color:#fafafa;border:1px solid #d1d1d1;box-shadow:0 6px 12px rgba(3,3,3,.175);overflow-y:auto;position:absolute;right:0;width:320px;z-index:2}.drawer-pf .panel{border-bottom:none;border-left:none;border-right:none}.drawer-pf .panel-group .panel-heading+.panel-collapse .panel-body{border-top:none;border-bottom:1px solid #d1d1d1;padding:0}.drawer-pf .panel-counter{display:block;font-style:italic;line-height:1.2;padding-left:18px;padding-top:5px}.drawer-pf .panel-heading{border-bottom:1px solid #d1d1d1}.drawer-pf .panel-group{bottom:0;margin-bottom:0;position:absolute;top:25px;width:100%}.drawer-pf .panel-title a{cursor:pointer;display:block}.drawer-pf.drawer-pf-expanded{width:inherit}@media (max-width:767px){.drawer-pf.drawer-pf-expanded{left:0;width:100%}}@media (min-width:767px){.drawer-pf.drawer-pf-expanded{left:270px}}.drawer-pf.drawer-pf-expanded .drawer-pf-toggle-expand:before{content:"\f101"}.drawer-pf .blank-slate-pf{border:0;margin-bottom:0;padding:30px}.drawer-pf .blank-slate-pf .blank-slate-pf-icon{font-size:3em;line-height:1em}.drawer-pf .blank-slate-pf h1{font-size:1em;margin-bottom:0;margin-top:15px}.drawer-pf-close,.drawer-pf-toggle-expand{color:#252525;cursor:pointer;line-height:inherit;padding:2px 10px;position:absolute}.drawer-pf-close:focus,.drawer-pf-close:hover,.drawer-pf-toggle-expand:focus,.drawer-pf-toggle-expand:hover{color:#0088ce;text-decoration:none}.drawer-pf-toggle-expand{left:0}.drawer-pf-toggle-expand:before{content:"\f100";font-family:FontAwesome}.drawer-pf-toggle-expand:hover{color:#0088ce}.drawer-pf-close{right:0}.drawer-pf-action{display:-ms-flexbox;display:flex;border-bottom:1px solid #d1d1d1}.drawer-pf-action .btn-link{color:#0088ce;padding:10px 0}.drawer-pf-action .btn-link .fa,.drawer-pf-action .btn-link .pficon{margin-right:3px}.drawer-pf-action .btn-link .pficon-close{position:relative;top:1px}.drawer-pf-action .btn-link:hover{color:#00659c}.drawer-pf-action-link{border-left:solid 1px #d1d1d1;-ms-flex:1 1 0%;flex:1 1 0%;margin:10px 0;text-align:center}.drawer-pf-action-link:first-of-type{border-left-width:0}.drawer-pf-action-link .btn-link{padding:0}.drawer-pf-loading{color:#4d5258;font-size:14px;padding:20px 15px}.drawer-pf-notification{border-bottom:1px solid #d1d1d1;padding:15px}.drawer-pf-notification .date{border-right:1px solid #aaa;display:inline-block;line-height:1;margin-right:5px;padding-right:9px}.drawer-pf-notification>.dropdown-kebab-pf{margin-top:-3px}.drawer-pf-notification .pficon{font-size:14px;margin-top:3px}.drawer-pf-notification:last-of-type{border-bottom:none}.drawer-pf-notification:hover{background-color:#def3ff}.drawer-pf-notification.unread .drawer-pf-notification-message{font-weight:700;cursor:pointer}.drawer-pf-notification.expanded-notification .date{border-right:none;padding-right:0}.drawer-pf-notification-content{cursor:default}.drawer-pf-notification-info,.drawer-pf-notification-message{display:block;padding-left:27px;padding-right:19px}.expanded-notification .drawer-pf-notification-info,.expanded-notification .drawer-pf-notification-message{display:inline-block}.drawer-pf-title{background-color:#fafafa;border-bottom:1px solid #d1d1d1;position:absolute;width:100%}.drawer-pf-title h3{font-size:12px;margin:0;padding:6px 15px}.drawer-pf-notification.expanded-notification .drawer-pf-notification-content{display:-ms-flexbox;display:flex}@media (max-width:991px){.drawer-pf-notification.expanded-notification .drawer-pf-notification-content{-ms-flex-direction:column;flex-direction:column}}.drawer-pf-notification.expanded-notification .drawer-pf-notification-content .drawer-pf-notification-message{-ms-flex:1 1;flex:1 1}.navbar-pf-vertical .drawer-pf{height:calc(100vh - 58px - 20px);top:58px}@media (max-width:767px){.navbar-pf-vertical .drawer-pf{width:100%;height:calc(100vh - 58px)}}.navbar-pf-vertical .nav .drawer-pf-trigger .drawer-pf-trigger-icon{border-left:1px solid #2b2b2b;border-right:1px solid #2b2b2b;padding-left:15px;padding-right:15px}.navbar-pf-vertical .nav .drawer-pf-trigger.open .drawer-pf-trigger-icon{background-color:#232323}.navbar-pf .drawer-pf{height:calc(100vh - 26px - 20px);top:26px}@media (max-width:767px){.navbar-pf .drawer-pf{width:100%;height:calc(100vh - 26px - 32px);top:calc(26px + 8px)}}.navbar-pf .drawer-pf-trigger-icon{cursor:pointer}.search-pf.has-button{border-collapse:separate;display:table}.search-pf.has-button .form-group{display:table-cell;width:100%}.search-pf.has-button .form-group .btn{box-shadow:none;float:left;margin-left:-1px}.search-pf.has-button .form-group .btn.btn-lg{font-size:14.5px}.search-pf.has-button .form-group .btn.btn-sm{font-size:10.7px}.search-pf.has-button .form-group .form-control{float:left}.search-pf .has-clear .clear{background:rgba(255,255,255,0);border:0;height:25px;line-height:1;padding:0;position:absolute;right:1px;top:1px;width:28px}.search-pf .has-clear .clear:focus{outline:0}.search-pf .has-clear .form-control{padding-right:30px}.search-pf .has-clear .form-control::-ms-clear{display:none}.search-pf .has-clear .input-lg+.clear{height:31px;width:28px}.search-pf .has-clear .input-sm+.clear{height:20px;width:28px}.search-pf .has-clear .input-sm+.clear span{font-size:10px}.search-pf .has-clear .search-pf-input-group{position:relative}.sidebar-header{border-bottom:1px solid #ececec;padding-bottom:11px;margin:50px 0 20px}.sidebar-header .actions{margin-top:-2px}.sidebar-pf .sidebar-header+.list-group{border-top:0;margin-top:-10px}.sidebar-pf .sidebar-header+.list-group .list-group-item{background:0 0;border-color:#ececec;padding-left:0}.sidebar-pf .sidebar-header+.list-group .list-group-item-heading{font-size:12px}.sidebar-pf .nav-category h2{color:#9c9c9c;font-size:12px;font-weight:400;line-height:21px;margin:0;padding:8px 0}.sidebar-pf .nav-category+.nav-category{margin-top:10px}.sidebar-pf .nav-pills>li.active>a{background:#0088ce!important;border-color:#0088ce!important;color:#fff}@media (min-width:768px){.sidebar-pf .nav-pills>li.active>a:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:1px}}.sidebar-pf .nav-pills>li.active>a .fa{color:#fff}.sidebar-pf .nav-pills>li>a{border-bottom:1px solid transparent;border-radius:0;border-top:1px solid transparent;color:#363636;font-size:13px;line-height:21px;padding:1px 20px}.sidebar-pf .nav-pills>li>a:hover{background:#def3ff;border-color:#bee1f4}.sidebar-pf .nav-pills>li>a .fa{color:#6a7079;font-size:15px;margin-right:10px;text-align:center;vertical-align:middle;width:15px}.sidebar-pf .nav-stacked{margin-left:-20px;margin-right:-20px}.sidebar-pf .nav-stacked li+li{margin-top:0}.sidebar-pf .panel{background:0 0}.sidebar-pf .panel-body{padding:6px 20px}.sidebar-pf .panel-body .nav-pills>li>a{padding-left:37px}.sidebar-pf .panel-heading{padding:9px 20px}.sidebar-pf .panel-title{font-size:12px}.sidebar-pf .panel-title>a:before{display:inline-block;margin-left:1px;margin-right:4px;width:9px}.sidebar-pf .panel-title>a.collapsed:before{margin-left:3px;margin-right:2px}@media (min-width:767px){.sidebar-header-bleed-left{margin-left:-20px}.sidebar-header-bleed-left>h2{margin-left:20px}.sidebar-header-bleed-right{margin-right:-20px}.sidebar-header-bleed-right .actions{margin-right:20px}.sidebar-header-bleed-right>h2{margin-right:20px}.sidebar-header-bleed-right+.list-group{margin-right:-20px}.sidebar-pf .panel-group .panel-default,.sidebar-pf .treeview{border-left:0;border-right:0;margin-left:-20px;margin-right:-20px}.sidebar-pf .treeview{margin-top:5px}.sidebar-pf .treeview .list-group-item{padding-left:20px;padding-right:20px}.sidebar-pf .treeview .list-group-item.node-selected:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:1px}}@media (min-width:768px){.sidebar-pf{background:#fafafa}.sidebar-pf.sidebar-pf-left{border-right:1px solid #d1d1d1}.sidebar-pf.sidebar-pf-right{border-left:1px solid #d1d1d1}.sidebar-pf>.nav-category,.sidebar-pf>.nav-stacked{margin-top:5px}}.skiplink-pf{position:absolute;top:12px;left:-300%;z-index:1050}.skiplink-pf:focus{left:10px}@keyframes rotation{from{transform:rotate(0)}to{transform:rotate(359deg)}}.spinner{animation:rotation .6s infinite linear;border-bottom:4px solid rgba(3,3,3,.25);border-left:4px solid rgba(3,3,3,.25);border-right:4px solid rgba(3,3,3,.25);border-radius:100%;border-top:4px solid rgba(3,3,3,.75);height:24px;margin:0 auto;position:relative;width:24px}.spinner.spinner-inline{display:inline-block;margin-right:3px}.spinner.spinner-lg{border-width:5px;height:30px;width:30px}.spinner.spinner-sm{border-width:3px;height:18px;width:18px}.spinner.spinner-xs{border-width:2px;height:12px;width:12px}.spinner.spinner-inverse{border-bottom-color:rgba(255,255,255,.25);border-left-color:rgba(255,255,255,.25);border-right-color:rgba(255,255,255,.25);border-top-color:rgba(255,255,255,.75)}.ie9 .spinner{background:url(../img/spinner.gif) no-repeat;border:0}.ie9 .spinner.spinner-inverse{background-image:url(../img/spinner-inverse.gif)}.ie9 .spinner.spinner-inverse-lg{background-image:url(../img/spinner-inverse-lg.gif)}.ie9 .spinner.spinner-inverse-sm{background-image:url(../img/spinner-inverse-sm.gif)}.ie9 .spinner.spinner-inverse-xs{background-image:url(../img/spinner-inverse-xs.gif)}.ie9 .spinner.spinner-lg{background-image:url(../img/spinner-lg.gif)}.ie9 .spinner.spinner-sm{background-image:url(../img/spinner-sm.gif)}.ie9 .spinner.spinner-xs{background-image:url(../img/spinner-xs.gif)}.prettyprint .atn,.prettyprint .com,.prettyprint .fun,.prettyprint .var{color:#3f9c35}.prettyprint .atv,.prettyprint .str{color:#a30000}.prettyprint .clo,.prettyprint .dec,.prettyprint .kwd,.prettyprint .opn,.prettyprint .pln,.prettyprint .pun{color:#363636}.prettyprint .lit,.prettyprint .tag,.prettyprint .typ{color:#00659c}.prettyprint ol.linenums{margin-bottom:0}table.dataTable{height:100%;margin-bottom:0;max-width:none!important}table.dataTable tbody>tr>td.table-view-pf-actions{padding:0;vertical-align:middle}table.dataTable tbody>tr:hover>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable tbody>tr.selected{color:#fff;background-color:#0088ce}table.dataTable tbody>tr.selected>td{border-bottom-color:#00659c}table.dataTable tbody>tr.selected>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable tbody>tr.selected:hover>td{background-color:inherit;border-bottom-color:#00659c}table.dataTable tbody>tr.selected:hover>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_desc_disabled{cursor:pointer}table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc{color:#0088ce!important;position:relative}table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after{content:"\f107";font-family:FontAwesome;font-size:10px;font-weight:400;height:9px;left:7px;line-height:12px;position:relative;top:2px;vertical-align:baseline;width:12px}table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_desc:before{background:#0088ce;content:"";height:2px;position:absolute;left:0;top:0;width:100%}table.dataTable thead .sorting_asc:after{content:"\f106";top:-3px}table.dataTable th:active{outline:0}.table-view-pf-empty.blank-slate-pf{background-color:#f5f5f5;border:1px solid #d1d1d1;border-radius:0;margin-top:-1px}.table-view-pf-toolbar.toolbar-pf{background-color:#f5f5f5;border-bottom:none;border-left:1px solid #d1d1d1;border-right:1px solid #d1d1d1;border-top:1px solid #d1d1d1;box-shadow:none;margin-left:0;margin-right:0}.table-view-pf-toolbar.toolbar-pf .toolbar-pf-results{border-top:1px solid #d1d1d1;min-height:40px;line-height:40px}.table-view-pf-toolbar-external.toolbar-pf{border-bottom:none;border-top:none;box-shadow:none}.table-view-pf-toolbar-external.toolbar-pf .toolbar-pf-results{border-top:1px solid #d1d1d1;min-height:40px;line-height:40px}.table-view-pf-colvis-menu>li{padding:5px 10px}.table-view-pf-colvis-menu>li:hover{background-color:#def3ff}.table-view-pf-colvis-menu>li>input{margin-top:0;margin-right:10px;vertical-align:middle}.table-view-pf-colvis-menu>li>label{margin-bottom:0}.table-view-pf-actions{background-color:#f1f1f1;height:100%}.table-view-pf-actions .btn,.table-view-pf-actions .dropdown-toggle{border:none;box-shadow:none;height:100%;width:100%}.table-view-pf-actions .dropdown,.table-view-pf-actions .table-view-pf-btn{height:100%}.table-view-pf-actions .dropdown-menu.dropdown-menu-right{right:-5px}.table-view-pf-actions:last-child{width:24px}.table-view-pf-select{width:33px}.table-view-pf-select-results{text-align:right}.bootstrap-datetimepicker-widget a[data-action]{border:0;box-shadow:none;color:#363636;display:block;padding-bottom:4px;padding-top:4px}.bootstrap-datetimepicker-widget a[data-action]:hover{color:#0088ce}.bootstrap-datetimepicker-widget.dropdown-menu{left:0!important;padding:0;width:calc(100% - 25px)}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:none}.bootstrap-datetimepicker-widget.dropdown-menu.top{margin-bottom:-1px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom{margin-top:-1px}.bootstrap-datetimepicker-widget .timepicker-hour{width:100%}.bootstrap-datetimepicker-widget .timepicker-hour:after{content:":";float:right}.timepicker-hours table td,.timepicker-minutes table td{font-weight:700;line-height:30px;height:30px}.timepicker-hours table td:hover,.timepicker-minutes table td:hover{color:#0088ce}.timepicker-hours .table-condensed>tbody>tr>td,.timepicker-minutes .table-condensed>tbody>tr>td{padding:0}.time-picker-pf .input-group-addon .fa,.time-picker-pf .input-group-addon .pficon{width:12px}.time-picker-pf .input-group-addon:not(.active){box-shadow:none}.timepicker-picker table td a span,.timepicker-picker table td span{height:24px;line-height:24px;margin:0;width:100%}.timepicker-picker .table-condensed>tbody>tr>td{height:25px;line-height:18px;padding:0}.timepicker-picker button[data-action]{padding-bottom:0;padding-top:0}.timepicker-picker .separator{display:none}.timepicker-picker tr:nth-child(2) td{background-color:#def3ff;border-color:#bee1f4;border-style:solid;border-width:1px;border-left:0;border-right:0}.toast-pf{background-color:#fff;border-color:#bbb;box-shadow:0 2px 6px rgba(3,3,3,.2);padding-left:68px;margin-bottom:5px}.toast-pf.alert-danger>.pficon{background-color:#c00}.toast-pf.alert-info>.pficon{background-color:#8b8d8f}.toast-pf.alert-success>.pficon{background-color:#3f9c35}.toast-pf.alert-warning>.pficon{background-color:#ec7a08}.toast-pf .dropdown-kebab-pf{margin-left:10px}.toast-pf>.pficon{background-color:#4d5258;bottom:-1px;box-shadow:2px 0 5px -2px rgba(3,3,3,.2);left:-1px;padding-top:10px;text-align:center;top:-1px;width:53px}.toast-pf>.pficon:before{color:rgba(255,255,255,.74)}.toast-pf .toast-pf-action{margin-left:15px}.toast-pf .dropdown-kebab-pf .btn-link{padding-top:0;padding-bottom:0;vertical-align:text-bottom}@media (min-width:992px){.toast-pf{display:inline-block}}@media (min-width:992px){.toast-pf-max-width{max-width:31.1%}}.toast-pf-top-right{left:20px;position:absolute;right:20px;top:12px;z-index:1055}@media (min-width:992px){.toast-pf-top-right{left:auto}}.toast-notifications-list-pf{margin-left:20px;position:fixed;right:20px;top:80px;z-index:1055}.toast-notifications-list-pf .toast-pf{clear:both;float:right}@media (min-width:768px){.toast-notifications-list-pf{max-width:calc(50%)}}@media (min-width:992px){.toast-notifications-list-pf{max-width:calc(33.1%)}}.toolbar-pf{background:#fff;border-bottom:1px solid #d1d1d1;box-shadow:0 1px 0 rgba(3,3,3,.045);padding-top:10px}.toolbar-pf .form-group{margin-bottom:10px}@media (min-width:768px){.toolbar-pf .form-group{border-right:1px solid #d1d1d1;float:left;margin-bottom:0;padding-left:20px;padding-right:20px}}.toolbar-pf .form-group:last-child{border-right:0;margin-bottom:0;padding-right:0}.toolbar-pf .form-group .btn+.btn,.toolbar-pf .form-group .btn+.btn-group,.toolbar-pf .form-group .btn-group+.btn,.toolbar-pf .form-group .btn-group+.btn-group{margin-left:5px}.toolbar-pf .form-group .btn+.btn-link,.toolbar-pf .form-group .btn+.dropdown,.toolbar-pf .form-group .btn-group+.btn-link,.toolbar-pf .form-group .btn-group+.dropdown{margin-left:10px}.toolbar-pf .form-group .btn-link{color:#252525;font-size:16px;line-height:1;padding:4px 0}.toolbar-pf .form-group .btn-link:active,.toolbar-pf .form-group .btn-link:focus,.toolbar-pf .form-group .btn-link:hover{color:#0088ce}.toolbar-pf .form-group .dropdown-kebab-pf .btn-link{padding:4px 10px;margin-left:-10px;margin-right:-10px}.toolbar-pf-actions{display:table;margin-bottom:10px;width:100%}@media (min-width:768px){.toolbar-pf-actions .toolbar-pf-filter{padding-left:0}}.toolbar-pf-view-selector{font-size:16px}.toolbar-pf-view-selector .btn-link.active{color:#0088ce;cursor:default}.toolbar-pf-action-right{float:right}@media (max-width:768px){.toolbar-pf-action-right{float:none}}.toolbar-pf-find{font-size:14px;position:relative}.find-pf-dropdown-container{background:#fff;border:solid 1px #bbb;display:none;right:-20px;padding:5px;position:absolute;top:35px;width:300px;z-index:10000}@media (max-width:768px){.find-pf-dropdown-container{left:30px;top:-5px;width:calc(100% - 30px)}}.find-pf-dropdown-container:after,.find-pf-dropdown-container:before{content:"";position:absolute}.find-pf-dropdown-container:before{border-bottom:11px solid #bbb;border-left:11px solid transparent;border-right:11px solid transparent;right:35px;top:-12px}.toolbar-pf-find:last-child .find-pf-dropdown-container:before{right:15px}@media (max-width:768px){.find-pf-dropdown-container:before{border-bottom:11px solid transparent;border-right:11px solid #bbb;border-top:11px solid transparent;left:-22px;right:initial;top:8px}}.find-pf-dropdown-container:after{border-bottom:10px solid #fff;border-left:10px solid transparent;border-right:10px solid transparent;right:36px;top:-10px}.toolbar-pf-find:last-child .find-pf-dropdown-container:after{right:16px}@media (max-width:768px){.find-pf-dropdown-container:after{border-bottom:10px solid transparent;border-right:10px solid #fff;border-top:10px solid transparent;left:-20px;right:initial;top:9px}}.find-pf-dropdown-container input{height:30px;padding:5px 117px 5px 5px;width:100%}.find-pf-dropdown-container .find-pf-buttons{position:absolute;right:10px;top:5px}.find-pf-dropdown-container .find-pf-buttons .btn{border:none;cursor:pointer;margin-left:0!important;padding:0;width:18px}.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-down,.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-up{font-weight:700;font-size:18px}.find-pf-dropdown-container .find-pf-buttons .btn .pficon-close{font-size:14px}.find-pf-dropdown-container .find-pf-buttons span{height:30px;line-height:30px;vertical-align:middle}.find-pf-dropdown-container .find-pf-buttons .find-pf-nums{color:#8b8d8f;margin-right:3px}.toolbar-pf-results{border-top:1px solid #d1d1d1;margin-top:10px}.toolbar-pf-results h5,.toolbar-pf-results p,.toolbar-pf-results ul{display:inline-block;line-height:26.66666667px;margin-bottom:0;margin-top:0}@media (min-width:768px){.toolbar-pf-results h5,.toolbar-pf-results p,.toolbar-pf-results ul{line-height:40px}}.toolbar-pf-results h5{font-weight:700;margin-right:20px}.toolbar-pf-results .label{font-size:11px}.toolbar-pf-results .label a{color:#fff;display:inline-block;margin-left:5px}.nav-pf-vertical{background:#292e34;border-right:1px solid #292e34;bottom:0;left:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;width:200px;z-index:1030}.layout-pf-fixed-with-footer .nav-pf-vertical{bottom:37px}.ie9.layout-pf-fixed .nav-pf-vertical{box-sizing:content-box}.nav-pf-vertical.hidden.show-mobile-nav{box-shadow:0 0 3px rgba(3,3,3,.15);display:block!important}.nav-pf-vertical.hide-nav-pf{visibility:hidden!important}.nav-pf-vertical .list-group{border-top:0;margin-bottom:0}.nav-pf-vertical .list-group-item{background-color:transparent;border-color:#030303;padding:0}.nav-pf-vertical .list-group-item>a{background-color:transparent;color:#d1d1d1;cursor:pointer;display:block;font-size:14px;font-weight:400;height:63px;line-height:26px;padding:17px 20px 17px 25px;position:relative;white-space:nowrap;width:200px}@supports (display:flex){.nav-pf-vertical .list-group-item>a{display:-ms-flexbox;display:flex;padding-right:0}}.nav-pf-vertical .list-group-item>a .fa,.nav-pf-vertical .list-group-item>a .glyphicon,.nav-pf-vertical .list-group-item>a .pficon{color:#72767b;float:left;font-size:20px;line-height:26px;margin-right:10px;text-align:center;width:24px}.nav-pf-vertical .list-group-item>a:hover{text-decoration:none}.nav-pf-vertical .list-group-item.active>a,.nav-pf-vertical .list-group-item:hover>a{background-color:#393f44;color:#fff;font-weight:600}.nav-pf-vertical .list-group-item.active>a .fa,.nav-pf-vertical .list-group-item.active>a .glyphicon,.nav-pf-vertical .list-group-item.active>a .pficon,.nav-pf-vertical .list-group-item:hover>a .fa,.nav-pf-vertical .list-group-item:hover>a .glyphicon,.nav-pf-vertical .list-group-item:hover>a .pficon{color:#39a5dc}.nav-pf-vertical .list-group-item.active>a:before{background:#39a5dc;content:" ";height:100%;left:0;position:absolute;top:0;width:3px}.nav-pf-vertical .list-group-item.active:hover{background-color:transparent;border-color:#030303}.nav-pf-vertical .list-group-item .list-group-item-value{display:block;line-height:25px;max-width:120px;overflow:hidden;text-overflow:ellipsis}@supports (display:flex){.nav-pf-vertical .list-group-item .list-group-item-value{-ms-flex:1;flex:1;max-width:none;padding-right:15px}}.nav-pf-vertical .list-group-item-separator{border-top-color:#030303;border-top-width:2px}.nav-pf-vertical.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-vertical-with-badges .list-group-item>a{width:250px}.nav-pf-vertical h5{color:#fff;cursor:default;font-size:13px;font-weight:600;margin:30px 20px 10px 20px}.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .fa,.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .glyphicon,.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .pficon{display:none}.nav-pf-vertical.hidden-icons-pf.collapsed{display:none}.nav-pf-vertical .badge-container-pf{position:absolute;right:15px;top:20px}@supports (display:flex){.nav-pf-vertical .badge-container-pf{padding-left:0;padding-right:15px;position:relative;right:0;margin-top:-3px;top:5px}}.nav-pf-vertical .badge-container-pf .badge{background:#292e34;color:#fff;float:left;font-size:12px;font-weight:700;line-height:1.66666667;margin:0;padding:0 7px;text-align:center}.nav-pf-vertical .badge-container-pf .badge .fa,.nav-pf-vertical .badge-container-pf .badge .pficon{font-size:14px;height:20px;line-height:1.66666667;margin-right:3px;margin-top:-1px}.nav-pf-vertical-tooltip.tooltip{margin-left:15px}.nav-pf-vertical-tooltip.tooltip .tooltip-inner{background-color:#fff;color:#292e34}.nav-pf-vertical-tooltip.tooltip .tooltip-arrow{border-bottom-color:#fff;left:calc(50% - 15px)!important}.hover-secondary-nav-pf{width:calc(200px * 2)}.hover-secondary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.hover-tertiary-nav-pf{width:calc(200px * 3)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 3)}.hover-tertiary-nav-pf .nav-pf-secondary-nav{width:calc(200px * 2)}.hover-tertiary-nav-pf .nav-pf-secondary-nav .collapsed-tertiary-nav-pf{width:200px}.hover-tertiary-nav-pf .nav-pf-tertiary-nav{left:calc(200px * 2)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav{width:calc(250px * 2)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav .collapsed-tertiary-nav-pf{width:250px}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:calc(250px * 2)}.nav-pf-vertical.collapsed{width:75px}.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed.hover-secondary-nav-pf{width:calc(75px + 200px)}.nav-pf-vertical.collapsed.hover-secondary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + 250px)}.nav-pf-vertical.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.nav-pf-vertical.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + (250px * 2))}.show-mobile-nav.show-mobile-secondary{width:200px}.show-mobile-nav.show-mobile-secondary.nav-pf-vertical-with-badges{width:250px}.show-mobile-nav.show-mobile-tertiary{width:200px}.show-mobile-nav.show-mobile-tertiary.nav-pf-vertical-with-badges{width:250px}.show-mobile-nav .mobile-nav-item-pf .nav-pf-secondary-nav,.show-mobile-nav .mobile-secondary-item-pf .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible;z-index:1034}.show-mobile-nav .mobile-nav-item-pf>.nav-pf-tertiary-nav,.show-mobile-nav .mobile-secondary-item-pf>.nav-pf-tertiary-nav{left:0;opacity:1;visibility:visible;z-index:1038}.show-mobile-nav .nav-pf-secondary-nav{left:0}.secondary-nav-item-pf:hover .show-mobile-nav .nav-pf-secondary-nav{opacity:0;visibility:hidden}.show-mobile-nav .tertiary-nav-item-pf:hover .nav-pf-tertiary-nav{opacity:0;visibility:hidden}.show-mobile-nav .tertiary-nav-item-pf.mobile-nav-item-pf:hover .nav-pf-tertiary-nav{opacity:1;visibility:visible}.secondary-nav-item-pf>a{cursor:default}.secondary-nav-item-pf>a:after{color:#72767b;content:"\f105";display:block;font-family:FontAwesome;font-size:24px;line-height:30px;padding:14px 0;position:absolute;right:20px;top:0}@supports (display:flex){.secondary-nav-item-pf>a .list-group-item-value{padding-right:35px}}.secondary-nav-item-pf.active>a,.secondary-nav-item-pf:hover>a{width:calc(200px + 1px);z-index:1031}.secondary-nav-item-pf.active>a:after,.secondary-nav-item-pf:hover>a:after{right:21px}.collapsed-secondary-nav-pf .secondary-nav-item-pf.active>a,.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover>a{z-index:0}.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active>a,.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover>a{z-index:0}.nav-pf-vertical-with-badges .secondary-nav-item-pf.active>a,.nav-pf-vertical-with-badges .secondary-nav-item-pf:hover>a{width:calc(250px + 1px)}.nav-pf-vertical.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.hover>a{z-index:1030}.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-secondary-nav{left:0}.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav{width:200px}.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.hover>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.hover>a{z-index:0}@media (min-width:1200px){.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf{width:calc(200px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf{width:calc(200px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed{width:calc(75px + 200px)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + (250px * 2))}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf{width:calc(200px * 3)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 3)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{visibility:visible;opacity:1}}.nav-item-pf-header{color:#fff;font-size:16px;margin:18px 20px 10px 20px}.nav-item-pf-header>a{cursor:pointer;margin-right:7px}.nav-item-pf-header>a:focus,.nav-item-pf-header>a:hover{color:#0088ce;text-decoration:none}.nav-pf-vertical.collapsed{width:75px}.nav-pf-vertical.collapsed .list-group-item>a{width:75px}.nav-pf-vertical.collapsed .list-group-item>a>.list-group-item-value{display:none}.nav-pf-vertical.collapsed .list-group-item>a>.badge-container-pf{display:none}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf>a{width:75px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a:after,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf>a:after{right:10px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover>a{width:77px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a:after,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover>a:after{right:11px}.nav-pf-secondary-nav{background:#393f44;border:1px solid #292e34;border-bottom:none;border-top:none;bottom:0;display:block;left:200px;opacity:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;visibility:hidden;width:200px;z-index:1030}.collapsed-secondary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible;z-index:1032}.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible}.hover-secondary-nav-pf .secondary-nav-item-pf.is-hover .nav-pf-secondary-nav{opacity:1;visibility:visible}.ie9.layout-pf-fixed .nav-pf-secondary-nav{box-sizing:content-box}.layout-pf-fixed-with-footer .nav-pf-secondary-nav{bottom:37px}.nav-pf-secondary-nav .list-group-item{border:none;padding:0 0 5px 0;width:200px}.nav-pf-secondary-nav .list-group-item>a{background-color:#393f44;color:#d1d1d1;font-size:12px;font-weight:inherit;height:inherit;padding:4px 0 2px 0;margin-left:20px;width:calc(200px - 20px)}.nav-pf-secondary-nav .list-group-item>a:hover .list-group-item-value{text-decoration:underline}.nav-pf-secondary-nav .list-group-item.active>a:before{display:none}.nav-pf-secondary-nav .list-group-item.active>a,.nav-pf-secondary-nav .list-group-item:hover>a{background-color:#4d5258;color:#fff}.nav-pf-secondary-nav .list-group-item .badge-container-pf{top:5px}.nav-pf-secondary-nav .list-group-item .badge-container-pf .badge{background:#292e34;color:#fff}.nav-pf-secondary-nav .list-group-item .list-group-item-value{padding-left:5px}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a{cursor:default}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a:after{color:#72767b;content:"\f105";display:block;font-family:FontAwesome;font-size:20px;line-height:20px;padding:0;position:absolute;right:20px;top:4px}@supports (display:flex){.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a .list-group-item-value{padding-right:35px}}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a,.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a{width:calc(200px - 19px);z-index:1033}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a:after,.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a:after{right:21px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav{left:250px;width:250px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item{width:250px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item>a{width:calc(250px - 20px)}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a,.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a{width:calc(250px - 19px)}.nav-pf-tertiary-nav{background:#4d5258;border:1px solid #292e34;border-bottom:none;border-top:none;bottom:0;display:block;left:calc(200px * 2);opacity:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;visibility:hidden;width:200px;z-index:1030}.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:250px;width:250px}.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .show-mobile-nav{left:0}.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active .nav-pf-tertiary-nav{left:0;opacity:1;visibility:visible;z-index:1033}.hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav{opacity:1;visibility:visible}.collapsed.collapsed-tertiary-nav-pf .hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav{left:0}.ie9.layout-pf-fixed .nav-pf-tertiary-nav{box-sizing:content-box}.layout-pf-fixed-with-footer .nav-pf-tertiary-nav{bottom:37px}.nav-pf-tertiary-nav .nav-item-pf-header{color:#fff;margin:18px 20px 10px 20px}.nav-pf-tertiary-nav h5{color:#fff;margin:30px 20px 10px 20px}.nav-pf-tertiary-nav .list-group-item{border:none;padding:0 0 5px 0}.nav-pf-tertiary-nav .list-group-item>a{background-color:transparent;color:#d1d1d1;font-size:12px;font-weight:inherit;height:inherit;margin:0 20px 0 20px;padding:4px 0 2px 0}.nav-pf-tertiary-nav .list-group-item.active>a:before{display:none}.nav-pf-tertiary-nav .list-group-item.active>a,.nav-pf-tertiary-nav .list-group-item:hover>a{background-color:#393f44;color:#fff}.nav-pf-tertiary-nav .list-group-item .badge-container-pf{top:5px}.nav-pf-tertiary-nav .list-group-item .badge-container-pf .badge{background:#292e34;color:#fff}.nav-pf-tertiary-nav .list-group-item .list-group-item-value{padding-left:5px}.collapsed .nav-pf-secondary-nav{left:75px}.collapsed .nav-pf-secondary-nav .list-group-item>a{width:calc(200px - 20px)}.collapsed .nav-pf-secondary-nav .list-group-item>a>.list-group-item-value{display:inline-block}.collapsed .nav-pf-secondary-nav .list-group-item>a>.badge-container-pf{display:inline-block}.collapsed .nav-pf-tertiary-nav{left:calc(75px + 200px)}.collapsed .nav-pf-tertiary-nav .list-group-item>a{width:calc(200px - 20px)}.collapsed .nav-pf-tertiary-nav .list-group-item>a>.list-group-item-value{display:inline-block}.collapsed .nav-pf-tertiary-nav .list-group-item>a>.badge-container-pf{display:inline-block}.collapsed.collapsed-secondary-nav-pf,.collapsed.collapsed-tertiary-nav-pf{width:200px}.collapsed.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover>a,.collapsed.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover>a{z-index:1030}.collapsed.collapsed-secondary-nav-pf .nav-pf-secondary-nav,.collapsed.collapsed-tertiary-nav-pf .nav-pf-secondary-nav{left:0}.collapsed.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:200px}.collapsed.collapsed-tertiary-nav-pf .nav-pf-tertiary-nav{left:0}.collapsed.hover-secondary-nav-pf{width:calc(75px + 200px)}.collapsed.hover-secondary-nav-pf.collapsed-secondary-nav-pf,.collapsed.hover-secondary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.collapsed.hover-tertiary-nav-pf.collapsed-secondary-nav-pf{width:calc(200px * 2)}.collapsed.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.collapsed.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item>a{width:calc(250px - 20px)}.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:calc(75px + 250px)}.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .list-group-item>a{width:calc(250px - 20px)}.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf,.collapsed.nav-pf-vertical-with-badges.collapsed-tertiary-nav-pf{width:250px}.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:250px}.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf{width:calc(75px + 250px)}.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-secondary-nav-pf,.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-tertiary-nav-pf{width:250px}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-secondary-nav-pf{width:calc(200px * 2)}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.secondary-collapse-toggle-pf{display:none;font-family:FontAwesome;font-size:inherit;opacity:0;pointer-events:none;-webkit-font-smoothing:antialiased}.secondary-collapse-toggle-pf:before{content:"\f190"}.secondary-collapse-toggle-pf.collapsed:before{content:"\f18e"}.tertiary-collapse-toggle-pf{display:none;font-family:FontAwesome;font-size:inherit;opacity:0;pointer-events:none;-webkit-font-smoothing:antialiased}.tertiary-collapse-toggle-pf:before{content:"\f190"}.tertiary-collapse-toggle-pf.collapsed:before{content:"\f18e"}.nav-pf-vertical-collapsible-menus .secondary-collapse-toggle-pf{display:inline-block}.nav-pf-vertical-collapsible-menus .secondary-nav-item-pf.active .secondary-collapse-toggle-pf{opacity:1;pointer-events:all}.nav-pf-vertical-collapsible-menus .tertiary-collapse-toggle-pf{display:inline-block}.nav-pf-vertical-collapsible-menus .tertiary-nav-item-pf.active .tertiary-collapse-toggle-pf{opacity:1;pointer-events:all}.show-mobile-nav .secondary-collapse-toggle-pf{display:inline-block;opacity:1;pointer-events:all}.show-mobile-nav .secondary-collapse-toggle-pf:before{content:"\f190"}.show-mobile-nav .tertiary-collapse-toggle-pf{display:inline-block;opacity:1;pointer-events:all}.show-mobile-nav .tertiary-collapse-toggle-pf:before{content:"\f190"}.force-hide-secondary-nav-pf .nav-pf-secondary-nav{display:none!important}.force-hide-secondary-nav-pf .nav-pf-tertiary-nav{display:none!important}.nav-pf-vertical.transitions{transition:width .1s}.nav-pf-vertical.transitions .nav-pf-secondary-nav{transition:visibility .1s,opacity .1s linear}.nav-pf-vertical.transitions .nav-pf-tertiary-nav{transition:visibility .1s,opacity .1s linear}.wizard-pf{padding:10px;margin:0 auto;max-height:900px;width:auto}.wizard-pf .modal-content{min-height:100%}.wizard-pf-body{background:#fff;padding:0;position:static}.wizard-pf-sidebar{background:#fafafa;border-right:1px solid #d1d1d1;display:none}@media (min-width:768px){.wizard-pf-sidebar{display:inherit;-ms-flex:0 0 auto;flex:0 0 auto;overflow-x:hidden;overflow-y:auto}.wizard-pf-sidebar .list-group{border-top:0;margin-bottom:0}.wizard-pf-sidebar .list-group-item{background-color:transparent;border-color:#ededed;padding:0}.wizard-pf-sidebar .list-group-item>a{color:#030303;cursor:pointer;display:block;font-size:14px;font-weight:700;height:50px;outline:0;padding-top:11px;padding-left:20px;position:relative;white-space:nowrap;width:14em}.wizard-pf-sidebar .list-group-item>a:hover{text-decoration:none;background-color:#ededed}.wizard-pf-sidebar .list-group-item>a:focus{text-decoration:none}.wizard-pf-sidebar .list-group-item>a:focus span{text-decoration:underline}.wizard-pf-sidebar .list-group-item.active{background-color:#ededed}.wizard-pf-sidebar .list-group-item.active:hover{border-color:#ededed}.wizard-pf-sidebar .list-group-item.active>a{color:#39a5dc;cursor:default}.wizard-pf-sidebar .list-group-item.active>a:before{content:" ";background:#39a5dc;height:100%;left:0;position:absolute;top:0;width:3px}.wizard-pf-sidebar .list-group-item.active>a:after{color:#39a5dc;content:"\f105";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;line-height:30px;padding-top:10px;position:absolute;right:23px;top:0}}.wizard-pf-substep-number{display:inline-block;margin-right:5px;vertical-align:middle;width:25px}.wizard-pf-substep-title{display:inline-block;margin-right:5px;text-align:left;vertical-align:middle}.wizard-pf-steps{border-bottom:solid 1px #d1d1d1}@media (min-width:768px){.wizard-pf-steps{text-align:center}}.wizard-pf-steps-indicator{background:#ededed;border-top:1px solid #d1d1d1;display:inline-block;display:-ms-flexbox;display:flex;font-size:16px;list-style:none;margin-bottom:0;padding:15px 0}@media (min-width:768px){.wizard-pf-steps-indicator{background:#fff;height:120px;padding:38px 0 0;-ms-flex-pack:distribute;justify-content:space-around}}.wizard-pf-steps-indicator li{counter-increment:section;float:left;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0;line-height:15px;margin:0;padding:0;position:relative;text-align:center}.wizard-pf-steps-indicator li:not(.active){display:none}@media (min-width:768px){.wizard-pf-steps-indicator li:not(.active){display:block}}.wizard-pf-steps-indicator li a{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;font-weight:700}@media (min-width:768px){.wizard-pf-steps-indicator li a{font-weight:400;-ms-flex-pack:center;justify-content:center}}.wizard-pf-steps-indicator li a .wizard-pf-step-title{margin-left:10px}@media (min-width:768px){.wizard-pf-steps-indicator li a .wizard-pf-step-title{margin-left:0}}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep{font-weight:400;margin-left:10px;text-transform:capitalize}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:before{content:"\00BB";font-size:20px;margin-right:10px}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:not(.active){display:none}@media (min-width:768px){.wizard-pf-steps-indicator li .wizard-pf-step-title-substep{display:none}.wizard-pf-steps-indicator li:before{background-color:#bbb;content:"";height:2px;left:0;position:absolute;right:0;top:40px}.wizard-pf-steps-indicator li:first-child:before{left:50%;right:0}.wizard-pf-steps-indicator li:last-child:before{left:0;right:50%}.wizard-pf-steps-indicator li:only-of-type:before{background-color:transparent}}.wizard-pf-steps-indicator li a{color:#030303;cursor:pointer;font-size:16px;margin-left:1em;margin-right:1em;text-decoration:none}.wizard-pf-steps-indicator li a:hover .wizard-pf-step-number{background-color:#bbb;border-color:#bbb;color:#fff}.wizard-pf-steps-indicator .wizard-pf-step-number{background-color:#fff;border-radius:50%;border:solid 2px #bbb;color:#bbb;font-size:12px;font-weight:700;height:25px;line-height:22px;width:25px}@media (min-width:768px){.wizard-pf-steps-indicator .wizard-pf-step-number{left:calc(50% - 13px);position:absolute;top:27px}}.wizard-pf-steps-indicator .active .wizard-pf-step-number{background-color:#39a5dc;border-color:#39a5dc;cursor:default;color:#fff}.wizard-pf-steps-indicator .viewed-pf .wizard-pf-step-number{color:#030303;background-color:#fff;border-color:#39a5dc}.wizard-pf-main{height:100%;padding:1em;vertical-align:top;width:100%}@media (min-width:768px){.wizard-pf-main{overflow:auto;padding:3em;-ms-flex:1 1 auto;flex:1 1 auto}}.wizard-pf-main .blank-slate-pf{background-color:transparent;border:none;left:0;right:0}.wizard-pf-contents textarea{resize:vertical}.wizard-pf-review-steps{list-style:none}.wizard-pf-review-steps .list-group,.wizard-pf-review-steps .list-group-item{border:none;margin-bottom:0}.wizard-pf-review-steps>ul>li{float:left;line-height:15px;margin:0;padding-top:0;position:relative;width:100%}.wizard-pf-review-steps>ul>li>a{color:#030303;cursor:pointer;font-size:16px;padding-left:30px;padding-right:5px;text-decoration:none;transition:250ms}.wizard-pf-review-steps>ul>li>a:before{content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;left:20px;position:absolute;top:0}.wizard-pf-review-steps>ul>li>a.collapsed:before{content:"\f105"}.wizard-pf-review-substeps{padding-left:22px}.wizard-pf-review-substeps>ul>li{float:left;line-height:15px;margin:0;position:relative;width:100%}.wizard-pf-review-substeps>ul>li a{color:#030303;cursor:pointer;font-size:16px;padding-left:30px;padding-right:5px;text-decoration:none;transition:250ms}.wizard-pf-review-substeps>ul>li a:before{content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;left:20px;position:absolute;top:10px}.wizard-pf-review-substeps>ul>li a.collapsed:before{content:"\f105"}.wizard-pf-review-content{padding-top:10px;padding-left:40px}.wizard-pf-review-content .wizard-pf-review-item{padding:5px 0}.wizard-pf-review-content .wizard-pf-review-item.sub-item{margin-left:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-label{font-weight:700;padding-right:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field{font-weight:700;margin:5px 0;padding-right:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:first-of-type{margin-top:0}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:last-of-type{margin-bottom:0}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field.sub-field{margin-left:10px}.wizard-pf-success-icon{color:#3f9c35;font-size:67.2px;line-height:67.2px}.wizard-pf-footer{background:#fff;border-top:1px solid #d1d1d1;margin-top:0;padding-bottom:17px}.wizard-pf-footer .btn-cancel{margin-right:25px}@media (min-width:768px){.wizard-pf-row{display:-ms-flexbox;display:flex;width:100%;height:900px;max-height:65vh}}@media (min-width:992px){.wizard-pf{padding:30px 0;width:900px}.wizard-pf-sidebar .list-group-item>a{width:18em}}.wizard-pf-steps-alt,.wizard-pf-steps-alt ul{list-style:none;margin:0;padding:0}.wizard-pf-steps-alt{margin-left:15px;margin-top:15px;background-image:linear-gradient(to right,transparent 11px,#d1d1d1 11px,#d1d1d1 13px,transparent 13px)}@media (min-width:768px){.wizard-pf-steps-alt{display:none}}.wizard-pf-steps-alt-indicator{position:relative}.wizard-pf-steps-alt-indicator:after{color:#4d5258;content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;position:absolute;right:17px;top:50%;-ms-transform:translateY(-50%);transform:translateY(-50%)}@media (min-width:768px){.wizard-pf-steps-alt-indicator:after{display:none}}.wizard-pf-steps-alt-indicator.active:after{content:"\f106"}.wizard-pf-step-alt{margin-bottom:10px}.wizard-pf-step-alt a{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1}.wizard-pf-step-alt a:hover{text-decoration:none}.wizard-pf-step-alt a:hover .wizard-pf-step-alt-title{color:#39a5dc}.wizard-pf-step-alt ul{margin-left:11px}.wizard-pf-step-alt .wizard-pf-step-alt-title{margin-left:5px;-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.wizard-pf-step-alt .wizard-pf-step-alt-number{-ms-flex:0 0 auto;flex:0 0 auto}.wizard-pf-step-alt.active .wizard-pf-step-alt-number{background-color:#39a5dc;border-color:#39a5dc;cursor:default;color:#fff}.wizard-pf-step-alt.active .wizard-pf-step-alt-title{color:#39a5dc}.wizard-pf-step-alt.active .wizard-pf-step-alt-substep:first-of-type{margin-top:2px}.wizard-pf-step-alt.viewed .wizard-pf-step-alt-number{color:#030303;background-color:#fff;border-color:#39a5dc}.wizard-pf-step-alt-number{background-color:#fff;border-radius:50%;border:solid 2px #bbb;color:#bbb;font-size:12px;font-weight:700;height:24px;width:24px;display:inline-block;text-align:center}.wizard-pf-step-alt-title{color:#030303;font-weight:700;text-transform:capitalize;display:inline-block}.wizard-pf-step-alt-substep{display:-ms-flexbox;display:flex}.wizard-pf-step-alt-substep a{padding:5px 0 5px 18px;color:#393f44}.wizard-pf-step-alt-substep:not(.disabled).active,.wizard-pf-step-alt-substep:not(.disabled):hover{background-color:#ededed;background-image:linear-gradient(to right,#39a5dc 2px,transparent 2px)}.wizard-pf-step-alt-substep:not(.disabled).active a,.wizard-pf-step-alt-substep:not(.disabled):hover a{color:#39a5dc}.wizard-pf-step-alt-substep.active a{font-weight:700}.wizard-pf-step-alt-substep.disabled{cursor:not-allowed}.wizard-pf-step-alt-substep.disabled a{pointer-events:none}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/patternfly/dist/css/patternfly-additions.min.css.map b/themes/src/main/node_modules/patternfly/dist/css/patternfly-additions.min.css.map
index 04010a4..84bf866 100644
--- a/themes/src/main/node_modules/patternfly/dist/css/patternfly-additions.min.css.map
+++ b/themes/src/main/node_modules/patternfly/dist/css/patternfly-additions.min.css.map
@@ -1 +1 @@
-{"version":3,"sources":["node_modules/bootstrap-slider/src/less/rules.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","node_modules/patternfly-bootstrap-combobox/less/combobox.less","node_modules/bootstrap-datepicker/less/datepicker3.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap-select/less/bootstrap-select.less","node_modules/bootstrap-switch/src/less/bootstrap3/bootstrap-switch.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap-touchspin/dist/jquery.bootstrap-touchspin.css","node_modules/c3/c3.css","tests/build/less/patternfly-additions.css","node_modules/eonasdan-bootstrap-datetimepicker/src/less/_bootstrap-datetimepicker.less","node_modules/eonasdan-bootstrap-datetimepicker/src/less/bootstrap-datetimepicker-build.less","src/less/mixins.less","src/less/about-modal.less","src/less/application-launcher.less","src/less/blank-slate.less","src/less/bootstrap-combobox.less","src/less/variables.less","src/less/bootstrap-datepicker.less","src/less/bootstrap-mixin-overrides.less","src/less/bootstrap-select.less","src/less/bootstrap-slider.less","src/less/bootstrap-switch.less","src/less/bootstrap-touchspin.less","src/less/bootstrap-treeview.less","src/less/cards.less","src/less/card-view.less","src/less/charts.less","src/less/close.less","src/less/datatables.less","src/less/experimental-features.less","src/less/filter.less","src/less/footer.less","src/less/icons.less","src/less/infotip.less","src/less/layouts.less","src/less/links.less","src/less/list-pf.less","src/less/list-view.less","node_modules/bootstrap/less/mixins/clearfix.less","src/less/list-view-dnd.less","src/less/login.less","src/less/navbar.less","node_modules/font-awesome/less/variables.less","src/less/navbar-alt.less","src/less/navbar-vertical.less","src/less/nav-vertical-alt.less","src/less/notifications-drawer.less","src/less/search.less","src/less/sidebar.less","src/less/skip-to-content.less","src/less/spinner.less","src/less/syntax-highlighting.less","src/less/table-view.less","src/less/time-picker.less","src/less/toast.less","src/less/toolbar.less","src/less/vertical-nav.less","src/less/wizard.less"],"names":[],"mappings":"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iIkE,QgB/HhD,oBAClB,QhB+HkE,QgB7H/C,qBACnB,QhB6HkE,QgB3HtC,8BAC5B,QhB2HkE,QgBzHxC,4BAC1B,QhByHkE,QgBvH7C,uBACrB,QhBuHkE,QgBrH3C,yBACvB,QhBqHkE,QgBnHtC,8BAC5B,QhBmHkE,QgBjHjD,mBACjB,QhBiHkE,QgB/G5C,wBACtB,QhB+GkE,QgB7G9C,sBACpB,QhB6GkE,QgB3GxC,4BAC1B,QhB2GkE,QgBzG9C,sBACpB,QhByGkE,QgBvGhD,oBAClB,QhBuGkE,QgBrGzC,2BACzB,QhBqGkE,QgBnG1C,0BACxB,QhBmGkE,QgBjG3C,yBACvB,QhBiGkE,QgB/FtC,8BAC5B,MAAA,KACA,QhB8FkE,QgB5F9C,sBACpB,QhB4FkE,QgB1FhD,oBACI,wBACtB,QhByFkE,QgBvF9C,sBACpB,QhBuFkE,QgBrF9C,sBACpB,QhBqFkE,QgBnFxC,4BAC1B,QhBmFkE,QgBjFzC,2BACzB,QhBiFkE,QgB/EhD,oBAClB,QhB+EkE,QgB7E7C,uBACrB,QhB6EkE,QgB3EhD,oBAClB,QhB2EkE,QgBzE/C,qBACnB,QhByEkE,QgBvE9C,sBACpB,QhBuEkE,QgBrEzC,2BACzB,QhBwEkE,QgBtEhD,oBAClB,QhBkEkE,QgBhEtC,8BAC5B,QhBgEkE,QgB9DzC,2BACzB,QhB8DkE,QgB5DjD,mBACjB,QhB6DkE,QgB3D9C,sBACpB,QhB4DkE,QgB1DzC,2BACzB,QhB0DkE,QgBxD9C,sBACpB,QhBwDkE,QgBtD1C,0BACxB,QhBuDkE,QgBrD3C,yBACvB,QhBqDkE,QgBnD1C,0BACxB,QhBmDkE,QgBjD7C,uBACrB,QhBiDkE,QgB/ClD,kBAChB,QhBiDkE,QgB/C1C,0BACxB,QhB+CkE,QgB7C5C,wBACtB,QhB8CkE,QgB5C9C,sBACpB,QhB4CkE,QgB1CjD,mBACjB,QhBmCkE,QgBjClD,kBAChB,MAAA,QACA,QhBgCkE,QgB9B9C,sBACpB,QhBmCkE,QgBjC7C,uBACrB,QhBiCkE,QgB/B7C,uBACrB,QhB+BkE,QgB7BhD,oBAClB,QhB6BkE,QgB3B/C,qBACnB,QhB4BkE,QgB1BlC,kCAChC,QhB0BkE,QgBxB7C,uBACrB,QhBqBkE,QgBnB7C,uBACrB,QhBqBkE,QgBnB3C,yBACvB,QhBmBkE,QgBjB3C,yBACvB,QhBiBkE,QgBf7C,uBACA,uBACrB,QhBuBkE,QgBrB7C,uBACrB,QhBWkE,QgBT5C,wBACtB,QhBSkE,QgBP9C,sBACpB,QhBOkE,QgBL1C,0BACxB,QhBKkE,QgBH1C,0BACxB,QhBGkE,QgBDvC,6BAC3B,QhBCkE,QgBC9B,sCACpC,QhBDkE,QgBG/B,qCACnC,QhBHkE,QgBKtC,8BAC5B,QhBLkE,QgBO/C,qBACnB,QhBNkE,QgBQ7C,uBACrB,QhBRkE,QgBUhD,oBAClB,QhBVkE,QgBY9C,sBACpB,QhBZkE,QgBc9C,sBACpB,QhBdkE,QgBgB5C,wBACtB,QhBhBkE,QgBkB9C,sBACpB,QhBlBkE,QgBoBxC,4BAC1B,QhBpBkE,QgBsB7C,uBACrB,QhBtBkE,QgBwB5C,wBACtB,QhBvBkE,QgByBrC,+BAC7B,QhB3BkE,QgB6B5C,wBACtB,QhB5BkE,QgB8B7C,uBACrB,QhB9BkE,QgBgC5C,wBACtB,QhBhCkE,QgBkCtC,8BAC5B,QhBlCkE,QgBoC9C,sBACpB,QhBpCkE,QgBsCxC,4BAC1B,QhBtCkE,QgBwC5C,wBACtB,QhBxCkE,QgB0C1C,0BACxB,QhB1CkE,QgB4C5C,wBACtB,QhB5CkE,QgB8C7C,uBACrB,QhB5CkE,QgB8ChD,oBAClB,QhB9CkE,QgBgD/C,qBACnB,QhBhDkE,QgBkD5C,wBACtB,QhBvDkE,QgByD3C,yBACvB,QhBzDkE,QgB2DrC,+BAC7B,QhBxDkE,QgB0D9C,sBACpB,QhB1DkE,QgB4DlC,kCAChC,MAAA,QACA,QhB7DkE,QgB+DhD,oBAClB,QhB/DkE,QiBxRnC,sCAC/B,iBAAA,cACA,WAAA,KAI6C,yBACF,oDACzC,iBAAA,eACA,WAAA,GAKJ,SACE,UAAA,MACA,QAAA,EACA,qBACE,WAAA,EACA,OAAA,EACA,QAAA,IAAA,EACA,sCACE,OAAA,KACA,OAAA,EAAA,KAAA,EAAA,KACA,QAAA,IAAA,EACA,yCA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"}
\ No newline at end of file
+{"version":3,"sources":["node_modules/bootstrap-slider/src/less/rules.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","node_modules/patternfly-bootstrap-combobox/less/combobox.less","node_modules/bootstrap-datepicker/less/datepicker3.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap-select/less/bootstrap-select.less","node_modules/bootstrap-switch/src/less/bootstrap3/bootstrap-switch.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap-touchspin/dist/jquery.bootstrap-touchspin.css","node_modules/c3/c3.css","tests/build/less/patternfly-additions.css","node_modules/eonasdan-bootstrap-datetimepicker/src/less/_bootstrap-datetimepicker.less","node_modules/eonasdan-bootstrap-datetimepicker/src/less/bootstrap-datetimepicker-build.less","src/less/mixins.less","src/less/about-modal.less","src/less/application-launcher.less","src/less/blank-slate.less","src/less/bootstrap-combobox.less","src/less/variables.less","src/less/bootstrap-datepicker.less","src/less/bootstrap-mixin-overrides.less","src/less/bootstrap-select.less","src/less/bootstrap-slider.less","src/less/bootstrap-switch.less","src/less/bootstrap-touchspin.less","src/less/bootstrap-treeview.less","src/less/cards.less","src/less/card-view.less","src/less/charts.less","src/less/close.less","src/less/context-selector.less","src/less/datatables.less","src/less/experimental-features.less","src/less/filter.less","src/less/footer.less","src/less/icons.less","src/less/infotip.less","src/less/layouts.less","src/less/links.less","src/less/list-pf.less","src/less/list-view.less","node_modules/bootstrap/less/mixins/clearfix.less","src/less/list-view-dnd.less","src/less/login.less","src/less/navbar.less","node_modules/font-awesome/less/variables.less","src/less/navbar-alt.less","src/less/navbar-vertical.less","src/less/nav-vertical-alt.less","src/less/notifications-drawer.less","src/less/search.less","src/less/sidebar.less","src/less/skip-to-content.less","src/less/spinner.less","src/less/syntax-highlighting.less","src/less/table-view.less","src/less/time-picker.less","src/less/toast.less","src/less/toolbar.less","src/less/vertical-nav.less","src/less/wizard.less"],"names":[],"mappings":"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,QiBtEzC,2BACzB,QjBsEkE,QiBpEjD,mBACjB,QjBqEkE,QiBnE9C,sBACpB,QjBoEkE,QiBlEzC,2BACzB,QjBkEkE,QiBhE9C,sBACpB,QjBgEkE,QiB9D1C,0BACxB,QjB+DkE,QiB7D3C,yBACvB,QjB6DkE,QiB3D1C,0BACxB,QjB2DkE,QiBzD7C,uBACrB,QjByDkE,QiBvDvC,6BAC3B,QjBuDkE,QiBrDlD,kBAChB,QjBuDkE,QiBrD1C,0BACxB,QjBqDkE,QiBnD5C,wBACtB,QjBoDkE,QiBlD9C,sBACpB,QjBkDkE,QiBhDjD,mBACjB,QjByCkE,QiBvClD,kBAChB,MAAA,QACA,QjBsCkE,QiBpC9C,sBACpB,QjByCkE,QiBvC7C,uBACrB,QjBuCkE,QiBrC7C,uBACrB,QjBqCkE,QiBnChD,oBAClB,QjBmCkE,QiBjC/C,qBACnB,QjBkCkE,QiBhClC,kCAChC,QjBgCkE,QiB9B7C,uBACrB,QjB2BkE,QiBzB7C,uBACrB,QjB2BkE,QiBzB3C,yBACvB,QjByBkE,QiBvB3C,yBACvB,QjBuBkE,QiBrB7C,uBACA,uBACrB,QjB6BkE,QiB3B7C,uBACrB,QjBiBkE,QiBf5C,wBACtB,QjBekE,QiBb9C,sBACpB,QjBakE,QiBX1C,0BACxB,QjBWkE,QiBT1C,0BACxB,QjBSkE,QiBPvC,6BAC3B,QjBOkE,QiBL9B,sCACpC,QjBKkE,QiBH/B,qCACnC,QjBGkE,QiBDtC,8BAC5B,QjBCkE,QiBC/C,qBACnB,QjBAkE,QiBE7C,uBACrB,QjBFkE,QiBI3C,yBACvB,QjBHkE,QiBKhD,oBAClB,QjBPkE,QiBS9C,sBACpB,QjBRkE,QiBU9C,sBACpB,QjBVkE,QiBY5C,wBACtB,QjBZkE,QiBc9C,sBACpB,QjBdkE,QiBgBxC,4BAC1B,QjBhBkE,QiBkB7C,uBACrB,QjBlBkE,QiBoB5C,wBACtB,QjBnBkE,QiBqBrC,+BAC7B,QjBvBkE,QiByB5C,wBACtB,QjBxBkE,QiB0B7C,uBACrB,QjB1BkE,QiB4B5C,wBACtB,QjB5BkE,QiB8BtC,8BAC5B,QjB9BkE,QiBgC5C,wBACtB,QjBh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"}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/patternfly/dist/fonts/PatternFlyIcons-webfont.eot b/themes/src/main/node_modules/patternfly/dist/fonts/PatternFlyIcons-webfont.eot
index e58edec..041cf19 100644
Binary files a/themes/src/main/node_modules/patternfly/dist/fonts/PatternFlyIcons-webfont.eot and b/themes/src/main/node_modules/patternfly/dist/fonts/PatternFlyIcons-webfont.eot differ
diff --git a/themes/src/main/node_modules/patternfly/dist/fonts/PatternFlyIcons-webfont.svg b/themes/src/main/node_modules/patternfly/dist/fonts/PatternFlyIcons-webfont.svg
index f929b9d..9a9dd49 100644
--- a/themes/src/main/node_modules/patternfly/dist/fonts/PatternFlyIcons-webfont.svg
+++ b/themes/src/main/node_modules/patternfly/dist/fonts/PatternFlyIcons-webfont.svg
@@ -115,6 +115,7 @@
 <glyph unicode="&#xe938;" glyph-name="connected" data-tags="connected" d="M300.48 247.154c-14.377 0-28.526 6.766-37.417 19.406-35.543 50.514-54.331 109.966-54.331 171.931 0 61.897 18.743 121.303 54.24 171.794 14.514 20.663 43.040 25.646 63.68 11.109 20.663-14.514 25.646-43.040 11.109-63.68-24.594-35.017-37.6-76.229-37.6-119.223 0-43.017 13.029-84.297 37.691-119.314 14.537-20.64 9.577-49.166-11.086-63.703-8.023-5.623-17.211-8.32-26.286-8.32v0zM721.737 246.834c-9.12 0-18.309 2.72-26.331 8.366-20.617 14.56-25.531 43.086-10.971 63.703 24.777 35.086 37.851 76.434 37.851 119.566 0 43.429-13.257 85.029-38.331 120.251-14.651 20.571-9.829 49.12 10.72 63.749 20.571 14.629 49.12 9.829 63.749-10.72 36.16-50.811 55.291-110.72 55.291-173.28 0-62.126-18.88-121.714-54.606-172.297-8.891-12.594-23.017-19.337-37.371-19.337v0zM622.034 439.177c0-60.777-49.257-110.034-110.034-110.034s-110.034 49.257-110.034 110.034 49.257 110.034 110.034 110.034 110.034-49.257 110.034-110.034zM862.697 92.571c-12.366 0-24.8 4.251-34.949 12.937-22.514 19.314-25.12 53.211-5.806 75.749 61.463 71.68 95.314 163.269 95.314 257.829 0 95.611-34.514 187.954-97.189 260-19.474 22.377-17.12 56.32 5.28 75.771 22.377 19.474 56.297 17.12 75.771-5.28 79.68-91.589 123.566-208.96 123.566-330.514 0-120.206-43.040-236.617-121.189-327.771-10.606-12.366-25.646-18.72-40.8-18.72zM163.474 89.531c-14.971 0-29.874 6.217-40.48 18.4-80.046 91.68-124.137 209.303-124.137 331.154 0 84.731 21.463 168.549 62.057 242.4 17.257 31.383 37.943 61.029 61.509 88.114 19.474 22.377 53.394 24.731 75.771 5.28s24.731-53.394 5.28-75.771c-18.56-21.326-34.857-44.663-48.434-69.371-31.886-58.034-48.754-123.977-48.754-190.651 0-95.863 34.674-188.389 97.623-260.503 19.52-22.354 17.211-56.274-5.143-75.794-10.171-8.891-22.766-13.257-35.291-13.257z" />
 <glyph unicode="&#xe939;" glyph-name="catalog" data-tags="catalog" horiz-adv-x="1097" d="M509.714 737.371v-0.686c0.229 0.229 0.229 0.457 0 0.686zM184.457 84.114c-67.2-6.171-111.314-83.657-111.314-83.657v877.257c-73.143-2.286-73.143-68.571-73.143-68.571v-813.714c2.971-86.857 109.714-66.286 109.714-66.286 109.714 154.743 402.286-2.286 402.286-2.286v71.314c-125.714 81.829-242.286 95.543-327.543 85.943zM366.629 133.714c53.486-9.371 110.857-52.571 143.086-60.343v72.914h-3.886c-0.229 0-0.457 0-0.686 0h4.571v590.4c0 0 0 0 0 0v0.686c0 0 0 0 0 0l0.229 58.057c0 0-0.229 0-0.229 0.229v8c-119.314 76.8-274.057 129.143-363.429 145.829v-811.2c65.6 18.057 120.229 13.257 220.343-4.571zM587.429 737.371c-0.229-0.229-0.229-0.229 0 0v0zM1024 877.714v-877.257c0 0-44.114 77.486-111.314 83.657-85.257 9.6-201.829-4.114-327.543-85.943v-71.314c0 0 292.571 157.029 402.286 2.286 0 0 106.743-20.571 109.714 66.286v813.714c0 0 0 66.286-73.143 68.571zM587.429 545.143v-398.857l10.514 1.829c-2.057-1.143-4.343-1.829-6.629-1.829h-3.886v-72.914c32.229 7.771 89.6 50.971 143.086 60.343 100.114 17.829 154.743 22.629 220.343 4.571v811.2c-89.371-16.686-244.114-69.029-363.429-145.6v-8.229c0-0.229-0.229-0.229-0.229-0.229l0.229-58.057v-192.229z" />
 <glyph unicode="&#xe93a;" glyph-name="enhancement" data-tags="enhancement" d="M1001.6 317.943l-106.743 120.914 106.743 120.914c4.343 5.486 7.543 11.657 9.371 18.514 7.086 26.286-8.686 53.486-34.971 60.571l-150.629 30.171 23.771 157.486c0.457 7.086-0.686 13.943-3.2 20.571-9.829 25.371-38.4 38.171-64 28.343l-159.543-86.171-68.8 138.971c-3.886 5.943-8.686 10.971-14.629 14.629-22.857 14.857-53.486 8.229-68.343-14.629l-71.314-139.2-157.257 86.171c-6.4 2.514-13.486 3.657-20.343 3.2-27.429-1.371-48.229-24.686-46.857-51.886l23.771-157.486-150.629-30.4c-6.857-1.829-13.029-5.029-18.514-9.371-21.257-17.143-24.457-48.229-7.314-69.486l106.971-120.914-106.743-120.914c-4.343-5.486-7.543-11.657-9.371-18.514-7.086-26.286 8.686-53.486 35.2-60.343l155.2-25.6-28.343-162.057c-0.457-7.086 0.686-13.943 3.2-20.571 9.829-25.371 38.4-38.171 64-28.343l157.257 86.171 71.314-139.2c3.886-5.943 8.686-10.971 14.629-14.629 22.857-14.857 53.486-8.229 68.343 14.629l71.314 139.2 157.257-86.171c6.4-2.514 13.486-3.657 20.571-3.2 27.2 1.371 48.229 24.686 46.629 52.114l-28.343 162.057 155.2 25.6c6.857 1.829 13.029 5.029 18.514 9.371 20.8 17.143 24 48.229 6.629 69.486zM730.971 384.228c0-2.286-0.229-4.8-0.914-7.086-0.914-2.286-2.286-4.343-4.114-5.943-1.371-2.057-3.2-3.429-5.486-4.114-2.514-0.686-5.029-0.914-7.543-0.914h-128v-128c0-2.514-0.229-5.029-0.914-7.543-0.686-2.286-2.057-4.114-4.114-5.486-1.829-1.829-3.657-3.429-5.943-4.571s-4.571-1.6-7.086-1.6h-109.943c-2.514 0-4.8 0.457-7.086 1.6s-4.343 2.743-5.943 4.571c-2.057 1.371-3.429 3.2-4.114 5.486-0.686 2.514-0.914 5.029-0.914 7.543v128h-128c-2.514 0-5.029 0.229-7.543 0.914-2.286 0.686-4.114 2.057-5.486 4.114-1.829 1.6-3.2 3.657-4.114 5.943-0.686 2.286-1.143 4.571-0.914 7.086v109.029c0 2.514 0.229 5.029 0.914 7.543s2.057 4.8 4.114 6.4c1.6 1.6 3.429 2.743 5.486 3.429 2.286 0.914 5.029 1.6 7.543 1.6h128v128c0 2.514 0.229 5.029 0.914 7.543 0.686 2.286 2.057 4.114 4.114 5.486 1.6 1.829 3.657 3.2 5.943 4.114 2.286 0.686 4.571 1.143 7.086 0.914h109.943c2.286 0 4.8-0.229 7.086-0.914 2.286-0.914 4.343-2.286 5.943-4.114 2.057-1.371 3.429-3.2 4.114-5.486 0.686-2.514 0.914-5.029 0.914-7.543v-128h128c2.514 0 5.029-0.457 7.543-1.6v0c2.057-0.686 3.886-2.057 5.714-3.429 1.829-1.829 3.2-4.114 4.114-6.4 0.686-2.514 0.914-5.029 0.914-7.543v-109.029h-0.229z" />
+<glyph unicode="&#xe93b;" glyph-name="pficon-history" data-tags="pficon-history" d="M512 950.857c-136.731 0-260.937-53.623-352.754-140.96l-116.823 116.823c-23.337 23.337-42.423 15.429-42.423-17.577v-264c0-50.994 8.343-60 60-60h264c33.006 0 40.914 19.086 17.577 42.423v0l-91.794 91.794c71.383 66.834 163.977 103.497 262.217 103.497 102.56 0 198.994-39.954 271.52-112.48s112.48-168.96 112.48-271.52c0-102.56-39.954-198.994-112.48-271.543-72.526-72.503-168.96-112.457-271.52-112.457s-198.994 39.954-271.52 112.48c-6.057 6.057-11.863 12.297-17.463 18.674l-96.32-84.297c93.851-107.177 231.657-174.857 385.303-174.857 282.766 0 512 229.234 512 512s-229.234 512-512 512z" />
 <glyph unicode="&#xe93c;" glyph-name="disconnected" data-tags="disconnected" d="M904.686 112.457c77.486 90.971 120 206.857 120 326.629 0 121.6-43.886 238.857-123.657 330.514-19.429 22.4-53.486 24.686-75.657 5.257-22.4-19.429-24.686-53.486-5.257-75.886 62.629-72 97.143-164.343 97.143-259.886 0-91.2-31.543-179.657-88.914-250.286l-73.6 73.6c1.143 1.371 2.514 2.743 3.429 4.343 35.657 50.286 54.4 109.714 54.4 171.657 0 62.4-18.971 122.057-55.086 172.571-14.171 20.114-42.057 24.686-62.171 10.514s-24.686-42.057-10.514-62.171c25.143-35.429 38.629-77.257 38.629-120.914 0-40-11.2-78.629-32.686-112.229l-75.429 75.2c4.343 11.657 6.629 24.229 6.629 37.486 0 60.8-49.371 109.943-109.943 109.943-13.257 0-25.829-2.286-37.486-6.629l-393.371 393.829c-18.286 18.286-48 18.286-66.286 0s-18.286-48 0-66.286l104.229-104.229c0 0 0 0 0 0l76.343-76.114c0 0 0 0 0 0l137.143-137.143c0 0 0 0 0 0l75.886-75.886c0 0 0 0 0 0l140.571-140.571c0 0 0 0 0 0l393.829-393.829c9.143-9.143 21.029-13.714 33.143-13.714s24 4.571 33.143 13.714c18.286 18.286 18.286 48 0 66.286l-104.457 104.229zM298.971 438.4c0 4.8 0.229 9.371 0.457 13.943l-75.886 75.886c-9.143-28.8-13.714-58.971-13.714-89.829 0-61.714 18.743-120.914 54.171-171.2 8.686-12.343 22.4-18.971 36.571-18.971 8.914 0 17.829 2.514 25.6 8 20.114 14.171 24.914 42.057 10.743 62.171-24.914 35.429-37.943 76.8-37.943 120zM106.286 439.086c0 58.514 13.029 116.343 37.714 168.914l-79.543 79.543c-1.143-2.057-2.286-4.114-3.429-6.171-40.457-73.829-61.943-157.714-61.943-242.514 0-121.829 44.114-239.543 124.114-331.2 10.743-12.114 25.6-18.286 40.457-18.286 12.571 0 25.143 4.343 35.2 13.257 22.4 19.429 24.686 53.486 5.029 75.886-62.857 72.229-97.6 164.571-97.6 260.571z" />
 <glyph unicode="&#xe93d;" glyph-name="infrastructure" data-tags="infrastructure" d="M1013.36 171.757c-7.060 7.060-15.44 10.5-25.5 10.5h-27.9v63.6c0 17.4-6.4 34.2-19 47-12.6 12.6-27.6 19-45 19h-63.4v62.56h26.8c10.080 0 18.5 3.46 25.58 10.54s10.54 15.5 10.54 25.58v120.2c0 10.080-3.46 18.5-10.54 25.58s-15.5 10.54-25.58 10.54h-113.16l-106.7 106.7c0.18 1.74 0.28 3.52 0.28 5.36v159.9c0 13.4-4.6 24.6-14.020 34.020s-20.62 14.020-34.020 14.020h-159.9c-13.4 0-24.62-4.6-34.020-14.020-9.42-9.42-14.020-20.62-14.020-34.020v-159.9c0-1.88 0.12-3.68 0.3-5.48l-106.42-106.58c-9.94 0-78.38 0-78.38 0h-36.1c-10.080 0-18.5-3.46-25.58-10.54s-10.54-15.5-10.54-25.58v-120.2c0-10.080 3.46-18.5 10.54-25.58s15.5-10.54 25.58-10.54h27.4v-62.76h-63.6c-17.4 0-32.2-6.4-45-19 0 0-17.5-22.8-18.76-48.56v-61.84h-27.060c-10.040 0-18.44-3.44-25.5-10.5s-10.48-15.44-10.48-25.5v-119.82c0-10.040 3.44-18.44 10.5-25.5 7.040-7.040 15.44-10.5 25.5-10.5h119.8c10.040 0 18.44 3.44 25.5 10.5 7.040 7.040 10.5 15.44 10.5 25.5v119.82c0 10.040-3.44 18.44-10.5 25.5s-15.44 10.5-25.5 10.5h-28v64.6h191.5v-0.6l0.44-64h-27.86c-10.040 0-18.44-3.44-25.5-10.5s-10.5-15.44-10.5-25.5v-119.82c0-10.040 3.44-18.44 10.5-25.5 7.040-7.040 15.44-10.5 25.5-10.5h119.82c10.040 0 18.44 3.44 25.5 10.5 7.040 7.040 10.5 15.44 10.5 25.5v119.82c0 10.040-3.44 18.44-10.5 25.5s-15.44 10.5-25.5 10.5h-27.9v63.6c0 17.4-6.4 34.2-19 47-12.6 12.6-27.6 19-45 19h-63.4v62.56h26.8c10.080 0 18.5 3.46 25.58 10.54s10.54 15.5 10.54 25.58v113.32l107.12 107.28c1.7-0.16 3.42-0.26 5.2-0.26h159.9c1.82 0 3.58 0.1 5.32 0.28l105.98-105.98v-114.64c0-10.080 3.46-18.5 10.54-25.58s15.5-10.54 25.58-10.54h27.4v-62.76h-63.6c-17.4 0-32.2-6.4-45-19 0 0-17.5-22.8-18.76-48.56v-61.84h-27.060c-10.040 0-18.44-3.44-25.5-10.5s-10.5-15.44-10.5-25.5v-119.82c0-10.040 3.44-18.44 10.5-25.5 7.040-7.040 15.44-10.5 25.5-10.5h119.82c10.040 0 18.44 3.44 25.5 10.5 7.040 7.040 10.5 15.44 10.5 25.5v119.82c0 10.040-3.44 18.44-10.5 25.5s-15.44 10.5-25.5 10.5h-28v64.6h191.5v-0.6l0.44-64h-27.86c-10.040 0-18.44-3.44-25.5-10.5s-10.5-15.44-10.5-25.5v-119.82c0-10.040 3.44-18.44 10.5-25.5 7.040-7.040 15.44-10.5 25.5-10.5h119.82c10.040 0 18.44 3.44 25.5 10.5 7.040 7.040 10.5 15.44 10.5 25.5v119.82c0 10.040-3.44 18.44-10.5 25.5zM575.9 696.857h-128v128h128v-128z" />
 <glyph unicode="&#xe93e;" glyph-name="optimize" data-tags="optimize" d="M256 758.857l-128 128h-64v-64l128-128zM320 950.857h64v-128h-64zM576 630.857h128v-64h-128zM640 822.857v64h-64l-128-128 64-64zM0 630.857h128v-64h-128zM320 374.857h64v-128h-64zM64 374.857v-64h64l128 128-64 64zM1010 68.857l-636.118 636.118c-18.668 18.668-49.214 18.668-67.882 0l-60.118-60.118c-18.668-18.668-18.668-49.214 0-67.882l636.118-636.118c18.668-18.668 49.214-18.668 67.882 0l60.118 60.118c18.668 18.668 18.668 49.214 0 67.882zM480 406.857l-192 192 64 64 192-192-64-64z" />
@@ -129,4 +130,8 @@
 <glyph unicode="&#xe947;" glyph-name="services" data-tags="services" horiz-adv-x="1026" d="M962.514 328.228c-45.943 48.229-96 23.086-96 23.086l-205.943-205.029-256-0.686c-36.571 0-35.429 34.971-35.429 34.971 0 36.571 35.657 36.571 35.657 36.571h217.829c15.314 0 16.686 0.686 27.429 11.429 7.223 7.223 9.486 16.389 10.194 26.286 0.274-3.909 0.32-7.931 0.32-12v24c0-4.069-0.046-8.069-0.32-12-0.709 9.897-2.971 19.063-10.194 26.286-10.743 10.743-12.114 13.714-27.429 13.714h-373.257c-20.343 0.457-41.371-10.286-61.943-26.971l-151.086-159.543 184.457-183.086 76.343 73.143h421.714c33.143 1.6 78.4 58.743 78.4 58.743l183.314 192c18.286 43.429-18.057 79.086-18.057 79.086zM291.017 614.057v0c0-6.4 4.571-12.343 10.971-13.257l96-6.171c4.114-12.8 3.2-8.686 9.6-21.257-13.257-17.829-46.857-56-60.114-73.371-1.829-2.743-3.2-5.486-3.2-8.686 0-13.257 54.171-62.4 66.057-73.371 2.743-2.286 5.943-3.657 9.6-3.657 3.2 0 6.857 0.914 9.143 3.2l67.657 63.086c10.971-5.486 11.886-5.029 24-8.686l7.543-97.829c0.914-6.4 7.314-11.429 13.714-11.429h85.257c6.4 0 11.886 4.571 13.714 10.971 5.943 22.4 1.6 74.743 3.886 98.286 12.343 3.657 11.2 4.343 22.857 10.286l72-64.457c2.743-1.829 5.943-3.2 9.6-3.2 13.257 0 64.686 56 73.829 68.343 2.286 2.286 3.2 5.486 3.2 8.686 0 3.657-1.371 6.4-3.2 9.143-14.629 17.371-53.029 49.829-65.829 68.114 5.943 11.429 4.8 11.2 8.457 23.314l101.943 7.543c5.943 0.914 10.514 7.771 10.514 13.714v84.8c-0.229 5.714-4.8 11.657-11.2 13.029l-97.829 8c-4.114 12.8-2.057 9.143-8 21.714 12.8 17.829 47.086 53.029 60.343 70.857 1.829 2.743 3.2 5.486 3.2 8.686 0 12.8-54.171 62.4-66.057 73.371-2.743 2.286-5.943 3.657-9.6 3.657-3.2 0-6.4-0.914-9.143-3.2l-68.114-59.429c-10.971 5.486-12.571 5.486-24.686 9.143l-6.171 93.943c-0.914 6.4-7.314 11.429-13.714 11.429h-85.257c-6.4 0-11.886-4.571-13.714-10.971-5.943-22.4-2.971-72-5.257-95.086-12.343-4.114-11.2-5.029-22.857-10.971l-70.629 61.943c-2.743 1.829-5.943 3.2-9.6 3.2-13.257 0-64.686-55.543-73.829-67.886-2.286-2.743-3.2-5.943-3.2-9.143s1.371-6.4 3.2-9.143c14.629-17.371 46.4-47.086 59.2-65.371-5.943-11.429-5.029-16.686-8.686-28.8l-95.086-4.571c-5.943-0.914-10.514-7.771-10.514-13.714v-84.8zM582.903 769.943c63.314 0 114.743-51.429 114.743-114.743s-51.406-114.743-114.743-114.743c-63.086 0-114.743 51.429-114.743 114.743s51.429 114.743 114.743 114.743zM182.331 658.286c60.594 0 109.714 49.12 109.714 109.714s-49.12 109.714-109.714 109.714-109.714-49.12-109.714-109.714 49.12-109.714 109.714-109.714zM182.331 809.623c22.994 0 41.646-18.629 41.646-41.623s-18.651-41.623-41.646-41.623-41.623 18.629-41.623 41.623 18.629 41.623 41.623 41.623zM219.429 587.428c-40.389 0-73.143-32.754-73.143-73.143s32.754-73.143 73.143-73.143 73.143 32.754 73.143 73.143-32.754 73.143-73.143 73.143zM219.429 489.966c-13.44 0-24.32 10.903-24.32 24.32s10.903 24.32 24.32 24.32 24.32-10.903 24.32-24.32-10.88-24.32-24.32-24.32z" />
 <glyph unicode="&#xe948;" glyph-name="integration" data-tags="integration" horiz-adv-x="1170" d="M665.097 474.171c0 35.817-29.029 64.846-64.846 64.846-23.291 0-43.703-12.274-55.131-30.72-16.503-1.691-31.977 10.331-31.977 36.114v66.697c0 26.354-21.966 48.297-48.297 48.297h-66.697c-35.223 0-44.8 28.869-28.731 49.806 15.794 11.84 26.011 30.697 26.011 51.931 0 35.817-29.029 64.846-64.846 64.846s-64.846-29.029-64.846-64.846c0-18.149 7.451-34.537 19.474-46.309 0.754-0.914 1.509-1.851 2.309-2.743 19.314-21.074 10.537-52.686-26.331-52.686v0l-67.634 0.869c-26.354 0-48.297-21.966-48.297-48.297v-66.697c0-23.36-11.771-35.429-25.76-36.229-11.52 18.011-31.68 29.966-54.651 29.966-35.817 0-64.846-29.029-64.846-64.846s29.029-64.846 64.846-64.846c24 0 44.96 13.051 56.16 32.457 13.943-1.623 25.669-13.623 25.669-36.091v-208.411c0-26.331 24.229-48.297 51.451-49.166h56.366c-7.886 14.926-11.406 30.743-11.406 46.537 0 54.446 27.017 79.177 86.72 80.937h-1.051c43.771 0.983 79.863-24.754 79.863-80.937 0-15.817-4.389-32.48-11.406-46.537h66.743c26.354 0 48.297 21.966 48.297 48.297v210.171c0 25.417 15.017 37.486 31.269 36.183 11.063-19.954 32.32-33.44 56.731-33.44 35.817 0 64.846 29.029 64.846 64.846zM1106.080 539.017c-23.703 0-44.434-12.731-55.749-31.726-13.874 0.091-25.44 12.183-25.44 36.274l0.869 67.566c0 26.331-21.943 48.297-48.297 48.297h-66.697c-32.434 0-43.109 24.457-32.069 44.686 15.703 11.84 25.829 30.629 25.829 51.794 0 35.817-29.029 64.846-64.846 64.846s-64.846-29.029-64.846-64.846c0-23.543 12.549-44.137 31.314-55.497 5.509-18.491-6.149-37.829-34.971-37.829h-135.269c-26.331 0-48.297-24.229-49.166-51.451v-13.143c6.674 1.051 13.509 1.623 20.48 1.623 71.543 0 129.531-57.989 129.531-129.531s-57.989-129.509-129.509-129.509c-6.971 0-13.806 0.571-20.48 1.623v-74.56c0-26.331 21.943-48.297 48.297-48.297h137.029c32.846 0 43.383-25.097 31.634-45.463-17.417-11.634-28.891-31.451-28.891-53.966 0-35.817 29.029-64.846 64.846-64.846s64.846 29.029 64.846 64.846c0 20.823-9.829 39.337-25.097 51.2-13.531 20.686-3.383 47.337 30.491 47.337h71.269c26.331 0 43.726 24.229 43.726 50.583v137.554c0 23.497 10.971 35.566 24.389 36.251 11.063-19.977 32.32-33.509 56.777-33.509 35.817 0 64.846 29.029 64.846 64.846s-29.029 64.846-64.846 64.846z" />
 <glyph unicode="&#xe949;" glyph-name="process-automation" data-tags="process-automation" d="M964.114 290.971h-217.897c-17.12 18.103-48.846 45.646-60.274 61.943 5.943 11.429 4.8 11.2 8.457 23.314l101.943 7.543c5.943 0.914 10.514 7.771 10.514 13.714v84.8c-0.229 5.714-4.8 11.657-11.2 13.029v0l-97.829 8c-4.114 12.8-2.057 9.143-8 21.714 12.8 17.829 47.086 53.029 60.343 70.857 1.829 2.743 3.2 5.486 3.2 8.686 0 12.8-54.171 62.4-66.057 73.371-2.743 2.286-5.943 3.657-9.6 3.657-3.2 0-6.4-0.914-9.143-3.2l-68.114-59.429c-10.971 5.486-12.571 5.486-24.686 9.143l-6.171 93.943c-0.914 6.4-7.314 11.429-13.714 11.429h-85.257c-6.4 0-11.886-4.571-13.714-10.971-5.943-22.4-2.971-72-5.257-95.086-12.343-4.114-11.2-5.029-22.857-10.971l-70.629 61.943c-2.743 1.829-5.943 3.2-9.6 3.2-5.554 0-17.783-9.737-30.789-21.943l-64.731 62.766c70.857 64.846 162.149 100.434 258.949 100.434 102.629 0 199.086-40 271.543-112.457s112.457-168.914 112.457-271.543c0-24.914-2.286-49.371-6.857-73.143h129.6c3.429 24 5.257 48.229 5.257 73.143 0 282.743-229.257 512-512 512-135.931 0-259.177-52.96-350.926-139.2l-118.56 114.971c-23.314 23.314-42.514 15.543-42.514-17.371v-264.229c0-50.971 8.229-59.886 59.886-59.886h224.069c16.091-17.28 39.451-40.046 49.989-55.086-5.943-11.429-5.029-16.686-8.686-28.8l-95.086-4.571c-5.943-0.914-10.514-7.771-10.514-13.714v-84.8c0-6.4 4.571-12.343 10.971-13.257l96-6.171c4.114-12.8 3.2-8.686 9.6-21.257-13.257-17.829-46.857-56-60.114-73.371-1.829-2.743-3.2-5.486-3.2-8.686 0-13.257 54.171-62.4 66.057-73.371 2.743-2.286 5.943-3.657 9.6-3.657 3.2 0 6.857 0.914 9.143 3.2l67.657 63.086c10.971-5.486 11.886-5.029 24-8.686l7.543-97.829c0.914-6.4 7.314-11.429 13.714-11.429h85.257c6.4 0 11.886 4.571 13.714 10.971 5.943 22.4 1.6 74.743 3.886 98.286 12.343 3.657 11.2 4.343 22.857 10.286l72-64.457c2.743-1.829 5.943-3.2 9.6-3.2 5.051 0 15.611 8.114 27.269 18.811l65.44-63.474c-70.834-64-161.349-99.109-257.509-99.109-102.629 0-199.086 40-271.543 112.457s-112.457 168.914-112.457 271.543c0 24.914 2.286 49.371 6.857 73.143h-129.6c-3.429-24-5.257-48.229-5.257-73.143 0-282.743 229.257-512 512-512 135.223 0 257.897 52.434 349.509 137.874l118.834-115.246c23.314-23.314 42.514-15.314 42.514 17.6v264c0 50.971-8.229 59.886-59.886 59.886zM511.543 324.571c-63.086 0-114.743 51.429-114.743 114.743s51.429 114.743 114.743 114.743c63.314 0 114.743-51.429 114.743-114.743s-51.429-114.743-114.743-114.743z" />
+<glyph unicode="&#xe94a;" glyph-name="pficon-network-range" data-tags="pficon-network-range" horiz-adv-x="958" d="M510.766 658.286h-73.417v-145.714h73.417c40.183 0 72.869 32.686 72.869 72.869s-32.709 72.846-72.869 72.846zM734.949 341.943c44.091 62.811 69.989 139.337 69.989 221.897 0.023 213.577-189.097 386.674-402.651 386.674s-402.674-173.097-402.674-386.651c0-82.583 25.897-159.086 69.989-221.897l0.389-0.549c0.709-1.006 1.44-2.034 2.171-3.040l283.634-375.474c23.566-40.503 47.154-35.52 47.154-35.52 26.24 0 47.040 35.726 47.040 35.726l282.4 375.223c0.869 1.189 1.714 2.4 2.56 3.611zM291.040 291.428h-72v440h72v-440zM519.909 439.428h-82.56v-145.714h-72v437.714h154.56c80.503 0 141.44-65.486 141.44-146.011s-60.937-145.989-141.44-145.989zM955.977 539.817v0c0.617 110.469-37.28 198.331-92.754 264.366-10.629 12.663-21.44 24.754-32.526 36.96-9.851 10.857-18.171 18.126-25.143 22.857-4.869 5.92-12.229 9.691-20.48 9.691-14.629 0-26.491-11.863-26.491-26.491 0-6.811 2.583-12.983 6.811-17.691 1.646-2.606 3.589-5.097 5.623-7.429 3.154-3.634 6.56-6.88 9.669-9.577 0 0 24.96-27.931 41.371-50.446 36.48-57.966 56.023-125.211 56.023-198.194 0-82.583-13.92-141.623-58.011-204.434-0.846-1.211-1.691-2.4-2.56-3.611l-294.377-392.686c0 0-2.743-4.686-7.451-10.651 21.12-29.143 56.389-25.097 56.389-25.097 40.48-0.183 60.754 35.726 60.754 35.726l278.377 378.217c0.869 1.189 1.714 2.4 2.56 3.611 50.057 76.549 41.897 136.983 42.217 194.88z" />
+<glyph unicode="&#xe94b;" glyph-name="pficon-satellite" data-tags="pficon-satellite" d="M1019.726 137.486v0l-279.543 276.549c-2.88 2.903-6.697 4.343-10.491 4.343-3.771 0-7.52-1.417-10.377-4.297l-67.36-68.731-20.251 19.68 131.611 128.686c5.851 5.669 5.966 15.040 0.297 20.869l-10.72 11.017c2.606 0.594 5.029 1.874 6.971 3.771l39.383 38.674c5.851 5.669 5.966 15.040 0.297 20.869l-135.109 138.903c-5.669 5.851-15.040 5.989-20.869 0.297l-39.383-38.651c-1.943-1.897-3.291-4.274-3.977-6.857l-7.794 8c-5.669 5.851-15.040 5.989-20.869 0.297l-133.989-130.926-19.246 18.697 66.469 69.28c2.789 2.743 4.366 6.514 4.366 10.423 0.023 3.909-1.531 7.657-4.274 10.446l-279.429 277.691c-2.88 2.903-6.697 4.343-10.491 4.343-3.771 0-7.52-1.417-10.377-4.297l-180.206-183.84c-2.789-2.766-4.366-6.514-4.366-10.423-0.023-3.909 1.531-7.657 4.274-10.446l280.549-280.48c2.903-2.903 6.674-4.343 10.469-4.343 0.457 0 0.937 0.023 1.394 0.069 3.291 0.32 6.491 1.714 8.983 4.229l68.937 71.84 17.783-17.28-66.789-65.257c-2.811-2.743-6.811-8.069-6.857-11.977s0.686-9.257 3.406-12.069l171.52-175.703c2.72-2.811 6.469-4.411 10.377-4.457 0.526 0 1.051 0.023 1.577 0.069 3.337 0.32 6.469 1.76 8.914 4.091l70.743 69.143 21.257-20.64-67.429-68.8c-2.789-2.743-4.366-6.514-4.366-10.423-0.023-3.909 1.531-7.657 4.274-10.446l275.954-278.034c2.903-2.903 6.674-4.343 10.469-4.343 0.457 0 0.937 0.023 1.394 0.069 3.291 0.32 6.491 1.714 8.983 4.229l183.794 185.349c2.789 2.766 4.366 6.514 4.366 10.423 0.046 3.84-1.509 7.589-4.251 10.377zM294.286 568.274l-184.503 184.457 85.806 87.543 184.137-182.971-85.44-89.029zM825.44 37.623l-181.074 182.446 86.103 87.84 183.246-181.28-88.274-89.006zM236.206 370.537c-66.949 0-126.491-31.634-164.526-80.777l123.749-123.749-94.4-93.943c-16-3.909-27.886-18.286-27.886-35.497 0-20.206 16.366-36.571 36.571-36.571 16.914 0 31.109 11.497 35.291 27.109l94.903 94.423 123.406-123.406c49.143 38.034 80.777 97.577 80.777 164.526 0 114.811-93.074 207.886-207.886 207.886z" />
+<glyph unicode="&#xe94c;" glyph-name="pficon-template" data-tags="pficon-template" d="M219.429 512h146.286v-73.143h-146.286v73.143zM438.857 512h146.286v-73.143h-146.286v73.143zM877.714 731.428v-292.571h-219.429v73.143h146.286v146.286h-146.286v73.143h219.429zM438.857 731.428h146.286v-73.143h-146.286v73.143zM365.714 658.286h-146.286v-219.429h-73.143v292.571h219.429v-73.143zM948.571 875.428h-873.143v-873.143h873.143v873.143zM994.126 948.571c16.503 0 29.874-13.371 29.874-29.874v-967.154c0-16.16-13.097-26.971-29.257-26.971h-964.411c-16.754 0-30.331 11.291-30.331 28.046v966.789c0 16.114 13.051 29.166 29.166 29.166h964.96zM219.429 146.286h146.286v-73.143h-146.286v73.143zM438.857 146.286h146.286v-73.143h-146.286v73.143zM877.714 365.714v-292.571h-219.429v73.143h146.286v146.286h-146.286v73.143h219.429zM438.857 365.714h146.286v-73.143h-146.286v73.143zM365.714 292.571h-146.286v-219.429h-73.143v292.571h219.429v-73.143z" />
+<glyph unicode="&#xe94d;" glyph-name="pficon-vcenter" data-tags="pficon-vcenter" d="M889.143 948.183h-461.714c-73.737 0-133.714-59.977-133.714-133.714v-157.897h-157.897c-73.737 0-133.714-59.977-133.714-133.714v-461.714c0-73.737 59.977-133.714 133.714-133.714h461.714c73.714 0 133.714 59.977 133.714 133.714v160.183h157.897c73.737 0 133.714 59.977 133.714 133.714v459.429c0 73.737-59.977 133.714-133.714 133.714zM878.857 365.348h-292.503l0.891-92.16v-201.76h-441.143v441.166h291.611v291.611h441.143v-438.857zM219.429 395.428v-205.714c0-23.886 19.543-43.429 43.429-43.429h205.714c23.886 0 43.429 19.543 43.429 43.429v205.714c0 0 12.64 44.183 42.903 44.183h205.714c23.886 0 43.429 19.543 43.429 43.429v205.714c0 23.886-19.543 43.429-43.429 43.429h-205.714c-23.886 0-43.429-19.543-43.429-43.429v-205.714c0 0 1.303-44.183-42.903-44.183h-205.714c-23.886 0-43.429-19.543-43.429-43.429z" />
 </font></defs></svg>
\ No newline at end of file
diff --git a/themes/src/main/node_modules/patternfly/dist/fonts/PatternFlyIcons-webfont.ttf b/themes/src/main/node_modules/patternfly/dist/fonts/PatternFlyIcons-webfont.ttf
index e1c06d9..1ed274b 100644
Binary files a/themes/src/main/node_modules/patternfly/dist/fonts/PatternFlyIcons-webfont.ttf and b/themes/src/main/node_modules/patternfly/dist/fonts/PatternFlyIcons-webfont.ttf differ
diff --git a/themes/src/main/node_modules/patternfly/dist/fonts/PatternFlyIcons-webfont.woff b/themes/src/main/node_modules/patternfly/dist/fonts/PatternFlyIcons-webfont.woff
index f17f7fc..8eb1d89 100644
Binary files a/themes/src/main/node_modules/patternfly/dist/fonts/PatternFlyIcons-webfont.woff and b/themes/src/main/node_modules/patternfly/dist/fonts/PatternFlyIcons-webfont.woff differ
diff --git a/themes/src/main/node_modules/patternfly/dist/js/patternfly.js b/themes/src/main/node_modules/patternfly/dist/js/patternfly.js
index 082e6e2..0f343ea 100644
--- a/themes/src/main/node_modules/patternfly/dist/js/patternfly.js
+++ b/themes/src/main/node_modules/patternfly/dist/js/patternfly.js
@@ -2,7 +2,7 @@
   'use strict';
 
   var patternfly = {
-    version: "3.38.0"
+    version: "3.41.6"
   };
 
   // definition of breakpoint sizes for tablet and desktop modes
diff --git a/themes/src/main/node_modules/patternfly/dist/js/patternfly.min.js b/themes/src/main/node_modules/patternfly/dist/js/patternfly.min.js
index c3728ac..1107b05 100644
--- a/themes/src/main/node_modules/patternfly/dist/js/patternfly.min.js
+++ b/themes/src/main/node_modules/patternfly/dist/js/patternfly.min.js
@@ -1,2 +1,2 @@
-!function(window){"use strict";var patternfly={version:"3.38.0"};patternfly.pfBreakpoints={tablet:768,desktop:1200},window.patternfly=patternfly}(window),function(window){"use strict";patternfly.pfPaletteColors={black:"#030303",black100:"#fafafa",black200:"#ededed",black300:"#d1d1d1",black400:"#bbbbbb",black500:"#8b8d8f",black600:"#72767b",black700:"#4d5258",black800:"#393f44",black900:"#292e34",blue:"#0088ce",blue100:"#bee1f4",blue200:"#7dc3e8",blue300:"#39a5dc",blue400:"#0088ce",blue500:"#00659c",blue600:"#004368",blue700:"#002235",gold:"#f0ab00",gold100:"#fbeabc",gold200:"#f9d67a",gold300:"#f5c12e",gold400:"#f0ab00",gold500:"#b58100",gold600:"#795600",gold700:"#3d2c00",orange:"#ec7a08",orange100:"#fbdebf",orange200:"#f7bd7f",orange300:"#f39d3c",orange400:"#ec7a08",orange500:"#b35c00",orange600:"#773d00",orange700:"#3b1f00",lightBlue:"#00b9e4",lightBlue100:"#beedf9",lightBlue200:"#7cdbf3",lightBlue300:"#35caed",lightBlue400:"#00b9e4",lightBlue500:"#008bad",lightBlue600:"#005c73",lightBlue700:"#002d39",green:"#3f9c35",green100:"#cfe7cd",green200:"#9ecf99",green300:"#6ec664",green400:"#3f9c35",green500:"#2d7623",green600:"#1e4f18",green700:"#0f280d",lightGreen:"#92d400",lightGreen100:"#e4f5bc",lightGreen200:"#c8eb79",lightGreen300:"#ace12e",lightGreen400:"#92d400",lightGreen500:"#6ca100",lightGreen600:"#486b00",lightGreen700:"#253600",cyan:"#007a87",cyan100:"#bedee1",cyan200:"#7dbdc3",cyan300:"#3a9ca6",cyan400:"#007a87",cyan500:"#005c66",cyan600:"#003d44",cyan700:"#001f22",purple:"#703fec",purple100:"#c7bfff",purple200:"#a18fff",purple300:"#8461f7",purple400:"#703fec",purple500:"#582fc0",purple600:"#40199a",purple700:"#1f0066",red:"#cc0000",red100:"#cc0000",red200:"#a30000",red300:"#8b0000",red400:"#470000",red500:"#2c0000"}}(window),function(window){"use strict";patternfly.pfSetDonutChartTitle=function(selector,primary,secondary){var donutChartRightTitle=window.d3.select(selector).select("text.c3-chart-arcs-title");donutChartRightTitle.text(""),donutChartRightTitle.insert("tspan").text(primary).classed("donut-title-big-pf",!0).attr("dy",0).attr("x",0),donutChartRightTitle.insert("tspan").text(secondary).classed("donut-title-small-pf",!0).attr("dy",20).attr("x",0)},patternfly.pfDonutTooltipContents=function(d,defaultTitleFormat,defaultValueFormat,color){return'<table class="c3-tooltip">  <tr>    <td><span style="background-color:'+color(d[0].id)+'"></span><strong>'+d[0].value+"</strong> "+d[0].name+"</td>    <td>"+Math.round(1e3*d[0].ratio)/10+"%</td>  </tr></table>"},patternfly.pfGetUtilizationDonutTooltipContentsFn=function(units){return function(d){return'<span class="donut-tooltip-pf" style="white-space: nowrap;">'+Math.round(1e3*d[0].ratio)/10+"% "+units+" "+d[0].name+"</span>"}},patternfly.pfGetBarChartTooltipContentsFn=function(categories){return function(d){return'<table class="c3-tooltip">  <tr>    <td><strong>'+(categories?categories[d[0].index]:d[0].index)+":</td>    <td>"+d[0].value+"</td>  </tr></table>"}},patternfly.pfSingleLineChartTooltipContentsFn=function(categories){return function(d){return'<table class="c3-tooltip">  <tr>    <td><strong>'+(categories?categories[d[0].index]:d[0].index)+":</td>    <td>"+d[0].value+"</td>  </tr></table>"}},patternfly.pfPieTooltipContents=function(d,defaultTitleFormat,defaultValueFormat,color){return patternfly.pfDonutTooltipContents(d,defaultTitleFormat,defaultValueFormat,color)},patternfly.c3ChartDefaults=function(){var getDefaultColors=function(){return{pattern:[patternfly.pfPaletteColors.blue,patternfly.pfPaletteColors.blue300,patternfly.pfPaletteColors.green,patternfly.pfPaletteColors.orange,patternfly.pfPaletteColors.red]}},getDefaultBarGrid=function(){return{y:{show:!0}}},getDefaultBarTooltip=function(categories){return{contents:patternfly.pfGetBarChartTooltipContentsFn(categories)}},getDefaultBarLegend=function(){return{show:!1}},getDefaultBarConfig=function(categories){return{color:this.getDefaultColors(),grid:this.getDefaultBarGrid(),tooltip:this.getDefaultBarTooltip(categories),legend:this.getDefaultBarLegend()}},getDefaultGroupedBarGrid=function(){return{y:{show:!0}}},getDefaultGroupedBarLegend=function(){return{show:!0,position:"bottom"}},getDefaultGroupedBarConfig=function(){return{color:this.getDefaultColors(),grid:this.getDefaultGroupedBarGrid(),legend:this.getDefaultGroupedBarLegend()}},getDefaultStackedBarGrid=function(){return{y:{show:!0}}},getDefaultStackedBarLegend=function(){return{show:!0,position:"bottom"}},getDefaultStackedBarConfig=function(){return{color:this.getDefaultColors(),grid:this.getDefaultStackedBarGrid(),legend:this.getDefaultStackedBarLegend()}},getDefaultDonut=function(title){return{title:title,label:{show:!1},width:11}},getDefaultDonutSize=function(){return{height:171}},getDefaultDonutColors=function(){return{pattern:[patternfly.pfPaletteColors.blue,patternfly.pfPaletteColors.black300]}},getDefaultRelationshipDonutColors=function(){return{pattern:[patternfly.pfPaletteColors.blue,patternfly.pfPaletteColors.red100,patternfly.pfPaletteColors.orange400,patternfly.pfPaletteColors.green400,patternfly.pfPaletteColors.cyan500,patternfly.pfPaletteColors.gold200]}},getDefaultDonutTooltip=function(){return{show:!1}},getDefaultDonutLegend=function(){return{show:!1}},getDefaultDonutConfig=function(title){return{donut:this.getDefaultDonut(title),size:this.getDefaultDonutSize(),legend:this.getDefaultDonutLegend(),color:this.getDefaultDonutColors(),tooltip:this.getDefaultDonutTooltip()}},getDefaultRelationshipDonutConfig=function(title){return{donut:this.getDefaultDonut(title),size:this.getDefaultDonutSize(),legend:this.getDefaultDonutLegend(),color:this.getDefaultRelationshipDonutColors(),tooltip:this.getDefaultDonutTooltip()}},getDefaultPie=function(){return{expand:!0,label:{show:!1}}},getDefaultPieSize=function(){return{height:171}},getDefaultPieColors=function(){return{pattern:[patternfly.pfPaletteColors.blue,patternfly.pfPaletteColors.black300]}},getDefaultPieTooltip=function(){return{contents:patternfly.pfPieTooltipContents}},getDefaultPieLegend=function(){return{show:!1}},getDefaultPieConfig=function(){return{pie:this.getDefaultPie(),size:this.getDefaultPieSize(),legend:this.getDefaultPieLegend(),color:this.getDefaultPieColors(),tooltip:this.getDefaultPieTooltip()}},getDefaultSparklineArea=function(){return{zerobased:!0}},getDefaultSparklineSize=function(){return{height:60}},getDefaultSparklineAxis=function(){return{x:{show:!1},y:{show:!1}}},getDefaultSparklineLegend=function(){return{show:!1}},getDefaultSparklinePoint=function(){return{r:1,focus:{expand:{r:4}}}},getDefaultSparklineTooltip=function(){return{contents:function(d){return'<span class="c3-tooltip-sparkline">'+d[0].value+" "+d[0].name+"</span>"}}},getDefaultSparklineConfig=function(){return{area:getDefaultSparklineArea(),size:getDefaultSparklineSize(),axis:getDefaultSparklineAxis(),color:getDefaultColors(),legend:getDefaultSparklineLegend(),point:getDefaultSparklinePoint(),tooltip:getDefaultSparklineTooltip()}},getDefaultLineAxis=function(){return{x:{show:!0},y:{show:!0}}},getDefaultLineGrid=function(){return{x:{show:!1},y:{show:!0}}},getDefaultLineLegend=function(){return{show:!0}},getDefaultLinePoint=function(){return{r:3,focus:{expand:{r:5}}}},getDefaultLineConfig=function(){return{axis:getDefaultLineAxis(),grid:getDefaultLineGrid(),color:getDefaultColors(),legend:getDefaultLineLegend(),point:getDefaultLinePoint()}},getDefaultSingleLineTooltip=function(){return{contents:patternfly.pfGetBarChartTooltipContentsFn()}},getDefaultSingleLineLegend=function(){return{show:!1}},getDefaultSingleLineConfig=function(){return{axis:getDefaultLineAxis(),grid:getDefaultLineGrid(),color:getDefaultColors(),legend:getDefaultSingleLineLegend(),point:getDefaultLinePoint(),tooltip:getDefaultSingleLineTooltip()}},getDefaultAreaAxis=function(){return getDefaultLineAxis()},getDefaultAreaGrid=function(){return getDefaultLineGrid()},getDefaultAreaLegend=function(){return getDefaultLineLegend()},getDefaultAreaPoint=function(){return getDefaultLinePoint()},getDefaultAreaConfig=function(){return{axis:getDefaultAreaAxis(),grid:getDefaultAreaGrid(),color:getDefaultColors(),legend:getDefaultAreaLegend(),point:getDefaultAreaPoint()}},getDefaultSingleAreaTooltip=function(){return{contents:patternfly.pfGetBarChartTooltipContentsFn()}},getDefaultSingleAreaLegend=function(){return getDefaultSingleLineLegend()};return{getDefaultColors:getDefaultColors,getDefaultBarGrid:getDefaultBarGrid,getDefaultBarTooltip:getDefaultBarTooltip,getDefaultBarLegend:getDefaultBarLegend,getDefaultBarConfig:getDefaultBarConfig,getDefaultGroupedBarGrid:getDefaultGroupedBarGrid,getDefaultGroupedBarLegend:getDefaultGroupedBarLegend,getDefaultGroupedBarConfig:getDefaultGroupedBarConfig,getDefaultStackedBarGrid:getDefaultStackedBarGrid,getDefaultStackedBarLegend:getDefaultStackedBarLegend,getDefaultStackedBarConfig:getDefaultStackedBarConfig,getDefaultDonut:getDefaultDonut,getDefaultDonutSize:getDefaultDonutSize,getDefaultDonutColors:getDefaultDonutColors,getDefaultDonutTooltip:getDefaultDonutTooltip,getDefaultDonutLegend:getDefaultDonutLegend,getDefaultDonutConfig:getDefaultDonutConfig,getDefaultRelationshipDonutConfig:getDefaultRelationshipDonutConfig,getDefaultPie:getDefaultPie,getDefaultPieSize:getDefaultPieSize,getDefaultPieColors:getDefaultPieColors,getDefaultRelationshipDonutColors:getDefaultRelationshipDonutColors,getDefaultPieTooltip:getDefaultPieTooltip,getDefaultPieLegend:getDefaultPieLegend,getDefaultPieConfig:getDefaultPieConfig,getDefaultSparklineArea:getDefaultSparklineArea,getDefaultSparklineSize:getDefaultSparklineSize,getDefaultSparklineAxis:getDefaultSparklineAxis,getDefaultSparklineLegend:getDefaultSparklineLegend,getDefaultSparklinePoint:getDefaultSparklinePoint,getDefaultSparklineTooltip:getDefaultSparklineTooltip,getDefaultSparklineConfig:getDefaultSparklineConfig,getDefaultLineAxis:getDefaultLineAxis,getDefaultLineGrid:getDefaultLineGrid,getDefaultLineLegend:getDefaultLineLegend,getDefaultLinePoint:getDefaultLinePoint,getDefaultLineConfig:getDefaultLineConfig,getDefaultSingleLineTooltip:getDefaultSingleLineTooltip,getDefaultSingleLineConfig:getDefaultSingleLineConfig,getDefaultAreaAxis:getDefaultAreaAxis,getDefaultAreaGrid:getDefaultAreaGrid,getDefaultAreaLegend:getDefaultAreaLegend,getDefaultAreaPoint:getDefaultAreaPoint,getDefaultAreaConfig:getDefaultAreaConfig,getDefaultSingleAreaTooltip:getDefaultSingleAreaTooltip,getDefaultSingleAreaConfig:function(){return{axis:getDefaultAreaAxis(),grid:getDefaultAreaGrid(),color:getDefaultColors(),legend:getDefaultSingleAreaLegend(),point:getDefaultAreaPoint(),tooltip:getDefaultSingleAreaTooltip()}}}}}(window),function($){"use strict";void 0!==patternfly&&($.pfBreakpoints=patternfly.pfBreakpoints)}(jQuery),function($){"use strict";$.fn.pfList=function(){function toggleCollapse(toggle){var $toggle,$expansion,$collapse,$listItem;$toggle=$(toggle),$expansion=$toggle.parentsUntil(".list-pf","[data-list=expansion]").first(),$expansion.length||($expansion=$toggle.closest(".list-pf-item, .list-pf-expansion")),$collapse=$expansion.find(".collapse").first(),$collapse.toggleClass("in"),updateChevron($expansion,$collapse.hasClass("in")),$listItem=$expansion.closest(".list-pf-item"),updateActive($listItem,$listItem.find(".collapse").first().hasClass("in"))}function updateActive($listItem,expanded){expanded?$listItem.addClass("active"):$listItem.removeClass("active")}function updateChevron($expansion,expanded){var $chevron=$expansion.find(".list-pf-chevron .fa").first();expanded?($chevron.removeClass("fa-angle-right"),$chevron.addClass("fa-angle-down")):($chevron.addClass("fa-angle-right"),$chevron.removeClass("fa-angle-down"))}return function(list){list.find("[data-list=expansion], .list-pf-item, .list-pf-expansion").each(function(index,element){var $expansion=$(element),$collapse=$expansion.find(".collapse").first(),expanded=$collapse.hasClass("in");updateChevron($expansion,expanded),$expansion.hasClass("list-pf-item")&&updateActive($expansion,expanded)}),list.find(".list-pf-container").each(function(index,element){var $element=$(element),$toggles=$element.find("[data-list=toggle]");$toggles.length||($toggles=$element),$toggles.on("keydown",function(event){13!==event.keyCode&&32!==event.keyCode||(toggleCollapse(this),event.stopPropagation(),event.preventDefault())}),$toggles.on("click",function(event){toggleCollapse(this),event.stopPropagation(),event.preventDefault()})})}(this),this}}(jQuery),function($){"use strict";$.fn.sidebar=function(){var documentHeight=0,navbarpfHeight=0,colHeight=0;$(".navbar-pf .navbar-toggle").is(":hidden")&&(documentHeight=$(document).height(),navbarpfHeight=$(".navbar-pf").outerHeight(),colHeight=documentHeight-navbarpfHeight),$(".sidebar-pf").parent(".row").children('[class*="col-"]').css({"min-height":colHeight})},$(document).ready(function(){$(".sidebar-pf").length>0&&0===$(".datatable").length&&$.fn.sidebar()}),$(window).resize(function(){$(".sidebar-pf").length>0&&$.fn.sidebar()})}(jQuery),function($){"use strict";$.fn.popovers=function(){return this.popover(),this.filter("[data-close=true]").each(function(index,element){var $this=$(element),title=$this.attr("data-original-title")+'<button type="button" class="close" aria-hidden="true"><span class="pficon pficon-close"></span></button>';$this.attr("data-original-title",title)}),this.on("click",function(e){var $this=$(this),$title=$this.next(".popover").find(".popover-title");$title.find(".close").parent(".popover-title").addClass("closable"),$title.find(".close").on("click",function(){$this.popover("hide")}),e.preventDefault()}),this}}(jQuery),function($){"use strict";$.fn.dataTableExt&&($.extend(!0,$.fn.dataTable.defaults,{bDestroy:!0,bAutoWidth:!1,iDisplayLength:20,sDom:"<'dataTables_header' f i r ><'table-responsive'  t ><'dataTables_footer' p >",oLanguage:{sInfo:"Showing <b>_START_</b> to <b>_END_</b> of <b>_TOTAL_</b> Items",sInfoFiltered:"(of <b>_MAX_</b>)",sInfoEmpty:"Showing <b>0</b> Results",sZeroRecords:"<p>Suggestions</p><ul><li>Check the javascript regular expression syntax of the search term.</li><li>Check that the correct menu option is chosen (token ID vs. user ID).</li><li>Use wildcards (* to match 0 or more characters, + to match 1 or more characters, ? to match 0 or 1 character).</li><li>Clear the search field, then click Search to return to the 20 most recent records.</li></ul>",sSearch:""},sPaginationType:"bootstrap_input",oSearch:{sSearch:"",bRegex:!0,bSmart:!1}}),$.extend($.fn.dataTableExt.oStdClasses,{sWrapper:"dataTables_wrapper"}),$.fn.dataTableExt.oApi.fnPagingInfo=function(oSettings){return{iStart:oSettings._iDisplayStart,iEnd:oSettings.fnDisplayEnd(),iLength:oSettings._iDisplayLength,iTotal:oSettings.fnRecordsTotal(),iFilteredTotal:oSettings.fnRecordsDisplay(),iPage:-1===oSettings._iDisplayLength?0:Math.ceil(oSettings._iDisplayStart/oSettings._iDisplayLength),iTotalPages:-1===oSettings._iDisplayLength?0:Math.ceil(oSettings.fnRecordsDisplay()/oSettings._iDisplayLength)}},$.extend($.fn.dataTableExt.oPagination,{bootstrap_input:{fnInit:function(oSettings,nPaging,fnDraw){var els,nInput,fnClickHandler=function(e){e.preventDefault(),oSettings.oApi._fnPageChange(oSettings,e.data.action)&&fnDraw(oSettings)};$(nPaging).append('<ul class="pagination">  <li class="first disabled"><span class="i fa fa-angle-double-left"></span></li>  <li class="prev disabled"><span class="i fa fa-angle-left"></span></li></ul><div class="pagination-input">  <input type="text" class="paginate_input">  <span class="paginate_of">of <b>3</b></span></div><ul class="pagination">  <li class="next disabled"><span class="i fa fa-angle-right"></span></li>  <li class="last disabled"><span class="i fa fa-angle-double-right"></span></li></ul>'),els=$("li",nPaging),$(els[0]).bind("click.DT",{action:"first"},fnClickHandler),$(els[1]).bind("click.DT",{action:"previous"},fnClickHandler),$(els[2]).bind("click.DT",{action:"next"},fnClickHandler),$(els[3]).bind("click.DT",{action:"last"},fnClickHandler),nInput=$("input",nPaging),$(nInput).keyup(function(e){var iNewStart;if(38===e.which||39===e.which?this.value+=1:(37===e.which||40===e.which)&&this.value>1&&(this.value-=1),""!==this.value&&this.value.match(/[0-9]/)){if((iNewStart=oSettings._iDisplayLength*(this.value-1))>=oSettings.fnRecordsDisplay())return oSettings._iDisplayStart=(Math.ceil((oSettings.fnRecordsDisplay()-1)/oSettings._iDisplayLength)-1)*oSettings._iDisplayLength,void fnDraw(oSettings);oSettings._iDisplayStart=iNewStart,fnDraw(oSettings)}})},fnUpdate:function(oSettings,fnDraw){var i,oPaging=oSettings.oInstance.fnPagingInfo(),an=oSettings.aanFeatures.p,ien=an.length,iPages=Math.ceil(oSettings.fnRecordsDisplay()/oSettings._iDisplayLength),iCurrentPage=Math.ceil(oSettings._iDisplayStart/oSettings._iDisplayLength)+1;for(i=0;i<ien;i+=1)$(".paginate_input",an[i]).val(iCurrentPage).siblings(".paginate_of").find("b").html(iPages),0===oPaging.iPage?($("li.first",an[i]).addClass("disabled"),$("li.prev",an[i]).addClass("disabled")):($("li.first",an[i]).removeClass("disabled"),$("li.prev",an[i]).removeClass("disabled")),oPaging.iPage===oPaging.iTotalPages-1||0===oPaging.iTotalPages?($("li.next",an[i]).addClass("disabled"),$("li.last",an[i]).addClass("disabled")):($("li.next",an[i]).removeClass("disabled"),$("li.last",an[i]).removeClass("disabled"))}}}))}(jQuery),function($){"use strict";$.fn.navigation=function(){var navElement=$(".layout-pf-alt-fixed .nav-pf-vertical-alt"),bodyContentElement=$(".container-pf-alt-nav-pf-vertical-alt"),toggleNavBarButton=$(".navbar-toggle"),explicitCollapse=!1,checkNavState=function(){var width=$(window).width();navElement.removeClass("hidden show-mobile-nav collapsed"),bodyContentElement.removeClass("collapsed-nav hidden-nav"),(width<$.pfBreakpoints.desktop||explicitCollapse)&&(navElement.addClass("collapsed"),bodyContentElement.addClass("collapsed-nav")),width<$.pfBreakpoints.tablet&&(navElement.addClass("hidden"),navElement.removeClass("collapsed"),bodyContentElement.removeClass("collapsed-nav"),bodyContentElement.addClass("hidden-nav"))},collapseMenu=function(){navElement.addClass("collapsed"),bodyContentElement.addClass("collapsed-nav"),explicitCollapse=!0},enableTransitions=function(){$("html").addClass("transitions")},expandMenu=function(){navElement.removeClass("collapsed"),bodyContentElement.removeClass("collapsed-nav"),explicitCollapse=!1},bindMenuBehavior=function(){toggleNavBarButton.on("click",function(e){var inMobileState=bodyContentElement.hasClass("hidden-nav");enableTransitions(),inMobileState&&navElement.hasClass("show-mobile-nav")?navElement.removeClass("show-mobile-nav"):inMobileState?navElement.addClass("show-mobile-nav"):navElement.hasClass("collapsed")?expandMenu():collapseMenu()})},setTooltips=function(){$('.nav-pf-vertical-alt [data-toggle="tooltip"]').tooltip({container:"body",delay:{show:"500",hide:"200"}}),$(".nav-pf-vertical-alt").on("show.bs.tooltip",function(e){return $(this).hasClass("collapsed")})};$(window).on("resize",function(){checkNavState(),enableTransitions()}),function(){checkNavState(),bindMenuBehavior(),setTooltips()}()},$(document).ready(function(){$(".nav-pf-vertical-alt").length>0&&$.fn.navigation()})}(jQuery),function($){"use strict";$.fn.countRemainingChars=function(options){var settings=$.extend({charsMaxLimit:100,charsWarnRemaining:5,blockInputAtMaxLimit:!1},options),$taFld=this,$countFld=$("#"+settings.countFld).text(settings.charsMaxLimit),charsRemainingFn=function(charsLength){var charsRemaining=settings.charsMaxLimit-charsLength;$countFld.text(charsRemaining),$countFld.toggleClass("chars-warn-remaining-pf",charsRemaining<=settings.charsWarnRemaining),charsRemaining<0?$taFld.trigger("overCharsMaxLimitEvent",$taFld.attr("id")):$taFld.trigger("underCharsMaxLimitEvent",$taFld.attr("id"))};return this.on("paste",function(event){setTimeout(function(){var maxTxt,charsLength=$taFld.val().length;settings.blockInputAtMaxLimit&&charsLength>settings.charsMaxLimit&&(maxTxt=$taFld.val(),maxTxt=maxTxt.substring(0,settings.charsMaxLimit),$taFld.val(maxTxt),charsLength=$taFld.val().length),charsRemainingFn(charsLength)},100)}),this.keyup(function(event){charsRemainingFn($taFld.val().length)}),this.keydown(function(event){var charsLength=$taFld.val().length;settings.blockInputAtMaxLimit&&charsLength>=settings.charsMaxLimit&&8!==event.keyCode&&event.preventDefault()}),this}}(jQuery),function($){"use strict";void 0!==patternfly&&($.pfPaletteColors=patternfly.pfPaletteColors)}(jQuery),function($){"use strict";void 0!==patternfly&&($.fn.pfSetDonutChartTitle=patternfly.pfSetDonutChartTitle,$.fn.pfDonutTooltipContents=patternfly.pfDonutTooltipContents,$.fn.pfGetUtilizationDonutTooltipContentsFn=patternfly.pfGetUtilizationDonutTooltipContentsFn,$.fn.pfGetBarChartTooltipContentsFn=patternfly.pfGetBarChartTooltipContentsFn,$.fn.pfSingleLineChartTooltipContentsFn=patternfly.pfSingleLineChartTooltipContentsFn,$.fn.pfPieTooltipContents=patternfly.pfPieTooltipContents,$.fn.c3ChartDefaults=patternfly.c3ChartDefaults)}(jQuery),function($){"use strict";$.fn.initCollapseHeights=function(scrollSelector){var setCollapseHeights,parentElement=this,targetScrollSelector=scrollSelector;setCollapseHeights=function(){var height,openPanel,contentHeight,bodyHeight,overflowY="hidden";height=parentElement.height(),openPanel=parentElement.find(".collapse.in"),openPanel&&openPanel.length>0&&openPanel.removeClass("in"),contentHeight=0,parentElement.children().each($.proxy(function(i,element){var $element=$(element);contentHeight+=$element.outerHeight(!0)},parentElement)).end(),bodyHeight=height-contentHeight,bodyHeight<25&&(bodyHeight=25,overflowY="auto"),openPanel&&openPanel.length>0&&openPanel.addClass("in"),setTimeout(function(){parentElement.find('[data-toggle="collapse"]').each($.proxy(function(i,element){var $element,selector,$target,scrollElement,innerHeight=0;$element=$(element),selector=$element.attr("data-target"),selector||(selector=$element.attr("href")),$target=$(selector),scrollElement=$target,targetScrollSelector&&(scrollElement=$target.find(targetScrollSelector),1===scrollElement.length?(innerHeight=0,$target.children().each($.proxy(function(j,sibling){var $sibling=$(sibling);sibling!==scrollElement[0]&&(innerHeight+=$sibling.outerHeight(!0))},$target)).end(),bodyHeight-=innerHeight):scrollElement=$target),scrollElement.css({"max-height":bodyHeight-innerHeight+"px","overflow-y":"auto"})},parentElement)).end(),parentElement.css({"overflow-y":overflowY})},100)},setCollapseHeights(),$(window).resize(setCollapseHeights)}}(jQuery),function($){"use strict";function getParent(rows,node){var parent=node.attr("data-parent");if("string"==typeof parent)return parent=isNaN(parent)?rows.closest(parent):$(rows[parseInt(parent,10)])}function renderItem(item,parent){parent&&(parent.find(".treegrid-node > span.expand-icon").toggleClass("fa-angle-right",parent.hasClass("collapsed")).toggleClass("fa-angle-down",!parent.hasClass("collapsed")),item.toggleClass("hidden",parent.hasClass("collapsed")),parent.hasClass("collapsed")&&item.addClass("collapsed"))}function reStripe(tree){tree.find("tbody > tr").removeClass("odd"),tree.find("tbody > tr:not(.hidden):odd").addClass("odd")}$.fn.treegrid=function(options){var i,rows,_this;rows=this.find("tbody > tr"),_this=this,$.each(rows,function(){var node,parent;if(node=$(this),parent=getParent(rows,node),node.children(".treegrid-node").prepend('<span class="icon expand-icon fa"/>'),node.children(".treegrid-node").on("click",function(e){var icon=node.find("span.expand-icon");options&&"function"==typeof options.callback&&options.callback(e),icon.hasClass("fa-angle-right")&&node.removeClass("collapsed"),icon.hasClass("fa-angle-down")&&node.addClass("collapsed"),$.each(rows.slice(rows.index(node)+1),function(){renderItem($(this),getParent(rows,$(this)))}),reStripe(_this)}),parent){for(i=parent.find(".treegrid-node > span.indent").length+1;i>0;i-=1)node.children(".treegrid-node").prepend('<span class="indent"/>');renderItem(node,parent)}}),reStripe(_this)}}(jQuery),function($){"use strict";$.fn.setupVerticalNavigation=function(handleItemSelections,ignoreDrawer){var navElement=$(".nav-pf-vertical"),bodyContentElement=$(".container-pf-nav-pf-vertical"),toggleNavBarButton=$(".navbar-toggle"),handleResize=!0,explicitCollapse=!1,subDesktop=!1,inMobileState=function(){return bodyContentElement.hasClass("hidden-nav")},forceResize=function(delay){setTimeout(function(){$(window).trigger("resize")},delay)},showSecondaryMenu=function(){!inMobileState()&&subDesktop||(navElement.addClass("secondary-visible-pf"),bodyContentElement.addClass("secondary-visible-pf")),subDesktop||forceResize(100)},hideSecondaryMenu=function(){navElement.removeClass("secondary-visible-pf"),bodyContentElement.removeClass("secondary-visible-pf"),navElement.find(".secondary-nav-item-pf.is-hover").length<=1&&navElement.removeClass("hover-secondary-nav-pf"),navElement.find(".mobile-nav-item-pf").each(function(index,item){$(item).removeClass("mobile-nav-item-pf")}),navElement.find(".is-hover").each(function(index,item){$(item).removeClass("is-hover")})},hideTertiaryMenu=function(){navElement.removeClass("tertiary-visible-pf"),bodyContentElement.removeClass("tertiary-visible-pf"),navElement.find(".tertiary-nav-item-pf.is-hover").length<=1&&navElement.removeClass("hover-tertiary-nav-pf"),navElement.find(".mobile-nav-item-pf").each(function(index,item){$(item).removeClass("mobile-nav-item-pf")}),navElement.find(".is-hover").each(function(index,item){$(item).removeClass("is-hover")})},setActiveItem=function(item){$(".nav-pf-vertical .list-group-item.active").removeClass("active"),item.addClass("active").parents(".list-group-item").addClass("active")},updateSecondaryMenuDisplayAfterSelection=function(){inMobileState()?(navElement.removeClass("show-mobile-nav"),hideSecondaryMenu(),navElement.find(".mobile-nav-item-pf").each(function(index,item){$(item).removeClass("mobile-nav-item-pf")})):showSecondaryMenu()},updateSecondaryCollapsedState=function(setCollapsed,collapsedItem){setCollapsed?(collapsedItem.addClass("collapsed"),navElement.addClass("collapsed-secondary-nav-pf"),bodyContentElement.addClass("collapsed-secondary-nav-pf")):(collapsedItem?collapsedItem.removeClass("collapsed"):navElement.find('[data-toggle="collapse-secondary-nav"]').each(function(index,element){$(element).removeClass("collapsed")}),navElement.removeClass("collapsed-secondary-nav-pf"),bodyContentElement.removeClass("collapsed-secondary-nav-pf"))},updateTertiaryCollapsedState=function(setCollapsed,collapsedItem){setCollapsed?(collapsedItem.addClass("collapsed"),navElement.addClass("collapsed-tertiary-nav-pf"),bodyContentElement.addClass("collapsed-tertiary-nav-pf"),updateSecondaryCollapsedState(!1)):(collapsedItem?collapsedItem.removeClass("collapsed"):navElement.find('[data-toggle="collapse-tertiary-nav"]').each(function(index,element){$(element).removeClass("collapsed")}),navElement.removeClass("collapsed-tertiary-nav-pf"),bodyContentElement.removeClass("collapsed-tertiary-nav-pf"))},updateMobileMenu=function(selected,secondaryItem){$(document).find(".list-group-item.mobile-nav-item-pf").each(function(index,item){$(item).removeClass("mobile-nav-item-pf")}),$(document).find(".list-group-item.mobile-secondary-item-pf").each(function(index,item){$(item).removeClass("mobile-secondary-item-pf")}),selected?(selected.addClass("mobile-nav-item-pf"),secondaryItem?(secondaryItem.addClass("mobile-secondary-item-pf"),navElement.removeClass("show-mobile-secondary"),navElement.addClass("show-mobile-tertiary")):(navElement.addClass("show-mobile-secondary"),navElement.removeClass("show-mobile-tertiary"))):(navElement.removeClass("show-mobile-secondary"),navElement.removeClass("show-mobile-tertiary"))},enterMobileState=function(){navElement.hasClass("hidden")||(navElement.addClass("hidden"),navElement.removeClass("collapsed"),bodyContentElement.removeClass("collapsed-nav"),bodyContentElement.addClass("hidden-nav"),updateSecondaryCollapsedState(!1),updateTertiaryCollapsedState(!1),explicitCollapse=!1)},exitMobileState=function(){navElement.removeClass("hidden show-mobile-nav"),bodyContentElement.removeClass("hidden-nav")},checkNavState=function(){var makeSecondaryVisible,width=$(window).width();handleResize&&(width<$.pfBreakpoints.tablet&&!explicitCollapse?enterMobileState():navElement.hasClass("hidden")&&exitMobileState(),width<$.pfBreakpoints.desktop?(subDesktop||(navElement.addClass("collapsed"),bodyContentElement.addClass("collapsed-nav")),width>=$.pfBreakpoints.tablet&&hideSecondaryMenu(),subDesktop=!0):(makeSecondaryVisible=subDesktop&&navElement.find(".secondary-nav-item-pf.active").length>0,subDesktop=!1,makeSecondaryVisible&&showSecondaryMenu()),explicitCollapse?(navElement.addClass("collapsed"),bodyContentElement.addClass("collapsed-nav")):(navElement.removeClass("collapsed"),bodyContentElement.removeClass("collapsed-nav")))},collapseMenu=function(){navElement.addClass("collapsed"),bodyContentElement.addClass("collapsed-nav"),subDesktop&&hideSecondaryMenu(),explicitCollapse=!0},enableTransitions=function(){$("html").addClass("transitions")},expandMenu=function(){navElement.removeClass("collapsed"),bodyContentElement.removeClass("collapsed-nav"),explicitCollapse=!1,subDesktop||forceResize(100)},bindMenuBehavior=function(){toggleNavBarButton.on("click",function(e){var $drawer;enableTransitions(),inMobileState()?navElement.hasClass("show-mobile-nav")?navElement.removeClass("show-mobile-nav"):(updateMobileMenu(),navElement.addClass("show-mobile-nav"),ignoreDrawer||($drawer=$(".drawer-pf"),$drawer.length&&($(".drawer-pf-trigger").removeClass("open"),$drawer.addClass("hide")))):navElement.hasClass("collapsed")?(window.localStorage.setItem("patternfly-navigation-primary","expanded"),expandMenu()):(window.localStorage.setItem("patternfly-navigation-primary","collapsed"),collapseMenu())})},forceHideSecondaryMenu=function(){navElement.addClass("force-hide-secondary-nav-pf"),setTimeout(function(){navElement.removeClass("force-hide-secondary-nav-pf")},500)},bindMenuItemsBehavior=function(handleSelection){$(document).find(".nav-pf-vertical .list-group-item").each(function(index,item){var onClickFn,$item=$(item),$nav=$item.closest('[class*="nav-pf-"]');$nav.hasClass("nav-pf-vertical")?onClickFn=function(event){var $secondaryItem,$activeItem,$this=$(this);$this.hasClass("secondary-nav-item-pf")?inMobileState()?updateMobileMenu($this):handleSelection&&($activeItem=$secondaryItem=$item.find(".nav-pf-secondary-nav > .list-group > .list-group-item").eq(0),$secondaryItem.hasClass("tertiary-nav-item-pf")&&($activeItem=$secondaryItem.find(".nav-pf-tertiary-nav > .list-group > .list-group-item").eq(0)),setActiveItem($activeItem),event.stopImmediatePropagation()):(hideSecondaryMenu(),inMobileState()&&(updateMobileMenu(),navElement.removeClass("show-mobile-nav")),handleSelection&&(setActiveItem($this),event.stopImmediatePropagation()))}:$nav.hasClass("nav-pf-secondary-nav")?onClickFn=function(event){var $tertiaryItem,$primaryItem,$this=$(this);$this.hasClass("tertiary-nav-item-pf")?inMobileState()?($primaryItem=$item.parents(".list-group-item"),updateMobileMenu($this,$primaryItem),event.stopImmediatePropagation()):handleSelection&&($tertiaryItem=$item.find(".nav-pf-tertiary-nav > .list-group > .list-group-item").eq(0),setActiveItem($tertiaryItem),event.stopImmediatePropagation()):(inMobileState()&&(updateMobileMenu(),navElement.removeClass("show-mobile-nav")),updateSecondaryMenuDisplayAfterSelection(),handleSelection&&(setActiveItem($item),hideSecondaryMenu(),event.stopImmediatePropagation()))}:$nav.hasClass("nav-pf-tertiary-nav")&&(onClickFn=function(event){inMobileState()&&(updateMobileMenu(),navElement.removeClass("show-mobile-nav")),updateSecondaryMenuDisplayAfterSelection(),handleSelection&&(setActiveItem($item),hideTertiaryMenu(),hideSecondaryMenu(),event.stopImmediatePropagation())}),$item.on("click.pf.secondarynav.data-api",onClickFn)}),
+!function(window){"use strict";var patternfly={version:"3.41.6"};patternfly.pfBreakpoints={tablet:768,desktop:1200},window.patternfly=patternfly}(window),function(window){"use strict";patternfly.pfPaletteColors={black:"#030303",black100:"#fafafa",black200:"#ededed",black300:"#d1d1d1",black400:"#bbbbbb",black500:"#8b8d8f",black600:"#72767b",black700:"#4d5258",black800:"#393f44",black900:"#292e34",blue:"#0088ce",blue100:"#bee1f4",blue200:"#7dc3e8",blue300:"#39a5dc",blue400:"#0088ce",blue500:"#00659c",blue600:"#004368",blue700:"#002235",gold:"#f0ab00",gold100:"#fbeabc",gold200:"#f9d67a",gold300:"#f5c12e",gold400:"#f0ab00",gold500:"#b58100",gold600:"#795600",gold700:"#3d2c00",orange:"#ec7a08",orange100:"#fbdebf",orange200:"#f7bd7f",orange300:"#f39d3c",orange400:"#ec7a08",orange500:"#b35c00",orange600:"#773d00",orange700:"#3b1f00",lightBlue:"#00b9e4",lightBlue100:"#beedf9",lightBlue200:"#7cdbf3",lightBlue300:"#35caed",lightBlue400:"#00b9e4",lightBlue500:"#008bad",lightBlue600:"#005c73",lightBlue700:"#002d39",green:"#3f9c35",green100:"#cfe7cd",green200:"#9ecf99",green300:"#6ec664",green400:"#3f9c35",green500:"#2d7623",green600:"#1e4f18",green700:"#0f280d",lightGreen:"#92d400",lightGreen100:"#e4f5bc",lightGreen200:"#c8eb79",lightGreen300:"#ace12e",lightGreen400:"#92d400",lightGreen500:"#6ca100",lightGreen600:"#486b00",lightGreen700:"#253600",cyan:"#007a87",cyan100:"#bedee1",cyan200:"#7dbdc3",cyan300:"#3a9ca6",cyan400:"#007a87",cyan500:"#005c66",cyan600:"#003d44",cyan700:"#001f22",purple:"#703fec",purple100:"#c7bfff",purple200:"#a18fff",purple300:"#8461f7",purple400:"#703fec",purple500:"#582fc0",purple600:"#40199a",purple700:"#1f0066",red:"#cc0000",red100:"#cc0000",red200:"#a30000",red300:"#8b0000",red400:"#470000",red500:"#2c0000"}}(window),function(window){"use strict";patternfly.pfSetDonutChartTitle=function(selector,primary,secondary){var donutChartRightTitle=window.d3.select(selector).select("text.c3-chart-arcs-title");donutChartRightTitle.text(""),donutChartRightTitle.insert("tspan").text(primary).classed("donut-title-big-pf",!0).attr("dy",0).attr("x",0),donutChartRightTitle.insert("tspan").text(secondary).classed("donut-title-small-pf",!0).attr("dy",20).attr("x",0)},patternfly.pfDonutTooltipContents=function(d,defaultTitleFormat,defaultValueFormat,color){return'<table class="c3-tooltip">  <tr>    <td><span style="background-color:'+color(d[0].id)+'"></span><strong>'+d[0].value+"</strong> "+d[0].name+"</td>    <td>"+Math.round(1e3*d[0].ratio)/10+"%</td>  </tr></table>"},patternfly.pfGetUtilizationDonutTooltipContentsFn=function(units){return function(d){return'<span class="donut-tooltip-pf" style="white-space: nowrap;">'+Math.round(1e3*d[0].ratio)/10+"% "+units+" "+d[0].name+"</span>"}},patternfly.pfGetBarChartTooltipContentsFn=function(categories){return function(d){return'<table class="c3-tooltip">  <tr>    <td><strong>'+(categories?categories[d[0].index]:d[0].index)+":</td>    <td>"+d[0].value+"</td>  </tr></table>"}},patternfly.pfSingleLineChartTooltipContentsFn=function(categories){return function(d){return'<table class="c3-tooltip">  <tr>    <td><strong>'+(categories?categories[d[0].index]:d[0].index)+":</td>    <td>"+d[0].value+"</td>  </tr></table>"}},patternfly.pfPieTooltipContents=function(d,defaultTitleFormat,defaultValueFormat,color){return patternfly.pfDonutTooltipContents(d,defaultTitleFormat,defaultValueFormat,color)},patternfly.c3ChartDefaults=function(){var getDefaultColors=function(){return{pattern:[patternfly.pfPaletteColors.blue,patternfly.pfPaletteColors.blue300,patternfly.pfPaletteColors.green,patternfly.pfPaletteColors.orange,patternfly.pfPaletteColors.red]}},getDefaultBarGrid=function(){return{y:{show:!0}}},getDefaultBarTooltip=function(categories){return{contents:patternfly.pfGetBarChartTooltipContentsFn(categories)}},getDefaultBarLegend=function(){return{show:!1}},getDefaultBarConfig=function(categories){return{color:this.getDefaultColors(),grid:this.getDefaultBarGrid(),tooltip:this.getDefaultBarTooltip(categories),legend:this.getDefaultBarLegend()}},getDefaultGroupedBarGrid=function(){return{y:{show:!0}}},getDefaultGroupedBarLegend=function(){return{show:!0,position:"bottom"}},getDefaultGroupedBarConfig=function(){return{color:this.getDefaultColors(),grid:this.getDefaultGroupedBarGrid(),legend:this.getDefaultGroupedBarLegend()}},getDefaultStackedBarGrid=function(){return{y:{show:!0}}},getDefaultStackedBarLegend=function(){return{show:!0,position:"bottom"}},getDefaultStackedBarConfig=function(){return{color:this.getDefaultColors(),grid:this.getDefaultStackedBarGrid(),legend:this.getDefaultStackedBarLegend()}},getDefaultDonut=function(title){return{title:title,label:{show:!1},width:11}},getDefaultDonutSize=function(){return{height:171}},getDefaultDonutColors=function(){return{pattern:[patternfly.pfPaletteColors.blue,patternfly.pfPaletteColors.black300]}},getDefaultRelationshipDonutColors=function(){return{pattern:[patternfly.pfPaletteColors.blue,patternfly.pfPaletteColors.red100,patternfly.pfPaletteColors.orange400,patternfly.pfPaletteColors.green400,patternfly.pfPaletteColors.cyan500,patternfly.pfPaletteColors.gold200]}},getDefaultDonutTooltip=function(){return{show:!1}},getDefaultDonutLegend=function(){return{show:!1}},getDefaultDonutConfig=function(title){return{donut:this.getDefaultDonut(title),size:this.getDefaultDonutSize(),legend:this.getDefaultDonutLegend(),color:this.getDefaultDonutColors(),tooltip:this.getDefaultDonutTooltip()}},getDefaultRelationshipDonutConfig=function(title){return{donut:this.getDefaultDonut(title),size:this.getDefaultDonutSize(),legend:this.getDefaultDonutLegend(),color:this.getDefaultRelationshipDonutColors(),tooltip:this.getDefaultDonutTooltip()}},getDefaultPie=function(){return{expand:!0,label:{show:!1}}},getDefaultPieSize=function(){return{height:171}},getDefaultPieColors=function(){return{pattern:[patternfly.pfPaletteColors.blue,patternfly.pfPaletteColors.black300]}},getDefaultPieTooltip=function(){return{contents:patternfly.pfPieTooltipContents}},getDefaultPieLegend=function(){return{show:!1}},getDefaultPieConfig=function(){return{pie:this.getDefaultPie(),size:this.getDefaultPieSize(),legend:this.getDefaultPieLegend(),color:this.getDefaultPieColors(),tooltip:this.getDefaultPieTooltip()}},getDefaultSparklineArea=function(){return{zerobased:!0}},getDefaultSparklineSize=function(){return{height:60}},getDefaultSparklineAxis=function(){return{x:{show:!1},y:{show:!1}}},getDefaultSparklineLegend=function(){return{show:!1}},getDefaultSparklinePoint=function(){return{r:1,focus:{expand:{r:4}}}},getDefaultSparklineTooltip=function(){return{contents:function(d){return'<span class="c3-tooltip-sparkline">'+d[0].value+" "+d[0].name+"</span>"}}},getDefaultSparklineConfig=function(){return{area:getDefaultSparklineArea(),size:getDefaultSparklineSize(),axis:getDefaultSparklineAxis(),color:getDefaultColors(),legend:getDefaultSparklineLegend(),point:getDefaultSparklinePoint(),tooltip:getDefaultSparklineTooltip()}},getDefaultLineAxis=function(){return{x:{show:!0},y:{show:!0}}},getDefaultLineGrid=function(){return{x:{show:!1},y:{show:!0}}},getDefaultLineLegend=function(){return{show:!0}},getDefaultLinePoint=function(){return{r:3,focus:{expand:{r:5}}}},getDefaultLineConfig=function(){return{axis:getDefaultLineAxis(),grid:getDefaultLineGrid(),color:getDefaultColors(),legend:getDefaultLineLegend(),point:getDefaultLinePoint()}},getDefaultSingleLineTooltip=function(){return{contents:patternfly.pfGetBarChartTooltipContentsFn()}},getDefaultSingleLineLegend=function(){return{show:!1}},getDefaultSingleLineConfig=function(){return{axis:getDefaultLineAxis(),grid:getDefaultLineGrid(),color:getDefaultColors(),legend:getDefaultSingleLineLegend(),point:getDefaultLinePoint(),tooltip:getDefaultSingleLineTooltip()}},getDefaultAreaAxis=function(){return getDefaultLineAxis()},getDefaultAreaGrid=function(){return getDefaultLineGrid()},getDefaultAreaLegend=function(){return getDefaultLineLegend()},getDefaultAreaPoint=function(){return getDefaultLinePoint()},getDefaultAreaConfig=function(){return{axis:getDefaultAreaAxis(),grid:getDefaultAreaGrid(),color:getDefaultColors(),legend:getDefaultAreaLegend(),point:getDefaultAreaPoint()}},getDefaultSingleAreaTooltip=function(){return{contents:patternfly.pfGetBarChartTooltipContentsFn()}},getDefaultSingleAreaLegend=function(){return getDefaultSingleLineLegend()};return{getDefaultColors:getDefaultColors,getDefaultBarGrid:getDefaultBarGrid,getDefaultBarTooltip:getDefaultBarTooltip,getDefaultBarLegend:getDefaultBarLegend,getDefaultBarConfig:getDefaultBarConfig,getDefaultGroupedBarGrid:getDefaultGroupedBarGrid,getDefaultGroupedBarLegend:getDefaultGroupedBarLegend,getDefaultGroupedBarConfig:getDefaultGroupedBarConfig,getDefaultStackedBarGrid:getDefaultStackedBarGrid,getDefaultStackedBarLegend:getDefaultStackedBarLegend,getDefaultStackedBarConfig:getDefaultStackedBarConfig,getDefaultDonut:getDefaultDonut,getDefaultDonutSize:getDefaultDonutSize,getDefaultDonutColors:getDefaultDonutColors,getDefaultDonutTooltip:getDefaultDonutTooltip,getDefaultDonutLegend:getDefaultDonutLegend,getDefaultDonutConfig:getDefaultDonutConfig,getDefaultRelationshipDonutConfig:getDefaultRelationshipDonutConfig,getDefaultPie:getDefaultPie,getDefaultPieSize:getDefaultPieSize,getDefaultPieColors:getDefaultPieColors,getDefaultRelationshipDonutColors:getDefaultRelationshipDonutColors,getDefaultPieTooltip:getDefaultPieTooltip,getDefaultPieLegend:getDefaultPieLegend,getDefaultPieConfig:getDefaultPieConfig,getDefaultSparklineArea:getDefaultSparklineArea,getDefaultSparklineSize:getDefaultSparklineSize,getDefaultSparklineAxis:getDefaultSparklineAxis,getDefaultSparklineLegend:getDefaultSparklineLegend,getDefaultSparklinePoint:getDefaultSparklinePoint,getDefaultSparklineTooltip:getDefaultSparklineTooltip,getDefaultSparklineConfig:getDefaultSparklineConfig,getDefaultLineAxis:getDefaultLineAxis,getDefaultLineGrid:getDefaultLineGrid,getDefaultLineLegend:getDefaultLineLegend,getDefaultLinePoint:getDefaultLinePoint,getDefaultLineConfig:getDefaultLineConfig,getDefaultSingleLineTooltip:getDefaultSingleLineTooltip,getDefaultSingleLineConfig:getDefaultSingleLineConfig,getDefaultAreaAxis:getDefaultAreaAxis,getDefaultAreaGrid:getDefaultAreaGrid,getDefaultAreaLegend:getDefaultAreaLegend,getDefaultAreaPoint:getDefaultAreaPoint,getDefaultAreaConfig:getDefaultAreaConfig,getDefaultSingleAreaTooltip:getDefaultSingleAreaTooltip,getDefaultSingleAreaConfig:function(){return{axis:getDefaultAreaAxis(),grid:getDefaultAreaGrid(),color:getDefaultColors(),legend:getDefaultSingleAreaLegend(),point:getDefaultAreaPoint(),tooltip:getDefaultSingleAreaTooltip()}}}}}(window),function($){"use strict";void 0!==patternfly&&($.pfBreakpoints=patternfly.pfBreakpoints)}(jQuery),function($){"use strict";$.fn.pfList=function(){function toggleCollapse(toggle){var $toggle,$expansion,$collapse,$listItem;$toggle=$(toggle),$expansion=$toggle.parentsUntil(".list-pf","[data-list=expansion]").first(),$expansion.length||($expansion=$toggle.closest(".list-pf-item, .list-pf-expansion")),$collapse=$expansion.find(".collapse").first(),$collapse.toggleClass("in"),updateChevron($expansion,$collapse.hasClass("in")),$listItem=$expansion.closest(".list-pf-item"),updateActive($listItem,$listItem.find(".collapse").first().hasClass("in"))}function updateActive($listItem,expanded){expanded?$listItem.addClass("active"):$listItem.removeClass("active")}function updateChevron($expansion,expanded){var $chevron=$expansion.find(".list-pf-chevron .fa").first();expanded?($chevron.removeClass("fa-angle-right"),$chevron.addClass("fa-angle-down")):($chevron.addClass("fa-angle-right"),$chevron.removeClass("fa-angle-down"))}return function(list){list.find("[data-list=expansion], .list-pf-item, .list-pf-expansion").each(function(index,element){var $expansion=$(element),$collapse=$expansion.find(".collapse").first(),expanded=$collapse.hasClass("in");updateChevron($expansion,expanded),$expansion.hasClass("list-pf-item")&&updateActive($expansion,expanded)}),list.find(".list-pf-container").each(function(index,element){var $element=$(element),$toggles=$element.find("[data-list=toggle]");$toggles.length||($toggles=$element),$toggles.on("keydown",function(event){13!==event.keyCode&&32!==event.keyCode||(toggleCollapse(this),event.stopPropagation(),event.preventDefault())}),$toggles.on("click",function(event){toggleCollapse(this),event.stopPropagation(),event.preventDefault()})})}(this),this}}(jQuery),function($){"use strict";$.fn.sidebar=function(){var documentHeight=0,navbarpfHeight=0,colHeight=0;$(".navbar-pf .navbar-toggle").is(":hidden")&&(documentHeight=$(document).height(),navbarpfHeight=$(".navbar-pf").outerHeight(),colHeight=documentHeight-navbarpfHeight),$(".sidebar-pf").parent(".row").children('[class*="col-"]').css({"min-height":colHeight})},$(document).ready(function(){$(".sidebar-pf").length>0&&0===$(".datatable").length&&$.fn.sidebar()}),$(window).resize(function(){$(".sidebar-pf").length>0&&$.fn.sidebar()})}(jQuery),function($){"use strict";$.fn.popovers=function(){return this.popover(),this.filter("[data-close=true]").each(function(index,element){var $this=$(element),title=$this.attr("data-original-title")+'<button type="button" class="close" aria-hidden="true"><span class="pficon pficon-close"></span></button>';$this.attr("data-original-title",title)}),this.on("click",function(e){var $this=$(this),$title=$this.next(".popover").find(".popover-title");$title.find(".close").parent(".popover-title").addClass("closable"),$title.find(".close").on("click",function(){$this.popover("hide")}),e.preventDefault()}),this}}(jQuery),function($){"use strict";$.fn.dataTableExt&&($.extend(!0,$.fn.dataTable.defaults,{bDestroy:!0,bAutoWidth:!1,iDisplayLength:20,sDom:"<'dataTables_header' f i r ><'table-responsive'  t ><'dataTables_footer' p >",oLanguage:{sInfo:"Showing <b>_START_</b> to <b>_END_</b> of <b>_TOTAL_</b> Items",sInfoFiltered:"(of <b>_MAX_</b>)",sInfoEmpty:"Showing <b>0</b> Results",sZeroRecords:"<p>Suggestions</p><ul><li>Check the javascript regular expression syntax of the search term.</li><li>Check that the correct menu option is chosen (token ID vs. user ID).</li><li>Use wildcards (* to match 0 or more characters, + to match 1 or more characters, ? to match 0 or 1 character).</li><li>Clear the search field, then click Search to return to the 20 most recent records.</li></ul>",sSearch:""},sPaginationType:"bootstrap_input",oSearch:{sSearch:"",bRegex:!0,bSmart:!1}}),$.extend($.fn.dataTableExt.oStdClasses,{sWrapper:"dataTables_wrapper"}),$.fn.dataTableExt.oApi.fnPagingInfo=function(oSettings){return{iStart:oSettings._iDisplayStart,iEnd:oSettings.fnDisplayEnd(),iLength:oSettings._iDisplayLength,iTotal:oSettings.fnRecordsTotal(),iFilteredTotal:oSettings.fnRecordsDisplay(),iPage:-1===oSettings._iDisplayLength?0:Math.ceil(oSettings._iDisplayStart/oSettings._iDisplayLength),iTotalPages:-1===oSettings._iDisplayLength?0:Math.ceil(oSettings.fnRecordsDisplay()/oSettings._iDisplayLength)}},$.extend($.fn.dataTableExt.oPagination,{bootstrap_input:{fnInit:function(oSettings,nPaging,fnDraw){var els,nInput,fnClickHandler=function(e){e.preventDefault(),oSettings.oApi._fnPageChange(oSettings,e.data.action)&&fnDraw(oSettings)};$(nPaging).append('<ul class="pagination">  <li class="first disabled"><span class="i fa fa-angle-double-left"></span></li>  <li class="prev disabled"><span class="i fa fa-angle-left"></span></li></ul><div class="pagination-input">  <input type="text" class="paginate_input">  <span class="paginate_of">of <b>3</b></span></div><ul class="pagination">  <li class="next disabled"><span class="i fa fa-angle-right"></span></li>  <li class="last disabled"><span class="i fa fa-angle-double-right"></span></li></ul>'),els=$("li",nPaging),$(els[0]).bind("click.DT",{action:"first"},fnClickHandler),$(els[1]).bind("click.DT",{action:"previous"},fnClickHandler),$(els[2]).bind("click.DT",{action:"next"},fnClickHandler),$(els[3]).bind("click.DT",{action:"last"},fnClickHandler),nInput=$("input",nPaging),$(nInput).keyup(function(e){var iNewStart;if(38===e.which||39===e.which?this.value+=1:(37===e.which||40===e.which)&&this.value>1&&(this.value-=1),""!==this.value&&this.value.match(/[0-9]/)){if((iNewStart=oSettings._iDisplayLength*(this.value-1))>=oSettings.fnRecordsDisplay())return oSettings._iDisplayStart=(Math.ceil((oSettings.fnRecordsDisplay()-1)/oSettings._iDisplayLength)-1)*oSettings._iDisplayLength,void fnDraw(oSettings);oSettings._iDisplayStart=iNewStart,fnDraw(oSettings)}})},fnUpdate:function(oSettings,fnDraw){var i,oPaging=oSettings.oInstance.fnPagingInfo(),an=oSettings.aanFeatures.p,ien=an.length,iPages=Math.ceil(oSettings.fnRecordsDisplay()/oSettings._iDisplayLength),iCurrentPage=Math.ceil(oSettings._iDisplayStart/oSettings._iDisplayLength)+1;for(i=0;i<ien;i+=1)$(".paginate_input",an[i]).val(iCurrentPage).siblings(".paginate_of").find("b").html(iPages),0===oPaging.iPage?($("li.first",an[i]).addClass("disabled"),$("li.prev",an[i]).addClass("disabled")):($("li.first",an[i]).removeClass("disabled"),$("li.prev",an[i]).removeClass("disabled")),oPaging.iPage===oPaging.iTotalPages-1||0===oPaging.iTotalPages?($("li.next",an[i]).addClass("disabled"),$("li.last",an[i]).addClass("disabled")):($("li.next",an[i]).removeClass("disabled"),$("li.last",an[i]).removeClass("disabled"))}}}))}(jQuery),function($){"use strict";$.fn.navigation=function(){var navElement=$(".layout-pf-alt-fixed .nav-pf-vertical-alt"),bodyContentElement=$(".container-pf-alt-nav-pf-vertical-alt"),toggleNavBarButton=$(".navbar-toggle"),explicitCollapse=!1,checkNavState=function(){var width=$(window).width();navElement.removeClass("hidden show-mobile-nav collapsed"),bodyContentElement.removeClass("collapsed-nav hidden-nav"),(width<$.pfBreakpoints.desktop||explicitCollapse)&&(navElement.addClass("collapsed"),bodyContentElement.addClass("collapsed-nav")),width<$.pfBreakpoints.tablet&&(navElement.addClass("hidden"),navElement.removeClass("collapsed"),bodyContentElement.removeClass("collapsed-nav"),bodyContentElement.addClass("hidden-nav"))},collapseMenu=function(){navElement.addClass("collapsed"),bodyContentElement.addClass("collapsed-nav"),explicitCollapse=!0},enableTransitions=function(){$("html").addClass("transitions")},expandMenu=function(){navElement.removeClass("collapsed"),bodyContentElement.removeClass("collapsed-nav"),explicitCollapse=!1},bindMenuBehavior=function(){toggleNavBarButton.on("click",function(e){var inMobileState=bodyContentElement.hasClass("hidden-nav");enableTransitions(),inMobileState&&navElement.hasClass("show-mobile-nav")?navElement.removeClass("show-mobile-nav"):inMobileState?navElement.addClass("show-mobile-nav"):navElement.hasClass("collapsed")?expandMenu():collapseMenu()})},setTooltips=function(){$('.nav-pf-vertical-alt [data-toggle="tooltip"]').tooltip({container:"body",delay:{show:"500",hide:"200"}}),$(".nav-pf-vertical-alt").on("show.bs.tooltip",function(e){return $(this).hasClass("collapsed")})};$(window).on("resize",function(){checkNavState(),enableTransitions()}),function(){checkNavState(),bindMenuBehavior(),setTooltips()}()},$(document).ready(function(){$(".nav-pf-vertical-alt").length>0&&$.fn.navigation()})}(jQuery),function($){"use strict";$.fn.countRemainingChars=function(options){var settings=$.extend({charsMaxLimit:100,charsWarnRemaining:5,blockInputAtMaxLimit:!1},options),$taFld=this,$countFld=$("#"+settings.countFld).text(settings.charsMaxLimit),charsRemainingFn=function(charsLength){var charsRemaining=settings.charsMaxLimit-charsLength;$countFld.text(charsRemaining),$countFld.toggleClass("chars-warn-remaining-pf",charsRemaining<=settings.charsWarnRemaining),charsRemaining<0?$taFld.trigger("overCharsMaxLimitEvent",$taFld.attr("id")):$taFld.trigger("underCharsMaxLimitEvent",$taFld.attr("id"))};return this.on("paste",function(event){setTimeout(function(){var maxTxt,charsLength=$taFld.val().length;settings.blockInputAtMaxLimit&&charsLength>settings.charsMaxLimit&&(maxTxt=$taFld.val(),maxTxt=maxTxt.substring(0,settings.charsMaxLimit),$taFld.val(maxTxt),charsLength=$taFld.val().length),charsRemainingFn(charsLength)},100)}),this.keyup(function(event){charsRemainingFn($taFld.val().length)}),this.keydown(function(event){var charsLength=$taFld.val().length;settings.blockInputAtMaxLimit&&charsLength>=settings.charsMaxLimit&&8!==event.keyCode&&event.preventDefault()}),this}}(jQuery),function($){"use strict";void 0!==patternfly&&($.pfPaletteColors=patternfly.pfPaletteColors)}(jQuery),function($){"use strict";void 0!==patternfly&&($.fn.pfSetDonutChartTitle=patternfly.pfSetDonutChartTitle,$.fn.pfDonutTooltipContents=patternfly.pfDonutTooltipContents,$.fn.pfGetUtilizationDonutTooltipContentsFn=patternfly.pfGetUtilizationDonutTooltipContentsFn,$.fn.pfGetBarChartTooltipContentsFn=patternfly.pfGetBarChartTooltipContentsFn,$.fn.pfSingleLineChartTooltipContentsFn=patternfly.pfSingleLineChartTooltipContentsFn,$.fn.pfPieTooltipContents=patternfly.pfPieTooltipContents,$.fn.c3ChartDefaults=patternfly.c3ChartDefaults)}(jQuery),function($){"use strict";$.fn.initCollapseHeights=function(scrollSelector){var setCollapseHeights,parentElement=this,targetScrollSelector=scrollSelector;setCollapseHeights=function(){var height,openPanel,contentHeight,bodyHeight,overflowY="hidden";height=parentElement.height(),openPanel=parentElement.find(".collapse.in"),openPanel&&openPanel.length>0&&openPanel.removeClass("in"),contentHeight=0,parentElement.children().each($.proxy(function(i,element){var $element=$(element);contentHeight+=$element.outerHeight(!0)},parentElement)).end(),bodyHeight=height-contentHeight,bodyHeight<25&&(bodyHeight=25,overflowY="auto"),openPanel&&openPanel.length>0&&openPanel.addClass("in"),setTimeout(function(){parentElement.find('[data-toggle="collapse"]').each($.proxy(function(i,element){var $element,selector,$target,scrollElement,innerHeight=0;$element=$(element),selector=$element.attr("data-target"),selector||(selector=$element.attr("href")),$target=$(selector),scrollElement=$target,targetScrollSelector&&(scrollElement=$target.find(targetScrollSelector),1===scrollElement.length?(innerHeight=0,$target.children().each($.proxy(function(j,sibling){var $sibling=$(sibling);sibling!==scrollElement[0]&&(innerHeight+=$sibling.outerHeight(!0))},$target)).end(),bodyHeight-=innerHeight):scrollElement=$target),scrollElement.css({"max-height":bodyHeight-innerHeight+"px","overflow-y":"auto"})},parentElement)).end(),parentElement.css({"overflow-y":overflowY})},100)},setCollapseHeights(),$(window).resize(setCollapseHeights)}}(jQuery),function($){"use strict";function getParent(rows,node){var parent=node.attr("data-parent");if("string"==typeof parent)return parent=isNaN(parent)?rows.closest(parent):$(rows[parseInt(parent,10)])}function renderItem(item,parent){parent&&(parent.find(".treegrid-node > span.expand-icon").toggleClass("fa-angle-right",parent.hasClass("collapsed")).toggleClass("fa-angle-down",!parent.hasClass("collapsed")),item.toggleClass("hidden",parent.hasClass("collapsed")),parent.hasClass("collapsed")&&item.addClass("collapsed"))}function reStripe(tree){tree.find("tbody > tr").removeClass("odd"),tree.find("tbody > tr:not(.hidden):odd").addClass("odd")}$.fn.treegrid=function(options){var i,rows,_this;rows=this.find("tbody > tr"),_this=this,$.each(rows,function(){var node,parent;if(node=$(this),parent=getParent(rows,node),node.children(".treegrid-node").prepend('<span class="icon expand-icon fa"/>'),node.children(".treegrid-node").on("click",function(e){var icon=node.find("span.expand-icon");options&&"function"==typeof options.callback&&options.callback(e),icon.hasClass("fa-angle-right")&&node.removeClass("collapsed"),icon.hasClass("fa-angle-down")&&node.addClass("collapsed"),$.each(rows.slice(rows.index(node)+1),function(){renderItem($(this),getParent(rows,$(this)))}),reStripe(_this)}),parent){for(i=parent.find(".treegrid-node > span.indent").length+1;i>0;i-=1)node.children(".treegrid-node").prepend('<span class="indent"/>');renderItem(node,parent)}}),reStripe(_this)}}(jQuery),function($){"use strict";$.fn.setupVerticalNavigation=function(handleItemSelections,ignoreDrawer){var navElement=$(".nav-pf-vertical"),bodyContentElement=$(".container-pf-nav-pf-vertical"),toggleNavBarButton=$(".navbar-toggle"),handleResize=!0,explicitCollapse=!1,subDesktop=!1,inMobileState=function(){return bodyContentElement.hasClass("hidden-nav")},forceResize=function(delay){setTimeout(function(){$(window).trigger("resize")},delay)},showSecondaryMenu=function(){!inMobileState()&&subDesktop||(navElement.addClass("secondary-visible-pf"),bodyContentElement.addClass("secondary-visible-pf")),subDesktop||forceResize(100)},hideSecondaryMenu=function(){navElement.removeClass("secondary-visible-pf"),bodyContentElement.removeClass("secondary-visible-pf"),navElement.find(".secondary-nav-item-pf.is-hover").length<=1&&navElement.removeClass("hover-secondary-nav-pf"),navElement.find(".mobile-nav-item-pf").each(function(index,item){$(item).removeClass("mobile-nav-item-pf")}),navElement.find(".is-hover").each(function(index,item){$(item).removeClass("is-hover")})},hideTertiaryMenu=function(){navElement.removeClass("tertiary-visible-pf"),bodyContentElement.removeClass("tertiary-visible-pf"),navElement.find(".tertiary-nav-item-pf.is-hover").length<=1&&navElement.removeClass("hover-tertiary-nav-pf"),navElement.find(".mobile-nav-item-pf").each(function(index,item){$(item).removeClass("mobile-nav-item-pf")}),navElement.find(".is-hover").each(function(index,item){$(item).removeClass("is-hover")})},setActiveItem=function(item){$(".nav-pf-vertical .list-group-item.active").removeClass("active"),item.addClass("active").parents(".list-group-item").addClass("active")},updateSecondaryMenuDisplayAfterSelection=function(){inMobileState()?(navElement.removeClass("show-mobile-nav"),hideSecondaryMenu(),navElement.find(".mobile-nav-item-pf").each(function(index,item){$(item).removeClass("mobile-nav-item-pf")})):showSecondaryMenu()},updateSecondaryCollapsedState=function(setCollapsed,collapsedItem){setCollapsed?(collapsedItem.addClass("collapsed"),navElement.addClass("collapsed-secondary-nav-pf"),bodyContentElement.addClass("collapsed-secondary-nav-pf")):(collapsedItem?collapsedItem.removeClass("collapsed"):navElement.find('[data-toggle="collapse-secondary-nav"]').each(function(index,element){$(element).removeClass("collapsed")}),navElement.removeClass("collapsed-secondary-nav-pf"),bodyContentElement.removeClass("collapsed-secondary-nav-pf"))},updateTertiaryCollapsedState=function(setCollapsed,collapsedItem){setCollapsed?(collapsedItem.addClass("collapsed"),navElement.addClass("collapsed-tertiary-nav-pf"),bodyContentElement.addClass("collapsed-tertiary-nav-pf"),updateSecondaryCollapsedState(!1)):(collapsedItem?collapsedItem.removeClass("collapsed"):navElement.find('[data-toggle="collapse-tertiary-nav"]').each(function(index,element){$(element).removeClass("collapsed")}),navElement.removeClass("collapsed-tertiary-nav-pf"),bodyContentElement.removeClass("collapsed-tertiary-nav-pf"))},updateMobileMenu=function(selected,secondaryItem){$(document).find(".list-group-item.mobile-nav-item-pf").each(function(index,item){$(item).removeClass("mobile-nav-item-pf")}),$(document).find(".list-group-item.mobile-secondary-item-pf").each(function(index,item){$(item).removeClass("mobile-secondary-item-pf")}),selected?(selected.addClass("mobile-nav-item-pf"),secondaryItem?(secondaryItem.addClass("mobile-secondary-item-pf"),navElement.removeClass("show-mobile-secondary"),navElement.addClass("show-mobile-tertiary")):(navElement.addClass("show-mobile-secondary"),navElement.removeClass("show-mobile-tertiary"))):(navElement.removeClass("show-mobile-secondary"),navElement.removeClass("show-mobile-tertiary"))},enterMobileState=function(){navElement.hasClass("hidden")||(navElement.addClass("hidden"),navElement.removeClass("collapsed"),bodyContentElement.removeClass("collapsed-nav"),bodyContentElement.addClass("hidden-nav"),updateSecondaryCollapsedState(!1),updateTertiaryCollapsedState(!1),explicitCollapse=!1)},exitMobileState=function(){navElement.removeClass("hidden show-mobile-nav"),bodyContentElement.removeClass("hidden-nav")},checkNavState=function(){var makeSecondaryVisible,width=$(window).width();handleResize&&(width<$.pfBreakpoints.tablet&&!explicitCollapse?enterMobileState():navElement.hasClass("hidden")&&exitMobileState(),width<$.pfBreakpoints.desktop?(subDesktop||(navElement.addClass("collapsed"),bodyContentElement.addClass("collapsed-nav")),width>=$.pfBreakpoints.tablet&&hideSecondaryMenu(),subDesktop=!0):(makeSecondaryVisible=subDesktop&&navElement.find(".secondary-nav-item-pf.active").length>0,subDesktop=!1,makeSecondaryVisible&&showSecondaryMenu()),explicitCollapse?(navElement.addClass("collapsed"),bodyContentElement.addClass("collapsed-nav")):(navElement.removeClass("collapsed"),bodyContentElement.removeClass("collapsed-nav")))},collapseMenu=function(){navElement.addClass("collapsed"),bodyContentElement.addClass("collapsed-nav"),subDesktop&&hideSecondaryMenu(),explicitCollapse=!0},enableTransitions=function(){$("html").addClass("transitions")},expandMenu=function(){navElement.removeClass("collapsed"),bodyContentElement.removeClass("collapsed-nav"),explicitCollapse=!1,subDesktop||forceResize(100)},bindMenuBehavior=function(){toggleNavBarButton.on("click",function(e){var $drawer;enableTransitions(),inMobileState()?navElement.hasClass("show-mobile-nav")?navElement.removeClass("show-mobile-nav"):(updateMobileMenu(),navElement.addClass("show-mobile-nav"),ignoreDrawer||($drawer=$(".drawer-pf"),$drawer.length&&($(".drawer-pf-trigger").removeClass("open"),$drawer.addClass("hide")))):navElement.hasClass("collapsed")?(window.localStorage.setItem("patternfly-navigation-primary","expanded"),expandMenu()):(window.localStorage.setItem("patternfly-navigation-primary","collapsed"),collapseMenu())})},forceHideSecondaryMenu=function(){navElement.addClass("force-hide-secondary-nav-pf"),setTimeout(function(){navElement.removeClass("force-hide-secondary-nav-pf")},500)},bindMenuItemsBehavior=function(handleSelection){$(document).find(".nav-pf-vertical .list-group-item").each(function(index,item){var onClickFn,$item=$(item),$nav=$item.closest('[class*="nav-pf-"]');$nav.hasClass("nav-pf-vertical")?onClickFn=function(event){var $secondaryItem,$activeItem,$this=$(this);$this.hasClass("secondary-nav-item-pf")?inMobileState()?updateMobileMenu($this):handleSelection&&($activeItem=$secondaryItem=$item.find(".nav-pf-secondary-nav > .list-group > .list-group-item").eq(0),$secondaryItem.hasClass("tertiary-nav-item-pf")&&($activeItem=$secondaryItem.find(".nav-pf-tertiary-nav > .list-group > .list-group-item").eq(0)),setActiveItem($activeItem),event.stopImmediatePropagation()):(hideSecondaryMenu(),inMobileState()&&(updateMobileMenu(),navElement.removeClass("show-mobile-nav")),handleSelection&&(setActiveItem($this),event.stopImmediatePropagation()))}:$nav.hasClass("nav-pf-secondary-nav")?onClickFn=function(event){var $tertiaryItem,$primaryItem,$this=$(this);$this.hasClass("tertiary-nav-item-pf")?inMobileState()?($primaryItem=$item.parents(".list-group-item"),updateMobileMenu($this,$primaryItem),event.stopImmediatePropagation()):handleSelection&&($tertiaryItem=$item.find(".nav-pf-tertiary-nav > .list-group > .list-group-item").eq(0),setActiveItem($tertiaryItem),event.stopImmediatePropagation()):(inMobileState()&&(updateMobileMenu(),navElement.removeClass("show-mobile-nav")),updateSecondaryMenuDisplayAfterSelection(),handleSelection&&(setActiveItem($item),hideSecondaryMenu(),event.stopImmediatePropagation()))}:$nav.hasClass("nav-pf-tertiary-nav")&&(onClickFn=function(event){inMobileState()&&(updateMobileMenu(),navElement.removeClass("show-mobile-nav")),updateSecondaryMenuDisplayAfterSelection(),handleSelection&&(setActiveItem($item),hideTertiaryMenu(),hideSecondaryMenu(),event.stopImmediatePropagation())}),$item.on("click.pf.secondarynav.data-api",onClickFn)}),
 $(document).find(".secondary-nav-item-pf").each(function(index,secondaryItem){var $secondaryItem=$(secondaryItem);$secondaryItem.on("click.pf.secondarynav.data-api",'[data-toggle="collapse-secondary-nav"]',function(e){var $this=$(this);inMobileState()?(updateMobileMenu(),e.stopImmediatePropagation()):$this.hasClass("collapsed")?(window.localStorage.setItem("patternfly-navigation-secondary","expanded"),window.localStorage.setItem("patternfly-navigation-tertiary","expanded"),updateSecondaryCollapsedState(!1,$this),forceHideSecondaryMenu()):(window.localStorage.setItem("patternfly-navigation-secondary","collapsed"),updateSecondaryCollapsedState(!0,$this)),navElement.removeClass("hover-secondary-nav-pf"),handleSelection&&e.stopImmediatePropagation()}),$secondaryItem.find(".tertiary-nav-item-pf").each(function(index,primaryItem){$(primaryItem).on("click.pf.tertiarynav.data-api",'[data-toggle="collapse-tertiary-nav"]',function(e){var $this=$(this);inMobileState()?(updateMobileMenu($secondaryItem),e.stopImmediatePropagation()):$this.hasClass("collapsed")?(window.localStorage.setItem("patternfly-navigation-secondary","expanded"),window.localStorage.setItem("patternfly-navigation-tertiary","expanded"),updateTertiaryCollapsedState(!1,$this),forceHideSecondaryMenu()):(window.localStorage.setItem("patternfly-navigation-tertiary","collapsed"),updateTertiaryCollapsedState(!0,$this)),navElement.removeClass("hover-secondary-nav-pf"),navElement.removeClass("hover-tertiary-nav-pf"),handleSelection&&e.stopImmediatePropagation()})})}),$(document).on("mouseenter.pf.tertiarynav.data-api",".secondary-nav-item-pf",function(e){var $this=$(this);inMobileState()||(void 0!==$this[0].navUnHoverTimeout?(clearTimeout($this[0].navUnHoverTimeout),$this[0].navUnHoverTimeout=void 0):void 0===$this[0].navHoverTimeout&&($this[0].navHoverTimeout=setTimeout(function(){navElement.addClass("hover-secondary-nav-pf"),$this.addClass("is-hover"),$this[0].navHoverTimeout=void 0},500)))}),$(document).on("mouseleave.pf.tertiarynav.data-api",".secondary-nav-item-pf",function(e){var $this=$(this);void 0!==$this[0].navHoverTimeout?(clearTimeout($this[0].navHoverTimeout),$this[0].navHoverTimeout=void 0):void 0===$this[0].navUnHoverTimeout&&navElement.find(".secondary-nav-item-pf.is-hover").length>0&&($this[0].navUnHoverTimeout=setTimeout(function(){navElement.find(".secondary-nav-item-pf.is-hover").length<=1&&navElement.removeClass("hover-secondary-nav-pf"),$this.removeClass("is-hover"),$this[0].navUnHoverTimeout=void 0},700))}),$(document).on("mouseover.pf.tertiarynav.data-api",".tertiary-nav-item-pf",function(e){var $this=$(this);inMobileState()||(void 0!==$this[0].navUnHoverTimeout?(clearTimeout($this[0].navUnHoverTimeout),$this[0].navUnHoverTimeout=void 0):void 0===$this[0].navHoverTimeout&&($this[0].navHoverTimeout=setTimeout(function(){navElement.addClass("hover-tertiary-nav-pf"),$this.addClass("is-hover"),$this[0].navHoverTimeout=void 0},500)))}),$(document).on("mouseout.pf.tertiarynav.data-api",".tertiary-nav-item-pf",function(e){var $this=$(this);void 0!==$this[0].navHoverTimeout?(clearTimeout($this[0].navHoverTimeout),$this[0].navHoverTimeout=void 0):void 0===$this[0].navUnHoverTimeout&&($this[0].navUnHoverTimeout=setTimeout(function(){navElement.find(".tertiary-nav-item-pf.is-hover").length<=1&&navElement.removeClass("hover-tertiary-nav-pf"),$this.removeClass("is-hover"),$this[0].navUnHoverTimeout=void 0},700))})},loadFromLocalStorage=function(){inMobileState()||("collapsed"===window.localStorage.getItem("patternfly-navigation-primary")&&collapseMenu(),$(".nav-pf-vertical.nav-pf-vertical-collapsible-menus").length>0&&("collapsed"===window.localStorage.getItem("patternfly-navigation-secondary")&&updateSecondaryCollapsedState(!0,$(".secondary-nav-item-pf.active [data-toggle=collapse-secondary-nav]")),"collapsed"===window.localStorage.getItem("patternfly-navigation-tertiary")&&updateTertiaryCollapsedState(!0,$(".tertiary-nav-item-pf.active [data-toggle=collapse-tertiary-nav]"))))},setTooltips=function(){var tooltipOptions={container:"body",placement:"bottom",delay:{show:"500",hide:"200"},template:'<div class="nav-pf-vertical-tooltip tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'};$('.nav-pf-vertical [data-toggle="tooltip"]').tooltip(tooltipOptions),$(".nav-pf-vertical").on("show.bs.tooltip",function(e){return $(this).hasClass("collapsed")})},self={hideMenu:function(){handleResize=!1,enterMobileState()},showMenu:function(){handleResize=!0,exitMobileState()},isVisible:function(){return handleResize}};return $.fn.setupVerticalNavigation.self||($.fn.setupVerticalNavigation.self=self,$(window).on("resize",function(){checkNavState(),enableTransitions()}),function(handleItemSelections){navElement.addClass("hide-nav-pf"),bodyContentElement.addClass("hide-nav-pf"),checkNavState(),bindMenuBehavior(),bindMenuItemsBehavior(handleItemSelections),setTooltips(),loadFromLocalStorage(),navElement.removeClass("hide-nav-pf"),bodyContentElement.removeClass("hide-nav-pf"),forceResize(250)}(handleItemSelections)),$.fn.setupVerticalNavigation.self}}(jQuery);
\ No newline at end of file
diff --git a/themes/src/main/node_modules/patternfly/dist/js/patternfly-settings.js b/themes/src/main/node_modules/patternfly/dist/js/patternfly-settings.js
index 5c179d2..f12840f 100644
--- a/themes/src/main/node_modules/patternfly/dist/js/patternfly-settings.js
+++ b/themes/src/main/node_modules/patternfly/dist/js/patternfly-settings.js
@@ -2,7 +2,7 @@
   'use strict';
 
   var patternfly = {
-    version: "3.38.0"
+    version: "3.41.6"
   };
 
   // definition of breakpoint sizes for tablet and desktop modes
diff --git a/themes/src/main/node_modules/patternfly/dist/js/patternfly-settings.min.js b/themes/src/main/node_modules/patternfly/dist/js/patternfly-settings.min.js
index 0db0738..26637e3 100644
--- a/themes/src/main/node_modules/patternfly/dist/js/patternfly-settings.min.js
+++ b/themes/src/main/node_modules/patternfly/dist/js/patternfly-settings.min.js
@@ -1 +1 @@
-!function(window){"use strict";var patternfly={version:"3.38.0"};patternfly.pfBreakpoints={tablet:768,desktop:1200},window.patternfly=patternfly}(window),function(window){"use strict";patternfly.pfPaletteColors={black:"#030303",black100:"#fafafa",black200:"#ededed",black300:"#d1d1d1",black400:"#bbbbbb",black500:"#8b8d8f",black600:"#72767b",black700:"#4d5258",black800:"#393f44",black900:"#292e34",blue:"#0088ce",blue100:"#bee1f4",blue200:"#7dc3e8",blue300:"#39a5dc",blue400:"#0088ce",blue500:"#00659c",blue600:"#004368",blue700:"#002235",gold:"#f0ab00",gold100:"#fbeabc",gold200:"#f9d67a",gold300:"#f5c12e",gold400:"#f0ab00",gold500:"#b58100",gold600:"#795600",gold700:"#3d2c00",orange:"#ec7a08",orange100:"#fbdebf",orange200:"#f7bd7f",orange300:"#f39d3c",orange400:"#ec7a08",orange500:"#b35c00",orange600:"#773d00",orange700:"#3b1f00",lightBlue:"#00b9e4",lightBlue100:"#beedf9",lightBlue200:"#7cdbf3",lightBlue300:"#35caed",lightBlue400:"#00b9e4",lightBlue500:"#008bad",lightBlue600:"#005c73",lightBlue700:"#002d39",green:"#3f9c35",green100:"#cfe7cd",green200:"#9ecf99",green300:"#6ec664",green400:"#3f9c35",green500:"#2d7623",green600:"#1e4f18",green700:"#0f280d",lightGreen:"#92d400",lightGreen100:"#e4f5bc",lightGreen200:"#c8eb79",lightGreen300:"#ace12e",lightGreen400:"#92d400",lightGreen500:"#6ca100",lightGreen600:"#486b00",lightGreen700:"#253600",cyan:"#007a87",cyan100:"#bedee1",cyan200:"#7dbdc3",cyan300:"#3a9ca6",cyan400:"#007a87",cyan500:"#005c66",cyan600:"#003d44",cyan700:"#001f22",purple:"#703fec",purple100:"#c7bfff",purple200:"#a18fff",purple300:"#8461f7",purple400:"#703fec",purple500:"#582fc0",purple600:"#40199a",purple700:"#1f0066",red:"#cc0000",red100:"#cc0000",red200:"#a30000",red300:"#8b0000",red400:"#470000",red500:"#2c0000"}}(window),function(window){"use strict";patternfly.pfSetDonutChartTitle=function(selector,primary,secondary){var donutChartRightTitle=window.d3.select(selector).select("text.c3-chart-arcs-title");donutChartRightTitle.text(""),donutChartRightTitle.insert("tspan").text(primary).classed("donut-title-big-pf",!0).attr("dy",0).attr("x",0),donutChartRightTitle.insert("tspan").text(secondary).classed("donut-title-small-pf",!0).attr("dy",20).attr("x",0)},patternfly.pfDonutTooltipContents=function(d,defaultTitleFormat,defaultValueFormat,color){return'<table class="c3-tooltip">  <tr>    <td><span style="background-color:'+color(d[0].id)+'"></span><strong>'+d[0].value+"</strong> "+d[0].name+"</td>    <td>"+Math.round(1e3*d[0].ratio)/10+"%</td>  </tr></table>"},patternfly.pfGetUtilizationDonutTooltipContentsFn=function(units){return function(d){return'<span class="donut-tooltip-pf" style="white-space: nowrap;">'+Math.round(1e3*d[0].ratio)/10+"% "+units+" "+d[0].name+"</span>"}},patternfly.pfGetBarChartTooltipContentsFn=function(categories){return function(d){return'<table class="c3-tooltip">  <tr>    <td><strong>'+(categories?categories[d[0].index]:d[0].index)+":</td>    <td>"+d[0].value+"</td>  </tr></table>"}},patternfly.pfSingleLineChartTooltipContentsFn=function(categories){return function(d){return'<table class="c3-tooltip">  <tr>    <td><strong>'+(categories?categories[d[0].index]:d[0].index)+":</td>    <td>"+d[0].value+"</td>  </tr></table>"}},patternfly.pfPieTooltipContents=function(d,defaultTitleFormat,defaultValueFormat,color){return patternfly.pfDonutTooltipContents(d,defaultTitleFormat,defaultValueFormat,color)},patternfly.c3ChartDefaults=function(){var getDefaultColors=function(){return{pattern:[patternfly.pfPaletteColors.blue,patternfly.pfPaletteColors.blue300,patternfly.pfPaletteColors.green,patternfly.pfPaletteColors.orange,patternfly.pfPaletteColors.red]}},getDefaultBarGrid=function(){return{y:{show:!0}}},getDefaultBarTooltip=function(categories){return{contents:patternfly.pfGetBarChartTooltipContentsFn(categories)}},getDefaultBarLegend=function(){return{show:!1}},getDefaultBarConfig=function(categories){return{color:this.getDefaultColors(),grid:this.getDefaultBarGrid(),tooltip:this.getDefaultBarTooltip(categories),legend:this.getDefaultBarLegend()}},getDefaultGroupedBarGrid=function(){return{y:{show:!0}}},getDefaultGroupedBarLegend=function(){return{show:!0,position:"bottom"}},getDefaultGroupedBarConfig=function(){return{color:this.getDefaultColors(),grid:this.getDefaultGroupedBarGrid(),legend:this.getDefaultGroupedBarLegend()}},getDefaultStackedBarGrid=function(){return{y:{show:!0}}},getDefaultStackedBarLegend=function(){return{show:!0,position:"bottom"}},getDefaultStackedBarConfig=function(){return{color:this.getDefaultColors(),grid:this.getDefaultStackedBarGrid(),legend:this.getDefaultStackedBarLegend()}},getDefaultDonut=function(title){return{title:title,label:{show:!1},width:11}},getDefaultDonutSize=function(){return{height:171}},getDefaultDonutColors=function(){return{pattern:[patternfly.pfPaletteColors.blue,patternfly.pfPaletteColors.black300]}},getDefaultRelationshipDonutColors=function(){return{pattern:[patternfly.pfPaletteColors.blue,patternfly.pfPaletteColors.red100,patternfly.pfPaletteColors.orange400,patternfly.pfPaletteColors.green400,patternfly.pfPaletteColors.cyan500,patternfly.pfPaletteColors.gold200]}},getDefaultDonutTooltip=function(){return{show:!1}},getDefaultDonutLegend=function(){return{show:!1}},getDefaultDonutConfig=function(title){return{donut:this.getDefaultDonut(title),size:this.getDefaultDonutSize(),legend:this.getDefaultDonutLegend(),color:this.getDefaultDonutColors(),tooltip:this.getDefaultDonutTooltip()}},getDefaultRelationshipDonutConfig=function(title){return{donut:this.getDefaultDonut(title),size:this.getDefaultDonutSize(),legend:this.getDefaultDonutLegend(),color:this.getDefaultRelationshipDonutColors(),tooltip:this.getDefaultDonutTooltip()}},getDefaultPie=function(){return{expand:!0,label:{show:!1}}},getDefaultPieSize=function(){return{height:171}},getDefaultPieColors=function(){return{pattern:[patternfly.pfPaletteColors.blue,patternfly.pfPaletteColors.black300]}},getDefaultPieTooltip=function(){return{contents:patternfly.pfPieTooltipContents}},getDefaultPieLegend=function(){return{show:!1}},getDefaultPieConfig=function(){return{pie:this.getDefaultPie(),size:this.getDefaultPieSize(),legend:this.getDefaultPieLegend(),color:this.getDefaultPieColors(),tooltip:this.getDefaultPieTooltip()}},getDefaultSparklineArea=function(){return{zerobased:!0}},getDefaultSparklineSize=function(){return{height:60}},getDefaultSparklineAxis=function(){return{x:{show:!1},y:{show:!1}}},getDefaultSparklineLegend=function(){return{show:!1}},getDefaultSparklinePoint=function(){return{r:1,focus:{expand:{r:4}}}},getDefaultSparklineTooltip=function(){return{contents:function(d){return'<span class="c3-tooltip-sparkline">'+d[0].value+" "+d[0].name+"</span>"}}},getDefaultSparklineConfig=function(){return{area:getDefaultSparklineArea(),size:getDefaultSparklineSize(),axis:getDefaultSparklineAxis(),color:getDefaultColors(),legend:getDefaultSparklineLegend(),point:getDefaultSparklinePoint(),tooltip:getDefaultSparklineTooltip()}},getDefaultLineAxis=function(){return{x:{show:!0},y:{show:!0}}},getDefaultLineGrid=function(){return{x:{show:!1},y:{show:!0}}},getDefaultLineLegend=function(){return{show:!0}},getDefaultLinePoint=function(){return{r:3,focus:{expand:{r:5}}}},getDefaultLineConfig=function(){return{axis:getDefaultLineAxis(),grid:getDefaultLineGrid(),color:getDefaultColors(),legend:getDefaultLineLegend(),point:getDefaultLinePoint()}},getDefaultSingleLineTooltip=function(){return{contents:patternfly.pfGetBarChartTooltipContentsFn()}},getDefaultSingleLineLegend=function(){return{show:!1}},getDefaultSingleLineConfig=function(){return{axis:getDefaultLineAxis(),grid:getDefaultLineGrid(),color:getDefaultColors(),legend:getDefaultSingleLineLegend(),point:getDefaultLinePoint(),tooltip:getDefaultSingleLineTooltip()}},getDefaultAreaAxis=function(){return getDefaultLineAxis()},getDefaultAreaGrid=function(){return getDefaultLineGrid()},getDefaultAreaLegend=function(){return getDefaultLineLegend()},getDefaultAreaPoint=function(){return getDefaultLinePoint()},getDefaultAreaConfig=function(){return{axis:getDefaultAreaAxis(),grid:getDefaultAreaGrid(),color:getDefaultColors(),legend:getDefaultAreaLegend(),point:getDefaultAreaPoint()}},getDefaultSingleAreaTooltip=function(){return{contents:patternfly.pfGetBarChartTooltipContentsFn()}},getDefaultSingleAreaLegend=function(){return getDefaultSingleLineLegend()};return{getDefaultColors:getDefaultColors,getDefaultBarGrid:getDefaultBarGrid,getDefaultBarTooltip:getDefaultBarTooltip,getDefaultBarLegend:getDefaultBarLegend,getDefaultBarConfig:getDefaultBarConfig,getDefaultGroupedBarGrid:getDefaultGroupedBarGrid,getDefaultGroupedBarLegend:getDefaultGroupedBarLegend,getDefaultGroupedBarConfig:getDefaultGroupedBarConfig,getDefaultStackedBarGrid:getDefaultStackedBarGrid,getDefaultStackedBarLegend:getDefaultStackedBarLegend,getDefaultStackedBarConfig:getDefaultStackedBarConfig,getDefaultDonut:getDefaultDonut,getDefaultDonutSize:getDefaultDonutSize,getDefaultDonutColors:getDefaultDonutColors,getDefaultDonutTooltip:getDefaultDonutTooltip,getDefaultDonutLegend:getDefaultDonutLegend,getDefaultDonutConfig:getDefaultDonutConfig,getDefaultRelationshipDonutConfig:getDefaultRelationshipDonutConfig,getDefaultPie:getDefaultPie,getDefaultPieSize:getDefaultPieSize,getDefaultPieColors:getDefaultPieColors,getDefaultRelationshipDonutColors:getDefaultRelationshipDonutColors,getDefaultPieTooltip:getDefaultPieTooltip,getDefaultPieLegend:getDefaultPieLegend,getDefaultPieConfig:getDefaultPieConfig,getDefaultSparklineArea:getDefaultSparklineArea,getDefaultSparklineSize:getDefaultSparklineSize,getDefaultSparklineAxis:getDefaultSparklineAxis,getDefaultSparklineLegend:getDefaultSparklineLegend,getDefaultSparklinePoint:getDefaultSparklinePoint,getDefaultSparklineTooltip:getDefaultSparklineTooltip,getDefaultSparklineConfig:getDefaultSparklineConfig,getDefaultLineAxis:getDefaultLineAxis,getDefaultLineGrid:getDefaultLineGrid,getDefaultLineLegend:getDefaultLineLegend,getDefaultLinePoint:getDefaultLinePoint,getDefaultLineConfig:getDefaultLineConfig,getDefaultSingleLineTooltip:getDefaultSingleLineTooltip,getDefaultSingleLineConfig:getDefaultSingleLineConfig,getDefaultAreaAxis:getDefaultAreaAxis,getDefaultAreaGrid:getDefaultAreaGrid,getDefaultAreaLegend:getDefaultAreaLegend,getDefaultAreaPoint:getDefaultAreaPoint,getDefaultAreaConfig:getDefaultAreaConfig,getDefaultSingleAreaTooltip:getDefaultSingleAreaTooltip,getDefaultSingleAreaConfig:function(){return{axis:getDefaultAreaAxis(),grid:getDefaultAreaGrid(),color:getDefaultColors(),legend:getDefaultSingleAreaLegend(),point:getDefaultAreaPoint(),tooltip:getDefaultSingleAreaTooltip()}}}}}(window);
\ No newline at end of file
+!function(window){"use strict";var patternfly={version:"3.41.6"};patternfly.pfBreakpoints={tablet:768,desktop:1200},window.patternfly=patternfly}(window),function(window){"use strict";patternfly.pfPaletteColors={black:"#030303",black100:"#fafafa",black200:"#ededed",black300:"#d1d1d1",black400:"#bbbbbb",black500:"#8b8d8f",black600:"#72767b",black700:"#4d5258",black800:"#393f44",black900:"#292e34",blue:"#0088ce",blue100:"#bee1f4",blue200:"#7dc3e8",blue300:"#39a5dc",blue400:"#0088ce",blue500:"#00659c",blue600:"#004368",blue700:"#002235",gold:"#f0ab00",gold100:"#fbeabc",gold200:"#f9d67a",gold300:"#f5c12e",gold400:"#f0ab00",gold500:"#b58100",gold600:"#795600",gold700:"#3d2c00",orange:"#ec7a08",orange100:"#fbdebf",orange200:"#f7bd7f",orange300:"#f39d3c",orange400:"#ec7a08",orange500:"#b35c00",orange600:"#773d00",orange700:"#3b1f00",lightBlue:"#00b9e4",lightBlue100:"#beedf9",lightBlue200:"#7cdbf3",lightBlue300:"#35caed",lightBlue400:"#00b9e4",lightBlue500:"#008bad",lightBlue600:"#005c73",lightBlue700:"#002d39",green:"#3f9c35",green100:"#cfe7cd",green200:"#9ecf99",green300:"#6ec664",green400:"#3f9c35",green500:"#2d7623",green600:"#1e4f18",green700:"#0f280d",lightGreen:"#92d400",lightGreen100:"#e4f5bc",lightGreen200:"#c8eb79",lightGreen300:"#ace12e",lightGreen400:"#92d400",lightGreen500:"#6ca100",lightGreen600:"#486b00",lightGreen700:"#253600",cyan:"#007a87",cyan100:"#bedee1",cyan200:"#7dbdc3",cyan300:"#3a9ca6",cyan400:"#007a87",cyan500:"#005c66",cyan600:"#003d44",cyan700:"#001f22",purple:"#703fec",purple100:"#c7bfff",purple200:"#a18fff",purple300:"#8461f7",purple400:"#703fec",purple500:"#582fc0",purple600:"#40199a",purple700:"#1f0066",red:"#cc0000",red100:"#cc0000",red200:"#a30000",red300:"#8b0000",red400:"#470000",red500:"#2c0000"}}(window),function(window){"use strict";patternfly.pfSetDonutChartTitle=function(selector,primary,secondary){var donutChartRightTitle=window.d3.select(selector).select("text.c3-chart-arcs-title");donutChartRightTitle.text(""),donutChartRightTitle.insert("tspan").text(primary).classed("donut-title-big-pf",!0).attr("dy",0).attr("x",0),donutChartRightTitle.insert("tspan").text(secondary).classed("donut-title-small-pf",!0).attr("dy",20).attr("x",0)},patternfly.pfDonutTooltipContents=function(d,defaultTitleFormat,defaultValueFormat,color){return'<table class="c3-tooltip">  <tr>    <td><span style="background-color:'+color(d[0].id)+'"></span><strong>'+d[0].value+"</strong> "+d[0].name+"</td>    <td>"+Math.round(1e3*d[0].ratio)/10+"%</td>  </tr></table>"},patternfly.pfGetUtilizationDonutTooltipContentsFn=function(units){return function(d){return'<span class="donut-tooltip-pf" style="white-space: nowrap;">'+Math.round(1e3*d[0].ratio)/10+"% "+units+" "+d[0].name+"</span>"}},patternfly.pfGetBarChartTooltipContentsFn=function(categories){return function(d){return'<table class="c3-tooltip">  <tr>    <td><strong>'+(categories?categories[d[0].index]:d[0].index)+":</td>    <td>"+d[0].value+"</td>  </tr></table>"}},patternfly.pfSingleLineChartTooltipContentsFn=function(categories){return function(d){return'<table class="c3-tooltip">  <tr>    <td><strong>'+(categories?categories[d[0].index]:d[0].index)+":</td>    <td>"+d[0].value+"</td>  </tr></table>"}},patternfly.pfPieTooltipContents=function(d,defaultTitleFormat,defaultValueFormat,color){return patternfly.pfDonutTooltipContents(d,defaultTitleFormat,defaultValueFormat,color)},patternfly.c3ChartDefaults=function(){var getDefaultColors=function(){return{pattern:[patternfly.pfPaletteColors.blue,patternfly.pfPaletteColors.blue300,patternfly.pfPaletteColors.green,patternfly.pfPaletteColors.orange,patternfly.pfPaletteColors.red]}},getDefaultBarGrid=function(){return{y:{show:!0}}},getDefaultBarTooltip=function(categories){return{contents:patternfly.pfGetBarChartTooltipContentsFn(categories)}},getDefaultBarLegend=function(){return{show:!1}},getDefaultBarConfig=function(categories){return{color:this.getDefaultColors(),grid:this.getDefaultBarGrid(),tooltip:this.getDefaultBarTooltip(categories),legend:this.getDefaultBarLegend()}},getDefaultGroupedBarGrid=function(){return{y:{show:!0}}},getDefaultGroupedBarLegend=function(){return{show:!0,position:"bottom"}},getDefaultGroupedBarConfig=function(){return{color:this.getDefaultColors(),grid:this.getDefaultGroupedBarGrid(),legend:this.getDefaultGroupedBarLegend()}},getDefaultStackedBarGrid=function(){return{y:{show:!0}}},getDefaultStackedBarLegend=function(){return{show:!0,position:"bottom"}},getDefaultStackedBarConfig=function(){return{color:this.getDefaultColors(),grid:this.getDefaultStackedBarGrid(),legend:this.getDefaultStackedBarLegend()}},getDefaultDonut=function(title){return{title:title,label:{show:!1},width:11}},getDefaultDonutSize=function(){return{height:171}},getDefaultDonutColors=function(){return{pattern:[patternfly.pfPaletteColors.blue,patternfly.pfPaletteColors.black300]}},getDefaultRelationshipDonutColors=function(){return{pattern:[patternfly.pfPaletteColors.blue,patternfly.pfPaletteColors.red100,patternfly.pfPaletteColors.orange400,patternfly.pfPaletteColors.green400,patternfly.pfPaletteColors.cyan500,patternfly.pfPaletteColors.gold200]}},getDefaultDonutTooltip=function(){return{show:!1}},getDefaultDonutLegend=function(){return{show:!1}},getDefaultDonutConfig=function(title){return{donut:this.getDefaultDonut(title),size:this.getDefaultDonutSize(),legend:this.getDefaultDonutLegend(),color:this.getDefaultDonutColors(),tooltip:this.getDefaultDonutTooltip()}},getDefaultRelationshipDonutConfig=function(title){return{donut:this.getDefaultDonut(title),size:this.getDefaultDonutSize(),legend:this.getDefaultDonutLegend(),color:this.getDefaultRelationshipDonutColors(),tooltip:this.getDefaultDonutTooltip()}},getDefaultPie=function(){return{expand:!0,label:{show:!1}}},getDefaultPieSize=function(){return{height:171}},getDefaultPieColors=function(){return{pattern:[patternfly.pfPaletteColors.blue,patternfly.pfPaletteColors.black300]}},getDefaultPieTooltip=function(){return{contents:patternfly.pfPieTooltipContents}},getDefaultPieLegend=function(){return{show:!1}},getDefaultPieConfig=function(){return{pie:this.getDefaultPie(),size:this.getDefaultPieSize(),legend:this.getDefaultPieLegend(),color:this.getDefaultPieColors(),tooltip:this.getDefaultPieTooltip()}},getDefaultSparklineArea=function(){return{zerobased:!0}},getDefaultSparklineSize=function(){return{height:60}},getDefaultSparklineAxis=function(){return{x:{show:!1},y:{show:!1}}},getDefaultSparklineLegend=function(){return{show:!1}},getDefaultSparklinePoint=function(){return{r:1,focus:{expand:{r:4}}}},getDefaultSparklineTooltip=function(){return{contents:function(d){return'<span class="c3-tooltip-sparkline">'+d[0].value+" "+d[0].name+"</span>"}}},getDefaultSparklineConfig=function(){return{area:getDefaultSparklineArea(),size:getDefaultSparklineSize(),axis:getDefaultSparklineAxis(),color:getDefaultColors(),legend:getDefaultSparklineLegend(),point:getDefaultSparklinePoint(),tooltip:getDefaultSparklineTooltip()}},getDefaultLineAxis=function(){return{x:{show:!0},y:{show:!0}}},getDefaultLineGrid=function(){return{x:{show:!1},y:{show:!0}}},getDefaultLineLegend=function(){return{show:!0}},getDefaultLinePoint=function(){return{r:3,focus:{expand:{r:5}}}},getDefaultLineConfig=function(){return{axis:getDefaultLineAxis(),grid:getDefaultLineGrid(),color:getDefaultColors(),legend:getDefaultLineLegend(),point:getDefaultLinePoint()}},getDefaultSingleLineTooltip=function(){return{contents:patternfly.pfGetBarChartTooltipContentsFn()}},getDefaultSingleLineLegend=function(){return{show:!1}},getDefaultSingleLineConfig=function(){return{axis:getDefaultLineAxis(),grid:getDefaultLineGrid(),color:getDefaultColors(),legend:getDefaultSingleLineLegend(),point:getDefaultLinePoint(),tooltip:getDefaultSingleLineTooltip()}},getDefaultAreaAxis=function(){return getDefaultLineAxis()},getDefaultAreaGrid=function(){return getDefaultLineGrid()},getDefaultAreaLegend=function(){return getDefaultLineLegend()},getDefaultAreaPoint=function(){return getDefaultLinePoint()},getDefaultAreaConfig=function(){return{axis:getDefaultAreaAxis(),grid:getDefaultAreaGrid(),color:getDefaultColors(),legend:getDefaultAreaLegend(),point:getDefaultAreaPoint()}},getDefaultSingleAreaTooltip=function(){return{contents:patternfly.pfGetBarChartTooltipContentsFn()}},getDefaultSingleAreaLegend=function(){return getDefaultSingleLineLegend()};return{getDefaultColors:getDefaultColors,getDefaultBarGrid:getDefaultBarGrid,getDefaultBarTooltip:getDefaultBarTooltip,getDefaultBarLegend:getDefaultBarLegend,getDefaultBarConfig:getDefaultBarConfig,getDefaultGroupedBarGrid:getDefaultGroupedBarGrid,getDefaultGroupedBarLegend:getDefaultGroupedBarLegend,getDefaultGroupedBarConfig:getDefaultGroupedBarConfig,getDefaultStackedBarGrid:getDefaultStackedBarGrid,getDefaultStackedBarLegend:getDefaultStackedBarLegend,getDefaultStackedBarConfig:getDefaultStackedBarConfig,getDefaultDonut:getDefaultDonut,getDefaultDonutSize:getDefaultDonutSize,getDefaultDonutColors:getDefaultDonutColors,getDefaultDonutTooltip:getDefaultDonutTooltip,getDefaultDonutLegend:getDefaultDonutLegend,getDefaultDonutConfig:getDefaultDonutConfig,getDefaultRelationshipDonutConfig:getDefaultRelationshipDonutConfig,getDefaultPie:getDefaultPie,getDefaultPieSize:getDefaultPieSize,getDefaultPieColors:getDefaultPieColors,getDefaultRelationshipDonutColors:getDefaultRelationshipDonutColors,getDefaultPieTooltip:getDefaultPieTooltip,getDefaultPieLegend:getDefaultPieLegend,getDefaultPieConfig:getDefaultPieConfig,getDefaultSparklineArea:getDefaultSparklineArea,getDefaultSparklineSize:getDefaultSparklineSize,getDefaultSparklineAxis:getDefaultSparklineAxis,getDefaultSparklineLegend:getDefaultSparklineLegend,getDefaultSparklinePoint:getDefaultSparklinePoint,getDefaultSparklineTooltip:getDefaultSparklineTooltip,getDefaultSparklineConfig:getDefaultSparklineConfig,getDefaultLineAxis:getDefaultLineAxis,getDefaultLineGrid:getDefaultLineGrid,getDefaultLineLegend:getDefaultLineLegend,getDefaultLinePoint:getDefaultLinePoint,getDefaultLineConfig:getDefaultLineConfig,getDefaultSingleLineTooltip:getDefaultSingleLineTooltip,getDefaultSingleLineConfig:getDefaultSingleLineConfig,getDefaultAreaAxis:getDefaultAreaAxis,getDefaultAreaGrid:getDefaultAreaGrid,getDefaultAreaLegend:getDefaultAreaLegend,getDefaultAreaPoint:getDefaultAreaPoint,getDefaultAreaConfig:getDefaultAreaConfig,getDefaultSingleAreaTooltip:getDefaultSingleAreaTooltip,getDefaultSingleAreaConfig:function(){return{axis:getDefaultAreaAxis(),grid:getDefaultAreaGrid(),color:getDefaultColors(),legend:getDefaultSingleAreaLegend(),point:getDefaultAreaPoint(),tooltip:getDefaultSingleAreaTooltip()}}}}}(window);
\ No newline at end of file
diff --git a/themes/src/main/node_modules/patternfly/dist/js/patternfly-settings-base.js b/themes/src/main/node_modules/patternfly/dist/js/patternfly-settings-base.js
index 9bac2e9..7d9fa52 100644
--- a/themes/src/main/node_modules/patternfly/dist/js/patternfly-settings-base.js
+++ b/themes/src/main/node_modules/patternfly/dist/js/patternfly-settings-base.js
@@ -2,7 +2,7 @@
   'use strict';
 
   var patternfly = {
-    version: "3.38.0"
+    version: "3.41.6"
   };
 
   // definition of breakpoint sizes for tablet and desktop modes
diff --git a/themes/src/main/node_modules/patternfly/dist/less/breadcrumbs.less b/themes/src/main/node_modules/patternfly/dist/less/breadcrumbs.less
index b7d1375..ed6620b 100644
--- a/themes/src/main/node_modules/patternfly/dist/less/breadcrumbs.less
+++ b/themes/src/main/node_modules/patternfly/dist/less/breadcrumbs.less
@@ -11,7 +11,7 @@
       display: inline; /* IE8 */
       + li:before {
       color: @gray-light;
-      content: @fa-var-angle-double-right;
+      content: @fa-var-angle-right;
       font-family: @icon-font-name-fa;
       font-size: (@font-size-base - 1);
       padding: 0 9px 0 7px;
diff --git a/themes/src/main/node_modules/patternfly/dist/less/context-selector.less b/themes/src/main/node_modules/patternfly/dist/less/context-selector.less
new file mode 100644
index 0000000..c39c387
--- /dev/null
+++ b/themes/src/main/node_modules/patternfly/dist/less/context-selector.less
@@ -0,0 +1,67 @@
+//
+// Context Selector
+// --------------------------------------------------
+.layout-pf-fixed .navbar-pf-vertical.navbar-pf-contextselector {
+  z-index: @zindex-modal-background;
+}
+.navbar-pf-vertical .nav.contextselector-pf {
+    @media (min-width: @screen-sm-min) {
+      margin-left:@contextselector-pf-margin-left;
+    }
+    border-left:1px solid @color-pf-black-700;
+      .nav-item-iconic {
+        padding:@contextselector-pf-nav-item-iconic-padding;
+        display: flex;
+        align-items: center;
+      }
+  }
+
+  .contextselector-pf {
+    float:left;
+    &-title {
+      width: @contextselector-title-width-mobile;
+      @media (min-width: @screen-xs-min) {
+        width: @contextselector-title-width-desktop;
+      }
+      white-space: nowrap;
+      display:inline-block;
+      overflow: hidden;
+      text-overflow: ellipsis;
+      line-height: normal;
+    }
+    .dropdown {
+      &.open, &:hover {
+        background-color: @navbar-pf-navbar-primary-active-bg-color-stop;
+      }
+    }
+    .dropdown-menu {
+      width: 100%;
+      margin-top:0;
+    }
+    .form-group {
+      margin: @contextselector-pf-form-group-margin;
+    }
+    .contextselector-pf-list {
+      @media (min-width: @screen-sm-min) {
+        max-height: @contextselector-pf-list-max-height;
+        overflow-y: auto;
+      }
+      li {
+        padding: @contextselector-pf-list-li-padding;
+        border-width: @contextselector-pf-list-li-border-width;
+        border-style: solid;
+        border-color: transparent;
+        &:hover {
+          background: @color-pf-blue-50;
+          border-color: @dropdown-link-hover-border-color;
+          a {
+            text-decoration: none;
+          }
+        }
+      }
+      a {
+        color: @color-pf-black-800;
+        display: block;
+      }
+    }
+  }
diff --git a/themes/src/main/node_modules/patternfly/dist/less/icons.less b/themes/src/main/node_modules/patternfly/dist/less/icons.less
index f7fff02..5f1785a 100644
--- a/themes/src/main/node_modules/patternfly/dist/less/icons.less
+++ b/themes/src/main/node_modules/patternfly/dist/less/icons.less
@@ -180,6 +180,9 @@
 .@{icon-prefix}-network:before {
   content: @pficon-var-network;
 }
+.@{icon-prefix}-network-range:before {
+  content: @pficon-var-network-range;
+}
 .@{icon-prefix}-on:before {
   content: @pficon-var-on;
 }
@@ -266,6 +269,9 @@
 .@{icon-prefix}-running:before {
   content: @pficon-var-running;
 }
+.@{icon-prefix}-satellite:before {
+  content: @pficon-var-satellite;
+}
 .@{icon-prefix}-save:before {
   content: @pficon-var-save;
 }
@@ -305,6 +311,9 @@
 .@{icon-prefix}-storage-domain:before {
   content: @pficon-var-storage-domain;
 }
+.@{icon-prefix}-template:before {
+  content: @pficon-var-template;
+}
 .@{icon-prefix}-tenant:before {
   content: @pficon-var-tenant;
 }
@@ -335,6 +344,9 @@
 .@{icon-prefix}-unplugged:before {
   content: @pficon-var-unplugged;
 }
+.@{icon-prefix}-vcenter:before {
+  content: @pficon-var-vcenter;
+}
 .@{icon-prefix}-virtual-machine:before {
   content: @pficon-var-virtual-machine;
 }
diff --git a/themes/src/main/node_modules/patternfly/dist/less/list-view.less b/themes/src/main/node_modules/patternfly/dist/less/list-view.less
index 50614f5..0bdb249 100644
--- a/themes/src/main/node_modules/patternfly/dist/less/list-view.less
+++ b/themes/src/main/node_modules/patternfly/dist/less/list-view.less
@@ -73,6 +73,11 @@
       width: ~"calc(75% - 40px)" // IE9 fallback
     }
   }
+  .close {
+    float: none;
+    position: absolute;
+    right: 15px;
+  }
 }
 .list-view-pf-actions {
   float: right; // IE9 fallback
@@ -293,7 +298,7 @@
   box-sizing: content-box;
   margin: -1px -15px 0;
   order: 3;
-  padding: 10px 15px;
+  padding: 15px;
   position: relative;
   width: 100%;
 }
diff --git a/themes/src/main/node_modules/patternfly/dist/less/notifications-drawer.less b/themes/src/main/node_modules/patternfly/dist/less/notifications-drawer.less
index 00049b0..8851d60 100644
--- a/themes/src/main/node_modules/patternfly/dist/less/notifications-drawer.less
+++ b/themes/src/main/node_modules/patternfly/dist/less/notifications-drawer.less
@@ -160,7 +160,10 @@
     border-bottom: none;
   }
   &:hover { background-color: @color-pf-blue-50; }
-  &.unread .drawer-pf-notification-message { font-weight: bold; }
+  &.unread .drawer-pf-notification-message {
+    font-weight: bold;
+    cursor: pointer;
+  }
   &.expanded-notification {
     .date {
       border-right: none;
@@ -183,10 +186,6 @@
   }
 }
 
-.drawer-pf-notifications-non-clickable .drawer-pf-notification:hover {
-  background-color: @color-pf-white;
-}
-
 .drawer-pf-title {
   background-color: @color-pf-black-100;
   border-bottom: 1px solid @card-pf-border-color;
diff --git a/themes/src/main/node_modules/patternfly/dist/less/pager.less b/themes/src/main/node_modules/patternfly/dist/less/pager.less
index 7cde637..681b9fd 100644
--- a/themes/src/main/node_modules/patternfly/dist/less/pager.less
+++ b/themes/src/main/node_modules/patternfly/dist/less/pager.less
@@ -32,7 +32,7 @@
       background: @pagination-bg;
       .box-shadow(none);
       color: @pager-disabled-color;
-      cursor: default;
+      cursor: not-allowed;
     }
   }
   .next {
diff --git a/themes/src/main/node_modules/patternfly/dist/less/pagination.less b/themes/src/main/node_modules/patternfly/dist/less/pagination.less
index 396cfee..76bfe2a 100644
--- a/themes/src/main/node_modules/patternfly/dist/less/pagination.less
+++ b/themes/src/main/node_modules/patternfly/dist/less/pagination.less
@@ -43,7 +43,7 @@
     > a:hover,
     > a:focus {
       .box-shadow(none);
-      cursor: default;
+      cursor: not-allowed;
       #gradient > .vertical(@btn-default-bg-img-start; @btn-default-bg-img-stop);
     }
   }
@@ -88,7 +88,7 @@
         float: none;
       }
     }
-    .pagination-pf-pagesize.bootstrap-select.btn-group, 
+    .pagination-pf-pagesize.bootstrap-select.btn-group,
     .pagination-pf-pagesize.btn-group {
       display: flex;
       float: none;
diff --git a/themes/src/main/node_modules/patternfly/dist/less/patternfly-additions.less b/themes/src/main/node_modules/patternfly/dist/less/patternfly-additions.less
index cc8451f..2197ba2 100644
--- a/themes/src/main/node_modules/patternfly/dist/less/patternfly-additions.less
+++ b/themes/src/main/node_modules/patternfly/dist/less/patternfly-additions.less
@@ -42,6 +42,7 @@
 @import "card-view.less";
 @import "charts.less";
 @import "close.less";
+@import "context-selector.less";
 @import "datatables.less";
 @import "experimental-features.less";
 @import "filter.less";
diff --git a/themes/src/main/node_modules/patternfly/dist/less/variables.less b/themes/src/main/node_modules/patternfly/dist/less/variables.less
index 1e973ab..fc874ea 100644
--- a/themes/src/main/node_modules/patternfly/dist/less/variables.less
+++ b/themes/src/main/node_modules/patternfly/dist/less/variables.less
@@ -41,6 +41,14 @@
 @card-pf-container-bg-color:                                        @color-pf-black-150;
 @card-pf-footer-bg-color:                                           @color-pf-black-100;
 @card-pf-selected-border-color:                                     @color-pf-blue-300;
+@contextselector-pf-margin-left:                                    10px;
+@contextselector-pf-nav-item-iconic-padding:                        23px 20px 18px 10px;
+@contextselector-title-width-mobile:                                170px;
+@contextselector-title-width-desktop:                               210px;
+@contextselector-pf-form-group-margin:                              0 5px 5px 5px;
+@contextselector-pf-list-max-height:                                200px;
+@contextselector-pf-list-li-padding:                                1px 10px;
+@contextselector-pf-list-li-border-width:                           1px 0;
 @donut-font-size-big:                                               30px;
 @drawer-pf-top-vertical:                                            58px;
 @drawer-pf-top-horizontal:                                          26px;
@@ -210,7 +218,7 @@
 @pficon-var-folder-close:                                           "\e607";
 @pficon-var-folder-open:                                            "\e606";
 @pficon-var-help:                                                   "\e605";
-@pficon-var-history:                                                "\e617";
+@pficon-var-history:                                                "\e93b";
 @pficon-var-home:                                                   "\e618";
 @pficon-var-image:                                                  "\e61f";
 @pficon-var-import:                                                 "\e615";
@@ -228,6 +236,7 @@
 @pficon-var-migration:                                              "\e92e";
 @pficon-var-monitoring:                                             "\e944";
 @pficon-var-network:                                                "\e909";
+@pficon-var-network-range:                                          "\e94a";
 @pficon-var-off:                                                    "\e92f";
 @pficon-var-ok:                                                     "\e602";
 @pficon-var-on:                                                     "\e931";
@@ -258,6 +267,7 @@
 @pficon-var-route:                                                  "\e625";
 @pficon-var-running:                                                "\e614";
 @pficon-var-save:                                                   "\e601";
+@pficon-var-satellite:                                              "\e94b";
 @pficon-var-screen:                                                 "\e600";
 @pficon-var-search:                                                 "\e921";
 @pficon-var-security:                                               "\e946";
@@ -270,6 +280,7 @@
 @pficon-var-spinner:                                                "\e614";
 @pficon-var-spinner2:                                               "\e613";
 @pficon-var-storage-domain:                                         "\e90e";
+@pficon-var-template:                                               "\e94c";
 @pficon-var-tenant:                                                 "\e916";
 @pficon-var-thumb-tack-o:                                           "\e920";
 @pficon-var-topology:                                               "\e608";
@@ -280,6 +291,7 @@
 @pficon-var-unknown:                                                "\e935";
 @pficon-var-user:                                                   "\e91e";
 @pficon-var-users:                                                  "\e91f";
+@pficon-var-vcenter:                                                "\e94d";
 @pficon-var-virtual-machine:                                        "\e90f";
 @pficon-var-volume:                                                 "\e910";
 @pficon-var-warning-triangle-o:                                     "\e913";
diff --git a/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_breadcrumbs.scss b/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_breadcrumbs.scss
index 75cb85f..58e1d91 100644
--- a/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_breadcrumbs.scss
+++ b/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_breadcrumbs.scss
@@ -11,7 +11,7 @@
       display: inline; /* IE8 */
       + li:before {
       color: $gray-light;
-      content: $fa-var-angle-double-right;
+      content: $fa-var-angle-right;
       font-family: $icon-font-name-fa;
       font-size: ($font-size-base - 1);
       padding: 0 9px 0 7px;
diff --git a/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_context-selector.scss b/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_context-selector.scss
new file mode 100644
index 0000000..6756bd5
--- /dev/null
+++ b/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_context-selector.scss
@@ -0,0 +1,67 @@
+//
+// Context Selector
+// --------------------------------------------------
+.layout-pf-fixed .navbar-pf-vertical.navbar-pf-contextselector {
+  z-index: $zindex-modal-background;
+}
+.navbar-pf-vertical .nav.contextselector-pf {
+    @media (min-width: $screen-sm-min) {
+      margin-left:$contextselector-pf-margin-left;
+    }
+    border-left:1px solid $color-pf-black-700;
+      .nav-item-iconic {
+        padding:$contextselector-pf-nav-item-iconic-padding;
+        display: flex;
+        align-items: center;
+      }
+  }
+
+  .contextselector-pf {
+    float:left;
+    &-title {
+      width: $contextselector-title-width-mobile;
+      @media (min-width: $screen-xs-min) {
+        width: $contextselector-title-width-desktop;
+      }
+      white-space: nowrap;
+      display:inline-block;
+      overflow: hidden;
+      text-overflow: ellipsis;
+      line-height: normal;
+    }
+    .dropdown {
+      &.open, &:hover {
+        background-color: $navbar-pf-navbar-primary-active-bg-color-stop;
+      }
+    }
+    .dropdown-menu {
+      width: 100%;
+      margin-top:0;
+    }
+    .form-group {
+      margin: $contextselector-pf-form-group-margin;
+    }
+    .contextselector-pf-list {
+      @media (min-width: $screen-sm-min) {
+        max-height: $contextselector-pf-list-max-height;
+        overflow-y: auto;
+      }
+      li {
+        padding: $contextselector-pf-list-li-padding;
+        border-width: $contextselector-pf-list-li-border-width;
+        border-style: solid;
+        border-color: transparent;
+        &:hover {
+          background: $color-pf-blue-50;
+          border-color: $dropdown-link-hover-border-color;
+          a {
+            text-decoration: none;
+          }
+        }
+      }
+      a {
+        color: $color-pf-black-800;
+        display: block;
+      }
+    }
+  }
diff --git a/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_icons.scss b/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_icons.scss
index 0262ec8..591f43c 100644
--- a/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_icons.scss
+++ b/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_icons.scss
@@ -180,6 +180,9 @@
 .#{$icon-prefix}-network:before {
   content: $pficon-var-network;
 }
+.#{$icon-prefix}-network-range:before {
+  content: $pficon-var-network-range;
+}
 .#{$icon-prefix}-on:before {
   content: $pficon-var-on;
 }
@@ -266,6 +269,9 @@
 .#{$icon-prefix}-running:before {
   content: $pficon-var-running;
 }
+.#{$icon-prefix}-satellite:before {
+  content: $pficon-var-satellite;
+}
 .#{$icon-prefix}-save:before {
   content: $pficon-var-save;
 }
@@ -305,6 +311,9 @@
 .#{$icon-prefix}-storage-domain:before {
   content: $pficon-var-storage-domain;
 }
+.#{$icon-prefix}-template:before {
+  content: $pficon-var-template;
+}
 .#{$icon-prefix}-tenant:before {
   content: $pficon-var-tenant;
 }
@@ -335,6 +344,9 @@
 .#{$icon-prefix}-unplugged:before {
   content: $pficon-var-unplugged;
 }
+.#{$icon-prefix}-vcenter:before {
+  content: $pficon-var-vcenter;
+}
 .#{$icon-prefix}-virtual-machine:before {
   content: $pficon-var-virtual-machine;
 }
diff --git a/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_list-view.scss b/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_list-view.scss
index 77234f5..5a0c840 100644
--- a/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_list-view.scss
+++ b/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_list-view.scss
@@ -73,6 +73,11 @@
       width: unquote("calc(75% - 40px)") // IE9 fallback
     }
   }
+  .close {
+    float: none;
+    position: absolute;
+    right: 15px;
+  }
 }
 .list-view-pf-actions {
   float: right; // IE9 fallback
@@ -293,7 +298,7 @@
   box-sizing: content-box;
   margin: -1px -15px 0;
   order: 3;
-  padding: 10px 15px;
+  padding: 15px;
   position: relative;
   width: 100%;
 }
diff --git a/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_notifications-drawer.scss b/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_notifications-drawer.scss
index ff2f776..de172d9 100644
--- a/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_notifications-drawer.scss
+++ b/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_notifications-drawer.scss
@@ -160,7 +160,10 @@
     border-bottom: none;
   }
   &:hover { background-color: $color-pf-blue-50; }
-  &.unread .drawer-pf-notification-message { font-weight: bold; }
+  &.unread .drawer-pf-notification-message {
+    font-weight: bold;
+    cursor: pointer;
+  }
   &.expanded-notification {
     .date {
       border-right: none;
@@ -183,10 +186,6 @@
   }
 }
 
-.drawer-pf-notifications-non-clickable .drawer-pf-notification:hover {
-  background-color: $color-pf-white;
-}
-
 .drawer-pf-title {
   background-color: $color-pf-black-100;
   border-bottom: 1px solid $card-pf-border-color;
diff --git a/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_pager.scss b/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_pager.scss
index 8cc2483..cb107bc 100644
--- a/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_pager.scss
+++ b/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_pager.scss
@@ -32,7 +32,7 @@
       background: $pagination-bg;
       @include box-shadow(none);
       color: $pager-disabled-color;
-      cursor: default;
+      cursor: not-allowed;
     }
   }
   .next {
diff --git a/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_pagination.scss b/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_pagination.scss
index 9742cce..db98353 100644
--- a/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_pagination.scss
+++ b/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_pagination.scss
@@ -43,7 +43,7 @@
     > a:hover,
     > a:focus {
       @include box-shadow(none);
-      cursor: default;
+      cursor: not-allowed;
       @include gradient-vertical($btn-default-bg-img-start, $btn-default-bg-img-stop);
     }
   }
@@ -88,7 +88,7 @@
         float: none;
       }
     }
-    .pagination-pf-pagesize.bootstrap-select.btn-group, 
+    .pagination-pf-pagesize.bootstrap-select.btn-group,
     .pagination-pf-pagesize.btn-group {
       display: flex;
       float: none;
diff --git a/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_variables.scss b/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_variables.scss
index c86ebe2..8547282 100644
--- a/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_variables.scss
+++ b/themes/src/main/node_modules/patternfly/dist/sass/patternfly/_variables.scss
@@ -41,6 +41,14 @@ $card-pf-border-top-color:                                          transparent 
 $card-pf-container-bg-color:                                        $color-pf-black-150 !default;
 $card-pf-footer-bg-color:                                           $color-pf-black-100 !default;
 $card-pf-selected-border-color:                                     $color-pf-blue-300 !default;
+$contextselector-pf-margin-left:                                    10px !default;
+$contextselector-pf-nav-item-iconic-padding:                        23px 20px 18px 10px !default;
+$contextselector-title-width-mobile:                                170px !default;
+$contextselector-title-width-desktop:                               210px !default;
+$contextselector-pf-form-group-margin:                              0 5px 5px 5px !default;
+$contextselector-pf-list-max-height:                                200px !default;
+$contextselector-pf-list-li-padding:                                1px 10px !default;
+$contextselector-pf-list-li-border-width:                           1px 0 !default;
 $donut-font-size-big:                                               30px !default;
 $drawer-pf-top-vertical:                                            58px !default;
 $drawer-pf-top-horizontal:                                          26px !default;
@@ -210,7 +218,7 @@ $pficon-var-filter:                                                 "\e943" !def
 $pficon-var-folder-close:                                           "\e607" !default;
 $pficon-var-folder-open:                                            "\e606" !default;
 $pficon-var-help:                                                   "\e605" !default;
-$pficon-var-history:                                                "\e617" !default;
+$pficon-var-history:                                                "\e93b" !default;
 $pficon-var-home:                                                   "\e618" !default;
 $pficon-var-image:                                                  "\e61f" !default;
 $pficon-var-import:                                                 "\e615" !default;
@@ -228,6 +236,7 @@ $pficon-var-middleware:                                             "\e917" !def
 $pficon-var-migration:                                              "\e92e" !default;
 $pficon-var-monitoring:                                             "\e944" !default;
 $pficon-var-network:                                                "\e909" !default;
+$pficon-var-network-range:                                          "\e94a" !default;
 $pficon-var-off:                                                    "\e92f" !default;
 $pficon-var-ok:                                                     "\e602" !default;
 $pficon-var-on:                                                     "\e931" !default;
@@ -258,6 +267,7 @@ $pficon-var-restart:                                                "\e617" !def
 $pficon-var-route:                                                  "\e625" !default;
 $pficon-var-running:                                                "\e614" !default;
 $pficon-var-save:                                                   "\e601" !default;
+$pficon-var-satellite:                                              "\e94b" !default;
 $pficon-var-screen:                                                 "\e600" !default;
 $pficon-var-search:                                                 "\e921" !default;
 $pficon-var-security:                                               "\e946" !default;
@@ -270,6 +280,7 @@ $pficon-var-settings:                                               "\e610" !def
 $pficon-var-spinner:                                                "\e614" !default;
 $pficon-var-spinner2:                                               "\e613" !default;
 $pficon-var-storage-domain:                                         "\e90e" !default;
+$pficon-var-template:                                               "\e94c" !default;
 $pficon-var-tenant:                                                 "\e916" !default;
 $pficon-var-thumb-tack-o:                                           "\e920" !default;
 $pficon-var-topology:                                               "\e608" !default;
@@ -280,6 +291,7 @@ $pficon-var-unplugged:                                              "\e942" !def
 $pficon-var-unknown:                                                "\e935" !default;
 $pficon-var-user:                                                   "\e91e" !default;
 $pficon-var-users:                                                  "\e91f" !default;
+$pficon-var-vcenter:                                                "\e94d" !default;
 $pficon-var-virtual-machine:                                        "\e90f" !default;
 $pficon-var-volume:                                                 "\e910" !default;
 $pficon-var-warning-triangle-o:                                     "\e913" !default;
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/application-launcher.html b/themes/src/main/node_modules/patternfly/dist/tests/application-launcher.html
index 9b22ff2..5876b12 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/application-launcher.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/application-launcher.html
@@ -652,6 +652,7 @@
     <a href="/" class="navbar-brand">
       <img class="navbar-brand-icon" src="..//img/logo-alt.svg" alt=""/><img class="navbar-brand-name" src="..//img/brand-alt.svg" alt="PatternFly Enterprise Application" />
     </a>
+    
   </div>
   <nav class="collapse navbar-collapse">
     <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
@@ -750,6 +751,7 @@
     <a href="/" class="navbar-brand">
       <img class="navbar-brand-icon" src="..//img/logo-alt.svg" alt=""/><img class="navbar-brand-name" src="..//img/brand-alt.svg" alt="PatternFly Enterprise Application" />
     </a>
+    
   </div>
   <nav class="collapse navbar-collapse">
     <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
@@ -839,6 +841,7 @@
     <a href="/" class="navbar-brand">
       <img class="navbar-brand-icon" src="..//img/logo-alt.svg" alt=""/><img class="navbar-brand-name" src="..//img/brand-alt.svg" alt="PatternFly Enterprise Application" />
     </a>
+    
   </div>
   <nav class="collapse navbar-collapse">
     <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
@@ -937,6 +940,7 @@
     <a href="/" class="navbar-brand">
       <img class="navbar-brand-icon" src="..//img/logo-alt.svg" alt=""/><img class="navbar-brand-name" src="..//img/brand-alt.svg" alt="PatternFly Enterprise Application" />
     </a>
+    
   </div>
   <nav class="collapse navbar-collapse">
     <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/application-launcher-nav-vertical.html b/themes/src/main/node_modules/patternfly/dist/tests/application-launcher-nav-vertical.html
index c0757e7..f58fe0b 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/application-launcher-nav-vertical.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/application-launcher-nav-vertical.html
@@ -59,6 +59,7 @@
     <a href="/" class="navbar-brand">
       <img class="navbar-brand-icon" src="..//img/logo-alt.svg" alt=""/><img class="navbar-brand-name" src="..//img/brand-alt.svg" alt="PatternFly Enterprise Application" />
     </a>
+    
   </div>
   <nav class="collapse navbar-collapse">
     <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/bootstrap-slider.html b/themes/src/main/node_modules/patternfly/dist/tests/bootstrap-slider.html
index 80846ad..4f84e51 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/bootstrap-slider.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/bootstrap-slider.html
@@ -39,7 +39,7 @@
       </div>
       <div class="alert alert-warning">
         <span class="pficon pficon-warning-triangle-o"></span>
-        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://seiyria.com/bootstrap-slider/">hhttp://seiyria.com/bootstrap-slider/</a>.
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://seiyria.com/bootstrap-slider/">http://seiyria.com/bootstrap-slider/</a>.
       </div>
       <hr>
 <input id="slider-one" type="text"
@@ -88,12 +88,14 @@ data-slider-tooltip="show" />
     <label for="size" class="col-sm-2 control-label">Size</label>
     <div class="col-sm-10">
       <div class="slider-pf">
+        <b>0</b>
         <input id="size" type="text"
         data-provide="slider"
         data-slider-min="0"
         data-slider-max="100"
         data-slider-tooltip="show" />
-        <input type="text" size="3">
+        <b>100</b>
+        <input type="text" size="3" class="slider-input-pf">
         <span>GB</span>
       </div>
     </div>
@@ -110,12 +112,14 @@ data-slider-tooltip="show" />
 <br>
 
 <div class="slider-pf">
+  <b>0</b>
   <input id="slider-pf" type="text"
   data-provide="slider"
   data-slider-min="0"
   data-slider-max="100"
   data-slider-tooltip="show" />
-  <input type="text" size="3">
+  <b>100</b>
+  <input type="text" size="3" class="slider-input-pf">
   <span>GB</span>
 </div>
 
@@ -123,12 +127,14 @@ data-slider-tooltip="show" />
 <br>
 
 <div class="slider-pf">
+  <b>0</b>
   <input id="with-stops" type="text"
   data-provide="slider"
   data-slider-min="0"
   data-slider-max="100"
   data-slider-tooltip="show" />
-  <input type="text" size="3">
+  <b>100</b>
+  <input type="text" size="3" class="slider-input-pf">
   <span class="dropdown">
     <button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
       GB
@@ -140,6 +146,47 @@ data-slider-tooltip="show" />
     </ul>
   </span>
 </div>
+<script>
+  $(function () {
+    $('.slider-input-pf').tooltip({ trigger: 'manual' })
+      .on('keyup', function (e) {
+        var $this = $(this);
+        var sd = $this.siblings('[data-provide=slider]').slider();
+        if ($this.val().trim() !== '' && !$.isNumeric(this.value)) {
+          this.value = sd.slider('getValue');
+        }
+      })
+      .on('keypress blur', function (e) {
+        if (e.which == 13 || e.type === 'blur') {
+          e.preventDefault();
+          var $this = $(this);
+          var sd = $this.siblings('[data-provide=slider]').slider();
+          var max = sd.slider('getAttribute', 'max');
+          var min = sd.slider('getAttribute', 'min');
+          if (!$.isNumeric(this.value) || (this.value > max || this.value < min)) {
+            var warningInfo = $.isNumeric(this.value) ? 'Valid value should be between ' + min
+              + ' and ' + max : 'Valid value should be number';
+            $this.attr('data-original-title', warningInfo).tooltip('show').addClass('warning');
+            this.value = sd.slider('getValue');
+            setTimeout(function(){ $this.tooltip('hide'); }, 3000);
+          } else {
+            if ($this.is('.warning')) {
+              $this.tooltip('hide');
+            }
+            this.value = $this.val().trim();
+            sd.slider('setValue', this.value);
+          }
+        }
+      })
+      .siblings('[data-provide=slider]').each(function () {
+        $(this).siblings('.slider-input-pf').val(this.value);
+        $(this).slider().on('slide', function (e) {
+          $(e.target).siblings('.slider-input-pf').val(e.value);
+        });
+      });
+  });
+</script>
+
 
     </div><!-- /container -->
   </body>
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/context-selector.html b/themes/src/main/node_modules/patternfly/dist/tests/context-selector.html
new file mode 100644
index 0000000..d4eeb7d
--- /dev/null
+++ b/themes/src/main/node_modules/patternfly/dist/tests/context-selector.html
@@ -0,0 +1,122 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Context Selector - PatternFly</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="../img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="../img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="../img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="../img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="../img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="../img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="../img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="../img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../css/patternfly.min.css" >
+    <link rel="stylesheet" href="../css/patternfly-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Context Selector</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+
+
+<nav class="navbar navbar-pf-vertical navbar-pf-contextselector">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a href="/" class="navbar-brand hidden-sm hidden-xs">
+      <img class="navbar-brand-icon" src="..//img/logo-alt.svg" alt=""/><img class="navbar-brand-name" src="..//img/brand-alt.svg" alt="PatternFly Enterprise Application" />
+    </a>
+    
+    <ul class="nav contextselector-pf">
+  <li class="dropdown">
+    <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu35" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+      <span class="contextselector-pf-title">Really long server name server name</span>
+      <span class="caret"></span>
+    </a>
+    <div class="dropdown-menu" aria-labelledby="dropdownMenu35">
+    <div class="form-group">
+    <label class="sr-only" for="searchinput">search</label>
+    <input type="text" class="form-control" id="searchinput" placeholder="Search">
+  </div>
+    <ul class="contextselector-pf-list list-unstyled">
+      <li><a href="#0">A Different Context</a></li>
+      <li><a href="#0">A Second Context</a></li>
+      <li><a href="#0">Current</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+    </ul>
+  </div>
+  </li>
+</ul>
+
+    
+  </div>
+  <nav class="collapse navbar-collapse">
+    <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
+      
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu15">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu25" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Username" class="fa pficon-user"></span>
+          Brian Johnson <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu25">
+          <li><a href="#0">Preferences</a></li>
+          <li><a href="#0">Logout</a></li>
+        </ul>
+      </li>
+    </ul>
+  </nav>
+  
+</nav> <!--/.navbar-->
+
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/context-selector-vertical-nav.html b/themes/src/main/node_modules/patternfly/dist/tests/context-selector-vertical-nav.html
new file mode 100644
index 0000000..a8acaa5
--- /dev/null
+++ b/themes/src/main/node_modules/patternfly/dist/tests/context-selector-vertical-nav.html
@@ -0,0 +1,1810 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 layout-pf layout-pf-fixed"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="layout-pf layout-pf-fixed">
+  <!--<![endif]-->
+    <head>
+    <title>Context Selector for Vertical Navigation - PatternFly</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="../img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="../img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="../img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="../img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="../img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="../img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="../img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="../img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../css/patternfly.min.css" >
+    <link rel="stylesheet" href="../css/patternfly-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body class="cards-pf">
+    
+
+  
+
+<nav class="navbar navbar-pf-vertical navbar-pf-contextselector">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a href="/" class="navbar-brand hidden-sm hidden-xs">
+      <img class="navbar-brand-icon" src="..//img/logo-alt.svg" alt=""/><img class="navbar-brand-name" src="..//img/brand-alt.svg" alt="PatternFly Enterprise Application" />
+    </a>
+    
+    <ul class="nav contextselector-pf">
+  <li class="dropdown">
+    <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu3" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+      <span class="contextselector-pf-title">Really long server name server name</span>
+      <span class="caret"></span>
+    </a>
+    <div class="dropdown-menu" aria-labelledby="dropdownMenu3">
+    <div class="form-group">
+    <label class="sr-only" for="searchinput">search</label>
+    <input type="text" class="form-control" id="searchinput" placeholder="Search">
+  </div>
+    <ul class="contextselector-pf-list list-unstyled">
+      <li><a href="#0">A Different Context</a></li>
+      <li><a href="#0">A Second Context</a></li>
+      <li><a href="#0">Current</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+    </ul>
+  </div>
+  </li>
+</ul>
+
+    
+  </div>
+  <nav class="collapse navbar-collapse">
+    <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
+      
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Username" class="fa pficon-user"></span>
+          Brian Johnson <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
+          <li><a href="#0">Preferences</a></li>
+          <li><a href="#0">Logout</a></li>
+        </ul>
+      </li>
+    </ul>
+  </nav>
+  
+  <div class="drawer-pf hide drawer-pf-notifications-non-clickable">
+  <div class="drawer-pf-title">
+    <a class="drawer-pf-toggle-expand fa fa-angle-double-left hidden-xs"></a>
+    <a  class="drawer-pf-close pficon pficon-close"></a>
+    <h3 class="text-center">Notifications Drawer</h3>
+  </div>
+  <div class="panel-group" id="notification-drawer-accordion">
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseOne">
+            Notification Tab 1
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseOne" class="panel-collapse collapse in">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight11">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight21" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight21">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight31" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight31">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight41" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight41">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseTwo">
+            Notification Tab 2
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseTwo" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight12">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight22" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight22">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight32" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight32">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight42" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight42">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight13">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight23" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight23">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight33" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight33">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight43" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight43">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight14">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight24" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight24">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight34" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight34">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight44" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight44">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-loading text-center">
+            <span class="spinner spinner-xs spinner-inline"></span> Loading More
+          </div>
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseThree">
+            Notification Tab 3
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseThree" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight15">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight25" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight25">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight35" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight35">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight45" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight45">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight16" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight16">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight26" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight26">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight36" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight36">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight46" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight46">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight17" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight17">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight27" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight27">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight37" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight37">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight47" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight47">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  $(document).ready(function() {
+    // Initialize to unread notifications
+    // TODO: add badge for unread notifications
+
+    // Show/Hide Notifications Drawer
+    $('.drawer-pf-trigger').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $(this).toggleClass('open');
+      if ($drawer.hasClass('hide')) {
+        $drawer.removeClass('hide');
+        setTimeout(function () {
+          if (window.dispatchEvent) {
+            window.dispatchEvent(new Event('resize'));
+          }
+          // Special case for IE
+          if ($(document).fireEvent) {
+            $(document).fireEvent('onresize');
+          }
+        }, 100);
+      } else {
+        $drawer.addClass('hide');
+      }
+      // Special case, close navigation menu in mobile mode
+     if ($('.container-pf-nav-pf-vertical').hasClass('hidden-nav')) {
+       $('.nav-pf-vertical').removeClass('show-mobile-nav');
+     }
+    });
+    $('.drawer-pf-close').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $('.drawer-pf-trigger').removeClass('open');
+      $drawer.addClass('hide');
+    });
+    $('.drawer-pf-toggle-expand').click(function() {
+      var $drawer = $('.drawer-pf');
+      var $drawerNotifications = $drawer.find('.drawer-pf-notification');
+
+      if ($drawer.hasClass('drawer-pf-expanded')) {
+        $drawer.removeClass('drawer-pf-expanded');
+        $drawerNotifications.removeClass('expanded-notification');
+      } else {
+        $drawer.addClass('drawer-pf-expanded');
+        $drawerNotifications.addClass('expanded-notification');
+      }
+    });
+
+    // Mark All Read / Clear All
+    $('.panel-collapse').each(function (index, panel) {
+      var $panel = $(panel);
+      var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+      $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+
+      if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+        // TODO: remove badge for unread indicator
+      }
+
+      $panel.on('click', '.drawer-pf-action [data-toggle="mark-all-read"] .btn', function() {
+        $panel.find('.unread').removeClass('unread');
+        $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          $('.drawer-pf-trigger').removeClass('unread');
+        }
+      });
+      $panel.on('click', '.drawer-pf-action [data-toggle="clear-all"] .btn', function() {
+        $panel.find('.panel-body .drawer-pf-notification').remove();
+        $panel.find('.drawer-pf-action').remove();
+        $panel.find('.blank-slate-pf').removeClass('hidden');
+        $panel.find('.drawer-pf-loading').addClass('hidden');
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          // TODO: remove badge for unread indicator
+        }
+      });
+
+      $panel.find('.drawer-pf-notification').each(function (index, notification) {
+        var $notification = $(notification);
+        $notification.on('click', '.drawer-pf-notification-content', function() {
+          $notification.removeClass('unread');
+          var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+          $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+          if (unreadCount === 0) {
+            $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+            if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+              // TODO: remove badge for unread indicator
+            }
+          }
+        });
+      });
+    });
+
+    $('#notification-drawer-accordion').initCollapseHeights('.panel-body');
+  });
+</script>
+
+  
+</nav> <!--/.navbar-->
+
+
+<div class="nav-pf-vertical nav-pf-vertical-with-sub-menus
+     
+     
+     
+     ">
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-dashboard" data-toggle="tooltip" title="Dashboard"></span>
+        <span class="list-group-item-value">Dashboard</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-shield" data-toggle="tooltip" title="Dolor"></span>
+        <span class="list-group-item-value">Dolor</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item active secondary-nav-item-pf" data-target="#ipsum-secondary">
+      <a href="#0">
+        <span class="fa fa-space-shuttle" data-toggle="tooltip" title="Ipsum"></span>
+        <span class="list-group-item-value">Ipsum</span>
+      </a>
+      
+      <div id="-secondary" class="nav-pf-secondary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+    <span>Ipsum</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item active " data-target="#ipsum-intellegam-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Intellegam</span>
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#ipsum-copiosae-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Copiosae</span>
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#ipsum-patrioque-tertiary">
+      <a href="#0" >
+        <span class="list-group-item-value">Patrioque</span>
+      </a>
+      
+    </li>
+    
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item secondary-nav-item-pf" data-target="#amet-secondary">
+      <a href="#0">
+        <span class="fa fa-paper-plane" data-toggle="tooltip" title="Amet"></span>
+        <span class="list-group-item-value">Amet</span>
+      </a>
+      
+      <div id="amet-secondary" class="nav-pf-secondary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+    <span>Amet</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item " data-target="#amet-detracto-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Detracto Suscipiantur</span>
+        
+        
+        
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#amet-mediocrem-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Mediocrem</span>
+        
+        
+        
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#amet-corrumpit-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Corrumpit Cupidatat Proident Deserunt</span>
+        
+        
+        
+      </a>
+      
+    </li>
+    
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-graduation-cap" data-toggle="tooltip" title="Adipscing"></span>
+        <span class="list-group-item-value">Adipscing</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-gamepad" data-toggle="tooltip" title="Lorem"></span>
+        <span class="list-group-item-value">Lorem</span>
+      </a>
+    </li>
+    
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block">
+      <a href="#0">
+        <span class="pficon pficon-user" data-toggle="tooltip" title="" data-original-title="User"></span>
+        <span class="list-group-item-value">User</span>
+      </a>
+      <div id="user-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>User</span>
+        </div>
+
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Preferences</span>
+            </a>
+          </li>
+
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Logout</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block" data-target="#amet-secondary">
+      <a href="#0">
+        <span class="pficon pficon-help" data-toggle="tooltip" title="" data-original-title="Help"></span>
+        <span class="list-group-item-value">Help</span>
+      </a>
+      <div id="help-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>Help</span>
+        </div>
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Help</span>
+            </a>
+          </li>
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">About</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+
+  </ul>
+
+</div>
+<div class="container-fluid container-cards-pf container-pf-nav-pf-vertical
+     
+     
+     ">
+
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">20</span> Amet</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-warning-triangle-o"></span>1</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">9</span> Adipiscing</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status">
+            <h2 class="card-pf-title">
+              <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">12</span> Lorem</a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <span class="fa fa-rebel"></span>
+    <span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="fa fa-paper-plane"></span>
+      <span class="card-pf-aggregate-status-count">20</span> Amet
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="pficon pficon-cluster"></span>
+      <span class="card-pf-aggregate-status-count">9</span> Adipiscing
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+            <h2 class="card-pf-title">
+              <a href="#">
+                <span class="pficon pficon-image"></span>
+                <span class="card-pf-aggregate-status-count">12</span> Lorem
+              </a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Top Utilized Clusters
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-description">
+      RHOS6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 95%;"  data-toggle="tooltip" title="95% Used">
+        <span><strong>190.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;" data-toggle="tooltip" title="5% Available">
+        <span class="sr-only">5% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      CFMEQE-Cluster
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;"  data-toggle="tooltip" title="50% Used">
+        <span><strong>100.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Available">
+        <span class="sr-only">50% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHOS-Undercloud
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;"  data-toggle="tooltip" title="70% Used">
+        <span><strong>140.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width: 30%;" data-toggle="tooltip" title="30% Available">
+        <span class="sr-only">30% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHEL6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="76.5" aria-valuemin="0" aria-valuemax="100" style="width: 76.5%;"  data-toggle="tooltip" title="76.5% Used">
+        <span><strong>153.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="23.5" aria-valuemin="0" aria-valuemax="100" style="width: 23.5%;" data-toggle="tooltip" title="23.5% Available">
+        <span class="sr-only">23.5% Available</span>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Quotas
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        CPU
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
+          <span><strong>115 of 460</strong> MHz</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
+          <span class="sr-only">75% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Memory
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Used">
+          <span><strong>8 of 16</strong> GB</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Available">
+          <span class="sr-only">50% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Pods
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="62.5" aria-valuemin="0" aria-valuemax="100" style="width: 62.5%;" data-toggle="tooltip" title="62.5% Used">
+          <span><strong>5 of 8</strong> Total</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="37.5" aria-valuemin="0" aria-valuemax="100" style="width: 37.5%;" data-toggle="tooltip" title="37.5% Available">
+          <span class="sr-only">37.5% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Services
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;" data-toggle="tooltip" title="100% Used">
+          <span><strong>2 of 2</strong> Total</span>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-md-12">
+<div class="card-pf card-pf-utilization">
+  <div class="card-pf-heading">
+    <p class="card-pf-heading-details">Last 30 days</p>
+    <h2 class="card-pf-title">
+      Utilization
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="row">
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">CPU</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">50</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1000 MHz</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-1"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-1"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-1';
+          donutConfig.color =  {
+            pattern: ["#cc0000","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 95],
+              ["Available", 5]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' MHz ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart1 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-1").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("950").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("MHz Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-1';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 10, 50, 28, 20, 31, 27, 60, 36, 52, 55, 62, 68, 69, 88, 74, 88, 95],
+            ],
+            type: 'area'
+          };
+          var chart2 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Memory</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">256</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 432 GB</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-2"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-2"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-2';
+          donutConfig.color =  {
+            pattern: ["#3f9c35","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 41],
+              ["Available", 59]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' GB ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart3 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-2").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("176").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("GB Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-2';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 35, 36, 20, 30, 31, 22, 44, 36, 40, 41, 55, 52, 48, 48, 50, 40, 41],
+            ],
+            type: 'area'
+          };
+          var chart4 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Network</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">200</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-3"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-3"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-3';
+          donutConfig.color =  {
+            pattern: ["#EC7A08","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 85],
+              ["Available", 15]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart5 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-3").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-3';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+            ],
+            type: 'area'
+          };
+          var chart6 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-xs-12 col-sm-4 col-md-4">
+<div class="card-pf card-pf-utilization">
+  <h2 class="card-pf-title">
+    Network
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-utilization-details">
+      <span class="card-pf-utilization-card-details-count">200</span>
+        <span class="card-pf-utilization-card-details-description">
+          <span class="card-pf-utilization-card-details-line-1">Available</span>
+          <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+        </span>
+    </p>
+    <div id="chart-pf-donut-4"></div>
+    <div class="chart-pf-sparkline" id="chart-pf-sparkline-4"></div>
+    <script>
+      var c3ChartDefaults = $().c3ChartDefaults();
+
+      var donutConfig = c3ChartDefaults.getDefaultDonutConfig('A');
+      donutConfig.bindto = '#chart-pf-donut-4';
+      donutConfig.color =  {
+        pattern: ["#EC7A08","#D1D1D1"]
+      };
+      donutConfig.data = {
+        type: "donut",
+        columns: [
+          ["Used", 85],
+          ["Available", 15]
+        ],
+        groups: [
+          ["used", "available"]
+        ],
+        order: null
+      };
+      donutConfig.tooltip = {
+        contents: function (d) {
+          return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                  Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                  '</span>';
+        }
+      };
+
+      var chart1 = c3.generate(donutConfig);
+      var donutChartTitle = d3.select("#chart-pf-donut-4").select('text.c3-chart-arcs-title');
+      donutChartTitle.text("");
+      donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+      donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+      var sparklineConfig = c3ChartDefaults.getDefaultSparklineConfig();
+      sparklineConfig.bindto = '#chart-pf-sparkline-4';
+      sparklineConfig.data = {
+        columns: [
+          ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+        ],
+        type: 'area'
+      };
+
+      var chart2 = c3.generate(sparklineConfig);
+    </script>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-5">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <h2 class="card-pf-title">
+      Card Title
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-7">
+<div class="card-pf">
+  <h2 class="card-pf-title">
+    Card Title
+  </h2>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+  <div class="card-pf-footer">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <p>
+      <a href="#" class="card-pf-link-with-icon">
+        <span class="pficon pficon-add-circle-o"></span>Add New Cluster
+      </a>
+    </p>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-5 col-md-5">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <div class="dropdown card-pf-time-frame-filter">
+                <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+                  Last 30 Days <span class="caret"></span>
+                </button>
+                <ul class="dropdown-menu dropdown-menu-right" role="menu">
+                  <li class="selected"><a href="#">Last 30 Days</a></li>
+                  <li><a href="#">Last 60 Days</a></li>
+                  <li><a href="#">Last 90 Days</a></li>
+                </ul>
+              </div>
+              <p>
+                <a href="#" class="card-pf-link-with-icon">
+                  <span class="pficon pficon-flag"></span>View CPU Events
+                </a>
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-12 col-sm-7 col-md-7">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-8 col-md-8">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-4">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+
+</div>
+<script>
+  $(document).ready(function() {
+    // matchHeight the contents of each .card-pf and then the .card-pf itself
+    $(".row-cards-pf > [class*='col'] > .card-pf .card-pf-title").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-footer").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf").matchHeight();
+
+    // Initialize the vertical navigation
+    $().setupVerticalNavigation(true);
+  });
+</script>
+
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/donut-charts.html b/themes/src/main/node_modules/patternfly/dist/tests/donut-charts.html
index b6bb745..f0b3e73 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/donut-charts.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/donut-charts.html
@@ -70,9 +70,9 @@
     <div id="utilizationDonutChart1" class="example-donut-chart-utilization"></div>
 
 <div class="pct-donut-chart-pf example-donut-chart-utilization">
-  <span class="pct-donut-chart-pf-chart">
-    <span id="utilizationDonutChart2"></span>
-  </span>
+  <div class="pct-donut-chart-pf-chart">
+    <div id="utilizationDonutChart2"></div>
+  </div>
   <span class="pct-donut-chart-pf-label">
     60 MHz of 100 MHz used
   </span>
@@ -80,9 +80,9 @@
 
 <div class="example-donut-chart-utilization">
   <span class="pct-donut-chart-pf pct-donut-chart-pf-left">
-    <span class="pct-donut-chart-pf-chart">
-      <span id="utilizationDonutChart3"></span>
-    </span>
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart3"></div>
+    </div>
     <span class="pct-donut-chart-pf-label text-right">
       60 MHz of 100 MHz used
     </span>
@@ -91,9 +91,9 @@
 
 <div class="example-donut-chart-utilization">
   <span class="pct-donut-chart-pf pct-donut-chart-pf-right">
-    <span class="pct-donut-chart-pf-chart">
-      <span id="utilizationDonutChart4"></span>
-    </span>
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart4"></div>
+    </div>
     <span class="pct-donut-chart-pf-label text-left">
       60 MHz of 100 MHz
     </span>
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/filter.html b/themes/src/main/node_modules/patternfly/dist/tests/filter.html
index 5842ab2..9e3255e 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/filter.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/filter.html
@@ -164,6 +164,7 @@
   </div>
 </div>
 
+
     </div><!-- /container -->
   </body>
 </html>
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/icons.html b/themes/src/main/node_modules/patternfly/dist/tests/icons.html
index 5389ec9..affa601 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/icons.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/icons.html
@@ -243,6 +243,10 @@
               <span class="icon-class">pficon-middleware</span>
             </li>
             <li>
+              <span class="pficon pficon-network-range"></span>
+              <span class="icon-class">pficon-network-range</span>
+            </li>
+            <li>
               <span class="pficon pficon-network"></span>
               <span class="icon-class">pficon-network</span>
             </li>
@@ -347,6 +351,10 @@
               <span class="icon-class">pficon-route</span>
             </li>
             <li>
+              <span class="pficon pficon-satellite"></span>
+              <span class="icon-class">pficon-satellite</span>
+            </li>
+            <li>
               <span class="pficon pficon-save"></span>
               <span class="icon-class">pficon-save</span>
             </li>
@@ -395,6 +403,10 @@
               <span class="icon-class">pficon-storage-domain</span>
             </li>
             <li>
+              <span class="pficon pficon-template"></span>
+              <span class="icon-class">pficon-template</span>
+            </li>
+            <li>
               <span class="pficon pficon-tenant"></span>
               <span class="icon-class">pficon-tenant</span>
             </li>
@@ -435,6 +447,10 @@
               <span class="icon-class">pficon-users</span>
             </li>
             <li>
+              <span class="pficon pficon-vcenter"></span>
+              <span class="icon-class">pficon-vcenter</span>
+            </li>
+            <li>
               <span class="pficon pficon-virtual-machine"></span>
               <span class="icon-class">pficon-virtual-machine</span>
             </li>
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/index.html b/themes/src/main/node_modules/patternfly/dist/tests/index.html
index 6b3dc89..07432d6 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/index.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/index.html
@@ -97,6 +97,9 @@
               <a href="code.html">Code</a>
             </li>
             <li>
+              <a href="context-selector.html">Context Selector</a>
+            </li>
+            <li>
               <a href="dropdowns.html">Dropdowns</a>
             </li>
             <li>
@@ -301,6 +304,9 @@
               <a href="application-launcher-nav-vertical.html">Application Launcher for Vertical Navigation</a>
             </li>
             <li>
+              <a href="context-selector-vertical-nav.html">Context Selector for Vertical Navigation</a>
+            </li>
+            <li>
               <a href="horizontal-navigation.html">Horizontal Navigation</a>
             </li>
             <li>
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/list-view-simple-expansion.html b/themes/src/main/node_modules/patternfly/dist/tests/list-view-simple-expansion.html
index 9eac5cc..f6753fc 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/list-view-simple-expansion.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/list-view-simple-expansion.html
@@ -324,9 +324,9 @@
           <div id="utilizationDonutChart11" class="example-donut-chart-utilization"></div>
 
 <div class="pct-donut-chart-pf example-donut-chart-utilization">
-  <span class="pct-donut-chart-pf-chart">
-    <span id="utilizationDonutChart12"></span>
-  </span>
+  <div class="pct-donut-chart-pf-chart">
+    <div id="utilizationDonutChart12"></div>
+  </div>
   <span class="pct-donut-chart-pf-label">
     60 MHz of 100 MHz used
   </span>
@@ -334,9 +334,9 @@
 
 <div class="example-donut-chart-utilization">
   <span class="pct-donut-chart-pf pct-donut-chart-pf-left">
-    <span class="pct-donut-chart-pf-chart">
-      <span id="utilizationDonutChart13"></span>
-    </span>
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart13"></div>
+    </div>
     <span class="pct-donut-chart-pf-label text-right">
       60 MHz of 100 MHz used
     </span>
@@ -345,9 +345,9 @@
 
 <div class="example-donut-chart-utilization">
   <span class="pct-donut-chart-pf pct-donut-chart-pf-right">
-    <span class="pct-donut-chart-pf-chart">
-      <span id="utilizationDonutChart14"></span>
-    </span>
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart14"></div>
+    </div>
     <span class="pct-donut-chart-pf-label text-left">
       60 MHz of 100 MHz
     </span>
@@ -559,9 +559,9 @@
           <div id="utilizationDonutChart21" class="example-donut-chart-utilization"></div>
 
 <div class="pct-donut-chart-pf example-donut-chart-utilization">
-  <span class="pct-donut-chart-pf-chart">
-    <span id="utilizationDonutChart22"></span>
-  </span>
+  <div class="pct-donut-chart-pf-chart">
+    <div id="utilizationDonutChart22"></div>
+  </div>
   <span class="pct-donut-chart-pf-label">
     60 MHz of 100 MHz used
   </span>
@@ -569,9 +569,9 @@
 
 <div class="example-donut-chart-utilization">
   <span class="pct-donut-chart-pf pct-donut-chart-pf-left">
-    <span class="pct-donut-chart-pf-chart">
-      <span id="utilizationDonutChart23"></span>
-    </span>
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart23"></div>
+    </div>
     <span class="pct-donut-chart-pf-label text-right">
       60 MHz of 100 MHz used
     </span>
@@ -580,9 +580,9 @@
 
 <div class="example-donut-chart-utilization">
   <span class="pct-donut-chart-pf pct-donut-chart-pf-right">
-    <span class="pct-donut-chart-pf-chart">
-      <span id="utilizationDonutChart24"></span>
-    </span>
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart24"></div>
+    </div>
     <span class="pct-donut-chart-pf-label text-left">
       60 MHz of 100 MHz
     </span>
@@ -794,9 +794,9 @@
           <div id="utilizationDonutChart31" class="example-donut-chart-utilization"></div>
 
 <div class="pct-donut-chart-pf example-donut-chart-utilization">
-  <span class="pct-donut-chart-pf-chart">
-    <span id="utilizationDonutChart32"></span>
-  </span>
+  <div class="pct-donut-chart-pf-chart">
+    <div id="utilizationDonutChart32"></div>
+  </div>
   <span class="pct-donut-chart-pf-label">
     60 MHz of 100 MHz used
   </span>
@@ -804,9 +804,9 @@
 
 <div class="example-donut-chart-utilization">
   <span class="pct-donut-chart-pf pct-donut-chart-pf-left">
-    <span class="pct-donut-chart-pf-chart">
-      <span id="utilizationDonutChart33"></span>
-    </span>
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart33"></div>
+    </div>
     <span class="pct-donut-chart-pf-label text-right">
       60 MHz of 100 MHz used
     </span>
@@ -815,9 +815,9 @@
 
 <div class="example-donut-chart-utilization">
   <span class="pct-donut-chart-pf pct-donut-chart-pf-right">
-    <span class="pct-donut-chart-pf-chart">
-      <span id="utilizationDonutChart34"></span>
-    </span>
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart34"></div>
+    </div>
     <span class="pct-donut-chart-pf-label text-left">
       60 MHz of 100 MHz
     </span>
@@ -1029,9 +1029,9 @@
           <div id="utilizationDonutChart41" class="example-donut-chart-utilization"></div>
 
 <div class="pct-donut-chart-pf example-donut-chart-utilization">
-  <span class="pct-donut-chart-pf-chart">
-    <span id="utilizationDonutChart42"></span>
-  </span>
+  <div class="pct-donut-chart-pf-chart">
+    <div id="utilizationDonutChart42"></div>
+  </div>
   <span class="pct-donut-chart-pf-label">
     60 MHz of 100 MHz used
   </span>
@@ -1039,9 +1039,9 @@
 
 <div class="example-donut-chart-utilization">
   <span class="pct-donut-chart-pf pct-donut-chart-pf-left">
-    <span class="pct-donut-chart-pf-chart">
-      <span id="utilizationDonutChart43"></span>
-    </span>
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart43"></div>
+    </div>
     <span class="pct-donut-chart-pf-label text-right">
       60 MHz of 100 MHz used
     </span>
@@ -1050,9 +1050,9 @@
 
 <div class="example-donut-chart-utilization">
   <span class="pct-donut-chart-pf pct-donut-chart-pf-right">
-    <span class="pct-donut-chart-pf-chart">
-      <span id="utilizationDonutChart44"></span>
-    </span>
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart44"></div>
+    </div>
     <span class="pct-donut-chart-pf-label text-left">
       60 MHz of 100 MHz
     </span>
@@ -1264,9 +1264,9 @@
           <div id="utilizationDonutChart51" class="example-donut-chart-utilization"></div>
 
 <div class="pct-donut-chart-pf example-donut-chart-utilization">
-  <span class="pct-donut-chart-pf-chart">
-    <span id="utilizationDonutChart52"></span>
-  </span>
+  <div class="pct-donut-chart-pf-chart">
+    <div id="utilizationDonutChart52"></div>
+  </div>
   <span class="pct-donut-chart-pf-label">
     60 MHz of 100 MHz used
   </span>
@@ -1274,9 +1274,9 @@
 
 <div class="example-donut-chart-utilization">
   <span class="pct-donut-chart-pf pct-donut-chart-pf-left">
-    <span class="pct-donut-chart-pf-chart">
-      <span id="utilizationDonutChart53"></span>
-    </span>
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart53"></div>
+    </div>
     <span class="pct-donut-chart-pf-label text-right">
       60 MHz of 100 MHz used
     </span>
@@ -1285,9 +1285,9 @@
 
 <div class="example-donut-chart-utilization">
   <span class="pct-donut-chart-pf pct-donut-chart-pf-right">
-    <span class="pct-donut-chart-pf-chart">
-      <span id="utilizationDonutChart54"></span>
-    </span>
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart54"></div>
+    </div>
     <span class="pct-donut-chart-pf-label text-left">
       60 MHz of 100 MHz
     </span>
@@ -1499,9 +1499,9 @@
           <div id="utilizationDonutChart61" class="example-donut-chart-utilization"></div>
 
 <div class="pct-donut-chart-pf example-donut-chart-utilization">
-  <span class="pct-donut-chart-pf-chart">
-    <span id="utilizationDonutChart62"></span>
-  </span>
+  <div class="pct-donut-chart-pf-chart">
+    <div id="utilizationDonutChart62"></div>
+  </div>
   <span class="pct-donut-chart-pf-label">
     60 MHz of 100 MHz used
   </span>
@@ -1509,9 +1509,9 @@
 
 <div class="example-donut-chart-utilization">
   <span class="pct-donut-chart-pf pct-donut-chart-pf-left">
-    <span class="pct-donut-chart-pf-chart">
-      <span id="utilizationDonutChart63"></span>
-    </span>
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart63"></div>
+    </div>
     <span class="pct-donut-chart-pf-label text-right">
       60 MHz of 100 MHz used
     </span>
@@ -1520,9 +1520,9 @@
 
 <div class="example-donut-chart-utilization">
   <span class="pct-donut-chart-pf pct-donut-chart-pf-right">
-    <span class="pct-donut-chart-pf-chart">
-      <span id="utilizationDonutChart64"></span>
-    </span>
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart64"></div>
+    </div>
     <span class="pct-donut-chart-pf-label text-left">
       60 MHz of 100 MHz
     </span>
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/login-single-sign-on.html b/themes/src/main/node_modules/patternfly/dist/tests/login-single-sign-on.html
index 3d255c8..aab0b2c 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/login-single-sign-on.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/login-single-sign-on.html
@@ -85,9 +85,9 @@
           <div class="login-pf-page-footer-sso-services">
             <p>One account for all your company services</p>
             <ul class="login-pf-page-footer-sso-services-logos">
-              <li><img src="../img/google-drive.svg" alt="google drive icon" /></li>
-              <li><img src="../img/gmail.svg" alt="gmail icon" /></li>
-              <li><img src="../img/google-calendar.svg" alt="google calendar icon" /></li>
+              <li><img src="..//img/google-drive.svg" alt="google drive icon" /></li>
+              <li><img src="..//img/gmail.svg" alt="gmail icon" /></li>
+              <li><img src="..//img/google-calendar.svg" alt="google calendar icon" /></li>
             </ul>
           </div>
           <ul class="login-pf-page-footer-links list-unstyled">
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/modals.html b/themes/src/main/node_modules/patternfly/dist/tests/modals.html
index 697f6c1..21a97d2 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/modals.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/modals.html
@@ -41,43 +41,44 @@
         These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
       </div>
       <hr>
-      <button class="btn btn-default" data-toggle="modal" data-target="#myModal">Launch demo modal</button>
-      <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
-        <div class="modal-dialog">
-          <div class="modal-content">
-            <div class="modal-header">
-              <button type="button" class="close" data-dismiss="modal" aria-hidden="true" aria-label="Close">
-                <span class="pficon pficon-close"></span>
-              </button>
-              <h4 class="modal-title" id="myModalLabel">Modal Title</h4>
-            </div>
-            <div class="modal-body">
-              <form class="form-horizontal">
-                <div class="form-group">
-                  <label class="col-sm-3 control-label" for="textInput">Field One</label>
-                  <div class="col-sm-9">
-                    <input type="text" id="textInput" class="form-control"></div>
-                </div>
-                <div class="form-group">
-                  <label class="col-sm-3 control-label" for="textInput2">Field Two</label>
-                  <div class="col-sm-9">
-                    <input type="text" id="textInput2" class="form-control"></div>
-                </div>
-                <div class="form-group">
-                  <label class="col-sm-3 control-label" for="textInput3">Field Three</label>
-                  <div class="col-sm-9">
-                    <input type="text" id="textInput3" class="form-control">
-                  </div>
-                </div>
-              </form>
-            </div>
-            <div class="modal-footer">
-              <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
-              <button type="button" class="btn btn-primary">Save</button>
+<button class="btn btn-default" data-toggle="modal" data-target="#myModal">Launch demo modal</button>
+<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
+  <div class="modal-dialog">
+    <div class="modal-content">
+      <div class="modal-header">
+        <button type="button" class="close" data-dismiss="modal" aria-hidden="true" aria-label="Close">
+          <span class="pficon pficon-close"></span>
+        </button>
+        <h4 class="modal-title" id="myModalLabel">Modal Title</h4>
+      </div>
+      <div class="modal-body">
+        <form class="form-horizontal">
+          <div class="form-group">
+            <label class="col-sm-3 control-label" for="textInput">Field One</label>
+            <div class="col-sm-9">
+              <input type="text" id="textInput" class="form-control"></div>
+          </div>
+          <div class="form-group">
+            <label class="col-sm-3 control-label" for="textInput2">Field Two</label>
+            <div class="col-sm-9">
+              <input type="text" id="textInput2" class="form-control"></div>
+          </div>
+          <div class="form-group">
+            <label class="col-sm-3 control-label" for="textInput3">Field Three</label>
+            <div class="col-sm-9">
+              <input type="text" id="textInput3" class="form-control">
             </div>
           </div>
-        </div>
+        </form>
+      </div>
+      <div class="modal-footer">
+        <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
+        <button type="button" class="btn btn-primary">Save</button>
       </div>
+    </div>
+  </div>
+</div>
+
 
     </div><!-- /container -->
   </body>
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/notification-drawer-vertical-nav.html b/themes/src/main/node_modules/patternfly/dist/tests/notification-drawer-vertical-nav.html
index 0796046..81ab87e 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/notification-drawer-vertical-nav.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/notification-drawer-vertical-nav.html
@@ -65,6 +65,39 @@
         </a>
       </li>
     </ul>
+    
+    <ul class="nav contextselector-pf">
+  <li class="dropdown">
+    <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu3" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+      <span class="contextselector-pf-title">Really long server name server name</span>
+      <span class="caret"></span>
+    </a>
+    <div class="dropdown-menu" aria-labelledby="dropdownMenu3">
+    <div class="form-group">
+    <label class="sr-only" for="searchinput">search</label>
+    <input type="text" class="form-control" id="searchinput" placeholder="Search">
+  </div>
+    <ul class="contextselector-pf-list list-unstyled">
+      <li><a href="#0">A Different Context</a></li>
+      <li><a href="#0">A Second Context</a></li>
+      <li><a href="#0">Current</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+    </ul>
+  </div>
+  </li>
+</ul>
+
+    
   </div>
   <nav class="collapse navbar-collapse">
     <ul class="nav navbar-nav">
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/pagination.html b/themes/src/main/node_modules/patternfly/dist/tests/pagination.html
index ad8faa1..4d8273f 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/pagination.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/pagination.html
@@ -42,252 +42,253 @@
         These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
       </div>
       <hr>
-      <h2>Pager - default size</h2>
-      <ul class="pager">
-        <li class="previous">
-          <a href="#">
-            <span class="i fa fa-angle-left"></span>
-            Previous
-          </a>
-        </li>
-        <li class="next">
-          <a href="#">
-            Next
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <ul class="pager">
-        <li class="previous disabled">
-          <a href="#">
-            <span class="i fa fa-angle-left"></span>
-            Previous
-          </a>
-        </li>
-        <li class="next disabled">
-          <a href="#">
-            Next
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <hr>
-      <h2>Pager - mini size</h2>
-      <ul class="pager pager-sm">
-        <li class="previous">
-          <a href="#">
-            <span class="i fa fa-angle-left"></span>
-            Previous
-          </a>
-        </li>
-        <li class="next">
-          <a href="#">
-            Next
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <ul class="pager pager-sm">
-        <li class="previous disabled">
-          <a href="#">
-            <span class="i fa fa-angle-left"></span>
-            Previous
-          </a>
-        </li>
-        <li class="next disabled">
-          <a href="#">
-            Next
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <hr>
-      <h2>Pagination - default size</h2>
-      <ul class="pagination">
-        <li>
-          <a href="#">
-            <span class="i fa fa-angle-left"></span>
-          </a>
-        </li>
-        <li>
-          <a href="#">1</a>
-        </li>
-        <li>
-          <a href="#">2</a>
-        </li>
-        <li>
-          <a href="#">3</a>
-        </li>
-        <li>
-          <a href="#">4</a>
-        </li>
-        <li>
-          <a href="#">5</a>
-        </li>
-        <li>
-          <a href="#">
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <ul class="pagination">
-        <li class="disabled">
-          <span>
-            <span class="i fa fa-angle-left"></span>
-          </span>
-        </li>
-        <li class="active">
-          <span>
-            1
-            <span class="sr-only">(current)</span>
-          </span>
-        </li>
-        <li>
-          <a href="#">2</a>
-        </li>
-        <li>
-          <a href="#">3</a>
-        </li>
-        <li>
-          <a href="#">4</a>
-        </li>
-        <li>
-          <a href="#">5</a>
-        </li>
-        <li>
-          <a href="#">
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <ul class="pagination">
-        <li class="disabled">
-          <span>
-            <span class="i fa fa-angle-left"></span>
-          </span>
-        </li>
-        <li class="disabled">
-          <span>
-            1
-            <span class="sr-only">(current)</span>
-          </span>
-        </li>
-        <li class="disabled">
-          <a href="#">2</a>
-        </li>
-        <li class="disabled">
-          <a href="#">3</a>
-        </li>
-        <li class="disabled">
-          <a href="#">4</a>
-        </li>
-        <li class="disabled">
-          <a href="#">5</a>
-        </li>
-        <li class="disabled">
-          <a href="#">
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <hr>
-      <h2>Pagination - mini size</h2>
-      <ul class="pagination pagination-sm">
-        <li>
-          <a href="#">
-            <span class="i fa fa-angle-left"></span>
-          </a>
-        </li>
-        <li>
-          <a href="#">1</a>
-        </li>
-        <li>
-          <a href="#">2</a>
-        </li>
-        <li>
-          <a href="#">3</a>
-        </li>
-        <li>
-          <a href="#">4</a>
-        </li>
-        <li>
-          <a href="#">5</a>
-        </li>
-        <li>
-          <a href="#">
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <ul class="pagination pagination-sm">
-        <li class="disabled">
-          <span>
-            <span class="i fa fa-angle-left"></span>
-          </span>
-        </li>
-        <li class="active">
-          <span>
-            1
-            <span class="sr-only">(current)</span>
-          </span>
-        </li>
-        <li>
-          <a href="#">2</a>
-        </li>
-        <li>
-          <a href="#">3</a>
-        </li>
-        <li>
-          <a href="#">4</a>
-        </li>
-        <li>
-          <a href="#">5</a>
-        </li>
-        <li>
-          <a href="#">
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <ul class="pagination pagination-sm">
-        <li class="disabled">
-          <span>
-            <span class="i fa fa-angle-left"></span>
-          </span>
-        </li>
-        <li class="disabled">
-          <span>
-            1
-            <span class="sr-only">(current)</span>
-          </span>
-        </li>
-        <li class="disabled">
-          <a href="#">2</a>
-        </li>
-        <li class="disabled">
-          <a href="#">3</a>
-        </li>
-        <li class="disabled">
-          <a href="#">4</a>
-        </li>
-        <li class="disabled">
-          <a href="#">5</a>
-        </li>
-        <li class="disabled">
-          <a href="#">
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <hr>
-      <h2>Pagination row for card, list, and table views</h2>
-      <p>The following control can be seen in these examples:</p>
-      <ul>
-        <li><a href="pagination-card-view.html">Card View</a></li>
-        <li><a href="pagination-list-view.html">List View</a></li>
-        <li><a href="pagination-table-view.html">Table View</a></li>
-      </ul>
-      <form class="content-view-pf-pagination  clearfix" id="">
+<h2>Pager - default size</h2>
+<ul class="pager">
+  <li class="previous">
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+      Previous
+    </a>
+  </li>
+  <li class="next">
+    <a href="#">
+      Next
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pager">
+  <li class="previous disabled">
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+      Previous
+    </a>
+  </li>
+  <li class="next disabled">
+    <a href="#">
+      Next
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<hr>
+<h2>Pager - mini size</h2>
+<ul class="pager pager-sm">
+  <li class="previous">
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+      Previous
+    </a>
+  </li>
+  <li class="next">
+    <a href="#">
+      Next
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pager pager-sm">
+  <li class="previous disabled">
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+      Previous
+    </a>
+  </li>
+  <li class="next disabled">
+    <a href="#">
+      Next
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<hr>
+<h2>Pagination - default size</h2>
+<ul class="pagination">
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+    </a>
+  </li>
+  <li>
+    <a href="#">1</a>
+  </li>
+  <li>
+    <a href="#">2</a>
+  </li>
+  <li>
+    <a href="#">3</a>
+  </li>
+  <li>
+    <a href="#">4</a>
+  </li>
+  <li>
+    <a href="#">5</a>
+  </li>
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pagination">
+  <li class="disabled">
+    <span>
+      <span class="i fa fa-angle-left"></span>
+    </span>
+  </li>
+  <li class="active">
+    <span>
+      1
+      <span class="sr-only">(current)</span>
+    </span>
+  </li>
+  <li>
+    <a href="#">2</a>
+  </li>
+  <li>
+    <a href="#">3</a>
+  </li>
+  <li>
+    <a href="#">4</a>
+  </li>
+  <li>
+    <a href="#">5</a>
+  </li>
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pagination">
+  <li class="disabled">
+    <span>
+      <span class="i fa fa-angle-left"></span>
+    </span>
+  </li>
+  <li class="disabled">
+    <span>
+      1
+      <span class="sr-only">(current)</span>
+    </span>
+  </li>
+  <li class="disabled">
+    <a href="#">2</a>
+  </li>
+  <li class="disabled">
+    <a href="#">3</a>
+  </li>
+  <li class="disabled">
+    <a href="#">4</a>
+  </li>
+  <li class="disabled">
+    <a href="#">5</a>
+  </li>
+  <li class="disabled">
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<hr>
+<h2>Pagination - mini size</h2>
+<ul class="pagination pagination-sm">
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+    </a>
+  </li>
+  <li>
+    <a href="#">1</a>
+  </li>
+  <li>
+    <a href="#">2</a>
+  </li>
+  <li>
+    <a href="#">3</a>
+  </li>
+  <li>
+    <a href="#">4</a>
+  </li>
+  <li>
+    <a href="#">5</a>
+  </li>
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pagination pagination-sm">
+  <li class="disabled">
+    <span>
+      <span class="i fa fa-angle-left"></span>
+    </span>
+  </li>
+  <li class="active">
+    <span>
+      1
+      <span class="sr-only">(current)</span>
+    </span>
+  </li>
+  <li>
+    <a href="#">2</a>
+  </li>
+  <li>
+    <a href="#">3</a>
+  </li>
+  <li>
+    <a href="#">4</a>
+  </li>
+  <li>
+    <a href="#">5</a>
+  </li>
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pagination pagination-sm">
+  <li class="disabled">
+    <span>
+      <span class="i fa fa-angle-left"></span>
+    </span>
+  </li>
+  <li class="disabled">
+    <span>
+      1
+      <span class="sr-only">(current)</span>
+    </span>
+  </li>
+  <li class="disabled">
+    <a href="#">2</a>
+  </li>
+  <li class="disabled">
+    <a href="#">3</a>
+  </li>
+  <li class="disabled">
+    <a href="#">4</a>
+  </li>
+  <li class="disabled">
+    <a href="#">5</a>
+  </li>
+  <li class="disabled">
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<hr>
+<h2>Pagination row for card, list, and table views</h2>
+<p>The following control can be seen in these examples:</p>
+<ul>
+  <li><a href="pagination-card-view.html">Card View</a></li>
+  <li><a href="pagination-list-view.html">List View</a></li>
+  <li><a href="pagination-table-view.html">Table View</a></li>
+</ul>
+
+<form class="content-view-pf-pagination  clearfix" id="">
   <div class="form-group">
     <select class="selectpicker pagination-pf-pagesize">
       <option value="6">6</option>
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/popovers.html b/themes/src/main/node_modules/patternfly/dist/tests/popovers.html
index 7bd6fbe..62e3fa0 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/popovers.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/popovers.html
@@ -106,6 +106,9 @@
   // Initialize Popovers
   $(document).ready(function() {
     $('[data-toggle=popover]').popovers()
+      .on('hidden.bs.popover', function (e) {
+        $(e.target).data('bs.popover').inState.click = false;
+      });
   });
 </script>
 
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-primary-only.html b/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-primary-only.html
index 10f8d45..67c7dd7 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-primary-only.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-primary-only.html
@@ -59,6 +59,7 @@
     <a href="/" class="navbar-brand">
       <img class="navbar-brand-icon" src="..//img/logo-alt.svg" alt=""/><img class="navbar-brand-name" src="..//img/brand-alt.svg" alt="PatternFly Enterprise Application" />
     </a>
+    
   </div>
   <nav class="collapse navbar-collapse">
     <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-with-badges.html b/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-with-badges.html
index b677bda..457ee65 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-with-badges.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-with-badges.html
@@ -59,6 +59,7 @@
     <a href="/" class="navbar-brand">
       <img class="navbar-brand-icon" src="..//img/logo-alt.svg" alt=""/><img class="navbar-brand-name" src="..//img/brand-alt.svg" alt="PatternFly Enterprise Application" />
     </a>
+    
   </div>
   <nav class="collapse navbar-collapse">
     <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
@@ -2045,6 +2046,17 @@
   });
 </script>
 
+<script>
+  const currentUrl = new URL(window.location.href);
+  const currentEnvironment = currentUrl.searchParams.get('environment');
+
+  if (currentEnvironment === 'regressions') {
+    let verticalNavEl = document.querySelector('div.nav-pf-vertical');
+    let ipsumEl = document.querySelector('[data-target="#ipsum-secondary"]');
+    ipsumEl.className = `${ipsumEl.className} is-hover`;
+    verticalNavEl.className = `${verticalNavEl.className} nav-pf-vertical-with-submenus hover-secondary-nav-pf`;
+  }
+</script>
 
   </body>
 </html>
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-with-secondary.html b/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-with-secondary.html
index 676662b..3f04501 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-with-secondary.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-with-secondary.html
@@ -59,6 +59,7 @@
     <a href="/" class="navbar-brand">
       <img class="navbar-brand-icon" src="..//img/logo-alt.svg" alt=""/><img class="navbar-brand-name" src="..//img/brand-alt.svg" alt="PatternFly Enterprise Application" />
     </a>
+    
   </div>
   <nav class="collapse navbar-collapse">
     <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
@@ -1772,6 +1773,17 @@
   });
 </script>
 
+<script>
+  const currentUrl = new URL(window.location.href);
+  const currentEnvironment = currentUrl.searchParams.get('environment');
+
+  if (currentEnvironment === 'regressions') {
+    let verticalNavEl = document.querySelector('div.nav-pf-vertical');
+    let ipsumEl = document.querySelector('[data-target="#ipsum-secondary"]');
+    ipsumEl.className = `${ipsumEl.className} is-hover`;
+    verticalNavEl.className = `${verticalNavEl.className} nav-pf-vertical-with-submenus hover-secondary-nav-pf`;
+  }
+</script>
 
   </body>
 </html>
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-with-tertiary-no-icons.html b/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-with-tertiary-no-icons.html
index c1089c2..3788650 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-with-tertiary-no-icons.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-with-tertiary-no-icons.html
@@ -59,6 +59,7 @@
     <a href="/" class="navbar-brand">
       <img class="navbar-brand-icon" src="..//img/logo-alt.svg" alt=""/><img class="navbar-brand-name" src="..//img/brand-alt.svg" alt="PatternFly Enterprise Application" />
     </a>
+    
   </div>
   <nav class="collapse navbar-collapse">
     <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
@@ -1946,6 +1947,19 @@
   });
 </script>
 
+<script>
+  const currentUrl = new URL(window.location.href);
+  const currentEnvironment = currentUrl.searchParams.get('environment');
+
+  if (currentEnvironment === 'regressions') {
+    let verticalNavEl = document.querySelector('div.nav-pf-vertical');
+    let ipsumEl = document.querySelector('[data-target="#ipsum-secondary"]');
+    let tertiaryNavItemEl = document.querySelector('.list-group-item.active.tertiary-nav-item-pf')
+    verticalNavEl.className = `${verticalNavEl.className} nav-pf-vertical-with-submenus hidden-icons-pf hover-secondary-nav-pf hover-tertiary-nav-pf`;
+    ipsumEl.className = `${ipsumEl.className} is-hover`;
+    tertiaryNavItemEl.className = `${tertiaryNavItemEl.className} is-hover`;
+  }
+</script>
 
   </body>
 </html>
diff --git a/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-with-tertiary-pins.html b/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-with-tertiary-pins.html
index b18b7c3..683cbee 100644
--- a/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-with-tertiary-pins.html
+++ b/themes/src/main/node_modules/patternfly/dist/tests/vertical-navigation-with-tertiary-pins.html
@@ -59,6 +59,7 @@
     <a href="/" class="navbar-brand">
       <img class="navbar-brand-icon" src="..//img/logo-alt.svg" alt=""/><img class="navbar-brand-name" src="..//img/brand-alt.svg" alt="PatternFly Enterprise Application" />
     </a>
+    
   </div>
   <nav class="collapse navbar-collapse">
     <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
@@ -1946,6 +1947,19 @@
   });
 </script>
 
+<script>
+  const currentUrl = new URL(window.location.href);
+  const currentEnvironment = currentUrl.searchParams.get('environment');
+
+  if (currentEnvironment === 'regressions') {
+    let verticalNavEl = document.querySelector('div.nav-pf-vertical');
+    let ipsumEl = document.querySelector('[data-target="#ipsum-secondary"]');
+    let tertiaryNavItemEl = document.querySelector('.list-group-item.active.tertiary-nav-item-pf')
+    verticalNavEl.className = `${verticalNavEl.className} nav-pf-vertical-with-submenus hidden-icons-pf hover-secondary-nav-pf hover-tertiary-nav-pf`;
+    ipsumEl.className = `${ipsumEl.className} is-hover`;
+    tertiaryNavItemEl.className = `${tertiaryNavItemEl.className} is-hover`;
+  }
+</script>
 
   </body>
 </html>
diff --git a/themes/src/main/node_modules/patternfly/npm-shrinkwrap.json b/themes/src/main/node_modules/patternfly/npm-shrinkwrap.json
index 4df2670..b7c2b08 100644
--- a/themes/src/main/node_modules/patternfly/npm-shrinkwrap.json
+++ b/themes/src/main/node_modules/patternfly/npm-shrinkwrap.json
@@ -1,6 +1,6 @@
 {
   "name": "patternfly",
-  "version": "3.38.1",
+  "version": "3.41.6",
   "dependencies": {
     "bootstrap": {
       "version": "3.3.7",
diff --git a/themes/src/main/node_modules/patternfly/package.json b/themes/src/main/node_modules/patternfly/package.json
index 19195d5..11f54b6 100644
--- a/themes/src/main/node_modules/patternfly/package.json
+++ b/themes/src/main/node_modules/patternfly/package.json
@@ -1,28 +1,28 @@
 {
-  "_from": "patternfly@3.38.1",
-  "_id": "patternfly@3.38.1",
+  "_from": "patternfly@3.41.6",
+  "_id": "patternfly@3.41.6",
   "_inBundle": false,
-  "_integrity": "sha1-/9wvykGxjJvkgRg7c5+ZoSPN4xQ=",
+  "_integrity": "sha1-4GDPda0Ri8UYWaBdjnMGHIgER+8=",
   "_location": "/patternfly",
   "_phantomChildren": {},
   "_requested": {
     "type": "version",
     "registry": true,
-    "raw": "patternfly@3.38.1",
+    "raw": "patternfly@3.41.6",
     "name": "patternfly",
     "escapedName": "patternfly",
-    "rawSpec": "3.38.1",
+    "rawSpec": "3.41.6",
     "saveSpec": null,
-    "fetchSpec": "3.38.1"
+    "fetchSpec": "3.41.6"
   },
   "_requiredBy": [
     "/"
   ],
-  "_resolved": "https://registry.npmjs.org/patternfly/-/patternfly-3.38.1.tgz",
-  "_shasum": "ffdc2fca41b18c9be481183b739f99a123cde314",
+  "_resolved": "https://registry.npmjs.org/patternfly/-/patternfly-3.41.6.tgz",
+  "_shasum": "e060cf75ad118bc51859a05d8e73061c880447ef",
   "_shrinkwrap": {
     "name": "patternfly",
-    "version": "3.38.1",
+    "version": "3.41.6",
     "dependencies": {
       "bootstrap": {
         "version": "3.3.7",
@@ -171,7 +171,7 @@
       }
     }
   },
-  "_spec": "patternfly@3.38.1",
+  "_spec": "patternfly@3.41.6",
   "_where": "/home/st/dev/keycloak/themes/src/main",
   "author": {
     "name": "Red Hat"
@@ -216,7 +216,7 @@
   "devDependencies": {
     "@commitlint/cli": "^3.2.0",
     "autoprefixer": "^6.4.0",
-    "backstopjs": "^3.0.0",
+    "backstopjs": "^3.1.15",
     "chromy": "^0.5.5",
     "commitizen": "^2.9.6",
     "commitlint-config-cz": "^0.5.0",
@@ -243,7 +243,7 @@
     "grunt-postcss": "^0.8.0",
     "grunt-run": "^0.6.0",
     "grunt-sass": "^2.0.0",
-    "grunt-stylelint": "^0.7.0",
+    "grunt-stylelint": "^0.9.0",
     "html-pdf": "^2.2.0",
     "husky": "^0.14.3",
     "jasmine-core": "^2.4.1",
@@ -265,6 +265,7 @@
     "pixrem": "^3.0.1",
     "require-all": "^2.2.0",
     "semantic-release": "^6.3.6",
+    "stylelint": "^8.0.0",
     "table": "3.7.9"
   },
   "files": [
@@ -317,14 +318,16 @@
     "grunt": "grunt",
     "jekyll": "ruby --version || echo \"Ruby required\"; bundler -v || gem install bundler; bundle check || bundle install; set -e",
     "ncu": "ncu --semverLevel minor -p",
-    "regressions": "node ./backstop/test",
+    "regressions": "npm run regressions:build && npm run regressions:test",
     "regressions-fix": "pkill -f '(chrome)?(--headless)'",
     "regressions-init": "node ./backstop/reference",
+    "regressions:build": "export PF_PAGE_BUILDER=jekyll npm run build",
+    "regressions:test": "node ./backstop/test",
     "semantic-release": "semantic-release pre && npm publish && semantic-release post",
     "semantic-release-post": "semantic-release post",
     "semantic-release-pre": "semantic-release pre",
     "start": "grunt build serve",
     "test": "grunt karma"
   },
-  "version": "3.38.1"
+  "version": "3.41.6"
 }
diff --git a/themes/src/main/node_modules/patternfly/README.md b/themes/src/main/node_modules/patternfly/README.md
index 79bc42d..a036345 100644
--- a/themes/src/main/node_modules/patternfly/README.md
+++ b/themes/src/main/node_modules/patternfly/README.md
@@ -1,6 +1,7 @@
 [![Build Status](https://travis-ci.org/patternfly/patternfly.svg?branch=master)](https://travis-ci.org/patternfly/patternfly)
 [![Dependency Status](https://gemnasium.com/badges/github.com/patternfly/patternfly.svg)](https://gemnasium.com/github.com/patternfly/patternfly)
 [![Code Climate](https://codeclimate.com/github/patternfly/patternfly/badges/gpa.svg)](https://codeclimate.com/github/patternfly/patternfly)
+[![NSP Status](https://nodesecurity.io/orgs/patternfly/projects/d8289b24-4ec5-4f7c-86c1-02aa2e6cf73d/badge)](https://nodesecurity.io/orgs/patternfly/projects/d8289b24-4ec5-4f7c-86c1-02aa2e6cf73d)
 [![npm version](https://badge.fury.io/js/patternfly.svg)](https://badge.fury.io/js/patternfly)
 
 [![Gitter](https://badges.gitter.im/patternfly/patternfly.svg)](https://gitter.im/patternfly/patternfly?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
@@ -58,7 +59,7 @@ exclude: [
 **Patternfly now supports Sass natively!**
 Sass is included in the `dist/sass` directory. Just add `node_modules` to your build tool's Sass include paths then `@import 'patternfly/dist/sass/patternfly';` in your Sass to get started!
 
-Please note that the [patternfly-sass](https://github.com/patternfly/patternfly-sass) is no longer supported and will not include any features or fixes introduced after Patternfly 3.23.2. However, the [patternfly-sass](https://rubygems.org/patternfly-sass) Rubygem is maintained further and built from this repository. 
+Please note that the [patternfly-sass](https://github.com/patternfly/patternfly-sass) is no longer supported and will not include any features or fixes introduced after Patternfly 3.23.2. However, the [patternfly-sass](https://rubygems.org/patternfly-sass) Rubygem is maintained further and built from this repository.
 
 ### AngularJS
 
@@ -243,7 +244,7 @@ The Less to Sass Conversion step will be accomplished and managed as a part of a
 Sass and Less do not have perfect feature parity, which can sometimes throw a wrench into the conversion process described above. Furthermore, a failed conversion may be somewhat transparent since it may create Sass that will compile to unexpected, but valid CSS. The following are a few known scenarios that can be easily avoided to prevent failures in the Less to Sass conversion process.
 
 #### Non-parametric Mixins
-Sass does not support non-parametric mixins in the same way that Less does. Mixins must be explictly declared in Sass, whereas any class definition in Less can be used as a non-parametric mixin. Sass does not have a feature that perfectly parallels this behavior, so we have to use the closest thing which is the `@extend` statement. However, an edge case exists where `@extend` statements are not allowed within media queries in Sass. This creates a scenario where uncompilable Sass code can be generated from perfectly acceptable Less. For example:  
+Sass does not support non-parametric mixins in the same way that Less does. Mixins must be explictly declared in Sass, whereas any class definition in Less can be used as a non-parametric mixin. Sass does not have a feature that perfectly parallels this behavior, so we have to use the closest thing which is the `@extend` statement. However, an edge case exists where `@extend` statements are not allowed within media queries in Sass. This creates a scenario where uncompilable Sass code can be generated from perfectly acceptable Less. For example:
 **Less:**
 ```
   .applauncher-pf {
@@ -321,7 +322,7 @@ This breaks for two reasons. We cannot use the `@extend` statement directly insi
 ```
 
 #### Tilde-Escaped Strings
-Strings that are escaped using the tilde in Less get converted to the Sass `unquote()` function. This causes Sass compilation issues when using escaped strings inside native CSS functions like `calc()`. Here is what happens:  
+Strings that are escaped using the tilde in Less get converted to the Sass `unquote()` function. This causes Sass compilation issues when using escaped strings inside native CSS functions like `calc()`. Here is what happens:
 Less:
 ```
 height: calc(~"100vh - 20px");
@@ -393,6 +394,8 @@ grunt karma
 ```
 ### Visual Regression Testing
 
+*Visual regression tests require Jekyll to be installed*
+
 Visual regression tests provide a way to detect if unintended visual changes have
 occured as a result of changes in the code. They work by taking screenshots of
 what components or pages should look like in a browser (known as references), and then comparing the references to screenshots of those components or pages with your code changes applied. Once the tests are complete, you will be a shown the test results in a browser.
diff --git a/themes/src/main/node_modules/patternfly/tests/build/less/patternfly.css b/themes/src/main/node_modules/patternfly/tests/build/less/patternfly.css
index a6a6bfb..82499f6 100644
--- a/themes/src/main/node_modules/patternfly/tests/build/less/patternfly.css
+++ b/themes/src/main/node_modules/patternfly/tests/build/less/patternfly.css
@@ -9147,7 +9147,7 @@ button.close {
 }
 .breadcrumb > li + li:before {
   color: #9c9c9c;
-  content: "\f101";
+  content: "\f105";
   font-family: "FontAwesome";
   font-size: 11px;
   padding: 0 9px 0 7px;
@@ -9799,7 +9799,7 @@ fieldset[disabled] .pager li > span.active {
   background: #f5f5f5;
   box-shadow: none;
   color: #8b8d8f;
-  cursor: default;
+  cursor: not-allowed;
 }
 .pager .next > a > .i,
 .pager .next > span > .i {
@@ -9939,7 +9939,7 @@ fieldset[disabled] .pagination > li > span.active {
 .pagination > .disabled > a:hover,
 .pagination > .disabled > a:focus {
   box-shadow: none;
-  cursor: default;
+  cursor: not-allowed;
   background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
   background-repeat: repeat-x;
   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
diff --git a/themes/src/main/node_modules/patternfly/tests/build/less/patternfly.css.map b/themes/src/main/node_modules/patternfly/tests/build/less/patternfly.css.map
index 187bbae..716927b 100644
--- a/themes/src/main/node_modules/patternfly/tests/build/less/patternfly.css.map
+++ b/themes/src/main/node_modules/patternfly/tests/build/less/patternfly.css.map
@@ -1 +1 @@
-{"version":3,"sources":["src/less/fonts.less","node_modules/bootstrap/less/normalize.less","node_modules/bootstrap/less/print.less","node_modules/bootstrap/less/glyphicons.less","node_modules/bootstrap/less/scaffolding.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","src/less/variables.less","node_modules/bootstrap/less/mixins/tab-focus.less","node_modules/bootstrap/less/thumbnails.less","node_modules/bootstrap/less/carousel.less","node_modules/bootstrap/less/mixins/image.less","node_modules/bootstrap/less/type.less","node_modules/bootstrap/less/mixins/text-emphasis.less","node_modules/bootstrap/less/mixins/background-variant.less","node_modules/bootstrap/less/mixins/text-overflow.less","node_modules/bootstrap/less/code.less","node_modules/bootstrap/less/grid.less","node_modules/bootstrap/less/mixins/grid.less","node_modules/bootstrap/less/mixins/grid-framework.less","node_modules/bootstrap/less/tables.less","node_modules/bootstrap/less/mixins/table-row.less","node_modules/bootstrap/less/forms.less","node_modules/bootstrap/less/mixins/forms.less","src/less/bootstrap-mixin-overrides.less","node_modules/bootstrap/less/buttons.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap/less/button-groups.less","node_modules/bootstrap/less/component-animations.less","node_modules/bootstrap/less/dropdowns.less","node_modules/bootstrap/less/mixins/nav-divider.less","node_modules/bootstrap/less/mixins/reset-filter.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/input-groups.less","node_modules/bootstrap/less/navs.less","node_modules/bootstrap/less/navbar.less","node_modules/bootstrap/less/mixins/nav-vertical-align.less","node_modules/bootstrap/less/utilities.less","node_modules/font-awesome/less/bordered-pulled.less","node_modules/bootstrap/less/breadcrumbs.less","node_modules/bootstrap/less/pagination.less","node_modules/bootstrap/less/mixins/pagination.less","node_modules/bootstrap/less/pager.less","node_modules/bootstrap/less/labels.less","node_modules/bootstrap/less/mixins/labels.less","node_modules/bootstrap/less/badges.less","node_modules/bootstrap/less/jumbotron.less","node_modules/bootstrap/less/alerts.less","node_modules/bootstrap/less/mixins/alerts.less","node_modules/bootstrap/less/progress-bars.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/progress-bar.less","node_modules/bootstrap/less/media.less","node_modules/bootstrap/less/list-group.less","node_modules/bootstrap/less/mixins/list-group.less","node_modules/bootstrap/less/panels.less","node_modules/bootstrap/less/mixins/panels.less","node_modules/bootstrap/less/responsive-embed.less","node_modules/bootstrap/less/wells.less","node_modules/bootstrap/less/close.less","node_modules/bootstrap/less/modals.less","node_modules/bootstrap/less/tooltip.less","node_modules/bootstrap/less/mixins/reset-text.less","node_modules/bootstrap/less/popovers.less","node_modules/bootstrap/less/mixins/clearfix.less","node_modules/bootstrap/less/mixins/center-block.less","node_modules/bootstrap/less/mixins/hide-text.less","node_modules/bootstrap/less/responsive-utilities.less","node_modules/bootstrap/less/mixins/responsive-visibility.less","node_modules/font-awesome/less/path.less","node_modules/font-awesome/less/core.less","node_modules/font-awesome/less/larger.less","node_modules/font-awesome/less/fixed-width.less","node_modules/font-awesome/less/list.less","node_modules/font-awesome/less/animated.less","node_modules/font-awesome/less/rotated-flipped.less","node_modules/font-awesome/less/mixins.less","node_modules/font-awesome/less/stacked.less","node_modules/font-awesome/less/icons.less","node_modules/font-awesome/less/variables.less","node_modules/font-awesome/less/screen-reader.less","src/less/mixins.less","src/less/alerts.less","src/less/badges.less","src/less/breadcrumbs.less","src/less/buttons.less","src/less/dropdowns.less","src/less/forms.less","src/less/labels.less","src/less/list-group.less","src/less/modals.less","src/less/pager.less","src/less/pagination.less","src/less/panels.less","src/less/popovers.less","src/less/progress-bars.less","src/less/tables.less","src/less/tabs.less","src/less/tooltip.less","src/less/type.less"],"names":[],"mappings":"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ACA,YAAA;IACA,iBAAA;IACA,eAAA;;EARJ,iBAUE;EAVF,iBAWE;IACE,kBAAA;;EAZJ,iBAcE;EAdF,iBAeE;IACE,mBAAA;;EAKJ;IACE,SAAA;IACA,UAAA;IACA,oBAAA;;EAIF;IACE,YAAA;;;AuD9PF,SAAC;AACD,SAAC;ArDkMH,cACE,GqDpMC;ArDmMH,cACE,GqDnMC;AhDLH,UgDIG;AhDJH,UgDKG;AhDeH,gBgDhBG;AhDgBH,gBgDfG;AhDwBH,IgDzBG;AhDyBH,IgDxBG;A3CuhBH,gBAqBE,Y2C7iBC;A3CwhBH,gBAqBE,Y2C5iBC;ArCoBH,YqCrBG;ArCqBH,YqCpBG;ArCiIH,mBAWE,aqC7IC;ArCkIH,mBAWE,aqC5IC;A9BNH,I8BKG;A9BLH,I8BMG;A7BJH,O6BGG;A7BHH,O6BIG;A7BgBH,c6BjBG;A7BiBH,c6BhBG;A7BmCH,gB6BpCG;A7BoCH,gB6BnCG;AtBTH,MsBQG;AtBRH,MsBSG;ATCH,WSFG;ATEH,WSDG;AJgEH,aIjEG;AJiEH,aIhEG;AJwFH,aIzFG;AJyFH,aIxFG;EACC,SAAS,GAAT;EACA,cAAA;;AAEF,SAAC;ArD8LH,cACE,GqD/LC;AhDTH,UgDSG;AhDWH,gBgDXG;AhDoBH,IgDpBG;A3CmhBH,gBAqBE,Y2CxiBC;ArCgBH,YqChBG;ArC6HH,mBAWE,aqCxIC;A9BVH,I8BUG;A7BRH,O6BQG;A7BYH,c6BZG;A7B+BH,gB6B/BG;AtBbH,MsBaG;ATHH,WSGG;AJ4DH,aI5DG;AJoFH,aIpFG;EACC,WAAA;;A3BRJ;E4BRE,cAAA;EACA,iBAAA;EACA,kBAAA;;A5BSF;EACE,uBAAA;;AAEF;EACE,sBAAA;;AAQF;EACE,wBAAA;;AAEF;EACE,yBAAA;;AAEF;EACE,kBAAA;;AAEF;E6BzBE,WAAA;EACA,kBAAA;EACA,iBAAA;EACA,6BAAA;EACA,SAAA;;A7B8BF;EACE,wBAAA;;AAOF;EACE,eAAA;;A8BjCF;EACE,mBAAA;;AAMF;AACA;AACA;AACA;ECjBE,wBAAA;;ADqBF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;E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","sourcesContent":["//\n// Fonts\n// --------------------------------------------------\n\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 300;\n  src: url(\"@{font-path}/OpenSans-Light-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Light\"), local(\"OpenSans-Light\"),\n       url(\"@{font-path}/OpenSans-Light-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Light-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Light-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Light-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Light-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 400;\n  src: url(\"@{font-path}/OpenSans-Regular-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans\"), local(\"OpenSans\"),\n       url(\"@{font-path}/OpenSans-Regular-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Regular-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Regular-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Regular-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Regular-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 300;\n  src: url(\"@{font-path}/OpenSans-LightItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Light Italic\"), local(\"OpenSansLight-Italic\"),\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 400;\n  src: url(\"@{font-path}/OpenSans-Italic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Italic\"), local(\"OpenSans-Italic\"),\n       url(\"@{font-path}/OpenSans-Italic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Italic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Italic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Italic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Italic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 600;\n  src: url(\"@{font-path}/OpenSans-Semibold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Semibold\"), local(\"OpenSans-Semibold-webfont\"),\n       url(\"@{font-path}/OpenSans-Semibold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 600;\n  src: url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Semibold Italic\"), local(\"OpenSans-SemiboldItalic-webfont\"),\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 700;\n  src: url(\"@{font-path}/OpenSans-Bold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Bold\"), local(\"OpenSans-Bold\"),\n       url(\"@{font-path}/OpenSans-Bold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Bold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Bold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Bold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Bold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 700;\n  src: url(\"@{font-path}/OpenSans-BoldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Bold Italic\"), local(\"OpenSans-BoldItalic\"),\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 800;\n  src: url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Extrabold Italic\"), local(\"OpenSans-ExtraboldItalic\"),\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 800;\n  src: url(\"@{font-path}/OpenSans-ExtraBold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Extrabold\"), local(\"OpenSans-Extrabold\"),\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n","/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS and IE text size adjust after device orientation change,\n//    without disabling user zoom.\n//\n\nhtml {\n  font-family: sans-serif; // 1\n  -ms-text-size-adjust: 100%; // 2\n  -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n  margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n  display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n  display: inline-block; // 1\n  vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n  display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n  background-color: transparent;\n}\n\n//\n// Improve readability of focused elements when they are also in an\n// active/hover state.\n//\n\na:active,\na:hover {\n  outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n  border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n  font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n  font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n  background: #ff0;\n  color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n  font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\n\nsup {\n  top: -0.5em;\n}\n\nsub {\n  bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n  border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n  overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n  margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n  box-sizing: content-box;\n  height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n  overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace, monospace;\n  font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n//    Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  color: inherit; // 1\n  font: inherit; // 2\n  margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n  overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n  text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n//    and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n//    `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n  -webkit-appearance: button; // 2\n  cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n  cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n  border: 0;\n  padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n  line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n  box-sizing: border-box; // 1\n  padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.\n//\n\ninput[type=\"search\"] {\n  -webkit-appearance: textfield; // 1\n  box-sizing: content-box; //2\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n  border: 1px solid #c0c0c0;\n  margin: 0 2px;\n  padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n  border: 0; // 1\n  padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n  overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n  font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n  border-collapse: collapse;\n  border-spacing: 0;\n}\n\ntd,\nth {\n  padding: 0;\n}\n","/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n    *,\n    *:before,\n    *:after {\n        background: transparent !important;\n        color: #000 !important; // Black prints faster: h5bp.com/s\n        box-shadow: none !important;\n        text-shadow: none !important;\n    }\n\n    a,\n    a:visited {\n        text-decoration: underline;\n    }\n\n    a[href]:after {\n        content: \" (\" attr(href) \")\";\n    }\n\n    abbr[title]:after {\n        content: \" (\" attr(title) \")\";\n    }\n\n    // Don't show links that are fragment identifiers,\n    // or use the `javascript:` pseudo protocol\n    a[href^=\"#\"]:after,\n    a[href^=\"javascript:\"]:after {\n        content: \"\";\n    }\n\n    pre,\n    blockquote {\n        border: 1px solid #999;\n        page-break-inside: avoid;\n    }\n\n    thead {\n        display: table-header-group; // h5bp.com/t\n    }\n\n    tr,\n    img {\n        page-break-inside: avoid;\n    }\n\n    img {\n        max-width: 100% !important;\n    }\n\n    p,\n    h2,\n    h3 {\n        orphans: 3;\n        widows: 3;\n    }\n\n    h2,\n    h3 {\n        page-break-after: avoid;\n    }\n\n    // Bootstrap specific changes start\n\n    // Bootstrap components\n    .navbar {\n        display: none;\n    }\n    .btn,\n    .dropup > .btn {\n        > .caret {\n            border-top-color: #000 !important;\n        }\n    }\n    .label {\n        border: 1px solid #000;\n    }\n\n    .table {\n        border-collapse: collapse !important;\n\n        td,\n        th {\n            background-color: #fff !important;\n        }\n    }\n    .table-bordered {\n        th,\n        td {\n            border: 1px solid #ddd !important;\n        }\n    }\n\n    // Bootstrap specific changes end\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// <a href=\"#\"><span class=\"glyphicon glyphicon-star\"></span> Star</a>\n\n// Import the fonts\n@font-face {\n  font-family: 'Glyphicons Halflings';\n  src: url('@{icon-font-path}@{icon-font-name}.eot');\n  src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),\n       url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),\n       url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),\n       url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),\n       url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');\n}\n\n// Catchall baseclass\n.glyphicon {\n  position: relative;\n  top: 1px;\n  display: inline-block;\n  font-family: 'Glyphicons Halflings';\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk               { &:before { content: \"\\002a\"; } }\n.glyphicon-plus                   { &:before { content: \"\\002b\"; } }\n.glyphicon-euro,\n.glyphicon-eur                    { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus                  { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud                  { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope               { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil                 { &:before { content: \"\\270f\"; } }\n.glyphicon-glass                  { &:before { content: \"\\e001\"; } }\n.glyphicon-music                  { &:before { content: \"\\e002\"; } }\n.glyphicon-search                 { &:before { content: \"\\e003\"; } }\n.glyphicon-heart                  { &:before { content: \"\\e005\"; } }\n.glyphicon-star                   { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty             { &:before { content: \"\\e007\"; } }\n.glyphicon-user                   { &:before { content: \"\\e008\"; } }\n.glyphicon-film                   { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large               { &:before { content: \"\\e010\"; } }\n.glyphicon-th                     { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list                { &:before { content: \"\\e012\"; } }\n.glyphicon-ok                     { &:before { content: \"\\e013\"; } }\n.glyphicon-remove                 { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in                { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out               { &:before { content: \"\\e016\"; } }\n.glyphicon-off                    { &:before { content: \"\\e017\"; } }\n.glyphicon-signal                 { &:before { content: \"\\e018\"; } }\n.glyphicon-cog                    { &:before { content: \"\\e019\"; } }\n.glyphicon-trash                  { &:before { content: \"\\e020\"; } }\n.glyphicon-home                   { &:before { content: \"\\e021\"; } }\n.glyphicon-file                   { &:before { content: \"\\e022\"; } }\n.glyphicon-time                   { &:before { content: \"\\e023\"; } }\n.glyphicon-road                   { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt           { &:before { content: \"\\e025\"; } }\n.glyphicon-download               { &:before { content: \"\\e026\"; } }\n.glyphicon-upload                 { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox                  { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle            { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat                 { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh                { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt               { &:before { content: \"\\e032\"; } }\n.glyphicon-lock                   { &:before { content: \"\\e033\"; } }\n.glyphicon-flag                   { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones             { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off             { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down            { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up              { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode                 { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode                { &:before { content: \"\\e040\"; } }\n.glyphicon-tag                    { &:before { content: \"\\e041\"; } }\n.glyphicon-tags                   { &:before { content: \"\\e042\"; } }\n.glyphicon-book                   { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark               { &:before { content: \"\\e044\"; } }\n.glyphicon-print                  { &:before { content: \"\\e045\"; } }\n.glyphicon-camera                 { &:before { content: \"\\e046\"; } }\n.glyphicon-font                   { &:before { content: \"\\e047\"; } }\n.glyphicon-bold                   { &:before { content: \"\\e048\"; } }\n.glyphicon-italic                 { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height            { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width             { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left             { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center           { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right            { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify          { &:before { content: \"\\e055\"; } }\n.glyphicon-list                   { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left            { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right           { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video         { &:before { content: \"\\e059\"; } }\n.glyphicon-picture                { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker             { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust                 { &:before { content: \"\\e063\"; } }\n.glyphicon-tint                   { &:before { content: \"\\e064\"; } }\n.glyphicon-edit                   { &:before { content: \"\\e065\"; } }\n.glyphicon-share                  { &:before { content: \"\\e066\"; } }\n.glyphicon-check                  { &:before { content: \"\\e067\"; } }\n.glyphicon-move                   { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward          { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward          { &:before { content: \"\\e070\"; } }\n.glyphicon-backward               { &:before { content: \"\\e071\"; } }\n.glyphicon-play                   { &:before { content: \"\\e072\"; } }\n.glyphicon-pause                  { &:before { content: \"\\e073\"; } }\n.glyphicon-stop                   { &:before { content: \"\\e074\"; } }\n.glyphicon-forward                { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward           { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward           { &:before { content: \"\\e077\"; } }\n.glyphicon-eject                  { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left           { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right          { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign              { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign             { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign            { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign                { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign          { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign              { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot             { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle          { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle              { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle             { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left             { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right            { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up               { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down             { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt              { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full            { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small           { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign       { &:before { content: \"\\e101\"; } }\n.glyphicon-gift                   { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf                   { &:before { content: \"\\e103\"; } }\n.glyphicon-fire                   { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open               { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close              { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign           { &:before { content: \"\\e107\"; } }\n.glyphicon-plane                  { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar               { &:before { content: \"\\e109\"; } }\n.glyphicon-random                 { &:before { content: \"\\e110\"; } }\n.glyphicon-comment                { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet                 { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up             { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down           { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet                { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart          { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close           { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open            { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical        { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal      { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd                    { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn               { &:before { content: \"\\e122\"; } }\n.glyphicon-bell                   { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate            { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up              { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down            { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right             { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left              { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up                { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down              { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right     { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left      { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up        { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down      { &:before { content: \"\\e134\"; } }\n.glyphicon-globe                  { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench                 { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks                  { &:before { content: \"\\e137\"; } }\n.glyphicon-filter                 { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase              { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen             { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard              { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip              { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty            { &:before { content: \"\\e143\"; } }\n.glyphicon-link                   { &:before { content: \"\\e144\"; } }\n.glyphicon-phone                  { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin                { &:before { content: \"\\e146\"; } }\n.glyphicon-usd                    { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp                    { &:before { content: \"\\e149\"; } }\n.glyphicon-sort                   { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet       { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt   { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order          { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt      { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes     { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked              { &:before { content: \"\\e157\"; } }\n.glyphicon-expand                 { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down          { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up            { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in                 { &:before { content: \"\\e161\"; } }\n.glyphicon-flash                  { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out                { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window             { &:before { content: \"\\e164\"; } }\n.glyphicon-record                 { &:before { content: \"\\e165\"; } }\n.glyphicon-save                   { &:before { content: \"\\e166\"; } }\n.glyphicon-open                   { &:before { content: \"\\e167\"; } }\n.glyphicon-saved                  { &:before { content: \"\\e168\"; } }\n.glyphicon-import                 { &:before { content: \"\\e169\"; } }\n.glyphicon-export                 { &:before { content: \"\\e170\"; } }\n.glyphicon-send                   { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk            { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved           { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove          { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save            { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open            { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card            { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer               { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery                { &:before { content: \"\\e179\"; } }\n.glyphicon-header                 { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed             { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone               { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt              { &:before { content: \"\\e183\"; } }\n.glyphicon-tower                  { &:before { content: \"\\e184\"; } }\n.glyphicon-stats                  { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video               { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video               { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles              { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo           { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby            { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1              { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1              { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1              { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark         { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark      { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download         { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload           { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer           { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous         { &:before { content: \"\\e200\"; } }\n.glyphicon-cd                     { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file              { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file              { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up               { &:before { content: \"\\e204\"; } }\n.glyphicon-copy                   { &:before { content: \"\\e205\"; } }\n.glyphicon-paste                  { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door                   { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key                    { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert                  { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer              { &:before { content: \"\\e210\"; } }\n.glyphicon-king                   { &:before { content: \"\\e211\"; } }\n.glyphicon-queen                  { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn                   { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop                 { &:before { content: \"\\e214\"; } }\n.glyphicon-knight                 { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula           { &:before { content: \"\\e216\"; } }\n.glyphicon-tent                   { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard             { &:before { content: \"\\e218\"; } }\n.glyphicon-bed                    { &:before { content: \"\\e219\"; } }\n.glyphicon-apple                  { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase                  { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass              { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp                   { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate              { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank             { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors               { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin                { &:before { content: \"\\e227\"; } }\n.glyphicon-btc                    { &:before { content: \"\\e227\"; } }\n.glyphicon-xbt                    { &:before { content: \"\\e227\"; } }\n.glyphicon-yen                    { &:before { content: \"\\00a5\"; } }\n.glyphicon-jpy                    { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble                  { &:before { content: \"\\20bd\"; } }\n.glyphicon-rub                    { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale                  { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly              { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted       { &:before { content: \"\\e232\"; } }\n.glyphicon-education              { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal      { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical        { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger         { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window           { &:before { content: \"\\e237\"; } }\n.glyphicon-oil                    { &:before { content: \"\\e238\"; } }\n.glyphicon-grain                  { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses             { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size              { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color             { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background        { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top       { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom    { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left      { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical  { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right     { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right         { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left          { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom        { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top           { &:before { content: \"\\e253\"; } }\n.glyphicon-console                { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript            { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript              { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left              { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right             { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down              { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up                { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n  .box-sizing(border-box);\n}\n*:before,\n*:after {\n  .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n  font-size: 10px;\n  -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n  font-family: @font-family-base;\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @text-color;\n  background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n}\n\n\n// Links\n\na {\n  color: @link-color;\n  text-decoration: none;\n\n  &:hover,\n  &:focus {\n    color: @link-hover-color;\n    text-decoration: @link-hover-decoration;\n  }\n\n  &:focus {\n    .tab-focus();\n  }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n  margin: 0;\n}\n\n\n// Images\n\nimg {\n  vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n  .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n  border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n  padding: @thumbnail-padding;\n  line-height: @line-height-base;\n  background-color: @thumbnail-bg;\n  border: 1px solid @thumbnail-border;\n  border-radius: @thumbnail-border-radius;\n  .transition(all .2s ease-in-out);\n\n  // Keep them at most 100% wide\n  .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n  border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n  margin-top:    @line-height-computed;\n  margin-bottom: @line-height-computed;\n  border: 0;\n  border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content\n\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n  &:active,\n  &:focus {\n    position: static;\n    width: auto;\n    height: auto;\n    margin: 0;\n    overflow: visible;\n    clip: auto;\n  }\n}\n\n\n// iOS \"clickable elements\" fix for role=\"button\"\n//\n// Fixes \"clickability\" issue (and more generally, the firing of events such as focus as well)\n// for traditionally non-focusable elements with role=\"button\"\n// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n\n[role=\"button\"] {\n  cursor: pointer;\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n  -webkit-animation: @animation;\n       -o-animation: @animation;\n          animation: @animation;\n}\n.animation-name(@name) {\n  -webkit-animation-name: @name;\n          animation-name: @name;\n}\n.animation-duration(@duration) {\n  -webkit-animation-duration: @duration;\n          animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n  -webkit-animation-timing-function: @timing-function;\n          animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n  -webkit-animation-delay: @delay;\n          animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n  -webkit-animation-iteration-count: @iteration-count;\n          animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n  -webkit-animation-direction: @direction;\n          animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n  -webkit-animation-fill-mode: @fill-mode;\n          animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n  -webkit-backface-visibility: @visibility;\n     -moz-backface-visibility: @visibility;\n          backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n          box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n  -webkit-box-sizing: @boxmodel;\n     -moz-box-sizing: @boxmodel;\n          box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n  -webkit-column-count: @column-count;\n     -moz-column-count: @column-count;\n          column-count: @column-count;\n  -webkit-column-gap: @column-gap;\n     -moz-column-gap: @column-gap;\n          column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n  word-wrap: break-word;\n  -webkit-hyphens: @mode;\n     -moz-hyphens: @mode;\n      -ms-hyphens: @mode; // IE10+\n       -o-hyphens: @mode;\n          hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  // Firefox\n  &::-moz-placeholder {\n    color: @color;\n    opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n  }\n  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n  -webkit-transform: scale(@ratio);\n      -ms-transform: scale(@ratio); // IE9 only\n       -o-transform: scale(@ratio);\n          transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n  -webkit-transform: scale(@ratioX, @ratioY);\n      -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n       -o-transform: scale(@ratioX, @ratioY);\n          transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n  -webkit-transform: scaleX(@ratio);\n      -ms-transform: scaleX(@ratio); // IE9 only\n       -o-transform: scaleX(@ratio);\n          transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n  -webkit-transform: scaleY(@ratio);\n      -ms-transform: scaleY(@ratio); // IE9 only\n       -o-transform: scaleY(@ratio);\n          transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n  -webkit-transform: skewX(@x) skewY(@y);\n      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n       -o-transform: skewX(@x) skewY(@y);\n          transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n  -webkit-transform: translate(@x, @y);\n      -ms-transform: translate(@x, @y); // IE9 only\n       -o-transform: translate(@x, @y);\n          transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n  -webkit-transform: translate3d(@x, @y, @z);\n          transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees); // IE9 only\n       -o-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n  -webkit-transform: rotateX(@degrees);\n      -ms-transform: rotateX(@degrees); // IE9 only\n       -o-transform: rotateX(@degrees);\n          transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n  -webkit-transform: rotateY(@degrees);\n      -ms-transform: rotateY(@degrees); // IE9 only\n       -o-transform: rotateY(@degrees);\n          transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n  -webkit-perspective: @perspective;\n     -moz-perspective: @perspective;\n          perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n  -webkit-perspective-origin: @perspective;\n     -moz-perspective-origin: @perspective;\n          perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n  -webkit-transform-origin: @origin;\n     -moz-transform-origin: @origin;\n      -ms-transform-origin: @origin; // IE9 only\n          transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n  -webkit-transition: @transition;\n       -o-transition: @transition;\n          transition: @transition;\n}\n.transition-property(@transition-property) {\n  -webkit-transition-property: @transition-property;\n          transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n  -webkit-transition-delay: @transition-delay;\n          transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n  -webkit-transition-duration: @transition-duration;\n          transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n  -webkit-transition-timing-function: @timing-function;\n          transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n  -webkit-transition: -webkit-transform @transition;\n     -moz-transition: -moz-transform @transition;\n       -o-transition: -o-transform @transition;\n          transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n  -webkit-user-select: @select;\n     -moz-user-select: @select;\n      -ms-user-select: @select; // IE10+\n          user-select: @select;\n}\n","//\n// Variables\n// --------------------------------------------------\n// Bootstrap overrides and PatternFly-specific variables\n\n// Sass compass/sprockets asset helper flag\n// ----------------------\n@pf-sass-asset-helper:                                              false;\n\n// PatternFly-specific\n// -------------------\n@import \"color-variables.less\";\n\n@applauncher-pf-dropdown-menu-border-width:                         1px;\n@applauncher-pf-dropdown-menu-padding:                              9px;\n@applauncher-pf-dropdown-menu-width:                                220px;\n@applauncher-pf-dropdown-toggle-padding:                            7px 10px;\n@applauncher-pf-icon-padding-right:                                 4px;\n@applauncher-pf-menu-link-border-color:                             @color-pf-white;\n@applauncher-pf-menu-link-border-color-hover:                       @color-pf-black-400;\n@applauncher-pf-menu-link-border-width:                             1px;\n@applauncher-pf-menu-link-color:                                    @color-pf-black-300;\n@applauncher-pf-menu-link-color-disabled:                           @color-pf-black-500;\n@applauncher-pf-menu-link-color-hover:                              @color-pf-blue-400;\n@applauncher-pf-menu-link-padding:                                  7px 10px;\n@applauncher-pf-menu-link-padding-block-list:                       15px 10px;\n@applauncher-pf-menu-link-background-color-hover:                   @color-pf-black-150;\n@applauncher-pf-menu-link-shadow:                                   @color-pf-black-300;\n@applauncher-pf-menu-link-icon-font-size:                           2em;\n@applauncher-pf-menu-link-icon-width:                               ((9 * @applauncher-pf-menu-link-icon-font-size) / 14); //Numbers to imitate fa-fw class\n@bootstrap-switch-handle-default-bg-color:                          @color-pf-black-100;\n@bootstrap-treeview-highlight-color:                                @color-pf-blue-300;\n@btn-default-bg-img-start:                                          @color-pf-black-100;\n@btn-default-bg-img-stop:                                           @color-pf-black-200;\n@btn-xs-font-weight:                                                400;\n@card-pf-accented-border-top-color:                                 @color-pf-blue-300;\n@card-pf-aggregate-status-title-icon-color:                         @color-pf-black-900;\n@card-pf-bg-color:                                                  @color-pf-white;\n@card-pf-border-color:                                              @color-pf-black-300;\n@card-pf-border-top-color:                                          transparent;\n@card-pf-container-bg-color:                                        @color-pf-black-150;\n@card-pf-footer-bg-color:                                           @color-pf-black-100;\n@card-pf-selected-border-color:                                     @color-pf-blue-300;\n@donut-font-size-big:                                               30px;\n@drawer-pf-top-vertical:                                            58px;\n@drawer-pf-top-horizontal:                                          26px;\n@dropdown-divider-margin:                                           4px 1px;\n@dropdown-link-active-border-color:                                 @color-pf-blue;\n@dropdown-link-hover-border-color:                                  @color-pf-blue-100;\n@dropdown-link-focus-color:                                         @color-pf-white;\n@flyout-transition-pf:                                              all 200ms cubic-bezier(.35, 0, .25, 1);\n@font-family-monospace:                                             Menlo, Monaco, Consolas, monospace;\n@font-path:                                                         \"../fonts\";\n@footer-pf-bg-color:                                                @color-pf-black;\n@footer-pf-padding-left:                                            25px;\n@footer-pf-padding-top:                                             10px;\n@footer-pf-height:                                                  37px;\n@gray-light-pf:                                                     @color-pf-black-400;\n@gray-pf:                                                           @color-pf-black-700;\n@icon-font-name-fa:                                                 \"FontAwesome\";\n@icon-font-name-pf:                                                 \"PatternFlyIcons-webfont\";\n@icon-prefix:                                                       pficon;\n@img-bg-login:                                                      \"bg-login.jpg\";\n@img-path:                                                          \"../img\";\n@img-spinner:                                                       \"spinner.gif\";\n@img-spinner-inverse:                                               \"spinner-inverse.gif\";\n@img-spinner-inverse-lg:                                            \"spinner-inverse-lg.gif\";\n@img-spinner-inverse-sm:                                            \"spinner-inverse-sm.gif\";\n@img-spinner-inverse-xs:                                            \"spinner-inverse-xs.gif\";\n@img-spinner-lg:                                                    \"spinner-lg.gif\";\n@img-spinner-sm:                                                    \"spinner-sm.gif\";\n@img-spinner-xs:                                                    \"spinner-xs.gif\";\n@input-border-hover:                                                @color-pf-blue-200;\n@input-border-focus:                                                @color-pf-blue-400;\n@list-pf-border-color:                                              @color-pf-black-200;\n@list-pf-active-border-color:                                       @color-pf-black-400;\n@list-pf-header-background-color:                                   @color-pf-black-200;\n@list-pf-hover-background-color:                                    @color-pf-blue-25;\n@list-pf-main-content-width:                                        70%; // sets the proportional width of the main content vs the additional content\n@list-pf-padding:                                                   20px;\n@list-view-accented-border:                                         @color-pf-blue-300;\n@list-view-active-bg:                                               @color-pf-blue-50;\n@list-view-active-border:                                           @color-pf-black-400;\n@list-view-divider:                                                 @color-pf-black-300;\n@list-view-hover-bg:                                                @color-pf-blue-25;\n@list-group-top-border:                                             @color-pf-black-200;\n@login-bg-color:                                                    @color-pf-black;\n@login-container-bg-color-rgba:                                     fade(@color-pf-white, 5.5%);\n@modal-about-pf-bg-img:                                             \"bg-modal-about-pf.png\";\n@modal-title-padding-horizontal:                                    18px;\n@modal-title-padding-vertical:                                      10px;\n@navbar-pf-active-color:                                            @color-pf-black-150;\n@navbar-pf-alt-active-color:                                        @color-pf-white;\n@navbar-pf-alt-bg-color:                                            @color-pf-black;\n@navbar-pf-alt-bg-img:                                              \"bg-navbar-pf-alt.svg\";\n@navbar-pf-bg-color:                                                @color-pf-black;\n@navbar-pf-border-color:                                            @color-pf-blue-300;\n@navbar-pf-color:                                                   @color-pf-black-300;\n@navbar-pf-height:                                                  60px;\n@navbar-pf-icon-bar-bg-color:                                       @color-pf-white;\n@navbar-pf-navbar-navbar-brand-min-width:                           270px;\n@navbar-pf-navbar-navbar-brand-padding:                             8px 0 7px;\n@navbar-pf-navbar-navbar-persistent-bg-color:                       @color-pf-black-150;\n@navbar-pf-navbar-navbar-persistent-border-color:                   @color-pf-black-300;\n@navbar-pf-vertical-active-color:                                   @color-pf-white;\n@navbar-pf-vertical-bg-color:                                       #1d1d1d;\n@navbar-pf-vertical-bg-repeat:                                      no-repeat;\n@navbar-pf-vertical-bg-size:                                        auto 100%;\n@navbar-pf-vertical-border-color:                                   @color-pf-blue-300;\n@navbar-pf-vertical-border-style:                                   solid;\n@navbar-pf-vertical-border-width:                                   2px;\n@navbar-pf-vertical-color:                                          @color-pf-black-300;\n@navbar-pf-vertical-height:                                         60px;\n@navbar-pf-vertical-icon-bar-bg-color:                              @color-pf-white;\n@navbar-pf-vertical-navbar-brand-color:                             @color-pf-white;\n@navbar-pf-vertical-navbar-brand-icon-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-margin:                            0 0 0 25px;\n@navbar-pf-vertical-navbar-brand-min-height:                        35px;\n@navbar-pf-vertical-navbar-brand-max-height:                        35px;\n@navbar-pf-vertical-navbar-brand-line-height:                       34px;\n@navbar-pf-vertical-navbar-brand-name-breakpoint:                   480px;\n@navbar-pf-vertical-navbar-brand-name-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-padding:                           11px 0 12px;\n@navbar-pf-vertical-navbar-toggle-margin:                           13px 15px;\n@navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg:                @color-pf-white;\n@navbar-pf-vertical-nav-item-iconic-padding:                        21px 12px;\n@nav-pf-container-transition-period:                                250ms;\n@nav-pf-menu-transition-period:                                     100ms;\n@nav-pf-vertical-active-color:                                      @color-pf-white;\n@nav-pf-vertical-active-before-color:                               @color-pf-blue-300;\n@nav-pf-vertical-active-bg-color:                                   @color-pf-black-800;\n@nav-pf-vertical-active-border-color:                               @color-pf-black-900;\n@nav-pf-vertical-active-font-weight:                                600;\n@nav-pf-vertical-active-icon-color:                                 @color-pf-blue-300;\n@nav-pf-vertical-badge-color:                                       @color-pf-white;\n@nav-pf-vertical-badge-bg-color:                                    @color-pf-black-900;\n@nav-pf-vertical-bg-color:                                          @color-pf-black-900;\n@nav-pf-vertical-border-color:                                      @color-pf-black-900;\n@nav-pf-vertical-collapsed-width:                                   75px;\n@nav-pf-vertical-color:                                             @color-pf-black-300;\n@nav-pf-vertical-font-weight:                                       400;\n@nav-pf-vertical-icon-color:                                        @color-pf-black-600;\n@nav-pf-vertical-icon-width:                                        24px;\n@nav-pf-vertical-item-border-color:                                 @color-pf-black;\n@nav-pf-vertical-link-height:                                       63px;\n@nav-pf-vertical-link-padding:                                      17px 20px 17px 25px;\n@nav-pf-vertical-secondary-active-color:                            @color-pf-white;\n@nav-pf-vertical-secondary-active-bg-color:                         @color-pf-black-700;\n@nav-pf-vertical-secondary-active-icon-color:                       @color-pf-blue-300;\n@nav-pf-vertical-secondary-badge-color:                             @color-pf-white;\n@nav-pf-vertical-secondary-badge-bg-color:                          @color-pf-black-900;\n@nav-pf-vertical-secondary-border-color:                            @color-pf-blue-300;\n@nav-pf-vertical-secondary-color:                                   @color-pf-white;\n@nav-pf-vertical-secondary-header-margin:                           18px 20px 10px 20px;\n@nav-pf-vertical-secondary-indicator-color:                         @color-pf-black-600;\n@nav-pf-vertical-secondary-indicator-padding:                       14px 0;\n@nav-pf-vertical-secondary-item-color:                              @color-pf-black-300;\n@nav-pf-vertical-secondary-item-padding:                            0 0 5px 0;\n@nav-pf-vertical-secondary-link-height:                             63px;\n@nav-pf-vertical-secondary-link-padding:                            4px 0 2px 0;\n@nav-pf-vertical-secondary-list-header-margin:                      30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-active-color:                             @color-pf-white;\n@nav-pf-vertical-tertiary-active-bg-color:                          @color-pf-black-800;\n@nav-pf-vertical-tertiary-indicator-padding:                        0;\n@nav-pf-vertical-tertiary-bg-color:                                 @color-pf-black-700;\n@nav-pf-vertical-tertiary-color:                                    #fff;\n@nav-pf-vertical-tertiary-header-margin:                            18px 20px 10px 20px;\n@nav-pf-vertical-tertiary-list-header-margin:                       30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-item-padding:                             0 0 5px 0;\n@nav-pf-vertical-tertiary-item-color:                               @color-pf-black-300;\n@nav-pf-vertical-tertiary-link-margin:                              0 20px 0 20px;\n@nav-pf-vertical-tertiary-link-padding:                             4px 0 2px 0;\n@nav-pf-vertical-tertiary-badge-color:                              @color-pf-white;\n@nav-pf-vertical-tertiary-badge-bg-color:                           @color-pf-black-900;\n@nav-pf-vertical-width:                                             200px;\n@toast-notification-top:                                            80px;\n@pagination-padding-small-vertical:                                 0;\n@panel-default-border-color:                                        @color-pf-black-400;\n@pficon-var-add-circle-o:                                           \"\\e61b\";\n@pficon-var-applications:                                           \"\\e936\";\n@pficon-var-arrow:                                                  \"\\e929\";\n@pficon-var-asleep:                                                 \"\\e925\";\n@pficon-var-automation:                                             \"\\e937\";\n@pficon-var-blueprint:                                              \"\\e915\";\n@pficon-var-build:                                                  \"\\e902\";\n@pficon-var-builder-image:                                          \"\\e800\";\n@pficon-var-bundle:                                                 \"\\e918\";\n@pficon-var-catalog:                                                \"\\e939\";\n@pficon-var-chat:                                                   \"\\e928\";\n@pficon-var-close:                                                  \"\\e60b\";\n@pficon-var-cloud-security:                                         \"\\e903\";\n@pficon-var-cloud-tenant:                                           \"\\e904\";\n@pficon-var-cluster:                                                \"\\e620\";\n@pficon-var-connected:                                              \"\\e938\";\n@pficon-var-container-node:                                         \"\\e621\";\n@pficon-var-cpu:                                                    \"\\e927\";\n@pficon-var-degraded:                                               \"\\e91b\";\n@pficon-var-delete:                                                 \"\\e611\";\n@pficon-var-disconnected:                                           \"\\e93c\";\n@pficon-var-domain:                                                 \"\\e919\";\n@pficon-var-edit:                                                   \"\\e60a\";\n@pficon-var-enhancement:                                            \"\\e93a\";\n@pficon-var-enterprise:                                             \"\\e906\";\n@pficon-var-equalizer:                                              \"\\e610\";\n@pficon-var-error-circle-o:                                         \"\\e926\";\n@pficon-var-export:                                                 \"\\e616\";\n@pficon-var-flag:                                                   \"\\e603\";\n@pficon-var-flavor:                                                 \"\\e907\";\n@pficon-var-filter:                                                 \"\\e943\";\n@pficon-var-folder-close:                                           \"\\e607\";\n@pficon-var-folder-open:                                            \"\\e606\";\n@pficon-var-help:                                                   \"\\e605\";\n@pficon-var-history:                                                \"\\e617\";\n@pficon-var-home:                                                   \"\\e618\";\n@pficon-var-image:                                                  \"\\e61f\";\n@pficon-var-import:                                                 \"\\e615\";\n@pficon-var-info:                                                   \"\\e92b\";\n@pficon-var-infrastructure:                                         \"\\e93d\";\n@pficon-var-integration:                                            \"\\e948\";\n@pficon-var-in-progress:                                            \"\\e92c\";\n@pficon-var-key:                                                    \"\\e924\";\n@pficon-var-kubernetes:                                             \"\\e627\";\n@pficon-var-locked:                                                 \"\\e923\";\n@pficon-var-maintenance:                                            \"\\e92d\";\n@pficon-var-memory:                                                 \"\\e908\";\n@pficon-var-messages:                                               \"\\e603\";\n@pficon-var-middleware:                                             \"\\e917\";\n@pficon-var-migration:                                              \"\\e92e\";\n@pficon-var-monitoring:                                             \"\\e944\";\n@pficon-var-network:                                                \"\\e909\";\n@pficon-var-off:                                                    \"\\e92f\";\n@pficon-var-ok:                                                     \"\\e602\";\n@pficon-var-on:                                                     \"\\e931\";\n@pficon-var-on-running:                                             \"\\e930\";\n@pficon-var-openshift:                                              \"\\e626\";\n@pficon-var-optimize:                                               \"\\e93e\";\n@pficon-var-orders:                                                 \"\\e93f\";\n@pficon-var-paused:                                                 \"\\e932\";\n@pficon-var-pending:                                                \"\\e933\";\n@pficon-var-plugged:                                                \"\\e940\";\n@pficon-var-port:                                                   \"\\e945\";\n@pficon-var-private:                                                \"\\e914\";\n@pficon-var-print:                                                  \"\\e612\";\n@pficon-var-process-automation:                                     \"\\e949\";\n@pficon-var-project:                                                \"\\e905\";\n@pficon-var-rebalance:                                              \"\\e91c\";\n@pficon-var-rebooting:                                              \"\\e934\";\n@pficon-var-regions:                                                \"\\e90a\";\n@pficon-var-registry:                                               \"\\e623\";\n@pficon-var-remove:                                                 \"\\e611\";\n@pficon-var-replicator:                                             \"\\e624\";\n@pficon-var-repository:                                             \"\\e90b\";\n@pficon-var-resource-pool:                                          \"\\e90c\";\n@pficon-var-resources-almost-empty:                                 \"\\e91d\";\n@pficon-var-resources-almost-full:                                  \"\\e912\";\n@pficon-var-resources-full:                                         \"\\e92a\";\n@pficon-var-restart:                                                \"\\e617\";\n@pficon-var-route:                                                  \"\\e625\";\n@pficon-var-running:                                                \"\\e614\";\n@pficon-var-save:                                                   \"\\e601\";\n@pficon-var-screen:                                                 \"\\e600\";\n@pficon-var-search:                                                 \"\\e921\";\n@pficon-var-security:                                               \"\\e946\";\n@pficon-var-server:                                                 \"\\e90d\";\n@pficon-var-server-group:                                           \"\\e91a\";\n@pficon-var-service:                                                \"\\e61e\";\n@pficon-var-service-catalog:                                        \"\\e941\";\n@pficon-var-services:                                               \"\\e947\";\n@pficon-var-settings:                                               \"\\e610\";\n@pficon-var-spinner:                                                \"\\e614\";\n@pficon-var-spinner2:                                               \"\\e613\";\n@pficon-var-storage-domain:                                         \"\\e90e\";\n@pficon-var-tenant:                                                 \"\\e916\";\n@pficon-var-thumb-tack-o:                                           \"\\e920\";\n@pficon-var-topology:                                               \"\\e608\";\n@pficon-var-trend-down:                                             \"\\e900\";\n@pficon-var-trend-up:                                               \"\\e901\";\n@pficon-var-unlocked:                                               \"\\e922\";\n@pficon-var-unplugged:                                              \"\\e942\";\n@pficon-var-unknown:                                                \"\\e935\";\n@pficon-var-user:                                                   \"\\e91e\";\n@pficon-var-users:                                                  \"\\e91f\";\n@pficon-var-virtual-machine:                                        \"\\e90f\";\n@pficon-var-volume:                                                 \"\\e910\";\n@pficon-var-warning-triangle-o:                                     \"\\e913\";\n@pficon-var-zone:                                                   \"\\e911\";\n@progress-description-label-width:                                  85px;\n@sidebar-pf-bg:                                                     @color-pf-black-100;\n@sidebar-pf-border-color:                                           @color-pf-black-300;\n@skiplink-pf-top:                                                   12px;\n@skiplink-pf-left:                                                  10px;\n@table-border-hover:                                                @color-pf-blue-200;\n@table-cell-padding-bottom:                                         3px;\n@table-cell-padding-top:                                            2px;\n// Reference variables declared in block above\n@bootstrap-switch-bg-color-start:                                   @btn-default-bg-img-start;\n@bootstrap-switch-bg-color-stop:                                    @btn-default-bg-img-stop;\n@fa-font-path:                                                      @font-path;\n@navbar-pf-navbar-header-border-color:                              lighten(@navbar-pf-bg-color, 15%);\n@navbar-pf-navbar-nav-active-active-bg-color:                       lighten(@navbar-pf-bg-color, 8%);\n@navbar-pf-navbar-nav-active-active-open-bg-color:                  lighten(@navbar-pf-bg-color, 11%);\n@navbar-pf-navbar-nav-active-bg-color:                              lighten(@navbar-pf-bg-color, 12.5%);\n@navbar-pf-navbar-primary-bg-color-start:                           lighten(@navbar-pf-bg-color, 10%); // #474C50\n@navbar-pf-navbar-primary-bg-color-stop:                            @navbar-pf-bg-color; // #383F43\n@navbar-pf-navbar-utility-border-color:                             lighten(@navbar-pf-bg-color, 15.5%);\n@navbar-pf-navbar-utility-color:                                    @navbar-pf-color;\n@navbar-pf-navbar-utility-hover-bg-color:                           lighten(@navbar-pf-bg-color, 12.5%);\n@nav-pf-vertical-secondary-bg-color:                                @nav-pf-vertical-active-bg-color;\n@nav-tabs-color:                                                    @gray-pf;\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-bg-color-start:                   lighten(@navbar-pf-navbar-primary-bg-color-start, 8.5%);\n@navbar-pf-navbar-primary-context-bg-color-stop:                    lighten(@navbar-pf-navbar-primary-bg-color-stop, 11%);\n@navbar-pf-navbar-primary-hover-bg-color-start:                     lighten(@navbar-pf-navbar-primary-bg-color-start, 10%);\n@navbar-pf-navbar-primary-hover-bg-color-stop:                      lighten(@navbar-pf-navbar-primary-bg-color-stop, 10%);\n@navbar-pf-navbar-primary-hover-border-color:                       lighten(@navbar-pf-navbar-header-border-color, 20%);\n@navbar-pf-navbar-primary-context-border-color:                     lighten(@navbar-pf-navbar-header-border-color, 8%);\n@navbar-pf-navbar-primary-context-border-top-color:                 lighten(@navbar-pf-navbar-header-border-color, 7%);\n@navbar-pf-navbar-utility-hover-border-color:                       lighten(@navbar-pf-navbar-utility-border-color, 5%);\n@navbar-pf-navbar-utility-open-bg-color:                            lighten(@navbar-pf-navbar-utility-hover-bg-color, 7.5%);\n@navbar-pf-navbar-utility-open-border-color:                        lighten(@navbar-pf-navbar-utility-hover-border-color, 5%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-active-bg-color-start:                    lighten(@navbar-pf-navbar-primary-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-active-bg-color-stop:                     lighten(@navbar-pf-navbar-primary-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-active-border-color:                      lighten(@navbar-pf-navbar-primary-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-start:             lighten(@navbar-pf-navbar-primary-context-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-stop:              lighten(@navbar-pf-navbar-primary-context-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-hover-border-color:               lighten(@navbar-pf-navbar-primary-context-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-border-top-color:           lighten(@navbar-pf-navbar-primary-context-border-top-color, 6%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-active-bg-color-start:            lighten(@navbar-pf-navbar-primary-context-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-active-bg-color-stop:             lighten(@navbar-pf-navbar-primary-context-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-active-border-color:              lighten(@navbar-pf-navbar-primary-context-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-active-border-top-color:          lighten(@navbar-pf-navbar-primary-context-hover-border-top-color, 6%);\n// References variable declared in block above\n@navbar-pf-navbar-primary-context-active-border-right-color:        @navbar-pf-navbar-primary-context-active-border-color;\n@slider-line-height:                                                16px;\n@slider-horizontal-width:                                           100%;\n@slider-primary-top:                                                @color-pf-black-100;\n@slider-primary-bottom:                                             @color-pf-black-200;\n@slider-secondary-top:                                              @color-pf-blue-400;\n@slider-secondary-bottom:                                           @color-pf-blue-300;\n\n// Alternate navigation layout - Kept for backwards compatibility\n// --------------------------------------------------------------\n@footer-pf-alt-bg-color:                                            @footer-pf-bg-color;\n@footer-pf-alt-padding-left:                                        @footer-pf-padding-left;\n@footer-pf-alt-padding-top:                                         @footer-pf-padding-top;\n@footer-pf-alt-height:                                              @footer-pf-height;\n@img-path-alt:                                                      @img-path;\n@nav-pf-vertical-alt-active-color:                                  @color-pf-blue-300;\n@nav-pf-vertical-alt-bg-color:                                      @color-pf-white;\n@nav-pf-vertical-alt-badge-color:                                   @color-pf-white;\n@nav-pf-vertical-alt-border-color:                                  @sidebar-pf-border-color;\n@nav-pf-vertical-alt-collapsed-width:                               75px;\n@nav-pf-vertical-alt-link-height:                                   63px;\n@nav-pf-vertical-alt-link-padding:                                  17px 20px 17px 25px;\n@nav-pf-vertical-alt-width:                                         250px;\n@navbar-pf-alt-bg-repeat:                                           @navbar-pf-vertical-bg-repeat;\n@navbar-pf-alt-bg-size:                                             @navbar-pf-vertical-bg-size;\n@navbar-pf-alt-border-color:                                        @navbar-pf-vertical-border-color;\n@navbar-pf-alt-border-style:                                        @navbar-pf-vertical-border-style;\n@navbar-pf-alt-border-width:                                        @navbar-pf-vertical-border-width;\n@navbar-pf-alt-color:                                               @navbar-pf-vertical-color;\n@navbar-pf-alt-height:                                              @navbar-pf-vertical-height;\n@navbar-pf-alt-nav-item-iconic-padding:                             @navbar-pf-vertical-nav-item-iconic-padding;\n@navbar-pf-alt-navbar-brand-color:                                  @navbar-pf-vertical-navbar-brand-color;\n@navbar-pf-alt-navbar-brand-icon-margin:                            @navbar-pf-vertical-navbar-brand-icon-margin;\n@navbar-pf-alt-navbar-brand-margin:                                 @navbar-pf-vertical-navbar-brand-margin;\n@navbar-pf-alt-navbar-brand-min-height:                             @navbar-pf-vertical-navbar-brand-min-height;\n@navbar-pf-alt-navbar-brand-name-breakpoint:                        @navbar-pf-vertical-navbar-brand-name-breakpoint;\n@navbar-pf-alt-navbar-brand-name-margin:                            @navbar-pf-vertical-navbar-brand-name-margin;\n@navbar-pf-alt-navbar-brand-padding:                                @navbar-pf-vertical-navbar-brand-padding;\n@navbar-pf-alt-navbar-toggle-margin:                                @navbar-pf-vertical-navbar-toggle-margin;\n@navbar-pf-alt-navbar-toggle-icon-bar-hover-bg:                     @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n\n// Login page\n// -------------------\n@login-pf-brand-margin-top:                                               20px;\n@login-pf-brand-desktop-margin-top:                                       62px;\n@login-pf-page-header-margin-bottom:                                      20px;\n@login-pf-page-header-desktop-margin-bottom:                              40px;\n@login-pf-page-header-paragraph-margin-top:                               20px;\n@login-pf-card-pf-padding:                                 10px 20px 30px 20px;\n@login-pf-card-pf-desktop-padding:                         20px 40px 30px 40px;\n@login-pf-card-pf-max-width:                                             840px;\n@login-pf-checkbox-label-margin-bottom:                                   15px;\n@login-pf-dropdown-toggle-padding-right:                                  15px;\n@login-pf-btn-primary-margin-top:                                         40px;\n@login-pf-header-margin-bottom:                                           20px;\n@login-pf-header-desktop-margin-bottom:                                   30px;\n@login-pf-signup-margin-top:                                              40px;\n@login-pf-signup-a-margin-left:                                           10px;\n@login-pf-page-footer-links-margin-top:                                   60px;\n@login-pf-page-footer-links-li-margin-right:                              20px;\n@login-pf-page-footer-sso-margin-top:                                     40px;\n@login-pf-page-footer-sso-logos-li-margin:                                5px;\n@login-pf-page-accounts-margin:                                           20px;\n@login-pf-accounts-section-heading-margin-top:                            30px;\n@login-pf-accounts-section-heading-margin-bottom:                         30px;\n@login-pf-accounts-section-heading-desktop-margin-bottom:                 15px;\n@login-pf-accounts-section-heading-desktop-padding-right:                 40px;\n@login-pf-accounts-section-heading-desktop-padding-left:                  40px;\n@login-pf-accounts-link-margin-bottom:                                    15px;\n@login-pf-accounts-link-img-margin-right:                                 10px;\n@login-pf-accounts-link-a-padding:                                        7px;\n@login-pf-accounts-more-caret-margin-left:                                5px;\n@login-pf-social-margin:                                           40px 0 0 0;\n\n\n// Bootstrap overrides\n// -------------------\n@alert-info-border:                                                 @color-pf-black-500;\n@alert-link-font-weight:                                            500;\n@alert-padding:                                                     11px;\n@body-bg:                                                           @color-pf-white;\n@border-radius-base:                                                1px;\n@brand-danger:                                                      @color-pf-red;\n@brand-info:                                                        @color-pf-blue-500;\n@brand-primary:                                                     @color-pf-blue-300;\n@brand-success:                                                     @color-pf-green;\n@brand-warning:                                                     @color-pf-orange;\n@breadcrumb-bg:                                                     transparent;\n@breadcrumb-separator:                                              \"\\f105\";\n@bs-datetimepicker-timepicker-font-size:                            1em;\n@bs-datetimepicker-btn-hover-bg:                                    transparent;\n@btn-danger-bg:                                                     @color-pf-red-200;\n@btn-danger-border:                                                 @color-pf-red-300;\n@btn-default-border:                                                @color-pf-black-400;\n@btn-font-weight:                                                   600;\n@btn-primary-bg:                                                    @color-pf-blue;\n@btn-primary-border:                                                @color-pf-blue-500;\n@caret-width-base:                                                  0;\n@code-bg:                                                           @color-pf-blue-50;\n@dropdown-border:                                                   @color-pf-black-400;\n@dropdown-divider-bg:                                               @color-pf-black-200;\n@dropdown-link-active-color:                                        @color-pf-white;\n@dropdown-link-hover-bg:                                            @color-pf-blue-50;\n@font-family-base:                                                  \"Open Sans\", Helvetica, Arial, sans-serif;\n@font-size-base:                                                    12px;\n@gray-dark:                                                         lighten(@color-pf-black, 20%);   // #333\n@gray-darker:                                                       lighten(@color-pf-black, 13.5%); // #222\n@gray-light:                                                        lighten(@color-pf-black, 60%);   // #999\n@gray-lighter:                                                      lighten(@color-pf-black, 93.5%); // #eee\n@grid-gutter-width:                                                 40px;\n@icon-font-path:                                                    \"../fonts/\";\n@input-bg-disabled:                                                 @color-pf-black-150;\n@input-border:                                                      @color-pf-black-400;\n@line-height-base:                                                  1.66666667; // 20/12\n@link-color:                                                        @color-pf-blue;\n@list-group-border:                                                 @color-pf-black-150;\n@list-group-border-radius:                                          0;\n@list-group-hover-bg:                                               @color-pf-blue-50;\n@link-hover-color:                                                  @color-pf-blue-500;\n@nav-tabs-border-color:                                             @color-pf-black-200;\n@nav-tabs-link-hover-border-color:                                  transparent;\n@padding-large-horizontal:                                          10px;\n@padding-base-horizontal:                                           6px;\n@padding-base-vertical:                                             2px;\n@padding-large-vertical:                                            6px;\n@pager-border-radius:                                               0;\n@pager-disabled-color:                                              @color-pf-black-500;\n@pagination-bg:                                                     @color-pf-black-150;\n@pagination-border:                                                 @color-pf-black-400;\n@pagination-hover-bg:                                               @color-pf-black-200;\n@panel-inner-border:                                                @color-pf-black-300;\n@popover-arrow-color:                                               @color-pf-white;\n@popover-arrow-outer-color:                                         @color-pf-black-400;\n@popover-border-color:                                              @color-pf-black-400;\n@popover-max-width:                                                 220px;\n@popover-title-bg:                                                  @color-pf-black-150;\n@pre-bg:                                                            @color-pf-black-100;\n@progress-bg:                                                       @color-pf-black-200;\n@table-bg-accent:                                                   @color-pf-black-150;\n@table-bg-hover:                                                    @color-pf-blue-50;\n@table-border-color:                                                @color-pf-black-300;\n@table-cell-padding:                                                10px;\n@tooltip-arrow-width:                                               8px;\n@tooltip-bg:                                                        @color-pf-black-800;\n@tooltip-max-width:                                                 220px;\n// Reference variables declared in block above\n@alert-danger-bg:                                                   lighten(@color-pf-red-100, 55%);\n@alert-danger-border:                                               @brand-danger;\n@alert-danger-text:                                                 @gray-dark;\n@alert-info-bg:                                                     @color-pf-black-150;\n@alert-info-text:                                                   @gray-dark;\n@alert-success-bg:                                                  lighten(@color-pf-green-100, 8%);\n@alert-success-border:                                              @brand-success;\n@alert-success-text:                                                @gray-dark;\n@alert-warning-bg:                                                  lighten(@color-pf-orange-100, 8%);\n@alert-warning-border:                                              @brand-warning;\n@alert-warning-text:                                                @gray-dark;\n@badge-border-radius:                                               @border-radius-base;\n@border-radius-large:                                               @border-radius-base;\n@border-radius-small:                                               @border-radius-base;\n@breadcrumb-active-color:                                           @gray-pf;\n@breadcrumb-color:                                                  @gray-pf;\n@btn-default-bg:                                                    @gray-lighter;\n@btn-default-color:                                                 @gray-pf;\n@caret-width-large:                                                 @caret-width-base;\n@code-color:                                                        @color-pf-blue-600;\n@dropdown-fallback-border:                                          @dropdown-border;\n@dropdown-link-active-bg:                                           @link-color;\n@dropdown-link-hover-color:                                         @gray-pf;\n@font-size-h1:                                                      ceil((@font-size-base * 2)); // ~24px\n@font-size-h2:                                                      ceil((@font-size-base * 1.8333)); // ~22px\n@font-size-h3:                                                      ceil((@font-size-base * 1.3333)); // ~16px\n@font-size-h5:                                                      ceil((@font-size-base * 1.0833)); // ~13px\n@font-size-large:                                                   ceil((@font-size-base * 1.1666)); // ~14px\n@font-size-small:                                                   ceil((@font-size-base * .9166)); // ~11px\n@input-color:                                                       @gray-dark;\n@nav-tabs-active-link-hover-color:                                  @link-color;\n@nav-tabs-justified-link-border-color:                              @nav-tabs-border-color;\n@nav-pf-vertical-badges-width:                                      (@nav-pf-vertical-width + 50px);\n@padding-small-horizontal:                                          @padding-base-horizontal;\n@padding-small-vertical:                                            @padding-base-vertical;\n@panel-group-pf-danger-heading-bg:                                  @alert-danger-bg;\n@panel-group-pf-primary-heading-bg:                                 lighten(@brand-primary, 38%);\n@panel-group-pf-success-heading-bg:                                 @alert-success-bg;\n@panel-group-pf-warning-heading-bg:                                 @alert-warning-bg;\n@panel-group-pf-info-heading-bg:                                    lighten(desaturate(spin(@brand-info, 13), 45), 60%);\n@panel-danger-border:                                               @brand-danger;\n@panel-danger-heading-bg:                                           @brand-danger;\n@panel-info-border:                                                 @brand-info;\n@panel-info-heading-bg:                                             @brand-info;\n@panel-primary-border:                                              @brand-primary;\n@panel-primary-text:                                                @body-bg;\n@panel-success-border:                                              @brand-success;\n@panel-success-heading-bg:                                          @brand-success;\n@panel-warning-border:                                              @brand-warning;\n@panel-warning-heading-bg:                                          @brand-warning;\n@state-warning-text:                                                @brand-warning;\n@state-danger-text:                                                 @brand-danger;\n// Reference variable declared in block above\n@panel-danger-text:                                                 @panel-primary-text;\n@panel-info-text:                                                   @panel-primary-text;\n@panel-success-text:                                                @panel-primary-text;\n@panel-warning-text:                                                @panel-primary-text;\n\n// PatternFly-specific variables based on Bootstrap overides\n// ---------------------------------------------------------\n@bootstrap-switch-bg-color:                                         @btn-default-bg;\n@btn-danger-bg-img-start:                                           @brand-danger;\n@btn-danger-bg-img-stop:                                            @btn-danger-bg;\n@btn-primary-bg-img-start:                                          @brand-primary;\n@btn-primary-bg-img-stop:                                           @btn-primary-bg;\n@dropdown-link-focus-bg:                                            @link-color;\n@line-height-computed:                                              floor((@font-size-base * @line-height-base));\n@nav-pf-vertical-icon-size:                                         (@font-size-base + 8);\n@notification-badge-color:                                          @color-pf-blue-400;\n@progress-sm:                                                       (@line-height-computed - 6);\n@progress-xs:                                                       (@line-height-computed - 14);\n@syntax-1:                                                          @btn-danger-bg;\n@syntax-2:                                                          @gray-dark;\n@syntax-3:                                                          @brand-success;\n@syntax-4:                                                          @brand-info;\n@tooltip-font-size:                                                 @font-size-base;\n","// WebKit-style focus\n\n.tab-focus() {\n  // WebKit-specific. Other browsers will keep their default outline style.\n  // (Initially tried to also force default via `outline: initial`,\n  // but that seems to erroneously remove the outline in Firefox altogether.)\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\n","//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n  display: block;\n  padding: @thumbnail-padding;\n  margin-bottom: @line-height-computed;\n  line-height: @line-height-base;\n  background-color: @thumbnail-bg;\n  border: 1px solid @thumbnail-border;\n  border-radius: @thumbnail-border-radius;\n  .transition(border .2s ease-in-out);\n\n  > img,\n  a > img {\n    &:extend(.img-responsive);\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  // Add a hover state for linked versions only\n  a&:hover,\n  a&:focus,\n  a&.active {\n    border-color: @link-color;\n  }\n\n  // Image captions\n  .caption {\n    padding: @thumbnail-caption-padding;\n    color: @thumbnail-caption-color;\n  }\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n  position: relative;\n}\n\n.carousel-inner {\n  position: relative;\n  overflow: hidden;\n  width: 100%;\n\n  > .item {\n    display: none;\n    position: relative;\n    .transition(.6s ease-in-out left);\n\n    // Account for jankitude on images\n    > img,\n    > a > img {\n      &:extend(.img-responsive);\n      line-height: 1;\n    }\n\n    // WebKit CSS3 transforms for supported devices\n    @media all and (transform-3d), (-webkit-transform-3d) {\n      .transition-transform(~'0.6s ease-in-out');\n      .backface-visibility(~'hidden');\n      .perspective(1000px);\n\n      &.next,\n      &.active.right {\n        .translate3d(100%, 0, 0);\n        left: 0;\n      }\n      &.prev,\n      &.active.left {\n        .translate3d(-100%, 0, 0);\n        left: 0;\n      }\n      &.next.left,\n      &.prev.right,\n      &.active {\n        .translate3d(0, 0, 0);\n        left: 0;\n      }\n    }\n  }\n\n  > .active,\n  > .next,\n  > .prev {\n    display: block;\n  }\n\n  > .active {\n    left: 0;\n  }\n\n  > .next,\n  > .prev {\n    position: absolute;\n    top: 0;\n    width: 100%;\n  }\n\n  > .next {\n    left: 100%;\n  }\n  > .prev {\n    left: -100%;\n  }\n  > .next.left,\n  > .prev.right {\n    left: 0;\n  }\n\n  > .active.left {\n    left: -100%;\n  }\n  > .active.right {\n    left: 100%;\n  }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  width: @carousel-control-width;\n  .opacity(@carousel-control-opacity);\n  font-size: @carousel-control-font-size;\n  color: @carousel-control-color;\n  text-align: center;\n  text-shadow: @carousel-text-shadow;\n  background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug\n  // We can't have this transition here because WebKit cancels the carousel\n  // animation if you trip this while in the middle of another animation.\n\n  // Set gradients for backgrounds\n  &.left {\n    #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n  }\n  &.right {\n    left: auto;\n    right: 0;\n    #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n  }\n\n  // Hover/focus state\n  &:hover,\n  &:focus {\n    outline: 0;\n    color: @carousel-control-color;\n    text-decoration: none;\n    .opacity(.9);\n  }\n\n  // Toggles\n  .icon-prev,\n  .icon-next,\n  .glyphicon-chevron-left,\n  .glyphicon-chevron-right {\n    position: absolute;\n    top: 50%;\n    margin-top: -10px;\n    z-index: 5;\n    display: inline-block;\n  }\n  .icon-prev,\n  .glyphicon-chevron-left {\n    left: 50%;\n    margin-left: -10px;\n  }\n  .icon-next,\n  .glyphicon-chevron-right {\n    right: 50%;\n    margin-right: -10px;\n  }\n  .icon-prev,\n  .icon-next {\n    width:  20px;\n    height: 20px;\n    line-height: 1;\n    font-family: serif;\n  }\n\n\n  .icon-prev {\n    &:before {\n      content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n    }\n  }\n  .icon-next {\n    &:before {\n      content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n    }\n  }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n  position: absolute;\n  bottom: 10px;\n  left: 50%;\n  z-index: 15;\n  width: 60%;\n  margin-left: -30%;\n  padding-left: 0;\n  list-style: none;\n  text-align: center;\n\n  li {\n    display: inline-block;\n    width:  10px;\n    height: 10px;\n    margin: 1px;\n    text-indent: -999px;\n    border: 1px solid @carousel-indicator-border-color;\n    border-radius: 10px;\n    cursor: pointer;\n\n    // IE8-9 hack for event handling\n    //\n    // Internet Explorer 8-9 does not support clicks on elements without a set\n    // `background-color`. We cannot use `filter` since that's not viewed as a\n    // background color by the browser. Thus, a hack is needed.\n    // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer\n    //\n    // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n    // set alpha transparency for the best results possible.\n    background-color: #000 \\9; // IE8\n    background-color: rgba(0,0,0,0); // IE9\n  }\n  .active {\n    margin: 0;\n    width:  12px;\n    height: 12px;\n    background-color: @carousel-indicator-active-bg;\n  }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n  position: absolute;\n  left: 15%;\n  right: 15%;\n  bottom: 20px;\n  z-index: 10;\n  padding-top: 20px;\n  padding-bottom: 20px;\n  color: @carousel-caption-color;\n  text-align: center;\n  text-shadow: @carousel-text-shadow;\n  & .btn {\n    text-shadow: none; // No shadow for button elements in carousel-caption\n  }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n  // Scale up the controls a smidge\n  .carousel-control {\n    .glyphicon-chevron-left,\n    .glyphicon-chevron-right,\n    .icon-prev,\n    .icon-next {\n      width: (@carousel-control-font-size * 1.5);\n      height: (@carousel-control-font-size * 1.5);\n      margin-top: (@carousel-control-font-size / -2);\n      font-size: (@carousel-control-font-size * 1.5);\n    }\n    .glyphicon-chevron-left,\n    .icon-prev {\n      margin-left: (@carousel-control-font-size / -2);\n    }\n    .glyphicon-chevron-right,\n    .icon-next {\n      margin-right: (@carousel-control-font-size / -2);\n    }\n  }\n\n  // Show and left align the captions\n  .carousel-caption {\n    left: 20%;\n    right: 20%;\n    padding-bottom: 30px;\n  }\n\n  // Move up the indicators\n  .carousel-indicators {\n    bottom: 20px;\n  }\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n  display: @display;\n  max-width: 100%; // Part 1: Set a maximum relative to the parent\n  height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n  background-image: url(\"@{file-1x}\");\n\n  @media\n  only screen and (-webkit-min-device-pixel-ratio: 2),\n  only screen and (   min--moz-device-pixel-ratio: 2),\n  only screen and (     -o-min-device-pixel-ratio: 2/1),\n  only screen and (        min-device-pixel-ratio: 2),\n  only screen and (                min-resolution: 192dpi),\n  only screen and (                min-resolution: 2dppx) {\n    background-image: url(\"@{file-2x}\");\n    background-size: @width-1x @height-1x;\n  }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n  font-family: @headings-font-family;\n  font-weight: @headings-font-weight;\n  line-height: @headings-line-height;\n  color: @headings-color;\n\n  small,\n  .small {\n    font-weight: normal;\n    line-height: 1;\n    color: @headings-small-color;\n  }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n  margin-top: @line-height-computed;\n  margin-bottom: (@line-height-computed / 2);\n\n  small,\n  .small {\n    font-size: 65%;\n  }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n  margin-top: (@line-height-computed / 2);\n  margin-bottom: (@line-height-computed / 2);\n\n  small,\n  .small {\n    font-size: 75%;\n  }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n  margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n  margin-bottom: @line-height-computed;\n  font-size: floor((@font-size-base * 1.15));\n  font-weight: 300;\n  line-height: 1.4;\n\n  @media (min-width: @screen-sm-min) {\n    font-size: (@font-size-base * 1.5);\n  }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n  font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n  background-color: @state-warning-bg;\n  padding: .2em;\n}\n\n// Alignment\n.text-left           { text-align: left; }\n.text-right          { text-align: right; }\n.text-center         { text-align: center; }\n.text-justify        { text-align: justify; }\n.text-nowrap         { white-space: nowrap; }\n\n// Transformation\n.text-lowercase      { text-transform: lowercase; }\n.text-uppercase      { text-transform: uppercase; }\n.text-capitalize     { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n  color: @text-muted;\n}\n.text-primary {\n  .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n  .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n  .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n  .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n  .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n  // Given the contrast here, this is the only class to have its color inverted\n  // automatically.\n  color: #fff;\n  .bg-variant(@brand-primary);\n}\n.bg-success {\n  .bg-variant(@state-success-bg);\n}\n.bg-info {\n  .bg-variant(@state-info-bg);\n}\n.bg-warning {\n  .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n  .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n  padding-bottom: ((@line-height-computed / 2) - 1);\n  margin: (@line-height-computed * 2) 0 @line-height-computed;\n  border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n  margin-top: 0;\n  margin-bottom: (@line-height-computed / 2);\n  ul,\n  ol {\n    margin-bottom: 0;\n  }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n  padding-left: 0;\n  list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n  .list-unstyled();\n  margin-left: -5px;\n\n  > li {\n    display: inline-block;\n    padding-left: 5px;\n    padding-right: 5px;\n  }\n}\n\n// Description Lists\ndl {\n  margin-top: 0; // Remove browser default\n  margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n  line-height: @line-height-base;\n}\ndt {\n  font-weight: bold;\n}\ndd {\n  margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n  dd {\n    &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n  }\n\n  @media (min-width: @dl-horizontal-breakpoint) {\n    dt {\n      float: left;\n      width: (@dl-horizontal-offset - 20);\n      clear: left;\n      text-align: right;\n      .text-overflow();\n    }\n    dd {\n      margin-left: @dl-horizontal-offset;\n    }\n  }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n  cursor: help;\n  border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n  font-size: 90%;\n  .text-uppercase();\n}\n\n// Blockquotes\nblockquote {\n  padding: (@line-height-computed / 2) @line-height-computed;\n  margin: 0 0 @line-height-computed;\n  font-size: @blockquote-font-size;\n  border-left: 5px solid @blockquote-border-color;\n\n  p,\n  ul,\n  ol {\n    &:last-child {\n      margin-bottom: 0;\n    }\n  }\n\n  // Note: Deprecated small and .small as of v3.1.0\n  // Context: https://github.com/twbs/bootstrap/issues/11660\n  footer,\n  small,\n  .small {\n    display: block;\n    font-size: 80%; // back to default font-size\n    line-height: @line-height-base;\n    color: @blockquote-small-color;\n\n    &:before {\n      content: '\\2014 \\00A0'; // em dash, nbsp\n    }\n  }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n  padding-right: 15px;\n  padding-left: 0;\n  border-right: 5px solid @blockquote-border-color;\n  border-left: 0;\n  text-align: right;\n\n  // Account for citation\n  footer,\n  small,\n  .small {\n    &:before { content: ''; }\n    &:after {\n      content: '\\00A0 \\2014'; // nbsp, em dash\n    }\n  }\n}\n\n// Addresses\naddress {\n  margin-bottom: @line-height-computed;\n  font-style: normal;\n  line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n  color: @color;\n  a&:hover,\n  a&:focus {\n    color: darken(@color, 10%);\n  }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n  background-color: @color;\n  a&:hover,\n  a&:focus {\n    background-color: darken(@color, 10%);\n  }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n  font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: @code-color;\n  background-color: @code-bg;\n  border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: @kbd-color;\n  background-color: @kbd-bg;\n  border-radius: @border-radius-small;\n  box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n\n  kbd {\n    padding: 0;\n    font-size: 100%;\n    font-weight: bold;\n    box-shadow: none;\n  }\n}\n\n// Blocks of code\npre {\n  display: block;\n  padding: ((@line-height-computed - 1) / 2);\n  margin: 0 0 (@line-height-computed / 2);\n  font-size: (@font-size-base - 1); // 14px to 13px\n  line-height: @line-height-base;\n  word-break: break-all;\n  word-wrap: break-word;\n  color: @pre-color;\n  background-color: @pre-bg;\n  border: 1px solid @pre-border-color;\n  border-radius: @border-radius-base;\n\n  // Account for some code outputs that place code tags in pre tags\n  code {\n    padding: 0;\n    font-size: inherit;\n    color: inherit;\n    white-space: pre-wrap;\n    background-color: transparent;\n    border-radius: 0;\n  }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n  max-height: @pre-scrollable-max-height;\n  overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n  .container-fixed();\n\n  @media (min-width: @screen-sm-min) {\n    width: @container-sm;\n  }\n  @media (min-width: @screen-md-min) {\n    width: @container-md;\n  }\n  @media (min-width: @screen-lg-min) {\n    width: @container-lg;\n  }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n  .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n  .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n  .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n  .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n  .make-grid(lg);\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @grid-gutter-width) {\n  margin-right: auto;\n  margin-left: auto;\n  padding-left:  floor((@gutter / 2));\n  padding-right: ceil((@gutter / 2));\n  &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n  margin-left:  ceil((@gutter / -2));\n  margin-right: floor((@gutter / -2));\n  &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  float: left;\n  width: percentage((@columns / @grid-columns));\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n  margin-left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-push(@columns) {\n  left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-pull(@columns) {\n  right: percentage((@columns / @grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-sm-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-offset(@columns) {\n  @media (min-width: @screen-sm-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-push(@columns) {\n  @media (min-width: @screen-sm-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-pull(@columns) {\n  @media (min-width: @screen-sm-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-md-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-offset(@columns) {\n  @media (min-width: @screen-md-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-push(@columns) {\n  @media (min-width: @screen-md-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-pull(@columns) {\n  @media (min-width: @screen-md-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-lg-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-offset(@columns) {\n  @media (min-width: @screen-lg-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-push(@columns) {\n  @media (min-width: @screen-lg-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-pull(@columns) {\n  @media (min-width: @screen-lg-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n  // Common styles for all sizes of grid columns, widths 1-12\n  .col(@index) { // initial\n    @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n    .col((@index + 1), @item);\n  }\n  .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n    @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n    .col((@index + 1), ~\"@{list}, @{item}\");\n  }\n  .col(@index, @list) when (@index > @grid-columns) { // terminal\n    @{list} {\n      position: relative;\n      // Prevent columns from collapsing when empty\n      min-height: 1px;\n      // Inner gutter via padding\n      padding-left:  ceil((@grid-gutter-width / 2));\n      padding-right: floor((@grid-gutter-width / 2));\n    }\n  }\n  .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n  .col(@index) { // initial\n    @item: ~\".col-@{class}-@{index}\";\n    .col((@index + 1), @item);\n  }\n  .col(@index, @list) when (@index =< @grid-columns) { // general\n    @item: ~\".col-@{class}-@{index}\";\n    .col((@index + 1), ~\"@{list}, @{item}\");\n  }\n  .col(@index, @list) when (@index > @grid-columns) { // terminal\n    @{list} {\n      float: left;\n    }\n  }\n  .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n  .col-@{class}-@{index} {\n    width: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n  .col-@{class}-push-@{index} {\n    left: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n  .col-@{class}-push-0 {\n    left: auto;\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n  .col-@{class}-pull-@{index} {\n    right: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n  .col-@{class}-pull-0 {\n    right: auto;\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n  .col-@{class}-offset-@{index} {\n    margin-left: percentage((@index / @grid-columns));\n  }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n  .calc-grid-column(@index, @class, @type);\n  // next iteration\n  .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n  .float-grid-columns(@class);\n  .loop-grid-columns(@grid-columns, @class, width);\n  .loop-grid-columns(@grid-columns, @class, pull);\n  .loop-grid-columns(@grid-columns, @class, push);\n  .loop-grid-columns(@grid-columns, @class, offset);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n  background-color: @table-bg;\n}\ncaption {\n  padding-top: @table-cell-padding;\n  padding-bottom: @table-cell-padding;\n  color: @text-muted;\n  text-align: left;\n}\nth {\n  text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n  width: 100%;\n  max-width: 100%;\n  margin-bottom: @line-height-computed;\n  // Cells\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-cell-padding;\n        line-height: @line-height-base;\n        vertical-align: top;\n        border-top: 1px solid @table-border-color;\n      }\n    }\n  }\n  // Bottom align for column headings\n  > thead > tr > th {\n    vertical-align: bottom;\n    border-bottom: 2px solid @table-border-color;\n  }\n  // Remove top border from thead by default\n  > caption + thead,\n  > colgroup + thead,\n  > thead:first-child {\n    > tr:first-child {\n      > th,\n      > td {\n        border-top: 0;\n      }\n    }\n  }\n  // Account for multiple tbody instances\n  > tbody + tbody {\n    border-top: 2px solid @table-border-color;\n  }\n\n  // Nesting\n  .table {\n    background-color: @body-bg;\n  }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-condensed-cell-padding;\n      }\n    }\n  }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n  border: 1px solid @table-border-color;\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        border: 1px solid @table-border-color;\n      }\n    }\n  }\n  > thead > tr {\n    > th,\n    > td {\n      border-bottom-width: 2px;\n    }\n  }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n  > tbody > tr:nth-of-type(odd) {\n    background-color: @table-bg-accent;\n  }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n  > tbody > tr:hover {\n    background-color: @table-bg-hover;\n  }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n  position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n  float: none;\n  display: table-column;\n}\ntable {\n  td,\n  th {\n    &[class*=\"col-\"] {\n      position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n      float: none;\n      display: table-cell;\n    }\n  }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n  overflow-x: auto;\n  min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n\n  @media screen and (max-width: @screen-xs-max) {\n    width: 100%;\n    margin-bottom: (@line-height-computed * 0.75);\n    overflow-y: hidden;\n    -ms-overflow-style: -ms-autohiding-scrollbar;\n    border: 1px solid @table-border-color;\n\n    // Tighten up spacing\n    > .table {\n      margin-bottom: 0;\n\n      // Ensure the content doesn't wrap\n      > thead,\n      > tbody,\n      > tfoot {\n        > tr {\n          > th,\n          > td {\n            white-space: nowrap;\n          }\n        }\n      }\n    }\n\n    // Special overrides for the bordered tables\n    > .table-bordered {\n      border: 0;\n\n      // Nuke the appropriate borders so that the parent can handle them\n      > thead,\n      > tbody,\n      > tfoot {\n        > tr {\n          > th:first-child,\n          > td:first-child {\n            border-left: 0;\n          }\n          > th:last-child,\n          > td:last-child {\n            border-right: 0;\n          }\n        }\n      }\n\n      // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n      // chances are there will be only one `tr` in a `thead` and that would\n      // remove the border altogether.\n      > tbody,\n      > tfoot {\n        > tr:last-child {\n          > th,\n          > td {\n            border-bottom: 0;\n          }\n        }\n      }\n\n    }\n  }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n  // Exact selectors below required to override `.table-striped` and prevent\n  // inheritance to nested tables.\n  .table > thead > tr,\n  .table > tbody > tr,\n  .table > tfoot > tr {\n    > td.@{state},\n    > th.@{state},\n    &.@{state} > td,\n    &.@{state} > th {\n      background-color: @background;\n    }\n  }\n\n  // Hover states for `.table-hover`\n  // Note: this is not available for cells or rows within `thead` or `tfoot`.\n  .table-hover > tbody > tr {\n    > td.@{state}:hover,\n    > th.@{state}:hover,\n    &.@{state}:hover > td,\n    &:hover > .@{state},\n    &.@{state}:hover > th {\n      background-color: darken(@background, 5%);\n    }\n  }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n  padding: 0;\n  margin: 0;\n  border: 0;\n  // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n  // so we reset that to ensure it behaves more like a standard block element.\n  // See https://github.com/twbs/bootstrap/issues/12359.\n  min-width: 0;\n}\n\nlegend {\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin-bottom: @line-height-computed;\n  font-size: (@font-size-base * 1.5);\n  line-height: inherit;\n  color: @legend-color;\n  border: 0;\n  border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n  display: inline-block;\n  max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n  margin-bottom: 5px;\n  font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n  .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  margin: 4px 0 0;\n  margin-top: 1px \\9; // IE8-9\n  line-height: normal;\n}\n\ninput[type=\"file\"] {\n  display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n  display: block;\n  width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n  height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n  .tab-focus();\n}\n\n// Adjust output element\noutput {\n  display: block;\n  padding-top: (@padding-base-vertical + 1);\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n  display: block;\n  width: 100%;\n  height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n  padding: @padding-base-vertical @padding-base-horizontal;\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @input-color;\n  background-color: @input-bg;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid @input-border;\n  border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.\n  .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n  .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n  // Customize the `:focus` state to imitate native WebKit styles.\n  .form-control-focus();\n\n  // Placeholder\n  .placeholder();\n\n  // Unstyle the caret on `<select>`s in IE10+.\n  &::-ms-expand {\n    border: 0;\n    background-color: transparent;\n  }\n\n  // Disabled and read-only inputs\n  //\n  // HTML5 says that controls under a fieldset > legend:first-child won't be\n  // disabled if the fieldset is disabled. Due to implementation difficulty, we\n  // don't honor that edge case; we style them as disabled anyway.\n  &[disabled],\n  &[readonly],\n  fieldset[disabled] & {\n    background-color: @input-bg-disabled;\n    opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655\n  }\n\n  &[disabled],\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n\n  // Reset height for `textarea`s\n  textarea& {\n    height: auto;\n  }\n}\n\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n  -webkit-appearance: none;\n}\n\n\n// Special styles for iOS temporal inputs\n//\n// In Mobile Safari, setting `display: block` on temporal inputs causes the\n// text within the input to become vertically misaligned. As a workaround, we\n// set a pixel line-height that matches the given height of the input, but only\n// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848\n//\n// Note that as of 9.3, iOS doesn't support `week`.\n\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n  input[type=\"date\"],\n  input[type=\"time\"],\n  input[type=\"datetime-local\"],\n  input[type=\"month\"] {\n    &.form-control {\n      line-height: @input-height-base;\n    }\n\n    &.input-sm,\n    .input-group-sm & {\n      line-height: @input-height-small;\n    }\n\n    &.input-lg,\n    .input-group-lg & {\n      line-height: @input-height-large;\n    }\n  }\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n  margin-bottom: @form-group-margin-bottom;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n  position: relative;\n  display: block;\n  margin-top: 10px;\n  margin-bottom: 10px;\n\n  label {\n    min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: normal;\n    cursor: pointer;\n  }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n  position: absolute;\n  margin-left: -20px;\n  margin-top: 4px \\9;\n}\n\n.radio + .radio,\n.checkbox + .checkbox {\n  margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n  position: relative;\n  display: inline-block;\n  padding-left: 20px;\n  margin-bottom: 0;\n  vertical-align: middle;\n  font-weight: normal;\n  cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n  margin-top: 0;\n  margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n// Some special care is needed because <label>s don't inherit their parent's `cursor`.\n//\n// Note: Neither radios nor checkboxes can be readonly.\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  &[disabled],\n  &.disabled,\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n}\n// These classes are used directly on <label>s\n.radio-inline,\n.checkbox-inline {\n  &.disabled,\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n}\n// These classes are used on elements with <label> descendants\n.radio,\n.checkbox {\n  &.disabled,\n  fieldset[disabled] & {\n    label {\n      cursor: @cursor-disabled;\n    }\n  }\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n.form-control-static {\n  // Size it appropriately next to real form controls\n  padding-top: (@padding-base-vertical + 1);\n  padding-bottom: (@padding-base-vertical + 1);\n  // Remove default margin from `p`\n  margin-bottom: 0;\n  min-height: (@line-height-computed + @font-size-base);\n\n  &.input-lg,\n  &.input-sm {\n    padding-left: 0;\n    padding-right: 0;\n  }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n//\n// The `.form-group-* form-control` variations are sadly duplicated to avoid the\n// issue documented in https://github.com/twbs/bootstrap/issues/15074.\n\n.input-sm {\n  .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);\n}\n.form-group-sm {\n  .form-control {\n    height: @input-height-small;\n    padding: @padding-small-vertical @padding-small-horizontal;\n    font-size: @font-size-small;\n    line-height: @line-height-small;\n    border-radius: @input-border-radius-small;\n  }\n  select.form-control {\n    height: @input-height-small;\n    line-height: @input-height-small;\n  }\n  textarea.form-control,\n  select[multiple].form-control {\n    height: auto;\n  }\n  .form-control-static {\n    height: @input-height-small;\n    min-height: (@line-height-computed + @font-size-small);\n    padding: (@padding-small-vertical + 1) @padding-small-horizontal;\n    font-size: @font-size-small;\n    line-height: @line-height-small;\n  }\n}\n\n.input-lg {\n  .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);\n}\n.form-group-lg {\n  .form-control {\n    height: @input-height-large;\n    padding: @padding-large-vertical @padding-large-horizontal;\n    font-size: @font-size-large;\n    line-height: @line-height-large;\n    border-radius: @input-border-radius-large;\n  }\n  select.form-control {\n    height: @input-height-large;\n    line-height: @input-height-large;\n  }\n  textarea.form-control,\n  select[multiple].form-control {\n    height: auto;\n  }\n  .form-control-static {\n    height: @input-height-large;\n    min-height: (@line-height-computed + @font-size-large);\n    padding: (@padding-large-vertical + 1) @padding-large-horizontal;\n    font-size: @font-size-large;\n    line-height: @line-height-large;\n  }\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n.has-feedback {\n  // Enable absolute positioning\n  position: relative;\n\n  // Ensure icons don't overlap text\n  .form-control {\n    padding-right: (@input-height-base * 1.25);\n  }\n}\n// Feedback icon (requires .glyphicon classes)\n.form-control-feedback {\n  position: absolute;\n  top: 0;\n  right: 0;\n  z-index: 2; // Ensure icon is above input groups\n  display: block;\n  width: @input-height-base;\n  height: @input-height-base;\n  line-height: @input-height-base;\n  text-align: center;\n  pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n  width: @input-height-large;\n  height: @input-height-large;\n  line-height: @input-height-large;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n  width: @input-height-small;\n  height: @input-height-small;\n  line-height: @input-height-small;\n}\n\n// Feedback states\n.has-success {\n  .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n.has-warning {\n  .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);\n}\n.has-error {\n  .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);\n}\n\n// Reposition feedback icon if input has visible label above\n.has-feedback label {\n\n  & ~ .form-control-feedback {\n    top: (@line-height-computed + 5); // Height of the `label` and its margin\n  }\n  &.sr-only ~ .form-control-feedback {\n    top: 0;\n  }\n}\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n  display: block; // account for any element using help-block\n  margin-top: 5px;\n  margin-bottom: 10px;\n  color: lighten(@text-color, 25%); // lighten the text some for contrast\n}\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n  // Kick in the inline\n  @media (min-width: @screen-sm-min) {\n    // Inline-block all the things for \"inline\"\n    .form-group {\n      display: inline-block;\n      margin-bottom: 0;\n      vertical-align: middle;\n    }\n\n    // In navbar-form, allow folks to *not* use `.form-group`\n    .form-control {\n      display: inline-block;\n      width: auto; // Prevent labels from stacking above inputs in `.form-group`\n      vertical-align: middle;\n    }\n\n    // Make static controls behave like regular ones\n    .form-control-static {\n      display: inline-block;\n    }\n\n    .input-group {\n      display: inline-table;\n      vertical-align: middle;\n\n      .input-group-addon,\n      .input-group-btn,\n      .form-control {\n        width: auto;\n      }\n    }\n\n    // Input groups need that 100% width though\n    .input-group > .form-control {\n      width: 100%;\n    }\n\n    .control-label {\n      margin-bottom: 0;\n      vertical-align: middle;\n    }\n\n    // Remove default margin on radios/checkboxes that were used for stacking, and\n    // then undo the floating of radios and checkboxes to match.\n    .radio,\n    .checkbox {\n      display: inline-block;\n      margin-top: 0;\n      margin-bottom: 0;\n      vertical-align: middle;\n\n      label {\n        padding-left: 0;\n      }\n    }\n    .radio input[type=\"radio\"],\n    .checkbox input[type=\"checkbox\"] {\n      position: relative;\n      margin-left: 0;\n    }\n\n    // Re-override the feedback icon.\n    .has-feedback .form-control-feedback {\n      top: 0;\n    }\n  }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n  // Consistent vertical alignment of radios and checkboxes\n  //\n  // Labels also get some reset styles, but that is scoped to a media query below.\n  .radio,\n  .checkbox,\n  .radio-inline,\n  .checkbox-inline {\n    margin-top: 0;\n    margin-bottom: 0;\n    padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n  }\n  // Account for padding we're adding to ensure the alignment and of help text\n  // and other content below items\n  .radio,\n  .checkbox {\n    min-height: (@line-height-computed + (@padding-base-vertical + 1));\n  }\n\n  // Make form groups behave like rows\n  .form-group {\n    .make-row();\n  }\n\n  // Reset spacing and right align labels, but scope to media queries so that\n  // labels on narrow viewports stack the same as a default form example.\n  @media (min-width: @screen-sm-min) {\n    .control-label {\n      text-align: right;\n      margin-bottom: 0;\n      padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n    }\n  }\n\n  // Validation states\n  //\n  // Reposition the icon because it's now within a grid column and columns have\n  // `position: relative;` on them. Also accounts for the grid gutter padding.\n  .has-feedback .form-control-feedback {\n    right: floor((@grid-gutter-width / 2));\n  }\n\n  // Form group sizes\n  //\n  // Quick utility class for applying `.input-lg` and `.input-sm` styles to the\n  // inputs and labels within a `.form-group`.\n  .form-group-lg {\n    @media (min-width: @screen-sm-min) {\n      .control-label {\n        padding-top: (@padding-large-vertical + 1);\n        font-size: @font-size-large;\n      }\n    }\n  }\n  .form-group-sm {\n    @media (min-width: @screen-sm-min) {\n      .control-label {\n        padding-top: (@padding-small-vertical + 1);\n        font-size: @font-size-small;\n      }\n    }\n  }\n}\n","// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n  // Color the label and help text\n  .help-block,\n  .control-label,\n  .radio,\n  .checkbox,\n  .radio-inline,\n  .checkbox-inline,\n  &.radio label,\n  &.checkbox label,\n  &.radio-inline label,\n  &.checkbox-inline label  {\n    color: @text-color;\n  }\n  // Set the border and box shadow on specific inputs to match\n  .form-control {\n    border-color: @border-color;\n    .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n    &:focus {\n      border-color: darken(@border-color, 10%);\n      @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n      .box-shadow(@shadow);\n    }\n  }\n  // Set validation states also for addons\n  .input-group-addon {\n    color: @text-color;\n    border-color: @border-color;\n    background-color: @background-color;\n  }\n  // Optional feedback icon\n  .form-control-feedback {\n    color: @text-color;\n  }\n}\n\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-border-focus` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n.form-control-focus(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0;\n    .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  height: @input-height;\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n\n  select& {\n    height: @input-height;\n    line-height: @input-height;\n  }\n\n  textarea&,\n  select[multiple]& {\n    height: auto;\n  }\n}\n","// Mixins - Bootstrap overrides\n// -------------------\n\n// Form control outline\n.form-control-outline(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0 !important;\n    .box-shadow(~\"inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Gradients\n#gradient {\n  .striped(@color: fade(@color-pf-black, 15%); @angle: -45deg) {\n    background-image: linear-gradient(@angle, @color 25%, @color 26%, transparent 27%, transparent 49%, @color 50%, @color 51%, transparent 52%, transparent 74%, @color 75%, @color 76%, transparent 77%);\n  }\n}\n\n// Horizontal dividers\n.nav-divider(@color: @color-pf-black-200, @margin: 4px 1px) {\n  background-color: @color;\n  height: 1px;\n  margin: @margin;\n  overflow: hidden;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  &:-moz-placeholder            { color: @color; font-style: italic; } // Firefox 4-18\n  &::-moz-placeholder           { color: @color; font-style: italic; opacity: 1; } // Firefox 19+\n  &:-ms-input-placeholder       { color: @color; font-style: italic; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; font-style: italic; } // Safari and Chrome\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n  display: inline-block;\n  margin-bottom: 0; // For input.btn\n  font-weight: @btn-font-weight;\n  text-align: center;\n  vertical-align: middle;\n  touch-action: manipulation;\n  cursor: pointer;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid transparent;\n  white-space: nowrap;\n  .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);\n  .user-select(none);\n\n  &,\n  &:active,\n  &.active {\n    &:focus,\n    &.focus {\n      .tab-focus();\n    }\n  }\n\n  &:hover,\n  &:focus,\n  &.focus {\n    color: @btn-default-color;\n    text-decoration: none;\n  }\n\n  &:active,\n  &.active {\n    outline: 0;\n    background-image: none;\n    .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n  }\n\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n    .opacity(.65);\n    .box-shadow(none);\n  }\n\n  a& {\n    &.disabled,\n    fieldset[disabled] & {\n      pointer-events: none; // Future-proof disabling of clicks on `<a>` elements\n    }\n  }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n  .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n  .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n  .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n  .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n  .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n  .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n  color: @link-color;\n  font-weight: normal;\n  border-radius: 0;\n\n  &,\n  &:active,\n  &.active,\n  &[disabled],\n  fieldset[disabled] & {\n    background-color: transparent;\n    .box-shadow(none);\n  }\n  &,\n  &:hover,\n  &:focus,\n  &:active {\n    border-color: transparent;\n  }\n  &:hover,\n  &:focus {\n    color: @link-hover-color;\n    text-decoration: @link-hover-decoration;\n    background-color: transparent;\n  }\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus {\n      color: @btn-link-disabled-color;\n      text-decoration: none;\n    }\n  }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n  // line-height: ensure even-numbered height of button next to large input\n  .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @btn-border-radius-large);\n}\n.btn-sm {\n  // line-height: ensure proper height of button next to small input\n  .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n.btn-xs {\n  .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n  display: block;\n  width: 100%;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n  margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n  &.btn-block {\n    width: 100%;\n  }\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n  color: @color;\n  background-color: @background;\n  border-color: @border;\n\n  &:focus,\n  &.focus {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 25%);\n  }\n  &:hover {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n\n    &:hover,\n    &:focus,\n    &.focus {\n      color: @color;\n      background-color: darken(@background, 17%);\n          border-color: darken(@border, 25%);\n    }\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    background-image: none;\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: @background;\n          border-color: @border;\n    }\n  }\n\n  .badge {\n    color: @background;\n    background-color: @color;\n  }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n  opacity: @opacity;\n  // IE8 filter\n  @opacity-ie: (@opacity * 100);\n  filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","//\n// Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n  position: relative;\n  display: inline-block;\n  vertical-align: middle; // match .btn alignment given font-size hack above\n  > .btn {\n    position: relative;\n    float: left;\n    // Bring the \"active\" button to the front\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      z-index: 2;\n    }\n  }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n  .btn + .btn,\n  .btn + .btn-group,\n  .btn-group + .btn,\n  .btn-group + .btn-group {\n    margin-left: -1px;\n  }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n  margin-left: -5px; // Offset the first child's margin\n  &:extend(.clearfix all);\n\n  .btn,\n  .btn-group,\n  .input-group {\n    float: left;\n  }\n  > .btn,\n  > .btn-group,\n  > .input-group {\n    margin-left: 5px;\n  }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n  border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n  margin-left: 0;\n  &:not(:last-child):not(.dropdown-toggle) {\n    .border-right-radius(0);\n  }\n}\n// Need .dropdown-toggle since :last-child doesn't apply, given that a .dropdown-menu is used immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n  .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n  float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) {\n  > .btn:last-child,\n  > .dropdown-toggle {\n    .border-right-radius(0);\n  }\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n  outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { &:extend(.btn-xs); }\n.btn-group-sm > .btn { &:extend(.btn-sm); }\n.btn-group-lg > .btn { &:extend(.btn-lg); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n  padding-left: 8px;\n  padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n  padding-left: 12px;\n  padding-right: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n  .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n\n  // Show no shadow for `.btn-link` since it has no other button styles.\n  &.btn-link {\n    .box-shadow(none);\n  }\n}\n\n\n// Reposition the caret\n.btn .caret {\n  margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n  border-width: @caret-width-large @caret-width-large 0;\n  border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n  border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n  > .btn,\n  > .btn-group,\n  > .btn-group > .btn {\n    display: block;\n    float: none;\n    width: 100%;\n    max-width: 100%;\n  }\n\n  // Clear floats so dropdown menus can be properly placed\n  > .btn-group {\n    &:extend(.clearfix all);\n    > .btn {\n      float: none;\n    }\n  }\n\n  > .btn + .btn,\n  > .btn + .btn-group,\n  > .btn-group + .btn,\n  > .btn-group + .btn-group {\n    margin-top: -1px;\n    margin-left: 0;\n  }\n}\n\n.btn-group-vertical > .btn {\n  &:not(:first-child):not(:last-child) {\n    border-radius: 0;\n  }\n  &:first-child:not(:last-child) {\n    .border-top-radius(@btn-border-radius-base);\n    .border-bottom-radius(0);\n  }\n  &:last-child:not(:first-child) {\n    .border-top-radius(0);\n    .border-bottom-radius(@btn-border-radius-base);\n  }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) {\n  > .btn:last-child,\n  > .dropdown-toggle {\n    .border-bottom-radius(0);\n  }\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  .border-top-radius(0);\n}\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n  display: table;\n  width: 100%;\n  table-layout: fixed;\n  border-collapse: separate;\n  > .btn,\n  > .btn-group {\n    float: none;\n    display: table-cell;\n    width: 1%;\n  }\n  > .btn-group .btn {\n    width: 100%;\n  }\n\n  > .btn-group .dropdown-menu {\n    left: auto;\n  }\n}\n\n\n// Checkbox and radio options\n//\n// In order to support the browser's form validation feedback, powered by the\n// `required` attribute, we have to \"hide\" the inputs via `clip`. We cannot use\n// `display: none;` or `visibility: hidden;` as that also hides the popover.\n// Simply visually hiding the inputs via `opacity` would leave them clickable in\n// certain cases which is prevented by using `clip` and `pointer-events`.\n// This way, we ensure a DOM element is visible to position the popover from.\n//\n// See https://github.com/twbs/bootstrap/pull/12794 and\n// https://github.com/twbs/bootstrap/pull/14559 for more information.\n\n[data-toggle=\"buttons\"] {\n  > .btn,\n  > .btn-group > .btn {\n    input[type=\"radio\"],\n    input[type=\"checkbox\"] {\n      position: absolute;\n      clip: rect(0,0,0,0);\n      pointer-events: none;\n    }\n  }\n}\n","//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.\n\n.fade {\n  opacity: 0;\n  .transition(opacity .15s linear);\n  &.in {\n    opacity: 1;\n  }\n}\n\n.collapse {\n  display: none;\n\n  &.in      { display: block; }\n  tr&.in    { display: table-row; }\n  tbody&.in { display: table-row-group; }\n}\n\n.collapsing {\n  position: relative;\n  height: 0;\n  overflow: hidden;\n  .transition-property(~\"height, visibility\");\n  .transition-duration(.35s);\n  .transition-timing-function(ease);\n}\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 2px;\n  vertical-align: middle;\n  border-top:   @caret-width-base dashed;\n  border-top:   @caret-width-base solid ~\"\\9\"; // IE8\n  border-right: @caret-width-base solid transparent;\n  border-left:  @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropup,\n.dropdown {\n  position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n  outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  z-index: @zindex-dropdown;\n  display: none; // none by default, but block on \"open\" of the menu\n  float: left;\n  min-width: 160px;\n  padding: 5px 0;\n  margin: 2px 0 0; // override default ul\n  list-style: none;\n  font-size: @font-size-base;\n  text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n  background-color: @dropdown-bg;\n  border: 1px solid @dropdown-fallback-border; // IE8 fallback\n  border: 1px solid @dropdown-border;\n  border-radius: @border-radius-base;\n  .box-shadow(0 6px 12px rgba(0,0,0,.175));\n  background-clip: padding-box;\n\n  // Aligns the dropdown menu to right\n  //\n  // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n  &.pull-right {\n    right: 0;\n    left: auto;\n  }\n\n  // Dividers (basically an hr) within the dropdown\n  .divider {\n    .nav-divider(@dropdown-divider-bg);\n  }\n\n  // Links within the dropdown menu\n  > li > a {\n    display: block;\n    padding: 3px 20px;\n    clear: both;\n    font-weight: normal;\n    line-height: @line-height-base;\n    color: @dropdown-link-color;\n    white-space: nowrap; // prevent links from randomly breaking onto new lines\n  }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    color: @dropdown-link-hover-color;\n    background-color: @dropdown-link-hover-bg;\n  }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n  &,\n  &:hover,\n  &:focus {\n    color: @dropdown-link-active-color;\n    text-decoration: none;\n    outline: 0;\n    background-color: @dropdown-link-active-bg;\n  }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n  &,\n  &:hover,\n  &:focus {\n    color: @dropdown-link-disabled-color;\n  }\n\n  // Nuke hover/focus effects\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    background-color: transparent;\n    background-image: none; // Remove CSS gradient\n    .reset-filter();\n    cursor: @cursor-disabled;\n  }\n}\n\n// Open state for the dropdown\n.open {\n  // Show the menu\n  > .dropdown-menu {\n    display: block;\n  }\n\n  // Remove the outline when :focus is triggered\n  > a {\n    outline: 0;\n  }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n  left: auto; // Reset the default from `.dropdown-menu`\n  right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n  left: 0;\n  right: auto;\n}\n\n// Dropdown section headers\n.dropdown-header {\n  display: block;\n  padding: 3px 20px;\n  font-size: @font-size-small;\n  line-height: @line-height-base;\n  color: @dropdown-header-color;\n  white-space: nowrap; // as with > li > a\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n  position: fixed;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  top: 0;\n  z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n  right: 0;\n  left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n  // Reverse the caret\n  .caret {\n    border-top: 0;\n    border-bottom: @caret-width-base dashed;\n    border-bottom: @caret-width-base solid ~\"\\9\"; // IE8\n    content: \"\";\n  }\n  // Different positioning for bottom up menu\n  .dropdown-menu {\n    top: auto;\n    bottom: 100%;\n    margin-bottom: 2px;\n  }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-right {\n    .dropdown-menu {\n      .dropdown-menu-right();\n    }\n    // Necessary for overrides of the default right aligned menu.\n    // Will remove come v4 in all likelihood.\n    .dropdown-menu-left {\n      .dropdown-menu-left();\n    }\n  }\n}\n","// Horizontal dividers\n//\n// Dividers (basically an hr) within dropdowns and nav lists\n\n.nav-divider(@color: #e5e5e5) {\n  height: 1px;\n  margin: ((@line-height-computed / 2) - 1) 0;\n  overflow: hidden;\n  background-color: @color;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n  filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n  border-top-right-radius: @radius;\n   border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n  border-bottom-right-radius: @radius;\n     border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n  border-bottom-right-radius: @radius;\n   border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n  border-bottom-left-radius: @radius;\n     border-top-left-radius: @radius;\n}\n","//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n  position: relative; // For dropdowns\n  display: table;\n  border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n  // Undo padding and float of grid classes\n  &[class*=\"col-\"] {\n    float: none;\n    padding-left: 0;\n    padding-right: 0;\n  }\n\n  .form-control {\n    // Ensure that the input is always above the *appended* addon button for\n    // proper border colors.\n    position: relative;\n    z-index: 2;\n\n    // IE9 fubars the placeholder attribute in text inputs and the arrows on\n    // select elements in input groups. To fix it, we float the input. Details:\n    // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n    float: left;\n\n    width: 100%;\n    margin-bottom: 0;\n\n    &:focus {\n      z-index: 3;\n    }\n  }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n  .input-lg();\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n  .input-sm();\n}\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n  display: table-cell;\n\n  &:not(:first-child):not(:last-child) {\n    border-radius: 0;\n  }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n  width: 1%;\n  white-space: nowrap;\n  vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n  padding: @padding-base-vertical @padding-base-horizontal;\n  font-size: @font-size-base;\n  font-weight: normal;\n  line-height: 1;\n  color: @input-color;\n  text-align: center;\n  background-color: @input-group-addon-bg;\n  border: 1px solid @input-group-addon-border-color;\n  border-radius: @input-border-radius;\n\n  // Sizing\n  &.input-sm {\n    padding: @padding-small-vertical @padding-small-horizontal;\n    font-size: @font-size-small;\n    border-radius: @input-border-radius-small;\n  }\n  &.input-lg {\n    padding: @padding-large-vertical @padding-large-horizontal;\n    font-size: @font-size-large;\n    border-radius: @input-border-radius-large;\n  }\n\n  // Nuke default margins from checkboxes and radios to vertically center within.\n  input[type=\"radio\"],\n  input[type=\"checkbox\"] {\n    margin-top: 0;\n  }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n  .border-right-radius(0);\n}\n.input-group-addon:first-child {\n  border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n  .border-left-radius(0);\n}\n.input-group-addon:last-child {\n  border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n  position: relative;\n  // Jankily prevent input button groups from wrapping with `white-space` and\n  // `font-size` in combination with `inline-block` on buttons.\n  font-size: 0;\n  white-space: nowrap;\n\n  // Negative margin for spacing, position for bringing hovered/focused/actived\n  // element above the siblings.\n  > .btn {\n    position: relative;\n    + .btn {\n      margin-left: -1px;\n    }\n    // Bring the \"active\" button to the front\n    &:hover,\n    &:focus,\n    &:active {\n      z-index: 2;\n    }\n  }\n\n  // Negative margin to only have a 1px border between the two\n  &:first-child {\n    > .btn,\n    > .btn-group {\n      margin-right: -1px;\n    }\n  }\n  &:last-child {\n    > .btn,\n    > .btn-group {\n      z-index: 2;\n      margin-left: -1px;\n    }\n  }\n}\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n  margin-bottom: 0;\n  padding-left: 0; // Override default ul/ol\n  list-style: none;\n  &:extend(.clearfix all);\n\n  > li {\n    position: relative;\n    display: block;\n\n    > a {\n      position: relative;\n      display: block;\n      padding: @nav-link-padding;\n      &:hover,\n      &:focus {\n        text-decoration: none;\n        background-color: @nav-link-hover-bg;\n      }\n    }\n\n    // Disabled state sets text to gray and nukes hover/tab effects\n    &.disabled > a {\n      color: @nav-disabled-link-color;\n\n      &:hover,\n      &:focus {\n        color: @nav-disabled-link-hover-color;\n        text-decoration: none;\n        background-color: transparent;\n        cursor: @cursor-disabled;\n      }\n    }\n  }\n\n  // Open dropdowns\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: @nav-link-hover-bg;\n      border-color: @link-color;\n    }\n  }\n\n  // Nav dividers (deprecated with v3.0.1)\n  //\n  // This should have been removed in v3 with the dropping of `.nav-list`, but\n  // we missed it. We don't currently support this anywhere, but in the interest\n  // of maintaining backward compatibility in case you use it, it's deprecated.\n  .nav-divider {\n    .nav-divider();\n  }\n\n  // Prevent IE8 from misplacing imgs\n  //\n  // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n  > li > a > img {\n    max-width: none;\n  }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n  border-bottom: 1px solid @nav-tabs-border-color;\n  > li {\n    float: left;\n    // Make the list-items overlay the bottom border\n    margin-bottom: -1px;\n\n    // Actual tabs (as links)\n    > a {\n      margin-right: 2px;\n      line-height: @line-height-base;\n      border: 1px solid transparent;\n      border-radius: @border-radius-base @border-radius-base 0 0;\n      &:hover {\n        border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n      }\n    }\n\n    // Active state, and its :hover to override normal :hover\n    &.active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @nav-tabs-active-link-hover-color;\n        background-color: @nav-tabs-active-link-hover-bg;\n        border: 1px solid @nav-tabs-active-link-hover-border-color;\n        border-bottom-color: transparent;\n        cursor: default;\n      }\n    }\n  }\n  // pulling this in mainly for less shorthand\n  &.nav-justified {\n    .nav-justified();\n    .nav-tabs-justified();\n  }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n  > li {\n    float: left;\n\n    // Links rendered as pills\n    > a {\n      border-radius: @nav-pills-border-radius;\n    }\n    + li {\n      margin-left: 2px;\n    }\n\n    // Active state\n    &.active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @nav-pills-active-link-hover-color;\n        background-color: @nav-pills-active-link-hover-bg;\n      }\n    }\n  }\n}\n\n\n// Stacked pills\n.nav-stacked {\n  > li {\n    float: none;\n    + li {\n      margin-top: 2px;\n      margin-left: 0; // no need for this gap between nav items\n    }\n  }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n  width: 100%;\n\n  > li {\n    float: none;\n    > a {\n      text-align: center;\n      margin-bottom: 5px;\n    }\n  }\n\n  > .dropdown .dropdown-menu {\n    top: auto;\n    left: auto;\n  }\n\n  @media (min-width: @screen-sm-min) {\n    > li {\n      display: table-cell;\n      width: 1%;\n      > a {\n        margin-bottom: 0;\n      }\n    }\n  }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n  border-bottom: 0;\n\n  > li > a {\n    // Override margin from .nav-tabs\n    margin-right: 0;\n    border-radius: @border-radius-base;\n  }\n\n  > .active > a,\n  > .active > a:hover,\n  > .active > a:focus {\n    border: 1px solid @nav-tabs-justified-link-border-color;\n  }\n\n  @media (min-width: @screen-sm-min) {\n    > li > a {\n      border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n      border-radius: @border-radius-base @border-radius-base 0 0;\n    }\n    > .active > a,\n    > .active > a:hover,\n    > .active > a:focus {\n      border-bottom-color: @nav-tabs-justified-active-link-border-color;\n    }\n  }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Hide tabbable panes to start, show them when `.active`\n.tab-content {\n  > .tab-pane {\n    display: none;\n  }\n  > .active {\n    display: block;\n  }\n}\n\n\n// Dropdowns\n// -------------------------\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n  // make dropdown border overlap tab border\n  margin-top: -1px;\n  // Remove the top rounded corners here since there is a hard edge above the menu\n  .border-top-radius(0);\n}\n","//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n  position: relative;\n  min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n  margin-bottom: @navbar-margin-bottom;\n  border: 1px solid transparent;\n\n  // Prevent floats from breaking the navbar\n  &:extend(.clearfix all);\n\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: @navbar-border-radius;\n  }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n  &:extend(.clearfix all);\n\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n  }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n  overflow-x: visible;\n  padding-right: @navbar-padding-horizontal;\n  padding-left:  @navbar-padding-horizontal;\n  border-top: 1px solid transparent;\n  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n  &:extend(.clearfix all);\n  -webkit-overflow-scrolling: touch;\n\n  &.in {\n    overflow-y: auto;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    width: auto;\n    border-top: 0;\n    box-shadow: none;\n\n    &.collapse {\n      display: block !important;\n      height: auto !important;\n      padding-bottom: 0; // Override default setting\n      overflow: visible !important;\n    }\n\n    &.in {\n      overflow-y: visible;\n    }\n\n    // Undo the collapse side padding for navbars with containers to ensure\n    // alignment of right-aligned contents.\n    .navbar-fixed-top &,\n    .navbar-static-top &,\n    .navbar-fixed-bottom & {\n      padding-left: 0;\n      padding-right: 0;\n    }\n  }\n}\n\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  .navbar-collapse {\n    max-height: @navbar-collapse-max-height;\n\n    @media (max-device-width: @screen-xs-min) and (orientation: landscape) {\n      max-height: 200px;\n    }\n  }\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container,\n.container-fluid {\n  > .navbar-header,\n  > .navbar-collapse {\n    margin-right: -@navbar-padding-horizontal;\n    margin-left:  -@navbar-padding-horizontal;\n\n    @media (min-width: @grid-float-breakpoint) {\n      margin-right: 0;\n      margin-left:  0;\n    }\n  }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n  z-index: @zindex-navbar;\n  border-width: 0 0 1px;\n\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: 0;\n  }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  position: fixed;\n  right: 0;\n  left: 0;\n  z-index: @zindex-navbar-fixed;\n\n  // Undo the rounded corners\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top {\n  top: 0;\n  border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n  bottom: 0;\n  margin-bottom: 0; // override .navbar defaults\n  border-width: 1px 0 0;\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n  float: left;\n  padding: @navbar-padding-vertical @navbar-padding-horizontal;\n  font-size: @font-size-large;\n  line-height: @line-height-computed;\n  height: @navbar-height;\n\n  &:hover,\n  &:focus {\n    text-decoration: none;\n  }\n\n  > img {\n    display: block;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    .navbar > .container &,\n    .navbar > .container-fluid & {\n      margin-left: -@navbar-padding-horizontal;\n    }\n  }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n  position: relative;\n  float: right;\n  margin-right: @navbar-padding-horizontal;\n  padding: 9px 10px;\n  .navbar-vertical-align(34px);\n  background-color: transparent;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid transparent;\n  border-radius: @border-radius-base;\n\n  // We remove the `outline` here, but later compensate by attaching `:hover`\n  // styles to `:focus`.\n  &:focus {\n    outline: 0;\n  }\n\n  // Bars\n  .icon-bar {\n    display: block;\n    width: 22px;\n    height: 2px;\n    border-radius: 1px;\n  }\n  .icon-bar + .icon-bar {\n    margin-top: 4px;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    display: none;\n  }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n  margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n  > li > a {\n    padding-top:    10px;\n    padding-bottom: 10px;\n    line-height: @line-height-computed;\n  }\n\n  @media (max-width: @grid-float-breakpoint-max) {\n    // Dropdowns get custom display when collapsed\n    .open .dropdown-menu {\n      position: static;\n      float: none;\n      width: auto;\n      margin-top: 0;\n      background-color: transparent;\n      border: 0;\n      box-shadow: none;\n      > li > a,\n      .dropdown-header {\n        padding: 5px 15px 5px 25px;\n      }\n      > li > a {\n        line-height: @line-height-computed;\n        &:hover,\n        &:focus {\n          background-image: none;\n        }\n      }\n    }\n  }\n\n  // Uncollapse the nav\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n    margin: 0;\n\n    > li {\n      float: left;\n      > a {\n        padding-top:    @navbar-padding-vertical;\n        padding-bottom: @navbar-padding-vertical;\n      }\n    }\n  }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n  margin-left: -@navbar-padding-horizontal;\n  margin-right: -@navbar-padding-horizontal;\n  padding: 10px @navbar-padding-horizontal;\n  border-top: 1px solid transparent;\n  border-bottom: 1px solid transparent;\n  @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);\n  .box-shadow(@shadow);\n\n  // Mixin behavior for optimum display\n  .form-inline();\n\n  .form-group {\n    @media (max-width: @grid-float-breakpoint-max) {\n      margin-bottom: 5px;\n\n      &:last-child {\n        margin-bottom: 0;\n      }\n    }\n  }\n\n  // Vertically center in expanded, horizontal navbar\n  .navbar-vertical-align(@input-height-base);\n\n  // Undo 100% width for pull classes\n  @media (min-width: @grid-float-breakpoint) {\n    width: auto;\n    border: 0;\n    margin-left: 0;\n    margin-right: 0;\n    padding-top: 0;\n    padding-bottom: 0;\n    .box-shadow(none);\n  }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n  margin-top: 0;\n  .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n  margin-bottom: 0;\n  .border-top-radius(@navbar-border-radius);\n  .border-bottom-radius(0);\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n  .navbar-vertical-align(@input-height-base);\n\n  &.btn-sm {\n    .navbar-vertical-align(@input-height-small);\n  }\n  &.btn-xs {\n    .navbar-vertical-align(22);\n  }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n  .navbar-vertical-align(@line-height-computed);\n\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n    margin-left: @navbar-padding-horizontal;\n    margin-right: @navbar-padding-horizontal;\n  }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n//\n// Declared after the navbar components to ensure more specificity on the margins.\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-left  { .pull-left(); }\n  .navbar-right {\n    .pull-right();\n    margin-right: -@navbar-padding-horizontal;\n\n    ~ .navbar-right {\n      margin-right: 0;\n    }\n  }\n}\n\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n  background-color: @navbar-default-bg;\n  border-color: @navbar-default-border;\n\n  .navbar-brand {\n    color: @navbar-default-brand-color;\n    &:hover,\n    &:focus {\n      color: @navbar-default-brand-hover-color;\n      background-color: @navbar-default-brand-hover-bg;\n    }\n  }\n\n  .navbar-text {\n    color: @navbar-default-color;\n  }\n\n  .navbar-nav {\n    > li > a {\n      color: @navbar-default-link-color;\n\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-hover-color;\n        background-color: @navbar-default-link-hover-bg;\n      }\n    }\n    > .active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-active-color;\n        background-color: @navbar-default-link-active-bg;\n      }\n    }\n    > .disabled > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-disabled-color;\n        background-color: @navbar-default-link-disabled-bg;\n      }\n    }\n  }\n\n  .navbar-toggle {\n    border-color: @navbar-default-toggle-border-color;\n    &:hover,\n    &:focus {\n      background-color: @navbar-default-toggle-hover-bg;\n    }\n    .icon-bar {\n      background-color: @navbar-default-toggle-icon-bar-bg;\n    }\n  }\n\n  .navbar-collapse,\n  .navbar-form {\n    border-color: @navbar-default-border;\n  }\n\n  // Dropdown menu items\n  .navbar-nav {\n    // Remove background color from open dropdown\n    > .open > a {\n      &,\n      &:hover,\n      &:focus {\n        background-color: @navbar-default-link-active-bg;\n        color: @navbar-default-link-active-color;\n      }\n    }\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      // Dropdowns get custom display when collapsed\n      .open .dropdown-menu {\n        > li > a {\n          color: @navbar-default-link-color;\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-hover-color;\n            background-color: @navbar-default-link-hover-bg;\n          }\n        }\n        > .active > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-active-color;\n            background-color: @navbar-default-link-active-bg;\n          }\n        }\n        > .disabled > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-disabled-color;\n            background-color: @navbar-default-link-disabled-bg;\n          }\n        }\n      }\n    }\n  }\n\n\n  // Links in navbars\n  //\n  // Add a class to ensure links outside the navbar nav are colored correctly.\n\n  .navbar-link {\n    color: @navbar-default-link-color;\n    &:hover {\n      color: @navbar-default-link-hover-color;\n    }\n  }\n\n  .btn-link {\n    color: @navbar-default-link-color;\n    &:hover,\n    &:focus {\n      color: @navbar-default-link-hover-color;\n    }\n    &[disabled],\n    fieldset[disabled] & {\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-disabled-color;\n      }\n    }\n  }\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n  background-color: @navbar-inverse-bg;\n  border-color: @navbar-inverse-border;\n\n  .navbar-brand {\n    color: @navbar-inverse-brand-color;\n    &:hover,\n    &:focus {\n      color: @navbar-inverse-brand-hover-color;\n      background-color: @navbar-inverse-brand-hover-bg;\n    }\n  }\n\n  .navbar-text {\n    color: @navbar-inverse-color;\n  }\n\n  .navbar-nav {\n    > li > a {\n      color: @navbar-inverse-link-color;\n\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-hover-color;\n        background-color: @navbar-inverse-link-hover-bg;\n      }\n    }\n    > .active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-active-color;\n        background-color: @navbar-inverse-link-active-bg;\n      }\n    }\n    > .disabled > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-disabled-color;\n        background-color: @navbar-inverse-link-disabled-bg;\n      }\n    }\n  }\n\n  // Darken the responsive nav toggle\n  .navbar-toggle {\n    border-color: @navbar-inverse-toggle-border-color;\n    &:hover,\n    &:focus {\n      background-color: @navbar-inverse-toggle-hover-bg;\n    }\n    .icon-bar {\n      background-color: @navbar-inverse-toggle-icon-bar-bg;\n    }\n  }\n\n  .navbar-collapse,\n  .navbar-form {\n    border-color: darken(@navbar-inverse-bg, 7%);\n  }\n\n  // Dropdowns\n  .navbar-nav {\n    > .open > a {\n      &,\n      &:hover,\n      &:focus {\n        background-color: @navbar-inverse-link-active-bg;\n        color: @navbar-inverse-link-active-color;\n      }\n    }\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      // Dropdowns get custom display\n      .open .dropdown-menu {\n        > .dropdown-header {\n          border-color: @navbar-inverse-border;\n        }\n        .divider {\n          background-color: @navbar-inverse-border;\n        }\n        > li > a {\n          color: @navbar-inverse-link-color;\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-hover-color;\n            background-color: @navbar-inverse-link-hover-bg;\n          }\n        }\n        > .active > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-active-color;\n            background-color: @navbar-inverse-link-active-bg;\n          }\n        }\n        > .disabled > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-disabled-color;\n            background-color: @navbar-inverse-link-disabled-bg;\n          }\n        }\n      }\n    }\n  }\n\n  .navbar-link {\n    color: @navbar-inverse-link-color;\n    &:hover {\n      color: @navbar-inverse-link-hover-color;\n    }\n  }\n\n  .btn-link {\n    color: @navbar-inverse-link-color;\n    &:hover,\n    &:focus {\n      color: @navbar-inverse-link-hover-color;\n    }\n    &[disabled],\n    fieldset[disabled] & {\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-disabled-color;\n      }\n    }\n  }\n}\n","// Navbar vertical align\n//\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n\n.navbar-vertical-align(@element-height) {\n  margin-top: ((@navbar-height - @element-height) / 2);\n  margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n","//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n  .clearfix();\n}\n.center-block {\n  .center-block();\n}\n.pull-right {\n  float: right !important;\n}\n.pull-left {\n  float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1\n.hide {\n  display: none !important;\n}\n.show {\n  display: block !important;\n}\n.invisible {\n  visibility: hidden;\n}\n.text-hide {\n  .text-hide();\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n  display: none !important;\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n  position: fixed;\n}\n","// Bordered & Pulled\n// -------------------------\n\n.@{fa-css-prefix}-border {\n  padding: .2em .25em .15em;\n  border: solid .08em @fa-border-color;\n  border-radius: .1em;\n}\n\n.@{fa-css-prefix}-pull-left { float: left; }\n.@{fa-css-prefix}-pull-right { float: right; }\n\n.@{fa-css-prefix} {\n  &.@{fa-css-prefix}-pull-left { margin-right: .3em; }\n  &.@{fa-css-prefix}-pull-right { margin-left: .3em; }\n}\n\n/* Deprecated as of 4.4.0 */\n.pull-right { float: right; }\n.pull-left { float: left; }\n\n.@{fa-css-prefix} {\n  &.pull-left { margin-right: .3em; }\n  &.pull-right { margin-left: .3em; }\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n  padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n  margin-bottom: @line-height-computed;\n  list-style: none;\n  background-color: @breadcrumb-bg;\n  border-radius: @border-radius-base;\n\n  > li {\n    display: inline-block;\n\n    + li:before {\n      content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n      padding: 0 5px;\n      color: @breadcrumb-color;\n    }\n  }\n\n  > .active {\n    color: @breadcrumb-active-color;\n  }\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n  display: inline-block;\n  padding-left: 0;\n  margin: @line-height-computed 0;\n  border-radius: @border-radius-base;\n\n  > li {\n    display: inline; // Remove list-style and block-level defaults\n    > a,\n    > span {\n      position: relative;\n      float: left; // Collapse white-space\n      padding: @padding-base-vertical @padding-base-horizontal;\n      line-height: @line-height-base;\n      text-decoration: none;\n      color: @pagination-color;\n      background-color: @pagination-bg;\n      border: 1px solid @pagination-border;\n      margin-left: -1px;\n    }\n    &:first-child {\n      > a,\n      > span {\n        margin-left: 0;\n        .border-left-radius(@border-radius-base);\n      }\n    }\n    &:last-child {\n      > a,\n      > span {\n        .border-right-radius(@border-radius-base);\n      }\n    }\n  }\n\n  > li > a,\n  > li > span {\n    &:hover,\n    &:focus {\n      z-index: 2;\n      color: @pagination-hover-color;\n      background-color: @pagination-hover-bg;\n      border-color: @pagination-hover-border;\n    }\n  }\n\n  > .active > a,\n  > .active > span {\n    &,\n    &:hover,\n    &:focus {\n      z-index: 3;\n      color: @pagination-active-color;\n      background-color: @pagination-active-bg;\n      border-color: @pagination-active-border;\n      cursor: default;\n    }\n  }\n\n  > .disabled {\n    > span,\n    > span:hover,\n    > span:focus,\n    > a,\n    > a:hover,\n    > a:focus {\n      color: @pagination-disabled-color;\n      background-color: @pagination-disabled-bg;\n      border-color: @pagination-disabled-border;\n      cursor: @cursor-disabled;\n    }\n  }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n  .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n  .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n","// Pagination\n\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  > li {\n    > a,\n    > span {\n      padding: @padding-vertical @padding-horizontal;\n      font-size: @font-size;\n      line-height: @line-height;\n    }\n    &:first-child {\n      > a,\n      > span {\n        .border-left-radius(@border-radius);\n      }\n    }\n    &:last-child {\n      > a,\n      > span {\n        .border-right-radius(@border-radius);\n      }\n    }\n  }\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n  padding-left: 0;\n  margin: @line-height-computed 0;\n  list-style: none;\n  text-align: center;\n  &:extend(.clearfix all);\n  li {\n    display: inline;\n    > a,\n    > span {\n      display: inline-block;\n      padding: 5px 14px;\n      background-color: @pager-bg;\n      border: 1px solid @pager-border;\n      border-radius: @pager-border-radius;\n    }\n\n    > a:hover,\n    > a:focus {\n      text-decoration: none;\n      background-color: @pager-hover-bg;\n    }\n  }\n\n  .next {\n    > a,\n    > span {\n      float: right;\n    }\n  }\n\n  .previous {\n    > a,\n    > span {\n      float: left;\n    }\n  }\n\n  .disabled {\n    > a,\n    > a:hover,\n    > a:focus,\n    > span {\n      color: @pager-disabled-color;\n      background-color: @pager-bg;\n      cursor: @cursor-disabled;\n    }\n  }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n  display: inline;\n  padding: .2em .6em .3em;\n  font-size: 75%;\n  font-weight: bold;\n  line-height: 1;\n  color: @label-color;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  border-radius: .25em;\n\n  // Add hover effects, but only for links\n  a& {\n    &:hover,\n    &:focus {\n      color: @label-link-hover-color;\n      text-decoration: none;\n      cursor: pointer;\n    }\n  }\n\n  // Empty labels collapse automatically (not available in IE8)\n  &:empty {\n    display: none;\n  }\n\n  // Quick fix for labels in buttons\n  .btn & {\n    position: relative;\n    top: -1px;\n  }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n  .label-variant(@label-default-bg);\n}\n\n.label-primary {\n  .label-variant(@label-primary-bg);\n}\n\n.label-success {\n  .label-variant(@label-success-bg);\n}\n\n.label-info {\n  .label-variant(@label-info-bg);\n}\n\n.label-warning {\n  .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n  .label-variant(@label-danger-bg);\n}\n","// Labels\n\n.label-variant(@color) {\n  background-color: @color;\n\n  &[href] {\n    &:hover,\n    &:focus {\n      background-color: darken(@color, 10%);\n    }\n  }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base class\n.badge {\n  display: inline-block;\n  min-width: 10px;\n  padding: 3px 7px;\n  font-size: @font-size-small;\n  font-weight: @badge-font-weight;\n  color: @badge-color;\n  line-height: @badge-line-height;\n  vertical-align: middle;\n  white-space: nowrap;\n  text-align: center;\n  background-color: @badge-bg;\n  border-radius: @badge-border-radius;\n\n  // Empty badges collapse automatically (not available in IE8)\n  &:empty {\n    display: none;\n  }\n\n  // Quick fix for badges in buttons\n  .btn & {\n    position: relative;\n    top: -1px;\n  }\n\n  .btn-xs &,\n  .btn-group-xs > .btn & {\n    top: 0;\n    padding: 1px 5px;\n  }\n\n  // Hover state, but only for links\n  a& {\n    &:hover,\n    &:focus {\n      color: @badge-link-hover-color;\n      text-decoration: none;\n      cursor: pointer;\n    }\n  }\n\n  // Account for badges in navs\n  .list-group-item.active > &,\n  .nav-pills > .active > a > & {\n    color: @badge-active-color;\n    background-color: @badge-active-bg;\n  }\n\n  .list-group-item > & {\n    float: right;\n  }\n\n  .list-group-item > & + & {\n    margin-right: 5px;\n  }\n\n  .nav-pills > li > a > & {\n    margin-left: 3px;\n  }\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n  padding-top:    @jumbotron-padding;\n  padding-bottom: @jumbotron-padding;\n  margin-bottom: @jumbotron-padding;\n  color: @jumbotron-color;\n  background-color: @jumbotron-bg;\n\n  h1,\n  .h1 {\n    color: @jumbotron-heading-color;\n  }\n\n  p {\n    margin-bottom: (@jumbotron-padding / 2);\n    font-size: @jumbotron-font-size;\n    font-weight: 200;\n  }\n\n  > hr {\n    border-top-color: darken(@jumbotron-bg, 10%);\n  }\n\n  .container &,\n  .container-fluid & {\n    border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n    padding-left:  (@grid-gutter-width / 2);\n    padding-right: (@grid-gutter-width / 2);\n  }\n\n  .container {\n    max-width: 100%;\n  }\n\n  @media screen and (min-width: @screen-sm-min) {\n    padding-top:    (@jumbotron-padding * 1.6);\n    padding-bottom: (@jumbotron-padding * 1.6);\n\n    .container &,\n    .container-fluid & {\n      padding-left:  (@jumbotron-padding * 2);\n      padding-right: (@jumbotron-padding * 2);\n    }\n\n    h1,\n    .h1 {\n      font-size: @jumbotron-heading-font-size;\n    }\n  }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n  padding: @alert-padding;\n  margin-bottom: @line-height-computed;\n  border: 1px solid transparent;\n  border-radius: @alert-border-radius;\n\n  // Headings for larger alerts\n  h4 {\n    margin-top: 0;\n    // Specified for the h4 to prevent conflicts of changing @headings-color\n    color: inherit;\n  }\n\n  // Provide class for links that match alerts\n  .alert-link {\n    font-weight: @alert-link-font-weight;\n  }\n\n  // Improve alignment and spacing of inner content\n  > p,\n  > ul {\n    margin-bottom: 0;\n  }\n\n  > p + p {\n    margin-top: 5px;\n  }\n}\n\n// Dismissible alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.\n.alert-dismissible {\n  padding-right: (@alert-padding + 20);\n\n  // Adjust close link position\n  .close {\n    position: relative;\n    top: -2px;\n    right: -21px;\n    color: inherit;\n  }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n  .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n\n.alert-info {\n  .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n\n.alert-warning {\n  .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n\n.alert-danger {\n  .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","// Alerts\n\n.alert-variant(@background; @border; @text-color) {\n  background-color: @background;\n  border-color: @border;\n  color: @text-color;\n\n  hr {\n    border-top-color: darken(@border, 5%);\n  }\n  .alert-link {\n    color: darken(@text-color, 10%);\n  }\n}\n","//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// WebKit\n@-webkit-keyframes progress-bar-stripes {\n  from  { background-position: 40px 0; }\n  to    { background-position: 0 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n  from  { background-position: 40px 0; }\n  to    { background-position: 0 0; }\n}\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n  overflow: hidden;\n  height: @line-height-computed;\n  margin-bottom: @line-height-computed;\n  background-color: @progress-bg;\n  border-radius: @progress-border-radius;\n  .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n}\n\n// Bar of progress\n.progress-bar {\n  float: left;\n  width: 0%;\n  height: 100%;\n  font-size: @font-size-small;\n  line-height: @line-height-computed;\n  color: @progress-bar-color;\n  text-align: center;\n  background-color: @progress-bar-bg;\n  .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n  .transition(width .6s ease);\n}\n\n// Striped bars\n//\n// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar-striped` class, which you just add to an existing\n// `.progress-bar`.\n.progress-striped .progress-bar,\n.progress-bar-striped {\n  #gradient > .striped();\n  background-size: 40px 40px;\n}\n\n// Call animation for the active one\n//\n// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar.active` approach.\n.progress.active .progress-bar,\n.progress-bar.active {\n  .animation(progress-bar-stripes 2s linear infinite);\n}\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n  .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n  .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n  .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n  .progress-bar-variant(@progress-bar-danger-bg);\n}\n","// Gradients\n\n#gradient {\n\n  // Horizontal gradient, from left to right\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  // Vertical gradient, from top to bottom\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12\n    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n    background-repeat: repeat-x;\n    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n  }\n  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .radial(@inner-color: #555; @outer-color: #333) {\n    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n    background-image: radial-gradient(circle, @inner-color, @outer-color);\n    background-repeat: no-repeat;\n  }\n  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n  }\n}\n","// Progress bars\n\n.progress-bar-variant(@color) {\n  background-color: @color;\n\n  // Deprecated parent class requirement as of v3.2.0\n  .progress-striped & {\n    #gradient > .striped();\n  }\n}\n",".media {\n  // Proper spacing between instances of .media\n  margin-top: 15px;\n\n  &:first-child {\n    margin-top: 0;\n  }\n}\n\n.media,\n.media-body {\n  zoom: 1;\n  overflow: hidden;\n}\n\n.media-body {\n  width: 10000px;\n}\n\n.media-object {\n  display: block;\n\n  // Fix collapse in webkit from max-width: 100% and display: table-cell.\n  &.img-thumbnail {\n    max-width: none;\n  }\n}\n\n.media-right,\n.media > .pull-right {\n  padding-left: 10px;\n}\n\n.media-left,\n.media > .pull-left {\n  padding-right: 10px;\n}\n\n.media-left,\n.media-right,\n.media-body {\n  display: table-cell;\n  vertical-align: top;\n}\n\n.media-middle {\n  vertical-align: middle;\n}\n\n.media-bottom {\n  vertical-align: bottom;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n\n// Media list variation\n//\n// Undo default ul/ol styles\n.media-list {\n  padding-left: 0;\n  list-style: none;\n}\n","//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n  // No need to set list-style: none; since .list-group-item is block level\n  margin-bottom: 20px;\n  padding-left: 0; // reset padding because ul and ol\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n  // Place the border on the list items and negative margin up for better styling\n  margin-bottom: -1px;\n  background-color: @list-group-bg;\n  border: 1px solid @list-group-border;\n\n  // Round the first and last items\n  &:first-child {\n    .border-top-radius(@list-group-border-radius);\n  }\n  &:last-child {\n    margin-bottom: 0;\n    .border-bottom-radius(@list-group-border-radius);\n  }\n}\n\n\n// Interactive list items\n//\n// Use anchor or button elements instead of `li`s or `div`s to create interactive items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item,\nbutton.list-group-item {\n  color: @list-group-link-color;\n\n  .list-group-item-heading {\n    color: @list-group-link-heading-color;\n  }\n\n  // Hover state\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    color: @list-group-link-hover-color;\n    background-color: @list-group-hover-bg;\n  }\n}\n\nbutton.list-group-item {\n  width: 100%;\n  text-align: left;\n}\n\n.list-group-item {\n  // Disabled state\n  &.disabled,\n  &.disabled:hover,\n  &.disabled:focus {\n    background-color: @list-group-disabled-bg;\n    color: @list-group-disabled-color;\n    cursor: @cursor-disabled;\n\n    // Force color to inherit for custom content\n    .list-group-item-heading {\n      color: inherit;\n    }\n    .list-group-item-text {\n      color: @list-group-disabled-text-color;\n    }\n  }\n\n  // Active class on item itself, not parent\n  &.active,\n  &.active:hover,\n  &.active:focus {\n    z-index: 2; // Place active items above their siblings for proper border styling\n    color: @list-group-active-color;\n    background-color: @list-group-active-bg;\n    border-color: @list-group-active-border;\n\n    // Force color to inherit for custom content\n    .list-group-item-heading,\n    .list-group-item-heading > small,\n    .list-group-item-heading > .small {\n      color: inherit;\n    }\n    .list-group-item-text {\n      color: @list-group-active-text-color;\n    }\n  }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.list-group-item-text {\n  margin-bottom: 0;\n  line-height: 1.3;\n}\n","// List Groups\n\n.list-group-item-variant(@state; @background; @color) {\n  .list-group-item-@{state} {\n    color: @color;\n    background-color: @background;\n\n    a&,\n    button& {\n      color: @color;\n\n      .list-group-item-heading {\n        color: inherit;\n      }\n\n      &:hover,\n      &:focus {\n        color: @color;\n        background-color: darken(@background, 5%);\n      }\n      &.active,\n      &.active:hover,\n      &.active:focus {\n        color: #fff;\n        background-color: @color;\n        border-color: @color;\n      }\n    }\n  }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n  margin-bottom: @line-height-computed;\n  background-color: @panel-bg;\n  border: 1px solid transparent;\n  border-radius: @panel-border-radius;\n  .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n  padding: @panel-body-padding;\n  &:extend(.clearfix all);\n}\n\n// Optional heading\n.panel-heading {\n  padding: @panel-heading-padding;\n  border-bottom: 1px solid transparent;\n  .border-top-radius((@panel-border-radius - 1));\n\n  > .dropdown .dropdown-toggle {\n    color: inherit;\n  }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n  margin-top: 0;\n  margin-bottom: 0;\n  font-size: ceil((@font-size-base * 1.125));\n  color: inherit;\n\n  > a,\n  > small,\n  > .small,\n  > small > a,\n  > .small > a {\n    color: inherit;\n  }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n  padding: @panel-footer-padding;\n  background-color: @panel-footer-bg;\n  border-top: 1px solid @panel-inner-border;\n  .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n  > .list-group,\n  > .panel-collapse > .list-group {\n    margin-bottom: 0;\n\n    .list-group-item {\n      border-width: 1px 0;\n      border-radius: 0;\n    }\n\n    // Add border top radius for first one\n    &:first-child {\n      .list-group-item:first-child {\n        border-top: 0;\n        .border-top-radius((@panel-border-radius - 1));\n      }\n    }\n\n    // Add border bottom radius for last one\n    &:last-child {\n      .list-group-item:last-child {\n        border-bottom: 0;\n        .border-bottom-radius((@panel-border-radius - 1));\n      }\n    }\n  }\n  > .panel-heading + .panel-collapse > .list-group {\n    .list-group-item:first-child {\n      .border-top-radius(0);\n    }\n  }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n  .list-group-item:first-child {\n    border-top-width: 0;\n  }\n}\n.list-group + .panel-footer {\n  border-top-width: 0;\n}\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n  > .table,\n  > .table-responsive > .table,\n  > .panel-collapse > .table {\n    margin-bottom: 0;\n\n    caption {\n      padding-left: @panel-body-padding;\n      padding-right: @panel-body-padding;\n    }\n  }\n  // Add border top radius for first one\n  > .table:first-child,\n  > .table-responsive:first-child > .table:first-child {\n    .border-top-radius((@panel-border-radius - 1));\n\n    > thead:first-child,\n    > tbody:first-child {\n      > tr:first-child {\n        border-top-left-radius: (@panel-border-radius - 1);\n        border-top-right-radius: (@panel-border-radius - 1);\n\n        td:first-child,\n        th:first-child {\n          border-top-left-radius: (@panel-border-radius - 1);\n        }\n        td:last-child,\n        th:last-child {\n          border-top-right-radius: (@panel-border-radius - 1);\n        }\n      }\n    }\n  }\n  // Add border bottom radius for last one\n  > .table:last-child,\n  > .table-responsive:last-child > .table:last-child {\n    .border-bottom-radius((@panel-border-radius - 1));\n\n    > tbody:last-child,\n    > tfoot:last-child {\n      > tr:last-child {\n        border-bottom-left-radius: (@panel-border-radius - 1);\n        border-bottom-right-radius: (@panel-border-radius - 1);\n\n        td:first-child,\n        th:first-child {\n          border-bottom-left-radius: (@panel-border-radius - 1);\n        }\n        td:last-child,\n        th:last-child {\n          border-bottom-right-radius: (@panel-border-radius - 1);\n        }\n      }\n    }\n  }\n  > .panel-body + .table,\n  > .panel-body + .table-responsive,\n  > .table + .panel-body,\n  > .table-responsive + .panel-body {\n    border-top: 1px solid @table-border-color;\n  }\n  > .table > tbody:first-child > tr:first-child th,\n  > .table > tbody:first-child > tr:first-child td {\n    border-top: 0;\n  }\n  > .table-bordered,\n  > .table-responsive > .table-bordered {\n    border: 0;\n    > thead,\n    > tbody,\n    > tfoot {\n      > tr {\n        > th:first-child,\n        > td:first-child {\n          border-left: 0;\n        }\n        > th:last-child,\n        > td:last-child {\n          border-right: 0;\n        }\n      }\n    }\n    > thead,\n    > tbody {\n      > tr:first-child {\n        > td,\n        > th {\n          border-bottom: 0;\n        }\n      }\n    }\n    > tbody,\n    > tfoot {\n      > tr:last-child {\n        > td,\n        > th {\n          border-bottom: 0;\n        }\n      }\n    }\n  }\n  > .table-responsive {\n    border: 0;\n    margin-bottom: 0;\n  }\n}\n\n\n// Collapsible panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n  margin-bottom: @line-height-computed;\n\n  // Tighten up margin so it's only between panels\n  .panel {\n    margin-bottom: 0;\n    border-radius: @panel-border-radius;\n\n    + .panel {\n      margin-top: 5px;\n    }\n  }\n\n  .panel-heading {\n    border-bottom: 0;\n\n    + .panel-collapse > .panel-body,\n    + .panel-collapse > .list-group {\n      border-top: 1px solid @panel-inner-border;\n    }\n  }\n\n  .panel-footer {\n    border-top: 0;\n    + .panel-collapse .panel-body {\n      border-bottom: 1px solid @panel-inner-border;\n    }\n  }\n}\n\n\n// Contextual variations\n.panel-default {\n  .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n  .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n  .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n  .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n  .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n  .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","// Panels\n\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n  border-color: @border;\n\n  & > .panel-heading {\n    color: @heading-text-color;\n    background-color: @heading-bg-color;\n    border-color: @heading-border;\n\n    + .panel-collapse > .panel-body {\n      border-top-color: @border;\n    }\n    .badge {\n      color: @heading-bg-color;\n      background-color: @heading-text-color;\n    }\n  }\n  & > .panel-footer {\n    + .panel-collapse > .panel-body {\n      border-bottom-color: @border;\n    }\n  }\n}\n","// Embeds responsive\n//\n// Credit: Nicolas Gallagher and SUIT CSS.\n\n.embed-responsive {\n  position: relative;\n  display: block;\n  height: 0;\n  padding: 0;\n  overflow: hidden;\n\n  .embed-responsive-item,\n  iframe,\n  embed,\n  object,\n  video {\n    position: absolute;\n    top: 0;\n    left: 0;\n    bottom: 0;\n    height: 100%;\n    width: 100%;\n    border: 0;\n  }\n}\n\n// Modifier class for 16:9 aspect ratio\n.embed-responsive-16by9 {\n  padding-bottom: 56.25%;\n}\n\n// Modifier class for 4:3 aspect ratio\n.embed-responsive-4by3 {\n  padding-bottom: 75%;\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n  min-height: 20px;\n  padding: 19px;\n  margin-bottom: 20px;\n  background-color: @well-bg;\n  border: 1px solid @well-border;\n  border-radius: @border-radius-base;\n  .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n  blockquote {\n    border-color: #ddd;\n    border-color: rgba(0,0,0,.15);\n  }\n}\n\n// Sizes\n.well-lg {\n  padding: 24px;\n  border-radius: @border-radius-large;\n}\n.well-sm {\n  padding: 9px;\n  border-radius: @border-radius-small;\n}\n","//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n  float: right;\n  font-size: (@font-size-base * 1.5);\n  font-weight: @close-font-weight;\n  line-height: 1;\n  color: @close-color;\n  text-shadow: @close-text-shadow;\n  .opacity(.2);\n\n  &:hover,\n  &:focus {\n    color: @close-color;\n    text-decoration: none;\n    cursor: pointer;\n    .opacity(.5);\n  }\n\n  // Additional properties for button version\n  // iOS requires the button element instead of an anchor tag.\n  // If you want the anchor version, it requires `href=\"#\"`.\n  // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n  button& {\n    padding: 0;\n    cursor: pointer;\n    background: transparent;\n    border: 0;\n    -webkit-appearance: none;\n  }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open      - body class for killing the scroll\n// .modal           - container to scroll within\n// .modal-dialog    - positioning shell for the actual modal\n// .modal-content   - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n  overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n  display: none;\n  overflow: hidden;\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: @zindex-modal;\n  -webkit-overflow-scrolling: touch;\n\n  // Prevent Chrome on Windows from adding a focus outline. For details, see\n  // https://github.com/twbs/bootstrap/pull/10951.\n  outline: 0;\n\n  // When fading in the modal, animate it to slide down\n  &.fade .modal-dialog {\n    .translate(0, -25%);\n    .transition-transform(~\"0.3s ease-out\");\n  }\n  &.in .modal-dialog { .translate(0, 0) }\n}\n.modal-open .modal {\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n  position: relative;\n  width: auto;\n  margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n  position: relative;\n  background-color: @modal-content-bg;\n  border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n  border: 1px solid @modal-content-border-color;\n  border-radius: @border-radius-large;\n  .box-shadow(0 3px 9px rgba(0,0,0,.5));\n  background-clip: padding-box;\n  // Remove focus outline from opened modal\n  outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: @zindex-modal-background;\n  background-color: @modal-backdrop-bg;\n  // Fade for backdrop\n  &.fade { .opacity(0); }\n  &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n  padding: @modal-title-padding;\n  border-bottom: 1px solid @modal-header-border-color;\n  &:extend(.clearfix all);\n}\n// Close icon\n.modal-header .close {\n  margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n  margin: 0;\n  line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n  position: relative;\n  padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n  padding: @modal-inner-padding;\n  text-align: right; // right align buttons\n  border-top: 1px solid @modal-footer-border-color;\n  &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n  // Properly space out buttons\n  .btn + .btn {\n    margin-left: 5px;\n    margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n  }\n  // but override that for button groups\n  .btn-group .btn + .btn {\n    margin-left: -1px;\n  }\n  // and override it for block buttons as well\n  .btn-block + .btn-block {\n    margin-left: 0;\n  }\n}\n\n// Measure scrollbar width for padding body during modal show/hide\n.modal-scrollbar-measure {\n  position: absolute;\n  top: -9999px;\n  width: 50px;\n  height: 50px;\n  overflow: scroll;\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n  // Automatically set modal's width for larger viewports\n  .modal-dialog {\n    width: @modal-md;\n    margin: 30px auto;\n  }\n  .modal-content {\n    .box-shadow(0 5px 15px rgba(0,0,0,.5));\n  }\n\n  // Modal sizes\n  .modal-sm { width: @modal-sm; }\n}\n\n@media (min-width: @screen-md-min) {\n  .modal-lg { width: @modal-lg; }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n  position: absolute;\n  z-index: @zindex-tooltip;\n  display: block;\n  // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n  // So reset our font and text properties to avoid inheriting weird values.\n  .reset-text();\n  font-size: @font-size-small;\n\n  .opacity(0);\n\n  &.in     { .opacity(@tooltip-opacity); }\n  &.top    { margin-top:  -3px; padding: @tooltip-arrow-width 0; }\n  &.right  { margin-left:  3px; padding: 0 @tooltip-arrow-width; }\n  &.bottom { margin-top:   3px; padding: @tooltip-arrow-width 0; }\n  &.left   { margin-left: -3px; padding: 0 @tooltip-arrow-width; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n  max-width: @tooltip-max-width;\n  padding: 3px 8px;\n  color: @tooltip-color;\n  text-align: center;\n  background-color: @tooltip-bg;\n  border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n  position: absolute;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1\n.tooltip {\n  &.top .tooltip-arrow {\n    bottom: 0;\n    left: 50%;\n    margin-left: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.top-left .tooltip-arrow {\n    bottom: 0;\n    right: @tooltip-arrow-width;\n    margin-bottom: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.top-right .tooltip-arrow {\n    bottom: 0;\n    left: @tooltip-arrow-width;\n    margin-bottom: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.right .tooltip-arrow {\n    top: 50%;\n    left: 0;\n    margin-top: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-right-color: @tooltip-arrow-color;\n  }\n  &.left .tooltip-arrow {\n    top: 50%;\n    right: 0;\n    margin-top: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-left-color: @tooltip-arrow-color;\n  }\n  &.bottom .tooltip-arrow {\n    top: 0;\n    left: 50%;\n    margin-left: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n  &.bottom-left .tooltip-arrow {\n    top: 0;\n    right: @tooltip-arrow-width;\n    margin-top: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n  &.bottom-right .tooltip-arrow {\n    top: 0;\n    left: @tooltip-arrow-width;\n    margin-top: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n}\n",".reset-text() {\n  font-family: @font-family-base;\n  // We deliberately do NOT reset font-size.\n  font-style: normal;\n  font-weight: normal;\n  letter-spacing: normal;\n  line-break: auto;\n  line-height: @line-height-base;\n  text-align: left; // Fallback for where `start` is not supported\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  white-space: normal;\n  word-break: normal;\n  word-spacing: normal;\n  word-wrap: normal;\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n  position: absolute;\n  top: 0;\n  left: 0;\n  z-index: @zindex-popover;\n  display: none;\n  max-width: @popover-max-width;\n  padding: 1px;\n  // Our parent element can be arbitrary since popovers are by default inserted as a sibling of their target element.\n  // So reset our font and text properties to avoid inheriting weird values.\n  .reset-text();\n  font-size: @font-size-base;\n\n  background-color: @popover-bg;\n  background-clip: padding-box;\n  border: 1px solid @popover-fallback-border-color;\n  border: 1px solid @popover-border-color;\n  border-radius: @border-radius-large;\n  .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n  // Offset the popover to account for the popover arrow\n  &.top     { margin-top: -@popover-arrow-width; }\n  &.right   { margin-left: @popover-arrow-width; }\n  &.bottom  { margin-top: @popover-arrow-width; }\n  &.left    { margin-left: -@popover-arrow-width; }\n}\n\n.popover-title {\n  margin: 0; // reset heading margin\n  padding: 8px 14px;\n  font-size: @font-size-base;\n  background-color: @popover-title-bg;\n  border-bottom: 1px solid darken(@popover-title-bg, 5%);\n  border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;\n}\n\n.popover-content {\n  padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover > .arrow {\n  &,\n  &:after {\n    position: absolute;\n    display: block;\n    width: 0;\n    height: 0;\n    border-color: transparent;\n    border-style: solid;\n  }\n}\n.popover > .arrow {\n  border-width: @popover-arrow-outer-width;\n}\n.popover > .arrow:after {\n  border-width: @popover-arrow-width;\n  content: \"\";\n}\n\n.popover {\n  &.top > .arrow {\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    border-bottom-width: 0;\n    border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-top-color: @popover-arrow-outer-color;\n    bottom: -@popover-arrow-outer-width;\n    &:after {\n      content: \" \";\n      bottom: 1px;\n      margin-left: -@popover-arrow-width;\n      border-bottom-width: 0;\n      border-top-color: @popover-arrow-color;\n    }\n  }\n  &.right > .arrow {\n    top: 50%;\n    left: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    border-left-width: 0;\n    border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-right-color: @popover-arrow-outer-color;\n    &:after {\n      content: \" \";\n      left: 1px;\n      bottom: -@popover-arrow-width;\n      border-left-width: 0;\n      border-right-color: @popover-arrow-color;\n    }\n  }\n  &.bottom > .arrow {\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    border-top-width: 0;\n    border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-bottom-color: @popover-arrow-outer-color;\n    top: -@popover-arrow-outer-width;\n    &:after {\n      content: \" \";\n      top: 1px;\n      margin-left: -@popover-arrow-width;\n      border-top-width: 0;\n      border-bottom-color: @popover-arrow-color;\n    }\n  }\n\n  &.left > .arrow {\n    top: 50%;\n    right: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    border-right-width: 0;\n    border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-left-color: @popover-arrow-outer-color;\n    &:after {\n      content: \" \";\n      right: 1px;\n      border-right-width: 0;\n      border-left-color: @popover-arrow-color;\n      bottom: -@popover-arrow-width;\n    }\n  }\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n//    contenteditable attribute is included anywhere else in the document.\n//    Otherwise it causes space to appear at the top and bottom of elements\n//    that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n//    `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n  &:before,\n  &:after {\n    content: \" \"; // 1\n    display: table; // 2\n  }\n  &:after {\n    clear: both;\n  }\n}\n","// Center-align a block level element\n\n.center-block() {\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n","// CSS image replacement\n//\n// Heads up! v3 launched with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (has been removed in v4)\n.hide-text() {\n  font: ~\"0/0\" a;\n  color: transparent;\n  text-shadow: none;\n  background-color: transparent;\n  border: 0;\n}\n\n// New mixin to use as of v3.0.1\n.text-hide() {\n  .hide-text();\n}\n","//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#support-ie10-width\n// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n  width: device-width;\n}\n\n\n// Visibility utilities\n// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n  .responsive-invisibility();\n}\n\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n  display: none !important;\n}\n\n.visible-xs {\n  @media (max-width: @screen-xs-max) {\n    .responsive-visibility();\n  }\n}\n.visible-xs-block {\n  @media (max-width: @screen-xs-max) {\n    display: block !important;\n  }\n}\n.visible-xs-inline {\n  @media (max-width: @screen-xs-max) {\n    display: inline !important;\n  }\n}\n.visible-xs-inline-block {\n  @media (max-width: @screen-xs-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-sm {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    .responsive-visibility();\n  }\n}\n.visible-sm-block {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: block !important;\n  }\n}\n.visible-sm-inline {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: inline !important;\n  }\n}\n.visible-sm-inline-block {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-md {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    .responsive-visibility();\n  }\n}\n.visible-md-block {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: block !important;\n  }\n}\n.visible-md-inline {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: inline !important;\n  }\n}\n.visible-md-inline-block {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-lg {\n  @media (min-width: @screen-lg-min) {\n    .responsive-visibility();\n  }\n}\n.visible-lg-block {\n  @media (min-width: @screen-lg-min) {\n    display: block !important;\n  }\n}\n.visible-lg-inline {\n  @media (min-width: @screen-lg-min) {\n    display: inline !important;\n  }\n}\n.visible-lg-inline-block {\n  @media (min-width: @screen-lg-min) {\n    display: inline-block !important;\n  }\n}\n\n.hidden-xs {\n  @media (max-width: @screen-xs-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-sm {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-md {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-lg {\n  @media (min-width: @screen-lg-min) {\n    .responsive-invisibility();\n  }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n// Note: Deprecated .visible-print as of v3.2.0\n.visible-print {\n  .responsive-invisibility();\n\n  @media print {\n    .responsive-visibility();\n  }\n}\n.visible-print-block {\n  display: none !important;\n\n  @media print {\n    display: block !important;\n  }\n}\n.visible-print-inline {\n  display: none !important;\n\n  @media print {\n    display: inline !important;\n  }\n}\n.visible-print-inline-block {\n  display: none !important;\n\n  @media print {\n    display: inline-block !important;\n  }\n}\n\n.hidden-print {\n  @media print {\n    .responsive-invisibility();\n  }\n}\n","// Responsive utilities\n\n//\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n  display: block !important;\n  table&  { display: table !important; }\n  tr&     { display: table-row !important; }\n  th&,\n  td&     { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n  display: none !important;\n}\n","/* FONT PATH\n * -------------------------- */\n\n@font-face {\n  font-family: 'FontAwesome';\n  src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');\n  src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),\n    url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),\n    url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),\n    url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),\n    url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');\n  // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts\n  font-weight: normal;\n  font-style: normal;\n}\n","// Base Class Definition\n// -------------------------\n\n.@{fa-css-prefix} {\n  display: inline-block;\n  font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration\n  font-size: inherit; // can't have font-size inherit on line above, so need to override\n  text-rendering: auto; // optimizelegibility throws things off #1094\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n\n}\n","// Icon Sizes\n// -------------------------\n\n/* makes the font 33% larger relative to the icon container */\n.@{fa-css-prefix}-lg {\n  font-size: (4em / 3);\n  line-height: (3em / 4);\n  vertical-align: -15%;\n}\n.@{fa-css-prefix}-2x { font-size: 2em; }\n.@{fa-css-prefix}-3x { font-size: 3em; }\n.@{fa-css-prefix}-4x { font-size: 4em; }\n.@{fa-css-prefix}-5x { font-size: 5em; }\n","// Fixed Width Icons\n// -------------------------\n.@{fa-css-prefix}-fw {\n  width: (18em / 14);\n  text-align: center;\n}\n","// List Icons\n// -------------------------\n\n.@{fa-css-prefix}-ul {\n  padding-left: 0;\n  margin-left: @fa-li-width;\n  list-style-type: none;\n  > li { position: relative; }\n}\n.@{fa-css-prefix}-li {\n  position: absolute;\n  left: -@fa-li-width;\n  width: @fa-li-width;\n  top: (2em / 14);\n  text-align: center;\n  &.@{fa-css-prefix}-lg {\n    left: (-@fa-li-width + (4em / 14));\n  }\n}\n","// Animated Icons\n// --------------------------\n\n.@{fa-css-prefix}-spin {\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear;\n}\n\n.@{fa-css-prefix}-pulse {\n  -webkit-animation: fa-spin 1s infinite steps(8);\n          animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n            transform: rotate(359deg);\n  }\n}\n\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n            transform: rotate(359deg);\n  }\n}\n","// Rotated & Flipped Icons\n// -------------------------\n\n.@{fa-css-prefix}-rotate-90  { .fa-icon-rotate(90deg, 1);  }\n.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }\n.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }\n\n.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }\n.@{fa-css-prefix}-flip-vertical   { .fa-icon-flip(1, -1, 2); }\n\n// Hook for IE8-9\n// -------------------------\n\n:root .@{fa-css-prefix}-rotate-90,\n:root .@{fa-css-prefix}-rotate-180,\n:root .@{fa-css-prefix}-rotate-270,\n:root .@{fa-css-prefix}-flip-horizontal,\n:root .@{fa-css-prefix}-flip-vertical {\n  filter: none;\n}\n","// Mixins\n// --------------------------\n\n.fa-icon() {\n  display: inline-block;\n  font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration\n  font-size: inherit; // can't have font-size inherit on line above, so need to override\n  text-rendering: auto; // optimizelegibility throws things off #1094\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n\n}\n\n.fa-icon-rotate(@degrees, @rotation) {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})\";\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n\n.fa-icon-flip(@horiz, @vert, @rotation) {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)\";\n  -webkit-transform: scale(@horiz, @vert);\n      -ms-transform: scale(@horiz, @vert);\n          transform: scale(@horiz, @vert);\n}\n\n\n// Only display content to screen readers. A la Bootstrap 4.\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n//\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n//\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable() {\n  &:active,\n  &:focus {\n    position: static;\n    width: auto;\n    height: auto;\n    margin: 0;\n    overflow: visible;\n    clip: auto;\n  }\n}\n","// Stacked Icons\n// -------------------------\n\n.@{fa-css-prefix}-stack {\n  position: relative;\n  display: inline-block;\n  width: 2em;\n  height: 2em;\n  line-height: 2em;\n  vertical-align: middle;\n}\n.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {\n  position: absolute;\n  left: 0;\n  width: 100%;\n  text-align: center;\n}\n.@{fa-css-prefix}-stack-1x { line-height: inherit; }\n.@{fa-css-prefix}-stack-2x { font-size: 2em; }\n.@{fa-css-prefix}-inverse { color: @fa-inverse; }\n","/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n   readers do not read off random characters that represent icons */\n\n.@{fa-css-prefix}-glass:before { content: @fa-var-glass; }\n.@{fa-css-prefix}-music:before { content: @fa-var-music; }\n.@{fa-css-prefix}-search:before { content: @fa-var-search; }\n.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; }\n.@{fa-css-prefix}-heart:before { content: @fa-var-heart; }\n.@{fa-css-prefix}-star:before { content: @fa-var-star; }\n.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; }\n.@{fa-css-prefix}-user:before { content: @fa-var-user; }\n.@{fa-css-prefix}-film:before { content: @fa-var-film; }\n.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; }\n.@{fa-css-prefix}-th:before { content: @fa-var-th; }\n.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; }\n.@{fa-css-prefix}-check:before { content: @fa-var-check; }\n.@{fa-css-prefix}-remove:before,\n.@{fa-css-prefix}-close:before,\n.@{fa-css-prefix}-times:before { content: @fa-var-times; }\n.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; }\n.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; }\n.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; }\n.@{fa-css-prefix}-signal:before { content: @fa-var-signal; }\n.@{fa-css-prefix}-gear:before,\n.@{fa-css-prefix}-cog:before { content: @fa-var-cog; }\n.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; }\n.@{fa-css-prefix}-home:before { content: @fa-var-home; }\n.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; }\n.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; }\n.@{fa-css-prefix}-road:before { content: @fa-var-road; }\n.@{fa-css-prefix}-download:before { content: @fa-var-download; }\n.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; }\n.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; }\n.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; }\n.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; }\n.@{fa-css-prefix}-rotate-right:before,\n.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; }\n.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; }\n.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; }\n.@{fa-css-prefix}-lock:before { content: @fa-var-lock; }\n.@{fa-css-prefix}-flag:before { content: @fa-var-flag; }\n.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; }\n.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; }\n.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; }\n.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; }\n.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; }\n.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; }\n.@{fa-css-prefix}-tag:before { content: @fa-var-tag; }\n.@{fa-css-prefix}-tags:before { content: @fa-var-tags; }\n.@{fa-css-prefix}-book:before { content: @fa-var-book; }\n.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; }\n.@{fa-css-prefix}-print:before { content: @fa-var-print; }\n.@{fa-css-prefix}-camera:before { content: @fa-var-camera; }\n.@{fa-css-prefix}-font:before { content: @fa-var-font; }\n.@{fa-css-prefix}-bold:before { content: @fa-var-bold; }\n.@{fa-css-prefix}-italic:before { content: @fa-var-italic; }\n.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; }\n.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; }\n.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; }\n.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; }\n.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; }\n.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; }\n.@{fa-css-prefix}-list:before { content: @fa-var-list; }\n.@{fa-css-prefix}-dedent:before,\n.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; }\n.@{fa-css-prefix}-indent:before { content: @fa-var-indent; }\n.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; }\n.@{fa-css-prefix}-photo:before,\n.@{fa-css-prefix}-image:before,\n.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; }\n.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; }\n.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; }\n.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; }\n.@{fa-css-prefix}-tint:before { content: @fa-var-tint; }\n.@{fa-css-prefix}-edit:before,\n.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; }\n.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; }\n.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; }\n.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; }\n.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; }\n.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; }\n.@{fa-css-prefix}-backward:before { content: @fa-var-backward; }\n.@{fa-css-prefix}-play:before { content: @fa-var-play; }\n.@{fa-css-prefix}-pause:before { content: @fa-var-pause; }\n.@{fa-css-prefix}-stop:before { content: @fa-var-stop; }\n.@{fa-css-prefix}-forward:before { content: @fa-var-forward; }\n.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; }\n.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; }\n.@{fa-css-prefix}-eject:before { content: @fa-var-eject; }\n.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; }\n.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; }\n.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; }\n.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; }\n.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; }\n.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; }\n.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; }\n.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; }\n.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; }\n.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; }\n.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; }\n.@{fa-css-prefix}-ban:before { content: @fa-var-ban; }\n.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; }\n.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; }\n.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; }\n.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; }\n.@{fa-css-prefix}-mail-forward:before,\n.@{fa-css-prefix}-share:before { content: @fa-var-share; }\n.@{fa-css-prefix}-expand:before { content: @fa-var-expand; }\n.@{fa-css-prefix}-compress:before { content: @fa-var-compress; }\n.@{fa-css-prefix}-plus:before { content: @fa-var-plus; }\n.@{fa-css-prefix}-minus:before { content: @fa-var-minus; }\n.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; }\n.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; }\n.@{fa-css-prefix}-gift:before { content: @fa-var-gift; }\n.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; }\n.@{fa-css-prefix}-fire:before { content: @fa-var-fire; }\n.@{fa-css-prefix}-eye:before { content: @fa-var-eye; }\n.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; }\n.@{fa-css-prefix}-warning:before,\n.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; }\n.@{fa-css-prefix}-plane:before { content: @fa-var-plane; }\n.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; }\n.@{fa-css-prefix}-random:before { content: @fa-var-random; }\n.@{fa-css-prefix}-comment:before { content: @fa-var-comment; }\n.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; }\n.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; }\n.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; }\n.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; }\n.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; }\n.@{fa-css-prefix}-folder:before { content: @fa-var-folder; }\n.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; }\n.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; }\n.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; }\n.@{fa-css-prefix}-bar-chart-o:before,\n.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; }\n.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; }\n.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; }\n.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; }\n.@{fa-css-prefix}-key:before { content: @fa-var-key; }\n.@{fa-css-prefix}-gears:before,\n.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; }\n.@{fa-css-prefix}-comments:before { content: @fa-var-comments; }\n.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; }\n.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; }\n.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; }\n.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; }\n.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; }\n.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; }\n.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; }\n.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; }\n.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; }\n.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; }\n.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; }\n.@{fa-css-prefix}-upload:before { content: @fa-var-upload; }\n.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; }\n.@{fa-css-prefix}-phone:before { content: @fa-var-phone; }\n.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; }\n.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; }\n.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; }\n.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; }\n.@{fa-css-prefix}-facebook-f:before,\n.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; }\n.@{fa-css-prefix}-github:before { content: @fa-var-github; }\n.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; }\n.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; }\n.@{fa-css-prefix}-feed:before,\n.@{fa-css-prefix}-rss:before { content: @fa-var-rss; }\n.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; }\n.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; }\n.@{fa-css-prefix}-bell:before { content: @fa-var-bell; }\n.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; }\n.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; }\n.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; }\n.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; }\n.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; }\n.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; }\n.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; }\n.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; }\n.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; }\n.@{fa-css-prefix}-globe:before { content: @fa-var-globe; }\n.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; }\n.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; }\n.@{fa-css-prefix}-filter:before { content: @fa-var-filter; }\n.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; }\n.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; }\n.@{fa-css-prefix}-group:before,\n.@{fa-css-prefix}-users:before { content: @fa-var-users; }\n.@{fa-css-prefix}-chain:before,\n.@{fa-css-prefix}-link:before { content: @fa-var-link; }\n.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; }\n.@{fa-css-prefix}-flask:before { content: @fa-var-flask; }\n.@{fa-css-prefix}-cut:before,\n.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; }\n.@{fa-css-prefix}-copy:before,\n.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; }\n.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; }\n.@{fa-css-prefix}-save:before,\n.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; }\n.@{fa-css-prefix}-square:before { content: @fa-var-square; }\n.@{fa-css-prefix}-navicon:before,\n.@{fa-css-prefix}-reorder:before,\n.@{fa-css-prefix}-bars:before { content: @fa-var-bars; }\n.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; }\n.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; }\n.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; }\n.@{fa-css-prefix}-underline:before { content: @fa-var-underline; }\n.@{fa-css-prefix}-table:before { content: @fa-var-table; }\n.@{fa-css-prefix}-magic:before { content: @fa-var-magic; }\n.@{fa-css-prefix}-truck:before { content: @fa-var-truck; }\n.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; }\n.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; }\n.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; }\n.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; }\n.@{fa-css-prefix}-money:before { content: @fa-var-money; }\n.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; }\n.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; }\n.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; }\n.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; }\n.@{fa-css-prefix}-columns:before { content: @fa-var-columns; }\n.@{fa-css-prefix}-unsorted:before,\n.@{fa-css-prefix}-sort:before { content: @fa-var-sort; }\n.@{fa-css-prefix}-sort-down:before,\n.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; }\n.@{fa-css-prefix}-sort-up:before,\n.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; }\n.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; }\n.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; }\n.@{fa-css-prefix}-rotate-left:before,\n.@{fa-css-prefix}-undo:before { content: @fa-var-undo; }\n.@{fa-css-prefix}-legal:before,\n.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; }\n.@{fa-css-prefix}-dashboard:before,\n.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; }\n.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; }\n.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; }\n.@{fa-css-prefix}-flash:before,\n.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; }\n.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; }\n.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; }\n.@{fa-css-prefix}-paste:before,\n.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; }\n.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; }\n.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; }\n.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; }\n.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; }\n.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; }\n.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; }\n.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; }\n.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; }\n.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; }\n.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; }\n.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; }\n.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; }\n.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; }\n.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; }\n.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; }\n.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; }\n.@{fa-css-prefix}-beer:before { content: @fa-var-beer; }\n.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; }\n.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; }\n.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; }\n.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; }\n.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; }\n.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; }\n.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; }\n.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; }\n.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; }\n.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; }\n.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; }\n.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; }\n.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; }\n.@{fa-css-prefix}-mobile-phone:before,\n.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; }\n.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; }\n.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; }\n.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; }\n.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; }\n.@{fa-css-prefix}-circle:before { content: @fa-var-circle; }\n.@{fa-css-prefix}-mail-reply:before,\n.@{fa-css-prefix}-reply:before { content: @fa-var-reply; }\n.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; }\n.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; }\n.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; }\n.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; }\n.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; }\n.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; }\n.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; }\n.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; }\n.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; }\n.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; }\n.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; }\n.@{fa-css-prefix}-code:before { content: @fa-var-code; }\n.@{fa-css-prefix}-mail-reply-all:before,\n.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; }\n.@{fa-css-prefix}-star-half-empty:before,\n.@{fa-css-prefix}-star-half-full:before,\n.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; }\n.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; }\n.@{fa-css-prefix}-crop:before { content: @fa-var-crop; }\n.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; }\n.@{fa-css-prefix}-unlink:before,\n.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; }\n.@{fa-css-prefix}-question:before { content: @fa-var-question; }\n.@{fa-css-prefix}-info:before { content: @fa-var-info; }\n.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; }\n.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; }\n.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; }\n.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; }\n.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; }\n.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; }\n.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; }\n.@{fa-css-prefix}-shield:before { content: @fa-var-shield; }\n.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; }\n.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; }\n.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; }\n.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; }\n.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; }\n.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; }\n.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; }\n.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; }\n.@{fa-css-prefix}-html5:before { content: @fa-var-html5; }\n.@{fa-css-prefix}-css3:before { content: @fa-var-css3; }\n.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; }\n.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; }\n.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; }\n.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; }\n.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; }\n.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; }\n.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; }\n.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; }\n.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; }\n.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; }\n.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; }\n.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; }\n.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; }\n.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; }\n.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; }\n.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; }\n.@{fa-css-prefix}-compass:before { content: @fa-var-compass; }\n.@{fa-css-prefix}-toggle-down:before,\n.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; }\n.@{fa-css-prefix}-toggle-up:before,\n.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; }\n.@{fa-css-prefix}-toggle-right:before,\n.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; }\n.@{fa-css-prefix}-euro:before,\n.@{fa-css-prefix}-eur:before { content: @fa-var-eur; }\n.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; }\n.@{fa-css-prefix}-dollar:before,\n.@{fa-css-prefix}-usd:before { content: @fa-var-usd; }\n.@{fa-css-prefix}-rupee:before,\n.@{fa-css-prefix}-inr:before { content: @fa-var-inr; }\n.@{fa-css-prefix}-cny:before,\n.@{fa-css-prefix}-rmb:before,\n.@{fa-css-prefix}-yen:before,\n.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; }\n.@{fa-css-prefix}-ruble:before,\n.@{fa-css-prefix}-rouble:before,\n.@{fa-css-prefix}-rub:before { content: @fa-var-rub; }\n.@{fa-css-prefix}-won:before,\n.@{fa-css-prefix}-krw:before { content: @fa-var-krw; }\n.@{fa-css-prefix}-bitcoin:before,\n.@{fa-css-prefix}-btc:before { content: @fa-var-btc; }\n.@{fa-css-prefix}-file:before { content: @fa-var-file; }\n.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; }\n.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; }\n.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; }\n.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; }\n.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; }\n.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; }\n.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; }\n.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; }\n.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; }\n.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; }\n.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; }\n.@{fa-css-prefix}-xing:before { content: @fa-var-xing; }\n.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; }\n.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; }\n.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; }\n.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; }\n.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; }\n.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; }\n.@{fa-css-prefix}-adn:before { content: @fa-var-adn; }\n.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; }\n.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; }\n.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; }\n.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; }\n.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; }\n.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; }\n.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; }\n.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; }\n.@{fa-css-prefix}-apple:before { content: @fa-var-apple; }\n.@{fa-css-prefix}-windows:before { content: @fa-var-windows; }\n.@{fa-css-prefix}-android:before { content: @fa-var-android; }\n.@{fa-css-prefix}-linux:before { content: @fa-var-linux; }\n.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; }\n.@{fa-css-prefix}-skype:before { content: @fa-var-skype; }\n.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; }\n.@{fa-css-prefix}-trello:before { content: @fa-var-trello; }\n.@{fa-css-prefix}-female:before { content: @fa-var-female; }\n.@{fa-css-prefix}-male:before { content: @fa-var-male; }\n.@{fa-css-prefix}-gittip:before,\n.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; }\n.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; }\n.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; }\n.@{fa-css-prefix}-archive:before { content: @fa-var-archive; }\n.@{fa-css-prefix}-bug:before { content: @fa-var-bug; }\n.@{fa-css-prefix}-vk:before { content: @fa-var-vk; }\n.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; }\n.@{fa-css-prefix}-renren:before { content: @fa-var-renren; }\n.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; }\n.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; }\n.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; }\n.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; }\n.@{fa-css-prefix}-toggle-left:before,\n.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; }\n.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; }\n.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; }\n.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; }\n.@{fa-css-prefix}-turkish-lira:before,\n.@{fa-css-prefix}-try:before { content: @fa-var-try; }\n.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; }\n.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; }\n.@{fa-css-prefix}-slack:before { content: @fa-var-slack; }\n.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; }\n.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; }\n.@{fa-css-prefix}-openid:before { content: @fa-var-openid; }\n.@{fa-css-prefix}-institution:before,\n.@{fa-css-prefix}-bank:before,\n.@{fa-css-prefix}-university:before { content: @fa-var-university; }\n.@{fa-css-prefix}-mortar-board:before,\n.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; }\n.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; }\n.@{fa-css-prefix}-google:before { content: @fa-var-google; }\n.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; }\n.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; }\n.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; }\n.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; }\n.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; }\n.@{fa-css-prefix}-digg:before { content: @fa-var-digg; }\n.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; }\n.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; }\n.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; }\n.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; }\n.@{fa-css-prefix}-language:before { content: @fa-var-language; }\n.@{fa-css-prefix}-fax:before { content: @fa-var-fax; }\n.@{fa-css-prefix}-building:before { content: @fa-var-building; }\n.@{fa-css-prefix}-child:before { content: @fa-var-child; }\n.@{fa-css-prefix}-paw:before { content: @fa-var-paw; }\n.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; }\n.@{fa-css-prefix}-cube:before { content: @fa-var-cube; }\n.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; }\n.@{fa-css-prefix}-behance:before { content: @fa-var-behance; }\n.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; }\n.@{fa-css-prefix}-steam:before { content: @fa-var-steam; }\n.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; }\n.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; }\n.@{fa-css-prefix}-automobile:before,\n.@{fa-css-prefix}-car:before { content: @fa-var-car; }\n.@{fa-css-prefix}-cab:before,\n.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; }\n.@{fa-css-prefix}-tree:before { content: @fa-var-tree; }\n.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; }\n.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; }\n.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; }\n.@{fa-css-prefix}-database:before { content: @fa-var-database; }\n.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; }\n.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; }\n.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; }\n.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; }\n.@{fa-css-prefix}-file-photo-o:before,\n.@{fa-css-prefix}-file-picture-o:before,\n.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; }\n.@{fa-css-prefix}-file-zip-o:before,\n.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; }\n.@{fa-css-prefix}-file-sound-o:before,\n.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; }\n.@{fa-css-prefix}-file-movie-o:before,\n.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; }\n.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; }\n.@{fa-css-prefix}-vine:before { content: @fa-var-vine; }\n.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; }\n.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; }\n.@{fa-css-prefix}-life-bouy:before,\n.@{fa-css-prefix}-life-buoy:before,\n.@{fa-css-prefix}-life-saver:before,\n.@{fa-css-prefix}-support:before,\n.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; }\n.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; }\n.@{fa-css-prefix}-ra:before,\n.@{fa-css-prefix}-resistance:before,\n.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; }\n.@{fa-css-prefix}-ge:before,\n.@{fa-css-prefix}-empire:before { content: @fa-var-empire; }\n.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; }\n.@{fa-css-prefix}-git:before { content: @fa-var-git; }\n.@{fa-css-prefix}-y-combinator-square:before,\n.@{fa-css-prefix}-yc-square:before,\n.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; }\n.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; }\n.@{fa-css-prefix}-qq:before { content: @fa-var-qq; }\n.@{fa-css-prefix}-wechat:before,\n.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; }\n.@{fa-css-prefix}-send:before,\n.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; }\n.@{fa-css-prefix}-send-o:before,\n.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; }\n.@{fa-css-prefix}-history:before { content: @fa-var-history; }\n.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; }\n.@{fa-css-prefix}-header:before { content: @fa-var-header; }\n.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; }\n.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; }\n.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; }\n.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; }\n.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; }\n.@{fa-css-prefix}-soccer-ball-o:before,\n.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; }\n.@{fa-css-prefix}-tty:before { content: @fa-var-tty; }\n.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; }\n.@{fa-css-prefix}-plug:before { content: @fa-var-plug; }\n.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; }\n.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; }\n.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; }\n.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; }\n.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; }\n.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; }\n.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; }\n.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; }\n.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; }\n.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; }\n.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; }\n.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; }\n.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; }\n.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; }\n.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; }\n.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; }\n.@{fa-css-prefix}-trash:before { content: @fa-var-trash; }\n.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; }\n.@{fa-css-prefix}-at:before { content: @fa-var-at; }\n.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; }\n.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; }\n.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; }\n.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; }\n.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; }\n.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; }\n.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; }\n.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; }\n.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; }\n.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; }\n.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; }\n.@{fa-css-prefix}-bus:before { content: @fa-var-bus; }\n.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; }\n.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; }\n.@{fa-css-prefix}-cc:before { content: @fa-var-cc; }\n.@{fa-css-prefix}-shekel:before,\n.@{fa-css-prefix}-sheqel:before,\n.@{fa-css-prefix}-ils:before { content: @fa-var-ils; }\n.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; }\n.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; }\n.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; }\n.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; }\n.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; }\n.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; }\n.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; }\n.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; }\n.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; }\n.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; }\n.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; }\n.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; }\n.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; }\n.@{fa-css-prefix}-ship:before { content: @fa-var-ship; }\n.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; }\n.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; }\n.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; }\n.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; }\n.@{fa-css-prefix}-venus:before { content: @fa-var-venus; }\n.@{fa-css-prefix}-mars:before { content: @fa-var-mars; }\n.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; }\n.@{fa-css-prefix}-intersex:before,\n.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; }\n.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; }\n.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; }\n.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; }\n.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; }\n.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; }\n.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; }\n.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; }\n.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; }\n.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; }\n.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; }\n.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; }\n.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; }\n.@{fa-css-prefix}-server:before { content: @fa-var-server; }\n.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; }\n.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; }\n.@{fa-css-prefix}-hotel:before,\n.@{fa-css-prefix}-bed:before { content: @fa-var-bed; }\n.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; }\n.@{fa-css-prefix}-train:before { content: @fa-var-train; }\n.@{fa-css-prefix}-subway:before { content: @fa-var-subway; }\n.@{fa-css-prefix}-medium:before { content: @fa-var-medium; }\n.@{fa-css-prefix}-yc:before,\n.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; }\n.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; }\n.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; }\n.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; }\n.@{fa-css-prefix}-battery-4:before,\n.@{fa-css-prefix}-battery:before,\n.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; }\n.@{fa-css-prefix}-battery-3:before,\n.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; }\n.@{fa-css-prefix}-battery-2:before,\n.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; }\n.@{fa-css-prefix}-battery-1:before,\n.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; }\n.@{fa-css-prefix}-battery-0:before,\n.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; }\n.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; }\n.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; }\n.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; }\n.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; }\n.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; }\n.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; }\n.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; }\n.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; }\n.@{fa-css-prefix}-clone:before { content: @fa-var-clone; }\n.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; }\n.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; }\n.@{fa-css-prefix}-hourglass-1:before,\n.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; }\n.@{fa-css-prefix}-hourglass-2:before,\n.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; }\n.@{fa-css-prefix}-hourglass-3:before,\n.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; }\n.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; }\n.@{fa-css-prefix}-hand-grab-o:before,\n.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; }\n.@{fa-css-prefix}-hand-stop-o:before,\n.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; }\n.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; }\n.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; }\n.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; }\n.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; }\n.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; }\n.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; }\n.@{fa-css-prefix}-registered:before { content: @fa-var-registered; }\n.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; }\n.@{fa-css-prefix}-gg:before { content: @fa-var-gg; }\n.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; }\n.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; }\n.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; }\n.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; }\n.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; }\n.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; }\n.@{fa-css-prefix}-safari:before { content: @fa-var-safari; }\n.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; }\n.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; }\n.@{fa-css-prefix}-opera:before { content: @fa-var-opera; }\n.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; }\n.@{fa-css-prefix}-tv:before,\n.@{fa-css-prefix}-television:before { content: @fa-var-television; }\n.@{fa-css-prefix}-contao:before { content: @fa-var-contao; }\n.@{fa-css-prefix}-500px:before { content: @fa-var-500px; }\n.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; }\n.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; }\n.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; }\n.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; }\n.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; }\n.@{fa-css-prefix}-industry:before { content: @fa-var-industry; }\n.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; }\n.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; }\n.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; }\n.@{fa-css-prefix}-map:before { content: @fa-var-map; }\n.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; }\n.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; }\n.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; }\n.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; }\n.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; }\n.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; }\n.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; }\n.@{fa-css-prefix}-edge:before { content: @fa-var-edge; }\n.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; }\n.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; }\n.@{fa-css-prefix}-modx:before { content: @fa-var-modx; }\n.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; }\n.@{fa-css-prefix}-usb:before { content: @fa-var-usb; }\n.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; }\n.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; }\n.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; }\n.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; }\n.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; }\n.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; }\n.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; }\n.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; }\n.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; }\n.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; }\n.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; }\n.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; }\n.@{fa-css-prefix}-percent:before { content: @fa-var-percent; }\n.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; }\n.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; }\n.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; }\n.@{fa-css-prefix}-envira:before { content: @fa-var-envira; }\n.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; }\n.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; }\n.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; }\n.@{fa-css-prefix}-blind:before { content: @fa-var-blind; }\n.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; }\n.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; }\n.@{fa-css-prefix}-braille:before { content: @fa-var-braille; }\n.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; }\n.@{fa-css-prefix}-asl-interpreting:before,\n.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; }\n.@{fa-css-prefix}-deafness:before,\n.@{fa-css-prefix}-hard-of-hearing:before,\n.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; }\n.@{fa-css-prefix}-glide:before { content: @fa-var-glide; }\n.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; }\n.@{fa-css-prefix}-signing:before,\n.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; }\n.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; }\n.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; }\n.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; }\n.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; }\n.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; }\n.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; }\n.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; }\n.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; }\n.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; }\n.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; }\n.@{fa-css-prefix}-google-plus-circle:before,\n.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; }\n.@{fa-css-prefix}-fa:before,\n.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; }\n.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; }\n.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; }\n.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; }\n.@{fa-css-prefix}-linode:before { content: @fa-var-linode; }\n.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; }\n.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; }\n.@{fa-css-prefix}-vcard:before,\n.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; }\n.@{fa-css-prefix}-vcard-o:before,\n.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; }\n.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; }\n.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; }\n.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; }\n.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; }\n.@{fa-css-prefix}-drivers-license:before,\n.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; }\n.@{fa-css-prefix}-drivers-license-o:before,\n.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; }\n.@{fa-css-prefix}-quora:before { content: @fa-var-quora; }\n.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; }\n.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; }\n.@{fa-css-prefix}-thermometer-4:before,\n.@{fa-css-prefix}-thermometer:before,\n.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; }\n.@{fa-css-prefix}-thermometer-3:before,\n.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; }\n.@{fa-css-prefix}-thermometer-2:before,\n.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; }\n.@{fa-css-prefix}-thermometer-1:before,\n.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; }\n.@{fa-css-prefix}-thermometer-0:before,\n.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; }\n.@{fa-css-prefix}-shower:before { content: @fa-var-shower; }\n.@{fa-css-prefix}-bathtub:before,\n.@{fa-css-prefix}-s15:before,\n.@{fa-css-prefix}-bath:before { content: @fa-var-bath; }\n.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; }\n.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; }\n.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; }\n.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; }\n.@{fa-css-prefix}-times-rectangle:before,\n.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; }\n.@{fa-css-prefix}-times-rectangle-o:before,\n.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; }\n.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; }\n.@{fa-css-prefix}-grav:before { content: @fa-var-grav; }\n.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; }\n.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; }\n.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; }\n.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; }\n.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; }\n.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; }\n.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; }\n.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; }\n.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; }\n","// Variables\n// --------------------------\n\n@fa-font-path:        \"../fonts\";\n@fa-font-size-base:   14px;\n@fa-line-height-base: 1;\n//@fa-font-path:        \"//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts\"; // for referencing Bootstrap CDN font files directly\n@fa-css-prefix:       fa;\n@fa-version:          \"4.7.0\";\n@fa-border-color:     #eee;\n@fa-inverse:          #fff;\n@fa-li-width:         (30em / 14);\n\n@fa-var-500px: \"\\f26e\";\n@fa-var-address-book: \"\\f2b9\";\n@fa-var-address-book-o: \"\\f2ba\";\n@fa-var-address-card: \"\\f2bb\";\n@fa-var-address-card-o: \"\\f2bc\";\n@fa-var-adjust: \"\\f042\";\n@fa-var-adn: \"\\f170\";\n@fa-var-align-center: \"\\f037\";\n@fa-var-align-justify: \"\\f039\";\n@fa-var-align-left: \"\\f036\";\n@fa-var-align-right: \"\\f038\";\n@fa-var-amazon: \"\\f270\";\n@fa-var-ambulance: \"\\f0f9\";\n@fa-var-american-sign-language-interpreting: \"\\f2a3\";\n@fa-var-anchor: \"\\f13d\";\n@fa-var-android: \"\\f17b\";\n@fa-var-angellist: \"\\f209\";\n@fa-var-angle-double-down: \"\\f103\";\n@fa-var-angle-double-left: \"\\f100\";\n@fa-var-angle-double-right: \"\\f101\";\n@fa-var-angle-double-up: \"\\f102\";\n@fa-var-angle-down: \"\\f107\";\n@fa-var-angle-left: \"\\f104\";\n@fa-var-angle-right: \"\\f105\";\n@fa-var-angle-up: \"\\f106\";\n@fa-var-apple: \"\\f179\";\n@fa-var-archive: \"\\f187\";\n@fa-var-area-chart: \"\\f1fe\";\n@fa-var-arrow-circle-down: \"\\f0ab\";\n@fa-var-arrow-circle-left: \"\\f0a8\";\n@fa-var-arrow-circle-o-down: \"\\f01a\";\n@fa-var-arrow-circle-o-left: \"\\f190\";\n@fa-var-arrow-circle-o-right: \"\\f18e\";\n@fa-var-arrow-circle-o-up: \"\\f01b\";\n@fa-var-arrow-circle-right: \"\\f0a9\";\n@fa-var-arrow-circle-up: \"\\f0aa\";\n@fa-var-arrow-down: \"\\f063\";\n@fa-var-arrow-left: \"\\f060\";\n@fa-var-arrow-right: \"\\f061\";\n@fa-var-arrow-up: \"\\f062\";\n@fa-var-arrows: \"\\f047\";\n@fa-var-arrows-alt: \"\\f0b2\";\n@fa-var-arrows-h: \"\\f07e\";\n@fa-var-arrows-v: \"\\f07d\";\n@fa-var-asl-interpreting: \"\\f2a3\";\n@fa-var-assistive-listening-systems: \"\\f2a2\";\n@fa-var-asterisk: \"\\f069\";\n@fa-var-at: \"\\f1fa\";\n@fa-var-audio-description: \"\\f29e\";\n@fa-var-automobile: \"\\f1b9\";\n@fa-var-backward: \"\\f04a\";\n@fa-var-balance-scale: \"\\f24e\";\n@fa-var-ban: \"\\f05e\";\n@fa-var-bandcamp: \"\\f2d5\";\n@fa-var-bank: \"\\f19c\";\n@fa-var-bar-chart: \"\\f080\";\n@fa-var-bar-chart-o: \"\\f080\";\n@fa-var-barcode: \"\\f02a\";\n@fa-var-bars: \"\\f0c9\";\n@fa-var-bath: \"\\f2cd\";\n@fa-var-bathtub: \"\\f2cd\";\n@fa-var-battery: \"\\f240\";\n@fa-var-battery-0: \"\\f244\";\n@fa-var-battery-1: \"\\f243\";\n@fa-var-battery-2: \"\\f242\";\n@fa-var-battery-3: \"\\f241\";\n@fa-var-battery-4: \"\\f240\";\n@fa-var-battery-empty: \"\\f244\";\n@fa-var-battery-full: \"\\f240\";\n@fa-var-battery-half: \"\\f242\";\n@fa-var-battery-quarter: \"\\f243\";\n@fa-var-battery-three-quarters: \"\\f241\";\n@fa-var-bed: \"\\f236\";\n@fa-var-beer: \"\\f0fc\";\n@fa-var-behance: \"\\f1b4\";\n@fa-var-behance-square: \"\\f1b5\";\n@fa-var-bell: \"\\f0f3\";\n@fa-var-bell-o: \"\\f0a2\";\n@fa-var-bell-slash: \"\\f1f6\";\n@fa-var-bell-slash-o: \"\\f1f7\";\n@fa-var-bicycle: \"\\f206\";\n@fa-var-binoculars: \"\\f1e5\";\n@fa-var-birthday-cake: \"\\f1fd\";\n@fa-var-bitbucket: \"\\f171\";\n@fa-var-bitbucket-square: \"\\f172\";\n@fa-var-bitcoin: \"\\f15a\";\n@fa-var-black-tie: \"\\f27e\";\n@fa-var-blind: \"\\f29d\";\n@fa-var-bluetooth: \"\\f293\";\n@fa-var-bluetooth-b: \"\\f294\";\n@fa-var-bold: \"\\f032\";\n@fa-var-bolt: \"\\f0e7\";\n@fa-var-bomb: \"\\f1e2\";\n@fa-var-book: \"\\f02d\";\n@fa-var-bookmark: \"\\f02e\";\n@fa-var-bookmark-o: \"\\f097\";\n@fa-var-braille: \"\\f2a1\";\n@fa-var-briefcase: \"\\f0b1\";\n@fa-var-btc: \"\\f15a\";\n@fa-var-bug: \"\\f188\";\n@fa-var-building: \"\\f1ad\";\n@fa-var-building-o: \"\\f0f7\";\n@fa-var-bullhorn: \"\\f0a1\";\n@fa-var-bullseye: \"\\f140\";\n@fa-var-bus: \"\\f207\";\n@fa-var-buysellads: \"\\f20d\";\n@fa-var-cab: \"\\f1ba\";\n@fa-var-calculator: \"\\f1ec\";\n@fa-var-calendar: \"\\f073\";\n@fa-var-calendar-check-o: \"\\f274\";\n@fa-var-calendar-minus-o: \"\\f272\";\n@fa-var-calendar-o: \"\\f133\";\n@fa-var-calendar-plus-o: \"\\f271\";\n@fa-var-calendar-times-o: \"\\f273\";\n@fa-var-camera: \"\\f030\";\n@fa-var-camera-retro: \"\\f083\";\n@fa-var-car: \"\\f1b9\";\n@fa-var-caret-down: \"\\f0d7\";\n@fa-var-caret-left: \"\\f0d9\";\n@fa-var-caret-right: \"\\f0da\";\n@fa-var-caret-square-o-down: \"\\f150\";\n@fa-var-caret-square-o-left: \"\\f191\";\n@fa-var-caret-square-o-right: \"\\f152\";\n@fa-var-caret-square-o-up: \"\\f151\";\n@fa-var-caret-up: \"\\f0d8\";\n@fa-var-cart-arrow-down: \"\\f218\";\n@fa-var-cart-plus: \"\\f217\";\n@fa-var-cc: \"\\f20a\";\n@fa-var-cc-amex: \"\\f1f3\";\n@fa-var-cc-diners-club: \"\\f24c\";\n@fa-var-cc-discover: \"\\f1f2\";\n@fa-var-cc-jcb: \"\\f24b\";\n@fa-var-cc-mastercard: \"\\f1f1\";\n@fa-var-cc-paypal: \"\\f1f4\";\n@fa-var-cc-stripe: \"\\f1f5\";\n@fa-var-cc-visa: \"\\f1f0\";\n@fa-var-certificate: \"\\f0a3\";\n@fa-var-chain: \"\\f0c1\";\n@fa-var-chain-broken: \"\\f127\";\n@fa-var-check: \"\\f00c\";\n@fa-var-check-circle: \"\\f058\";\n@fa-var-check-circle-o: \"\\f05d\";\n@fa-var-check-square: \"\\f14a\";\n@fa-var-check-square-o: \"\\f046\";\n@fa-var-chevron-circle-down: \"\\f13a\";\n@fa-var-chevron-circle-left: \"\\f137\";\n@fa-var-chevron-circle-right: \"\\f138\";\n@fa-var-chevron-circle-up: \"\\f139\";\n@fa-var-chevron-down: \"\\f078\";\n@fa-var-chevron-left: \"\\f053\";\n@fa-var-chevron-right: \"\\f054\";\n@fa-var-chevron-up: \"\\f077\";\n@fa-var-child: \"\\f1ae\";\n@fa-var-chrome: \"\\f268\";\n@fa-var-circle: \"\\f111\";\n@fa-var-circle-o: \"\\f10c\";\n@fa-var-circle-o-notch: \"\\f1ce\";\n@fa-var-circle-thin: \"\\f1db\";\n@fa-var-clipboard: \"\\f0ea\";\n@fa-var-clock-o: \"\\f017\";\n@fa-var-clone: \"\\f24d\";\n@fa-var-close: \"\\f00d\";\n@fa-var-cloud: \"\\f0c2\";\n@fa-var-cloud-download: \"\\f0ed\";\n@fa-var-cloud-upload: \"\\f0ee\";\n@fa-var-cny: \"\\f157\";\n@fa-var-code: \"\\f121\";\n@fa-var-code-fork: \"\\f126\";\n@fa-var-codepen: \"\\f1cb\";\n@fa-var-codiepie: \"\\f284\";\n@fa-var-coffee: \"\\f0f4\";\n@fa-var-cog: \"\\f013\";\n@fa-var-cogs: \"\\f085\";\n@fa-var-columns: \"\\f0db\";\n@fa-var-comment: \"\\f075\";\n@fa-var-comment-o: \"\\f0e5\";\n@fa-var-commenting: \"\\f27a\";\n@fa-var-commenting-o: \"\\f27b\";\n@fa-var-comments: \"\\f086\";\n@fa-var-comments-o: \"\\f0e6\";\n@fa-var-compass: \"\\f14e\";\n@fa-var-compress: \"\\f066\";\n@fa-var-connectdevelop: \"\\f20e\";\n@fa-var-contao: \"\\f26d\";\n@fa-var-copy: \"\\f0c5\";\n@fa-var-copyright: \"\\f1f9\";\n@fa-var-creative-commons: \"\\f25e\";\n@fa-var-credit-card: \"\\f09d\";\n@fa-var-credit-card-alt: \"\\f283\";\n@fa-var-crop: \"\\f125\";\n@fa-var-crosshairs: \"\\f05b\";\n@fa-var-css3: \"\\f13c\";\n@fa-var-cube: \"\\f1b2\";\n@fa-var-cubes: \"\\f1b3\";\n@fa-var-cut: \"\\f0c4\";\n@fa-var-cutlery: \"\\f0f5\";\n@fa-var-dashboard: \"\\f0e4\";\n@fa-var-dashcube: \"\\f210\";\n@fa-var-database: \"\\f1c0\";\n@fa-var-deaf: \"\\f2a4\";\n@fa-var-deafness: \"\\f2a4\";\n@fa-var-dedent: \"\\f03b\";\n@fa-var-delicious: \"\\f1a5\";\n@fa-var-desktop: \"\\f108\";\n@fa-var-deviantart: \"\\f1bd\";\n@fa-var-diamond: \"\\f219\";\n@fa-var-digg: \"\\f1a6\";\n@fa-var-dollar: \"\\f155\";\n@fa-var-dot-circle-o: \"\\f192\";\n@fa-var-download: \"\\f019\";\n@fa-var-dribbble: \"\\f17d\";\n@fa-var-drivers-license: \"\\f2c2\";\n@fa-var-drivers-license-o: \"\\f2c3\";\n@fa-var-dropbox: \"\\f16b\";\n@fa-var-drupal: \"\\f1a9\";\n@fa-var-edge: \"\\f282\";\n@fa-var-edit: \"\\f044\";\n@fa-var-eercast: \"\\f2da\";\n@fa-var-eject: \"\\f052\";\n@fa-var-ellipsis-h: \"\\f141\";\n@fa-var-ellipsis-v: \"\\f142\";\n@fa-var-empire: \"\\f1d1\";\n@fa-var-envelope: \"\\f0e0\";\n@fa-var-envelope-o: \"\\f003\";\n@fa-var-envelope-open: \"\\f2b6\";\n@fa-var-envelope-open-o: \"\\f2b7\";\n@fa-var-envelope-square: \"\\f199\";\n@fa-var-envira: \"\\f299\";\n@fa-var-eraser: \"\\f12d\";\n@fa-var-etsy: \"\\f2d7\";\n@fa-var-eur: \"\\f153\";\n@fa-var-euro: \"\\f153\";\n@fa-var-exchange: \"\\f0ec\";\n@fa-var-exclamation: \"\\f12a\";\n@fa-var-exclamation-circle: \"\\f06a\";\n@fa-var-exclamation-triangle: \"\\f071\";\n@fa-var-expand: \"\\f065\";\n@fa-var-expeditedssl: \"\\f23e\";\n@fa-var-external-link: \"\\f08e\";\n@fa-var-external-link-square: \"\\f14c\";\n@fa-var-eye: \"\\f06e\";\n@fa-var-eye-slash: \"\\f070\";\n@fa-var-eyedropper: \"\\f1fb\";\n@fa-var-fa: \"\\f2b4\";\n@fa-var-facebook: \"\\f09a\";\n@fa-var-facebook-f: \"\\f09a\";\n@fa-var-facebook-official: \"\\f230\";\n@fa-var-facebook-square: \"\\f082\";\n@fa-var-fast-backward: \"\\f049\";\n@fa-var-fast-forward: \"\\f050\";\n@fa-var-fax: \"\\f1ac\";\n@fa-var-feed: \"\\f09e\";\n@fa-var-female: \"\\f182\";\n@fa-var-fighter-jet: \"\\f0fb\";\n@fa-var-file: \"\\f15b\";\n@fa-var-file-archive-o: \"\\f1c6\";\n@fa-var-file-audio-o: \"\\f1c7\";\n@fa-var-file-code-o: \"\\f1c9\";\n@fa-var-file-excel-o: \"\\f1c3\";\n@fa-var-file-image-o: \"\\f1c5\";\n@fa-var-file-movie-o: \"\\f1c8\";\n@fa-var-file-o: \"\\f016\";\n@fa-var-file-pdf-o: \"\\f1c1\";\n@fa-var-file-photo-o: \"\\f1c5\";\n@fa-var-file-picture-o: \"\\f1c5\";\n@fa-var-file-powerpoint-o: \"\\f1c4\";\n@fa-var-file-sound-o: \"\\f1c7\";\n@fa-var-file-text: \"\\f15c\";\n@fa-var-file-text-o: \"\\f0f6\";\n@fa-var-file-video-o: \"\\f1c8\";\n@fa-var-file-word-o: \"\\f1c2\";\n@fa-var-file-zip-o: \"\\f1c6\";\n@fa-var-files-o: \"\\f0c5\";\n@fa-var-film: \"\\f008\";\n@fa-var-filter: \"\\f0b0\";\n@fa-var-fire: \"\\f06d\";\n@fa-var-fire-extinguisher: \"\\f134\";\n@fa-var-firefox: \"\\f269\";\n@fa-var-first-order: \"\\f2b0\";\n@fa-var-flag: \"\\f024\";\n@fa-var-flag-checkered: \"\\f11e\";\n@fa-var-flag-o: \"\\f11d\";\n@fa-var-flash: \"\\f0e7\";\n@fa-var-flask: \"\\f0c3\";\n@fa-var-flickr: \"\\f16e\";\n@fa-var-floppy-o: \"\\f0c7\";\n@fa-var-folder: \"\\f07b\";\n@fa-var-folder-o: \"\\f114\";\n@fa-var-folder-open: \"\\f07c\";\n@fa-var-folder-open-o: \"\\f115\";\n@fa-var-font: \"\\f031\";\n@fa-var-font-awesome: \"\\f2b4\";\n@fa-var-fonticons: \"\\f280\";\n@fa-var-fort-awesome: \"\\f286\";\n@fa-var-forumbee: \"\\f211\";\n@fa-var-forward: \"\\f04e\";\n@fa-var-foursquare: \"\\f180\";\n@fa-var-free-code-camp: \"\\f2c5\";\n@fa-var-frown-o: \"\\f119\";\n@fa-var-futbol-o: \"\\f1e3\";\n@fa-var-gamepad: \"\\f11b\";\n@fa-var-gavel: \"\\f0e3\";\n@fa-var-gbp: \"\\f154\";\n@fa-var-ge: \"\\f1d1\";\n@fa-var-gear: \"\\f013\";\n@fa-var-gears: \"\\f085\";\n@fa-var-genderless: \"\\f22d\";\n@fa-var-get-pocket: \"\\f265\";\n@fa-var-gg: \"\\f260\";\n@fa-var-gg-circle: \"\\f261\";\n@fa-var-gift: \"\\f06b\";\n@fa-var-git: \"\\f1d3\";\n@fa-var-git-square: \"\\f1d2\";\n@fa-var-github: \"\\f09b\";\n@fa-var-github-alt: \"\\f113\";\n@fa-var-github-square: \"\\f092\";\n@fa-var-gitlab: \"\\f296\";\n@fa-var-gittip: \"\\f184\";\n@fa-var-glass: \"\\f000\";\n@fa-var-glide: \"\\f2a5\";\n@fa-var-glide-g: \"\\f2a6\";\n@fa-var-globe: \"\\f0ac\";\n@fa-var-google: \"\\f1a0\";\n@fa-var-google-plus: \"\\f0d5\";\n@fa-var-google-plus-circle: \"\\f2b3\";\n@fa-var-google-plus-official: \"\\f2b3\";\n@fa-var-google-plus-square: \"\\f0d4\";\n@fa-var-google-wallet: \"\\f1ee\";\n@fa-var-graduation-cap: \"\\f19d\";\n@fa-var-gratipay: \"\\f184\";\n@fa-var-grav: \"\\f2d6\";\n@fa-var-group: \"\\f0c0\";\n@fa-var-h-square: \"\\f0fd\";\n@fa-var-hacker-news: \"\\f1d4\";\n@fa-var-hand-grab-o: \"\\f255\";\n@fa-var-hand-lizard-o: \"\\f258\";\n@fa-var-hand-o-down: \"\\f0a7\";\n@fa-var-hand-o-left: \"\\f0a5\";\n@fa-var-hand-o-right: \"\\f0a4\";\n@fa-var-hand-o-up: \"\\f0a6\";\n@fa-var-hand-paper-o: \"\\f256\";\n@fa-var-hand-peace-o: \"\\f25b\";\n@fa-var-hand-pointer-o: \"\\f25a\";\n@fa-var-hand-rock-o: \"\\f255\";\n@fa-var-hand-scissors-o: \"\\f257\";\n@fa-var-hand-spock-o: \"\\f259\";\n@fa-var-hand-stop-o: \"\\f256\";\n@fa-var-handshake-o: \"\\f2b5\";\n@fa-var-hard-of-hearing: \"\\f2a4\";\n@fa-var-hashtag: \"\\f292\";\n@fa-var-hdd-o: \"\\f0a0\";\n@fa-var-header: \"\\f1dc\";\n@fa-var-headphones: \"\\f025\";\n@fa-var-heart: \"\\f004\";\n@fa-var-heart-o: \"\\f08a\";\n@fa-var-heartbeat: \"\\f21e\";\n@fa-var-history: \"\\f1da\";\n@fa-var-home: \"\\f015\";\n@fa-var-hospital-o: \"\\f0f8\";\n@fa-var-hotel: \"\\f236\";\n@fa-var-hourglass: \"\\f254\";\n@fa-var-hourglass-1: \"\\f251\";\n@fa-var-hourglass-2: \"\\f252\";\n@fa-var-hourglass-3: \"\\f253\";\n@fa-var-hourglass-end: \"\\f253\";\n@fa-var-hourglass-half: \"\\f252\";\n@fa-var-hourglass-o: \"\\f250\";\n@fa-var-hourglass-start: \"\\f251\";\n@fa-var-houzz: \"\\f27c\";\n@fa-var-html5: \"\\f13b\";\n@fa-var-i-cursor: \"\\f246\";\n@fa-var-id-badge: \"\\f2c1\";\n@fa-var-id-card: \"\\f2c2\";\n@fa-var-id-card-o: \"\\f2c3\";\n@fa-var-ils: \"\\f20b\";\n@fa-var-image: \"\\f03e\";\n@fa-var-imdb: \"\\f2d8\";\n@fa-var-inbox: \"\\f01c\";\n@fa-var-indent: \"\\f03c\";\n@fa-var-industry: \"\\f275\";\n@fa-var-info: \"\\f129\";\n@fa-var-info-circle: \"\\f05a\";\n@fa-var-inr: \"\\f156\";\n@fa-var-instagram: \"\\f16d\";\n@fa-var-institution: \"\\f19c\";\n@fa-var-internet-explorer: \"\\f26b\";\n@fa-var-intersex: \"\\f224\";\n@fa-var-ioxhost: \"\\f208\";\n@fa-var-italic: \"\\f033\";\n@fa-var-joomla: \"\\f1aa\";\n@fa-var-jpy: \"\\f157\";\n@fa-var-jsfiddle: \"\\f1cc\";\n@fa-var-key: \"\\f084\";\n@fa-var-keyboard-o: \"\\f11c\";\n@fa-var-krw: \"\\f159\";\n@fa-var-language: \"\\f1ab\";\n@fa-var-laptop: \"\\f109\";\n@fa-var-lastfm: \"\\f202\";\n@fa-var-lastfm-square: \"\\f203\";\n@fa-var-leaf: \"\\f06c\";\n@fa-var-leanpub: \"\\f212\";\n@fa-var-legal: \"\\f0e3\";\n@fa-var-lemon-o: \"\\f094\";\n@fa-var-level-down: \"\\f149\";\n@fa-var-level-up: \"\\f148\";\n@fa-var-life-bouy: \"\\f1cd\";\n@fa-var-life-buoy: \"\\f1cd\";\n@fa-var-life-ring: \"\\f1cd\";\n@fa-var-life-saver: \"\\f1cd\";\n@fa-var-lightbulb-o: \"\\f0eb\";\n@fa-var-line-chart: \"\\f201\";\n@fa-var-link: \"\\f0c1\";\n@fa-var-linkedin: \"\\f0e1\";\n@fa-var-linkedin-square: \"\\f08c\";\n@fa-var-linode: \"\\f2b8\";\n@fa-var-linux: \"\\f17c\";\n@fa-var-list: \"\\f03a\";\n@fa-var-list-alt: \"\\f022\";\n@fa-var-list-ol: \"\\f0cb\";\n@fa-var-list-ul: \"\\f0ca\";\n@fa-var-location-arrow: \"\\f124\";\n@fa-var-lock: \"\\f023\";\n@fa-var-long-arrow-down: \"\\f175\";\n@fa-var-long-arrow-left: \"\\f177\";\n@fa-var-long-arrow-right: \"\\f178\";\n@fa-var-long-arrow-up: \"\\f176\";\n@fa-var-low-vision: \"\\f2a8\";\n@fa-var-magic: \"\\f0d0\";\n@fa-var-magnet: \"\\f076\";\n@fa-var-mail-forward: \"\\f064\";\n@fa-var-mail-reply: \"\\f112\";\n@fa-var-mail-reply-all: \"\\f122\";\n@fa-var-male: \"\\f183\";\n@fa-var-map: \"\\f279\";\n@fa-var-map-marker: \"\\f041\";\n@fa-var-map-o: \"\\f278\";\n@fa-var-map-pin: \"\\f276\";\n@fa-var-map-signs: \"\\f277\";\n@fa-var-mars: \"\\f222\";\n@fa-var-mars-double: \"\\f227\";\n@fa-var-mars-stroke: \"\\f229\";\n@fa-var-mars-stroke-h: \"\\f22b\";\n@fa-var-mars-stroke-v: \"\\f22a\";\n@fa-var-maxcdn: \"\\f136\";\n@fa-var-meanpath: \"\\f20c\";\n@fa-var-medium: \"\\f23a\";\n@fa-var-medkit: \"\\f0fa\";\n@fa-var-meetup: \"\\f2e0\";\n@fa-var-meh-o: \"\\f11a\";\n@fa-var-mercury: \"\\f223\";\n@fa-var-microchip: \"\\f2db\";\n@fa-var-microphone: \"\\f130\";\n@fa-var-microphone-slash: \"\\f131\";\n@fa-var-minus: \"\\f068\";\n@fa-var-minus-circle: \"\\f056\";\n@fa-var-minus-square: \"\\f146\";\n@fa-var-minus-square-o: \"\\f147\";\n@fa-var-mixcloud: \"\\f289\";\n@fa-var-mobile: \"\\f10b\";\n@fa-var-mobile-phone: \"\\f10b\";\n@fa-var-modx: \"\\f285\";\n@fa-var-money: \"\\f0d6\";\n@fa-var-moon-o: \"\\f186\";\n@fa-var-mortar-board: \"\\f19d\";\n@fa-var-motorcycle: \"\\f21c\";\n@fa-var-mouse-pointer: \"\\f245\";\n@fa-var-music: \"\\f001\";\n@fa-var-navicon: \"\\f0c9\";\n@fa-var-neuter: \"\\f22c\";\n@fa-var-newspaper-o: \"\\f1ea\";\n@fa-var-object-group: \"\\f247\";\n@fa-var-object-ungroup: \"\\f248\";\n@fa-var-odnoklassniki: \"\\f263\";\n@fa-var-odnoklassniki-square: \"\\f264\";\n@fa-var-opencart: \"\\f23d\";\n@fa-var-openid: \"\\f19b\";\n@fa-var-opera: \"\\f26a\";\n@fa-var-optin-monster: \"\\f23c\";\n@fa-var-outdent: \"\\f03b\";\n@fa-var-pagelines: \"\\f18c\";\n@fa-var-paint-brush: \"\\f1fc\";\n@fa-var-paper-plane: \"\\f1d8\";\n@fa-var-paper-plane-o: \"\\f1d9\";\n@fa-var-paperclip: \"\\f0c6\";\n@fa-var-paragraph: \"\\f1dd\";\n@fa-var-paste: \"\\f0ea\";\n@fa-var-pause: \"\\f04c\";\n@fa-var-pause-circle: \"\\f28b\";\n@fa-var-pause-circle-o: \"\\f28c\";\n@fa-var-paw: \"\\f1b0\";\n@fa-var-paypal: \"\\f1ed\";\n@fa-var-pencil: \"\\f040\";\n@fa-var-pencil-square: \"\\f14b\";\n@fa-var-pencil-square-o: \"\\f044\";\n@fa-var-percent: \"\\f295\";\n@fa-var-phone: \"\\f095\";\n@fa-var-phone-square: \"\\f098\";\n@fa-var-photo: \"\\f03e\";\n@fa-var-picture-o: \"\\f03e\";\n@fa-var-pie-chart: \"\\f200\";\n@fa-var-pied-piper: \"\\f2ae\";\n@fa-var-pied-piper-alt: \"\\f1a8\";\n@fa-var-pied-piper-pp: \"\\f1a7\";\n@fa-var-pinterest: \"\\f0d2\";\n@fa-var-pinterest-p: \"\\f231\";\n@fa-var-pinterest-square: \"\\f0d3\";\n@fa-var-plane: \"\\f072\";\n@fa-var-play: \"\\f04b\";\n@fa-var-play-circle: \"\\f144\";\n@fa-var-play-circle-o: \"\\f01d\";\n@fa-var-plug: \"\\f1e6\";\n@fa-var-plus: \"\\f067\";\n@fa-var-plus-circle: \"\\f055\";\n@fa-var-plus-square: \"\\f0fe\";\n@fa-var-plus-square-o: \"\\f196\";\n@fa-var-podcast: \"\\f2ce\";\n@fa-var-power-off: \"\\f011\";\n@fa-var-print: \"\\f02f\";\n@fa-var-product-hunt: \"\\f288\";\n@fa-var-puzzle-piece: \"\\f12e\";\n@fa-var-qq: \"\\f1d6\";\n@fa-var-qrcode: \"\\f029\";\n@fa-var-question: \"\\f128\";\n@fa-var-question-circle: \"\\f059\";\n@fa-var-question-circle-o: \"\\f29c\";\n@fa-var-quora: \"\\f2c4\";\n@fa-var-quote-left: \"\\f10d\";\n@fa-var-quote-right: \"\\f10e\";\n@fa-var-ra: \"\\f1d0\";\n@fa-var-random: \"\\f074\";\n@fa-var-ravelry: \"\\f2d9\";\n@fa-var-rebel: \"\\f1d0\";\n@fa-var-recycle: \"\\f1b8\";\n@fa-var-reddit: \"\\f1a1\";\n@fa-var-reddit-alien: \"\\f281\";\n@fa-var-reddit-square: \"\\f1a2\";\n@fa-var-refresh: \"\\f021\";\n@fa-var-registered: \"\\f25d\";\n@fa-var-remove: \"\\f00d\";\n@fa-var-renren: \"\\f18b\";\n@fa-var-reorder: \"\\f0c9\";\n@fa-var-repeat: \"\\f01e\";\n@fa-var-reply: \"\\f112\";\n@fa-var-reply-all: \"\\f122\";\n@fa-var-resistance: \"\\f1d0\";\n@fa-var-retweet: \"\\f079\";\n@fa-var-rmb: \"\\f157\";\n@fa-var-road: \"\\f018\";\n@fa-var-rocket: \"\\f135\";\n@fa-var-rotate-left: \"\\f0e2\";\n@fa-var-rotate-right: \"\\f01e\";\n@fa-var-rouble: \"\\f158\";\n@fa-var-rss: \"\\f09e\";\n@fa-var-rss-square: \"\\f143\";\n@fa-var-rub: \"\\f158\";\n@fa-var-ruble: \"\\f158\";\n@fa-var-rupee: \"\\f156\";\n@fa-var-s15: \"\\f2cd\";\n@fa-var-safari: \"\\f267\";\n@fa-var-save: \"\\f0c7\";\n@fa-var-scissors: \"\\f0c4\";\n@fa-var-scribd: \"\\f28a\";\n@fa-var-search: \"\\f002\";\n@fa-var-search-minus: \"\\f010\";\n@fa-var-search-plus: \"\\f00e\";\n@fa-var-sellsy: \"\\f213\";\n@fa-var-send: \"\\f1d8\";\n@fa-var-send-o: \"\\f1d9\";\n@fa-var-server: \"\\f233\";\n@fa-var-share: \"\\f064\";\n@fa-var-share-alt: \"\\f1e0\";\n@fa-var-share-alt-square: \"\\f1e1\";\n@fa-var-share-square: \"\\f14d\";\n@fa-var-share-square-o: \"\\f045\";\n@fa-var-shekel: \"\\f20b\";\n@fa-var-sheqel: \"\\f20b\";\n@fa-var-shield: \"\\f132\";\n@fa-var-ship: \"\\f21a\";\n@fa-var-shirtsinbulk: \"\\f214\";\n@fa-var-shopping-bag: \"\\f290\";\n@fa-var-shopping-basket: \"\\f291\";\n@fa-var-shopping-cart: \"\\f07a\";\n@fa-var-shower: \"\\f2cc\";\n@fa-var-sign-in: \"\\f090\";\n@fa-var-sign-language: \"\\f2a7\";\n@fa-var-sign-out: \"\\f08b\";\n@fa-var-signal: \"\\f012\";\n@fa-var-signing: \"\\f2a7\";\n@fa-var-simplybuilt: \"\\f215\";\n@fa-var-sitemap: \"\\f0e8\";\n@fa-var-skyatlas: \"\\f216\";\n@fa-var-skype: \"\\f17e\";\n@fa-var-slack: \"\\f198\";\n@fa-var-sliders: \"\\f1de\";\n@fa-var-slideshare: \"\\f1e7\";\n@fa-var-smile-o: \"\\f118\";\n@fa-var-snapchat: \"\\f2ab\";\n@fa-var-snapchat-ghost: \"\\f2ac\";\n@fa-var-snapchat-square: \"\\f2ad\";\n@fa-var-snowflake-o: \"\\f2dc\";\n@fa-var-soccer-ball-o: \"\\f1e3\";\n@fa-var-sort: \"\\f0dc\";\n@fa-var-sort-alpha-asc: \"\\f15d\";\n@fa-var-sort-alpha-desc: \"\\f15e\";\n@fa-var-sort-amount-asc: \"\\f160\";\n@fa-var-sort-amount-desc: \"\\f161\";\n@fa-var-sort-asc: \"\\f0de\";\n@fa-var-sort-desc: \"\\f0dd\";\n@fa-var-sort-down: \"\\f0dd\";\n@fa-var-sort-numeric-asc: \"\\f162\";\n@fa-var-sort-numeric-desc: \"\\f163\";\n@fa-var-sort-up: \"\\f0de\";\n@fa-var-soundcloud: \"\\f1be\";\n@fa-var-space-shuttle: \"\\f197\";\n@fa-var-spinner: \"\\f110\";\n@fa-var-spoon: \"\\f1b1\";\n@fa-var-spotify: \"\\f1bc\";\n@fa-var-square: \"\\f0c8\";\n@fa-var-square-o: \"\\f096\";\n@fa-var-stack-exchange: \"\\f18d\";\n@fa-var-stack-overflow: \"\\f16c\";\n@fa-var-star: \"\\f005\";\n@fa-var-star-half: \"\\f089\";\n@fa-var-star-half-empty: \"\\f123\";\n@fa-var-star-half-full: \"\\f123\";\n@fa-var-star-half-o: \"\\f123\";\n@fa-var-star-o: \"\\f006\";\n@fa-var-steam: \"\\f1b6\";\n@fa-var-steam-square: \"\\f1b7\";\n@fa-var-step-backward: \"\\f048\";\n@fa-var-step-forward: \"\\f051\";\n@fa-var-stethoscope: \"\\f0f1\";\n@fa-var-sticky-note: \"\\f249\";\n@fa-var-sticky-note-o: \"\\f24a\";\n@fa-var-stop: \"\\f04d\";\n@fa-var-stop-circle: \"\\f28d\";\n@fa-var-stop-circle-o: \"\\f28e\";\n@fa-var-street-view: \"\\f21d\";\n@fa-var-strikethrough: \"\\f0cc\";\n@fa-var-stumbleupon: \"\\f1a4\";\n@fa-var-stumbleupon-circle: \"\\f1a3\";\n@fa-var-subscript: \"\\f12c\";\n@fa-var-subway: \"\\f239\";\n@fa-var-suitcase: \"\\f0f2\";\n@fa-var-sun-o: \"\\f185\";\n@fa-var-superpowers: \"\\f2dd\";\n@fa-var-superscript: \"\\f12b\";\n@fa-var-support: \"\\f1cd\";\n@fa-var-table: \"\\f0ce\";\n@fa-var-tablet: \"\\f10a\";\n@fa-var-tachometer: \"\\f0e4\";\n@fa-var-tag: \"\\f02b\";\n@fa-var-tags: \"\\f02c\";\n@fa-var-tasks: \"\\f0ae\";\n@fa-var-taxi: \"\\f1ba\";\n@fa-var-telegram: \"\\f2c6\";\n@fa-var-television: \"\\f26c\";\n@fa-var-tencent-weibo: \"\\f1d5\";\n@fa-var-terminal: \"\\f120\";\n@fa-var-text-height: \"\\f034\";\n@fa-var-text-width: \"\\f035\";\n@fa-var-th: \"\\f00a\";\n@fa-var-th-large: \"\\f009\";\n@fa-var-th-list: \"\\f00b\";\n@fa-var-themeisle: \"\\f2b2\";\n@fa-var-thermometer: \"\\f2c7\";\n@fa-var-thermometer-0: \"\\f2cb\";\n@fa-var-thermometer-1: \"\\f2ca\";\n@fa-var-thermometer-2: \"\\f2c9\";\n@fa-var-thermometer-3: \"\\f2c8\";\n@fa-var-thermometer-4: \"\\f2c7\";\n@fa-var-thermometer-empty: \"\\f2cb\";\n@fa-var-thermometer-full: \"\\f2c7\";\n@fa-var-thermometer-half: \"\\f2c9\";\n@fa-var-thermometer-quarter: \"\\f2ca\";\n@fa-var-thermometer-three-quarters: \"\\f2c8\";\n@fa-var-thumb-tack: \"\\f08d\";\n@fa-var-thumbs-down: \"\\f165\";\n@fa-var-thumbs-o-down: \"\\f088\";\n@fa-var-thumbs-o-up: \"\\f087\";\n@fa-var-thumbs-up: \"\\f164\";\n@fa-var-ticket: \"\\f145\";\n@fa-var-times: \"\\f00d\";\n@fa-var-times-circle: \"\\f057\";\n@fa-var-times-circle-o: \"\\f05c\";\n@fa-var-times-rectangle: \"\\f2d3\";\n@fa-var-times-rectangle-o: \"\\f2d4\";\n@fa-var-tint: \"\\f043\";\n@fa-var-toggle-down: \"\\f150\";\n@fa-var-toggle-left: \"\\f191\";\n@fa-var-toggle-off: \"\\f204\";\n@fa-var-toggle-on: \"\\f205\";\n@fa-var-toggle-right: \"\\f152\";\n@fa-var-toggle-up: \"\\f151\";\n@fa-var-trademark: \"\\f25c\";\n@fa-var-train: \"\\f238\";\n@fa-var-transgender: \"\\f224\";\n@fa-var-transgender-alt: \"\\f225\";\n@fa-var-trash: \"\\f1f8\";\n@fa-var-trash-o: \"\\f014\";\n@fa-var-tree: \"\\f1bb\";\n@fa-var-trello: \"\\f181\";\n@fa-var-tripadvisor: \"\\f262\";\n@fa-var-trophy: \"\\f091\";\n@fa-var-truck: \"\\f0d1\";\n@fa-var-try: \"\\f195\";\n@fa-var-tty: \"\\f1e4\";\n@fa-var-tumblr: \"\\f173\";\n@fa-var-tumblr-square: \"\\f174\";\n@fa-var-turkish-lira: \"\\f195\";\n@fa-var-tv: \"\\f26c\";\n@fa-var-twitch: \"\\f1e8\";\n@fa-var-twitter: \"\\f099\";\n@fa-var-twitter-square: \"\\f081\";\n@fa-var-umbrella: \"\\f0e9\";\n@fa-var-underline: \"\\f0cd\";\n@fa-var-undo: \"\\f0e2\";\n@fa-var-universal-access: \"\\f29a\";\n@fa-var-university: \"\\f19c\";\n@fa-var-unlink: \"\\f127\";\n@fa-var-unlock: \"\\f09c\";\n@fa-var-unlock-alt: \"\\f13e\";\n@fa-var-unsorted: \"\\f0dc\";\n@fa-var-upload: \"\\f093\";\n@fa-var-usb: \"\\f287\";\n@fa-var-usd: \"\\f155\";\n@fa-var-user: \"\\f007\";\n@fa-var-user-circle: \"\\f2bd\";\n@fa-var-user-circle-o: \"\\f2be\";\n@fa-var-user-md: \"\\f0f0\";\n@fa-var-user-o: \"\\f2c0\";\n@fa-var-user-plus: \"\\f234\";\n@fa-var-user-secret: \"\\f21b\";\n@fa-var-user-times: \"\\f235\";\n@fa-var-users: \"\\f0c0\";\n@fa-var-vcard: \"\\f2bb\";\n@fa-var-vcard-o: \"\\f2bc\";\n@fa-var-venus: \"\\f221\";\n@fa-var-venus-double: \"\\f226\";\n@fa-var-venus-mars: \"\\f228\";\n@fa-var-viacoin: \"\\f237\";\n@fa-var-viadeo: \"\\f2a9\";\n@fa-var-viadeo-square: \"\\f2aa\";\n@fa-var-video-camera: \"\\f03d\";\n@fa-var-vimeo: \"\\f27d\";\n@fa-var-vimeo-square: \"\\f194\";\n@fa-var-vine: \"\\f1ca\";\n@fa-var-vk: \"\\f189\";\n@fa-var-volume-control-phone: \"\\f2a0\";\n@fa-var-volume-down: \"\\f027\";\n@fa-var-volume-off: \"\\f026\";\n@fa-var-volume-up: \"\\f028\";\n@fa-var-warning: \"\\f071\";\n@fa-var-wechat: \"\\f1d7\";\n@fa-var-weibo: \"\\f18a\";\n@fa-var-weixin: \"\\f1d7\";\n@fa-var-whatsapp: \"\\f232\";\n@fa-var-wheelchair: \"\\f193\";\n@fa-var-wheelchair-alt: \"\\f29b\";\n@fa-var-wifi: \"\\f1eb\";\n@fa-var-wikipedia-w: \"\\f266\";\n@fa-var-window-close: \"\\f2d3\";\n@fa-var-window-close-o: \"\\f2d4\";\n@fa-var-window-maximize: \"\\f2d0\";\n@fa-var-window-minimize: \"\\f2d1\";\n@fa-var-window-restore: \"\\f2d2\";\n@fa-var-windows: \"\\f17a\";\n@fa-var-won: \"\\f159\";\n@fa-var-wordpress: \"\\f19a\";\n@fa-var-wpbeginner: \"\\f297\";\n@fa-var-wpexplorer: \"\\f2de\";\n@fa-var-wpforms: \"\\f298\";\n@fa-var-wrench: \"\\f0ad\";\n@fa-var-xing: \"\\f168\";\n@fa-var-xing-square: \"\\f169\";\n@fa-var-y-combinator: \"\\f23b\";\n@fa-var-y-combinator-square: \"\\f1d4\";\n@fa-var-yahoo: \"\\f19e\";\n@fa-var-yc: \"\\f23b\";\n@fa-var-yc-square: \"\\f1d4\";\n@fa-var-yelp: \"\\f1e9\";\n@fa-var-yen: \"\\f157\";\n@fa-var-yoast: \"\\f2b1\";\n@fa-var-youtube: \"\\f167\";\n@fa-var-youtube-play: \"\\f16a\";\n@fa-var-youtube-square: \"\\f166\";\n\n","// Screen Readers\n// -------------------------\n\n.sr-only { .sr-only(); }\n.sr-only-focusable { .sr-only-focusable(); }\n","//\n// Patternfly Mixins\n// --------------------------------------------------\n// PatternFly-specific mixins\n\n// Patternfly button variants.\n.button-variant(@color; @background; @background-image-start; @background-image-stop; @border) {\n  background-color: @background;\n  #gradient > .vertical(@background-image-start, @background-image-stop);\n  border-color: @border;\n  color: @color;\n\n  &:hover,\n  &:focus,\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-color: @background;\n    background-image: none;\n    border-color: @border;\n    color: @color;\n  }\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-image: none;\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: darken(@background, 5%);\n          border-color: darken(@border, 7%);\n    }\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &,\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      background-color: @background;\n      border-color: @border;\n    }\n  }\n}\n\n// SASS CONVERSION FIX.\n// Allows inclusion of sr-only rules in nested media queries where @extends .sr-only\n// will not work.\n.sr-only-pf() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n\n.tab-indicator(@background: @gray-light-pf, @left: 15px, @right: 15px) {\n  &:before {\n    background: @background;\n    bottom: -1px;\n    content: \"\";\n    display: block;\n    height: 2px;\n    left: @left;\n    position: absolute;\n    right: @right;\n  }\n}\n\n// Ellipse overflow text\n.text-overflow-pf {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  word-wrap: normal;\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n.alert {\n  border-width: 1px;\n  padding-left: 47px;\n  padding-right: (@alert-padding + 3);\n  position: relative;\n  word-wrap: break-word;\n  .alert-link {\n    color: @link-color;\n    &:hover {\n      color: @link-hover-color;\n    }\n  }\n  > .btn.pull-right {\n    margin-top: -3px;\n  }\n  > .pficon {\n    font-size: 22px;\n    position: absolute;\n    left: 13px;\n    top: 10px;\n  }\n  .close {\n    .opacity(.85);\n    &:hover,\n    &:focus {\n      .opacity(1);\n    }\n  }\n  .pficon-info {\n    color: @color-pf-black-700;\n  }\n}\n\n.alert-dismissable {\n  padding-right: (@alert-padding + 17);\n  .close {\n    right: -13px;\n    top: 1px;\n  }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n.badge {\n  margin-left: 6px;\n}\n\n.nav-pills > li > a > .badge {\n  margin-left: 6px;\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n.breadcrumb {\n  padding-left: 0;\n  > .active strong {\n    font-weight: 600;\n  }\n  > li {\n      display: inline; /* IE8 */\n      + li:before {\n      color: @gray-light;\n      content: @fa-var-angle-double-right;\n      font-family: @icon-font-name-fa;\n      font-size: (@font-size-base - 1);\n      padding: 0 9px 0 7px;\n    }\n  }\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n.btn {\n  .box-shadow(0 2px 3px fade(@color-pf-black, 10%));\n  &:active {\n    .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    background-color: @color-pf-black-100 !important;\n    background-image: none !important;\n    border-color: @color-pf-black-300 !important;\n    color: @color-pf-black-500 !important;\n    opacity: 1;\n    &:active {\n      .box-shadow(none);\n    }\n    &.btn-link {\n      background-color: transparent !important;\n      border: 0;\n    }\n  }\n}\n\n.btn-danger {\n  .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-bg-img-start; @btn-danger-bg-img-stop; @btn-danger-border);\n}\n\n.btn-default {\n  .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n}\n\n.btn-link {\n  &,\n  &:active {\n    .box-shadow(none);\n  }\n}\n\n.btn-primary {\n  .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-bg-img-start; @btn-primary-bg-img-stop; @btn-primary-border);\n}\n\n.btn-xs,\n.btn-group-xs .btn {\n  font-weight: @btn-xs-font-weight;\n}\n","//\n// Dropdowns\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n// Modified to use Font Awesome's angle-down icon\n.caret {\n  font-family: @icon-font-name-fa;\n  font-weight: normal;\n  height: (@font-size-base - 3);\n  position: relative;\n  vertical-align: baseline;\n  width: @font-size-base;\n  &:before {\n    bottom: 0;\n    content: @fa-var-angle-down;\n    left: 0;\n    line-height: @font-size-base;\n    position: absolute;\n    text-align: center;\n    top: -1px;\n    right: 0;\n  }\n  .dropup & {\n    &:before {\n      content: @fa-var-angle-up;\n    }\n  }\n}\n\n// Bootstrap removes the focus ring on dropdowns; this replaces it for better accessibility\n.dropdown-toggle:focus {\n  .tab-focus();\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n  // Dividers (basically an hr) within the dropdown\n  .divider {\n    .nav-divider(@dropdown-divider-bg, @dropdown-divider-margin);\n  }\n  // Links within the dropdown menu\n  > li > a {\n    border-color: transparent;\n    border-style: solid;\n    border-width: 1px 0;\n    padding: 1px 10px;\n  }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n  &:hover,\n  &:focus {\n    border-color: @dropdown-link-hover-border-color;\n    .reset-filter();\n  }\n  &:active {\n    background-color: @dropdown-link-focus-bg;\n    border-color: @dropdown-link-active-border-color;\n    color: @dropdown-link-focus-color !important;\n    .reset-filter();\n  }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n  &,\n  &:hover,\n  &:focus {\n    background-color: @dropdown-link-active-bg !important;\n    border-color: @dropdown-link-active-border-color !important;\n    .reset-filter();\n  }\n}\n\n// Disabled state\n.dropdown-menu > .disabled > a {\n  &,\n  &:hover,\n  &:focus {\n    border-color: transparent;\n  }\n}\n\n// Selected state\n.dropdown-menu > .selected > a {\n  background-color: @dropdown-link-active-bg;\n  border-color: @dropdown-link-active-border-color;\n  color: @color-pf-white;\n  small {\n    color: fade(@color-pf-white, 50%);\n  }\n}\n\n// Nuke hover/focus effects\n.dropdown-menu > .disabled > a {\n  &:hover,\n  &:focus {\n    border-color: transparent;\n  }\n}\n\n// Dropdown section headers\n.dropdown-header {\n  padding-left: 10px;\n  padding-right: 10px;\n  text-transform: uppercase;\n}\n\n// Position Menu closer to button\n.btn-group,\n.dropdown,\n.input-group-btn {\n  > .dropdown-menu {\n    margin-top: -1px;\n  }\n}\n\n// Position Menu closer to button (dropup-menu)\n.dropup .dropdown-menu {\n  margin-bottom: -1px;\n}\n\n// Add back styles for dropdown-submenu\n.dropdown-submenu {\n  position:relative;\n  &:hover {\n    > a {\n      background-color: @dropdown-link-hover-bg;\n      border-color: @dropdown-link-hover-border-color;\n    }\n    > .dropdown-menu {\n      display: block;\n    }\n  }\n  &.pull-left {\n    float: none !important;\n    > .dropdown-menu {\n      left: auto;\n      margin-left: 10px;\n      right: 100%;\n    }\n  }\n  > a {\n    padding-right: 20px !important;\n    &:after {\n      content: @fa-var-angle-right;\n      font-family: @icon-font-name-fa;\n      display: block;\n      position: absolute;\n      right: 10px;\n      top: 2px;\n    }\n  }\n  > .dropdown-menu {\n    left: 100%;\n    margin-top: 0;\n    top: -6px;\n  }\n  .dropup & > .dropdown-menu {\n    bottom: -5px;\n    top: auto;\n  }\n  .open &.active > .dropdown-menu {\n    display: block;\n  }\n}\n\n// Kebab dropmenu\n.dropdown-kebab-pf {\n  &.btn-group > .btn:first-child,\n  .btn-link {\n    color: @gray-darker;\n    font-size: (@font-size-base + 4);\n    line-height: 1;\n    padding: 4px (@grid-gutter-width/4);\n    margin-left: (@grid-gutter-width/(-4));\n    margin-right: (@grid-gutter-width/(-4));\n    &:active,\n    &:focus,\n    &:hover {\n      color: @link-color;\n    }\n  }\n  &.btn-group { margin-left: (@grid-gutter-width/4); }\n  .dropdown-menu {\n    left: -15px;\n    margin-top: 11px;\n    &.dropdown-menu-right {\n      left: auto;\n      right: -15px;\n      &:after,\n      &:before {\n        left: auto;\n        right: 6px;\n      }\n    }\n    &:after,\n    &:before {\n      border-bottom-color: @dropdown-border;\n      border-bottom-style: solid;\n      border-bottom-width: 10px;\n      border-left: 10px solid transparent;\n      border-right: 10px solid transparent;\n      content: \"\";\n      display: inline-block;\n      left: 6px;\n      position: absolute;\n      top: -11px;\n    }\n    &:after {\n      border-bottom-color: @dropdown-bg;\n      top: -10px;\n    }\n  }\n  &.dropup .dropdown-menu {\n    margin-bottom: 11px;\n    margin-top: 0;\n    &:after,\n    &:before {\n      border-bottom: none;\n      border-top-color: @dropdown-border;\n      border-top-style: solid;\n      border-top-width: 10px;\n      bottom: -11px;\n      top: auto;\n    }\n    &:after {\n      border-top-color: @dropdown-bg;\n      bottom: -10px;\n    }\n  }\n}\n","//\n// Forms\n// --------------------------------------------------\n.chars-remaining-pf span {\n  font-weight: 600;\n  padding-right: 5px;\n}\n\n.chars-warn-remaining-pf {\n  color: @brand-danger;\n}\n\n.fields-status-pf {\n  color: @color-pf-black-500;\n  margin-bottom: 15px;\n}\n\n.form-control {\n  &[disabled],\n  &[readonly],\n  fieldset[disabled] & {\n    .box-shadow(none);\n    color: @color-pf-black-500;\n    &:hover {\n      border-color: @input-border;\n    }\n  }\n  &:hover {\n    border-color: @input-border-hover;\n    .has-error & {\n      border-color: darken(@state-danger-text, 10%);\n    }\n    .has-success & {\n      border-color: darken(@state-success-text, 10%);\n    }\n    .has-warning & {\n      border-color: darken(@state-warning-text, 10%);\n    }\n  }\n}\n\n.has-error, .has-success, .has-warning {\n  .checkbox,\n  .checkbox-inline,\n  .control-label,\n  .radio,\n  .radio-inline,\n  &.checkbox label,\n  &.checkbox-inline label,\n  &.radio label,\n  &.radio-inline label {\n    color: @text-color;\n  }\n}\n\n.help-block {\n  margin-bottom: 0px;\n}\n\n.input-group .input-group-btn .btn {\n  .box-shadow(none);\n}\n\nlabel {\n  font-weight: 600;\n  &.required-pf:after {\n    color: @brand-danger;\n    content: \"*\";\n    margin-left: 3px;\n  }\n}\n\nspan.required-pf {\n  color: @brand-danger;\n}\n\n.fields-section-pf {\n  border-color: @color-pf-black-200;\n  border-style: solid;\n  border-width: 1px 0 0;\n  margin-top: 25px;\n  padding: 15px 0 0;\n}\n.fields-section-header-pf {\n  border: none;\n  font-size: @font-size-base;\n  margin: 0;\n  padding-right: @padding-large-horizontal;\n  width: auto;\n  .fa-angle-right {\n    cursor: pointer;\n    font-size: @font-size-large;\n    width: @font-size-large;\n  }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n  border-radius: 0;\n  font-size: 100%;\n  font-weight: 600;\n  h1 &,\n  h2 &,\n  h3 &,\n  h4 &,\n  h5 &,\n  h6 & {\n    font-size: 75%;\n  }\n}\n","//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n  border-top: 1px solid @list-group-top-border;\n  .list-group-item:first-child {\n    border-top: 0;\n  }\n}\n.list-group-item {\n  border-left: 0;\n  border-right: 0;\n}\n\n.list-group-item-heading {\n  font-weight: 600;\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n  background-color: @color-pf-black-150;\n  border-bottom: none;\n  padding: @modal-title-padding-vertical @modal-title-padding-horizontal;\n}\n// Close icon\n.modal-header .close {\n  margin-top: 2px;\n}\n\n// Title text within header\n.modal-title {\n  font-size: 13px;\n  font-weight: 700;\n}\n\n// Footer (for actions)\n.modal-footer {\n  border-top: none;\n  margin-top: 15px;\n  padding: (@modal-inner-padding - 1) @modal-inner-padding @modal-inner-padding;\n  > .btn {\n    padding-left: 10px;\n    padding-right: 10px;\n    > .fa-angle-left {\n      margin-right: 5px;\n    }\n    > .fa-angle-right {\n      margin-left: 5px;\n    }\n  }\n}\n","//\n// Pager\n// --------------------------------------------------\n\n.pager {\n  li {\n    > a,\n    > span {\n      .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n      color: @gray-pf;\n      font-weight: 600;\n      line-height: 22px;\n      padding: 2px 14px;\n      > .i {\n        font-size: 18px;\n        vertical-align: top;\n        margin: 2px 0;\n      }\n    }\n    a:active {\n      background-image: none;\n      .box-shadow(inset 0 3px 5px fade(@color-pf-black, 12.5%));\n      outline: 0;\n    }\n  }\n  .disabled {\n    > a,\n    > a:hover,\n    > a:focus,\n    > a:active,\n    > span {\n      background: @pagination-bg;\n      .box-shadow(none);\n      color: @pager-disabled-color;\n      cursor: default;\n    }\n  }\n  .next {\n     > a,\n     > span {\n       > .i {\n          margin-left: 5px;\n       }\n     }\n  }\n  .previous {\n     > a,\n     > span {\n       > .i {\n          margin-right: 5px;\n       }\n     }\n  }\n}\n\n.pager-sm {\n  li {\n    > a,\n    > span {\n      font-weight: 400;\n      line-height: 16px;\n      padding: 1px 10px;\n      > .i {\n        font-size: 12px;\n      }\n    }\n  }\n}\n","//\n// Pagination\n// --------------------------------------------------\n\n.pagination {\n  > li {\n    > a,\n    > span {\n      .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n      cursor: default;\n      font-weight: 600;\n      padding: @padding-base-vertical @padding-large-horizontal;\n      > .i {\n        font-size: 15px;\n        vertical-align: top;\n        margin: 2px 0;\n      }\n    }\n  }\n  > li > a,\n  > li > span {\n    &:active {\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n    }\n  }\n  > .active > a,\n  > .active > span {\n    &,\n    &:hover,\n    &:focus {\n      background-color: @btn-default-bg;\n      border-color: @pagination-border;\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n      color: @btn-default-color;\n      #gradient > .vertical(@btn-default-bg-img-start; @btn-default-bg-img-stop);\n    }\n  }\n  > .disabled {\n    > span,\n    > span:hover,\n    > span:focus,\n    > a,\n    > a:hover,\n    > a:focus {\n      .box-shadow(none);\n      cursor: default;\n      #gradient > .vertical(@btn-default-bg-img-start; @btn-default-bg-img-stop);\n    }\n  }\n}\n\n.pagination-sm {\n  .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n  > li {\n    > a,\n    > span {\n      font-weight: 400;\n      > .i {\n        font-size: 12px;\n        margin-top: 2px;\n      }\n    }\n  }\n}\n\n.content-view-pf-pagination {\n  background-color: @table-bg-accent;\n  border: 1px solid @table-border-color;\n  display: flex;\n  flex-wrap: wrap;\n  justify-content: space-between;\n  &.table-view-pf-pagination {\n    border-top: none;\n  }\n  .form-group {\n    align-items: baseline;\n    display: flex;\n    flex-grow: 1;\n    float: left; //IE9 fallback\n    @supports (display: flex) {\n      float: none;\n    }\n    margin: 5px;\n    &:last-child {\n      justify-content: flex-end; // if pagination controls wrap, pagination buttons stay on the right\n      float: right; //IE9 fallback\n      @supports (display: flex) {\n        float: none;\n      }\n    }\n    .pagination-pf-pagesize.bootstrap-select.btn-group, \n    .pagination-pf-pagesize.btn-group {\n      display: flex;\n      float: none;\n      margin-bottom: 0;\n      margin-left: 0;\n      margin-right: 5px;\n      width: auto;\n    }\n    .dropdown-menu {\n      min-width: auto;\n    }\n  }\n  .pagination-pf-page {\n    margin-left: 10px;\n    margin-right: 5px;\n    padding: 0 2px 2px;\n    text-align: right;\n    width: 2.5em;\n  }\n  .pagination {\n    display: flex;\n    margin: 0 0 0 10px;\n    a {\n      float: none;\n      @supports (display: flex) {\n        display: block;\n      }\n    }\n  }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n.panel-title {\n  font-weight: 700;\n}\n\n//\n// Collapsable panels (aka, accordion)\n// --------------------------------------------------\n\n.panel-group {\n  .panel {\n    color: @gray-pf;\n    + .panel {\n      margin-top: -1px;\n    }\n  }\n  .panel-default {\n    border-color: @panel-default-border-color;\n    border-top-color: @panel-default-border-color;\n    .panel-heading {\n      #gradient > .vertical(@btn-default-bg-img-start, @btn-default-bg-img-stop);\n      + .panel-collapse .panel-body {\n        border-top: 1px solid @panel-inner-border;\n      }\n    }\n  }\n\n  .panel-info {\n    border-color: @panel-info-border;\n    .panel-heading {\n      background-color: @panel-group-pf-info-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-info-border;\n    }\n  }\n  .panel-primary {\n    border-color: @panel-primary-border;\n    .panel-heading {\n      background-color: @panel-group-pf-primary-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-primary-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-primary-border;\n    }\n  }\n  .panel-success {\n    border-color: @panel-success-border;\n    .panel-heading {\n      background-color: @panel-group-pf-success-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-success-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-success-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-success-border;\n    }\n  }\n  .panel-warning {\n    border-color: @panel-warning-border;\n    .panel-heading {\n      background-color: @panel-group-pf-warning-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-success {\n      border-top-color: @panel-warning-border;\n    }\n  }\n  .panel-danger {\n    border-color: @panel-danger-border;\n    .panel-heading {\n      background-color: @panel-group-pf-danger-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-success {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-warning {\n      border-top-color: @panel-danger-border;\n    }\n  }\n  .panel-title {\n    font-weight: 500;\n    line-height: 1;\n    > a {\n      color: @gray-pf;\n      font-weight: @btn-font-weight;\n      &:before {\n        content: \"\\f107\";\n        display: inline-block;\n        font-family: @icon-font-name-fa;\n        font-size: 13px;\n        margin-right: 5px;\n        text-align: center;\n        vertical-align: 0;\n        width: 8px;\n      }\n      &:focus {\n        outline: none;\n        text-decoration: none;\n      }\n      &:hover {\n        text-decoration: none;\n      }\n      &.collapsed:before {\n        content: \"\\f105\";\n      }\n    }\n  }\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n.popover {\n  .box-shadow(0 2px 2px fade(@color-pf-black, 8%));\n  padding: 0;\n}\n\n.popover-content {\n  color: @gray-pf;\n  line-height: 18px;\n  padding: 10px 14px;\n}\n\n.popover-title {\n  border-bottom: none;\n  border-radius: 0;\n  color: @gray-pf;\n  font-size: (@font-size-base + 1);\n  font-weight: 700;\n  min-height: 34px;\n  .close {\n    height: 22px;\n    position: absolute;\n    right: 8px;\n    top: 6px;\n  }\n  &.closable {\n    padding-right: 30px;\n  }\n}\n","//\n// Progress Bar\n// --------------------------------------------------\n\n@keyframes progress-bar-stripes {\n  from  { background-position: 0 0; }\n  to    { background-position: 40px 0; }\n}\n\n.progress {\n  .box-shadow(inset 0 0 1px fade(@color-pf-black, 25%));\n  &.progress-label-left,\n  &.progress-label-top-right {\n    overflow: visible;\n    position: relative;\n  }\n  &.progress-label-left {\n    margin-left: 40px;\n  }\n  &.progress-sm {\n    height: @progress-sm;\n    margin-bottom: @progress-sm;\n  }\n  &.progress-xs {\n    height: @progress-xs;\n    margin-bottom: @progress-xs;\n  }\n  td > &:first-child:last-child {\n    margin-bottom: 0;\n    margin-top: 3px;\n  }\n}\n\n.progress-bar {\n  box-shadow: none;\n  .progress-label-left & span,\n  .progress-label-right & span,\n  .progress-label-top-right & span {\n    color: @text-color;\n    position: absolute;\n    text-align: right;\n  }\n  .progress-label-left & span {\n    font-size: @font-size-large;\n    left: -40px;\n    top: 0;\n    width: 35px;\n  }\n  .progress-label-right & span,\n  .progress-label-top-right & span {\n    font-size: @font-size-small;\n    overflow: hidden;\n    right: 0;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    strong {\n      font-weight: 600;\n    }\n  }\n  .progress-label-right & span {\n    max-width: @progress-description-label-width;\n    top: 0;\n  }\n  .progress-label-top-right & span {\n    max-width: 47%;\n    top: (-(@line-height-computed * 1.5)); // -30px\n  }\n  .progress-label-left.progress-sm & span,\n  .progress-label-top-right.progress-sm & span {\n    font-size: @font-size-base;\n  }\n  .progress-sm & {\n    line-height: @progress-sm;\n  }\n  .progress-xs & {\n    line-height: @progress-xs;\n  }\n}\n\n.progress-bar-remaining {\n  background: transparent;\n}\n\n.progress-container {\n  position: relative;\n  &.progress-description-left {\n    padding-left :(@progress-description-label-width + 5);\n  }\n  &.progress-label-right {\n    padding-right :(@progress-description-label-width + 5);\n  }\n}\n\n.progress-description {\n  margin-bottom: (@line-height-computed / 2); // 10px\n  max-width: 52%;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  .count {\n    font-size: (@font-size-base * 1.667); // 20px\n    font-weight: 300;\n    line-height: 1;\n    margin-right: 5px;\n  }\n  .fa,\n  .pficon {\n    font-size: 14px;\n    margin-right: 3px;\n  }\n  .progress-description-left & {\n    left: 0;\n    margin-bottom: 0;\n    max-width: @progress-description-label-width;\n    position: absolute;\n    top: 0;\n  }\n  .tooltip {\n    white-space: normal;\n  }\n}\n","//\n// Tables\n// --------------------------------------------------\n\n.table {\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-cell-padding-top @table-cell-padding @table-cell-padding-bottom;\n        > a:hover {\n          text-decoration: none;\n        }\n      }\n      > th {\n        font-family: \"Open Sans\";\n        font-style: normal;\n        font-weight: 600;\n      }\n    }\n  }\n  > thead {\n    background-clip: padding-box;\n    background-color: @color-pf-black-150;\n    #gradient > .vertical(@start-color: @color-pf-black-100; @end-color: @color-pf-black-200; @start-percent: 0%; @end-percent: 100%);\n  }\n}\n\n.table-bordered {\n  border: 1px solid @table-border-color;\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        border: 1px solid @table-border-color;\n      }\n    }\n  }\n  > thead > tr {\n    > th,\n    > td {\n      border-bottom-width: 1px;\n    }\n  }\n}\n\n.table-striped {\n  > tbody > tr {\n    &:nth-of-type(even) {\n      background-color: @table-bg-accent;\n    }\n    &:nth-of-type(odd) {\n      background-color: transparent;\n    }\n  }\n}\n\n.table-hover {\n  > tbody > tr:hover {\n    > td,\n    > th {\n      background-color: @table-bg-hover;\n      border-bottom-color: @table-border-hover;\n    }\n  }\n}\n\n.table-treegrid {\n  span.indent {\n    margin-left: 10px;\n    margin-right: 10px;\n  }\n  span.icon {\n    display: inline-block;\n    font-size: 13px;\n    margin-right: 5px;\n    min-width: 10px;\n    text-align: center;\n  }\n  span.expand-icon, span.collapse-icon {\n    cursor: pointer;\n  }\n  > tbody > tr.odd {\n    background-color: @table-bg-accent;\n  }\n}\n","//\n// Tabs\n// --------------------------------------------------\n\n.nav-tabs {\n  font-size: @font-size-large;\n  > li {\n    > a {\n      color: @nav-tabs-color;\n      margin-right: -1px;\n      padding-bottom: 5px;\n      padding-top: 5px;\n      &:active,\n      &:focus,\n      &:hover {\n        background: transparent;\n        border-color: @nav-tabs-border-color;\n        color: @gray-darker;\n      }\n    }\n    > .dropdown-menu {\n      border-top: 0;\n      border-color: @nav-tabs-border-color;\n      &.pull-right {\n        right: -1px;\n      }\n    }\n  }\n  + .nav-tabs-pf, &.nav-tabs-pf-secondary {\n    font-size: @font-size-base;\n    > li:first-child > a {\n      padding-left: 15px;\n      &:before {\n        left: 15px !important;\n      }\n    }\n  }\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: transparent;\n      border-color: @nav-tabs-border-color;\n    }\n  }\n}\n\n.nav-tabs-pf {\n  &.nav-justified {\n    @media (min-width: @grid-float-breakpoint) {\n      border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n    }\n    > li {\n      &:first-child > a {\n        padding-left: 15px;\n      }\n      > a {\n        border-bottom: 0;\n        &:before {\n          left: 0 !important;\n          right: 0 !important;\n        }\n      }\n    }\n  }\n  > li {\n    margin-bottom: 0;\n    &.active > a {\n      .tab-indicator(@background: @nav-tabs-active-link-hover-color);\n      &,\n      &:active,\n      &:focus,\n      &:hover {\n        background-color: transparent;\n        border: 0 !important;\n        color: @link-color;\n        &:before {\n          background: @nav-tabs-active-link-hover-color;\n        }\n      }\n    }\n    &:first-child {\n      > a {\n        padding-left: 0;\n        &:before {\n          left: 0 !important;\n        }\n      }\n    }\n    > a {\n      border: 0;\n      line-height: 1;\n      margin-right: 0;\n      padding-bottom: 10px;\n      padding-top: 10px;\n      &:active,\n      &:focus,\n      &:hover {\n        .tab-indicator()\n      }\n    }\n    > .dropdown-menu {\n      left: 15px;\n      margin-top: 1px;\n      &.pull-right {\n        left: auto;\n        right: 15px;\n      }\n    }\n  }\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: transparent;\n    }\n  }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n// Base class\n.tooltip {\n  font-size: @tooltip-font-size;\n  line-height: 1.4;\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n  padding: 7px 12px;\n  text-align: left;\n}\n","//\n// Typography\n// --------------------------------------------------\n\nh1,\n.h1,\nh2,\n.h2 {\n  font-weight: 300;\n}\n\n.page-header .actions {\n  margin-top: 8px;\n  a > .pficon {\n    margin-right: 4px;\n  }\n}\n\n@media (min-width: @grid-float-breakpoint-max) {\n  .page-header-bleed-left {\n    margin-left: (-(@grid-gutter-width / 2));\n  }\n  .page-header-bleed-right {\n    margin-right: ((-@grid-gutter-width / 2));\n    .actions {\n      margin-right: (@grid-gutter-width / 2);\n    }\n  }\n}\n"]}
\ No newline at end of file
+{"version":3,"sources":["src/less/fonts.less","node_modules/bootstrap/less/normalize.less","node_modules/bootstrap/less/print.less","node_modules/bootstrap/less/glyphicons.less","node_modules/bootstrap/less/scaffolding.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","src/less/variables.less","node_modules/bootstrap/less/mixins/tab-focus.less","node_modules/bootstrap/less/thumbnails.less","node_modules/bootstrap/less/carousel.less","node_modules/bootstrap/less/mixins/image.less","node_modules/bootstrap/less/type.less","node_modules/bootstrap/less/mixins/text-emphasis.less","node_modules/bootstrap/less/mixins/background-variant.less","node_modules/bootstrap/less/mixins/text-overflow.less","node_modules/bootstrap/less/code.less","node_modules/bootstrap/less/grid.less","node_modules/bootstrap/less/mixins/grid.less","node_modules/bootstrap/less/mixins/grid-framework.less","node_modules/bootstrap/less/tables.less","node_modules/bootstrap/less/mixins/table-row.less","node_modules/bootstrap/less/forms.less","node_modules/bootstrap/less/mixins/forms.less","src/less/bootstrap-mixin-overrides.less","node_modules/bootstrap/less/buttons.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap/less/button-groups.less","node_modules/bootstrap/less/component-animations.less","node_modules/bootstrap/less/dropdowns.less","node_modules/bootstrap/less/mixins/nav-divider.less","node_modules/bootstrap/less/mixins/reset-filter.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/input-groups.less","node_modules/bootstrap/less/navs.less","node_modules/bootstrap/less/navbar.less","node_modules/bootstrap/less/mixins/nav-vertical-align.less","node_modules/bootstrap/less/utilities.less","node_modules/font-awesome/less/bordered-pulled.less","node_modules/bootstrap/less/breadcrumbs.less","node_modules/bootstrap/less/pagination.less","node_modules/bootstrap/less/mixins/pagination.less","node_modules/bootstrap/less/pager.less","node_modules/bootstrap/less/labels.less","node_modules/bootstrap/less/mixins/labels.less","node_modules/bootstrap/less/badges.less","node_modules/bootstrap/less/jumbotron.less","node_modules/bootstrap/less/alerts.less","node_modules/bootstrap/less/mixins/alerts.less","node_modules/bootstrap/less/progress-bars.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/progress-bar.less","node_modules/bootstrap/less/media.less","node_modules/bootstrap/less/list-group.less","node_modules/bootstrap/less/mixins/list-group.less","node_modules/bootstrap/less/panels.less","node_modules/bootstrap/less/mixins/panels.less","node_modules/bootstrap/less/responsive-embed.less","node_modules/bootstrap/less/wells.less","node_modules/bootstrap/less/close.less","node_modules/bootstrap/less/modals.less","node_modules/bootstrap/less/tooltip.less","node_modules/bootstrap/less/mixins/reset-text.less","node_modules/bootstrap/less/popovers.less","node_modules/bootstrap/less/mixins/clearfix.less","node_modules/bootstrap/less/mixins/center-block.less","node_modules/bootstrap/less/mixins/hide-text.less","node_modules/bootstrap/less/responsive-utilities.less","node_modules/bootstrap/less/mixins/responsive-visibility.less","node_modules/font-awesome/less/path.less","node_modules/font-awesome/less/core.less","node_modules/font-awesome/less/larger.less","node_modules/font-awesome/less/fixed-width.less","node_modules/font-awesome/less/list.less","node_modules/font-awesome/less/animated.less","node_modules/font-awesome/less/rotated-flipped.less","node_modules/font-awesome/less/mixins.less","node_modules/font-awesome/less/stacked.less","node_modules/font-awesome/less/icons.less","node_modules/font-awesome/less/variables.less","node_modules/font-awesome/less/screen-reader.less","src/less/mixins.less","src/less/alerts.less","src/less/badges.less","src/less/breadcrumbs.less","src/less/buttons.less","src/less/dropdowns.less","src/less/forms.less","src/less/labels.less","src/less/list-group.less","src/less/modals.less","src/less/pager.less","src/less/pagination.less","src/less/panels.less","src/less/popovers.less","src/less/progress-bars.less","src/less/tables.less","src/less/tabs.less","src/less/tooltip.less","src/less/type.less"],"names":[],"mappings":"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ACA,YAAA;IACA,iBAAA;IACA,eAAA;;EARJ,iBAUE;EAVF,iBAWE;IACE,kBAAA;;EAZJ,iBAcE;EAdF,iBAeE;IACE,mBAAA;;EAKJ;IACE,SAAA;IACA,UAAA;IACA,oBAAA;;EAIF;IACE,YAAA;;;AuD9PF,SAAC;AACD,SAAC;ArDkMH,cACE,GqDpMC;ArDmMH,cACE,GqDnMC;AhDLH,UgDIG;AhDJH,UgDKG;AhDeH,gBgDhBG;AhDgBH,gBgDfG;AhDwBH,IgDzBG;AhDyBH,IgDxBG;A3CuhBH,gBAqBE,Y2C7iBC;A3CwhBH,gBAqBE,Y2C5iBC;ArCoBH,YqCrBG;ArCqBH,YqCpBG;ArCiIH,mBAWE,aqC7IC;ArCkIH,mBAWE,aqC5IC;A9BNH,I8BKG;A9BLH,I8BMG;A7BJH,O6BGG;A7BHH,O6BIG;A7BgBH,c6BjBG;A7BiBH,c6BhBG;A7BmCH,gB6BpCG;A7BoCH,gB6BnCG;AtBTH,MsBQG;AtBRH,MsBSG;ATCH,WSFG;ATEH,WSDG;AJgEH,aIjEG;AJiEH,aIhEG;AJwFH,aIzFG;AJyFH,aIxFG;EACC,SAAS,GAAT;EACA,cAAA;;AAEF,SAAC;ArD8LH,cACE,GqD/LC;AhDTH,UgDSG;AhDWH,gBgDXG;AhDoBH,IgDpBG;A3CmhBH,gBAqBE,Y2CxiBC;ArCgBH,YqChBG;ArC6HH,mBAWE,aqCxIC;A9BVH,I8BUG;A7BRH,O6BQG;A7BYH,c6BZG;A7B+BH,gB6B/BG;AtBbH,MsBaG;ATHH,WSGG;AJ4DH,aI5DG;AJoFH,aIpFG;EACC,WAAA;;A3BRJ;E4BRE,cAAA;EACA,iBAAA;EACA,kBAAA;;A5BSF;EACE,uBAAA;;AAEF;EACE,sBAAA;;AAQF;EACE,wBAAA;;AAEF;EACE,yBAAA;;AAEF;EACE,kBAAA;;AAEF;E6BzBE,WAAA;EACA,kBAAA;EACA,iBAAA;EACA,6BAAA;EACA,SAAA;;A7B8BF;EACE,wBAAA;;AAOF;EACE,eAAA;;A8BjCF;EACE,mBAAA;;AAMF;AACA;AACA;AACA;ECjBE,wBAAA;;ADqBF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;E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","sourcesContent":["//\n// Fonts\n// --------------------------------------------------\n\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 300;\n  src: url(\"@{font-path}/OpenSans-Light-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Light\"), local(\"OpenSans-Light\"),\n       url(\"@{font-path}/OpenSans-Light-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Light-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Light-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Light-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Light-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 400;\n  src: url(\"@{font-path}/OpenSans-Regular-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans\"), local(\"OpenSans\"),\n       url(\"@{font-path}/OpenSans-Regular-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Regular-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Regular-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Regular-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Regular-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 300;\n  src: url(\"@{font-path}/OpenSans-LightItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Light Italic\"), local(\"OpenSansLight-Italic\"),\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 400;\n  src: url(\"@{font-path}/OpenSans-Italic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Italic\"), local(\"OpenSans-Italic\"),\n       url(\"@{font-path}/OpenSans-Italic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Italic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Italic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Italic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Italic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 600;\n  src: url(\"@{font-path}/OpenSans-Semibold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Semibold\"), local(\"OpenSans-Semibold-webfont\"),\n       url(\"@{font-path}/OpenSans-Semibold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 600;\n  src: url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Semibold Italic\"), local(\"OpenSans-SemiboldItalic-webfont\"),\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 700;\n  src: url(\"@{font-path}/OpenSans-Bold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Bold\"), local(\"OpenSans-Bold\"),\n       url(\"@{font-path}/OpenSans-Bold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Bold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Bold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Bold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Bold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 700;\n  src: url(\"@{font-path}/OpenSans-BoldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Bold Italic\"), local(\"OpenSans-BoldItalic\"),\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 800;\n  src: url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Extrabold Italic\"), local(\"OpenSans-ExtraboldItalic\"),\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 800;\n  src: url(\"@{font-path}/OpenSans-ExtraBold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Extrabold\"), local(\"OpenSans-Extrabold\"),\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n","/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS and IE text size adjust after device orientation change,\n//    without disabling user zoom.\n//\n\nhtml {\n  font-family: sans-serif; // 1\n  -ms-text-size-adjust: 100%; // 2\n  -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n  margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n  display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n  display: inline-block; // 1\n  vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n  display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n  background-color: transparent;\n}\n\n//\n// Improve readability of focused elements when they are also in an\n// active/hover state.\n//\n\na:active,\na:hover {\n  outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n  border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n  font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n  font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n  background: #ff0;\n  color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n  font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\n\nsup {\n  top: -0.5em;\n}\n\nsub {\n  bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n  border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n  overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n  margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n  box-sizing: content-box;\n  height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n  overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace, monospace;\n  font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n//    Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  color: inherit; // 1\n  font: inherit; // 2\n  margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n  overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n  text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n//    and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n//    `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n  -webkit-appearance: button; // 2\n  cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n  cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n  border: 0;\n  padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n  line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n  box-sizing: border-box; // 1\n  padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.\n//\n\ninput[type=\"search\"] {\n  -webkit-appearance: textfield; // 1\n  box-sizing: content-box; //2\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n  border: 1px solid #c0c0c0;\n  margin: 0 2px;\n  padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n  border: 0; // 1\n  padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n  overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n  font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n  border-collapse: collapse;\n  border-spacing: 0;\n}\n\ntd,\nth {\n  padding: 0;\n}\n","/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n    *,\n    *:before,\n    *:after {\n        background: transparent !important;\n        color: #000 !important; // Black prints faster: h5bp.com/s\n        box-shadow: none !important;\n        text-shadow: none !important;\n    }\n\n    a,\n    a:visited {\n        text-decoration: underline;\n    }\n\n    a[href]:after {\n        content: \" (\" attr(href) \")\";\n    }\n\n    abbr[title]:after {\n        content: \" (\" attr(title) \")\";\n    }\n\n    // Don't show links that are fragment identifiers,\n    // or use the `javascript:` pseudo protocol\n    a[href^=\"#\"]:after,\n    a[href^=\"javascript:\"]:after {\n        content: \"\";\n    }\n\n    pre,\n    blockquote {\n        border: 1px solid #999;\n        page-break-inside: avoid;\n    }\n\n    thead {\n        display: table-header-group; // h5bp.com/t\n    }\n\n    tr,\n    img {\n        page-break-inside: avoid;\n    }\n\n    img {\n        max-width: 100% !important;\n    }\n\n    p,\n    h2,\n    h3 {\n        orphans: 3;\n        widows: 3;\n    }\n\n    h2,\n    h3 {\n        page-break-after: avoid;\n    }\n\n    // Bootstrap specific changes start\n\n    // Bootstrap components\n    .navbar {\n        display: none;\n    }\n    .btn,\n    .dropup > .btn {\n        > .caret {\n            border-top-color: #000 !important;\n        }\n    }\n    .label {\n        border: 1px solid #000;\n    }\n\n    .table {\n        border-collapse: collapse !important;\n\n        td,\n        th {\n            background-color: #fff !important;\n        }\n    }\n    .table-bordered {\n        th,\n        td {\n            border: 1px solid #ddd !important;\n        }\n    }\n\n    // Bootstrap specific changes end\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// <a href=\"#\"><span class=\"glyphicon glyphicon-star\"></span> Star</a>\n\n// Import the fonts\n@font-face {\n  font-family: 'Glyphicons Halflings';\n  src: url('@{icon-font-path}@{icon-font-name}.eot');\n  src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),\n       url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),\n       url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),\n       url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),\n       url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');\n}\n\n// Catchall baseclass\n.glyphicon {\n  position: relative;\n  top: 1px;\n  display: inline-block;\n  font-family: 'Glyphicons Halflings';\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk               { &:before { content: \"\\002a\"; } }\n.glyphicon-plus                   { &:before { content: \"\\002b\"; } }\n.glyphicon-euro,\n.glyphicon-eur                    { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus                  { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud                  { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope               { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil                 { &:before { content: \"\\270f\"; } }\n.glyphicon-glass                  { &:before { content: \"\\e001\"; } }\n.glyphicon-music                  { &:before { content: \"\\e002\"; } }\n.glyphicon-search                 { &:before { content: \"\\e003\"; } }\n.glyphicon-heart                  { &:before { content: \"\\e005\"; } }\n.glyphicon-star                   { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty             { &:before { content: \"\\e007\"; } }\n.glyphicon-user                   { &:before { content: \"\\e008\"; } }\n.glyphicon-film                   { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large               { &:before { content: \"\\e010\"; } }\n.glyphicon-th                     { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list                { &:before { content: \"\\e012\"; } }\n.glyphicon-ok                     { &:before { content: \"\\e013\"; } }\n.glyphicon-remove                 { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in                { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out               { &:before { content: \"\\e016\"; } }\n.glyphicon-off                    { &:before { content: \"\\e017\"; } }\n.glyphicon-signal                 { &:before { content: \"\\e018\"; } }\n.glyphicon-cog                    { &:before { content: \"\\e019\"; } }\n.glyphicon-trash                  { &:before { content: \"\\e020\"; } }\n.glyphicon-home                   { &:before { content: \"\\e021\"; } }\n.glyphicon-file                   { &:before { content: \"\\e022\"; } }\n.glyphicon-time                   { &:before { content: \"\\e023\"; } }\n.glyphicon-road                   { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt           { &:before { content: \"\\e025\"; } }\n.glyphicon-download               { &:before { content: \"\\e026\"; } }\n.glyphicon-upload                 { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox                  { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle            { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat                 { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh                { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt               { &:before { content: \"\\e032\"; } }\n.glyphicon-lock                   { &:before { content: \"\\e033\"; } }\n.glyphicon-flag                   { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones             { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off             { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down            { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up              { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode                 { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode                { &:before { content: \"\\e040\"; } }\n.glyphicon-tag                    { &:before { content: \"\\e041\"; } }\n.glyphicon-tags                   { &:before { content: \"\\e042\"; } }\n.glyphicon-book                   { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark               { &:before { content: \"\\e044\"; } }\n.glyphicon-print                  { &:before { content: \"\\e045\"; } }\n.glyphicon-camera                 { &:before { content: \"\\e046\"; } }\n.glyphicon-font                   { &:before { content: \"\\e047\"; } }\n.glyphicon-bold                   { &:before { content: \"\\e048\"; } }\n.glyphicon-italic                 { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height            { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width             { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left             { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center           { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right            { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify          { &:before { content: \"\\e055\"; } }\n.glyphicon-list                   { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left            { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right           { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video         { &:before { content: \"\\e059\"; } }\n.glyphicon-picture                { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker             { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust                 { &:before { content: \"\\e063\"; } }\n.glyphicon-tint                   { &:before { content: \"\\e064\"; } }\n.glyphicon-edit                   { &:before { content: \"\\e065\"; } }\n.glyphicon-share                  { &:before { content: \"\\e066\"; } }\n.glyphicon-check                  { &:before { content: \"\\e067\"; } }\n.glyphicon-move                   { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward          { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward          { &:before { content: \"\\e070\"; } }\n.glyphicon-backward               { &:before { content: \"\\e071\"; } }\n.glyphicon-play                   { &:before { content: \"\\e072\"; } }\n.glyphicon-pause                  { &:before { content: \"\\e073\"; } }\n.glyphicon-stop                   { &:before { content: \"\\e074\"; } }\n.glyphicon-forward                { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward           { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward           { &:before { content: \"\\e077\"; } }\n.glyphicon-eject                  { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left           { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right          { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign              { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign             { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign            { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign                { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign          { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign              { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot             { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle          { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle              { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle             { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left             { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right            { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up               { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down             { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt              { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full            { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small           { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign       { &:before { content: \"\\e101\"; } }\n.glyphicon-gift                   { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf                   { &:before { content: \"\\e103\"; } }\n.glyphicon-fire                   { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open               { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close              { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign           { &:before { content: \"\\e107\"; } }\n.glyphicon-plane                  { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar               { &:before { content: \"\\e109\"; } }\n.glyphicon-random                 { &:before { content: \"\\e110\"; } }\n.glyphicon-comment                { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet                 { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up             { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down           { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet                { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart          { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close           { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open            { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical        { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal      { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd                    { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn               { &:before { content: \"\\e122\"; } }\n.glyphicon-bell                   { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate            { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up              { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down            { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right             { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left              { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up                { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down              { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right     { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left      { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up        { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down      { &:before { content: \"\\e134\"; } }\n.glyphicon-globe                  { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench                 { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks                  { &:before { content: \"\\e137\"; } }\n.glyphicon-filter                 { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase              { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen             { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard              { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip              { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty            { &:before { content: \"\\e143\"; } }\n.glyphicon-link                   { &:before { content: \"\\e144\"; } }\n.glyphicon-phone                  { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin                { &:before { content: \"\\e146\"; } }\n.glyphicon-usd                    { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp                    { &:before { content: \"\\e149\"; } }\n.glyphicon-sort                   { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet       { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt   { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order          { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt      { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes     { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked              { &:before { content: \"\\e157\"; } }\n.glyphicon-expand                 { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down          { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up            { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in                 { &:before { content: \"\\e161\"; } }\n.glyphicon-flash                  { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out                { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window             { &:before { content: \"\\e164\"; } }\n.glyphicon-record                 { &:before { content: \"\\e165\"; } }\n.glyphicon-save                   { &:before { content: \"\\e166\"; } }\n.glyphicon-open                   { &:before { content: \"\\e167\"; } }\n.glyphicon-saved                  { &:before { content: \"\\e168\"; } }\n.glyphicon-import                 { &:before { content: \"\\e169\"; } }\n.glyphicon-export                 { &:before { content: \"\\e170\"; } }\n.glyphicon-send                   { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk            { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved           { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove          { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save            { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open            { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card            { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer               { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery                { &:before { content: \"\\e179\"; } }\n.glyphicon-header                 { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed             { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone               { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt              { &:before { content: \"\\e183\"; } }\n.glyphicon-tower                  { &:before { content: \"\\e184\"; } }\n.glyphicon-stats                  { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video               { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video               { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles              { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo           { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby            { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1              { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1              { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1              { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark         { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark      { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download         { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload           { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer           { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous         { &:before { content: \"\\e200\"; } }\n.glyphicon-cd                     { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file              { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file              { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up               { &:before { content: \"\\e204\"; } }\n.glyphicon-copy                   { &:before { content: \"\\e205\"; } }\n.glyphicon-paste                  { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door                   { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key                    { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert                  { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer              { &:before { content: \"\\e210\"; } }\n.glyphicon-king                   { &:before { content: \"\\e211\"; } }\n.glyphicon-queen                  { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn                   { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop                 { &:before { content: \"\\e214\"; } }\n.glyphicon-knight                 { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula           { &:before { content: \"\\e216\"; } }\n.glyphicon-tent                   { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard             { &:before { content: \"\\e218\"; } }\n.glyphicon-bed                    { &:before { content: \"\\e219\"; } }\n.glyphicon-apple                  { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase                  { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass              { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp                   { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate              { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank             { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors               { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin                { &:before { content: \"\\e227\"; } }\n.glyphicon-btc                    { &:before { content: \"\\e227\"; } }\n.glyphicon-xbt                    { &:before { content: \"\\e227\"; } }\n.glyphicon-yen                    { &:before { content: \"\\00a5\"; } }\n.glyphicon-jpy                    { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble                  { &:before { content: \"\\20bd\"; } }\n.glyphicon-rub                    { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale                  { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly              { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted       { &:before { content: \"\\e232\"; } }\n.glyphicon-education              { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal      { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical        { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger         { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window           { &:before { content: \"\\e237\"; } }\n.glyphicon-oil                    { &:before { content: \"\\e238\"; } }\n.glyphicon-grain                  { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses             { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size              { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color             { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background        { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top       { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom    { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left      { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical  { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right     { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right         { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left          { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom        { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top           { &:before { content: \"\\e253\"; } }\n.glyphicon-console                { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript            { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript              { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left              { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right             { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down              { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up                { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n  .box-sizing(border-box);\n}\n*:before,\n*:after {\n  .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n  font-size: 10px;\n  -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n  font-family: @font-family-base;\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @text-color;\n  background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n}\n\n\n// Links\n\na {\n  color: @link-color;\n  text-decoration: none;\n\n  &:hover,\n  &:focus {\n    color: @link-hover-color;\n    text-decoration: @link-hover-decoration;\n  }\n\n  &:focus {\n    .tab-focus();\n  }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n  margin: 0;\n}\n\n\n// Images\n\nimg {\n  vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n  .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n  border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n  padding: @thumbnail-padding;\n  line-height: @line-height-base;\n  background-color: @thumbnail-bg;\n  border: 1px solid @thumbnail-border;\n  border-radius: @thumbnail-border-radius;\n  .transition(all .2s ease-in-out);\n\n  // Keep them at most 100% wide\n  .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n  border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n  margin-top:    @line-height-computed;\n  margin-bottom: @line-height-computed;\n  border: 0;\n  border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content\n\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n  &:active,\n  &:focus {\n    position: static;\n    width: auto;\n    height: auto;\n    margin: 0;\n    overflow: visible;\n    clip: auto;\n  }\n}\n\n\n// iOS \"clickable elements\" fix for role=\"button\"\n//\n// Fixes \"clickability\" issue (and more generally, the firing of events such as focus as well)\n// for traditionally non-focusable elements with role=\"button\"\n// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n\n[role=\"button\"] {\n  cursor: pointer;\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n  -webkit-animation: @animation;\n       -o-animation: @animation;\n          animation: @animation;\n}\n.animation-name(@name) {\n  -webkit-animation-name: @name;\n          animation-name: @name;\n}\n.animation-duration(@duration) {\n  -webkit-animation-duration: @duration;\n          animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n  -webkit-animation-timing-function: @timing-function;\n          animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n  -webkit-animation-delay: @delay;\n          animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n  -webkit-animation-iteration-count: @iteration-count;\n          animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n  -webkit-animation-direction: @direction;\n          animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n  -webkit-animation-fill-mode: @fill-mode;\n          animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n  -webkit-backface-visibility: @visibility;\n     -moz-backface-visibility: @visibility;\n          backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n          box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n  -webkit-box-sizing: @boxmodel;\n     -moz-box-sizing: @boxmodel;\n          box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n  -webkit-column-count: @column-count;\n     -moz-column-count: @column-count;\n          column-count: @column-count;\n  -webkit-column-gap: @column-gap;\n     -moz-column-gap: @column-gap;\n          column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n  word-wrap: break-word;\n  -webkit-hyphens: @mode;\n     -moz-hyphens: @mode;\n      -ms-hyphens: @mode; // IE10+\n       -o-hyphens: @mode;\n          hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  // Firefox\n  &::-moz-placeholder {\n    color: @color;\n    opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n  }\n  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n  -webkit-transform: scale(@ratio);\n      -ms-transform: scale(@ratio); // IE9 only\n       -o-transform: scale(@ratio);\n          transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n  -webkit-transform: scale(@ratioX, @ratioY);\n      -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n       -o-transform: scale(@ratioX, @ratioY);\n          transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n  -webkit-transform: scaleX(@ratio);\n      -ms-transform: scaleX(@ratio); // IE9 only\n       -o-transform: scaleX(@ratio);\n          transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n  -webkit-transform: scaleY(@ratio);\n      -ms-transform: scaleY(@ratio); // IE9 only\n       -o-transform: scaleY(@ratio);\n          transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n  -webkit-transform: skewX(@x) skewY(@y);\n      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n       -o-transform: skewX(@x) skewY(@y);\n          transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n  -webkit-transform: translate(@x, @y);\n      -ms-transform: translate(@x, @y); // IE9 only\n       -o-transform: translate(@x, @y);\n          transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n  -webkit-transform: translate3d(@x, @y, @z);\n          transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees); // IE9 only\n       -o-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n  -webkit-transform: rotateX(@degrees);\n      -ms-transform: rotateX(@degrees); // IE9 only\n       -o-transform: rotateX(@degrees);\n          transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n  -webkit-transform: rotateY(@degrees);\n      -ms-transform: rotateY(@degrees); // IE9 only\n       -o-transform: rotateY(@degrees);\n          transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n  -webkit-perspective: @perspective;\n     -moz-perspective: @perspective;\n          perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n  -webkit-perspective-origin: @perspective;\n     -moz-perspective-origin: @perspective;\n          perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n  -webkit-transform-origin: @origin;\n     -moz-transform-origin: @origin;\n      -ms-transform-origin: @origin; // IE9 only\n          transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n  -webkit-transition: @transition;\n       -o-transition: @transition;\n          transition: @transition;\n}\n.transition-property(@transition-property) {\n  -webkit-transition-property: @transition-property;\n          transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n  -webkit-transition-delay: @transition-delay;\n          transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n  -webkit-transition-duration: @transition-duration;\n          transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n  -webkit-transition-timing-function: @timing-function;\n          transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n  -webkit-transition: -webkit-transform @transition;\n     -moz-transition: -moz-transform @transition;\n       -o-transition: -o-transform @transition;\n          transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n  -webkit-user-select: @select;\n     -moz-user-select: @select;\n      -ms-user-select: @select; // IE10+\n          user-select: @select;\n}\n","//\n// Variables\n// --------------------------------------------------\n// Bootstrap overrides and PatternFly-specific variables\n\n// Sass compass/sprockets asset helper flag\n// ----------------------\n@pf-sass-asset-helper:                                              false;\n\n// PatternFly-specific\n// -------------------\n@import \"color-variables.less\";\n\n@applauncher-pf-dropdown-menu-border-width:                         1px;\n@applauncher-pf-dropdown-menu-padding:                              9px;\n@applauncher-pf-dropdown-menu-width:                                220px;\n@applauncher-pf-dropdown-toggle-padding:                            7px 10px;\n@applauncher-pf-icon-padding-right:                                 4px;\n@applauncher-pf-menu-link-border-color:                             @color-pf-white;\n@applauncher-pf-menu-link-border-color-hover:                       @color-pf-black-400;\n@applauncher-pf-menu-link-border-width:                             1px;\n@applauncher-pf-menu-link-color:                                    @color-pf-black-300;\n@applauncher-pf-menu-link-color-disabled:                           @color-pf-black-500;\n@applauncher-pf-menu-link-color-hover:                              @color-pf-blue-400;\n@applauncher-pf-menu-link-padding:                                  7px 10px;\n@applauncher-pf-menu-link-padding-block-list:                       15px 10px;\n@applauncher-pf-menu-link-background-color-hover:                   @color-pf-black-150;\n@applauncher-pf-menu-link-shadow:                                   @color-pf-black-300;\n@applauncher-pf-menu-link-icon-font-size:                           2em;\n@applauncher-pf-menu-link-icon-width:                               ((9 * @applauncher-pf-menu-link-icon-font-size) / 14); //Numbers to imitate fa-fw class\n@bootstrap-switch-handle-default-bg-color:                          @color-pf-black-100;\n@bootstrap-treeview-highlight-color:                                @color-pf-blue-300;\n@btn-default-bg-img-start:                                          @color-pf-black-100;\n@btn-default-bg-img-stop:                                           @color-pf-black-200;\n@btn-xs-font-weight:                                                400;\n@card-pf-accented-border-top-color:                                 @color-pf-blue-300;\n@card-pf-aggregate-status-title-icon-color:                         @color-pf-black-900;\n@card-pf-bg-color:                                                  @color-pf-white;\n@card-pf-border-color:                                              @color-pf-black-300;\n@card-pf-border-top-color:                                          transparent;\n@card-pf-container-bg-color:                                        @color-pf-black-150;\n@card-pf-footer-bg-color:                                           @color-pf-black-100;\n@card-pf-selected-border-color:                                     @color-pf-blue-300;\n@contextselector-pf-margin-left:                                    10px;\n@contextselector-pf-nav-item-iconic-padding:                        23px 20px 18px 10px;\n@contextselector-title-width-mobile:                                170px;\n@contextselector-title-width-desktop:                               210px;\n@contextselector-pf-form-group-margin:                              0 5px 5px 5px;\n@contextselector-pf-list-max-height:                                200px;\n@contextselector-pf-list-li-padding:                                1px 10px;\n@contextselector-pf-list-li-border-width:                           1px 0;\n@donut-font-size-big:                                               30px;\n@drawer-pf-top-vertical:                                            58px;\n@drawer-pf-top-horizontal:                                          26px;\n@dropdown-divider-margin:                                           4px 1px;\n@dropdown-link-active-border-color:                                 @color-pf-blue;\n@dropdown-link-hover-border-color:                                  @color-pf-blue-100;\n@dropdown-link-focus-color:                                         @color-pf-white;\n@flyout-transition-pf:                                              all 200ms cubic-bezier(.35, 0, .25, 1);\n@font-family-monospace:                                             Menlo, Monaco, Consolas, monospace;\n@font-path:                                                         \"../fonts\";\n@footer-pf-bg-color:                                                @color-pf-black;\n@footer-pf-padding-left:                                            25px;\n@footer-pf-padding-top:                                             10px;\n@footer-pf-height:                                                  37px;\n@gray-light-pf:                                                     @color-pf-black-400;\n@gray-pf:                                                           @color-pf-black-700;\n@icon-font-name-fa:                                                 \"FontAwesome\";\n@icon-font-name-pf:                                                 \"PatternFlyIcons-webfont\";\n@icon-prefix:                                                       pficon;\n@img-bg-login:                                                      \"bg-login.jpg\";\n@img-path:                                                          \"../img\";\n@img-spinner:                                                       \"spinner.gif\";\n@img-spinner-inverse:                                               \"spinner-inverse.gif\";\n@img-spinner-inverse-lg:                                            \"spinner-inverse-lg.gif\";\n@img-spinner-inverse-sm:                                            \"spinner-inverse-sm.gif\";\n@img-spinner-inverse-xs:                                            \"spinner-inverse-xs.gif\";\n@img-spinner-lg:                                                    \"spinner-lg.gif\";\n@img-spinner-sm:                                                    \"spinner-sm.gif\";\n@img-spinner-xs:                                                    \"spinner-xs.gif\";\n@input-border-hover:                                                @color-pf-blue-200;\n@input-border-focus:                                                @color-pf-blue-400;\n@list-pf-border-color:                                              @color-pf-black-200;\n@list-pf-active-border-color:                                       @color-pf-black-400;\n@list-pf-header-background-color:                                   @color-pf-black-200;\n@list-pf-hover-background-color:                                    @color-pf-blue-25;\n@list-pf-main-content-width:                                        70%; // sets the proportional width of the main content vs the additional content\n@list-pf-padding:                                                   20px;\n@list-view-accented-border:                                         @color-pf-blue-300;\n@list-view-active-bg:                                               @color-pf-blue-50;\n@list-view-active-border:                                           @color-pf-black-400;\n@list-view-divider:                                                 @color-pf-black-300;\n@list-view-hover-bg:                                                @color-pf-blue-25;\n@list-group-top-border:                                             @color-pf-black-200;\n@login-bg-color:                                                    @color-pf-black;\n@login-container-bg-color-rgba:                                     fade(@color-pf-white, 5.5%);\n@modal-about-pf-bg-img:                                             \"bg-modal-about-pf.png\";\n@modal-title-padding-horizontal:                                    18px;\n@modal-title-padding-vertical:                                      10px;\n@navbar-pf-active-color:                                            @color-pf-black-150;\n@navbar-pf-alt-active-color:                                        @color-pf-white;\n@navbar-pf-alt-bg-color:                                            @color-pf-black;\n@navbar-pf-alt-bg-img:                                              \"bg-navbar-pf-alt.svg\";\n@navbar-pf-bg-color:                                                @color-pf-black;\n@navbar-pf-border-color:                                            @color-pf-blue-300;\n@navbar-pf-color:                                                   @color-pf-black-300;\n@navbar-pf-height:                                                  60px;\n@navbar-pf-icon-bar-bg-color:                                       @color-pf-white;\n@navbar-pf-navbar-navbar-brand-min-width:                           270px;\n@navbar-pf-navbar-navbar-brand-padding:                             8px 0 7px;\n@navbar-pf-navbar-navbar-persistent-bg-color:                       @color-pf-black-150;\n@navbar-pf-navbar-navbar-persistent-border-color:                   @color-pf-black-300;\n@navbar-pf-vertical-active-color:                                   @color-pf-white;\n@navbar-pf-vertical-bg-color:                                       #1d1d1d;\n@navbar-pf-vertical-bg-repeat:                                      no-repeat;\n@navbar-pf-vertical-bg-size:                                        auto 100%;\n@navbar-pf-vertical-border-color:                                   @color-pf-blue-300;\n@navbar-pf-vertical-border-style:                                   solid;\n@navbar-pf-vertical-border-width:                                   2px;\n@navbar-pf-vertical-color:                                          @color-pf-black-300;\n@navbar-pf-vertical-height:                                         60px;\n@navbar-pf-vertical-icon-bar-bg-color:                              @color-pf-white;\n@navbar-pf-vertical-navbar-brand-color:                             @color-pf-white;\n@navbar-pf-vertical-navbar-brand-icon-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-margin:                            0 0 0 25px;\n@navbar-pf-vertical-navbar-brand-min-height:                        35px;\n@navbar-pf-vertical-navbar-brand-max-height:                        35px;\n@navbar-pf-vertical-navbar-brand-line-height:                       34px;\n@navbar-pf-vertical-navbar-brand-name-breakpoint:                   480px;\n@navbar-pf-vertical-navbar-brand-name-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-padding:                           11px 0 12px;\n@navbar-pf-vertical-navbar-toggle-margin:                           13px 15px;\n@navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg:                @color-pf-white;\n@navbar-pf-vertical-nav-item-iconic-padding:                        21px 12px;\n@nav-pf-container-transition-period:                                250ms;\n@nav-pf-menu-transition-period:                                     100ms;\n@nav-pf-vertical-active-color:                                      @color-pf-white;\n@nav-pf-vertical-active-before-color:                               @color-pf-blue-300;\n@nav-pf-vertical-active-bg-color:                                   @color-pf-black-800;\n@nav-pf-vertical-active-border-color:                               @color-pf-black-900;\n@nav-pf-vertical-active-font-weight:                                600;\n@nav-pf-vertical-active-icon-color:                                 @color-pf-blue-300;\n@nav-pf-vertical-badge-color:                                       @color-pf-white;\n@nav-pf-vertical-badge-bg-color:                                    @color-pf-black-900;\n@nav-pf-vertical-bg-color:                                          @color-pf-black-900;\n@nav-pf-vertical-border-color:                                      @color-pf-black-900;\n@nav-pf-vertical-collapsed-width:                                   75px;\n@nav-pf-vertical-color:                                             @color-pf-black-300;\n@nav-pf-vertical-font-weight:                                       400;\n@nav-pf-vertical-icon-color:                                        @color-pf-black-600;\n@nav-pf-vertical-icon-width:                                        24px;\n@nav-pf-vertical-item-border-color:                                 @color-pf-black;\n@nav-pf-vertical-link-height:                                       63px;\n@nav-pf-vertical-link-padding:                                      17px 20px 17px 25px;\n@nav-pf-vertical-secondary-active-color:                            @color-pf-white;\n@nav-pf-vertical-secondary-active-bg-color:                         @color-pf-black-700;\n@nav-pf-vertical-secondary-active-icon-color:                       @color-pf-blue-300;\n@nav-pf-vertical-secondary-badge-color:                             @color-pf-white;\n@nav-pf-vertical-secondary-badge-bg-color:                          @color-pf-black-900;\n@nav-pf-vertical-secondary-border-color:                            @color-pf-blue-300;\n@nav-pf-vertical-secondary-color:                                   @color-pf-white;\n@nav-pf-vertical-secondary-header-margin:                           18px 20px 10px 20px;\n@nav-pf-vertical-secondary-indicator-color:                         @color-pf-black-600;\n@nav-pf-vertical-secondary-indicator-padding:                       14px 0;\n@nav-pf-vertical-secondary-item-color:                              @color-pf-black-300;\n@nav-pf-vertical-secondary-item-padding:                            0 0 5px 0;\n@nav-pf-vertical-secondary-link-height:                             63px;\n@nav-pf-vertical-secondary-link-padding:                            4px 0 2px 0;\n@nav-pf-vertical-secondary-list-header-margin:                      30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-active-color:                             @color-pf-white;\n@nav-pf-vertical-tertiary-active-bg-color:                          @color-pf-black-800;\n@nav-pf-vertical-tertiary-indicator-padding:                        0;\n@nav-pf-vertical-tertiary-bg-color:                                 @color-pf-black-700;\n@nav-pf-vertical-tertiary-color:                                    #fff;\n@nav-pf-vertical-tertiary-header-margin:                            18px 20px 10px 20px;\n@nav-pf-vertical-tertiary-list-header-margin:                       30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-item-padding:                             0 0 5px 0;\n@nav-pf-vertical-tertiary-item-color:                               @color-pf-black-300;\n@nav-pf-vertical-tertiary-link-margin:                              0 20px 0 20px;\n@nav-pf-vertical-tertiary-link-padding:                             4px 0 2px 0;\n@nav-pf-vertical-tertiary-badge-color:                              @color-pf-white;\n@nav-pf-vertical-tertiary-badge-bg-color:                           @color-pf-black-900;\n@nav-pf-vertical-width:                                             200px;\n@toast-notification-top:                                            80px;\n@pagination-padding-small-vertical:                                 0;\n@panel-default-border-color:                                        @color-pf-black-400;\n@pficon-var-add-circle-o:                                           \"\\e61b\";\n@pficon-var-applications:                                           \"\\e936\";\n@pficon-var-arrow:                                                  \"\\e929\";\n@pficon-var-asleep:                                                 \"\\e925\";\n@pficon-var-automation:                                             \"\\e937\";\n@pficon-var-blueprint:                                              \"\\e915\";\n@pficon-var-build:                                                  \"\\e902\";\n@pficon-var-builder-image:                                          \"\\e800\";\n@pficon-var-bundle:                                                 \"\\e918\";\n@pficon-var-catalog:                                                \"\\e939\";\n@pficon-var-chat:                                                   \"\\e928\";\n@pficon-var-close:                                                  \"\\e60b\";\n@pficon-var-cloud-security:                                         \"\\e903\";\n@pficon-var-cloud-tenant:                                           \"\\e904\";\n@pficon-var-cluster:                                                \"\\e620\";\n@pficon-var-connected:                                              \"\\e938\";\n@pficon-var-container-node:                                         \"\\e621\";\n@pficon-var-cpu:                                                    \"\\e927\";\n@pficon-var-degraded:                                               \"\\e91b\";\n@pficon-var-delete:                                                 \"\\e611\";\n@pficon-var-disconnected:                                           \"\\e93c\";\n@pficon-var-domain:                                                 \"\\e919\";\n@pficon-var-edit:                                                   \"\\e60a\";\n@pficon-var-enhancement:                                            \"\\e93a\";\n@pficon-var-enterprise:                                             \"\\e906\";\n@pficon-var-equalizer:                                              \"\\e610\";\n@pficon-var-error-circle-o:                                         \"\\e926\";\n@pficon-var-export:                                                 \"\\e616\";\n@pficon-var-flag:                                                   \"\\e603\";\n@pficon-var-flavor:                                                 \"\\e907\";\n@pficon-var-filter:                                                 \"\\e943\";\n@pficon-var-folder-close:                                           \"\\e607\";\n@pficon-var-folder-open:                                            \"\\e606\";\n@pficon-var-help:                                                   \"\\e605\";\n@pficon-var-history:                                                \"\\e93b\";\n@pficon-var-home:                                                   \"\\e618\";\n@pficon-var-image:                                                  \"\\e61f\";\n@pficon-var-import:                                                 \"\\e615\";\n@pficon-var-info:                                                   \"\\e92b\";\n@pficon-var-infrastructure:                                         \"\\e93d\";\n@pficon-var-integration:                                            \"\\e948\";\n@pficon-var-in-progress:                                            \"\\e92c\";\n@pficon-var-key:                                                    \"\\e924\";\n@pficon-var-kubernetes:                                             \"\\e627\";\n@pficon-var-locked:                                                 \"\\e923\";\n@pficon-var-maintenance:                                            \"\\e92d\";\n@pficon-var-memory:                                                 \"\\e908\";\n@pficon-var-messages:                                               \"\\e603\";\n@pficon-var-middleware:                                             \"\\e917\";\n@pficon-var-migration:                                              \"\\e92e\";\n@pficon-var-monitoring:                                             \"\\e944\";\n@pficon-var-network:                                                \"\\e909\";\n@pficon-var-network-range:                                          \"\\e94a\";\n@pficon-var-off:                                                    \"\\e92f\";\n@pficon-var-ok:                                                     \"\\e602\";\n@pficon-var-on:                                                     \"\\e931\";\n@pficon-var-on-running:                                             \"\\e930\";\n@pficon-var-openshift:                                              \"\\e626\";\n@pficon-var-optimize:                                               \"\\e93e\";\n@pficon-var-orders:                                                 \"\\e93f\";\n@pficon-var-paused:                                                 \"\\e932\";\n@pficon-var-pending:                                                \"\\e933\";\n@pficon-var-plugged:                                                \"\\e940\";\n@pficon-var-port:                                                   \"\\e945\";\n@pficon-var-private:                                                \"\\e914\";\n@pficon-var-print:                                                  \"\\e612\";\n@pficon-var-process-automation:                                     \"\\e949\";\n@pficon-var-project:                                                \"\\e905\";\n@pficon-var-rebalance:                                              \"\\e91c\";\n@pficon-var-rebooting:                                              \"\\e934\";\n@pficon-var-regions:                                                \"\\e90a\";\n@pficon-var-registry:                                               \"\\e623\";\n@pficon-var-remove:                                                 \"\\e611\";\n@pficon-var-replicator:                                             \"\\e624\";\n@pficon-var-repository:                                             \"\\e90b\";\n@pficon-var-resource-pool:                                          \"\\e90c\";\n@pficon-var-resources-almost-empty:                                 \"\\e91d\";\n@pficon-var-resources-almost-full:                                  \"\\e912\";\n@pficon-var-resources-full:                                         \"\\e92a\";\n@pficon-var-restart:                                                \"\\e617\";\n@pficon-var-route:                                                  \"\\e625\";\n@pficon-var-running:                                                \"\\e614\";\n@pficon-var-save:                                                   \"\\e601\";\n@pficon-var-satellite:                                              \"\\e94b\";\n@pficon-var-screen:                                                 \"\\e600\";\n@pficon-var-search:                                                 \"\\e921\";\n@pficon-var-security:                                               \"\\e946\";\n@pficon-var-server:                                                 \"\\e90d\";\n@pficon-var-server-group:                                           \"\\e91a\";\n@pficon-var-service:                                                \"\\e61e\";\n@pficon-var-service-catalog:                                        \"\\e941\";\n@pficon-var-services:                                               \"\\e947\";\n@pficon-var-settings:                                               \"\\e610\";\n@pficon-var-spinner:                                                \"\\e614\";\n@pficon-var-spinner2:                                               \"\\e613\";\n@pficon-var-storage-domain:                                         \"\\e90e\";\n@pficon-var-template:                                               \"\\e94c\";\n@pficon-var-tenant:                                                 \"\\e916\";\n@pficon-var-thumb-tack-o:                                           \"\\e920\";\n@pficon-var-topology:                                               \"\\e608\";\n@pficon-var-trend-down:                                             \"\\e900\";\n@pficon-var-trend-up:                                               \"\\e901\";\n@pficon-var-unlocked:                                               \"\\e922\";\n@pficon-var-unplugged:                                              \"\\e942\";\n@pficon-var-unknown:                                                \"\\e935\";\n@pficon-var-user:                                                   \"\\e91e\";\n@pficon-var-users:                                                  \"\\e91f\";\n@pficon-var-vcenter:                                                \"\\e94d\";\n@pficon-var-virtual-machine:                                        \"\\e90f\";\n@pficon-var-volume:                                                 \"\\e910\";\n@pficon-var-warning-triangle-o:                                     \"\\e913\";\n@pficon-var-zone:                                                   \"\\e911\";\n@progress-description-label-width:                                  85px;\n@sidebar-pf-bg:                                                     @color-pf-black-100;\n@sidebar-pf-border-color:                                           @color-pf-black-300;\n@skiplink-pf-top:                                                   12px;\n@skiplink-pf-left:                                                  10px;\n@table-border-hover:                                                @color-pf-blue-200;\n@table-cell-padding-bottom:                                         3px;\n@table-cell-padding-top:                                            2px;\n// Reference variables declared in block above\n@bootstrap-switch-bg-color-start:                                   @btn-default-bg-img-start;\n@bootstrap-switch-bg-color-stop:                                    @btn-default-bg-img-stop;\n@fa-font-path:                                                      @font-path;\n@navbar-pf-navbar-header-border-color:                              lighten(@navbar-pf-bg-color, 15%);\n@navbar-pf-navbar-nav-active-active-bg-color:                       lighten(@navbar-pf-bg-color, 8%);\n@navbar-pf-navbar-nav-active-active-open-bg-color:                  lighten(@navbar-pf-bg-color, 11%);\n@navbar-pf-navbar-nav-active-bg-color:                              lighten(@navbar-pf-bg-color, 12.5%);\n@navbar-pf-navbar-primary-bg-color-start:                           lighten(@navbar-pf-bg-color, 10%); // #474C50\n@navbar-pf-navbar-primary-bg-color-stop:                            @navbar-pf-bg-color; // #383F43\n@navbar-pf-navbar-utility-border-color:                             lighten(@navbar-pf-bg-color, 15.5%);\n@navbar-pf-navbar-utility-color:                                    @navbar-pf-color;\n@navbar-pf-navbar-utility-hover-bg-color:                           lighten(@navbar-pf-bg-color, 12.5%);\n@nav-pf-vertical-secondary-bg-color:                                @nav-pf-vertical-active-bg-color;\n@nav-tabs-color:                                                    @gray-pf;\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-bg-color-start:                   lighten(@navbar-pf-navbar-primary-bg-color-start, 8.5%);\n@navbar-pf-navbar-primary-context-bg-color-stop:                    lighten(@navbar-pf-navbar-primary-bg-color-stop, 11%);\n@navbar-pf-navbar-primary-hover-bg-color-start:                     lighten(@navbar-pf-navbar-primary-bg-color-start, 10%);\n@navbar-pf-navbar-primary-hover-bg-color-stop:                      lighten(@navbar-pf-navbar-primary-bg-color-stop, 10%);\n@navbar-pf-navbar-primary-hover-border-color:                       lighten(@navbar-pf-navbar-header-border-color, 20%);\n@navbar-pf-navbar-primary-context-border-color:                     lighten(@navbar-pf-navbar-header-border-color, 8%);\n@navbar-pf-navbar-primary-context-border-top-color:                 lighten(@navbar-pf-navbar-header-border-color, 7%);\n@navbar-pf-navbar-utility-hover-border-color:                       lighten(@navbar-pf-navbar-utility-border-color, 5%);\n@navbar-pf-navbar-utility-open-bg-color:                            lighten(@navbar-pf-navbar-utility-hover-bg-color, 7.5%);\n@navbar-pf-navbar-utility-open-border-color:                        lighten(@navbar-pf-navbar-utility-hover-border-color, 5%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-active-bg-color-start:                    lighten(@navbar-pf-navbar-primary-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-active-bg-color-stop:                     lighten(@navbar-pf-navbar-primary-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-active-border-color:                      lighten(@navbar-pf-navbar-primary-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-start:             lighten(@navbar-pf-navbar-primary-context-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-stop:              lighten(@navbar-pf-navbar-primary-context-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-hover-border-color:               lighten(@navbar-pf-navbar-primary-context-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-border-top-color:           lighten(@navbar-pf-navbar-primary-context-border-top-color, 6%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-active-bg-color-start:            lighten(@navbar-pf-navbar-primary-context-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-active-bg-color-stop:             lighten(@navbar-pf-navbar-primary-context-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-active-border-color:              lighten(@navbar-pf-navbar-primary-context-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-active-border-top-color:          lighten(@navbar-pf-navbar-primary-context-hover-border-top-color, 6%);\n// References variable declared in block above\n@navbar-pf-navbar-primary-context-active-border-right-color:        @navbar-pf-navbar-primary-context-active-border-color;\n@slider-line-height:                                                16px;\n@slider-horizontal-width:                                           100%;\n@slider-primary-top:                                                @color-pf-black-100;\n@slider-primary-bottom:                                             @color-pf-black-200;\n@slider-secondary-top:                                              @color-pf-blue-400;\n@slider-secondary-bottom:                                           @color-pf-blue-300;\n\n// Alternate navigation layout - Kept for backwards compatibility\n// --------------------------------------------------------------\n@footer-pf-alt-bg-color:                                            @footer-pf-bg-color;\n@footer-pf-alt-padding-left:                                        @footer-pf-padding-left;\n@footer-pf-alt-padding-top:                                         @footer-pf-padding-top;\n@footer-pf-alt-height:                                              @footer-pf-height;\n@img-path-alt:                                                      @img-path;\n@nav-pf-vertical-alt-active-color:                                  @color-pf-blue-300;\n@nav-pf-vertical-alt-bg-color:                                      @color-pf-white;\n@nav-pf-vertical-alt-badge-color:                                   @color-pf-white;\n@nav-pf-vertical-alt-border-color:                                  @sidebar-pf-border-color;\n@nav-pf-vertical-alt-collapsed-width:                               75px;\n@nav-pf-vertical-alt-link-height:                                   63px;\n@nav-pf-vertical-alt-link-padding:                                  17px 20px 17px 25px;\n@nav-pf-vertical-alt-width:                                         250px;\n@navbar-pf-alt-bg-repeat:                                           @navbar-pf-vertical-bg-repeat;\n@navbar-pf-alt-bg-size:                                             @navbar-pf-vertical-bg-size;\n@navbar-pf-alt-border-color:                                        @navbar-pf-vertical-border-color;\n@navbar-pf-alt-border-style:                                        @navbar-pf-vertical-border-style;\n@navbar-pf-alt-border-width:                                        @navbar-pf-vertical-border-width;\n@navbar-pf-alt-color:                                               @navbar-pf-vertical-color;\n@navbar-pf-alt-height:                                              @navbar-pf-vertical-height;\n@navbar-pf-alt-nav-item-iconic-padding:                             @navbar-pf-vertical-nav-item-iconic-padding;\n@navbar-pf-alt-navbar-brand-color:                                  @navbar-pf-vertical-navbar-brand-color;\n@navbar-pf-alt-navbar-brand-icon-margin:                            @navbar-pf-vertical-navbar-brand-icon-margin;\n@navbar-pf-alt-navbar-brand-margin:                                 @navbar-pf-vertical-navbar-brand-margin;\n@navbar-pf-alt-navbar-brand-min-height:                             @navbar-pf-vertical-navbar-brand-min-height;\n@navbar-pf-alt-navbar-brand-name-breakpoint:                        @navbar-pf-vertical-navbar-brand-name-breakpoint;\n@navbar-pf-alt-navbar-brand-name-margin:                            @navbar-pf-vertical-navbar-brand-name-margin;\n@navbar-pf-alt-navbar-brand-padding:                                @navbar-pf-vertical-navbar-brand-padding;\n@navbar-pf-alt-navbar-toggle-margin:                                @navbar-pf-vertical-navbar-toggle-margin;\n@navbar-pf-alt-navbar-toggle-icon-bar-hover-bg:                     @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n\n// Login page\n// -------------------\n@login-pf-brand-margin-top:                                               20px;\n@login-pf-brand-desktop-margin-top:                                       62px;\n@login-pf-page-header-margin-bottom:                                      20px;\n@login-pf-page-header-desktop-margin-bottom:                              40px;\n@login-pf-page-header-paragraph-margin-top:                               20px;\n@login-pf-card-pf-padding:                                 10px 20px 30px 20px;\n@login-pf-card-pf-desktop-padding:                         20px 40px 30px 40px;\n@login-pf-card-pf-max-width:                                             840px;\n@login-pf-checkbox-label-margin-bottom:                                   15px;\n@login-pf-dropdown-toggle-padding-right:                                  15px;\n@login-pf-btn-primary-margin-top:                                         40px;\n@login-pf-header-margin-bottom:                                           20px;\n@login-pf-header-desktop-margin-bottom:                                   30px;\n@login-pf-signup-margin-top:                                              40px;\n@login-pf-signup-a-margin-left:                                           10px;\n@login-pf-page-footer-links-margin-top:                                   60px;\n@login-pf-page-footer-links-li-margin-right:                              20px;\n@login-pf-page-footer-sso-margin-top:                                     40px;\n@login-pf-page-footer-sso-logos-li-margin:                                5px;\n@login-pf-page-accounts-margin:                                           20px;\n@login-pf-accounts-section-heading-margin-top:                            30px;\n@login-pf-accounts-section-heading-margin-bottom:                         30px;\n@login-pf-accounts-section-heading-desktop-margin-bottom:                 15px;\n@login-pf-accounts-section-heading-desktop-padding-right:                 40px;\n@login-pf-accounts-section-heading-desktop-padding-left:                  40px;\n@login-pf-accounts-link-margin-bottom:                                    15px;\n@login-pf-accounts-link-img-margin-right:                                 10px;\n@login-pf-accounts-link-a-padding:                                        7px;\n@login-pf-accounts-more-caret-margin-left:                                5px;\n@login-pf-social-margin:                                           40px 0 0 0;\n\n\n// Bootstrap overrides\n// -------------------\n@alert-info-border:                                                 @color-pf-black-500;\n@alert-link-font-weight:                                            500;\n@alert-padding:                                                     11px;\n@body-bg:                                                           @color-pf-white;\n@border-radius-base:                                                1px;\n@brand-danger:                                                      @color-pf-red;\n@brand-info:                                                        @color-pf-blue-500;\n@brand-primary:                                                     @color-pf-blue-300;\n@brand-success:                                                     @color-pf-green;\n@brand-warning:                                                     @color-pf-orange;\n@breadcrumb-bg:                                                     transparent;\n@breadcrumb-separator:                                              \"\\f105\";\n@bs-datetimepicker-timepicker-font-size:                            1em;\n@bs-datetimepicker-btn-hover-bg:                                    transparent;\n@btn-danger-bg:                                                     @color-pf-red-200;\n@btn-danger-border:                                                 @color-pf-red-300;\n@btn-default-border:                                                @color-pf-black-400;\n@btn-font-weight:                                                   600;\n@btn-primary-bg:                                                    @color-pf-blue;\n@btn-primary-border:                                                @color-pf-blue-500;\n@caret-width-base:                                                  0;\n@code-bg:                                                           @color-pf-blue-50;\n@dropdown-border:                                                   @color-pf-black-400;\n@dropdown-divider-bg:                                               @color-pf-black-200;\n@dropdown-link-active-color:                                        @color-pf-white;\n@dropdown-link-hover-bg:                                            @color-pf-blue-50;\n@font-family-base:                                                  \"Open Sans\", Helvetica, Arial, sans-serif;\n@font-size-base:                                                    12px;\n@gray-dark:                                                         lighten(@color-pf-black, 20%);   // #333\n@gray-darker:                                                       lighten(@color-pf-black, 13.5%); // #222\n@gray-light:                                                        lighten(@color-pf-black, 60%);   // #999\n@gray-lighter:                                                      lighten(@color-pf-black, 93.5%); // #eee\n@grid-gutter-width:                                                 40px;\n@icon-font-path:                                                    \"../fonts/\";\n@input-bg-disabled:                                                 @color-pf-black-150;\n@input-border:                                                      @color-pf-black-400;\n@line-height-base:                                                  1.66666667; // 20/12\n@link-color:                                                        @color-pf-blue;\n@list-group-border:                                                 @color-pf-black-150;\n@list-group-border-radius:                                          0;\n@list-group-hover-bg:                                               @color-pf-blue-50;\n@link-hover-color:                                                  @color-pf-blue-500;\n@nav-tabs-border-color:                                             @color-pf-black-200;\n@nav-tabs-link-hover-border-color:                                  transparent;\n@padding-large-horizontal:                                          10px;\n@padding-base-horizontal:                                           6px;\n@padding-base-vertical:                                             2px;\n@padding-large-vertical:                                            6px;\n@pager-border-radius:                                               0;\n@pager-disabled-color:                                              @color-pf-black-500;\n@pagination-bg:                                                     @color-pf-black-150;\n@pagination-border:                                                 @color-pf-black-400;\n@pagination-hover-bg:                                               @color-pf-black-200;\n@panel-inner-border:                                                @color-pf-black-300;\n@popover-arrow-color:                                               @color-pf-white;\n@popover-arrow-outer-color:                                         @color-pf-black-400;\n@popover-border-color:                                              @color-pf-black-400;\n@popover-max-width:                                                 220px;\n@popover-title-bg:                                                  @color-pf-black-150;\n@pre-bg:                                                            @color-pf-black-100;\n@progress-bg:                                                       @color-pf-black-200;\n@table-bg-accent:                                                   @color-pf-black-150;\n@table-bg-hover:                                                    @color-pf-blue-50;\n@table-border-color:                                                @color-pf-black-300;\n@table-cell-padding:                                                10px;\n@tooltip-arrow-width:                                               8px;\n@tooltip-bg:                                                        @color-pf-black-800;\n@tooltip-max-width:                                                 220px;\n// Reference variables declared in block above\n@alert-danger-bg:                                                   lighten(@color-pf-red-100, 55%);\n@alert-danger-border:                                               @brand-danger;\n@alert-danger-text:                                                 @gray-dark;\n@alert-info-bg:                                                     @color-pf-black-150;\n@alert-info-text:                                                   @gray-dark;\n@alert-success-bg:                                                  lighten(@color-pf-green-100, 8%);\n@alert-success-border:                                              @brand-success;\n@alert-success-text:                                                @gray-dark;\n@alert-warning-bg:                                                  lighten(@color-pf-orange-100, 8%);\n@alert-warning-border:                                              @brand-warning;\n@alert-warning-text:                                                @gray-dark;\n@badge-border-radius:                                               @border-radius-base;\n@border-radius-large:                                               @border-radius-base;\n@border-radius-small:                                               @border-radius-base;\n@breadcrumb-active-color:                                           @gray-pf;\n@breadcrumb-color:                                                  @gray-pf;\n@btn-default-bg:                                                    @gray-lighter;\n@btn-default-color:                                                 @gray-pf;\n@caret-width-large:                                                 @caret-width-base;\n@code-color:                                                        @color-pf-blue-600;\n@dropdown-fallback-border:                                          @dropdown-border;\n@dropdown-link-active-bg:                                           @link-color;\n@dropdown-link-hover-color:                                         @gray-pf;\n@font-size-h1:                                                      ceil((@font-size-base * 2)); // ~24px\n@font-size-h2:                                                      ceil((@font-size-base * 1.8333)); // ~22px\n@font-size-h3:                                                      ceil((@font-size-base * 1.3333)); // ~16px\n@font-size-h5:                                                      ceil((@font-size-base * 1.0833)); // ~13px\n@font-size-large:                                                   ceil((@font-size-base * 1.1666)); // ~14px\n@font-size-small:                                                   ceil((@font-size-base * .9166)); // ~11px\n@input-color:                                                       @gray-dark;\n@nav-tabs-active-link-hover-color:                                  @link-color;\n@nav-tabs-justified-link-border-color:                              @nav-tabs-border-color;\n@nav-pf-vertical-badges-width:                                      (@nav-pf-vertical-width + 50px);\n@padding-small-horizontal:                                          @padding-base-horizontal;\n@padding-small-vertical:                                            @padding-base-vertical;\n@panel-group-pf-danger-heading-bg:                                  @alert-danger-bg;\n@panel-group-pf-primary-heading-bg:                                 lighten(@brand-primary, 38%);\n@panel-group-pf-success-heading-bg:                                 @alert-success-bg;\n@panel-group-pf-warning-heading-bg:                                 @alert-warning-bg;\n@panel-group-pf-info-heading-bg:                                    lighten(desaturate(spin(@brand-info, 13), 45), 60%);\n@panel-danger-border:                                               @brand-danger;\n@panel-danger-heading-bg:                                           @brand-danger;\n@panel-info-border:                                                 @brand-info;\n@panel-info-heading-bg:                                             @brand-info;\n@panel-primary-border:                                              @brand-primary;\n@panel-primary-text:                                                @body-bg;\n@panel-success-border:                                              @brand-success;\n@panel-success-heading-bg:                                          @brand-success;\n@panel-warning-border:                                              @brand-warning;\n@panel-warning-heading-bg:                                          @brand-warning;\n@state-warning-text:                                                @brand-warning;\n@state-danger-text:                                                 @brand-danger;\n// Reference variable declared in block above\n@panel-danger-text:                                                 @panel-primary-text;\n@panel-info-text:                                                   @panel-primary-text;\n@panel-success-text:                                                @panel-primary-text;\n@panel-warning-text:                                                @panel-primary-text;\n\n// PatternFly-specific variables based on Bootstrap overides\n// ---------------------------------------------------------\n@bootstrap-switch-bg-color:                                         @btn-default-bg;\n@btn-danger-bg-img-start:                                           @brand-danger;\n@btn-danger-bg-img-stop:                                            @btn-danger-bg;\n@btn-primary-bg-img-start:                                          @brand-primary;\n@btn-primary-bg-img-stop:                                           @btn-primary-bg;\n@dropdown-link-focus-bg:                                            @link-color;\n@line-height-computed:                                              floor((@font-size-base * @line-height-base));\n@nav-pf-vertical-icon-size:                                         (@font-size-base + 8);\n@notification-badge-color:                                          @color-pf-blue-400;\n@progress-sm:                                                       (@line-height-computed - 6);\n@progress-xs:                                                       (@line-height-computed - 14);\n@syntax-1:                                                          @btn-danger-bg;\n@syntax-2:                                                          @gray-dark;\n@syntax-3:                                                          @brand-success;\n@syntax-4:                                                          @brand-info;\n@tooltip-font-size:                                                 @font-size-base;\n","// WebKit-style focus\n\n.tab-focus() {\n  // WebKit-specific. Other browsers will keep their default outline style.\n  // (Initially tried to also force default via `outline: initial`,\n  // but that seems to erroneously remove the outline in Firefox altogether.)\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\n","//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n  display: block;\n  padding: @thumbnail-padding;\n  margin-bottom: @line-height-computed;\n  line-height: @line-height-base;\n  background-color: @thumbnail-bg;\n  border: 1px solid @thumbnail-border;\n  border-radius: @thumbnail-border-radius;\n  .transition(border .2s ease-in-out);\n\n  > img,\n  a > img {\n    &:extend(.img-responsive);\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  // Add a hover state for linked versions only\n  a&:hover,\n  a&:focus,\n  a&.active {\n    border-color: @link-color;\n  }\n\n  // Image captions\n  .caption {\n    padding: @thumbnail-caption-padding;\n    color: @thumbnail-caption-color;\n  }\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n  position: relative;\n}\n\n.carousel-inner {\n  position: relative;\n  overflow: hidden;\n  width: 100%;\n\n  > .item {\n    display: none;\n    position: relative;\n    .transition(.6s ease-in-out left);\n\n    // Account for jankitude on images\n    > img,\n    > a > img {\n      &:extend(.img-responsive);\n      line-height: 1;\n    }\n\n    // WebKit CSS3 transforms for supported devices\n    @media all and (transform-3d), (-webkit-transform-3d) {\n      .transition-transform(~'0.6s ease-in-out');\n      .backface-visibility(~'hidden');\n      .perspective(1000px);\n\n      &.next,\n      &.active.right {\n        .translate3d(100%, 0, 0);\n        left: 0;\n      }\n      &.prev,\n      &.active.left {\n        .translate3d(-100%, 0, 0);\n        left: 0;\n      }\n      &.next.left,\n      &.prev.right,\n      &.active {\n        .translate3d(0, 0, 0);\n        left: 0;\n      }\n    }\n  }\n\n  > .active,\n  > .next,\n  > .prev {\n    display: block;\n  }\n\n  > .active {\n    left: 0;\n  }\n\n  > .next,\n  > .prev {\n    position: absolute;\n    top: 0;\n    width: 100%;\n  }\n\n  > .next {\n    left: 100%;\n  }\n  > .prev {\n    left: -100%;\n  }\n  > .next.left,\n  > .prev.right {\n    left: 0;\n  }\n\n  > .active.left {\n    left: -100%;\n  }\n  > .active.right {\n    left: 100%;\n  }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  width: @carousel-control-width;\n  .opacity(@carousel-control-opacity);\n  font-size: @carousel-control-font-size;\n  color: @carousel-control-color;\n  text-align: center;\n  text-shadow: @carousel-text-shadow;\n  background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug\n  // We can't have this transition here because WebKit cancels the carousel\n  // animation if you trip this while in the middle of another animation.\n\n  // Set gradients for backgrounds\n  &.left {\n    #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n  }\n  &.right {\n    left: auto;\n    right: 0;\n    #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n  }\n\n  // Hover/focus state\n  &:hover,\n  &:focus {\n    outline: 0;\n    color: @carousel-control-color;\n    text-decoration: none;\n    .opacity(.9);\n  }\n\n  // Toggles\n  .icon-prev,\n  .icon-next,\n  .glyphicon-chevron-left,\n  .glyphicon-chevron-right {\n    position: absolute;\n    top: 50%;\n    margin-top: -10px;\n    z-index: 5;\n    display: inline-block;\n  }\n  .icon-prev,\n  .glyphicon-chevron-left {\n    left: 50%;\n    margin-left: -10px;\n  }\n  .icon-next,\n  .glyphicon-chevron-right {\n    right: 50%;\n    margin-right: -10px;\n  }\n  .icon-prev,\n  .icon-next {\n    width:  20px;\n    height: 20px;\n    line-height: 1;\n    font-family: serif;\n  }\n\n\n  .icon-prev {\n    &:before {\n      content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n    }\n  }\n  .icon-next {\n    &:before {\n      content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n    }\n  }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n  position: absolute;\n  bottom: 10px;\n  left: 50%;\n  z-index: 15;\n  width: 60%;\n  margin-left: -30%;\n  padding-left: 0;\n  list-style: none;\n  text-align: center;\n\n  li {\n    display: inline-block;\n    width:  10px;\n    height: 10px;\n    margin: 1px;\n    text-indent: -999px;\n    border: 1px solid @carousel-indicator-border-color;\n    border-radius: 10px;\n    cursor: pointer;\n\n    // IE8-9 hack for event handling\n    //\n    // Internet Explorer 8-9 does not support clicks on elements without a set\n    // `background-color`. We cannot use `filter` since that's not viewed as a\n    // background color by the browser. Thus, a hack is needed.\n    // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer\n    //\n    // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n    // set alpha transparency for the best results possible.\n    background-color: #000 \\9; // IE8\n    background-color: rgba(0,0,0,0); // IE9\n  }\n  .active {\n    margin: 0;\n    width:  12px;\n    height: 12px;\n    background-color: @carousel-indicator-active-bg;\n  }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n  position: absolute;\n  left: 15%;\n  right: 15%;\n  bottom: 20px;\n  z-index: 10;\n  padding-top: 20px;\n  padding-bottom: 20px;\n  color: @carousel-caption-color;\n  text-align: center;\n  text-shadow: @carousel-text-shadow;\n  & .btn {\n    text-shadow: none; // No shadow for button elements in carousel-caption\n  }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n  // Scale up the controls a smidge\n  .carousel-control {\n    .glyphicon-chevron-left,\n    .glyphicon-chevron-right,\n    .icon-prev,\n    .icon-next {\n      width: (@carousel-control-font-size * 1.5);\n      height: (@carousel-control-font-size * 1.5);\n      margin-top: (@carousel-control-font-size / -2);\n      font-size: (@carousel-control-font-size * 1.5);\n    }\n    .glyphicon-chevron-left,\n    .icon-prev {\n      margin-left: (@carousel-control-font-size / -2);\n    }\n    .glyphicon-chevron-right,\n    .icon-next {\n      margin-right: (@carousel-control-font-size / -2);\n    }\n  }\n\n  // Show and left align the captions\n  .carousel-caption {\n    left: 20%;\n    right: 20%;\n    padding-bottom: 30px;\n  }\n\n  // Move up the indicators\n  .carousel-indicators {\n    bottom: 20px;\n  }\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n  display: @display;\n  max-width: 100%; // Part 1: Set a maximum relative to the parent\n  height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n  background-image: url(\"@{file-1x}\");\n\n  @media\n  only screen and (-webkit-min-device-pixel-ratio: 2),\n  only screen and (   min--moz-device-pixel-ratio: 2),\n  only screen and (     -o-min-device-pixel-ratio: 2/1),\n  only screen and (        min-device-pixel-ratio: 2),\n  only screen and (                min-resolution: 192dpi),\n  only screen and (                min-resolution: 2dppx) {\n    background-image: url(\"@{file-2x}\");\n    background-size: @width-1x @height-1x;\n  }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n  font-family: @headings-font-family;\n  font-weight: @headings-font-weight;\n  line-height: @headings-line-height;\n  color: @headings-color;\n\n  small,\n  .small {\n    font-weight: normal;\n    line-height: 1;\n    color: @headings-small-color;\n  }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n  margin-top: @line-height-computed;\n  margin-bottom: (@line-height-computed / 2);\n\n  small,\n  .small {\n    font-size: 65%;\n  }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n  margin-top: (@line-height-computed / 2);\n  margin-bottom: (@line-height-computed / 2);\n\n  small,\n  .small {\n    font-size: 75%;\n  }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n  margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n  margin-bottom: @line-height-computed;\n  font-size: floor((@font-size-base * 1.15));\n  font-weight: 300;\n  line-height: 1.4;\n\n  @media (min-width: @screen-sm-min) {\n    font-size: (@font-size-base * 1.5);\n  }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n  font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n  background-color: @state-warning-bg;\n  padding: .2em;\n}\n\n// Alignment\n.text-left           { text-align: left; }\n.text-right          { text-align: right; }\n.text-center         { text-align: center; }\n.text-justify        { text-align: justify; }\n.text-nowrap         { white-space: nowrap; }\n\n// Transformation\n.text-lowercase      { text-transform: lowercase; }\n.text-uppercase      { text-transform: uppercase; }\n.text-capitalize     { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n  color: @text-muted;\n}\n.text-primary {\n  .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n  .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n  .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n  .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n  .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n  // Given the contrast here, this is the only class to have its color inverted\n  // automatically.\n  color: #fff;\n  .bg-variant(@brand-primary);\n}\n.bg-success {\n  .bg-variant(@state-success-bg);\n}\n.bg-info {\n  .bg-variant(@state-info-bg);\n}\n.bg-warning {\n  .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n  .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n  padding-bottom: ((@line-height-computed / 2) - 1);\n  margin: (@line-height-computed * 2) 0 @line-height-computed;\n  border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n  margin-top: 0;\n  margin-bottom: (@line-height-computed / 2);\n  ul,\n  ol {\n    margin-bottom: 0;\n  }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n  padding-left: 0;\n  list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n  .list-unstyled();\n  margin-left: -5px;\n\n  > li {\n    display: inline-block;\n    padding-left: 5px;\n    padding-right: 5px;\n  }\n}\n\n// Description Lists\ndl {\n  margin-top: 0; // Remove browser default\n  margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n  line-height: @line-height-base;\n}\ndt {\n  font-weight: bold;\n}\ndd {\n  margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n  dd {\n    &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n  }\n\n  @media (min-width: @dl-horizontal-breakpoint) {\n    dt {\n      float: left;\n      width: (@dl-horizontal-offset - 20);\n      clear: left;\n      text-align: right;\n      .text-overflow();\n    }\n    dd {\n      margin-left: @dl-horizontal-offset;\n    }\n  }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n  cursor: help;\n  border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n  font-size: 90%;\n  .text-uppercase();\n}\n\n// Blockquotes\nblockquote {\n  padding: (@line-height-computed / 2) @line-height-computed;\n  margin: 0 0 @line-height-computed;\n  font-size: @blockquote-font-size;\n  border-left: 5px solid @blockquote-border-color;\n\n  p,\n  ul,\n  ol {\n    &:last-child {\n      margin-bottom: 0;\n    }\n  }\n\n  // Note: Deprecated small and .small as of v3.1.0\n  // Context: https://github.com/twbs/bootstrap/issues/11660\n  footer,\n  small,\n  .small {\n    display: block;\n    font-size: 80%; // back to default font-size\n    line-height: @line-height-base;\n    color: @blockquote-small-color;\n\n    &:before {\n      content: '\\2014 \\00A0'; // em dash, nbsp\n    }\n  }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n  padding-right: 15px;\n  padding-left: 0;\n  border-right: 5px solid @blockquote-border-color;\n  border-left: 0;\n  text-align: right;\n\n  // Account for citation\n  footer,\n  small,\n  .small {\n    &:before { content: ''; }\n    &:after {\n      content: '\\00A0 \\2014'; // nbsp, em dash\n    }\n  }\n}\n\n// Addresses\naddress {\n  margin-bottom: @line-height-computed;\n  font-style: normal;\n  line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n  color: @color;\n  a&:hover,\n  a&:focus {\n    color: darken(@color, 10%);\n  }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n  background-color: @color;\n  a&:hover,\n  a&:focus {\n    background-color: darken(@color, 10%);\n  }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n  font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: @code-color;\n  background-color: @code-bg;\n  border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: @kbd-color;\n  background-color: @kbd-bg;\n  border-radius: @border-radius-small;\n  box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n\n  kbd {\n    padding: 0;\n    font-size: 100%;\n    font-weight: bold;\n    box-shadow: none;\n  }\n}\n\n// Blocks of code\npre {\n  display: block;\n  padding: ((@line-height-computed - 1) / 2);\n  margin: 0 0 (@line-height-computed / 2);\n  font-size: (@font-size-base - 1); // 14px to 13px\n  line-height: @line-height-base;\n  word-break: break-all;\n  word-wrap: break-word;\n  color: @pre-color;\n  background-color: @pre-bg;\n  border: 1px solid @pre-border-color;\n  border-radius: @border-radius-base;\n\n  // Account for some code outputs that place code tags in pre tags\n  code {\n    padding: 0;\n    font-size: inherit;\n    color: inherit;\n    white-space: pre-wrap;\n    background-color: transparent;\n    border-radius: 0;\n  }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n  max-height: @pre-scrollable-max-height;\n  overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n  .container-fixed();\n\n  @media (min-width: @screen-sm-min) {\n    width: @container-sm;\n  }\n  @media (min-width: @screen-md-min) {\n    width: @container-md;\n  }\n  @media (min-width: @screen-lg-min) {\n    width: @container-lg;\n  }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n  .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n  .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n  .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n  .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n  .make-grid(lg);\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @grid-gutter-width) {\n  margin-right: auto;\n  margin-left: auto;\n  padding-left:  floor((@gutter / 2));\n  padding-right: ceil((@gutter / 2));\n  &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n  margin-left:  ceil((@gutter / -2));\n  margin-right: floor((@gutter / -2));\n  &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  float: left;\n  width: percentage((@columns / @grid-columns));\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n  margin-left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-push(@columns) {\n  left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-pull(@columns) {\n  right: percentage((@columns / @grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-sm-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-offset(@columns) {\n  @media (min-width: @screen-sm-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-push(@columns) {\n  @media (min-width: @screen-sm-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-pull(@columns) {\n  @media (min-width: @screen-sm-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-md-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-offset(@columns) {\n  @media (min-width: @screen-md-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-push(@columns) {\n  @media (min-width: @screen-md-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-pull(@columns) {\n  @media (min-width: @screen-md-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-lg-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-offset(@columns) {\n  @media (min-width: @screen-lg-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-push(@columns) {\n  @media (min-width: @screen-lg-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-pull(@columns) {\n  @media (min-width: @screen-lg-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n  // Common styles for all sizes of grid columns, widths 1-12\n  .col(@index) { // initial\n    @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n    .col((@index + 1), @item);\n  }\n  .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n    @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n    .col((@index + 1), ~\"@{list}, @{item}\");\n  }\n  .col(@index, @list) when (@index > @grid-columns) { // terminal\n    @{list} {\n      position: relative;\n      // Prevent columns from collapsing when empty\n      min-height: 1px;\n      // Inner gutter via padding\n      padding-left:  ceil((@grid-gutter-width / 2));\n      padding-right: floor((@grid-gutter-width / 2));\n    }\n  }\n  .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n  .col(@index) { // initial\n    @item: ~\".col-@{class}-@{index}\";\n    .col((@index + 1), @item);\n  }\n  .col(@index, @list) when (@index =< @grid-columns) { // general\n    @item: ~\".col-@{class}-@{index}\";\n    .col((@index + 1), ~\"@{list}, @{item}\");\n  }\n  .col(@index, @list) when (@index > @grid-columns) { // terminal\n    @{list} {\n      float: left;\n    }\n  }\n  .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n  .col-@{class}-@{index} {\n    width: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n  .col-@{class}-push-@{index} {\n    left: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n  .col-@{class}-push-0 {\n    left: auto;\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n  .col-@{class}-pull-@{index} {\n    right: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n  .col-@{class}-pull-0 {\n    right: auto;\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n  .col-@{class}-offset-@{index} {\n    margin-left: percentage((@index / @grid-columns));\n  }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n  .calc-grid-column(@index, @class, @type);\n  // next iteration\n  .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n  .float-grid-columns(@class);\n  .loop-grid-columns(@grid-columns, @class, width);\n  .loop-grid-columns(@grid-columns, @class, pull);\n  .loop-grid-columns(@grid-columns, @class, push);\n  .loop-grid-columns(@grid-columns, @class, offset);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n  background-color: @table-bg;\n}\ncaption {\n  padding-top: @table-cell-padding;\n  padding-bottom: @table-cell-padding;\n  color: @text-muted;\n  text-align: left;\n}\nth {\n  text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n  width: 100%;\n  max-width: 100%;\n  margin-bottom: @line-height-computed;\n  // Cells\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-cell-padding;\n        line-height: @line-height-base;\n        vertical-align: top;\n        border-top: 1px solid @table-border-color;\n      }\n    }\n  }\n  // Bottom align for column headings\n  > thead > tr > th {\n    vertical-align: bottom;\n    border-bottom: 2px solid @table-border-color;\n  }\n  // Remove top border from thead by default\n  > caption + thead,\n  > colgroup + thead,\n  > thead:first-child {\n    > tr:first-child {\n      > th,\n      > td {\n        border-top: 0;\n      }\n    }\n  }\n  // Account for multiple tbody instances\n  > tbody + tbody {\n    border-top: 2px solid @table-border-color;\n  }\n\n  // Nesting\n  .table {\n    background-color: @body-bg;\n  }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-condensed-cell-padding;\n      }\n    }\n  }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n  border: 1px solid @table-border-color;\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        border: 1px solid @table-border-color;\n      }\n    }\n  }\n  > thead > tr {\n    > th,\n    > td {\n      border-bottom-width: 2px;\n    }\n  }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n  > tbody > tr:nth-of-type(odd) {\n    background-color: @table-bg-accent;\n  }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n  > tbody > tr:hover {\n    background-color: @table-bg-hover;\n  }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n  position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n  float: none;\n  display: table-column;\n}\ntable {\n  td,\n  th {\n    &[class*=\"col-\"] {\n      position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n      float: none;\n      display: table-cell;\n    }\n  }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n  overflow-x: auto;\n  min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n\n  @media screen and (max-width: @screen-xs-max) {\n    width: 100%;\n    margin-bottom: (@line-height-computed * 0.75);\n    overflow-y: hidden;\n    -ms-overflow-style: -ms-autohiding-scrollbar;\n    border: 1px solid @table-border-color;\n\n    // Tighten up spacing\n    > .table {\n      margin-bottom: 0;\n\n      // Ensure the content doesn't wrap\n      > thead,\n      > tbody,\n      > tfoot {\n        > tr {\n          > th,\n          > td {\n            white-space: nowrap;\n          }\n        }\n      }\n    }\n\n    // Special overrides for the bordered tables\n    > .table-bordered {\n      border: 0;\n\n      // Nuke the appropriate borders so that the parent can handle them\n      > thead,\n      > tbody,\n      > tfoot {\n        > tr {\n          > th:first-child,\n          > td:first-child {\n            border-left: 0;\n          }\n          > th:last-child,\n          > td:last-child {\n            border-right: 0;\n          }\n        }\n      }\n\n      // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n      // chances are there will be only one `tr` in a `thead` and that would\n      // remove the border altogether.\n      > tbody,\n      > tfoot {\n        > tr:last-child {\n          > th,\n          > td {\n            border-bottom: 0;\n          }\n        }\n      }\n\n    }\n  }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n  // Exact selectors below required to override `.table-striped` and prevent\n  // inheritance to nested tables.\n  .table > thead > tr,\n  .table > tbody > tr,\n  .table > tfoot > tr {\n    > td.@{state},\n    > th.@{state},\n    &.@{state} > td,\n    &.@{state} > th {\n      background-color: @background;\n    }\n  }\n\n  // Hover states for `.table-hover`\n  // Note: this is not available for cells or rows within `thead` or `tfoot`.\n  .table-hover > tbody > tr {\n    > td.@{state}:hover,\n    > th.@{state}:hover,\n    &.@{state}:hover > td,\n    &:hover > .@{state},\n    &.@{state}:hover > th {\n      background-color: darken(@background, 5%);\n    }\n  }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n  padding: 0;\n  margin: 0;\n  border: 0;\n  // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n  // so we reset that to ensure it behaves more like a standard block element.\n  // See https://github.com/twbs/bootstrap/issues/12359.\n  min-width: 0;\n}\n\nlegend {\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin-bottom: @line-height-computed;\n  font-size: (@font-size-base * 1.5);\n  line-height: inherit;\n  color: @legend-color;\n  border: 0;\n  border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n  display: inline-block;\n  max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n  margin-bottom: 5px;\n  font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n  .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  margin: 4px 0 0;\n  margin-top: 1px \\9; // IE8-9\n  line-height: normal;\n}\n\ninput[type=\"file\"] {\n  display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n  display: block;\n  width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n  height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n  .tab-focus();\n}\n\n// Adjust output element\noutput {\n  display: block;\n  padding-top: (@padding-base-vertical + 1);\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n  display: block;\n  width: 100%;\n  height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n  padding: @padding-base-vertical @padding-base-horizontal;\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @input-color;\n  background-color: @input-bg;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid @input-border;\n  border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.\n  .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n  .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n  // Customize the `:focus` state to imitate native WebKit styles.\n  .form-control-focus();\n\n  // Placeholder\n  .placeholder();\n\n  // Unstyle the caret on `<select>`s in IE10+.\n  &::-ms-expand {\n    border: 0;\n    background-color: transparent;\n  }\n\n  // Disabled and read-only inputs\n  //\n  // HTML5 says that controls under a fieldset > legend:first-child won't be\n  // disabled if the fieldset is disabled. Due to implementation difficulty, we\n  // don't honor that edge case; we style them as disabled anyway.\n  &[disabled],\n  &[readonly],\n  fieldset[disabled] & {\n    background-color: @input-bg-disabled;\n    opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655\n  }\n\n  &[disabled],\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n\n  // Reset height for `textarea`s\n  textarea& {\n    height: auto;\n  }\n}\n\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n  -webkit-appearance: none;\n}\n\n\n// Special styles for iOS temporal inputs\n//\n// In Mobile Safari, setting `display: block` on temporal inputs causes the\n// text within the input to become vertically misaligned. As a workaround, we\n// set a pixel line-height that matches the given height of the input, but only\n// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848\n//\n// Note that as of 9.3, iOS doesn't support `week`.\n\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n  input[type=\"date\"],\n  input[type=\"time\"],\n  input[type=\"datetime-local\"],\n  input[type=\"month\"] {\n    &.form-control {\n      line-height: @input-height-base;\n    }\n\n    &.input-sm,\n    .input-group-sm & {\n      line-height: @input-height-small;\n    }\n\n    &.input-lg,\n    .input-group-lg & {\n      line-height: @input-height-large;\n    }\n  }\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n  margin-bottom: @form-group-margin-bottom;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n  position: relative;\n  display: block;\n  margin-top: 10px;\n  margin-bottom: 10px;\n\n  label {\n    min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: normal;\n    cursor: pointer;\n  }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n  position: absolute;\n  margin-left: -20px;\n  margin-top: 4px \\9;\n}\n\n.radio + .radio,\n.checkbox + .checkbox {\n  margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n  position: relative;\n  display: inline-block;\n  padding-left: 20px;\n  margin-bottom: 0;\n  vertical-align: middle;\n  font-weight: normal;\n  cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n  margin-top: 0;\n  margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n// Some special care is needed because <label>s don't inherit their parent's `cursor`.\n//\n// Note: Neither radios nor checkboxes can be readonly.\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  &[disabled],\n  &.disabled,\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n}\n// These classes are used directly on <label>s\n.radio-inline,\n.checkbox-inline {\n  &.disabled,\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n}\n// These classes are used on elements with <label> descendants\n.radio,\n.checkbox {\n  &.disabled,\n  fieldset[disabled] & {\n    label {\n      cursor: @cursor-disabled;\n    }\n  }\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n.form-control-static {\n  // Size it appropriately next to real form controls\n  padding-top: (@padding-base-vertical + 1);\n  padding-bottom: (@padding-base-vertical + 1);\n  // Remove default margin from `p`\n  margin-bottom: 0;\n  min-height: (@line-height-computed + @font-size-base);\n\n  &.input-lg,\n  &.input-sm {\n    padding-left: 0;\n    padding-right: 0;\n  }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n//\n// The `.form-group-* form-control` variations are sadly duplicated to avoid the\n// issue documented in https://github.com/twbs/bootstrap/issues/15074.\n\n.input-sm {\n  .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);\n}\n.form-group-sm {\n  .form-control {\n    height: @input-height-small;\n    padding: @padding-small-vertical @padding-small-horizontal;\n    font-size: @font-size-small;\n    line-height: @line-height-small;\n    border-radius: @input-border-radius-small;\n  }\n  select.form-control {\n    height: @input-height-small;\n    line-height: @input-height-small;\n  }\n  textarea.form-control,\n  select[multiple].form-control {\n    height: auto;\n  }\n  .form-control-static {\n    height: @input-height-small;\n    min-height: (@line-height-computed + @font-size-small);\n    padding: (@padding-small-vertical + 1) @padding-small-horizontal;\n    font-size: @font-size-small;\n    line-height: @line-height-small;\n  }\n}\n\n.input-lg {\n  .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);\n}\n.form-group-lg {\n  .form-control {\n    height: @input-height-large;\n    padding: @padding-large-vertical @padding-large-horizontal;\n    font-size: @font-size-large;\n    line-height: @line-height-large;\n    border-radius: @input-border-radius-large;\n  }\n  select.form-control {\n    height: @input-height-large;\n    line-height: @input-height-large;\n  }\n  textarea.form-control,\n  select[multiple].form-control {\n    height: auto;\n  }\n  .form-control-static {\n    height: @input-height-large;\n    min-height: (@line-height-computed + @font-size-large);\n    padding: (@padding-large-vertical + 1) @padding-large-horizontal;\n    font-size: @font-size-large;\n    line-height: @line-height-large;\n  }\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n.has-feedback {\n  // Enable absolute positioning\n  position: relative;\n\n  // Ensure icons don't overlap text\n  .form-control {\n    padding-right: (@input-height-base * 1.25);\n  }\n}\n// Feedback icon (requires .glyphicon classes)\n.form-control-feedback {\n  position: absolute;\n  top: 0;\n  right: 0;\n  z-index: 2; // Ensure icon is above input groups\n  display: block;\n  width: @input-height-base;\n  height: @input-height-base;\n  line-height: @input-height-base;\n  text-align: center;\n  pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n  width: @input-height-large;\n  height: @input-height-large;\n  line-height: @input-height-large;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n  width: @input-height-small;\n  height: @input-height-small;\n  line-height: @input-height-small;\n}\n\n// Feedback states\n.has-success {\n  .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n.has-warning {\n  .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);\n}\n.has-error {\n  .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);\n}\n\n// Reposition feedback icon if input has visible label above\n.has-feedback label {\n\n  & ~ .form-control-feedback {\n    top: (@line-height-computed + 5); // Height of the `label` and its margin\n  }\n  &.sr-only ~ .form-control-feedback {\n    top: 0;\n  }\n}\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n  display: block; // account for any element using help-block\n  margin-top: 5px;\n  margin-bottom: 10px;\n  color: lighten(@text-color, 25%); // lighten the text some for contrast\n}\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n  // Kick in the inline\n  @media (min-width: @screen-sm-min) {\n    // Inline-block all the things for \"inline\"\n    .form-group {\n      display: inline-block;\n      margin-bottom: 0;\n      vertical-align: middle;\n    }\n\n    // In navbar-form, allow folks to *not* use `.form-group`\n    .form-control {\n      display: inline-block;\n      width: auto; // Prevent labels from stacking above inputs in `.form-group`\n      vertical-align: middle;\n    }\n\n    // Make static controls behave like regular ones\n    .form-control-static {\n      display: inline-block;\n    }\n\n    .input-group {\n      display: inline-table;\n      vertical-align: middle;\n\n      .input-group-addon,\n      .input-group-btn,\n      .form-control {\n        width: auto;\n      }\n    }\n\n    // Input groups need that 100% width though\n    .input-group > .form-control {\n      width: 100%;\n    }\n\n    .control-label {\n      margin-bottom: 0;\n      vertical-align: middle;\n    }\n\n    // Remove default margin on radios/checkboxes that were used for stacking, and\n    // then undo the floating of radios and checkboxes to match.\n    .radio,\n    .checkbox {\n      display: inline-block;\n      margin-top: 0;\n      margin-bottom: 0;\n      vertical-align: middle;\n\n      label {\n        padding-left: 0;\n      }\n    }\n    .radio input[type=\"radio\"],\n    .checkbox input[type=\"checkbox\"] {\n      position: relative;\n      margin-left: 0;\n    }\n\n    // Re-override the feedback icon.\n    .has-feedback .form-control-feedback {\n      top: 0;\n    }\n  }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n  // Consistent vertical alignment of radios and checkboxes\n  //\n  // Labels also get some reset styles, but that is scoped to a media query below.\n  .radio,\n  .checkbox,\n  .radio-inline,\n  .checkbox-inline {\n    margin-top: 0;\n    margin-bottom: 0;\n    padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n  }\n  // Account for padding we're adding to ensure the alignment and of help text\n  // and other content below items\n  .radio,\n  .checkbox {\n    min-height: (@line-height-computed + (@padding-base-vertical + 1));\n  }\n\n  // Make form groups behave like rows\n  .form-group {\n    .make-row();\n  }\n\n  // Reset spacing and right align labels, but scope to media queries so that\n  // labels on narrow viewports stack the same as a default form example.\n  @media (min-width: @screen-sm-min) {\n    .control-label {\n      text-align: right;\n      margin-bottom: 0;\n      padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n    }\n  }\n\n  // Validation states\n  //\n  // Reposition the icon because it's now within a grid column and columns have\n  // `position: relative;` on them. Also accounts for the grid gutter padding.\n  .has-feedback .form-control-feedback {\n    right: floor((@grid-gutter-width / 2));\n  }\n\n  // Form group sizes\n  //\n  // Quick utility class for applying `.input-lg` and `.input-sm` styles to the\n  // inputs and labels within a `.form-group`.\n  .form-group-lg {\n    @media (min-width: @screen-sm-min) {\n      .control-label {\n        padding-top: (@padding-large-vertical + 1);\n        font-size: @font-size-large;\n      }\n    }\n  }\n  .form-group-sm {\n    @media (min-width: @screen-sm-min) {\n      .control-label {\n        padding-top: (@padding-small-vertical + 1);\n        font-size: @font-size-small;\n      }\n    }\n  }\n}\n","// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n  // Color the label and help text\n  .help-block,\n  .control-label,\n  .radio,\n  .checkbox,\n  .radio-inline,\n  .checkbox-inline,\n  &.radio label,\n  &.checkbox label,\n  &.radio-inline label,\n  &.checkbox-inline label  {\n    color: @text-color;\n  }\n  // Set the border and box shadow on specific inputs to match\n  .form-control {\n    border-color: @border-color;\n    .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n    &:focus {\n      border-color: darken(@border-color, 10%);\n      @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n      .box-shadow(@shadow);\n    }\n  }\n  // Set validation states also for addons\n  .input-group-addon {\n    color: @text-color;\n    border-color: @border-color;\n    background-color: @background-color;\n  }\n  // Optional feedback icon\n  .form-control-feedback {\n    color: @text-color;\n  }\n}\n\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-border-focus` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n.form-control-focus(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0;\n    .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  height: @input-height;\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n\n  select& {\n    height: @input-height;\n    line-height: @input-height;\n  }\n\n  textarea&,\n  select[multiple]& {\n    height: auto;\n  }\n}\n","// Mixins - Bootstrap overrides\n// -------------------\n\n// Form control outline\n.form-control-outline(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0 !important;\n    .box-shadow(~\"inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Gradients\n#gradient {\n  .striped(@color: fade(@color-pf-black, 15%); @angle: -45deg) {\n    background-image: linear-gradient(@angle, @color 25%, @color 26%, transparent 27%, transparent 49%, @color 50%, @color 51%, transparent 52%, transparent 74%, @color 75%, @color 76%, transparent 77%);\n  }\n}\n\n// Horizontal dividers\n.nav-divider(@color: @color-pf-black-200, @margin: 4px 1px) {\n  background-color: @color;\n  height: 1px;\n  margin: @margin;\n  overflow: hidden;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  &:-moz-placeholder            { color: @color; font-style: italic; } // Firefox 4-18\n  &::-moz-placeholder           { color: @color; font-style: italic; opacity: 1; } // Firefox 19+\n  &:-ms-input-placeholder       { color: @color; font-style: italic; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; font-style: italic; } // Safari and Chrome\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n  display: inline-block;\n  margin-bottom: 0; // For input.btn\n  font-weight: @btn-font-weight;\n  text-align: center;\n  vertical-align: middle;\n  touch-action: manipulation;\n  cursor: pointer;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid transparent;\n  white-space: nowrap;\n  .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);\n  .user-select(none);\n\n  &,\n  &:active,\n  &.active {\n    &:focus,\n    &.focus {\n      .tab-focus();\n    }\n  }\n\n  &:hover,\n  &:focus,\n  &.focus {\n    color: @btn-default-color;\n    text-decoration: none;\n  }\n\n  &:active,\n  &.active {\n    outline: 0;\n    background-image: none;\n    .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n  }\n\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n    .opacity(.65);\n    .box-shadow(none);\n  }\n\n  a& {\n    &.disabled,\n    fieldset[disabled] & {\n      pointer-events: none; // Future-proof disabling of clicks on `<a>` elements\n    }\n  }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n  .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n  .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n  .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n  .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n  .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n  .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n  color: @link-color;\n  font-weight: normal;\n  border-radius: 0;\n\n  &,\n  &:active,\n  &.active,\n  &[disabled],\n  fieldset[disabled] & {\n    background-color: transparent;\n    .box-shadow(none);\n  }\n  &,\n  &:hover,\n  &:focus,\n  &:active {\n    border-color: transparent;\n  }\n  &:hover,\n  &:focus {\n    color: @link-hover-color;\n    text-decoration: @link-hover-decoration;\n    background-color: transparent;\n  }\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus {\n      color: @btn-link-disabled-color;\n      text-decoration: none;\n    }\n  }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n  // line-height: ensure even-numbered height of button next to large input\n  .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @btn-border-radius-large);\n}\n.btn-sm {\n  // line-height: ensure proper height of button next to small input\n  .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n.btn-xs {\n  .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n  display: block;\n  width: 100%;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n  margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n  &.btn-block {\n    width: 100%;\n  }\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n  color: @color;\n  background-color: @background;\n  border-color: @border;\n\n  &:focus,\n  &.focus {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 25%);\n  }\n  &:hover {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n\n    &:hover,\n    &:focus,\n    &.focus {\n      color: @color;\n      background-color: darken(@background, 17%);\n          border-color: darken(@border, 25%);\n    }\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    background-image: none;\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: @background;\n          border-color: @border;\n    }\n  }\n\n  .badge {\n    color: @background;\n    background-color: @color;\n  }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n  opacity: @opacity;\n  // IE8 filter\n  @opacity-ie: (@opacity * 100);\n  filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","//\n// Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n  position: relative;\n  display: inline-block;\n  vertical-align: middle; // match .btn alignment given font-size hack above\n  > .btn {\n    position: relative;\n    float: left;\n    // Bring the \"active\" button to the front\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      z-index: 2;\n    }\n  }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n  .btn + .btn,\n  .btn + .btn-group,\n  .btn-group + .btn,\n  .btn-group + .btn-group {\n    margin-left: -1px;\n  }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n  margin-left: -5px; // Offset the first child's margin\n  &:extend(.clearfix all);\n\n  .btn,\n  .btn-group,\n  .input-group {\n    float: left;\n  }\n  > .btn,\n  > .btn-group,\n  > .input-group {\n    margin-left: 5px;\n  }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n  border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n  margin-left: 0;\n  &:not(:last-child):not(.dropdown-toggle) {\n    .border-right-radius(0);\n  }\n}\n// Need .dropdown-toggle since :last-child doesn't apply, given that a .dropdown-menu is used immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n  .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n  float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) {\n  > .btn:last-child,\n  > .dropdown-toggle {\n    .border-right-radius(0);\n  }\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n  outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { &:extend(.btn-xs); }\n.btn-group-sm > .btn { &:extend(.btn-sm); }\n.btn-group-lg > .btn { &:extend(.btn-lg); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n  padding-left: 8px;\n  padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n  padding-left: 12px;\n  padding-right: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n  .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n\n  // Show no shadow for `.btn-link` since it has no other button styles.\n  &.btn-link {\n    .box-shadow(none);\n  }\n}\n\n\n// Reposition the caret\n.btn .caret {\n  margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n  border-width: @caret-width-large @caret-width-large 0;\n  border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n  border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n  > .btn,\n  > .btn-group,\n  > .btn-group > .btn {\n    display: block;\n    float: none;\n    width: 100%;\n    max-width: 100%;\n  }\n\n  // Clear floats so dropdown menus can be properly placed\n  > .btn-group {\n    &:extend(.clearfix all);\n    > .btn {\n      float: none;\n    }\n  }\n\n  > .btn + .btn,\n  > .btn + .btn-group,\n  > .btn-group + .btn,\n  > .btn-group + .btn-group {\n    margin-top: -1px;\n    margin-left: 0;\n  }\n}\n\n.btn-group-vertical > .btn {\n  &:not(:first-child):not(:last-child) {\n    border-radius: 0;\n  }\n  &:first-child:not(:last-child) {\n    .border-top-radius(@btn-border-radius-base);\n    .border-bottom-radius(0);\n  }\n  &:last-child:not(:first-child) {\n    .border-top-radius(0);\n    .border-bottom-radius(@btn-border-radius-base);\n  }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) {\n  > .btn:last-child,\n  > .dropdown-toggle {\n    .border-bottom-radius(0);\n  }\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  .border-top-radius(0);\n}\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n  display: table;\n  width: 100%;\n  table-layout: fixed;\n  border-collapse: separate;\n  > .btn,\n  > .btn-group {\n    float: none;\n    display: table-cell;\n    width: 1%;\n  }\n  > .btn-group .btn {\n    width: 100%;\n  }\n\n  > .btn-group .dropdown-menu {\n    left: auto;\n  }\n}\n\n\n// Checkbox and radio options\n//\n// In order to support the browser's form validation feedback, powered by the\n// `required` attribute, we have to \"hide\" the inputs via `clip`. We cannot use\n// `display: none;` or `visibility: hidden;` as that also hides the popover.\n// Simply visually hiding the inputs via `opacity` would leave them clickable in\n// certain cases which is prevented by using `clip` and `pointer-events`.\n// This way, we ensure a DOM element is visible to position the popover from.\n//\n// See https://github.com/twbs/bootstrap/pull/12794 and\n// https://github.com/twbs/bootstrap/pull/14559 for more information.\n\n[data-toggle=\"buttons\"] {\n  > .btn,\n  > .btn-group > .btn {\n    input[type=\"radio\"],\n    input[type=\"checkbox\"] {\n      position: absolute;\n      clip: rect(0,0,0,0);\n      pointer-events: none;\n    }\n  }\n}\n","//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.\n\n.fade {\n  opacity: 0;\n  .transition(opacity .15s linear);\n  &.in {\n    opacity: 1;\n  }\n}\n\n.collapse {\n  display: none;\n\n  &.in      { display: block; }\n  tr&.in    { display: table-row; }\n  tbody&.in { display: table-row-group; }\n}\n\n.collapsing {\n  position: relative;\n  height: 0;\n  overflow: hidden;\n  .transition-property(~\"height, visibility\");\n  .transition-duration(.35s);\n  .transition-timing-function(ease);\n}\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 2px;\n  vertical-align: middle;\n  border-top:   @caret-width-base dashed;\n  border-top:   @caret-width-base solid ~\"\\9\"; // IE8\n  border-right: @caret-width-base solid transparent;\n  border-left:  @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropup,\n.dropdown {\n  position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n  outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  z-index: @zindex-dropdown;\n  display: none; // none by default, but block on \"open\" of the menu\n  float: left;\n  min-width: 160px;\n  padding: 5px 0;\n  margin: 2px 0 0; // override default ul\n  list-style: none;\n  font-size: @font-size-base;\n  text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n  background-color: @dropdown-bg;\n  border: 1px solid @dropdown-fallback-border; // IE8 fallback\n  border: 1px solid @dropdown-border;\n  border-radius: @border-radius-base;\n  .box-shadow(0 6px 12px rgba(0,0,0,.175));\n  background-clip: padding-box;\n\n  // Aligns the dropdown menu to right\n  //\n  // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n  &.pull-right {\n    right: 0;\n    left: auto;\n  }\n\n  // Dividers (basically an hr) within the dropdown\n  .divider {\n    .nav-divider(@dropdown-divider-bg);\n  }\n\n  // Links within the dropdown menu\n  > li > a {\n    display: block;\n    padding: 3px 20px;\n    clear: both;\n    font-weight: normal;\n    line-height: @line-height-base;\n    color: @dropdown-link-color;\n    white-space: nowrap; // prevent links from randomly breaking onto new lines\n  }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    color: @dropdown-link-hover-color;\n    background-color: @dropdown-link-hover-bg;\n  }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n  &,\n  &:hover,\n  &:focus {\n    color: @dropdown-link-active-color;\n    text-decoration: none;\n    outline: 0;\n    background-color: @dropdown-link-active-bg;\n  }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n  &,\n  &:hover,\n  &:focus {\n    color: @dropdown-link-disabled-color;\n  }\n\n  // Nuke hover/focus effects\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    background-color: transparent;\n    background-image: none; // Remove CSS gradient\n    .reset-filter();\n    cursor: @cursor-disabled;\n  }\n}\n\n// Open state for the dropdown\n.open {\n  // Show the menu\n  > .dropdown-menu {\n    display: block;\n  }\n\n  // Remove the outline when :focus is triggered\n  > a {\n    outline: 0;\n  }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n  left: auto; // Reset the default from `.dropdown-menu`\n  right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n  left: 0;\n  right: auto;\n}\n\n// Dropdown section headers\n.dropdown-header {\n  display: block;\n  padding: 3px 20px;\n  font-size: @font-size-small;\n  line-height: @line-height-base;\n  color: @dropdown-header-color;\n  white-space: nowrap; // as with > li > a\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n  position: fixed;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  top: 0;\n  z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n  right: 0;\n  left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n  // Reverse the caret\n  .caret {\n    border-top: 0;\n    border-bottom: @caret-width-base dashed;\n    border-bottom: @caret-width-base solid ~\"\\9\"; // IE8\n    content: \"\";\n  }\n  // Different positioning for bottom up menu\n  .dropdown-menu {\n    top: auto;\n    bottom: 100%;\n    margin-bottom: 2px;\n  }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-right {\n    .dropdown-menu {\n      .dropdown-menu-right();\n    }\n    // Necessary for overrides of the default right aligned menu.\n    // Will remove come v4 in all likelihood.\n    .dropdown-menu-left {\n      .dropdown-menu-left();\n    }\n  }\n}\n","// Horizontal dividers\n//\n// Dividers (basically an hr) within dropdowns and nav lists\n\n.nav-divider(@color: #e5e5e5) {\n  height: 1px;\n  margin: ((@line-height-computed / 2) - 1) 0;\n  overflow: hidden;\n  background-color: @color;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n  filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n  border-top-right-radius: @radius;\n   border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n  border-bottom-right-radius: @radius;\n     border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n  border-bottom-right-radius: @radius;\n   border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n  border-bottom-left-radius: @radius;\n     border-top-left-radius: @radius;\n}\n","//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n  position: relative; // For dropdowns\n  display: table;\n  border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n  // Undo padding and float of grid classes\n  &[class*=\"col-\"] {\n    float: none;\n    padding-left: 0;\n    padding-right: 0;\n  }\n\n  .form-control {\n    // Ensure that the input is always above the *appended* addon button for\n    // proper border colors.\n    position: relative;\n    z-index: 2;\n\n    // IE9 fubars the placeholder attribute in text inputs and the arrows on\n    // select elements in input groups. To fix it, we float the input. Details:\n    // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n    float: left;\n\n    width: 100%;\n    margin-bottom: 0;\n\n    &:focus {\n      z-index: 3;\n    }\n  }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n  .input-lg();\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n  .input-sm();\n}\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n  display: table-cell;\n\n  &:not(:first-child):not(:last-child) {\n    border-radius: 0;\n  }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n  width: 1%;\n  white-space: nowrap;\n  vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n  padding: @padding-base-vertical @padding-base-horizontal;\n  font-size: @font-size-base;\n  font-weight: normal;\n  line-height: 1;\n  color: @input-color;\n  text-align: center;\n  background-color: @input-group-addon-bg;\n  border: 1px solid @input-group-addon-border-color;\n  border-radius: @input-border-radius;\n\n  // Sizing\n  &.input-sm {\n    padding: @padding-small-vertical @padding-small-horizontal;\n    font-size: @font-size-small;\n    border-radius: @input-border-radius-small;\n  }\n  &.input-lg {\n    padding: @padding-large-vertical @padding-large-horizontal;\n    font-size: @font-size-large;\n    border-radius: @input-border-radius-large;\n  }\n\n  // Nuke default margins from checkboxes and radios to vertically center within.\n  input[type=\"radio\"],\n  input[type=\"checkbox\"] {\n    margin-top: 0;\n  }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n  .border-right-radius(0);\n}\n.input-group-addon:first-child {\n  border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n  .border-left-radius(0);\n}\n.input-group-addon:last-child {\n  border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n  position: relative;\n  // Jankily prevent input button groups from wrapping with `white-space` and\n  // `font-size` in combination with `inline-block` on buttons.\n  font-size: 0;\n  white-space: nowrap;\n\n  // Negative margin for spacing, position for bringing hovered/focused/actived\n  // element above the siblings.\n  > .btn {\n    position: relative;\n    + .btn {\n      margin-left: -1px;\n    }\n    // Bring the \"active\" button to the front\n    &:hover,\n    &:focus,\n    &:active {\n      z-index: 2;\n    }\n  }\n\n  // Negative margin to only have a 1px border between the two\n  &:first-child {\n    > .btn,\n    > .btn-group {\n      margin-right: -1px;\n    }\n  }\n  &:last-child {\n    > .btn,\n    > .btn-group {\n      z-index: 2;\n      margin-left: -1px;\n    }\n  }\n}\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n  margin-bottom: 0;\n  padding-left: 0; // Override default ul/ol\n  list-style: none;\n  &:extend(.clearfix all);\n\n  > li {\n    position: relative;\n    display: block;\n\n    > a {\n      position: relative;\n      display: block;\n      padding: @nav-link-padding;\n      &:hover,\n      &:focus {\n        text-decoration: none;\n        background-color: @nav-link-hover-bg;\n      }\n    }\n\n    // Disabled state sets text to gray and nukes hover/tab effects\n    &.disabled > a {\n      color: @nav-disabled-link-color;\n\n      &:hover,\n      &:focus {\n        color: @nav-disabled-link-hover-color;\n        text-decoration: none;\n        background-color: transparent;\n        cursor: @cursor-disabled;\n      }\n    }\n  }\n\n  // Open dropdowns\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: @nav-link-hover-bg;\n      border-color: @link-color;\n    }\n  }\n\n  // Nav dividers (deprecated with v3.0.1)\n  //\n  // This should have been removed in v3 with the dropping of `.nav-list`, but\n  // we missed it. We don't currently support this anywhere, but in the interest\n  // of maintaining backward compatibility in case you use it, it's deprecated.\n  .nav-divider {\n    .nav-divider();\n  }\n\n  // Prevent IE8 from misplacing imgs\n  //\n  // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n  > li > a > img {\n    max-width: none;\n  }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n  border-bottom: 1px solid @nav-tabs-border-color;\n  > li {\n    float: left;\n    // Make the list-items overlay the bottom border\n    margin-bottom: -1px;\n\n    // Actual tabs (as links)\n    > a {\n      margin-right: 2px;\n      line-height: @line-height-base;\n      border: 1px solid transparent;\n      border-radius: @border-radius-base @border-radius-base 0 0;\n      &:hover {\n        border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n      }\n    }\n\n    // Active state, and its :hover to override normal :hover\n    &.active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @nav-tabs-active-link-hover-color;\n        background-color: @nav-tabs-active-link-hover-bg;\n        border: 1px solid @nav-tabs-active-link-hover-border-color;\n        border-bottom-color: transparent;\n        cursor: default;\n      }\n    }\n  }\n  // pulling this in mainly for less shorthand\n  &.nav-justified {\n    .nav-justified();\n    .nav-tabs-justified();\n  }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n  > li {\n    float: left;\n\n    // Links rendered as pills\n    > a {\n      border-radius: @nav-pills-border-radius;\n    }\n    + li {\n      margin-left: 2px;\n    }\n\n    // Active state\n    &.active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @nav-pills-active-link-hover-color;\n        background-color: @nav-pills-active-link-hover-bg;\n      }\n    }\n  }\n}\n\n\n// Stacked pills\n.nav-stacked {\n  > li {\n    float: none;\n    + li {\n      margin-top: 2px;\n      margin-left: 0; // no need for this gap between nav items\n    }\n  }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n  width: 100%;\n\n  > li {\n    float: none;\n    > a {\n      text-align: center;\n      margin-bottom: 5px;\n    }\n  }\n\n  > .dropdown .dropdown-menu {\n    top: auto;\n    left: auto;\n  }\n\n  @media (min-width: @screen-sm-min) {\n    > li {\n      display: table-cell;\n      width: 1%;\n      > a {\n        margin-bottom: 0;\n      }\n    }\n  }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n  border-bottom: 0;\n\n  > li > a {\n    // Override margin from .nav-tabs\n    margin-right: 0;\n    border-radius: @border-radius-base;\n  }\n\n  > .active > a,\n  > .active > a:hover,\n  > .active > a:focus {\n    border: 1px solid @nav-tabs-justified-link-border-color;\n  }\n\n  @media (min-width: @screen-sm-min) {\n    > li > a {\n      border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n      border-radius: @border-radius-base @border-radius-base 0 0;\n    }\n    > .active > a,\n    > .active > a:hover,\n    > .active > a:focus {\n      border-bottom-color: @nav-tabs-justified-active-link-border-color;\n    }\n  }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Hide tabbable panes to start, show them when `.active`\n.tab-content {\n  > .tab-pane {\n    display: none;\n  }\n  > .active {\n    display: block;\n  }\n}\n\n\n// Dropdowns\n// -------------------------\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n  // make dropdown border overlap tab border\n  margin-top: -1px;\n  // Remove the top rounded corners here since there is a hard edge above the menu\n  .border-top-radius(0);\n}\n","//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n  position: relative;\n  min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n  margin-bottom: @navbar-margin-bottom;\n  border: 1px solid transparent;\n\n  // Prevent floats from breaking the navbar\n  &:extend(.clearfix all);\n\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: @navbar-border-radius;\n  }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n  &:extend(.clearfix all);\n\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n  }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n  overflow-x: visible;\n  padding-right: @navbar-padding-horizontal;\n  padding-left:  @navbar-padding-horizontal;\n  border-top: 1px solid transparent;\n  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n  &:extend(.clearfix all);\n  -webkit-overflow-scrolling: touch;\n\n  &.in {\n    overflow-y: auto;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    width: auto;\n    border-top: 0;\n    box-shadow: none;\n\n    &.collapse {\n      display: block !important;\n      height: auto !important;\n      padding-bottom: 0; // Override default setting\n      overflow: visible !important;\n    }\n\n    &.in {\n      overflow-y: visible;\n    }\n\n    // Undo the collapse side padding for navbars with containers to ensure\n    // alignment of right-aligned contents.\n    .navbar-fixed-top &,\n    .navbar-static-top &,\n    .navbar-fixed-bottom & {\n      padding-left: 0;\n      padding-right: 0;\n    }\n  }\n}\n\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  .navbar-collapse {\n    max-height: @navbar-collapse-max-height;\n\n    @media (max-device-width: @screen-xs-min) and (orientation: landscape) {\n      max-height: 200px;\n    }\n  }\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container,\n.container-fluid {\n  > .navbar-header,\n  > .navbar-collapse {\n    margin-right: -@navbar-padding-horizontal;\n    margin-left:  -@navbar-padding-horizontal;\n\n    @media (min-width: @grid-float-breakpoint) {\n      margin-right: 0;\n      margin-left:  0;\n    }\n  }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n  z-index: @zindex-navbar;\n  border-width: 0 0 1px;\n\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: 0;\n  }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  position: fixed;\n  right: 0;\n  left: 0;\n  z-index: @zindex-navbar-fixed;\n\n  // Undo the rounded corners\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top {\n  top: 0;\n  border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n  bottom: 0;\n  margin-bottom: 0; // override .navbar defaults\n  border-width: 1px 0 0;\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n  float: left;\n  padding: @navbar-padding-vertical @navbar-padding-horizontal;\n  font-size: @font-size-large;\n  line-height: @line-height-computed;\n  height: @navbar-height;\n\n  &:hover,\n  &:focus {\n    text-decoration: none;\n  }\n\n  > img {\n    display: block;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    .navbar > .container &,\n    .navbar > .container-fluid & {\n      margin-left: -@navbar-padding-horizontal;\n    }\n  }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n  position: relative;\n  float: right;\n  margin-right: @navbar-padding-horizontal;\n  padding: 9px 10px;\n  .navbar-vertical-align(34px);\n  background-color: transparent;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid transparent;\n  border-radius: @border-radius-base;\n\n  // We remove the `outline` here, but later compensate by attaching `:hover`\n  // styles to `:focus`.\n  &:focus {\n    outline: 0;\n  }\n\n  // Bars\n  .icon-bar {\n    display: block;\n    width: 22px;\n    height: 2px;\n    border-radius: 1px;\n  }\n  .icon-bar + .icon-bar {\n    margin-top: 4px;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    display: none;\n  }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n  margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n  > li > a {\n    padding-top:    10px;\n    padding-bottom: 10px;\n    line-height: @line-height-computed;\n  }\n\n  @media (max-width: @grid-float-breakpoint-max) {\n    // Dropdowns get custom display when collapsed\n    .open .dropdown-menu {\n      position: static;\n      float: none;\n      width: auto;\n      margin-top: 0;\n      background-color: transparent;\n      border: 0;\n      box-shadow: none;\n      > li > a,\n      .dropdown-header {\n        padding: 5px 15px 5px 25px;\n      }\n      > li > a {\n        line-height: @line-height-computed;\n        &:hover,\n        &:focus {\n          background-image: none;\n        }\n      }\n    }\n  }\n\n  // Uncollapse the nav\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n    margin: 0;\n\n    > li {\n      float: left;\n      > a {\n        padding-top:    @navbar-padding-vertical;\n        padding-bottom: @navbar-padding-vertical;\n      }\n    }\n  }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n  margin-left: -@navbar-padding-horizontal;\n  margin-right: -@navbar-padding-horizontal;\n  padding: 10px @navbar-padding-horizontal;\n  border-top: 1px solid transparent;\n  border-bottom: 1px solid transparent;\n  @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);\n  .box-shadow(@shadow);\n\n  // Mixin behavior for optimum display\n  .form-inline();\n\n  .form-group {\n    @media (max-width: @grid-float-breakpoint-max) {\n      margin-bottom: 5px;\n\n      &:last-child {\n        margin-bottom: 0;\n      }\n    }\n  }\n\n  // Vertically center in expanded, horizontal navbar\n  .navbar-vertical-align(@input-height-base);\n\n  // Undo 100% width for pull classes\n  @media (min-width: @grid-float-breakpoint) {\n    width: auto;\n    border: 0;\n    margin-left: 0;\n    margin-right: 0;\n    padding-top: 0;\n    padding-bottom: 0;\n    .box-shadow(none);\n  }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n  margin-top: 0;\n  .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n  margin-bottom: 0;\n  .border-top-radius(@navbar-border-radius);\n  .border-bottom-radius(0);\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n  .navbar-vertical-align(@input-height-base);\n\n  &.btn-sm {\n    .navbar-vertical-align(@input-height-small);\n  }\n  &.btn-xs {\n    .navbar-vertical-align(22);\n  }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n  .navbar-vertical-align(@line-height-computed);\n\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n    margin-left: @navbar-padding-horizontal;\n    margin-right: @navbar-padding-horizontal;\n  }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n//\n// Declared after the navbar components to ensure more specificity on the margins.\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-left  { .pull-left(); }\n  .navbar-right {\n    .pull-right();\n    margin-right: -@navbar-padding-horizontal;\n\n    ~ .navbar-right {\n      margin-right: 0;\n    }\n  }\n}\n\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n  background-color: @navbar-default-bg;\n  border-color: @navbar-default-border;\n\n  .navbar-brand {\n    color: @navbar-default-brand-color;\n    &:hover,\n    &:focus {\n      color: @navbar-default-brand-hover-color;\n      background-color: @navbar-default-brand-hover-bg;\n    }\n  }\n\n  .navbar-text {\n    color: @navbar-default-color;\n  }\n\n  .navbar-nav {\n    > li > a {\n      color: @navbar-default-link-color;\n\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-hover-color;\n        background-color: @navbar-default-link-hover-bg;\n      }\n    }\n    > .active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-active-color;\n        background-color: @navbar-default-link-active-bg;\n      }\n    }\n    > .disabled > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-disabled-color;\n        background-color: @navbar-default-link-disabled-bg;\n      }\n    }\n  }\n\n  .navbar-toggle {\n    border-color: @navbar-default-toggle-border-color;\n    &:hover,\n    &:focus {\n      background-color: @navbar-default-toggle-hover-bg;\n    }\n    .icon-bar {\n      background-color: @navbar-default-toggle-icon-bar-bg;\n    }\n  }\n\n  .navbar-collapse,\n  .navbar-form {\n    border-color: @navbar-default-border;\n  }\n\n  // Dropdown menu items\n  .navbar-nav {\n    // Remove background color from open dropdown\n    > .open > a {\n      &,\n      &:hover,\n      &:focus {\n        background-color: @navbar-default-link-active-bg;\n        color: @navbar-default-link-active-color;\n      }\n    }\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      // Dropdowns get custom display when collapsed\n      .open .dropdown-menu {\n        > li > a {\n          color: @navbar-default-link-color;\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-hover-color;\n            background-color: @navbar-default-link-hover-bg;\n          }\n        }\n        > .active > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-active-color;\n            background-color: @navbar-default-link-active-bg;\n          }\n        }\n        > .disabled > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-disabled-color;\n            background-color: @navbar-default-link-disabled-bg;\n          }\n        }\n      }\n    }\n  }\n\n\n  // Links in navbars\n  //\n  // Add a class to ensure links outside the navbar nav are colored correctly.\n\n  .navbar-link {\n    color: @navbar-default-link-color;\n    &:hover {\n      color: @navbar-default-link-hover-color;\n    }\n  }\n\n  .btn-link {\n    color: @navbar-default-link-color;\n    &:hover,\n    &:focus {\n      color: @navbar-default-link-hover-color;\n    }\n    &[disabled],\n    fieldset[disabled] & {\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-disabled-color;\n      }\n    }\n  }\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n  background-color: @navbar-inverse-bg;\n  border-color: @navbar-inverse-border;\n\n  .navbar-brand {\n    color: @navbar-inverse-brand-color;\n    &:hover,\n    &:focus {\n      color: @navbar-inverse-brand-hover-color;\n      background-color: @navbar-inverse-brand-hover-bg;\n    }\n  }\n\n  .navbar-text {\n    color: @navbar-inverse-color;\n  }\n\n  .navbar-nav {\n    > li > a {\n      color: @navbar-inverse-link-color;\n\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-hover-color;\n        background-color: @navbar-inverse-link-hover-bg;\n      }\n    }\n    > .active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-active-color;\n        background-color: @navbar-inverse-link-active-bg;\n      }\n    }\n    > .disabled > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-disabled-color;\n        background-color: @navbar-inverse-link-disabled-bg;\n      }\n    }\n  }\n\n  // Darken the responsive nav toggle\n  .navbar-toggle {\n    border-color: @navbar-inverse-toggle-border-color;\n    &:hover,\n    &:focus {\n      background-color: @navbar-inverse-toggle-hover-bg;\n    }\n    .icon-bar {\n      background-color: @navbar-inverse-toggle-icon-bar-bg;\n    }\n  }\n\n  .navbar-collapse,\n  .navbar-form {\n    border-color: darken(@navbar-inverse-bg, 7%);\n  }\n\n  // Dropdowns\n  .navbar-nav {\n    > .open > a {\n      &,\n      &:hover,\n      &:focus {\n        background-color: @navbar-inverse-link-active-bg;\n        color: @navbar-inverse-link-active-color;\n      }\n    }\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      // Dropdowns get custom display\n      .open .dropdown-menu {\n        > .dropdown-header {\n          border-color: @navbar-inverse-border;\n        }\n        .divider {\n          background-color: @navbar-inverse-border;\n        }\n        > li > a {\n          color: @navbar-inverse-link-color;\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-hover-color;\n            background-color: @navbar-inverse-link-hover-bg;\n          }\n        }\n        > .active > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-active-color;\n            background-color: @navbar-inverse-link-active-bg;\n          }\n        }\n        > .disabled > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-disabled-color;\n            background-color: @navbar-inverse-link-disabled-bg;\n          }\n        }\n      }\n    }\n  }\n\n  .navbar-link {\n    color: @navbar-inverse-link-color;\n    &:hover {\n      color: @navbar-inverse-link-hover-color;\n    }\n  }\n\n  .btn-link {\n    color: @navbar-inverse-link-color;\n    &:hover,\n    &:focus {\n      color: @navbar-inverse-link-hover-color;\n    }\n    &[disabled],\n    fieldset[disabled] & {\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-disabled-color;\n      }\n    }\n  }\n}\n","// Navbar vertical align\n//\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n\n.navbar-vertical-align(@element-height) {\n  margin-top: ((@navbar-height - @element-height) / 2);\n  margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n","//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n  .clearfix();\n}\n.center-block {\n  .center-block();\n}\n.pull-right {\n  float: right !important;\n}\n.pull-left {\n  float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1\n.hide {\n  display: none !important;\n}\n.show {\n  display: block !important;\n}\n.invisible {\n  visibility: hidden;\n}\n.text-hide {\n  .text-hide();\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n  display: none !important;\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n  position: fixed;\n}\n","// Bordered & Pulled\n// -------------------------\n\n.@{fa-css-prefix}-border {\n  padding: .2em .25em .15em;\n  border: solid .08em @fa-border-color;\n  border-radius: .1em;\n}\n\n.@{fa-css-prefix}-pull-left { float: left; }\n.@{fa-css-prefix}-pull-right { float: right; }\n\n.@{fa-css-prefix} {\n  &.@{fa-css-prefix}-pull-left { margin-right: .3em; }\n  &.@{fa-css-prefix}-pull-right { margin-left: .3em; }\n}\n\n/* Deprecated as of 4.4.0 */\n.pull-right { float: right; }\n.pull-left { float: left; }\n\n.@{fa-css-prefix} {\n  &.pull-left { margin-right: .3em; }\n  &.pull-right { margin-left: .3em; }\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n  padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n  margin-bottom: @line-height-computed;\n  list-style: none;\n  background-color: @breadcrumb-bg;\n  border-radius: @border-radius-base;\n\n  > li {\n    display: inline-block;\n\n    + li:before {\n      content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n      padding: 0 5px;\n      color: @breadcrumb-color;\n    }\n  }\n\n  > .active {\n    color: @breadcrumb-active-color;\n  }\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n  display: inline-block;\n  padding-left: 0;\n  margin: @line-height-computed 0;\n  border-radius: @border-radius-base;\n\n  > li {\n    display: inline; // Remove list-style and block-level defaults\n    > a,\n    > span {\n      position: relative;\n      float: left; // Collapse white-space\n      padding: @padding-base-vertical @padding-base-horizontal;\n      line-height: @line-height-base;\n      text-decoration: none;\n      color: @pagination-color;\n      background-color: @pagination-bg;\n      border: 1px solid @pagination-border;\n      margin-left: -1px;\n    }\n    &:first-child {\n      > a,\n      > span {\n        margin-left: 0;\n        .border-left-radius(@border-radius-base);\n      }\n    }\n    &:last-child {\n      > a,\n      > span {\n        .border-right-radius(@border-radius-base);\n      }\n    }\n  }\n\n  > li > a,\n  > li > span {\n    &:hover,\n    &:focus {\n      z-index: 2;\n      color: @pagination-hover-color;\n      background-color: @pagination-hover-bg;\n      border-color: @pagination-hover-border;\n    }\n  }\n\n  > .active > a,\n  > .active > span {\n    &,\n    &:hover,\n    &:focus {\n      z-index: 3;\n      color: @pagination-active-color;\n      background-color: @pagination-active-bg;\n      border-color: @pagination-active-border;\n      cursor: default;\n    }\n  }\n\n  > .disabled {\n    > span,\n    > span:hover,\n    > span:focus,\n    > a,\n    > a:hover,\n    > a:focus {\n      color: @pagination-disabled-color;\n      background-color: @pagination-disabled-bg;\n      border-color: @pagination-disabled-border;\n      cursor: @cursor-disabled;\n    }\n  }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n  .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n  .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n","// Pagination\n\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  > li {\n    > a,\n    > span {\n      padding: @padding-vertical @padding-horizontal;\n      font-size: @font-size;\n      line-height: @line-height;\n    }\n    &:first-child {\n      > a,\n      > span {\n        .border-left-radius(@border-radius);\n      }\n    }\n    &:last-child {\n      > a,\n      > span {\n        .border-right-radius(@border-radius);\n      }\n    }\n  }\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n  padding-left: 0;\n  margin: @line-height-computed 0;\n  list-style: none;\n  text-align: center;\n  &:extend(.clearfix all);\n  li {\n    display: inline;\n    > a,\n    > span {\n      display: inline-block;\n      padding: 5px 14px;\n      background-color: @pager-bg;\n      border: 1px solid @pager-border;\n      border-radius: @pager-border-radius;\n    }\n\n    > a:hover,\n    > a:focus {\n      text-decoration: none;\n      background-color: @pager-hover-bg;\n    }\n  }\n\n  .next {\n    > a,\n    > span {\n      float: right;\n    }\n  }\n\n  .previous {\n    > a,\n    > span {\n      float: left;\n    }\n  }\n\n  .disabled {\n    > a,\n    > a:hover,\n    > a:focus,\n    > span {\n      color: @pager-disabled-color;\n      background-color: @pager-bg;\n      cursor: @cursor-disabled;\n    }\n  }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n  display: inline;\n  padding: .2em .6em .3em;\n  font-size: 75%;\n  font-weight: bold;\n  line-height: 1;\n  color: @label-color;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  border-radius: .25em;\n\n  // Add hover effects, but only for links\n  a& {\n    &:hover,\n    &:focus {\n      color: @label-link-hover-color;\n      text-decoration: none;\n      cursor: pointer;\n    }\n  }\n\n  // Empty labels collapse automatically (not available in IE8)\n  &:empty {\n    display: none;\n  }\n\n  // Quick fix for labels in buttons\n  .btn & {\n    position: relative;\n    top: -1px;\n  }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n  .label-variant(@label-default-bg);\n}\n\n.label-primary {\n  .label-variant(@label-primary-bg);\n}\n\n.label-success {\n  .label-variant(@label-success-bg);\n}\n\n.label-info {\n  .label-variant(@label-info-bg);\n}\n\n.label-warning {\n  .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n  .label-variant(@label-danger-bg);\n}\n","// Labels\n\n.label-variant(@color) {\n  background-color: @color;\n\n  &[href] {\n    &:hover,\n    &:focus {\n      background-color: darken(@color, 10%);\n    }\n  }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base class\n.badge {\n  display: inline-block;\n  min-width: 10px;\n  padding: 3px 7px;\n  font-size: @font-size-small;\n  font-weight: @badge-font-weight;\n  color: @badge-color;\n  line-height: @badge-line-height;\n  vertical-align: middle;\n  white-space: nowrap;\n  text-align: center;\n  background-color: @badge-bg;\n  border-radius: @badge-border-radius;\n\n  // Empty badges collapse automatically (not available in IE8)\n  &:empty {\n    display: none;\n  }\n\n  // Quick fix for badges in buttons\n  .btn & {\n    position: relative;\n    top: -1px;\n  }\n\n  .btn-xs &,\n  .btn-group-xs > .btn & {\n    top: 0;\n    padding: 1px 5px;\n  }\n\n  // Hover state, but only for links\n  a& {\n    &:hover,\n    &:focus {\n      color: @badge-link-hover-color;\n      text-decoration: none;\n      cursor: pointer;\n    }\n  }\n\n  // Account for badges in navs\n  .list-group-item.active > &,\n  .nav-pills > .active > a > & {\n    color: @badge-active-color;\n    background-color: @badge-active-bg;\n  }\n\n  .list-group-item > & {\n    float: right;\n  }\n\n  .list-group-item > & + & {\n    margin-right: 5px;\n  }\n\n  .nav-pills > li > a > & {\n    margin-left: 3px;\n  }\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n  padding-top:    @jumbotron-padding;\n  padding-bottom: @jumbotron-padding;\n  margin-bottom: @jumbotron-padding;\n  color: @jumbotron-color;\n  background-color: @jumbotron-bg;\n\n  h1,\n  .h1 {\n    color: @jumbotron-heading-color;\n  }\n\n  p {\n    margin-bottom: (@jumbotron-padding / 2);\n    font-size: @jumbotron-font-size;\n    font-weight: 200;\n  }\n\n  > hr {\n    border-top-color: darken(@jumbotron-bg, 10%);\n  }\n\n  .container &,\n  .container-fluid & {\n    border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n    padding-left:  (@grid-gutter-width / 2);\n    padding-right: (@grid-gutter-width / 2);\n  }\n\n  .container {\n    max-width: 100%;\n  }\n\n  @media screen and (min-width: @screen-sm-min) {\n    padding-top:    (@jumbotron-padding * 1.6);\n    padding-bottom: (@jumbotron-padding * 1.6);\n\n    .container &,\n    .container-fluid & {\n      padding-left:  (@jumbotron-padding * 2);\n      padding-right: (@jumbotron-padding * 2);\n    }\n\n    h1,\n    .h1 {\n      font-size: @jumbotron-heading-font-size;\n    }\n  }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n  padding: @alert-padding;\n  margin-bottom: @line-height-computed;\n  border: 1px solid transparent;\n  border-radius: @alert-border-radius;\n\n  // Headings for larger alerts\n  h4 {\n    margin-top: 0;\n    // Specified for the h4 to prevent conflicts of changing @headings-color\n    color: inherit;\n  }\n\n  // Provide class for links that match alerts\n  .alert-link {\n    font-weight: @alert-link-font-weight;\n  }\n\n  // Improve alignment and spacing of inner content\n  > p,\n  > ul {\n    margin-bottom: 0;\n  }\n\n  > p + p {\n    margin-top: 5px;\n  }\n}\n\n// Dismissible alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.\n.alert-dismissible {\n  padding-right: (@alert-padding + 20);\n\n  // Adjust close link position\n  .close {\n    position: relative;\n    top: -2px;\n    right: -21px;\n    color: inherit;\n  }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n  .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n\n.alert-info {\n  .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n\n.alert-warning {\n  .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n\n.alert-danger {\n  .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","// Alerts\n\n.alert-variant(@background; @border; @text-color) {\n  background-color: @background;\n  border-color: @border;\n  color: @text-color;\n\n  hr {\n    border-top-color: darken(@border, 5%);\n  }\n  .alert-link {\n    color: darken(@text-color, 10%);\n  }\n}\n","//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// WebKit\n@-webkit-keyframes progress-bar-stripes {\n  from  { background-position: 40px 0; }\n  to    { background-position: 0 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n  from  { background-position: 40px 0; }\n  to    { background-position: 0 0; }\n}\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n  overflow: hidden;\n  height: @line-height-computed;\n  margin-bottom: @line-height-computed;\n  background-color: @progress-bg;\n  border-radius: @progress-border-radius;\n  .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n}\n\n// Bar of progress\n.progress-bar {\n  float: left;\n  width: 0%;\n  height: 100%;\n  font-size: @font-size-small;\n  line-height: @line-height-computed;\n  color: @progress-bar-color;\n  text-align: center;\n  background-color: @progress-bar-bg;\n  .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n  .transition(width .6s ease);\n}\n\n// Striped bars\n//\n// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar-striped` class, which you just add to an existing\n// `.progress-bar`.\n.progress-striped .progress-bar,\n.progress-bar-striped {\n  #gradient > .striped();\n  background-size: 40px 40px;\n}\n\n// Call animation for the active one\n//\n// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar.active` approach.\n.progress.active .progress-bar,\n.progress-bar.active {\n  .animation(progress-bar-stripes 2s linear infinite);\n}\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n  .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n  .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n  .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n  .progress-bar-variant(@progress-bar-danger-bg);\n}\n","// Gradients\n\n#gradient {\n\n  // Horizontal gradient, from left to right\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  // Vertical gradient, from top to bottom\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12\n    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n    background-repeat: repeat-x;\n    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n  }\n  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .radial(@inner-color: #555; @outer-color: #333) {\n    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n    background-image: radial-gradient(circle, @inner-color, @outer-color);\n    background-repeat: no-repeat;\n  }\n  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n  }\n}\n","// Progress bars\n\n.progress-bar-variant(@color) {\n  background-color: @color;\n\n  // Deprecated parent class requirement as of v3.2.0\n  .progress-striped & {\n    #gradient > .striped();\n  }\n}\n",".media {\n  // Proper spacing between instances of .media\n  margin-top: 15px;\n\n  &:first-child {\n    margin-top: 0;\n  }\n}\n\n.media,\n.media-body {\n  zoom: 1;\n  overflow: hidden;\n}\n\n.media-body {\n  width: 10000px;\n}\n\n.media-object {\n  display: block;\n\n  // Fix collapse in webkit from max-width: 100% and display: table-cell.\n  &.img-thumbnail {\n    max-width: none;\n  }\n}\n\n.media-right,\n.media > .pull-right {\n  padding-left: 10px;\n}\n\n.media-left,\n.media > .pull-left {\n  padding-right: 10px;\n}\n\n.media-left,\n.media-right,\n.media-body {\n  display: table-cell;\n  vertical-align: top;\n}\n\n.media-middle {\n  vertical-align: middle;\n}\n\n.media-bottom {\n  vertical-align: bottom;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n\n// Media list variation\n//\n// Undo default ul/ol styles\n.media-list {\n  padding-left: 0;\n  list-style: none;\n}\n","//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n  // No need to set list-style: none; since .list-group-item is block level\n  margin-bottom: 20px;\n  padding-left: 0; // reset padding because ul and ol\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n  // Place the border on the list items and negative margin up for better styling\n  margin-bottom: -1px;\n  background-color: @list-group-bg;\n  border: 1px solid @list-group-border;\n\n  // Round the first and last items\n  &:first-child {\n    .border-top-radius(@list-group-border-radius);\n  }\n  &:last-child {\n    margin-bottom: 0;\n    .border-bottom-radius(@list-group-border-radius);\n  }\n}\n\n\n// Interactive list items\n//\n// Use anchor or button elements instead of `li`s or `div`s to create interactive items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item,\nbutton.list-group-item {\n  color: @list-group-link-color;\n\n  .list-group-item-heading {\n    color: @list-group-link-heading-color;\n  }\n\n  // Hover state\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    color: @list-group-link-hover-color;\n    background-color: @list-group-hover-bg;\n  }\n}\n\nbutton.list-group-item {\n  width: 100%;\n  text-align: left;\n}\n\n.list-group-item {\n  // Disabled state\n  &.disabled,\n  &.disabled:hover,\n  &.disabled:focus {\n    background-color: @list-group-disabled-bg;\n    color: @list-group-disabled-color;\n    cursor: @cursor-disabled;\n\n    // Force color to inherit for custom content\n    .list-group-item-heading {\n      color: inherit;\n    }\n    .list-group-item-text {\n      color: @list-group-disabled-text-color;\n    }\n  }\n\n  // Active class on item itself, not parent\n  &.active,\n  &.active:hover,\n  &.active:focus {\n    z-index: 2; // Place active items above their siblings for proper border styling\n    color: @list-group-active-color;\n    background-color: @list-group-active-bg;\n    border-color: @list-group-active-border;\n\n    // Force color to inherit for custom content\n    .list-group-item-heading,\n    .list-group-item-heading > small,\n    .list-group-item-heading > .small {\n      color: inherit;\n    }\n    .list-group-item-text {\n      color: @list-group-active-text-color;\n    }\n  }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.list-group-item-text {\n  margin-bottom: 0;\n  line-height: 1.3;\n}\n","// List Groups\n\n.list-group-item-variant(@state; @background; @color) {\n  .list-group-item-@{state} {\n    color: @color;\n    background-color: @background;\n\n    a&,\n    button& {\n      color: @color;\n\n      .list-group-item-heading {\n        color: inherit;\n      }\n\n      &:hover,\n      &:focus {\n        color: @color;\n        background-color: darken(@background, 5%);\n      }\n      &.active,\n      &.active:hover,\n      &.active:focus {\n        color: #fff;\n        background-color: @color;\n        border-color: @color;\n      }\n    }\n  }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n  margin-bottom: @line-height-computed;\n  background-color: @panel-bg;\n  border: 1px solid transparent;\n  border-radius: @panel-border-radius;\n  .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n  padding: @panel-body-padding;\n  &:extend(.clearfix all);\n}\n\n// Optional heading\n.panel-heading {\n  padding: @panel-heading-padding;\n  border-bottom: 1px solid transparent;\n  .border-top-radius((@panel-border-radius - 1));\n\n  > .dropdown .dropdown-toggle {\n    color: inherit;\n  }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n  margin-top: 0;\n  margin-bottom: 0;\n  font-size: ceil((@font-size-base * 1.125));\n  color: inherit;\n\n  > a,\n  > small,\n  > .small,\n  > small > a,\n  > .small > a {\n    color: inherit;\n  }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n  padding: @panel-footer-padding;\n  background-color: @panel-footer-bg;\n  border-top: 1px solid @panel-inner-border;\n  .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n  > .list-group,\n  > .panel-collapse > .list-group {\n    margin-bottom: 0;\n\n    .list-group-item {\n      border-width: 1px 0;\n      border-radius: 0;\n    }\n\n    // Add border top radius for first one\n    &:first-child {\n      .list-group-item:first-child {\n        border-top: 0;\n        .border-top-radius((@panel-border-radius - 1));\n      }\n    }\n\n    // Add border bottom radius for last one\n    &:last-child {\n      .list-group-item:last-child {\n        border-bottom: 0;\n        .border-bottom-radius((@panel-border-radius - 1));\n      }\n    }\n  }\n  > .panel-heading + .panel-collapse > .list-group {\n    .list-group-item:first-child {\n      .border-top-radius(0);\n    }\n  }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n  .list-group-item:first-child {\n    border-top-width: 0;\n  }\n}\n.list-group + .panel-footer {\n  border-top-width: 0;\n}\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n  > .table,\n  > .table-responsive > .table,\n  > .panel-collapse > .table {\n    margin-bottom: 0;\n\n    caption {\n      padding-left: @panel-body-padding;\n      padding-right: @panel-body-padding;\n    }\n  }\n  // Add border top radius for first one\n  > .table:first-child,\n  > .table-responsive:first-child > .table:first-child {\n    .border-top-radius((@panel-border-radius - 1));\n\n    > thead:first-child,\n    > tbody:first-child {\n      > tr:first-child {\n        border-top-left-radius: (@panel-border-radius - 1);\n        border-top-right-radius: (@panel-border-radius - 1);\n\n        td:first-child,\n        th:first-child {\n          border-top-left-radius: (@panel-border-radius - 1);\n        }\n        td:last-child,\n        th:last-child {\n          border-top-right-radius: (@panel-border-radius - 1);\n        }\n      }\n    }\n  }\n  // Add border bottom radius for last one\n  > .table:last-child,\n  > .table-responsive:last-child > .table:last-child {\n    .border-bottom-radius((@panel-border-radius - 1));\n\n    > tbody:last-child,\n    > tfoot:last-child {\n      > tr:last-child {\n        border-bottom-left-radius: (@panel-border-radius - 1);\n        border-bottom-right-radius: (@panel-border-radius - 1);\n\n        td:first-child,\n        th:first-child {\n          border-bottom-left-radius: (@panel-border-radius - 1);\n        }\n        td:last-child,\n        th:last-child {\n          border-bottom-right-radius: (@panel-border-radius - 1);\n        }\n      }\n    }\n  }\n  > .panel-body + .table,\n  > .panel-body + .table-responsive,\n  > .table + .panel-body,\n  > .table-responsive + .panel-body {\n    border-top: 1px solid @table-border-color;\n  }\n  > .table > tbody:first-child > tr:first-child th,\n  > .table > tbody:first-child > tr:first-child td {\n    border-top: 0;\n  }\n  > .table-bordered,\n  > .table-responsive > .table-bordered {\n    border: 0;\n    > thead,\n    > tbody,\n    > tfoot {\n      > tr {\n        > th:first-child,\n        > td:first-child {\n          border-left: 0;\n        }\n        > th:last-child,\n        > td:last-child {\n          border-right: 0;\n        }\n      }\n    }\n    > thead,\n    > tbody {\n      > tr:first-child {\n        > td,\n        > th {\n          border-bottom: 0;\n        }\n      }\n    }\n    > tbody,\n    > tfoot {\n      > tr:last-child {\n        > td,\n        > th {\n          border-bottom: 0;\n        }\n      }\n    }\n  }\n  > .table-responsive {\n    border: 0;\n    margin-bottom: 0;\n  }\n}\n\n\n// Collapsible panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n  margin-bottom: @line-height-computed;\n\n  // Tighten up margin so it's only between panels\n  .panel {\n    margin-bottom: 0;\n    border-radius: @panel-border-radius;\n\n    + .panel {\n      margin-top: 5px;\n    }\n  }\n\n  .panel-heading {\n    border-bottom: 0;\n\n    + .panel-collapse > .panel-body,\n    + .panel-collapse > .list-group {\n      border-top: 1px solid @panel-inner-border;\n    }\n  }\n\n  .panel-footer {\n    border-top: 0;\n    + .panel-collapse .panel-body {\n      border-bottom: 1px solid @panel-inner-border;\n    }\n  }\n}\n\n\n// Contextual variations\n.panel-default {\n  .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n  .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n  .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n  .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n  .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n  .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","// Panels\n\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n  border-color: @border;\n\n  & > .panel-heading {\n    color: @heading-text-color;\n    background-color: @heading-bg-color;\n    border-color: @heading-border;\n\n    + .panel-collapse > .panel-body {\n      border-top-color: @border;\n    }\n    .badge {\n      color: @heading-bg-color;\n      background-color: @heading-text-color;\n    }\n  }\n  & > .panel-footer {\n    + .panel-collapse > .panel-body {\n      border-bottom-color: @border;\n    }\n  }\n}\n","// Embeds responsive\n//\n// Credit: Nicolas Gallagher and SUIT CSS.\n\n.embed-responsive {\n  position: relative;\n  display: block;\n  height: 0;\n  padding: 0;\n  overflow: hidden;\n\n  .embed-responsive-item,\n  iframe,\n  embed,\n  object,\n  video {\n    position: absolute;\n    top: 0;\n    left: 0;\n    bottom: 0;\n    height: 100%;\n    width: 100%;\n    border: 0;\n  }\n}\n\n// Modifier class for 16:9 aspect ratio\n.embed-responsive-16by9 {\n  padding-bottom: 56.25%;\n}\n\n// Modifier class for 4:3 aspect ratio\n.embed-responsive-4by3 {\n  padding-bottom: 75%;\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n  min-height: 20px;\n  padding: 19px;\n  margin-bottom: 20px;\n  background-color: @well-bg;\n  border: 1px solid @well-border;\n  border-radius: @border-radius-base;\n  .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n  blockquote {\n    border-color: #ddd;\n    border-color: rgba(0,0,0,.15);\n  }\n}\n\n// Sizes\n.well-lg {\n  padding: 24px;\n  border-radius: @border-radius-large;\n}\n.well-sm {\n  padding: 9px;\n  border-radius: @border-radius-small;\n}\n","//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n  float: right;\n  font-size: (@font-size-base * 1.5);\n  font-weight: @close-font-weight;\n  line-height: 1;\n  color: @close-color;\n  text-shadow: @close-text-shadow;\n  .opacity(.2);\n\n  &:hover,\n  &:focus {\n    color: @close-color;\n    text-decoration: none;\n    cursor: pointer;\n    .opacity(.5);\n  }\n\n  // Additional properties for button version\n  // iOS requires the button element instead of an anchor tag.\n  // If you want the anchor version, it requires `href=\"#\"`.\n  // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n  button& {\n    padding: 0;\n    cursor: pointer;\n    background: transparent;\n    border: 0;\n    -webkit-appearance: none;\n  }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open      - body class for killing the scroll\n// .modal           - container to scroll within\n// .modal-dialog    - positioning shell for the actual modal\n// .modal-content   - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n  overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n  display: none;\n  overflow: hidden;\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: @zindex-modal;\n  -webkit-overflow-scrolling: touch;\n\n  // Prevent Chrome on Windows from adding a focus outline. For details, see\n  // https://github.com/twbs/bootstrap/pull/10951.\n  outline: 0;\n\n  // When fading in the modal, animate it to slide down\n  &.fade .modal-dialog {\n    .translate(0, -25%);\n    .transition-transform(~\"0.3s ease-out\");\n  }\n  &.in .modal-dialog { .translate(0, 0) }\n}\n.modal-open .modal {\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n  position: relative;\n  width: auto;\n  margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n  position: relative;\n  background-color: @modal-content-bg;\n  border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n  border: 1px solid @modal-content-border-color;\n  border-radius: @border-radius-large;\n  .box-shadow(0 3px 9px rgba(0,0,0,.5));\n  background-clip: padding-box;\n  // Remove focus outline from opened modal\n  outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: @zindex-modal-background;\n  background-color: @modal-backdrop-bg;\n  // Fade for backdrop\n  &.fade { .opacity(0); }\n  &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n  padding: @modal-title-padding;\n  border-bottom: 1px solid @modal-header-border-color;\n  &:extend(.clearfix all);\n}\n// Close icon\n.modal-header .close {\n  margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n  margin: 0;\n  line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n  position: relative;\n  padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n  padding: @modal-inner-padding;\n  text-align: right; // right align buttons\n  border-top: 1px solid @modal-footer-border-color;\n  &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n  // Properly space out buttons\n  .btn + .btn {\n    margin-left: 5px;\n    margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n  }\n  // but override that for button groups\n  .btn-group .btn + .btn {\n    margin-left: -1px;\n  }\n  // and override it for block buttons as well\n  .btn-block + .btn-block {\n    margin-left: 0;\n  }\n}\n\n// Measure scrollbar width for padding body during modal show/hide\n.modal-scrollbar-measure {\n  position: absolute;\n  top: -9999px;\n  width: 50px;\n  height: 50px;\n  overflow: scroll;\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n  // Automatically set modal's width for larger viewports\n  .modal-dialog {\n    width: @modal-md;\n    margin: 30px auto;\n  }\n  .modal-content {\n    .box-shadow(0 5px 15px rgba(0,0,0,.5));\n  }\n\n  // Modal sizes\n  .modal-sm { width: @modal-sm; }\n}\n\n@media (min-width: @screen-md-min) {\n  .modal-lg { width: @modal-lg; }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n  position: absolute;\n  z-index: @zindex-tooltip;\n  display: block;\n  // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n  // So reset our font and text properties to avoid inheriting weird values.\n  .reset-text();\n  font-size: @font-size-small;\n\n  .opacity(0);\n\n  &.in     { .opacity(@tooltip-opacity); }\n  &.top    { margin-top:  -3px; padding: @tooltip-arrow-width 0; }\n  &.right  { margin-left:  3px; padding: 0 @tooltip-arrow-width; }\n  &.bottom { margin-top:   3px; padding: @tooltip-arrow-width 0; }\n  &.left   { margin-left: -3px; padding: 0 @tooltip-arrow-width; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n  max-width: @tooltip-max-width;\n  padding: 3px 8px;\n  color: @tooltip-color;\n  text-align: center;\n  background-color: @tooltip-bg;\n  border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n  position: absolute;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1\n.tooltip {\n  &.top .tooltip-arrow {\n    bottom: 0;\n    left: 50%;\n    margin-left: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.top-left .tooltip-arrow {\n    bottom: 0;\n    right: @tooltip-arrow-width;\n    margin-bottom: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.top-right .tooltip-arrow {\n    bottom: 0;\n    left: @tooltip-arrow-width;\n    margin-bottom: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.right .tooltip-arrow {\n    top: 50%;\n    left: 0;\n    margin-top: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-right-color: @tooltip-arrow-color;\n  }\n  &.left .tooltip-arrow {\n    top: 50%;\n    right: 0;\n    margin-top: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-left-color: @tooltip-arrow-color;\n  }\n  &.bottom .tooltip-arrow {\n    top: 0;\n    left: 50%;\n    margin-left: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n  &.bottom-left .tooltip-arrow {\n    top: 0;\n    right: @tooltip-arrow-width;\n    margin-top: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n  &.bottom-right .tooltip-arrow {\n    top: 0;\n    left: @tooltip-arrow-width;\n    margin-top: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n}\n",".reset-text() {\n  font-family: @font-family-base;\n  // We deliberately do NOT reset font-size.\n  font-style: normal;\n  font-weight: normal;\n  letter-spacing: normal;\n  line-break: auto;\n  line-height: @line-height-base;\n  text-align: left; // Fallback for where `start` is not supported\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  white-space: normal;\n  word-break: normal;\n  word-spacing: normal;\n  word-wrap: normal;\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n  position: absolute;\n  top: 0;\n  left: 0;\n  z-index: @zindex-popover;\n  display: none;\n  max-width: @popover-max-width;\n  padding: 1px;\n  // Our parent element can be arbitrary since popovers are by default inserted as a sibling of their target element.\n  // So reset our font and text properties to avoid inheriting weird values.\n  .reset-text();\n  font-size: @font-size-base;\n\n  background-color: @popover-bg;\n  background-clip: padding-box;\n  border: 1px solid @popover-fallback-border-color;\n  border: 1px solid @popover-border-color;\n  border-radius: @border-radius-large;\n  .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n  // Offset the popover to account for the popover arrow\n  &.top     { margin-top: -@popover-arrow-width; }\n  &.right   { margin-left: @popover-arrow-width; }\n  &.bottom  { margin-top: @popover-arrow-width; }\n  &.left    { margin-left: -@popover-arrow-width; }\n}\n\n.popover-title {\n  margin: 0; // reset heading margin\n  padding: 8px 14px;\n  font-size: @font-size-base;\n  background-color: @popover-title-bg;\n  border-bottom: 1px solid darken(@popover-title-bg, 5%);\n  border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;\n}\n\n.popover-content {\n  padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover > .arrow {\n  &,\n  &:after {\n    position: absolute;\n    display: block;\n    width: 0;\n    height: 0;\n    border-color: transparent;\n    border-style: solid;\n  }\n}\n.popover > .arrow {\n  border-width: @popover-arrow-outer-width;\n}\n.popover > .arrow:after {\n  border-width: @popover-arrow-width;\n  content: \"\";\n}\n\n.popover {\n  &.top > .arrow {\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    border-bottom-width: 0;\n    border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-top-color: @popover-arrow-outer-color;\n    bottom: -@popover-arrow-outer-width;\n    &:after {\n      content: \" \";\n      bottom: 1px;\n      margin-left: -@popover-arrow-width;\n      border-bottom-width: 0;\n      border-top-color: @popover-arrow-color;\n    }\n  }\n  &.right > .arrow {\n    top: 50%;\n    left: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    border-left-width: 0;\n    border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-right-color: @popover-arrow-outer-color;\n    &:after {\n      content: \" \";\n      left: 1px;\n      bottom: -@popover-arrow-width;\n      border-left-width: 0;\n      border-right-color: @popover-arrow-color;\n    }\n  }\n  &.bottom > .arrow {\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    border-top-width: 0;\n    border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-bottom-color: @popover-arrow-outer-color;\n    top: -@popover-arrow-outer-width;\n    &:after {\n      content: \" \";\n      top: 1px;\n      margin-left: -@popover-arrow-width;\n      border-top-width: 0;\n      border-bottom-color: @popover-arrow-color;\n    }\n  }\n\n  &.left > .arrow {\n    top: 50%;\n    right: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    border-right-width: 0;\n    border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-left-color: @popover-arrow-outer-color;\n    &:after {\n      content: \" \";\n      right: 1px;\n      border-right-width: 0;\n      border-left-color: @popover-arrow-color;\n      bottom: -@popover-arrow-width;\n    }\n  }\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n//    contenteditable attribute is included anywhere else in the document.\n//    Otherwise it causes space to appear at the top and bottom of elements\n//    that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n//    `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n  &:before,\n  &:after {\n    content: \" \"; // 1\n    display: table; // 2\n  }\n  &:after {\n    clear: both;\n  }\n}\n","// Center-align a block level element\n\n.center-block() {\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n","// CSS image replacement\n//\n// Heads up! v3 launched with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (has been removed in v4)\n.hide-text() {\n  font: ~\"0/0\" a;\n  color: transparent;\n  text-shadow: none;\n  background-color: transparent;\n  border: 0;\n}\n\n// New mixin to use as of v3.0.1\n.text-hide() {\n  .hide-text();\n}\n","//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#support-ie10-width\n// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n  width: device-width;\n}\n\n\n// Visibility utilities\n// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n  .responsive-invisibility();\n}\n\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n  display: none !important;\n}\n\n.visible-xs {\n  @media (max-width: @screen-xs-max) {\n    .responsive-visibility();\n  }\n}\n.visible-xs-block {\n  @media (max-width: @screen-xs-max) {\n    display: block !important;\n  }\n}\n.visible-xs-inline {\n  @media (max-width: @screen-xs-max) {\n    display: inline !important;\n  }\n}\n.visible-xs-inline-block {\n  @media (max-width: @screen-xs-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-sm {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    .responsive-visibility();\n  }\n}\n.visible-sm-block {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: block !important;\n  }\n}\n.visible-sm-inline {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: inline !important;\n  }\n}\n.visible-sm-inline-block {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-md {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    .responsive-visibility();\n  }\n}\n.visible-md-block {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: block !important;\n  }\n}\n.visible-md-inline {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: inline !important;\n  }\n}\n.visible-md-inline-block {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-lg {\n  @media (min-width: @screen-lg-min) {\n    .responsive-visibility();\n  }\n}\n.visible-lg-block {\n  @media (min-width: @screen-lg-min) {\n    display: block !important;\n  }\n}\n.visible-lg-inline {\n  @media (min-width: @screen-lg-min) {\n    display: inline !important;\n  }\n}\n.visible-lg-inline-block {\n  @media (min-width: @screen-lg-min) {\n    display: inline-block !important;\n  }\n}\n\n.hidden-xs {\n  @media (max-width: @screen-xs-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-sm {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-md {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-lg {\n  @media (min-width: @screen-lg-min) {\n    .responsive-invisibility();\n  }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n// Note: Deprecated .visible-print as of v3.2.0\n.visible-print {\n  .responsive-invisibility();\n\n  @media print {\n    .responsive-visibility();\n  }\n}\n.visible-print-block {\n  display: none !important;\n\n  @media print {\n    display: block !important;\n  }\n}\n.visible-print-inline {\n  display: none !important;\n\n  @media print {\n    display: inline !important;\n  }\n}\n.visible-print-inline-block {\n  display: none !important;\n\n  @media print {\n    display: inline-block !important;\n  }\n}\n\n.hidden-print {\n  @media print {\n    .responsive-invisibility();\n  }\n}\n","// Responsive utilities\n\n//\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n  display: block !important;\n  table&  { display: table !important; }\n  tr&     { display: table-row !important; }\n  th&,\n  td&     { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n  display: none !important;\n}\n","/* FONT PATH\n * -------------------------- */\n\n@font-face {\n  font-family: 'FontAwesome';\n  src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');\n  src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),\n    url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),\n    url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),\n    url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),\n    url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');\n  // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts\n  font-weight: normal;\n  font-style: normal;\n}\n","// Base Class Definition\n// -------------------------\n\n.@{fa-css-prefix} {\n  display: inline-block;\n  font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration\n  font-size: inherit; // can't have font-size inherit on line above, so need to override\n  text-rendering: auto; // optimizelegibility throws things off #1094\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n\n}\n","// Icon Sizes\n// -------------------------\n\n/* makes the font 33% larger relative to the icon container */\n.@{fa-css-prefix}-lg {\n  font-size: (4em / 3);\n  line-height: (3em / 4);\n  vertical-align: -15%;\n}\n.@{fa-css-prefix}-2x { font-size: 2em; }\n.@{fa-css-prefix}-3x { font-size: 3em; }\n.@{fa-css-prefix}-4x { font-size: 4em; }\n.@{fa-css-prefix}-5x { font-size: 5em; }\n","// Fixed Width Icons\n// -------------------------\n.@{fa-css-prefix}-fw {\n  width: (18em / 14);\n  text-align: center;\n}\n","// List Icons\n// -------------------------\n\n.@{fa-css-prefix}-ul {\n  padding-left: 0;\n  margin-left: @fa-li-width;\n  list-style-type: none;\n  > li { position: relative; }\n}\n.@{fa-css-prefix}-li {\n  position: absolute;\n  left: -@fa-li-width;\n  width: @fa-li-width;\n  top: (2em / 14);\n  text-align: center;\n  &.@{fa-css-prefix}-lg {\n    left: (-@fa-li-width + (4em / 14));\n  }\n}\n","// Animated Icons\n// --------------------------\n\n.@{fa-css-prefix}-spin {\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear;\n}\n\n.@{fa-css-prefix}-pulse {\n  -webkit-animation: fa-spin 1s infinite steps(8);\n          animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n            transform: rotate(359deg);\n  }\n}\n\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n            transform: rotate(359deg);\n  }\n}\n","// Rotated & Flipped Icons\n// -------------------------\n\n.@{fa-css-prefix}-rotate-90  { .fa-icon-rotate(90deg, 1);  }\n.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }\n.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }\n\n.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }\n.@{fa-css-prefix}-flip-vertical   { .fa-icon-flip(1, -1, 2); }\n\n// Hook for IE8-9\n// -------------------------\n\n:root .@{fa-css-prefix}-rotate-90,\n:root .@{fa-css-prefix}-rotate-180,\n:root .@{fa-css-prefix}-rotate-270,\n:root .@{fa-css-prefix}-flip-horizontal,\n:root .@{fa-css-prefix}-flip-vertical {\n  filter: none;\n}\n","// Mixins\n// --------------------------\n\n.fa-icon() {\n  display: inline-block;\n  font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration\n  font-size: inherit; // can't have font-size inherit on line above, so need to override\n  text-rendering: auto; // optimizelegibility throws things off #1094\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n\n}\n\n.fa-icon-rotate(@degrees, @rotation) {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})\";\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n\n.fa-icon-flip(@horiz, @vert, @rotation) {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)\";\n  -webkit-transform: scale(@horiz, @vert);\n      -ms-transform: scale(@horiz, @vert);\n          transform: scale(@horiz, @vert);\n}\n\n\n// Only display content to screen readers. A la Bootstrap 4.\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n//\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n//\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable() {\n  &:active,\n  &:focus {\n    position: static;\n    width: auto;\n    height: auto;\n    margin: 0;\n    overflow: visible;\n    clip: auto;\n  }\n}\n","// Stacked Icons\n// -------------------------\n\n.@{fa-css-prefix}-stack {\n  position: relative;\n  display: inline-block;\n  width: 2em;\n  height: 2em;\n  line-height: 2em;\n  vertical-align: middle;\n}\n.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {\n  position: absolute;\n  left: 0;\n  width: 100%;\n  text-align: center;\n}\n.@{fa-css-prefix}-stack-1x { line-height: inherit; }\n.@{fa-css-prefix}-stack-2x { font-size: 2em; }\n.@{fa-css-prefix}-inverse { color: @fa-inverse; }\n","/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n   readers do not read off random characters that represent icons */\n\n.@{fa-css-prefix}-glass:before { content: @fa-var-glass; }\n.@{fa-css-prefix}-music:before { content: @fa-var-music; }\n.@{fa-css-prefix}-search:before { content: @fa-var-search; }\n.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; }\n.@{fa-css-prefix}-heart:before { content: @fa-var-heart; }\n.@{fa-css-prefix}-star:before { content: @fa-var-star; }\n.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; }\n.@{fa-css-prefix}-user:before { content: @fa-var-user; }\n.@{fa-css-prefix}-film:before { content: @fa-var-film; }\n.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; }\n.@{fa-css-prefix}-th:before { content: @fa-var-th; }\n.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; }\n.@{fa-css-prefix}-check:before { content: @fa-var-check; }\n.@{fa-css-prefix}-remove:before,\n.@{fa-css-prefix}-close:before,\n.@{fa-css-prefix}-times:before { content: @fa-var-times; }\n.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; }\n.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; }\n.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; }\n.@{fa-css-prefix}-signal:before { content: @fa-var-signal; }\n.@{fa-css-prefix}-gear:before,\n.@{fa-css-prefix}-cog:before { content: @fa-var-cog; }\n.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; }\n.@{fa-css-prefix}-home:before { content: @fa-var-home; }\n.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; }\n.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; }\n.@{fa-css-prefix}-road:before { content: @fa-var-road; }\n.@{fa-css-prefix}-download:before { content: @fa-var-download; }\n.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; }\n.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; }\n.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; }\n.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; }\n.@{fa-css-prefix}-rotate-right:before,\n.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; }\n.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; }\n.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; }\n.@{fa-css-prefix}-lock:before { content: @fa-var-lock; }\n.@{fa-css-prefix}-flag:before { content: @fa-var-flag; }\n.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; }\n.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; }\n.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; }\n.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; }\n.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; }\n.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; }\n.@{fa-css-prefix}-tag:before { content: @fa-var-tag; }\n.@{fa-css-prefix}-tags:before { content: @fa-var-tags; }\n.@{fa-css-prefix}-book:before { content: @fa-var-book; }\n.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; }\n.@{fa-css-prefix}-print:before { content: @fa-var-print; }\n.@{fa-css-prefix}-camera:before { content: @fa-var-camera; }\n.@{fa-css-prefix}-font:before { content: @fa-var-font; }\n.@{fa-css-prefix}-bold:before { content: @fa-var-bold; }\n.@{fa-css-prefix}-italic:before { content: @fa-var-italic; }\n.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; }\n.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; }\n.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; }\n.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; }\n.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; }\n.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; }\n.@{fa-css-prefix}-list:before { content: @fa-var-list; }\n.@{fa-css-prefix}-dedent:before,\n.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; }\n.@{fa-css-prefix}-indent:before { content: @fa-var-indent; }\n.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; }\n.@{fa-css-prefix}-photo:before,\n.@{fa-css-prefix}-image:before,\n.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; }\n.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; }\n.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; }\n.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; }\n.@{fa-css-prefix}-tint:before { content: @fa-var-tint; }\n.@{fa-css-prefix}-edit:before,\n.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; }\n.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; }\n.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; }\n.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; }\n.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; }\n.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; }\n.@{fa-css-prefix}-backward:before { content: @fa-var-backward; }\n.@{fa-css-prefix}-play:before { content: @fa-var-play; }\n.@{fa-css-prefix}-pause:before { content: @fa-var-pause; }\n.@{fa-css-prefix}-stop:before { content: @fa-var-stop; }\n.@{fa-css-prefix}-forward:before { content: @fa-var-forward; }\n.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; }\n.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; }\n.@{fa-css-prefix}-eject:before { content: @fa-var-eject; }\n.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; }\n.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; }\n.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; }\n.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; }\n.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; }\n.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; }\n.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; }\n.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; }\n.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; }\n.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; }\n.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; }\n.@{fa-css-prefix}-ban:before { content: @fa-var-ban; }\n.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; }\n.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; }\n.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; }\n.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; }\n.@{fa-css-prefix}-mail-forward:before,\n.@{fa-css-prefix}-share:before { content: @fa-var-share; }\n.@{fa-css-prefix}-expand:before { content: @fa-var-expand; }\n.@{fa-css-prefix}-compress:before { content: @fa-var-compress; }\n.@{fa-css-prefix}-plus:before { content: @fa-var-plus; }\n.@{fa-css-prefix}-minus:before { content: @fa-var-minus; }\n.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; }\n.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; }\n.@{fa-css-prefix}-gift:before { content: @fa-var-gift; }\n.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; }\n.@{fa-css-prefix}-fire:before { content: @fa-var-fire; }\n.@{fa-css-prefix}-eye:before { content: @fa-var-eye; }\n.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; }\n.@{fa-css-prefix}-warning:before,\n.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; }\n.@{fa-css-prefix}-plane:before { content: @fa-var-plane; }\n.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; }\n.@{fa-css-prefix}-random:before { content: @fa-var-random; }\n.@{fa-css-prefix}-comment:before { content: @fa-var-comment; }\n.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; }\n.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; }\n.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; }\n.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; }\n.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; }\n.@{fa-css-prefix}-folder:before { content: @fa-var-folder; }\n.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; }\n.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; }\n.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; }\n.@{fa-css-prefix}-bar-chart-o:before,\n.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; }\n.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; }\n.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; }\n.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; }\n.@{fa-css-prefix}-key:before { content: @fa-var-key; }\n.@{fa-css-prefix}-gears:before,\n.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; }\n.@{fa-css-prefix}-comments:before { content: @fa-var-comments; }\n.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; }\n.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; }\n.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; }\n.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; }\n.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; }\n.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; }\n.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; }\n.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; }\n.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; }\n.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; }\n.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; }\n.@{fa-css-prefix}-upload:before { content: @fa-var-upload; }\n.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; }\n.@{fa-css-prefix}-phone:before { content: @fa-var-phone; }\n.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; }\n.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; }\n.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; }\n.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; }\n.@{fa-css-prefix}-facebook-f:before,\n.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; }\n.@{fa-css-prefix}-github:before { content: @fa-var-github; }\n.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; }\n.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; }\n.@{fa-css-prefix}-feed:before,\n.@{fa-css-prefix}-rss:before { content: @fa-var-rss; }\n.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; }\n.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; }\n.@{fa-css-prefix}-bell:before { content: @fa-var-bell; }\n.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; }\n.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; }\n.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; }\n.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; }\n.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; }\n.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; }\n.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; }\n.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; }\n.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; }\n.@{fa-css-prefix}-globe:before { content: @fa-var-globe; }\n.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; }\n.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; }\n.@{fa-css-prefix}-filter:before { content: @fa-var-filter; }\n.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; }\n.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; }\n.@{fa-css-prefix}-group:before,\n.@{fa-css-prefix}-users:before { content: @fa-var-users; }\n.@{fa-css-prefix}-chain:before,\n.@{fa-css-prefix}-link:before { content: @fa-var-link; }\n.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; }\n.@{fa-css-prefix}-flask:before { content: @fa-var-flask; }\n.@{fa-css-prefix}-cut:before,\n.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; }\n.@{fa-css-prefix}-copy:before,\n.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; }\n.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; }\n.@{fa-css-prefix}-save:before,\n.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; }\n.@{fa-css-prefix}-square:before { content: @fa-var-square; }\n.@{fa-css-prefix}-navicon:before,\n.@{fa-css-prefix}-reorder:before,\n.@{fa-css-prefix}-bars:before { content: @fa-var-bars; }\n.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; }\n.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; }\n.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; }\n.@{fa-css-prefix}-underline:before { content: @fa-var-underline; }\n.@{fa-css-prefix}-table:before { content: @fa-var-table; }\n.@{fa-css-prefix}-magic:before { content: @fa-var-magic; }\n.@{fa-css-prefix}-truck:before { content: @fa-var-truck; }\n.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; }\n.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; }\n.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; }\n.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; }\n.@{fa-css-prefix}-money:before { content: @fa-var-money; }\n.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; }\n.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; }\n.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; }\n.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; }\n.@{fa-css-prefix}-columns:before { content: @fa-var-columns; }\n.@{fa-css-prefix}-unsorted:before,\n.@{fa-css-prefix}-sort:before { content: @fa-var-sort; }\n.@{fa-css-prefix}-sort-down:before,\n.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; }\n.@{fa-css-prefix}-sort-up:before,\n.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; }\n.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; }\n.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; }\n.@{fa-css-prefix}-rotate-left:before,\n.@{fa-css-prefix}-undo:before { content: @fa-var-undo; }\n.@{fa-css-prefix}-legal:before,\n.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; }\n.@{fa-css-prefix}-dashboard:before,\n.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; }\n.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; }\n.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; }\n.@{fa-css-prefix}-flash:before,\n.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; }\n.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; }\n.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; }\n.@{fa-css-prefix}-paste:before,\n.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; }\n.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; }\n.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; }\n.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; }\n.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; }\n.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; }\n.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; }\n.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; }\n.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; }\n.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; }\n.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; }\n.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; }\n.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; }\n.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; }\n.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; }\n.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; }\n.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; }\n.@{fa-css-prefix}-beer:before { content: @fa-var-beer; }\n.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; }\n.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; }\n.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; }\n.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; }\n.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; }\n.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; }\n.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; }\n.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; }\n.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; }\n.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; }\n.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; }\n.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; }\n.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; }\n.@{fa-css-prefix}-mobile-phone:before,\n.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; }\n.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; }\n.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; }\n.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; }\n.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; }\n.@{fa-css-prefix}-circle:before { content: @fa-var-circle; }\n.@{fa-css-prefix}-mail-reply:before,\n.@{fa-css-prefix}-reply:before { content: @fa-var-reply; }\n.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; }\n.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; }\n.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; }\n.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; }\n.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; }\n.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; }\n.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; }\n.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; }\n.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; }\n.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; }\n.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; }\n.@{fa-css-prefix}-code:before { content: @fa-var-code; }\n.@{fa-css-prefix}-mail-reply-all:before,\n.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; }\n.@{fa-css-prefix}-star-half-empty:before,\n.@{fa-css-prefix}-star-half-full:before,\n.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; }\n.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; }\n.@{fa-css-prefix}-crop:before { content: @fa-var-crop; }\n.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; }\n.@{fa-css-prefix}-unlink:before,\n.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; }\n.@{fa-css-prefix}-question:before { content: @fa-var-question; }\n.@{fa-css-prefix}-info:before { content: @fa-var-info; }\n.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; }\n.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; }\n.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; }\n.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; }\n.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; }\n.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; }\n.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; }\n.@{fa-css-prefix}-shield:before { content: @fa-var-shield; }\n.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; }\n.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; }\n.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; }\n.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; }\n.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; }\n.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; }\n.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; }\n.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; }\n.@{fa-css-prefix}-html5:before { content: @fa-var-html5; }\n.@{fa-css-prefix}-css3:before { content: @fa-var-css3; }\n.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; }\n.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; }\n.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; }\n.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; }\n.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; }\n.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; }\n.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; }\n.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; }\n.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; }\n.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; }\n.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; }\n.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; }\n.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; }\n.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; }\n.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; }\n.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; }\n.@{fa-css-prefix}-compass:before { content: @fa-var-compass; }\n.@{fa-css-prefix}-toggle-down:before,\n.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; }\n.@{fa-css-prefix}-toggle-up:before,\n.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; }\n.@{fa-css-prefix}-toggle-right:before,\n.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; }\n.@{fa-css-prefix}-euro:before,\n.@{fa-css-prefix}-eur:before { content: @fa-var-eur; }\n.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; }\n.@{fa-css-prefix}-dollar:before,\n.@{fa-css-prefix}-usd:before { content: @fa-var-usd; }\n.@{fa-css-prefix}-rupee:before,\n.@{fa-css-prefix}-inr:before { content: @fa-var-inr; }\n.@{fa-css-prefix}-cny:before,\n.@{fa-css-prefix}-rmb:before,\n.@{fa-css-prefix}-yen:before,\n.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; }\n.@{fa-css-prefix}-ruble:before,\n.@{fa-css-prefix}-rouble:before,\n.@{fa-css-prefix}-rub:before { content: @fa-var-rub; }\n.@{fa-css-prefix}-won:before,\n.@{fa-css-prefix}-krw:before { content: @fa-var-krw; }\n.@{fa-css-prefix}-bitcoin:before,\n.@{fa-css-prefix}-btc:before { content: @fa-var-btc; }\n.@{fa-css-prefix}-file:before { content: @fa-var-file; }\n.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; }\n.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; }\n.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; }\n.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; }\n.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; }\n.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; }\n.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; }\n.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; }\n.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; }\n.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; }\n.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; }\n.@{fa-css-prefix}-xing:before { content: @fa-var-xing; }\n.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; }\n.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; }\n.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; }\n.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; }\n.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; }\n.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; }\n.@{fa-css-prefix}-adn:before { content: @fa-var-adn; }\n.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; }\n.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; }\n.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; }\n.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; }\n.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; }\n.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; }\n.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; }\n.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; }\n.@{fa-css-prefix}-apple:before { content: @fa-var-apple; }\n.@{fa-css-prefix}-windows:before { content: @fa-var-windows; }\n.@{fa-css-prefix}-android:before { content: @fa-var-android; }\n.@{fa-css-prefix}-linux:before { content: @fa-var-linux; }\n.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; }\n.@{fa-css-prefix}-skype:before { content: @fa-var-skype; }\n.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; }\n.@{fa-css-prefix}-trello:before { content: @fa-var-trello; }\n.@{fa-css-prefix}-female:before { content: @fa-var-female; }\n.@{fa-css-prefix}-male:before { content: @fa-var-male; }\n.@{fa-css-prefix}-gittip:before,\n.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; }\n.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; }\n.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; }\n.@{fa-css-prefix}-archive:before { content: @fa-var-archive; }\n.@{fa-css-prefix}-bug:before { content: @fa-var-bug; }\n.@{fa-css-prefix}-vk:before { content: @fa-var-vk; }\n.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; }\n.@{fa-css-prefix}-renren:before { content: @fa-var-renren; }\n.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; }\n.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; }\n.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; }\n.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; }\n.@{fa-css-prefix}-toggle-left:before,\n.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; }\n.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; }\n.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; }\n.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; }\n.@{fa-css-prefix}-turkish-lira:before,\n.@{fa-css-prefix}-try:before { content: @fa-var-try; }\n.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; }\n.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; }\n.@{fa-css-prefix}-slack:before { content: @fa-var-slack; }\n.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; }\n.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; }\n.@{fa-css-prefix}-openid:before { content: @fa-var-openid; }\n.@{fa-css-prefix}-institution:before,\n.@{fa-css-prefix}-bank:before,\n.@{fa-css-prefix}-university:before { content: @fa-var-university; }\n.@{fa-css-prefix}-mortar-board:before,\n.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; }\n.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; }\n.@{fa-css-prefix}-google:before { content: @fa-var-google; }\n.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; }\n.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; }\n.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; }\n.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; }\n.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; }\n.@{fa-css-prefix}-digg:before { content: @fa-var-digg; }\n.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; }\n.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; }\n.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; }\n.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; }\n.@{fa-css-prefix}-language:before { content: @fa-var-language; }\n.@{fa-css-prefix}-fax:before { content: @fa-var-fax; }\n.@{fa-css-prefix}-building:before { content: @fa-var-building; }\n.@{fa-css-prefix}-child:before { content: @fa-var-child; }\n.@{fa-css-prefix}-paw:before { content: @fa-var-paw; }\n.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; }\n.@{fa-css-prefix}-cube:before { content: @fa-var-cube; }\n.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; }\n.@{fa-css-prefix}-behance:before { content: @fa-var-behance; }\n.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; }\n.@{fa-css-prefix}-steam:before { content: @fa-var-steam; }\n.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; }\n.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; }\n.@{fa-css-prefix}-automobile:before,\n.@{fa-css-prefix}-car:before { content: @fa-var-car; }\n.@{fa-css-prefix}-cab:before,\n.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; }\n.@{fa-css-prefix}-tree:before { content: @fa-var-tree; }\n.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; }\n.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; }\n.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; }\n.@{fa-css-prefix}-database:before { content: @fa-var-database; }\n.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; }\n.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; }\n.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; }\n.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; }\n.@{fa-css-prefix}-file-photo-o:before,\n.@{fa-css-prefix}-file-picture-o:before,\n.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; }\n.@{fa-css-prefix}-file-zip-o:before,\n.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; }\n.@{fa-css-prefix}-file-sound-o:before,\n.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; }\n.@{fa-css-prefix}-file-movie-o:before,\n.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; }\n.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; }\n.@{fa-css-prefix}-vine:before { content: @fa-var-vine; }\n.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; }\n.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; }\n.@{fa-css-prefix}-life-bouy:before,\n.@{fa-css-prefix}-life-buoy:before,\n.@{fa-css-prefix}-life-saver:before,\n.@{fa-css-prefix}-support:before,\n.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; }\n.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; }\n.@{fa-css-prefix}-ra:before,\n.@{fa-css-prefix}-resistance:before,\n.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; }\n.@{fa-css-prefix}-ge:before,\n.@{fa-css-prefix}-empire:before { content: @fa-var-empire; }\n.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; }\n.@{fa-css-prefix}-git:before { content: @fa-var-git; }\n.@{fa-css-prefix}-y-combinator-square:before,\n.@{fa-css-prefix}-yc-square:before,\n.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; }\n.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; }\n.@{fa-css-prefix}-qq:before { content: @fa-var-qq; }\n.@{fa-css-prefix}-wechat:before,\n.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; }\n.@{fa-css-prefix}-send:before,\n.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; }\n.@{fa-css-prefix}-send-o:before,\n.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; }\n.@{fa-css-prefix}-history:before { content: @fa-var-history; }\n.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; }\n.@{fa-css-prefix}-header:before { content: @fa-var-header; }\n.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; }\n.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; }\n.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; }\n.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; }\n.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; }\n.@{fa-css-prefix}-soccer-ball-o:before,\n.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; }\n.@{fa-css-prefix}-tty:before { content: @fa-var-tty; }\n.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; }\n.@{fa-css-prefix}-plug:before { content: @fa-var-plug; }\n.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; }\n.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; }\n.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; }\n.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; }\n.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; }\n.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; }\n.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; }\n.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; }\n.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; }\n.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; }\n.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; }\n.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; }\n.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; }\n.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; }\n.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; }\n.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; }\n.@{fa-css-prefix}-trash:before { content: @fa-var-trash; }\n.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; }\n.@{fa-css-prefix}-at:before { content: @fa-var-at; }\n.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; }\n.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; }\n.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; }\n.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; }\n.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; }\n.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; }\n.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; }\n.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; }\n.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; }\n.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; }\n.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; }\n.@{fa-css-prefix}-bus:before { content: @fa-var-bus; }\n.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; }\n.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; }\n.@{fa-css-prefix}-cc:before { content: @fa-var-cc; }\n.@{fa-css-prefix}-shekel:before,\n.@{fa-css-prefix}-sheqel:before,\n.@{fa-css-prefix}-ils:before { content: @fa-var-ils; }\n.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; }\n.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; }\n.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; }\n.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; }\n.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; }\n.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; }\n.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; }\n.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; }\n.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; }\n.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; }\n.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; }\n.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; }\n.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; }\n.@{fa-css-prefix}-ship:before { content: @fa-var-ship; }\n.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; }\n.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; }\n.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; }\n.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; }\n.@{fa-css-prefix}-venus:before { content: @fa-var-venus; }\n.@{fa-css-prefix}-mars:before { content: @fa-var-mars; }\n.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; }\n.@{fa-css-prefix}-intersex:before,\n.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; }\n.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; }\n.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; }\n.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; }\n.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; }\n.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; }\n.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; }\n.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; }\n.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; }\n.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; }\n.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; }\n.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; }\n.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; }\n.@{fa-css-prefix}-server:before { content: @fa-var-server; }\n.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; }\n.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; }\n.@{fa-css-prefix}-hotel:before,\n.@{fa-css-prefix}-bed:before { content: @fa-var-bed; }\n.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; }\n.@{fa-css-prefix}-train:before { content: @fa-var-train; }\n.@{fa-css-prefix}-subway:before { content: @fa-var-subway; }\n.@{fa-css-prefix}-medium:before { content: @fa-var-medium; }\n.@{fa-css-prefix}-yc:before,\n.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; }\n.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; }\n.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; }\n.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; }\n.@{fa-css-prefix}-battery-4:before,\n.@{fa-css-prefix}-battery:before,\n.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; }\n.@{fa-css-prefix}-battery-3:before,\n.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; }\n.@{fa-css-prefix}-battery-2:before,\n.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; }\n.@{fa-css-prefix}-battery-1:before,\n.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; }\n.@{fa-css-prefix}-battery-0:before,\n.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; }\n.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; }\n.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; }\n.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; }\n.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; }\n.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; }\n.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; }\n.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; }\n.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; }\n.@{fa-css-prefix}-clone:before { content: @fa-var-clone; }\n.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; }\n.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; }\n.@{fa-css-prefix}-hourglass-1:before,\n.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; }\n.@{fa-css-prefix}-hourglass-2:before,\n.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; }\n.@{fa-css-prefix}-hourglass-3:before,\n.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; }\n.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; }\n.@{fa-css-prefix}-hand-grab-o:before,\n.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; }\n.@{fa-css-prefix}-hand-stop-o:before,\n.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; }\n.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; }\n.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; }\n.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; }\n.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; }\n.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; }\n.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; }\n.@{fa-css-prefix}-registered:before { content: @fa-var-registered; }\n.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; }\n.@{fa-css-prefix}-gg:before { content: @fa-var-gg; }\n.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; }\n.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; }\n.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; }\n.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; }\n.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; }\n.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; }\n.@{fa-css-prefix}-safari:before { content: @fa-var-safari; }\n.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; }\n.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; }\n.@{fa-css-prefix}-opera:before { content: @fa-var-opera; }\n.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; }\n.@{fa-css-prefix}-tv:before,\n.@{fa-css-prefix}-television:before { content: @fa-var-television; }\n.@{fa-css-prefix}-contao:before { content: @fa-var-contao; }\n.@{fa-css-prefix}-500px:before { content: @fa-var-500px; }\n.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; }\n.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; }\n.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; }\n.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; }\n.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; }\n.@{fa-css-prefix}-industry:before { content: @fa-var-industry; }\n.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; }\n.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; }\n.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; }\n.@{fa-css-prefix}-map:before { content: @fa-var-map; }\n.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; }\n.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; }\n.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; }\n.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; }\n.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; }\n.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; }\n.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; }\n.@{fa-css-prefix}-edge:before { content: @fa-var-edge; }\n.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; }\n.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; }\n.@{fa-css-prefix}-modx:before { content: @fa-var-modx; }\n.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; }\n.@{fa-css-prefix}-usb:before { content: @fa-var-usb; }\n.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; }\n.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; }\n.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; }\n.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; }\n.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; }\n.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; }\n.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; }\n.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; }\n.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; }\n.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; }\n.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; }\n.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; }\n.@{fa-css-prefix}-percent:before { content: @fa-var-percent; }\n.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; }\n.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; }\n.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; }\n.@{fa-css-prefix}-envira:before { content: @fa-var-envira; }\n.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; }\n.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; }\n.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; }\n.@{fa-css-prefix}-blind:before { content: @fa-var-blind; }\n.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; }\n.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; }\n.@{fa-css-prefix}-braille:before { content: @fa-var-braille; }\n.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; }\n.@{fa-css-prefix}-asl-interpreting:before,\n.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; }\n.@{fa-css-prefix}-deafness:before,\n.@{fa-css-prefix}-hard-of-hearing:before,\n.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; }\n.@{fa-css-prefix}-glide:before { content: @fa-var-glide; }\n.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; }\n.@{fa-css-prefix}-signing:before,\n.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; }\n.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; }\n.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; }\n.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; }\n.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; }\n.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; }\n.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; }\n.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; }\n.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; }\n.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; }\n.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; }\n.@{fa-css-prefix}-google-plus-circle:before,\n.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; }\n.@{fa-css-prefix}-fa:before,\n.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; }\n.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; }\n.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; }\n.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; }\n.@{fa-css-prefix}-linode:before { content: @fa-var-linode; }\n.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; }\n.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; }\n.@{fa-css-prefix}-vcard:before,\n.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; }\n.@{fa-css-prefix}-vcard-o:before,\n.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; }\n.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; }\n.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; }\n.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; }\n.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; }\n.@{fa-css-prefix}-drivers-license:before,\n.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; }\n.@{fa-css-prefix}-drivers-license-o:before,\n.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; }\n.@{fa-css-prefix}-quora:before { content: @fa-var-quora; }\n.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; }\n.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; }\n.@{fa-css-prefix}-thermometer-4:before,\n.@{fa-css-prefix}-thermometer:before,\n.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; }\n.@{fa-css-prefix}-thermometer-3:before,\n.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; }\n.@{fa-css-prefix}-thermometer-2:before,\n.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; }\n.@{fa-css-prefix}-thermometer-1:before,\n.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; }\n.@{fa-css-prefix}-thermometer-0:before,\n.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; }\n.@{fa-css-prefix}-shower:before { content: @fa-var-shower; }\n.@{fa-css-prefix}-bathtub:before,\n.@{fa-css-prefix}-s15:before,\n.@{fa-css-prefix}-bath:before { content: @fa-var-bath; }\n.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; }\n.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; }\n.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; }\n.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; }\n.@{fa-css-prefix}-times-rectangle:before,\n.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; }\n.@{fa-css-prefix}-times-rectangle-o:before,\n.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; }\n.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; }\n.@{fa-css-prefix}-grav:before { content: @fa-var-grav; }\n.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; }\n.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; }\n.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; }\n.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; }\n.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; }\n.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; }\n.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; }\n.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; }\n.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; }\n","// Variables\n// --------------------------\n\n@fa-font-path:        \"../fonts\";\n@fa-font-size-base:   14px;\n@fa-line-height-base: 1;\n//@fa-font-path:        \"//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts\"; // for referencing Bootstrap CDN font files directly\n@fa-css-prefix:       fa;\n@fa-version:          \"4.7.0\";\n@fa-border-color:     #eee;\n@fa-inverse:          #fff;\n@fa-li-width:         (30em / 14);\n\n@fa-var-500px: \"\\f26e\";\n@fa-var-address-book: \"\\f2b9\";\n@fa-var-address-book-o: \"\\f2ba\";\n@fa-var-address-card: \"\\f2bb\";\n@fa-var-address-card-o: \"\\f2bc\";\n@fa-var-adjust: \"\\f042\";\n@fa-var-adn: \"\\f170\";\n@fa-var-align-center: \"\\f037\";\n@fa-var-align-justify: \"\\f039\";\n@fa-var-align-left: \"\\f036\";\n@fa-var-align-right: \"\\f038\";\n@fa-var-amazon: \"\\f270\";\n@fa-var-ambulance: \"\\f0f9\";\n@fa-var-american-sign-language-interpreting: \"\\f2a3\";\n@fa-var-anchor: \"\\f13d\";\n@fa-var-android: \"\\f17b\";\n@fa-var-angellist: \"\\f209\";\n@fa-var-angle-double-down: \"\\f103\";\n@fa-var-angle-double-left: \"\\f100\";\n@fa-var-angle-double-right: \"\\f101\";\n@fa-var-angle-double-up: \"\\f102\";\n@fa-var-angle-down: \"\\f107\";\n@fa-var-angle-left: \"\\f104\";\n@fa-var-angle-right: \"\\f105\";\n@fa-var-angle-up: \"\\f106\";\n@fa-var-apple: \"\\f179\";\n@fa-var-archive: \"\\f187\";\n@fa-var-area-chart: \"\\f1fe\";\n@fa-var-arrow-circle-down: \"\\f0ab\";\n@fa-var-arrow-circle-left: \"\\f0a8\";\n@fa-var-arrow-circle-o-down: \"\\f01a\";\n@fa-var-arrow-circle-o-left: \"\\f190\";\n@fa-var-arrow-circle-o-right: \"\\f18e\";\n@fa-var-arrow-circle-o-up: \"\\f01b\";\n@fa-var-arrow-circle-right: \"\\f0a9\";\n@fa-var-arrow-circle-up: \"\\f0aa\";\n@fa-var-arrow-down: \"\\f063\";\n@fa-var-arrow-left: \"\\f060\";\n@fa-var-arrow-right: \"\\f061\";\n@fa-var-arrow-up: \"\\f062\";\n@fa-var-arrows: \"\\f047\";\n@fa-var-arrows-alt: \"\\f0b2\";\n@fa-var-arrows-h: \"\\f07e\";\n@fa-var-arrows-v: \"\\f07d\";\n@fa-var-asl-interpreting: \"\\f2a3\";\n@fa-var-assistive-listening-systems: \"\\f2a2\";\n@fa-var-asterisk: \"\\f069\";\n@fa-var-at: \"\\f1fa\";\n@fa-var-audio-description: \"\\f29e\";\n@fa-var-automobile: \"\\f1b9\";\n@fa-var-backward: \"\\f04a\";\n@fa-var-balance-scale: \"\\f24e\";\n@fa-var-ban: \"\\f05e\";\n@fa-var-bandcamp: \"\\f2d5\";\n@fa-var-bank: \"\\f19c\";\n@fa-var-bar-chart: \"\\f080\";\n@fa-var-bar-chart-o: \"\\f080\";\n@fa-var-barcode: \"\\f02a\";\n@fa-var-bars: \"\\f0c9\";\n@fa-var-bath: \"\\f2cd\";\n@fa-var-bathtub: \"\\f2cd\";\n@fa-var-battery: \"\\f240\";\n@fa-var-battery-0: \"\\f244\";\n@fa-var-battery-1: \"\\f243\";\n@fa-var-battery-2: \"\\f242\";\n@fa-var-battery-3: \"\\f241\";\n@fa-var-battery-4: \"\\f240\";\n@fa-var-battery-empty: \"\\f244\";\n@fa-var-battery-full: \"\\f240\";\n@fa-var-battery-half: \"\\f242\";\n@fa-var-battery-quarter: \"\\f243\";\n@fa-var-battery-three-quarters: \"\\f241\";\n@fa-var-bed: \"\\f236\";\n@fa-var-beer: \"\\f0fc\";\n@fa-var-behance: \"\\f1b4\";\n@fa-var-behance-square: \"\\f1b5\";\n@fa-var-bell: \"\\f0f3\";\n@fa-var-bell-o: \"\\f0a2\";\n@fa-var-bell-slash: \"\\f1f6\";\n@fa-var-bell-slash-o: \"\\f1f7\";\n@fa-var-bicycle: \"\\f206\";\n@fa-var-binoculars: \"\\f1e5\";\n@fa-var-birthday-cake: \"\\f1fd\";\n@fa-var-bitbucket: \"\\f171\";\n@fa-var-bitbucket-square: \"\\f172\";\n@fa-var-bitcoin: \"\\f15a\";\n@fa-var-black-tie: \"\\f27e\";\n@fa-var-blind: \"\\f29d\";\n@fa-var-bluetooth: \"\\f293\";\n@fa-var-bluetooth-b: \"\\f294\";\n@fa-var-bold: \"\\f032\";\n@fa-var-bolt: \"\\f0e7\";\n@fa-var-bomb: \"\\f1e2\";\n@fa-var-book: \"\\f02d\";\n@fa-var-bookmark: \"\\f02e\";\n@fa-var-bookmark-o: \"\\f097\";\n@fa-var-braille: \"\\f2a1\";\n@fa-var-briefcase: \"\\f0b1\";\n@fa-var-btc: \"\\f15a\";\n@fa-var-bug: \"\\f188\";\n@fa-var-building: \"\\f1ad\";\n@fa-var-building-o: \"\\f0f7\";\n@fa-var-bullhorn: \"\\f0a1\";\n@fa-var-bullseye: \"\\f140\";\n@fa-var-bus: \"\\f207\";\n@fa-var-buysellads: \"\\f20d\";\n@fa-var-cab: \"\\f1ba\";\n@fa-var-calculator: \"\\f1ec\";\n@fa-var-calendar: \"\\f073\";\n@fa-var-calendar-check-o: \"\\f274\";\n@fa-var-calendar-minus-o: \"\\f272\";\n@fa-var-calendar-o: \"\\f133\";\n@fa-var-calendar-plus-o: \"\\f271\";\n@fa-var-calendar-times-o: \"\\f273\";\n@fa-var-camera: \"\\f030\";\n@fa-var-camera-retro: \"\\f083\";\n@fa-var-car: \"\\f1b9\";\n@fa-var-caret-down: \"\\f0d7\";\n@fa-var-caret-left: \"\\f0d9\";\n@fa-var-caret-right: \"\\f0da\";\n@fa-var-caret-square-o-down: \"\\f150\";\n@fa-var-caret-square-o-left: \"\\f191\";\n@fa-var-caret-square-o-right: \"\\f152\";\n@fa-var-caret-square-o-up: \"\\f151\";\n@fa-var-caret-up: \"\\f0d8\";\n@fa-var-cart-arrow-down: \"\\f218\";\n@fa-var-cart-plus: \"\\f217\";\n@fa-var-cc: \"\\f20a\";\n@fa-var-cc-amex: \"\\f1f3\";\n@fa-var-cc-diners-club: \"\\f24c\";\n@fa-var-cc-discover: \"\\f1f2\";\n@fa-var-cc-jcb: \"\\f24b\";\n@fa-var-cc-mastercard: \"\\f1f1\";\n@fa-var-cc-paypal: \"\\f1f4\";\n@fa-var-cc-stripe: \"\\f1f5\";\n@fa-var-cc-visa: \"\\f1f0\";\n@fa-var-certificate: \"\\f0a3\";\n@fa-var-chain: \"\\f0c1\";\n@fa-var-chain-broken: \"\\f127\";\n@fa-var-check: \"\\f00c\";\n@fa-var-check-circle: \"\\f058\";\n@fa-var-check-circle-o: \"\\f05d\";\n@fa-var-check-square: \"\\f14a\";\n@fa-var-check-square-o: \"\\f046\";\n@fa-var-chevron-circle-down: \"\\f13a\";\n@fa-var-chevron-circle-left: \"\\f137\";\n@fa-var-chevron-circle-right: \"\\f138\";\n@fa-var-chevron-circle-up: \"\\f139\";\n@fa-var-chevron-down: \"\\f078\";\n@fa-var-chevron-left: \"\\f053\";\n@fa-var-chevron-right: \"\\f054\";\n@fa-var-chevron-up: \"\\f077\";\n@fa-var-child: \"\\f1ae\";\n@fa-var-chrome: \"\\f268\";\n@fa-var-circle: \"\\f111\";\n@fa-var-circle-o: \"\\f10c\";\n@fa-var-circle-o-notch: \"\\f1ce\";\n@fa-var-circle-thin: \"\\f1db\";\n@fa-var-clipboard: \"\\f0ea\";\n@fa-var-clock-o: \"\\f017\";\n@fa-var-clone: \"\\f24d\";\n@fa-var-close: \"\\f00d\";\n@fa-var-cloud: \"\\f0c2\";\n@fa-var-cloud-download: \"\\f0ed\";\n@fa-var-cloud-upload: \"\\f0ee\";\n@fa-var-cny: \"\\f157\";\n@fa-var-code: \"\\f121\";\n@fa-var-code-fork: \"\\f126\";\n@fa-var-codepen: \"\\f1cb\";\n@fa-var-codiepie: \"\\f284\";\n@fa-var-coffee: \"\\f0f4\";\n@fa-var-cog: \"\\f013\";\n@fa-var-cogs: \"\\f085\";\n@fa-var-columns: \"\\f0db\";\n@fa-var-comment: \"\\f075\";\n@fa-var-comment-o: \"\\f0e5\";\n@fa-var-commenting: \"\\f27a\";\n@fa-var-commenting-o: \"\\f27b\";\n@fa-var-comments: \"\\f086\";\n@fa-var-comments-o: \"\\f0e6\";\n@fa-var-compass: \"\\f14e\";\n@fa-var-compress: \"\\f066\";\n@fa-var-connectdevelop: \"\\f20e\";\n@fa-var-contao: \"\\f26d\";\n@fa-var-copy: \"\\f0c5\";\n@fa-var-copyright: \"\\f1f9\";\n@fa-var-creative-commons: \"\\f25e\";\n@fa-var-credit-card: \"\\f09d\";\n@fa-var-credit-card-alt: \"\\f283\";\n@fa-var-crop: \"\\f125\";\n@fa-var-crosshairs: \"\\f05b\";\n@fa-var-css3: \"\\f13c\";\n@fa-var-cube: \"\\f1b2\";\n@fa-var-cubes: \"\\f1b3\";\n@fa-var-cut: \"\\f0c4\";\n@fa-var-cutlery: \"\\f0f5\";\n@fa-var-dashboard: \"\\f0e4\";\n@fa-var-dashcube: \"\\f210\";\n@fa-var-database: \"\\f1c0\";\n@fa-var-deaf: \"\\f2a4\";\n@fa-var-deafness: \"\\f2a4\";\n@fa-var-dedent: \"\\f03b\";\n@fa-var-delicious: \"\\f1a5\";\n@fa-var-desktop: \"\\f108\";\n@fa-var-deviantart: \"\\f1bd\";\n@fa-var-diamond: \"\\f219\";\n@fa-var-digg: \"\\f1a6\";\n@fa-var-dollar: \"\\f155\";\n@fa-var-dot-circle-o: \"\\f192\";\n@fa-var-download: \"\\f019\";\n@fa-var-dribbble: \"\\f17d\";\n@fa-var-drivers-license: \"\\f2c2\";\n@fa-var-drivers-license-o: \"\\f2c3\";\n@fa-var-dropbox: \"\\f16b\";\n@fa-var-drupal: \"\\f1a9\";\n@fa-var-edge: \"\\f282\";\n@fa-var-edit: \"\\f044\";\n@fa-var-eercast: \"\\f2da\";\n@fa-var-eject: \"\\f052\";\n@fa-var-ellipsis-h: \"\\f141\";\n@fa-var-ellipsis-v: \"\\f142\";\n@fa-var-empire: \"\\f1d1\";\n@fa-var-envelope: \"\\f0e0\";\n@fa-var-envelope-o: \"\\f003\";\n@fa-var-envelope-open: \"\\f2b6\";\n@fa-var-envelope-open-o: \"\\f2b7\";\n@fa-var-envelope-square: \"\\f199\";\n@fa-var-envira: \"\\f299\";\n@fa-var-eraser: \"\\f12d\";\n@fa-var-etsy: \"\\f2d7\";\n@fa-var-eur: \"\\f153\";\n@fa-var-euro: \"\\f153\";\n@fa-var-exchange: \"\\f0ec\";\n@fa-var-exclamation: \"\\f12a\";\n@fa-var-exclamation-circle: \"\\f06a\";\n@fa-var-exclamation-triangle: \"\\f071\";\n@fa-var-expand: \"\\f065\";\n@fa-var-expeditedssl: \"\\f23e\";\n@fa-var-external-link: \"\\f08e\";\n@fa-var-external-link-square: \"\\f14c\";\n@fa-var-eye: \"\\f06e\";\n@fa-var-eye-slash: \"\\f070\";\n@fa-var-eyedropper: \"\\f1fb\";\n@fa-var-fa: \"\\f2b4\";\n@fa-var-facebook: \"\\f09a\";\n@fa-var-facebook-f: \"\\f09a\";\n@fa-var-facebook-official: \"\\f230\";\n@fa-var-facebook-square: \"\\f082\";\n@fa-var-fast-backward: \"\\f049\";\n@fa-var-fast-forward: \"\\f050\";\n@fa-var-fax: \"\\f1ac\";\n@fa-var-feed: \"\\f09e\";\n@fa-var-female: \"\\f182\";\n@fa-var-fighter-jet: \"\\f0fb\";\n@fa-var-file: \"\\f15b\";\n@fa-var-file-archive-o: \"\\f1c6\";\n@fa-var-file-audio-o: \"\\f1c7\";\n@fa-var-file-code-o: \"\\f1c9\";\n@fa-var-file-excel-o: \"\\f1c3\";\n@fa-var-file-image-o: \"\\f1c5\";\n@fa-var-file-movie-o: \"\\f1c8\";\n@fa-var-file-o: \"\\f016\";\n@fa-var-file-pdf-o: \"\\f1c1\";\n@fa-var-file-photo-o: \"\\f1c5\";\n@fa-var-file-picture-o: \"\\f1c5\";\n@fa-var-file-powerpoint-o: \"\\f1c4\";\n@fa-var-file-sound-o: \"\\f1c7\";\n@fa-var-file-text: \"\\f15c\";\n@fa-var-file-text-o: \"\\f0f6\";\n@fa-var-file-video-o: \"\\f1c8\";\n@fa-var-file-word-o: \"\\f1c2\";\n@fa-var-file-zip-o: \"\\f1c6\";\n@fa-var-files-o: \"\\f0c5\";\n@fa-var-film: \"\\f008\";\n@fa-var-filter: \"\\f0b0\";\n@fa-var-fire: \"\\f06d\";\n@fa-var-fire-extinguisher: \"\\f134\";\n@fa-var-firefox: \"\\f269\";\n@fa-var-first-order: \"\\f2b0\";\n@fa-var-flag: \"\\f024\";\n@fa-var-flag-checkered: \"\\f11e\";\n@fa-var-flag-o: \"\\f11d\";\n@fa-var-flash: \"\\f0e7\";\n@fa-var-flask: \"\\f0c3\";\n@fa-var-flickr: \"\\f16e\";\n@fa-var-floppy-o: \"\\f0c7\";\n@fa-var-folder: \"\\f07b\";\n@fa-var-folder-o: \"\\f114\";\n@fa-var-folder-open: \"\\f07c\";\n@fa-var-folder-open-o: \"\\f115\";\n@fa-var-font: \"\\f031\";\n@fa-var-font-awesome: \"\\f2b4\";\n@fa-var-fonticons: \"\\f280\";\n@fa-var-fort-awesome: \"\\f286\";\n@fa-var-forumbee: \"\\f211\";\n@fa-var-forward: \"\\f04e\";\n@fa-var-foursquare: \"\\f180\";\n@fa-var-free-code-camp: \"\\f2c5\";\n@fa-var-frown-o: \"\\f119\";\n@fa-var-futbol-o: \"\\f1e3\";\n@fa-var-gamepad: \"\\f11b\";\n@fa-var-gavel: \"\\f0e3\";\n@fa-var-gbp: \"\\f154\";\n@fa-var-ge: \"\\f1d1\";\n@fa-var-gear: \"\\f013\";\n@fa-var-gears: \"\\f085\";\n@fa-var-genderless: \"\\f22d\";\n@fa-var-get-pocket: \"\\f265\";\n@fa-var-gg: \"\\f260\";\n@fa-var-gg-circle: \"\\f261\";\n@fa-var-gift: \"\\f06b\";\n@fa-var-git: \"\\f1d3\";\n@fa-var-git-square: \"\\f1d2\";\n@fa-var-github: \"\\f09b\";\n@fa-var-github-alt: \"\\f113\";\n@fa-var-github-square: \"\\f092\";\n@fa-var-gitlab: \"\\f296\";\n@fa-var-gittip: \"\\f184\";\n@fa-var-glass: \"\\f000\";\n@fa-var-glide: \"\\f2a5\";\n@fa-var-glide-g: \"\\f2a6\";\n@fa-var-globe: \"\\f0ac\";\n@fa-var-google: \"\\f1a0\";\n@fa-var-google-plus: \"\\f0d5\";\n@fa-var-google-plus-circle: \"\\f2b3\";\n@fa-var-google-plus-official: \"\\f2b3\";\n@fa-var-google-plus-square: \"\\f0d4\";\n@fa-var-google-wallet: \"\\f1ee\";\n@fa-var-graduation-cap: \"\\f19d\";\n@fa-var-gratipay: \"\\f184\";\n@fa-var-grav: \"\\f2d6\";\n@fa-var-group: \"\\f0c0\";\n@fa-var-h-square: \"\\f0fd\";\n@fa-var-hacker-news: \"\\f1d4\";\n@fa-var-hand-grab-o: \"\\f255\";\n@fa-var-hand-lizard-o: \"\\f258\";\n@fa-var-hand-o-down: \"\\f0a7\";\n@fa-var-hand-o-left: \"\\f0a5\";\n@fa-var-hand-o-right: \"\\f0a4\";\n@fa-var-hand-o-up: \"\\f0a6\";\n@fa-var-hand-paper-o: \"\\f256\";\n@fa-var-hand-peace-o: \"\\f25b\";\n@fa-var-hand-pointer-o: \"\\f25a\";\n@fa-var-hand-rock-o: \"\\f255\";\n@fa-var-hand-scissors-o: \"\\f257\";\n@fa-var-hand-spock-o: \"\\f259\";\n@fa-var-hand-stop-o: \"\\f256\";\n@fa-var-handshake-o: \"\\f2b5\";\n@fa-var-hard-of-hearing: \"\\f2a4\";\n@fa-var-hashtag: \"\\f292\";\n@fa-var-hdd-o: \"\\f0a0\";\n@fa-var-header: \"\\f1dc\";\n@fa-var-headphones: \"\\f025\";\n@fa-var-heart: \"\\f004\";\n@fa-var-heart-o: \"\\f08a\";\n@fa-var-heartbeat: \"\\f21e\";\n@fa-var-history: \"\\f1da\";\n@fa-var-home: \"\\f015\";\n@fa-var-hospital-o: \"\\f0f8\";\n@fa-var-hotel: \"\\f236\";\n@fa-var-hourglass: \"\\f254\";\n@fa-var-hourglass-1: \"\\f251\";\n@fa-var-hourglass-2: \"\\f252\";\n@fa-var-hourglass-3: \"\\f253\";\n@fa-var-hourglass-end: \"\\f253\";\n@fa-var-hourglass-half: \"\\f252\";\n@fa-var-hourglass-o: \"\\f250\";\n@fa-var-hourglass-start: \"\\f251\";\n@fa-var-houzz: \"\\f27c\";\n@fa-var-html5: \"\\f13b\";\n@fa-var-i-cursor: \"\\f246\";\n@fa-var-id-badge: \"\\f2c1\";\n@fa-var-id-card: \"\\f2c2\";\n@fa-var-id-card-o: \"\\f2c3\";\n@fa-var-ils: \"\\f20b\";\n@fa-var-image: \"\\f03e\";\n@fa-var-imdb: \"\\f2d8\";\n@fa-var-inbox: \"\\f01c\";\n@fa-var-indent: \"\\f03c\";\n@fa-var-industry: \"\\f275\";\n@fa-var-info: \"\\f129\";\n@fa-var-info-circle: \"\\f05a\";\n@fa-var-inr: \"\\f156\";\n@fa-var-instagram: \"\\f16d\";\n@fa-var-institution: \"\\f19c\";\n@fa-var-internet-explorer: \"\\f26b\";\n@fa-var-intersex: \"\\f224\";\n@fa-var-ioxhost: \"\\f208\";\n@fa-var-italic: \"\\f033\";\n@fa-var-joomla: \"\\f1aa\";\n@fa-var-jpy: \"\\f157\";\n@fa-var-jsfiddle: \"\\f1cc\";\n@fa-var-key: \"\\f084\";\n@fa-var-keyboard-o: \"\\f11c\";\n@fa-var-krw: \"\\f159\";\n@fa-var-language: \"\\f1ab\";\n@fa-var-laptop: \"\\f109\";\n@fa-var-lastfm: \"\\f202\";\n@fa-var-lastfm-square: \"\\f203\";\n@fa-var-leaf: \"\\f06c\";\n@fa-var-leanpub: \"\\f212\";\n@fa-var-legal: \"\\f0e3\";\n@fa-var-lemon-o: \"\\f094\";\n@fa-var-level-down: \"\\f149\";\n@fa-var-level-up: \"\\f148\";\n@fa-var-life-bouy: \"\\f1cd\";\n@fa-var-life-buoy: \"\\f1cd\";\n@fa-var-life-ring: \"\\f1cd\";\n@fa-var-life-saver: \"\\f1cd\";\n@fa-var-lightbulb-o: \"\\f0eb\";\n@fa-var-line-chart: \"\\f201\";\n@fa-var-link: \"\\f0c1\";\n@fa-var-linkedin: \"\\f0e1\";\n@fa-var-linkedin-square: \"\\f08c\";\n@fa-var-linode: \"\\f2b8\";\n@fa-var-linux: \"\\f17c\";\n@fa-var-list: \"\\f03a\";\n@fa-var-list-alt: \"\\f022\";\n@fa-var-list-ol: \"\\f0cb\";\n@fa-var-list-ul: \"\\f0ca\";\n@fa-var-location-arrow: \"\\f124\";\n@fa-var-lock: \"\\f023\";\n@fa-var-long-arrow-down: \"\\f175\";\n@fa-var-long-arrow-left: \"\\f177\";\n@fa-var-long-arrow-right: \"\\f178\";\n@fa-var-long-arrow-up: \"\\f176\";\n@fa-var-low-vision: \"\\f2a8\";\n@fa-var-magic: \"\\f0d0\";\n@fa-var-magnet: \"\\f076\";\n@fa-var-mail-forward: \"\\f064\";\n@fa-var-mail-reply: \"\\f112\";\n@fa-var-mail-reply-all: \"\\f122\";\n@fa-var-male: \"\\f183\";\n@fa-var-map: \"\\f279\";\n@fa-var-map-marker: \"\\f041\";\n@fa-var-map-o: \"\\f278\";\n@fa-var-map-pin: \"\\f276\";\n@fa-var-map-signs: \"\\f277\";\n@fa-var-mars: \"\\f222\";\n@fa-var-mars-double: \"\\f227\";\n@fa-var-mars-stroke: \"\\f229\";\n@fa-var-mars-stroke-h: \"\\f22b\";\n@fa-var-mars-stroke-v: \"\\f22a\";\n@fa-var-maxcdn: \"\\f136\";\n@fa-var-meanpath: \"\\f20c\";\n@fa-var-medium: \"\\f23a\";\n@fa-var-medkit: \"\\f0fa\";\n@fa-var-meetup: \"\\f2e0\";\n@fa-var-meh-o: \"\\f11a\";\n@fa-var-mercury: \"\\f223\";\n@fa-var-microchip: \"\\f2db\";\n@fa-var-microphone: \"\\f130\";\n@fa-var-microphone-slash: \"\\f131\";\n@fa-var-minus: \"\\f068\";\n@fa-var-minus-circle: \"\\f056\";\n@fa-var-minus-square: \"\\f146\";\n@fa-var-minus-square-o: \"\\f147\";\n@fa-var-mixcloud: \"\\f289\";\n@fa-var-mobile: \"\\f10b\";\n@fa-var-mobile-phone: \"\\f10b\";\n@fa-var-modx: \"\\f285\";\n@fa-var-money: \"\\f0d6\";\n@fa-var-moon-o: \"\\f186\";\n@fa-var-mortar-board: \"\\f19d\";\n@fa-var-motorcycle: \"\\f21c\";\n@fa-var-mouse-pointer: \"\\f245\";\n@fa-var-music: \"\\f001\";\n@fa-var-navicon: \"\\f0c9\";\n@fa-var-neuter: \"\\f22c\";\n@fa-var-newspaper-o: \"\\f1ea\";\n@fa-var-object-group: \"\\f247\";\n@fa-var-object-ungroup: \"\\f248\";\n@fa-var-odnoklassniki: \"\\f263\";\n@fa-var-odnoklassniki-square: \"\\f264\";\n@fa-var-opencart: \"\\f23d\";\n@fa-var-openid: \"\\f19b\";\n@fa-var-opera: \"\\f26a\";\n@fa-var-optin-monster: \"\\f23c\";\n@fa-var-outdent: \"\\f03b\";\n@fa-var-pagelines: \"\\f18c\";\n@fa-var-paint-brush: \"\\f1fc\";\n@fa-var-paper-plane: \"\\f1d8\";\n@fa-var-paper-plane-o: \"\\f1d9\";\n@fa-var-paperclip: \"\\f0c6\";\n@fa-var-paragraph: \"\\f1dd\";\n@fa-var-paste: \"\\f0ea\";\n@fa-var-pause: \"\\f04c\";\n@fa-var-pause-circle: \"\\f28b\";\n@fa-var-pause-circle-o: \"\\f28c\";\n@fa-var-paw: \"\\f1b0\";\n@fa-var-paypal: \"\\f1ed\";\n@fa-var-pencil: \"\\f040\";\n@fa-var-pencil-square: \"\\f14b\";\n@fa-var-pencil-square-o: \"\\f044\";\n@fa-var-percent: \"\\f295\";\n@fa-var-phone: \"\\f095\";\n@fa-var-phone-square: \"\\f098\";\n@fa-var-photo: \"\\f03e\";\n@fa-var-picture-o: \"\\f03e\";\n@fa-var-pie-chart: \"\\f200\";\n@fa-var-pied-piper: \"\\f2ae\";\n@fa-var-pied-piper-alt: \"\\f1a8\";\n@fa-var-pied-piper-pp: \"\\f1a7\";\n@fa-var-pinterest: \"\\f0d2\";\n@fa-var-pinterest-p: \"\\f231\";\n@fa-var-pinterest-square: \"\\f0d3\";\n@fa-var-plane: \"\\f072\";\n@fa-var-play: \"\\f04b\";\n@fa-var-play-circle: \"\\f144\";\n@fa-var-play-circle-o: \"\\f01d\";\n@fa-var-plug: \"\\f1e6\";\n@fa-var-plus: \"\\f067\";\n@fa-var-plus-circle: \"\\f055\";\n@fa-var-plus-square: \"\\f0fe\";\n@fa-var-plus-square-o: \"\\f196\";\n@fa-var-podcast: \"\\f2ce\";\n@fa-var-power-off: \"\\f011\";\n@fa-var-print: \"\\f02f\";\n@fa-var-product-hunt: \"\\f288\";\n@fa-var-puzzle-piece: \"\\f12e\";\n@fa-var-qq: \"\\f1d6\";\n@fa-var-qrcode: \"\\f029\";\n@fa-var-question: \"\\f128\";\n@fa-var-question-circle: \"\\f059\";\n@fa-var-question-circle-o: \"\\f29c\";\n@fa-var-quora: \"\\f2c4\";\n@fa-var-quote-left: \"\\f10d\";\n@fa-var-quote-right: \"\\f10e\";\n@fa-var-ra: \"\\f1d0\";\n@fa-var-random: \"\\f074\";\n@fa-var-ravelry: \"\\f2d9\";\n@fa-var-rebel: \"\\f1d0\";\n@fa-var-recycle: \"\\f1b8\";\n@fa-var-reddit: \"\\f1a1\";\n@fa-var-reddit-alien: \"\\f281\";\n@fa-var-reddit-square: \"\\f1a2\";\n@fa-var-refresh: \"\\f021\";\n@fa-var-registered: \"\\f25d\";\n@fa-var-remove: \"\\f00d\";\n@fa-var-renren: \"\\f18b\";\n@fa-var-reorder: \"\\f0c9\";\n@fa-var-repeat: \"\\f01e\";\n@fa-var-reply: \"\\f112\";\n@fa-var-reply-all: \"\\f122\";\n@fa-var-resistance: \"\\f1d0\";\n@fa-var-retweet: \"\\f079\";\n@fa-var-rmb: \"\\f157\";\n@fa-var-road: \"\\f018\";\n@fa-var-rocket: \"\\f135\";\n@fa-var-rotate-left: \"\\f0e2\";\n@fa-var-rotate-right: \"\\f01e\";\n@fa-var-rouble: \"\\f158\";\n@fa-var-rss: \"\\f09e\";\n@fa-var-rss-square: \"\\f143\";\n@fa-var-rub: \"\\f158\";\n@fa-var-ruble: \"\\f158\";\n@fa-var-rupee: \"\\f156\";\n@fa-var-s15: \"\\f2cd\";\n@fa-var-safari: \"\\f267\";\n@fa-var-save: \"\\f0c7\";\n@fa-var-scissors: \"\\f0c4\";\n@fa-var-scribd: \"\\f28a\";\n@fa-var-search: \"\\f002\";\n@fa-var-search-minus: \"\\f010\";\n@fa-var-search-plus: \"\\f00e\";\n@fa-var-sellsy: \"\\f213\";\n@fa-var-send: \"\\f1d8\";\n@fa-var-send-o: \"\\f1d9\";\n@fa-var-server: \"\\f233\";\n@fa-var-share: \"\\f064\";\n@fa-var-share-alt: \"\\f1e0\";\n@fa-var-share-alt-square: \"\\f1e1\";\n@fa-var-share-square: \"\\f14d\";\n@fa-var-share-square-o: \"\\f045\";\n@fa-var-shekel: \"\\f20b\";\n@fa-var-sheqel: \"\\f20b\";\n@fa-var-shield: \"\\f132\";\n@fa-var-ship: \"\\f21a\";\n@fa-var-shirtsinbulk: \"\\f214\";\n@fa-var-shopping-bag: \"\\f290\";\n@fa-var-shopping-basket: \"\\f291\";\n@fa-var-shopping-cart: \"\\f07a\";\n@fa-var-shower: \"\\f2cc\";\n@fa-var-sign-in: \"\\f090\";\n@fa-var-sign-language: \"\\f2a7\";\n@fa-var-sign-out: \"\\f08b\";\n@fa-var-signal: \"\\f012\";\n@fa-var-signing: \"\\f2a7\";\n@fa-var-simplybuilt: \"\\f215\";\n@fa-var-sitemap: \"\\f0e8\";\n@fa-var-skyatlas: \"\\f216\";\n@fa-var-skype: \"\\f17e\";\n@fa-var-slack: \"\\f198\";\n@fa-var-sliders: \"\\f1de\";\n@fa-var-slideshare: \"\\f1e7\";\n@fa-var-smile-o: \"\\f118\";\n@fa-var-snapchat: \"\\f2ab\";\n@fa-var-snapchat-ghost: \"\\f2ac\";\n@fa-var-snapchat-square: \"\\f2ad\";\n@fa-var-snowflake-o: \"\\f2dc\";\n@fa-var-soccer-ball-o: \"\\f1e3\";\n@fa-var-sort: \"\\f0dc\";\n@fa-var-sort-alpha-asc: \"\\f15d\";\n@fa-var-sort-alpha-desc: \"\\f15e\";\n@fa-var-sort-amount-asc: \"\\f160\";\n@fa-var-sort-amount-desc: \"\\f161\";\n@fa-var-sort-asc: \"\\f0de\";\n@fa-var-sort-desc: \"\\f0dd\";\n@fa-var-sort-down: \"\\f0dd\";\n@fa-var-sort-numeric-asc: \"\\f162\";\n@fa-var-sort-numeric-desc: \"\\f163\";\n@fa-var-sort-up: \"\\f0de\";\n@fa-var-soundcloud: \"\\f1be\";\n@fa-var-space-shuttle: \"\\f197\";\n@fa-var-spinner: \"\\f110\";\n@fa-var-spoon: \"\\f1b1\";\n@fa-var-spotify: \"\\f1bc\";\n@fa-var-square: \"\\f0c8\";\n@fa-var-square-o: \"\\f096\";\n@fa-var-stack-exchange: \"\\f18d\";\n@fa-var-stack-overflow: \"\\f16c\";\n@fa-var-star: \"\\f005\";\n@fa-var-star-half: \"\\f089\";\n@fa-var-star-half-empty: \"\\f123\";\n@fa-var-star-half-full: \"\\f123\";\n@fa-var-star-half-o: \"\\f123\";\n@fa-var-star-o: \"\\f006\";\n@fa-var-steam: \"\\f1b6\";\n@fa-var-steam-square: \"\\f1b7\";\n@fa-var-step-backward: \"\\f048\";\n@fa-var-step-forward: \"\\f051\";\n@fa-var-stethoscope: \"\\f0f1\";\n@fa-var-sticky-note: \"\\f249\";\n@fa-var-sticky-note-o: \"\\f24a\";\n@fa-var-stop: \"\\f04d\";\n@fa-var-stop-circle: \"\\f28d\";\n@fa-var-stop-circle-o: \"\\f28e\";\n@fa-var-street-view: \"\\f21d\";\n@fa-var-strikethrough: \"\\f0cc\";\n@fa-var-stumbleupon: \"\\f1a4\";\n@fa-var-stumbleupon-circle: \"\\f1a3\";\n@fa-var-subscript: \"\\f12c\";\n@fa-var-subway: \"\\f239\";\n@fa-var-suitcase: \"\\f0f2\";\n@fa-var-sun-o: \"\\f185\";\n@fa-var-superpowers: \"\\f2dd\";\n@fa-var-superscript: \"\\f12b\";\n@fa-var-support: \"\\f1cd\";\n@fa-var-table: \"\\f0ce\";\n@fa-var-tablet: \"\\f10a\";\n@fa-var-tachometer: \"\\f0e4\";\n@fa-var-tag: \"\\f02b\";\n@fa-var-tags: \"\\f02c\";\n@fa-var-tasks: \"\\f0ae\";\n@fa-var-taxi: \"\\f1ba\";\n@fa-var-telegram: \"\\f2c6\";\n@fa-var-television: \"\\f26c\";\n@fa-var-tencent-weibo: \"\\f1d5\";\n@fa-var-terminal: \"\\f120\";\n@fa-var-text-height: \"\\f034\";\n@fa-var-text-width: \"\\f035\";\n@fa-var-th: \"\\f00a\";\n@fa-var-th-large: \"\\f009\";\n@fa-var-th-list: \"\\f00b\";\n@fa-var-themeisle: \"\\f2b2\";\n@fa-var-thermometer: \"\\f2c7\";\n@fa-var-thermometer-0: \"\\f2cb\";\n@fa-var-thermometer-1: \"\\f2ca\";\n@fa-var-thermometer-2: \"\\f2c9\";\n@fa-var-thermometer-3: \"\\f2c8\";\n@fa-var-thermometer-4: \"\\f2c7\";\n@fa-var-thermometer-empty: \"\\f2cb\";\n@fa-var-thermometer-full: \"\\f2c7\";\n@fa-var-thermometer-half: \"\\f2c9\";\n@fa-var-thermometer-quarter: \"\\f2ca\";\n@fa-var-thermometer-three-quarters: \"\\f2c8\";\n@fa-var-thumb-tack: \"\\f08d\";\n@fa-var-thumbs-down: \"\\f165\";\n@fa-var-thumbs-o-down: \"\\f088\";\n@fa-var-thumbs-o-up: \"\\f087\";\n@fa-var-thumbs-up: \"\\f164\";\n@fa-var-ticket: \"\\f145\";\n@fa-var-times: \"\\f00d\";\n@fa-var-times-circle: \"\\f057\";\n@fa-var-times-circle-o: \"\\f05c\";\n@fa-var-times-rectangle: \"\\f2d3\";\n@fa-var-times-rectangle-o: \"\\f2d4\";\n@fa-var-tint: \"\\f043\";\n@fa-var-toggle-down: \"\\f150\";\n@fa-var-toggle-left: \"\\f191\";\n@fa-var-toggle-off: \"\\f204\";\n@fa-var-toggle-on: \"\\f205\";\n@fa-var-toggle-right: \"\\f152\";\n@fa-var-toggle-up: \"\\f151\";\n@fa-var-trademark: \"\\f25c\";\n@fa-var-train: \"\\f238\";\n@fa-var-transgender: \"\\f224\";\n@fa-var-transgender-alt: \"\\f225\";\n@fa-var-trash: \"\\f1f8\";\n@fa-var-trash-o: \"\\f014\";\n@fa-var-tree: \"\\f1bb\";\n@fa-var-trello: \"\\f181\";\n@fa-var-tripadvisor: \"\\f262\";\n@fa-var-trophy: \"\\f091\";\n@fa-var-truck: \"\\f0d1\";\n@fa-var-try: \"\\f195\";\n@fa-var-tty: \"\\f1e4\";\n@fa-var-tumblr: \"\\f173\";\n@fa-var-tumblr-square: \"\\f174\";\n@fa-var-turkish-lira: \"\\f195\";\n@fa-var-tv: \"\\f26c\";\n@fa-var-twitch: \"\\f1e8\";\n@fa-var-twitter: \"\\f099\";\n@fa-var-twitter-square: \"\\f081\";\n@fa-var-umbrella: \"\\f0e9\";\n@fa-var-underline: \"\\f0cd\";\n@fa-var-undo: \"\\f0e2\";\n@fa-var-universal-access: \"\\f29a\";\n@fa-var-university: \"\\f19c\";\n@fa-var-unlink: \"\\f127\";\n@fa-var-unlock: \"\\f09c\";\n@fa-var-unlock-alt: \"\\f13e\";\n@fa-var-unsorted: \"\\f0dc\";\n@fa-var-upload: \"\\f093\";\n@fa-var-usb: \"\\f287\";\n@fa-var-usd: \"\\f155\";\n@fa-var-user: \"\\f007\";\n@fa-var-user-circle: \"\\f2bd\";\n@fa-var-user-circle-o: \"\\f2be\";\n@fa-var-user-md: \"\\f0f0\";\n@fa-var-user-o: \"\\f2c0\";\n@fa-var-user-plus: \"\\f234\";\n@fa-var-user-secret: \"\\f21b\";\n@fa-var-user-times: \"\\f235\";\n@fa-var-users: \"\\f0c0\";\n@fa-var-vcard: \"\\f2bb\";\n@fa-var-vcard-o: \"\\f2bc\";\n@fa-var-venus: \"\\f221\";\n@fa-var-venus-double: \"\\f226\";\n@fa-var-venus-mars: \"\\f228\";\n@fa-var-viacoin: \"\\f237\";\n@fa-var-viadeo: \"\\f2a9\";\n@fa-var-viadeo-square: \"\\f2aa\";\n@fa-var-video-camera: \"\\f03d\";\n@fa-var-vimeo: \"\\f27d\";\n@fa-var-vimeo-square: \"\\f194\";\n@fa-var-vine: \"\\f1ca\";\n@fa-var-vk: \"\\f189\";\n@fa-var-volume-control-phone: \"\\f2a0\";\n@fa-var-volume-down: \"\\f027\";\n@fa-var-volume-off: \"\\f026\";\n@fa-var-volume-up: \"\\f028\";\n@fa-var-warning: \"\\f071\";\n@fa-var-wechat: \"\\f1d7\";\n@fa-var-weibo: \"\\f18a\";\n@fa-var-weixin: \"\\f1d7\";\n@fa-var-whatsapp: \"\\f232\";\n@fa-var-wheelchair: \"\\f193\";\n@fa-var-wheelchair-alt: \"\\f29b\";\n@fa-var-wifi: \"\\f1eb\";\n@fa-var-wikipedia-w: \"\\f266\";\n@fa-var-window-close: \"\\f2d3\";\n@fa-var-window-close-o: \"\\f2d4\";\n@fa-var-window-maximize: \"\\f2d0\";\n@fa-var-window-minimize: \"\\f2d1\";\n@fa-var-window-restore: \"\\f2d2\";\n@fa-var-windows: \"\\f17a\";\n@fa-var-won: \"\\f159\";\n@fa-var-wordpress: \"\\f19a\";\n@fa-var-wpbeginner: \"\\f297\";\n@fa-var-wpexplorer: \"\\f2de\";\n@fa-var-wpforms: \"\\f298\";\n@fa-var-wrench: \"\\f0ad\";\n@fa-var-xing: \"\\f168\";\n@fa-var-xing-square: \"\\f169\";\n@fa-var-y-combinator: \"\\f23b\";\n@fa-var-y-combinator-square: \"\\f1d4\";\n@fa-var-yahoo: \"\\f19e\";\n@fa-var-yc: \"\\f23b\";\n@fa-var-yc-square: \"\\f1d4\";\n@fa-var-yelp: \"\\f1e9\";\n@fa-var-yen: \"\\f157\";\n@fa-var-yoast: \"\\f2b1\";\n@fa-var-youtube: \"\\f167\";\n@fa-var-youtube-play: \"\\f16a\";\n@fa-var-youtube-square: \"\\f166\";\n\n","// Screen Readers\n// -------------------------\n\n.sr-only { .sr-only(); }\n.sr-only-focusable { .sr-only-focusable(); }\n","//\n// Patternfly Mixins\n// --------------------------------------------------\n// PatternFly-specific mixins\n\n// Patternfly button variants.\n.button-variant(@color; @background; @background-image-start; @background-image-stop; @border) {\n  background-color: @background;\n  #gradient > .vertical(@background-image-start, @background-image-stop);\n  border-color: @border;\n  color: @color;\n\n  &:hover,\n  &:focus,\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-color: @background;\n    background-image: none;\n    border-color: @border;\n    color: @color;\n  }\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-image: none;\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: darken(@background, 5%);\n          border-color: darken(@border, 7%);\n    }\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &,\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      background-color: @background;\n      border-color: @border;\n    }\n  }\n}\n\n// SASS CONVERSION FIX.\n// Allows inclusion of sr-only rules in nested media queries where @extends .sr-only\n// will not work.\n.sr-only-pf() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n\n.tab-indicator(@background: @gray-light-pf, @left: 15px, @right: 15px) {\n  &:before {\n    background: @background;\n    bottom: -1px;\n    content: \"\";\n    display: block;\n    height: 2px;\n    left: @left;\n    position: absolute;\n    right: @right;\n  }\n}\n\n// Ellipse overflow text\n.text-overflow-pf {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  word-wrap: normal;\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n.alert {\n  border-width: 1px;\n  padding-left: 47px;\n  padding-right: (@alert-padding + 3);\n  position: relative;\n  word-wrap: break-word;\n  .alert-link {\n    color: @link-color;\n    &:hover {\n      color: @link-hover-color;\n    }\n  }\n  > .btn.pull-right {\n    margin-top: -3px;\n  }\n  > .pficon {\n    font-size: 22px;\n    position: absolute;\n    left: 13px;\n    top: 10px;\n  }\n  .close {\n    .opacity(.85);\n    &:hover,\n    &:focus {\n      .opacity(1);\n    }\n  }\n  .pficon-info {\n    color: @color-pf-black-700;\n  }\n}\n\n.alert-dismissable {\n  padding-right: (@alert-padding + 17);\n  .close {\n    right: -13px;\n    top: 1px;\n  }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n.badge {\n  margin-left: 6px;\n}\n\n.nav-pills > li > a > .badge {\n  margin-left: 6px;\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n.breadcrumb {\n  padding-left: 0;\n  > .active strong {\n    font-weight: 600;\n  }\n  > li {\n      display: inline; /* IE8 */\n      + li:before {\n      color: @gray-light;\n      content: @fa-var-angle-right;\n      font-family: @icon-font-name-fa;\n      font-size: (@font-size-base - 1);\n      padding: 0 9px 0 7px;\n    }\n  }\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n.btn {\n  .box-shadow(0 2px 3px fade(@color-pf-black, 10%));\n  &:active {\n    .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    background-color: @color-pf-black-100 !important;\n    background-image: none !important;\n    border-color: @color-pf-black-300 !important;\n    color: @color-pf-black-500 !important;\n    opacity: 1;\n    &:active {\n      .box-shadow(none);\n    }\n    &.btn-link {\n      background-color: transparent !important;\n      border: 0;\n    }\n  }\n}\n\n.btn-danger {\n  .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-bg-img-start; @btn-danger-bg-img-stop; @btn-danger-border);\n}\n\n.btn-default {\n  .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n}\n\n.btn-link {\n  &,\n  &:active {\n    .box-shadow(none);\n  }\n}\n\n.btn-primary {\n  .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-bg-img-start; @btn-primary-bg-img-stop; @btn-primary-border);\n}\n\n.btn-xs,\n.btn-group-xs .btn {\n  font-weight: @btn-xs-font-weight;\n}\n","//\n// Dropdowns\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n// Modified to use Font Awesome's angle-down icon\n.caret {\n  font-family: @icon-font-name-fa;\n  font-weight: normal;\n  height: (@font-size-base - 3);\n  position: relative;\n  vertical-align: baseline;\n  width: @font-size-base;\n  &:before {\n    bottom: 0;\n    content: @fa-var-angle-down;\n    left: 0;\n    line-height: @font-size-base;\n    position: absolute;\n    text-align: center;\n    top: -1px;\n    right: 0;\n  }\n  .dropup & {\n    &:before {\n      content: @fa-var-angle-up;\n    }\n  }\n}\n\n// Bootstrap removes the focus ring on dropdowns; this replaces it for better accessibility\n.dropdown-toggle:focus {\n  .tab-focus();\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n  // Dividers (basically an hr) within the dropdown\n  .divider {\n    .nav-divider(@dropdown-divider-bg, @dropdown-divider-margin);\n  }\n  // Links within the dropdown menu\n  > li > a {\n    border-color: transparent;\n    border-style: solid;\n    border-width: 1px 0;\n    padding: 1px 10px;\n  }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n  &:hover,\n  &:focus {\n    border-color: @dropdown-link-hover-border-color;\n    .reset-filter();\n  }\n  &:active {\n    background-color: @dropdown-link-focus-bg;\n    border-color: @dropdown-link-active-border-color;\n    color: @dropdown-link-focus-color !important;\n    .reset-filter();\n  }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n  &,\n  &:hover,\n  &:focus {\n    background-color: @dropdown-link-active-bg !important;\n    border-color: @dropdown-link-active-border-color !important;\n    .reset-filter();\n  }\n}\n\n// Disabled state\n.dropdown-menu > .disabled > a {\n  &,\n  &:hover,\n  &:focus {\n    border-color: transparent;\n  }\n}\n\n// Selected state\n.dropdown-menu > .selected > a {\n  background-color: @dropdown-link-active-bg;\n  border-color: @dropdown-link-active-border-color;\n  color: @color-pf-white;\n  small {\n    color: fade(@color-pf-white, 50%);\n  }\n}\n\n// Nuke hover/focus effects\n.dropdown-menu > .disabled > a {\n  &:hover,\n  &:focus {\n    border-color: transparent;\n  }\n}\n\n// Dropdown section headers\n.dropdown-header {\n  padding-left: 10px;\n  padding-right: 10px;\n  text-transform: uppercase;\n}\n\n// Position Menu closer to button\n.btn-group,\n.dropdown,\n.input-group-btn {\n  > .dropdown-menu {\n    margin-top: -1px;\n  }\n}\n\n// Position Menu closer to button (dropup-menu)\n.dropup .dropdown-menu {\n  margin-bottom: -1px;\n}\n\n// Add back styles for dropdown-submenu\n.dropdown-submenu {\n  position:relative;\n  &:hover {\n    > a {\n      background-color: @dropdown-link-hover-bg;\n      border-color: @dropdown-link-hover-border-color;\n    }\n    > .dropdown-menu {\n      display: block;\n    }\n  }\n  &.pull-left {\n    float: none !important;\n    > .dropdown-menu {\n      left: auto;\n      margin-left: 10px;\n      right: 100%;\n    }\n  }\n  > a {\n    padding-right: 20px !important;\n    &:after {\n      content: @fa-var-angle-right;\n      font-family: @icon-font-name-fa;\n      display: block;\n      position: absolute;\n      right: 10px;\n      top: 2px;\n    }\n  }\n  > .dropdown-menu {\n    left: 100%;\n    margin-top: 0;\n    top: -6px;\n  }\n  .dropup & > .dropdown-menu {\n    bottom: -5px;\n    top: auto;\n  }\n  .open &.active > .dropdown-menu {\n    display: block;\n  }\n}\n\n// Kebab dropmenu\n.dropdown-kebab-pf {\n  &.btn-group > .btn:first-child,\n  .btn-link {\n    color: @gray-darker;\n    font-size: (@font-size-base + 4);\n    line-height: 1;\n    padding: 4px (@grid-gutter-width/4);\n    margin-left: (@grid-gutter-width/(-4));\n    margin-right: (@grid-gutter-width/(-4));\n    &:active,\n    &:focus,\n    &:hover {\n      color: @link-color;\n    }\n  }\n  &.btn-group { margin-left: (@grid-gutter-width/4); }\n  .dropdown-menu {\n    left: -15px;\n    margin-top: 11px;\n    &.dropdown-menu-right {\n      left: auto;\n      right: -15px;\n      &:after,\n      &:before {\n        left: auto;\n        right: 6px;\n      }\n    }\n    &:after,\n    &:before {\n      border-bottom-color: @dropdown-border;\n      border-bottom-style: solid;\n      border-bottom-width: 10px;\n      border-left: 10px solid transparent;\n      border-right: 10px solid transparent;\n      content: \"\";\n      display: inline-block;\n      left: 6px;\n      position: absolute;\n      top: -11px;\n    }\n    &:after {\n      border-bottom-color: @dropdown-bg;\n      top: -10px;\n    }\n  }\n  &.dropup .dropdown-menu {\n    margin-bottom: 11px;\n    margin-top: 0;\n    &:after,\n    &:before {\n      border-bottom: none;\n      border-top-color: @dropdown-border;\n      border-top-style: solid;\n      border-top-width: 10px;\n      bottom: -11px;\n      top: auto;\n    }\n    &:after {\n      border-top-color: @dropdown-bg;\n      bottom: -10px;\n    }\n  }\n}\n","//\n// Forms\n// --------------------------------------------------\n.chars-remaining-pf span {\n  font-weight: 600;\n  padding-right: 5px;\n}\n\n.chars-warn-remaining-pf {\n  color: @brand-danger;\n}\n\n.fields-status-pf {\n  color: @color-pf-black-500;\n  margin-bottom: 15px;\n}\n\n.form-control {\n  &[disabled],\n  &[readonly],\n  fieldset[disabled] & {\n    .box-shadow(none);\n    color: @color-pf-black-500;\n    &:hover {\n      border-color: @input-border;\n    }\n  }\n  &:hover {\n    border-color: @input-border-hover;\n    .has-error & {\n      border-color: darken(@state-danger-text, 10%);\n    }\n    .has-success & {\n      border-color: darken(@state-success-text, 10%);\n    }\n    .has-warning & {\n      border-color: darken(@state-warning-text, 10%);\n    }\n  }\n}\n\n.has-error, .has-success, .has-warning {\n  .checkbox,\n  .checkbox-inline,\n  .control-label,\n  .radio,\n  .radio-inline,\n  &.checkbox label,\n  &.checkbox-inline label,\n  &.radio label,\n  &.radio-inline label {\n    color: @text-color;\n  }\n}\n\n.help-block {\n  margin-bottom: 0px;\n}\n\n.input-group .input-group-btn .btn {\n  .box-shadow(none);\n}\n\nlabel {\n  font-weight: 600;\n  &.required-pf:after {\n    color: @brand-danger;\n    content: \"*\";\n    margin-left: 3px;\n  }\n}\n\nspan.required-pf {\n  color: @brand-danger;\n}\n\n.fields-section-pf {\n  border-color: @color-pf-black-200;\n  border-style: solid;\n  border-width: 1px 0 0;\n  margin-top: 25px;\n  padding: 15px 0 0;\n}\n.fields-section-header-pf {\n  border: none;\n  font-size: @font-size-base;\n  margin: 0;\n  padding-right: @padding-large-horizontal;\n  width: auto;\n  .fa-angle-right {\n    cursor: pointer;\n    font-size: @font-size-large;\n    width: @font-size-large;\n  }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n  border-radius: 0;\n  font-size: 100%;\n  font-weight: 600;\n  h1 &,\n  h2 &,\n  h3 &,\n  h4 &,\n  h5 &,\n  h6 & {\n    font-size: 75%;\n  }\n}\n","//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n  border-top: 1px solid @list-group-top-border;\n  .list-group-item:first-child {\n    border-top: 0;\n  }\n}\n.list-group-item {\n  border-left: 0;\n  border-right: 0;\n}\n\n.list-group-item-heading {\n  font-weight: 600;\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n  background-color: @color-pf-black-150;\n  border-bottom: none;\n  padding: @modal-title-padding-vertical @modal-title-padding-horizontal;\n}\n// Close icon\n.modal-header .close {\n  margin-top: 2px;\n}\n\n// Title text within header\n.modal-title {\n  font-size: 13px;\n  font-weight: 700;\n}\n\n// Footer (for actions)\n.modal-footer {\n  border-top: none;\n  margin-top: 15px;\n  padding: (@modal-inner-padding - 1) @modal-inner-padding @modal-inner-padding;\n  > .btn {\n    padding-left: 10px;\n    padding-right: 10px;\n    > .fa-angle-left {\n      margin-right: 5px;\n    }\n    > .fa-angle-right {\n      margin-left: 5px;\n    }\n  }\n}\n","//\n// Pager\n// --------------------------------------------------\n\n.pager {\n  li {\n    > a,\n    > span {\n      .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n      color: @gray-pf;\n      font-weight: 600;\n      line-height: 22px;\n      padding: 2px 14px;\n      > .i {\n        font-size: 18px;\n        vertical-align: top;\n        margin: 2px 0;\n      }\n    }\n    a:active {\n      background-image: none;\n      .box-shadow(inset 0 3px 5px fade(@color-pf-black, 12.5%));\n      outline: 0;\n    }\n  }\n  .disabled {\n    > a,\n    > a:hover,\n    > a:focus,\n    > a:active,\n    > span {\n      background: @pagination-bg;\n      .box-shadow(none);\n      color: @pager-disabled-color;\n      cursor: not-allowed;\n    }\n  }\n  .next {\n     > a,\n     > span {\n       > .i {\n          margin-left: 5px;\n       }\n     }\n  }\n  .previous {\n     > a,\n     > span {\n       > .i {\n          margin-right: 5px;\n       }\n     }\n  }\n}\n\n.pager-sm {\n  li {\n    > a,\n    > span {\n      font-weight: 400;\n      line-height: 16px;\n      padding: 1px 10px;\n      > .i {\n        font-size: 12px;\n      }\n    }\n  }\n}\n","//\n// Pagination\n// --------------------------------------------------\n\n.pagination {\n  > li {\n    > a,\n    > span {\n      .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n      cursor: default;\n      font-weight: 600;\n      padding: @padding-base-vertical @padding-large-horizontal;\n      > .i {\n        font-size: 15px;\n        vertical-align: top;\n        margin: 2px 0;\n      }\n    }\n  }\n  > li > a,\n  > li > span {\n    &:active {\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n    }\n  }\n  > .active > a,\n  > .active > span {\n    &,\n    &:hover,\n    &:focus {\n      background-color: @btn-default-bg;\n      border-color: @pagination-border;\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n      color: @btn-default-color;\n      #gradient > .vertical(@btn-default-bg-img-start; @btn-default-bg-img-stop);\n    }\n  }\n  > .disabled {\n    > span,\n    > span:hover,\n    > span:focus,\n    > a,\n    > a:hover,\n    > a:focus {\n      .box-shadow(none);\n      cursor: not-allowed;\n      #gradient > .vertical(@btn-default-bg-img-start; @btn-default-bg-img-stop);\n    }\n  }\n}\n\n.pagination-sm {\n  .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n  > li {\n    > a,\n    > span {\n      font-weight: 400;\n      > .i {\n        font-size: 12px;\n        margin-top: 2px;\n      }\n    }\n  }\n}\n\n.content-view-pf-pagination {\n  background-color: @table-bg-accent;\n  border: 1px solid @table-border-color;\n  display: flex;\n  flex-wrap: wrap;\n  justify-content: space-between;\n  &.table-view-pf-pagination {\n    border-top: none;\n  }\n  .form-group {\n    align-items: baseline;\n    display: flex;\n    flex-grow: 1;\n    float: left; //IE9 fallback\n    @supports (display: flex) {\n      float: none;\n    }\n    margin: 5px;\n    &:last-child {\n      justify-content: flex-end; // if pagination controls wrap, pagination buttons stay on the right\n      float: right; //IE9 fallback\n      @supports (display: flex) {\n        float: none;\n      }\n    }\n    .pagination-pf-pagesize.bootstrap-select.btn-group,\n    .pagination-pf-pagesize.btn-group {\n      display: flex;\n      float: none;\n      margin-bottom: 0;\n      margin-left: 0;\n      margin-right: 5px;\n      width: auto;\n    }\n    .dropdown-menu {\n      min-width: auto;\n    }\n  }\n  .pagination-pf-page {\n    margin-left: 10px;\n    margin-right: 5px;\n    padding: 0 2px 2px;\n    text-align: right;\n    width: 2.5em;\n  }\n  .pagination {\n    display: flex;\n    margin: 0 0 0 10px;\n    a {\n      float: none;\n      @supports (display: flex) {\n        display: block;\n      }\n    }\n  }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n.panel-title {\n  font-weight: 700;\n}\n\n//\n// Collapsable panels (aka, accordion)\n// --------------------------------------------------\n\n.panel-group {\n  .panel {\n    color: @gray-pf;\n    + .panel {\n      margin-top: -1px;\n    }\n  }\n  .panel-default {\n    border-color: @panel-default-border-color;\n    border-top-color: @panel-default-border-color;\n    .panel-heading {\n      #gradient > .vertical(@btn-default-bg-img-start, @btn-default-bg-img-stop);\n      + .panel-collapse .panel-body {\n        border-top: 1px solid @panel-inner-border;\n      }\n    }\n  }\n\n  .panel-info {\n    border-color: @panel-info-border;\n    .panel-heading {\n      background-color: @panel-group-pf-info-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-info-border;\n    }\n  }\n  .panel-primary {\n    border-color: @panel-primary-border;\n    .panel-heading {\n      background-color: @panel-group-pf-primary-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-primary-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-primary-border;\n    }\n  }\n  .panel-success {\n    border-color: @panel-success-border;\n    .panel-heading {\n      background-color: @panel-group-pf-success-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-success-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-success-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-success-border;\n    }\n  }\n  .panel-warning {\n    border-color: @panel-warning-border;\n    .panel-heading {\n      background-color: @panel-group-pf-warning-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-success {\n      border-top-color: @panel-warning-border;\n    }\n  }\n  .panel-danger {\n    border-color: @panel-danger-border;\n    .panel-heading {\n      background-color: @panel-group-pf-danger-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-success {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-warning {\n      border-top-color: @panel-danger-border;\n    }\n  }\n  .panel-title {\n    font-weight: 500;\n    line-height: 1;\n    > a {\n      color: @gray-pf;\n      font-weight: @btn-font-weight;\n      &:before {\n        content: \"\\f107\";\n        display: inline-block;\n        font-family: @icon-font-name-fa;\n        font-size: 13px;\n        margin-right: 5px;\n        text-align: center;\n        vertical-align: 0;\n        width: 8px;\n      }\n      &:focus {\n        outline: none;\n        text-decoration: none;\n      }\n      &:hover {\n        text-decoration: none;\n      }\n      &.collapsed:before {\n        content: \"\\f105\";\n      }\n    }\n  }\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n.popover {\n  .box-shadow(0 2px 2px fade(@color-pf-black, 8%));\n  padding: 0;\n}\n\n.popover-content {\n  color: @gray-pf;\n  line-height: 18px;\n  padding: 10px 14px;\n}\n\n.popover-title {\n  border-bottom: none;\n  border-radius: 0;\n  color: @gray-pf;\n  font-size: (@font-size-base + 1);\n  font-weight: 700;\n  min-height: 34px;\n  .close {\n    height: 22px;\n    position: absolute;\n    right: 8px;\n    top: 6px;\n  }\n  &.closable {\n    padding-right: 30px;\n  }\n}\n","//\n// Progress Bar\n// --------------------------------------------------\n\n@keyframes progress-bar-stripes {\n  from  { background-position: 0 0; }\n  to    { background-position: 40px 0; }\n}\n\n.progress {\n  .box-shadow(inset 0 0 1px fade(@color-pf-black, 25%));\n  &.progress-label-left,\n  &.progress-label-top-right {\n    overflow: visible;\n    position: relative;\n  }\n  &.progress-label-left {\n    margin-left: 40px;\n  }\n  &.progress-sm {\n    height: @progress-sm;\n    margin-bottom: @progress-sm;\n  }\n  &.progress-xs {\n    height: @progress-xs;\n    margin-bottom: @progress-xs;\n  }\n  td > &:first-child:last-child {\n    margin-bottom: 0;\n    margin-top: 3px;\n  }\n}\n\n.progress-bar {\n  box-shadow: none;\n  .progress-label-left & span,\n  .progress-label-right & span,\n  .progress-label-top-right & span {\n    color: @text-color;\n    position: absolute;\n    text-align: right;\n  }\n  .progress-label-left & span {\n    font-size: @font-size-large;\n    left: -40px;\n    top: 0;\n    width: 35px;\n  }\n  .progress-label-right & span,\n  .progress-label-top-right & span {\n    font-size: @font-size-small;\n    overflow: hidden;\n    right: 0;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    strong {\n      font-weight: 600;\n    }\n  }\n  .progress-label-right & span {\n    max-width: @progress-description-label-width;\n    top: 0;\n  }\n  .progress-label-top-right & span {\n    max-width: 47%;\n    top: (-(@line-height-computed * 1.5)); // -30px\n  }\n  .progress-label-left.progress-sm & span,\n  .progress-label-top-right.progress-sm & span {\n    font-size: @font-size-base;\n  }\n  .progress-sm & {\n    line-height: @progress-sm;\n  }\n  .progress-xs & {\n    line-height: @progress-xs;\n  }\n}\n\n.progress-bar-remaining {\n  background: transparent;\n}\n\n.progress-container {\n  position: relative;\n  &.progress-description-left {\n    padding-left :(@progress-description-label-width + 5);\n  }\n  &.progress-label-right {\n    padding-right :(@progress-description-label-width + 5);\n  }\n}\n\n.progress-description {\n  margin-bottom: (@line-height-computed / 2); // 10px\n  max-width: 52%;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  .count {\n    font-size: (@font-size-base * 1.667); // 20px\n    font-weight: 300;\n    line-height: 1;\n    margin-right: 5px;\n  }\n  .fa,\n  .pficon {\n    font-size: 14px;\n    margin-right: 3px;\n  }\n  .progress-description-left & {\n    left: 0;\n    margin-bottom: 0;\n    max-width: @progress-description-label-width;\n    position: absolute;\n    top: 0;\n  }\n  .tooltip {\n    white-space: normal;\n  }\n}\n","//\n// Tables\n// --------------------------------------------------\n\n.table {\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-cell-padding-top @table-cell-padding @table-cell-padding-bottom;\n        > a:hover {\n          text-decoration: none;\n        }\n      }\n      > th {\n        font-family: \"Open Sans\";\n        font-style: normal;\n        font-weight: 600;\n      }\n    }\n  }\n  > thead {\n    background-clip: padding-box;\n    background-color: @color-pf-black-150;\n    #gradient > .vertical(@start-color: @color-pf-black-100; @end-color: @color-pf-black-200; @start-percent: 0%; @end-percent: 100%);\n  }\n}\n\n.table-bordered {\n  border: 1px solid @table-border-color;\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        border: 1px solid @table-border-color;\n      }\n    }\n  }\n  > thead > tr {\n    > th,\n    > td {\n      border-bottom-width: 1px;\n    }\n  }\n}\n\n.table-striped {\n  > tbody > tr {\n    &:nth-of-type(even) {\n      background-color: @table-bg-accent;\n    }\n    &:nth-of-type(odd) {\n      background-color: transparent;\n    }\n  }\n}\n\n.table-hover {\n  > tbody > tr:hover {\n    > td,\n    > th {\n      background-color: @table-bg-hover;\n      border-bottom-color: @table-border-hover;\n    }\n  }\n}\n\n.table-treegrid {\n  span.indent {\n    margin-left: 10px;\n    margin-right: 10px;\n  }\n  span.icon {\n    display: inline-block;\n    font-size: 13px;\n    margin-right: 5px;\n    min-width: 10px;\n    text-align: center;\n  }\n  span.expand-icon, span.collapse-icon {\n    cursor: pointer;\n  }\n  > tbody > tr.odd {\n    background-color: @table-bg-accent;\n  }\n}\n","//\n// Tabs\n// --------------------------------------------------\n\n.nav-tabs {\n  font-size: @font-size-large;\n  > li {\n    > a {\n      color: @nav-tabs-color;\n      margin-right: -1px;\n      padding-bottom: 5px;\n      padding-top: 5px;\n      &:active,\n      &:focus,\n      &:hover {\n        background: transparent;\n        border-color: @nav-tabs-border-color;\n        color: @gray-darker;\n      }\n    }\n    > .dropdown-menu {\n      border-top: 0;\n      border-color: @nav-tabs-border-color;\n      &.pull-right {\n        right: -1px;\n      }\n    }\n  }\n  + .nav-tabs-pf, &.nav-tabs-pf-secondary {\n    font-size: @font-size-base;\n    > li:first-child > a {\n      padding-left: 15px;\n      &:before {\n        left: 15px !important;\n      }\n    }\n  }\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: transparent;\n      border-color: @nav-tabs-border-color;\n    }\n  }\n}\n\n.nav-tabs-pf {\n  &.nav-justified {\n    @media (min-width: @grid-float-breakpoint) {\n      border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n    }\n    > li {\n      &:first-child > a {\n        padding-left: 15px;\n      }\n      > a {\n        border-bottom: 0;\n        &:before {\n          left: 0 !important;\n          right: 0 !important;\n        }\n      }\n    }\n  }\n  > li {\n    margin-bottom: 0;\n    &.active > a {\n      .tab-indicator(@background: @nav-tabs-active-link-hover-color);\n      &,\n      &:active,\n      &:focus,\n      &:hover {\n        background-color: transparent;\n        border: 0 !important;\n        color: @link-color;\n        &:before {\n          background: @nav-tabs-active-link-hover-color;\n        }\n      }\n    }\n    &:first-child {\n      > a {\n        padding-left: 0;\n        &:before {\n          left: 0 !important;\n        }\n      }\n    }\n    > a {\n      border: 0;\n      line-height: 1;\n      margin-right: 0;\n      padding-bottom: 10px;\n      padding-top: 10px;\n      &:active,\n      &:focus,\n      &:hover {\n        .tab-indicator()\n      }\n    }\n    > .dropdown-menu {\n      left: 15px;\n      margin-top: 1px;\n      &.pull-right {\n        left: auto;\n        right: 15px;\n      }\n    }\n  }\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: transparent;\n    }\n  }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n// Base class\n.tooltip {\n  font-size: @tooltip-font-size;\n  line-height: 1.4;\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n  padding: 7px 12px;\n  text-align: left;\n}\n","//\n// Typography\n// --------------------------------------------------\n\nh1,\n.h1,\nh2,\n.h2 {\n  font-weight: 300;\n}\n\n.page-header .actions {\n  margin-top: 8px;\n  a > .pficon {\n    margin-right: 4px;\n  }\n}\n\n@media (min-width: @grid-float-breakpoint-max) {\n  .page-header-bleed-left {\n    margin-left: (-(@grid-gutter-width / 2));\n  }\n  .page-header-bleed-right {\n    margin-right: ((-@grid-gutter-width / 2));\n    .actions {\n      margin-right: (@grid-gutter-width / 2);\n    }\n  }\n}\n"]}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/patternfly/tests/build/less/patternfly.min.css b/themes/src/main/node_modules/patternfly/tests/build/less/patternfly.min.css
index ea8e7ed..1a2a6eb 100644
--- a/themes/src/main/node_modules/patternfly/tests/build/less/patternfly.min.css
+++ b/themes/src/main/node_modules/patternfly/tests/build/less/patternfly.min.css
@@ -5,4 +5,4 @@
  *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{background:0 0!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{box-sizing:border-box}:after,:before{box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:"Open Sans",Helvetica,Arial,sans-serif;font-size:12px;line-height:1.66666667;color:#363636;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#0088ce;text-decoration:none}a:focus,a:hover{color:#00659c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:1px}.img-thumbnail{padding:4px;line-height:1.66666667;background-color:#fff;border:1px solid #ddd;border-radius:1px;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #f1f1f1}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#9c9c9c}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:24px}.h2,h2{font-size:22px}.h3,h3{font-size:16px}.h4,h4{font-size:15px}.h5,h5{font-size:13px}.h6,h6{font-size:11px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:13px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:18px}}.small,small{font-size:91%}.mark,mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#9c9c9c}.text-primary{color:#39a5dc}a.text-primary:focus,a.text-primary:hover{color:#228bc0}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#ec7a08}a.text-warning:focus,a.text-warning:hover{color:#bb6106}.text-danger{color:#c00}a.text-danger:focus,a.text-danger:hover{color:#900}.bg-primary{color:#fff;background-color:#39a5dc}a.bg-primary:focus,a.bg-primary:hover{background-color:#228bc0}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #f1f1f1}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.66666667}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #9c9c9c}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:15px;border-left:5px solid #f1f1f1}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.66666667;color:#9c9c9c}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #f1f1f1;border-left:0;text-align:right}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.66666667}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,monospace}code{padding:2px 4px;font-size:90%;color:#004368;background-color:#def3ff;border-radius:1px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:1px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:11px;line-height:1.66666667;word-break:break-all;word-wrap:break-word;color:#363636;background-color:#fafafa;border:1px solid #ccc;border-radius:1px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:20px;padding-right:20px}@media (min-width:768px){.container{width:760px}}@media (min-width:992px){.container{width:980px}}@media (min-width:1200px){.container{width:1180px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:20px;padding-right:20px}.row{margin-left:-20px;margin-right:-20px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:20px;padding-right:20px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:10px;padding-bottom:10px;color:#9c9c9c;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:10px;line-height:1.66666667;vertical-align:top;border-top:1px solid #d1d1d1}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #d1d1d1}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #d1d1d1}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #d1d1d1}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #d1d1d1}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f5f5f5}.table-hover>tbody>tr:hover{background-color:#def3ff}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#def3ff}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#c4eaff}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #d1d1d1}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:18px;line-height:inherit;color:#363636;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:3px;font-size:12px;line-height:1.66666667;color:#363636}.form-control{display:block;width:100%;height:26px;padding:2px 6px;font-size:12px;line-height:1.66666667;color:#363636;background-color:#fff;background-image:none;border:1px solid #bbb;border-radius:1px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#0088ce;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,136,206,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control:-moz-placeholder{color:#999;font-style:italic}.form-control::-moz-placeholder{color:#999;font-style:italic;opacity:1}.form-control:-ms-input-placeholder{color:#999;font-style:italic}.form-control::-webkit-input-placeholder{color:#999;font-style:italic}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#f5f5f5;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:26px}.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:22px}.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:33px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{padding-top:3px;padding-bottom:3px;margin-bottom:0;min-height:32px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:22px;padding:2px 6px;font-size:11px;line-height:1.5;border-radius:1px}select.input-sm{height:22px;line-height:22px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:22px;padding:2px 6px;font-size:11px;line-height:1.5;border-radius:1px}.form-group-sm select.form-control{height:22px;line-height:22px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:22px;min-height:31px;padding:3px 6px;font-size:11px;line-height:1.5}.input-lg{height:33px;padding:6px 10px;font-size:14px;line-height:1.3333333;border-radius:1px}select.input-lg{height:33px;line-height:33px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:33px;padding:6px 10px;font-size:14px;line-height:1.3333333;border-radius:1px}.form-group-lg select.form-control{height:33px;line-height:33px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:33px;min-height:34px;padding:7px 10px;font-size:14px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:32.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:26px;height:26px;line-height:26px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:33px;height:33px;line-height:33px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:22px;height:22px;line-height:22px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#ec7a08}.has-warning .form-control{border-color:#ec7a08;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#bb6106;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #faad60}.has-warning .input-group-addon{color:#ec7a08;border-color:#ec7a08;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#ec7a08}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#c00}.has-error .form-control{border-color:#c00;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#900;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #f33}.has-error .input-group-addon{color:#c00;border-color:#c00;background-color:#f2dede}.has-error .form-control-feedback{color:#c00}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#767676}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:3px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:23px}.form-horizontal .form-group{margin-left:-20px;margin-right:-20px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:3px}}.form-horizontal .has-feedback .form-control-feedback{right:20px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:7px;font-size:14px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:3px;font-size:11px}}.btn{display:inline-block;margin-bottom:0;font-weight:600;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:2px 6px;font-size:12px;line-height:1.66666667;border-radius:1px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#4d5258;text-decoration:none}.btn.active,.btn:active{outline:0;background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#4d5258;background-color:#f1f1f1;border-color:#bbb}.btn-default.focus,.btn-default:focus{color:#4d5258;background-color:#d8d8d8;border-color:#7b7b7b}.btn-default:hover{color:#4d5258;background-color:#d8d8d8;border-color:#9c9c9c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#4d5258;background-color:#d8d8d8;border-color:#9c9c9c}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#4d5258;background-color:#c6c6c6;border-color:#7b7b7b}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#f1f1f1;border-color:#bbb}.btn-default .badge{color:#f1f1f1;background-color:#4d5258}.btn-primary{color:#fff;background-color:#0088ce;border-color:#00659c}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#00669b;border-color:#00121d}.btn-primary:hover{color:#fff;background-color:#00669b;border-color:#003d5f}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#00669b;border-color:#003d5f}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#004f77;border-color:#00121d}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#0088ce;border-color:#00659c}.btn-primary .badge{color:#0088ce;background-color:#fff}.btn-success{color:#fff;background-color:#3f9c35;border-color:#37892f}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#307628;border-color:#112a0e}.btn-success:hover{color:#fff;background-color:#307628;border-color:#255b1f}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#307628;border-color:#255b1f}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#255b1f;border-color:#112a0e}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#3f9c35;border-color:#37892f}.btn-success .badge{color:#3f9c35;background-color:#fff}.btn-info{color:#fff;background-color:#00659c;border-color:#005483}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#004469;border-color:#000203}.btn-info:hover{color:#fff;background-color:#004469;border-color:#002d45}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#004469;border-color:#002d45}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#002d45;border-color:#000203}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#00659c;border-color:#005483}.btn-info .badge{color:#00659c;background-color:#fff}.btn-warning{color:#fff;background-color:#ec7a08;border-color:#d36d07}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#bb6106;border-color:#582e03}.btn-warning:hover{color:#fff;background-color:#bb6106;border-color:#984f05}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#bb6106;border-color:#984f05}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#984f05;border-color:#582e03}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#ec7a08;border-color:#d36d07}.btn-warning .badge{color:#ec7a08;background-color:#fff}.btn-danger{color:#fff;background-color:#a30000;border-color:#8b0000}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#700000;border-color:#0b0000}.btn-danger:hover{color:#fff;background-color:#700000;border-color:#4e0000}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#700000;border-color:#4e0000}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#4c0000;border-color:#0b0000}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#a30000;border-color:#8b0000}.btn-danger .badge{color:#a30000;background-color:#fff}.btn-link{color:#0088ce;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#00659c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#9c9c9c;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:6px 10px;font-size:14px;line-height:1.3333333;border-radius:1px}.btn-group-sm>.btn,.btn-sm{padding:2px 6px;font-size:11px;line-height:1.5;border-radius:1px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:11px;line-height:1.5;border-radius:1px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;transition-property:height,visibility;transition-duration:.35s;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:0 dashed;border-right:0 solid transparent;border-left:0 solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:12px;text-align:left;background-color:#fff;border:1px solid #bbb;border-radius:1px;box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{margin:9px 0;background-color:#ededed;height:1px;margin:4px 1px;overflow:hidden}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.66666667;color:#363636;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#4d5258;background-color:#def3ff}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#0088ce}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#9c9c9c}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:11px;line-height:1.66666667;color:#9c9c9c;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:0 dashed;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:0 0 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 0 0}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:1px;border-top-left-radius:1px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:33px;padding:6px 10px;font-size:14px;line-height:1.3333333;border-radius:1px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:33px;line-height:33px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:22px;padding:2px 6px;font-size:11px;line-height:1.5;border-radius:1px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:22px;line-height:22px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:2px 6px;font-size:12px;font-weight:400;line-height:1;color:#363636;text-align:center;background-color:#f1f1f1;border:1px solid #bbb;border-radius:1px}.input-group-addon.input-sm{padding:2px 6px;font-size:11px;border-radius:1px}.input-group-addon.input-lg{padding:6px 10px;font-size:14px;border-radius:1px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#f1f1f1}.nav>li.disabled>a{color:#9c9c9c}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#9c9c9c;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#f1f1f1;border-color:#0088ce}.nav .nav-divider{margin:9px 0;background-color:#e5e5e5;background-color:#ededed;height:1px;margin:4px 1px;overflow:hidden}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ededed}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.66666667;border:1px solid transparent;border-radius:1px 1px 0 0}.nav-tabs>li>a:hover{border-color:transparent transparent #ededed}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#0088ce;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:1px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ededed}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ededed;border-radius:1px 1px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:1px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#39a5dc}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:1px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ededed}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ededed;border-radius:1px 1px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:1px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:20px;padding-left:20px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-20px;margin-left:-20px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 20px;font-size:14px;line-height:20px;height:50px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-20px}}.navbar-toggle{position:relative;float:right;margin-right:20px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:1px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -20px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-20px;margin-right:-20px;padding:10px 20px;border-top:1px solid transparent;border-bottom:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin-top:12px;margin-bottom:12px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:1px;border-top-left-radius:1px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:12px;margin-bottom:12px}.navbar-btn.btn-sm{margin-top:14px;margin-bottom:14px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:20px;margin-right:20px}}@media (min-width:768px){.navbar-left{float:left!important;float:left}.navbar-right{float:right!important;float:right;margin-right:-20px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#c2c2c2}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#c2c2c2}.navbar-inverse .navbar-nav>li>a{color:#c2c2c2}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#c2c2c2}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#c2c2c2}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#c2c2c2}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:transparent;border-radius:1px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"\f105\00a0";padding:0 5px;color:#4d5258}.breadcrumb>.active{color:#4d5258}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:1px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:2px 6px;line-height:1.66666667;text-decoration:none;color:#0088ce;background-color:#f5f5f5;border:1px solid #bbb;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#00659c;background-color:#ededed;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#39a5dc;border-color:#39a5dc;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#9c9c9c;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:6px 10px;font-size:14px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pagination-sm>li>a,.pagination-sm>li>span{padding:2px 6px;font-size:11px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#f5f5f5;border:1px solid #bbb;border-radius:0}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#ededed}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#8b8d8f;background-color:#f5f5f5;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#9c9c9c}.label-default[href]:focus,.label-default[href]:hover{background-color:#838383}.label-primary{background-color:#39a5dc}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#228bc0}.label-success{background-color:#3f9c35}.label-success[href]:focus,.label-success[href]:hover{background-color:#307628}.label-info{background-color:#00659c}.label-info[href]:focus,.label-info[href]:hover{background-color:#004469}.label-warning{background-color:#ec7a08}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#bb6106}.label-danger{background-color:#c00}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#900}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:11px;font-weight:700;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#9c9c9c;border-radius:1px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#0088ce;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#f1f1f1}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:18px;font-weight:200}.jumbotron>hr{border-top-color:#d8d8d8}.container .jumbotron,.container-fluid .jumbotron{border-radius:1px;padding-left:20px;padding-right:20px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:54px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.66666667;background-color:#fff;border:1px solid #ddd;border-radius:1px;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-left:auto;margin-right:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#0088ce}.thumbnail .caption{padding:9px;color:#363636}.alert{padding:11px;margin-bottom:20px;border:1px solid transparent;border-radius:1px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:500}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:31px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#e9f4e9;border-color:#3f9c35;color:#363636}.alert-success hr{border-top-color:#37892f}.alert-success .alert-link{color:#1d1d1d}.alert-info{background-color:#f5f5f5;border-color:#8b8d8f;color:#363636}.alert-info hr{border-top-color:#7e8082}.alert-info .alert-link{color:#1d1d1d}.alert-warning{background-color:#fdf2e5;border-color:#ec7a08;color:#363636}.alert-warning hr{border-top-color:#d36d07}.alert-warning .alert-link{color:#1d1d1d}.alert-danger{background-color:#ffe6e6;border-color:#c00;color:#363636}.alert-danger hr{border-top-color:#b30000}.alert-danger .alert-link{color:#1d1d1d}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#ededed;border-radius:1px;box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0%;height:100%;font-size:11px;line-height:20px;color:#fff;text-align:center;background-color:#39a5dc;box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%);background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#3f9c35}.progress-striped .progress-bar-success{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%)}.progress-bar-info{background-color:#00659c}.progress-striped .progress-bar-info{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%)}.progress-bar-warning{background-color:#ec7a08}.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%)}.progress-bar-danger{background-color:#c00}.progress-striped .progress-bar-danger{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #f5f5f5}.list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{text-decoration:none;color:#555;background-color:#def3ff}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#f1f1f1;color:#9c9c9c;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#9c9c9c}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#39a5dc;border-color:#39a5dc}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#e6f4fb}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#ec7a08;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#ec7a08}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#ec7a08;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#ec7a08;border-color:#ec7a08}.list-group-item-danger{color:#c00;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#c00}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#c00;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#c00;border-color:#c00}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:1px;box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:0;border-top-left-radius:0}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:14px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #d1d1d1;border-bottom-right-radius:0;border-bottom-left-radius:0}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:0;border-top-left-radius:0}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:0}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:0}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:0;border-bottom-left-radius:0}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:0;border-bottom-right-radius:0}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:0}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:0}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #d1d1d1}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:1px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #d1d1d1}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #d1d1d1}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#363636;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#363636}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#39a5dc}.panel-primary>.panel-heading{color:#fff;background-color:#39a5dc;border-color:#39a5dc}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#39a5dc}.panel-primary>.panel-heading .badge{color:#39a5dc;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#39a5dc}.panel-success{border-color:#3f9c35}.panel-success>.panel-heading{color:#fff;background-color:#3f9c35;border-color:#3f9c35}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#3f9c35}.panel-success>.panel-heading .badge{color:#3f9c35;background-color:#fff}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#3f9c35}.panel-info{border-color:#00659c}.panel-info>.panel-heading{color:#fff;background-color:#00659c;border-color:#00659c}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#00659c}.panel-info>.panel-heading .badge{color:#00659c;background-color:#fff}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#00659c}.panel-warning{border-color:#ec7a08}.panel-warning>.panel-heading{color:#fff;background-color:#ec7a08;border-color:#ec7a08}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ec7a08}.panel-warning>.panel-heading .badge{color:#ec7a08;background-color:#fff}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ec7a08}.panel-danger{border-color:#c00}.panel-danger>.panel-heading{color:#fff;background-color:#c00;border-color:#c00}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#c00}.panel-danger>.panel-heading .badge{color:#c00;background-color:#fff}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#c00}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:1px;box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:1px}.well-sm{padding:9px;border-radius:1px}.close{float:right;font-size:18px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-ms-transform:translate(0,-25%);transform:translate(0,-25%);transition:transform .3s ease-out}.modal.in .modal-dialog{-ms-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:1px;box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.in{opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.66666667}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.66666667;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:11px;opacity:0}.tooltip.in{opacity:.9}.tooltip.top{margin-top:-3px;padding:8px 0}.tooltip.right{margin-left:3px;padding:0 8px}.tooltip.bottom{margin-top:3px;padding:8px 0}.tooltip.left{margin-left:-3px;padding:0 8px}.tooltip-inner{max-width:220px;padding:3px 8px;color:#fff;text-align:center;background-color:#393f44;border-radius:1px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-8px;border-width:8px 8px 0;border-top-color:#393f44}.tooltip.top-left .tooltip-arrow{bottom:0;right:8px;margin-bottom:-8px;border-width:8px 8px 0;border-top-color:#393f44}.tooltip.top-right .tooltip-arrow{bottom:0;left:8px;margin-bottom:-8px;border-width:8px 8px 0;border-top-color:#393f44}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-8px;border-width:8px 8px 8px 0;border-right-color:#393f44}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-8px;border-width:8px 0 8px 8px;border-left-color:#393f44}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-8px;border-width:0 8px 8px;border-bottom-color:#393f44}.tooltip.bottom-left .tooltip-arrow{top:0;right:8px;margin-top:-8px;border-width:0 8px 8px;border-bottom-color:#393f44}.tooltip.bottom-right .tooltip-arrow{top:0;left:8px;margin-top:-8px;border-width:0 8px 8px;border-bottom-color:#393f44}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:220px;padding:1px;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.66666667;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid #bbb;border-radius:1px;box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:12px;background-color:#f5f5f5;border-bottom:1px solid #e8e8e8;border-radius:0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:#bbb;bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:#bbb}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:#bbb;top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:#bbb}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{transform:translate3d(0,0,0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x}.carousel-control.right{left:auto;right:0;background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{content:" ";display:table}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}/*!
  *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
  *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.7.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(../fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}.fa-rotate-90{-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.text-overflow-pf{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.alert{border-width:1px;padding-left:47px;padding-right:14px;position:relative;word-wrap:break-word}.alert .alert-link{color:#0088ce}.alert .alert-link:hover{color:#00659c}.alert>.btn.pull-right{margin-top:-3px}.alert>.pficon{font-size:22px;position:absolute;left:13px;top:10px}.alert .close{opacity:.85}.alert .close:focus,.alert .close:hover{opacity:1}.alert .pficon-info{color:#4d5258}.alert-dismissable{padding-right:28px}.alert-dismissable .close{right:-13px;top:1px}.badge{margin-left:6px}.nav-pills>li>a>.badge{margin-left:6px}.breadcrumb{padding-left:0}.breadcrumb>.active strong{font-weight:600}.breadcrumb>li{display:inline}.breadcrumb>li+li:before{color:#9c9c9c;content:"\f101";font-family:FontAwesome;font-size:11px;padding:0 9px 0 7px}.btn{box-shadow:0 2px 3px rgba(3,3,3,.1)}.btn:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{background-color:#fafafa!important;background-image:none!important;border-color:#d1d1d1!important;color:#8b8d8f!important;opacity:1}.btn.disabled:active,.btn[disabled]:active,fieldset[disabled] .btn:active{box-shadow:none}.btn.disabled.btn-link,.btn[disabled].btn-link,fieldset[disabled] .btn.btn-link{background-color:transparent!important;border:0}.btn-danger{background-color:#a30000;background-image:linear-gradient(to bottom,#c00 0,#a30000 100%);background-repeat:repeat-x;border-color:#8b0000;color:#fff}.btn-danger.active,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open .dropdown-toggle.btn-danger{background-color:#a30000;background-image:none;border-color:#8b0000;color:#fff}.btn-danger.active,.btn-danger:active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open .dropdown-toggle.btn-danger.focus,.open .dropdown-toggle.btn-danger:focus,.open .dropdown-toggle.btn-danger:hover{background-color:#8a0000;border-color:#670000}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#a30000;border-color:#8b0000}.btn-default{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258}.btn-default.active,.btn-default:active,.btn-default:focus,.btn-default:hover,.open .dropdown-toggle.btn-default{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.btn-default.active,.btn-default:active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open .dropdown-toggle.btn-default.focus,.open .dropdown-toggle.btn-default:focus,.open .dropdown-toggle.btn-default:hover{background-color:#e5e5e5;border-color:#a9a9a9}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#f1f1f1;border-color:#bbb}.btn-link,.btn-link:active{box-shadow:none}.btn-primary{background-color:#0088ce;background-image:linear-gradient(to bottom,#39a5dc 0,#0088ce 100%);background-repeat:repeat-x;border-color:#00659c;color:#fff}.btn-primary.active,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open .dropdown-toggle.btn-primary{background-color:#0088ce;background-image:none;border-color:#00659c;color:#fff}.btn-primary.active,.btn-primary:active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open .dropdown-toggle.btn-primary.focus,.open .dropdown-toggle.btn-primary:focus,.open .dropdown-toggle.btn-primary:hover{background-color:#0077b5;border-color:#004e78}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#0088ce;border-color:#00659c}.btn-group-xs .btn,.btn-group-xs>.btn,.btn-xs{font-weight:400}.caret{font-family:FontAwesome;font-weight:400;height:9px;position:relative;vertical-align:baseline;width:12px}.caret:before{bottom:0;content:"\f107";left:0;line-height:12px;position:absolute;text-align:center;top:-1px;right:0}.dropup .caret:before{content:"\f106"}.dropdown-toggle:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.dropdown-menu .divider{background-color:#ededed;height:1px;margin:4px 1px;overflow:hidden}.dropdown-menu>li>a{border-color:transparent;border-style:solid;border-width:1px 0;padding:1px 10px}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{border-color:#bee1f4}.dropdown-menu>li>a:active{background-color:#0088ce;border-color:#0088ce;color:#fff!important}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#0088ce!important;border-color:#0088ce!important}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{border-color:transparent}.dropdown-menu>.selected>a{background-color:#0088ce;border-color:#0088ce;color:#fff}.dropdown-menu>.selected>a small{color:rgba(255,255,255,.5)}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{border-color:transparent}.dropdown-header{padding-left:10px;padding-right:10px;text-transform:uppercase}.btn-group>.dropdown-menu,.dropdown>.dropdown-menu,.input-group-btn>.dropdown-menu{margin-top:-1px}.dropup .dropdown-menu{margin-bottom:-1px}.dropdown-submenu{position:relative}.dropdown-submenu:hover>a{background-color:#def3ff;border-color:#bee1f4}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropdown-submenu.pull-left{float:none!important}.dropdown-submenu.pull-left>.dropdown-menu{left:auto;margin-left:10px;right:100%}.dropdown-submenu>a{padding-right:20px!important}.dropdown-submenu>a:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:2px}.dropdown-submenu>.dropdown-menu{left:100%;margin-top:0;top:-6px}.dropup .dropdown-submenu>.dropdown-menu{bottom:-5px;top:auto}.open .dropdown-submenu.active>.dropdown-menu{display:block}.dropdown-kebab-pf .btn-link,.dropdown-kebab-pf.btn-group>.btn:first-child{color:#252525;font-size:16px;line-height:1;padding:4px 10px;margin-left:-10px;margin-right:-10px}.dropdown-kebab-pf .btn-link:active,.dropdown-kebab-pf .btn-link:focus,.dropdown-kebab-pf .btn-link:hover,.dropdown-kebab-pf.btn-group>.btn:first-child:active,.dropdown-kebab-pf.btn-group>.btn:first-child:focus,.dropdown-kebab-pf.btn-group>.btn:first-child:hover{color:#0088ce}.dropdown-kebab-pf.btn-group{margin-left:10px}.dropdown-kebab-pf .dropdown-menu{left:-15px;margin-top:11px}.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right{left:auto;right:-15px}.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:after,.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:before{left:auto;right:6px}.dropdown-kebab-pf .dropdown-menu:after,.dropdown-kebab-pf .dropdown-menu:before{border-bottom-color:#bbb;border-bottom-style:solid;border-bottom-width:10px;border-left:10px solid transparent;border-right:10px solid transparent;content:"";display:inline-block;left:6px;position:absolute;top:-11px}.dropdown-kebab-pf .dropdown-menu:after{border-bottom-color:#fff;top:-10px}.dropdown-kebab-pf.dropup .dropdown-menu{margin-bottom:11px;margin-top:0}.dropdown-kebab-pf.dropup .dropdown-menu:after,.dropdown-kebab-pf.dropup .dropdown-menu:before{border-bottom:none;border-top-color:#bbb;border-top-style:solid;border-top-width:10px;bottom:-11px;top:auto}.dropdown-kebab-pf.dropup .dropdown-menu:after{border-top-color:#fff;bottom:-10px}.chars-remaining-pf span{font-weight:600;padding-right:5px}.chars-warn-remaining-pf{color:#c00}.fields-status-pf{color:#8b8d8f;margin-bottom:15px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{box-shadow:none;color:#8b8d8f}.form-control[disabled]:hover,.form-control[readonly]:hover,fieldset[disabled] .form-control:hover{border-color:#bbb}.form-control:hover{border-color:#7dc3e8}.has-error .form-control:hover{border-color:#900}.has-success .form-control:hover{border-color:#2b542c}.has-warning .form-control:hover{border-color:#bb6106}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label,.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label,.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#363636}.help-block{margin-bottom:0}.input-group .input-group-btn .btn{box-shadow:none}label{font-weight:600}label.required-pf:after{color:#c00;content:"*";margin-left:3px}span.required-pf{color:#c00}.fields-section-pf{border-color:#ededed;border-style:solid;border-width:1px 0 0;margin-top:25px;padding:15px 0 0}.fields-section-header-pf{border:none;font-size:12px;margin:0;padding-right:10px;width:auto}.fields-section-header-pf .fa-angle-right{cursor:pointer;font-size:14px;width:14px}.label{border-radius:0;font-size:100%;font-weight:600}h1 .label,h2 .label,h3 .label,h4 .label,h5 .label,h6 .label{font-size:75%}.list-group{border-top:1px solid #ededed}.list-group .list-group-item:first-child{border-top:0}.list-group-item{border-left:0;border-right:0}.list-group-item-heading{font-weight:600}.modal-header{background-color:#f5f5f5;border-bottom:none;padding:10px 18px}.modal-header .close{margin-top:2px}.modal-title{font-size:13px;font-weight:700}.modal-footer{border-top:none;margin-top:15px;padding:14px 15px 15px}.modal-footer>.btn{padding-left:10px;padding-right:10px}.modal-footer>.btn>.fa-angle-left{margin-right:5px}.modal-footer>.btn>.fa-angle-right{margin-left:5px}.pager li>a,.pager li>span{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;font-weight:600;line-height:22px;padding:2px 14px}.open .dropdown-toggle.pager li>a,.open .dropdown-toggle.pager li>span,.pager li>a.active,.pager li>a:active,.pager li>a:focus,.pager li>a:hover,.pager li>span.active,.pager li>span:active,.pager li>span:focus,.pager li>span:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.open .dropdown-toggle.pager li>a,.open .dropdown-toggle.pager li>span,.pager li>a.active,.pager li>a:active,.pager li>span.active,.pager li>span:active{background-image:none}.open .dropdown-toggle.pager li>a.focus,.open .dropdown-toggle.pager li>a:focus,.open .dropdown-toggle.pager li>a:hover,.open .dropdown-toggle.pager li>span.focus,.open .dropdown-toggle.pager li>span:focus,.open .dropdown-toggle.pager li>span:hover,.pager li>a.active.focus,.pager li>a.active:focus,.pager li>a.active:hover,.pager li>a:active.focus,.pager li>a:active:focus,.pager li>a:active:hover,.pager li>span.active.focus,.pager li>span.active:focus,.pager li>span.active:hover,.pager li>span:active.focus,.pager li>span:active:focus,.pager li>span:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.pager li>a.disabled,.pager li>a.disabled.active,.pager li>a.disabled:active,.pager li>a.disabled:focus,.pager li>a.disabled:hover,.pager li>a[disabled],.pager li>a[disabled].active,.pager li>a[disabled]:active,.pager li>a[disabled]:focus,.pager li>a[disabled]:hover,.pager li>span.disabled,.pager li>span.disabled.active,.pager li>span.disabled:active,.pager li>span.disabled:focus,.pager li>span.disabled:hover,.pager li>span[disabled],.pager li>span[disabled].active,.pager li>span[disabled]:active,.pager li>span[disabled]:focus,.pager li>span[disabled]:hover,fieldset[disabled] .pager li>a,fieldset[disabled] .pager li>a.active,fieldset[disabled] .pager li>a:active,fieldset[disabled] .pager li>a:focus,fieldset[disabled] .pager li>a:hover,fieldset[disabled] .pager li>span,fieldset[disabled] .pager li>span.active,fieldset[disabled] .pager li>span:active,fieldset[disabled] .pager li>span:focus,fieldset[disabled] .pager li>span:hover{background-color:#f1f1f1;border-color:#bbb}.pager li>a>.i,.pager li>span>.i{font-size:18px;vertical-align:top;margin:2px 0}.pager li a:active{background-image:none;box-shadow:inset 0 3px 5px rgba(3,3,3,.125);outline:0}.pager .disabled>a,.pager .disabled>a:active,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{background:#f5f5f5;box-shadow:none;color:#8b8d8f;cursor:default}.pager .next>a>.i,.pager .next>span>.i{margin-left:5px}.pager .previous>a>.i,.pager .previous>span>.i{margin-right:5px}.pager-sm li>a,.pager-sm li>span{font-weight:400;line-height:16px;padding:1px 10px}.pager-sm li>a>.i,.pager-sm li>span>.i{font-size:12px}.pagination>li>a,.pagination>li>span{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;cursor:default;font-weight:600;padding:2px 10px}.open .dropdown-toggle.pagination>li>a,.open .dropdown-toggle.pagination>li>span,.pagination>li>a.active,.pagination>li>a:active,.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span.active,.pagination>li>span:active,.pagination>li>span:focus,.pagination>li>span:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.open .dropdown-toggle.pagination>li>a,.open .dropdown-toggle.pagination>li>span,.pagination>li>a.active,.pagination>li>a:active,.pagination>li>span.active,.pagination>li>span:active{background-image:none}.open .dropdown-toggle.pagination>li>a.focus,.open .dropdown-toggle.pagination>li>a:focus,.open .dropdown-toggle.pagination>li>a:hover,.open .dropdown-toggle.pagination>li>span.focus,.open .dropdown-toggle.pagination>li>span:focus,.open .dropdown-toggle.pagination>li>span:hover,.pagination>li>a.active.focus,.pagination>li>a.active:focus,.pagination>li>a.active:hover,.pagination>li>a:active.focus,.pagination>li>a:active:focus,.pagination>li>a:active:hover,.pagination>li>span.active.focus,.pagination>li>span.active:focus,.pagination>li>span.active:hover,.pagination>li>span:active.focus,.pagination>li>span:active:focus,.pagination>li>span:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.pagination>li>a.disabled,.pagination>li>a.disabled.active,.pagination>li>a.disabled:active,.pagination>li>a.disabled:focus,.pagination>li>a.disabled:hover,.pagination>li>a[disabled],.pagination>li>a[disabled].active,.pagination>li>a[disabled]:active,.pagination>li>a[disabled]:focus,.pagination>li>a[disabled]:hover,.pagination>li>span.disabled,.pagination>li>span.disabled.active,.pagination>li>span.disabled:active,.pagination>li>span.disabled:focus,.pagination>li>span.disabled:hover,.pagination>li>span[disabled],.pagination>li>span[disabled].active,.pagination>li>span[disabled]:active,.pagination>li>span[disabled]:focus,.pagination>li>span[disabled]:hover,fieldset[disabled] .pagination>li>a,fieldset[disabled] .pagination>li>a.active,fieldset[disabled] .pagination>li>a:active,fieldset[disabled] .pagination>li>a:focus,fieldset[disabled] .pagination>li>a:hover,fieldset[disabled] .pagination>li>span,fieldset[disabled] .pagination>li>span.active,fieldset[disabled] .pagination>li>span:active,fieldset[disabled] .pagination>li>span:focus,fieldset[disabled] .pagination>li>span:hover{background-color:#f1f1f1;border-color:#bbb}.pagination>li>a>.i,.pagination>li>span>.i{font-size:15px;vertical-align:top;margin:2px 0}.pagination>li>a:active,.pagination>li>span:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{background-color:#f1f1f1;border-color:#bbb;box-shadow:inset 0 2px 8px rgba(3,3,3,.2);color:#4d5258;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{box-shadow:none;cursor:default;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.pagination-sm>li>a,.pagination-sm>li>span{padding:2px 6px;font-size:11px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pagination-sm>li>a,.pagination-sm>li>span{font-weight:400}.pagination-sm>li>a>.i,.pagination-sm>li>span>.i{font-size:12px;margin-top:2px}.content-view-pf-pagination{background-color:#f5f5f5;border:1px solid #d1d1d1;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between}.content-view-pf-pagination.table-view-pf-pagination{border-top:none}.content-view-pf-pagination .form-group{-ms-flex-align:baseline;align-items:baseline;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;float:left;margin:5px}@supports (display:flex){.content-view-pf-pagination .form-group{float:none}}.content-view-pf-pagination .form-group:last-child{-ms-flex-pack:end;justify-content:flex-end;float:right}@supports (display:flex){.content-view-pf-pagination .form-group:last-child{float:none}}.content-view-pf-pagination .form-group .pagination-pf-pagesize.bootstrap-select.btn-group,.content-view-pf-pagination .form-group .pagination-pf-pagesize.btn-group{display:-ms-flexbox;display:flex;float:none;margin-bottom:0;margin-left:0;margin-right:5px;width:auto}.content-view-pf-pagination .form-group .dropdown-menu{min-width:auto}.content-view-pf-pagination .pagination-pf-page{margin-left:10px;margin-right:5px;padding:0 2px 2px;text-align:right;width:2.5em}.content-view-pf-pagination .pagination{display:-ms-flexbox;display:flex;margin:0 0 0 10px}.content-view-pf-pagination .pagination a{float:none}@supports (display:flex){.content-view-pf-pagination .pagination a{display:block}}.panel-title{font-weight:700}.panel-group .panel{color:#4d5258}.panel-group .panel+.panel{margin-top:-1px}.panel-group .panel-default{border-color:#bbb;border-top-color:#bbb}.panel-group .panel-default .panel-heading{background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.panel-group .panel-default .panel-heading+.panel-collapse .panel-body{border-top:1px solid #d1d1d1}.panel-group .panel-info{border-color:#00659c}.panel-group .panel-info .panel-heading{background-color:#dae5f4}.panel-group .panel-info+.panel-default{border-top-color:#00659c}.panel-group .panel-primary{border-color:#39a5dc}.panel-group .panel-primary .panel-heading{background-color:#def0f9}.panel-group .panel-primary+.panel-default{border-top-color:#39a5dc}.panel-group .panel-primary+.panel-info{border-top-color:#39a5dc}.panel-group .panel-success{border-color:#3f9c35}.panel-group .panel-success .panel-heading{background-color:#e9f4e9}.panel-group .panel-success+.panel-default{border-top-color:#3f9c35}.panel-group .panel-success+.panel-info{border-top-color:#3f9c35}.panel-group .panel-success+.panel-primary{border-top-color:#3f9c35}.panel-group .panel-warning{border-color:#ec7a08}.panel-group .panel-warning .panel-heading{background-color:#fdf2e5}.panel-group .panel-warning+.panel-default{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-info{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-primary{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-success{border-top-color:#ec7a08}.panel-group .panel-danger{border-color:#c00}.panel-group .panel-danger .panel-heading{background-color:#ffe6e6}.panel-group .panel-danger+.panel-default{border-top-color:#c00}.panel-group .panel-danger+.panel-info{border-top-color:#c00}.panel-group .panel-danger+.panel-primary{border-top-color:#c00}.panel-group .panel-danger+.panel-success{border-top-color:#c00}.panel-group .panel-danger+.panel-warning{border-top-color:#c00}.panel-group .panel-title{font-weight:500;line-height:1}.panel-group .panel-title>a{color:#4d5258;font-weight:600}.panel-group .panel-title>a:before{content:"\f107";display:inline-block;font-family:FontAwesome;font-size:13px;margin-right:5px;text-align:center;vertical-align:0;width:8px}.panel-group .panel-title>a:focus{outline:0;text-decoration:none}.panel-group .panel-title>a:hover{text-decoration:none}.panel-group .panel-title>a.collapsed:before{content:"\f105"}.popover{box-shadow:0 2px 2px rgba(3,3,3,.08);padding:0}.popover-content{color:#4d5258;line-height:18px;padding:10px 14px}.popover-title{border-bottom:none;border-radius:0;color:#4d5258;font-size:13px;font-weight:700;min-height:34px}.popover-title .close{height:22px;position:absolute;right:8px;top:6px}.popover-title.closable{padding-right:30px}@keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}.progress{box-shadow:inset 0 0 1px rgba(3,3,3,.25)}.progress.progress-label-left,.progress.progress-label-top-right{overflow:visible;position:relative}.progress.progress-label-left{margin-left:40px}.progress.progress-sm{height:14px;margin-bottom:14px}.progress.progress-xs{height:6px;margin-bottom:6px}td>.progress:first-child:last-child{margin-bottom:0;margin-top:3px}.progress-bar{box-shadow:none}.progress-label-left .progress-bar span,.progress-label-right .progress-bar span,.progress-label-top-right .progress-bar span{color:#363636;position:absolute;text-align:right}.progress-label-left .progress-bar span{font-size:14px;left:-40px;top:0;width:35px}.progress-label-right .progress-bar span,.progress-label-top-right .progress-bar span{font-size:11px;overflow:hidden;right:0;text-overflow:ellipsis;white-space:nowrap}.progress-label-right .progress-bar span strong,.progress-label-top-right .progress-bar span strong{font-weight:600}.progress-label-right .progress-bar span{max-width:85px;top:0}.progress-label-top-right .progress-bar span{max-width:47%;top:-30px}.progress-label-left.progress-sm .progress-bar span,.progress-label-top-right.progress-sm .progress-bar span{font-size:12px}.progress-sm .progress-bar{line-height:14px}.progress-xs .progress-bar{line-height:6px}.progress-bar-remaining{background:0 0}.progress-container{position:relative}.progress-container.progress-description-left{padding-left:90px}.progress-container.progress-label-right{padding-right:90px}.progress-description{margin-bottom:10px;max-width:52%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.progress-description .count{font-size:20.004px;font-weight:300;line-height:1;margin-right:5px}.progress-description .fa,.progress-description .pficon{font-size:14px;margin-right:3px}.progress-description-left .progress-description{left:0;margin-bottom:0;max-width:85px;position:absolute;top:0}.progress-description .tooltip{white-space:normal}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:2px 10px 3px}.table>tbody>tr>td>a:hover,.table>tbody>tr>th>a:hover,.table>tfoot>tr>td>a:hover,.table>tfoot>tr>th>a:hover,.table>thead>tr>td>a:hover,.table>thead>tr>th>a:hover{text-decoration:none}.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>th{font-family:"Open Sans";font-style:normal;font-weight:600}.table>thead{background-clip:padding-box;background-color:#f5f5f5;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.table-bordered{border:1px solid #d1d1d1}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #d1d1d1}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:1px}.table-striped>tbody>tr:nth-of-type(even){background-color:#f5f5f5}.table-striped>tbody>tr:nth-of-type(odd){background-color:transparent}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#def3ff;border-bottom-color:#7dc3e8}.table-treegrid span.indent{margin-left:10px;margin-right:10px}.table-treegrid span.icon{display:inline-block;font-size:13px;margin-right:5px;min-width:10px;text-align:center}.table-treegrid span.collapse-icon,.table-treegrid span.expand-icon{cursor:pointer}.table-treegrid>tbody>tr.odd{background-color:#f5f5f5}.nav-tabs{font-size:14px}.nav-tabs>li>a{color:#4d5258;margin-right:-1px;padding-bottom:5px;padding-top:5px}.nav-tabs>li>a:active,.nav-tabs>li>a:focus,.nav-tabs>li>a:hover{background:0 0;border-color:#ededed;color:#252525}.nav-tabs>li>.dropdown-menu{border-top:0;border-color:#ededed}.nav-tabs>li>.dropdown-menu.pull-right{right:-1px}.nav-tabs+.nav-tabs-pf,.nav-tabs.nav-tabs-pf-secondary{font-size:12px}.nav-tabs+.nav-tabs-pf>li:first-child>a,.nav-tabs.nav-tabs-pf-secondary>li:first-child>a{padding-left:15px}.nav-tabs+.nav-tabs-pf>li:first-child>a:before,.nav-tabs.nav-tabs-pf-secondary>li:first-child>a:before{left:15px!important}.nav-tabs .open>a,.nav-tabs .open>a:focus,.nav-tabs .open>a:hover{background-color:transparent;border-color:#ededed}@media (min-width:768px){.nav-tabs-pf.nav-justified{border-bottom:1px solid #ededed}}.nav-tabs-pf.nav-justified>li:first-child>a{padding-left:15px}.nav-tabs-pf.nav-justified>li>a{border-bottom:0}.nav-tabs-pf.nav-justified>li>a:before{left:0!important;right:0!important}.nav-tabs-pf>li{margin-bottom:0}.nav-tabs-pf>li.active>a:before{background:#0088ce;bottom:-1px;content:"";display:block;height:2px;left:15px;position:absolute;right:15px}.nav-tabs-pf>li.active>a,.nav-tabs-pf>li.active>a:active,.nav-tabs-pf>li.active>a:focus,.nav-tabs-pf>li.active>a:hover{background-color:transparent;border:0!important;color:#0088ce}.nav-tabs-pf>li.active>a:active:before,.nav-tabs-pf>li.active>a:before,.nav-tabs-pf>li.active>a:focus:before,.nav-tabs-pf>li.active>a:hover:before{background:#0088ce}.nav-tabs-pf>li:first-child>a{padding-left:0}.nav-tabs-pf>li:first-child>a:before{left:0!important}.nav-tabs-pf>li>a{border:0;line-height:1;margin-right:0;padding-bottom:10px;padding-top:10px}.nav-tabs-pf>li>a:active:before,.nav-tabs-pf>li>a:focus:before,.nav-tabs-pf>li>a:hover:before{background:#bbb;bottom:-1px;content:"";display:block;height:2px;left:15px;position:absolute;right:15px}.nav-tabs-pf>li>.dropdown-menu{left:15px;margin-top:1px}.nav-tabs-pf>li>.dropdown-menu.pull-right{left:auto;right:15px}.nav-tabs-pf .open>a,.nav-tabs-pf .open>a:focus,.nav-tabs-pf .open>a:hover{background-color:transparent}.tooltip{font-size:12px;line-height:1.4}.tooltip-inner{padding:7px 12px;text-align:left}.h1,.h2,h1,h2{font-weight:300}.page-header .actions{margin-top:8px}.page-header .actions a>.pficon{margin-right:4px}@media (min-width:767px){.page-header-bleed-left{margin-left:-20px}.page-header-bleed-right{margin-right:-20px}.page-header-bleed-right .actions{margin-right:20px}}
\ No newline at end of file
+ */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.7.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(../fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0)}100%{transform:rotate(359deg)}}.fa-rotate-90{-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.text-overflow-pf{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.alert{border-width:1px;padding-left:47px;padding-right:14px;position:relative;word-wrap:break-word}.alert .alert-link{color:#0088ce}.alert .alert-link:hover{color:#00659c}.alert>.btn.pull-right{margin-top:-3px}.alert>.pficon{font-size:22px;position:absolute;left:13px;top:10px}.alert .close{opacity:.85}.alert .close:focus,.alert .close:hover{opacity:1}.alert .pficon-info{color:#4d5258}.alert-dismissable{padding-right:28px}.alert-dismissable .close{right:-13px;top:1px}.badge{margin-left:6px}.nav-pills>li>a>.badge{margin-left:6px}.breadcrumb{padding-left:0}.breadcrumb>.active strong{font-weight:600}.breadcrumb>li{display:inline}.breadcrumb>li+li:before{color:#9c9c9c;content:"\f105";font-family:FontAwesome;font-size:11px;padding:0 9px 0 7px}.btn{box-shadow:0 2px 3px rgba(3,3,3,.1)}.btn:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{background-color:#fafafa!important;background-image:none!important;border-color:#d1d1d1!important;color:#8b8d8f!important;opacity:1}.btn.disabled:active,.btn[disabled]:active,fieldset[disabled] .btn:active{box-shadow:none}.btn.disabled.btn-link,.btn[disabled].btn-link,fieldset[disabled] .btn.btn-link{background-color:transparent!important;border:0}.btn-danger{background-color:#a30000;background-image:linear-gradient(to bottom,#c00 0,#a30000 100%);background-repeat:repeat-x;border-color:#8b0000;color:#fff}.btn-danger.active,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open .dropdown-toggle.btn-danger{background-color:#a30000;background-image:none;border-color:#8b0000;color:#fff}.btn-danger.active,.btn-danger:active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open .dropdown-toggle.btn-danger.focus,.open .dropdown-toggle.btn-danger:focus,.open .dropdown-toggle.btn-danger:hover{background-color:#8a0000;border-color:#670000}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#a30000;border-color:#8b0000}.btn-default{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258}.btn-default.active,.btn-default:active,.btn-default:focus,.btn-default:hover,.open .dropdown-toggle.btn-default{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.btn-default.active,.btn-default:active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open .dropdown-toggle.btn-default.focus,.open .dropdown-toggle.btn-default:focus,.open .dropdown-toggle.btn-default:hover{background-color:#e5e5e5;border-color:#a9a9a9}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#f1f1f1;border-color:#bbb}.btn-link,.btn-link:active{box-shadow:none}.btn-primary{background-color:#0088ce;background-image:linear-gradient(to bottom,#39a5dc 0,#0088ce 100%);background-repeat:repeat-x;border-color:#00659c;color:#fff}.btn-primary.active,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open .dropdown-toggle.btn-primary{background-color:#0088ce;background-image:none;border-color:#00659c;color:#fff}.btn-primary.active,.btn-primary:active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open .dropdown-toggle.btn-primary.focus,.open .dropdown-toggle.btn-primary:focus,.open .dropdown-toggle.btn-primary:hover{background-color:#0077b5;border-color:#004e78}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#0088ce;border-color:#00659c}.btn-group-xs .btn,.btn-group-xs>.btn,.btn-xs{font-weight:400}.caret{font-family:FontAwesome;font-weight:400;height:9px;position:relative;vertical-align:baseline;width:12px}.caret:before{bottom:0;content:"\f107";left:0;line-height:12px;position:absolute;text-align:center;top:-1px;right:0}.dropup .caret:before{content:"\f106"}.dropdown-toggle:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.dropdown-menu .divider{background-color:#ededed;height:1px;margin:4px 1px;overflow:hidden}.dropdown-menu>li>a{border-color:transparent;border-style:solid;border-width:1px 0;padding:1px 10px}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{border-color:#bee1f4}.dropdown-menu>li>a:active{background-color:#0088ce;border-color:#0088ce;color:#fff!important}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#0088ce!important;border-color:#0088ce!important}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{border-color:transparent}.dropdown-menu>.selected>a{background-color:#0088ce;border-color:#0088ce;color:#fff}.dropdown-menu>.selected>a small{color:rgba(255,255,255,.5)}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{border-color:transparent}.dropdown-header{padding-left:10px;padding-right:10px;text-transform:uppercase}.btn-group>.dropdown-menu,.dropdown>.dropdown-menu,.input-group-btn>.dropdown-menu{margin-top:-1px}.dropup .dropdown-menu{margin-bottom:-1px}.dropdown-submenu{position:relative}.dropdown-submenu:hover>a{background-color:#def3ff;border-color:#bee1f4}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropdown-submenu.pull-left{float:none!important}.dropdown-submenu.pull-left>.dropdown-menu{left:auto;margin-left:10px;right:100%}.dropdown-submenu>a{padding-right:20px!important}.dropdown-submenu>a:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:2px}.dropdown-submenu>.dropdown-menu{left:100%;margin-top:0;top:-6px}.dropup .dropdown-submenu>.dropdown-menu{bottom:-5px;top:auto}.open .dropdown-submenu.active>.dropdown-menu{display:block}.dropdown-kebab-pf .btn-link,.dropdown-kebab-pf.btn-group>.btn:first-child{color:#252525;font-size:16px;line-height:1;padding:4px 10px;margin-left:-10px;margin-right:-10px}.dropdown-kebab-pf .btn-link:active,.dropdown-kebab-pf .btn-link:focus,.dropdown-kebab-pf .btn-link:hover,.dropdown-kebab-pf.btn-group>.btn:first-child:active,.dropdown-kebab-pf.btn-group>.btn:first-child:focus,.dropdown-kebab-pf.btn-group>.btn:first-child:hover{color:#0088ce}.dropdown-kebab-pf.btn-group{margin-left:10px}.dropdown-kebab-pf .dropdown-menu{left:-15px;margin-top:11px}.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right{left:auto;right:-15px}.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:after,.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:before{left:auto;right:6px}.dropdown-kebab-pf .dropdown-menu:after,.dropdown-kebab-pf .dropdown-menu:before{border-bottom-color:#bbb;border-bottom-style:solid;border-bottom-width:10px;border-left:10px solid transparent;border-right:10px solid transparent;content:"";display:inline-block;left:6px;position:absolute;top:-11px}.dropdown-kebab-pf .dropdown-menu:after{border-bottom-color:#fff;top:-10px}.dropdown-kebab-pf.dropup .dropdown-menu{margin-bottom:11px;margin-top:0}.dropdown-kebab-pf.dropup .dropdown-menu:after,.dropdown-kebab-pf.dropup .dropdown-menu:before{border-bottom:none;border-top-color:#bbb;border-top-style:solid;border-top-width:10px;bottom:-11px;top:auto}.dropdown-kebab-pf.dropup .dropdown-menu:after{border-top-color:#fff;bottom:-10px}.chars-remaining-pf span{font-weight:600;padding-right:5px}.chars-warn-remaining-pf{color:#c00}.fields-status-pf{color:#8b8d8f;margin-bottom:15px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{box-shadow:none;color:#8b8d8f}.form-control[disabled]:hover,.form-control[readonly]:hover,fieldset[disabled] .form-control:hover{border-color:#bbb}.form-control:hover{border-color:#7dc3e8}.has-error .form-control:hover{border-color:#900}.has-success .form-control:hover{border-color:#2b542c}.has-warning .form-control:hover{border-color:#bb6106}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label,.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label,.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#363636}.help-block{margin-bottom:0}.input-group .input-group-btn .btn{box-shadow:none}label{font-weight:600}label.required-pf:after{color:#c00;content:"*";margin-left:3px}span.required-pf{color:#c00}.fields-section-pf{border-color:#ededed;border-style:solid;border-width:1px 0 0;margin-top:25px;padding:15px 0 0}.fields-section-header-pf{border:none;font-size:12px;margin:0;padding-right:10px;width:auto}.fields-section-header-pf .fa-angle-right{cursor:pointer;font-size:14px;width:14px}.label{border-radius:0;font-size:100%;font-weight:600}h1 .label,h2 .label,h3 .label,h4 .label,h5 .label,h6 .label{font-size:75%}.list-group{border-top:1px solid #ededed}.list-group .list-group-item:first-child{border-top:0}.list-group-item{border-left:0;border-right:0}.list-group-item-heading{font-weight:600}.modal-header{background-color:#f5f5f5;border-bottom:none;padding:10px 18px}.modal-header .close{margin-top:2px}.modal-title{font-size:13px;font-weight:700}.modal-footer{border-top:none;margin-top:15px;padding:14px 15px 15px}.modal-footer>.btn{padding-left:10px;padding-right:10px}.modal-footer>.btn>.fa-angle-left{margin-right:5px}.modal-footer>.btn>.fa-angle-right{margin-left:5px}.pager li>a,.pager li>span{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;font-weight:600;line-height:22px;padding:2px 14px}.open .dropdown-toggle.pager li>a,.open .dropdown-toggle.pager li>span,.pager li>a.active,.pager li>a:active,.pager li>a:focus,.pager li>a:hover,.pager li>span.active,.pager li>span:active,.pager li>span:focus,.pager li>span:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.open .dropdown-toggle.pager li>a,.open .dropdown-toggle.pager li>span,.pager li>a.active,.pager li>a:active,.pager li>span.active,.pager li>span:active{background-image:none}.open .dropdown-toggle.pager li>a.focus,.open .dropdown-toggle.pager li>a:focus,.open .dropdown-toggle.pager li>a:hover,.open .dropdown-toggle.pager li>span.focus,.open .dropdown-toggle.pager li>span:focus,.open .dropdown-toggle.pager li>span:hover,.pager li>a.active.focus,.pager li>a.active:focus,.pager li>a.active:hover,.pager li>a:active.focus,.pager li>a:active:focus,.pager li>a:active:hover,.pager li>span.active.focus,.pager li>span.active:focus,.pager li>span.active:hover,.pager li>span:active.focus,.pager li>span:active:focus,.pager li>span:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.pager li>a.disabled,.pager li>a.disabled.active,.pager li>a.disabled:active,.pager li>a.disabled:focus,.pager li>a.disabled:hover,.pager li>a[disabled],.pager li>a[disabled].active,.pager li>a[disabled]:active,.pager li>a[disabled]:focus,.pager li>a[disabled]:hover,.pager li>span.disabled,.pager li>span.disabled.active,.pager li>span.disabled:active,.pager li>span.disabled:focus,.pager li>span.disabled:hover,.pager li>span[disabled],.pager li>span[disabled].active,.pager li>span[disabled]:active,.pager li>span[disabled]:focus,.pager li>span[disabled]:hover,fieldset[disabled] .pager li>a,fieldset[disabled] .pager li>a.active,fieldset[disabled] .pager li>a:active,fieldset[disabled] .pager li>a:focus,fieldset[disabled] .pager li>a:hover,fieldset[disabled] .pager li>span,fieldset[disabled] .pager li>span.active,fieldset[disabled] .pager li>span:active,fieldset[disabled] .pager li>span:focus,fieldset[disabled] .pager li>span:hover{background-color:#f1f1f1;border-color:#bbb}.pager li>a>.i,.pager li>span>.i{font-size:18px;vertical-align:top;margin:2px 0}.pager li a:active{background-image:none;box-shadow:inset 0 3px 5px rgba(3,3,3,.125);outline:0}.pager .disabled>a,.pager .disabled>a:active,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{background:#f5f5f5;box-shadow:none;color:#8b8d8f;cursor:not-allowed}.pager .next>a>.i,.pager .next>span>.i{margin-left:5px}.pager .previous>a>.i,.pager .previous>span>.i{margin-right:5px}.pager-sm li>a,.pager-sm li>span{font-weight:400;line-height:16px;padding:1px 10px}.pager-sm li>a>.i,.pager-sm li>span>.i{font-size:12px}.pagination>li>a,.pagination>li>span{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;cursor:default;font-weight:600;padding:2px 10px}.open .dropdown-toggle.pagination>li>a,.open .dropdown-toggle.pagination>li>span,.pagination>li>a.active,.pagination>li>a:active,.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span.active,.pagination>li>span:active,.pagination>li>span:focus,.pagination>li>span:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.open .dropdown-toggle.pagination>li>a,.open .dropdown-toggle.pagination>li>span,.pagination>li>a.active,.pagination>li>a:active,.pagination>li>span.active,.pagination>li>span:active{background-image:none}.open .dropdown-toggle.pagination>li>a.focus,.open .dropdown-toggle.pagination>li>a:focus,.open .dropdown-toggle.pagination>li>a:hover,.open .dropdown-toggle.pagination>li>span.focus,.open .dropdown-toggle.pagination>li>span:focus,.open .dropdown-toggle.pagination>li>span:hover,.pagination>li>a.active.focus,.pagination>li>a.active:focus,.pagination>li>a.active:hover,.pagination>li>a:active.focus,.pagination>li>a:active:focus,.pagination>li>a:active:hover,.pagination>li>span.active.focus,.pagination>li>span.active:focus,.pagination>li>span.active:hover,.pagination>li>span:active.focus,.pagination>li>span:active:focus,.pagination>li>span:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.pagination>li>a.disabled,.pagination>li>a.disabled.active,.pagination>li>a.disabled:active,.pagination>li>a.disabled:focus,.pagination>li>a.disabled:hover,.pagination>li>a[disabled],.pagination>li>a[disabled].active,.pagination>li>a[disabled]:active,.pagination>li>a[disabled]:focus,.pagination>li>a[disabled]:hover,.pagination>li>span.disabled,.pagination>li>span.disabled.active,.pagination>li>span.disabled:active,.pagination>li>span.disabled:focus,.pagination>li>span.disabled:hover,.pagination>li>span[disabled],.pagination>li>span[disabled].active,.pagination>li>span[disabled]:active,.pagination>li>span[disabled]:focus,.pagination>li>span[disabled]:hover,fieldset[disabled] .pagination>li>a,fieldset[disabled] .pagination>li>a.active,fieldset[disabled] .pagination>li>a:active,fieldset[disabled] .pagination>li>a:focus,fieldset[disabled] .pagination>li>a:hover,fieldset[disabled] .pagination>li>span,fieldset[disabled] .pagination>li>span.active,fieldset[disabled] .pagination>li>span:active,fieldset[disabled] .pagination>li>span:focus,fieldset[disabled] .pagination>li>span:hover{background-color:#f1f1f1;border-color:#bbb}.pagination>li>a>.i,.pagination>li>span>.i{font-size:15px;vertical-align:top;margin:2px 0}.pagination>li>a:active,.pagination>li>span:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{background-color:#f1f1f1;border-color:#bbb;box-shadow:inset 0 2px 8px rgba(3,3,3,.2);color:#4d5258;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{box-shadow:none;cursor:not-allowed;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.pagination-sm>li>a,.pagination-sm>li>span{padding:2px 6px;font-size:11px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pagination-sm>li>a,.pagination-sm>li>span{font-weight:400}.pagination-sm>li>a>.i,.pagination-sm>li>span>.i{font-size:12px;margin-top:2px}.content-view-pf-pagination{background-color:#f5f5f5;border:1px solid #d1d1d1;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between}.content-view-pf-pagination.table-view-pf-pagination{border-top:none}.content-view-pf-pagination .form-group{-ms-flex-align:baseline;align-items:baseline;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;float:left;margin:5px}@supports (display:flex){.content-view-pf-pagination .form-group{float:none}}.content-view-pf-pagination .form-group:last-child{-ms-flex-pack:end;justify-content:flex-end;float:right}@supports (display:flex){.content-view-pf-pagination .form-group:last-child{float:none}}.content-view-pf-pagination .form-group .pagination-pf-pagesize.bootstrap-select.btn-group,.content-view-pf-pagination .form-group .pagination-pf-pagesize.btn-group{display:-ms-flexbox;display:flex;float:none;margin-bottom:0;margin-left:0;margin-right:5px;width:auto}.content-view-pf-pagination .form-group .dropdown-menu{min-width:auto}.content-view-pf-pagination .pagination-pf-page{margin-left:10px;margin-right:5px;padding:0 2px 2px;text-align:right;width:2.5em}.content-view-pf-pagination .pagination{display:-ms-flexbox;display:flex;margin:0 0 0 10px}.content-view-pf-pagination .pagination a{float:none}@supports (display:flex){.content-view-pf-pagination .pagination a{display:block}}.panel-title{font-weight:700}.panel-group .panel{color:#4d5258}.panel-group .panel+.panel{margin-top:-1px}.panel-group .panel-default{border-color:#bbb;border-top-color:#bbb}.panel-group .panel-default .panel-heading{background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.panel-group .panel-default .panel-heading+.panel-collapse .panel-body{border-top:1px solid #d1d1d1}.panel-group .panel-info{border-color:#00659c}.panel-group .panel-info .panel-heading{background-color:#dae5f4}.panel-group .panel-info+.panel-default{border-top-color:#00659c}.panel-group .panel-primary{border-color:#39a5dc}.panel-group .panel-primary .panel-heading{background-color:#def0f9}.panel-group .panel-primary+.panel-default{border-top-color:#39a5dc}.panel-group .panel-primary+.panel-info{border-top-color:#39a5dc}.panel-group .panel-success{border-color:#3f9c35}.panel-group .panel-success .panel-heading{background-color:#e9f4e9}.panel-group .panel-success+.panel-default{border-top-color:#3f9c35}.panel-group .panel-success+.panel-info{border-top-color:#3f9c35}.panel-group .panel-success+.panel-primary{border-top-color:#3f9c35}.panel-group .panel-warning{border-color:#ec7a08}.panel-group .panel-warning .panel-heading{background-color:#fdf2e5}.panel-group .panel-warning+.panel-default{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-info{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-primary{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-success{border-top-color:#ec7a08}.panel-group .panel-danger{border-color:#c00}.panel-group .panel-danger .panel-heading{background-color:#ffe6e6}.panel-group .panel-danger+.panel-default{border-top-color:#c00}.panel-group .panel-danger+.panel-info{border-top-color:#c00}.panel-group .panel-danger+.panel-primary{border-top-color:#c00}.panel-group .panel-danger+.panel-success{border-top-color:#c00}.panel-group .panel-danger+.panel-warning{border-top-color:#c00}.panel-group .panel-title{font-weight:500;line-height:1}.panel-group .panel-title>a{color:#4d5258;font-weight:600}.panel-group .panel-title>a:before{content:"\f107";display:inline-block;font-family:FontAwesome;font-size:13px;margin-right:5px;text-align:center;vertical-align:0;width:8px}.panel-group .panel-title>a:focus{outline:0;text-decoration:none}.panel-group .panel-title>a:hover{text-decoration:none}.panel-group .panel-title>a.collapsed:before{content:"\f105"}.popover{box-shadow:0 2px 2px rgba(3,3,3,.08);padding:0}.popover-content{color:#4d5258;line-height:18px;padding:10px 14px}.popover-title{border-bottom:none;border-radius:0;color:#4d5258;font-size:13px;font-weight:700;min-height:34px}.popover-title .close{height:22px;position:absolute;right:8px;top:6px}.popover-title.closable{padding-right:30px}@keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}.progress{box-shadow:inset 0 0 1px rgba(3,3,3,.25)}.progress.progress-label-left,.progress.progress-label-top-right{overflow:visible;position:relative}.progress.progress-label-left{margin-left:40px}.progress.progress-sm{height:14px;margin-bottom:14px}.progress.progress-xs{height:6px;margin-bottom:6px}td>.progress:first-child:last-child{margin-bottom:0;margin-top:3px}.progress-bar{box-shadow:none}.progress-label-left .progress-bar span,.progress-label-right .progress-bar span,.progress-label-top-right .progress-bar span{color:#363636;position:absolute;text-align:right}.progress-label-left .progress-bar span{font-size:14px;left:-40px;top:0;width:35px}.progress-label-right .progress-bar span,.progress-label-top-right .progress-bar span{font-size:11px;overflow:hidden;right:0;text-overflow:ellipsis;white-space:nowrap}.progress-label-right .progress-bar span strong,.progress-label-top-right .progress-bar span strong{font-weight:600}.progress-label-right .progress-bar span{max-width:85px;top:0}.progress-label-top-right .progress-bar span{max-width:47%;top:-30px}.progress-label-left.progress-sm .progress-bar span,.progress-label-top-right.progress-sm .progress-bar span{font-size:12px}.progress-sm .progress-bar{line-height:14px}.progress-xs .progress-bar{line-height:6px}.progress-bar-remaining{background:0 0}.progress-container{position:relative}.progress-container.progress-description-left{padding-left:90px}.progress-container.progress-label-right{padding-right:90px}.progress-description{margin-bottom:10px;max-width:52%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.progress-description .count{font-size:20.004px;font-weight:300;line-height:1;margin-right:5px}.progress-description .fa,.progress-description .pficon{font-size:14px;margin-right:3px}.progress-description-left .progress-description{left:0;margin-bottom:0;max-width:85px;position:absolute;top:0}.progress-description .tooltip{white-space:normal}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:2px 10px 3px}.table>tbody>tr>td>a:hover,.table>tbody>tr>th>a:hover,.table>tfoot>tr>td>a:hover,.table>tfoot>tr>th>a:hover,.table>thead>tr>td>a:hover,.table>thead>tr>th>a:hover{text-decoration:none}.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>th{font-family:"Open Sans";font-style:normal;font-weight:600}.table>thead{background-clip:padding-box;background-color:#f5f5f5;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.table-bordered{border:1px solid #d1d1d1}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #d1d1d1}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:1px}.table-striped>tbody>tr:nth-of-type(even){background-color:#f5f5f5}.table-striped>tbody>tr:nth-of-type(odd){background-color:transparent}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#def3ff;border-bottom-color:#7dc3e8}.table-treegrid span.indent{margin-left:10px;margin-right:10px}.table-treegrid span.icon{display:inline-block;font-size:13px;margin-right:5px;min-width:10px;text-align:center}.table-treegrid span.collapse-icon,.table-treegrid span.expand-icon{cursor:pointer}.table-treegrid>tbody>tr.odd{background-color:#f5f5f5}.nav-tabs{font-size:14px}.nav-tabs>li>a{color:#4d5258;margin-right:-1px;padding-bottom:5px;padding-top:5px}.nav-tabs>li>a:active,.nav-tabs>li>a:focus,.nav-tabs>li>a:hover{background:0 0;border-color:#ededed;color:#252525}.nav-tabs>li>.dropdown-menu{border-top:0;border-color:#ededed}.nav-tabs>li>.dropdown-menu.pull-right{right:-1px}.nav-tabs+.nav-tabs-pf,.nav-tabs.nav-tabs-pf-secondary{font-size:12px}.nav-tabs+.nav-tabs-pf>li:first-child>a,.nav-tabs.nav-tabs-pf-secondary>li:first-child>a{padding-left:15px}.nav-tabs+.nav-tabs-pf>li:first-child>a:before,.nav-tabs.nav-tabs-pf-secondary>li:first-child>a:before{left:15px!important}.nav-tabs .open>a,.nav-tabs .open>a:focus,.nav-tabs .open>a:hover{background-color:transparent;border-color:#ededed}@media (min-width:768px){.nav-tabs-pf.nav-justified{border-bottom:1px solid #ededed}}.nav-tabs-pf.nav-justified>li:first-child>a{padding-left:15px}.nav-tabs-pf.nav-justified>li>a{border-bottom:0}.nav-tabs-pf.nav-justified>li>a:before{left:0!important;right:0!important}.nav-tabs-pf>li{margin-bottom:0}.nav-tabs-pf>li.active>a:before{background:#0088ce;bottom:-1px;content:"";display:block;height:2px;left:15px;position:absolute;right:15px}.nav-tabs-pf>li.active>a,.nav-tabs-pf>li.active>a:active,.nav-tabs-pf>li.active>a:focus,.nav-tabs-pf>li.active>a:hover{background-color:transparent;border:0!important;color:#0088ce}.nav-tabs-pf>li.active>a:active:before,.nav-tabs-pf>li.active>a:before,.nav-tabs-pf>li.active>a:focus:before,.nav-tabs-pf>li.active>a:hover:before{background:#0088ce}.nav-tabs-pf>li:first-child>a{padding-left:0}.nav-tabs-pf>li:first-child>a:before{left:0!important}.nav-tabs-pf>li>a{border:0;line-height:1;margin-right:0;padding-bottom:10px;padding-top:10px}.nav-tabs-pf>li>a:active:before,.nav-tabs-pf>li>a:focus:before,.nav-tabs-pf>li>a:hover:before{background:#bbb;bottom:-1px;content:"";display:block;height:2px;left:15px;position:absolute;right:15px}.nav-tabs-pf>li>.dropdown-menu{left:15px;margin-top:1px}.nav-tabs-pf>li>.dropdown-menu.pull-right{left:auto;right:15px}.nav-tabs-pf .open>a,.nav-tabs-pf .open>a:focus,.nav-tabs-pf .open>a:hover{background-color:transparent}.tooltip{font-size:12px;line-height:1.4}.tooltip-inner{padding:7px 12px;text-align:left}.h1,.h2,h1,h2{font-weight:300}.page-header .actions{margin-top:8px}.page-header .actions a>.pficon{margin-right:4px}@media (min-width:767px){.page-header-bleed-left{margin-left:-20px}.page-header-bleed-right{margin-right:-20px}.page-header-bleed-right .actions{margin-right:20px}}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/patternfly/tests/build/less/patternfly.min.css.map b/themes/src/main/node_modules/patternfly/tests/build/less/patternfly.min.css.map
index db368ad..1340aae 100644
--- a/themes/src/main/node_modules/patternfly/tests/build/less/patternfly.min.css.map
+++ b/themes/src/main/node_modules/patternfly/tests/build/less/patternfly.min.css.map
@@ -1 +1 @@
-{"version":3,"sources":["src/less/fonts.less","tests/build/less/patternfly.css","node_modules/bootstrap/less/normalize.less","node_modules/bootstrap/less/print.less","node_modules/bootstrap/less/glyphicons.less","node_modules/bootstrap/less/scaffolding.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","src/less/variables.less","node_modules/bootstrap/less/mixins/tab-focus.less","node_modules/bootstrap/less/carousel.less","node_modules/bootstrap/less/thumbnails.less","node_modules/bootstrap/less/mixins/image.less","node_modules/bootstrap/less/type.less","node_modules/bootstrap/less/mixins/text-emphasis.less","node_modules/bootstrap/less/mixins/background-variant.less","node_modules/bootstrap/less/mixins/text-overflow.less","node_modules/bootstrap/less/code.less","node_modules/bootstrap/less/grid.less","node_modules/bootstrap/less/mixins/grid.less","node_modules/bootstrap/less/mixins/grid-framework.less","node_modules/bootstrap/less/tables.less","node_modules/bootstrap/less/mixins/table-row.less","node_modules/bootstrap/less/forms.less","node_modules/bootstrap/less/mixins/forms.less","src/less/bootstrap-mixin-overrides.less","node_modules/bootstrap/less/buttons.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap/less/button-groups.less","node_modules/bootstrap/less/component-animations.less","node_modules/bootstrap/less/dropdowns.less","node_modules/bootstrap/less/mixins/nav-divider.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/input-groups.less","node_modules/bootstrap/less/navs.less","node_modules/bootstrap/less/navbar.less","node_modules/bootstrap/less/mixins/nav-vertical-align.less","node_modules/bootstrap/less/utilities.less","node_modules/font-awesome/less/bordered-pulled.less","node_modules/bootstrap/less/breadcrumbs.less","node_modules/bootstrap/less/pagination.less","node_modules/bootstrap/less/mixins/pagination.less","node_modules/bootstrap/less/pager.less","node_modules/bootstrap/less/labels.less","node_modules/bootstrap/less/mixins/labels.less","node_modules/bootstrap/less/badges.less","node_modules/bootstrap/less/jumbotron.less","node_modules/bootstrap/less/alerts.less","node_modules/bootstrap/less/mixins/alerts.less","node_modules/bootstrap/less/progress-bars.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/progress-bar.less","node_modules/bootstrap/less/media.less","node_modules/bootstrap/less/list-group.less","node_modules/bootstrap/less/mixins/list-group.less","node_modules/bootstrap/less/panels.less","node_modules/bootstrap/less/mixins/panels.less","node_modules/bootstrap/less/responsive-embed.less","node_modules/bootstrap/less/wells.less","node_modules/bootstrap/less/close.less","node_modules/bootstrap/less/modals.less","node_modules/bootstrap/less/tooltip.less","node_modules/bootstrap/less/mixins/reset-text.less","node_modules/bootstrap/less/popovers.less","node_modules/bootstrap/less/mixins/clearfix.less","node_modules/bootstrap/less/mixins/center-block.less","node_modules/bootstrap/less/mixins/hide-text.less","node_modules/bootstrap/less/responsive-utilities.less","node_modules/bootstrap/less/mixins/responsive-visibility.less","node_modules/font-awesome/less/path.less","node_modules/font-awesome/less/core.less","node_modules/font-awesome/less/larger.less","node_modules/font-awesome/less/fixed-width.less","node_modules/font-awesome/less/list.less","node_modules/font-awesome/less/animated.less","node_modules/font-awesome/less/rotated-flipped.less","node_modules/font-awesome/less/mixins.less","node_modules/font-awesome/less/stacked.less","node_modules/font-awesome/less/icons.less","node_modules/font-awesome/less/variables.less","node_modules/font-awesome/less/screen-reader.less","src/less/mixins.less","src/less/alerts.less","src/less/badges.less","src/less/breadcrumbs.less","src/less/buttons.less","src/less/dropdowns.less","src/less/forms.less","src/less/labels.less","src/less/list-group.less","src/less/modals.less","src/less/pager.less","src/less/pagination.less","src/less/panels.less","src/less/popovers.less","src/less/progress-bars.less","src/less/tables.less","src/less/tabs.less","src/less/tooltip.less","src/less/type.less"],"names":[],"mappings":"AAIA,WACE,YAAa,YACb,WAAA,OACA,YAAA,IACA,IAAS,yCACT,IAAW,wBAAA,CAA0B,uBAAA,CAC5B,gDAAyD,2BAAA,CACzD,2CAAoD,eAAA,CACpD,0CAAmD,cAAA,CACnD,yCAAkD,kBAAA,CAClD,kDAA2D,cAEtE,WACE,YAAa,YACb,WAAA,OACA,YAAA,IACA,IAAS,2CACT,IAAW,kBAAA,CAAoB,iBAAA,CACtB,kDAA2D,2BAAA,CAC3D,6CAAsD,eAAA,CACtD,4CAAqD,cAAA,CACrD,2CAAoD,kBAAA,CACpD,oDAA6D,cAExE,WACE,YAAa,YACb,WAAA,OACA,YAAA,IACA,IAAS,+CACT,IAAW,+BAAA,CAAiC,6BAAA,CACnC,sDAA+D,2BAAA,CAC/D,iDAA0D,eAAA,CAC1D,gDAAyD,cAAA,CACzD,+CAAwD,kBAAA,CACxD,wDAAiE,cAE5E,WACE,YAAa,YACb,WAAA,OACA,YAAA,IACA,IAAS,0CACT,IAAW,yBAAA,CAA2B,wBAAA,CAC7B,iDAA0D,2BAAA,CAC1D,4CAAqD,eAAA,CACrD,2CAAoD,cAAA,CACpD,0CAAmD,kBAAA,CACnD,mDAA4D,cAEvE,WACE,YAAa,YACb,WAAA,OACA,YAAA,IACA,IAAS,4CACT,IAAW,2BAAA,CAA6B,kCAAA,CAC/B,mDAA4D,2BAAA,CAC5D,8CAAuD,eAAA,CACvD,6CAAsD,cAAA,CACtD,4CAAqD,kBAAA,CACrD,qDAA8D,cAEzE,WACE,YAAa,YACb,WAAA,OACA,YAAA,IACA,IAAS,kDACT,IAAW,kCAAA,CAAoC,wCAAA,CACtC,yDAAkE,2BAAA,CAClE,oDAA6D,eAAA,CAC7D,mDAA4D,cAAA,CAC5D,kDAA2D,kBAAA,CAC3D,2DAAoE,cAE/E,WACE,YAAa,YACb,WAAA,OACA,YAAA,IACA,IAAS,wCACT,IAAW,uBAAA,CAAyB,sBAAA,CAC3B,+CAAwD,2BAAA,CACxD,0CAAmD,eAAA,CACnD,yCAAkD,cAAA,CAClD,wCAAiD,kBAAA,CACjD,iDAA0D,cAErE,WACE,YAAa,YACb,WAAA,OACA,YAAA,IACA,IAAS,8CACT,IAAW,8BAAA,CAAgC,4BAAA,CAClC,qDAA8D,2BAAA,CAC9D,gDAAyD,eAAA,CACzD,+CAAwD,cAAA,CACxD,8CAAuD,kBAAA,CACvD,uDAAgE,cAE3E,WACE,YAAa,YACb,WAAA,OACA,YAAA,IACA,IAAS,mDACT,IAAW,mCAAA,CAAqC,iCAAA,CACvC,0DAAmE,2BAAA,CACnE,qDAA8D,eAAA,CAC9D,oDAA6D,cAAA,CAC7D,mDAA4D,kBAAA,CAC5D,4DAAqE,cAEhF,WACE,YAAa,YACb,WAAA,OACA,YAAA,IACA,IAAS,6CACT,IAAW,4BAAA,CAA8B,2BAAA,CAChC,oDAA6D,2BAAA,CAC7D,+CAAwD,eAAA,CACxD,8CAAuD,cAAA,CACvD,6CAAsD,kBAAA,CACtD,sDAA+D,cC/B1E;;;;AAKA,4ECxFA,KACE,YAAA,WACA,qBAAA,KACA,yBAAA,KAOF,KACE,OAAA,EAaF,QACA,MACA,QACA,WACA,OACA,OACA,OACA,OACA,KACA,KACA,IACA,QACA,QACE,QAAA,MAQF,MACA,OACA,SACA,MACE,QAAA,aACA,eAAA,SAQO,sBACP,QAAA,KACA,OAAA,EAQF,SACA,SACE,QAAA,KAUF,EACE,iBAAA,YAQD,SACA,QACC,QAAA,EAUE,YACF,cAAA,IAAA,OAOF,EACA,OACE,YAAA,IAOF,IACE,WAAA,OAQF,GACE,UAAA,IACA,OAAA,MAAA,EAOF,KACE,WAAA,KACA,MAAA,KAOF,MACE,UAAA,IAOF,IACA,IACE,UAAA,IACA,YAAA,EACA,SAAA,SACA,eAAA,SAGF,IACE,IAAA,MAGF,IACE,OAAA,OAUF,IACE,OAAA,EAOK,eACL,SAAA,OAUF,OACE,OAAA,IAAA,KAOF,GACE,WAAA,YACA,OAAA,EAOF,IACE,SAAA,KAOF,KACA,IACA,IACA,KACE,YAAA,SAAA,CAAA,UACA,UAAA,IAkBF,OACA,MACA,SACA,OACA,SACE,MAAA,QACA,KAAA,QACA,OAAA,EAOF,OACE,SAAA,QAUF,OACA,OACE,eAAA,KAWF,OACU,wBACL,kBACA,mBACH,mBAAA,OACA,OAAA,QAOI,iBACI,qBACR,OAAA,QAOI,yBACD,wBACH,OAAA,EACA,QAAA,EAQF,MACE,YAAA,OAWG,qBACA,kBACH,WAAA,WACA,QAAA,EASkB,8CACA,8CAClB,OAAA,KAQG,mBACH,mBAAA,UACA,WAAA,YASkB,iDACA,8CAClB,mBAAA,KAOF,SACE,OAAA,IAAA,MAAA,OACA,OAAA,EAAA,IACA,QAAA,MAAA,OAAA,MAQF,OACE,OAAA,EACA,QAAA,EAOF,SACE,SAAA,KAQF,SACE,YAAA,IAUF,MACE,gBAAA,SACA,eAAA,EAGF,GACA,GACE,QAAA,EDpJF,qFE3QA,aACI,EAEC,OADA,QAEG,WAAA,cACA,MAAA,eACA,WAAA,eACA,YAAA,eAGJ,EACC,UACG,gBAAA,UAGG,cACH,QAAS,KAAK,WAAW,IAGlB,kBACP,QAAS,KAAK,YAAY,IAKlB,mBACU,6BAClB,QAAS,GAIb,WADA,IAEI,OAAA,IAAA,MAAA,KACA,kBAAA,MAGJ,MACI,QAAA,mBAIJ,IADA,GAEI,kBAAA,MAGJ,IACI,UAAA,eAIJ,GACA,GAFA,EAGI,QAAA,EACA,OAAA,EAGJ,GACA,GACI,iBAAA,MAMJ,QACI,QAAA,KAIA,YAAA,oBACI,iBAAA,eAGR,OACI,OAAA,IAAA,MAAA,KAGJ,OACI,gBAAA,mBAEA,UACA,UACI,iBAAA,eAKJ,mBADA,mBAEI,OAAA,IAAA,MAAA,gBCrFZ,WACE,YAAa,uBACb,IAAS,+CACT,IAAS,sDAAwD,2BAAA,CACxD,iDAAmD,eAAA,CACnD,gDAAkD,cAAA,CAClD,+CAAiD,kBAAA,CACjD,2EAAqE,cAIhF,WACE,SAAA,SACA,IAAA,IACA,QAAA,aACA,YAAa,uBACb,WAAA,OACA,YAAA,IACA,YAAA,EACA,uBAAA,YACA,wBAAA,UAImC,2BAAU,QAAS,QACnB,uBAAU,QAAS,QAEnB,sBAAA,uBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,2BAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,2BAAU,QAAS,QACnB,qBAAU,QAAS,QACnB,0BAAU,QAAS,QACnB,qBAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,0BAAU,QAAS,QACnB,2BAAU,QAAS,QACnB,sBAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,sBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,+BAAU,QAAS,QACnB,2BAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,0BAAU,QAAS,QACnB,2BAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,0BAAU,QAAS,QACnB,sBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,2BAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,+BAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,gCAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,+BAAU,QAAS,QACnB,iCAAU,QAAS,QACnB,0BAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,gCAAU,QAAS,QACnB,gCAAU,QAAS,QACnB,2BAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,0BAAU,QAAS,QACnB,+BAAU,QAAS,QACnB,+BAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,+BAAU,QAAS,QACnB,gCAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,0BAAU,QAAS,QACnB,gCAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,gCAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,2BAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,+BAAU,QAAS,QACnB,mCAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,2BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,+BAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,2BAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,0BAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,+BAAU,QAAS,QACnB,0BAAU,QAAS,QACnB,gCAAU,QAAS,QACnB,+BAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,kCAAU,QAAS,QACnB,oCAAU,QAAS,QACnB,sBAAU,QAAS,QACnB,2BAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,0BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,qCAAU,QAAS,QACnB,oCAAU,QAAS,QACnB,kCAAU,QAAS,QACnB,oCAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,0BAAU,QAAS,QACnB,sBAAU,QAAS,QACnB,sBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,mCAAU,QAAS,QACnB,uCAAU,QAAS,QACnB,gCAAU,QAAS,QACnB,oCAAU,QAAS,QACnB,qCAAU,QAAS,QACnB,yCAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,gCAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,0BAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,+BAAU,QAAS,QACnB,gCAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,2BAAU,QAAS,QACnB,0BAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,2BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,2BAAU,QAAS,QACnB,2BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,+BAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,iCAAU,QAAS,QACnB,oCAAU,QAAS,QACnB,iCAAU,QAAS,QACnB,+BAAU,QAAS,QACnB,+BAAU,QAAS,QACnB,iCAAU,QAAS,QACnB,qBAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,2BAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,wBAAU,QAAS,QASnB,wBAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,yBAAU,QAAS,QACnB,+BAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,sBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,uBAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,2BAAU,QAAS,QACnB,0BAAU,QAAS,QACnB,sBAAU,QAAS,QACnB,sBAAU,QAAS,QACnB,sBAAU,QAAS,QACnB,sBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,sBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,mCAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,oCAAU,QAAS,QACnB,kCAAU,QAAS,QACnB,iCAAU,QAAS,QACnB,+BAAU,QAAS,QACnB,sBAAU,QAAS,QACnB,wBAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,kCAAU,QAAS,QACnB,mCAAU,QAAS,QACnB,sCAAU,QAAS,QACnB,0CAAU,QAAS,QACnB,oCAAU,QAAS,QACnB,wCAAU,QAAS,QACnB,qCAAU,QAAS,QACnB,iCAAU,QAAS,QACnB,gCAAU,QAAS,QACnB,kCAAU,QAAS,QACnB,+BAAU,QAAS,QACnB,0BAAU,QAAS,QACnB,8BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,6BAAU,QAAS,QACnB,4BAAU,QAAS,QACnB,0BAAU,QAAS,QCtSxD,ECgEE,mBAAA,WACG,gBAAA,WACK,WAAA,WD9DT,OADA,QC6DC,mBAAA,WACG,gBAAA,WACK,WAAA,WDvDV,KACE,UAAA,KACA,4BAAA,YAGF,KACE,YE0ZkE,WAAA,CAAA,SAAA,CAAA,KAAA,CAAA,WFzZlE,UAAA,KACA,YAAA,WACA,MAAA,QACA,iBAAA,KAKF,OADA,MAEA,OACA,SACE,YAAA,QACA,UAAA,QACA,YAAA,QAMF,EACE,MAAA,QACA,gBAAA,KAGC,QADA,QAEC,MAAA,QACA,gBAAA,UAGD,QGnDD,QAAA,IAAA,KAAA,yBACA,eAAA,KH6DF,OACE,OAAA,EAMF,IACE,eAAA,OItDM,4BADJ,0BJ2DJ,gBK/DI,iBADF,eCPA,QAAA,MACA,UAAA,KACA,OAAA,KN0EF,aACE,cAAA,IAMF,eACE,QAAA,IACA,YAAA,WACA,iBAAA,KACA,OAAA,IAAA,MAAA,KACA,cAAA,IC6FA,mBAAA,IAAA,IAAA,YACK,cAAA,IAAA,IAAA,YACG,WAAA,IAAA,IAAA,YKvLR,QAAA,aACA,UAAA,KACA,OAAA,KN8FF,YACE,cAAA,IAMF,GACE,WAAA,KACA,cAAA,KACA,OAAA,EACA,WAAA,IAAA,MAAA,QAQF,SACE,SAAA,SACA,MAAA,IACA,OAAA,IACA,OAAA,KACA,QAAA,EACA,SAAA,OACA,KAAM,cACN,OAAA,EAQC,0BACA,yBACC,SAAA,OACA,MAAA,KACA,OAAA,KACA,OAAA,EACA,SAAA,QACA,KAAA,KAWJ,cACE,OAAA,QOtJF,IAAK,IAAK,IAAK,IAAK,IAAK,IADzB,GAAI,GAAI,GAAI,GAAI,GAAI,GAElB,YAAA,QACA,YAAA,IACA,YAAA,IACA,MAAA,QAGA,WADA,UACA,WADA,UACA,WADA,UACA,WADA,UACA,WADA,UACA,WADA,UACA,UADA,SACA,UADA,SACA,UADA,SACA,UADA,SACA,UADA,SACA,UADA,SAEE,YAAA,IACA,YAAA,EACA,MAAA,QAIA,IACA,IACA,IAFJ,GACA,GACA,GACE,WAAA,KACA,cAAA,KAGA,WADA,UACA,WADA,UACA,WADA,UACA,UADA,SACA,UADA,SACA,UADA,SAEE,UAAA,IAGA,IACA,IACA,IAFJ,GACA,GACA,GACE,WAAA,KACA,cAAA,KAGA,WADA,UACA,WADA,UACA,WADA,UACA,UADA,SACA,UADA,SACA,UADA,SAEE,UAAA,IAIA,IAAJ,GAAU,UAAA,KACN,IAAJ,GAAU,UAAA,KACN,IAAJ,GAAU,UAAA,KACN,IAAJ,GAAU,UAAA,KACN,IAAJ,GAAU,UAAA,KACN,IAAJ,GAAU,UAAA,KAMV,EACE,OAAA,EAAA,EAAA,KAGF,MACE,cAAA,KACA,UAAA,KACA,YAAA,IACA,YAAA,IAEmC,yBA2OrC,MA1OI,UAAA,MAUJ,OADA,MAEE,UAAA,IAIF,MADA,KAEE,iBAAA,QACA,QAAA,KAIF,WAAuB,WAAA,KACvB,YAAuB,WAAA,MACvB,aAAuB,WAAA,OACvB,cAAuB,WAAA,QACvB,aAAuB,YAAA,OAGvB,gBAAuB,eAAA,UACvB,gBAAuB,eAAA,UACvB,iBAAuB,eAAA,WAGvB,YACE,MAAA,QAEF,cCrGE,MAAA,QAEE,qBADA,qBAEA,MAAA,QDqGJ,cCxGE,MAAA,QAEE,qBADA,qBAEA,MAAA,QDwGJ,WC3GE,MAAA,QAEE,kBADA,kBAEA,MAAA,QD2GJ,cC9GE,MAAA,QAEE,qBADA,qBAEA,MAAA,QD8GJ,aCjHE,MAAA,KAEE,oBADA,oBAEA,MAAA,KDqHJ,YAGE,MAAA,KE3HA,iBAAA,QAEE,mBADA,mBAEA,iBAAA,QF2HJ,YE9HE,iBAAA,QAEE,mBADA,mBAEA,iBAAA,QF8HJ,SEjIE,iBAAA,QAEE,gBADA,gBAEA,iBAAA,QFiIJ,YEpIE,iBAAA,QAEE,mBADA,mBAEA,iBAAA,QFoIJ,WEvIE,iBAAA,QAEE,kBADA,kBAEA,iBAAA,QF4IJ,aACE,eAAA,IACA,OAAA,KAAA,EAAA,KACA,cAAA,IAAA,MAAA,QASF,GADA,GAEE,WAAA,EACA,cAAA,KAEA,MADA,MACA,MADA,MAEE,cAAA,EAOJ,eACE,aAAA,EACA,WAAA,KAIF,aALE,aAAA,EACA,WAAA,KAMA,YAAA,KAEA,gBACE,QAAA,aACA,aAAA,IACA,cAAA,IAKJ,GACE,WAAA,EACA,cAAA,KAGF,GADA,GAEE,YAAA,WAEF,GACE,YAAA,IAEF,GACE,YAAA,EAa8C,yBAC5C,kBACE,MAAA,KACA,MAAA,MACA,MAAA,KACA,WAAA,MGtNJ,SAAA,OACA,cAAA,SACA,YAAA,OHuNE,kBACE,YAAA,OAYF,0BAFA,YAGF,OAAA,KACA,cAAA,IAAA,OAAA,QAEF,YACE,UAAA,IA9IqB,eAAA,UAmJvB,WACE,QAAA,KAAA,KACA,OAAA,EAAA,EAAA,KACA,UAAA,KACA,YAAA,IAAA,MAAA,QAKG,yBAAA,wBAAA,yBACC,cAAA,EAQJ,kBAFA,kBACA,iBAEE,QAAA,MACA,UAAA,IACA,YAAA,WACA,MAAA,QAEC,yBAAA,yBAAA,wBACC,QAAS,cAQf,oBACU,sBACR,cAAA,KACA,aAAA,EACA,aAAA,IAAA,MAAA,QACA,YAAA,EACA,WAAA,MAMG,kCAAA,kCAAA,iCAAA,oCAAA,oCAAA,mCAAU,QAAS,GACnB,iCAAA,iCAAA,gCAAA,mCAAA,mCAAA,kCACC,QAAS,cAMf,QACE,cAAA,KACA,WAAA,OACA,YAAA,WItSF,KACA,IACA,IACA,KACE,YAAA,KAAA,CAAA,MAAA,CAAA,QAAA,CAAA,UAIF,KACE,QAAA,IAAA,IACA,UAAA,IACA,MAAA,QACA,iBAAA,QACA,cAAA,IAIF,IACE,QAAA,IAAA,IACA,UAAA,IACA,MAAA,KACA,iBAAA,KACA,cAAA,IACA,WAAA,MAAA,EAAA,KAAA,EAAA,gBAEA,QACE,QAAA,EACA,UAAA,KACA,YAAA,IACA,WAAA,KAKJ,IACE,QAAA,MACA,QAAA,MACA,OAAA,EAAA,EAAA,KACA,UAAA,KACA,YAAA,WACA,WAAA,UACA,UAAA,WACA,MAAA,QACA,iBAAA,QACA,OAAA,IAAA,MAAA,KACA,cAAA,IAGA,SACE,QAAA,EACA,UAAA,QACA,MAAA,QACA,YAAA,SACA,iBAAA,YACA,cAAA,EAKJ,gBACE,WAAA,MACA,WAAA,OC1DF,WCHE,aAAA,KACA,YAAA,KACA,aAAA,KACA,cAAA,KDGmC,yBAwErC,WAvEI,MAAA,OAEiC,yBAqErC,WApEI,MAAA,OAEiC,0BAkErC,WAjEI,MAAA,QAUJ,iBCvBE,aAAA,KACA,YAAA,KACA,aAAA,KACA,cAAA,KD6BF,KCvBE,YAAA,MACA,aAAA,MCAE,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,SAAA,SAEA,WAAA,IAEA,aAAA,KACA,cAAA,KAgBF,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,EFT+B,yBEzB/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GFA+B,yBElC/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GFS+B,0BE3C/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GCnEJ,MACE,iBAAA,YAEF,QACE,YAAA,KACA,eAAA,KAC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lB,QDlhBY,oBAAU,QCgMlB,QD/LmB,+BAAU,QCYlB,QDXM,6BAAU,QCclB,QDbJ,iBAAU,QCqWlB,QDpWgB,yBAAU,QCwelB,QDteC,kBADM,wBACI,QCsgBlB,QDrgBS,mBAAU,QCggBlB,QD/fS,oBAAU,QCwYlB,QDvYI,gBAAU,QC2YlB,QD1YQ,gBAAU,QC4PlB,QD3Pc,sBAAU,QCoUlB,QDnUQ,sBAAU,QCitBlB,QDhtBS,uBAAU,QC+sBlB,QD9sBM,qBAAU,QCgtBlB,QD/sBK,kBAAU,QCyelB,QDxeS,mBAAU,QCwBlB,QDvBI,eAAU,QCymBlB,QDxmBS,gBAAU,QCymBlB,QDxmBQ,gBAAU,QCyDlB,QDxDY,oBAAU,QCyDlB,QDxDK,iBAAU,QC+dlB,QD9dS,kBAAU,QC2ElB,QD1EM,gBAAU,QC0PlB,QDzPQ,gBAAU,QCiDlB,QDhDU,kBAAU,QC0VlB,QDzVa,uBAAU,QCwmBlB,QDvmBO,sBAAU,QCwmBlB,QDvmBQ,sBAAU,QCpClB,QDqCU,wBAAU,QCvClB,QDwCO,uBAAU,QCrClB,QDsCU,yBAAU,QCxClB,QDyCD,gBAAU,QC+WlB,QD9WU,kBACC,mBAAU,QC2alB,QD1aO,kBAAU,QCsUlB,QDrUc,wBAAU,QCkrBlB,QDhrBC,iBADA,iBAEI,qBAAU,QC0blB,QDzbK,kBAAU,QCkblB,QDjbY,sBAAU,QCwXlB,QDvXI,kBAAU,QCtDlB,QDuDM,gBAAU,QCmnBlB,QDlnBQ,gBACW,2BAAU,QC+alB,QD9aO,0BAAU,QC8flB,QD7fQ,0BAAU,QC+ElB,QD9EA,kBAAU,QCzBlB,QD0Be,yBAAU,QCmjBlB,QDljBQ,yBAAU,QCqLlB,QDpLG,oBAAU,QClBlB,QDmBI,gBAAU,QCsblB,QDrbS,iBAAU,QCgalB,QD/ZO,gBAAU,QCmjBlB,QDljBW,mBAAU,QC+NlB,QD9Na,wBAAU,QCgLlB,QD/KQ,wBAAU,QC4iBlB,QD3iBC,iBAAU,QC+IlB,QD9Ie,wBAAU,QCyElB,QDxES,yBAAU,QCyElB,QDxEM,uBAAU,QCkblB,QDjbS,wBAAU,QCuXlB,QDtXQ,wBAAU,QC2lBlB,QD1lBQ,wBAAU,QC2DlB,QD1DW,2BAAU,QCyblB,QDxbI,uBAAU,QC0SlB,QDzSO,sBAAU,QC0GlB,QDzGY,0BAAU,QCulBlB,QDtlBQ,0BAAU,QCuDlB,QDtDH,eAAU,QCnClB,QDoCe,sBAAU,QCnDlB,QDoDS,uBAAU,QCnDlB,QDoDK,oBAAU,QCnDlB,QDoDU,sBAAU,QCvDlB,QDwDU,wBACP,iBAAU,QC4dlB,QD3dS,kBAAU,QC8IlB,QD7IU,oBAAU,QCsFlB,QDrFI,gBAAU,QC+ZlB,QD9ZS,iBAAU,QCoWlB,QDnWW,oBAAU,QCpDlB,QDqDkB,8BAAU,QCuIlB,QDtIN,gBAAU,QCkNlB,QDjNQ,gBAAU,QC0SlB,QDzSQ,gBAAU,QC6KlB,QD5KO,eAAU,QCyIlB,QDxIc,qBAAU,QCyIlB,QDvImB,gCADb,mBACuB,QCiIlB,QDhIP,iBAAU,QC+YlB,QD9YW,oBAAU,QCAlB,QDCM,kBAAU,QCoalB,QDnaS,mBAAU,QCgElB,QD/DO,kBAAU,QC6TlB,QD5TY,sBAAU,QCuClB,QDtCU,wBAAU,QCmClB,QDlCG,mBAAU,QC+alB,QD9ac,yBAAU,QCkdlB,QDjdC,kBAAU,QC0KlB,QDzKa,uBAAU,QC2KlB,QD1KK,oBAAU,QC3ElB,QD4EQ,oBAAU,QC7ElB,QD8EW,uBACF,qBAAU,QClElB,QDmEa,0BAAU,QC+kBlB,QD9kBS,2BAAU,QC4HlB,QD3HK,wBAAU,QCTlB,QDUD,eAAU,QC2QlB,QDzQS,gBADC,iBACS,QC6ClB,QD5CY,oBAAU,QCkDlB,QDjDW,uBAAU,QCsiBlB,QDriBU,yBAAU,QCoiBlB,QDniBI,qBAAU,QC2elB,QD1eM,mBAAU,QC8NlB,QD7NS,oBAAU,QCoclB,QDnce,2BAAU,QCuRlB,QDtRG,sBAAU,QC6hBlB,QD5hBW,yBAAU,QCsGlB,QDrGE,mBAAU,QC8blB,QD7bO,kBAAU,QCqjBlB,QDpjBe,yBAAU,QCgLlB,QD/KC,kBAAU,QCukBlB,QDtkBS,mBAAU,QCqQlB,QDpQM,iBAAU,QCiWlB,QDhWW,oBAAU,QC2dlB,QD1dU,sBAAU,QCjDlB,QDkDU,wBAAU,QC+VlB,QD9VG,mBAAU,QCsjBlB,QDrjBW,sBACF,oBAAU,QCgGlB,QD/FM,kBAAU,QCoKlB,QDnKQ,kBAAU,QC0jBlB,QDzjBa,uBAAU,QCoClB,QDnCC,gBACD,eAAU,QC+YlB,QD9YU,iBAAU,QCoMlB,QDnMW,oBAAU,QCrDlB,QDsDI,gBAAU,QChFlB,QDiFe,uBAAU,QCrBlB,QDsBS,wBAAU,QCoLlB,QDnLO,uBAAU,QCkLlB,QDjLM,qBAAU,QCmLlB,QDlLU,uBAAU,QC+KlB,QD9Kc,6BAAU,QCrIlB,QDsIS,8BAAU,QCjIlB,QDkIK,2BAAU,QCjIlB,QDkIU,6BAAU,QCzIlB,QD0IJ,iBAAU,QC2JlB,QD1JS,kBAAU,QC6lBlB,QD5lBO,iBAAU,QCqelB,QDpeS,kBAAU,QCyGlB,QDxGW,qBAAU,QCzElB,QD0ES,sBAAU,QClIlB,QDmIG,iBACA,iBAAU,QCijBlB,QDhjBQ,iBACD,gBAAU,QC4OlB,QD3OS,iBAAU,QCdlB,QDeQ,iBAAU,QC0GlB,QDzGM,eACK,oBAAU,QC6XlB,QD5XI,gBACG,mBAAU,QC2FlB,QD1FU,qBAAU,QC6SlB,QD3SO,oBADJ,gBACc,QCqGlB,QDpGM,kBAAU,QCgblB,QD7aM,gBAFG,mBACA,mBACO,QClIlB,QDmIW,mBAAU,QCsOlB,QDrOQ,mBAAU,QCoOlB,QDnOc,yBAAU,QC+blB,QD9bI,qBAAU,QC2gBlB,QD1gBI,iBAAU,QCuclB,QDtcQ,iBAAU,QCyOlB,QDxOQ,iBAAU,QC6flB,QD5fY,qBAAU,QCmTlB,QDlTe,4BAAU,QCoTlB,QDnTU,8BAAU,QCgIlB,QD/HC,uBAAU,QC4HlB,QD3HE,iBAAU,QCqQlB,QDpQa,sBAAU,QCpFlB,QDqFM,oBAAU,QC9ElB,QD+EU,sBAAU,QCrFlB,QDsFS,uBAAU,QCrFlB,QDsFI,mBAAU,QChClB,QDkCK,gBADI,oBACM,QC0YlB,QDxYa,qBADA,qBACU,QC8YlB,QD5YO,oBADD,mBACW,QC2YlB,QD1YQ,oBAAU,QCUlB,QDTQ,oBAAU,QCuMlB,QDtMW,uBACP,gBAAU,QCqflB,QDnfS,iBADA,iBACU,QCoFlB,QDnFY,qBACC,sBAAU,QC+alB,QD9aO,qBAAU,QC7ClB,QD8CS,sBAAU,QC1ClB,QD4CE,gBADC,iBACS,QCpIlB,QDqIW,mBAAU,QC6WlB,QD5WS,oBAAU,QCyelB,QDveS,qBADJ,iBACc,QCrElB,QDsEU,uBAAU,QCqLlB,QDpLK,oBAAU,QCGlB,QDFc,0BAAU,QCnElB,QDoEM,wBAAU,QCnElB,QDoEG,mBAAU,QCiflB,QDhfY,uBAAU,QC8YlB,QD7YK,oBAAU,QCyZlB,QDxZM,kBAAU,QC9JlB,QD+JQ,kBAAU,QClElB,QDmES,mBAAU,QC1ClB,QD2CY,uBAAU,QC8BlB,QD7BO,sBAAU,QC1IlB,QD2IQ,sBAAU,QCsHlB,QDrHO,qBAAU,QCrOlB,QDsOK,kBAAU,QC4MlB,QD3Ma,uBAAU,QCUlB,QDTC,gBAAU,QC3KlB,QD4KY,oBAAU,QCuFlB,QDtFW,uBAAU,QC2QlB,QD1Qc,6BAAU,QCrOlB,QDsOS,8BAAU,QCrOlB,QDsOK,2BAAU,QCrOlB,QDsOU,6BAAU,QCzOlB,QD0OC,sBAAU,QCrOlB,QDsOS,uBAAU,QCrOlB,QDsOK,oBAAU,QCrOlB,QDsOU,sBAAU,QCzOlB,QD0OK,mBAAU,QCpDlB,QDqDO,kBAAU,QC4IlB,QD3IQ,kBAAU,QCwYlB,QDvYc,wBACN,kBAAU,QCuMlB,QDtMU,oBAAU,QCzGlB,QD0GU,sBAAU,QCyQlB,QDxQS,uBAAU,QCyQlB,QDxQI,mBAAU,QC+VlB,QD9VO,kBAAU,QC9GlB,QD+GY,sBACL,iBAAU,QCoRlB,QDnRa,sBAAU,QC+ClB,QD9CM,oBAAU,QCmBlB,QDlBa,yBAAU,QCoBlB,QDnBE,mBAAU,QCqUlB,QDpUQ,mBAAU,QC2BlB,QD1BM,iBAAU,QCgLlB,QD/KU,mBAAU,QC2BlB,QD1BW,sBAAU,QCuHlB,QDtHI,kBAAU,QCMlB,QDLgB,0BAAU,QCIlB,QDHE,oBAAU,QC6XlB,QD5XI,gBAAU,QChHlB,QDiHkB,0BACL,qBAAU,QCuQlB,QDtQc,2BACD,0BACH,uBAAU,QCsVlB,QDrVW,0BAAU,QCwIlB,QDvIF,gBAAU,QChGlB,QDiGa,qBAAU,QCvHlB,QDyHW,wBADN,kBACgB,QCtJlB,QDuJI,oBAAU,QCyOlB,QDxOI,gBAAU,QC0FlB,QDzFe,uBAAU,QC1DlB,QD2DQ,uBAAU,QCkWlB,QDjWM,qBAAU,QC4VlB,QD3VK,kBAAU,QClElB,QDmEc,wBAAU,QCgOlB,QD/NM,sBAAU,QC2JlB,QD1Jc,4BAAU,QC2JlB,QD1JF,kBAAU,QCsRlB,QDrRY,sBAAU,QC5LlB,QD6Le,6BAAU,QCxBlB,QDyBH,kBAAU,QCuPlB,QDtPQ,kBAAU,QC6IlB,QD5IqB,+BAAU,QC9JlB,QD+JS,gCAAU,QC9JlB,QD+JK,6BAAU,QC9JlB,QD+JU,+BAAU,QClKlB,QDmKN,iBAAU,QC8DlB,QD7DO,gBAAU,QCrHlB,QDsHU,kBAAU,QCvSlB,QDwSY,sBAAU,QC2ZlB,QD1ZM,oBAAU,QChNlB,QDiNU,sBAAU,QC7FlB,QD8FQ,sBAAU,QC7FlB,QD8FQ,sBAAU,QC+OlB,QD9OS,uBAAU,QCiMlB,QDhMG,kBAAU,QC6WlB,QD5Wc,wBAAU,QC0IlB,QDzIU,0BAAU,QC0IlB,QDzIE,oBAAU,QCqFlB,QDpFU,sBAAU,QCmFlB,QDlFU,wBAAU,QCnLlB,QDoLS,yBAAU,QC0KlB,QDzKe,gCAAU,QCpFlB,QDqFA,wBAAU,QCwPlB,QDvPG,mBAAU,QCjJlB,QDmJoB,+BADR,uBACkB,QC/MlB,QDiNM,6BADR,qBACkB,QC9MlB,QDgNW,gCADR,wBACkB,QCjNlB,QDmNT,eADC,gBACS,QCvGlB,QDwGQ,eAAU,QChClB,QDiCW,kBACH,eAAU,QCqYlB,QDnYQ,eADE,iBACQ,QC4ClB,QD3CQ,eAGA,eAFA,eACA,eACU,QCgDlB,QD9CW,kBACH,eAFE,iBAEQ,QCiNlB,QD/MQ,eADA,eACU,QC+ClB,QD9CY,mBACJ,eAAU,QC3PlB,QD4PS,gBAAU,QChGlB,QDiGa,qBAAU,QCpFlB,QDqFa,0BAAU,QC0PlB,QDzPS,2BAAU,QC0PlB,QDzPQ,2BAAU,QC0PlB,QDzPS,4BAAU,QC0PlB,QDzPQ,4BAAU,QC6PlB,QD5PS,6BAAU,QC6PlB,QD5PA,qBAAU,QCkUlB,QDjUU,uBAAU,QC8TlB,QD7TW,0BAAU,QCyalB,QDxaC,mBAAU,QCsalB,QDraK,gBAAU,QC2ZlB,QD1Ze,uBAAU,QC2ZlB,QD1ZS,wBAAU,QCoalB,QDnaG,mBAAU,QCxJlB,QDyJe,0BAAU,QC8PlB,QD7PG,qBAAU,QCgBlB,QDfK,kBAAU,QCpFlB,QDqFK,eAAU,QC3WlB,QD4Wc,qBAAU,QC/RlB,QDgSe,4BAAU,QC/RlB,QDgSF,kBAAU,QC+UlB,QD9Ue,yBAAU,QC+UlB,QD9UU,2BAAU,QCgDlB,QD/CM,yBAAU,QCkDlB,QDjDU,2BAAU,QC+ClB,QD9CS,4BAAU,QC+ClB,QD9CH,iBAAU,QCjWlB,QDkWU,mBAAU,QCmYlB,QDlYQ,mBAAU,QC7WlB,QD8WM,iBAAU,QCkClB,QDjCW,oBAAU,QC5KlB,QD6KK,iBAAU,QCgNlB,QD/Ma,sBAAU,QCxFlB,QDyFI,kBAAU,QC4TlB,QD3TQ,kBAAU,QCtIlB,QDuIM,gBAAU,QC6ClB,QD5CU,kBACE,oBAAU,QC5DlB,QD6DK,iBAAU,QC8PlB,QD7PS,kBAAU,QCuElB,QDtES,mBAAU,QC9WlB,QD+WI,eAAU,QCtSlB,QDuSO,cAAU,QCiWlB,QDhWW,iBAAU,QCuWlB,QDtWS,kBAAU,QC+IlB,QD9IW,qBAAU,QCkFlB,QDjFa,0BAAU,QC6NlB,QD5Nc,gCAAU,QC/WlB,QDgXO,+BAAU,QCjXlB,QDmXQ,+BADR,uBACkB,QCzRlB,QD0RC,wBAAU,QCnMlB,QDoMM,sBAAU,QCiWlB,QDhWU,wBAAU,QCoVlB,QDlVD,eADS,wBACC,QC0SlB,QDzSkB,yBAAU,QC0GlB,QDzGQ,yBAAU,QC4MlB,QD3MA,iBAAU,QCsLlB,QDrLkB,2BAAU,QCzLlB,QD0LE,qBAAU,QCoWlB,QDnWK,kBAAU,QC8DlB,QD5DM,gBADO,uBAED,sBAAU,QC8SlB,QD5SY,0BADF,wBACY,QC1FlB,QD2FD,iBAAU,QCsWlB,QDrWS,kBAAU,QClGlB,QDmGQ,kBAAU,QCgHlB,QD/Ge,yBAAU,QCiHlB,QDhHa,8BAAU,QCyNlB,QDxNC,uBAAU,QCuNlB,QDtNM,qBAAU,QC/NlB,QDgOG,gBAAU,QC5NlB,QD6NiB,yBAAU,QC2ElB,QD1ES,0BAAU,QCyElB,QDxEA,kBAAU,QCvNlB,QDwNQ,kBAAU,QCzClB,QD0CU,oBAAU,QCpClB,QDqCG,eAAU,QCtLlB,QDuLa,oBAAU,QC7UlB,QD8UK,iBAAU,QC1RlB,QD2RM,eAAU,QCsDlB,QDrDU,iBAAU,QCmLlB,QDlLO,gBAAU,QCrPlB,QDsPS,iBAAU,QCrPlB,QDsPU,mBAAU,QC7WlB,QD8We,0BAAU,QC7WlB,QD8WD,iBAAU,QC0LlB,QDzLe,wBAAU,QC0LlB,QDzLG,mBAAU,QCyFlB,QDxFW,sBACP,eAAU,QCzUlB,QD0UQ,eACC,gBAAU,QC+MlB,QD9MQ,gBAAU,QC4PlB,QD3PW,mBAAU,QCuKlB,QDtKW,sBAAU,QCtPlB,QDuPQ,sBAAU,QCiKlB,QDhKM,oBAAU,QC9PlB,QD+PU,sBAAU,QC/LlB,QDgMS,uBAAU,QCxLlB,QDyLS,wBAAU,QCrMlB,QDsMa,6BAAU,QC/LlB,QDkMG,wBAFA,wBACE,0BACQ,QCxMlB,QD0MU,0BADJ,sBACc,QC9MlB,QDgNM,wBADA,wBACU,QC/MlB,QDgNQ,wBACA,wBAAU,QCpMlB,QDqMO,uBAAU,QCjNlB,QDkNC,gBAAU,QCuRlB,QDtRW,mBAAU,QC5SlB,QD6SS,oBAAU,QC9ElB,QD+ES,qBACA,qBAGA,qBAFC,sBACH,mBACY,QCnElB,QDoEa,0BAAU,QC/TlB,QDgUJ,cAEG,iBADK,sBACK,QCqDlB,QDnDS,kBADJ,cACc,QCnQlB,QDoQY,sBAAU,QCzKlB,QD0KC,eAAU,QC3KlB,QD8KgB,uBAFQ,+BACV,qBACY,QCxJlB,QDyJU,yBAAU,QC2KlB,QD1KH,cAAU,QCiClB,QDhCY,kBACA,kBAAU,QC0QlB,QDxQa,uBADP,gBACiB,QCVlB,QDYU,yBADP,kBACiB,QCXlB,QDYE,mBAAU,QC1IlB,QD2IY,uBAAU,QClVlB,QDmVG,kBAAU,QCjJlB,QDkJW,qBAAU,QCblB,QDcM,mBAAU,QC+FlB,QD9FU,qBAAU,QCuElB,QDtEe,4BAAU,QCuElB,QDtEJ,gBAAU,QCzZlB,QD2ZY,oBADK,yBACK,QC5MlB,QD6MG,eAAU,QC0MlB,QDzMe,sBAAU,QCxalB,QDyaE,gBAAU,QCIlB,QDHc,sBAAU,QCuFlB,QDtFI,kBAAU,QC2MlB,QD1MM,gBAAU,QC+QlB,QD9Qe,uBAAU,QCzClB,QD0CC,gBAAU,QCwPlB,QDvPc,sBAAU,QCrZlB,QDsZI,kBAAU,QCvBlB,QDwBe,yBAAU,QC3LlB,QD4LE,mBAAU,QC5XlB,QD6Xc,yBAAU,QChYlB,QDiYM,uBAAU,QCnYlB,QDoYI,mBAAU,QCtYlB,QDuYU,qBAAU,QClYlB,QDmYQ,qBAAU,QClYlB,QDmYS,sBAAU,QC3blB,QD4bU,wBAAU,QC3blB,QD4bC,iBAAU,QC+KlB,QD9KY,qBAAU,QCnVlB,QDoVC,cAAU,QC9dlB,QD+dgB,sBAAU,QC5RlB,QD6RS,uBAAU,QC/ClB,QDgDU,yBAAU,QC9blB,QD+bK,sBAAU,QCtflB,QDufO,qBAAU,QC/BlB,QDgCS,sBAAU,QCzHlB,QD0HI,kBAAU,QCvIlB,QDwIe,yBAAU,QCvIlB,QDwIK,sBAAU,QC4JlB,QD3JO,qBAAU,QC4JlB,QD3JM,mBAAU,QCxclB,QDycI,eAAU,QCjblB,QDkbY,mBAAU,QCvJlB,QDwJU,qBAAU,QC3gBlB,QD4gBC,cAAU,QC7ZlB,QDgaS,eAFG,kBACA,kBACO,QCzKlB,QD0Ka,oBAAU,QCpGlB,QDqGU,sBAAU,QCxblB,QDybY,0BAAU,QC5WlB,QD6WE,oBAAU,QC9VlB,QD+VQ,oBAAU,QC9PlB,QD+PO,mBAAU,QCrJlB,QDsJO,kBAAU,QCelB,QDdc,wBAAU,QC2BlB,QD1BO,uBAAU,QCoClB,QDnCK,oBAAU,QCqClB,QDpCS,qBAAU,QC5alB,QD6ac,2BAAU,QC9alB,QD+aA,mBAAU,QC/VlB,QDgWK,gBAAU,QCoBlB,QDnBe,uBAAU,QC8KlB,QD7KO,sBAAU,QC/FlB,QDgGS,uBAAU,QC6ElB,QD5EM,qBAAU,QC9MlB,QD+MI,iBAAU,QC+KlB,QD9KO,gBAAU,QC7HlB,QD8HW,mBAAU,QCnHlB,QDoHS,oBACG,uBAAU,QCkIlB,QDjIY,2BAAU,QCkIlB,QDjIK,wBAAU,QC0KlB,QDzKO,uBAAU,QClIlB,QDmIO,sBAAU,QCyKlB,QDxKS,uBAAU,QCnIlB,QDoIU,yBAAU,QClIlB,QDmIQ,yBAAU,QCpIlB,QDqIC,kBAAU,QC1GlB,QD2GY,sBAAU,QC7QlB,QD8Qe,6BAAU,QC1UlB,QD2UE,uBAAU,QCzElB,QD0EK,oBAAU,QCkLlB,QDjLM,kBAAU,QCXlB,QDYW,qBAAU,QCuJlB,QDtJS,sBAAU,QCwJlB,QDtJC,eADE,iBACQ,QC/flB,QDggBY,mBAAU,QC4JlB,QD3JM,iBAAU,QC8GlB,QD7GS,kBAAU,QCwDlB,QDvDQ,kBAAU,QC9IlB,QDgJc,wBADV,cACoB,QC0LlB,QDzLS,yBAAU,QCjHlB,QDkHG,oBAAU,QCrHlB,QDsHY,wBAAU,QCnWlB,QDoWK,qBAEG,wBADL,mBACe,QC/gBlB,QDghBK,qBACa,kCAAU,QC9gBlB,QD+gBL,qBACG,wBAAU,QClhBlB,QDmhBK,qBACM,2BAAU,QCnhBlB,QDohBE,qBACI,yBAAU,QCxhBlB,QDyhBQ,yBAAU,QC3IlB,QD4IG,oBAAU,QC3OlB,QD4OY,wBAAU,QCxIlB,QDyIU,0BAAU,QCxIlB,QDyIK,uBAAU,QCwBlB,QDvBU,yBAAU,QCwBlB,QDvBC,kBAAU,QC/dlB,QDgegB,0BAAU,QClelB,QDmeD,iBAAU,QCpclB,QDqcgB,yBAAU,QCljBlB,QDmjBM,uBAAU,QCxPlB,QDyPQ,uBACI,2BAAU,QCzPlB,QD0PI,uBACG,0BAAU,QC7PlB,QD8PK,uBACE,yBAAU,QChQlB,QDiQI,qBAAU,QCrQlB,QDsQU,uBACA,uBAAU,QCxRlB,QD0RS,wBADD,uBACW,QC7RlB,QD8RW,2BAAU,QC1RlB,QD2RM,yBAAU,QCpSlB,QDqSO,wBAAU,QC3RlB,QD4RU,0BAAU,QC/RlB,QDgSM,wBAAU,QCjSlB,QDkSK,qBAAU,QC+DlB,QD9DS,sBAAU,QC/FlB,QDgGc,4BAAU,QC/blB,QDgcN,cAAU,QCtUlB,QDuUe,qBAAU,QCtUlB,QDuUU,uBAAU,QCkElB,QDjEU,yBAAU,QCrKlB,QDsKe,gCAAU,QCrKlB,QDsKF,sBAAU,QC5UlB,QD6US,uBAAU,QCwHlB,QDvHG,kBAAU,QCnFlB,QDoFQ,kBAAU,QCzelB,QD0eS,mBAAU,QC9WlB,QD+WM,iBAAU,QCxKlB,QDyKoB,6BAAU,QCpQlB,QDsQC,sBADR,cACkB,QCSlB,QDRI,kBAAU,QCjdlB,QDkdO,iBAAU,QCzoBlB,QD0oBS,kBAAU,QC/nBlB,QDgoBiB,2BAAU,QC3hBlB,QD4hBS,4BAAU,QC9hBlB,QD+hBQ,4BAAU,QC5hBlB,QD6hBQ,4BAAU,QCjiBlB,QDkiBA,oBAAU,QCpRlB,QDqRO,mBAAU,QC5NlB,QD6NU,qBAAU,QC5NlB,QD6NI,iBAAU,QC/NlB,QDgOM,eAAU,QClOlB,QDmOe,sBAAU,QCpelB,QDqeU,wBAAU,QCpelB,QDqeC,iBAAU,QCtSlB,QDuSQ,iBAAU,QCiFlB,QDhFY,qBAAU,QClkBlB,QDmkBQ,qBAAU,QCrXlB,QDsXW,wBAAU,QCpIlB,QDqIA,gBAAU,QCpclB,QDqcmB,2BAAU,QChelB,QDieC,oBAAU,QCpflB,QDqfI,gBAAU,QClNlB,QDmNgB,wBAAU,QC1XlB,QD2XD,eAAU,QCoDlB,QDnDiB,wBAAU,QC3JlB,QD4JI,oBAAU,QCzNlB,QD0NM,kBAAU,QClHlB,QDmHc,wBAAU,QC7LlB,QD8LU,0BAAU,QC7LlB,QD8LK,uBAAU,QC3ClB,QD4CU,yBAAU,QC3ClB,QD4CO,wBAAU,QCrGlB,QDsGW,2BAAU,QCrGlB,QDsGA,mBAAU,QC7UlB,QD8UU,qBAAU,QCnlBlB,QDolBU,uBAAU,QCnlBlB,QDolBI,mBAAU,QC/LlB,QDgMO,kBAAU,QClXlB,QDmXY,sBAAU,QCkFlB,QDjFK,mBAAU,QCmFlB,QDlFO,kBAAU,QC9clB,QD+ckB,4BAAU,QC2BlB,QD1BM,0BAAU,QCmElB,QDlEW,6BAAU,QCxKlB,QDyKJ,iBAAU,QC9lBlB,QD+lBoB,6BAAU,QCtoBlB,QDuoBW,gCAAU,QCqDlB,QDpDL,mBAAU,QCxlBlB,QDylB4B,uCAAU,QC5oBlB,QD8oBgB,+CADnB,4BAC6B,QC9qBlB,QDirBvB,gBAFI,oBACO,2BACD,QCvflB,QDwfS,iBAAU,QChYlB,QDiYU,mBAAU,QChYlB,QDkYc,yBADN,mBACgB,QC1HlB,QD2HK,sBAAU,QCzRlB,QD0RI,kBAAU,QCiClB,QDhCe,yBAAU,QCiClB,QDhCG,oBAAU,QClHlB,QDmHc,0BAAU,QClHlB,QDmHS,2BAAU,QClHlB,QDmHG,sBAAU,QCrNlB,QDsNS,uBAAU,QCpblB,QDqbE,iBAAU,QCmElB,QDlEY,qBAAU,QCpDlB,QDqDiB,8BACE,gCAAU,QCzYlB,QD0YV,cACU,wBAAU,QC7alB,QD8aO,uBAAU,QCtXlB,QDuXU,yBAAU,QClflB,QDmfU,2BAAU,QClflB,QDmfD,kBAAU,QCtTlB,QDuTc,wBAAU,QCptBlB,QDqtBU,0BAAU,QCptBlB,QDstBM,wBADP,iBACiB,QCrtBlB,QDutBU,0BADP,mBACiB,QCttBlB,QDutBK,uBAAU,QCJlB,QDKU,yBAAU,QCJlB,QDKC,kBAAU,QCHlB,QDIU,oBAAU,QC3WlB,QD4We,2BACR,mBAAU,QC5WlB,QD6WkB,6BACR,qBAAU,QC7WlB,QD8WI,iBAAU,QCtNlB,QDuNiB,0BAAU,QC3blB,QD4bE,oBAAU,QCtFlB,QDuFa,yBAEG,4BADL,uBACe,QCxElB,QDyEK,yBACa,sCAAU,QCvElB,QDwEL,yBACG,4BAAU,QC3ElB,QD4EK,yBACM,+BAAU,QC5ElB,QD6EE,yBACI,6BAAU,QCjFlB,QDkFH,kBAAU,QC3KlB,QD8KM,gBAFG,mBACJ,eACW,QCzrBlB,QD0rBW,mBAAU,QClPlB,QDmPgB,2BAAU,QCKlB,QDJQ,2BAAU,QCKlB,QDJO,0BAAU,QCKlB,QDJS,2BACH,wBAAU,QCDlB,QDEa,6BACH,0BAAU,QCFlB,QDGE,oBAAU,QCxsBlB,QDysBI,gBAAU,QCpblB,QDqbQ,gBAAU,QC1hBlB,QD2hBQ,gBAAU,QCxYlB,QDyYW,mBAAU,QC/OlB,QDgPQ,mBAAU,QCziBlB,QD0iBU,qBAAU,QCjUlB,QDkUU,uBAAU,QC7KlB,QD8KQ,uBAAU,QChIlB,QDiIO,sBAAU,QCJlB,QDKI,kBAAU,QCxUlB,QCzchB,SJ8BE,SAAA,SACA,MAAA,IACA,OAAA,IACA,QAAA,EACA,OAAA,KACA,SAAA,OACA,KAAM,cACN,OAAA,EvEoGC,0BACA,yBACC,SAAA,OACA,MA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"}
\ No newline at end of file
+{"version":3,"sources":["src/less/fonts.less","tests/build/less/patternfly.css","node_modules/bootstrap/less/normalize.less","node_modules/bootstrap/less/print.less","node_modules/bootstrap/less/glyphicons.less","node_modules/bootstrap/less/scaffolding.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","src/less/variables.less","node_modules/bootstrap/less/mixins/tab-focus.less","node_modules/bootstrap/less/carousel.less","node_modules/bootstrap/less/thumbnails.less","node_modules/bootstrap/less/mixins/image.less","node_modules/bootstrap/less/type.less","node_modules/bootstrap/less/mixins/text-emphasis.less","node_modules/bootstrap/less/mixins/background-variant.less","node_modules/bootstrap/less/mixins/text-overflow.less","node_modules/bootstrap/less/code.less","node_modules/bootstrap/less/grid.less","node_modules/bootstrap/less/mixins/grid.less","node_modules/bootstrap/less/mixins/grid-framework.less","node_modules/bootstrap/less/tables.less","node_modules/bootstrap/less/mixins/table-row.less","node_modules/bootstrap/less/forms.less","node_modules/bootstrap/less/mixins/forms.less","src/less/bootstrap-mixin-overrides.less","node_modules/bootstrap/less/buttons.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap/less/button-groups.less","node_modules/bootstrap/less/component-animations.less","node_modules/bootstrap/less/dropdowns.less","node_modules/bootstrap/less/mixins/nav-divider.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/input-groups.less","node_modules/bootstrap/less/navs.less","node_modules/bootstrap/less/navbar.less","node_modules/bootstrap/less/mixins/nav-vertical-align.less","node_modules/bootstrap/less/utilities.less","node_modules/font-awesome/less/bordered-pulled.less","node_modules/bootstrap/less/breadcrumbs.less","node_modules/bootstrap/less/pagination.less","node_modules/bootstrap/less/mixins/pagination.less","node_modules/bootstrap/less/pager.less","node_modules/bootstrap/less/labels.less","node_modules/bootstrap/less/mixins/labels.less","node_modules/bootstrap/less/badges.less","node_modules/bootstrap/less/jumbotron.less","node_modules/bootstrap/less/alerts.less","node_modules/bootstrap/less/mixins/alerts.less","node_modules/bootstrap/less/progress-bars.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/progress-bar.less","node_modules/bootstrap/less/media.less","node_modules/bootstrap/less/list-group.less","node_modules/bootstrap/less/mixins/list-group.less","node_modules/bootstrap/less/panels.less","node_modules/bootstrap/less/mixins/panels.less","node_modules/bootstrap/less/responsive-embed.less","node_modules/bootstrap/less/wells.less","node_modules/bootstrap/less/close.less","node_modules/bootstrap/less/modals.less","node_modules/bootstrap/less/tooltip.less","node_modules/bootstrap/less/mixins/reset-text.less","node_modules/bootstrap/less/popovers.less","node_modules/bootstrap/less/mixins/clearfix.less","node_modules/bootstrap/less/mixins/center-block.less","node_modules/bootstrap/less/mixins/hide-text.less","node_modules/bootstrap/less/responsive-utilities.less","node_modules/bootstrap/less/mixins/responsive-visibility.less","node_modules/font-awesome/less/path.less","node_modules/font-awesome/less/core.less","node_modules/font-awesome/less/larger.less","node_modules/font-awesome/less/fixed-width.less","node_modules/font-awesome/less/list.less","node_modules/font-awesome/less/animated.less","node_modules/font-awesome/less/rotated-flipped.less","node_modules/font-awesome/less/mixins.less","node_modules/font-awesome/less/stacked.less","node_modules/font-awesome/less/icons.less","node_modules/font-awesome/less/variables.less","node_modules/font-awesome/less/screen-reader.less","src/less/mixins.less","src/less/alerts.less","src/less/badges.less","src/less/breadcrumbs.less","src/less/buttons.less","src/less/dropdowns.less","src/less/forms.less","src/less/labels.less","src/less/list-group.less","src/less/modals.less","src/less/pager.less","src/less/pagination.less","src/less/panels.less","src/less/popovers.less","src/less/progress-bars.less","src/less/tables.less","src/less/tabs.less","src/less/tooltip.less","src/less/type.less"],"names":[],"mappings":"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A,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,EFT+B,yBEzB/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GFA+B,yBElC/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GFS+B,0BE3C/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GCnEJ,MACE,iBAAA,YAEF,QACE,YAAA,KACA,eAAA,KAC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lB,QDlhBY,oBAAU,QCgMlB,QD/LmB,+BAAU,QCYlB,QDXM,6BAAU,QCclB,QDbJ,iBAAU,QCqWlB,QDpWgB,yBAAU,QCwelB,QDteC,kBADM,wBACI,QCsgBlB,QDrgBS,mBAAU,QCggBlB,QD/fS,oBAAU,QCwYlB,QDvYI,gBAAU,QC2YlB,QD1YQ,gBAAU,QC4PlB,QD3Pc,sBAAU,QCoUlB,QDnUQ,sBAAU,QCitBlB,QDhtBS,uBAAU,QC+sBlB,QD9sBM,qBAAU,QCgtBlB,QD/sBK,kBAAU,QCyelB,QDxeS,mBAAU,QCwBlB,QDvBI,eAAU,QCymBlB,QDxmBS,gBAAU,QCymBlB,QDxmBQ,gBAAU,QCyDlB,QDxDY,oBAAU,QCyDlB,QDxDK,iBAAU,QC+dlB,QD9dS,kBAAU,QC2ElB,QD1EM,gBAAU,QC0PlB,QDzPQ,gBAAU,QCiDlB,QDhDU,kBAAU,QC0VlB,QDzVa,uBAAU,QCwmBlB,QDvmBO,sBAAU,QCwmBlB,QDvmBQ,sBAAU,QCpClB,QDqCU,wBAAU,QCvClB,QDwCO,uBAAU,QCrClB,QDsCU,yBAAU,QCxClB,QDyCD,gBAAU,QC+WlB,QD9WU,kBACC,mBAAU,QC2alB,QD1aO,kBAAU,QCsUlB,QDrUc,wBAAU,QCkrBlB,QDhrBC,iBADA,iBAEI,qBAAU,QC0blB,QDzbK,kBAAU,QCkblB,QDjbY,sBAAU,QCwXlB,QDvXI,kBAAU,QCtDlB,QDuDM,gBAAU,QCmnBlB,QDlnBQ,gBACW,2BAAU,QC+alB,QD9aO,0BAAU,QC8flB,QD7fQ,0BAAU,QC+ElB,QD9EA,kBAAU,QCzBlB,QD0Be,yBAAU,QCmjBlB,QDljBQ,yBAAU,QCqLlB,QDpLG,oBAAU,QClBlB,QDmBI,gBAAU,QCsblB,QDrbS,iBAAU,QCgalB,QD/ZO,gBAAU,QCmjBlB,QDljBW,mBAAU,QC+NlB,QD9Na,wBAAU,QCgLlB,QD/KQ,wBAAU,QC4iBlB,QD3iBC,iBAAU,QC+IlB,QD9Ie,wBAAU,QCyElB,QDxES,yBAAU,QCyElB,QDxEM,uBAAU,QCkblB,QDjbS,wBAAU,QCuXlB,QDtXQ,wBAAU,QC2lBlB,QD1lBQ,wBAAU,QC2DlB,QD1DW,2BAAU,QCyblB,QDxbI,uBAAU,QC0SlB,QDzSO,sBAAU,QC0GlB,QDzGY,0BAAU,QCulBlB,QDtlBQ,0BAAU,QCuDlB,QDtDH,eAAU,QCnClB,QDoCe,sBAAU,QCnDlB,QDoDS,uBAAU,QCnDlB,QDoDK,oBAAU,QCnDlB,QDoDU,sBAAU,QCvDlB,QDwDU,wBACP,iBAAU,QC4dlB,QD3dS,kBAAU,QC8IlB,QD7IU,oBAAU,QCsFlB,QDrFI,gBAAU,QC+ZlB,QD9ZS,iBAAU,QCoWlB,QDnWW,oBAAU,QCpDlB,QDqDkB,8BAAU,QCuIlB,QDtIN,gBAAU,QCkNlB,QDjNQ,gBAAU,QC0SlB,QDzSQ,gBAAU,QC6KlB,QD5KO,eAAU,QCyIlB,QDxIc,qBAAU,QCyIlB,QDvImB,gCADb,mBACuB,QCiIlB,QDhIP,iBAAU,QC+YlB,QD9YW,oBAAU,QCAlB,QDCM,kBAAU,QCoalB,QDnaS,mBAAU,QCgElB,QD/DO,kBAAU,QC6TlB,QD5TY,sBAAU,QCuClB,QDtCU,wBAAU,QCmClB,QDlCG,mBAAU,QC+alB,QD9ac,yBAAU,QCkdlB,QDjdC,kBAAU,QC0KlB,QDzKa,uBAAU,QC2KlB,QD1KK,oBAAU,QC3ElB,QD4EQ,oBAAU,QC7ElB,QD8EW,uBACF,qBAAU,QClElB,QDmEa,0BAAU,QC+kBlB,QD9kBS,2BAAU,QC4HlB,QD3HK,wBAAU,QCTlB,QDUD,eAAU,QC2QlB,QDzQS,gBADC,iBACS,QC6ClB,QD5CY,oBAAU,QCkDlB,QDjDW,uBAAU,QCsiBlB,QDriBU,yBAAU,QCoiBlB,QDniBI,qBAAU,QC2elB,QD1eM,mBAAU,QC8NlB,QD7NS,oBAAU,QCoclB,QDnce,2BAAU,QCuRlB,QDtRG,sBAAU,QC6hBlB,QD5hBW,yBAAU,QCsGlB,QDrGE,mBAAU,QC8blB,QD7bO,kBAAU,QCqjBlB,QDpjBe,yBAAU,QCgLlB,QD/KC,kBAAU,QCukBlB,QDtkBS,mBAAU,QCqQlB,QDpQM,iBAAU,QCiWlB,QDhWW,oBAAU,QC2dlB,QD1dU,sBAAU,QCjDlB,QDkDU,wBAAU,QC+VlB,QD9VG,mBAAU,QCsjBlB,QDrjBW,sBACF,oBAAU,QCgGlB,QD/FM,kBAAU,QCoKlB,QDnKQ,kBAAU,QC0jBlB,QDzjBa,uBAAU,QCoClB,QDnCC,gBACD,eAAU,QC+YlB,QD9YU,iBAAU,QCoMlB,QDnMW,oBAAU,QCrDlB,QDsDI,gBAAU,QChFlB,QDiFe,uBAAU,QCrBlB,QDsBS,wBAAU,QCoLlB,QDnLO,uBAAU,QCkLlB,QDjLM,qBAAU,QCmLlB,QDlLU,uBAAU,QC+KlB,QD9Kc,6BAAU,QCrIlB,QDsIS,8BAAU,QCjIlB,QDkIK,2BAAU,QCjIlB,QDkIU,6BAAU,QCzIlB,QD0IJ,iBAAU,QC2JlB,QD1JS,kBAAU,QC6lBlB,QD5lBO,iBAAU,QCqelB,QDpeS,kBAAU,QCyGlB,QDxGW,qBAAU,QCzElB,QD0ES,sBAAU,QClIlB,QDmIG,iBACA,iBAAU,QCijBlB,QDhjBQ,iBACD,gBAAU,QC4OlB,QD3OS,iBAAU,QCdlB,QDeQ,iBAAU,QC0GlB,QDzGM,eACK,oBAAU,QC6XlB,QD5XI,gBACG,mBAAU,QC2FlB,QD1FU,qBAAU,QC6SlB,QD3SO,oBADJ,gBACc,QCqGlB,QDpGM,kBAAU,QCgblB,QD7aM,gBAFG,mBACA,mBACO,QClIlB,QDmIW,mBAAU,QCsOlB,QDrOQ,mBAAU,QCoOlB,QDnOc,yBAAU,QC+blB,QD9bI,qBAAU,QC2gBlB,QD1gBI,iBAAU,QCuclB,QDtcQ,iBAAU,QCyOlB,QDxOQ,iBAAU,QC6flB,QD5fY,qBAAU,QCmTlB,QDlTe,4BAAU,QCoTlB,QDnTU,8BAAU,QCgIlB,QD/HC,uBAAU,QC4HlB,QD3HE,iBAAU,QCqQlB,QDpQa,sBAAU,QCpFlB,QDqFM,oBAAU,QC9ElB,QD+EU,sBAAU,QCrFlB,QDsFS,uBAAU,QCrFlB,QDsFI,mBAAU,QChClB,QDkCK,gBADI,oBACM,QC0YlB,QDxYa,qBADA,qBACU,QC8YlB,QD5YO,oBADD,mBACW,QC2YlB,QD1YQ,oBAAU,QCUlB,QDTQ,oBAAU,QCuMlB,QDtMW,uBACP,gBAAU,QCqflB,QDnfS,iBADA,iBACU,QCoFlB,QDnFY,qBACC,sBAAU,QC+alB,QD9aO,qBAAU,QC7ClB,QD8CS,sBAAU,QC1ClB,QD4CE,gBADC,iBACS,QCpIlB,QDqIW,mBAAU,QC6WlB,QD5WS,oBAAU,QCyelB,QDveS,qBADJ,iBACc,QCrElB,QDsEU,uBAAU,QCqLlB,QDpLK,oBAAU,QCGlB,QDFc,0BAAU,QCnElB,QDoEM,wBAAU,QCnElB,QDoEG,mBAAU,QCiflB,QDhfY,uBAAU,QC8YlB,QD7YK,oBAAU,QCyZlB,QDxZM,kBAAU,QC9JlB,QD+JQ,kBAAU,QClElB,QDmES,mBAAU,QC1ClB,QD2CY,uBAAU,QC8BlB,QD7BO,sBAAU,QC1IlB,QD2IQ,sBAAU,QCsHlB,QDrHO,qBAAU,QCrOlB,QDsOK,kBAAU,QC4MlB,QD3Ma,uBAAU,QCUlB,QDTC,gBAAU,QC3KlB,QD4KY,oBAAU,QCuFlB,QDtFW,uBAAU,QC2QlB,QD1Qc,6BAAU,QCrOlB,QDsOS,8BAAU,QCrOlB,QDsOK,2BAAU,QCrOlB,QDsOU,6BAAU,QCzOlB,QD0OC,sBAAU,QCrOlB,QDsOS,uBAAU,QCrOlB,QDsOK,oBAAU,QCrOlB,QDsOU,sBAAU,QCzOlB,QD0OK,mBAAU,QCpDlB,QDqDO,kBAAU,QC4IlB,QD3IQ,kBAAU,QCwYlB,QDvYc,wBACN,kBAAU,QCuMlB,QDtMU,oBAAU,QCzGlB,QD0GU,sBAAU,QCyQlB,QDxQS,uBAAU,QCyQlB,QDxQI,mBAAU,QC+VlB,QD9VO,kBAAU,QC9GlB,QD+GY,sBACL,iBAAU,QCoRlB,QDnRa,sBAAU,QC+ClB,QD9CM,oBAAU,QCmBlB,QDlBa,yBAAU,QCoBlB,QDnBE,mBAAU,QCqUlB,QDpUQ,mBAAU,QC2BlB,QD1BM,iBAAU,QCgLlB,QD/KU,mBAAU,QC2BlB,QD1BW,sBAAU,QCuHlB,QDtHI,kBAAU,QCMlB,QDLgB,0BAAU,QCIlB,QDHE,oBAAU,QC6XlB,QD5XI,gBAAU,QChHlB,QDiHkB,0BACL,qBAAU,QCuQlB,QDtQc,2BACD,0BACH,uBAAU,QCsVlB,QDrVW,0BAAU,QCwIlB,QDvIF,gBAAU,QChGlB,QDiGa,qBAAU,QCvHlB,QDyHW,wBADN,kBACgB,QCtJlB,QDuJI,oBAAU,QCyOlB,QDxOI,gBAAU,QC0FlB,QDzFe,uBAAU,QC1DlB,QD2DQ,uBAAU,QCkWlB,QDjWM,qBAAU,QC4VlB,QD3VK,kBAAU,QClElB,QDmEc,wBAAU,QCgOlB,QD/NM,sBAAU,QC2JlB,QD1Jc,4BAAU,QC2JlB,QD1JF,kBAAU,QCsRlB,QDrRY,sBAAU,QC5LlB,QD6Le,6BAAU,QCxBlB,QDyBH,kBAAU,QCuPlB,QDtPQ,kBAAU,QC6IlB,QD5IqB,+BAAU,QC9JlB,QD+JS,gCAAU,QC9JlB,QD+JK,6BAAU,QC9JlB,QD+JU,+BAAU,QClKlB,QDmKN,iBAAU,QC8DlB,QD7DO,gBAAU,QCrHlB,QDsHU,kBAAU,QCvSlB,QDwSY,sBAAU,QC2ZlB,QD1ZM,oBAAU,QChNlB,QDiNU,sBAAU,QC7FlB,QD8FQ,sBAAU,QC7FlB,QD8FQ,sBAAU,QC+OlB,QD9OS,uBAAU,QCiMlB,QDhMG,kBAAU,QC6WlB,QD5Wc,wBAAU,QC0IlB,QDzIU,0BAAU,QC0IlB,QDzIE,oBAAU,QCqFlB,QDpFU,sBAAU,QCmFlB,QDlFU,wBAAU,QCnLlB,QDoLS,yBAAU,QC0KlB,QDzKe,gCAAU,QCpFlB,QDqFA,wBAAU,QCwPlB,QDvPG,mBAAU,QCjJlB,QDmJoB,+BADR,uBACkB,QC/MlB,QDiNM,6BADR,qBACkB,QC9MlB,QDgNW,gCADR,wBACkB,QCjNlB,QDmNT,eADC,gBACS,QCvGlB,QDwGQ,eAAU,QChClB,QDiCW,kBACH,eAAU,QCqYlB,QDnYQ,eADE,iBACQ,QC4ClB,QD3CQ,eAGA,eAFA,eACA,eACU,QCgDlB,QD9CW,kBACH,eAFE,iBAEQ,QCiNlB,QD/MQ,eADA,eACU,QC+ClB,QD9CY,mBACJ,eAAU,QC3PlB,QD4PS,gBAAU,QChGlB,QDiGa,qBAAU,QCpFlB,QDqFa,0BAAU,QC0PlB,QDzPS,2BAAU,QC0PlB,QDzPQ,2BAAU,QC0PlB,QDzPS,4BAAU,QC0PlB,QDzPQ,4BAAU,QC6PlB,QD5PS,6BAAU,QC6PlB,QD5PA,qBAAU,QCkUlB,QDjUU,uBAAU,QC8TlB,QD7TW,0BAAU,QCyalB,QDxaC,mBAAU,QCsalB,QDraK,gBAAU,QC2ZlB,QD1Ze,uBAAU,QC2ZlB,QD1ZS,wBAAU,QCoalB,QDnaG,mBAAU,QCxJlB,QDyJe,0BAAU,QC8PlB,QD7PG,qBAAU,QCgBlB,QDfK,kBAAU,QCpFlB,QDqFK,eAAU,QC3WlB,QD4Wc,qBAAU,QC/RlB,QDgSe,4BAAU,QC/RlB,QDgSF,kBAAU,QC+UlB,QD9Ue,yBAAU,QC+UlB,QD9UU,2BAAU,QCgDlB,QD/CM,yBAAU,QCkDlB,QDjDU,2BAAU,QC+ClB,QD9CS,4BAAU,QC+ClB,QD9CH,iBAAU,QCjWlB,QDkWU,mBAAU,QCmYlB,QDlYQ,mBAAU,QC7WlB,QD8WM,iBAAU,QCkClB,QDjCW,oBAAU,QC5KlB,QD6KK,iBAAU,QCgNlB,QD/Ma,sBAAU,QCxFlB,QDyFI,kBAAU,QC4TlB,QD3TQ,kBAAU,QCtIlB,QDuIM,gBAAU,QC6ClB,QD5CU,kBACE,oBAAU,QC5DlB,QD6DK,iBAAU,QC8PlB,QD7PS,kBAAU,QCuElB,QDtES,mBAAU,QC9WlB,QD+WI,eAAU,QCtSlB,QDuSO,cAAU,QCiWlB,QDhWW,iBAAU,QCuWlB,QDtWS,kBAAU,QC+IlB,QD9IW,qBAAU,QCkFlB,QDjFa,0BAAU,QC6NlB,QD5Nc,gCAAU,QC/WlB,QDgXO,+BAAU,QCjXlB,QDmXQ,+BADR,uBACkB,QCzRlB,QD0RC,wBAAU,QCnMlB,QDoMM,sBAAU,QCiWlB,QDhWU,wBAAU,QCoVlB,QDlVD,eADS,wBACC,QC0SlB,QDzSkB,yBAAU,QC0GlB,QDzGQ,yBAAU,QC4MlB,QD3MA,iBAAU,QCsLlB,QDrLkB,2BAAU,QCzLlB,QD0LE,qBAAU,QCoWlB,QDnWK,kBAAU,QC8DlB,QD5DM,gBADO,uBAED,sBAAU,QC8SlB,QD5SY,0BADF,wBACY,QC1FlB,QD2FD,iBAAU,QCsWlB,QDrWS,kBAAU,QClGlB,QDmGQ,kBAAU,QCgHlB,QD/Ge,yBAAU,QCiHlB,QDhHa,8BAAU,QCyNlB,QDxNC,uBAAU,QCuNlB,QDtNM,qBAAU,QC/NlB,QDgOG,gBAAU,QC5NlB,QD6NiB,yBAAU,QC2ElB,QD1ES,0BAAU,QCyElB,QDxEA,kBAAU,QCvNlB,QDwNQ,kBAAU,QCzClB,QD0CU,oBAAU,QCpClB,QDqCG,eAAU,QCtLlB,QDuLa,oBAAU,QC7UlB,QD8UK,iBAAU,QC1RlB,QD2RM,eAAU,QCsDlB,QDrDU,iBAAU,QCmLlB,QDlLO,gBAAU,QCrPlB,QDsPS,iBAAU,QCrPlB,QDsPU,mBAAU,QC7WlB,QD8We,0BAAU,QC7WlB,QD8WD,iBAAU,QC0LlB,QDzLe,wBAAU,QC0LlB,QDzLG,mBAAU,QCyFlB,QDxFW,sBACP,eAAU,QCzUlB,QD0UQ,eACC,gBAAU,QC+MlB,QD9MQ,gBAAU,QC4PlB,QD3PW,mBAAU,QCuKlB,QDtKW,sBAAU,QCtPlB,QDuPQ,sBAAU,QCiKlB,QDhKM,oBAAU,QC9PlB,QD+PU,sBAAU,QC/LlB,QDgMS,uBAAU,QCxLlB,QDyLS,wBAAU,QCrMlB,QDsMa,6BAAU,QC/LlB,QDkMG,wBAFA,wBACE,0BACQ,QCxMlB,QD0MU,0BADJ,sBACc,QC9MlB,QDgNM,wBADA,wBACU,QC/MlB,QDgNQ,wBACA,wBAAU,QCpMlB,QDqMO,uBAAU,QCjNlB,QDkNC,gBAAU,QCuRlB,QDtRW,mBAAU,QC5SlB,QD6SS,oBAAU,QC9ElB,QD+ES,qBACA,qBAGA,qBAFC,sBACH,mBACY,QCnElB,QDoEa,0BAAU,QC/TlB,QDgUJ,cAEG,iBADK,sBACK,QCqDlB,QDnDS,kBADJ,cACc,QCnQlB,QDoQY,sBAAU,QCzKlB,QD0KC,eAAU,QC3KlB,QD8KgB,uBAFQ,+BACV,qBACY,QCxJlB,QDyJU,yBAAU,QC2KlB,QD1KH,cAAU,QCiClB,QDhCY,kBACA,kBAAU,QC0QlB,QDxQa,uBADP,gBACiB,QCVlB,QDYU,yBADP,kBACiB,QCXlB,QDYE,mBAAU,QC1IlB,QD2IY,uBAAU,QClVlB,QDmVG,kBAAU,QCjJlB,QDkJW,qBAAU,QCblB,QDcM,mBAAU,QC+FlB,QD9FU,qBAAU,QCuElB,QDtEe,4BAAU,QCuElB,QDtEJ,gBAAU,QCzZlB,QD2ZY,oBADK,yBACK,QC5MlB,QD6MG,eAAU,QC0MlB,QDzMe,sBAAU,QCxalB,QDyaE,gBAAU,QCIlB,QDHc,sBAAU,QCuFlB,QDtFI,kBAAU,QC2MlB,QD1MM,gBAAU,QC+QlB,QD9Qe,uBAAU,QCzClB,QD0CC,gBAAU,QCwPlB,QDvPc,sBAAU,QCrZlB,QDsZI,kBAAU,QCvBlB,QDwBe,yBAAU,QC3LlB,QD4LE,mBAAU,QC5XlB,QD6Xc,yBAAU,QChYlB,QDiYM,uBAAU,QCnYlB,QDoYI,mBAAU,QCtYlB,QDuYU,qBAAU,QClYlB,QDmYQ,qBAAU,QClYlB,QDmYS,sBAAU,QC3blB,QD4bU,wBAAU,QC3blB,QD4bC,iBAAU,QC+KlB,QD9KY,qBAAU,QCnVlB,QDoVC,cAAU,QC9dlB,QD+dgB,sBAAU,QC5RlB,QD6RS,uBAAU,QC/ClB,QDgDU,yBAAU,QC9blB,QD+bK,sBAAU,QCtflB,QDufO,qBAAU,QC/BlB,QDgCS,sBAAU,QCzHlB,QD0HI,kBAAU,QCvIlB,QDwIe,yBAAU,QCvIlB,QDwIK,sBAAU,QC4JlB,QD3JO,qBAAU,QC4JlB,QD3JM,mBAAU,QCxclB,QDycI,eAAU,QCjblB,QDkbY,mBAAU,QCvJlB,QDwJU,qBAAU,QC3gBlB,QD4gBC,cAAU,QC7ZlB,QDgaS,eAFG,kBACA,kBACO,QCzKlB,QD0Ka,oBAAU,QCpGlB,QDqGU,sBAAU,QCxblB,QDybY,0BAAU,QC5WlB,QD6WE,oBAAU,QC9VlB,QD+VQ,oBAAU,QC9PlB,QD+PO,mBAAU,QCrJlB,QDsJO,kBAAU,QCelB,QDdc,wBAAU,QC2BlB,QD1BO,uBAAU,QCoClB,QDnCK,oBAAU,QCqClB,QDpCS,qBAAU,QC5alB,QD6ac,2BAAU,QC9alB,QD+aA,mBAAU,QC/VlB,QDgWK,gBAAU,QCoBlB,QDnBe,uBAAU,QC8KlB,QD7KO,sBAAU,QC/FlB,QDgGS,uBAAU,QC6ElB,QD5EM,qBAAU,QC9MlB,QD+MI,iBAAU,QC+KlB,QD9KO,gBAAU,QC7HlB,QD8HW,mBAAU,QCnHlB,QDoHS,oBACG,uBAAU,QCkIlB,QDjIY,2BAAU,QCkIlB,QDjIK,wBAAU,QC0KlB,QDzKO,uBAAU,QClIlB,QDmIO,sBAAU,QCyKlB,QDxKS,uBAAU,QCnIlB,QDoIU,yBAAU,QClIlB,QDmIQ,yBAAU,QCpIlB,QDqIC,kBAAU,QC1GlB,QD2GY,sBAAU,QC7QlB,QD8Qe,6BAAU,QC1UlB,QD2UE,uBAAU,QCzElB,QD0EK,oBAAU,QCkLlB,QDjLM,kBAAU,QCXlB,QDYW,qBAAU,QCuJlB,QDtJS,sBAAU,QCwJlB,QDtJC,eADE,iBACQ,QC/flB,QDggBY,mBAAU,QC4JlB,QD3JM,iBAAU,QC8GlB,QD7GS,kBAAU,QCwDlB,QDvDQ,kBAAU,QC9IlB,QDgJc,wBADV,cACoB,QC0LlB,QDzLS,yBAAU,QCjHlB,QDkHG,oBAAU,QCrHlB,QDsHY,wBAAU,QCnWlB,QDoWK,qBAEG,wBADL,mBACe,QC/gBlB,QDghBK,qBACa,kCAAU,QC9gBlB,QD+gBL,qBACG,wBAAU,QClhBlB,QDmhBK,qBACM,2BAAU,QCnhBlB,QDohBE,qBACI,yBAAU,QCxhBlB,QDyhBQ,yBAAU,QC3IlB,QD4IG,oBAAU,QC3OlB,QD4OY,wBAAU,QCxIlB,QDyIU,0BAAU,QCxIlB,QDyIK,uBAAU,QCwBlB,QDvBU,yBAAU,QCwBlB,QDvBC,kBAAU,QC/dlB,QDgegB,0BAAU,QClelB,QDmeD,iBAAU,QCpclB,QDqcgB,yBAAU,QCljBlB,QDmjBM,uBAAU,QCxPlB,QDyPQ,uBACI,2BAAU,QCzPlB,QD0PI,uBACG,0BAAU,QC7PlB,QD8PK,uBACE,yBAAU,QChQlB,QDiQI,qBAAU,QCrQlB,QDsQU,uBACA,uBAAU,QCxRlB,QD0RS,wBADD,uBACW,QC7RlB,QD8RW,2BAAU,QC1RlB,QD2RM,yBAAU,QCpSlB,QDqSO,wBAAU,QC3RlB,QD4RU,0BAAU,QC/RlB,QDgSM,wBAAU,QCjSlB,QDkSK,qBAAU,QC+DlB,QD9DS,sBAAU,QC/FlB,QDgGc,4BAAU,QC/blB,QDgcN,cAAU,QCtUlB,QDuUe,qBAAU,QCtUlB,QDuUU,uBAAU,QCkElB,QDjEU,yBAAU,QCrKlB,QDsKe,gCAAU,QCrKlB,QDsKF,sBAAU,QC5UlB,QD6US,uBAAU,QCwHlB,QDvHG,kBAAU,QCnFlB,QDoFQ,kBAAU,QCzelB,QD0eS,mBAAU,QC9WlB,QD+WM,iBAAU,QCxKlB,QDyKoB,6BAAU,QCpQlB,QDsQC,sBADR,cACkB,QCSlB,QDRI,kBAAU,QCjdlB,QDkdO,iBAAU,QCzoBlB,QD0oBS,kBAAU,QC/nBlB,QDgoBiB,2BAAU,QC3hBlB,QD4hBS,4BAAU,QC9hBlB,QD+hBQ,4BAAU,QC5hBlB,QD6hBQ,4BAAU,QCjiBlB,QDkiBA,oBAAU,QCpRlB,QDqRO,mBAAU,QC5NlB,QD6NU,qBAAU,QC5NlB,QD6NI,iBAAU,QC/NlB,QDgOM,eAAU,QClOlB,QDmOe,sBAAU,QCpelB,QDqeU,wBAAU,QCpelB,QDqeC,iBAAU,QCtSlB,QDuSQ,iBAAU,QCiFlB,QDhFY,qBAAU,QClkBlB,QDmkBQ,qBAAU,QCrXlB,QDsXW,wBAAU,QCpIlB,QDqIA,gBAAU,QCpclB,QDqcmB,2BAAU,QChelB,QDieC,oBAAU,QCpflB,QDqfI,gBAAU,QClNlB,QDmNgB,wBAAU,QC1XlB,QD2XD,eAAU,QCoDlB,QDnDiB,wBAAU,QC3JlB,QD4JI,oBAAU,QCzNlB,QD0NM,kBAAU,QClHlB,QDmHc,wBAAU,QC7LlB,QD8LU,0BAAU,QC7LlB,QD8LK,uBAAU,QC3ClB,QD4CU,yBAAU,QC3ClB,QD4CO,wBAAU,QCrGlB,QDsGW,2BAAU,QCrGlB,QDsGA,mBAAU,QC7UlB,QD8UU,qBAAU,QCnlBlB,QDolBU,uBAAU,QCnlBlB,QDolBI,mBAAU,QC/LlB,QDgMO,kBAAU,QClXlB,QDmXY,sBAAU,QCkFlB,QDjFK,mBAAU,QCmFlB,QDlFO,kBAAU,QC9clB,QD+ckB,4BAAU,QC2BlB,QD1BM,0BAAU,QCmElB,QDlEW,6BAAU,QCxKlB,QDyKJ,iBAAU,QC9lBlB,QD+lBoB,6BAAU,QCtoBlB,QDuoBW,gCAAU,QCqDlB,QDpDL,mBAAU,QCxlBlB,QDylB4B,uCAAU,QC5oBlB,QD8oBgB,+CADnB,4BAC6B,QC9qBlB,QDirBvB,gBAFI,oBACO,2BACD,QCvflB,QDwfS,iBAAU,QChYlB,QDiYU,mBAAU,QChYlB,QDkYc,yBADN,mBACgB,QC1HlB,QD2HK,sBAAU,QCzRlB,QD0RI,kBAAU,QCiClB,QDhCe,yBAAU,QCiClB,QDhCG,oBAAU,QClHlB,QDmHc,0BAAU,QClHlB,QDmHS,2BAAU,QClHlB,QDmHG,sBAAU,QCrNlB,QDsNS,uBAAU,QCpblB,QDqbE,iBAAU,QCmElB,QDlEY,qBAAU,QCpDlB,QDqDiB,8BACE,gCAAU,QCzYlB,QD0YV,cACU,wBAAU,QC7alB,QD8aO,uBAAU,QCtXlB,QDuXU,yBAAU,QClflB,QDmfU,2BAAU,QClflB,QDmfD,kBAAU,QCtTlB,QDuTc,wBAAU,QCptBlB,QDqtBU,0BAAU,QCptBlB,QDstBM,wBADP,iBACiB,QCrtBlB,QDutBU,0BADP,mBACiB,QCttBlB,QDutBK,uBAAU,QCJlB,QDKU,yBAAU,QCJlB,QDKC,kBAAU,QCHlB,QDIU,oBAAU,QC3WlB,QD4We,2BACR,mBAAU,QC5WlB,QD6WkB,6BACR,qBAAU,QC7WlB,QD8WI,iBAAU,QCtNlB,QDuNiB,0BAAU,QC3blB,QD4bE,oBAAU,QCtFlB,QDuFa,yBAEG,4BADL,uBACe,QCxElB,QDyEK,yBACa,sCAAU,QCvElB,QDwEL,yBACG,4BAAU,QC3ElB,QD4EK,yBACM,+BAAU,QC5ElB,QD6EE,yBACI,6BAAU,QCjFlB,QDkFH,kBAAU,QC3KlB,QD8KM,gBAFG,mBACJ,eACW,QCzrBlB,QD0rBW,mBAAU,QClPlB,QDmPgB,2BAAU,QCKlB,QDJQ,2BAAU,QCKlB,QDJO,0BAAU,QCKlB,QDJS,2BACH,wBAAU,QCDlB,QDEa,6BACH,0BAAU,QCFlB,QDGE,oBAAU,QCxsBlB,QDysBI,gBAAU,QCpblB,QDqbQ,gBAAU,QC1hBlB,QD2hBQ,gBAAU,QCxYlB,QDyYW,mBAAU,QC/OlB,QDgPQ,mBAAU,QCziBlB,QD0iBU,qBAAU,QCjUlB,QDkUU,uBAAU,QC7KlB,QD8KQ,uBAAU,QChIlB,QDiIO,sBAAU,QCJlB,QDKI,kBAAU,QCxUlB,QCzchB,SJ8BE,SAAA,SACA,MAAA,IACA,OAAA,IACA,QAAA,EACA,OAAA,KACA,SAAA,OACA,KAAM,cACN,OAAA,EvEoGC,0BACA,yBACC,SAAA,OACA,MA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"}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/patternfly/tests/build/less/patternfly-additions.css b/themes/src/main/node_modules/patternfly/tests/build/less/patternfly-additions.css
index 3c45659..76c8f8b 100644
--- a/themes/src/main/node_modules/patternfly/tests/build/less/patternfly-additions.css
+++ b/themes/src/main/node_modules/patternfly/tests/build/less/patternfly-additions.css
@@ -3518,6 +3518,74 @@ fieldset[disabled] .combobox-container .input-group-addon.active {
   opacity: 0.9;
   filter: alpha(opacity=90);
 }
+.layout-pf-fixed .navbar-pf-vertical.navbar-pf-contextselector {
+  z-index: 1040;
+}
+.navbar-pf-vertical .nav.contextselector-pf {
+  border-left: 1px solid #4d5258;
+}
+@media (min-width: 768px) {
+  .navbar-pf-vertical .nav.contextselector-pf {
+    margin-left: 10px;
+  }
+}
+.navbar-pf-vertical .nav.contextselector-pf .nav-item-iconic {
+  padding: 23px 20px 18px 10px;
+  display: -ms-flexbox;
+  display: flex;
+  -ms-flex-align: center;
+      align-items: center;
+}
+.contextselector-pf {
+  float: left;
+}
+.contextselector-pf-title {
+  width: 170px;
+  white-space: nowrap;
+  display: inline-block;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  line-height: normal;
+}
+@media (min-width: 480px) {
+  .contextselector-pf-title {
+    width: 210px;
+  }
+}
+.contextselector-pf .dropdown.open,
+.contextselector-pf .dropdown:hover {
+  background-color: #303030;
+}
+.contextselector-pf .dropdown-menu {
+  width: 100%;
+  margin-top: 0;
+}
+.contextselector-pf .form-group {
+  margin: 0 5px 5px 5px;
+}
+@media (min-width: 768px) {
+  .contextselector-pf .contextselector-pf-list {
+    max-height: 200px;
+    overflow-y: auto;
+  }
+}
+.contextselector-pf .contextselector-pf-list li {
+  padding: 1px 10px;
+  border-width: 1px 0;
+  border-style: solid;
+  border-color: transparent;
+}
+.contextselector-pf .contextselector-pf-list li:hover {
+  background: #def3ff;
+  border-color: #bee1f4;
+}
+.contextselector-pf .contextselector-pf-list li:hover a {
+  text-decoration: none;
+}
+.contextselector-pf .contextselector-pf-list a {
+  color: #393f44;
+  display: block;
+}
 .ColVis_Button:active:focus {
   outline: none;
 }
@@ -3956,7 +4024,7 @@ fieldset[disabled] .btn-experimental-pf.active {
   content: "\e605";
 }
 .pficon-history:before {
-  content: "\e617";
+  content: "\e93b";
 }
 .pficon-home:before {
   content: "\e618";
@@ -4003,6 +4071,9 @@ fieldset[disabled] .btn-experimental-pf.active {
 .pficon-network:before {
   content: "\e909";
 }
+.pficon-network-range:before {
+  content: "\e94a";
+}
 .pficon-on:before {
   content: "\e931";
 }
@@ -4089,6 +4160,9 @@ fieldset[disabled] .btn-experimental-pf.active {
 .pficon-running:before {
   content: "\e614";
 }
+.pficon-satellite:before {
+  content: "\e94b";
+}
 .pficon-save:before {
   content: "\e601";
 }
@@ -4128,6 +4202,9 @@ fieldset[disabled] .btn-experimental-pf.active {
 .pficon-storage-domain:before {
   content: "\e90e";
 }
+.pficon-template:before {
+  content: "\e94c";
+}
 .pficon-tenant:before {
   content: "\e916";
 }
@@ -4158,6 +4235,9 @@ fieldset[disabled] .btn-experimental-pf.active {
 .pficon-unplugged:before {
   content: "\e942";
 }
+.pficon-vcenter:before {
+  content: "\e94d";
+}
 .pficon-virtual-machine:before {
   content: "\e90f";
 }
@@ -4710,6 +4790,11 @@ a.disabled {
     width: calc(75% - 40px);
   }
 }
+.list-view-pf .close {
+  float: none;
+  position: absolute;
+  right: 15px;
+}
 .list-view-pf-actions {
   float: right;
   margin-bottom: 20px;
@@ -4971,7 +5056,7 @@ a.disabled {
   margin: -1px -15px 0;
   -ms-flex-order: 3;
       order: 3;
-  padding: 10px 15px;
+  padding: 15px;
   position: relative;
   width: 100%;
 }
@@ -6475,6 +6560,7 @@ a.disabled {
 }
 .drawer-pf-notification.unread .drawer-pf-notification-message {
   font-weight: bold;
+  cursor: pointer;
 }
 .drawer-pf-notification.expanded-notification .date {
   border-right: none;
@@ -6493,9 +6579,6 @@ a.disabled {
 .expanded-notification .drawer-pf-notification-message {
   display: inline-block;
 }
-.drawer-pf-notifications-non-clickable .drawer-pf-notification:hover {
-  background-color: #fff;
-}
 .drawer-pf-title {
   background-color: #fafafa;
   border-bottom: 1px solid #d1d1d1;
diff --git a/themes/src/main/node_modules/patternfly/tests/build/less/patternfly-additions.css.map b/themes/src/main/node_modules/patternfly/tests/build/less/patternfly-additions.css.map
index 4698ed7..d7a5023 100644
--- a/themes/src/main/node_modules/patternfly/tests/build/less/patternfly-additions.css.map
+++ b/themes/src/main/node_modules/patternfly/tests/build/less/patternfly-additions.css.map
@@ -1 +1 @@
-{"version":3,"sources":["node_modules/bootstrap-slider/src/less/rules.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","node_modules/patternfly-bootstrap-combobox/less/combobox.less","node_modules/bootstrap-datepicker/less/datepicker3.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap-select/less/bootstrap-select.less","node_modules/bootstrap-switch/src/less/bootstrap3/bootstrap-switch.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap-touchspin/dist/jquery.bootstrap-touchspin.css","node_modules/c3/c3.css","node_modules/eonasdan-bootstrap-datetimepicker/src/less/_bootstrap-datetimepicker.less","node_modules/eonasdan-bootstrap-datetimepicker/src/less/bootstrap-datetimepicker-build.less","src/less/mixins.less","src/less/about-modal.less","src/less/application-launcher.less","src/less/blank-slate.less","src/less/bootstrap-combobox.less","src/less/variables.less","src/less/bootstrap-datepicker.less","src/less/bootstrap-mixin-overrides.less","src/less/bootstrap-select.less","src/less/bootstrap-slider.less","src/less/bootstrap-switch.less","src/less/bootstrap-touchspin.less","src/less/bootstrap-treeview.less","src/less/cards.less","src/less/card-view.less","src/less/charts.less","src/less/close.less","src/less/datatables.less","node_modules/bootstrap/less/mixins/reset-filter.less","src/less/experimental-features.less","src/less/filter.less","src/less/footer.less","src/less/icons.less","src/less/infotip.less","src/less/layouts.less","src/less/links.less","src/less/list-pf.less","src/less/list-view.less","node_modules/bootstrap/less/mixins/clearfix.less","src/less/list-view-dnd.less","src/less/login.less","src/less/navbar.less","node_modules/font-awesome/less/variables.less","src/less/navbar-alt.less","src/less/navbar-vertical.less","src/less/nav-vertical-alt.less","src/less/notifications-drawer.less","src/less/search.less","src/less/sidebar.less","src/less/skip-to-content.less","src/less/spinner.less","src/less/syntax-highlighting.less","src/less/table-view.less","src/less/time-picker.less","src/less/toast.less","src/less/toolbar.less","src/less/vertical-nav.less","src/less/wizard.less"],"names":[],"mappings":"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","sourcesContent":[".slider {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n\tposition: relative;\n\t&.slider-horizontal {\n\t\twidth: @slider-horizontal-width;\n\t\theight: @slider-line-height;\n\t\t.slider-track {\n\t\t\theight: (@slider-line-height/2);\n\t\t\twidth: 100%;\n\t\t\tmargin-top: (-@slider-line-height/4);\n\t\t\ttop: 50%;\n\t\t\tleft: 0;\n\t\t}\n\t\t.slider-selection, .slider-track-low, .slider-track-high {\n\t\t\theight: 100%;\n\t\t\ttop: 0;\n\t\t\tbottom: 0;\n\t\t}\n\t\t.slider-tick,\n\t\t.slider-handle {\n\t\t\tmargin-left: (-@slider-line-height/2);\n\t\t\t&.triangle {\n\t\t\t\tposition: relative;\n\t\t\t\ttop: 50%;\n\t\t\t\ttransform: translateY(-50%);\n\t\t\t\tborder-width: 0 (@slider-line-height/2) (@slider-line-height/2) (@slider-line-height/2);\n\t\t\t\twidth: 0;\n\t\t\t\theight: 0;\n\t\t\t\tborder-bottom-color: @slider-primary-bottom;\n\t\t\t\tmargin-top: 0;\n\t\t\t}\n\t\t}\n\t\t.slider-tick-container {\n\t\t\twhite-space: nowrap;\n\t\t\tposition: absolute;\n    \ttop: 0;\n    \tleft: 0;\n    \twidth: 100%;\n\t\t}\n\t\t.slider-tick-label-container {\n\t\t\twhite-space: nowrap;\n\t\t\tmargin-top: @slider-line-height;\n\n\t\t\t.slider-tick-label {\n\t\t\t\tpadding-top: @slider-line-height * .2;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\ttext-align: center;\n\t\t\t}\n\t\t}\n\t\t&.slider-rtl {\n\t\t\t.slider-track {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t\t.slider-tick,\n\t\t\t.slider-handle {\n\t\t\t\tmargin-left: initial;\n\t\t\t\tmargin-right: (-@slider-line-height/2);\n\t\t\t}\n\t\t\t.slider-tick-container {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t}\n\t}\n\t&.slider-vertical {\n\t\theight: @slider-vertical-height;\n\t\twidth: @slider-line-height;\n\t\t.slider-track {\n\t\t\twidth: (@slider-line-height/2);\n\t\t\theight: 100%;\n\t\t\tleft: 25%;\n\t\t\ttop: 0;\n\t\t}\n\t\t.slider-selection {\n\t\t\twidth: 100%;\n\t\t\tleft: 0;\n\t\t\ttop: 0;\n\t\t\tbottom: 0;\n\t\t}\n\t\t.slider-track-low, .slider-track-high {\n\t\t\twidth: 100%;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t}\n\t\t.slider-tick,\n\t\t.slider-handle {\n\t\t\tmargin-top: (-@slider-line-height/2);\n\t\t\t&.triangle {\n\t\t\t\tborder-width: (@slider-line-height/2) 0 (@slider-line-height/2) (@slider-line-height/2);\n\t\t\t\twidth: 1px;\n\t\t\t\theight: 1px;\n\t\t\t\tborder-left-color: @slider-primary-bottom;\n\t\t\t\tborder-right-color: @slider-primary-bottom;\n\t\t\t\tmargin-left: 0;\n\t\t\t\tmargin-right: 0;\n\t\t\t}\n\t\t}\n\t\t.slider-tick-label-container {\n\t\t\twhite-space: nowrap;\n\n\t\t\t.slider-tick-label {\n\t\t\t\tpadding-left: @slider-line-height * .2;\n\t\t\t}\n\t\t}\n\n\t\t&.slider-rtl {\n\t\t\t.slider-track {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 25%;\n\t\t\t}\n\t\t\t.slider-selection {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t\t.slider-tick,\n\t\t\t.slider-handle {\n\t\t\t\t&.triangle {\n\t\t\t\t\tborder-width: (@slider-line-height/2) (@slider-line-height/2) (@slider-line-height/2) 0;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.slider-tick-label-container {\n\t\t\t\t.slider-tick-label {\n\t\t\t\t\tpadding-left: initial;\n\t\t\t\t\tpadding-right: @slider-line-height * .2;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t&.slider-disabled {\n\t\t.slider-handle {\n\t\t\t#gradient > .vertical(@slider-gray-2, @slider-gray-1);\n\t\t}\n\t\t.slider-track {\n\t\t\t#gradient > .vertical(@slider-gray-3, @slider-gray-4);\n\t\t\tcursor: not-allowed;\n\t\t}\n\t}\n\tinput {\n\t\tdisplay: none;\n\t}\n\t.tooltip {\n\t\t&.top {\n\t\t\tmargin-top: -36px;\n\t\t}\n\t}\n\t.tooltip-inner {\n\t\twhite-space: nowrap;\n\t\tmax-width: none;\n\t}\n\t.hide {\n\t\tdisplay: none;\n\t}\n}\n.slider-track {\n\tposition: absolute;\n\tcursor: pointer;\n\t#gradient > .vertical(@slider-gray-5, @slider-gray-6);\n\t.box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n\tborder-radius: @border-radius-base;\n}\n.slider-selection {\n\tposition: absolute;\n\t#gradient > .vertical(@slider-gray-6, @slider-gray-5);\n\t.box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n\t.box-sizing(border-box);\n\tborder-radius: @border-radius-base;\n}\n.slider-selection.tick-slider-selection {\n\t#gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n}\n.slider-track-low, .slider-track-high {\n\tposition: absolute;\n\tbackground: transparent;\n\t.box-sizing(border-box);\n\tborder-radius: @border-radius-base;\n}\n.slider-handle {\n\tposition: absolute;\n\ttop: 0;\n\twidth: @slider-line-height;\n\theight: @slider-line-height;\n\tbackground-color: @slider-primary;\n\t#gradient > .vertical(@slider-primary-top, @slider-primary-bottom);\n\tfilter: none;\n\t.box-shadow(~\"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)\");\n\tborder: 0px solid transparent;\n\t&.round {\n\t\tborder-radius: 50%;\n\t}\n\t&.triangle {\n\t\tbackground: transparent none;\n\t}\n\t&.custom {\n\t\tbackground: transparent none;\n\t\t&::before{\n\t\t\tline-height: @slider-line-height;\n\t\t\tfont-size: 20px;\n\t\t\tcontent: '\\2605'; //unicode star character\n\t\t\tcolor: @slider-unicode-color;\n\t\t}\n\t}\n}\n.slider-tick {\n\tposition: absolute;\n\twidth: @slider-line-height;\n\theight: @slider-line-height;\n\t#gradient.vertical(@slider-gray-6, @slider-gray-5);\n\t.box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n\t.box-sizing(border-box);\n\tfilter: none;\n\topacity: 0.8;\n\tborder: 0px solid transparent;\n\t&.round {\n\t\tborder-radius: 50%;\n\t}\n\t&.triangle {\n\t\tbackground: transparent none;\n\t}\n\t&.custom {\n\t\tbackground: transparent none;\n\t\t&::before{\n\t\t\tline-height: @slider-line-height;\n\t\t\tfont-size: 20px;\n\t\t\tcontent: '\\2605'; //unicode star character\n\t\t\tcolor: @slider-unicode-color;\n\t\t}\n\t}\n\t&.in-selection {\n\t\t#gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n\t\topacity: 1;\n\t}\n}\n","// Gradients\n\n#gradient {\n\n  // Horizontal gradient, from left to right\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  // Vertical gradient, from top to bottom\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12\n    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n    background-repeat: repeat-x;\n    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n  }\n  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .radial(@inner-color: #555; @outer-color: #333) {\n    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n    background-image: radial-gradient(circle, @inner-color, @outer-color);\n    background-repeat: no-repeat;\n  }\n  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n  }\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n  -webkit-animation: @animation;\n       -o-animation: @animation;\n          animation: @animation;\n}\n.animation-name(@name) {\n  -webkit-animation-name: @name;\n          animation-name: @name;\n}\n.animation-duration(@duration) {\n  -webkit-animation-duration: @duration;\n          animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n  -webkit-animation-timing-function: @timing-function;\n          animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n  -webkit-animation-delay: @delay;\n          animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n  -webkit-animation-iteration-count: @iteration-count;\n          animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n  -webkit-animation-direction: @direction;\n          animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n  -webkit-animation-fill-mode: @fill-mode;\n          animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n  -webkit-backface-visibility: @visibility;\n     -moz-backface-visibility: @visibility;\n          backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n          box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n  -webkit-box-sizing: @boxmodel;\n     -moz-box-sizing: @boxmodel;\n          box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n  -webkit-column-count: @column-count;\n     -moz-column-count: @column-count;\n          column-count: @column-count;\n  -webkit-column-gap: @column-gap;\n     -moz-column-gap: @column-gap;\n          column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n  word-wrap: break-word;\n  -webkit-hyphens: @mode;\n     -moz-hyphens: @mode;\n      -ms-hyphens: @mode; // IE10+\n       -o-hyphens: @mode;\n          hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  // Firefox\n  &::-moz-placeholder {\n    color: @color;\n    opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n  }\n  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n  -webkit-transform: scale(@ratio);\n      -ms-transform: scale(@ratio); // IE9 only\n       -o-transform: scale(@ratio);\n          transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n  -webkit-transform: scale(@ratioX, @ratioY);\n      -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n       -o-transform: scale(@ratioX, @ratioY);\n          transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n  -webkit-transform: scaleX(@ratio);\n      -ms-transform: scaleX(@ratio); // IE9 only\n       -o-transform: scaleX(@ratio);\n          transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n  -webkit-transform: scaleY(@ratio);\n      -ms-transform: scaleY(@ratio); // IE9 only\n       -o-transform: scaleY(@ratio);\n          transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n  -webkit-transform: skewX(@x) skewY(@y);\n      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n       -o-transform: skewX(@x) skewY(@y);\n          transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n  -webkit-transform: translate(@x, @y);\n      -ms-transform: translate(@x, @y); // IE9 only\n       -o-transform: translate(@x, @y);\n          transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n  -webkit-transform: translate3d(@x, @y, @z);\n          transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees); // IE9 only\n       -o-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n  -webkit-transform: rotateX(@degrees);\n      -ms-transform: rotateX(@degrees); // IE9 only\n       -o-transform: rotateX(@degrees);\n          transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n  -webkit-transform: rotateY(@degrees);\n      -ms-transform: rotateY(@degrees); // IE9 only\n       -o-transform: rotateY(@degrees);\n          transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n  -webkit-perspective: @perspective;\n     -moz-perspective: @perspective;\n          perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n  -webkit-perspective-origin: @perspective;\n     -moz-perspective-origin: @perspective;\n          perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n  -webkit-transform-origin: @origin;\n     -moz-transform-origin: @origin;\n      -ms-transform-origin: @origin; // IE9 only\n          transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n  -webkit-transition: @transition;\n       -o-transition: @transition;\n          transition: @transition;\n}\n.transition-property(@transition-property) {\n  -webkit-transition-property: @transition-property;\n          transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n  -webkit-transition-delay: @transition-delay;\n          transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n  -webkit-transition-duration: @transition-duration;\n          transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n  -webkit-transition-timing-function: @timing-function;\n          transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n  -webkit-transition: -webkit-transform @transition;\n     -moz-transition: -moz-transform @transition;\n       -o-transition: -o-transform @transition;\n          transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n  -webkit-user-select: @select;\n     -moz-user-select: @select;\n      -ms-user-select: @select; // IE10+\n          user-select: @select;\n}\n","@media (min-width: 768px) {\n  .form-search,\n  .form-inline {\n    .combobox-container {\n      display: inline-block;\n      margin-bottom: 0;\n      vertical-align: top;\n      .input-group-addon {\n        width: auto;\n      }\n    }\n  }\n}\n\n.combobox-selected .caret {\n  display: none;\n}\n\n/* :not doesn't work in IE8 */\n.combobox-container:not(.combobox-selected) .glyphicon-remove {\n  display: none;\n}\n\n.typeahead-long {\n  max-height: 300px;\n  overflow-y: auto;\n}\n\n.control-group.error .combobox-container{\n  .add-on {\n    color: #B94A48;\n    border-color: #B94A48;\n  }\n  .caret {\n    border-top-color: #B94A48;\n  }\n}\n\n.control-group.warning .combobox-container {\n  .add-on {\n    color: #C09853;\n    border-color: #C09853;\n  }\n  .caret {\n    border-top-color: #C09853;\n  }\n}\n\n.control-group.success .combobox-container{\n  .add-on {\n    color: #468847;\n    border-color: #468847;\n  }\n  .caret {\n    border-top-color: #468847;\n  }\n}\n",".datepicker {\n\tborder-radius: @border-radius-base;\n\t&-inline {\n\t\twidth: 220px;\n\t}\n\tdirection: ltr;\n\t&-rtl {\n\t\tdirection: rtl;\n\t\t&.dropdown-menu { left: auto; }\n\t\ttable tr td span {\n\t\t\tfloat: right;\n\t\t}\n\t}\n\t&-dropdown {\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tpadding: 4px;\n\t\t&:before {\n\t\t\tcontent: '';\n\t\t\tdisplay: inline-block;\n\t\t\tborder-left:   7px solid transparent;\n\t\t\tborder-right:  7px solid transparent;\n\t\t\tborder-bottom: 7px solid @dropdown-border;\n\t\t\tborder-top:    0;\n\t\t\tborder-bottom-color: rgba(0,0,0,.2);\n\t\t\tposition: absolute;\n\t\t}\n\t\t&:after {\n\t\t\tcontent: '';\n\t\t\tdisplay: inline-block;\n\t\t\tborder-left:   6px solid transparent;\n\t\t\tborder-right:  6px solid transparent;\n\t\t\tborder-bottom: 6px solid @dropdown-bg;\n\t\t\tborder-top:    0;\n\t\t\tposition: absolute;\n\t\t}\n\t\t&.datepicker-orient-left:before   { left: 6px; }\n\t\t&.datepicker-orient-left:after    { left: 7px; }\n\t\t&.datepicker-orient-right:before  { right: 6px; }\n\t\t&.datepicker-orient-right:after   { right: 7px; }\n\t\t&.datepicker-orient-bottom:before { top: -7px; }\n\t\t&.datepicker-orient-bottom:after  { top: -6px; }\n\t\t&.datepicker-orient-top:before {\n\t\t\tbottom: -7px;\n\t\t\tborder-bottom: 0;\n\t\t\tborder-top:    7px solid @dropdown-border;\n\t\t}\n\t\t&.datepicker-orient-top:after {\n\t\t\tbottom: -6px;\n\t\t\tborder-bottom: 0;\n\t\t\tborder-top:    6px solid @dropdown-bg;\n\t\t}\n\t}\n\ttable {\n\t\tmargin: 0;\n\t\t-webkit-touch-callout: none;\n\t\t-webkit-user-select: none;\n\t\t-khtml-user-select: none;\n\t\t-moz-user-select: none;\n\t\t-ms-user-select: none;\n\t\tuser-select: none;\n\t\ttr {\n\t\t\ttd, th {\n\t\t\t\ttext-align: center;\n\t\t\t\twidth: 30px;\n\t\t\t\theight: 30px;\n\t\t\t\tborder-radius: 4px;\n\t\t\t\tborder: none;\n\t\t\t}\n\t\t}\n\t}\n\t// Inline display inside a table presents some problems with\n\t// border and background colors.\n\t.table-striped & table tr {\n\t\ttd, th {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\ttable tr td {\n\t\t&.old,\n\t\t&.new {\n\t\t\tcolor: @btn-link-disabled-color;\n\t\t}\n\t\t&.day:hover,\n\t\t&.focused {\n\t\t\tbackground: @gray-lighter;\n\t\t\tcursor: pointer;\n\t\t}\n\t\t&.disabled,\n\t\t&.disabled:hover {\n\t\t\tbackground: none;\n\t\t\tcolor: @btn-link-disabled-color;\n\t\t\tcursor: default;\n\t\t}\n\t\t&.highlighted {\n\t\t\t@highlighted-bg: @state-info-bg;\n\t\t\t.button-variant(#000, @highlighted-bg, darken(@highlighted-bg, 20%));\n\t\t\tborder-radius: 0;\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@highlighted-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @highlighted-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.today {\n\t\t\t@today-bg: lighten(orange, 30%);\n\t\t\t.button-variant(#000, @today-bg, darken(@today-bg, 20%));\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@today-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @today-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range {\n\t\t\t@range-bg: @gray-lighter;\n\t\t\t.button-variant(#000, @range-bg, darken(@range-bg, 20%));\n\t\t\tborder-radius: 0;\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@range-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range.highlighted {\n\t\t\t@range-highlighted-bg: mix(@state-info-bg, @gray-lighter, 50%);\n\t\t\t.button-variant(#000, @range-highlighted-bg, darken(@range-highlighted-bg, 20%));\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@range-highlighted-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-highlighted-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range.today {\n\t\t\t@range-today-bg: mix(orange, @gray-lighter, 50%);\n\t\t\t.button-variant(#000, @range-today-bg, darken(@range-today-bg, 20%));\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-today-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.selected,\n\t\t&.selected.highlighted {\n\t\t\t.button-variant(#fff, @gray-light, @gray);\n\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t}\n\t\t&.active,\n\t\t&.active.highlighted {\n\t\t\t.button-variant(@btn-primary-color, @btn-primary-bg, @btn-primary-border);\n\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t}\n\t\tspan {\n\t\t\tdisplay: block;\n\t\t\twidth: 23%;\n\t\t\theight: 54px;\n\t\t\tline-height: 54px;\n\t\t\tfloat: left;\n\t\t\tmargin: 1%;\n\t\t\tcursor: pointer;\n\t\t\tborder-radius: 4px;\n\t\t\t&:hover,\n\t\t\t&.focused {\n\t\t\t\tbackground: @gray-lighter;\n\t\t\t}\n\t\t\t&.disabled,\n\t\t\t&.disabled:hover {\n\t\t\t\tbackground: none;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t\tcursor: default;\n\t\t\t}\n\t\t\t&.active,\n\t\t\t&.active:hover,\n\t\t\t&.active.disabled,\n\t\t\t&.active.disabled:hover {\n\t\t\t\t.button-variant(@btn-primary-color, @btn-primary-bg, @btn-primary-border);\n\t\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t\t}\n\t\t\t&.old,\n\t\t\t&.new {\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t}\n\n\t.datepicker-switch {\n\t\twidth: 145px;\n\t}\n\n\t.datepicker-switch,\n\t.prev,\n\t.next,\n\ttfoot tr th {\n\t\tcursor: pointer;\n\t\t&:hover {\n\t\t\tbackground: @gray-lighter;\n\t\t}\n\t}\n\n\t.prev, .next {\n\t\t&.disabled {\n\t\t\tvisibility: hidden;\n\t\t}\n\t}\n\n\t// Basic styling for calendar-week cells\n\t.cw {\n\t\tfont-size: 10px;\n\t\twidth: 12px;\n\t\tpadding: 0 2px 0 5px;\n\t\tvertical-align: middle;\n\t}\n}\n.input-group.date .input-group-addon {\n\tcursor: pointer;\n}\n.input-daterange {\n\twidth: 100%;\n\tinput {\n\t\ttext-align: center;\n\t}\n\tinput:first-child {\n\t\tborder-radius: 3px 0 0 3px;\n\t}\n\tinput:last-child {\n\t\tborder-radius: 0 3px 3px 0;\n\t}\n\t.input-group-addon {\n\t\twidth: auto;\n\t\tmin-width: 16px;\n\t\tpadding: 4px 5px;\n\t\tline-height: @line-height-base;\n\t\ttext-shadow: 0 1px 0 #fff;\n\t\tborder-width: 1px 0;\n\t\tmargin-left: -5px;\n\t\tmargin-right: -5px;\n\t}\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n  color: @color;\n  background-color: @background;\n  border-color: @border;\n\n  &:focus,\n  &.focus {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 25%);\n  }\n  &:hover {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n\n    &:hover,\n    &:focus,\n    &.focus {\n      color: @color;\n      background-color: darken(@background, 17%);\n          border-color: darken(@border, 25%);\n    }\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    background-image: none;\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: @background;\n          border-color: @border;\n    }\n  }\n\n  .badge {\n    color: @background;\n    background-color: @color;\n  }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n}\n","@import \"variables\";\n\n// Mixins\n.cursor-disabled() {\n  cursor: not-allowed;\n}\n\n// Rules\nselect.bs-select-hidden,\nselect.selectpicker {\n  display: none !important;\n}\n\n.bootstrap-select {\n  width: 220px \\0; /*IE9 and below*/\n\n  // The selectpicker button\n  > .dropdown-toggle {\n    width: 100%;\n    padding-right: 25px;\n    z-index: 1;\n\n    &.bs-placeholder,\n    &.bs-placeholder:hover,\n    &.bs-placeholder:focus,\n    &.bs-placeholder:active { color: @input-color-placeholder; }\n  }\n\n  > select {\n    position: absolute !important;\n    bottom: 0;\n    left: 50%;\n    display: block !important;\n    width: 0.5px !important;\n    height: 100% !important;\n    padding: 0 !important;\n    opacity: 0 !important;\n    border: none;\n\n    &.mobile-device {\n      top: 0;\n      left: 0;\n      display: block !important;\n      width: 100% !important;\n      z-index: 2;\n    }\n  }\n\n  // Error display\n  .has-error & .dropdown-toggle,\n  .error & .dropdown-toggle {\n    border-color: @color-red-error;\n  }\n\n  &.fit-width {\n    width: auto !important;\n  }\n\n  &:not([class*=\"col-\"]):not([class*=\"form-control\"]):not(.input-group-btn) {\n    width: @width-default;\n  }\n\n  .dropdown-toggle:focus {\n    outline: thin dotted #333333 !important;\n    outline: 5px auto -webkit-focus-ring-color !important;\n    outline-offset: -2px;\n  }\n}\n\n.bootstrap-select.form-control {\n  margin-bottom: 0;\n  padding: 0;\n  border: none;\n\n  &:not([class*=\"col-\"]) {\n    width: 100%;\n  }\n\n  &.input-group-btn {\n    z-index: auto;\n\n    &:not(:first-child):not(:last-child) {\n      > .btn {\n        border-radius: 0;\n      }\n    }\n  }\n}\n\n// The selectpicker components\n.bootstrap-select.btn-group {\n  &:not(.input-group-btn),\n  &[class*=\"col-\"] {\n    float: none;\n    display: inline-block;\n    margin-left: 0;\n  }\n\n  // Forces the pull to the right, if necessary\n  &,\n  &[class*=\"col-\"],\n  .row &[class*=\"col-\"] {\n    &.dropdown-menu-right {\n      float: right;\n    }\n  }\n\n  .form-inline &,\n  .form-horizontal &,\n  .form-group & {\n    margin-bottom: 0;\n  }\n\n  .form-group-lg &.form-control,\n  .form-group-sm &.form-control {\n    padding: 0;\n\n    .dropdown-toggle {\n      height: 100%;\n      font-size: inherit;\n      line-height: inherit;\n      border-radius: inherit;\n    }\n  }\n\n  // Set the width of the live search (and any other form control within an inline form)\n  // see https://github.com/silviomoreto/bootstrap-select/issues/685\n  .form-inline & .form-control {\n    width: 100%;\n  }\n\n  &.disabled,\n  > .disabled {\n    .cursor-disabled();\n\n    &:focus {\n      outline: none !important;\n    }\n  }\n\n  &.bs-container {\n    position: absolute;\n    height: 0 !important;\n    padding: 0 !important;\n    \n    .dropdown-menu {\n      z-index: @zindex-select-dropdown;\n    }\n  }\n\n  // The selectpicker button\n  .dropdown-toggle {\n    .filter-option {\n      display: inline-block;\n      overflow: hidden;\n      width: 100%;\n      text-align: left;\n    }\n\n    .caret {\n      position: absolute;\n      top: 50%;\n      right: 12px;\n      margin-top: -2px;\n      vertical-align: middle;\n    }\n  }\n\n  &[class*=\"col-\"] .dropdown-toggle {\n    width: 100%;\n  }\n\n  // The selectpicker dropdown\n  .dropdown-menu {\n    min-width: 100%;\n    box-sizing: border-box;\n\n    &.inner {\n      position: static;\n      float: none;\n      border: 0;\n      padding: 0;\n      margin: 0;\n      border-radius: 0;\n      box-shadow: none;\n    }\n\n    li {\n      position: relative;\n\n      &.active small {\n        color: #fff;\n      }\n\n      &.disabled a {\n        .cursor-disabled();\n      }\n\n      a {\n        cursor: pointer;\n        user-select: none;\n\n        &.opt {\n          position: relative;\n          padding-left: 2.25em;\n        }\n\n        span.check-mark {\n          display: none;\n        }\n\n        span.text {\n          display: inline-block;\n        }\n      }\n\n      small {\n        padding-left: 0.5em;\n      }\n    }\n\n    .notify {\n      position: absolute;\n      bottom: 5px;\n      width: 96%;\n      margin: 0 2%;\n      min-height: 26px;\n      padding: 3px 5px;\n      background: rgb(245, 245, 245);\n      border: 1px solid rgb(227, 227, 227);\n      box-shadow: inset 0 1px 1px fade(rgb(0, 0, 0), 5%);\n      pointer-events: none;\n      opacity: 0.9;\n      box-sizing: border-box;\n    }\n  }\n\n  .no-results {\n    padding: 3px;\n    background: #f5f5f5;\n    margin: 0 5px;\n    white-space: nowrap;\n  }\n\n  &.fit-width .dropdown-toggle {\n    .filter-option {\n      position: static;\n    }\n\n    .caret {\n      position: static;\n      top: auto;\n      margin-top: -1px;\n    }\n  }\n\n  &.show-tick .dropdown-menu li {\n    &.selected a span.check-mark {\n      position: absolute;\n      display: inline-block;\n      right: 15px;\n      margin-top: 5px;\n    }\n\n    a span.text {\n      margin-right: 34px;\n    }\n  }\n}\n\n.bootstrap-select.show-menu-arrow {\n  &.open > .dropdown-toggle {\n    z-index: (@zindex-select-dropdown + 1);\n  }\n\n  .dropdown-toggle {\n    &:before {\n      content: '';\n      border-left: 7px solid transparent;\n      border-right: 7px solid transparent;\n      border-bottom: 7px solid @color-grey-arrow;\n      position: absolute;\n      bottom: -4px;\n      left: 9px;\n      display: none;\n    }\n\n    &:after {\n      content: '';\n      border-left: 6px solid transparent;\n      border-right: 6px solid transparent;\n      border-bottom: 6px solid white;\n      position: absolute;\n      bottom: -4px;\n      left: 10px;\n      display: none;\n    }\n  }\n\n  &.dropup .dropdown-toggle {\n    &:before {\n      bottom: auto;\n      top: -3px;\n      border-top: 7px solid @color-grey-arrow;\n      border-bottom: 0;\n    }\n\n    &:after {\n      bottom: auto;\n      top: -3px;\n      border-top: 6px solid white;\n      border-bottom: 0;\n    }\n  }\n\n  &.pull-right .dropdown-toggle {\n    &:before {\n      right: 12px;\n      left: auto;\n    }\n\n    &:after {\n      right: 13px;\n      left: auto;\n    }\n  }\n\n  &.open > .dropdown-toggle {\n    &:before,\n    &:after {\n      display: block;\n    }\n  }\n}\n\n.bs-searchbox,\n.bs-actionsbox,\n.bs-donebutton {\n  padding: 4px 8px;\n}\n\n.bs-actionsbox {\n  width: 100%;\n  box-sizing: border-box;\n\n  & .btn-group button {\n    width: 50%;\n  }\n}\n\n.bs-donebutton {\n  float: left;\n  width: 100%;\n  box-sizing: border-box;\n\n  & .btn-group button {\n    width: 100%;\n  }\n}\n\n.bs-searchbox {\n  & + .bs-actionsbox {\n    padding: 0 8px 4px;\n  }\n\n  & .form-control {\n    margin-bottom: 0;\n    width: 100%;\n    float: none;\n  }\n}\n","@bootstrap-switch-base: bootstrap-switch;\n\n.@{bootstrap-switch-base} {\n  display: inline-block;\n  direction: ltr;\n  cursor: pointer;\n  border-radius: @border-radius-base;\n  border: 1px solid;\n  border-color: @btn-default-border;\n  position: relative;\n  text-align: left;\n  overflow: hidden;\n  line-height: 8px;\n  z-index: 0;\n  .user-select(none);\n  vertical-align: middle;\n  .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n  .@{bootstrap-switch-base}-container {\n    display: inline-block;\n    top: 0;\n    border-radius: @border-radius-base;\n    .translate3d(0, 0, 0);\n  }\n\n  .@{bootstrap-switch-base}-handle-on,\n  .@{bootstrap-switch-base}-handle-off,\n  .@{bootstrap-switch-base}-label {\n    .box-sizing(border-box);\n    cursor: pointer;\n    display: table-cell;\n    vertical-align: middle;\n    padding: @padding-base-vertical @padding-base-horizontal;\n    font-size: @font-size-base;\n    line-height: @line-height-computed;\n  }\n\n  .@{bootstrap-switch-base}-handle-on,\n  .@{bootstrap-switch-base}-handle-off {\n    text-align: center;\n    z-index: 1;\n\n    &.@{bootstrap-switch-base}-primary {\n      color: #fff;\n      background: @btn-primary-bg;\n    }\n\n    &.@{bootstrap-switch-base}-info {\n      color: #fff;\n      background: @btn-info-bg;\n    }\n\n    &.@{bootstrap-switch-base}-success {\n      color: #fff;\n      background: @btn-success-bg;\n    }\n\n    &.@{bootstrap-switch-base}-warning {\n      background: @btn-warning-bg;\n      color: #fff;\n    }\n\n    &.@{bootstrap-switch-base}-danger {\n      color: #fff;\n      background: @btn-danger-bg;\n    }\n\n    &.@{bootstrap-switch-base}-default {\n      color: #000;\n      background: @gray-lighter;\n    }\n  }\n\n  .@{bootstrap-switch-base}-label {\n    text-align: center;\n    margin-top: -1px;\n    margin-bottom: -1px;\n    z-index: 100;\n    color: @btn-default-color;\n    background: @btn-default-bg;\n  }\n\n  span::before {\n    content: \"\\200b\";\n  }\n\n  .@{bootstrap-switch-base}-handle-on {\n    .border-left-radius(@border-radius-base - 1);\n  }\n\n  .@{bootstrap-switch-base}-handle-off {\n    .border-right-radius(@border-radius-base - 1);\n  }\n\n  input[type='radio'],\n  input[type='checkbox'] {\n    position: absolute !important;\n    top: 0;\n    left: 0;\n    margin: 0;\n    z-index: -1;\n    .opacity(0);\n    visibility: hidden;\n  }\n\n  &.@{bootstrap-switch-base}-mini {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-xs-vertical @padding-xs-horizontal;\n      font-size: @font-size-small;\n      line-height: @line-height-small;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-small {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-small-vertical @padding-small-horizontal;\n      font-size: @font-size-small;\n      line-height: @line-height-small;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-large {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-base-vertical @padding-large-horizontal;\n      font-size: @font-size-large;\n      line-height: @line-height-large;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-disabled,\n  &.@{bootstrap-switch-base}-readonly,\n  &.@{bootstrap-switch-base}-indeterminate {\n    cursor: default !important;\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      .opacity(.5);\n      cursor: default !important;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-animate {\n\n    .@{bootstrap-switch-base}-container {\n      .transition(margin-left .5s);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-inverse {\n\n    .@{bootstrap-switch-base}-handle-on {\n      .border-left-radius(0);\n      .border-right-radius(@border-radius-base - 1);\n    }\n\n    .@{bootstrap-switch-base}-handle-off {\n      .border-right-radius(0);\n      .border-left-radius(@border-radius-base - 1);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-focused {\n    @color-rgba: rgba(red(@input-border-focus), green(@input-border-focus), blue(@input-border-focus), .6);\n    border-color: @input-border-focus;\n    outline: 0;\n    .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n  }\n\n  &.@{bootstrap-switch-base}-on,\n  &.@{bootstrap-switch-base}-inverse.@{bootstrap-switch-base}-off {\n\n    .@{bootstrap-switch-base}-label {\n      .border-right-radius(@border-radius-base - 1);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-off,\n  &.@{bootstrap-switch-base}-inverse.@{bootstrap-switch-base}-on {\n\n\n    .@{bootstrap-switch-base}-label {\n      .border-left-radius(@border-radius-base - 1);\n    }\n  }\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n  border-top-right-radius: @radius;\n   border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n  border-bottom-right-radius: @radius;\n     border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n  border-bottom-right-radius: @radius;\n   border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n  border-bottom-left-radius: @radius;\n     border-top-left-radius: @radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n  opacity: @opacity;\n  // IE8 filter\n  @opacity-ie: (@opacity * 100);\n  filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","/*\n *  Bootstrap TouchSpin - v3.1.1\n *  A mobile and touch friendly input spinner component for Bootstrap 3.\n *  http://www.virtuosoft.eu/code/bootstrap-touchspin/\n *\n *  Made by István Ujj-Mészáros\n *  Under Apache License v2.0 License\n */\n\n.bootstrap-touchspin .input-group-btn-vertical {\n  position: relative;\n  white-space: nowrap;\n  width: 1%;\n  vertical-align: middle;\n  display: table-cell;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical > .btn {\n  display: block;\n  float: none;\n  width: 100%;\n  max-width: 100%;\n  padding: 8px 10px;\n  margin-left: -1px;\n  position: relative;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {\n  border-radius: 0;\n  border-top-right-radius: 4px;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {\n  margin-top: -2px;\n  border-radius: 0;\n  border-bottom-right-radius: 4px;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical i {\n  position: absolute;\n  top: 3px;\n  left: 5px;\n  font-size: 9px;\n  font-weight: normal;\n}\n","/*-- Chart --*/\n.c3 svg {\n  font: 10px sans-serif;\n  -webkit-tap-highlight-color: transparent; }\n\n.c3 path, .c3 line {\n  fill: none;\n  stroke: #000; }\n\n.c3 text {\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  user-select: none; }\n\n.c3-legend-item-tile,\n.c3-xgrid-focus,\n.c3-ygrid,\n.c3-event-rect,\n.c3-bars path {\n  shape-rendering: crispEdges; }\n\n.c3-chart-arc path {\n  stroke: #fff; }\n\n.c3-chart-arc text {\n  fill: #fff;\n  font-size: 13px; }\n\n/*-- Axis --*/\n/*-- Grid --*/\n.c3-grid line {\n  stroke: #aaa; }\n\n.c3-grid text {\n  fill: #aaa; }\n\n.c3-xgrid, .c3-ygrid {\n  stroke-dasharray: 3 3; }\n\n/*-- Text on Chart --*/\n.c3-text.c3-empty {\n  fill: #808080;\n  font-size: 2em; }\n\n/*-- Line --*/\n.c3-line {\n  stroke-width: 1px; }\n\n/*-- Point --*/\n.c3-circle._expanded_ {\n  stroke-width: 1px;\n  stroke: white; }\n\n.c3-selected-circle {\n  fill: white;\n  stroke-width: 2px; }\n\n/*-- Bar --*/\n.c3-bar {\n  stroke-width: 0; }\n\n.c3-bar._expanded_ {\n  fill-opacity: 1;\n  fill-opacity: 0.75; }\n\n/*-- Focus --*/\n.c3-target.c3-focused {\n  opacity: 1; }\n\n.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {\n  stroke-width: 2px; }\n\n.c3-target.c3-defocused {\n  opacity: 0.3 !important; }\n\n/*-- Region --*/\n.c3-region {\n  fill: steelblue;\n  fill-opacity: .1; }\n\n/*-- Brush --*/\n.c3-brush .extent {\n  fill-opacity: .1; }\n\n/*-- Select - Drag --*/\n/*-- Legend --*/\n.c3-legend-item {\n  font-size: 12px; }\n\n.c3-legend-item-hidden {\n  opacity: 0.15; }\n\n.c3-legend-background {\n  opacity: 0.75;\n  fill: white;\n  stroke: lightgray;\n  stroke-width: 1; }\n\n/*-- Title --*/\n.c3-title {\n  font: 14px sans-serif; }\n\n/*-- Tooltip --*/\n.c3-tooltip-container {\n  z-index: 10; }\n\n.c3-tooltip {\n  border-collapse: collapse;\n  border-spacing: 0;\n  background-color: #fff;\n  empty-cells: show;\n  -webkit-box-shadow: 7px 7px 12px -9px #777777;\n  -moz-box-shadow: 7px 7px 12px -9px #777777;\n  box-shadow: 7px 7px 12px -9px #777777;\n  opacity: 0.9; }\n\n.c3-tooltip tr {\n  border: 1px solid #CCC; }\n\n.c3-tooltip th {\n  background-color: #aaa;\n  font-size: 14px;\n  padding: 2px 5px;\n  text-align: left;\n  color: #FFF; }\n\n.c3-tooltip td {\n  font-size: 13px;\n  padding: 3px 6px;\n  background-color: #fff;\n  border-left: 1px dotted #999; }\n\n.c3-tooltip td > span {\n  display: inline-block;\n  width: 10px;\n  height: 10px;\n  margin-right: 6px; }\n\n.c3-tooltip td.value {\n  text-align: right; }\n\n/*-- Area --*/\n.c3-area {\n  stroke-width: 0;\n  opacity: 0.2; }\n\n/*-- Arc --*/\n.c3-chart-arcs-title {\n  dominant-baseline: middle;\n  font-size: 1.3em; }\n\n.c3-chart-arcs .c3-chart-arcs-background {\n  fill: #e0e0e0;\n  stroke: none; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-unit {\n  fill: #000;\n  font-size: 16px; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-max {\n  fill: #777; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-min {\n  fill: #777; }\n\n.c3-chart-arc .c3-gauge-value {\n  fill: #000;\n  /*  font-size: 28px !important;*/ }\n\n.c3-chart-arc.c3-target g path {\n  opacity: 1; }\n\n.c3-chart-arc.c3-target.c3-focused g path {\n  opacity: 1; }\n","/*!\n * Datetimepicker for Bootstrap 3\n * version : 4.17.47\n * https://github.com/Eonasdan/bootstrap-datetimepicker/\n */\n@bs-datetimepicker-timepicker-font-size: 1.2em;\n@bs-datetimepicker-active-bg: @btn-primary-bg;\n@bs-datetimepicker-active-color: @btn-primary-color;\n@bs-datetimepicker-border-radius: @border-radius-base;\n@bs-datetimepicker-btn-hover-bg: @gray-lighter;\n@bs-datetimepicker-disabled-color: @gray-light;\n@bs-datetimepicker-alternate-color: @gray-light;\n@bs-datetimepicker-secondary-border-color: #ccc;\n@bs-datetimepicker-secondary-border-color-rgba: rgba(0, 0, 0, 0.2);\n@bs-datetimepicker-primary-border-color: white;\n@bs-datetimepicker-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n\n.bootstrap-datetimepicker-widget {\n    list-style: none;\n\n    &.dropdown-menu {\n        display: block;\n        margin: 2px 0;\n        padding: 4px;\n        width: 19em;\n\n        &.timepicker-sbs {\n            @media (min-width: @screen-sm-min) {\n                width: 38em;\n            }\n\n            @media (min-width: @screen-md-min) {\n                width: 38em;\n            }\n\n            @media (min-width: @screen-lg-min) {\n                width: 38em;\n            }\n        }\n\n        &:before, &:after {\n            content: '';\n            display: inline-block;\n            position: absolute;\n        }\n\n        &.bottom {\n            &:before {\n                border-left: 7px solid transparent;\n                border-right: 7px solid transparent;\n                border-bottom: 7px solid @bs-datetimepicker-secondary-border-color;\n                border-bottom-color: @bs-datetimepicker-secondary-border-color-rgba;\n                top: -7px;\n                left: 7px;\n            }\n\n            &:after {\n                border-left: 6px solid transparent;\n                border-right: 6px solid transparent;\n                border-bottom: 6px solid @bs-datetimepicker-primary-border-color;\n                top: -6px;\n                left: 8px;\n            }\n        }\n\n        &.top {\n            &:before {\n                border-left: 7px solid transparent;\n                border-right: 7px solid transparent;\n                border-top: 7px solid @bs-datetimepicker-secondary-border-color;\n                border-top-color: @bs-datetimepicker-secondary-border-color-rgba;\n                bottom: -7px;\n                left: 6px;\n            }\n\n            &:after {\n                border-left: 6px solid transparent;\n                border-right: 6px solid transparent;\n                border-top: 6px solid @bs-datetimepicker-primary-border-color;\n                bottom: -6px;\n                left: 7px;\n            }\n        }\n\n        &.pull-right {\n            &:before {\n                left: auto;\n                right: 6px;\n            }\n\n            &:after {\n                left: auto;\n                right: 7px;\n            }\n        }\n    }\n\n    .list-unstyled {\n        margin: 0;\n    }\n\n    a[data-action] {\n        padding: 6px 0;\n    }\n\n    a[data-action]:active {\n        box-shadow: none;\n    }\n\n    .timepicker-hour, .timepicker-minute, .timepicker-second {\n        width: 54px;\n        font-weight: bold;\n        font-size: @bs-datetimepicker-timepicker-font-size;\n        margin: 0;\n    }\n\n    button[data-action] {\n        padding: 6px;\n    }\n\n    .btn[data-action=\"incrementHours\"]::after {\n        .sr-only();\n        content: \"Increment Hours\";\n    }\n\n    .btn[data-action=\"incrementMinutes\"]::after {\n        .sr-only();\n        content: \"Increment Minutes\";\n    }\n\n    .btn[data-action=\"decrementHours\"]::after {\n        .sr-only();\n        content: \"Decrement Hours\";\n    }\n\n    .btn[data-action=\"decrementMinutes\"]::after {\n        .sr-only();\n        content: \"Decrement Minutes\";\n    }\n\n    .btn[data-action=\"showHours\"]::after {\n        .sr-only();\n        content: \"Show Hours\";\n    }\n\n    .btn[data-action=\"showMinutes\"]::after {\n        .sr-only();\n        content: \"Show Minutes\";\n    }\n\n    .btn[data-action=\"togglePeriod\"]::after {\n        .sr-only();\n        content: \"Toggle AM/PM\";\n    }\n\n    .btn[data-action=\"clear\"]::after {\n        .sr-only();\n        content: \"Clear the picker\";\n    }\n\n    .btn[data-action=\"today\"]::after {\n        .sr-only();\n        content: \"Set the date to today\";\n    }\n\n    .picker-switch {\n        text-align: center;\n\n        &::after {\n            .sr-only();\n            content: \"Toggle Date and Time Screens\";\n        }\n\n        td {\n            padding: 0;\n            margin: 0;\n            height: auto;\n            width: auto;\n            line-height: inherit;\n\n            span {\n                line-height: 2.5;\n                height: 2.5em;\n                width: 100%;\n            }\n        }\n    }\n\n    table {\n        width: 100%;\n        margin: 0;\n\n\n        & td,\n        & th {\n            text-align: center;\n            border-radius: @bs-datetimepicker-border-radius;\n        }\n\n        & th {\n            height: 20px;\n            line-height: 20px;\n            width: 20px;\n\n            &.picker-switch {\n                width: 145px;\n            }\n\n            &.disabled,\n            &.disabled:hover {\n                background: none;\n                color: @bs-datetimepicker-disabled-color;\n                cursor: not-allowed;\n            }\n\n            &.prev::after {\n                .sr-only();\n                content: \"Previous Month\";\n            }\n\n            &.next::after {\n                .sr-only();\n                content: \"Next Month\";\n            }\n        }\n\n        & thead tr:first-child th {\n            cursor: pointer;\n\n            &:hover {\n                background: @bs-datetimepicker-btn-hover-bg;\n            }\n        }\n\n        & td {\n            height: 54px;\n            line-height: 54px;\n            width: 54px;\n\n            &.cw {\n                font-size: .8em;\n                height: 20px;\n                line-height: 20px;\n                color: @bs-datetimepicker-alternate-color;\n            }\n\n            &.day {\n                height: 20px;\n                line-height: 20px;\n                width: 20px;\n            }\n\n            &.day:hover,\n            &.hour:hover,\n            &.minute:hover,\n            &.second:hover {\n                background: @bs-datetimepicker-btn-hover-bg;\n                cursor: pointer;\n            }\n\n            &.old,\n            &.new {\n                color: @bs-datetimepicker-alternate-color;\n            }\n\n            &.today {\n                position: relative;\n\n                &:before {\n                    content: '';\n                    display: inline-block;\n                    border: solid transparent;\n                    border-width: 0 0 7px 7px;\n                    border-bottom-color: @bs-datetimepicker-active-bg;\n                    border-top-color: @bs-datetimepicker-secondary-border-color-rgba;\n                    position: absolute;\n                    bottom: 4px;\n                    right: 4px;\n                }\n            }\n\n            &.active,\n            &.active:hover {\n                background-color: @bs-datetimepicker-active-bg;\n                color: @bs-datetimepicker-active-color;\n                text-shadow: @bs-datetimepicker-text-shadow;\n            }\n\n            &.active.today:before {\n                border-bottom-color: #fff;\n            }\n\n            &.disabled,\n            &.disabled:hover {\n                background: none;\n                color: @bs-datetimepicker-disabled-color;\n                cursor: not-allowed;\n            }\n\n            span {\n                display: inline-block;\n                width: 54px;\n                height: 54px;\n                line-height: 54px;\n                margin: 2px 1.5px;\n                cursor: pointer;\n                border-radius: @bs-datetimepicker-border-radius;\n\n                &:hover {\n                    background: @bs-datetimepicker-btn-hover-bg;\n                }\n\n                &.active {\n                    background-color: @bs-datetimepicker-active-bg;\n                    color: @bs-datetimepicker-active-color;\n                    text-shadow: @bs-datetimepicker-text-shadow;\n                }\n\n                &.old {\n                    color: @bs-datetimepicker-alternate-color;\n                }\n\n                &.disabled,\n                &.disabled:hover {\n                    background: none;\n                    color: @bs-datetimepicker-disabled-color;\n                    cursor: not-allowed;\n                }\n            }\n        }\n    }\n\n    &.usetwentyfour {\n        td.hour {\n            height: 27px;\n            line-height: 27px;\n        }\n    }\n\t\n\t&.wider {\n\t\twidth: 21em;\n\t}\n\n\t& .datepicker-decades .decade {\n        line-height: 1.8em !important;\n    }\n}\n\n.input-group.date {\n    & .input-group-addon {\n        cursor: pointer;\n    }\n}\n","// Import bootstrap variables including default color palette and fonts\n@import \"bootstrap/less/variables.less\";\n\n// Import datepicker component\n@import \"_bootstrap-datetimepicker.less\";\n\n//this is here so the compiler doesn't complain about a missing bootstrap mixin\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n","//\n// Patternfly Mixins\n// --------------------------------------------------\n// PatternFly-specific mixins\n\n// Patternfly button variants.\n.button-variant(@color; @background; @background-image-start; @background-image-stop; @border) {\n  background-color: @background;\n  #gradient > .vertical(@background-image-start, @background-image-stop);\n  border-color: @border;\n  color: @color;\n\n  &:hover,\n  &:focus,\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-color: @background;\n    background-image: none;\n    border-color: @border;\n    color: @color;\n  }\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-image: none;\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: darken(@background, 5%);\n          border-color: darken(@border, 7%);\n    }\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &,\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      background-color: @background;\n      border-color: @border;\n    }\n  }\n}\n\n// SASS CONVERSION FIX.\n// Allows inclusion of sr-only rules in nested media queries where @extends .sr-only\n// will not work.\n.sr-only-pf() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n\n.tab-indicator(@background: @gray-light-pf, @left: 15px, @right: 15px) {\n  &:before {\n    background: @background;\n    bottom: -1px;\n    content: \"\";\n    display: block;\n    height: 2px;\n    left: @left;\n    position: absolute;\n    right: @right;\n  }\n}\n\n// Ellipse overflow text\n.text-overflow-pf {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  word-wrap: normal;\n}\n","//\n// About Modal\n// --------------------------------------------------\n\n.about-modal-pf {\n  background-color: @color-pf-black-900;\n  background-image: url(\"@{img-path}/@{modal-about-pf-bg-img}\");\n  background-position: right bottom;\n  background-repeat: no-repeat;\n  background-size: 216px auto;\n  @media (min-width: @screen-sm-min) {\n    background-size: auto;\n  }\n  .modal-body {\n    color: @color-pf-white;\n    padding-bottom: 16px;\n    padding-left: @grid-gutter-width;\n    padding-right: @grid-gutter-width;\n    @media (min-width: @screen-sm-min) {\n      padding-left: (@grid-gutter-width * 2);\n      padding-right: (@grid-gutter-width * 2);\n    }\n  }\n  .modal-header {\n    background-color: transparent;\n  }\n  .pficon-close {\n    color: @color-pf-white;\n  }\n}\n\n.product-versions-pf {\n  margin-bottom: 30px;\n  margin-top: 30px;\n  li {\n    strong {\n      margin-right: (@grid-gutter-width / 4);\n    }\n  }\n}\n\n.trademark-pf {\n  font-size: ceil((@font-size-base - 1));\n}\n","//\n// Application Launcher\n// --------------------------------------------------\n.applauncher-pf {\n\n  display: inline-block;\n  overflow: visible;\n\n  .applauncher-pf-title {\n    .sr-only-pf();\n  }\n\n  .dropdown-toggle {\n    &.disabled {\n      cursor: not-allowed;\n    }\n  }\n\n  &.open > .dropdown-menu {\n    display:flex;\n    flex-wrap:wrap;\n  }\n\n  .applauncher-pf-item {\n    width: 100%;\n  }\n\n  .applauncher-pf-link {\n    display:flex;\n    white-space: initial;\n    align-items: center;\n  }\n\n  &-block-list {\n    .applauncher-pf-item {\n      @media (min-width: @screen-sm-min) {\n        flex:0 0 50%;\n      }\n    }\n\n    .applauncher-pf-link {\n        flex-wrap: wrap;\n      @media (min-width: @screen-sm-min) {\n          flex-direction:column;\n          text-align: center;\n          padding:15px 0;\n          height: 100%;\n      }\n    }\n\n    .applauncher-pf-link-icon {\n      padding: 0;\n    }\n\n    .applauncher-pf-link-title {\n      margin-top: auto;\n    }\n  }//block-list\n\n  &:not(.applauncher-pf-block-list) {\n\n    .applauncher-pf-link {\n      @media (min-width: @screen-sm-min) {\n        padding:@applauncher-pf-dropdown-menu-padding;\n        &-icon {\n          flex:1 0 0;\n          text-align: left;\n        }\n        &-title{flex:3;}\n      }\n    }\n  }\n\n  .dropdown-menu {\n    padding: @applauncher-pf-dropdown-menu-padding;\n    min-width: @applauncher-pf-dropdown-menu-width;\n  }\n\n  .applauncher-pf-link {\n    border-style: solid;\n    border-width: @applauncher-pf-menu-link-border-width;\n    border-color: transparent;\n\n    &:hover {\n      background-color: @applauncher-pf-menu-link-background-color-hover;\n      border-color: @applauncher-pf-menu-link-border-color-hover;\n      color: @applauncher-pf-menu-link-color-hover;\n      text-decoration: none;\n\n      .box-shadow(0 0 2px 0 @applauncher-pf-menu-link-shadow);\n    }\n  }\n\n  .applauncher-pf-link-icon {\n    font-size: 1.2em;\n    text-align: center;\n    width: @applauncher-pf-menu-link-icon-width;\n\n    @media (min-width: @screen-sm-min) {\n      font-size: @applauncher-pf-menu-link-icon-font-size;\n    }\n  }\n\n}//.applauncher-pf\n\n.navbar-utility .applauncher-pf {\n    .dropdown-menu {\n      border-width: @applauncher-pf-menu-link-border-width !important;\n      @media (min-width: @screen-sm-min) {\n              margin-top: 3px;\n              right:0;\n            }\n    }//.dropdown-menu\n}\n\n.navbar-pf, .navbar-pf-alt {\n\n  .navbar-utility .applauncher-pf, .applauncher-pf {\n\n    &.open > a,\n        &.open > a:focus {\n          background-color: @navbar-pf-navbar-nav-active-bg-color;\n          color: @navbar-pf-active-color;\n\n          @media (min-width: @screen-sm-min) {\n            background-color: @navbar-pf-navbar-utility-open-bg-color;\n            border-color: @navbar-pf-navbar-utility-border-color;\n            color: @navbar-pf-navbar-utility-color;\n          }\n        }\n\n        &.open {\n          .dropdown-menu > li > a {\n            @media (max-width: @grid-float-breakpoint-max) {\n              padding-left: 20px;\n              .applauncher-pf-link-icon {\n                padding-right: 20px;\n              }\n            }\n          }\n        }\n\n        &.dropdown > .dropdown-toggle,\n            .dropdown-toggle {\n              background-color: inherit;\n              color: @applauncher-pf-menu-link-color;\n              text-align: left;\n              text-decoration: none;\n              border-width: 0;\n              display: block;\n              padding-left: 20px;\n\n              &.disabled {\n                color: @applauncher-pf-menu-link-color-disabled !important;\n              }\n\n              @media (min-width: @screen-sm-min) {\n                border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n                padding: @applauncher-pf-dropdown-toggle-padding;\n                line-height: 1;\n              }\n        }\n\n        .applauncher-pf-icon {\n              padding-right:@applauncher-pf-icon-padding-right;\n\n              @media (min-width: @screen-sm-min) {\n                padding: 0;\n              }\n            }\n\n        .applauncher-pf-title {\n          display: inline;\n          position: relative;\n        }\n\n\n        .applauncher-pf-link {\n          overflow: hidden;\n          width: 100%;\n\n          &:hover {\n            background-color: transparent;\n            border-color: transparent;\n            .box-shadow(none);\n          }\n        }\n\n        .applauncher-pf-link-title {\n          overflow: hidden;\n        }\n\n        @media (min-width: @screen-sm-min) {\n          //Apply mixin\n          .applauncher-pf;\n        }\n    }\n}//.navbar-pf .navbar-pf-alt ovrerides\n\n.navbar-iconic {\n\n  .navbar-utility .applauncher-pf,\n  .applauncher-pf {\n\n    &.dropdown > .dropdown-toggle,\n    .dropdown-toggle {\n\n      @media (min-width: @screen-sm-min) {\n        padding: 22px 10px;\n        line-height: inherit;\n      }\n    }\n  }\n}\n","//\n// Blank Slate\n// --------------------------------------------------\n\n.blank-slate-pf {\n  @media (min-width: @screen-sm-min) {\n    padding: (@jumbotron-padding * 2) (@jumbotron-padding * 2);\n  }\n  @media (min-width: @screen-md-min) {\n    padding: (@jumbotron-padding * 3) (@jumbotron-padding * 4);\n  }\n  background-color: @well-bg;\n  border: 1px solid @well-border;\n  border-radius: @border-radius-base;\n  margin-bottom: 20px;\n  padding: @jumbotron-padding;\n  text-align: center;\n  .blank-slate-pf-icon {\n    color: @gray-light;\n    font-size: (@font-size-h1 * 2.4);\n    line-height: (@font-size-h1 * 2.4);\n  }\n  .blank-slate-pf-main-action {\n    margin-top: @line-height-computed;\n  }\n  .blank-slate-pf-secondary-action {\n    margin-top: @line-height-computed;\n  }\n  button {\n    margin-right: 5px;\n    &:last-of-type {\n      margin-right: 0;\n    }\n  }\n}\n","//\n// Bootstrap-Combobox\n// --------------------------------------------------\n\n.combobox-container {\n  &.combobox-selected .glyphicon-remove {\n    display: inline-block;\n  }\n  .caret {\n    margin-left: 0;\n  }\n  .combobox::-ms-clear {\n    display: none;\n  }\n  .dropdown-menu {\n    margin-top: -1px;\n    width: 100%;\n  }\n  .glyphicon-remove {\n    display: none;\n    top: auto;\n    width: 12px;\n    &:before {\n      content: \"\\e60b\";\n      font-family: @icon-font-name-pf;\n    }\n  }\n  .input-group-addon {\n    .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n    position: relative; // IE8\n    &:active {\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n    }\n  }\n}\n","//\n// Variables\n// --------------------------------------------------\n// Bootstrap overrides and PatternFly-specific variables\n\n// Sass compass/sprockets asset helper flag\n// ----------------------\n@pf-sass-asset-helper:                                              false;\n\n// PatternFly-specific\n// -------------------\n@import \"color-variables.less\";\n\n@applauncher-pf-dropdown-menu-border-width:                         1px;\n@applauncher-pf-dropdown-menu-padding:                              9px;\n@applauncher-pf-dropdown-menu-width:                                220px;\n@applauncher-pf-dropdown-toggle-padding:                            7px 10px;\n@applauncher-pf-icon-padding-right:                                 4px;\n@applauncher-pf-menu-link-border-color:                             @color-pf-white;\n@applauncher-pf-menu-link-border-color-hover:                       @color-pf-black-400;\n@applauncher-pf-menu-link-border-width:                             1px;\n@applauncher-pf-menu-link-color:                                    @color-pf-black-300;\n@applauncher-pf-menu-link-color-disabled:                           @color-pf-black-500;\n@applauncher-pf-menu-link-color-hover:                              @color-pf-blue-400;\n@applauncher-pf-menu-link-padding:                                  7px 10px;\n@applauncher-pf-menu-link-padding-block-list:                       15px 10px;\n@applauncher-pf-menu-link-background-color-hover:                   @color-pf-black-150;\n@applauncher-pf-menu-link-shadow:                                   @color-pf-black-300;\n@applauncher-pf-menu-link-icon-font-size:                           2em;\n@applauncher-pf-menu-link-icon-width:                               ((9 * @applauncher-pf-menu-link-icon-font-size) / 14); //Numbers to imitate fa-fw class\n@bootstrap-switch-handle-default-bg-color:                          @color-pf-black-100;\n@bootstrap-treeview-highlight-color:                                @color-pf-blue-300;\n@btn-default-bg-img-start:                                          @color-pf-black-100;\n@btn-default-bg-img-stop:                                           @color-pf-black-200;\n@btn-xs-font-weight:                                                400;\n@card-pf-accented-border-top-color:                                 @color-pf-blue-300;\n@card-pf-aggregate-status-title-icon-color:                         @color-pf-black-900;\n@card-pf-bg-color:                                                  @color-pf-white;\n@card-pf-border-color:                                              @color-pf-black-300;\n@card-pf-border-top-color:                                          transparent;\n@card-pf-container-bg-color:                                        @color-pf-black-150;\n@card-pf-footer-bg-color:                                           @color-pf-black-100;\n@card-pf-selected-border-color:                                     @color-pf-blue-300;\n@donut-font-size-big:                                               30px;\n@drawer-pf-top-vertical:                                            58px;\n@drawer-pf-top-horizontal:                                          26px;\n@dropdown-divider-margin:                                           4px 1px;\n@dropdown-link-active-border-color:                                 @color-pf-blue;\n@dropdown-link-hover-border-color:                                  @color-pf-blue-100;\n@dropdown-link-focus-color:                                         @color-pf-white;\n@flyout-transition-pf:                                              all 200ms cubic-bezier(.35, 0, .25, 1);\n@font-family-monospace:                                             Menlo, Monaco, Consolas, monospace;\n@font-path:                                                         \"../fonts\";\n@footer-pf-bg-color:                                                @color-pf-black;\n@footer-pf-padding-left:                                            25px;\n@footer-pf-padding-top:                                             10px;\n@footer-pf-height:                                                  37px;\n@gray-light-pf:                                                     @color-pf-black-400;\n@gray-pf:                                                           @color-pf-black-700;\n@icon-font-name-fa:                                                 \"FontAwesome\";\n@icon-font-name-pf:                                                 \"PatternFlyIcons-webfont\";\n@icon-prefix:                                                       pficon;\n@img-bg-login:                                                      \"bg-login.jpg\";\n@img-path:                                                          \"../img\";\n@img-spinner:                                                       \"spinner.gif\";\n@img-spinner-inverse:                                               \"spinner-inverse.gif\";\n@img-spinner-inverse-lg:                                            \"spinner-inverse-lg.gif\";\n@img-spinner-inverse-sm:                                            \"spinner-inverse-sm.gif\";\n@img-spinner-inverse-xs:                                            \"spinner-inverse-xs.gif\";\n@img-spinner-lg:                                                    \"spinner-lg.gif\";\n@img-spinner-sm:                                                    \"spinner-sm.gif\";\n@img-spinner-xs:                                                    \"spinner-xs.gif\";\n@input-border-hover:                                                @color-pf-blue-200;\n@input-border-focus:                                                @color-pf-blue-400;\n@list-pf-border-color:                                              @color-pf-black-200;\n@list-pf-active-border-color:                                       @color-pf-black-400;\n@list-pf-header-background-color:                                   @color-pf-black-200;\n@list-pf-hover-background-color:                                    @color-pf-blue-25;\n@list-pf-main-content-width:                                        70%; // sets the proportional width of the main content vs the additional content\n@list-pf-padding:                                                   20px;\n@list-view-accented-border:                                         @color-pf-blue-300;\n@list-view-active-bg:                                               @color-pf-blue-50;\n@list-view-active-border:                                           @color-pf-black-400;\n@list-view-divider:                                                 @color-pf-black-300;\n@list-view-hover-bg:                                                @color-pf-blue-25;\n@list-group-top-border:                                             @color-pf-black-200;\n@login-bg-color:                                                    @color-pf-black;\n@login-container-bg-color-rgba:                                     fade(@color-pf-white, 5.5%);\n@modal-about-pf-bg-img:                                             \"bg-modal-about-pf.png\";\n@modal-title-padding-horizontal:                                    18px;\n@modal-title-padding-vertical:                                      10px;\n@navbar-pf-active-color:                                            @color-pf-black-150;\n@navbar-pf-alt-active-color:                                        @color-pf-white;\n@navbar-pf-alt-bg-color:                                            @color-pf-black;\n@navbar-pf-alt-bg-img:                                              \"bg-navbar-pf-alt.svg\";\n@navbar-pf-bg-color:                                                @color-pf-black;\n@navbar-pf-border-color:                                            @color-pf-blue-300;\n@navbar-pf-color:                                                   @color-pf-black-300;\n@navbar-pf-height:                                                  60px;\n@navbar-pf-icon-bar-bg-color:                                       @color-pf-white;\n@navbar-pf-navbar-navbar-brand-min-width:                           270px;\n@navbar-pf-navbar-navbar-brand-padding:                             8px 0 7px;\n@navbar-pf-navbar-navbar-persistent-bg-color:                       @color-pf-black-150;\n@navbar-pf-navbar-navbar-persistent-border-color:                   @color-pf-black-300;\n@navbar-pf-vertical-active-color:                                   @color-pf-white;\n@navbar-pf-vertical-bg-color:                                       #1d1d1d;\n@navbar-pf-vertical-bg-repeat:                                      no-repeat;\n@navbar-pf-vertical-bg-size:                                        auto 100%;\n@navbar-pf-vertical-border-color:                                   @color-pf-blue-300;\n@navbar-pf-vertical-border-style:                                   solid;\n@navbar-pf-vertical-border-width:                                   2px;\n@navbar-pf-vertical-color:                                          @color-pf-black-300;\n@navbar-pf-vertical-height:                                         60px;\n@navbar-pf-vertical-icon-bar-bg-color:                              @color-pf-white;\n@navbar-pf-vertical-navbar-brand-color:                             @color-pf-white;\n@navbar-pf-vertical-navbar-brand-icon-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-margin:                            0 0 0 25px;\n@navbar-pf-vertical-navbar-brand-min-height:                        35px;\n@navbar-pf-vertical-navbar-brand-max-height:                        35px;\n@navbar-pf-vertical-navbar-brand-line-height:                       34px;\n@navbar-pf-vertical-navbar-brand-name-breakpoint:                   480px;\n@navbar-pf-vertical-navbar-brand-name-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-padding:                           11px 0 12px;\n@navbar-pf-vertical-navbar-toggle-margin:                           13px 15px;\n@navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg:                @color-pf-white;\n@navbar-pf-vertical-nav-item-iconic-padding:                        21px 12px;\n@nav-pf-container-transition-period:                                250ms;\n@nav-pf-menu-transition-period:                                     100ms;\n@nav-pf-vertical-active-color:                                      @color-pf-white;\n@nav-pf-vertical-active-before-color:                               @color-pf-blue-300;\n@nav-pf-vertical-active-bg-color:                                   @color-pf-black-800;\n@nav-pf-vertical-active-border-color:                               @color-pf-black-900;\n@nav-pf-vertical-active-font-weight:                                600;\n@nav-pf-vertical-active-icon-color:                                 @color-pf-blue-300;\n@nav-pf-vertical-badge-color:                                       @color-pf-white;\n@nav-pf-vertical-badge-bg-color:                                    @color-pf-black-900;\n@nav-pf-vertical-bg-color:                                          @color-pf-black-900;\n@nav-pf-vertical-border-color:                                      @color-pf-black-900;\n@nav-pf-vertical-collapsed-width:                                   75px;\n@nav-pf-vertical-color:                                             @color-pf-black-300;\n@nav-pf-vertical-font-weight:                                       400;\n@nav-pf-vertical-icon-color:                                        @color-pf-black-600;\n@nav-pf-vertical-icon-width:                                        24px;\n@nav-pf-vertical-item-border-color:                                 @color-pf-black;\n@nav-pf-vertical-link-height:                                       63px;\n@nav-pf-vertical-link-padding:                                      17px 20px 17px 25px;\n@nav-pf-vertical-secondary-active-color:                            @color-pf-white;\n@nav-pf-vertical-secondary-active-bg-color:                         @color-pf-black-700;\n@nav-pf-vertical-secondary-active-icon-color:                       @color-pf-blue-300;\n@nav-pf-vertical-secondary-badge-color:                             @color-pf-white;\n@nav-pf-vertical-secondary-badge-bg-color:                          @color-pf-black-900;\n@nav-pf-vertical-secondary-border-color:                            @color-pf-blue-300;\n@nav-pf-vertical-secondary-color:                                   @color-pf-white;\n@nav-pf-vertical-secondary-header-margin:                           18px 20px 10px 20px;\n@nav-pf-vertical-secondary-indicator-color:                         @color-pf-black-600;\n@nav-pf-vertical-secondary-indicator-padding:                       14px 0;\n@nav-pf-vertical-secondary-item-color:                              @color-pf-black-300;\n@nav-pf-vertical-secondary-item-padding:                            0 0 5px 0;\n@nav-pf-vertical-secondary-link-height:                             63px;\n@nav-pf-vertical-secondary-link-padding:                            4px 0 2px 0;\n@nav-pf-vertical-secondary-list-header-margin:                      30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-active-color:                             @color-pf-white;\n@nav-pf-vertical-tertiary-active-bg-color:                          @color-pf-black-800;\n@nav-pf-vertical-tertiary-indicator-padding:                        0;\n@nav-pf-vertical-tertiary-bg-color:                                 @color-pf-black-700;\n@nav-pf-vertical-tertiary-color:                                    #fff;\n@nav-pf-vertical-tertiary-header-margin:                            18px 20px 10px 20px;\n@nav-pf-vertical-tertiary-list-header-margin:                       30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-item-padding:                             0 0 5px 0;\n@nav-pf-vertical-tertiary-item-color:                               @color-pf-black-300;\n@nav-pf-vertical-tertiary-link-margin:                              0 20px 0 20px;\n@nav-pf-vertical-tertiary-link-padding:                             4px 0 2px 0;\n@nav-pf-vertical-tertiary-badge-color:                              @color-pf-white;\n@nav-pf-vertical-tertiary-badge-bg-color:                           @color-pf-black-900;\n@nav-pf-vertical-width:                                             200px;\n@toast-notification-top:                                            80px;\n@pagination-padding-small-vertical:                                 0;\n@panel-default-border-color:                                        @color-pf-black-400;\n@pficon-var-add-circle-o:                                           \"\\e61b\";\n@pficon-var-applications:                                           \"\\e936\";\n@pficon-var-arrow:                                                  \"\\e929\";\n@pficon-var-asleep:                                                 \"\\e925\";\n@pficon-var-automation:                                             \"\\e937\";\n@pficon-var-blueprint:                                              \"\\e915\";\n@pficon-var-build:                                                  \"\\e902\";\n@pficon-var-builder-image:                                          \"\\e800\";\n@pficon-var-bundle:                                                 \"\\e918\";\n@pficon-var-catalog:                                                \"\\e939\";\n@pficon-var-chat:                                                   \"\\e928\";\n@pficon-var-close:                                                  \"\\e60b\";\n@pficon-var-cloud-security:                                         \"\\e903\";\n@pficon-var-cloud-tenant:                                           \"\\e904\";\n@pficon-var-cluster:                                                \"\\e620\";\n@pficon-var-connected:                                              \"\\e938\";\n@pficon-var-container-node:                                         \"\\e621\";\n@pficon-var-cpu:                                                    \"\\e927\";\n@pficon-var-degraded:                                               \"\\e91b\";\n@pficon-var-delete:                                                 \"\\e611\";\n@pficon-var-disconnected:                                           \"\\e93c\";\n@pficon-var-domain:                                                 \"\\e919\";\n@pficon-var-edit:                                                   \"\\e60a\";\n@pficon-var-enhancement:                                            \"\\e93a\";\n@pficon-var-enterprise:                                             \"\\e906\";\n@pficon-var-equalizer:                                              \"\\e610\";\n@pficon-var-error-circle-o:                                         \"\\e926\";\n@pficon-var-export:                                                 \"\\e616\";\n@pficon-var-flag:                                                   \"\\e603\";\n@pficon-var-flavor:                                                 \"\\e907\";\n@pficon-var-filter:                                                 \"\\e943\";\n@pficon-var-folder-close:                                           \"\\e607\";\n@pficon-var-folder-open:                                            \"\\e606\";\n@pficon-var-help:                                                   \"\\e605\";\n@pficon-var-history:                                                \"\\e617\";\n@pficon-var-home:                                                   \"\\e618\";\n@pficon-var-image:                                                  \"\\e61f\";\n@pficon-var-import:                                                 \"\\e615\";\n@pficon-var-info:                                                   \"\\e92b\";\n@pficon-var-infrastructure:                                         \"\\e93d\";\n@pficon-var-integration:                                            \"\\e948\";\n@pficon-var-in-progress:                                            \"\\e92c\";\n@pficon-var-key:                                                    \"\\e924\";\n@pficon-var-kubernetes:                                             \"\\e627\";\n@pficon-var-locked:                                                 \"\\e923\";\n@pficon-var-maintenance:                                            \"\\e92d\";\n@pficon-var-memory:                                                 \"\\e908\";\n@pficon-var-messages:                                               \"\\e603\";\n@pficon-var-middleware:                                             \"\\e917\";\n@pficon-var-migration:                                              \"\\e92e\";\n@pficon-var-monitoring:                                             \"\\e944\";\n@pficon-var-network:                                                \"\\e909\";\n@pficon-var-off:                                                    \"\\e92f\";\n@pficon-var-ok:                                                     \"\\e602\";\n@pficon-var-on:                                                     \"\\e931\";\n@pficon-var-on-running:                                             \"\\e930\";\n@pficon-var-openshift:                                              \"\\e626\";\n@pficon-var-optimize:                                               \"\\e93e\";\n@pficon-var-orders:                                                 \"\\e93f\";\n@pficon-var-paused:                                                 \"\\e932\";\n@pficon-var-pending:                                                \"\\e933\";\n@pficon-var-plugged:                                                \"\\e940\";\n@pficon-var-port:                                                   \"\\e945\";\n@pficon-var-private:                                                \"\\e914\";\n@pficon-var-print:                                                  \"\\e612\";\n@pficon-var-process-automation:                                     \"\\e949\";\n@pficon-var-project:                                                \"\\e905\";\n@pficon-var-rebalance:                                              \"\\e91c\";\n@pficon-var-rebooting:                                              \"\\e934\";\n@pficon-var-regions:                                                \"\\e90a\";\n@pficon-var-registry:                                               \"\\e623\";\n@pficon-var-remove:                                                 \"\\e611\";\n@pficon-var-replicator:                                             \"\\e624\";\n@pficon-var-repository:                                             \"\\e90b\";\n@pficon-var-resource-pool:                                          \"\\e90c\";\n@pficon-var-resources-almost-empty:                                 \"\\e91d\";\n@pficon-var-resources-almost-full:                                  \"\\e912\";\n@pficon-var-resources-full:                                         \"\\e92a\";\n@pficon-var-restart:                                                \"\\e617\";\n@pficon-var-route:                                                  \"\\e625\";\n@pficon-var-running:                                                \"\\e614\";\n@pficon-var-save:                                                   \"\\e601\";\n@pficon-var-screen:                                                 \"\\e600\";\n@pficon-var-search:                                                 \"\\e921\";\n@pficon-var-security:                                               \"\\e946\";\n@pficon-var-server:                                                 \"\\e90d\";\n@pficon-var-server-group:                                           \"\\e91a\";\n@pficon-var-service:                                                \"\\e61e\";\n@pficon-var-service-catalog:                                        \"\\e941\";\n@pficon-var-services:                                               \"\\e947\";\n@pficon-var-settings:                                               \"\\e610\";\n@pficon-var-spinner:                                                \"\\e614\";\n@pficon-var-spinner2:                                               \"\\e613\";\n@pficon-var-storage-domain:                                         \"\\e90e\";\n@pficon-var-tenant:                                                 \"\\e916\";\n@pficon-var-thumb-tack-o:                                           \"\\e920\";\n@pficon-var-topology:                                               \"\\e608\";\n@pficon-var-trend-down:                                             \"\\e900\";\n@pficon-var-trend-up:                                               \"\\e901\";\n@pficon-var-unlocked:                                               \"\\e922\";\n@pficon-var-unplugged:                                              \"\\e942\";\n@pficon-var-unknown:                                                \"\\e935\";\n@pficon-var-user:                                                   \"\\e91e\";\n@pficon-var-users:                                                  \"\\e91f\";\n@pficon-var-virtual-machine:                                        \"\\e90f\";\n@pficon-var-volume:                                                 \"\\e910\";\n@pficon-var-warning-triangle-o:                                     \"\\e913\";\n@pficon-var-zone:                                                   \"\\e911\";\n@progress-description-label-width:                                  85px;\n@sidebar-pf-bg:                                                     @color-pf-black-100;\n@sidebar-pf-border-color:                                           @color-pf-black-300;\n@skiplink-pf-top:                                                   12px;\n@skiplink-pf-left:                                                  10px;\n@table-border-hover:                                                @color-pf-blue-200;\n@table-cell-padding-bottom:                                         3px;\n@table-cell-padding-top:                                            2px;\n// Reference variables declared in block above\n@bootstrap-switch-bg-color-start:                                   @btn-default-bg-img-start;\n@bootstrap-switch-bg-color-stop:                                    @btn-default-bg-img-stop;\n@fa-font-path:                                                      @font-path;\n@navbar-pf-navbar-header-border-color:                              lighten(@navbar-pf-bg-color, 15%);\n@navbar-pf-navbar-nav-active-active-bg-color:                       lighten(@navbar-pf-bg-color, 8%);\n@navbar-pf-navbar-nav-active-active-open-bg-color:                  lighten(@navbar-pf-bg-color, 11%);\n@navbar-pf-navbar-nav-active-bg-color:                              lighten(@navbar-pf-bg-color, 12.5%);\n@navbar-pf-navbar-primary-bg-color-start:                           lighten(@navbar-pf-bg-color, 10%); // #474C50\n@navbar-pf-navbar-primary-bg-color-stop:                            @navbar-pf-bg-color; // #383F43\n@navbar-pf-navbar-utility-border-color:                             lighten(@navbar-pf-bg-color, 15.5%);\n@navbar-pf-navbar-utility-color:                                    @navbar-pf-color;\n@navbar-pf-navbar-utility-hover-bg-color:                           lighten(@navbar-pf-bg-color, 12.5%);\n@nav-pf-vertical-secondary-bg-color:                                @nav-pf-vertical-active-bg-color;\n@nav-tabs-color:                                                    @gray-pf;\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-bg-color-start:                   lighten(@navbar-pf-navbar-primary-bg-color-start, 8.5%);\n@navbar-pf-navbar-primary-context-bg-color-stop:                    lighten(@navbar-pf-navbar-primary-bg-color-stop, 11%);\n@navbar-pf-navbar-primary-hover-bg-color-start:                     lighten(@navbar-pf-navbar-primary-bg-color-start, 10%);\n@navbar-pf-navbar-primary-hover-bg-color-stop:                      lighten(@navbar-pf-navbar-primary-bg-color-stop, 10%);\n@navbar-pf-navbar-primary-hover-border-color:                       lighten(@navbar-pf-navbar-header-border-color, 20%);\n@navbar-pf-navbar-primary-context-border-color:                     lighten(@navbar-pf-navbar-header-border-color, 8%);\n@navbar-pf-navbar-primary-context-border-top-color:                 lighten(@navbar-pf-navbar-header-border-color, 7%);\n@navbar-pf-navbar-utility-hover-border-color:                       lighten(@navbar-pf-navbar-utility-border-color, 5%);\n@navbar-pf-navbar-utility-open-bg-color:                            lighten(@navbar-pf-navbar-utility-hover-bg-color, 7.5%);\n@navbar-pf-navbar-utility-open-border-color:                        lighten(@navbar-pf-navbar-utility-hover-border-color, 5%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-active-bg-color-start:                    lighten(@navbar-pf-navbar-primary-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-active-bg-color-stop:                     lighten(@navbar-pf-navbar-primary-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-active-border-color:                      lighten(@navbar-pf-navbar-primary-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-start:             lighten(@navbar-pf-navbar-primary-context-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-stop:              lighten(@navbar-pf-navbar-primary-context-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-hover-border-color:               lighten(@navbar-pf-navbar-primary-context-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-border-top-color:           lighten(@navbar-pf-navbar-primary-context-border-top-color, 6%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-active-bg-color-start:            lighten(@navbar-pf-navbar-primary-context-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-active-bg-color-stop:             lighten(@navbar-pf-navbar-primary-context-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-active-border-color:              lighten(@navbar-pf-navbar-primary-context-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-active-border-top-color:          lighten(@navbar-pf-navbar-primary-context-hover-border-top-color, 6%);\n// References variable declared in block above\n@navbar-pf-navbar-primary-context-active-border-right-color:        @navbar-pf-navbar-primary-context-active-border-color;\n@slider-line-height:                                                16px;\n@slider-horizontal-width:                                           100%;\n@slider-primary-top:                                                @color-pf-black-100;\n@slider-primary-bottom:                                             @color-pf-black-200;\n@slider-secondary-top:                                              @color-pf-blue-400;\n@slider-secondary-bottom:                                           @color-pf-blue-300;\n\n// Alternate navigation layout - Kept for backwards compatibility\n// --------------------------------------------------------------\n@footer-pf-alt-bg-color:                                            @footer-pf-bg-color;\n@footer-pf-alt-padding-left:                                        @footer-pf-padding-left;\n@footer-pf-alt-padding-top:                                         @footer-pf-padding-top;\n@footer-pf-alt-height:                                              @footer-pf-height;\n@img-path-alt:                                                      @img-path;\n@nav-pf-vertical-alt-active-color:                                  @color-pf-blue-300;\n@nav-pf-vertical-alt-bg-color:                                      @color-pf-white;\n@nav-pf-vertical-alt-badge-color:                                   @color-pf-white;\n@nav-pf-vertical-alt-border-color:                                  @sidebar-pf-border-color;\n@nav-pf-vertical-alt-collapsed-width:                               75px;\n@nav-pf-vertical-alt-link-height:                                   63px;\n@nav-pf-vertical-alt-link-padding:                                  17px 20px 17px 25px;\n@nav-pf-vertical-alt-width:                                         250px;\n@navbar-pf-alt-bg-repeat:                                           @navbar-pf-vertical-bg-repeat;\n@navbar-pf-alt-bg-size:                                             @navbar-pf-vertical-bg-size;\n@navbar-pf-alt-border-color:                                        @navbar-pf-vertical-border-color;\n@navbar-pf-alt-border-style:                                        @navbar-pf-vertical-border-style;\n@navbar-pf-alt-border-width:                                        @navbar-pf-vertical-border-width;\n@navbar-pf-alt-color:                                               @navbar-pf-vertical-color;\n@navbar-pf-alt-height:                                              @navbar-pf-vertical-height;\n@navbar-pf-alt-nav-item-iconic-padding:                             @navbar-pf-vertical-nav-item-iconic-padding;\n@navbar-pf-alt-navbar-brand-color:                                  @navbar-pf-vertical-navbar-brand-color;\n@navbar-pf-alt-navbar-brand-icon-margin:                            @navbar-pf-vertical-navbar-brand-icon-margin;\n@navbar-pf-alt-navbar-brand-margin:                                 @navbar-pf-vertical-navbar-brand-margin;\n@navbar-pf-alt-navbar-brand-min-height:                             @navbar-pf-vertical-navbar-brand-min-height;\n@navbar-pf-alt-navbar-brand-name-breakpoint:                        @navbar-pf-vertical-navbar-brand-name-breakpoint;\n@navbar-pf-alt-navbar-brand-name-margin:                            @navbar-pf-vertical-navbar-brand-name-margin;\n@navbar-pf-alt-navbar-brand-padding:                                @navbar-pf-vertical-navbar-brand-padding;\n@navbar-pf-alt-navbar-toggle-margin:                                @navbar-pf-vertical-navbar-toggle-margin;\n@navbar-pf-alt-navbar-toggle-icon-bar-hover-bg:                     @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n\n// Login page\n// -------------------\n@login-pf-brand-margin-top:                                               20px;\n@login-pf-brand-desktop-margin-top:                                       62px;\n@login-pf-page-header-margin-bottom:                                      20px;\n@login-pf-page-header-desktop-margin-bottom:                              40px;\n@login-pf-page-header-paragraph-margin-top:                               20px;\n@login-pf-card-pf-padding:                                 10px 20px 30px 20px;\n@login-pf-card-pf-desktop-padding:                         20px 40px 30px 40px;\n@login-pf-card-pf-max-width:                                             840px;\n@login-pf-checkbox-label-margin-bottom:                                   15px;\n@login-pf-dropdown-toggle-padding-right:                                  15px;\n@login-pf-btn-primary-margin-top:                                         40px;\n@login-pf-header-margin-bottom:                                           20px;\n@login-pf-header-desktop-margin-bottom:                                   30px;\n@login-pf-signup-margin-top:                                              40px;\n@login-pf-signup-a-margin-left:                                           10px;\n@login-pf-page-footer-links-margin-top:                                   60px;\n@login-pf-page-footer-links-li-margin-right:                              20px;\n@login-pf-page-footer-sso-margin-top:                                     40px;\n@login-pf-page-footer-sso-logos-li-margin:                                5px;\n@login-pf-page-accounts-margin:                                           20px;\n@login-pf-accounts-section-heading-margin-top:                            30px;\n@login-pf-accounts-section-heading-margin-bottom:                         30px;\n@login-pf-accounts-section-heading-desktop-margin-bottom:                 15px;\n@login-pf-accounts-section-heading-desktop-padding-right:                 40px;\n@login-pf-accounts-section-heading-desktop-padding-left:                  40px;\n@login-pf-accounts-link-margin-bottom:                                    15px;\n@login-pf-accounts-link-img-margin-right:                                 10px;\n@login-pf-accounts-link-a-padding:                                        7px;\n@login-pf-accounts-more-caret-margin-left:                                5px;\n@login-pf-social-margin:                                           40px 0 0 0;\n\n\n// Bootstrap overrides\n// -------------------\n@alert-info-border:                                                 @color-pf-black-500;\n@alert-link-font-weight:                                            500;\n@alert-padding:                                                     11px;\n@body-bg:                                                           @color-pf-white;\n@border-radius-base:                                                1px;\n@brand-danger:                                                      @color-pf-red;\n@brand-info:                                                        @color-pf-blue-500;\n@brand-primary:                                                     @color-pf-blue-300;\n@brand-success:                                                     @color-pf-green;\n@brand-warning:                                                     @color-pf-orange;\n@breadcrumb-bg:                                                     transparent;\n@breadcrumb-separator:                                              \"\\f105\";\n@bs-datetimepicker-timepicker-font-size:                            1em;\n@bs-datetimepicker-btn-hover-bg:                                    transparent;\n@btn-danger-bg:                                                     @color-pf-red-200;\n@btn-danger-border:                                                 @color-pf-red-300;\n@btn-default-border:                                                @color-pf-black-400;\n@btn-font-weight:                                                   600;\n@btn-primary-bg:                                                    @color-pf-blue;\n@btn-primary-border:                                                @color-pf-blue-500;\n@caret-width-base:                                                  0;\n@code-bg:                                                           @color-pf-blue-50;\n@dropdown-border:                                                   @color-pf-black-400;\n@dropdown-divider-bg:                                               @color-pf-black-200;\n@dropdown-link-active-color:                                        @color-pf-white;\n@dropdown-link-hover-bg:                                            @color-pf-blue-50;\n@font-family-base:                                                  \"Open Sans\", Helvetica, Arial, sans-serif;\n@font-size-base:                                                    12px;\n@gray-dark:                                                         lighten(@color-pf-black, 20%);   // #333\n@gray-darker:                                                       lighten(@color-pf-black, 13.5%); // #222\n@gray-light:                                                        lighten(@color-pf-black, 60%);   // #999\n@gray-lighter:                                                      lighten(@color-pf-black, 93.5%); // #eee\n@grid-gutter-width:                                                 40px;\n@icon-font-path:                                                    \"../fonts/\";\n@input-bg-disabled:                                                 @color-pf-black-150;\n@input-border:                                                      @color-pf-black-400;\n@line-height-base:                                                  1.66666667; // 20/12\n@link-color:                                                        @color-pf-blue;\n@list-group-border:                                                 @color-pf-black-150;\n@list-group-border-radius:                                          0;\n@list-group-hover-bg:                                               @color-pf-blue-50;\n@link-hover-color:                                                  @color-pf-blue-500;\n@nav-tabs-border-color:                                             @color-pf-black-200;\n@nav-tabs-link-hover-border-color:                                  transparent;\n@padding-large-horizontal:                                          10px;\n@padding-base-horizontal:                                           6px;\n@padding-base-vertical:                                             2px;\n@padding-large-vertical:                                            6px;\n@pager-border-radius:                                               0;\n@pager-disabled-color:                                              @color-pf-black-500;\n@pagination-bg:                                                     @color-pf-black-150;\n@pagination-border:                                                 @color-pf-black-400;\n@pagination-hover-bg:                                               @color-pf-black-200;\n@panel-inner-border:                                                @color-pf-black-300;\n@popover-arrow-color:                                               @color-pf-white;\n@popover-arrow-outer-color:                                         @color-pf-black-400;\n@popover-border-color:                                              @color-pf-black-400;\n@popover-max-width:                                                 220px;\n@popover-title-bg:                                                  @color-pf-black-150;\n@pre-bg:                                                            @color-pf-black-100;\n@progress-bg:                                                       @color-pf-black-200;\n@table-bg-accent:                                                   @color-pf-black-150;\n@table-bg-hover:                                                    @color-pf-blue-50;\n@table-border-color:                                                @color-pf-black-300;\n@table-cell-padding:                                                10px;\n@tooltip-arrow-width:                                               8px;\n@tooltip-bg:                                                        @color-pf-black-800;\n@tooltip-max-width:                                                 220px;\n// Reference variables declared in block above\n@alert-danger-bg:                                                   lighten(@color-pf-red-100, 55%);\n@alert-danger-border:                                               @brand-danger;\n@alert-danger-text:                                                 @gray-dark;\n@alert-info-bg:                                                     @color-pf-black-150;\n@alert-info-text:                                                   @gray-dark;\n@alert-success-bg:                                                  lighten(@color-pf-green-100, 8%);\n@alert-success-border:                                              @brand-success;\n@alert-success-text:                                                @gray-dark;\n@alert-warning-bg:                                                  lighten(@color-pf-orange-100, 8%);\n@alert-warning-border:                                              @brand-warning;\n@alert-warning-text:                                                @gray-dark;\n@badge-border-radius:                                               @border-radius-base;\n@border-radius-large:                                               @border-radius-base;\n@border-radius-small:                                               @border-radius-base;\n@breadcrumb-active-color:                                           @gray-pf;\n@breadcrumb-color:                                                  @gray-pf;\n@btn-default-bg:                                                    @gray-lighter;\n@btn-default-color:                                                 @gray-pf;\n@caret-width-large:                                                 @caret-width-base;\n@code-color:                                                        @color-pf-blue-600;\n@dropdown-fallback-border:                                          @dropdown-border;\n@dropdown-link-active-bg:                                           @link-color;\n@dropdown-link-hover-color:                                         @gray-pf;\n@font-size-h1:                                                      ceil((@font-size-base * 2)); // ~24px\n@font-size-h2:                                                      ceil((@font-size-base * 1.8333)); // ~22px\n@font-size-h3:                                                      ceil((@font-size-base * 1.3333)); // ~16px\n@font-size-h5:                                                      ceil((@font-size-base * 1.0833)); // ~13px\n@font-size-large:                                                   ceil((@font-size-base * 1.1666)); // ~14px\n@font-size-small:                                                   ceil((@font-size-base * .9166)); // ~11px\n@input-color:                                                       @gray-dark;\n@nav-tabs-active-link-hover-color:                                  @link-color;\n@nav-tabs-justified-link-border-color:                              @nav-tabs-border-color;\n@nav-pf-vertical-badges-width:                                      (@nav-pf-vertical-width + 50px);\n@padding-small-horizontal:                                          @padding-base-horizontal;\n@padding-small-vertical:                                            @padding-base-vertical;\n@panel-group-pf-danger-heading-bg:                                  @alert-danger-bg;\n@panel-group-pf-primary-heading-bg:                                 lighten(@brand-primary, 38%);\n@panel-group-pf-success-heading-bg:                                 @alert-success-bg;\n@panel-group-pf-warning-heading-bg:                                 @alert-warning-bg;\n@panel-group-pf-info-heading-bg:                                    lighten(desaturate(spin(@brand-info, 13), 45), 60%);\n@panel-danger-border:                                               @brand-danger;\n@panel-danger-heading-bg:                                           @brand-danger;\n@panel-info-border:                                                 @brand-info;\n@panel-info-heading-bg:                                             @brand-info;\n@panel-primary-border:                                              @brand-primary;\n@panel-primary-text:                                                @body-bg;\n@panel-success-border:                                              @brand-success;\n@panel-success-heading-bg:                                          @brand-success;\n@panel-warning-border:                                              @brand-warning;\n@panel-warning-heading-bg:                                          @brand-warning;\n@state-warning-text:                                                @brand-warning;\n@state-danger-text:                                                 @brand-danger;\n// Reference variable declared in block above\n@panel-danger-text:                                                 @panel-primary-text;\n@panel-info-text:                                                   @panel-primary-text;\n@panel-success-text:                                                @panel-primary-text;\n@panel-warning-text:                                                @panel-primary-text;\n\n// PatternFly-specific variables based on Bootstrap overides\n// ---------------------------------------------------------\n@bootstrap-switch-bg-color:                                         @btn-default-bg;\n@btn-danger-bg-img-start:                                           @brand-danger;\n@btn-danger-bg-img-stop:                                            @btn-danger-bg;\n@btn-primary-bg-img-start:                                          @brand-primary;\n@btn-primary-bg-img-stop:                                           @btn-primary-bg;\n@dropdown-link-focus-bg:                                            @link-color;\n@line-height-computed:                                              floor((@font-size-base * @line-height-base));\n@nav-pf-vertical-icon-size:                                         (@font-size-base + 8);\n@notification-badge-color:                                          @color-pf-blue-400;\n@progress-sm:                                                       (@line-height-computed - 6);\n@progress-xs:                                                       (@line-height-computed - 14);\n@syntax-1:                                                          @btn-danger-bg;\n@syntax-2:                                                          @gray-dark;\n@syntax-3:                                                          @brand-success;\n@syntax-4:                                                          @brand-info;\n@tooltip-font-size:                                                 @font-size-base;\n","//\n// Bootstrap-Datepicker\n// --------------------------------------------------\n\n.bootstrap-datepicker.form-control[readonly] {\n  background-color: @input-bg;\n  border-color: @input-border !important;\n  color: @input-color;\n  .box-shadow(inset 0 1px 1px fade(@color-pf-black, 7.5%));\n  .form-control-outline();\n  &:focus {\n    // TODO Create global variables for validation box shadows?\n    @input-validation-focus-box-shadow: fade(@color-pf-black, 7.5%);\n    border-color: @input-border-focus !important;\n    .has-error & {\n      // TODO Create global variables for validation box shadows?\n      @state-danger-input-focus: lighten(@state-danger-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-danger-input-focus}\";\n      border-color: darken(@state-danger-text, 10%);\n      .box-shadow(@shadow);\n    }\n    .has-success & {\n      // TODO Create global variables for validation box shadows?\n      @state-success-input-focus: lighten(@state-success-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-success-input-focus}\";\n      border-color: darken(@state-success-text, 10%);\n      .box-shadow(@shadow);\n    }\n    .has-warning & {\n      // TODO Create global variables for validation box shadows?\n      @state-warning-input-focus: lighten(@state-warning-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-warning-input-focus}\";\n      border-color: darken(@state-warning-text, 10%);\n      .box-shadow(@shadow);\n    }\n  }\n  &:hover {\n    border-color: @input-border-hover !important;\n    .has-error & {\n      border-color: darken(@state-danger-text, 10%) !important;\n    }\n    .has-success & {\n      border-color: darken(@state-success-text, 10%) !important;\n    }\n    .has-warning & {\n      border-color: darken(@state-warning-text, 10%) !important;\n    }\n  }\n  .has-error & {\n    border-color: @state-danger-text !important;\n  }\n  .has-success & {\n    border-color: @state-success-text !important;\n  }\n  .has-warning & {\n    border-color: @state-warning-text !important;\n  }\n}\n\n.datepicker {\n  border-radius: @border-radius-base;\n  .datepicker-switch,\n  tfoot .clear,\n  tfoot .today {\n    font-size: @font-size-large;\n    font-weight: 500;\n  }\n  .next,\n  .prev {\n    font-weight: 500;\n  }\n  table tr {\n    td,\n    th {\n      border-radius: @border-radius-base;\n    }\n    td {\n      &.active,\n      &.active:hover,\n      &.active.disabled,\n      &.active.disabled:hover {\n        background: @dropdown-link-active-bg !important;\n        color: @color-pf-white !important;\n        text-shadow: none;\n      }\n      &.day:hover,\n      &.day.focused {\n        background: @dropdown-link-hover-bg;\n      }\n      &.selected,\n      &.selected:hover,\n      &.selected.disabled,\n      &.selected.disabled:hover {\n        text-shadow: none;\n      }\n      span {\n        border-radius: @border-radius-base;\n        &.active,\n        &.active:hover,\n        &.active.disabled,\n        &.active.disabled:hover {\n          background: @dropdown-link-active-bg;\n          text-shadow: none;\n        }\n        &:hover {\n          background: @dropdown-link-hover-bg;\n        }\n      }\n    }\n  }\n  thead tr:first-child th,\n  tfoot tr th {\n    &:hover {\n      background: @dropdown-link-hover-bg;\n    }\n  }\n}\n\n.input-daterange {\n  input:first-child {\n    border-radius: @border-radius-base 0 0 @border-radius-base;\n  }\n  input:last-child {\n    border-radius: 0 @border-radius-base @border-radius-base 0;\n  }\n  .input-group-addon {\n    background-color: @input-group-addon-bg;\n    border-color: @input-group-addon-border-color;\n    line-height: @line-height-base;\n    padding: @padding-base-vertical @padding-base-horizontal;\n  }\n}\n","// Mixins - Bootstrap overrides\n// -------------------\n\n// Form control outline\n.form-control-outline(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0 !important;\n    .box-shadow(~\"inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Gradients\n#gradient {\n  .striped(@color: fade(@color-pf-black, 15%); @angle: -45deg) {\n    background-image: linear-gradient(@angle, @color 25%, @color 26%, transparent 27%, transparent 49%, @color 50%, @color 51%, transparent 52%, transparent 74%, @color 75%, @color 76%, transparent 77%);\n  }\n}\n\n// Horizontal dividers\n.nav-divider(@color: @color-pf-black-200, @margin: 4px 1px) {\n  background-color: @color;\n  height: 1px;\n  margin: @margin;\n  overflow: hidden;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  &:-moz-placeholder            { color: @color; font-style: italic; } // Firefox 4-18\n  &::-moz-placeholder           { color: @color; font-style: italic; opacity: 1; } // Firefox 19+\n  &:-ms-input-placeholder       { color: @color; font-style: italic; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; font-style: italic; } // Safari and Chrome\n}\n","//\n// Bootstrap-select\n// --------------------------------------------------\n\n.bootstrap-select.btn-group {\n  &.form-control {\n    margin-bottom: 0;\n  }\n  .btn {\n    // TODO Create global variable for validation state box shadows?\n    @input-validation-focus-box-shadow: fade(@color-pf-black, 7.5%);\n    &:hover {\n      border-color: @input-border-hover;\n    }\n    .caret {\n      margin-top: -4px;\n    }\n    .form-control-outline();\n    .has-error & {\n      border-color: @state-danger-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-danger-input-focus: lighten(@state-danger-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-danger-input-focus}\";\n        border-color: darken(@state-danger-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .has-success & {\n      border-color: @state-success-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-success-input-focus: lighten(@state-success-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-success-input-focus}\";\n        border-color: darken(@state-success-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .has-warning & {\n      border-color: @state-warning-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-warning-input-focus: lighten(@state-warning-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-warning-input-focus}\";\n        border-color: darken(@state-warning-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n  }\n  .dropdown-menu { // Also see navbar.less\n    > .active > a {\n      &,\n      &:active {\n        background-color: @dropdown-link-hover-bg !important;\n        border-color: @dropdown-link-hover-border-color !important;\n        color: @gray-dark !important;\n        small {\n          color: @gray-light !important;\n        }\n      }\n    }\n    > .disabled > a {\n      color: @gray-light !important;\n    }\n    > .selected > a {\n      background-color: @dropdown-link-active-bg !important;\n      border-color: @dropdown-link-active-border-color !important;\n      color: @color-pf-white !important;\n      small {\n        color: fade(@color-pf-white, 50%) !important;\n      }\n    }\n    .divider {\n      background: @dropdown-divider-bg !important;\n      margin: @dropdown-divider-margin !important;\n    }\n    dt {\n      color: @color-pf-black-500;\n      font-weight:normal;\n      padding: 1px 10px;\n    }\n    li {\n      & > a.opt {\n        padding: 1px 10px;\n      }\n      & a {\n        &:active small {\n          color: fade(@color-pf-white, 50%) !important;\n        }\n        &:hover,\n        &:focus {\n          small {\n            color: @gray-light;\n          }\n        }\n      }\n      &:not(.disabled) {\n        a:hover,\n        a:focus {\n          small {\n            color: @gray-light;\n          }\n        }\n      }\n    }\n  }\n}\n","//\n// Bootstrap slider\n// --------------------------------------------------\n// https://github.com/seiyria/bootstrap-slider\n\n\n// Overwrites and fixes to Bootstrap slider\n\n// https //github.com/seiyria/bootstrap-slider/issues/797\n.slider-tick-label-container {\n  display: flex;\n  justify-content: space-between;\n  margin-left: 0!important;\n}\n\n.slider-tick-label {\n  width: auto !important;\n}\n\n.slider {\n  .tooltip {\n    top: -10px;\n  }\n}\n.slider-track {\n  background-color: @color-pf-black-200;\n  box-shadow: inset 0 2px 3px rgba(0, 0, 0, .1), 0 0px 2px @color-pf-black-200;\n  border: 1px solid @color-pf-black-400;\n}\n\n.slider-selection {\n  #gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n}\n\n.slider-handle {\n  width: @slider-line-height;\n  height: @slider-line-height;\n  border: 1px solid @color-pf-black-400; //THIS!\n}\n\n.slider-tick {\n  background-color: transparent !important;\n  background-image:\n    radial-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3) 2px, transparent 2px) !important;\n  .box-shadow(none);\n}\n\n\n// Styles to create the pf slider\n.slider-pf {\n  display: flex;\n  align-items: center;\n\n  * {\n    margin-right: 10px;\n\n    &:last-child {\n      margin: 0;\n    }\n  }\n\n  .slider {\n    width: auto;\n    flex: 1 1 100%;\n  }\n}\n","//\n// Bootstrap Switch\n// --------------------------------------------------\n\n.@{bootstrap-switch-base} {\n  .@{bootstrap-switch-base}-handle-off,\n  .@{bootstrap-switch-base}-handle-on {\n    &.@{bootstrap-switch-base}-default {\n      background: @bootstrap-switch-handle-default-bg-color;\n    }\n  }\n  .@{bootstrap-switch-base}-label {\n    background: @bootstrap-switch-bg-color;\n    box-shadow: 0 0 2px fade(@color-pf-black, 40%);\n    #gradient > .vertical(@bootstrap-switch-bg-color-start, @bootstrap-switch-bg-color-stop);\n    position: relative;\n    z-index: 9;\n  }\n}\n","//\n// Bootstrap Touchspin\n// --------------------------------------------------\n\n.bootstrap-touchspin .input-group-btn-vertical {\n  > .btn {\n    padding-bottom: 6px;\n    padding-top: 6px;\n  }\n  .bootstrap-touchspin-down {\n    border-bottom-right-radius: @border-radius-base;\n  }\n  .bootstrap-touchspin-up {\n    border-top-right-radius: @border-radius-base;\n  }\n  i {\n    font-size: (@font-size-base - 4);\n    left: 6px;\n    top: 2px;\n    &.fa-angle-down,\n    &.fa-angle-up {\n      font-size: @font-size-base;\n      line-height: @font-size-base;\n      top: 0;\n    }\n    &.fa-angle-down,\n    &.fa-angle-up {\n      left: 7px;\n    }\n  }\n}\n","//\n// Bootstrap Tree View\n// --------------------------------------------------\n\n.treeview {\n  .list-group {\n    border-top: 0;\n  }\n  .list-group-item {\n    background: transparent;\n    border-bottom: 1px solid transparent !important;\n    border-top: 1px solid transparent !important;\n    cursor: default !important;\n    margin-bottom: 0;\n    overflow: hidden;\n    padding: 0 10px;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    &:hover {\n      background: none !important;\n    }\n    &.node-selected {\n      background: none !important;\n      border-color: transparent !important;\n      color: inherit !important;\n    }\n    &.node-check-changed {\n      span.node-icon,\n      span.text {\n        color: @bootstrap-treeview-highlight-color;\n      }\n    }\n  }\n  span.icon {\n    display: inline-block;\n    font-size: (@font-size-base + 1);\n    min-width: 10px;\n    text-align: center;\n    > [class*=\"fa-angle\"] {\n      font-size: (@font-size-base + 3);\n    }\n    &.check-icon {\n      margin-right: 10px;\n    }\n    &.expand-icon {\n      cursor: pointer !important;\n    }\n  }\n  span.image {\n    background-repeat: no-repeat;\n    background-size: contain;\n    display: inline-block;\n    height: 1.19em;\n    line-height: 1em;\n    margin-right: 5px;\n    vertical-align: middle;\n    width: 12px;\n  }\n  span.indent {\n    margin-right: 5px;\n  }\n  .node-disabled {\n    color: @color-pf-black-300;\n    cursor: not-allowed;\n    span.expand-icon {\n      cursor: default !important;\n    }\n  }\n  .node-hidden {\n    display:none;\n  }\n}\n\n.treeview-pf-hover .list-group-item {\n  cursor: pointer !important;\n  &:hover {\n    background-color: @dropdown-link-hover-bg !important;\n    border-color: @dropdown-link-hover-border-color !important;\n  }\n}\n\n.treeview-pf-select .list-group-item {\n  cursor: pointer !important;\n  &.node-selected {\n    background: @dropdown-link-active-bg !important;\n    border-color: @dropdown-link-active-border-color !important;\n    color: @dropdown-link-active-color !important;\n  }\n}\n","//\n// Cards\n// --------------------------------------------------\n\n.card-pf {\n  background: @card-pf-bg-color;\n  border-top: 2px solid @card-pf-border-top-color;\n  .box-shadow(0 1px 1px fade(@color-pf-black, 17.5%));\n  margin: 0 (-(@grid-gutter-width / 4)) (@grid-gutter-width / 2);\n  padding: 0 (@grid-gutter-width / 2);\n  &.card-pf-accented {\n    border-top-color: @card-pf-accented-border-top-color;\n  }\n  &.card-pf-aggregate-status {\n    .card-pf-aggregate-status-notifications,\n    .card-pf-title {\n      a {\n        color: @text-color;\n        &.add {\n          color: @link-color;\n          &:hover {\n            color: @link-hover-color;\n          }\n        }\n        &:hover {\n          color: @link-hover-color;\n        }\n      }\n    }\n  }\n  &.card-pf-aggregate-status {\n    padding: 0 (@grid-gutter-width / 4);\n    text-align: center;\n  }\n  &.card-pf-aggregate-status-mini {\n    padding-bottom: (@grid-gutter-width / 4);\n    position: relative;\n  }\n  @media (min-width: @grid-float-breakpoint) {\n    &.card-pf-bleed-left {\n      margin-left: (-(@grid-gutter-width / 2));\n    }\n    &.card-pf-bleed-right {\n      border-right: 1px solid @card-pf-border-color;\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n  }\n}\n\n.card-pf-aggregate-status-notifications {\n  font-size: (@font-size-base * 2); // 24px\n  font-weight: 300;\n  .card-pf-aggregate-status-mini & {\n    line-height: 1;\n  }\n  .card-pf-aggregate-status-notification + .card-pf-aggregate-status-notification {\n    border-left: 1px solid @card-pf-border-color;\n    margin-left: (@grid-gutter-width / 8 - 2);\n    padding-left: (@grid-gutter-width / 4);\n  }\n  .fa, .pficon {\n    font-size: (@font-size-base * 1.5); // 18px\n    margin-right: 7px;\n  }\n}\n\n.card-pf-body {\n  margin: (@grid-gutter-width / 2) 0 0;\n  padding: 0 0 (@grid-gutter-width / 2);\n  .card-pf-aggregate-status & {\n    margin-top: (@grid-gutter-width / 4);\n    padding-bottom: (@grid-gutter-width / 4);\n  }\n  .card-pf-aggregate-status-mini & {\n    margin-bottom: 0;\n    margin-top: 0;\n    padding-bottom: 0;\n    position: absolute;\n    right: (@grid-gutter-width / 2);\n    top: 15px;\n  }\n  .card-pf-utilization .card-pf-title + & {\n    margin-top: -8px;\n  }\n  > *:last-child {\n    margin-bottom: 0;\n  }\n}\n\n.card-pf-footer {\n  background-color: @card-pf-footer-bg-color;\n  border-top: 1px solid @card-pf-border-color;\n  margin: 0 (-(@grid-gutter-width / 2)) !important;\n  padding: (@grid-gutter-width / 2) (@grid-gutter-width / 2) (@grid-gutter-width / 4);\n  a > {\n    .fa,\n    .pficon {\n      margin-right: 5px;\n    }\n  }\n  .card-pf-time-frame-filter {\n    margin-top: -2px;\n  }\n}\n\n.card-pf-link-with-icon {\n  padding-left: 21px;\n  position: relative;\n  .fa,\n  .pficon {\n    font-size: 16px;\n    left: 0;\n    position: absolute;\n    top: 0;\n  }\n}\n\n.card-pf-time-frame-filter {\n  .card-pf-heading &,\n  .card-pf-footer & {\n    float: right;\n    margin-left: 20px;\n  }\n}\n\n.card-pf-heading {\n  border-bottom: 1px solid @card-pf-border-color;\n  margin: 0 (-(@grid-gutter-width / 2)) (@grid-gutter-width / 2);\n  padding: 0 (@grid-gutter-width / 2) 0;\n  & .card-pf-time-frame-filter {\n    margin-top: -5px;\n  }\n}\n\n.card-pf-heading-details {\n  float: right;\n  font-size: (@font-size-small - 1);\n}\n\n.card-pf-subtitle {\n  font-size: @font-size-h3;\n  margin-top: @line-height-computed;\n  margin-bottom: (@line-height-computed / 2);\n  [class^=\"col\"] & {\n    margin-top: 0;\n  }\n  @media (max-width: @screen-xs-max) {\n    .card-pf-body [class^=\"col\"] + [class^=\"col\"] > & {\n      margin-top: (@grid-gutter-width);\n    }\n  }\n}\n\n.card-pf-title {\n  font-size: @font-size-h3;\n  font-weight: 400;\n  margin: (@grid-gutter-width / 2) 0;\n  padding: 0;\n  .card-pf-aggregate-status & {\n    font-size: @font-size-large;\n    margin: (@grid-gutter-width / 4) 0 0;\n    .fa,\n    .pficon {\n      color: @card-pf-aggregate-status-title-icon-color;\n      font-size: @font-size-h3;\n      margin-right: 7px;\n    }\n  }\n  .card-pf-aggregate-status-count {\n    font-size: @font-size-h3;\n    .card-pf-aggregate-status-mini & {\n      display: block;\n      font-size: (@font-size-base * 2); // 24px\n      font-weight: 300;\n      margin-bottom: 3px;\n    }\n  }\n  .card-pf-aggregate-status-mini & {\n    font-size: @font-size-base;\n    margin-top: (@grid-gutter-width / 8);\n    a {\n      display: inline-block;\n    }\n    .fa,\n    .pficon {\n      font-size: (@font-size-base * 2 + 2); // 26px\n      margin-right: 0;\n      min-width: (@font-size-base * 2 + 2); // 26px\n      position: absolute;\n      left: (@grid-gutter-width / 2);\n      text-align: center;\n      top: 15px;\n    }\n  }\n}\n\n.card-pf-utilization-details {\n  border-bottom: 1px solid @card-pf-border-color;\n  display: table;\n  margin: 12px 0 15px;\n  padding: 0 0 15px;\n  width: 100%;\n  .card-pf-utilization-card-details-count,\n  .card-pf-utilization-card-details-description {\n    float: left;\n    line-height: 1;\n  }\n  .card-pf-utilization-card-details-count {\n    font-size: (@font-size-base * 2 + 2); // 26px\n    font-weight: 300;\n    margin-right: 10px;\n  }\n  .card-pf-utilization-card-details-line-1,\n  .card-pf-utilization-card-details-line-2 {\n    display: block;\n  }\n  .card-pf-utilization-card-details-line-1 {\n    font-size: (@font-size-small - 1);\n    margin-bottom: 2px;\n  }\n}\n\n.cards-pf {\n  background: @card-pf-container-bg-color;\n  .row-cards-pf {\n    padding: 0 20px;\n    &:first-child { padding-top: 20px; }\n  }\n}\n\n.container-cards-pf {\n  margin-top: (@grid-gutter-width / 2);\n}\n\n.row-cards-pf {\n  margin-left: (-(@grid-gutter-width / 4));\n  margin-right: (-(@grid-gutter-width / 4));\n}\n","//\n// Card View\n// --------------------------------------------------\n\n.card-pf-view {\n  border: 2px solid transparent;\n  .card-pf-heading-kebab {\n    .dropdown-kebab-pf {\n      margin-top: -3px;\n    }\n    + .progress-pf-legend {\n      p { margin-bottom: 0; }\n      .progress {\n        margin-bottom: 7px;\n        margin-top: 16px;\n      }\n    }\n  }\n  .card-pf-info {\n    margin-top: 15px;\n    strong {\n      font-size: ceil((@font-size-base + 1));\n      margin-right: 10px;\n    }\n  }\n  .card-pf-item {\n    display: inline-block;\n    font-size: @font-size-h3;\n    padding: 0 13px 0 15px;\n    &:first-child { padding-left: 0; }\n    &:last-child { padding-right: 0; }\n    + .card-pf-item { border-left: 1px solid @card-pf-border-color; }\n    .fa-check { color: @brand-success; }\n    .fa,\n    .pficon {\n      + .card-pf-item-text { margin-left: 10px; }\n    }\n  }\n  .card-pf-items { margin-top: 15px; }\n  .card-pf-title {\n    font-size: ceil((@font-size-base * 1.6666));\n    font-weight: 300;\n    margin-bottom: 0;\n    margin-top: 15px;\n    .fa,\n    .pficon {\n      font-size: ceil((@font-size-base * 1.5));\n      margin-right: 2px;\n    }\n    .col-lg-2 & { font-size: @font-size-h3; }\n  }\n  .card-pf-top-element .card-pf-icon-circle {\n    border: 2px solid @color-pf-blue-300;\n    border-radius: 50%;\n    display: block;\n    font-size: 46px;\n    height: 106px;\n    line-height: 102px;\n    margin: 0 auto;\n    text-align: center;\n    width: 106px;\n    .col-lg-2 & {\n      font-size: 23px;\n      height: 54px;\n      line-height: 50px;\n      width: 54px;\n    }\n  }\n  .card-pf-view-checkbox {\n    position: absolute;\n    top: 11px;\n    left: 15px;\n    input[type=checkbox] { display: none; }\n  }\n  &.card-pf-view-multi-select {\n    .card-pf-view-checkbox {\n      input[type=checkbox] {\n        display: block;\n        @media(min-width:@screen-sm-min) {\n          visibility: hidden;\n          &:checked { visibility: visible; }\n        }\n      }\n    }\n    &:hover .card-pf-view-checkbox input[type=checkbox] { visibility: visible; }\n  }\n  &.card-pf-view-select {\n    position: relative;\n    &:hover { .box-shadow(0 1px 6px fade(@color-pf-black, 35%)); }\n    &.active { border: 2px solid @card-pf-selected-border-color; }\n  }\n  &.card-pf-view-single-select { cursor: pointer; }\n  &.card-pf-view-xs {\n    .card-pf-title {\n      font-size: 16px;\n      font-weight: normal;\n      margin-bottom: 10px;\n      .fa,\n      .pficon {\n        font-size: 14px;\n        margin-right: 5px;\n      }\n    }\n  }\n}\n","//\n// Charts\n// --------------------------------------------------\n\n.c3 {\n  path {\n    stroke: @table-border-color;\n  }\n  svg {\n    font-family: @font-family-base;\n  }\n}\n\n.c3-axis-x .tick line {\n  stroke: @table-border-color;\n}\n\n.c3-axis-y .tick line {\n  display: none;\n}\n\n.c3-chart-arc path {\n  stroke: @color-pf-white;\n}\n\n.c3-grid line {\n  stroke: @table-border-color;\n}\n\n.c3-line {\n  stroke-width: 2px;\n}\n\n.c3-tooltip {\n  background: @tooltip-bg;\n  .box-shadow(none);\n  .opacity(@tooltip-opacity);\n\n  td {\n    background: transparent;\n    border: 0;\n    color: @tooltip-color;\n    font-size: @font-size-base;\n    padding: 5px 10px;\n  }\n\n  th {\n    background: transparent;\n    font-size: @font-size-base;\n    padding: 5px 10px 0;\n    border-bottom: solid 2px @color-pf-black;\n  }\n\n  tr {\n    border: 0;\n    + tr > td {\n      padding-top: 0;\n    }\n  }\n}\n\n.c3-tooltip-sparkline,\n.donut-tooltip-pf {\n  background: @tooltip-bg;\n  color: @tooltip-color;\n  .opacity(@tooltip-opacity);\n  padding: 2px 6px;\n}\n\n.c3-xgrid,\n.c3-ygrid {\n  stroke-dasharray: 0 0;\n}\n\n.chart-pf-sparkline {\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.donut-title-big-pf {\n  font-size: @donut-font-size-big;\n  font-weight: 300;\n}\n\n.donut-title-small-pf {\n  font-size: @font-size-base;\n  font-weight: 400;\n}\n\n.line-chart-pf {\n  .c3-zoom-rect {\n    opacity: 1 !important;\n    fill: @color-pf-black-100;\n    stroke: @table-border-color;\n    stroke-width: 1px;\n  }\n}\n\n.pct-donut-chart-pf {\n\n  .pct-donut-chart-pf-label {\n    display: block;\n  }\n\n  &.pct-donut-chart-pf-left,\n  &.pct-donut-chart-pf-right,\n  .pct-donut-chart-pf-left,\n  .pct-donut-chart-pf-right {\n    display: flex;\n    flex-direction: row;\n    justify-content: center;\n    align-items: center;\n  }\n\n  &.pct-donut-chart-pf-left,\n  &.pct-donut-chart-pf-right {\n    display: inline-flex;\n  }\n\n  &.pct-donut-chart-pf-left,\n  .pct-donut-chart-pf-left {\n    flex-direction: row-reverse;\n  }\n}\n\n","//\n// Close icons\n// --------------------------------------------------\n\n//this should no longer be needed and be replaced with pficon-close. This is here for legacy. For further info see https://github.com/patternfly/patternfly/pull/781\n\n.close {\n  text-shadow: none;\n  z-index: 1;\n  position: relative;\n  .opacity(.6);\n  &:hover,\n  &:focus {\n    .opacity(.9);\n  }\n}\n","//\n// DataTables\n// --------------------------------------------------\n\n// Deprecated\n.ColVis_Button {\n  &:active {\n    &:focus {\n      outline: none;\n    }\n  }\n}\n\n// Deprecated\n.ColVis_catcher {\n  position: absolute;\n  z-index: 999;\n}\n\n// Deprecated\n.ColVis_collection {\n  background-color: @dropdown-bg;\n  border: 1px solid @dropdown-border;\n  border-radius: @border-radius-base;\n  .box-shadow(0 6px 12px fade(@color-pf-black, 17.5%));\n  background-clip: padding-box;\n  list-style: none;\n  margin: -1px 0 0 0;\n  padding: 5px 10px;\n  width: 150px;\n  z-index: @zindex-dropdown;\n  label {\n    font-weight: normal;\n    margin-bottom: 5px;\n    margin-top: 5px;\n    padding-left: 20px;\n  }\n}\n\n// Deprecated\n.ColVis_collectionBackground {\n  background-color: @color-pf-white;\n  height: 100%;\n  left: 0;\n  position: fixed;\n  top: 0;\n  width: 100%;\n  z-index: 998;\n}\n\n// Note: We won't be using this class with the Patternfly toolbar\n.dataTables_header {\n  background-color: @color-pf-black-150;\n  border: 1px solid @table-border-color;\n  border-bottom: none;\n  padding: 5px;\n  position: relative;\n  text-align: center;\n  .btn {\n    .box-shadow(none);\n  }\n  // Deprecated\n  .ColVis {\n    position: absolute;\n    right: 5px;\n    text-align: left;\n    top: 5px;\n    + .dataTables_info {\n      padding-right: 30px;\n    }\n  }\n  .dataTables_filter {\n    position: absolute;\n    input {\n      border: 1px solid @color-pf-black-400;\n      height: 24px;\n      @media (max-width: @screen-xs-max) {\n        width: 100px;\n      }\n    }\n  }\n  .dataTables_info {\n    padding: 2px 0;\n    @media (max-width: @screen-xs) {\n     text-align: right;\n    }\n    b {\n      font-weight: bold;\n    }\n  }\n}\n\n// Note: We won't be using this class with the table view\n.dataTables_footer {\n  background-color: @color-pf-white;\n  border: 1px solid @table-border-color;\n  border-top: none;\n  overflow: hidden;\n}\n\n// Not in use with latest example: May be used with pagination?\n.dataTables_paginate {\n  background: @color-pf-black-100;\n  float: right;\n  margin: 0;\n  .pagination {\n    float: left;\n    margin: 0;\n    > li {\n      > span {\n        border-color: @color-pf-white @color-pf-black-300 @color-pf-black-150;\n        border-width: 0 1px;\n        font-size: (@font-size-base + 4);\n        font-weight: normal;\n        padding: 0;\n        text-align: center;\n        width: 31px;\n        &:hover,\n        &:focus {\n          .reset-filter();\n        }\n      }\n      &.last > span {\n        border-right: none;\n      }\n      &.disabled > span {\n        background: @color-pf-black-150;\n        border-left-color: @color-pf-black-200;\n        border-right-color: @color-pf-black-200;\n        .reset-filter();\n      }\n    }\n  }\n  .pagination-input {\n    float: left;\n    font-size: @font-size-base;\n    line-height: 1em;\n    padding: 4px 15px 0;\n    text-align: right;\n    .paginate_input {\n      border: 1px solid @color-pf-black-300;\n      .box-shadow(inset 0 1px 1px fade(@color-pf-black, 7.5%));\n      font-size: @font-size-base;\n      font-weight: 600;\n      height: 19px;\n      margin-right: 8px;\n      padding-right: 3px;\n      text-align: right;\n      width: 30px;\n    }\n    .paginate_of {\n      position: relative;\n      b {\n        margin-left: 3px;\n      }\n    }\n  }\n}\n\n.dataTables_empty {\n  background: @table-bg-accent;\n}\n\n/* Might need this for pagination?\n.dataTables_wrapper {\n  margin: @line-height-computed 0;\n  @media (max-width: @screen-xs-max) {\n    .table-responsive {\n      margin-bottom: 0;\n    }\n  }\n}\n*/\n\n// Not in use with latest example: May be used with column reordering?\n.DTCR_clonedTable {\n  background-color: fade(@color-pf-white, 70%);\n  z-index: 202;\n}\n\n// Not in use with latest example: May be used with column reordering?\n.DTCR_pointer {\n  background-color: @link-color;\n  width: 1px;\n  z-index: 201;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n  filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n",".experimental-pf > * {\n  border: 2px solid @color-pf-light-green-400;\n}\n\n.experimental-pf-bar {\n  background-color: @color-pf-light-green-400;\n  border: none;\n  text-align: center;\n  position: relative;\n}\n\n.experimental-pf-more-info {\n  background-color: @color-pf-light-green-400;\n  border: 0;\n  color: @color-pf-black;\n  display: block;\n  width: 100%;\n  padding-top: 10px;\n  padding-bottom: 10px;\n  position: static;\n  @media (min-width: @screen-md-min) {\n    padding: 0 10px;\n    position: absolute;\n    right: 0;\n    top: 0;\n    width: auto;\n  }\n}\n\n.experimental-pf-text {\n  @media (min-width: @screen-md-min) {\n    padding-left: 150px;\n    padding-right: 150px;\n  }\n\n  a {\n    color: @color-pf-black;\n    text-decoration: underline;\n    &:hover {\n      color: @color-pf-black;\n      cursor: pointer;\n    }\n  }\n}\n\n.btn-experimental-pf {\n  .button-variant(@btn-default-color; @color-pf-light-green-400; @color-pf-light-green-300; @color-pf-light-green-400; @color-pf-light-green-400);\n}\n",".filter-pf-category-select {\n  display: flex;\n}\n.filter-pf-category-select-value {\n  border-left-width: 0;\n}\n.filter-pf-category-item {\n  margin-bottom: 5px;\n}\n.filter-pf-category-label {\n  font-weight: 700;\n  margin-right: 5px;\n  padding: 5px 0 6px 5px;\n}\n.filter-pf-select {\n  .caret {\n    position: absolute;\n    top: 50%;\n    right: 10px;\n    transform: translateY(-50%);\n  }\n}\n.filter-pf-select-dropdown {\n  background-color: @color-pf-white;\n  background-image: none;\n  color: @color-pf-black-500;\n  font-size: 12px;\n  font-style: italic;\n  font-weight: 400;\n  padding-right: 25px;\n  text-align: left;\n  .caret {\n    font-style: normal;\n  }\n}\n.filter-pf-active-label {\n  margin-right: 5px;\n}\n","//\n// Footer\n// --------------------------------------------------\n\n.footer-pf-alt, .footer-pf {\n  background-color: @footer-pf-bg-color;\n  color: @gray-light;\n  font-size: @font-size-small;\n  line-height: 17px; // whole px unit to avoid height differences among browsers\n  padding-left: @footer-pf-padding-left;\n  padding-top: @footer-pf-padding-top;\n  .layout-pf-alt-fixed-with-footer &,  .layout-pf-fixed-with-footer & {\n    bottom: 0;\n    left: 0;\n    position: fixed;\n    right: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n}\n","//\n// Icons\n// --------------------------------------------------\n// Custom icons and selections from IcoMoon - Free (http://icomoon.io/#icons)\n\n@font-face {\n  font-family: \"@{icon-font-name-pf}\";\n  src:url(\"@{font-path}/@{icon-font-name-pf}.eot\");\n  src:url(\"@{font-path}/@{icon-font-name-pf}.eot?#iefix\") format(\"embedded-opentype\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.ttf\") format(\"truetype\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.woff\") format(\"woff\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.svg#@{icon-font-name-pf}\") format(\"svg\");\n  font-weight: normal;\n  font-style: normal;\n}\n\n[class^=\"@{icon-prefix}-\"],\n[class*=\" @{icon-prefix}-\"] {\n  display: inline-block;\n  font-family: \"@{icon-font-name-pf}\";\n  font-style: normal;\n  font-variant: normal;\n  font-weight: normal;\n  line-height: 1;\n  speak: none;\n  text-transform: none;\n  /* Better Font Rendering =========== */\n  -moz-osx-font-smoothing: grayscale;\n  -webkit-font-smoothing: antialiased;\n}\n.@{icon-prefix}-add-circle-o:before {\n  content: @pficon-var-add-circle-o;\n}\n.@{icon-prefix}-applications:before {\n  content: @pficon-var-applications;\n}\n.@{icon-prefix}-arrow:before {\n  content: @pficon-var-arrow;\n}\n.@{icon-prefix}-asleep:before {\n  content: @pficon-var-asleep;\n}\n.@{icon-prefix}-automation:before {\n  content: @pficon-var-automation;\n}\n.@{icon-prefix}-build:before {\n  content: @pficon-var-build;\n}\n.@{icon-prefix}-builder-image:before {\n  content: @pficon-var-builder-image;\n}\n.@{icon-prefix}-bundle:before {\n  content: @pficon-var-bundle;\n}\n.@{icon-prefix}-blueprint:before {\n  content: @pficon-var-blueprint;\n}\n.@{icon-prefix}-catalog:before {\n  content: @pficon-var-catalog;\n}\n.@{icon-prefix}-chat:before {\n  content: @pficon-var-chat;\n}\n.@{icon-prefix}-close:before {\n  content: @pficon-var-close;\n}\n.@{icon-prefix}-cloud-security:before {\n  content: @pficon-var-cloud-security;\n}\n.@{icon-prefix}-cloud-tenant:before {\n  content: @pficon-var-cloud-tenant;\n}\n.@{icon-prefix}-cluster:before {\n  content: @pficon-var-cluster;\n}\n.@{icon-prefix}-connected:before {\n  content: @pficon-var-connected;\n}\n.@{icon-prefix}-container-node:before {\n  content: @pficon-var-container-node;\n}\n.@{icon-prefix}-cpu:before {\n  content: @pficon-var-cpu;\n}\n.@{icon-prefix}-degraded:before {\n  content: @pficon-var-degraded;\n}\n.@{icon-prefix}-delete:before {\n  content: @pficon-var-delete;\n}\n.@{icon-prefix}-disconnected:before {\n  content: @pficon-var-disconnected;\n}\n.@{icon-prefix}-domain:before {\n  content: @pficon-var-domain;\n}\n.@{icon-prefix}-edit:before {\n  content: @pficon-var-edit;\n}\n.@{icon-prefix}-enhancement:before {\n  content: @pficon-var-enhancement;\n}\n.@{icon-prefix}-enterprise:before {\n  content: @pficon-var-enterprise;\n}\n.@{icon-prefix}-equalizer:before {\n  content: @pficon-var-equalizer;\n}\n.@{icon-prefix}-error-circle-o:before {\n  color: @brand-danger;\n  content: @pficon-var-error-circle-o;\n}\n.@{icon-prefix}-export:before {\n  content: @pficon-var-export;\n}\n.@{icon-prefix}-flag:before,\n.@{icon-prefix}-messages:before { // class name deprecated\n  content: @pficon-var-flag;\n}\n.@{icon-prefix}-flavor:before {\n  content: @pficon-var-flavor;\n}\n.@{icon-prefix}-filter:before {\n  content: @pficon-var-filter;\n}\n.@{icon-prefix}-folder-close:before {\n  content: @pficon-var-folder-close;\n}\n.@{icon-prefix}-folder-open:before {\n  content: @pficon-var-folder-open;\n}\n.@{icon-prefix}-help:before {\n  content: @pficon-var-help;\n}\n.@{icon-prefix}-history:before {\n  content: @pficon-var-history;\n}\n.@{icon-prefix}-home:before {\n  content: @pficon-var-home;\n}\n.@{icon-prefix}-image:before {\n  content: @pficon-var-image;\n}\n.@{icon-prefix}-import:before {\n  content: @pficon-var-import;\n}\n.@{icon-prefix}-in-progress:before {\n  content: @pficon-var-in-progress;\n}\n.@{icon-prefix}-info:before {\n  content: @pficon-var-info;\n}\n.@{icon-prefix}-infrastructure:before {\n  content: @pficon-var-infrastructure;\n}\n.@{icon-prefix}-integration:before {\n  content: @pficon-var-integration;\n}\n.@{icon-prefix}-key:before {\n  content: @pficon-var-key;\n}\n.@{icon-prefix}-locked:before {\n  content: @pficon-var-locked;\n}\n.@{icon-prefix}-maintenance:before {\n  content: @pficon-var-maintenance;\n}\n.@{icon-prefix}-memory:before {\n  content: @pficon-var-memory;\n}\n.@{icon-prefix}-middleware:before {\n  content: @pficon-var-middleware;\n}\n.@{icon-prefix}-migration:before {\n  content: @pficon-var-migration;\n}\n.@{icon-prefix}-monitoring:before {\n  content: @pficon-var-monitoring;\n}\n.@{icon-prefix}-network:before {\n  content: @pficon-var-network;\n}\n.@{icon-prefix}-on:before {\n  content: @pficon-var-on;\n}\n.@{icon-prefix}-on-running:before {\n  content: @pficon-var-on-running;\n}\n.@{icon-prefix}-optimize:before {\n  content: @pficon-var-optimize;\n}\n.@{icon-prefix}-orders:before {\n  content: @pficon-var-orders;\n}\n.@{icon-prefix}-off:before {\n  content: @pficon-var-off;\n}\n.@{icon-prefix}-ok:before {\n  color: @brand-success;\n  content: @pficon-var-ok;\n}\n.@{icon-prefix}-paused:before {\n  content: @pficon-var-paused;\n}\n.@{icon-prefix}-pending:before {\n  content: @pficon-var-pending;\n}\n.@{icon-prefix}-plugged:before {\n  content: @pficon-var-plugged;\n}\n.@{icon-prefix}-port:before {\n  content: @pficon-var-port;\n}\n.@{icon-prefix}-print:before {\n  content: @pficon-var-print;\n}\n.@{icon-prefix}-process-automation:before {\n  content: @pficon-var-process-automation;\n}\n.@{icon-prefix}-private:before {\n  content: @pficon-var-private;\n}\n.@{icon-prefix}-project:before {\n  content: @pficon-var-project;\n}\n.@{icon-prefix}-rebalance:before {\n  content: @pficon-var-rebalance;\n}\n.@{icon-prefix}-rebooting:before {\n  content: @pficon-var-rebooting;\n}\n.@{icon-prefix}-refresh:before, // class name deprecated\n.@{icon-prefix}-restart:before {\n  content: @pficon-var-restart;\n}\n.@{icon-prefix}-regions:before {\n  content: @pficon-var-regions;\n}\n.@{icon-prefix}-registry:before {\n  content: @pficon-var-registry;\n}\n.@{icon-prefix}-remove:before {\n  content: @pficon-var-remove;\n}\n.@{icon-prefix}-replicator:before {\n  content: @pficon-var-replicator;\n}\n.@{icon-prefix}-repository:before {\n  content: @pficon-var-repository;\n}\n.@{icon-prefix}-resource-pool:before {\n  content: @pficon-var-resource-pool;\n}\n.@{icon-prefix}-resources-almost-empty:before {\n  content: @pficon-var-resources-almost-empty;\n}\n.@{icon-prefix}-resources-almost-full:before {\n  content: @pficon-var-resources-almost-full;\n}\n.@{icon-prefix}-resources-full:before {\n  content: @pficon-var-resources-full;\n}\n.@{icon-prefix}-route:before {\n  content: @pficon-var-route;\n}\n.@{icon-prefix}-running:before {\n  content: @pficon-var-running;\n}\n.@{icon-prefix}-save:before {\n  content: @pficon-var-save;\n}\n.@{icon-prefix}-screen:before {\n  content: @pficon-var-screen;\n}\n.@{icon-prefix}-search:before {\n  content: @pficon-var-search;\n}\n.@{icon-prefix}-security:before {\n  content: @pficon-var-security;\n}\n.@{icon-prefix}-server:before {\n  content: @pficon-var-server;\n}\n.@{icon-prefix}-server-group:before {\n  content: @pficon-var-server-group;\n}\n.@{icon-prefix}-service:before {\n  content: @pficon-var-service;\n}\n.@{icon-prefix}-services:before {\n  content: @pficon-var-services;\n}\n.@{icon-prefix}-service-catalog:before {\n  content: @pficon-var-service-catalog;\n}\n.@{icon-prefix}-settings:before {\n  content: @pficon-var-settings;\n}\n.@{icon-prefix}-spinner:before {\n  content: @pficon-var-spinner;\n}\n.@{icon-prefix}-spinner2:before {\n  content: @pficon-var-spinner2;\n}\n.@{icon-prefix}-storage-domain:before {\n  content: @pficon-var-storage-domain;\n}\n.@{icon-prefix}-tenant:before {\n  content: @pficon-var-tenant;\n}\n.@{icon-prefix}-thumb-tack-o:before {\n  content: @pficon-var-thumb-tack-o;\n}\n.@{icon-prefix}-topology:before {\n  content: @pficon-var-topology;\n}\n.@{icon-prefix}-trend-down:before {\n  content: @pficon-var-trend-down;\n}\n.@{icon-prefix}-trend-up:before {\n  content: @pficon-var-trend-up;\n}\n.@{icon-prefix}-unknown:before {\n  content: @pficon-var-unknown;\n}\n.@{icon-prefix}-user:before {\n  content: @pficon-var-user;\n}\n.@{icon-prefix}-users:before {\n  content: @pficon-var-users;\n}\n.@{icon-prefix}-unlocked:before {\n  content: @pficon-var-unlocked;\n}\n.@{icon-prefix}-unplugged:before {\n  content: @pficon-var-unplugged;\n}\n.@{icon-prefix}-virtual-machine:before {\n  content: @pficon-var-virtual-machine;\n}\n.@{icon-prefix}-volume:before {\n  content: @pficon-var-volume;\n}\n.@{icon-prefix}-warning-triangle-o:before {\n  color: @brand-warning;\n  content: @pficon-var-warning-triangle-o;\n}\n.@{icon-prefix}-zone:before {\n  content: @pficon-var-zone;\n}\n","//\n// Info Tip\n// --------------------------------------------------\n\n// Overwrites for navbar.less\n.navbar-nav > li > .dropdown-menu.infotip {\n  border-top-width: 1px !important;\n  margin-top: @popover-arrow-width;\n}\n\n// Overwrites for PatternFly - navbar.less\n@media (max-width: @grid-float-breakpoint-max) {\n  .navbar-pf .navbar-nav .open .dropdown-menu.infotip {\n    background-color: @color-pf-white !important;\n    margin-top: 0;\n  }\n}\n\n// Extends \"dropdown-menu\"\n.infotip {\n  min-width: 235px;\n  padding: 0;\n  .list-group {\n    border-top: 0;\n    margin: 0;\n    padding: 8px 0;\n    .list-group-item {\n      border: none;\n      margin: 0 15px 0 34px;\n      padding: 5px 0;\n      > .i {\n        color: @gray-pf;\n        font-size: 13px;\n        left: -20px;\n        position: absolute;\n        top: 8px;\n      }\n      > a {\n        color: @gray-pf;\n        line-height: 13px;\n      }\n      > .close {\n        float: right;\n      }\n    }\n  }\n  .footer {\n    background-color: @color-pf-black-150;\n    padding: 6px 15px;\n    a:hover {\n      color: @link-color;\n    }\n  }\n}\n\n// Arrows (Copy from popovers.less)\n//\n// .arrow is outer, .arrow:after is inner\n\n.infotip .arrow {\n  &,\n  &:after {\n    border-color: transparent;\n    border-style: solid;\n    display: block;\n    height: 0;\n    position: absolute;\n    width: 0;\n  }\n}\n.infotip .arrow {\n  border-width: @popover-arrow-outer-width;\n}\n.infotip .arrow:after {\n  border-width: @popover-arrow-width;\n  content: \"\";\n}\n\n.infotip {\n  &.bottom .arrow,\n  &.bottom-left .arrow,\n  &.bottom-right .arrow {\n    border-bottom-color: @popover-arrow-outer-color;\n    border-top-width: 0;\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    top: -@popover-arrow-outer-width;\n    &:after {\n      border-top-width: 0;\n      border-bottom-color: @popover-arrow-color;\n      content: \" \";\n      margin-left: -@popover-arrow-width;\n      top: 1px;\n    }\n  }\n  &.bottom-left .arrow {\n    left: 20%;\n  }\n  // Default:\n  &.bottom-right .arrow {\n    left: 80%;\n  }\n  &.top .arrow {\n    border-bottom-width: 0;\n    border-top-color: @popover-arrow-outer-color;\n    bottom: -@popover-arrow-outer-width;\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    &:after {\n      border-bottom-width: 0;\n      border-top-color: @color-pf-black-150;\n      bottom: 1px;\n      content: \" \";\n      margin-left: -@popover-arrow-width;\n    }\n  }\n  &.right .arrow {\n    border-left-width: 0;\n    border-right-color: @popover-arrow-outer-color;\n    left: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    top: 50%;\n    &:after {\n      bottom: -@popover-arrow-width;\n      border-left-width: 0;\n      border-right-color: @popover-arrow-color;\n      content: \" \";\n      left: 1px;\n    }\n  }\n  &.left .arrow {\n    border-left-color: @popover-arrow-outer-color;\n    border-right-width: 0;\n    margin-top: -@popover-arrow-outer-width;\n    right: -@popover-arrow-outer-width;\n    top: 50%;\n    &:after {\n      border-left-color: @popover-arrow-color;\n      border-right-width: 0;\n      bottom: -@popover-arrow-width;\n      content: \" \";\n      right: 1px;\n    }\n  }\n}\n","//\n// Layouts\n// --------------------------------------------------\n.layout-pf {\n  &,\n  & body {\n    min-height: 100%;\n  }\n  &.layout-pf-fixed {\n    &.transitions .container-pf-nav-pf-vertical {\n      transition: @flyout-transition-pf;\n    }\n    body {\n      padding-top: @navbar-pf-height; // make space for the navbar\n    }\n    .navbar-pf {\n      left: 0;\n      position: fixed;\n      top:0;\n      right: 0;\n      z-index: 1030;\n    }\n    .container-pf-nav-pf-vertical {\n      margin-left: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        margin-left: @nav-pf-vertical-badges-width;\n      }\n      &.collapsed-nav {\n        margin-left: @nav-pf-vertical-collapsed-width;\n        &.hidden-icons-pf {\n          margin-left: 0;\n        }\n      }\n      &.hidden-nav {\n        margin-left: 0; // remove space as left nav is hidden\n      }\n      &.hide-nav-pf {\n        margin-left: 0 !important;\n      }\n      &.collapsed-secondary-nav-pf, &.collapsed-tertiary-nav-pf {\n        margin-left: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          margin-left: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.nav-pf-persistent-secondary.secondary-visible-pf {\n        @media (min-width: 1200px) {\n          margin-left: (@nav-pf-vertical-width + @nav-pf-vertical-width);\n          &.nav-pf-vertical-with-badges {\n            margin-left: (@nav-pf-vertical-badges-width + @nav-pf-vertical-badges-width);\n          }\n          &.hidden-nav {\n            margin-left: 0; // remove space as left nav is hidden\n          }\n          &.collapsed-secondary-nav-pf {\n            margin-left: @nav-pf-vertical-width;\n            &.nav-pf-vertical-with-badges {\n              margin-left: @nav-pf-vertical-badges-width;\n            }\n          }\n          &.collapsed-tertiary-nav-pf {\n            margin-left: @nav-pf-vertical-width;\n            &.nav-pf-vertical-with-badges {\n              margin-left: @nav-pf-vertical-badges-width;\n            }\n          }\n          &.collapsed-nav {\n            margin-left: (@nav-pf-vertical-collapsed-width + @nav-pf-vertical-width);\n            &.nav-pf-vertical-with-badges {\n              margin-left: (@nav-pf-vertical-collapsed-width + @nav-pf-vertical-badges-width);\n            }\n            &.collapsed-secondary-nav-pf {\n              margin-left: @nav-pf-vertical-width;\n              &.nav-pf-vertical-with-badges {\n                margin-left: @nav-pf-vertical-badges-width;\n              }\n            }\n            &.collapsed-tertiary-nav-pf {\n              margin-left: @nav-pf-vertical-width;\n              &.nav-pf-vertical-with-badges {\n                margin-left: @nav-pf-vertical-badges-width;\n              }\n            }\n            &.hidden-icons-pf {\n              margin-left: 0;\n            }\n          }\n        }\n      }\n    }\n  }\n  &.layout-pf-fixed-with-footer {\n    body {\n      padding-bottom: @footer-pf-height;\n    }\n  }\n}\n.layout-pf-alt {\n  &,\n  & body {\n    min-height: 100%;\n  }\n  &.layout-pf-alt-fixed {\n    &.layout-pf-alt-fixed-inner-scroll {\n      &,\n      & body {\n        height: 100%;\n        min-height: 0;\n      }\n      .container-pf-alt-nav-pf-vertical-alt {\n        height: 100%;\n        overflow: auto;\n        &.container-cards-pf {\n          margin-top: 0;\n          padding-top: (@grid-gutter-width/2);\n        }\n      }\n    }\n    &.transitions .container-pf-alt-nav-pf-vertical-alt {\n      transition: @flyout-transition-pf;\n    }\n    body {\n      padding-top: @navbar-pf-alt-height; // make space for the navbar\n    }\n    .container-pf-alt-nav-pf-vertical-alt {\n      margin-left: (@nav-pf-vertical-alt-width);\n      &.collapsed-nav {\n        margin-left: (@nav-pf-vertical-alt-collapsed-width); // adjust space for the collapsed left nav\n      }\n      &.hidden-nav {\n        margin-left: 0; // remove space as left nav is hidden\n      }\n    }\n  }\n  &.layout-pf-alt-fixed-with-footer {\n    body {\n      padding-bottom: @footer-pf-alt-height;\n    }\n  }\n}\n","a.disabled {\n  color: @color-pf-black-500;\n  cursor: @cursor-disabled;\n  text-decoration: none;\n}\n","//\n// PatternFly List\n// --------------------------------------------------\n\n.list-pf {\n  border-bottom: 1px solid @list-pf-border-color;\n}\n\n.list-pf-item {\n  border-color: @list-pf-border-color;\n  border-left-color: @color-pf-white;\n  border-right-color: @color-pf-white;\n  border-style: solid;\n  border-width: 1px;\n  border-bottom: none;\n  &:hover {\n    background-color: @list-pf-hover-background-color;\n  }\n  &.active {\n    background-color: @list-pf-header-background-color;\n    border-color: @list-pf-active-border-color;\n    border-bottom-width: 1px;\n    border-bottom-style: solid;\n  }\n}\n\n.list-pf-expansion {\n  background-color: @color-pf-white;\n}\n\n.list-pf-container {\n  align-items: flex-start;\n  display: flex;\n  padding: @list-pf-padding;\n  .list-pf-expansion & {\n    border-top: 1px solid @list-pf-active-border-color;\n  }\n  // when wide enough, if the list is not stacked, then center items vertically\n  @media (min-width: @screen-md-min) {\n    .list-pf:not(.list-pf-stacked) & {\n      align-items: center;\n    }\n  }\n}\n\n.list-pf-chevron {\n  min-width: 1.2em; // ensures that the width does not shift when the chevron is sideways\n}\n\n.list-pf-chevron,\n.list-pf-select {\n  margin-right: 10px;\n  //add the divider line if there is a chevron or a select\n  + .list-pf-content {\n    border-left: 1px solid @color-pf-black-300;\n    padding-left: (@grid-gutter-width/2);\n  }\n  .fa {\n    font-size: 22px;\n  }\n}\n\n// add this class to manage flexed contents in the list item content\n.list-pf-content-flex {\n  align-items: flex-start;\n  display:flex;\n  flex-grow: 1;\n  flex-wrap: nowrap;\n  justify-content: flex-start;\n  min-width: 0;\n  // when wide enough, if the list is not stacked, then center items vertically\n  @media (min-width: @screen-md-min) {\n    .list-pf:not(.list-pf-stacked) & {\n      align-items: center;\n    }\n  }\n}\n\n.list-pf-left {\n  flex-grow: 0;\n  margin-left: 0;\n  margin-right: (@grid-gutter-width/2);\n}\n.list-pf-icon {\n  align-items: center;\n  display:flex;\n  justify-content: center;\n}\n.list-pf-icon-bordered {\n  border-radius: 50%;\n  border: 2px solid @list-view-accented-border;\n}\n.list-pf-icon-small {\n  font-size: 1.4em;\n  height: 30px;\n  line-height: 30px;\n  width: 30px;\n}\n\n\n.list-pf-content-wrapper {\n  align-items: center;\n  display:flex;\n  flex-grow: 1;\n  flex-wrap: wrap;\n  min-width: 0;\n  // when at larger breakpoints, don't stack the contents and add some space between the children\n  @media (min-width: @screen-md-min) {\n    flex-wrap: nowrap;\n    & > * + * {\n      margin-left: @grid-gutter-width;\n    }\n  }\n  // if the list is stacked, then align the contents to the top\n  .list-pf-stacked & {\n    align-items: flex-start;\n  }\n\n}\n\n.list-pf-main-content {\n  align-items: center;\n  display: flex;\n  flex-basis: @list-pf-main-content-width;\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-wrap: wrap;\n  min-width: 0;\n}\n\n// at larger breakpoints, if the list is not stacked, then don't wrap the main contents and add some space between them\n.list-pf:not(.list-pf-stacked) .list-pf-main-content {\n  @media (min-width: @screen-md-min) {\n      flex-wrap: nowrap;\n      width: auto;\n      & > * + * {\n        margin-left: @grid-gutter-width;\n      }\n  }\n}\n\n// Title and description are break-word wrapped; add .text-overflow-pf to truncate and ellipse instead\n.list-pf-title {\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-basis: 100%;\n  font-weight: bold;\n  min-width: 0;\n  word-wrap: break-word;\n}\n.list-pf-description {\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-basis: 100%;\n  min-width: 0;\n  word-wrap: break-word;\n}\n\n.list-pf-additional-content {\n  display: flex;\n  flex-basis: ((100% - @list-pf-main-content-width) + 1%); // this adjusts the proportions but adding up to > 100% allows for proper wrapping\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-wrap: wrap;\n  justify-content: space-between;\n}\n.list-pf-actions {\n  display: flex;\n  align-items: flex-start;\n  flex-grow: 0;\n  margin-left: @grid-gutter-width;\n  //by default, space contents apart\n  & > * + * {\n    margin-left: (@grid-gutter-width / 4);\n  }\n\n}\n","//\n// List View\n// --------------------------------------------------\n\n\n.list-view-pf {\n  .list-group-item {\n    align-items: flex-start;\n    background-clip: padding-box;\n    border-color: transparent #fff;\n    border-style: solid;\n    border-width: 1px;\n    .clearfix(); //IE9 fallback\n    display: flex;\n    flex-wrap: wrap;\n    padding-bottom: 0;\n    padding-top: 0;\n    &.list-view-pf-expand-active {\n      background-color: @list-view-hover-bg;\n      box-shadow: 0 2px 6px rgba(3, 3, 3, .2);\n      z-index: 1;\n    }\n    &.active {\n      color: @list-group-link-color;\n      background-color: @list-view-active-bg;\n      background-clip: border-box;\n      border-color: @list-view-active-border transparent transparent;\n      z-index:auto;\n    }\n    &:hover {\n      background-color: @list-view-hover-bg;\n      border-left-color: transparent;\n      border-right-color: transparent;\n    }\n    &.list-view-pf-expand-active {\n      border: solid 1px @list-view-active-border;\n      &:first-child {\n        border-top-color: @list-view-active-border;\n      }\n    }\n    &:first-child {\n      border-top: 1px solid transparent;\n    }\n    @media (min-width: @screen-md-min) {\n      align-items: center;\n    }\n  }\n  .list-group-item-heading {\n    font-size: @font-size-h3;\n    small {\n      display: block;\n      font-size: (@font-size-base * .8);\n      font-weight: 400;\n    }\n    @media (min-width: @screen-md-min) {\n      flex:     1 0 ~\"calc(25% - 20px)\";\n      float: left; // IE9 fallback\n      font-size: @font-size-base;\n      margin: 0 (@grid-gutter-width/2) 0 0;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      white-space: nowrap;\n      width: ~\"calc(25% - 20px)\"; // IE9 fallback\n    }\n  }\n  .list-group-item-text {\n    color: currentColor !important; // to overwrite color change when active.\n    margin-bottom: 10px;\n    @media (min-width: @screen-md-min) {\n      flex:     1 0 auto; // it covers whats left from the title\n      float: left; // IE9 fallback\n      margin: 0 @grid-gutter-width 0 0;\n      width: ~\"calc(75% - 40px)\" // IE9 fallback\n    }\n  }\n}\n.list-view-pf-actions {\n  float: right; // IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-left: (@grid-gutter-width/2);\n  margin-top: (@grid-gutter-width/2);\n  order: 2;\n  button,\n  > a,\n  .dropdown-kebab-pf {\n    margin-left: (@grid-gutter-width/4);\n  }\n  .list-view-pf-top-align & {\n    align-self: flex-start;\n  }\n}\n.list-view-pf-additional-info {\n  align-items: center;\n  display: flex;\n  flex-wrap: wrap;\n  @media (min-width: @screen-md-min) {\n    flex: 1 0 auto; // it covers whats left from summary\n    float: left; // IE9 fallback\n    width: 50%; // IE9 fallback\n  }\n}\n.list-view-pf-additional-info-item {\n  align-items: center;\n  display: inline-block;\n  display: flex;\n  margin-right: (@grid-gutter-width/2);\n  max-width:100%;\n  text-align: center;\n  &.list-view-pf-additional-info-item-stacked {\n    text-align: center;\n    flex-direction: column;\n    strong {\n      font-size: @font-size-h5;\n      line-height: 1em;\n    }\n  }\n  .pficon, .fa {\n    font-size: @font-size-h3;\n    margin-right: (@grid-gutter-width/4);\n  }\n  strong {\n    font-size: @font-size-h3;\n    font-weight: 600;\n    margin-right: 5px;\n  }\n  &:last-child {\n    margin-right: 0;\n  }\n}\n.list-view-pf-additional-info-item-donut-chart { width: 60px; }\n.list-view-pf-body {\n  align-items: center;\n  display: table-cell; //IE9 fallback\n  flex:     1;\n  min-width: 0;\n  vertical-align: top; //IE9 fallback\n  width: 100%; // IE9 fallback, it extends the cell to size of the container\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    display: flex;\n    flex-direction: row;\n  }\n}\n.list-view-pf-checkbox {\n  border-right: 1px solid @list-view-divider;\n  float: left; //IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-right: 15px;\n  margin-top: (@grid-gutter-width/2);\n  padding: 3px (@grid-gutter-width/4) 3px 0;\n  .list-view-pf-top-align & {\n    align-self: flex-start;\n  }\n}\n.list-view-pf-description {\n  flex:     1 0 50%;\n  .list-view-pf-stacked & {\n    display: block;\n    flex: none; // Fix FF\n  }\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    display: flex;\n    float: left; //IE9 fallback\n    width: 50%; //IE9 fallback\n  }\n}\n.list-view-pf-left {\n  display: table-cell; //IE9 fallback\n  padding-right: (@grid-gutter-width/2);\n  text-align: center;\n  vertical-align: top; //IE9 fallback\n  .list-view-pf-calendar {\n    font-size: @font-size-small;\n    line-height: 1em;\n    strong {\n      display: block;\n      font-size: (@font-size-h2 * 2);\n      font-weight: 300;\n      line-height: 1em;\n    }\n  }\n  .pficon, .fa {\n    border-radius: 50%;\n    font-size: 2em;\n    // -md is out of alpha order to get correct bg on -danger\n    &.list-view-pf-icon-md {\n      background-color: @alert-info-bg;\n      height: 50px;\n      line-height: 50px;\n      width: 50px;\n    }\n    &.list-view-pf-icon-danger {\n      background-color: @alert-danger-bg;\n      color: @alert-danger-border;\n    }\n    &.list-view-pf-icon-info {\n      color: @alert-info-border;\n    }\n    &.list-view-pf-icon-lg {\n      background-color: @alert-info-bg;\n      height: 60px;\n      line-height: 60px;\n      width: 60px;\n    }\n    &.list-view-pf-icon-sm {\n      border: 2px solid @list-view-accented-border;\n      font-size: 1.4em;\n      height: 30px;\n      line-height: 30px;\n      width: 30px;\n      &:before {\n        display: block;\n        line-height: 26px;\n      }\n    }\n    &.list-view-pf-icon-success {\n      background-color: @alert-success-bg;\n      color: @alert-success-border;\n    }\n    &.list-view-pf-icon-warning {\n      background-color: @alert-warning-bg;\n      color: @alert-warning-border;\n    }\n  }\n}\n.list-view-pf-main-info {\n  align-items: flex-start;\n  display: flex;\n  flex: 1;\n  min-width: 0;\n  padding-bottom: (@grid-gutter-width/2);\n  padding-top: (@grid-gutter-width/2);\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    .list-view-pf-top-align & {\n      align-items: flex-start;\n    }\n  }\n}\n.list-view-pf-stacked {\n  .list-group-item-heading {\n    float: none; // IE9 fallback\n    font-size: @font-size-h3;\n    line-height: 1.2em;\n    margin-bottom: 5px;\n    margin-right: @grid-gutter-width;\n    width: auto; // IE9 fallback\n  }\n  .list-group-item-text {\n    float: none;\n    width: auto;\n  }\n}\n.list-view-pf-view {\n  background: @list-group-top-border;\n  border: none;\n  margin-top: 30px;\n}\n.list-group-item-header {\n  box-sizing: content-box;\n  cursor: pointer;\n  margin: 0 -15px;\n  padding: 0 15px; //filling the width of the list item\n  width: 100%;\n}\n.list-view-pf-expand {\n  cursor: pointer;\n  float: left; //IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-right: 2px;\n  margin-top: (@grid-gutter-width/2);\n  padding: 3px 0;\n  &.active,\n  &:hover {\n    color: @link-color;\n  }\n  .list-view-pf-additional-info-item & {\n    margin: 0;\n    padding: 0;\n  }\n  .fa-angle-right {\n    cursor: pointer;\n    font-size: (@font-size-large+3);\n    margin-right: 5px;\n    margin-top: 2px;\n    width: 10px;\n  }\n}\n.list-group-item-container {\n  background: #fff;\n  border-top: solid 1px @list-view-active-border;\n  box-sizing: content-box;\n  margin: -1px -15px 0;\n  order: 3;\n  padding: 10px 15px;\n  position: relative;\n  width: 100%;\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n//    contenteditable attribute is included anywhere else in the document.\n//    Otherwise it causes space to appear at the top and bottom of elements\n//    that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n//    `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n  &:before,\n  &:after {\n    content: \" \"; // 1\n    display: table; // 2\n  }\n  &:after {\n    clear: both;\n  }\n}\n","//\n// List View Drag and Drop\n// See: https://github.com/marceljuenemann/angular-drag-and-drop-lists\n// --------------------------------------------------\n\n.list-view-pf-dnd {\n  // Override dnd styles\n  .dndDragging {\n    &.drag-original {\n      display: none;\n      // Show when dragging original list items\n      .list-view-pf-dnd-original-items {\n        display: block;\n      }\n    }\n    // Show dragable list items during move operation\n    .list-view-pf-dnd-drag-items {\n      display: inline-block;\n    }\n    // Hide original list items during dnd move operation\n    .list-view-pf-dnd-original-items {\n      display: none;\n    }\n  }\n  // Override dnd placeholder element for dragging list items to\n  .dndPlaceholder {\n    background-color: @color-pf-black-200;\n    padding: 20px 0;\n  }\n  // A handle decoration shown to left of each list items row\n  .list-group-item-header {\n    margin-left: -10px;\n    &:before {\n      background-image: linear-gradient(to bottom, @color-pf-blue-400 60%, @color-pf-white 0%);\n      background-position: left;\n      background-repeat: repeat-y;\n      background-size: 2px 5px;\n      border: 4px solid @color-pf-blue-400;\n      border-color: @color-pf-blue-500;\n      content: \"\";\n      height: 55px;\n      left: 4px;\n      position: absolute;\n      top: 5px;\n      width: 10px;\n    }\n  }\n}\n\n// Always hide dragable list items until shown during dnd move operation\n.list-view-pf-dnd-drag-items {\n  display: none;\n}\n","//\n// Login\n// --------------------------------------------------\n\n.login-pf {\n  height: 100%;\n  #brand {\n    position: relative;\n    top: -70px;\n    img {\n      display: block;\n      height: 18px;\n      margin: 0 auto;\n      max-width: 100%;\n      @media (min-width: @screen-sm-min) {\n        margin: 0;\n        text-align: left;\n      }\n    }\n  }\n  #badge {\n    display: block;\n    margin: 20px auto 70px;\n    position: relative;\n    text-align: center;\n    @media (min-width: @screen-sm-min) {\n      float: right;\n      margin-right: 64px;\n      margin-top: 50px;\n    }\n  }\n  body {\n    background: @login-bg-color url(\"@{img-path}/@{img-bg-login}\") repeat-x 50% 0;\n    background-size: auto;\n    @media (min-width: @screen-sm-min) {\n      background-size: 100% auto;\n    }\n  }\n  .container {\n    background-color: @login-container-bg-color-rgba;\n    clear: right;\n    color: @color-pf-white;\n    padding-bottom: 40px;\n    padding-top: 20px;\n    width: auto;\n    @media (min-width: @screen-sm-min) {\n      bottom: 13%;\n      padding-left: 80px;\n      position: absolute;\n      width: 100%;\n    }\n    .details {\n      p:first-child {\n        border-top: 1px solid fade(@color-pf-white, 30%);\n        padding-top: 25px;\n        margin-top: 25px;\n      }\n      @media (min-width: @screen-sm-min) {\n        p:first-child {\n          border-top: 0;\n          padding-top: 0;\n          margin-top: 0;\n        }\n        border-left: 1px solid fade(@color-pf-white, 30%);\n        padding-left: 40px;\n      }\n      p {\n        margin-bottom: 2px;\n      }\n    }\n    .form-horizontal {\n      .control-label {\n        font-size: (@font-size-base + 1);\n        font-weight: 400;\n        text-align: left;\n      }\n      .form-group:last-child {\n        &,\n        .help-block:last-child {\n          margin-bottom: 0;\n        }\n      }\n    }\n    .help-block {\n      color: @color-pf-white;\n    }\n    .login {\n      @media (min-width: @screen-sm-min) {\n        padding-right: 40px;\n      }\n    }\n    .submit {\n      text-align: right;\n    }\n  }\n}\n\n//\n// Login\n// The following styles are for the new login\n// --------------------------------------------------\n.login-pf-page {\n  .login-pf-brand {\n    margin-top: @login-pf-brand-margin-top;\n    max-width:360px;\n    width: 70%;\n    @media (min-width: @screen-sm-min) {\n      margin-top: @login-pf-brand-desktop-margin-top;\n    }\n  }\n  .login-pf-page-header {\n    margin-bottom: @login-pf-page-header-margin-bottom;\n      @media (min-width: @screen-sm-min) {\n        margin-bottom: @login-pf-page-header-desktop-margin-bottom;\n      }\n    text-align: center;\n    p {\n      color: @color-pf-white;\n      font-size: @font-size-large;\n      margin-left: auto;\n      margin-right: auto;\n      margin-top: @login-pf-page-header-paragraph-margin-top;\n    }\n  }\n  .card-pf {\n    padding: @login-pf-card-pf-padding;\n    margin-bottom: 0;\n    @media (min-width: @screen-sm-min) {\n      padding: @login-pf-card-pf-desktop-padding;\n    }\n    p {\n      color: @color-pf-black-600;\n    }\n  }\n  .form-control {\n    height: ceil((@input-height-base + 10px ));\n  }\n  .checkbox-label {\n    color: @color-pf-black-600;\n    font-weight: 300;\n    margin-bottom: @login-pf-checkbox-label-margin-bottom;\n    @media (min-width: @screen-sm-min) {\n      margin: 0;\n    }\n  }\n  .btn-primary {\n    margin-top: @login-pf-btn-primary-margin-top;\n  }\n  .login-pf-header {\n    margin-bottom: @login-pf-header-margin-bottom;\n    @media (min-width: @screen-sm-min) {\n      margin-bottom:@login-pf-header-desktop-margin-bottom;\n    }\n    display:flex;\n    flex-direction: column;\n    h1, p {\n      text-align: center;\n    }\n    h1 {\n      font-size: @font-size-h3;\n      @media (min-width: @screen-sm-min) {\n        font-size: @font-size-h1;\n      }\n    }\n    //this is ugly but neccessary to get the desired style :(\n    .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {\n      width: auto;\n      align-self: flex-end;\n      .dropdown-toggle {\n        color: @color-pf-black-700;\n        background: none;\n        padding:0 @login-pf-dropdown-toggle-padding-right 0 0;\n        font-weight: 300;\n        &:not(:focus) {\n          box-shadow: none;\n          border: 1px solid transparent;\n        }\n          .caret {\n            right: 0;\n          }\n      }\n    }\n  }\n  .login-pf-signup {\n    margin: @login-pf-signup-margin-top 0 0;\n    font-size: ceil((@font-size-base * 1.25));\n    text-align: center;\n    a {\n      margin-left: @login-pf-signup-a-margin-left;\n    }\n  }\n  .login-pf-settings {\n    display: flex;\n    justify-content: space-between;\n    flex-wrap: wrap;\n  }\n  .login-pf-page-footer {\n    display: flex;\n    justify-content: center;\n    flex-wrap:wrap;\n    &-links {\n      display: flex;\n      margin: @login-pf-page-footer-links-margin-top 0 0 0;\n        li:not(:last-of-type) {\n          position: relative;\n          margin: 0 @login-pf-page-footer-links-li-margin-right 0 0;\n            &:after {\n              content:\".\";\n              color: @color-pf-white;\n              position: absolute;\n              top: 0px;\n              right: -10px;\n            }\n        }\n    }\n    &-link {\n      color: @color-pf-white;\n      font-size: @font-size-large;\n    }\n    &-sso-services {\n      flex: 1 0 100%;\n      margin-top: @login-pf-page-footer-sso-margin-top;\n      text-align: center;\n      color: @color-pf-white;\n      &-logos {\n        display: flex;\n        flex-wrap: wrap;\n        padding: 0;\n        margin: 0;\n        list-style: none;\n        justify-content: center;\n          li {\n            margin: 0 @login-pf-page-footer-sso-logos-li-margin @login-pf-page-footer-sso-logos-li-margin;\n          }\n      }\n    }\n  }//login-pf-footer\n\n\n  // The following styles are for the login page with different account options\n  // --------------------------------------------------------------------------\n\n  &.login-pf-page-accounts {\n    margin-left: @login-pf-page-accounts-margin;\n    margin-right: @login-pf-page-accounts-margin;\n  }\n  .login-pf-accounts {\n    display: flex;\n    justify-content: space-between;\n    flex-wrap: wrap;\n    .login-pf-header, .login-pf-signup {\n      flex-basis: 100%;\n    }\n    max-width: @login-pf-card-pf-max-width;\n    margin-left: auto;\n    margin-right: auto;\n  }\n  .login-pf-social-section {\n    flex-basis: 100%;\n    padding:0;\n    @media (min-width: @screen-sm-min) {\n    flex:0 1 50%;\n    max-width:50%;// this is for IE10/11 that doesn't consider padding with box-sizing on flex-children.\n    }\n    @media (min-width: @screen-sm-min) {\n      &:first-of-type {\n        padding-right: @login-pf-accounts-section-heading-desktop-padding-right;\n      }\n      &:last-of-type {\n        padding-left: ceil((@login-pf-accounts-section-heading-desktop-padding-left - 1px));\n        border-left: 1px solid @color-pf-black-300;\n      }\n    }\n  }//social-section\n  .login-pf-social {\n    margin: @login-pf-social-margin;\n    @media (min-width: @screen-sm-min) {\n      margin: 0;\n      &-double-col {\n        flex-wrap: wrap;\n        display: flex;\n        justify-content: space-between;\n        .login-pf-social-link {\n          flex-basis: 48%;\n        }\n      }\n    }\n\n    &:not(.login-pf-social-all) {\n      .login-pf-social-link-more {\n        display: none;\n      }\n    }\n\n    &-link {\n        margin-bottom: @login-pf-accounts-link-margin-bottom;\n      a {\n        display: block;\n        padding: @login-pf-accounts-link-a-padding 0;\n        font-size: @font-size-large;\n        background: @color-pf-black-150;\n        text-align: center;\n        color: @color-pf-black-600;\n          img {\n            margin: 0 @login-pf-accounts-link-img-margin-right 0 0;\n            width: 20px;\n            height: 20px;\n          }\n          &:hover {\n            text-decoration: none;\n            background: @color-pf-black-200;\n          }\n      }\n    }\n    &-toggle {\n      float: right;\n      padding: 0;\n      .caret {\n        margin-left: @login-pf-accounts-more-caret-margin-left;\n      }\n      &-active {\n        .caret {\n          transform: rotate(-180deg);\n        }\n      }\n    }\n  }\n\n}//login-pf-page\n","//\n// Navbar\n// --------------------------------------------------\n\n.navbar-pf {\n  background: @navbar-pf-bg-color;\n  border: 0;\n  border-radius: 0;\n  border-top: 3px solid @navbar-pf-border-color;\n  margin-bottom: 0;\n  min-height: 0;\n  .navbar-brand {\n    color: @navbar-pf-active-color;\n    height: auto;\n    padding: 12px 0;\n    margin: 0 0 0 20px;\n    img {\n      display: block;\n    }\n  }\n  .navbar-collapse {\n    border-top: 0;\n    .box-shadow(none);\n    padding: 0;\n  }\n  .navbar-header {\n    border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n    float: none;\n  }\n  .navbar-nav {\n    margin: 0;\n    > .active > a,\n    > .active > a:hover,\n    > .active > a:focus {\n      background-color: @navbar-pf-navbar-nav-active-bg-color;\n      color: @navbar-pf-active-color;\n    }\n    > li > a {\n      color: @navbar-pf-color;\n      line-height: 1;\n      padding: 10px 20px;\n      text-shadow: none;\n      &:hover,\n      &:focus {\n        color: @navbar-pf-active-color;\n      }\n    }\n    > .open {\n      > a {\n        &,\n        &:hover,\n        &:focus {\n          background-color: @navbar-pf-navbar-nav-active-bg-color;\n          color: @navbar-pf-active-color;\n        }\n      }\n    }\n .badge {\n    background-color: @notification-badge-color;\n    border-radius: 20px;\n    color: @navbar-pf-vertical-active-color;\n    cursor: pointer;\n    font-size: (@font-size-base - 3);\n    font-weight: 700;\n    left: 26px;\n    margin: 0;\n    padding: 2px 4px;\n    position: absolute;\n    min-width: 10px;\n    min-height: 10px;\n    top: 6px;\n    @media(min-width: @screen-sm-min) {\n      left: auto;\n      right: 6px;\n      top: 3px;\n    }\n    &.badge-pf-bordered {\n      border: 1px solid @navbar-pf-bg-color;\n    }\n}\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      .active .dropdown-menu,\n      .active .navbar-persistent,\n      .open .dropdown-menu {\n        background-color: @navbar-pf-navbar-nav-active-active-bg-color !important;\n        margin-left: 0;\n        padding-bottom: 0;\n        padding-top: 0;\n        > .active > a,\n        .dropdown-submenu.open > a {\n          &,\n          &:hover,\n          &:focus {\n            background-color: @navbar-pf-navbar-nav-active-active-open-bg-color !important;\n            color: @navbar-pf-active-color;\n          }\n        }\n        > li > a {\n          background-color: transparent;\n          border: 0;\n          color: @navbar-pf-color;\n          outline: none;\n          padding-left: 30px;\n          &:hover {\n            color: @navbar-pf-active-color;\n          }\n        }\n        .divider {\n          background-color: @navbar-pf-navbar-header-border-color;\n          margin: 0 1px;\n        }\n        .dropdown-header {\n          padding-bottom: 0;\n          padding-left: 30px;\n        }\n        .dropdown-submenu {\n          &.open .dropdown-toggle {\n            color: @navbar-pf-active-color;\n          }\n          &.pull-left {\n            float: none !important;\n          }\n          > a:after {\n            display: none;\n          }\n          .dropdown-header {\n            padding-left: 45px;\n          }\n          .dropdown-menu {\n            border: 0;\n            bottom: auto;\n            .box-shadow(none);\n            display: block;\n            float: none;\n            margin: 0;\n            min-width: 0;\n            padding: 0;\n            position: relative;\n            left: auto;\n            right: auto;\n            top: auto;\n            > li > a {\n              padding: 5px 15px 5px 45px;\n              line-height: 20px;\n            }\n            .dropdown-menu > li > a {\n              padding-left: 60px;\n            }\n          }\n        }\n      }\n      .active .navbar-persistent {\n        .dropdown-submenu {\n          &.open .dropdown-menu {\n            display: block;\n          }\n          > a:after {\n            display: inline-block !important;\n            position: relative;\n            right: auto;\n            top: 1px;\n          }\n          .dropdown-menu {\n            display: none;\n          }\n          .dropdown-submenu > a:after {\n            display: none !important;\n          }\n        }\n      }\n      .context-bootstrap-select { // Also see bootstrap-select.less\n        .open > .dropdown-menu {\n          background-color: @color-pf-white !important;\n          > .active > a {\n            &,\n            &:active {\n              background-color: @dropdown-link-hover-bg !important;\n              border-color: @dropdown-link-hover-border-color !important;\n              color: @gray-dark !important;\n              small {\n                color: @gray-light !important;\n              }\n            }\n          }\n          > .disabled > a {\n            color: @gray-light !important;\n          }\n          > .selected > a {\n            &,\n            &:active {\n              background-color: @dropdown-link-active-bg !important;\n              border-color: @dropdown-link-active-border-color !important;\n              color: @color-pf-white !important;\n              small {\n                color: fade(@color-pf-white, 50%) !important;\n              }\n            }\n          }\n          li {\n            > a.opt {\n              border-bottom: 1px solid transparent;\n              border-top: 1px solid transparent;\n              color: @gray-dark;\n              padding-left: 10px;\n              padding-right: 10px;\n            }\n            & a {\n              &:active small {\n                color: fade(@color-pf-white, 50%) !important;\n              }\n              &:hover,\n              &:focus {\n                small {\n                  color: @gray-light;\n                }\n              }\n            }\n          }\n        }\n        > .open > .dropdown-menu {\n          padding-bottom: 5px;\n          padding-top: 5px;\n        }\n      }\n    }\n  }\n  .navbar-persistent {\n    display: none;\n  }\n  .active > .navbar-persistent {\n    display: block;\n  }\n  .navbar-primary {\n    float: none;\n    .context {\n      border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n      &.context-bootstrap-select .bootstrap-select.btn-group {\n        &,\n        &[class*=\"span\"] {\n          margin: 8px 20px 9px;\n          width: auto; // known bug:  IE8 will make it as wide as the longest string\n        }\n      }\n    }\n    > li > .navbar-persistent > .dropdown-submenu > a {\n      position: relative;\n      &:after {\n        content: @fa-var-angle-down;\n        display: inline-block;\n        font-family: @icon-font-name-fa;\n        font-weight: normal;\n        @media (max-width: @grid-float-breakpoint-max) {\n          height: 10px;\n          margin-left: 4px;\n          vertical-align: baseline;\n        }\n      }\n    }\n  }\n  .navbar-toggle {\n    border: 0;\n    margin: 0;\n    padding: 10px 20px;\n    &:hover,\n    &:focus {\n      background-color: transparent;\n      outline: none;\n      .icon-bar {\n        .box-shadow(0 0 3px @color-pf-white);\n      }\n    }\n    .icon-bar {\n      background-color: @navbar-pf-icon-bar-bg-color;\n    }\n  }\n  .navbar-utility {\n    border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n    li.dropdown > .dropdown-toggle {\n      padding-left: 36px;\n      position: relative;\n      .pficon-user {\n        left: 20px;\n        position: absolute;\n        top: 10px;\n      }\n    }\n    @media (max-width: @grid-float-breakpoint-max) {\n      > li + li {\n        border-top: 1px solid @navbar-pf-navbar-header-border-color;\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-pf {\n    .navbar-brand {\n      padding: @navbar-pf-navbar-navbar-brand-padding;\n    }\n    .navbar-nav > li > a {\n      padding-bottom: 14px;\n      padding-top: 14px;\n    }\n    .navbar-persistent {\n      font-size: @font-size-large;\n    }\n    .navbar-primary {\n      font-size: @font-size-large;\n      #gradient > .vertical(@navbar-pf-navbar-primary-bg-color-start, @navbar-pf-navbar-primary-bg-color-stop);\n      &.persistent-secondary {\n        .context {\n          .dropdown-menu {\n            top: auto;\n          }\n        }\n        .dropup .dropdown-menu {\n          bottom: -5px;\n          top: auto;\n        }\n        > li {\n          position: static;\n          &.active {\n            margin-bottom: 32px;\n            > .navbar-persistent {\n              display: block;\n              left: 0;\n              position: absolute;\n            }\n          }\n          > .navbar-persistent {\n            background: @navbar-pf-navbar-navbar-persistent-bg-color;\n            border-bottom: 1px solid @navbar-pf-navbar-navbar-persistent-border-color;\n            padding: 0;\n            width: 100%;\n            a {\n              text-decoration: none !important;\n            }\n            > li {\n              &.active {\n                &,\n                &:hover {\n                  .tab-indicator(@background: @nav-tabs-active-link-hover-color, @left: 20px, @right: 20px);\n                }\n                > a,\n                > a:hover,\n                &:hover > a {\n                  color: @link-color !important;\n                }\n                .active > a {\n                  color: @navbar-pf-active-color;\n                }\n              }\n              &.dropdown-submenu {\n                &:hover > .dropdown-menu {\n                  display: none;\n                }\n                &.open {\n                  > .dropdown-menu {\n                    display: block;\n                    left: 20px;\n                    margin-top: 1px;\n                    top: 100%;\n                  }\n                  > .dropdown-toggle {\n                    color: @gray-darker;\n                    &:after {\n                      border-top-color: @gray-darker;\n                    }\n                  }\n                }\n                > .dropdown-toggle {\n                  padding-right: 35px !important;\n                  &:after {\n                    position: absolute;\n                    right: 20px;\n                    top: 10px;\n                  }\n                }\n              }\n              &:hover,\n              &.open {\n                .tab-indicator(@left: 20px, @right: 20px);\n                > a {\n                  color: @gray-darker;\n                  &:after {\n                    border-top-color: @gray-darker;\n                  }\n                }\n              }\n              > a {\n                background-color: transparent;\n                display: block;\n                line-height: 1;\n                padding: 9px 20px;\n                &.dropdown-toggle {\n                  padding-right: 35px;\n                  &:after {\n                    font-size: (@font-size-large + 1);\n                    position: absolute;\n                    right: 20px;\n                    top: 9px;\n                  }\n                }\n                &:hover {\n                  color: @gray-darker;\n                }\n              }\n              a {\n                color: @gray-pf;\n              }\n            }\n          }\n        }\n      }\n      > li > a {\n        border-bottom: 1px solid transparent;\n        border-top: 1px solid transparent;\n        position: relative;\n        margin: -1px 0 0;\n        &:hover {\n          background-color: @navbar-pf-navbar-primary-hover-bg-color-stop;\n          border-top-color: @navbar-pf-navbar-primary-hover-border-color;\n          color: @navbar-pf-color;\n          #gradient > .vertical(@navbar-pf-navbar-primary-hover-bg-color-start, @navbar-pf-navbar-primary-hover-bg-color-stop);\n        }\n      }\n      > .active > a,\n      > .active > a:hover,\n      > .active > a:focus,\n      > .open > a,\n      > .open > a:hover,\n      > .open > a:focus {\n        background-color: @navbar-pf-navbar-primary-active-bg-color-stop;\n        border-bottom-color: @navbar-pf-navbar-primary-active-bg-color-stop;\n        border-top-color: @navbar-pf-navbar-primary-active-border-color;\n        .box-shadow(none);\n        color: @navbar-pf-active-color;\n        #gradient > .vertical(@navbar-pf-navbar-primary-active-bg-color-start, @navbar-pf-navbar-primary-active-bg-color-stop);\n      }\n      li.context {\n        &.context-bootstrap-select .filter-option {\n          max-width: 160px;\n          text-overflow: ellipsis;\n        }\n        &.dropdown {\n          border-bottom: 0;\n        }\n        > a,\n        &.context-bootstrap-select {\n          background-color: @navbar-pf-navbar-primary-context-bg-color-stop;\n          border-bottom-color: @navbar-pf-navbar-primary-context-border-color;\n          border-right: 1px solid @navbar-pf-navbar-primary-context-border-color;\n          border-top-color: @navbar-pf-navbar-primary-context-border-top-color;\n          font-weight: 600;\n          #gradient > .vertical(@navbar-pf-navbar-primary-context-bg-color-start, @navbar-pf-navbar-primary-context-bg-color-stop);\n          &:hover {\n            background-color: @navbar-pf-navbar-primary-context-hover-bg-color-stop;\n            border-bottom-color: @navbar-pf-navbar-primary-context-hover-border-color;\n            border-right-color: @navbar-pf-navbar-primary-context-hover-border-color;\n            border-top-color: @navbar-pf-navbar-primary-context-hover-border-top-color;\n            #gradient > .vertical(@navbar-pf-navbar-primary-context-hover-bg-color-start, @navbar-pf-navbar-primary-context-hover-bg-color-stop);\n          }\n        }\n        &.open > a {\n          background-color: @navbar-pf-navbar-primary-context-active-bg-color-stop;\n          border-bottom-color: @navbar-pf-navbar-primary-context-active-border-color;\n          border-right-color: @navbar-pf-navbar-primary-context-active-border-right-color;\n          border-top-color: @navbar-pf-navbar-primary-context-active-border-top-color;\n          #gradient > .vertical(@navbar-pf-navbar-primary-context-active-bg-color-start, @navbar-pf-navbar-primary-context-active-bg-color-stop);\n        }\n      }\n    }\n    .navbar-utility {\n      border-bottom: 0;\n      font-size: @font-size-small;\n      position: absolute;\n      right: 0;\n      top: 0;\n      > .active > a,\n      > .active > a:hover,\n      > .active > a:focus,\n      > .open > a,\n      > .open > a:hover,\n      > .open > a:focus {\n        background: @navbar-pf-navbar-utility-open-bg-color;\n        color: @navbar-pf-navbar-utility-color;\n      }\n      > li > a {\n        border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n        color: @navbar-pf-navbar-utility-color !important;\n        padding: 7px 10px;\n        &:hover {\n          background: @navbar-pf-navbar-utility-hover-bg-color;\n          border-left-color: @navbar-pf-navbar-utility-hover-border-color;\n        }\n      }\n      > li.open > a {\n        border-left-color: @navbar-pf-navbar-utility-open-border-color;\n        color: @navbar-pf-active-color !important;\n      }\n      li.dropdown > .dropdown-toggle {\n        padding-left: 26px;\n        .pficon-user {\n          left: 10px;\n          top: 7px;\n        }\n      }\n      .open .dropdown-menu {\n        left: auto;\n        right: 0;\n        .dropdown-menu {\n          left: auto;\n          right: 100%;\n        }\n      }\n    }\n    .navbar-utility .open .dropdown-menu {\n        border-top-width: 0;\n    }\n    .open {\n      &.bootstrap-select .dropdown-menu,\n      .dropdown-submenu > .dropdown-menu {\n        border-top-width: 1px !important;\n      }\n    }\n  }\n}\n@media (max-width: 360px) {\n  .navbar-pf {\n    .navbar-brand {\n      margin-left: 10px;\n      width: 75%;\n      img {\n        height: auto;\n        max-width: 100%;\n      }\n    }\n    .navbar-toggle {\n      padding-left: 0;\n    }\n  }\n}\n","// Variables\n// --------------------------\n\n@fa-font-path:        \"../fonts\";\n@fa-font-size-base:   14px;\n@fa-line-height-base: 1;\n//@fa-font-path:        \"//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts\"; // for referencing Bootstrap CDN font files directly\n@fa-css-prefix:       fa;\n@fa-version:          \"4.7.0\";\n@fa-border-color:     #eee;\n@fa-inverse:          #fff;\n@fa-li-width:         (30em / 14);\n\n@fa-var-500px: \"\\f26e\";\n@fa-var-address-book: \"\\f2b9\";\n@fa-var-address-book-o: \"\\f2ba\";\n@fa-var-address-card: \"\\f2bb\";\n@fa-var-address-card-o: \"\\f2bc\";\n@fa-var-adjust: \"\\f042\";\n@fa-var-adn: \"\\f170\";\n@fa-var-align-center: \"\\f037\";\n@fa-var-align-justify: \"\\f039\";\n@fa-var-align-left: \"\\f036\";\n@fa-var-align-right: \"\\f038\";\n@fa-var-amazon: \"\\f270\";\n@fa-var-ambulance: \"\\f0f9\";\n@fa-var-american-sign-language-interpreting: \"\\f2a3\";\n@fa-var-anchor: \"\\f13d\";\n@fa-var-android: \"\\f17b\";\n@fa-var-angellist: \"\\f209\";\n@fa-var-angle-double-down: \"\\f103\";\n@fa-var-angle-double-left: \"\\f100\";\n@fa-var-angle-double-right: \"\\f101\";\n@fa-var-angle-double-up: \"\\f102\";\n@fa-var-angle-down: \"\\f107\";\n@fa-var-angle-left: \"\\f104\";\n@fa-var-angle-right: \"\\f105\";\n@fa-var-angle-up: \"\\f106\";\n@fa-var-apple: \"\\f179\";\n@fa-var-archive: \"\\f187\";\n@fa-var-area-chart: \"\\f1fe\";\n@fa-var-arrow-circle-down: \"\\f0ab\";\n@fa-var-arrow-circle-left: \"\\f0a8\";\n@fa-var-arrow-circle-o-down: \"\\f01a\";\n@fa-var-arrow-circle-o-left: \"\\f190\";\n@fa-var-arrow-circle-o-right: \"\\f18e\";\n@fa-var-arrow-circle-o-up: \"\\f01b\";\n@fa-var-arrow-circle-right: \"\\f0a9\";\n@fa-var-arrow-circle-up: \"\\f0aa\";\n@fa-var-arrow-down: \"\\f063\";\n@fa-var-arrow-left: \"\\f060\";\n@fa-var-arrow-right: \"\\f061\";\n@fa-var-arrow-up: \"\\f062\";\n@fa-var-arrows: \"\\f047\";\n@fa-var-arrows-alt: \"\\f0b2\";\n@fa-var-arrows-h: \"\\f07e\";\n@fa-var-arrows-v: \"\\f07d\";\n@fa-var-asl-interpreting: \"\\f2a3\";\n@fa-var-assistive-listening-systems: \"\\f2a2\";\n@fa-var-asterisk: \"\\f069\";\n@fa-var-at: \"\\f1fa\";\n@fa-var-audio-description: \"\\f29e\";\n@fa-var-automobile: \"\\f1b9\";\n@fa-var-backward: \"\\f04a\";\n@fa-var-balance-scale: \"\\f24e\";\n@fa-var-ban: \"\\f05e\";\n@fa-var-bandcamp: \"\\f2d5\";\n@fa-var-bank: \"\\f19c\";\n@fa-var-bar-chart: \"\\f080\";\n@fa-var-bar-chart-o: \"\\f080\";\n@fa-var-barcode: \"\\f02a\";\n@fa-var-bars: \"\\f0c9\";\n@fa-var-bath: \"\\f2cd\";\n@fa-var-bathtub: \"\\f2cd\";\n@fa-var-battery: \"\\f240\";\n@fa-var-battery-0: \"\\f244\";\n@fa-var-battery-1: \"\\f243\";\n@fa-var-battery-2: \"\\f242\";\n@fa-var-battery-3: \"\\f241\";\n@fa-var-battery-4: \"\\f240\";\n@fa-var-battery-empty: \"\\f244\";\n@fa-var-battery-full: \"\\f240\";\n@fa-var-battery-half: \"\\f242\";\n@fa-var-battery-quarter: \"\\f243\";\n@fa-var-battery-three-quarters: \"\\f241\";\n@fa-var-bed: \"\\f236\";\n@fa-var-beer: \"\\f0fc\";\n@fa-var-behance: \"\\f1b4\";\n@fa-var-behance-square: \"\\f1b5\";\n@fa-var-bell: \"\\f0f3\";\n@fa-var-bell-o: \"\\f0a2\";\n@fa-var-bell-slash: \"\\f1f6\";\n@fa-var-bell-slash-o: \"\\f1f7\";\n@fa-var-bicycle: \"\\f206\";\n@fa-var-binoculars: \"\\f1e5\";\n@fa-var-birthday-cake: \"\\f1fd\";\n@fa-var-bitbucket: \"\\f171\";\n@fa-var-bitbucket-square: \"\\f172\";\n@fa-var-bitcoin: \"\\f15a\";\n@fa-var-black-tie: \"\\f27e\";\n@fa-var-blind: \"\\f29d\";\n@fa-var-bluetooth: \"\\f293\";\n@fa-var-bluetooth-b: \"\\f294\";\n@fa-var-bold: \"\\f032\";\n@fa-var-bolt: \"\\f0e7\";\n@fa-var-bomb: \"\\f1e2\";\n@fa-var-book: \"\\f02d\";\n@fa-var-bookmark: \"\\f02e\";\n@fa-var-bookmark-o: \"\\f097\";\n@fa-var-braille: \"\\f2a1\";\n@fa-var-briefcase: \"\\f0b1\";\n@fa-var-btc: \"\\f15a\";\n@fa-var-bug: \"\\f188\";\n@fa-var-building: \"\\f1ad\";\n@fa-var-building-o: \"\\f0f7\";\n@fa-var-bullhorn: \"\\f0a1\";\n@fa-var-bullseye: \"\\f140\";\n@fa-var-bus: \"\\f207\";\n@fa-var-buysellads: \"\\f20d\";\n@fa-var-cab: \"\\f1ba\";\n@fa-var-calculator: \"\\f1ec\";\n@fa-var-calendar: \"\\f073\";\n@fa-var-calendar-check-o: \"\\f274\";\n@fa-var-calendar-minus-o: \"\\f272\";\n@fa-var-calendar-o: \"\\f133\";\n@fa-var-calendar-plus-o: \"\\f271\";\n@fa-var-calendar-times-o: \"\\f273\";\n@fa-var-camera: \"\\f030\";\n@fa-var-camera-retro: \"\\f083\";\n@fa-var-car: \"\\f1b9\";\n@fa-var-caret-down: \"\\f0d7\";\n@fa-var-caret-left: \"\\f0d9\";\n@fa-var-caret-right: \"\\f0da\";\n@fa-var-caret-square-o-down: \"\\f150\";\n@fa-var-caret-square-o-left: \"\\f191\";\n@fa-var-caret-square-o-right: \"\\f152\";\n@fa-var-caret-square-o-up: \"\\f151\";\n@fa-var-caret-up: \"\\f0d8\";\n@fa-var-cart-arrow-down: \"\\f218\";\n@fa-var-cart-plus: \"\\f217\";\n@fa-var-cc: \"\\f20a\";\n@fa-var-cc-amex: \"\\f1f3\";\n@fa-var-cc-diners-club: \"\\f24c\";\n@fa-var-cc-discover: \"\\f1f2\";\n@fa-var-cc-jcb: \"\\f24b\";\n@fa-var-cc-mastercard: \"\\f1f1\";\n@fa-var-cc-paypal: \"\\f1f4\";\n@fa-var-cc-stripe: \"\\f1f5\";\n@fa-var-cc-visa: \"\\f1f0\";\n@fa-var-certificate: \"\\f0a3\";\n@fa-var-chain: \"\\f0c1\";\n@fa-var-chain-broken: \"\\f127\";\n@fa-var-check: \"\\f00c\";\n@fa-var-check-circle: \"\\f058\";\n@fa-var-check-circle-o: \"\\f05d\";\n@fa-var-check-square: \"\\f14a\";\n@fa-var-check-square-o: \"\\f046\";\n@fa-var-chevron-circle-down: \"\\f13a\";\n@fa-var-chevron-circle-left: \"\\f137\";\n@fa-var-chevron-circle-right: \"\\f138\";\n@fa-var-chevron-circle-up: \"\\f139\";\n@fa-var-chevron-down: \"\\f078\";\n@fa-var-chevron-left: \"\\f053\";\n@fa-var-chevron-right: \"\\f054\";\n@fa-var-chevron-up: \"\\f077\";\n@fa-var-child: \"\\f1ae\";\n@fa-var-chrome: \"\\f268\";\n@fa-var-circle: \"\\f111\";\n@fa-var-circle-o: \"\\f10c\";\n@fa-var-circle-o-notch: \"\\f1ce\";\n@fa-var-circle-thin: \"\\f1db\";\n@fa-var-clipboard: \"\\f0ea\";\n@fa-var-clock-o: \"\\f017\";\n@fa-var-clone: \"\\f24d\";\n@fa-var-close: \"\\f00d\";\n@fa-var-cloud: \"\\f0c2\";\n@fa-var-cloud-download: \"\\f0ed\";\n@fa-var-cloud-upload: \"\\f0ee\";\n@fa-var-cny: \"\\f157\";\n@fa-var-code: \"\\f121\";\n@fa-var-code-fork: \"\\f126\";\n@fa-var-codepen: \"\\f1cb\";\n@fa-var-codiepie: \"\\f284\";\n@fa-var-coffee: \"\\f0f4\";\n@fa-var-cog: \"\\f013\";\n@fa-var-cogs: \"\\f085\";\n@fa-var-columns: \"\\f0db\";\n@fa-var-comment: \"\\f075\";\n@fa-var-comment-o: \"\\f0e5\";\n@fa-var-commenting: \"\\f27a\";\n@fa-var-commenting-o: \"\\f27b\";\n@fa-var-comments: \"\\f086\";\n@fa-var-comments-o: \"\\f0e6\";\n@fa-var-compass: \"\\f14e\";\n@fa-var-compress: \"\\f066\";\n@fa-var-connectdevelop: \"\\f20e\";\n@fa-var-contao: \"\\f26d\";\n@fa-var-copy: \"\\f0c5\";\n@fa-var-copyright: \"\\f1f9\";\n@fa-var-creative-commons: \"\\f25e\";\n@fa-var-credit-card: \"\\f09d\";\n@fa-var-credit-card-alt: \"\\f283\";\n@fa-var-crop: \"\\f125\";\n@fa-var-crosshairs: \"\\f05b\";\n@fa-var-css3: \"\\f13c\";\n@fa-var-cube: \"\\f1b2\";\n@fa-var-cubes: \"\\f1b3\";\n@fa-var-cut: \"\\f0c4\";\n@fa-var-cutlery: \"\\f0f5\";\n@fa-var-dashboard: \"\\f0e4\";\n@fa-var-dashcube: \"\\f210\";\n@fa-var-database: \"\\f1c0\";\n@fa-var-deaf: \"\\f2a4\";\n@fa-var-deafness: \"\\f2a4\";\n@fa-var-dedent: \"\\f03b\";\n@fa-var-delicious: \"\\f1a5\";\n@fa-var-desktop: \"\\f108\";\n@fa-var-deviantart: \"\\f1bd\";\n@fa-var-diamond: \"\\f219\";\n@fa-var-digg: \"\\f1a6\";\n@fa-var-dollar: \"\\f155\";\n@fa-var-dot-circle-o: \"\\f192\";\n@fa-var-download: \"\\f019\";\n@fa-var-dribbble: \"\\f17d\";\n@fa-var-drivers-license: \"\\f2c2\";\n@fa-var-drivers-license-o: \"\\f2c3\";\n@fa-var-dropbox: \"\\f16b\";\n@fa-var-drupal: \"\\f1a9\";\n@fa-var-edge: \"\\f282\";\n@fa-var-edit: \"\\f044\";\n@fa-var-eercast: \"\\f2da\";\n@fa-var-eject: \"\\f052\";\n@fa-var-ellipsis-h: \"\\f141\";\n@fa-var-ellipsis-v: \"\\f142\";\n@fa-var-empire: \"\\f1d1\";\n@fa-var-envelope: \"\\f0e0\";\n@fa-var-envelope-o: \"\\f003\";\n@fa-var-envelope-open: \"\\f2b6\";\n@fa-var-envelope-open-o: \"\\f2b7\";\n@fa-var-envelope-square: \"\\f199\";\n@fa-var-envira: \"\\f299\";\n@fa-var-eraser: \"\\f12d\";\n@fa-var-etsy: \"\\f2d7\";\n@fa-var-eur: \"\\f153\";\n@fa-var-euro: \"\\f153\";\n@fa-var-exchange: \"\\f0ec\";\n@fa-var-exclamation: \"\\f12a\";\n@fa-var-exclamation-circle: \"\\f06a\";\n@fa-var-exclamation-triangle: \"\\f071\";\n@fa-var-expand: \"\\f065\";\n@fa-var-expeditedssl: \"\\f23e\";\n@fa-var-external-link: \"\\f08e\";\n@fa-var-external-link-square: \"\\f14c\";\n@fa-var-eye: \"\\f06e\";\n@fa-var-eye-slash: \"\\f070\";\n@fa-var-eyedropper: \"\\f1fb\";\n@fa-var-fa: \"\\f2b4\";\n@fa-var-facebook: \"\\f09a\";\n@fa-var-facebook-f: \"\\f09a\";\n@fa-var-facebook-official: \"\\f230\";\n@fa-var-facebook-square: \"\\f082\";\n@fa-var-fast-backward: \"\\f049\";\n@fa-var-fast-forward: \"\\f050\";\n@fa-var-fax: \"\\f1ac\";\n@fa-var-feed: \"\\f09e\";\n@fa-var-female: \"\\f182\";\n@fa-var-fighter-jet: \"\\f0fb\";\n@fa-var-file: \"\\f15b\";\n@fa-var-file-archive-o: \"\\f1c6\";\n@fa-var-file-audio-o: \"\\f1c7\";\n@fa-var-file-code-o: \"\\f1c9\";\n@fa-var-file-excel-o: \"\\f1c3\";\n@fa-var-file-image-o: \"\\f1c5\";\n@fa-var-file-movie-o: \"\\f1c8\";\n@fa-var-file-o: \"\\f016\";\n@fa-var-file-pdf-o: \"\\f1c1\";\n@fa-var-file-photo-o: \"\\f1c5\";\n@fa-var-file-picture-o: \"\\f1c5\";\n@fa-var-file-powerpoint-o: \"\\f1c4\";\n@fa-var-file-sound-o: \"\\f1c7\";\n@fa-var-file-text: \"\\f15c\";\n@fa-var-file-text-o: \"\\f0f6\";\n@fa-var-file-video-o: \"\\f1c8\";\n@fa-var-file-word-o: \"\\f1c2\";\n@fa-var-file-zip-o: \"\\f1c6\";\n@fa-var-files-o: \"\\f0c5\";\n@fa-var-film: \"\\f008\";\n@fa-var-filter: \"\\f0b0\";\n@fa-var-fire: \"\\f06d\";\n@fa-var-fire-extinguisher: \"\\f134\";\n@fa-var-firefox: \"\\f269\";\n@fa-var-first-order: \"\\f2b0\";\n@fa-var-flag: \"\\f024\";\n@fa-var-flag-checkered: \"\\f11e\";\n@fa-var-flag-o: \"\\f11d\";\n@fa-var-flash: \"\\f0e7\";\n@fa-var-flask: \"\\f0c3\";\n@fa-var-flickr: \"\\f16e\";\n@fa-var-floppy-o: \"\\f0c7\";\n@fa-var-folder: \"\\f07b\";\n@fa-var-folder-o: \"\\f114\";\n@fa-var-folder-open: \"\\f07c\";\n@fa-var-folder-open-o: \"\\f115\";\n@fa-var-font: \"\\f031\";\n@fa-var-font-awesome: \"\\f2b4\";\n@fa-var-fonticons: \"\\f280\";\n@fa-var-fort-awesome: \"\\f286\";\n@fa-var-forumbee: \"\\f211\";\n@fa-var-forward: \"\\f04e\";\n@fa-var-foursquare: \"\\f180\";\n@fa-var-free-code-camp: \"\\f2c5\";\n@fa-var-frown-o: \"\\f119\";\n@fa-var-futbol-o: \"\\f1e3\";\n@fa-var-gamepad: \"\\f11b\";\n@fa-var-gavel: \"\\f0e3\";\n@fa-var-gbp: \"\\f154\";\n@fa-var-ge: \"\\f1d1\";\n@fa-var-gear: \"\\f013\";\n@fa-var-gears: \"\\f085\";\n@fa-var-genderless: \"\\f22d\";\n@fa-var-get-pocket: \"\\f265\";\n@fa-var-gg: \"\\f260\";\n@fa-var-gg-circle: \"\\f261\";\n@fa-var-gift: \"\\f06b\";\n@fa-var-git: \"\\f1d3\";\n@fa-var-git-square: \"\\f1d2\";\n@fa-var-github: \"\\f09b\";\n@fa-var-github-alt: \"\\f113\";\n@fa-var-github-square: \"\\f092\";\n@fa-var-gitlab: \"\\f296\";\n@fa-var-gittip: \"\\f184\";\n@fa-var-glass: \"\\f000\";\n@fa-var-glide: \"\\f2a5\";\n@fa-var-glide-g: \"\\f2a6\";\n@fa-var-globe: \"\\f0ac\";\n@fa-var-google: \"\\f1a0\";\n@fa-var-google-plus: \"\\f0d5\";\n@fa-var-google-plus-circle: \"\\f2b3\";\n@fa-var-google-plus-official: \"\\f2b3\";\n@fa-var-google-plus-square: \"\\f0d4\";\n@fa-var-google-wallet: \"\\f1ee\";\n@fa-var-graduation-cap: \"\\f19d\";\n@fa-var-gratipay: \"\\f184\";\n@fa-var-grav: \"\\f2d6\";\n@fa-var-group: \"\\f0c0\";\n@fa-var-h-square: \"\\f0fd\";\n@fa-var-hacker-news: \"\\f1d4\";\n@fa-var-hand-grab-o: \"\\f255\";\n@fa-var-hand-lizard-o: \"\\f258\";\n@fa-var-hand-o-down: \"\\f0a7\";\n@fa-var-hand-o-left: \"\\f0a5\";\n@fa-var-hand-o-right: \"\\f0a4\";\n@fa-var-hand-o-up: \"\\f0a6\";\n@fa-var-hand-paper-o: \"\\f256\";\n@fa-var-hand-peace-o: \"\\f25b\";\n@fa-var-hand-pointer-o: \"\\f25a\";\n@fa-var-hand-rock-o: \"\\f255\";\n@fa-var-hand-scissors-o: \"\\f257\";\n@fa-var-hand-spock-o: \"\\f259\";\n@fa-var-hand-stop-o: \"\\f256\";\n@fa-var-handshake-o: \"\\f2b5\";\n@fa-var-hard-of-hearing: \"\\f2a4\";\n@fa-var-hashtag: \"\\f292\";\n@fa-var-hdd-o: \"\\f0a0\";\n@fa-var-header: \"\\f1dc\";\n@fa-var-headphones: \"\\f025\";\n@fa-var-heart: \"\\f004\";\n@fa-var-heart-o: \"\\f08a\";\n@fa-var-heartbeat: \"\\f21e\";\n@fa-var-history: \"\\f1da\";\n@fa-var-home: \"\\f015\";\n@fa-var-hospital-o: \"\\f0f8\";\n@fa-var-hotel: \"\\f236\";\n@fa-var-hourglass: \"\\f254\";\n@fa-var-hourglass-1: \"\\f251\";\n@fa-var-hourglass-2: \"\\f252\";\n@fa-var-hourglass-3: \"\\f253\";\n@fa-var-hourglass-end: \"\\f253\";\n@fa-var-hourglass-half: \"\\f252\";\n@fa-var-hourglass-o: \"\\f250\";\n@fa-var-hourglass-start: \"\\f251\";\n@fa-var-houzz: \"\\f27c\";\n@fa-var-html5: \"\\f13b\";\n@fa-var-i-cursor: \"\\f246\";\n@fa-var-id-badge: \"\\f2c1\";\n@fa-var-id-card: \"\\f2c2\";\n@fa-var-id-card-o: \"\\f2c3\";\n@fa-var-ils: \"\\f20b\";\n@fa-var-image: \"\\f03e\";\n@fa-var-imdb: \"\\f2d8\";\n@fa-var-inbox: \"\\f01c\";\n@fa-var-indent: \"\\f03c\";\n@fa-var-industry: \"\\f275\";\n@fa-var-info: \"\\f129\";\n@fa-var-info-circle: \"\\f05a\";\n@fa-var-inr: \"\\f156\";\n@fa-var-instagram: \"\\f16d\";\n@fa-var-institution: \"\\f19c\";\n@fa-var-internet-explorer: \"\\f26b\";\n@fa-var-intersex: \"\\f224\";\n@fa-var-ioxhost: \"\\f208\";\n@fa-var-italic: \"\\f033\";\n@fa-var-joomla: \"\\f1aa\";\n@fa-var-jpy: \"\\f157\";\n@fa-var-jsfiddle: \"\\f1cc\";\n@fa-var-key: \"\\f084\";\n@fa-var-keyboard-o: \"\\f11c\";\n@fa-var-krw: \"\\f159\";\n@fa-var-language: \"\\f1ab\";\n@fa-var-laptop: \"\\f109\";\n@fa-var-lastfm: \"\\f202\";\n@fa-var-lastfm-square: \"\\f203\";\n@fa-var-leaf: \"\\f06c\";\n@fa-var-leanpub: \"\\f212\";\n@fa-var-legal: \"\\f0e3\";\n@fa-var-lemon-o: \"\\f094\";\n@fa-var-level-down: \"\\f149\";\n@fa-var-level-up: \"\\f148\";\n@fa-var-life-bouy: \"\\f1cd\";\n@fa-var-life-buoy: \"\\f1cd\";\n@fa-var-life-ring: \"\\f1cd\";\n@fa-var-life-saver: \"\\f1cd\";\n@fa-var-lightbulb-o: \"\\f0eb\";\n@fa-var-line-chart: \"\\f201\";\n@fa-var-link: \"\\f0c1\";\n@fa-var-linkedin: \"\\f0e1\";\n@fa-var-linkedin-square: \"\\f08c\";\n@fa-var-linode: \"\\f2b8\";\n@fa-var-linux: \"\\f17c\";\n@fa-var-list: \"\\f03a\";\n@fa-var-list-alt: \"\\f022\";\n@fa-var-list-ol: \"\\f0cb\";\n@fa-var-list-ul: \"\\f0ca\";\n@fa-var-location-arrow: \"\\f124\";\n@fa-var-lock: \"\\f023\";\n@fa-var-long-arrow-down: \"\\f175\";\n@fa-var-long-arrow-left: \"\\f177\";\n@fa-var-long-arrow-right: \"\\f178\";\n@fa-var-long-arrow-up: \"\\f176\";\n@fa-var-low-vision: \"\\f2a8\";\n@fa-var-magic: \"\\f0d0\";\n@fa-var-magnet: \"\\f076\";\n@fa-var-mail-forward: \"\\f064\";\n@fa-var-mail-reply: \"\\f112\";\n@fa-var-mail-reply-all: \"\\f122\";\n@fa-var-male: \"\\f183\";\n@fa-var-map: \"\\f279\";\n@fa-var-map-marker: \"\\f041\";\n@fa-var-map-o: \"\\f278\";\n@fa-var-map-pin: \"\\f276\";\n@fa-var-map-signs: \"\\f277\";\n@fa-var-mars: \"\\f222\";\n@fa-var-mars-double: \"\\f227\";\n@fa-var-mars-stroke: \"\\f229\";\n@fa-var-mars-stroke-h: \"\\f22b\";\n@fa-var-mars-stroke-v: \"\\f22a\";\n@fa-var-maxcdn: \"\\f136\";\n@fa-var-meanpath: \"\\f20c\";\n@fa-var-medium: \"\\f23a\";\n@fa-var-medkit: \"\\f0fa\";\n@fa-var-meetup: \"\\f2e0\";\n@fa-var-meh-o: \"\\f11a\";\n@fa-var-mercury: \"\\f223\";\n@fa-var-microchip: \"\\f2db\";\n@fa-var-microphone: \"\\f130\";\n@fa-var-microphone-slash: \"\\f131\";\n@fa-var-minus: \"\\f068\";\n@fa-var-minus-circle: \"\\f056\";\n@fa-var-minus-square: \"\\f146\";\n@fa-var-minus-square-o: \"\\f147\";\n@fa-var-mixcloud: \"\\f289\";\n@fa-var-mobile: \"\\f10b\";\n@fa-var-mobile-phone: \"\\f10b\";\n@fa-var-modx: \"\\f285\";\n@fa-var-money: \"\\f0d6\";\n@fa-var-moon-o: \"\\f186\";\n@fa-var-mortar-board: \"\\f19d\";\n@fa-var-motorcycle: \"\\f21c\";\n@fa-var-mouse-pointer: \"\\f245\";\n@fa-var-music: \"\\f001\";\n@fa-var-navicon: \"\\f0c9\";\n@fa-var-neuter: \"\\f22c\";\n@fa-var-newspaper-o: \"\\f1ea\";\n@fa-var-object-group: \"\\f247\";\n@fa-var-object-ungroup: \"\\f248\";\n@fa-var-odnoklassniki: \"\\f263\";\n@fa-var-odnoklassniki-square: \"\\f264\";\n@fa-var-opencart: \"\\f23d\";\n@fa-var-openid: \"\\f19b\";\n@fa-var-opera: \"\\f26a\";\n@fa-var-optin-monster: \"\\f23c\";\n@fa-var-outdent: \"\\f03b\";\n@fa-var-pagelines: \"\\f18c\";\n@fa-var-paint-brush: \"\\f1fc\";\n@fa-var-paper-plane: \"\\f1d8\";\n@fa-var-paper-plane-o: \"\\f1d9\";\n@fa-var-paperclip: \"\\f0c6\";\n@fa-var-paragraph: \"\\f1dd\";\n@fa-var-paste: \"\\f0ea\";\n@fa-var-pause: \"\\f04c\";\n@fa-var-pause-circle: \"\\f28b\";\n@fa-var-pause-circle-o: \"\\f28c\";\n@fa-var-paw: \"\\f1b0\";\n@fa-var-paypal: \"\\f1ed\";\n@fa-var-pencil: \"\\f040\";\n@fa-var-pencil-square: \"\\f14b\";\n@fa-var-pencil-square-o: \"\\f044\";\n@fa-var-percent: \"\\f295\";\n@fa-var-phone: \"\\f095\";\n@fa-var-phone-square: \"\\f098\";\n@fa-var-photo: \"\\f03e\";\n@fa-var-picture-o: \"\\f03e\";\n@fa-var-pie-chart: \"\\f200\";\n@fa-var-pied-piper: \"\\f2ae\";\n@fa-var-pied-piper-alt: \"\\f1a8\";\n@fa-var-pied-piper-pp: \"\\f1a7\";\n@fa-var-pinterest: \"\\f0d2\";\n@fa-var-pinterest-p: \"\\f231\";\n@fa-var-pinterest-square: \"\\f0d3\";\n@fa-var-plane: \"\\f072\";\n@fa-var-play: \"\\f04b\";\n@fa-var-play-circle: \"\\f144\";\n@fa-var-play-circle-o: \"\\f01d\";\n@fa-var-plug: \"\\f1e6\";\n@fa-var-plus: \"\\f067\";\n@fa-var-plus-circle: \"\\f055\";\n@fa-var-plus-square: \"\\f0fe\";\n@fa-var-plus-square-o: \"\\f196\";\n@fa-var-podcast: \"\\f2ce\";\n@fa-var-power-off: \"\\f011\";\n@fa-var-print: \"\\f02f\";\n@fa-var-product-hunt: \"\\f288\";\n@fa-var-puzzle-piece: \"\\f12e\";\n@fa-var-qq: \"\\f1d6\";\n@fa-var-qrcode: \"\\f029\";\n@fa-var-question: \"\\f128\";\n@fa-var-question-circle: \"\\f059\";\n@fa-var-question-circle-o: \"\\f29c\";\n@fa-var-quora: \"\\f2c4\";\n@fa-var-quote-left: \"\\f10d\";\n@fa-var-quote-right: \"\\f10e\";\n@fa-var-ra: \"\\f1d0\";\n@fa-var-random: \"\\f074\";\n@fa-var-ravelry: \"\\f2d9\";\n@fa-var-rebel: \"\\f1d0\";\n@fa-var-recycle: \"\\f1b8\";\n@fa-var-reddit: \"\\f1a1\";\n@fa-var-reddit-alien: \"\\f281\";\n@fa-var-reddit-square: \"\\f1a2\";\n@fa-var-refresh: \"\\f021\";\n@fa-var-registered: \"\\f25d\";\n@fa-var-remove: \"\\f00d\";\n@fa-var-renren: \"\\f18b\";\n@fa-var-reorder: \"\\f0c9\";\n@fa-var-repeat: \"\\f01e\";\n@fa-var-reply: \"\\f112\";\n@fa-var-reply-all: \"\\f122\";\n@fa-var-resistance: \"\\f1d0\";\n@fa-var-retweet: \"\\f079\";\n@fa-var-rmb: \"\\f157\";\n@fa-var-road: \"\\f018\";\n@fa-var-rocket: \"\\f135\";\n@fa-var-rotate-left: \"\\f0e2\";\n@fa-var-rotate-right: \"\\f01e\";\n@fa-var-rouble: \"\\f158\";\n@fa-var-rss: \"\\f09e\";\n@fa-var-rss-square: \"\\f143\";\n@fa-var-rub: \"\\f158\";\n@fa-var-ruble: \"\\f158\";\n@fa-var-rupee: \"\\f156\";\n@fa-var-s15: \"\\f2cd\";\n@fa-var-safari: \"\\f267\";\n@fa-var-save: \"\\f0c7\";\n@fa-var-scissors: \"\\f0c4\";\n@fa-var-scribd: \"\\f28a\";\n@fa-var-search: \"\\f002\";\n@fa-var-search-minus: \"\\f010\";\n@fa-var-search-plus: \"\\f00e\";\n@fa-var-sellsy: \"\\f213\";\n@fa-var-send: \"\\f1d8\";\n@fa-var-send-o: \"\\f1d9\";\n@fa-var-server: \"\\f233\";\n@fa-var-share: \"\\f064\";\n@fa-var-share-alt: \"\\f1e0\";\n@fa-var-share-alt-square: \"\\f1e1\";\n@fa-var-share-square: \"\\f14d\";\n@fa-var-share-square-o: \"\\f045\";\n@fa-var-shekel: \"\\f20b\";\n@fa-var-sheqel: \"\\f20b\";\n@fa-var-shield: \"\\f132\";\n@fa-var-ship: \"\\f21a\";\n@fa-var-shirtsinbulk: \"\\f214\";\n@fa-var-shopping-bag: \"\\f290\";\n@fa-var-shopping-basket: \"\\f291\";\n@fa-var-shopping-cart: \"\\f07a\";\n@fa-var-shower: \"\\f2cc\";\n@fa-var-sign-in: \"\\f090\";\n@fa-var-sign-language: \"\\f2a7\";\n@fa-var-sign-out: \"\\f08b\";\n@fa-var-signal: \"\\f012\";\n@fa-var-signing: \"\\f2a7\";\n@fa-var-simplybuilt: \"\\f215\";\n@fa-var-sitemap: \"\\f0e8\";\n@fa-var-skyatlas: \"\\f216\";\n@fa-var-skype: \"\\f17e\";\n@fa-var-slack: \"\\f198\";\n@fa-var-sliders: \"\\f1de\";\n@fa-var-slideshare: \"\\f1e7\";\n@fa-var-smile-o: \"\\f118\";\n@fa-var-snapchat: \"\\f2ab\";\n@fa-var-snapchat-ghost: \"\\f2ac\";\n@fa-var-snapchat-square: \"\\f2ad\";\n@fa-var-snowflake-o: \"\\f2dc\";\n@fa-var-soccer-ball-o: \"\\f1e3\";\n@fa-var-sort: \"\\f0dc\";\n@fa-var-sort-alpha-asc: \"\\f15d\";\n@fa-var-sort-alpha-desc: \"\\f15e\";\n@fa-var-sort-amount-asc: \"\\f160\";\n@fa-var-sort-amount-desc: \"\\f161\";\n@fa-var-sort-asc: \"\\f0de\";\n@fa-var-sort-desc: \"\\f0dd\";\n@fa-var-sort-down: \"\\f0dd\";\n@fa-var-sort-numeric-asc: \"\\f162\";\n@fa-var-sort-numeric-desc: \"\\f163\";\n@fa-var-sort-up: \"\\f0de\";\n@fa-var-soundcloud: \"\\f1be\";\n@fa-var-space-shuttle: \"\\f197\";\n@fa-var-spinner: \"\\f110\";\n@fa-var-spoon: \"\\f1b1\";\n@fa-var-spotify: \"\\f1bc\";\n@fa-var-square: \"\\f0c8\";\n@fa-var-square-o: \"\\f096\";\n@fa-var-stack-exchange: \"\\f18d\";\n@fa-var-stack-overflow: \"\\f16c\";\n@fa-var-star: \"\\f005\";\n@fa-var-star-half: \"\\f089\";\n@fa-var-star-half-empty: \"\\f123\";\n@fa-var-star-half-full: \"\\f123\";\n@fa-var-star-half-o: \"\\f123\";\n@fa-var-star-o: \"\\f006\";\n@fa-var-steam: \"\\f1b6\";\n@fa-var-steam-square: \"\\f1b7\";\n@fa-var-step-backward: \"\\f048\";\n@fa-var-step-forward: \"\\f051\";\n@fa-var-stethoscope: \"\\f0f1\";\n@fa-var-sticky-note: \"\\f249\";\n@fa-var-sticky-note-o: \"\\f24a\";\n@fa-var-stop: \"\\f04d\";\n@fa-var-stop-circle: \"\\f28d\";\n@fa-var-stop-circle-o: \"\\f28e\";\n@fa-var-street-view: \"\\f21d\";\n@fa-var-strikethrough: \"\\f0cc\";\n@fa-var-stumbleupon: \"\\f1a4\";\n@fa-var-stumbleupon-circle: \"\\f1a3\";\n@fa-var-subscript: \"\\f12c\";\n@fa-var-subway: \"\\f239\";\n@fa-var-suitcase: \"\\f0f2\";\n@fa-var-sun-o: \"\\f185\";\n@fa-var-superpowers: \"\\f2dd\";\n@fa-var-superscript: \"\\f12b\";\n@fa-var-support: \"\\f1cd\";\n@fa-var-table: \"\\f0ce\";\n@fa-var-tablet: \"\\f10a\";\n@fa-var-tachometer: \"\\f0e4\";\n@fa-var-tag: \"\\f02b\";\n@fa-var-tags: \"\\f02c\";\n@fa-var-tasks: \"\\f0ae\";\n@fa-var-taxi: \"\\f1ba\";\n@fa-var-telegram: \"\\f2c6\";\n@fa-var-television: \"\\f26c\";\n@fa-var-tencent-weibo: \"\\f1d5\";\n@fa-var-terminal: \"\\f120\";\n@fa-var-text-height: \"\\f034\";\n@fa-var-text-width: \"\\f035\";\n@fa-var-th: \"\\f00a\";\n@fa-var-th-large: \"\\f009\";\n@fa-var-th-list: \"\\f00b\";\n@fa-var-themeisle: \"\\f2b2\";\n@fa-var-thermometer: \"\\f2c7\";\n@fa-var-thermometer-0: \"\\f2cb\";\n@fa-var-thermometer-1: \"\\f2ca\";\n@fa-var-thermometer-2: \"\\f2c9\";\n@fa-var-thermometer-3: \"\\f2c8\";\n@fa-var-thermometer-4: \"\\f2c7\";\n@fa-var-thermometer-empty: \"\\f2cb\";\n@fa-var-thermometer-full: \"\\f2c7\";\n@fa-var-thermometer-half: \"\\f2c9\";\n@fa-var-thermometer-quarter: \"\\f2ca\";\n@fa-var-thermometer-three-quarters: \"\\f2c8\";\n@fa-var-thumb-tack: \"\\f08d\";\n@fa-var-thumbs-down: \"\\f165\";\n@fa-var-thumbs-o-down: \"\\f088\";\n@fa-var-thumbs-o-up: \"\\f087\";\n@fa-var-thumbs-up: \"\\f164\";\n@fa-var-ticket: \"\\f145\";\n@fa-var-times: \"\\f00d\";\n@fa-var-times-circle: \"\\f057\";\n@fa-var-times-circle-o: \"\\f05c\";\n@fa-var-times-rectangle: \"\\f2d3\";\n@fa-var-times-rectangle-o: \"\\f2d4\";\n@fa-var-tint: \"\\f043\";\n@fa-var-toggle-down: \"\\f150\";\n@fa-var-toggle-left: \"\\f191\";\n@fa-var-toggle-off: \"\\f204\";\n@fa-var-toggle-on: \"\\f205\";\n@fa-var-toggle-right: \"\\f152\";\n@fa-var-toggle-up: \"\\f151\";\n@fa-var-trademark: \"\\f25c\";\n@fa-var-train: \"\\f238\";\n@fa-var-transgender: \"\\f224\";\n@fa-var-transgender-alt: \"\\f225\";\n@fa-var-trash: \"\\f1f8\";\n@fa-var-trash-o: \"\\f014\";\n@fa-var-tree: \"\\f1bb\";\n@fa-var-trello: \"\\f181\";\n@fa-var-tripadvisor: \"\\f262\";\n@fa-var-trophy: \"\\f091\";\n@fa-var-truck: \"\\f0d1\";\n@fa-var-try: \"\\f195\";\n@fa-var-tty: \"\\f1e4\";\n@fa-var-tumblr: \"\\f173\";\n@fa-var-tumblr-square: \"\\f174\";\n@fa-var-turkish-lira: \"\\f195\";\n@fa-var-tv: \"\\f26c\";\n@fa-var-twitch: \"\\f1e8\";\n@fa-var-twitter: \"\\f099\";\n@fa-var-twitter-square: \"\\f081\";\n@fa-var-umbrella: \"\\f0e9\";\n@fa-var-underline: \"\\f0cd\";\n@fa-var-undo: \"\\f0e2\";\n@fa-var-universal-access: \"\\f29a\";\n@fa-var-university: \"\\f19c\";\n@fa-var-unlink: \"\\f127\";\n@fa-var-unlock: \"\\f09c\";\n@fa-var-unlock-alt: \"\\f13e\";\n@fa-var-unsorted: \"\\f0dc\";\n@fa-var-upload: \"\\f093\";\n@fa-var-usb: \"\\f287\";\n@fa-var-usd: \"\\f155\";\n@fa-var-user: \"\\f007\";\n@fa-var-user-circle: \"\\f2bd\";\n@fa-var-user-circle-o: \"\\f2be\";\n@fa-var-user-md: \"\\f0f0\";\n@fa-var-user-o: \"\\f2c0\";\n@fa-var-user-plus: \"\\f234\";\n@fa-var-user-secret: \"\\f21b\";\n@fa-var-user-times: \"\\f235\";\n@fa-var-users: \"\\f0c0\";\n@fa-var-vcard: \"\\f2bb\";\n@fa-var-vcard-o: \"\\f2bc\";\n@fa-var-venus: \"\\f221\";\n@fa-var-venus-double: \"\\f226\";\n@fa-var-venus-mars: \"\\f228\";\n@fa-var-viacoin: \"\\f237\";\n@fa-var-viadeo: \"\\f2a9\";\n@fa-var-viadeo-square: \"\\f2aa\";\n@fa-var-video-camera: \"\\f03d\";\n@fa-var-vimeo: \"\\f27d\";\n@fa-var-vimeo-square: \"\\f194\";\n@fa-var-vine: \"\\f1ca\";\n@fa-var-vk: \"\\f189\";\n@fa-var-volume-control-phone: \"\\f2a0\";\n@fa-var-volume-down: \"\\f027\";\n@fa-var-volume-off: \"\\f026\";\n@fa-var-volume-up: \"\\f028\";\n@fa-var-warning: \"\\f071\";\n@fa-var-wechat: \"\\f1d7\";\n@fa-var-weibo: \"\\f18a\";\n@fa-var-weixin: \"\\f1d7\";\n@fa-var-whatsapp: \"\\f232\";\n@fa-var-wheelchair: \"\\f193\";\n@fa-var-wheelchair-alt: \"\\f29b\";\n@fa-var-wifi: \"\\f1eb\";\n@fa-var-wikipedia-w: \"\\f266\";\n@fa-var-window-close: \"\\f2d3\";\n@fa-var-window-close-o: \"\\f2d4\";\n@fa-var-window-maximize: \"\\f2d0\";\n@fa-var-window-minimize: \"\\f2d1\";\n@fa-var-window-restore: \"\\f2d2\";\n@fa-var-windows: \"\\f17a\";\n@fa-var-won: \"\\f159\";\n@fa-var-wordpress: \"\\f19a\";\n@fa-var-wpbeginner: \"\\f297\";\n@fa-var-wpexplorer: \"\\f2de\";\n@fa-var-wpforms: \"\\f298\";\n@fa-var-wrench: \"\\f0ad\";\n@fa-var-xing: \"\\f168\";\n@fa-var-xing-square: \"\\f169\";\n@fa-var-y-combinator: \"\\f23b\";\n@fa-var-y-combinator-square: \"\\f1d4\";\n@fa-var-yahoo: \"\\f19e\";\n@fa-var-yc: \"\\f23b\";\n@fa-var-yc-square: \"\\f1d4\";\n@fa-var-yelp: \"\\f1e9\";\n@fa-var-yen: \"\\f157\";\n@fa-var-yoast: \"\\f2b1\";\n@fa-var-youtube: \"\\f167\";\n@fa-var-youtube-play: \"\\f16a\";\n@fa-var-youtube-square: \"\\f166\";\n\n","//\n// Navbar Alt\n// --------------------------------------------------\n\n.navbar-pf-alt {\n  background-color: @navbar-pf-alt-bg-color;\n  background-image: @navbar-pf-alt-bg-img;\n  background-repeat: @navbar-pf-alt-bg-repeat;\n  background-size: @navbar-pf-alt-bg-size;\n  border: none;\n  border-radius: 0;\n  border-top: @navbar-pf-alt-border-width @navbar-pf-alt-border-style @navbar-pf-alt-border-color;\n  margin-bottom: 0;\n\n  .infotip.bottom-right .arrow {\n    left: 90%;\n  }\n\n  .layout-pf-alt-fixed & {\n    left: 0;\n    position: fixed;\n    right: 0;\n    top: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n\n  .nav {\n    &.navbar-nav > li > .dropdown-menu.infotip {\n      margin-top: 0;\n    }\n\n    .nav-item-iconic {\n      cursor: pointer;\n      line-height: 1;\n      max-height: (@navbar-pf-alt-height - @navbar-pf-alt-border-width); // to keep Firefox from oversizing icons\n      padding: @navbar-pf-alt-nav-item-iconic-padding;\n      position: relative;\n\n      &:hover,\n      &:focus {\n        background-color: transparent;\n\n        .caret,\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @navbar-pf-alt-active-color;\n        }\n      }\n\n      .badge {\n        background-color: @notification-badge-color;\n        border-radius: 20px;\n        color: @navbar-pf-alt-active-color;\n        cursor: pointer;\n        font-size: (@font-size-base - 3);\n        font-weight: 700;\n        margin: 0 0 -11px -12px;\n        min-width: 0;\n        padding: 2px 4px;\n      }\n\n      .caret,\n      .fa,\n      .pficon {\n        color: @navbar-pf-alt-color;\n        font-size: (@font-size-base + 4);\n      }\n\n      .caret {\n        font-size: @font-size-base;\n        width: auto;\n      }\n\n    }\n\n    .open > .nav-item-iconic {\n      &,\n      &:hover,\n      &:focus {\n        background: transparent;\n\n        .caret,\n        .fa,\n        .pficon {\n          color: @navbar-pf-alt-active-color;\n        }\n      }\n    }\n  }\n\n  .navbar-brand {\n    color: @navbar-pf-alt-navbar-brand-color;\n    height: auto;\n    margin: @navbar-pf-alt-navbar-brand-margin;\n    min-height: @navbar-pf-alt-navbar-brand-min-height;\n    padding: @navbar-pf-alt-navbar-brand-padding;\n\n    .navbar-brand-name {\n      display: inline;\n      margin-left: @navbar-pf-alt-navbar-brand-name-margin;\n      margin-right: @navbar-pf-alt-navbar-brand-name-margin;\n      // hide once screen gets too small\n      @media (max-width: @navbar-pf-alt-navbar-brand-name-breakpoint) {\n        display: none;\n      }\n    }\n\n    .navbar-brand-icon {\n      display: inline;\n      margin-left: @navbar-pf-alt-navbar-brand-icon-margin;\n      margin-right: @navbar-pf-alt-navbar-brand-icon-margin;\n    }\n  }\n\n  .navbar-iconic {\n    margin-right: 0;\n  }\n\n  .navbar-toggle {\n    border: 0;\n    display: block;\n    float: left;\n    margin: @navbar-pf-alt-navbar-toggle-margin;\n\n    &:hover,\n    &:focus {\n      .icon-bar {\n        background: @navbar-pf-alt-navbar-toggle-icon-bar-hover-bg;\n      }\n    }\n\n    + .navbar-brand {\n      margin-left: 0;\n    }\n\n    .icon-bar {\n      background: @navbar-pf-alt-color;\n    }\n  }\n}\n","//\n//  Navigation Bar for use with vertical navigation\n// --------------------------------------------------\n\n.navbar-pf-vertical {\n  background-color: @navbar-pf-vertical-bg-color;\n  border: none;\n  border-radius: 0;\n  border-top: @navbar-pf-vertical-border-width @navbar-pf-vertical-border-style @navbar-pf-vertical-border-color;\n  margin-bottom: 0;\n\n  .infotip.bottom-right .arrow {\n    left: 90%;\n  }\n\n  .layout-pf-fixed & {\n    left: 0;\n    position: fixed;\n    right: 0;\n    top: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n\n  .nav {\n    &.navbar-nav > li > .dropdown-menu.infotip {\n      margin-top: 0;\n    }\n\n    .nav-item-iconic {\n      color: @navbar-pf-vertical-color;\n      cursor: pointer;\n      line-height: 1;\n      max-height: (@navbar-pf-vertical-height - @navbar-pf-vertical-border-width); // to keep Firefox from oversizing icons\n      padding: @navbar-pf-vertical-nav-item-iconic-padding;\n      position: relative;\n\n      &:hover,\n      &:focus {\n        color: @navbar-pf-vertical-active-color;\n        background-color: transparent;\n\n        .caret,\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @navbar-pf-vertical-active-color;\n        }\n      }\n\n      .badge {\n        background-color: @notification-badge-color;\n        border-radius: 20px;\n        color: @navbar-pf-vertical-active-color;\n        cursor: pointer;\n        font-size: (@font-size-base - 3);\n        font-weight: 700;\n        left: 20px;\n        margin: 0;\n        padding: 2px 4px;\n        position: absolute;\n        min-width: 10px;\n        min-height: 10px;\n        top: 18px;\n        &.badge-pf-bordered {\n          border: 1px solid @navbar-pf-vertical-bg-color;\n        }\n      }\n\n      .caret,\n      .fa,\n      .pficon {\n        color: @navbar-pf-vertical-color;\n        font-size: (@font-size-base + 4);\n      }\n\n      .caret {\n        font-size: @font-size-base;\n        width: auto;\n      }\n\n    }\n\n    .open > .nav-item-iconic {\n      &,\n      &:hover,\n      &:focus {\n        background: transparent;\n\n        .caret,\n        .fa,\n        .pficon {\n          color: @navbar-pf-vertical-active-color;\n        }\n      }\n    }\n  }\n\n  .navbar-brand {\n    color: @navbar-pf-vertical-navbar-brand-color;\n    height: auto;\n    margin: @navbar-pf-vertical-navbar-brand-margin;\n    min-height: @navbar-pf-vertical-navbar-brand-min-height;\n    padding: @navbar-pf-vertical-navbar-brand-padding;\n\n    .navbar-brand-name {\n      display: inline-block;\n      margin: @navbar-pf-vertical-navbar-brand-name-margin;\n      // hide once screen gets too small\n      @media (max-width: @navbar-pf-vertical-navbar-brand-name-breakpoint) {\n        display: none;\n      }\n    }\n\n    .navbar-brand-icon {\n      display: inline-block;\n      margin: @navbar-pf-vertical-navbar-brand-icon-margin;\n      max-height: @navbar-pf-vertical-navbar-brand-max-height;\n    }\n\n    .navbar-brand-txt {\n      line-height: @navbar-pf-vertical-navbar-brand-line-height;\n    }\n  }\n\n  .navbar-iconic {\n    margin-right: 0;\n  }\n\n  .navbar-toggle {\n    border: 0;\n    display: block;\n    float: left;\n    margin: @navbar-pf-vertical-navbar-toggle-margin;\n\n    &:hover,\n    &:focus {\n      .icon-bar {\n        background: @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n      }\n    }\n\n    + .navbar-brand {\n      margin-left: 0;\n    }\n\n    .icon-bar {\n      background: @navbar-pf-vertical-color;\n    }\n  }\n}\n","//\n// Nav Vertical Alt\n// --------------------------------------------------\n\n.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt {\n  transition: @flyout-transition-pf;\n\n  &.collapsed .list-group-item .list-group-item-value {\n    transition: opacity 0ms 100ms, opacity 100ms linear;\n  }\n\n  .list-group-item {\n    .badge {\n      transition: @flyout-transition-pf;\n    }\n\n    .list-group-item-value {\n      transition: opacity 500ms ease-out;\n      transition-delay: 150ms;\n    }\n  }\n}\n\n.nav-pf-vertical-alt {\n  background: @nav-pf-vertical-alt-bg-color;\n\n  .ie9.layout-pf-alt-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n\n  .layout-pf-alt-fixed & {\n    border-right: 1px solid @nav-pf-vertical-alt-border-color;\n    bottom: 0;\n    overflow-x: hidden;\n    overflow-y: auto;\n    left: 0;\n    position: fixed;\n    top: @navbar-pf-alt-height; // move out of way of navbar-pf-alt\n    width: @nav-pf-vertical-alt-width;\n    z-index: @zindex-navbar-fixed;\n\n    &.collapsed {\n      width: @nav-pf-vertical-alt-collapsed-width !important;\n\n      .list-group-item {\n        .badge {\n          padding: 2px 3px;\n          right: 21px;\n          top: 36px;\n        }\n\n        .list-group-item-value {\n          opacity: 0;\n        }\n      }\n    }\n\n    &.hidden {\n      display: none;\n\n      &.show-mobile-nav {\n        box-shadow: 0 0 3px fade(@color-pf-black, 15%);\n        display: block !important;\n      }\n    }\n  }\n\n  .layout-pf-alt-fixed-with-footer & {\n    bottom: @footer-pf-alt-height;\n  }\n\n  .list-group {\n    border-top: 0;\n    margin-bottom: 0;\n  }\n\n  .list-group-item {\n    padding: 0;\n\n    a {\n      color: @gray-dark;\n      display: block;\n      font-size: (@font-size-base + 2);\n      height: @nav-pf-vertical-alt-link-height;\n      padding: @nav-pf-vertical-alt-link-padding;\n      position: relative;\n      white-space: nowrap;\n\n      &:focus {\n        color: @gray-dark;\n        text-decoration: none;\n      }\n\n      &:hover {\n        color: @nav-pf-vertical-alt-active-color;\n        text-decoration: none;\n      }\n    }\n\n    &.active {\n      background-color: @nav-pf-vertical-alt-bg-color;\n      border-color: @list-group-border;\n\n      &:before {\n        background: @nav-pf-vertical-alt-active-color;\n        content: \" \";\n        display: block;\n        height: 100%;\n        left: 0;\n        position: absolute;\n        top: 0;\n        width: 5px;\n      }\n\n      a {\n        color: @nav-pf-vertical-alt-active-color;\n      }\n    }\n\n    .badge {\n      background: @gray-dark;\n      border: 1px solid @nav-pf-vertical-alt-bg-color;\n      border-radius: 3px;\n      color: @nav-pf-vertical-alt-badge-color;\n      font-weight: 700;\n      font-size: (@font-size-base - 3);\n      padding: 5px;\n      position: absolute;\n      right: 15px;\n      text-align: center;\n      top: 21px;\n\n      &.notifications {\n        background: @notification-badge-color;\n      }\n    }\n\n    .fa,\n    .glyphicon,\n    .pficon {\n      float: left;\n      font-size: 18px;\n      line-height: 30px;\n      margin-right: 10px;\n      text-align: center;\n      width: 18px;\n    }\n\n    .list-group-item-value {\n      display: inline-block;\n      line-height: 30px;\n      opacity: 1;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      width: 140px;\n    }\n\n  }\n\n  .list-group-item-separator {\n    border-top-width: 5px;\n  }\n\n  .sidebar-pf & {\n    margin-left: (-(@grid-gutter-width / 2));\n    margin-right: (-(@grid-gutter-width / 2));\n  }\n}\n","//\n// Notifications Drawer\n// --------------------------------------------------\n\n\n.drawer-pf {\n  background-color: @color-pf-black-100;\n  border: 1px solid @card-pf-border-color;\n  .box-shadow(0 6px 12px fade(@color-pf-black, 17.5%));\n  overflow-y: auto;\n  position: absolute;\n  right: 0;\n  width: 320px;\n  z-index: 2;\n  .panel {\n    border-bottom: none;\n    border-left: none;\n    border-right: none;\n  }\n  .panel-group .panel-heading + .panel-collapse .panel-body {\n    border-top: none;\n    border-bottom: 1px solid @card-pf-border-color;\n    padding: 0;\n  }\n  .panel-counter {\n    display: block;\n    font-style: italic;\n    line-height: 1.2;\n    padding-left: 18px;\n    padding-top: 5px;\n  }\n  .panel-heading { border-bottom: 1px solid @card-pf-border-color; }\n  .panel-group {\n    bottom: 0;\n    margin-bottom: 0;\n    position: absolute;\n    top: 25px; // Height of Notifications Drawer box.\n    width: 100%;\n  }\n  .panel-title a {\n    cursor: pointer;\n    display: block;\n  }\n  &.drawer-pf-expanded {\n    @media (max-width: @screen-xs-max) {\n      left:0;\n      width: 100%;\n    }\n    @media (min-width: @screen-xs-max) {\n      left: 270px;\n    } // if the drawer is expanded and the screen is reduced this ensures it switches to full width on smaller screens.\n    width: inherit;\n    .drawer-pf-toggle-expand:before {\n      content: \"\\f101\";\n    }\n  }\n  .blank-slate-pf {\n    border: 0;\n    margin-bottom: 0;\n    padding: 30px;\n\n    .blank-slate-pf-icon {\n      font-size: 3em;\n      line-height: 1em;\n    }\n\n    h1 {\n      font-size: 1em;\n      margin-bottom: 0;\n      margin-top: 15px;\n    }\n  }\n}\n.drawer-pf-close, .drawer-pf-toggle-expand {\n  color: @gray-darker;\n  cursor: pointer;\n  line-height: inherit;\n  padding: 2px 10px;\n  position: absolute;\n  &:hover,\n  &:focus {\n    color: @color-pf-blue-400;\n    text-decoration: none;\n  }\n}\n.drawer-pf-toggle-expand {\n  left: 0;\n  &:before {\n    content: \"\\f100\";\n    font-family: \"FontAwesome\";\n  }\n  &:hover {\n    color: @link-color;\n  }\n}\n.drawer-pf-close {\n  right: 0;\n}\n\n\n.drawer-pf-action {\n  display: flex;\n  border-bottom: 1px solid @card-pf-border-color;\n\n  .btn-link {\n    color: @link-color;\n    padding: 10px 0;\n    .pficon, .fa {\n      margin-right: 3px;\n    }\n    .pficon-close {\n      position: relative;\n      top: 1px;\n    }\n\n    &:hover { color: @link-hover-color; }\n  }\n}\n\n.drawer-pf-action-link {\n  border-left: solid 1px @color-pf-black-300;\n  flex: 1 1 0%;\n  margin: 10px 0;\n  text-align: center;\n\n  &:first-of-type {\n    border-left-width: 0;\n  }\n\n  .btn-link {\n    padding: 0;\n  }\n}\n\n.drawer-pf-loading {\n  color: @gray-pf;\n  font-size: (@font-size-base + 2);\n  padding: 20px 15px;\n}\n\n.drawer-pf-notification {\n  border-bottom: 1px solid @card-pf-border-color;\n  padding: 15px;\n  .date {\n    border-right: 1px solid #aaa;\n    display: inline-block;\n    line-height: 1;\n    margin-right: 5px;\n    padding-right: 9px;\n  }\n  > .dropdown-kebab-pf {\n    margin-top: -3px;\n  }\n\n  .pficon {\n    font-size: @font-size-large;\n    margin-top: 3px;\n  }\n  &:last-of-type {\n    border-bottom: none;\n  }\n  &:hover { background-color: @color-pf-blue-50; }\n  &.unread .drawer-pf-notification-message { font-weight: bold; }\n  &.expanded-notification {\n    .date {\n      border-right: none;\n      padding-right: 0;\n    }\n  }\n}\n\n.drawer-pf-notification-content {\n  cursor: default;\n}\n\n.drawer-pf-notification-info,\n.drawer-pf-notification-message {\n  display: block;\n  padding-left: 27px;\n  padding-right: 19px;\n  .expanded-notification & {\n    display: inline-block;\n  }\n}\n\n.drawer-pf-notifications-non-clickable .drawer-pf-notification:hover {\n  background-color: @color-pf-white;\n}\n\n.drawer-pf-title {\n  background-color: @color-pf-black-100;\n  border-bottom: 1px solid @card-pf-border-color;\n  position: absolute;\n  width: 100%;\n  h3 {\n    font-size: @font-size-base;\n    margin: 0;\n    padding: 6px 15px;\n  }\n}\n\n.drawer-pf-notification.expanded-notification {\n  .drawer-pf-notification-content {\n    display: flex;\n    @media (max-width: @screen-sm-max) {\n      flex-direction: column;\n    }\n    .drawer-pf-notification-message {\n      flex: 1 1;\n    }\n  }\n}\n\n/* Exclusive styles to work with Vertical Navigation */\n.navbar-pf-vertical {\n  .drawer-pf {\n    height: ~\"calc(100vh - @{drawer-pf-top-vertical} - 20px)\";//to create a 20px offset bottom\n    top: @drawer-pf-top-vertical; //menu height;\n      @media (max-width: @screen-xs-max) {\n        width:100%;\n        height: calc(~\"100vh - @{drawer-pf-top-vertical}\");\n      }\n\n  }\n  .nav .drawer-pf-trigger {\n    .drawer-pf-trigger-icon {\n      border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n      border-right: 1px solid @navbar-pf-navbar-utility-border-color;\n      padding-left: 15px;\n      padding-right: 15px;\n    }\n    &.open .drawer-pf-trigger-icon {\n      background-color: @navbar-pf-navbar-utility-hover-bg-color;\n    }\n  }\n}\n\n/* Exclusive styles to work with Horizontal Navigation */\n.navbar-pf {\n  .drawer-pf {\n    height: ~\"calc(100vh - @{drawer-pf-top-horizontal} - 20px)\";\n    top: @drawer-pf-top-horizontal;\n    @media (max-width: @screen-xs-max) {\n      width:100%;\n      height: calc(~\"100vh - @{drawer-pf-top-horizontal} - 32px\");\n      top:calc(~\"@{drawer-pf-top-horizontal} + 8px\");\n    }\n  }\n  .drawer-pf-trigger-icon { cursor: pointer; }\n}\n","//\n// Search\n// --------------------------------------------------\n\n.search-pf {\n  &.has-button {\n    border-collapse: separate;\n    display: table;\n    .form-group {\n      display: table-cell;\n      width: 100%;\n      .btn {\n        .box-shadow(none);\n        float: left;\n        margin-left: -1px;\n        &.btn-lg {\n          font-size: (@font-size-large + .5); // to make button height consistent across browsers!\n        }\n        &.btn-sm {\n          font-size: (@font-size-small - .3); // to make button height consistent across browsers!\n        }\n      }\n      .form-control {\n        float: left;\n      }\n    }\n  }\n  .has-clear {\n    .clear {\n      background: fade(@color-pf-white, 0%); // to make the whole button clickable in IE9+\n      border: 0;\n      height: (@input-height-base - 1);\n      line-height: 1;\n      padding: 0;\n      position: absolute;\n      right: 1px;\n      top: 1px;\n      width: 28px;\n      &:focus {\n        outline: none;\n      }\n    }\n    .form-control {\n      padding-right: 30px;\n      &::-ms-clear {\n        display: none;\n      }\n    }\n    .input-lg + .clear {\n      height: (@input-height-large - 2);\n      width: 28px;\n    }\n    .input-sm + .clear {\n      height: (@input-height-small - 2);\n      width: 28px;\n      span {\n        font-size: (@font-size-base - 2);\n      }\n    }\n    .search-pf-input-group {\n      position: relative;\n    }\n  }\n}\n","//\n// Sidebar\n// --------------------------------------------------\n\n.sidebar-header {\n  border-bottom: 1px solid darken(@page-header-border-color, 2%);\n  padding-bottom: ((@line-height-computed / 2) + 1);\n  margin: ((@line-height-computed * 2) + 10) 0 @line-height-computed;\n  .actions {\n    margin-top: -2px;\n  }\n}\n\n.sidebar-pf {\n  .sidebar-header + .list-group {\n    border-top: 0;\n    margin-top: (-@grid-gutter-width / 2 / 2);\n    .list-group-item {\n      background: transparent;\n      border-color: darken(@page-header-border-color, 2%);\n      padding-left: 0;\n    }\n    .list-group-item-heading {\n      font-size: @font-size-base;\n    }\n  }\n  .nav-category {\n    h2 {\n      color: @dropdown-header-color;\n      font-size: @font-size-base;\n      font-weight: 400;\n      line-height: (@line-height-computed + 1);\n      margin: 0;\n      padding: 8px 0;\n    }\n    + .nav-category {\n      margin-top: (@grid-gutter-width / 4);\n    }\n  }\n  .nav-pills > li {\n    &.active > a {\n      background: @dropdown-link-active-bg !important;\n      border-color: @dropdown-link-active-border-color !important;\n      color: @color-pf-white;\n      @media (min-width: @grid-float-breakpoint) {\n        &:after {\n          content: @fa-var-angle-right;\n          font-family: @icon-font-name-fa;\n          display: block;\n          position: absolute;\n          right: (@grid-gutter-width / 2 / 2);\n          top: 1px;\n        }\n      }\n      .fa {\n        color: @color-pf-white;\n      }\n    }\n    > a {\n      border-bottom: 1px solid transparent;\n      border-radius: 0;\n      border-top: 1px solid transparent;\n      color: @text-color;\n      font-size: (@font-size-base + 1);\n      line-height: (@line-height-computed + 1);\n      padding: 1px (@grid-gutter-width / 2);\n      &:hover {\n        background: @dropdown-link-hover-bg;\n        border-color: @dropdown-link-hover-border-color;\n      }\n      .fa {\n        color: lighten(@gray-pf, 12%);\n        font-size: (@font-size-base + 3);\n        margin-right: (@grid-gutter-width / 4);\n        text-align: center;\n        vertical-align: middle;\n        width: (@font-size-base + 3);\n      }\n    }\n  }\n  .nav-stacked {\n    margin-left: (-(@grid-gutter-width / 2));\n    margin-right: (-(@grid-gutter-width / 2));\n    li + li {\n      margin-top: 0;\n    }\n  }\n  .panel {\n    background: transparent;\n  }\n  .panel-body {\n    padding: 6px (@grid-gutter-width / 2);\n    .nav-pills > li > a {\n      padding-left: (@grid-gutter-width / 2 + 17);\n    }\n  }\n  .panel-heading {\n    padding: 9px (@grid-gutter-width / 2);\n  }\n  .panel-title {\n    font-size: @font-size-base;\n    > a {\n      &:before {\n        display: inline-block;\n        margin-left: 1px;\n        margin-right: 4px;\n        width: 9px;\n      }\n      &.collapsed:before {\n        margin-left: 3px;\n        margin-right: 2px;\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint-max) {\n  .sidebar-header-bleed-left {\n    margin-left: (-(@grid-gutter-width / 2));\n    > h2 {\n      margin-left: (@grid-gutter-width / 2);\n    }\n  }\n  .sidebar-header-bleed-right {\n    margin-right: (-(@grid-gutter-width / 2));\n    .actions {\n      margin-right: (@grid-gutter-width / 2);\n    }\n    > h2 {\n      margin-right: (@grid-gutter-width / 2);\n    }\n    + .list-group {\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n  }\n  .sidebar-pf {\n    .panel-group .panel-default,\n    .treeview {\n      border-left: 0;\n      border-right: 0;\n      margin-left: (-(@grid-gutter-width / 2));\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n    .treeview {\n      margin-top: 5px;\n      .list-group-item {\n        padding-left: (@grid-gutter-width / 2);\n        padding-right: (@grid-gutter-width / 2);\n        &.node-selected:after {\n          content: @fa-var-angle-right;\n          font-family: @icon-font-name-fa;\n          display: block;\n          position: absolute;\n          right: (@grid-gutter-width/2 / 2);\n          top: 1px;\n        }\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint) {\n  .sidebar-pf {\n    background: @sidebar-pf-bg;\n    &.sidebar-pf-left {\n      border-right: 1px solid @sidebar-pf-border-color;\n    }\n    &.sidebar-pf-right {\n      border-left: 1px solid @sidebar-pf-border-color;\n    }\n    > .nav-category,\n    > .nav-stacked {\n      margin-top: 5px;\n    }\n  }\n}\n","//\n// Skip to content\n// --------------------------------------------------\n.skiplink-pf {\n  position: absolute;\n  top: @skiplink-pf-top;\n  left: -300%; /* moves off screen */\n  z-index: @zindex-modal;\n}\n.skiplink-pf:focus {\n  left: @skiplink-pf-left;\n}\n","//\n// Spinner\n// --------------------------------------------------\n\n@keyframes rotation {\n  from {transform: rotate(0deg);}\n  to {transform: rotate(359deg);}\n}\n\n.spinner {\n  animation: rotation 600ms infinite linear;\n  border-bottom: 4px solid fade(@color-pf-black, 25%);\n  border-left: 4px solid fade(@color-pf-black, 25%);\n  border-right: 4px solid fade(@color-pf-black, 25%);\n  border-radius: 100%;\n  border-top: 4px solid fade(@color-pf-black, 75%);\n  height: (@font-size-base * 2);\n  margin: 0 auto;\n  position: relative;\n  width: (@font-size-base * 2);\n  &.spinner-inline {\n    display: inline-block;\n    margin-right: 3px;\n  }\n  &.spinner-lg {\n    border-width: 5px;\n    height: (@font-size-base * 2.5);\n    width: (@font-size-base * 2.5);\n  }\n  &.spinner-sm {\n    border-width: 3px;\n    height: (@font-size-base * 1.5);\n    width: (@font-size-base * 1.5);\n  }\n  &.spinner-xs {\n    border-width: 2px;\n    height: @font-size-base;\n    width: @font-size-base;\n  }\n  &.spinner-inverse {\n    border-bottom-color: fade(@color-pf-white, 25%);\n    border-left-color: fade(@color-pf-white, 25%);\n    border-right-color: fade(@color-pf-white, 25%);\n    border-top-color: fade(@color-pf-white, 75%);\n  }\n}\n\n.ie9 .spinner {\n  background: url(\"@{img-path}/@{img-spinner}\") no-repeat;\n  border: 0;\n  &.spinner-inverse {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse}\");\n  }\n  &.spinner-inverse-lg {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-lg}\");\n  }\n  &.spinner-inverse-sm {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-sm}\");\n  }\n  &.spinner-inverse-xs {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-xs}\");\n  }\n  &.spinner-lg {\n    background-image: url(\"@{img-path}/@{img-spinner-lg}\");\n  }\n  &.spinner-sm {\n    background-image: url(\"@{img-path}/@{img-spinner-sm}\");\n  }\n  &.spinner-xs {\n    background-image: url(\"@{img-path}/@{img-spinner-xs}\");\n  }\n}\n","//\n// Syntax Highlighting for google-code-prettify\n// --------------------------------------------------\n\n.prettyprint {\n  .atn,\n  .com,\n  .fun,\n  .var {\n    color: @syntax-3;\n  }\n\n  .atv,\n  .str {\n    color: @syntax-1;\n  }\n\n  .clo,\n  .dec,\n  .kwd,\n  .opn,\n  .pln,\n  .pun {\n    color: @syntax-2;\n  }\n\n  .lit,\n  .tag,\n  .typ {\n    color: @syntax-4;\n  }\n\n  ol.linenums {\n    margin-bottom: 0;\n  }\n}\n","//\n// Table View\n// --------------------------------------------------\n\n// Keep dataTable class for legacy apps\ntable.dataTable {\n  height: 100%;\n  margin-bottom: 0;\n  max-width: none !important;\n  tbody {\n    > tr {\n      > td {\n        // Styling for inline actions\n        &.table-view-pf-actions {\n          padding: 0;\n          vertical-align: middle;\n        }\n      }\n      &:hover {\n        // Styling when hovering anywhere else on a row\n        > td.table-view-pf-actions {\n          background-color: @table-bg-accent;\n          border-bottom-color: @table-border-color;\n        }\n      }\n    }\n    > tr.selected {\n      color: @color-pf-white;\n      background-color: @color-pf-blue-400;\n      > td {\n        border-bottom-color: @color-pf-blue-500;\n        &.table-view-pf-actions {\n          background-color: @table-bg-accent;\n          border-bottom-color: @table-border-color;\n        }\n      }\n      &:hover {\n        > td {\n          background-color: inherit;\n          border-bottom-color: @color-pf-blue-500;\n          &.table-view-pf-actions {\n            background-color: @table-bg-accent;\n            border-bottom-color: @table-border-color;\n          }\n        }\n      }\n    }\n  }\n  thead {\n    .sorting,\n    .sorting_asc,\n    .sorting_desc,\n    .sorting_asc_disabled,\n    .sorting_desc_disabled {\n      cursor: pointer;\n    }\n    .sorting_asc,\n    .sorting_desc {\n      color: @link-color !important;\n      position: relative;\n      &:after {\n        content: @fa-var-angle-down;\n        font-family: @icon-font-name-fa;\n        font-size: (@font-size-base - 2);\n        font-weight: normal;\n        height: (@font-size-base - 3);\n        left: 7px;\n        line-height: @font-size-base;\n        position: relative;\n        top: 2px;\n        vertical-align: baseline;\n        width: @font-size-base;\n      }\n      &:before {\n        background: @link-color;\n        content: \"\";\n        height: 2px;\n        position: absolute;\n        left: 0;\n        top: 0;\n        width: 100%;\n      }\n    }\n    .sorting_asc:after {\n      content: @fa-var-angle-up;\n      top: -3px;\n    }\n  }\n  th:active {\n    outline: none;\n  }\n}\n\n// Empty table\n.table-view-pf-empty {\n  &.blank-slate-pf {\n    background-color: @table-bg-accent;\n    border: 1px solid @table-border-color;\n    border-radius: 0;\n    margin-top: -1px;\n  }\n}\n\n// Embedded toolbar\n.table-view-pf-toolbar {\n  &.toolbar-pf {\n    background-color: @table-bg-accent;\n    border-bottom: none;\n    border-left: 1px solid @table-border-color;\n    border-right: 1px solid @table-border-color;\n    border-top: 1px solid @table-border-color;\n    box-shadow: none;\n    margin-left: 0px;\n    margin-right: 0px;\n    .toolbar-pf-results {\n      border-top: 1px solid @table-border-color;\n      min-height: 40px;\n      line-height: 40px;\n    }\n  }\n}\n\n// External Toolbar\n.table-view-pf-toolbar-external {\n  &.toolbar-pf {\n    border-bottom: none;\n    border-top: none;\n    box-shadow: none;\n    .toolbar-pf-results {\n      border-top: 1px solid @table-border-color;\n      min-height: 40px;\n      line-height: 40px;\n    }\n  }\n}\n\n.table-view-pf-colvis-menu {\n  > li {\n    padding: 5px 10px;\n    &:hover {\n      background-color: #def3ff;\n    }\n    > input {\n      margin-top: 0;\n      margin-right: 10px;\n      vertical-align: middle;\n    }\n    > label {\n      margin-bottom: 0;\n    }\n  }\n\n}\n\n// Inline action button and kebab\n// Sets button height to 100% of td height in firefox and chrome, but not in IE when wrapping occurs.\n// Button height must be set dynamically in IE to be equal to td height.\n.table-view-pf-actions {\n  background-color: @btn-default-bg; // included just in case there are gaps between the edges of the buttons and the table cell\n  height: 100%;\n  .btn,\n  .dropdown-toggle {\n    border: none;\n    box-shadow: none;\n    height: 100%;\n    width: 100%;\n  }\n  .dropdown,\n  .table-view-pf-btn {\n    height: 100%;\n  }\n  .dropdown-menu.dropdown-menu-right {\n    right: -5px;\n  }\n  &:last-child {\n    width: 24px;\n  }\n}\n\n// Selection column\n.table-view-pf-select {\n  width: 33px;\n}\n\n// Results area containing selected row text\n.table-view-pf-select-results {\n  text-align: right;\n}\n","//\n// Time Picker\n// --------------------------------------------------\n.bootstrap-datetimepicker-widget {\n  a[data-action] {\n    border: 0;\n    box-shadow: none;\n    color: @gray-dark;\n    display: block;\n    padding-bottom: 4px;\n    padding-top: 4px;\n    &:hover { color: @link-color; }\n  }\n  &.dropdown-menu {\n    left: 0!important;\n    padding: 0;\n    width: ~\"calc(100% - 25px)\";\n    &:before, &:after {\n      content: none;\n    }\n    &.top {\n      margin-bottom: -1px;\n    }\n    &.bottom {\n      margin-top: -1px;\n    }\n  }\n  .timepicker-hour {\n    width: 100%;\n    &:after {\n      content: \":\";\n      float: right;\n    }\n  }\n}\n.timepicker-hours,\n.timepicker-minutes {\n  table td {\n    font-weight: bold;\n    line-height: 30px;\n    height: 30px;\n    &:hover { color: @link-color; }\n  }\n  .table-condensed > tbody > tr > td { padding: 0; }\n}\n.time-picker-pf {\n  .input-group-addon {\n    .fa,\n    .pficon { width: 12px; }\n    &:not(.active) { box-shadow: none; }\n  }\n}\n.timepicker-picker {\n  table td {\n    span,\n    a span {\n      height: 24px;\n      line-height: 24px;\n      margin: 0;\n      width: 100%;\n    }\n  }\n  .table-condensed > tbody > tr > td {\n    height: 25px;\n    line-height: 18px;\n    padding: 0;\n  }\n  button[data-action] { // provisional until the button is removed\n    padding-bottom: 0;\n    padding-top: 0;\n  }\n  .separator { display: none; }\n  tr:nth-child(2) td {\n    background-color: @dropdown-link-hover-bg;\n    border-color: @dropdown-link-hover-border-color;\n    border-style: solid;\n    border-width: 1px;\n    border-left: 0;\n    border-right: 0;\n  }\n}\n","//\n// Toast notifications\n// --------------------------------------------------\n\n.toast-pf {\n  background-color: @color-pf-white;\n  border-color: @color-pf-black-400;\n  box-shadow: 0 2px 6px fade(@color-pf-black, 20%);\n  padding-left: 68px; //15px space between the icon and the text\n  margin-bottom: 5px;\n  &.alert-danger > .pficon  { background-color: @alert-danger-border; }\n  &.alert-info > .pficon    { background-color: @alert-info-border; }\n  &.alert-success > .pficon { background-color: @alert-success-border; }\n  &.alert-warning > .pficon { background-color: @alert-warning-border; }\n  .dropdown-kebab-pf { margin-left: 10px; }\n  > .pficon {\n    background-color: @gray-pf;\n    bottom:  -1px;\n    box-shadow: 2px 0 5px -2px fade(@color-pf-black, 20%);\n    left: -1px;\n    padding-top: 10px;\n    text-align: center;\n    top: -1px;\n    width: 53px;\n    &:before { color: fade(@color-pf-white, 74%); }\n  }\n  .toast-pf-action {\n    margin-left: 15px;\n  }\n  .dropdown-kebab-pf .btn-link {\n    padding-top: 0;\n    padding-bottom: 0;\n    vertical-align: text-bottom;\n  }\n  /* Medium devices (desktops, 992px and up) */\n  @media (min-width: @screen-md-min) {\n    display: inline-block;\n  }\n}\n// Sets max width on toast notifications\n.toast-pf-max-width {\n @media (min-width: @screen-md-min) {\n    max-width: 31.1%; // sets the size to 4 cols;\n  }\n}\n// To position the notification on the top right corner, used in context on cards layout\n.toast-pf-top-right {\n  left: (@grid-gutter-width / 2);\n  position: absolute;\n  right: (@grid-gutter-width / 2);\n  top: 12px;\n  z-index: 1055; // More than @zindex-modal\n  /* Medium devices (desktops, 992px and up) */\n  @media (min-width: @screen-md-min) {\n    left: auto;\n  }\n}\n\n.toast-notifications-list-pf {\n  margin-left: (@grid-gutter-width / 2);\n  position: fixed;\n  right: (@grid-gutter-width / 2);\n  top: @toast-notification-top;\n  z-index: 1055;\n  .toast-pf {\n    clear: both;\n    float: right;\n  }\n  @media (min-width: @screen-sm-min) {\n    max-width: calc(50%);\n  }\n  @media (min-width: @screen-md-min) {\n    max-width: calc(33.1% ); // sets the size to 4 cols;\n  }\n}\n","//\n// Toolbar (Filter and view options)\n// --------------------------------------------------\n\n.toolbar-pf {\n  background: @color-pf-white;\n  border-bottom: 1px solid @sidebar-pf-border-color;\n  box-shadow: 0 1px 0px fade(@color-pf-black, 4.5%);\n  padding-top: (@grid-gutter-width/4);\n  .form-group {\n    margin-bottom: (@grid-gutter-width/4);\n    @media (min-width: @grid-float-breakpoint) {\n      border-right: 1px solid @sidebar-pf-border-color;\n      float: left;\n      margin-bottom: 0;\n      padding-left: (@grid-gutter-width/2);\n      padding-right: (@grid-gutter-width/2);\n    }\n    &:last-child {\n      border-right: 0;\n      margin-bottom: 0;\n      padding-right: 0;\n    }\n    .btn,\n    .btn-group {\n      + .btn,\n      + .btn-group { margin-left: 5px; }\n      + .btn-link,\n      + .dropdown { margin-left: 10px; }\n    }\n    .btn-link {\n      color: @gray-darker;\n      font-size: (@font-size-base + 4);\n      line-height: 1;\n      padding: 4px 0;\n      &:active,\n      &:focus,\n      &:hover { color: @link-color; }\n    }\n    .dropdown-kebab-pf .btn-link {\n      padding: 4px (@grid-gutter-width/4);\n      margin-left: (@grid-gutter-width/(-4));\n      margin-right: (@grid-gutter-width/(-4));\n    }\n  }\n}\n.toolbar-pf-actions {\n  display: table;\n  margin-bottom: 10px;\n  width: 100%;\n  @media (min-width: @grid-float-breakpoint) {\n    .toolbar-pf-filter {\n      padding-left: 0;\n    }\n  }\n}\n.toolbar-pf-view-selector {\n  font-size: (@font-size-base + 4);\n  .btn-link.active {\n    color: @link-color;\n    cursor: default;\n  }\n}\n.toolbar-pf-action-right {\n  float: right;\n  @media (max-width: @grid-float-breakpoint) {\n    float: none;\n  }\n}\n.toolbar-pf-find {\n  font-size: (@font-size-base + 2);\n  position: relative;\n}\n.find-pf-dropdown-container {\n  background: @color-pf-white;\n  border: solid 1px @color-pf-black-400;\n  display: none;\n  right: -20px;\n  padding: 5px;\n  position: absolute;\n  top: 35px;\n  width: 300px;\n  z-index: 10000;\n  @media (max-width: @grid-float-breakpoint) {\n    left: 30px;\n    top: -5px;\n    width: calc(100% - 30px);\n  }\n  &:before,\n  &:after {\n    content: \"\";\n    position: absolute;\n  }\n  &:before {\n    border-bottom:11px solid @color-pf-black-400;\n    border-left:11px solid transparent;\n    border-right:11px solid transparent;\n    right: 35px;\n    .toolbar-pf-find:last-child & {\n      right: 15px;\n    }\n    top: -12px;\n    @media (max-width: @grid-float-breakpoint) {\n      border-bottom:11px solid transparent;\n      border-right:11px solid @color-pf-black-400;\n      border-top:11px solid transparent;\n      left: -22px;\n      right: initial;\n      top: 8px;\n    }\n  }\n  &:after {\n    border-bottom:10px solid @color-pf-white;\n    border-left:10px solid transparent;\n    border-right:10px solid transparent;\n    right: 36px;\n    .toolbar-pf-find:last-child & {\n      right: 16px;\n    }\n    top: -10px;\n    @media (max-width: @grid-float-breakpoint) {\n      border-bottom:10px solid transparent;\n      border-right:10px solid @color-pf-white;\n      border-top:10px solid transparent;\n      left: -20px;\n      right: initial;\n      top: 9px;\n    }\n  }\n  input {\n    height: 30px;\n    padding: 5px 117px 5px 5px; // 112px (components) + 5px (offset)\n    width: 100%;\n  }\n  .find-pf-buttons {\n    position: absolute;\n    right: 10px;\n    top: 5px;\n    .btn {\n      border: none;\n      cursor: pointer;\n      margin-left: 0 !important;\n      padding: 0;\n      width: 18px;\n      .fa-angle-up,\n      .fa-angle-down {\n        font-weight: bold;\n        font-size: (@font-size-base + 6);\n      }\n      .pficon-close { font-size: (@font-size-base + 2); }\n    }\n    span {\n      height: 30px;\n      line-height: 30px;\n      vertical-align: middle;\n    }\n    .find-pf-nums {\n      color: @color-pf-black-500;\n      margin-right: 3px;\n    }\n  }\n}\n\n.toolbar-pf-results {\n  border-top: 1px solid @sidebar-pf-border-color;\n  margin-top: (@grid-gutter-width/4);\n  h5,\n  p,\n  ul {\n    display: inline-block;\n    line-height: (@grid-gutter-width/1.5);\n    margin-bottom: 0;\n    margin-top: 0;\n    @media (min-width: @screen-sm-min) {\n      line-height: @grid-gutter-width;\n    }\n  }\n  h5 {\n    font-weight: 700;\n    margin-right: 20px;\n  }\n  .label {\n    font-size: (@font-size-base - 1);\n    a {\n      color: @color-pf-white;\n      display: inline-block;\n      margin-left: 5px;\n    }\n  }\n}\n","//\n//  Vertical navigation\n// --------------------------------------------------\n//\n// Basic Required Layout for Vertical Navigation\n//\n// .navbar navbar-pf-vertical\n//   .navbar-header\n//   .collapse navbar-collapse   <-- necessary for collapsing vertical nav and mobile\n// .nav-pf-vertical [.nav-pf-vertical-callapsible-menus] [.nav-pf-persistent-secondary] [.hidden-icons-pf]\n//   .list-group\n//     .list-group-item [.active] [.secondary-nav-item-pf]\n//       a\n//         [primary icon] <-- Not shown if .hidden-icons-pf above\n//         .list-group-item-value\n//       .nav-pf-secondary-nav  <-- if .secondary-nav-item-pf above\n//         .nav-item-pf-header\n//           .secondary-collapse-toggle-pf data-toggle=\"collapse-secondary-nav\"\n//         .list-group\n//           .list-group-item [.active] [tertiary-nav-item-pf]\n//             a\n//              .list-group-item-value\n//            .nav-pf-tertiary-nav  <-- if .tertiary-nav-item-pf above\n//              .nav-item-pf-header\n//                .tertiary-collapse-toggle-pf data-toggle=\"collapse-tertiary-nav\"\n//              .list-group\n//                .list-group-item [.active] [tertiary-nav-item-pf]\n//                  a\n//                    .list-group-item-value\n//\n// .container-pf-nav-pf-vertical [.nav-pf-persistent-secondary] [.hidden-icons-pf]\n//\n\n.nav-pf-vertical {\n  background: @nav-pf-vertical-bg-color;\n  border-right: 1px solid @nav-pf-vertical-border-color;\n  bottom: 0;\n  left: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n   &.hidden.show-mobile-nav {  // Mobile mode open\n    box-shadow: 0 0 3px fade(@color-pf-black, 15%);\n    display: block !important;\n  }\n  &.hide-nav-pf {  // Used to hide navigation initially to avoid startup flicker\n    visibility: hidden !important;\n  }\n  .list-group {\n    border-top: 0;\n    margin-bottom: 0;\n  }\n  .list-group-item {\n    background-color: transparent;\n    border-color: @nav-pf-vertical-item-border-color;\n    padding: 0;\n    > a {\n      background-color: transparent;\n      color: @nav-pf-vertical-color;\n      cursor: pointer;\n      display: block;\n      font-size: (@font-size-base + 2);\n      font-weight: @nav-pf-vertical-font-weight;\n      height: @nav-pf-vertical-link-height;\n      line-height: 26px;\n      padding: @nav-pf-vertical-link-padding;\n      position: relative;\n      white-space: nowrap;\n      width: @nav-pf-vertical-width;\n      // When flexbox is supported nav item names take up all available space\n      @supports (display: flex) {\n        display: flex;\n        padding-right: 0;\n      }\n      .fa,\n      .glyphicon,\n      .pficon {\n        color: @nav-pf-vertical-icon-color;\n        float: left;\n        font-size: (@font-size-base + 8);\n        line-height: 26px;\n        margin-right: 10px;\n        text-align: center;\n        width: @nav-pf-vertical-icon-width;\n      }\n      &:hover {\n        text-decoration: none;\n      }\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-active-bg-color;\n        color: @nav-pf-vertical-active-color;\n        font-weight: @nav-pf-vertical-active-font-weight;\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @nav-pf-vertical-active-icon-color;\n        }\n      }\n    }\n    &.active {\n      > a:before {\n        background: @nav-pf-vertical-active-before-color;\n        content: \" \";\n        height: 100%;\n        left: 0;\n        position: absolute;\n        top: 0;\n        width: 3px;\n      }\n      &:hover { // to over-ride default list group setting\n        background-color: transparent;\n        border-color: @nav-pf-vertical-item-border-color;\n      }\n    }\n    .list-group-item-value {\n      display: block;\n      line-height: 25px;\n      max-width: 120px;\n      // If flexbox is supported, do not set max-width, take all space with just some right padding\n      @supports (display: flex) {\n        flex: 1;\n        max-width: none;\n        padding-right: 15px;\n      }\n      overflow: hidden;\n      text-overflow: ellipsis;\n    }\n  }\n  .list-group-item-separator {\n    border-top-color: @nav-pf-vertical-item-border-color;\n    border-top-width: 2px;\n  }\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n    .list-group-item > a {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  h5 {\n    color: @nav-pf-vertical-secondary-color;\n    cursor: default;\n    font-size: (@font-size-base + 1);\n    font-weight: 600;\n    margin: @nav-pf-vertical-secondary-list-header-margin;\n  }\n  &.hidden-icons-pf {\n    > .list-group > .list-group-item { // only the primary menu hides icons\n      > a {\n        .fa,\n        .glyphicon,\n        .pficon {\n          display: none;\n        }\n      }\n    }\n    &.collapsed {\n      display: none;\n    }\n  }\n  .badge-container-pf {\n    position: absolute;\n    right: 15px;\n    top: 20px;\n    // If flexbox is supported, use relative positioning to place to the right of the label\n    // and adjust the top position so that the secondary and tertiary nav items don't need to change\n    @supports (display: flex) {\n      padding-left: 0;\n      padding-right: 15px;\n      position: relative;\n      right: 0;\n      margin-top: -3px;\n      top: 5px;\n    }\n    .badge {\n      background: @nav-pf-vertical-badge-bg-color;\n      color: @nav-pf-vertical-badge-color;\n      float: left;\n      font-size: @font-size-base;\n      font-weight: 700;\n      line-height: @line-height-base;\n      margin: 0;\n      padding: 0 7px;\n      text-align: center;\n      .pficon,\n      .fa {\n        font-size: (@font-size-base + 2);\n        height: 20px;\n        line-height: @line-height-base;\n        margin-right: 3px;\n        margin-top: -1px;\n      }\n    }\n  }\n}\n.nav-pf-vertical-tooltip.tooltip {\n  margin-left: 15px;\n  .tooltip-inner {\n    background-color: @color-pf-white;\n    color: @color-pf-black-900;\n  }\n  .tooltip-arrow {\n    border-bottom-color: @color-pf-white;\n    left: calc(50% - 15px) !important;\n  }\n}\n.hover-secondary-nav-pf {\n  width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  &.nav-pf-vertical-with-badges {\n    width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n  }\n}\n.hover-tertiary-nav-pf {\n  width: ~\"calc(@{nav-pf-vertical-width} * 3)\";\n  &.nav-pf-vertical-with-badges {\n    width: ~\"calc(@{nav-pf-vertical-badges-width} * 3)\";\n  }\n  .nav-pf-secondary-nav {\n    width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    .collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  .nav-pf-tertiary-nav {\n    left: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-secondary-nav {\n      width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n      .collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    .nav-pf-tertiary-nav {\n      left: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n    }\n  }\n}\n.nav-pf-vertical.collapsed {\n  width: @nav-pf-vertical-collapsed-width;\n  &.collapsed-secondary-nav-pf { // collapsed state with secondary menu pinned\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.collapsed-tertiary-nav-pf { // collapsed state with tertiary menu pinned\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.hover-secondary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-badges-width} * 2))\";\n    }\n  }\n}\n.show-mobile-nav {\n  &.show-mobile-secondary {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.show-mobile-tertiary {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .mobile-nav-item-pf,\n  .mobile-secondary-item-pf {\n    .nav-pf-secondary-nav {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 4);\n    }\n    > .nav-pf-tertiary-nav {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 8);\n    }\n  }\n  .nav-pf-secondary-nav {\n    left: 0;\n    .secondary-nav-item-pf:hover & {\n      opacity: 0;\n      visibility: hidden;\n    }\n  }\n  .tertiary-nav-item-pf:hover {\n    .nav-pf-tertiary-nav {\n      opacity: 0;\n      visibility: hidden;\n    }\n  }\n  .tertiary-nav-item-pf.mobile-nav-item-pf:hover {\n    .nav-pf-tertiary-nav {\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n}\n.secondary-nav-item-pf {\n  > a {\n    cursor: default;\n    &:after {\n      color: @nav-pf-vertical-secondary-indicator-color;\n      content: @fa-var-angle-right;\n      display: block;\n      font-family: \"FontAwesome\";\n      font-size: (@font-size-base * 2);\n      line-height: 30px;\n      padding: @nav-pf-vertical-secondary-indicator-padding;\n      position: absolute;\n      right: 20px;\n      top: 0;\n    }\n    .list-group-item-value {\n      // If flex box is supported add some padding to account for the submenu indicator\n      @supports (display: flex) {\n        padding-right: 35px;\n      }\n    }\n  }\n  &.active,\n  &:hover {\n    > a {\n      width: ~\"calc(@{nav-pf-vertical-width} + 1px)\";\n      z-index: (@zindex-navbar-fixed + 1);\n      &:after {\n        right: 21px;\n      }\n      .collapsed-secondary-nav-pf & {\n        z-index: 0;\n      }\n      .collapsed-tertiary-nav-pf & {\n        z-index: 0;\n      }\n    }\n  }\n  .nav-pf-vertical-with-badges & {\n    &.active,\n    &:hover {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} + 1px)\";\n      }\n    }\n  }\n}\n.nav-pf-vertical.collapsed-secondary-nav-pf {\n  width: @nav-pf-vertical-width;\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n  }\n  .secondary-nav-item-pf {  // Keep sub-menu indicators below collapsed menu\n    &.active,\n    &.hover {\n      > a {\n        z-index: @zindex-navbar-fixed;\n      }\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .nav-pf-secondary-nav {\n    left: 0;\n  }\n  .nav-pf-tertiary-nav {\n    left: @nav-pf-vertical-width;\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-tertiary-nav {\n      left: @nav-pf-vertical-badges-width;\n    }\n  }\n}\n.nav-pf-vertical.collapsed-tertiary-nav-pf {\n  width: @nav-pf-vertical-width;\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n  }\n  .nav-pf-secondary-nav {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .secondary-nav-item-pf,    // Keep sub-menu indicators below collapsed menu\n  .tertiary-nav-item-pf {\n    &.active,\n    &.hover {\n      > a {\n        z-index: 0;\n      }\n    }\n  }\n}\n.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf {  // Persistent secondary nav settings\n  @media (min-width: @screen-lg-min) { // secondary menu only persistent at lg screen\n    width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n    }\n    &.collapsed-secondary-nav-pf {\n      width: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        width: @nav-pf-vertical-badges-width;\n      }\n      &.hover-tertiary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n        &.nav-pf-vertical-with-badges {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n        }\n      }\n    }\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.collapsed {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n      &.collapsed-secondary-nav-pf {\n        width: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          width: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          width: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.hover-tertiary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n        &.nav-pf-vertical-with-badges {\n          width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-badges-width} * 2))\";\n        }\n      }\n    }\n    &.hover-tertiary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-width} * 3)\";\n      &.nav-pf-vertical-with-badges {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} * 3)\";\n      }\n    }\n    .secondary-nav-item-pf.active {\n      .nav-pf-secondary-nav {\n        visibility: visible;\n        opacity: 1;\n      }\n    }\n  }\n}\n.nav-item-pf-header {\n  color: @nav-pf-vertical-secondary-color;\n  font-size: (@font-size-base + 4);\n  margin: @nav-pf-vertical-secondary-header-margin;\n  > a {\n    cursor: pointer;\n    margin-right: 7px;\n    &:hover,\n    &:focus {\n      color: @link-color;\n      text-decoration: none;\n    }\n  }\n}\n.nav-pf-vertical.collapsed { // Collapsed Primary Menu state\n  width: @nav-pf-vertical-collapsed-width;\n  .list-group-item { // Show only the icons\n    > a {\n      width: @nav-pf-vertical-collapsed-width;\n      > .list-group-item-value {\n        display: none;\n      }\n      > .badge-container-pf {\n        display: none;\n      }\n    }\n    &.secondary-nav-item-pf { // Adjust widths\n      &.active > a,\n      > a {\n        width: @nav-pf-vertical-collapsed-width;\n        &:after {\n          right: 10px;\n        }\n      }\n      &.active,\n      &:hover {\n        > a {\n          width: (@nav-pf-vertical-collapsed-width + 2);\n          &:after {\n            right: 11px;\n          }\n        }\n      }\n    }\n  }\n}\n.nav-pf-secondary-nav {\n  background: @nav-pf-vertical-secondary-bg-color;\n  border: 1px solid @nav-pf-vertical-border-color;\n  border-bottom: none;\n  border-top: none;\n  bottom: 0;\n  display: block;\n  left: @nav-pf-vertical-width;\n  opacity: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  visibility: hidden;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .secondary-nav-item-pf.active & {  // Show secondary menu if active and either is collapsed\n    .collapsed-secondary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 2);\n    }\n    .collapsed-tertiary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n  .secondary-nav-item-pf.is-hover & { // Show secondary menu if hovering\n    .hover-secondary-nav-pf & {\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .list-group-item {\n    border: none;\n    padding: @nav-pf-vertical-secondary-item-padding;\n    width: @nav-pf-vertical-width;\n    > a {\n      background-color: @nav-pf-vertical-secondary-bg-color;\n      color: @nav-pf-vertical-secondary-item-color;\n      font-size: @font-size-base;\n      font-weight: inherit;\n      height: inherit;\n      padding: @nav-pf-vertical-secondary-link-padding;\n      margin-left: 20px;\n      width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n\n      &:hover {\n        .list-group-item-value {\n          text-decoration: underline;\n        }\n      }\n    }\n    &.active > a:before {\n      display: none;\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-secondary-active-bg-color;\n        color: @nav-pf-vertical-secondary-active-color;\n      }\n    }\n    .badge-container-pf {\n      top: 5px;\n      .badge {\n        background: @nav-pf-vertical-secondary-badge-bg-color;\n        color: @nav-pf-vertical-badge-color;\n      }\n    }\n    .list-group-item-value {\n      padding-left: 5px;\n    }\n    &.tertiary-nav-item-pf { // Secondary menu items with tertiary sub menus\n      > a {\n        cursor: default;\n        &:after {\n          color: @nav-pf-vertical-secondary-indicator-color;\n          content: @fa-var-angle-right;\n          display: block;\n          font-family: \"FontAwesome\";\n          font-size: 20px;\n          line-height: 20px;\n          padding: @nav-pf-vertical-tertiary-indicator-padding;\n          position: absolute;\n          right: 20px;\n          top: 4px;\n        }\n        // If flex box is supported add some padding to account for the submenu indicator\n        .list-group-item-value {\n          @supports (display: flex) {\n            padding-right: 35px;\n          }\n        }\n      }\n      &.active,\n      &:hover {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-width} - 19px)\";\n          z-index: (@zindex-navbar-fixed + 3);\n          &:after {\n            right: 21px;\n          }\n        }\n      }\n    }\n  }\n  .nav-pf-vertical-with-badges & {\n    left: @nav-pf-vertical-badges-width;\n    width: @nav-pf-vertical-badges-width;\n    .list-group-item {\n      width: @nav-pf-vertical-badges-width;\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n      }\n      &.tertiary-nav-item-pf { // Secondary menu items with tertiary sub menus\n        &.active,\n        &:hover {\n          > a {\n            width: ~\"calc(@{nav-pf-vertical-badges-width} - 19px)\";\n          }\n        }\n      }\n    }\n  }\n}\n.nav-pf-tertiary-nav {\n  background: @nav-pf-vertical-tertiary-bg-color;\n  border: 1px solid @nav-pf-vertical-border-color;\n  border-bottom: none;\n  border-top: none;\n  bottom: 0;\n  display: block;\n  left: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  opacity: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  visibility: hidden;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .nav-pf-vertical-with-badges & {\n    left: @nav-pf-vertical-badges-width;\n    width: @nav-pf-vertical-badges-width;\n    .show-mobile-nav {\n      left: 0;\n    }\n  }\n  .tertiary-nav-item-pf.active & {  // Show tertiary menu if active and collapsed\n    .collapsed-tertiary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 3);\n    }\n  }\n  .tertiary-nav-item-pf.is-hover & { // Show tertiary menu if hovering\n    .hover-tertiary-nav-pf & {\n      opacity: 1;\n      visibility: visible;\n      .collapsed.collapsed-tertiary-nav-pf & {\n        left: 0;\n      }\n    }\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .nav-item-pf-header {\n    color: @nav-pf-vertical-tertiary-color;\n    margin: @nav-pf-vertical-tertiary-header-margin;\n  }\n  h5 {\n    color: @nav-pf-vertical-tertiary-color;\n    margin: @nav-pf-vertical-tertiary-list-header-margin;\n  }\n  .list-group-item {\n    border: none;\n    padding: @nav-pf-vertical-tertiary-item-padding;\n    > a {\n      background-color: transparent;\n      color: @nav-pf-vertical-tertiary-item-color;\n      font-size: @font-size-base;\n      font-weight: inherit;\n      height: inherit;\n      margin: @nav-pf-vertical-tertiary-link-margin;\n      padding: @nav-pf-vertical-tertiary-link-padding;\n    }\n    &.active > a:before {\n      display: none;\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-tertiary-active-bg-color;\n        color: @nav-pf-vertical-tertiary-active-color;\n      }\n    }\n    .badge-container-pf {\n      top: 5px;\n      .badge {\n        background: @nav-pf-vertical-tertiary-badge-bg-color;\n        color: @nav-pf-vertical-tertiary-badge-color;\n      }\n    }\n    .list-group-item-value {\n      padding-left: 5px;\n    }\n  }\n}\n.collapsed {\n  .nav-pf-secondary-nav { // Adjust left placement\n    left: @nav-pf-vertical-collapsed-width;\n    .list-group-item {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n        > .list-group-item-value { // Continue to show labels for secondary menu items\n          display: inline-block;\n        }\n        > .badge-container-pf {\n          display: inline-block;\n        }\n      }\n    }\n  }\n  .nav-pf-tertiary-nav { // Adjust left placement\n    left: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n    .list-group-item {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n        > .list-group-item-value { // Continue to show labels for tertiary menu items\n          display: inline-block;\n        }\n        > .badge-container-pf {\n          display: inline-block;\n        }\n      }\n    }\n  }\n  &.collapsed-secondary-nav-pf,\n  &.collapsed-tertiary-nav-pf {\n    width: @nav-pf-vertical-width;\n    .secondary-nav-item-pf {\n      &:hover {\n        > a {\n          z-index: @zindex-navbar-fixed;\n        }\n      }\n    }\n    .nav-pf-secondary-nav {\n      left: 0;\n    }\n  }\n  &.collapsed-secondary-nav-pf {\n    .nav-pf-tertiary-nav {\n      left: @nav-pf-vertical-width;\n    }\n  }\n  &.collapsed-tertiary-nav-pf {\n    .nav-pf-tertiary-nav {\n      left: 0;\n    }\n  }\n  &.hover-secondary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n\n    &.collapsed-secondary-nav-pf,\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n    &.collapsed-secondary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    }\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-secondary-nav {\n      .list-group-item {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n        }\n      }\n    }\n    .nav-pf-tertiary-nav {\n      left: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n      .list-group-item {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n        }\n      }\n    }\n    &.collapsed-secondary-nav-pf,\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-badges-width;\n    }\n    &.collapsed-secondary-nav-pf {\n      .nav-pf-tertiary-nav {\n        left: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.hover-secondary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n      &.collapsed-secondary-nav-pf,\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.hover-tertiary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n      &.collapsed-secondary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n      }\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-width;\n      }\n    }\n  }\n}\n.secondary-collapse-toggle-pf {\n  display: none;\n  font-family: @icon-font-name-fa;\n  font-size: inherit;\n  opacity: 0;\n  pointer-events: none;\n  -webkit-font-smoothing: antialiased;\n  &:before {\n    content: @fa-var-arrow-circle-o-left;\n  }\n  &.collapsed {\n    &:before {\n      content: @fa-var-arrow-circle-o-right;\n    }\n  }\n}\n.tertiary-collapse-toggle-pf {\n  display: none;\n  font-family: @icon-font-name-fa;\n  font-size: inherit;\n  opacity: 0;\n  pointer-events: none;\n  -webkit-font-smoothing: antialiased;\n  &:before {\n    content: @fa-var-arrow-circle-o-left;\n  }\n  &.collapsed {\n    &:before {\n      content: @fa-var-arrow-circle-o-right;\n    }\n  }\n}\n.nav-pf-vertical-collapsible-menus {\n  .secondary-collapse-toggle-pf {\n    display: inline-block;\n  }\n  .secondary-nav-item-pf.active {\n    .secondary-collapse-toggle-pf {\n      opacity: 1;\n      pointer-events: all;\n    }\n  }\n  .tertiary-collapse-toggle-pf {\n    display: inline-block;\n  }\n  .tertiary-nav-item-pf.active {\n    .tertiary-collapse-toggle-pf {\n      opacity: 1;\n      pointer-events: all;\n    }\n  }\n}\n.show-mobile-nav {\n  .secondary-collapse-toggle-pf {\n    display: inline-block;\n    opacity: 1;\n    pointer-events: all;\n    &:before {\n      content: @fa-var-arrow-circle-o-left;\n    }\n  }\n  .tertiary-collapse-toggle-pf {\n    display: inline-block;\n    opacity: 1;\n    pointer-events: all;\n    &:before {\n      content: @fa-var-arrow-circle-o-left;\n    }\n  }\n}\n.force-hide-secondary-nav-pf { // Used to temporarily hide sub-menus on an unpin event\n  .nav-pf-secondary-nav {\n    display: none !important;\n  }\n  .nav-pf-tertiary-nav {\n    display: none !important;\n  }\n}\n.nav-pf-vertical.transitions {\n  transition: width @nav-pf-menu-transition-period;\n  .nav-pf-secondary-nav {\n    transition: visibility @nav-pf-menu-transition-period, opacity @nav-pf-menu-transition-period linear;\n  }\n  .nav-pf-tertiary-nav {\n    transition: visibility @nav-pf-menu-transition-period, opacity @nav-pf-menu-transition-period linear;\n  }\n}\n","//\n// Wizard\n// --------------------------------------------------\n.wizard-pf {\n  padding: 10px;\n  margin: 0 auto;\n  max-height: 900px;\n  width: auto;\n  .modal-content {\n    min-height:100%;\n  }\n}\n\n// Wizard header\n// Top section of the wizard w/ title and dismiss\n\n.wizard-pf-body {\n    background:@color-pf-white;\n    padding: 0;\n    position: static;\n}\n/* styles the sidebard containing the sub-steps */\n.wizard-pf-sidebar {\n    background: @color-pf-black-100;\n    border-right: 1px solid @color-pf-black-300;\n    display:none;\n  @media (min-width: @screen-sm-min) {\n    display:inherit;\n    flex:0 0 auto;\n    overflow-x: hidden;\n    overflow-y: auto;\n    .list-group {\n      border-top: 0;\n      margin-bottom: 0;\n    }\n      .list-group-item {\n        background-color: transparent;\n        border-color: @color-pf-black-200;\n        padding: 0;\n        > a {\n          color: @color-pf-black;\n          cursor: pointer;\n          display: block;\n          font-size: 14px;\n          font-weight: 700;\n          height: 50px;\n          outline: 0;\n          padding-top: 11px;\n          padding-left: 20px;\n          position: relative;\n          white-space: nowrap;\n          width: 14em;\n          &:hover {\n            text-decoration: none;\n            background-color: @color-pf-black-200;\n          }\n          &:focus {\n            //corrects odd behavior when hover and focus are combined.\n            text-decoration: none;\n            span {\n              text-decoration: underline;\n            }\n          }\n        }\n        &.active {\n          background-color: @color-pf-black-200;\n\n          //override default behavior\n          &:hover {\n            border-color: @color-pf-black-200;\n          }\n          > a {\n            color: @color-pf-blue-300;\n            cursor: default;\n          }\n          // line to left side showing active substep\n          > a:before {\n            content: \" \";\n            background: @color-pf-blue-300;\n            height: 100%;\n            left: 0;\n            position: absolute;\n            top: 0;\n            width: 3px;\n          }\n          // caret to right showing active substep\n          > a:after {\n            color: @color-pf-blue-300;\n            content: \"\\f105\"; // right caret\n            display: block;\n            font-family: FontAwesome;\n            font-size: 24px;\n            font-weight: 500;\n            line-height: 30px;\n            padding-top: 10px;\n            position: absolute;\n            right: 23px;\n            top: 0;\n          }\n        }\n      }\n    }\n}\n.wizard-pf-substep-number {\n  display:inline-block;\n  margin-right: 5px;\n  vertical-align: middle;\n  width: 25px;\n}\n.wizard-pf-substep-title {\n  display:inline-block;\n  margin-right: 5px;\n  text-align: left;\n  vertical-align: middle;\n}\n/* styles the steps indicator across the top of the wizard */\n.wizard-pf-steps {\n  border-bottom: solid 1px @color-pf-black-300;\n    @media (min-width: @screen-sm-min) {\n      text-align: center;\n    }\n}\n\n.wizard-pf-steps-indicator {\n  background: @color-pf-black-200;\n  border-top: 1px solid @color-pf-black-300;\n  display: inline-block;\n  display: flex;\n  font-size: ceil((@font-size-base * 1.3333));\n  list-style: none;\n  margin-bottom: 0;\n  padding: 15px 0;\n    @media (min-width: @screen-sm-min) {\n      background: @color-pf-white;\n      height: 120px;\n      padding: 38px 0 0;\n      justify-content: space-around;\n    }\n\n  li {\n    counter-increment: section;\n    float:left; /* float for IE9 since it doesn't support flex. If items wrap, they overlap */\n    flex-grow: 1;\n    flex-basis: 0;\n    line-height: 15px;\n    margin: 0;\n    padding: 0;\n    position: relative;\n    text-align: center;\n    &:not(.active) {\n      display: none;\n      @media (min-width: @screen-sm-min) {\n        display: block;\n      }\n    }\n    a {\n        align-items: center;\n        display: flex;\n        flex-wrap:wrap;\n        font-weight: 700;\n        @media (min-width: @screen-sm-min) {\n          font-weight: normal;\n          justify-content: center;\n        }\n          .wizard-pf-step-title {\n            margin-left: 10px;\n            @media(min-width: @screen-sm-min) {\n              margin-left: 0;\n            }\n\n            &-substep {\n              font-weight: normal;\n              margin-left: 10px;\n              text-transform: capitalize;\n              &:before {\n                content:\"\\00BB\";\n                font-size: 20px;\n                margin-right: 10px;\n              }\n              &:not(.active) {\n                display: none;\n              }\n            }\n          }\n    }\n    /* draw the line between the circles */\n    @media (min-width: @screen-sm-min) {\n      .wizard-pf-step-title-substep {\n        display: none;\n      }\n      &:before {\n        background-color: @color-pf-black-400;\n        content: \"\";\n        height: 2px;\n        left: 0;\n        position: absolute;\n        right: 0;\n        top: 40px; // needed for IE9/10 calculate 50% of just the li, others calc 50% of the entire thing including the a:before\n        //otherwise, use top: calc(50% - 1px);\n      }\n      /* don't draw the line between the circles on the ends */\n      &:first-child:before {\n        left: 50%;\n        right: 0;\n      }\n      &:last-child:before {\n        left: 0;\n        right: 50%;\n      }\n      &:only-of-type:before {\n        background-color: transparent;\n      }\n    }\n    a {\n      color: @color-pf-black;\n      cursor: pointer;\n      font-size: 16px;\n      margin-left:1em;\n      margin-right:1em;\n      text-decoration: none;\n      &:hover {\n        .wizard-pf-step-number {\n          background-color: @color-pf-black-400;\n          border-color: @color-pf-black-400;\n          color: @color-pf-white;\n        }\n      }\n    }\n}\n  /* draw the step number in the circle */\n\n  .wizard-pf-step-number {\n    background-color: @color-pf-white;\n    border-radius: 50%;\n    border: solid 2px @color-pf-black-400;\n    color: @color-pf-black-400;\n    font-size: @font-size-base;\n    font-weight: 700;\n    height: 25px;\n    line-height: 22px;\n      @media (min-width: @screen-sm-min) {\n        left: ~\"calc(50% - 13px)\";\n        position: absolute;\n        top: 27px;\n      }\n    width: 25px;\n  }\n  .active .wizard-pf-step-number {\n    background-color: @color-pf-blue-300;\n    border-color: @color-pf-blue-300;\n    cursor: default;\n    color: @color-pf-white;\n  }\n\n  .viewed-pf .wizard-pf-step-number {\n    color: @color-pf-black;\n    background-color: @color-pf-white;\n    border-color: @color-pf-blue-300;\n  }\n\n}\n\n/* styles the main content portion of the wizard */\n.wizard-pf-main {\n  height: 100%;\n  padding:1em;\n  vertical-align: top;\n  width:100%;\n  @media (min-width: @screen-sm-min) {\n    overflow: auto;\n    padding:3em;\n    flex:1 1 auto;\n  }\n  .blank-slate-pf {\n    background-color: transparent;\n    border: none;\n    left: 0;\n    right: 0;\n  }\n}\n\n.wizard-pf-contents textarea {\n  resize: vertical;\n}\n\n/* styles the content of a review page */\n.wizard-pf-review-steps {\n  list-style: none;\n  .list-group, .list-group-item {\n    border: none;\n    margin-bottom: 0;\n  }\n  > ul {\n    > li {\n      float: left;\n      line-height: 15px;\n      margin: 0;\n      padding-top: 0;\n      position: relative;\n      width: 100%;\n      > a {\n        color: #030303;\n        cursor: pointer;\n        font-size: 16px;\n        padding-left: 30px;\n        padding-right: 5px;\n        text-decoration: none;\n        transition: 250ms;\n        &:before {\n          content: \"\\f107\";\n          display: block;\n          font-family: FontAwesome;\n          font-size: 24px;\n          font-weight: 500;\n          left: 20px;\n          position: absolute;\n          top: 0;\n        }\n        &.collapsed {\n          &:before {\n            content: \"\\f105\";\n          }\n        }\n      }\n    }\n  }\n}\n\n.wizard-pf-review-substeps {\n  padding-left: 22px;\n  > ul {\n    > li {\n      float: left;\n      line-height: 15px;\n      margin: 0;\n      position: relative;\n      width: 100%;\n      a {\n        color: #030303;\n        cursor: pointer;\n        font-size: 16px;\n        padding-left: 30px;\n        padding-right: 5px;\n        text-decoration: none;\n        transition: 250ms;\n        &:before {\n          content: \"\\f107\";\n          display: block;\n          font-family: FontAwesome;\n          font-size: 24px;\n          font-weight: 500;\n          left: 20px;\n          position: absolute;\n          top: 10px;\n        }\n        &.collapsed {\n          &:before {\n            content: \"\\f105\";\n          }\n        }\n      }\n    }\n  }\n}\n\n.wizard-pf-review-content {\n  padding-top: 10px;\n  padding-left: 40px;\n  .wizard-pf-review-item {\n    padding: 5px 0;\n    &.sub-item {\n      margin-left: 10px;\n    }\n    .wizard-pf-review-item-label {\n      font-weight: 700;\n      padding-right: 10px;\n    }\n    .wizard-pf-review-item-field {\n      font-weight: 700;\n      margin: 5px 0;\n      padding-right: 10px;\n      &:first-of-type {\n        margin-top: 0;\n      }\n      &:last-of-type {\n        margin-bottom: 0;\n      }\n      &.sub-field {\n        margin-left: 10px;\n      }\n    }\n  }\n}\n\n.wizard-pf-success-icon {\n  color: @color-pf-green-400;\n  font-size: (@font-size-base * 5.6);\n  line-height: (@font-size-base * 5.6);\n}\n\n/* styles the footer */\n.wizard-pf-footer {\n  background:@color-pf-white;\n  border-top: 1px solid @color-pf-black-300;\n  margin-top: 0;\n  padding-bottom: 17px;\n  .btn-cancel {\n    margin-right:25px;\n  }\n}\n\n.wizard-pf-row {\n    @media (min-width: @screen-sm-min) {\n      display: flex;\n      width:100%;\n      height: 900px;\n      max-height: 65vh;\n    }\n}\n\n// Scale up the modal\n@media (min-width: @screen-md-min) {\n  // increasing space around modal for larger viewports\n  .wizard-pf {\n    padding: 30px 0;\n    width: 900px;\n  }\n  // increasing width of sidebar for larger viewports\n  .wizard-pf-sidebar .list-group-item > a {\n    width: 18em;\n  }\n}\n\n//\n//\n// This is for the new wizard that is more robust on mobile.\n// --------------------------------------------------\n\n.wizard-pf-steps-alt, .wizard-pf-steps-alt ul {\n  list-style: none;\n  margin: 0;\n  padding: 0;\n}\n\n.wizard-pf-steps-alt {\n  margin-left: 15px;\n  margin-top: 15px;\n  background-image: linear-gradient(to right, transparent 11px, @color-pf-black-300 11px, @color-pf-black-300 13px, transparent 13px);\n  @media (min-width: @screen-sm-min) {\n    display:none;\n  }\n  &-indicator {\n    position: relative;\n    // caret to top showing active substep\n    &:after {\n      color: @color-pf-black-700;\n      content: \"\\f107\"; // top caret\n      display: block;\n      font-family: FontAwesome;\n      font-size: 24px;\n      font-weight: 500;\n      position: absolute;\n      right: 17px;\n      top: 50%;\n      transform:translateY(-50%);\n      @media (min-width: @screen-sm-min) {\n        display:none;\n      }\n    }\n    &.active {\n      &:after {\n        content: \"\\f106\";\n      }\n    }\n  }//indicator\n}//.wizard-pf-steps-alt\n\n.wizard-pf-step-alt {\n  margin-bottom: 10px;\n  a {\n    display:flex;\n    flex:1;\n    &:hover {\n      text-decoration: none;\n      .wizard-pf-step-alt-title {\n        color: @color-pf-blue-300;\n      }\n    }\n  }\n  ul {\n    margin-left: 11px;\n  }\n  .wizard-pf-step-alt-title {\n    margin-left: 5px;\n    align-self:center;\n  }\n  .wizard-pf-step-alt-number {\n    flex:0 0 auto;\n  }\n\n  &.active {\n    .wizard-pf-step-alt-number {\n      background-color: @color-pf-blue-300;\n      border-color: @color-pf-blue-300;\n      cursor: default;\n      color: @color-pf-white;\n    }\n    .wizard-pf-step-alt-title {\n      color: @color-pf-blue-300;\n    }\n    .wizard-pf-step-alt-substep:first-of-type {\n      margin-top: 2px; // gives proper spacing below number in circle active state\n    }\n\n\n  }\n  &.viewed {\n    .wizard-pf-step-alt-number {\n      color: @color-pf-black;\n      background-color: @color-pf-white;\n      border-color: @color-pf-blue-300;\n    }\n  }\n\n}//.wizard-pf-step-alt\n\n.wizard-pf-step-alt-number {\n  background-color: @color-pf-white;\n  border-radius: 50%;\n  border: solid 2px @color-pf-black-400;\n  color: @color-pf-black-400;\n  font-size: @font-size-base;\n  font-weight: 700;\n  height: 24px;\n  width: 24px;\n  display: inline-block;\n  text-align: center;\n}\n\n\n.wizard-pf-step-alt-title {\n  color: @color-pf-black;\n  font-weight: 700;\n  text-transform: capitalize;\n  display:inline-block;\n\n}//.wizard-pf-steps-alt-title\n\n.wizard-pf-step-alt-substep {\n    display:flex;\n  a {\n    padding:5px 0 5px 18px;\n    color: @color-pf-black-800;\n  }\n\n&:not(.disabled) {\n  &.active, &:hover {\n    background-color: @color-pf-black-200;\n    background-image: linear-gradient(to right, @color-pf-blue-300 2px, transparent 2px);\n    a {\n      color:@color-pf-blue-300;\n    }\n  }\n}\n  &.active {\n    a {\n      font-weight:700;\n    }\n  }\n  &.disabled {\n    cursor: not-allowed;\n    a {\n      pointer-events: none;\n    }\n  }\n}\n"]}
\ No newline at end of file
+{"version":3,"sources":["node_modules/bootstrap-slider/src/less/rules.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","node_modules/patternfly-bootstrap-combobox/less/combobox.less","node_modules/bootstrap-datepicker/less/datepicker3.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap-select/less/bootstrap-select.less","node_modules/bootstrap-switch/src/less/bootstrap3/bootstrap-switch.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap-touchspin/dist/jquery.bootstrap-touchspin.css","node_modules/c3/c3.css","node_modules/eonasdan-bootstrap-datetimepicker/src/less/_bootstrap-datetimepicker.less","node_modules/eonasdan-bootstrap-datetimepicker/src/less/bootstrap-datetimepicker-build.less","src/less/mixins.less","src/less/about-modal.less","src/less/application-launcher.less","src/less/blank-slate.less","src/less/bootstrap-combobox.less","src/less/variables.less","src/less/bootstrap-datepicker.less","src/less/bootstrap-mixin-overrides.less","src/less/bootstrap-select.less","src/less/bootstrap-slider.less","src/less/bootstrap-switch.less","src/less/bootstrap-touchspin.less","src/less/bootstrap-treeview.less","src/less/cards.less","src/less/card-view.less","src/less/charts.less","src/less/close.less","src/less/context-selector.less","src/less/datatables.less","node_modules/bootstrap/less/mixins/reset-filter.less","src/less/experimental-features.less","src/less/filter.less","src/less/footer.less","src/less/icons.less","src/less/infotip.less","src/less/layouts.less","src/less/links.less","src/less/list-pf.less","src/less/list-view.less","node_modules/bootstrap/less/mixins/clearfix.less","src/less/list-view-dnd.less","src/less/login.less","src/less/navbar.less","node_modules/font-awesome/less/variables.less","src/less/navbar-alt.less","src/less/navbar-vertical.less","src/less/nav-vertical-alt.less","src/less/notifications-drawer.less","src/less/search.less","src/less/sidebar.less","src/less/skip-to-content.less","src/less/spinner.less","src/less/syntax-highlighting.less","src/less/table-view.less","src/less/time-picker.less","src/less/toast.less","src/less/toolbar.less","src/less/vertical-nav.less","src/less/wizard.less"],"names":[],"mappings":"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","sourcesContent":[".slider {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n\tposition: relative;\n\t&.slider-horizontal {\n\t\twidth: @slider-horizontal-width;\n\t\theight: @slider-line-height;\n\t\t.slider-track {\n\t\t\theight: (@slider-line-height/2);\n\t\t\twidth: 100%;\n\t\t\tmargin-top: (-@slider-line-height/4);\n\t\t\ttop: 50%;\n\t\t\tleft: 0;\n\t\t}\n\t\t.slider-selection, .slider-track-low, .slider-track-high {\n\t\t\theight: 100%;\n\t\t\ttop: 0;\n\t\t\tbottom: 0;\n\t\t}\n\t\t.slider-tick,\n\t\t.slider-handle {\n\t\t\tmargin-left: (-@slider-line-height/2);\n\t\t\t&.triangle {\n\t\t\t\tposition: relative;\n\t\t\t\ttop: 50%;\n\t\t\t\ttransform: translateY(-50%);\n\t\t\t\tborder-width: 0 (@slider-line-height/2) (@slider-line-height/2) (@slider-line-height/2);\n\t\t\t\twidth: 0;\n\t\t\t\theight: 0;\n\t\t\t\tborder-bottom-color: @slider-primary-bottom;\n\t\t\t\tmargin-top: 0;\n\t\t\t}\n\t\t}\n\t\t.slider-tick-container {\n\t\t\twhite-space: nowrap;\n\t\t\tposition: absolute;\n    \ttop: 0;\n    \tleft: 0;\n    \twidth: 100%;\n\t\t}\n\t\t.slider-tick-label-container {\n\t\t\twhite-space: nowrap;\n\t\t\tmargin-top: @slider-line-height;\n\n\t\t\t.slider-tick-label {\n\t\t\t\tpadding-top: @slider-line-height * .2;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\ttext-align: center;\n\t\t\t}\n\t\t}\n\t\t&.slider-rtl {\n\t\t\t.slider-track {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t\t.slider-tick,\n\t\t\t.slider-handle {\n\t\t\t\tmargin-left: initial;\n\t\t\t\tmargin-right: (-@slider-line-height/2);\n\t\t\t}\n\t\t\t.slider-tick-container {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t}\n\t}\n\t&.slider-vertical {\n\t\theight: @slider-vertical-height;\n\t\twidth: @slider-line-height;\n\t\t.slider-track {\n\t\t\twidth: (@slider-line-height/2);\n\t\t\theight: 100%;\n\t\t\tleft: 25%;\n\t\t\ttop: 0;\n\t\t}\n\t\t.slider-selection {\n\t\t\twidth: 100%;\n\t\t\tleft: 0;\n\t\t\ttop: 0;\n\t\t\tbottom: 0;\n\t\t}\n\t\t.slider-track-low, .slider-track-high {\n\t\t\twidth: 100%;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t}\n\t\t.slider-tick,\n\t\t.slider-handle {\n\t\t\tmargin-top: (-@slider-line-height/2);\n\t\t\t&.triangle {\n\t\t\t\tborder-width: (@slider-line-height/2) 0 (@slider-line-height/2) (@slider-line-height/2);\n\t\t\t\twidth: 1px;\n\t\t\t\theight: 1px;\n\t\t\t\tborder-left-color: @slider-primary-bottom;\n\t\t\t\tborder-right-color: @slider-primary-bottom;\n\t\t\t\tmargin-left: 0;\n\t\t\t\tmargin-right: 0;\n\t\t\t}\n\t\t}\n\t\t.slider-tick-label-container {\n\t\t\twhite-space: nowrap;\n\n\t\t\t.slider-tick-label {\n\t\t\t\tpadding-left: @slider-line-height * .2;\n\t\t\t}\n\t\t}\n\n\t\t&.slider-rtl {\n\t\t\t.slider-track {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 25%;\n\t\t\t}\n\t\t\t.slider-selection {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t\t.slider-tick,\n\t\t\t.slider-handle {\n\t\t\t\t&.triangle {\n\t\t\t\t\tborder-width: (@slider-line-height/2) (@slider-line-height/2) (@slider-line-height/2) 0;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.slider-tick-label-container {\n\t\t\t\t.slider-tick-label {\n\t\t\t\t\tpadding-left: initial;\n\t\t\t\t\tpadding-right: @slider-line-height * .2;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t&.slider-disabled {\n\t\t.slider-handle {\n\t\t\t#gradient > .vertical(@slider-gray-2, @slider-gray-1);\n\t\t}\n\t\t.slider-track {\n\t\t\t#gradient > .vertical(@slider-gray-3, @slider-gray-4);\n\t\t\tcursor: not-allowed;\n\t\t}\n\t}\n\tinput {\n\t\tdisplay: none;\n\t}\n\t.tooltip {\n\t\t&.top {\n\t\t\tmargin-top: -36px;\n\t\t}\n\t}\n\t.tooltip-inner {\n\t\twhite-space: nowrap;\n\t\tmax-width: none;\n\t}\n\t.hide {\n\t\tdisplay: none;\n\t}\n}\n.slider-track {\n\tposition: absolute;\n\tcursor: pointer;\n\t#gradient > .vertical(@slider-gray-5, @slider-gray-6);\n\t.box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n\tborder-radius: @border-radius-base;\n}\n.slider-selection {\n\tposition: absolute;\n\t#gradient > .vertical(@slider-gray-6, @slider-gray-5);\n\t.box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n\t.box-sizing(border-box);\n\tborder-radius: @border-radius-base;\n}\n.slider-selection.tick-slider-selection {\n\t#gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n}\n.slider-track-low, .slider-track-high {\n\tposition: absolute;\n\tbackground: transparent;\n\t.box-sizing(border-box);\n\tborder-radius: @border-radius-base;\n}\n.slider-handle {\n\tposition: absolute;\n\ttop: 0;\n\twidth: @slider-line-height;\n\theight: @slider-line-height;\n\tbackground-color: @slider-primary;\n\t#gradient > .vertical(@slider-primary-top, @slider-primary-bottom);\n\tfilter: none;\n\t.box-shadow(~\"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)\");\n\tborder: 0px solid transparent;\n\t&.round {\n\t\tborder-radius: 50%;\n\t}\n\t&.triangle {\n\t\tbackground: transparent none;\n\t}\n\t&.custom {\n\t\tbackground: transparent none;\n\t\t&::before{\n\t\t\tline-height: @slider-line-height;\n\t\t\tfont-size: 20px;\n\t\t\tcontent: '\\2605'; //unicode star character\n\t\t\tcolor: @slider-unicode-color;\n\t\t}\n\t}\n}\n.slider-tick {\n\tposition: absolute;\n\twidth: @slider-line-height;\n\theight: @slider-line-height;\n\t#gradient.vertical(@slider-gray-6, @slider-gray-5);\n\t.box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n\t.box-sizing(border-box);\n\tfilter: none;\n\topacity: 0.8;\n\tborder: 0px solid transparent;\n\t&.round {\n\t\tborder-radius: 50%;\n\t}\n\t&.triangle {\n\t\tbackground: transparent none;\n\t}\n\t&.custom {\n\t\tbackground: transparent none;\n\t\t&::before{\n\t\t\tline-height: @slider-line-height;\n\t\t\tfont-size: 20px;\n\t\t\tcontent: '\\2605'; //unicode star character\n\t\t\tcolor: @slider-unicode-color;\n\t\t}\n\t}\n\t&.in-selection {\n\t\t#gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n\t\topacity: 1;\n\t}\n}\n","// Gradients\n\n#gradient {\n\n  // Horizontal gradient, from left to right\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  // Vertical gradient, from top to bottom\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12\n    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n    background-repeat: repeat-x;\n    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n  }\n  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .radial(@inner-color: #555; @outer-color: #333) {\n    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n    background-image: radial-gradient(circle, @inner-color, @outer-color);\n    background-repeat: no-repeat;\n  }\n  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n  }\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n  -webkit-animation: @animation;\n       -o-animation: @animation;\n          animation: @animation;\n}\n.animation-name(@name) {\n  -webkit-animation-name: @name;\n          animation-name: @name;\n}\n.animation-duration(@duration) {\n  -webkit-animation-duration: @duration;\n          animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n  -webkit-animation-timing-function: @timing-function;\n          animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n  -webkit-animation-delay: @delay;\n          animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n  -webkit-animation-iteration-count: @iteration-count;\n          animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n  -webkit-animation-direction: @direction;\n          animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n  -webkit-animation-fill-mode: @fill-mode;\n          animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n  -webkit-backface-visibility: @visibility;\n     -moz-backface-visibility: @visibility;\n          backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n          box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n  -webkit-box-sizing: @boxmodel;\n     -moz-box-sizing: @boxmodel;\n          box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n  -webkit-column-count: @column-count;\n     -moz-column-count: @column-count;\n          column-count: @column-count;\n  -webkit-column-gap: @column-gap;\n     -moz-column-gap: @column-gap;\n          column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n  word-wrap: break-word;\n  -webkit-hyphens: @mode;\n     -moz-hyphens: @mode;\n      -ms-hyphens: @mode; // IE10+\n       -o-hyphens: @mode;\n          hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  // Firefox\n  &::-moz-placeholder {\n    color: @color;\n    opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n  }\n  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n  -webkit-transform: scale(@ratio);\n      -ms-transform: scale(@ratio); // IE9 only\n       -o-transform: scale(@ratio);\n          transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n  -webkit-transform: scale(@ratioX, @ratioY);\n      -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n       -o-transform: scale(@ratioX, @ratioY);\n          transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n  -webkit-transform: scaleX(@ratio);\n      -ms-transform: scaleX(@ratio); // IE9 only\n       -o-transform: scaleX(@ratio);\n          transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n  -webkit-transform: scaleY(@ratio);\n      -ms-transform: scaleY(@ratio); // IE9 only\n       -o-transform: scaleY(@ratio);\n          transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n  -webkit-transform: skewX(@x) skewY(@y);\n      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n       -o-transform: skewX(@x) skewY(@y);\n          transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n  -webkit-transform: translate(@x, @y);\n      -ms-transform: translate(@x, @y); // IE9 only\n       -o-transform: translate(@x, @y);\n          transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n  -webkit-transform: translate3d(@x, @y, @z);\n          transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees); // IE9 only\n       -o-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n  -webkit-transform: rotateX(@degrees);\n      -ms-transform: rotateX(@degrees); // IE9 only\n       -o-transform: rotateX(@degrees);\n          transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n  -webkit-transform: rotateY(@degrees);\n      -ms-transform: rotateY(@degrees); // IE9 only\n       -o-transform: rotateY(@degrees);\n          transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n  -webkit-perspective: @perspective;\n     -moz-perspective: @perspective;\n          perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n  -webkit-perspective-origin: @perspective;\n     -moz-perspective-origin: @perspective;\n          perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n  -webkit-transform-origin: @origin;\n     -moz-transform-origin: @origin;\n      -ms-transform-origin: @origin; // IE9 only\n          transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n  -webkit-transition: @transition;\n       -o-transition: @transition;\n          transition: @transition;\n}\n.transition-property(@transition-property) {\n  -webkit-transition-property: @transition-property;\n          transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n  -webkit-transition-delay: @transition-delay;\n          transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n  -webkit-transition-duration: @transition-duration;\n          transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n  -webkit-transition-timing-function: @timing-function;\n          transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n  -webkit-transition: -webkit-transform @transition;\n     -moz-transition: -moz-transform @transition;\n       -o-transition: -o-transform @transition;\n          transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n  -webkit-user-select: @select;\n     -moz-user-select: @select;\n      -ms-user-select: @select; // IE10+\n          user-select: @select;\n}\n","@media (min-width: 768px) {\n  .form-search,\n  .form-inline {\n    .combobox-container {\n      display: inline-block;\n      margin-bottom: 0;\n      vertical-align: top;\n      .input-group-addon {\n        width: auto;\n      }\n    }\n  }\n}\n\n.combobox-selected .caret {\n  display: none;\n}\n\n/* :not doesn't work in IE8 */\n.combobox-container:not(.combobox-selected) .glyphicon-remove {\n  display: none;\n}\n\n.typeahead-long {\n  max-height: 300px;\n  overflow-y: auto;\n}\n\n.control-group.error .combobox-container{\n  .add-on {\n    color: #B94A48;\n    border-color: #B94A48;\n  }\n  .caret {\n    border-top-color: #B94A48;\n  }\n}\n\n.control-group.warning .combobox-container {\n  .add-on {\n    color: #C09853;\n    border-color: #C09853;\n  }\n  .caret {\n    border-top-color: #C09853;\n  }\n}\n\n.control-group.success .combobox-container{\n  .add-on {\n    color: #468847;\n    border-color: #468847;\n  }\n  .caret {\n    border-top-color: #468847;\n  }\n}\n",".datepicker {\n\tborder-radius: @border-radius-base;\n\t&-inline {\n\t\twidth: 220px;\n\t}\n\tdirection: ltr;\n\t&-rtl {\n\t\tdirection: rtl;\n\t\t&.dropdown-menu { left: auto; }\n\t\ttable tr td span {\n\t\t\tfloat: right;\n\t\t}\n\t}\n\t&-dropdown {\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tpadding: 4px;\n\t\t&:before {\n\t\t\tcontent: '';\n\t\t\tdisplay: inline-block;\n\t\t\tborder-left:   7px solid transparent;\n\t\t\tborder-right:  7px solid transparent;\n\t\t\tborder-bottom: 7px solid @dropdown-border;\n\t\t\tborder-top:    0;\n\t\t\tborder-bottom-color: rgba(0,0,0,.2);\n\t\t\tposition: absolute;\n\t\t}\n\t\t&:after {\n\t\t\tcontent: '';\n\t\t\tdisplay: inline-block;\n\t\t\tborder-left:   6px solid transparent;\n\t\t\tborder-right:  6px solid transparent;\n\t\t\tborder-bottom: 6px solid @dropdown-bg;\n\t\t\tborder-top:    0;\n\t\t\tposition: absolute;\n\t\t}\n\t\t&.datepicker-orient-left:before   { left: 6px; }\n\t\t&.datepicker-orient-left:after    { left: 7px; }\n\t\t&.datepicker-orient-right:before  { right: 6px; }\n\t\t&.datepicker-orient-right:after   { right: 7px; }\n\t\t&.datepicker-orient-bottom:before { top: -7px; }\n\t\t&.datepicker-orient-bottom:after  { top: -6px; }\n\t\t&.datepicker-orient-top:before {\n\t\t\tbottom: -7px;\n\t\t\tborder-bottom: 0;\n\t\t\tborder-top:    7px solid @dropdown-border;\n\t\t}\n\t\t&.datepicker-orient-top:after {\n\t\t\tbottom: -6px;\n\t\t\tborder-bottom: 0;\n\t\t\tborder-top:    6px solid @dropdown-bg;\n\t\t}\n\t}\n\ttable {\n\t\tmargin: 0;\n\t\t-webkit-touch-callout: none;\n\t\t-webkit-user-select: none;\n\t\t-khtml-user-select: none;\n\t\t-moz-user-select: none;\n\t\t-ms-user-select: none;\n\t\tuser-select: none;\n\t\ttr {\n\t\t\ttd, th {\n\t\t\t\ttext-align: center;\n\t\t\t\twidth: 30px;\n\t\t\t\theight: 30px;\n\t\t\t\tborder-radius: 4px;\n\t\t\t\tborder: none;\n\t\t\t}\n\t\t}\n\t}\n\t// Inline display inside a table presents some problems with\n\t// border and background colors.\n\t.table-striped & table tr {\n\t\ttd, th {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\ttable tr td {\n\t\t&.old,\n\t\t&.new {\n\t\t\tcolor: @btn-link-disabled-color;\n\t\t}\n\t\t&.day:hover,\n\t\t&.focused {\n\t\t\tbackground: @gray-lighter;\n\t\t\tcursor: pointer;\n\t\t}\n\t\t&.disabled,\n\t\t&.disabled:hover {\n\t\t\tbackground: none;\n\t\t\tcolor: @btn-link-disabled-color;\n\t\t\tcursor: default;\n\t\t}\n\t\t&.highlighted {\n\t\t\t@highlighted-bg: @state-info-bg;\n\t\t\t.button-variant(#000, @highlighted-bg, darken(@highlighted-bg, 20%));\n\t\t\tborder-radius: 0;\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@highlighted-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @highlighted-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.today {\n\t\t\t@today-bg: lighten(orange, 30%);\n\t\t\t.button-variant(#000, @today-bg, darken(@today-bg, 20%));\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@today-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @today-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range {\n\t\t\t@range-bg: @gray-lighter;\n\t\t\t.button-variant(#000, @range-bg, darken(@range-bg, 20%));\n\t\t\tborder-radius: 0;\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@range-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range.highlighted {\n\t\t\t@range-highlighted-bg: mix(@state-info-bg, @gray-lighter, 50%);\n\t\t\t.button-variant(#000, @range-highlighted-bg, darken(@range-highlighted-bg, 20%));\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@range-highlighted-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-highlighted-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range.today {\n\t\t\t@range-today-bg: mix(orange, @gray-lighter, 50%);\n\t\t\t.button-variant(#000, @range-today-bg, darken(@range-today-bg, 20%));\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-today-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.selected,\n\t\t&.selected.highlighted {\n\t\t\t.button-variant(#fff, @gray-light, @gray);\n\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t}\n\t\t&.active,\n\t\t&.active.highlighted {\n\t\t\t.button-variant(@btn-primary-color, @btn-primary-bg, @btn-primary-border);\n\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t}\n\t\tspan {\n\t\t\tdisplay: block;\n\t\t\twidth: 23%;\n\t\t\theight: 54px;\n\t\t\tline-height: 54px;\n\t\t\tfloat: left;\n\t\t\tmargin: 1%;\n\t\t\tcursor: pointer;\n\t\t\tborder-radius: 4px;\n\t\t\t&:hover,\n\t\t\t&.focused {\n\t\t\t\tbackground: @gray-lighter;\n\t\t\t}\n\t\t\t&.disabled,\n\t\t\t&.disabled:hover {\n\t\t\t\tbackground: none;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t\tcursor: default;\n\t\t\t}\n\t\t\t&.active,\n\t\t\t&.active:hover,\n\t\t\t&.active.disabled,\n\t\t\t&.active.disabled:hover {\n\t\t\t\t.button-variant(@btn-primary-color, @btn-primary-bg, @btn-primary-border);\n\t\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t\t}\n\t\t\t&.old,\n\t\t\t&.new {\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t}\n\n\t.datepicker-switch {\n\t\twidth: 145px;\n\t}\n\n\t.datepicker-switch,\n\t.prev,\n\t.next,\n\ttfoot tr th {\n\t\tcursor: pointer;\n\t\t&:hover {\n\t\t\tbackground: @gray-lighter;\n\t\t}\n\t}\n\n\t.prev, .next {\n\t\t&.disabled {\n\t\t\tvisibility: hidden;\n\t\t}\n\t}\n\n\t// Basic styling for calendar-week cells\n\t.cw {\n\t\tfont-size: 10px;\n\t\twidth: 12px;\n\t\tpadding: 0 2px 0 5px;\n\t\tvertical-align: middle;\n\t}\n}\n.input-group.date .input-group-addon {\n\tcursor: pointer;\n}\n.input-daterange {\n\twidth: 100%;\n\tinput {\n\t\ttext-align: center;\n\t}\n\tinput:first-child {\n\t\tborder-radius: 3px 0 0 3px;\n\t}\n\tinput:last-child {\n\t\tborder-radius: 0 3px 3px 0;\n\t}\n\t.input-group-addon {\n\t\twidth: auto;\n\t\tmin-width: 16px;\n\t\tpadding: 4px 5px;\n\t\tline-height: @line-height-base;\n\t\ttext-shadow: 0 1px 0 #fff;\n\t\tborder-width: 1px 0;\n\t\tmargin-left: -5px;\n\t\tmargin-right: -5px;\n\t}\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n  color: @color;\n  background-color: @background;\n  border-color: @border;\n\n  &:focus,\n  &.focus {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 25%);\n  }\n  &:hover {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n\n    &:hover,\n    &:focus,\n    &.focus {\n      color: @color;\n      background-color: darken(@background, 17%);\n          border-color: darken(@border, 25%);\n    }\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    background-image: none;\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: @background;\n          border-color: @border;\n    }\n  }\n\n  .badge {\n    color: @background;\n    background-color: @color;\n  }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n}\n","@import \"variables\";\n\n// Mixins\n.cursor-disabled() {\n  cursor: not-allowed;\n}\n\n// Rules\nselect.bs-select-hidden,\nselect.selectpicker {\n  display: none !important;\n}\n\n.bootstrap-select {\n  width: 220px \\0; /*IE9 and below*/\n\n  // The selectpicker button\n  > .dropdown-toggle {\n    width: 100%;\n    padding-right: 25px;\n    z-index: 1;\n\n    &.bs-placeholder,\n    &.bs-placeholder:hover,\n    &.bs-placeholder:focus,\n    &.bs-placeholder:active { color: @input-color-placeholder; }\n  }\n\n  > select {\n    position: absolute !important;\n    bottom: 0;\n    left: 50%;\n    display: block !important;\n    width: 0.5px !important;\n    height: 100% !important;\n    padding: 0 !important;\n    opacity: 0 !important;\n    border: none;\n\n    &.mobile-device {\n      top: 0;\n      left: 0;\n      display: block !important;\n      width: 100% !important;\n      z-index: 2;\n    }\n  }\n\n  // Error display\n  .has-error & .dropdown-toggle,\n  .error & .dropdown-toggle {\n    border-color: @color-red-error;\n  }\n\n  &.fit-width {\n    width: auto !important;\n  }\n\n  &:not([class*=\"col-\"]):not([class*=\"form-control\"]):not(.input-group-btn) {\n    width: @width-default;\n  }\n\n  .dropdown-toggle:focus {\n    outline: thin dotted #333333 !important;\n    outline: 5px auto -webkit-focus-ring-color !important;\n    outline-offset: -2px;\n  }\n}\n\n.bootstrap-select.form-control {\n  margin-bottom: 0;\n  padding: 0;\n  border: none;\n\n  &:not([class*=\"col-\"]) {\n    width: 100%;\n  }\n\n  &.input-group-btn {\n    z-index: auto;\n\n    &:not(:first-child):not(:last-child) {\n      > .btn {\n        border-radius: 0;\n      }\n    }\n  }\n}\n\n// The selectpicker components\n.bootstrap-select.btn-group {\n  &:not(.input-group-btn),\n  &[class*=\"col-\"] {\n    float: none;\n    display: inline-block;\n    margin-left: 0;\n  }\n\n  // Forces the pull to the right, if necessary\n  &,\n  &[class*=\"col-\"],\n  .row &[class*=\"col-\"] {\n    &.dropdown-menu-right {\n      float: right;\n    }\n  }\n\n  .form-inline &,\n  .form-horizontal &,\n  .form-group & {\n    margin-bottom: 0;\n  }\n\n  .form-group-lg &.form-control,\n  .form-group-sm &.form-control {\n    padding: 0;\n\n    .dropdown-toggle {\n      height: 100%;\n      font-size: inherit;\n      line-height: inherit;\n      border-radius: inherit;\n    }\n  }\n\n  // Set the width of the live search (and any other form control within an inline form)\n  // see https://github.com/silviomoreto/bootstrap-select/issues/685\n  .form-inline & .form-control {\n    width: 100%;\n  }\n\n  &.disabled,\n  > .disabled {\n    .cursor-disabled();\n\n    &:focus {\n      outline: none !important;\n    }\n  }\n\n  &.bs-container {\n    position: absolute;\n    height: 0 !important;\n    padding: 0 !important;\n    \n    .dropdown-menu {\n      z-index: @zindex-select-dropdown;\n    }\n  }\n\n  // The selectpicker button\n  .dropdown-toggle {\n    .filter-option {\n      display: inline-block;\n      overflow: hidden;\n      width: 100%;\n      text-align: left;\n    }\n\n    .caret {\n      position: absolute;\n      top: 50%;\n      right: 12px;\n      margin-top: -2px;\n      vertical-align: middle;\n    }\n  }\n\n  &[class*=\"col-\"] .dropdown-toggle {\n    width: 100%;\n  }\n\n  // The selectpicker dropdown\n  .dropdown-menu {\n    min-width: 100%;\n    box-sizing: border-box;\n\n    &.inner {\n      position: static;\n      float: none;\n      border: 0;\n      padding: 0;\n      margin: 0;\n      border-radius: 0;\n      box-shadow: none;\n    }\n\n    li {\n      position: relative;\n\n      &.active small {\n        color: #fff;\n      }\n\n      &.disabled a {\n        .cursor-disabled();\n      }\n\n      a {\n        cursor: pointer;\n        user-select: none;\n\n        &.opt {\n          position: relative;\n          padding-left: 2.25em;\n        }\n\n        span.check-mark {\n          display: none;\n        }\n\n        span.text {\n          display: inline-block;\n        }\n      }\n\n      small {\n        padding-left: 0.5em;\n      }\n    }\n\n    .notify {\n      position: absolute;\n      bottom: 5px;\n      width: 96%;\n      margin: 0 2%;\n      min-height: 26px;\n      padding: 3px 5px;\n      background: rgb(245, 245, 245);\n      border: 1px solid rgb(227, 227, 227);\n      box-shadow: inset 0 1px 1px fade(rgb(0, 0, 0), 5%);\n      pointer-events: none;\n      opacity: 0.9;\n      box-sizing: border-box;\n    }\n  }\n\n  .no-results {\n    padding: 3px;\n    background: #f5f5f5;\n    margin: 0 5px;\n    white-space: nowrap;\n  }\n\n  &.fit-width .dropdown-toggle {\n    .filter-option {\n      position: static;\n    }\n\n    .caret {\n      position: static;\n      top: auto;\n      margin-top: -1px;\n    }\n  }\n\n  &.show-tick .dropdown-menu li {\n    &.selected a span.check-mark {\n      position: absolute;\n      display: inline-block;\n      right: 15px;\n      margin-top: 5px;\n    }\n\n    a span.text {\n      margin-right: 34px;\n    }\n  }\n}\n\n.bootstrap-select.show-menu-arrow {\n  &.open > .dropdown-toggle {\n    z-index: (@zindex-select-dropdown + 1);\n  }\n\n  .dropdown-toggle {\n    &:before {\n      content: '';\n      border-left: 7px solid transparent;\n      border-right: 7px solid transparent;\n      border-bottom: 7px solid @color-grey-arrow;\n      position: absolute;\n      bottom: -4px;\n      left: 9px;\n      display: none;\n    }\n\n    &:after {\n      content: '';\n      border-left: 6px solid transparent;\n      border-right: 6px solid transparent;\n      border-bottom: 6px solid white;\n      position: absolute;\n      bottom: -4px;\n      left: 10px;\n      display: none;\n    }\n  }\n\n  &.dropup .dropdown-toggle {\n    &:before {\n      bottom: auto;\n      top: -3px;\n      border-top: 7px solid @color-grey-arrow;\n      border-bottom: 0;\n    }\n\n    &:after {\n      bottom: auto;\n      top: -3px;\n      border-top: 6px solid white;\n      border-bottom: 0;\n    }\n  }\n\n  &.pull-right .dropdown-toggle {\n    &:before {\n      right: 12px;\n      left: auto;\n    }\n\n    &:after {\n      right: 13px;\n      left: auto;\n    }\n  }\n\n  &.open > .dropdown-toggle {\n    &:before,\n    &:after {\n      display: block;\n    }\n  }\n}\n\n.bs-searchbox,\n.bs-actionsbox,\n.bs-donebutton {\n  padding: 4px 8px;\n}\n\n.bs-actionsbox {\n  width: 100%;\n  box-sizing: border-box;\n\n  & .btn-group button {\n    width: 50%;\n  }\n}\n\n.bs-donebutton {\n  float: left;\n  width: 100%;\n  box-sizing: border-box;\n\n  & .btn-group button {\n    width: 100%;\n  }\n}\n\n.bs-searchbox {\n  & + .bs-actionsbox {\n    padding: 0 8px 4px;\n  }\n\n  & .form-control {\n    margin-bottom: 0;\n    width: 100%;\n    float: none;\n  }\n}\n","@bootstrap-switch-base: bootstrap-switch;\n\n.@{bootstrap-switch-base} {\n  display: inline-block;\n  direction: ltr;\n  cursor: pointer;\n  border-radius: @border-radius-base;\n  border: 1px solid;\n  border-color: @btn-default-border;\n  position: relative;\n  text-align: left;\n  overflow: hidden;\n  line-height: 8px;\n  z-index: 0;\n  .user-select(none);\n  vertical-align: middle;\n  .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n  .@{bootstrap-switch-base}-container {\n    display: inline-block;\n    top: 0;\n    border-radius: @border-radius-base;\n    .translate3d(0, 0, 0);\n  }\n\n  .@{bootstrap-switch-base}-handle-on,\n  .@{bootstrap-switch-base}-handle-off,\n  .@{bootstrap-switch-base}-label {\n    .box-sizing(border-box);\n    cursor: pointer;\n    display: table-cell;\n    vertical-align: middle;\n    padding: @padding-base-vertical @padding-base-horizontal;\n    font-size: @font-size-base;\n    line-height: @line-height-computed;\n  }\n\n  .@{bootstrap-switch-base}-handle-on,\n  .@{bootstrap-switch-base}-handle-off {\n    text-align: center;\n    z-index: 1;\n\n    &.@{bootstrap-switch-base}-primary {\n      color: #fff;\n      background: @btn-primary-bg;\n    }\n\n    &.@{bootstrap-switch-base}-info {\n      color: #fff;\n      background: @btn-info-bg;\n    }\n\n    &.@{bootstrap-switch-base}-success {\n      color: #fff;\n      background: @btn-success-bg;\n    }\n\n    &.@{bootstrap-switch-base}-warning {\n      background: @btn-warning-bg;\n      color: #fff;\n    }\n\n    &.@{bootstrap-switch-base}-danger {\n      color: #fff;\n      background: @btn-danger-bg;\n    }\n\n    &.@{bootstrap-switch-base}-default {\n      color: #000;\n      background: @gray-lighter;\n    }\n  }\n\n  .@{bootstrap-switch-base}-label {\n    text-align: center;\n    margin-top: -1px;\n    margin-bottom: -1px;\n    z-index: 100;\n    color: @btn-default-color;\n    background: @btn-default-bg;\n  }\n\n  span::before {\n    content: \"\\200b\";\n  }\n\n  .@{bootstrap-switch-base}-handle-on {\n    .border-left-radius(@border-radius-base - 1);\n  }\n\n  .@{bootstrap-switch-base}-handle-off {\n    .border-right-radius(@border-radius-base - 1);\n  }\n\n  input[type='radio'],\n  input[type='checkbox'] {\n    position: absolute !important;\n    top: 0;\n    left: 0;\n    margin: 0;\n    z-index: -1;\n    .opacity(0);\n    visibility: hidden;\n  }\n\n  &.@{bootstrap-switch-base}-mini {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-xs-vertical @padding-xs-horizontal;\n      font-size: @font-size-small;\n      line-height: @line-height-small;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-small {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-small-vertical @padding-small-horizontal;\n      font-size: @font-size-small;\n      line-height: @line-height-small;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-large {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-base-vertical @padding-large-horizontal;\n      font-size: @font-size-large;\n      line-height: @line-height-large;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-disabled,\n  &.@{bootstrap-switch-base}-readonly,\n  &.@{bootstrap-switch-base}-indeterminate {\n    cursor: default !important;\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      .opacity(.5);\n      cursor: default !important;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-animate {\n\n    .@{bootstrap-switch-base}-container {\n      .transition(margin-left .5s);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-inverse {\n\n    .@{bootstrap-switch-base}-handle-on {\n      .border-left-radius(0);\n      .border-right-radius(@border-radius-base - 1);\n    }\n\n    .@{bootstrap-switch-base}-handle-off {\n      .border-right-radius(0);\n      .border-left-radius(@border-radius-base - 1);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-focused {\n    @color-rgba: rgba(red(@input-border-focus), green(@input-border-focus), blue(@input-border-focus), .6);\n    border-color: @input-border-focus;\n    outline: 0;\n    .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n  }\n\n  &.@{bootstrap-switch-base}-on,\n  &.@{bootstrap-switch-base}-inverse.@{bootstrap-switch-base}-off {\n\n    .@{bootstrap-switch-base}-label {\n      .border-right-radius(@border-radius-base - 1);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-off,\n  &.@{bootstrap-switch-base}-inverse.@{bootstrap-switch-base}-on {\n\n\n    .@{bootstrap-switch-base}-label {\n      .border-left-radius(@border-radius-base - 1);\n    }\n  }\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n  border-top-right-radius: @radius;\n   border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n  border-bottom-right-radius: @radius;\n     border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n  border-bottom-right-radius: @radius;\n   border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n  border-bottom-left-radius: @radius;\n     border-top-left-radius: @radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n  opacity: @opacity;\n  // IE8 filter\n  @opacity-ie: (@opacity * 100);\n  filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","/*\n *  Bootstrap TouchSpin - v3.1.1\n *  A mobile and touch friendly input spinner component for Bootstrap 3.\n *  http://www.virtuosoft.eu/code/bootstrap-touchspin/\n *\n *  Made by István Ujj-Mészáros\n *  Under Apache License v2.0 License\n */\n\n.bootstrap-touchspin .input-group-btn-vertical {\n  position: relative;\n  white-space: nowrap;\n  width: 1%;\n  vertical-align: middle;\n  display: table-cell;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical > .btn {\n  display: block;\n  float: none;\n  width: 100%;\n  max-width: 100%;\n  padding: 8px 10px;\n  margin-left: -1px;\n  position: relative;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {\n  border-radius: 0;\n  border-top-right-radius: 4px;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {\n  margin-top: -2px;\n  border-radius: 0;\n  border-bottom-right-radius: 4px;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical i {\n  position: absolute;\n  top: 3px;\n  left: 5px;\n  font-size: 9px;\n  font-weight: normal;\n}\n","/*-- Chart --*/\n.c3 svg {\n  font: 10px sans-serif;\n  -webkit-tap-highlight-color: transparent; }\n\n.c3 path, .c3 line {\n  fill: none;\n  stroke: #000; }\n\n.c3 text {\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  user-select: none; }\n\n.c3-legend-item-tile,\n.c3-xgrid-focus,\n.c3-ygrid,\n.c3-event-rect,\n.c3-bars path {\n  shape-rendering: crispEdges; }\n\n.c3-chart-arc path {\n  stroke: #fff; }\n\n.c3-chart-arc text {\n  fill: #fff;\n  font-size: 13px; }\n\n/*-- Axis --*/\n/*-- Grid --*/\n.c3-grid line {\n  stroke: #aaa; }\n\n.c3-grid text {\n  fill: #aaa; }\n\n.c3-xgrid, .c3-ygrid {\n  stroke-dasharray: 3 3; }\n\n/*-- Text on Chart --*/\n.c3-text.c3-empty {\n  fill: #808080;\n  font-size: 2em; }\n\n/*-- Line --*/\n.c3-line {\n  stroke-width: 1px; }\n\n/*-- Point --*/\n.c3-circle._expanded_ {\n  stroke-width: 1px;\n  stroke: white; }\n\n.c3-selected-circle {\n  fill: white;\n  stroke-width: 2px; }\n\n/*-- Bar --*/\n.c3-bar {\n  stroke-width: 0; }\n\n.c3-bar._expanded_ {\n  fill-opacity: 1;\n  fill-opacity: 0.75; }\n\n/*-- Focus --*/\n.c3-target.c3-focused {\n  opacity: 1; }\n\n.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {\n  stroke-width: 2px; }\n\n.c3-target.c3-defocused {\n  opacity: 0.3 !important; }\n\n/*-- Region --*/\n.c3-region {\n  fill: steelblue;\n  fill-opacity: .1; }\n\n/*-- Brush --*/\n.c3-brush .extent {\n  fill-opacity: .1; }\n\n/*-- Select - Drag --*/\n/*-- Legend --*/\n.c3-legend-item {\n  font-size: 12px; }\n\n.c3-legend-item-hidden {\n  opacity: 0.15; }\n\n.c3-legend-background {\n  opacity: 0.75;\n  fill: white;\n  stroke: lightgray;\n  stroke-width: 1; }\n\n/*-- Title --*/\n.c3-title {\n  font: 14px sans-serif; }\n\n/*-- Tooltip --*/\n.c3-tooltip-container {\n  z-index: 10; }\n\n.c3-tooltip {\n  border-collapse: collapse;\n  border-spacing: 0;\n  background-color: #fff;\n  empty-cells: show;\n  -webkit-box-shadow: 7px 7px 12px -9px #777777;\n  -moz-box-shadow: 7px 7px 12px -9px #777777;\n  box-shadow: 7px 7px 12px -9px #777777;\n  opacity: 0.9; }\n\n.c3-tooltip tr {\n  border: 1px solid #CCC; }\n\n.c3-tooltip th {\n  background-color: #aaa;\n  font-size: 14px;\n  padding: 2px 5px;\n  text-align: left;\n  color: #FFF; }\n\n.c3-tooltip td {\n  font-size: 13px;\n  padding: 3px 6px;\n  background-color: #fff;\n  border-left: 1px dotted #999; }\n\n.c3-tooltip td > span {\n  display: inline-block;\n  width: 10px;\n  height: 10px;\n  margin-right: 6px; }\n\n.c3-tooltip td.value {\n  text-align: right; }\n\n/*-- Area --*/\n.c3-area {\n  stroke-width: 0;\n  opacity: 0.2; }\n\n/*-- Arc --*/\n.c3-chart-arcs-title {\n  dominant-baseline: middle;\n  font-size: 1.3em; }\n\n.c3-chart-arcs .c3-chart-arcs-background {\n  fill: #e0e0e0;\n  stroke: none; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-unit {\n  fill: #000;\n  font-size: 16px; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-max {\n  fill: #777; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-min {\n  fill: #777; }\n\n.c3-chart-arc .c3-gauge-value {\n  fill: #000;\n  /*  font-size: 28px !important;*/ }\n\n.c3-chart-arc.c3-target g path {\n  opacity: 1; }\n\n.c3-chart-arc.c3-target.c3-focused g path {\n  opacity: 1; }\n","/*!\n * Datetimepicker for Bootstrap 3\n * version : 4.17.47\n * https://github.com/Eonasdan/bootstrap-datetimepicker/\n */\n@bs-datetimepicker-timepicker-font-size: 1.2em;\n@bs-datetimepicker-active-bg: @btn-primary-bg;\n@bs-datetimepicker-active-color: @btn-primary-color;\n@bs-datetimepicker-border-radius: @border-radius-base;\n@bs-datetimepicker-btn-hover-bg: @gray-lighter;\n@bs-datetimepicker-disabled-color: @gray-light;\n@bs-datetimepicker-alternate-color: @gray-light;\n@bs-datetimepicker-secondary-border-color: #ccc;\n@bs-datetimepicker-secondary-border-color-rgba: rgba(0, 0, 0, 0.2);\n@bs-datetimepicker-primary-border-color: white;\n@bs-datetimepicker-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n\n.bootstrap-datetimepicker-widget {\n    list-style: none;\n\n    &.dropdown-menu {\n        display: block;\n        margin: 2px 0;\n        padding: 4px;\n        width: 19em;\n\n        &.timepicker-sbs {\n            @media (min-width: @screen-sm-min) {\n                width: 38em;\n            }\n\n            @media (min-width: @screen-md-min) {\n                width: 38em;\n            }\n\n            @media (min-width: @screen-lg-min) {\n                width: 38em;\n            }\n        }\n\n        &:before, &:after {\n            content: '';\n            display: inline-block;\n            position: absolute;\n        }\n\n        &.bottom {\n            &:before {\n                border-left: 7px solid transparent;\n                border-right: 7px solid transparent;\n                border-bottom: 7px solid @bs-datetimepicker-secondary-border-color;\n                border-bottom-color: @bs-datetimepicker-secondary-border-color-rgba;\n                top: -7px;\n                left: 7px;\n            }\n\n            &:after {\n                border-left: 6px solid transparent;\n                border-right: 6px solid transparent;\n                border-bottom: 6px solid @bs-datetimepicker-primary-border-color;\n                top: -6px;\n                left: 8px;\n            }\n        }\n\n        &.top {\n            &:before {\n                border-left: 7px solid transparent;\n                border-right: 7px solid transparent;\n                border-top: 7px solid @bs-datetimepicker-secondary-border-color;\n                border-top-color: @bs-datetimepicker-secondary-border-color-rgba;\n                bottom: -7px;\n                left: 6px;\n            }\n\n            &:after {\n                border-left: 6px solid transparent;\n                border-right: 6px solid transparent;\n                border-top: 6px solid @bs-datetimepicker-primary-border-color;\n                bottom: -6px;\n                left: 7px;\n            }\n        }\n\n        &.pull-right {\n            &:before {\n                left: auto;\n                right: 6px;\n            }\n\n            &:after {\n                left: auto;\n                right: 7px;\n            }\n        }\n    }\n\n    .list-unstyled {\n        margin: 0;\n    }\n\n    a[data-action] {\n        padding: 6px 0;\n    }\n\n    a[data-action]:active {\n        box-shadow: none;\n    }\n\n    .timepicker-hour, .timepicker-minute, .timepicker-second {\n        width: 54px;\n        font-weight: bold;\n        font-size: @bs-datetimepicker-timepicker-font-size;\n        margin: 0;\n    }\n\n    button[data-action] {\n        padding: 6px;\n    }\n\n    .btn[data-action=\"incrementHours\"]::after {\n        .sr-only();\n        content: \"Increment Hours\";\n    }\n\n    .btn[data-action=\"incrementMinutes\"]::after {\n        .sr-only();\n        content: \"Increment Minutes\";\n    }\n\n    .btn[data-action=\"decrementHours\"]::after {\n        .sr-only();\n        content: \"Decrement Hours\";\n    }\n\n    .btn[data-action=\"decrementMinutes\"]::after {\n        .sr-only();\n        content: \"Decrement Minutes\";\n    }\n\n    .btn[data-action=\"showHours\"]::after {\n        .sr-only();\n        content: \"Show Hours\";\n    }\n\n    .btn[data-action=\"showMinutes\"]::after {\n        .sr-only();\n        content: \"Show Minutes\";\n    }\n\n    .btn[data-action=\"togglePeriod\"]::after {\n        .sr-only();\n        content: \"Toggle AM/PM\";\n    }\n\n    .btn[data-action=\"clear\"]::after {\n        .sr-only();\n        content: \"Clear the picker\";\n    }\n\n    .btn[data-action=\"today\"]::after {\n        .sr-only();\n        content: \"Set the date to today\";\n    }\n\n    .picker-switch {\n        text-align: center;\n\n        &::after {\n            .sr-only();\n            content: \"Toggle Date and Time Screens\";\n        }\n\n        td {\n            padding: 0;\n            margin: 0;\n            height: auto;\n            width: auto;\n            line-height: inherit;\n\n            span {\n                line-height: 2.5;\n                height: 2.5em;\n                width: 100%;\n            }\n        }\n    }\n\n    table {\n        width: 100%;\n        margin: 0;\n\n\n        & td,\n        & th {\n            text-align: center;\n            border-radius: @bs-datetimepicker-border-radius;\n        }\n\n        & th {\n            height: 20px;\n            line-height: 20px;\n            width: 20px;\n\n            &.picker-switch {\n                width: 145px;\n            }\n\n            &.disabled,\n            &.disabled:hover {\n                background: none;\n                color: @bs-datetimepicker-disabled-color;\n                cursor: not-allowed;\n            }\n\n            &.prev::after {\n                .sr-only();\n                content: \"Previous Month\";\n            }\n\n            &.next::after {\n                .sr-only();\n                content: \"Next Month\";\n            }\n        }\n\n        & thead tr:first-child th {\n            cursor: pointer;\n\n            &:hover {\n                background: @bs-datetimepicker-btn-hover-bg;\n            }\n        }\n\n        & td {\n            height: 54px;\n            line-height: 54px;\n            width: 54px;\n\n            &.cw {\n                font-size: .8em;\n                height: 20px;\n                line-height: 20px;\n                color: @bs-datetimepicker-alternate-color;\n            }\n\n            &.day {\n                height: 20px;\n                line-height: 20px;\n                width: 20px;\n            }\n\n            &.day:hover,\n            &.hour:hover,\n            &.minute:hover,\n            &.second:hover {\n                background: @bs-datetimepicker-btn-hover-bg;\n                cursor: pointer;\n            }\n\n            &.old,\n            &.new {\n                color: @bs-datetimepicker-alternate-color;\n            }\n\n            &.today {\n                position: relative;\n\n                &:before {\n                    content: '';\n                    display: inline-block;\n                    border: solid transparent;\n                    border-width: 0 0 7px 7px;\n                    border-bottom-color: @bs-datetimepicker-active-bg;\n                    border-top-color: @bs-datetimepicker-secondary-border-color-rgba;\n                    position: absolute;\n                    bottom: 4px;\n                    right: 4px;\n                }\n            }\n\n            &.active,\n            &.active:hover {\n                background-color: @bs-datetimepicker-active-bg;\n                color: @bs-datetimepicker-active-color;\n                text-shadow: @bs-datetimepicker-text-shadow;\n            }\n\n            &.active.today:before {\n                border-bottom-color: #fff;\n            }\n\n            &.disabled,\n            &.disabled:hover {\n                background: none;\n                color: @bs-datetimepicker-disabled-color;\n                cursor: not-allowed;\n            }\n\n            span {\n                display: inline-block;\n                width: 54px;\n                height: 54px;\n                line-height: 54px;\n                margin: 2px 1.5px;\n                cursor: pointer;\n                border-radius: @bs-datetimepicker-border-radius;\n\n                &:hover {\n                    background: @bs-datetimepicker-btn-hover-bg;\n                }\n\n                &.active {\n                    background-color: @bs-datetimepicker-active-bg;\n                    color: @bs-datetimepicker-active-color;\n                    text-shadow: @bs-datetimepicker-text-shadow;\n                }\n\n                &.old {\n                    color: @bs-datetimepicker-alternate-color;\n                }\n\n                &.disabled,\n                &.disabled:hover {\n                    background: none;\n                    color: @bs-datetimepicker-disabled-color;\n                    cursor: not-allowed;\n                }\n            }\n        }\n    }\n\n    &.usetwentyfour {\n        td.hour {\n            height: 27px;\n            line-height: 27px;\n        }\n    }\n\t\n\t&.wider {\n\t\twidth: 21em;\n\t}\n\n\t& .datepicker-decades .decade {\n        line-height: 1.8em !important;\n    }\n}\n\n.input-group.date {\n    & .input-group-addon {\n        cursor: pointer;\n    }\n}\n","// Import bootstrap variables including default color palette and fonts\n@import \"bootstrap/less/variables.less\";\n\n// Import datepicker component\n@import \"_bootstrap-datetimepicker.less\";\n\n//this is here so the compiler doesn't complain about a missing bootstrap mixin\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n","//\n// Patternfly Mixins\n// --------------------------------------------------\n// PatternFly-specific mixins\n\n// Patternfly button variants.\n.button-variant(@color; @background; @background-image-start; @background-image-stop; @border) {\n  background-color: @background;\n  #gradient > .vertical(@background-image-start, @background-image-stop);\n  border-color: @border;\n  color: @color;\n\n  &:hover,\n  &:focus,\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-color: @background;\n    background-image: none;\n    border-color: @border;\n    color: @color;\n  }\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-image: none;\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: darken(@background, 5%);\n          border-color: darken(@border, 7%);\n    }\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &,\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      background-color: @background;\n      border-color: @border;\n    }\n  }\n}\n\n// SASS CONVERSION FIX.\n// Allows inclusion of sr-only rules in nested media queries where @extends .sr-only\n// will not work.\n.sr-only-pf() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n\n.tab-indicator(@background: @gray-light-pf, @left: 15px, @right: 15px) {\n  &:before {\n    background: @background;\n    bottom: -1px;\n    content: \"\";\n    display: block;\n    height: 2px;\n    left: @left;\n    position: absolute;\n    right: @right;\n  }\n}\n\n// Ellipse overflow text\n.text-overflow-pf {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  word-wrap: normal;\n}\n","//\n// About Modal\n// --------------------------------------------------\n\n.about-modal-pf {\n  background-color: @color-pf-black-900;\n  background-image: url(\"@{img-path}/@{modal-about-pf-bg-img}\");\n  background-position: right bottom;\n  background-repeat: no-repeat;\n  background-size: 216px auto;\n  @media (min-width: @screen-sm-min) {\n    background-size: auto;\n  }\n  .modal-body {\n    color: @color-pf-white;\n    padding-bottom: 16px;\n    padding-left: @grid-gutter-width;\n    padding-right: @grid-gutter-width;\n    @media (min-width: @screen-sm-min) {\n      padding-left: (@grid-gutter-width * 2);\n      padding-right: (@grid-gutter-width * 2);\n    }\n  }\n  .modal-header {\n    background-color: transparent;\n  }\n  .pficon-close {\n    color: @color-pf-white;\n  }\n}\n\n.product-versions-pf {\n  margin-bottom: 30px;\n  margin-top: 30px;\n  li {\n    strong {\n      margin-right: (@grid-gutter-width / 4);\n    }\n  }\n}\n\n.trademark-pf {\n  font-size: ceil((@font-size-base - 1));\n}\n","//\n// Application Launcher\n// --------------------------------------------------\n.applauncher-pf {\n\n  display: inline-block;\n  overflow: visible;\n\n  .applauncher-pf-title {\n    .sr-only-pf();\n  }\n\n  .dropdown-toggle {\n    &.disabled {\n      cursor: not-allowed;\n    }\n  }\n\n  &.open > .dropdown-menu {\n    display:flex;\n    flex-wrap:wrap;\n  }\n\n  .applauncher-pf-item {\n    width: 100%;\n  }\n\n  .applauncher-pf-link {\n    display:flex;\n    white-space: initial;\n    align-items: center;\n  }\n\n  &-block-list {\n    .applauncher-pf-item {\n      @media (min-width: @screen-sm-min) {\n        flex:0 0 50%;\n      }\n    }\n\n    .applauncher-pf-link {\n        flex-wrap: wrap;\n      @media (min-width: @screen-sm-min) {\n          flex-direction:column;\n          text-align: center;\n          padding:15px 0;\n          height: 100%;\n      }\n    }\n\n    .applauncher-pf-link-icon {\n      padding: 0;\n    }\n\n    .applauncher-pf-link-title {\n      margin-top: auto;\n    }\n  }//block-list\n\n  &:not(.applauncher-pf-block-list) {\n\n    .applauncher-pf-link {\n      @media (min-width: @screen-sm-min) {\n        padding:@applauncher-pf-dropdown-menu-padding;\n        &-icon {\n          flex:1 0 0;\n          text-align: left;\n        }\n        &-title{flex:3;}\n      }\n    }\n  }\n\n  .dropdown-menu {\n    padding: @applauncher-pf-dropdown-menu-padding;\n    min-width: @applauncher-pf-dropdown-menu-width;\n  }\n\n  .applauncher-pf-link {\n    border-style: solid;\n    border-width: @applauncher-pf-menu-link-border-width;\n    border-color: transparent;\n\n    &:hover {\n      background-color: @applauncher-pf-menu-link-background-color-hover;\n      border-color: @applauncher-pf-menu-link-border-color-hover;\n      color: @applauncher-pf-menu-link-color-hover;\n      text-decoration: none;\n\n      .box-shadow(0 0 2px 0 @applauncher-pf-menu-link-shadow);\n    }\n  }\n\n  .applauncher-pf-link-icon {\n    font-size: 1.2em;\n    text-align: center;\n    width: @applauncher-pf-menu-link-icon-width;\n\n    @media (min-width: @screen-sm-min) {\n      font-size: @applauncher-pf-menu-link-icon-font-size;\n    }\n  }\n\n}//.applauncher-pf\n\n.navbar-utility .applauncher-pf {\n    .dropdown-menu {\n      border-width: @applauncher-pf-menu-link-border-width !important;\n      @media (min-width: @screen-sm-min) {\n              margin-top: 3px;\n              right:0;\n            }\n    }//.dropdown-menu\n}\n\n.navbar-pf, .navbar-pf-alt {\n\n  .navbar-utility .applauncher-pf, .applauncher-pf {\n\n    &.open > a,\n        &.open > a:focus {\n          background-color: @navbar-pf-navbar-nav-active-bg-color;\n          color: @navbar-pf-active-color;\n\n          @media (min-width: @screen-sm-min) {\n            background-color: @navbar-pf-navbar-utility-open-bg-color;\n            border-color: @navbar-pf-navbar-utility-border-color;\n            color: @navbar-pf-navbar-utility-color;\n          }\n        }\n\n        &.open {\n          .dropdown-menu > li > a {\n            @media (max-width: @grid-float-breakpoint-max) {\n              padding-left: 20px;\n              .applauncher-pf-link-icon {\n                padding-right: 20px;\n              }\n            }\n          }\n        }\n\n        &.dropdown > .dropdown-toggle,\n            .dropdown-toggle {\n              background-color: inherit;\n              color: @applauncher-pf-menu-link-color;\n              text-align: left;\n              text-decoration: none;\n              border-width: 0;\n              display: block;\n              padding-left: 20px;\n\n              &.disabled {\n                color: @applauncher-pf-menu-link-color-disabled !important;\n              }\n\n              @media (min-width: @screen-sm-min) {\n                border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n                padding: @applauncher-pf-dropdown-toggle-padding;\n                line-height: 1;\n              }\n        }\n\n        .applauncher-pf-icon {\n              padding-right:@applauncher-pf-icon-padding-right;\n\n              @media (min-width: @screen-sm-min) {\n                padding: 0;\n              }\n            }\n\n        .applauncher-pf-title {\n          display: inline;\n          position: relative;\n        }\n\n\n        .applauncher-pf-link {\n          overflow: hidden;\n          width: 100%;\n\n          &:hover {\n            background-color: transparent;\n            border-color: transparent;\n            .box-shadow(none);\n          }\n        }\n\n        .applauncher-pf-link-title {\n          overflow: hidden;\n        }\n\n        @media (min-width: @screen-sm-min) {\n          //Apply mixin\n          .applauncher-pf;\n        }\n    }\n}//.navbar-pf .navbar-pf-alt ovrerides\n\n.navbar-iconic {\n\n  .navbar-utility .applauncher-pf,\n  .applauncher-pf {\n\n    &.dropdown > .dropdown-toggle,\n    .dropdown-toggle {\n\n      @media (min-width: @screen-sm-min) {\n        padding: 22px 10px;\n        line-height: inherit;\n      }\n    }\n  }\n}\n","//\n// Blank Slate\n// --------------------------------------------------\n\n.blank-slate-pf {\n  @media (min-width: @screen-sm-min) {\n    padding: (@jumbotron-padding * 2) (@jumbotron-padding * 2);\n  }\n  @media (min-width: @screen-md-min) {\n    padding: (@jumbotron-padding * 3) (@jumbotron-padding * 4);\n  }\n  background-color: @well-bg;\n  border: 1px solid @well-border;\n  border-radius: @border-radius-base;\n  margin-bottom: 20px;\n  padding: @jumbotron-padding;\n  text-align: center;\n  .blank-slate-pf-icon {\n    color: @gray-light;\n    font-size: (@font-size-h1 * 2.4);\n    line-height: (@font-size-h1 * 2.4);\n  }\n  .blank-slate-pf-main-action {\n    margin-top: @line-height-computed;\n  }\n  .blank-slate-pf-secondary-action {\n    margin-top: @line-height-computed;\n  }\n  button {\n    margin-right: 5px;\n    &:last-of-type {\n      margin-right: 0;\n    }\n  }\n}\n","//\n// Bootstrap-Combobox\n// --------------------------------------------------\n\n.combobox-container {\n  &.combobox-selected .glyphicon-remove {\n    display: inline-block;\n  }\n  .caret {\n    margin-left: 0;\n  }\n  .combobox::-ms-clear {\n    display: none;\n  }\n  .dropdown-menu {\n    margin-top: -1px;\n    width: 100%;\n  }\n  .glyphicon-remove {\n    display: none;\n    top: auto;\n    width: 12px;\n    &:before {\n      content: \"\\e60b\";\n      font-family: @icon-font-name-pf;\n    }\n  }\n  .input-group-addon {\n    .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n    position: relative; // IE8\n    &:active {\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n    }\n  }\n}\n","//\n// Variables\n// --------------------------------------------------\n// Bootstrap overrides and PatternFly-specific variables\n\n// Sass compass/sprockets asset helper flag\n// ----------------------\n@pf-sass-asset-helper:                                              false;\n\n// PatternFly-specific\n// -------------------\n@import \"color-variables.less\";\n\n@applauncher-pf-dropdown-menu-border-width:                         1px;\n@applauncher-pf-dropdown-menu-padding:                              9px;\n@applauncher-pf-dropdown-menu-width:                                220px;\n@applauncher-pf-dropdown-toggle-padding:                            7px 10px;\n@applauncher-pf-icon-padding-right:                                 4px;\n@applauncher-pf-menu-link-border-color:                             @color-pf-white;\n@applauncher-pf-menu-link-border-color-hover:                       @color-pf-black-400;\n@applauncher-pf-menu-link-border-width:                             1px;\n@applauncher-pf-menu-link-color:                                    @color-pf-black-300;\n@applauncher-pf-menu-link-color-disabled:                           @color-pf-black-500;\n@applauncher-pf-menu-link-color-hover:                              @color-pf-blue-400;\n@applauncher-pf-menu-link-padding:                                  7px 10px;\n@applauncher-pf-menu-link-padding-block-list:                       15px 10px;\n@applauncher-pf-menu-link-background-color-hover:                   @color-pf-black-150;\n@applauncher-pf-menu-link-shadow:                                   @color-pf-black-300;\n@applauncher-pf-menu-link-icon-font-size:                           2em;\n@applauncher-pf-menu-link-icon-width:                               ((9 * @applauncher-pf-menu-link-icon-font-size) / 14); //Numbers to imitate fa-fw class\n@bootstrap-switch-handle-default-bg-color:                          @color-pf-black-100;\n@bootstrap-treeview-highlight-color:                                @color-pf-blue-300;\n@btn-default-bg-img-start:                                          @color-pf-black-100;\n@btn-default-bg-img-stop:                                           @color-pf-black-200;\n@btn-xs-font-weight:                                                400;\n@card-pf-accented-border-top-color:                                 @color-pf-blue-300;\n@card-pf-aggregate-status-title-icon-color:                         @color-pf-black-900;\n@card-pf-bg-color:                                                  @color-pf-white;\n@card-pf-border-color:                                              @color-pf-black-300;\n@card-pf-border-top-color:                                          transparent;\n@card-pf-container-bg-color:                                        @color-pf-black-150;\n@card-pf-footer-bg-color:                                           @color-pf-black-100;\n@card-pf-selected-border-color:                                     @color-pf-blue-300;\n@contextselector-pf-margin-left:                                    10px;\n@contextselector-pf-nav-item-iconic-padding:                        23px 20px 18px 10px;\n@contextselector-title-width-mobile:                                170px;\n@contextselector-title-width-desktop:                               210px;\n@contextselector-pf-form-group-margin:                              0 5px 5px 5px;\n@contextselector-pf-list-max-height:                                200px;\n@contextselector-pf-list-li-padding:                                1px 10px;\n@contextselector-pf-list-li-border-width:                           1px 0;\n@donut-font-size-big:                                               30px;\n@drawer-pf-top-vertical:                                            58px;\n@drawer-pf-top-horizontal:                                          26px;\n@dropdown-divider-margin:                                           4px 1px;\n@dropdown-link-active-border-color:                                 @color-pf-blue;\n@dropdown-link-hover-border-color:                                  @color-pf-blue-100;\n@dropdown-link-focus-color:                                         @color-pf-white;\n@flyout-transition-pf:                                              all 200ms cubic-bezier(.35, 0, .25, 1);\n@font-family-monospace:                                             Menlo, Monaco, Consolas, monospace;\n@font-path:                                                         \"../fonts\";\n@footer-pf-bg-color:                                                @color-pf-black;\n@footer-pf-padding-left:                                            25px;\n@footer-pf-padding-top:                                             10px;\n@footer-pf-height:                                                  37px;\n@gray-light-pf:                                                     @color-pf-black-400;\n@gray-pf:                                                           @color-pf-black-700;\n@icon-font-name-fa:                                                 \"FontAwesome\";\n@icon-font-name-pf:                                                 \"PatternFlyIcons-webfont\";\n@icon-prefix:                                                       pficon;\n@img-bg-login:                                                      \"bg-login.jpg\";\n@img-path:                                                          \"../img\";\n@img-spinner:                                                       \"spinner.gif\";\n@img-spinner-inverse:                                               \"spinner-inverse.gif\";\n@img-spinner-inverse-lg:                                            \"spinner-inverse-lg.gif\";\n@img-spinner-inverse-sm:                                            \"spinner-inverse-sm.gif\";\n@img-spinner-inverse-xs:                                            \"spinner-inverse-xs.gif\";\n@img-spinner-lg:                                                    \"spinner-lg.gif\";\n@img-spinner-sm:                                                    \"spinner-sm.gif\";\n@img-spinner-xs:                                                    \"spinner-xs.gif\";\n@input-border-hover:                                                @color-pf-blue-200;\n@input-border-focus:                                                @color-pf-blue-400;\n@list-pf-border-color:                                              @color-pf-black-200;\n@list-pf-active-border-color:                                       @color-pf-black-400;\n@list-pf-header-background-color:                                   @color-pf-black-200;\n@list-pf-hover-background-color:                                    @color-pf-blue-25;\n@list-pf-main-content-width:                                        70%; // sets the proportional width of the main content vs the additional content\n@list-pf-padding:                                                   20px;\n@list-view-accented-border:                                         @color-pf-blue-300;\n@list-view-active-bg:                                               @color-pf-blue-50;\n@list-view-active-border:                                           @color-pf-black-400;\n@list-view-divider:                                                 @color-pf-black-300;\n@list-view-hover-bg:                                                @color-pf-blue-25;\n@list-group-top-border:                                             @color-pf-black-200;\n@login-bg-color:                                                    @color-pf-black;\n@login-container-bg-color-rgba:                                     fade(@color-pf-white, 5.5%);\n@modal-about-pf-bg-img:                                             \"bg-modal-about-pf.png\";\n@modal-title-padding-horizontal:                                    18px;\n@modal-title-padding-vertical:                                      10px;\n@navbar-pf-active-color:                                            @color-pf-black-150;\n@navbar-pf-alt-active-color:                                        @color-pf-white;\n@navbar-pf-alt-bg-color:                                            @color-pf-black;\n@navbar-pf-alt-bg-img:                                              \"bg-navbar-pf-alt.svg\";\n@navbar-pf-bg-color:                                                @color-pf-black;\n@navbar-pf-border-color:                                            @color-pf-blue-300;\n@navbar-pf-color:                                                   @color-pf-black-300;\n@navbar-pf-height:                                                  60px;\n@navbar-pf-icon-bar-bg-color:                                       @color-pf-white;\n@navbar-pf-navbar-navbar-brand-min-width:                           270px;\n@navbar-pf-navbar-navbar-brand-padding:                             8px 0 7px;\n@navbar-pf-navbar-navbar-persistent-bg-color:                       @color-pf-black-150;\n@navbar-pf-navbar-navbar-persistent-border-color:                   @color-pf-black-300;\n@navbar-pf-vertical-active-color:                                   @color-pf-white;\n@navbar-pf-vertical-bg-color:                                       #1d1d1d;\n@navbar-pf-vertical-bg-repeat:                                      no-repeat;\n@navbar-pf-vertical-bg-size:                                        auto 100%;\n@navbar-pf-vertical-border-color:                                   @color-pf-blue-300;\n@navbar-pf-vertical-border-style:                                   solid;\n@navbar-pf-vertical-border-width:                                   2px;\n@navbar-pf-vertical-color:                                          @color-pf-black-300;\n@navbar-pf-vertical-height:                                         60px;\n@navbar-pf-vertical-icon-bar-bg-color:                              @color-pf-white;\n@navbar-pf-vertical-navbar-brand-color:                             @color-pf-white;\n@navbar-pf-vertical-navbar-brand-icon-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-margin:                            0 0 0 25px;\n@navbar-pf-vertical-navbar-brand-min-height:                        35px;\n@navbar-pf-vertical-navbar-brand-max-height:                        35px;\n@navbar-pf-vertical-navbar-brand-line-height:                       34px;\n@navbar-pf-vertical-navbar-brand-name-breakpoint:                   480px;\n@navbar-pf-vertical-navbar-brand-name-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-padding:                           11px 0 12px;\n@navbar-pf-vertical-navbar-toggle-margin:                           13px 15px;\n@navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg:                @color-pf-white;\n@navbar-pf-vertical-nav-item-iconic-padding:                        21px 12px;\n@nav-pf-container-transition-period:                                250ms;\n@nav-pf-menu-transition-period:                                     100ms;\n@nav-pf-vertical-active-color:                                      @color-pf-white;\n@nav-pf-vertical-active-before-color:                               @color-pf-blue-300;\n@nav-pf-vertical-active-bg-color:                                   @color-pf-black-800;\n@nav-pf-vertical-active-border-color:                               @color-pf-black-900;\n@nav-pf-vertical-active-font-weight:                                600;\n@nav-pf-vertical-active-icon-color:                                 @color-pf-blue-300;\n@nav-pf-vertical-badge-color:                                       @color-pf-white;\n@nav-pf-vertical-badge-bg-color:                                    @color-pf-black-900;\n@nav-pf-vertical-bg-color:                                          @color-pf-black-900;\n@nav-pf-vertical-border-color:                                      @color-pf-black-900;\n@nav-pf-vertical-collapsed-width:                                   75px;\n@nav-pf-vertical-color:                                             @color-pf-black-300;\n@nav-pf-vertical-font-weight:                                       400;\n@nav-pf-vertical-icon-color:                                        @color-pf-black-600;\n@nav-pf-vertical-icon-width:                                        24px;\n@nav-pf-vertical-item-border-color:                                 @color-pf-black;\n@nav-pf-vertical-link-height:                                       63px;\n@nav-pf-vertical-link-padding:                                      17px 20px 17px 25px;\n@nav-pf-vertical-secondary-active-color:                            @color-pf-white;\n@nav-pf-vertical-secondary-active-bg-color:                         @color-pf-black-700;\n@nav-pf-vertical-secondary-active-icon-color:                       @color-pf-blue-300;\n@nav-pf-vertical-secondary-badge-color:                             @color-pf-white;\n@nav-pf-vertical-secondary-badge-bg-color:                          @color-pf-black-900;\n@nav-pf-vertical-secondary-border-color:                            @color-pf-blue-300;\n@nav-pf-vertical-secondary-color:                                   @color-pf-white;\n@nav-pf-vertical-secondary-header-margin:                           18px 20px 10px 20px;\n@nav-pf-vertical-secondary-indicator-color:                         @color-pf-black-600;\n@nav-pf-vertical-secondary-indicator-padding:                       14px 0;\n@nav-pf-vertical-secondary-item-color:                              @color-pf-black-300;\n@nav-pf-vertical-secondary-item-padding:                            0 0 5px 0;\n@nav-pf-vertical-secondary-link-height:                             63px;\n@nav-pf-vertical-secondary-link-padding:                            4px 0 2px 0;\n@nav-pf-vertical-secondary-list-header-margin:                      30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-active-color:                             @color-pf-white;\n@nav-pf-vertical-tertiary-active-bg-color:                          @color-pf-black-800;\n@nav-pf-vertical-tertiary-indicator-padding:                        0;\n@nav-pf-vertical-tertiary-bg-color:                                 @color-pf-black-700;\n@nav-pf-vertical-tertiary-color:                                    #fff;\n@nav-pf-vertical-tertiary-header-margin:                            18px 20px 10px 20px;\n@nav-pf-vertical-tertiary-list-header-margin:                       30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-item-padding:                             0 0 5px 0;\n@nav-pf-vertical-tertiary-item-color:                               @color-pf-black-300;\n@nav-pf-vertical-tertiary-link-margin:                              0 20px 0 20px;\n@nav-pf-vertical-tertiary-link-padding:                             4px 0 2px 0;\n@nav-pf-vertical-tertiary-badge-color:                              @color-pf-white;\n@nav-pf-vertical-tertiary-badge-bg-color:                           @color-pf-black-900;\n@nav-pf-vertical-width:                                             200px;\n@toast-notification-top:                                            80px;\n@pagination-padding-small-vertical:                                 0;\n@panel-default-border-color:                                        @color-pf-black-400;\n@pficon-var-add-circle-o:                                           \"\\e61b\";\n@pficon-var-applications:                                           \"\\e936\";\n@pficon-var-arrow:                                                  \"\\e929\";\n@pficon-var-asleep:                                                 \"\\e925\";\n@pficon-var-automation:                                             \"\\e937\";\n@pficon-var-blueprint:                                              \"\\e915\";\n@pficon-var-build:                                                  \"\\e902\";\n@pficon-var-builder-image:                                          \"\\e800\";\n@pficon-var-bundle:                                                 \"\\e918\";\n@pficon-var-catalog:                                                \"\\e939\";\n@pficon-var-chat:                                                   \"\\e928\";\n@pficon-var-close:                                                  \"\\e60b\";\n@pficon-var-cloud-security:                                         \"\\e903\";\n@pficon-var-cloud-tenant:                                           \"\\e904\";\n@pficon-var-cluster:                                                \"\\e620\";\n@pficon-var-connected:                                              \"\\e938\";\n@pficon-var-container-node:                                         \"\\e621\";\n@pficon-var-cpu:                                                    \"\\e927\";\n@pficon-var-degraded:                                               \"\\e91b\";\n@pficon-var-delete:                                                 \"\\e611\";\n@pficon-var-disconnected:                                           \"\\e93c\";\n@pficon-var-domain:                                                 \"\\e919\";\n@pficon-var-edit:                                                   \"\\e60a\";\n@pficon-var-enhancement:                                            \"\\e93a\";\n@pficon-var-enterprise:                                             \"\\e906\";\n@pficon-var-equalizer:                                              \"\\e610\";\n@pficon-var-error-circle-o:                                         \"\\e926\";\n@pficon-var-export:                                                 \"\\e616\";\n@pficon-var-flag:                                                   \"\\e603\";\n@pficon-var-flavor:                                                 \"\\e907\";\n@pficon-var-filter:                                                 \"\\e943\";\n@pficon-var-folder-close:                                           \"\\e607\";\n@pficon-var-folder-open:                                            \"\\e606\";\n@pficon-var-help:                                                   \"\\e605\";\n@pficon-var-history:                                                \"\\e93b\";\n@pficon-var-home:                                                   \"\\e618\";\n@pficon-var-image:                                                  \"\\e61f\";\n@pficon-var-import:                                                 \"\\e615\";\n@pficon-var-info:                                                   \"\\e92b\";\n@pficon-var-infrastructure:                                         \"\\e93d\";\n@pficon-var-integration:                                            \"\\e948\";\n@pficon-var-in-progress:                                            \"\\e92c\";\n@pficon-var-key:                                                    \"\\e924\";\n@pficon-var-kubernetes:                                             \"\\e627\";\n@pficon-var-locked:                                                 \"\\e923\";\n@pficon-var-maintenance:                                            \"\\e92d\";\n@pficon-var-memory:                                                 \"\\e908\";\n@pficon-var-messages:                                               \"\\e603\";\n@pficon-var-middleware:                                             \"\\e917\";\n@pficon-var-migration:                                              \"\\e92e\";\n@pficon-var-monitoring:                                             \"\\e944\";\n@pficon-var-network:                                                \"\\e909\";\n@pficon-var-network-range:                                          \"\\e94a\";\n@pficon-var-off:                                                    \"\\e92f\";\n@pficon-var-ok:                                                     \"\\e602\";\n@pficon-var-on:                                                     \"\\e931\";\n@pficon-var-on-running:                                             \"\\e930\";\n@pficon-var-openshift:                                              \"\\e626\";\n@pficon-var-optimize:                                               \"\\e93e\";\n@pficon-var-orders:                                                 \"\\e93f\";\n@pficon-var-paused:                                                 \"\\e932\";\n@pficon-var-pending:                                                \"\\e933\";\n@pficon-var-plugged:                                                \"\\e940\";\n@pficon-var-port:                                                   \"\\e945\";\n@pficon-var-private:                                                \"\\e914\";\n@pficon-var-print:                                                  \"\\e612\";\n@pficon-var-process-automation:                                     \"\\e949\";\n@pficon-var-project:                                                \"\\e905\";\n@pficon-var-rebalance:                                              \"\\e91c\";\n@pficon-var-rebooting:                                              \"\\e934\";\n@pficon-var-regions:                                                \"\\e90a\";\n@pficon-var-registry:                                               \"\\e623\";\n@pficon-var-remove:                                                 \"\\e611\";\n@pficon-var-replicator:                                             \"\\e624\";\n@pficon-var-repository:                                             \"\\e90b\";\n@pficon-var-resource-pool:                                          \"\\e90c\";\n@pficon-var-resources-almost-empty:                                 \"\\e91d\";\n@pficon-var-resources-almost-full:                                  \"\\e912\";\n@pficon-var-resources-full:                                         \"\\e92a\";\n@pficon-var-restart:                                                \"\\e617\";\n@pficon-var-route:                                                  \"\\e625\";\n@pficon-var-running:                                                \"\\e614\";\n@pficon-var-save:                                                   \"\\e601\";\n@pficon-var-satellite:                                              \"\\e94b\";\n@pficon-var-screen:                                                 \"\\e600\";\n@pficon-var-search:                                                 \"\\e921\";\n@pficon-var-security:                                               \"\\e946\";\n@pficon-var-server:                                                 \"\\e90d\";\n@pficon-var-server-group:                                           \"\\e91a\";\n@pficon-var-service:                                                \"\\e61e\";\n@pficon-var-service-catalog:                                        \"\\e941\";\n@pficon-var-services:                                               \"\\e947\";\n@pficon-var-settings:                                               \"\\e610\";\n@pficon-var-spinner:                                                \"\\e614\";\n@pficon-var-spinner2:                                               \"\\e613\";\n@pficon-var-storage-domain:                                         \"\\e90e\";\n@pficon-var-template:                                               \"\\e94c\";\n@pficon-var-tenant:                                                 \"\\e916\";\n@pficon-var-thumb-tack-o:                                           \"\\e920\";\n@pficon-var-topology:                                               \"\\e608\";\n@pficon-var-trend-down:                                             \"\\e900\";\n@pficon-var-trend-up:                                               \"\\e901\";\n@pficon-var-unlocked:                                               \"\\e922\";\n@pficon-var-unplugged:                                              \"\\e942\";\n@pficon-var-unknown:                                                \"\\e935\";\n@pficon-var-user:                                                   \"\\e91e\";\n@pficon-var-users:                                                  \"\\e91f\";\n@pficon-var-vcenter:                                                \"\\e94d\";\n@pficon-var-virtual-machine:                                        \"\\e90f\";\n@pficon-var-volume:                                                 \"\\e910\";\n@pficon-var-warning-triangle-o:                                     \"\\e913\";\n@pficon-var-zone:                                                   \"\\e911\";\n@progress-description-label-width:                                  85px;\n@sidebar-pf-bg:                                                     @color-pf-black-100;\n@sidebar-pf-border-color:                                           @color-pf-black-300;\n@skiplink-pf-top:                                                   12px;\n@skiplink-pf-left:                                                  10px;\n@table-border-hover:                                                @color-pf-blue-200;\n@table-cell-padding-bottom:                                         3px;\n@table-cell-padding-top:                                            2px;\n// Reference variables declared in block above\n@bootstrap-switch-bg-color-start:                                   @btn-default-bg-img-start;\n@bootstrap-switch-bg-color-stop:                                    @btn-default-bg-img-stop;\n@fa-font-path:                                                      @font-path;\n@navbar-pf-navbar-header-border-color:                              lighten(@navbar-pf-bg-color, 15%);\n@navbar-pf-navbar-nav-active-active-bg-color:                       lighten(@navbar-pf-bg-color, 8%);\n@navbar-pf-navbar-nav-active-active-open-bg-color:                  lighten(@navbar-pf-bg-color, 11%);\n@navbar-pf-navbar-nav-active-bg-color:                              lighten(@navbar-pf-bg-color, 12.5%);\n@navbar-pf-navbar-primary-bg-color-start:                           lighten(@navbar-pf-bg-color, 10%); // #474C50\n@navbar-pf-navbar-primary-bg-color-stop:                            @navbar-pf-bg-color; // #383F43\n@navbar-pf-navbar-utility-border-color:                             lighten(@navbar-pf-bg-color, 15.5%);\n@navbar-pf-navbar-utility-color:                                    @navbar-pf-color;\n@navbar-pf-navbar-utility-hover-bg-color:                           lighten(@navbar-pf-bg-color, 12.5%);\n@nav-pf-vertical-secondary-bg-color:                                @nav-pf-vertical-active-bg-color;\n@nav-tabs-color:                                                    @gray-pf;\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-bg-color-start:                   lighten(@navbar-pf-navbar-primary-bg-color-start, 8.5%);\n@navbar-pf-navbar-primary-context-bg-color-stop:                    lighten(@navbar-pf-navbar-primary-bg-color-stop, 11%);\n@navbar-pf-navbar-primary-hover-bg-color-start:                     lighten(@navbar-pf-navbar-primary-bg-color-start, 10%);\n@navbar-pf-navbar-primary-hover-bg-color-stop:                      lighten(@navbar-pf-navbar-primary-bg-color-stop, 10%);\n@navbar-pf-navbar-primary-hover-border-color:                       lighten(@navbar-pf-navbar-header-border-color, 20%);\n@navbar-pf-navbar-primary-context-border-color:                     lighten(@navbar-pf-navbar-header-border-color, 8%);\n@navbar-pf-navbar-primary-context-border-top-color:                 lighten(@navbar-pf-navbar-header-border-color, 7%);\n@navbar-pf-navbar-utility-hover-border-color:                       lighten(@navbar-pf-navbar-utility-border-color, 5%);\n@navbar-pf-navbar-utility-open-bg-color:                            lighten(@navbar-pf-navbar-utility-hover-bg-color, 7.5%);\n@navbar-pf-navbar-utility-open-border-color:                        lighten(@navbar-pf-navbar-utility-hover-border-color, 5%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-active-bg-color-start:                    lighten(@navbar-pf-navbar-primary-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-active-bg-color-stop:                     lighten(@navbar-pf-navbar-primary-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-active-border-color:                      lighten(@navbar-pf-navbar-primary-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-start:             lighten(@navbar-pf-navbar-primary-context-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-stop:              lighten(@navbar-pf-navbar-primary-context-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-hover-border-color:               lighten(@navbar-pf-navbar-primary-context-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-border-top-color:           lighten(@navbar-pf-navbar-primary-context-border-top-color, 6%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-active-bg-color-start:            lighten(@navbar-pf-navbar-primary-context-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-active-bg-color-stop:             lighten(@navbar-pf-navbar-primary-context-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-active-border-color:              lighten(@navbar-pf-navbar-primary-context-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-active-border-top-color:          lighten(@navbar-pf-navbar-primary-context-hover-border-top-color, 6%);\n// References variable declared in block above\n@navbar-pf-navbar-primary-context-active-border-right-color:        @navbar-pf-navbar-primary-context-active-border-color;\n@slider-line-height:                                                16px;\n@slider-horizontal-width:                                           100%;\n@slider-primary-top:                                                @color-pf-black-100;\n@slider-primary-bottom:                                             @color-pf-black-200;\n@slider-secondary-top:                                              @color-pf-blue-400;\n@slider-secondary-bottom:                                           @color-pf-blue-300;\n\n// Alternate navigation layout - Kept for backwards compatibility\n// --------------------------------------------------------------\n@footer-pf-alt-bg-color:                                            @footer-pf-bg-color;\n@footer-pf-alt-padding-left:                                        @footer-pf-padding-left;\n@footer-pf-alt-padding-top:                                         @footer-pf-padding-top;\n@footer-pf-alt-height:                                              @footer-pf-height;\n@img-path-alt:                                                      @img-path;\n@nav-pf-vertical-alt-active-color:                                  @color-pf-blue-300;\n@nav-pf-vertical-alt-bg-color:                                      @color-pf-white;\n@nav-pf-vertical-alt-badge-color:                                   @color-pf-white;\n@nav-pf-vertical-alt-border-color:                                  @sidebar-pf-border-color;\n@nav-pf-vertical-alt-collapsed-width:                               75px;\n@nav-pf-vertical-alt-link-height:                                   63px;\n@nav-pf-vertical-alt-link-padding:                                  17px 20px 17px 25px;\n@nav-pf-vertical-alt-width:                                         250px;\n@navbar-pf-alt-bg-repeat:                                           @navbar-pf-vertical-bg-repeat;\n@navbar-pf-alt-bg-size:                                             @navbar-pf-vertical-bg-size;\n@navbar-pf-alt-border-color:                                        @navbar-pf-vertical-border-color;\n@navbar-pf-alt-border-style:                                        @navbar-pf-vertical-border-style;\n@navbar-pf-alt-border-width:                                        @navbar-pf-vertical-border-width;\n@navbar-pf-alt-color:                                               @navbar-pf-vertical-color;\n@navbar-pf-alt-height:                                              @navbar-pf-vertical-height;\n@navbar-pf-alt-nav-item-iconic-padding:                             @navbar-pf-vertical-nav-item-iconic-padding;\n@navbar-pf-alt-navbar-brand-color:                                  @navbar-pf-vertical-navbar-brand-color;\n@navbar-pf-alt-navbar-brand-icon-margin:                            @navbar-pf-vertical-navbar-brand-icon-margin;\n@navbar-pf-alt-navbar-brand-margin:                                 @navbar-pf-vertical-navbar-brand-margin;\n@navbar-pf-alt-navbar-brand-min-height:                             @navbar-pf-vertical-navbar-brand-min-height;\n@navbar-pf-alt-navbar-brand-name-breakpoint:                        @navbar-pf-vertical-navbar-brand-name-breakpoint;\n@navbar-pf-alt-navbar-brand-name-margin:                            @navbar-pf-vertical-navbar-brand-name-margin;\n@navbar-pf-alt-navbar-brand-padding:                                @navbar-pf-vertical-navbar-brand-padding;\n@navbar-pf-alt-navbar-toggle-margin:                                @navbar-pf-vertical-navbar-toggle-margin;\n@navbar-pf-alt-navbar-toggle-icon-bar-hover-bg:                     @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n\n// Login page\n// -------------------\n@login-pf-brand-margin-top:                                               20px;\n@login-pf-brand-desktop-margin-top:                                       62px;\n@login-pf-page-header-margin-bottom:                                      20px;\n@login-pf-page-header-desktop-margin-bottom:                              40px;\n@login-pf-page-header-paragraph-margin-top:                               20px;\n@login-pf-card-pf-padding:                                 10px 20px 30px 20px;\n@login-pf-card-pf-desktop-padding:                         20px 40px 30px 40px;\n@login-pf-card-pf-max-width:                                             840px;\n@login-pf-checkbox-label-margin-bottom:                                   15px;\n@login-pf-dropdown-toggle-padding-right:                                  15px;\n@login-pf-btn-primary-margin-top:                                         40px;\n@login-pf-header-margin-bottom:                                           20px;\n@login-pf-header-desktop-margin-bottom:                                   30px;\n@login-pf-signup-margin-top:                                              40px;\n@login-pf-signup-a-margin-left:                                           10px;\n@login-pf-page-footer-links-margin-top:                                   60px;\n@login-pf-page-footer-links-li-margin-right:                              20px;\n@login-pf-page-footer-sso-margin-top:                                     40px;\n@login-pf-page-footer-sso-logos-li-margin:                                5px;\n@login-pf-page-accounts-margin:                                           20px;\n@login-pf-accounts-section-heading-margin-top:                            30px;\n@login-pf-accounts-section-heading-margin-bottom:                         30px;\n@login-pf-accounts-section-heading-desktop-margin-bottom:                 15px;\n@login-pf-accounts-section-heading-desktop-padding-right:                 40px;\n@login-pf-accounts-section-heading-desktop-padding-left:                  40px;\n@login-pf-accounts-link-margin-bottom:                                    15px;\n@login-pf-accounts-link-img-margin-right:                                 10px;\n@login-pf-accounts-link-a-padding:                                        7px;\n@login-pf-accounts-more-caret-margin-left:                                5px;\n@login-pf-social-margin:                                           40px 0 0 0;\n\n\n// Bootstrap overrides\n// -------------------\n@alert-info-border:                                                 @color-pf-black-500;\n@alert-link-font-weight:                                            500;\n@alert-padding:                                                     11px;\n@body-bg:                                                           @color-pf-white;\n@border-radius-base:                                                1px;\n@brand-danger:                                                      @color-pf-red;\n@brand-info:                                                        @color-pf-blue-500;\n@brand-primary:                                                     @color-pf-blue-300;\n@brand-success:                                                     @color-pf-green;\n@brand-warning:                                                     @color-pf-orange;\n@breadcrumb-bg:                                                     transparent;\n@breadcrumb-separator:                                              \"\\f105\";\n@bs-datetimepicker-timepicker-font-size:                            1em;\n@bs-datetimepicker-btn-hover-bg:                                    transparent;\n@btn-danger-bg:                                                     @color-pf-red-200;\n@btn-danger-border:                                                 @color-pf-red-300;\n@btn-default-border:                                                @color-pf-black-400;\n@btn-font-weight:                                                   600;\n@btn-primary-bg:                                                    @color-pf-blue;\n@btn-primary-border:                                                @color-pf-blue-500;\n@caret-width-base:                                                  0;\n@code-bg:                                                           @color-pf-blue-50;\n@dropdown-border:                                                   @color-pf-black-400;\n@dropdown-divider-bg:                                               @color-pf-black-200;\n@dropdown-link-active-color:                                        @color-pf-white;\n@dropdown-link-hover-bg:                                            @color-pf-blue-50;\n@font-family-base:                                                  \"Open Sans\", Helvetica, Arial, sans-serif;\n@font-size-base:                                                    12px;\n@gray-dark:                                                         lighten(@color-pf-black, 20%);   // #333\n@gray-darker:                                                       lighten(@color-pf-black, 13.5%); // #222\n@gray-light:                                                        lighten(@color-pf-black, 60%);   // #999\n@gray-lighter:                                                      lighten(@color-pf-black, 93.5%); // #eee\n@grid-gutter-width:                                                 40px;\n@icon-font-path:                                                    \"../fonts/\";\n@input-bg-disabled:                                                 @color-pf-black-150;\n@input-border:                                                      @color-pf-black-400;\n@line-height-base:                                                  1.66666667; // 20/12\n@link-color:                                                        @color-pf-blue;\n@list-group-border:                                                 @color-pf-black-150;\n@list-group-border-radius:                                          0;\n@list-group-hover-bg:                                               @color-pf-blue-50;\n@link-hover-color:                                                  @color-pf-blue-500;\n@nav-tabs-border-color:                                             @color-pf-black-200;\n@nav-tabs-link-hover-border-color:                                  transparent;\n@padding-large-horizontal:                                          10px;\n@padding-base-horizontal:                                           6px;\n@padding-base-vertical:                                             2px;\n@padding-large-vertical:                                            6px;\n@pager-border-radius:                                               0;\n@pager-disabled-color:                                              @color-pf-black-500;\n@pagination-bg:                                                     @color-pf-black-150;\n@pagination-border:                                                 @color-pf-black-400;\n@pagination-hover-bg:                                               @color-pf-black-200;\n@panel-inner-border:                                                @color-pf-black-300;\n@popover-arrow-color:                                               @color-pf-white;\n@popover-arrow-outer-color:                                         @color-pf-black-400;\n@popover-border-color:                                              @color-pf-black-400;\n@popover-max-width:                                                 220px;\n@popover-title-bg:                                                  @color-pf-black-150;\n@pre-bg:                                                            @color-pf-black-100;\n@progress-bg:                                                       @color-pf-black-200;\n@table-bg-accent:                                                   @color-pf-black-150;\n@table-bg-hover:                                                    @color-pf-blue-50;\n@table-border-color:                                                @color-pf-black-300;\n@table-cell-padding:                                                10px;\n@tooltip-arrow-width:                                               8px;\n@tooltip-bg:                                                        @color-pf-black-800;\n@tooltip-max-width:                                                 220px;\n// Reference variables declared in block above\n@alert-danger-bg:                                                   lighten(@color-pf-red-100, 55%);\n@alert-danger-border:                                               @brand-danger;\n@alert-danger-text:                                                 @gray-dark;\n@alert-info-bg:                                                     @color-pf-black-150;\n@alert-info-text:                                                   @gray-dark;\n@alert-success-bg:                                                  lighten(@color-pf-green-100, 8%);\n@alert-success-border:                                              @brand-success;\n@alert-success-text:                                                @gray-dark;\n@alert-warning-bg:                                                  lighten(@color-pf-orange-100, 8%);\n@alert-warning-border:                                              @brand-warning;\n@alert-warning-text:                                                @gray-dark;\n@badge-border-radius:                                               @border-radius-base;\n@border-radius-large:                                               @border-radius-base;\n@border-radius-small:                                               @border-radius-base;\n@breadcrumb-active-color:                                           @gray-pf;\n@breadcrumb-color:                                                  @gray-pf;\n@btn-default-bg:                                                    @gray-lighter;\n@btn-default-color:                                                 @gray-pf;\n@caret-width-large:                                                 @caret-width-base;\n@code-color:                                                        @color-pf-blue-600;\n@dropdown-fallback-border:                                          @dropdown-border;\n@dropdown-link-active-bg:                                           @link-color;\n@dropdown-link-hover-color:                                         @gray-pf;\n@font-size-h1:                                                      ceil((@font-size-base * 2)); // ~24px\n@font-size-h2:                                                      ceil((@font-size-base * 1.8333)); // ~22px\n@font-size-h3:                                                      ceil((@font-size-base * 1.3333)); // ~16px\n@font-size-h5:                                                      ceil((@font-size-base * 1.0833)); // ~13px\n@font-size-large:                                                   ceil((@font-size-base * 1.1666)); // ~14px\n@font-size-small:                                                   ceil((@font-size-base * .9166)); // ~11px\n@input-color:                                                       @gray-dark;\n@nav-tabs-active-link-hover-color:                                  @link-color;\n@nav-tabs-justified-link-border-color:                              @nav-tabs-border-color;\n@nav-pf-vertical-badges-width:                                      (@nav-pf-vertical-width + 50px);\n@padding-small-horizontal:                                          @padding-base-horizontal;\n@padding-small-vertical:                                            @padding-base-vertical;\n@panel-group-pf-danger-heading-bg:                                  @alert-danger-bg;\n@panel-group-pf-primary-heading-bg:                                 lighten(@brand-primary, 38%);\n@panel-group-pf-success-heading-bg:                                 @alert-success-bg;\n@panel-group-pf-warning-heading-bg:                                 @alert-warning-bg;\n@panel-group-pf-info-heading-bg:                                    lighten(desaturate(spin(@brand-info, 13), 45), 60%);\n@panel-danger-border:                                               @brand-danger;\n@panel-danger-heading-bg:                                           @brand-danger;\n@panel-info-border:                                                 @brand-info;\n@panel-info-heading-bg:                                             @brand-info;\n@panel-primary-border:                                              @brand-primary;\n@panel-primary-text:                                                @body-bg;\n@panel-success-border:                                              @brand-success;\n@panel-success-heading-bg:                                          @brand-success;\n@panel-warning-border:                                              @brand-warning;\n@panel-warning-heading-bg:                                          @brand-warning;\n@state-warning-text:                                                @brand-warning;\n@state-danger-text:                                                 @brand-danger;\n// Reference variable declared in block above\n@panel-danger-text:                                                 @panel-primary-text;\n@panel-info-text:                                                   @panel-primary-text;\n@panel-success-text:                                                @panel-primary-text;\n@panel-warning-text:                                                @panel-primary-text;\n\n// PatternFly-specific variables based on Bootstrap overides\n// ---------------------------------------------------------\n@bootstrap-switch-bg-color:                                         @btn-default-bg;\n@btn-danger-bg-img-start:                                           @brand-danger;\n@btn-danger-bg-img-stop:                                            @btn-danger-bg;\n@btn-primary-bg-img-start:                                          @brand-primary;\n@btn-primary-bg-img-stop:                                           @btn-primary-bg;\n@dropdown-link-focus-bg:                                            @link-color;\n@line-height-computed:                                              floor((@font-size-base * @line-height-base));\n@nav-pf-vertical-icon-size:                                         (@font-size-base + 8);\n@notification-badge-color:                                          @color-pf-blue-400;\n@progress-sm:                                                       (@line-height-computed - 6);\n@progress-xs:                                                       (@line-height-computed - 14);\n@syntax-1:                                                          @btn-danger-bg;\n@syntax-2:                                                          @gray-dark;\n@syntax-3:                                                          @brand-success;\n@syntax-4:                                                          @brand-info;\n@tooltip-font-size:                                                 @font-size-base;\n","//\n// Bootstrap-Datepicker\n// --------------------------------------------------\n\n.bootstrap-datepicker.form-control[readonly] {\n  background-color: @input-bg;\n  border-color: @input-border !important;\n  color: @input-color;\n  .box-shadow(inset 0 1px 1px fade(@color-pf-black, 7.5%));\n  .form-control-outline();\n  &:focus {\n    // TODO Create global variables for validation box shadows?\n    @input-validation-focus-box-shadow: fade(@color-pf-black, 7.5%);\n    border-color: @input-border-focus !important;\n    .has-error & {\n      // TODO Create global variables for validation box shadows?\n      @state-danger-input-focus: lighten(@state-danger-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-danger-input-focus}\";\n      border-color: darken(@state-danger-text, 10%);\n      .box-shadow(@shadow);\n    }\n    .has-success & {\n      // TODO Create global variables for validation box shadows?\n      @state-success-input-focus: lighten(@state-success-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-success-input-focus}\";\n      border-color: darken(@state-success-text, 10%);\n      .box-shadow(@shadow);\n    }\n    .has-warning & {\n      // TODO Create global variables for validation box shadows?\n      @state-warning-input-focus: lighten(@state-warning-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-warning-input-focus}\";\n      border-color: darken(@state-warning-text, 10%);\n      .box-shadow(@shadow);\n    }\n  }\n  &:hover {\n    border-color: @input-border-hover !important;\n    .has-error & {\n      border-color: darken(@state-danger-text, 10%) !important;\n    }\n    .has-success & {\n      border-color: darken(@state-success-text, 10%) !important;\n    }\n    .has-warning & {\n      border-color: darken(@state-warning-text, 10%) !important;\n    }\n  }\n  .has-error & {\n    border-color: @state-danger-text !important;\n  }\n  .has-success & {\n    border-color: @state-success-text !important;\n  }\n  .has-warning & {\n    border-color: @state-warning-text !important;\n  }\n}\n\n.datepicker {\n  border-radius: @border-radius-base;\n  .datepicker-switch,\n  tfoot .clear,\n  tfoot .today {\n    font-size: @font-size-large;\n    font-weight: 500;\n  }\n  .next,\n  .prev {\n    font-weight: 500;\n  }\n  table tr {\n    td,\n    th {\n      border-radius: @border-radius-base;\n    }\n    td {\n      &.active,\n      &.active:hover,\n      &.active.disabled,\n      &.active.disabled:hover {\n        background: @dropdown-link-active-bg !important;\n        color: @color-pf-white !important;\n        text-shadow: none;\n      }\n      &.day:hover,\n      &.day.focused {\n        background: @dropdown-link-hover-bg;\n      }\n      &.selected,\n      &.selected:hover,\n      &.selected.disabled,\n      &.selected.disabled:hover {\n        text-shadow: none;\n      }\n      span {\n        border-radius: @border-radius-base;\n        &.active,\n        &.active:hover,\n        &.active.disabled,\n        &.active.disabled:hover {\n          background: @dropdown-link-active-bg;\n          text-shadow: none;\n        }\n        &:hover {\n          background: @dropdown-link-hover-bg;\n        }\n      }\n    }\n  }\n  thead tr:first-child th,\n  tfoot tr th {\n    &:hover {\n      background: @dropdown-link-hover-bg;\n    }\n  }\n}\n\n.input-daterange {\n  input:first-child {\n    border-radius: @border-radius-base 0 0 @border-radius-base;\n  }\n  input:last-child {\n    border-radius: 0 @border-radius-base @border-radius-base 0;\n  }\n  .input-group-addon {\n    background-color: @input-group-addon-bg;\n    border-color: @input-group-addon-border-color;\n    line-height: @line-height-base;\n    padding: @padding-base-vertical @padding-base-horizontal;\n  }\n}\n","// Mixins - Bootstrap overrides\n// -------------------\n\n// Form control outline\n.form-control-outline(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0 !important;\n    .box-shadow(~\"inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Gradients\n#gradient {\n  .striped(@color: fade(@color-pf-black, 15%); @angle: -45deg) {\n    background-image: linear-gradient(@angle, @color 25%, @color 26%, transparent 27%, transparent 49%, @color 50%, @color 51%, transparent 52%, transparent 74%, @color 75%, @color 76%, transparent 77%);\n  }\n}\n\n// Horizontal dividers\n.nav-divider(@color: @color-pf-black-200, @margin: 4px 1px) {\n  background-color: @color;\n  height: 1px;\n  margin: @margin;\n  overflow: hidden;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  &:-moz-placeholder            { color: @color; font-style: italic; } // Firefox 4-18\n  &::-moz-placeholder           { color: @color; font-style: italic; opacity: 1; } // Firefox 19+\n  &:-ms-input-placeholder       { color: @color; font-style: italic; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; font-style: italic; } // Safari and Chrome\n}\n","//\n// Bootstrap-select\n// --------------------------------------------------\n\n.bootstrap-select.btn-group {\n  &.form-control {\n    margin-bottom: 0;\n  }\n  .btn {\n    // TODO Create global variable for validation state box shadows?\n    @input-validation-focus-box-shadow: fade(@color-pf-black, 7.5%);\n    &:hover {\n      border-color: @input-border-hover;\n    }\n    .caret {\n      margin-top: -4px;\n    }\n    .form-control-outline();\n    .has-error & {\n      border-color: @state-danger-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-danger-input-focus: lighten(@state-danger-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-danger-input-focus}\";\n        border-color: darken(@state-danger-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .has-success & {\n      border-color: @state-success-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-success-input-focus: lighten(@state-success-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-success-input-focus}\";\n        border-color: darken(@state-success-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .has-warning & {\n      border-color: @state-warning-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-warning-input-focus: lighten(@state-warning-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-warning-input-focus}\";\n        border-color: darken(@state-warning-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n  }\n  .dropdown-menu { // Also see navbar.less\n    > .active > a {\n      &,\n      &:active {\n        background-color: @dropdown-link-hover-bg !important;\n        border-color: @dropdown-link-hover-border-color !important;\n        color: @gray-dark !important;\n        small {\n          color: @gray-light !important;\n        }\n      }\n    }\n    > .disabled > a {\n      color: @gray-light !important;\n    }\n    > .selected > a {\n      background-color: @dropdown-link-active-bg !important;\n      border-color: @dropdown-link-active-border-color !important;\n      color: @color-pf-white !important;\n      small {\n        color: fade(@color-pf-white, 50%) !important;\n      }\n    }\n    .divider {\n      background: @dropdown-divider-bg !important;\n      margin: @dropdown-divider-margin !important;\n    }\n    dt {\n      color: @color-pf-black-500;\n      font-weight:normal;\n      padding: 1px 10px;\n    }\n    li {\n      & > a.opt {\n        padding: 1px 10px;\n      }\n      & a {\n        &:active small {\n          color: fade(@color-pf-white, 50%) !important;\n        }\n        &:hover,\n        &:focus {\n          small {\n            color: @gray-light;\n          }\n        }\n      }\n      &:not(.disabled) {\n        a:hover,\n        a:focus {\n          small {\n            color: @gray-light;\n          }\n        }\n      }\n    }\n  }\n}\n","//\n// Bootstrap slider\n// --------------------------------------------------\n// https://github.com/seiyria/bootstrap-slider\n\n\n// Overwrites and fixes to Bootstrap slider\n\n// https //github.com/seiyria/bootstrap-slider/issues/797\n.slider-tick-label-container {\n  display: flex;\n  justify-content: space-between;\n  margin-left: 0!important;\n}\n\n.slider-tick-label {\n  width: auto !important;\n}\n\n.slider {\n  .tooltip {\n    top: -10px;\n  }\n}\n.slider-track {\n  background-color: @color-pf-black-200;\n  box-shadow: inset 0 2px 3px rgba(0, 0, 0, .1), 0 0px 2px @color-pf-black-200;\n  border: 1px solid @color-pf-black-400;\n}\n\n.slider-selection {\n  #gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n}\n\n.slider-handle {\n  width: @slider-line-height;\n  height: @slider-line-height;\n  border: 1px solid @color-pf-black-400; //THIS!\n}\n\n.slider-tick {\n  background-color: transparent !important;\n  background-image:\n    radial-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3) 2px, transparent 2px) !important;\n  .box-shadow(none);\n}\n\n\n// Styles to create the pf slider\n.slider-pf {\n  display: flex;\n  align-items: center;\n\n  * {\n    margin-right: 10px;\n\n    &:last-child {\n      margin: 0;\n    }\n  }\n\n  .slider {\n    width: auto;\n    flex: 1 1 100%;\n  }\n}\n","//\n// Bootstrap Switch\n// --------------------------------------------------\n\n.@{bootstrap-switch-base} {\n  .@{bootstrap-switch-base}-handle-off,\n  .@{bootstrap-switch-base}-handle-on {\n    &.@{bootstrap-switch-base}-default {\n      background: @bootstrap-switch-handle-default-bg-color;\n    }\n  }\n  .@{bootstrap-switch-base}-label {\n    background: @bootstrap-switch-bg-color;\n    box-shadow: 0 0 2px fade(@color-pf-black, 40%);\n    #gradient > .vertical(@bootstrap-switch-bg-color-start, @bootstrap-switch-bg-color-stop);\n    position: relative;\n    z-index: 9;\n  }\n}\n","//\n// Bootstrap Touchspin\n// --------------------------------------------------\n\n.bootstrap-touchspin .input-group-btn-vertical {\n  > .btn {\n    padding-bottom: 6px;\n    padding-top: 6px;\n  }\n  .bootstrap-touchspin-down {\n    border-bottom-right-radius: @border-radius-base;\n  }\n  .bootstrap-touchspin-up {\n    border-top-right-radius: @border-radius-base;\n  }\n  i {\n    font-size: (@font-size-base - 4);\n    left: 6px;\n    top: 2px;\n    &.fa-angle-down,\n    &.fa-angle-up {\n      font-size: @font-size-base;\n      line-height: @font-size-base;\n      top: 0;\n    }\n    &.fa-angle-down,\n    &.fa-angle-up {\n      left: 7px;\n    }\n  }\n}\n","//\n// Bootstrap Tree View\n// --------------------------------------------------\n\n.treeview {\n  .list-group {\n    border-top: 0;\n  }\n  .list-group-item {\n    background: transparent;\n    border-bottom: 1px solid transparent !important;\n    border-top: 1px solid transparent !important;\n    cursor: default !important;\n    margin-bottom: 0;\n    overflow: hidden;\n    padding: 0 10px;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    &:hover {\n      background: none !important;\n    }\n    &.node-selected {\n      background: none !important;\n      border-color: transparent !important;\n      color: inherit !important;\n    }\n    &.node-check-changed {\n      span.node-icon,\n      span.text {\n        color: @bootstrap-treeview-highlight-color;\n      }\n    }\n  }\n  span.icon {\n    display: inline-block;\n    font-size: (@font-size-base + 1);\n    min-width: 10px;\n    text-align: center;\n    > [class*=\"fa-angle\"] {\n      font-size: (@font-size-base + 3);\n    }\n    &.check-icon {\n      margin-right: 10px;\n    }\n    &.expand-icon {\n      cursor: pointer !important;\n    }\n  }\n  span.image {\n    background-repeat: no-repeat;\n    background-size: contain;\n    display: inline-block;\n    height: 1.19em;\n    line-height: 1em;\n    margin-right: 5px;\n    vertical-align: middle;\n    width: 12px;\n  }\n  span.indent {\n    margin-right: 5px;\n  }\n  .node-disabled {\n    color: @color-pf-black-300;\n    cursor: not-allowed;\n    span.expand-icon {\n      cursor: default !important;\n    }\n  }\n  .node-hidden {\n    display:none;\n  }\n}\n\n.treeview-pf-hover .list-group-item {\n  cursor: pointer !important;\n  &:hover {\n    background-color: @dropdown-link-hover-bg !important;\n    border-color: @dropdown-link-hover-border-color !important;\n  }\n}\n\n.treeview-pf-select .list-group-item {\n  cursor: pointer !important;\n  &.node-selected {\n    background: @dropdown-link-active-bg !important;\n    border-color: @dropdown-link-active-border-color !important;\n    color: @dropdown-link-active-color !important;\n  }\n}\n","//\n// Cards\n// --------------------------------------------------\n\n.card-pf {\n  background: @card-pf-bg-color;\n  border-top: 2px solid @card-pf-border-top-color;\n  .box-shadow(0 1px 1px fade(@color-pf-black, 17.5%));\n  margin: 0 (-(@grid-gutter-width / 4)) (@grid-gutter-width / 2);\n  padding: 0 (@grid-gutter-width / 2);\n  &.card-pf-accented {\n    border-top-color: @card-pf-accented-border-top-color;\n  }\n  &.card-pf-aggregate-status {\n    .card-pf-aggregate-status-notifications,\n    .card-pf-title {\n      a {\n        color: @text-color;\n        &.add {\n          color: @link-color;\n          &:hover {\n            color: @link-hover-color;\n          }\n        }\n        &:hover {\n          color: @link-hover-color;\n        }\n      }\n    }\n  }\n  &.card-pf-aggregate-status {\n    padding: 0 (@grid-gutter-width / 4);\n    text-align: center;\n  }\n  &.card-pf-aggregate-status-mini {\n    padding-bottom: (@grid-gutter-width / 4);\n    position: relative;\n  }\n  @media (min-width: @grid-float-breakpoint) {\n    &.card-pf-bleed-left {\n      margin-left: (-(@grid-gutter-width / 2));\n    }\n    &.card-pf-bleed-right {\n      border-right: 1px solid @card-pf-border-color;\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n  }\n}\n\n.card-pf-aggregate-status-notifications {\n  font-size: (@font-size-base * 2); // 24px\n  font-weight: 300;\n  .card-pf-aggregate-status-mini & {\n    line-height: 1;\n  }\n  .card-pf-aggregate-status-notification + .card-pf-aggregate-status-notification {\n    border-left: 1px solid @card-pf-border-color;\n    margin-left: (@grid-gutter-width / 8 - 2);\n    padding-left: (@grid-gutter-width / 4);\n  }\n  .fa, .pficon {\n    font-size: (@font-size-base * 1.5); // 18px\n    margin-right: 7px;\n  }\n}\n\n.card-pf-body {\n  margin: (@grid-gutter-width / 2) 0 0;\n  padding: 0 0 (@grid-gutter-width / 2);\n  .card-pf-aggregate-status & {\n    margin-top: (@grid-gutter-width / 4);\n    padding-bottom: (@grid-gutter-width / 4);\n  }\n  .card-pf-aggregate-status-mini & {\n    margin-bottom: 0;\n    margin-top: 0;\n    padding-bottom: 0;\n    position: absolute;\n    right: (@grid-gutter-width / 2);\n    top: 15px;\n  }\n  .card-pf-utilization .card-pf-title + & {\n    margin-top: -8px;\n  }\n  > *:last-child {\n    margin-bottom: 0;\n  }\n}\n\n.card-pf-footer {\n  background-color: @card-pf-footer-bg-color;\n  border-top: 1px solid @card-pf-border-color;\n  margin: 0 (-(@grid-gutter-width / 2)) !important;\n  padding: (@grid-gutter-width / 2) (@grid-gutter-width / 2) (@grid-gutter-width / 4);\n  a > {\n    .fa,\n    .pficon {\n      margin-right: 5px;\n    }\n  }\n  .card-pf-time-frame-filter {\n    margin-top: -2px;\n  }\n}\n\n.card-pf-link-with-icon {\n  padding-left: 21px;\n  position: relative;\n  .fa,\n  .pficon {\n    font-size: 16px;\n    left: 0;\n    position: absolute;\n    top: 0;\n  }\n}\n\n.card-pf-time-frame-filter {\n  .card-pf-heading &,\n  .card-pf-footer & {\n    float: right;\n    margin-left: 20px;\n  }\n}\n\n.card-pf-heading {\n  border-bottom: 1px solid @card-pf-border-color;\n  margin: 0 (-(@grid-gutter-width / 2)) (@grid-gutter-width / 2);\n  padding: 0 (@grid-gutter-width / 2) 0;\n  & .card-pf-time-frame-filter {\n    margin-top: -5px;\n  }\n}\n\n.card-pf-heading-details {\n  float: right;\n  font-size: (@font-size-small - 1);\n}\n\n.card-pf-subtitle {\n  font-size: @font-size-h3;\n  margin-top: @line-height-computed;\n  margin-bottom: (@line-height-computed / 2);\n  [class^=\"col\"] & {\n    margin-top: 0;\n  }\n  @media (max-width: @screen-xs-max) {\n    .card-pf-body [class^=\"col\"] + [class^=\"col\"] > & {\n      margin-top: (@grid-gutter-width);\n    }\n  }\n}\n\n.card-pf-title {\n  font-size: @font-size-h3;\n  font-weight: 400;\n  margin: (@grid-gutter-width / 2) 0;\n  padding: 0;\n  .card-pf-aggregate-status & {\n    font-size: @font-size-large;\n    margin: (@grid-gutter-width / 4) 0 0;\n    .fa,\n    .pficon {\n      color: @card-pf-aggregate-status-title-icon-color;\n      font-size: @font-size-h3;\n      margin-right: 7px;\n    }\n  }\n  .card-pf-aggregate-status-count {\n    font-size: @font-size-h3;\n    .card-pf-aggregate-status-mini & {\n      display: block;\n      font-size: (@font-size-base * 2); // 24px\n      font-weight: 300;\n      margin-bottom: 3px;\n    }\n  }\n  .card-pf-aggregate-status-mini & {\n    font-size: @font-size-base;\n    margin-top: (@grid-gutter-width / 8);\n    a {\n      display: inline-block;\n    }\n    .fa,\n    .pficon {\n      font-size: (@font-size-base * 2 + 2); // 26px\n      margin-right: 0;\n      min-width: (@font-size-base * 2 + 2); // 26px\n      position: absolute;\n      left: (@grid-gutter-width / 2);\n      text-align: center;\n      top: 15px;\n    }\n  }\n}\n\n.card-pf-utilization-details {\n  border-bottom: 1px solid @card-pf-border-color;\n  display: table;\n  margin: 12px 0 15px;\n  padding: 0 0 15px;\n  width: 100%;\n  .card-pf-utilization-card-details-count,\n  .card-pf-utilization-card-details-description {\n    float: left;\n    line-height: 1;\n  }\n  .card-pf-utilization-card-details-count {\n    font-size: (@font-size-base * 2 + 2); // 26px\n    font-weight: 300;\n    margin-right: 10px;\n  }\n  .card-pf-utilization-card-details-line-1,\n  .card-pf-utilization-card-details-line-2 {\n    display: block;\n  }\n  .card-pf-utilization-card-details-line-1 {\n    font-size: (@font-size-small - 1);\n    margin-bottom: 2px;\n  }\n}\n\n.cards-pf {\n  background: @card-pf-container-bg-color;\n  .row-cards-pf {\n    padding: 0 20px;\n    &:first-child { padding-top: 20px; }\n  }\n}\n\n.container-cards-pf {\n  margin-top: (@grid-gutter-width / 2);\n}\n\n.row-cards-pf {\n  margin-left: (-(@grid-gutter-width / 4));\n  margin-right: (-(@grid-gutter-width / 4));\n}\n","//\n// Card View\n// --------------------------------------------------\n\n.card-pf-view {\n  border: 2px solid transparent;\n  .card-pf-heading-kebab {\n    .dropdown-kebab-pf {\n      margin-top: -3px;\n    }\n    + .progress-pf-legend {\n      p { margin-bottom: 0; }\n      .progress {\n        margin-bottom: 7px;\n        margin-top: 16px;\n      }\n    }\n  }\n  .card-pf-info {\n    margin-top: 15px;\n    strong {\n      font-size: ceil((@font-size-base + 1));\n      margin-right: 10px;\n    }\n  }\n  .card-pf-item {\n    display: inline-block;\n    font-size: @font-size-h3;\n    padding: 0 13px 0 15px;\n    &:first-child { padding-left: 0; }\n    &:last-child { padding-right: 0; }\n    + .card-pf-item { border-left: 1px solid @card-pf-border-color; }\n    .fa-check { color: @brand-success; }\n    .fa,\n    .pficon {\n      + .card-pf-item-text { margin-left: 10px; }\n    }\n  }\n  .card-pf-items { margin-top: 15px; }\n  .card-pf-title {\n    font-size: ceil((@font-size-base * 1.6666));\n    font-weight: 300;\n    margin-bottom: 0;\n    margin-top: 15px;\n    .fa,\n    .pficon {\n      font-size: ceil((@font-size-base * 1.5));\n      margin-right: 2px;\n    }\n    .col-lg-2 & { font-size: @font-size-h3; }\n  }\n  .card-pf-top-element .card-pf-icon-circle {\n    border: 2px solid @color-pf-blue-300;\n    border-radius: 50%;\n    display: block;\n    font-size: 46px;\n    height: 106px;\n    line-height: 102px;\n    margin: 0 auto;\n    text-align: center;\n    width: 106px;\n    .col-lg-2 & {\n      font-size: 23px;\n      height: 54px;\n      line-height: 50px;\n      width: 54px;\n    }\n  }\n  .card-pf-view-checkbox {\n    position: absolute;\n    top: 11px;\n    left: 15px;\n    input[type=checkbox] { display: none; }\n  }\n  &.card-pf-view-multi-select {\n    .card-pf-view-checkbox {\n      input[type=checkbox] {\n        display: block;\n        @media(min-width:@screen-sm-min) {\n          visibility: hidden;\n          &:checked { visibility: visible; }\n        }\n      }\n    }\n    &:hover .card-pf-view-checkbox input[type=checkbox] { visibility: visible; }\n  }\n  &.card-pf-view-select {\n    position: relative;\n    &:hover { .box-shadow(0 1px 6px fade(@color-pf-black, 35%)); }\n    &.active { border: 2px solid @card-pf-selected-border-color; }\n  }\n  &.card-pf-view-single-select { cursor: pointer; }\n  &.card-pf-view-xs {\n    .card-pf-title {\n      font-size: 16px;\n      font-weight: normal;\n      margin-bottom: 10px;\n      .fa,\n      .pficon {\n        font-size: 14px;\n        margin-right: 5px;\n      }\n    }\n  }\n}\n","//\n// Charts\n// --------------------------------------------------\n\n.c3 {\n  path {\n    stroke: @table-border-color;\n  }\n  svg {\n    font-family: @font-family-base;\n  }\n}\n\n.c3-axis-x .tick line {\n  stroke: @table-border-color;\n}\n\n.c3-axis-y .tick line {\n  display: none;\n}\n\n.c3-chart-arc path {\n  stroke: @color-pf-white;\n}\n\n.c3-grid line {\n  stroke: @table-border-color;\n}\n\n.c3-line {\n  stroke-width: 2px;\n}\n\n.c3-tooltip {\n  background: @tooltip-bg;\n  .box-shadow(none);\n  .opacity(@tooltip-opacity);\n\n  td {\n    background: transparent;\n    border: 0;\n    color: @tooltip-color;\n    font-size: @font-size-base;\n    padding: 5px 10px;\n  }\n\n  th {\n    background: transparent;\n    font-size: @font-size-base;\n    padding: 5px 10px 0;\n    border-bottom: solid 2px @color-pf-black;\n  }\n\n  tr {\n    border: 0;\n    + tr > td {\n      padding-top: 0;\n    }\n  }\n}\n\n.c3-tooltip-sparkline,\n.donut-tooltip-pf {\n  background: @tooltip-bg;\n  color: @tooltip-color;\n  .opacity(@tooltip-opacity);\n  padding: 2px 6px;\n}\n\n.c3-xgrid,\n.c3-ygrid {\n  stroke-dasharray: 0 0;\n}\n\n.chart-pf-sparkline {\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.donut-title-big-pf {\n  font-size: @donut-font-size-big;\n  font-weight: 300;\n}\n\n.donut-title-small-pf {\n  font-size: @font-size-base;\n  font-weight: 400;\n}\n\n.line-chart-pf {\n  .c3-zoom-rect {\n    opacity: 1 !important;\n    fill: @color-pf-black-100;\n    stroke: @table-border-color;\n    stroke-width: 1px;\n  }\n}\n\n.pct-donut-chart-pf {\n\n  .pct-donut-chart-pf-label {\n    display: block;\n  }\n\n  &.pct-donut-chart-pf-left,\n  &.pct-donut-chart-pf-right,\n  .pct-donut-chart-pf-left,\n  .pct-donut-chart-pf-right {\n    display: flex;\n    flex-direction: row;\n    justify-content: center;\n    align-items: center;\n  }\n\n  &.pct-donut-chart-pf-left,\n  &.pct-donut-chart-pf-right {\n    display: inline-flex;\n  }\n\n  &.pct-donut-chart-pf-left,\n  .pct-donut-chart-pf-left {\n    flex-direction: row-reverse;\n  }\n}\n\n","//\n// Close icons\n// --------------------------------------------------\n\n//this should no longer be needed and be replaced with pficon-close. This is here for legacy. For further info see https://github.com/patternfly/patternfly/pull/781\n\n.close {\n  text-shadow: none;\n  z-index: 1;\n  position: relative;\n  .opacity(.6);\n  &:hover,\n  &:focus {\n    .opacity(.9);\n  }\n}\n","//\n// Context Selector\n// --------------------------------------------------\n.layout-pf-fixed .navbar-pf-vertical.navbar-pf-contextselector {\n  z-index: @zindex-modal-background;\n}\n.navbar-pf-vertical .nav.contextselector-pf {\n    @media (min-width: @screen-sm-min) {\n      margin-left:@contextselector-pf-margin-left;\n    }\n    border-left:1px solid @color-pf-black-700;\n      .nav-item-iconic {\n        padding:@contextselector-pf-nav-item-iconic-padding;\n        display: flex;\n        align-items: center;\n      }\n  }\n\n  .contextselector-pf {\n    float:left;\n    &-title {\n      width: @contextselector-title-width-mobile;\n      @media (min-width: @screen-xs-min) {\n        width: @contextselector-title-width-desktop;\n      }\n      white-space: nowrap;\n      display:inline-block;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      line-height: normal;\n    }\n    .dropdown {\n      &.open, &:hover {\n        background-color: @navbar-pf-navbar-primary-active-bg-color-stop;\n      }\n    }\n    .dropdown-menu {\n      width: 100%;\n      margin-top:0;\n    }\n    .form-group {\n      margin: @contextselector-pf-form-group-margin;\n    }\n    .contextselector-pf-list {\n      @media (min-width: @screen-sm-min) {\n        max-height: @contextselector-pf-list-max-height;\n        overflow-y: auto;\n      }\n      li {\n        padding: @contextselector-pf-list-li-padding;\n        border-width: @contextselector-pf-list-li-border-width;\n        border-style: solid;\n        border-color: transparent;\n        &:hover {\n          background: @color-pf-blue-50;\n          border-color: @dropdown-link-hover-border-color;\n          a {\n            text-decoration: none;\n          }\n        }\n      }\n      a {\n        color: @color-pf-black-800;\n        display: block;\n      }\n    }\n  }\n","//\n// DataTables\n// --------------------------------------------------\n\n// Deprecated\n.ColVis_Button {\n  &:active {\n    &:focus {\n      outline: none;\n    }\n  }\n}\n\n// Deprecated\n.ColVis_catcher {\n  position: absolute;\n  z-index: 999;\n}\n\n// Deprecated\n.ColVis_collection {\n  background-color: @dropdown-bg;\n  border: 1px solid @dropdown-border;\n  border-radius: @border-radius-base;\n  .box-shadow(0 6px 12px fade(@color-pf-black, 17.5%));\n  background-clip: padding-box;\n  list-style: none;\n  margin: -1px 0 0 0;\n  padding: 5px 10px;\n  width: 150px;\n  z-index: @zindex-dropdown;\n  label {\n    font-weight: normal;\n    margin-bottom: 5px;\n    margin-top: 5px;\n    padding-left: 20px;\n  }\n}\n\n// Deprecated\n.ColVis_collectionBackground {\n  background-color: @color-pf-white;\n  height: 100%;\n  left: 0;\n  position: fixed;\n  top: 0;\n  width: 100%;\n  z-index: 998;\n}\n\n// Note: We won't be using this class with the Patternfly toolbar\n.dataTables_header {\n  background-color: @color-pf-black-150;\n  border: 1px solid @table-border-color;\n  border-bottom: none;\n  padding: 5px;\n  position: relative;\n  text-align: center;\n  .btn {\n    .box-shadow(none);\n  }\n  // Deprecated\n  .ColVis {\n    position: absolute;\n    right: 5px;\n    text-align: left;\n    top: 5px;\n    + .dataTables_info {\n      padding-right: 30px;\n    }\n  }\n  .dataTables_filter {\n    position: absolute;\n    input {\n      border: 1px solid @color-pf-black-400;\n      height: 24px;\n      @media (max-width: @screen-xs-max) {\n        width: 100px;\n      }\n    }\n  }\n  .dataTables_info {\n    padding: 2px 0;\n    @media (max-width: @screen-xs) {\n     text-align: right;\n    }\n    b {\n      font-weight: bold;\n    }\n  }\n}\n\n// Note: We won't be using this class with the table view\n.dataTables_footer {\n  background-color: @color-pf-white;\n  border: 1px solid @table-border-color;\n  border-top: none;\n  overflow: hidden;\n}\n\n// Not in use with latest example: May be used with pagination?\n.dataTables_paginate {\n  background: @color-pf-black-100;\n  float: right;\n  margin: 0;\n  .pagination {\n    float: left;\n    margin: 0;\n    > li {\n      > span {\n        border-color: @color-pf-white @color-pf-black-300 @color-pf-black-150;\n        border-width: 0 1px;\n        font-size: (@font-size-base + 4);\n        font-weight: normal;\n        padding: 0;\n        text-align: center;\n        width: 31px;\n        &:hover,\n        &:focus {\n          .reset-filter();\n        }\n      }\n      &.last > span {\n        border-right: none;\n      }\n      &.disabled > span {\n        background: @color-pf-black-150;\n        border-left-color: @color-pf-black-200;\n        border-right-color: @color-pf-black-200;\n        .reset-filter();\n      }\n    }\n  }\n  .pagination-input {\n    float: left;\n    font-size: @font-size-base;\n    line-height: 1em;\n    padding: 4px 15px 0;\n    text-align: right;\n    .paginate_input {\n      border: 1px solid @color-pf-black-300;\n      .box-shadow(inset 0 1px 1px fade(@color-pf-black, 7.5%));\n      font-size: @font-size-base;\n      font-weight: 600;\n      height: 19px;\n      margin-right: 8px;\n      padding-right: 3px;\n      text-align: right;\n      width: 30px;\n    }\n    .paginate_of {\n      position: relative;\n      b {\n        margin-left: 3px;\n      }\n    }\n  }\n}\n\n.dataTables_empty {\n  background: @table-bg-accent;\n}\n\n/* Might need this for pagination?\n.dataTables_wrapper {\n  margin: @line-height-computed 0;\n  @media (max-width: @screen-xs-max) {\n    .table-responsive {\n      margin-bottom: 0;\n    }\n  }\n}\n*/\n\n// Not in use with latest example: May be used with column reordering?\n.DTCR_clonedTable {\n  background-color: fade(@color-pf-white, 70%);\n  z-index: 202;\n}\n\n// Not in use with latest example: May be used with column reordering?\n.DTCR_pointer {\n  background-color: @link-color;\n  width: 1px;\n  z-index: 201;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n  filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n",".experimental-pf > * {\n  border: 2px solid @color-pf-light-green-400;\n}\n\n.experimental-pf-bar {\n  background-color: @color-pf-light-green-400;\n  border: none;\n  text-align: center;\n  position: relative;\n}\n\n.experimental-pf-more-info {\n  background-color: @color-pf-light-green-400;\n  border: 0;\n  color: @color-pf-black;\n  display: block;\n  width: 100%;\n  padding-top: 10px;\n  padding-bottom: 10px;\n  position: static;\n  @media (min-width: @screen-md-min) {\n    padding: 0 10px;\n    position: absolute;\n    right: 0;\n    top: 0;\n    width: auto;\n  }\n}\n\n.experimental-pf-text {\n  @media (min-width: @screen-md-min) {\n    padding-left: 150px;\n    padding-right: 150px;\n  }\n\n  a {\n    color: @color-pf-black;\n    text-decoration: underline;\n    &:hover {\n      color: @color-pf-black;\n      cursor: pointer;\n    }\n  }\n}\n\n.btn-experimental-pf {\n  .button-variant(@btn-default-color; @color-pf-light-green-400; @color-pf-light-green-300; @color-pf-light-green-400; @color-pf-light-green-400);\n}\n",".filter-pf-category-select {\n  display: flex;\n}\n.filter-pf-category-select-value {\n  border-left-width: 0;\n}\n.filter-pf-category-item {\n  margin-bottom: 5px;\n}\n.filter-pf-category-label {\n  font-weight: 700;\n  margin-right: 5px;\n  padding: 5px 0 6px 5px;\n}\n.filter-pf-select {\n  .caret {\n    position: absolute;\n    top: 50%;\n    right: 10px;\n    transform: translateY(-50%);\n  }\n}\n.filter-pf-select-dropdown {\n  background-color: @color-pf-white;\n  background-image: none;\n  color: @color-pf-black-500;\n  font-size: 12px;\n  font-style: italic;\n  font-weight: 400;\n  padding-right: 25px;\n  text-align: left;\n  .caret {\n    font-style: normal;\n  }\n}\n.filter-pf-active-label {\n  margin-right: 5px;\n}\n","//\n// Footer\n// --------------------------------------------------\n\n.footer-pf-alt, .footer-pf {\n  background-color: @footer-pf-bg-color;\n  color: @gray-light;\n  font-size: @font-size-small;\n  line-height: 17px; // whole px unit to avoid height differences among browsers\n  padding-left: @footer-pf-padding-left;\n  padding-top: @footer-pf-padding-top;\n  .layout-pf-alt-fixed-with-footer &,  .layout-pf-fixed-with-footer & {\n    bottom: 0;\n    left: 0;\n    position: fixed;\n    right: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n}\n","//\n// Icons\n// --------------------------------------------------\n// Custom icons and selections from IcoMoon - Free (http://icomoon.io/#icons)\n\n@font-face {\n  font-family: \"@{icon-font-name-pf}\";\n  src:url(\"@{font-path}/@{icon-font-name-pf}.eot\");\n  src:url(\"@{font-path}/@{icon-font-name-pf}.eot?#iefix\") format(\"embedded-opentype\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.ttf\") format(\"truetype\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.woff\") format(\"woff\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.svg#@{icon-font-name-pf}\") format(\"svg\");\n  font-weight: normal;\n  font-style: normal;\n}\n\n[class^=\"@{icon-prefix}-\"],\n[class*=\" @{icon-prefix}-\"] {\n  display: inline-block;\n  font-family: \"@{icon-font-name-pf}\";\n  font-style: normal;\n  font-variant: normal;\n  font-weight: normal;\n  line-height: 1;\n  speak: none;\n  text-transform: none;\n  /* Better Font Rendering =========== */\n  -moz-osx-font-smoothing: grayscale;\n  -webkit-font-smoothing: antialiased;\n}\n.@{icon-prefix}-add-circle-o:before {\n  content: @pficon-var-add-circle-o;\n}\n.@{icon-prefix}-applications:before {\n  content: @pficon-var-applications;\n}\n.@{icon-prefix}-arrow:before {\n  content: @pficon-var-arrow;\n}\n.@{icon-prefix}-asleep:before {\n  content: @pficon-var-asleep;\n}\n.@{icon-prefix}-automation:before {\n  content: @pficon-var-automation;\n}\n.@{icon-prefix}-build:before {\n  content: @pficon-var-build;\n}\n.@{icon-prefix}-builder-image:before {\n  content: @pficon-var-builder-image;\n}\n.@{icon-prefix}-bundle:before {\n  content: @pficon-var-bundle;\n}\n.@{icon-prefix}-blueprint:before {\n  content: @pficon-var-blueprint;\n}\n.@{icon-prefix}-catalog:before {\n  content: @pficon-var-catalog;\n}\n.@{icon-prefix}-chat:before {\n  content: @pficon-var-chat;\n}\n.@{icon-prefix}-close:before {\n  content: @pficon-var-close;\n}\n.@{icon-prefix}-cloud-security:before {\n  content: @pficon-var-cloud-security;\n}\n.@{icon-prefix}-cloud-tenant:before {\n  content: @pficon-var-cloud-tenant;\n}\n.@{icon-prefix}-cluster:before {\n  content: @pficon-var-cluster;\n}\n.@{icon-prefix}-connected:before {\n  content: @pficon-var-connected;\n}\n.@{icon-prefix}-container-node:before {\n  content: @pficon-var-container-node;\n}\n.@{icon-prefix}-cpu:before {\n  content: @pficon-var-cpu;\n}\n.@{icon-prefix}-degraded:before {\n  content: @pficon-var-degraded;\n}\n.@{icon-prefix}-delete:before {\n  content: @pficon-var-delete;\n}\n.@{icon-prefix}-disconnected:before {\n  content: @pficon-var-disconnected;\n}\n.@{icon-prefix}-domain:before {\n  content: @pficon-var-domain;\n}\n.@{icon-prefix}-edit:before {\n  content: @pficon-var-edit;\n}\n.@{icon-prefix}-enhancement:before {\n  content: @pficon-var-enhancement;\n}\n.@{icon-prefix}-enterprise:before {\n  content: @pficon-var-enterprise;\n}\n.@{icon-prefix}-equalizer:before {\n  content: @pficon-var-equalizer;\n}\n.@{icon-prefix}-error-circle-o:before {\n  color: @brand-danger;\n  content: @pficon-var-error-circle-o;\n}\n.@{icon-prefix}-export:before {\n  content: @pficon-var-export;\n}\n.@{icon-prefix}-flag:before,\n.@{icon-prefix}-messages:before { // class name deprecated\n  content: @pficon-var-flag;\n}\n.@{icon-prefix}-flavor:before {\n  content: @pficon-var-flavor;\n}\n.@{icon-prefix}-filter:before {\n  content: @pficon-var-filter;\n}\n.@{icon-prefix}-folder-close:before {\n  content: @pficon-var-folder-close;\n}\n.@{icon-prefix}-folder-open:before {\n  content: @pficon-var-folder-open;\n}\n.@{icon-prefix}-help:before {\n  content: @pficon-var-help;\n}\n.@{icon-prefix}-history:before {\n  content: @pficon-var-history;\n}\n.@{icon-prefix}-home:before {\n  content: @pficon-var-home;\n}\n.@{icon-prefix}-image:before {\n  content: @pficon-var-image;\n}\n.@{icon-prefix}-import:before {\n  content: @pficon-var-import;\n}\n.@{icon-prefix}-in-progress:before {\n  content: @pficon-var-in-progress;\n}\n.@{icon-prefix}-info:before {\n  content: @pficon-var-info;\n}\n.@{icon-prefix}-infrastructure:before {\n  content: @pficon-var-infrastructure;\n}\n.@{icon-prefix}-integration:before {\n  content: @pficon-var-integration;\n}\n.@{icon-prefix}-key:before {\n  content: @pficon-var-key;\n}\n.@{icon-prefix}-locked:before {\n  content: @pficon-var-locked;\n}\n.@{icon-prefix}-maintenance:before {\n  content: @pficon-var-maintenance;\n}\n.@{icon-prefix}-memory:before {\n  content: @pficon-var-memory;\n}\n.@{icon-prefix}-middleware:before {\n  content: @pficon-var-middleware;\n}\n.@{icon-prefix}-migration:before {\n  content: @pficon-var-migration;\n}\n.@{icon-prefix}-monitoring:before {\n  content: @pficon-var-monitoring;\n}\n.@{icon-prefix}-network:before {\n  content: @pficon-var-network;\n}\n.@{icon-prefix}-network-range:before {\n  content: @pficon-var-network-range;\n}\n.@{icon-prefix}-on:before {\n  content: @pficon-var-on;\n}\n.@{icon-prefix}-on-running:before {\n  content: @pficon-var-on-running;\n}\n.@{icon-prefix}-optimize:before {\n  content: @pficon-var-optimize;\n}\n.@{icon-prefix}-orders:before {\n  content: @pficon-var-orders;\n}\n.@{icon-prefix}-off:before {\n  content: @pficon-var-off;\n}\n.@{icon-prefix}-ok:before {\n  color: @brand-success;\n  content: @pficon-var-ok;\n}\n.@{icon-prefix}-paused:before {\n  content: @pficon-var-paused;\n}\n.@{icon-prefix}-pending:before {\n  content: @pficon-var-pending;\n}\n.@{icon-prefix}-plugged:before {\n  content: @pficon-var-plugged;\n}\n.@{icon-prefix}-port:before {\n  content: @pficon-var-port;\n}\n.@{icon-prefix}-print:before {\n  content: @pficon-var-print;\n}\n.@{icon-prefix}-process-automation:before {\n  content: @pficon-var-process-automation;\n}\n.@{icon-prefix}-private:before {\n  content: @pficon-var-private;\n}\n.@{icon-prefix}-project:before {\n  content: @pficon-var-project;\n}\n.@{icon-prefix}-rebalance:before {\n  content: @pficon-var-rebalance;\n}\n.@{icon-prefix}-rebooting:before {\n  content: @pficon-var-rebooting;\n}\n.@{icon-prefix}-refresh:before, // class name deprecated\n.@{icon-prefix}-restart:before {\n  content: @pficon-var-restart;\n}\n.@{icon-prefix}-regions:before {\n  content: @pficon-var-regions;\n}\n.@{icon-prefix}-registry:before {\n  content: @pficon-var-registry;\n}\n.@{icon-prefix}-remove:before {\n  content: @pficon-var-remove;\n}\n.@{icon-prefix}-replicator:before {\n  content: @pficon-var-replicator;\n}\n.@{icon-prefix}-repository:before {\n  content: @pficon-var-repository;\n}\n.@{icon-prefix}-resource-pool:before {\n  content: @pficon-var-resource-pool;\n}\n.@{icon-prefix}-resources-almost-empty:before {\n  content: @pficon-var-resources-almost-empty;\n}\n.@{icon-prefix}-resources-almost-full:before {\n  content: @pficon-var-resources-almost-full;\n}\n.@{icon-prefix}-resources-full:before {\n  content: @pficon-var-resources-full;\n}\n.@{icon-prefix}-route:before {\n  content: @pficon-var-route;\n}\n.@{icon-prefix}-running:before {\n  content: @pficon-var-running;\n}\n.@{icon-prefix}-satellite:before {\n  content: @pficon-var-satellite;\n}\n.@{icon-prefix}-save:before {\n  content: @pficon-var-save;\n}\n.@{icon-prefix}-screen:before {\n  content: @pficon-var-screen;\n}\n.@{icon-prefix}-search:before {\n  content: @pficon-var-search;\n}\n.@{icon-prefix}-security:before {\n  content: @pficon-var-security;\n}\n.@{icon-prefix}-server:before {\n  content: @pficon-var-server;\n}\n.@{icon-prefix}-server-group:before {\n  content: @pficon-var-server-group;\n}\n.@{icon-prefix}-service:before {\n  content: @pficon-var-service;\n}\n.@{icon-prefix}-services:before {\n  content: @pficon-var-services;\n}\n.@{icon-prefix}-service-catalog:before {\n  content: @pficon-var-service-catalog;\n}\n.@{icon-prefix}-settings:before {\n  content: @pficon-var-settings;\n}\n.@{icon-prefix}-spinner:before {\n  content: @pficon-var-spinner;\n}\n.@{icon-prefix}-spinner2:before {\n  content: @pficon-var-spinner2;\n}\n.@{icon-prefix}-storage-domain:before {\n  content: @pficon-var-storage-domain;\n}\n.@{icon-prefix}-template:before {\n  content: @pficon-var-template;\n}\n.@{icon-prefix}-tenant:before {\n  content: @pficon-var-tenant;\n}\n.@{icon-prefix}-thumb-tack-o:before {\n  content: @pficon-var-thumb-tack-o;\n}\n.@{icon-prefix}-topology:before {\n  content: @pficon-var-topology;\n}\n.@{icon-prefix}-trend-down:before {\n  content: @pficon-var-trend-down;\n}\n.@{icon-prefix}-trend-up:before {\n  content: @pficon-var-trend-up;\n}\n.@{icon-prefix}-unknown:before {\n  content: @pficon-var-unknown;\n}\n.@{icon-prefix}-user:before {\n  content: @pficon-var-user;\n}\n.@{icon-prefix}-users:before {\n  content: @pficon-var-users;\n}\n.@{icon-prefix}-unlocked:before {\n  content: @pficon-var-unlocked;\n}\n.@{icon-prefix}-unplugged:before {\n  content: @pficon-var-unplugged;\n}\n.@{icon-prefix}-vcenter:before {\n  content: @pficon-var-vcenter;\n}\n.@{icon-prefix}-virtual-machine:before {\n  content: @pficon-var-virtual-machine;\n}\n.@{icon-prefix}-volume:before {\n  content: @pficon-var-volume;\n}\n.@{icon-prefix}-warning-triangle-o:before {\n  color: @brand-warning;\n  content: @pficon-var-warning-triangle-o;\n}\n.@{icon-prefix}-zone:before {\n  content: @pficon-var-zone;\n}\n","//\n// Info Tip\n// --------------------------------------------------\n\n// Overwrites for navbar.less\n.navbar-nav > li > .dropdown-menu.infotip {\n  border-top-width: 1px !important;\n  margin-top: @popover-arrow-width;\n}\n\n// Overwrites for PatternFly - navbar.less\n@media (max-width: @grid-float-breakpoint-max) {\n  .navbar-pf .navbar-nav .open .dropdown-menu.infotip {\n    background-color: @color-pf-white !important;\n    margin-top: 0;\n  }\n}\n\n// Extends \"dropdown-menu\"\n.infotip {\n  min-width: 235px;\n  padding: 0;\n  .list-group {\n    border-top: 0;\n    margin: 0;\n    padding: 8px 0;\n    .list-group-item {\n      border: none;\n      margin: 0 15px 0 34px;\n      padding: 5px 0;\n      > .i {\n        color: @gray-pf;\n        font-size: 13px;\n        left: -20px;\n        position: absolute;\n        top: 8px;\n      }\n      > a {\n        color: @gray-pf;\n        line-height: 13px;\n      }\n      > .close {\n        float: right;\n      }\n    }\n  }\n  .footer {\n    background-color: @color-pf-black-150;\n    padding: 6px 15px;\n    a:hover {\n      color: @link-color;\n    }\n  }\n}\n\n// Arrows (Copy from popovers.less)\n//\n// .arrow is outer, .arrow:after is inner\n\n.infotip .arrow {\n  &,\n  &:after {\n    border-color: transparent;\n    border-style: solid;\n    display: block;\n    height: 0;\n    position: absolute;\n    width: 0;\n  }\n}\n.infotip .arrow {\n  border-width: @popover-arrow-outer-width;\n}\n.infotip .arrow:after {\n  border-width: @popover-arrow-width;\n  content: \"\";\n}\n\n.infotip {\n  &.bottom .arrow,\n  &.bottom-left .arrow,\n  &.bottom-right .arrow {\n    border-bottom-color: @popover-arrow-outer-color;\n    border-top-width: 0;\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    top: -@popover-arrow-outer-width;\n    &:after {\n      border-top-width: 0;\n      border-bottom-color: @popover-arrow-color;\n      content: \" \";\n      margin-left: -@popover-arrow-width;\n      top: 1px;\n    }\n  }\n  &.bottom-left .arrow {\n    left: 20%;\n  }\n  // Default:\n  &.bottom-right .arrow {\n    left: 80%;\n  }\n  &.top .arrow {\n    border-bottom-width: 0;\n    border-top-color: @popover-arrow-outer-color;\n    bottom: -@popover-arrow-outer-width;\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    &:after {\n      border-bottom-width: 0;\n      border-top-color: @color-pf-black-150;\n      bottom: 1px;\n      content: \" \";\n      margin-left: -@popover-arrow-width;\n    }\n  }\n  &.right .arrow {\n    border-left-width: 0;\n    border-right-color: @popover-arrow-outer-color;\n    left: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    top: 50%;\n    &:after {\n      bottom: -@popover-arrow-width;\n      border-left-width: 0;\n      border-right-color: @popover-arrow-color;\n      content: \" \";\n      left: 1px;\n    }\n  }\n  &.left .arrow {\n    border-left-color: @popover-arrow-outer-color;\n    border-right-width: 0;\n    margin-top: -@popover-arrow-outer-width;\n    right: -@popover-arrow-outer-width;\n    top: 50%;\n    &:after {\n      border-left-color: @popover-arrow-color;\n      border-right-width: 0;\n      bottom: -@popover-arrow-width;\n      content: \" \";\n      right: 1px;\n    }\n  }\n}\n","//\n// Layouts\n// --------------------------------------------------\n.layout-pf {\n  &,\n  & body {\n    min-height: 100%;\n  }\n  &.layout-pf-fixed {\n    &.transitions .container-pf-nav-pf-vertical {\n      transition: @flyout-transition-pf;\n    }\n    body {\n      padding-top: @navbar-pf-height; // make space for the navbar\n    }\n    .navbar-pf {\n      left: 0;\n      position: fixed;\n      top:0;\n      right: 0;\n      z-index: 1030;\n    }\n    .container-pf-nav-pf-vertical {\n      margin-left: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        margin-left: @nav-pf-vertical-badges-width;\n      }\n      &.collapsed-nav {\n        margin-left: @nav-pf-vertical-collapsed-width;\n        &.hidden-icons-pf {\n          margin-left: 0;\n        }\n      }\n      &.hidden-nav {\n        margin-left: 0; // remove space as left nav is hidden\n      }\n      &.hide-nav-pf {\n        margin-left: 0 !important;\n      }\n      &.collapsed-secondary-nav-pf, &.collapsed-tertiary-nav-pf {\n        margin-left: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          margin-left: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.nav-pf-persistent-secondary.secondary-visible-pf {\n        @media (min-width: 1200px) {\n          margin-left: (@nav-pf-vertical-width + @nav-pf-vertical-width);\n          &.nav-pf-vertical-with-badges {\n            margin-left: (@nav-pf-vertical-badges-width + @nav-pf-vertical-badges-width);\n          }\n          &.hidden-nav {\n            margin-left: 0; // remove space as left nav is hidden\n          }\n          &.collapsed-secondary-nav-pf {\n            margin-left: @nav-pf-vertical-width;\n            &.nav-pf-vertical-with-badges {\n              margin-left: @nav-pf-vertical-badges-width;\n            }\n          }\n          &.collapsed-tertiary-nav-pf {\n            margin-left: @nav-pf-vertical-width;\n            &.nav-pf-vertical-with-badges {\n              margin-left: @nav-pf-vertical-badges-width;\n            }\n          }\n          &.collapsed-nav {\n            margin-left: (@nav-pf-vertical-collapsed-width + @nav-pf-vertical-width);\n            &.nav-pf-vertical-with-badges {\n              margin-left: (@nav-pf-vertical-collapsed-width + @nav-pf-vertical-badges-width);\n            }\n            &.collapsed-secondary-nav-pf {\n              margin-left: @nav-pf-vertical-width;\n              &.nav-pf-vertical-with-badges {\n                margin-left: @nav-pf-vertical-badges-width;\n              }\n            }\n            &.collapsed-tertiary-nav-pf {\n              margin-left: @nav-pf-vertical-width;\n              &.nav-pf-vertical-with-badges {\n                margin-left: @nav-pf-vertical-badges-width;\n              }\n            }\n            &.hidden-icons-pf {\n              margin-left: 0;\n            }\n          }\n        }\n      }\n    }\n  }\n  &.layout-pf-fixed-with-footer {\n    body {\n      padding-bottom: @footer-pf-height;\n    }\n  }\n}\n.layout-pf-alt {\n  &,\n  & body {\n    min-height: 100%;\n  }\n  &.layout-pf-alt-fixed {\n    &.layout-pf-alt-fixed-inner-scroll {\n      &,\n      & body {\n        height: 100%;\n        min-height: 0;\n      }\n      .container-pf-alt-nav-pf-vertical-alt {\n        height: 100%;\n        overflow: auto;\n        &.container-cards-pf {\n          margin-top: 0;\n          padding-top: (@grid-gutter-width/2);\n        }\n      }\n    }\n    &.transitions .container-pf-alt-nav-pf-vertical-alt {\n      transition: @flyout-transition-pf;\n    }\n    body {\n      padding-top: @navbar-pf-alt-height; // make space for the navbar\n    }\n    .container-pf-alt-nav-pf-vertical-alt {\n      margin-left: (@nav-pf-vertical-alt-width);\n      &.collapsed-nav {\n        margin-left: (@nav-pf-vertical-alt-collapsed-width); // adjust space for the collapsed left nav\n      }\n      &.hidden-nav {\n        margin-left: 0; // remove space as left nav is hidden\n      }\n    }\n  }\n  &.layout-pf-alt-fixed-with-footer {\n    body {\n      padding-bottom: @footer-pf-alt-height;\n    }\n  }\n}\n","a.disabled {\n  color: @color-pf-black-500;\n  cursor: @cursor-disabled;\n  text-decoration: none;\n}\n","//\n// PatternFly List\n// --------------------------------------------------\n\n.list-pf {\n  border-bottom: 1px solid @list-pf-border-color;\n}\n\n.list-pf-item {\n  border-color: @list-pf-border-color;\n  border-left-color: @color-pf-white;\n  border-right-color: @color-pf-white;\n  border-style: solid;\n  border-width: 1px;\n  border-bottom: none;\n  &:hover {\n    background-color: @list-pf-hover-background-color;\n  }\n  &.active {\n    background-color: @list-pf-header-background-color;\n    border-color: @list-pf-active-border-color;\n    border-bottom-width: 1px;\n    border-bottom-style: solid;\n  }\n}\n\n.list-pf-expansion {\n  background-color: @color-pf-white;\n}\n\n.list-pf-container {\n  align-items: flex-start;\n  display: flex;\n  padding: @list-pf-padding;\n  .list-pf-expansion & {\n    border-top: 1px solid @list-pf-active-border-color;\n  }\n  // when wide enough, if the list is not stacked, then center items vertically\n  @media (min-width: @screen-md-min) {\n    .list-pf:not(.list-pf-stacked) & {\n      align-items: center;\n    }\n  }\n}\n\n.list-pf-chevron {\n  min-width: 1.2em; // ensures that the width does not shift when the chevron is sideways\n}\n\n.list-pf-chevron,\n.list-pf-select {\n  margin-right: 10px;\n  //add the divider line if there is a chevron or a select\n  + .list-pf-content {\n    border-left: 1px solid @color-pf-black-300;\n    padding-left: (@grid-gutter-width/2);\n  }\n  .fa {\n    font-size: 22px;\n  }\n}\n\n// add this class to manage flexed contents in the list item content\n.list-pf-content-flex {\n  align-items: flex-start;\n  display:flex;\n  flex-grow: 1;\n  flex-wrap: nowrap;\n  justify-content: flex-start;\n  min-width: 0;\n  // when wide enough, if the list is not stacked, then center items vertically\n  @media (min-width: @screen-md-min) {\n    .list-pf:not(.list-pf-stacked) & {\n      align-items: center;\n    }\n  }\n}\n\n.list-pf-left {\n  flex-grow: 0;\n  margin-left: 0;\n  margin-right: (@grid-gutter-width/2);\n}\n.list-pf-icon {\n  align-items: center;\n  display:flex;\n  justify-content: center;\n}\n.list-pf-icon-bordered {\n  border-radius: 50%;\n  border: 2px solid @list-view-accented-border;\n}\n.list-pf-icon-small {\n  font-size: 1.4em;\n  height: 30px;\n  line-height: 30px;\n  width: 30px;\n}\n\n\n.list-pf-content-wrapper {\n  align-items: center;\n  display:flex;\n  flex-grow: 1;\n  flex-wrap: wrap;\n  min-width: 0;\n  // when at larger breakpoints, don't stack the contents and add some space between the children\n  @media (min-width: @screen-md-min) {\n    flex-wrap: nowrap;\n    & > * + * {\n      margin-left: @grid-gutter-width;\n    }\n  }\n  // if the list is stacked, then align the contents to the top\n  .list-pf-stacked & {\n    align-items: flex-start;\n  }\n\n}\n\n.list-pf-main-content {\n  align-items: center;\n  display: flex;\n  flex-basis: @list-pf-main-content-width;\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-wrap: wrap;\n  min-width: 0;\n}\n\n// at larger breakpoints, if the list is not stacked, then don't wrap the main contents and add some space between them\n.list-pf:not(.list-pf-stacked) .list-pf-main-content {\n  @media (min-width: @screen-md-min) {\n      flex-wrap: nowrap;\n      width: auto;\n      & > * + * {\n        margin-left: @grid-gutter-width;\n      }\n  }\n}\n\n// Title and description are break-word wrapped; add .text-overflow-pf to truncate and ellipse instead\n.list-pf-title {\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-basis: 100%;\n  font-weight: bold;\n  min-width: 0;\n  word-wrap: break-word;\n}\n.list-pf-description {\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-basis: 100%;\n  min-width: 0;\n  word-wrap: break-word;\n}\n\n.list-pf-additional-content {\n  display: flex;\n  flex-basis: ((100% - @list-pf-main-content-width) + 1%); // this adjusts the proportions but adding up to > 100% allows for proper wrapping\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-wrap: wrap;\n  justify-content: space-between;\n}\n.list-pf-actions {\n  display: flex;\n  align-items: flex-start;\n  flex-grow: 0;\n  margin-left: @grid-gutter-width;\n  //by default, space contents apart\n  & > * + * {\n    margin-left: (@grid-gutter-width / 4);\n  }\n\n}\n","//\n// List View\n// --------------------------------------------------\n\n\n.list-view-pf {\n  .list-group-item {\n    align-items: flex-start;\n    background-clip: padding-box;\n    border-color: transparent #fff;\n    border-style: solid;\n    border-width: 1px;\n    .clearfix(); //IE9 fallback\n    display: flex;\n    flex-wrap: wrap;\n    padding-bottom: 0;\n    padding-top: 0;\n    &.list-view-pf-expand-active {\n      background-color: @list-view-hover-bg;\n      box-shadow: 0 2px 6px rgba(3, 3, 3, .2);\n      z-index: 1;\n    }\n    &.active {\n      color: @list-group-link-color;\n      background-color: @list-view-active-bg;\n      background-clip: border-box;\n      border-color: @list-view-active-border transparent transparent;\n      z-index:auto;\n    }\n    &:hover {\n      background-color: @list-view-hover-bg;\n      border-left-color: transparent;\n      border-right-color: transparent;\n    }\n    &.list-view-pf-expand-active {\n      border: solid 1px @list-view-active-border;\n      &:first-child {\n        border-top-color: @list-view-active-border;\n      }\n    }\n    &:first-child {\n      border-top: 1px solid transparent;\n    }\n    @media (min-width: @screen-md-min) {\n      align-items: center;\n    }\n  }\n  .list-group-item-heading {\n    font-size: @font-size-h3;\n    small {\n      display: block;\n      font-size: (@font-size-base * .8);\n      font-weight: 400;\n    }\n    @media (min-width: @screen-md-min) {\n      flex:     1 0 ~\"calc(25% - 20px)\";\n      float: left; // IE9 fallback\n      font-size: @font-size-base;\n      margin: 0 (@grid-gutter-width/2) 0 0;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      white-space: nowrap;\n      width: ~\"calc(25% - 20px)\"; // IE9 fallback\n    }\n  }\n  .list-group-item-text {\n    color: currentColor !important; // to overwrite color change when active.\n    margin-bottom: 10px;\n    @media (min-width: @screen-md-min) {\n      flex:     1 0 auto; // it covers whats left from the title\n      float: left; // IE9 fallback\n      margin: 0 @grid-gutter-width 0 0;\n      width: ~\"calc(75% - 40px)\" // IE9 fallback\n    }\n  }\n  .close {\n    float: none;\n    position: absolute;\n    right: 15px;\n  }\n}\n.list-view-pf-actions {\n  float: right; // IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-left: (@grid-gutter-width/2);\n  margin-top: (@grid-gutter-width/2);\n  order: 2;\n  button,\n  > a,\n  .dropdown-kebab-pf {\n    margin-left: (@grid-gutter-width/4);\n  }\n  .list-view-pf-top-align & {\n    align-self: flex-start;\n  }\n}\n.list-view-pf-additional-info {\n  align-items: center;\n  display: flex;\n  flex-wrap: wrap;\n  @media (min-width: @screen-md-min) {\n    flex: 1 0 auto; // it covers whats left from summary\n    float: left; // IE9 fallback\n    width: 50%; // IE9 fallback\n  }\n}\n.list-view-pf-additional-info-item {\n  align-items: center;\n  display: inline-block;\n  display: flex;\n  margin-right: (@grid-gutter-width/2);\n  max-width:100%;\n  text-align: center;\n  &.list-view-pf-additional-info-item-stacked {\n    text-align: center;\n    flex-direction: column;\n    strong {\n      font-size: @font-size-h5;\n      line-height: 1em;\n    }\n  }\n  .pficon, .fa {\n    font-size: @font-size-h3;\n    margin-right: (@grid-gutter-width/4);\n  }\n  strong {\n    font-size: @font-size-h3;\n    font-weight: 600;\n    margin-right: 5px;\n  }\n  &:last-child {\n    margin-right: 0;\n  }\n}\n.list-view-pf-additional-info-item-donut-chart { width: 60px; }\n.list-view-pf-body {\n  align-items: center;\n  display: table-cell; //IE9 fallback\n  flex:     1;\n  min-width: 0;\n  vertical-align: top; //IE9 fallback\n  width: 100%; // IE9 fallback, it extends the cell to size of the container\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    display: flex;\n    flex-direction: row;\n  }\n}\n.list-view-pf-checkbox {\n  border-right: 1px solid @list-view-divider;\n  float: left; //IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-right: 15px;\n  margin-top: (@grid-gutter-width/2);\n  padding: 3px (@grid-gutter-width/4) 3px 0;\n  .list-view-pf-top-align & {\n    align-self: flex-start;\n  }\n}\n.list-view-pf-description {\n  flex:     1 0 50%;\n  .list-view-pf-stacked & {\n    display: block;\n    flex: none; // Fix FF\n  }\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    display: flex;\n    float: left; //IE9 fallback\n    width: 50%; //IE9 fallback\n  }\n}\n.list-view-pf-left {\n  display: table-cell; //IE9 fallback\n  padding-right: (@grid-gutter-width/2);\n  text-align: center;\n  vertical-align: top; //IE9 fallback\n  .list-view-pf-calendar {\n    font-size: @font-size-small;\n    line-height: 1em;\n    strong {\n      display: block;\n      font-size: (@font-size-h2 * 2);\n      font-weight: 300;\n      line-height: 1em;\n    }\n  }\n  .pficon, .fa {\n    border-radius: 50%;\n    font-size: 2em;\n    // -md is out of alpha order to get correct bg on -danger\n    &.list-view-pf-icon-md {\n      background-color: @alert-info-bg;\n      height: 50px;\n      line-height: 50px;\n      width: 50px;\n    }\n    &.list-view-pf-icon-danger {\n      background-color: @alert-danger-bg;\n      color: @alert-danger-border;\n    }\n    &.list-view-pf-icon-info {\n      color: @alert-info-border;\n    }\n    &.list-view-pf-icon-lg {\n      background-color: @alert-info-bg;\n      height: 60px;\n      line-height: 60px;\n      width: 60px;\n    }\n    &.list-view-pf-icon-sm {\n      border: 2px solid @list-view-accented-border;\n      font-size: 1.4em;\n      height: 30px;\n      line-height: 30px;\n      width: 30px;\n      &:before {\n        display: block;\n        line-height: 26px;\n      }\n    }\n    &.list-view-pf-icon-success {\n      background-color: @alert-success-bg;\n      color: @alert-success-border;\n    }\n    &.list-view-pf-icon-warning {\n      background-color: @alert-warning-bg;\n      color: @alert-warning-border;\n    }\n  }\n}\n.list-view-pf-main-info {\n  align-items: flex-start;\n  display: flex;\n  flex: 1;\n  min-width: 0;\n  padding-bottom: (@grid-gutter-width/2);\n  padding-top: (@grid-gutter-width/2);\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    .list-view-pf-top-align & {\n      align-items: flex-start;\n    }\n  }\n}\n.list-view-pf-stacked {\n  .list-group-item-heading {\n    float: none; // IE9 fallback\n    font-size: @font-size-h3;\n    line-height: 1.2em;\n    margin-bottom: 5px;\n    margin-right: @grid-gutter-width;\n    width: auto; // IE9 fallback\n  }\n  .list-group-item-text {\n    float: none;\n    width: auto;\n  }\n}\n.list-view-pf-view {\n  background: @list-group-top-border;\n  border: none;\n  margin-top: 30px;\n}\n.list-group-item-header {\n  box-sizing: content-box;\n  cursor: pointer;\n  margin: 0 -15px;\n  padding: 0 15px; //filling the width of the list item\n  width: 100%;\n}\n.list-view-pf-expand {\n  cursor: pointer;\n  float: left; //IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-right: 2px;\n  margin-top: (@grid-gutter-width/2);\n  padding: 3px 0;\n  &.active,\n  &:hover {\n    color: @link-color;\n  }\n  .list-view-pf-additional-info-item & {\n    margin: 0;\n    padding: 0;\n  }\n  .fa-angle-right {\n    cursor: pointer;\n    font-size: (@font-size-large+3);\n    margin-right: 5px;\n    margin-top: 2px;\n    width: 10px;\n  }\n}\n.list-group-item-container {\n  background: #fff;\n  border-top: solid 1px @list-view-active-border;\n  box-sizing: content-box;\n  margin: -1px -15px 0;\n  order: 3;\n  padding: 15px;\n  position: relative;\n  width: 100%;\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n//    contenteditable attribute is included anywhere else in the document.\n//    Otherwise it causes space to appear at the top and bottom of elements\n//    that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n//    `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n  &:before,\n  &:after {\n    content: \" \"; // 1\n    display: table; // 2\n  }\n  &:after {\n    clear: both;\n  }\n}\n","//\n// List View Drag and Drop\n// See: https://github.com/marceljuenemann/angular-drag-and-drop-lists\n// --------------------------------------------------\n\n.list-view-pf-dnd {\n  // Override dnd styles\n  .dndDragging {\n    &.drag-original {\n      display: none;\n      // Show when dragging original list items\n      .list-view-pf-dnd-original-items {\n        display: block;\n      }\n    }\n    // Show dragable list items during move operation\n    .list-view-pf-dnd-drag-items {\n      display: inline-block;\n    }\n    // Hide original list items during dnd move operation\n    .list-view-pf-dnd-original-items {\n      display: none;\n    }\n  }\n  // Override dnd placeholder element for dragging list items to\n  .dndPlaceholder {\n    background-color: @color-pf-black-200;\n    padding: 20px 0;\n  }\n  // A handle decoration shown to left of each list items row\n  .list-group-item-header {\n    margin-left: -10px;\n    &:before {\n      background-image: linear-gradient(to bottom, @color-pf-blue-400 60%, @color-pf-white 0%);\n      background-position: left;\n      background-repeat: repeat-y;\n      background-size: 2px 5px;\n      border: 4px solid @color-pf-blue-400;\n      border-color: @color-pf-blue-500;\n      content: \"\";\n      height: 55px;\n      left: 4px;\n      position: absolute;\n      top: 5px;\n      width: 10px;\n    }\n  }\n}\n\n// Always hide dragable list items until shown during dnd move operation\n.list-view-pf-dnd-drag-items {\n  display: none;\n}\n","//\n// Login\n// --------------------------------------------------\n\n.login-pf {\n  height: 100%;\n  #brand {\n    position: relative;\n    top: -70px;\n    img {\n      display: block;\n      height: 18px;\n      margin: 0 auto;\n      max-width: 100%;\n      @media (min-width: @screen-sm-min) {\n        margin: 0;\n        text-align: left;\n      }\n    }\n  }\n  #badge {\n    display: block;\n    margin: 20px auto 70px;\n    position: relative;\n    text-align: center;\n    @media (min-width: @screen-sm-min) {\n      float: right;\n      margin-right: 64px;\n      margin-top: 50px;\n    }\n  }\n  body {\n    background: @login-bg-color url(\"@{img-path}/@{img-bg-login}\") repeat-x 50% 0;\n    background-size: auto;\n    @media (min-width: @screen-sm-min) {\n      background-size: 100% auto;\n    }\n  }\n  .container {\n    background-color: @login-container-bg-color-rgba;\n    clear: right;\n    color: @color-pf-white;\n    padding-bottom: 40px;\n    padding-top: 20px;\n    width: auto;\n    @media (min-width: @screen-sm-min) {\n      bottom: 13%;\n      padding-left: 80px;\n      position: absolute;\n      width: 100%;\n    }\n    .details {\n      p:first-child {\n        border-top: 1px solid fade(@color-pf-white, 30%);\n        padding-top: 25px;\n        margin-top: 25px;\n      }\n      @media (min-width: @screen-sm-min) {\n        p:first-child {\n          border-top: 0;\n          padding-top: 0;\n          margin-top: 0;\n        }\n        border-left: 1px solid fade(@color-pf-white, 30%);\n        padding-left: 40px;\n      }\n      p {\n        margin-bottom: 2px;\n      }\n    }\n    .form-horizontal {\n      .control-label {\n        font-size: (@font-size-base + 1);\n        font-weight: 400;\n        text-align: left;\n      }\n      .form-group:last-child {\n        &,\n        .help-block:last-child {\n          margin-bottom: 0;\n        }\n      }\n    }\n    .help-block {\n      color: @color-pf-white;\n    }\n    .login {\n      @media (min-width: @screen-sm-min) {\n        padding-right: 40px;\n      }\n    }\n    .submit {\n      text-align: right;\n    }\n  }\n}\n\n//\n// Login\n// The following styles are for the new login\n// --------------------------------------------------\n.login-pf-page {\n  .login-pf-brand {\n    margin-top: @login-pf-brand-margin-top;\n    max-width:360px;\n    width: 70%;\n    @media (min-width: @screen-sm-min) {\n      margin-top: @login-pf-brand-desktop-margin-top;\n    }\n  }\n  .login-pf-page-header {\n    margin-bottom: @login-pf-page-header-margin-bottom;\n      @media (min-width: @screen-sm-min) {\n        margin-bottom: @login-pf-page-header-desktop-margin-bottom;\n      }\n    text-align: center;\n    p {\n      color: @color-pf-white;\n      font-size: @font-size-large;\n      margin-left: auto;\n      margin-right: auto;\n      margin-top: @login-pf-page-header-paragraph-margin-top;\n    }\n  }\n  .card-pf {\n    padding: @login-pf-card-pf-padding;\n    margin-bottom: 0;\n    @media (min-width: @screen-sm-min) {\n      padding: @login-pf-card-pf-desktop-padding;\n    }\n    p {\n      color: @color-pf-black-600;\n    }\n  }\n  .form-control {\n    height: ceil((@input-height-base + 10px ));\n  }\n  .checkbox-label {\n    color: @color-pf-black-600;\n    font-weight: 300;\n    margin-bottom: @login-pf-checkbox-label-margin-bottom;\n    @media (min-width: @screen-sm-min) {\n      margin: 0;\n    }\n  }\n  .btn-primary {\n    margin-top: @login-pf-btn-primary-margin-top;\n  }\n  .login-pf-header {\n    margin-bottom: @login-pf-header-margin-bottom;\n    @media (min-width: @screen-sm-min) {\n      margin-bottom:@login-pf-header-desktop-margin-bottom;\n    }\n    display:flex;\n    flex-direction: column;\n    h1, p {\n      text-align: center;\n    }\n    h1 {\n      font-size: @font-size-h3;\n      @media (min-width: @screen-sm-min) {\n        font-size: @font-size-h1;\n      }\n    }\n    //this is ugly but neccessary to get the desired style :(\n    .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {\n      width: auto;\n      align-self: flex-end;\n      .dropdown-toggle {\n        color: @color-pf-black-700;\n        background: none;\n        padding:0 @login-pf-dropdown-toggle-padding-right 0 0;\n        font-weight: 300;\n        &:not(:focus) {\n          box-shadow: none;\n          border: 1px solid transparent;\n        }\n          .caret {\n            right: 0;\n          }\n      }\n    }\n  }\n  .login-pf-signup {\n    margin: @login-pf-signup-margin-top 0 0;\n    font-size: ceil((@font-size-base * 1.25));\n    text-align: center;\n    a {\n      margin-left: @login-pf-signup-a-margin-left;\n    }\n  }\n  .login-pf-settings {\n    display: flex;\n    justify-content: space-between;\n    flex-wrap: wrap;\n  }\n  .login-pf-page-footer {\n    display: flex;\n    justify-content: center;\n    flex-wrap:wrap;\n    &-links {\n      display: flex;\n      margin: @login-pf-page-footer-links-margin-top 0 0 0;\n        li:not(:last-of-type) {\n          position: relative;\n          margin: 0 @login-pf-page-footer-links-li-margin-right 0 0;\n            &:after {\n              content:\".\";\n              color: @color-pf-white;\n              position: absolute;\n              top: 0px;\n              right: -10px;\n            }\n        }\n    }\n    &-link {\n      color: @color-pf-white;\n      font-size: @font-size-large;\n    }\n    &-sso-services {\n      flex: 1 0 100%;\n      margin-top: @login-pf-page-footer-sso-margin-top;\n      text-align: center;\n      color: @color-pf-white;\n      &-logos {\n        display: flex;\n        flex-wrap: wrap;\n        padding: 0;\n        margin: 0;\n        list-style: none;\n        justify-content: center;\n          li {\n            margin: 0 @login-pf-page-footer-sso-logos-li-margin @login-pf-page-footer-sso-logos-li-margin;\n          }\n      }\n    }\n  }//login-pf-footer\n\n\n  // The following styles are for the login page with different account options\n  // --------------------------------------------------------------------------\n\n  &.login-pf-page-accounts {\n    margin-left: @login-pf-page-accounts-margin;\n    margin-right: @login-pf-page-accounts-margin;\n  }\n  .login-pf-accounts {\n    display: flex;\n    justify-content: space-between;\n    flex-wrap: wrap;\n    .login-pf-header, .login-pf-signup {\n      flex-basis: 100%;\n    }\n    max-width: @login-pf-card-pf-max-width;\n    margin-left: auto;\n    margin-right: auto;\n  }\n  .login-pf-social-section {\n    flex-basis: 100%;\n    padding:0;\n    @media (min-width: @screen-sm-min) {\n    flex:0 1 50%;\n    max-width:50%;// this is for IE10/11 that doesn't consider padding with box-sizing on flex-children.\n    }\n    @media (min-width: @screen-sm-min) {\n      &:first-of-type {\n        padding-right: @login-pf-accounts-section-heading-desktop-padding-right;\n      }\n      &:last-of-type {\n        padding-left: ceil((@login-pf-accounts-section-heading-desktop-padding-left - 1px));\n        border-left: 1px solid @color-pf-black-300;\n      }\n    }\n  }//social-section\n  .login-pf-social {\n    margin: @login-pf-social-margin;\n    @media (min-width: @screen-sm-min) {\n      margin: 0;\n      &-double-col {\n        flex-wrap: wrap;\n        display: flex;\n        justify-content: space-between;\n        .login-pf-social-link {\n          flex-basis: 48%;\n        }\n      }\n    }\n\n    &:not(.login-pf-social-all) {\n      .login-pf-social-link-more {\n        display: none;\n      }\n    }\n\n    &-link {\n        margin-bottom: @login-pf-accounts-link-margin-bottom;\n      a {\n        display: block;\n        padding: @login-pf-accounts-link-a-padding 0;\n        font-size: @font-size-large;\n        background: @color-pf-black-150;\n        text-align: center;\n        color: @color-pf-black-600;\n          img {\n            margin: 0 @login-pf-accounts-link-img-margin-right 0 0;\n            width: 20px;\n            height: 20px;\n          }\n          &:hover {\n            text-decoration: none;\n            background: @color-pf-black-200;\n          }\n      }\n    }\n    &-toggle {\n      float: right;\n      padding: 0;\n      .caret {\n        margin-left: @login-pf-accounts-more-caret-margin-left;\n      }\n      &-active {\n        .caret {\n          transform: rotate(-180deg);\n        }\n      }\n    }\n  }\n\n}//login-pf-page\n","//\n// Navbar\n// --------------------------------------------------\n\n.navbar-pf {\n  background: @navbar-pf-bg-color;\n  border: 0;\n  border-radius: 0;\n  border-top: 3px solid @navbar-pf-border-color;\n  margin-bottom: 0;\n  min-height: 0;\n  .navbar-brand {\n    color: @navbar-pf-active-color;\n    height: auto;\n    padding: 12px 0;\n    margin: 0 0 0 20px;\n    img {\n      display: block;\n    }\n  }\n  .navbar-collapse {\n    border-top: 0;\n    .box-shadow(none);\n    padding: 0;\n  }\n  .navbar-header {\n    border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n    float: none;\n  }\n  .navbar-nav {\n    margin: 0;\n    > .active > a,\n    > .active > a:hover,\n    > .active > a:focus {\n      background-color: @navbar-pf-navbar-nav-active-bg-color;\n      color: @navbar-pf-active-color;\n    }\n    > li > a {\n      color: @navbar-pf-color;\n      line-height: 1;\n      padding: 10px 20px;\n      text-shadow: none;\n      &:hover,\n      &:focus {\n        color: @navbar-pf-active-color;\n      }\n    }\n    > .open {\n      > a {\n        &,\n        &:hover,\n        &:focus {\n          background-color: @navbar-pf-navbar-nav-active-bg-color;\n          color: @navbar-pf-active-color;\n        }\n      }\n    }\n .badge {\n    background-color: @notification-badge-color;\n    border-radius: 20px;\n    color: @navbar-pf-vertical-active-color;\n    cursor: pointer;\n    font-size: (@font-size-base - 3);\n    font-weight: 700;\n    left: 26px;\n    margin: 0;\n    padding: 2px 4px;\n    position: absolute;\n    min-width: 10px;\n    min-height: 10px;\n    top: 6px;\n    @media(min-width: @screen-sm-min) {\n      left: auto;\n      right: 6px;\n      top: 3px;\n    }\n    &.badge-pf-bordered {\n      border: 1px solid @navbar-pf-bg-color;\n    }\n}\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      .active .dropdown-menu,\n      .active .navbar-persistent,\n      .open .dropdown-menu {\n        background-color: @navbar-pf-navbar-nav-active-active-bg-color !important;\n        margin-left: 0;\n        padding-bottom: 0;\n        padding-top: 0;\n        > .active > a,\n        .dropdown-submenu.open > a {\n          &,\n          &:hover,\n          &:focus {\n            background-color: @navbar-pf-navbar-nav-active-active-open-bg-color !important;\n            color: @navbar-pf-active-color;\n          }\n        }\n        > li > a {\n          background-color: transparent;\n          border: 0;\n          color: @navbar-pf-color;\n          outline: none;\n          padding-left: 30px;\n          &:hover {\n            color: @navbar-pf-active-color;\n          }\n        }\n        .divider {\n          background-color: @navbar-pf-navbar-header-border-color;\n          margin: 0 1px;\n        }\n        .dropdown-header {\n          padding-bottom: 0;\n          padding-left: 30px;\n        }\n        .dropdown-submenu {\n          &.open .dropdown-toggle {\n            color: @navbar-pf-active-color;\n          }\n          &.pull-left {\n            float: none !important;\n          }\n          > a:after {\n            display: none;\n          }\n          .dropdown-header {\n            padding-left: 45px;\n          }\n          .dropdown-menu {\n            border: 0;\n            bottom: auto;\n            .box-shadow(none);\n            display: block;\n            float: none;\n            margin: 0;\n            min-width: 0;\n            padding: 0;\n            position: relative;\n            left: auto;\n            right: auto;\n            top: auto;\n            > li > a {\n              padding: 5px 15px 5px 45px;\n              line-height: 20px;\n            }\n            .dropdown-menu > li > a {\n              padding-left: 60px;\n            }\n          }\n        }\n      }\n      .active .navbar-persistent {\n        .dropdown-submenu {\n          &.open .dropdown-menu {\n            display: block;\n          }\n          > a:after {\n            display: inline-block !important;\n            position: relative;\n            right: auto;\n            top: 1px;\n          }\n          .dropdown-menu {\n            display: none;\n          }\n          .dropdown-submenu > a:after {\n            display: none !important;\n          }\n        }\n      }\n      .context-bootstrap-select { // Also see bootstrap-select.less\n        .open > .dropdown-menu {\n          background-color: @color-pf-white !important;\n          > .active > a {\n            &,\n            &:active {\n              background-color: @dropdown-link-hover-bg !important;\n              border-color: @dropdown-link-hover-border-color !important;\n              color: @gray-dark !important;\n              small {\n                color: @gray-light !important;\n              }\n            }\n          }\n          > .disabled > a {\n            color: @gray-light !important;\n          }\n          > .selected > a {\n            &,\n            &:active {\n              background-color: @dropdown-link-active-bg !important;\n              border-color: @dropdown-link-active-border-color !important;\n              color: @color-pf-white !important;\n              small {\n                color: fade(@color-pf-white, 50%) !important;\n              }\n            }\n          }\n          li {\n            > a.opt {\n              border-bottom: 1px solid transparent;\n              border-top: 1px solid transparent;\n              color: @gray-dark;\n              padding-left: 10px;\n              padding-right: 10px;\n            }\n            & a {\n              &:active small {\n                color: fade(@color-pf-white, 50%) !important;\n              }\n              &:hover,\n              &:focus {\n                small {\n                  color: @gray-light;\n                }\n              }\n            }\n          }\n        }\n        > .open > .dropdown-menu {\n          padding-bottom: 5px;\n          padding-top: 5px;\n        }\n      }\n    }\n  }\n  .navbar-persistent {\n    display: none;\n  }\n  .active > .navbar-persistent {\n    display: block;\n  }\n  .navbar-primary {\n    float: none;\n    .context {\n      border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n      &.context-bootstrap-select .bootstrap-select.btn-group {\n        &,\n        &[class*=\"span\"] {\n          margin: 8px 20px 9px;\n          width: auto; // known bug:  IE8 will make it as wide as the longest string\n        }\n      }\n    }\n    > li > .navbar-persistent > .dropdown-submenu > a {\n      position: relative;\n      &:after {\n        content: @fa-var-angle-down;\n        display: inline-block;\n        font-family: @icon-font-name-fa;\n        font-weight: normal;\n        @media (max-width: @grid-float-breakpoint-max) {\n          height: 10px;\n          margin-left: 4px;\n          vertical-align: baseline;\n        }\n      }\n    }\n  }\n  .navbar-toggle {\n    border: 0;\n    margin: 0;\n    padding: 10px 20px;\n    &:hover,\n    &:focus {\n      background-color: transparent;\n      outline: none;\n      .icon-bar {\n        .box-shadow(0 0 3px @color-pf-white);\n      }\n    }\n    .icon-bar {\n      background-color: @navbar-pf-icon-bar-bg-color;\n    }\n  }\n  .navbar-utility {\n    border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n    li.dropdown > .dropdown-toggle {\n      padding-left: 36px;\n      position: relative;\n      .pficon-user {\n        left: 20px;\n        position: absolute;\n        top: 10px;\n      }\n    }\n    @media (max-width: @grid-float-breakpoint-max) {\n      > li + li {\n        border-top: 1px solid @navbar-pf-navbar-header-border-color;\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-pf {\n    .navbar-brand {\n      padding: @navbar-pf-navbar-navbar-brand-padding;\n    }\n    .navbar-nav > li > a {\n      padding-bottom: 14px;\n      padding-top: 14px;\n    }\n    .navbar-persistent {\n      font-size: @font-size-large;\n    }\n    .navbar-primary {\n      font-size: @font-size-large;\n      #gradient > .vertical(@navbar-pf-navbar-primary-bg-color-start, @navbar-pf-navbar-primary-bg-color-stop);\n      &.persistent-secondary {\n        .context {\n          .dropdown-menu {\n            top: auto;\n          }\n        }\n        .dropup .dropdown-menu {\n          bottom: -5px;\n          top: auto;\n        }\n        > li {\n          position: static;\n          &.active {\n            margin-bottom: 32px;\n            > .navbar-persistent {\n              display: block;\n              left: 0;\n              position: absolute;\n            }\n          }\n          > .navbar-persistent {\n            background: @navbar-pf-navbar-navbar-persistent-bg-color;\n            border-bottom: 1px solid @navbar-pf-navbar-navbar-persistent-border-color;\n            padding: 0;\n            width: 100%;\n            a {\n              text-decoration: none !important;\n            }\n            > li {\n              &.active {\n                &,\n                &:hover {\n                  .tab-indicator(@background: @nav-tabs-active-link-hover-color, @left: 20px, @right: 20px);\n                }\n                > a,\n                > a:hover,\n                &:hover > a {\n                  color: @link-color !important;\n                }\n                .active > a {\n                  color: @navbar-pf-active-color;\n                }\n              }\n              &.dropdown-submenu {\n                &:hover > .dropdown-menu {\n                  display: none;\n                }\n                &.open {\n                  > .dropdown-menu {\n                    display: block;\n                    left: 20px;\n                    margin-top: 1px;\n                    top: 100%;\n                  }\n                  > .dropdown-toggle {\n                    color: @gray-darker;\n                    &:after {\n                      border-top-color: @gray-darker;\n                    }\n                  }\n                }\n                > .dropdown-toggle {\n                  padding-right: 35px !important;\n                  &:after {\n                    position: absolute;\n                    right: 20px;\n                    top: 10px;\n                  }\n                }\n              }\n              &:hover,\n              &.open {\n                .tab-indicator(@left: 20px, @right: 20px);\n                > a {\n                  color: @gray-darker;\n                  &:after {\n                    border-top-color: @gray-darker;\n                  }\n                }\n              }\n              > a {\n                background-color: transparent;\n                display: block;\n                line-height: 1;\n                padding: 9px 20px;\n                &.dropdown-toggle {\n                  padding-right: 35px;\n                  &:after {\n                    font-size: (@font-size-large + 1);\n                    position: absolute;\n                    right: 20px;\n                    top: 9px;\n                  }\n                }\n                &:hover {\n                  color: @gray-darker;\n                }\n              }\n              a {\n                color: @gray-pf;\n              }\n            }\n          }\n        }\n      }\n      > li > a {\n        border-bottom: 1px solid transparent;\n        border-top: 1px solid transparent;\n        position: relative;\n        margin: -1px 0 0;\n        &:hover {\n          background-color: @navbar-pf-navbar-primary-hover-bg-color-stop;\n          border-top-color: @navbar-pf-navbar-primary-hover-border-color;\n          color: @navbar-pf-color;\n          #gradient > .vertical(@navbar-pf-navbar-primary-hover-bg-color-start, @navbar-pf-navbar-primary-hover-bg-color-stop);\n        }\n      }\n      > .active > a,\n      > .active > a:hover,\n      > .active > a:focus,\n      > .open > a,\n      > .open > a:hover,\n      > .open > a:focus {\n        background-color: @navbar-pf-navbar-primary-active-bg-color-stop;\n        border-bottom-color: @navbar-pf-navbar-primary-active-bg-color-stop;\n        border-top-color: @navbar-pf-navbar-primary-active-border-color;\n        .box-shadow(none);\n        color: @navbar-pf-active-color;\n        #gradient > .vertical(@navbar-pf-navbar-primary-active-bg-color-start, @navbar-pf-navbar-primary-active-bg-color-stop);\n      }\n      li.context {\n        &.context-bootstrap-select .filter-option {\n          max-width: 160px;\n          text-overflow: ellipsis;\n        }\n        &.dropdown {\n          border-bottom: 0;\n        }\n        > a,\n        &.context-bootstrap-select {\n          background-color: @navbar-pf-navbar-primary-context-bg-color-stop;\n          border-bottom-color: @navbar-pf-navbar-primary-context-border-color;\n          border-right: 1px solid @navbar-pf-navbar-primary-context-border-color;\n          border-top-color: @navbar-pf-navbar-primary-context-border-top-color;\n          font-weight: 600;\n          #gradient > .vertical(@navbar-pf-navbar-primary-context-bg-color-start, @navbar-pf-navbar-primary-context-bg-color-stop);\n          &:hover {\n            background-color: @navbar-pf-navbar-primary-context-hover-bg-color-stop;\n            border-bottom-color: @navbar-pf-navbar-primary-context-hover-border-color;\n            border-right-color: @navbar-pf-navbar-primary-context-hover-border-color;\n            border-top-color: @navbar-pf-navbar-primary-context-hover-border-top-color;\n            #gradient > .vertical(@navbar-pf-navbar-primary-context-hover-bg-color-start, @navbar-pf-navbar-primary-context-hover-bg-color-stop);\n          }\n        }\n        &.open > a {\n          background-color: @navbar-pf-navbar-primary-context-active-bg-color-stop;\n          border-bottom-color: @navbar-pf-navbar-primary-context-active-border-color;\n          border-right-color: @navbar-pf-navbar-primary-context-active-border-right-color;\n          border-top-color: @navbar-pf-navbar-primary-context-active-border-top-color;\n          #gradient > .vertical(@navbar-pf-navbar-primary-context-active-bg-color-start, @navbar-pf-navbar-primary-context-active-bg-color-stop);\n        }\n      }\n    }\n    .navbar-utility {\n      border-bottom: 0;\n      font-size: @font-size-small;\n      position: absolute;\n      right: 0;\n      top: 0;\n      > .active > a,\n      > .active > a:hover,\n      > .active > a:focus,\n      > .open > a,\n      > .open > a:hover,\n      > .open > a:focus {\n        background: @navbar-pf-navbar-utility-open-bg-color;\n        color: @navbar-pf-navbar-utility-color;\n      }\n      > li > a {\n        border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n        color: @navbar-pf-navbar-utility-color !important;\n        padding: 7px 10px;\n        &:hover {\n          background: @navbar-pf-navbar-utility-hover-bg-color;\n          border-left-color: @navbar-pf-navbar-utility-hover-border-color;\n        }\n      }\n      > li.open > a {\n        border-left-color: @navbar-pf-navbar-utility-open-border-color;\n        color: @navbar-pf-active-color !important;\n      }\n      li.dropdown > .dropdown-toggle {\n        padding-left: 26px;\n        .pficon-user {\n          left: 10px;\n          top: 7px;\n        }\n      }\n      .open .dropdown-menu {\n        left: auto;\n        right: 0;\n        .dropdown-menu {\n          left: auto;\n          right: 100%;\n        }\n      }\n    }\n    .navbar-utility .open .dropdown-menu {\n        border-top-width: 0;\n    }\n    .open {\n      &.bootstrap-select .dropdown-menu,\n      .dropdown-submenu > .dropdown-menu {\n        border-top-width: 1px !important;\n      }\n    }\n  }\n}\n@media (max-width: 360px) {\n  .navbar-pf {\n    .navbar-brand {\n      margin-left: 10px;\n      width: 75%;\n      img {\n        height: auto;\n        max-width: 100%;\n      }\n    }\n    .navbar-toggle {\n      padding-left: 0;\n    }\n  }\n}\n","// Variables\n// --------------------------\n\n@fa-font-path:        \"../fonts\";\n@fa-font-size-base:   14px;\n@fa-line-height-base: 1;\n//@fa-font-path:        \"//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts\"; // for referencing Bootstrap CDN font files directly\n@fa-css-prefix:       fa;\n@fa-version:          \"4.7.0\";\n@fa-border-color:     #eee;\n@fa-inverse:          #fff;\n@fa-li-width:         (30em / 14);\n\n@fa-var-500px: \"\\f26e\";\n@fa-var-address-book: \"\\f2b9\";\n@fa-var-address-book-o: \"\\f2ba\";\n@fa-var-address-card: \"\\f2bb\";\n@fa-var-address-card-o: \"\\f2bc\";\n@fa-var-adjust: \"\\f042\";\n@fa-var-adn: \"\\f170\";\n@fa-var-align-center: \"\\f037\";\n@fa-var-align-justify: \"\\f039\";\n@fa-var-align-left: \"\\f036\";\n@fa-var-align-right: \"\\f038\";\n@fa-var-amazon: \"\\f270\";\n@fa-var-ambulance: \"\\f0f9\";\n@fa-var-american-sign-language-interpreting: \"\\f2a3\";\n@fa-var-anchor: \"\\f13d\";\n@fa-var-android: \"\\f17b\";\n@fa-var-angellist: \"\\f209\";\n@fa-var-angle-double-down: \"\\f103\";\n@fa-var-angle-double-left: \"\\f100\";\n@fa-var-angle-double-right: \"\\f101\";\n@fa-var-angle-double-up: \"\\f102\";\n@fa-var-angle-down: \"\\f107\";\n@fa-var-angle-left: \"\\f104\";\n@fa-var-angle-right: \"\\f105\";\n@fa-var-angle-up: \"\\f106\";\n@fa-var-apple: \"\\f179\";\n@fa-var-archive: \"\\f187\";\n@fa-var-area-chart: \"\\f1fe\";\n@fa-var-arrow-circle-down: \"\\f0ab\";\n@fa-var-arrow-circle-left: \"\\f0a8\";\n@fa-var-arrow-circle-o-down: \"\\f01a\";\n@fa-var-arrow-circle-o-left: \"\\f190\";\n@fa-var-arrow-circle-o-right: \"\\f18e\";\n@fa-var-arrow-circle-o-up: \"\\f01b\";\n@fa-var-arrow-circle-right: \"\\f0a9\";\n@fa-var-arrow-circle-up: \"\\f0aa\";\n@fa-var-arrow-down: \"\\f063\";\n@fa-var-arrow-left: \"\\f060\";\n@fa-var-arrow-right: \"\\f061\";\n@fa-var-arrow-up: \"\\f062\";\n@fa-var-arrows: \"\\f047\";\n@fa-var-arrows-alt: \"\\f0b2\";\n@fa-var-arrows-h: \"\\f07e\";\n@fa-var-arrows-v: \"\\f07d\";\n@fa-var-asl-interpreting: \"\\f2a3\";\n@fa-var-assistive-listening-systems: \"\\f2a2\";\n@fa-var-asterisk: \"\\f069\";\n@fa-var-at: \"\\f1fa\";\n@fa-var-audio-description: \"\\f29e\";\n@fa-var-automobile: \"\\f1b9\";\n@fa-var-backward: \"\\f04a\";\n@fa-var-balance-scale: \"\\f24e\";\n@fa-var-ban: \"\\f05e\";\n@fa-var-bandcamp: \"\\f2d5\";\n@fa-var-bank: \"\\f19c\";\n@fa-var-bar-chart: \"\\f080\";\n@fa-var-bar-chart-o: \"\\f080\";\n@fa-var-barcode: \"\\f02a\";\n@fa-var-bars: \"\\f0c9\";\n@fa-var-bath: \"\\f2cd\";\n@fa-var-bathtub: \"\\f2cd\";\n@fa-var-battery: \"\\f240\";\n@fa-var-battery-0: \"\\f244\";\n@fa-var-battery-1: \"\\f243\";\n@fa-var-battery-2: \"\\f242\";\n@fa-var-battery-3: \"\\f241\";\n@fa-var-battery-4: \"\\f240\";\n@fa-var-battery-empty: \"\\f244\";\n@fa-var-battery-full: \"\\f240\";\n@fa-var-battery-half: \"\\f242\";\n@fa-var-battery-quarter: \"\\f243\";\n@fa-var-battery-three-quarters: \"\\f241\";\n@fa-var-bed: \"\\f236\";\n@fa-var-beer: \"\\f0fc\";\n@fa-var-behance: \"\\f1b4\";\n@fa-var-behance-square: \"\\f1b5\";\n@fa-var-bell: \"\\f0f3\";\n@fa-var-bell-o: \"\\f0a2\";\n@fa-var-bell-slash: \"\\f1f6\";\n@fa-var-bell-slash-o: \"\\f1f7\";\n@fa-var-bicycle: \"\\f206\";\n@fa-var-binoculars: \"\\f1e5\";\n@fa-var-birthday-cake: \"\\f1fd\";\n@fa-var-bitbucket: \"\\f171\";\n@fa-var-bitbucket-square: \"\\f172\";\n@fa-var-bitcoin: \"\\f15a\";\n@fa-var-black-tie: \"\\f27e\";\n@fa-var-blind: \"\\f29d\";\n@fa-var-bluetooth: \"\\f293\";\n@fa-var-bluetooth-b: \"\\f294\";\n@fa-var-bold: \"\\f032\";\n@fa-var-bolt: \"\\f0e7\";\n@fa-var-bomb: \"\\f1e2\";\n@fa-var-book: \"\\f02d\";\n@fa-var-bookmark: \"\\f02e\";\n@fa-var-bookmark-o: \"\\f097\";\n@fa-var-braille: \"\\f2a1\";\n@fa-var-briefcase: \"\\f0b1\";\n@fa-var-btc: \"\\f15a\";\n@fa-var-bug: \"\\f188\";\n@fa-var-building: \"\\f1ad\";\n@fa-var-building-o: \"\\f0f7\";\n@fa-var-bullhorn: \"\\f0a1\";\n@fa-var-bullseye: \"\\f140\";\n@fa-var-bus: \"\\f207\";\n@fa-var-buysellads: \"\\f20d\";\n@fa-var-cab: \"\\f1ba\";\n@fa-var-calculator: \"\\f1ec\";\n@fa-var-calendar: \"\\f073\";\n@fa-var-calendar-check-o: \"\\f274\";\n@fa-var-calendar-minus-o: \"\\f272\";\n@fa-var-calendar-o: \"\\f133\";\n@fa-var-calendar-plus-o: \"\\f271\";\n@fa-var-calendar-times-o: \"\\f273\";\n@fa-var-camera: \"\\f030\";\n@fa-var-camera-retro: \"\\f083\";\n@fa-var-car: \"\\f1b9\";\n@fa-var-caret-down: \"\\f0d7\";\n@fa-var-caret-left: \"\\f0d9\";\n@fa-var-caret-right: \"\\f0da\";\n@fa-var-caret-square-o-down: \"\\f150\";\n@fa-var-caret-square-o-left: \"\\f191\";\n@fa-var-caret-square-o-right: \"\\f152\";\n@fa-var-caret-square-o-up: \"\\f151\";\n@fa-var-caret-up: \"\\f0d8\";\n@fa-var-cart-arrow-down: \"\\f218\";\n@fa-var-cart-plus: \"\\f217\";\n@fa-var-cc: \"\\f20a\";\n@fa-var-cc-amex: \"\\f1f3\";\n@fa-var-cc-diners-club: \"\\f24c\";\n@fa-var-cc-discover: \"\\f1f2\";\n@fa-var-cc-jcb: \"\\f24b\";\n@fa-var-cc-mastercard: \"\\f1f1\";\n@fa-var-cc-paypal: \"\\f1f4\";\n@fa-var-cc-stripe: \"\\f1f5\";\n@fa-var-cc-visa: \"\\f1f0\";\n@fa-var-certificate: \"\\f0a3\";\n@fa-var-chain: \"\\f0c1\";\n@fa-var-chain-broken: \"\\f127\";\n@fa-var-check: \"\\f00c\";\n@fa-var-check-circle: \"\\f058\";\n@fa-var-check-circle-o: \"\\f05d\";\n@fa-var-check-square: \"\\f14a\";\n@fa-var-check-square-o: \"\\f046\";\n@fa-var-chevron-circle-down: \"\\f13a\";\n@fa-var-chevron-circle-left: \"\\f137\";\n@fa-var-chevron-circle-right: \"\\f138\";\n@fa-var-chevron-circle-up: \"\\f139\";\n@fa-var-chevron-down: \"\\f078\";\n@fa-var-chevron-left: \"\\f053\";\n@fa-var-chevron-right: \"\\f054\";\n@fa-var-chevron-up: \"\\f077\";\n@fa-var-child: \"\\f1ae\";\n@fa-var-chrome: \"\\f268\";\n@fa-var-circle: \"\\f111\";\n@fa-var-circle-o: \"\\f10c\";\n@fa-var-circle-o-notch: \"\\f1ce\";\n@fa-var-circle-thin: \"\\f1db\";\n@fa-var-clipboard: \"\\f0ea\";\n@fa-var-clock-o: \"\\f017\";\n@fa-var-clone: \"\\f24d\";\n@fa-var-close: \"\\f00d\";\n@fa-var-cloud: \"\\f0c2\";\n@fa-var-cloud-download: \"\\f0ed\";\n@fa-var-cloud-upload: \"\\f0ee\";\n@fa-var-cny: \"\\f157\";\n@fa-var-code: \"\\f121\";\n@fa-var-code-fork: \"\\f126\";\n@fa-var-codepen: \"\\f1cb\";\n@fa-var-codiepie: \"\\f284\";\n@fa-var-coffee: \"\\f0f4\";\n@fa-var-cog: \"\\f013\";\n@fa-var-cogs: \"\\f085\";\n@fa-var-columns: \"\\f0db\";\n@fa-var-comment: \"\\f075\";\n@fa-var-comment-o: \"\\f0e5\";\n@fa-var-commenting: \"\\f27a\";\n@fa-var-commenting-o: \"\\f27b\";\n@fa-var-comments: \"\\f086\";\n@fa-var-comments-o: \"\\f0e6\";\n@fa-var-compass: \"\\f14e\";\n@fa-var-compress: \"\\f066\";\n@fa-var-connectdevelop: \"\\f20e\";\n@fa-var-contao: \"\\f26d\";\n@fa-var-copy: \"\\f0c5\";\n@fa-var-copyright: \"\\f1f9\";\n@fa-var-creative-commons: \"\\f25e\";\n@fa-var-credit-card: \"\\f09d\";\n@fa-var-credit-card-alt: \"\\f283\";\n@fa-var-crop: \"\\f125\";\n@fa-var-crosshairs: \"\\f05b\";\n@fa-var-css3: \"\\f13c\";\n@fa-var-cube: \"\\f1b2\";\n@fa-var-cubes: \"\\f1b3\";\n@fa-var-cut: \"\\f0c4\";\n@fa-var-cutlery: \"\\f0f5\";\n@fa-var-dashboard: \"\\f0e4\";\n@fa-var-dashcube: \"\\f210\";\n@fa-var-database: \"\\f1c0\";\n@fa-var-deaf: \"\\f2a4\";\n@fa-var-deafness: \"\\f2a4\";\n@fa-var-dedent: \"\\f03b\";\n@fa-var-delicious: \"\\f1a5\";\n@fa-var-desktop: \"\\f108\";\n@fa-var-deviantart: \"\\f1bd\";\n@fa-var-diamond: \"\\f219\";\n@fa-var-digg: \"\\f1a6\";\n@fa-var-dollar: \"\\f155\";\n@fa-var-dot-circle-o: \"\\f192\";\n@fa-var-download: \"\\f019\";\n@fa-var-dribbble: \"\\f17d\";\n@fa-var-drivers-license: \"\\f2c2\";\n@fa-var-drivers-license-o: \"\\f2c3\";\n@fa-var-dropbox: \"\\f16b\";\n@fa-var-drupal: \"\\f1a9\";\n@fa-var-edge: \"\\f282\";\n@fa-var-edit: \"\\f044\";\n@fa-var-eercast: \"\\f2da\";\n@fa-var-eject: \"\\f052\";\n@fa-var-ellipsis-h: \"\\f141\";\n@fa-var-ellipsis-v: \"\\f142\";\n@fa-var-empire: \"\\f1d1\";\n@fa-var-envelope: \"\\f0e0\";\n@fa-var-envelope-o: \"\\f003\";\n@fa-var-envelope-open: \"\\f2b6\";\n@fa-var-envelope-open-o: \"\\f2b7\";\n@fa-var-envelope-square: \"\\f199\";\n@fa-var-envira: \"\\f299\";\n@fa-var-eraser: \"\\f12d\";\n@fa-var-etsy: \"\\f2d7\";\n@fa-var-eur: \"\\f153\";\n@fa-var-euro: \"\\f153\";\n@fa-var-exchange: \"\\f0ec\";\n@fa-var-exclamation: \"\\f12a\";\n@fa-var-exclamation-circle: \"\\f06a\";\n@fa-var-exclamation-triangle: \"\\f071\";\n@fa-var-expand: \"\\f065\";\n@fa-var-expeditedssl: \"\\f23e\";\n@fa-var-external-link: \"\\f08e\";\n@fa-var-external-link-square: \"\\f14c\";\n@fa-var-eye: \"\\f06e\";\n@fa-var-eye-slash: \"\\f070\";\n@fa-var-eyedropper: \"\\f1fb\";\n@fa-var-fa: \"\\f2b4\";\n@fa-var-facebook: \"\\f09a\";\n@fa-var-facebook-f: \"\\f09a\";\n@fa-var-facebook-official: \"\\f230\";\n@fa-var-facebook-square: \"\\f082\";\n@fa-var-fast-backward: \"\\f049\";\n@fa-var-fast-forward: \"\\f050\";\n@fa-var-fax: \"\\f1ac\";\n@fa-var-feed: \"\\f09e\";\n@fa-var-female: \"\\f182\";\n@fa-var-fighter-jet: \"\\f0fb\";\n@fa-var-file: \"\\f15b\";\n@fa-var-file-archive-o: \"\\f1c6\";\n@fa-var-file-audio-o: \"\\f1c7\";\n@fa-var-file-code-o: \"\\f1c9\";\n@fa-var-file-excel-o: \"\\f1c3\";\n@fa-var-file-image-o: \"\\f1c5\";\n@fa-var-file-movie-o: \"\\f1c8\";\n@fa-var-file-o: \"\\f016\";\n@fa-var-file-pdf-o: \"\\f1c1\";\n@fa-var-file-photo-o: \"\\f1c5\";\n@fa-var-file-picture-o: \"\\f1c5\";\n@fa-var-file-powerpoint-o: \"\\f1c4\";\n@fa-var-file-sound-o: \"\\f1c7\";\n@fa-var-file-text: \"\\f15c\";\n@fa-var-file-text-o: \"\\f0f6\";\n@fa-var-file-video-o: \"\\f1c8\";\n@fa-var-file-word-o: \"\\f1c2\";\n@fa-var-file-zip-o: \"\\f1c6\";\n@fa-var-files-o: \"\\f0c5\";\n@fa-var-film: \"\\f008\";\n@fa-var-filter: \"\\f0b0\";\n@fa-var-fire: \"\\f06d\";\n@fa-var-fire-extinguisher: \"\\f134\";\n@fa-var-firefox: \"\\f269\";\n@fa-var-first-order: \"\\f2b0\";\n@fa-var-flag: \"\\f024\";\n@fa-var-flag-checkered: \"\\f11e\";\n@fa-var-flag-o: \"\\f11d\";\n@fa-var-flash: \"\\f0e7\";\n@fa-var-flask: \"\\f0c3\";\n@fa-var-flickr: \"\\f16e\";\n@fa-var-floppy-o: \"\\f0c7\";\n@fa-var-folder: \"\\f07b\";\n@fa-var-folder-o: \"\\f114\";\n@fa-var-folder-open: \"\\f07c\";\n@fa-var-folder-open-o: \"\\f115\";\n@fa-var-font: \"\\f031\";\n@fa-var-font-awesome: \"\\f2b4\";\n@fa-var-fonticons: \"\\f280\";\n@fa-var-fort-awesome: \"\\f286\";\n@fa-var-forumbee: \"\\f211\";\n@fa-var-forward: \"\\f04e\";\n@fa-var-foursquare: \"\\f180\";\n@fa-var-free-code-camp: \"\\f2c5\";\n@fa-var-frown-o: \"\\f119\";\n@fa-var-futbol-o: \"\\f1e3\";\n@fa-var-gamepad: \"\\f11b\";\n@fa-var-gavel: \"\\f0e3\";\n@fa-var-gbp: \"\\f154\";\n@fa-var-ge: \"\\f1d1\";\n@fa-var-gear: \"\\f013\";\n@fa-var-gears: \"\\f085\";\n@fa-var-genderless: \"\\f22d\";\n@fa-var-get-pocket: \"\\f265\";\n@fa-var-gg: \"\\f260\";\n@fa-var-gg-circle: \"\\f261\";\n@fa-var-gift: \"\\f06b\";\n@fa-var-git: \"\\f1d3\";\n@fa-var-git-square: \"\\f1d2\";\n@fa-var-github: \"\\f09b\";\n@fa-var-github-alt: \"\\f113\";\n@fa-var-github-square: \"\\f092\";\n@fa-var-gitlab: \"\\f296\";\n@fa-var-gittip: \"\\f184\";\n@fa-var-glass: \"\\f000\";\n@fa-var-glide: \"\\f2a5\";\n@fa-var-glide-g: \"\\f2a6\";\n@fa-var-globe: \"\\f0ac\";\n@fa-var-google: \"\\f1a0\";\n@fa-var-google-plus: \"\\f0d5\";\n@fa-var-google-plus-circle: \"\\f2b3\";\n@fa-var-google-plus-official: \"\\f2b3\";\n@fa-var-google-plus-square: \"\\f0d4\";\n@fa-var-google-wallet: \"\\f1ee\";\n@fa-var-graduation-cap: \"\\f19d\";\n@fa-var-gratipay: \"\\f184\";\n@fa-var-grav: \"\\f2d6\";\n@fa-var-group: \"\\f0c0\";\n@fa-var-h-square: \"\\f0fd\";\n@fa-var-hacker-news: \"\\f1d4\";\n@fa-var-hand-grab-o: \"\\f255\";\n@fa-var-hand-lizard-o: \"\\f258\";\n@fa-var-hand-o-down: \"\\f0a7\";\n@fa-var-hand-o-left: \"\\f0a5\";\n@fa-var-hand-o-right: \"\\f0a4\";\n@fa-var-hand-o-up: \"\\f0a6\";\n@fa-var-hand-paper-o: \"\\f256\";\n@fa-var-hand-peace-o: \"\\f25b\";\n@fa-var-hand-pointer-o: \"\\f25a\";\n@fa-var-hand-rock-o: \"\\f255\";\n@fa-var-hand-scissors-o: \"\\f257\";\n@fa-var-hand-spock-o: \"\\f259\";\n@fa-var-hand-stop-o: \"\\f256\";\n@fa-var-handshake-o: \"\\f2b5\";\n@fa-var-hard-of-hearing: \"\\f2a4\";\n@fa-var-hashtag: \"\\f292\";\n@fa-var-hdd-o: \"\\f0a0\";\n@fa-var-header: \"\\f1dc\";\n@fa-var-headphones: \"\\f025\";\n@fa-var-heart: \"\\f004\";\n@fa-var-heart-o: \"\\f08a\";\n@fa-var-heartbeat: \"\\f21e\";\n@fa-var-history: \"\\f1da\";\n@fa-var-home: \"\\f015\";\n@fa-var-hospital-o: \"\\f0f8\";\n@fa-var-hotel: \"\\f236\";\n@fa-var-hourglass: \"\\f254\";\n@fa-var-hourglass-1: \"\\f251\";\n@fa-var-hourglass-2: \"\\f252\";\n@fa-var-hourglass-3: \"\\f253\";\n@fa-var-hourglass-end: \"\\f253\";\n@fa-var-hourglass-half: \"\\f252\";\n@fa-var-hourglass-o: \"\\f250\";\n@fa-var-hourglass-start: \"\\f251\";\n@fa-var-houzz: \"\\f27c\";\n@fa-var-html5: \"\\f13b\";\n@fa-var-i-cursor: \"\\f246\";\n@fa-var-id-badge: \"\\f2c1\";\n@fa-var-id-card: \"\\f2c2\";\n@fa-var-id-card-o: \"\\f2c3\";\n@fa-var-ils: \"\\f20b\";\n@fa-var-image: \"\\f03e\";\n@fa-var-imdb: \"\\f2d8\";\n@fa-var-inbox: \"\\f01c\";\n@fa-var-indent: \"\\f03c\";\n@fa-var-industry: \"\\f275\";\n@fa-var-info: \"\\f129\";\n@fa-var-info-circle: \"\\f05a\";\n@fa-var-inr: \"\\f156\";\n@fa-var-instagram: \"\\f16d\";\n@fa-var-institution: \"\\f19c\";\n@fa-var-internet-explorer: \"\\f26b\";\n@fa-var-intersex: \"\\f224\";\n@fa-var-ioxhost: \"\\f208\";\n@fa-var-italic: \"\\f033\";\n@fa-var-joomla: \"\\f1aa\";\n@fa-var-jpy: \"\\f157\";\n@fa-var-jsfiddle: \"\\f1cc\";\n@fa-var-key: \"\\f084\";\n@fa-var-keyboard-o: \"\\f11c\";\n@fa-var-krw: \"\\f159\";\n@fa-var-language: \"\\f1ab\";\n@fa-var-laptop: \"\\f109\";\n@fa-var-lastfm: \"\\f202\";\n@fa-var-lastfm-square: \"\\f203\";\n@fa-var-leaf: \"\\f06c\";\n@fa-var-leanpub: \"\\f212\";\n@fa-var-legal: \"\\f0e3\";\n@fa-var-lemon-o: \"\\f094\";\n@fa-var-level-down: \"\\f149\";\n@fa-var-level-up: \"\\f148\";\n@fa-var-life-bouy: \"\\f1cd\";\n@fa-var-life-buoy: \"\\f1cd\";\n@fa-var-life-ring: \"\\f1cd\";\n@fa-var-life-saver: \"\\f1cd\";\n@fa-var-lightbulb-o: \"\\f0eb\";\n@fa-var-line-chart: \"\\f201\";\n@fa-var-link: \"\\f0c1\";\n@fa-var-linkedin: \"\\f0e1\";\n@fa-var-linkedin-square: \"\\f08c\";\n@fa-var-linode: \"\\f2b8\";\n@fa-var-linux: \"\\f17c\";\n@fa-var-list: \"\\f03a\";\n@fa-var-list-alt: \"\\f022\";\n@fa-var-list-ol: \"\\f0cb\";\n@fa-var-list-ul: \"\\f0ca\";\n@fa-var-location-arrow: \"\\f124\";\n@fa-var-lock: \"\\f023\";\n@fa-var-long-arrow-down: \"\\f175\";\n@fa-var-long-arrow-left: \"\\f177\";\n@fa-var-long-arrow-right: \"\\f178\";\n@fa-var-long-arrow-up: \"\\f176\";\n@fa-var-low-vision: \"\\f2a8\";\n@fa-var-magic: \"\\f0d0\";\n@fa-var-magnet: \"\\f076\";\n@fa-var-mail-forward: \"\\f064\";\n@fa-var-mail-reply: \"\\f112\";\n@fa-var-mail-reply-all: \"\\f122\";\n@fa-var-male: \"\\f183\";\n@fa-var-map: \"\\f279\";\n@fa-var-map-marker: \"\\f041\";\n@fa-var-map-o: \"\\f278\";\n@fa-var-map-pin: \"\\f276\";\n@fa-var-map-signs: \"\\f277\";\n@fa-var-mars: \"\\f222\";\n@fa-var-mars-double: \"\\f227\";\n@fa-var-mars-stroke: \"\\f229\";\n@fa-var-mars-stroke-h: \"\\f22b\";\n@fa-var-mars-stroke-v: \"\\f22a\";\n@fa-var-maxcdn: \"\\f136\";\n@fa-var-meanpath: \"\\f20c\";\n@fa-var-medium: \"\\f23a\";\n@fa-var-medkit: \"\\f0fa\";\n@fa-var-meetup: \"\\f2e0\";\n@fa-var-meh-o: \"\\f11a\";\n@fa-var-mercury: \"\\f223\";\n@fa-var-microchip: \"\\f2db\";\n@fa-var-microphone: \"\\f130\";\n@fa-var-microphone-slash: \"\\f131\";\n@fa-var-minus: \"\\f068\";\n@fa-var-minus-circle: \"\\f056\";\n@fa-var-minus-square: \"\\f146\";\n@fa-var-minus-square-o: \"\\f147\";\n@fa-var-mixcloud: \"\\f289\";\n@fa-var-mobile: \"\\f10b\";\n@fa-var-mobile-phone: \"\\f10b\";\n@fa-var-modx: \"\\f285\";\n@fa-var-money: \"\\f0d6\";\n@fa-var-moon-o: \"\\f186\";\n@fa-var-mortar-board: \"\\f19d\";\n@fa-var-motorcycle: \"\\f21c\";\n@fa-var-mouse-pointer: \"\\f245\";\n@fa-var-music: \"\\f001\";\n@fa-var-navicon: \"\\f0c9\";\n@fa-var-neuter: \"\\f22c\";\n@fa-var-newspaper-o: \"\\f1ea\";\n@fa-var-object-group: \"\\f247\";\n@fa-var-object-ungroup: \"\\f248\";\n@fa-var-odnoklassniki: \"\\f263\";\n@fa-var-odnoklassniki-square: \"\\f264\";\n@fa-var-opencart: \"\\f23d\";\n@fa-var-openid: \"\\f19b\";\n@fa-var-opera: \"\\f26a\";\n@fa-var-optin-monster: \"\\f23c\";\n@fa-var-outdent: \"\\f03b\";\n@fa-var-pagelines: \"\\f18c\";\n@fa-var-paint-brush: \"\\f1fc\";\n@fa-var-paper-plane: \"\\f1d8\";\n@fa-var-paper-plane-o: \"\\f1d9\";\n@fa-var-paperclip: \"\\f0c6\";\n@fa-var-paragraph: \"\\f1dd\";\n@fa-var-paste: \"\\f0ea\";\n@fa-var-pause: \"\\f04c\";\n@fa-var-pause-circle: \"\\f28b\";\n@fa-var-pause-circle-o: \"\\f28c\";\n@fa-var-paw: \"\\f1b0\";\n@fa-var-paypal: \"\\f1ed\";\n@fa-var-pencil: \"\\f040\";\n@fa-var-pencil-square: \"\\f14b\";\n@fa-var-pencil-square-o: \"\\f044\";\n@fa-var-percent: \"\\f295\";\n@fa-var-phone: \"\\f095\";\n@fa-var-phone-square: \"\\f098\";\n@fa-var-photo: \"\\f03e\";\n@fa-var-picture-o: \"\\f03e\";\n@fa-var-pie-chart: \"\\f200\";\n@fa-var-pied-piper: \"\\f2ae\";\n@fa-var-pied-piper-alt: \"\\f1a8\";\n@fa-var-pied-piper-pp: \"\\f1a7\";\n@fa-var-pinterest: \"\\f0d2\";\n@fa-var-pinterest-p: \"\\f231\";\n@fa-var-pinterest-square: \"\\f0d3\";\n@fa-var-plane: \"\\f072\";\n@fa-var-play: \"\\f04b\";\n@fa-var-play-circle: \"\\f144\";\n@fa-var-play-circle-o: \"\\f01d\";\n@fa-var-plug: \"\\f1e6\";\n@fa-var-plus: \"\\f067\";\n@fa-var-plus-circle: \"\\f055\";\n@fa-var-plus-square: \"\\f0fe\";\n@fa-var-plus-square-o: \"\\f196\";\n@fa-var-podcast: \"\\f2ce\";\n@fa-var-power-off: \"\\f011\";\n@fa-var-print: \"\\f02f\";\n@fa-var-product-hunt: \"\\f288\";\n@fa-var-puzzle-piece: \"\\f12e\";\n@fa-var-qq: \"\\f1d6\";\n@fa-var-qrcode: \"\\f029\";\n@fa-var-question: \"\\f128\";\n@fa-var-question-circle: \"\\f059\";\n@fa-var-question-circle-o: \"\\f29c\";\n@fa-var-quora: \"\\f2c4\";\n@fa-var-quote-left: \"\\f10d\";\n@fa-var-quote-right: \"\\f10e\";\n@fa-var-ra: \"\\f1d0\";\n@fa-var-random: \"\\f074\";\n@fa-var-ravelry: \"\\f2d9\";\n@fa-var-rebel: \"\\f1d0\";\n@fa-var-recycle: \"\\f1b8\";\n@fa-var-reddit: \"\\f1a1\";\n@fa-var-reddit-alien: \"\\f281\";\n@fa-var-reddit-square: \"\\f1a2\";\n@fa-var-refresh: \"\\f021\";\n@fa-var-registered: \"\\f25d\";\n@fa-var-remove: \"\\f00d\";\n@fa-var-renren: \"\\f18b\";\n@fa-var-reorder: \"\\f0c9\";\n@fa-var-repeat: \"\\f01e\";\n@fa-var-reply: \"\\f112\";\n@fa-var-reply-all: \"\\f122\";\n@fa-var-resistance: \"\\f1d0\";\n@fa-var-retweet: \"\\f079\";\n@fa-var-rmb: \"\\f157\";\n@fa-var-road: \"\\f018\";\n@fa-var-rocket: \"\\f135\";\n@fa-var-rotate-left: \"\\f0e2\";\n@fa-var-rotate-right: \"\\f01e\";\n@fa-var-rouble: \"\\f158\";\n@fa-var-rss: \"\\f09e\";\n@fa-var-rss-square: \"\\f143\";\n@fa-var-rub: \"\\f158\";\n@fa-var-ruble: \"\\f158\";\n@fa-var-rupee: \"\\f156\";\n@fa-var-s15: \"\\f2cd\";\n@fa-var-safari: \"\\f267\";\n@fa-var-save: \"\\f0c7\";\n@fa-var-scissors: \"\\f0c4\";\n@fa-var-scribd: \"\\f28a\";\n@fa-var-search: \"\\f002\";\n@fa-var-search-minus: \"\\f010\";\n@fa-var-search-plus: \"\\f00e\";\n@fa-var-sellsy: \"\\f213\";\n@fa-var-send: \"\\f1d8\";\n@fa-var-send-o: \"\\f1d9\";\n@fa-var-server: \"\\f233\";\n@fa-var-share: \"\\f064\";\n@fa-var-share-alt: \"\\f1e0\";\n@fa-var-share-alt-square: \"\\f1e1\";\n@fa-var-share-square: \"\\f14d\";\n@fa-var-share-square-o: \"\\f045\";\n@fa-var-shekel: \"\\f20b\";\n@fa-var-sheqel: \"\\f20b\";\n@fa-var-shield: \"\\f132\";\n@fa-var-ship: \"\\f21a\";\n@fa-var-shirtsinbulk: \"\\f214\";\n@fa-var-shopping-bag: \"\\f290\";\n@fa-var-shopping-basket: \"\\f291\";\n@fa-var-shopping-cart: \"\\f07a\";\n@fa-var-shower: \"\\f2cc\";\n@fa-var-sign-in: \"\\f090\";\n@fa-var-sign-language: \"\\f2a7\";\n@fa-var-sign-out: \"\\f08b\";\n@fa-var-signal: \"\\f012\";\n@fa-var-signing: \"\\f2a7\";\n@fa-var-simplybuilt: \"\\f215\";\n@fa-var-sitemap: \"\\f0e8\";\n@fa-var-skyatlas: \"\\f216\";\n@fa-var-skype: \"\\f17e\";\n@fa-var-slack: \"\\f198\";\n@fa-var-sliders: \"\\f1de\";\n@fa-var-slideshare: \"\\f1e7\";\n@fa-var-smile-o: \"\\f118\";\n@fa-var-snapchat: \"\\f2ab\";\n@fa-var-snapchat-ghost: \"\\f2ac\";\n@fa-var-snapchat-square: \"\\f2ad\";\n@fa-var-snowflake-o: \"\\f2dc\";\n@fa-var-soccer-ball-o: \"\\f1e3\";\n@fa-var-sort: \"\\f0dc\";\n@fa-var-sort-alpha-asc: \"\\f15d\";\n@fa-var-sort-alpha-desc: \"\\f15e\";\n@fa-var-sort-amount-asc: \"\\f160\";\n@fa-var-sort-amount-desc: \"\\f161\";\n@fa-var-sort-asc: \"\\f0de\";\n@fa-var-sort-desc: \"\\f0dd\";\n@fa-var-sort-down: \"\\f0dd\";\n@fa-var-sort-numeric-asc: \"\\f162\";\n@fa-var-sort-numeric-desc: \"\\f163\";\n@fa-var-sort-up: \"\\f0de\";\n@fa-var-soundcloud: \"\\f1be\";\n@fa-var-space-shuttle: \"\\f197\";\n@fa-var-spinner: \"\\f110\";\n@fa-var-spoon: \"\\f1b1\";\n@fa-var-spotify: \"\\f1bc\";\n@fa-var-square: \"\\f0c8\";\n@fa-var-square-o: \"\\f096\";\n@fa-var-stack-exchange: \"\\f18d\";\n@fa-var-stack-overflow: \"\\f16c\";\n@fa-var-star: \"\\f005\";\n@fa-var-star-half: \"\\f089\";\n@fa-var-star-half-empty: \"\\f123\";\n@fa-var-star-half-full: \"\\f123\";\n@fa-var-star-half-o: \"\\f123\";\n@fa-var-star-o: \"\\f006\";\n@fa-var-steam: \"\\f1b6\";\n@fa-var-steam-square: \"\\f1b7\";\n@fa-var-step-backward: \"\\f048\";\n@fa-var-step-forward: \"\\f051\";\n@fa-var-stethoscope: \"\\f0f1\";\n@fa-var-sticky-note: \"\\f249\";\n@fa-var-sticky-note-o: \"\\f24a\";\n@fa-var-stop: \"\\f04d\";\n@fa-var-stop-circle: \"\\f28d\";\n@fa-var-stop-circle-o: \"\\f28e\";\n@fa-var-street-view: \"\\f21d\";\n@fa-var-strikethrough: \"\\f0cc\";\n@fa-var-stumbleupon: \"\\f1a4\";\n@fa-var-stumbleupon-circle: \"\\f1a3\";\n@fa-var-subscript: \"\\f12c\";\n@fa-var-subway: \"\\f239\";\n@fa-var-suitcase: \"\\f0f2\";\n@fa-var-sun-o: \"\\f185\";\n@fa-var-superpowers: \"\\f2dd\";\n@fa-var-superscript: \"\\f12b\";\n@fa-var-support: \"\\f1cd\";\n@fa-var-table: \"\\f0ce\";\n@fa-var-tablet: \"\\f10a\";\n@fa-var-tachometer: \"\\f0e4\";\n@fa-var-tag: \"\\f02b\";\n@fa-var-tags: \"\\f02c\";\n@fa-var-tasks: \"\\f0ae\";\n@fa-var-taxi: \"\\f1ba\";\n@fa-var-telegram: \"\\f2c6\";\n@fa-var-television: \"\\f26c\";\n@fa-var-tencent-weibo: \"\\f1d5\";\n@fa-var-terminal: \"\\f120\";\n@fa-var-text-height: \"\\f034\";\n@fa-var-text-width: \"\\f035\";\n@fa-var-th: \"\\f00a\";\n@fa-var-th-large: \"\\f009\";\n@fa-var-th-list: \"\\f00b\";\n@fa-var-themeisle: \"\\f2b2\";\n@fa-var-thermometer: \"\\f2c7\";\n@fa-var-thermometer-0: \"\\f2cb\";\n@fa-var-thermometer-1: \"\\f2ca\";\n@fa-var-thermometer-2: \"\\f2c9\";\n@fa-var-thermometer-3: \"\\f2c8\";\n@fa-var-thermometer-4: \"\\f2c7\";\n@fa-var-thermometer-empty: \"\\f2cb\";\n@fa-var-thermometer-full: \"\\f2c7\";\n@fa-var-thermometer-half: \"\\f2c9\";\n@fa-var-thermometer-quarter: \"\\f2ca\";\n@fa-var-thermometer-three-quarters: \"\\f2c8\";\n@fa-var-thumb-tack: \"\\f08d\";\n@fa-var-thumbs-down: \"\\f165\";\n@fa-var-thumbs-o-down: \"\\f088\";\n@fa-var-thumbs-o-up: \"\\f087\";\n@fa-var-thumbs-up: \"\\f164\";\n@fa-var-ticket: \"\\f145\";\n@fa-var-times: \"\\f00d\";\n@fa-var-times-circle: \"\\f057\";\n@fa-var-times-circle-o: \"\\f05c\";\n@fa-var-times-rectangle: \"\\f2d3\";\n@fa-var-times-rectangle-o: \"\\f2d4\";\n@fa-var-tint: \"\\f043\";\n@fa-var-toggle-down: \"\\f150\";\n@fa-var-toggle-left: \"\\f191\";\n@fa-var-toggle-off: \"\\f204\";\n@fa-var-toggle-on: \"\\f205\";\n@fa-var-toggle-right: \"\\f152\";\n@fa-var-toggle-up: \"\\f151\";\n@fa-var-trademark: \"\\f25c\";\n@fa-var-train: \"\\f238\";\n@fa-var-transgender: \"\\f224\";\n@fa-var-transgender-alt: \"\\f225\";\n@fa-var-trash: \"\\f1f8\";\n@fa-var-trash-o: \"\\f014\";\n@fa-var-tree: \"\\f1bb\";\n@fa-var-trello: \"\\f181\";\n@fa-var-tripadvisor: \"\\f262\";\n@fa-var-trophy: \"\\f091\";\n@fa-var-truck: \"\\f0d1\";\n@fa-var-try: \"\\f195\";\n@fa-var-tty: \"\\f1e4\";\n@fa-var-tumblr: \"\\f173\";\n@fa-var-tumblr-square: \"\\f174\";\n@fa-var-turkish-lira: \"\\f195\";\n@fa-var-tv: \"\\f26c\";\n@fa-var-twitch: \"\\f1e8\";\n@fa-var-twitter: \"\\f099\";\n@fa-var-twitter-square: \"\\f081\";\n@fa-var-umbrella: \"\\f0e9\";\n@fa-var-underline: \"\\f0cd\";\n@fa-var-undo: \"\\f0e2\";\n@fa-var-universal-access: \"\\f29a\";\n@fa-var-university: \"\\f19c\";\n@fa-var-unlink: \"\\f127\";\n@fa-var-unlock: \"\\f09c\";\n@fa-var-unlock-alt: \"\\f13e\";\n@fa-var-unsorted: \"\\f0dc\";\n@fa-var-upload: \"\\f093\";\n@fa-var-usb: \"\\f287\";\n@fa-var-usd: \"\\f155\";\n@fa-var-user: \"\\f007\";\n@fa-var-user-circle: \"\\f2bd\";\n@fa-var-user-circle-o: \"\\f2be\";\n@fa-var-user-md: \"\\f0f0\";\n@fa-var-user-o: \"\\f2c0\";\n@fa-var-user-plus: \"\\f234\";\n@fa-var-user-secret: \"\\f21b\";\n@fa-var-user-times: \"\\f235\";\n@fa-var-users: \"\\f0c0\";\n@fa-var-vcard: \"\\f2bb\";\n@fa-var-vcard-o: \"\\f2bc\";\n@fa-var-venus: \"\\f221\";\n@fa-var-venus-double: \"\\f226\";\n@fa-var-venus-mars: \"\\f228\";\n@fa-var-viacoin: \"\\f237\";\n@fa-var-viadeo: \"\\f2a9\";\n@fa-var-viadeo-square: \"\\f2aa\";\n@fa-var-video-camera: \"\\f03d\";\n@fa-var-vimeo: \"\\f27d\";\n@fa-var-vimeo-square: \"\\f194\";\n@fa-var-vine: \"\\f1ca\";\n@fa-var-vk: \"\\f189\";\n@fa-var-volume-control-phone: \"\\f2a0\";\n@fa-var-volume-down: \"\\f027\";\n@fa-var-volume-off: \"\\f026\";\n@fa-var-volume-up: \"\\f028\";\n@fa-var-warning: \"\\f071\";\n@fa-var-wechat: \"\\f1d7\";\n@fa-var-weibo: \"\\f18a\";\n@fa-var-weixin: \"\\f1d7\";\n@fa-var-whatsapp: \"\\f232\";\n@fa-var-wheelchair: \"\\f193\";\n@fa-var-wheelchair-alt: \"\\f29b\";\n@fa-var-wifi: \"\\f1eb\";\n@fa-var-wikipedia-w: \"\\f266\";\n@fa-var-window-close: \"\\f2d3\";\n@fa-var-window-close-o: \"\\f2d4\";\n@fa-var-window-maximize: \"\\f2d0\";\n@fa-var-window-minimize: \"\\f2d1\";\n@fa-var-window-restore: \"\\f2d2\";\n@fa-var-windows: \"\\f17a\";\n@fa-var-won: \"\\f159\";\n@fa-var-wordpress: \"\\f19a\";\n@fa-var-wpbeginner: \"\\f297\";\n@fa-var-wpexplorer: \"\\f2de\";\n@fa-var-wpforms: \"\\f298\";\n@fa-var-wrench: \"\\f0ad\";\n@fa-var-xing: \"\\f168\";\n@fa-var-xing-square: \"\\f169\";\n@fa-var-y-combinator: \"\\f23b\";\n@fa-var-y-combinator-square: \"\\f1d4\";\n@fa-var-yahoo: \"\\f19e\";\n@fa-var-yc: \"\\f23b\";\n@fa-var-yc-square: \"\\f1d4\";\n@fa-var-yelp: \"\\f1e9\";\n@fa-var-yen: \"\\f157\";\n@fa-var-yoast: \"\\f2b1\";\n@fa-var-youtube: \"\\f167\";\n@fa-var-youtube-play: \"\\f16a\";\n@fa-var-youtube-square: \"\\f166\";\n\n","//\n// Navbar Alt\n// --------------------------------------------------\n\n.navbar-pf-alt {\n  background-color: @navbar-pf-alt-bg-color;\n  background-image: @navbar-pf-alt-bg-img;\n  background-repeat: @navbar-pf-alt-bg-repeat;\n  background-size: @navbar-pf-alt-bg-size;\n  border: none;\n  border-radius: 0;\n  border-top: @navbar-pf-alt-border-width @navbar-pf-alt-border-style @navbar-pf-alt-border-color;\n  margin-bottom: 0;\n\n  .infotip.bottom-right .arrow {\n    left: 90%;\n  }\n\n  .layout-pf-alt-fixed & {\n    left: 0;\n    position: fixed;\n    right: 0;\n    top: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n\n  .nav {\n    &.navbar-nav > li > .dropdown-menu.infotip {\n      margin-top: 0;\n    }\n\n    .nav-item-iconic {\n      cursor: pointer;\n      line-height: 1;\n      max-height: (@navbar-pf-alt-height - @navbar-pf-alt-border-width); // to keep Firefox from oversizing icons\n      padding: @navbar-pf-alt-nav-item-iconic-padding;\n      position: relative;\n\n      &:hover,\n      &:focus {\n        background-color: transparent;\n\n        .caret,\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @navbar-pf-alt-active-color;\n        }\n      }\n\n      .badge {\n        background-color: @notification-badge-color;\n        border-radius: 20px;\n        color: @navbar-pf-alt-active-color;\n        cursor: pointer;\n        font-size: (@font-size-base - 3);\n        font-weight: 700;\n        margin: 0 0 -11px -12px;\n        min-width: 0;\n        padding: 2px 4px;\n      }\n\n      .caret,\n      .fa,\n      .pficon {\n        color: @navbar-pf-alt-color;\n        font-size: (@font-size-base + 4);\n      }\n\n      .caret {\n        font-size: @font-size-base;\n        width: auto;\n      }\n\n    }\n\n    .open > .nav-item-iconic {\n      &,\n      &:hover,\n      &:focus {\n        background: transparent;\n\n        .caret,\n        .fa,\n        .pficon {\n          color: @navbar-pf-alt-active-color;\n        }\n      }\n    }\n  }\n\n  .navbar-brand {\n    color: @navbar-pf-alt-navbar-brand-color;\n    height: auto;\n    margin: @navbar-pf-alt-navbar-brand-margin;\n    min-height: @navbar-pf-alt-navbar-brand-min-height;\n    padding: @navbar-pf-alt-navbar-brand-padding;\n\n    .navbar-brand-name {\n      display: inline;\n      margin-left: @navbar-pf-alt-navbar-brand-name-margin;\n      margin-right: @navbar-pf-alt-navbar-brand-name-margin;\n      // hide once screen gets too small\n      @media (max-width: @navbar-pf-alt-navbar-brand-name-breakpoint) {\n        display: none;\n      }\n    }\n\n    .navbar-brand-icon {\n      display: inline;\n      margin-left: @navbar-pf-alt-navbar-brand-icon-margin;\n      margin-right: @navbar-pf-alt-navbar-brand-icon-margin;\n    }\n  }\n\n  .navbar-iconic {\n    margin-right: 0;\n  }\n\n  .navbar-toggle {\n    border: 0;\n    display: block;\n    float: left;\n    margin: @navbar-pf-alt-navbar-toggle-margin;\n\n    &:hover,\n    &:focus {\n      .icon-bar {\n        background: @navbar-pf-alt-navbar-toggle-icon-bar-hover-bg;\n      }\n    }\n\n    + .navbar-brand {\n      margin-left: 0;\n    }\n\n    .icon-bar {\n      background: @navbar-pf-alt-color;\n    }\n  }\n}\n","//\n//  Navigation Bar for use with vertical navigation\n// --------------------------------------------------\n\n.navbar-pf-vertical {\n  background-color: @navbar-pf-vertical-bg-color;\n  border: none;\n  border-radius: 0;\n  border-top: @navbar-pf-vertical-border-width @navbar-pf-vertical-border-style @navbar-pf-vertical-border-color;\n  margin-bottom: 0;\n\n  .infotip.bottom-right .arrow {\n    left: 90%;\n  }\n\n  .layout-pf-fixed & {\n    left: 0;\n    position: fixed;\n    right: 0;\n    top: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n\n  .nav {\n    &.navbar-nav > li > .dropdown-menu.infotip {\n      margin-top: 0;\n    }\n\n    .nav-item-iconic {\n      color: @navbar-pf-vertical-color;\n      cursor: pointer;\n      line-height: 1;\n      max-height: (@navbar-pf-vertical-height - @navbar-pf-vertical-border-width); // to keep Firefox from oversizing icons\n      padding: @navbar-pf-vertical-nav-item-iconic-padding;\n      position: relative;\n\n      &:hover,\n      &:focus {\n        color: @navbar-pf-vertical-active-color;\n        background-color: transparent;\n\n        .caret,\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @navbar-pf-vertical-active-color;\n        }\n      }\n\n      .badge {\n        background-color: @notification-badge-color;\n        border-radius: 20px;\n        color: @navbar-pf-vertical-active-color;\n        cursor: pointer;\n        font-size: (@font-size-base - 3);\n        font-weight: 700;\n        left: 20px;\n        margin: 0;\n        padding: 2px 4px;\n        position: absolute;\n        min-width: 10px;\n        min-height: 10px;\n        top: 18px;\n        &.badge-pf-bordered {\n          border: 1px solid @navbar-pf-vertical-bg-color;\n        }\n      }\n\n      .caret,\n      .fa,\n      .pficon {\n        color: @navbar-pf-vertical-color;\n        font-size: (@font-size-base + 4);\n      }\n\n      .caret {\n        font-size: @font-size-base;\n        width: auto;\n      }\n\n    }\n\n    .open > .nav-item-iconic {\n      &,\n      &:hover,\n      &:focus {\n        background: transparent;\n\n        .caret,\n        .fa,\n        .pficon {\n          color: @navbar-pf-vertical-active-color;\n        }\n      }\n    }\n  }\n\n  .navbar-brand {\n    color: @navbar-pf-vertical-navbar-brand-color;\n    height: auto;\n    margin: @navbar-pf-vertical-navbar-brand-margin;\n    min-height: @navbar-pf-vertical-navbar-brand-min-height;\n    padding: @navbar-pf-vertical-navbar-brand-padding;\n\n    .navbar-brand-name {\n      display: inline-block;\n      margin: @navbar-pf-vertical-navbar-brand-name-margin;\n      // hide once screen gets too small\n      @media (max-width: @navbar-pf-vertical-navbar-brand-name-breakpoint) {\n        display: none;\n      }\n    }\n\n    .navbar-brand-icon {\n      display: inline-block;\n      margin: @navbar-pf-vertical-navbar-brand-icon-margin;\n      max-height: @navbar-pf-vertical-navbar-brand-max-height;\n    }\n\n    .navbar-brand-txt {\n      line-height: @navbar-pf-vertical-navbar-brand-line-height;\n    }\n  }\n\n  .navbar-iconic {\n    margin-right: 0;\n  }\n\n  .navbar-toggle {\n    border: 0;\n    display: block;\n    float: left;\n    margin: @navbar-pf-vertical-navbar-toggle-margin;\n\n    &:hover,\n    &:focus {\n      .icon-bar {\n        background: @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n      }\n    }\n\n    + .navbar-brand {\n      margin-left: 0;\n    }\n\n    .icon-bar {\n      background: @navbar-pf-vertical-color;\n    }\n  }\n}\n","//\n// Nav Vertical Alt\n// --------------------------------------------------\n\n.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt {\n  transition: @flyout-transition-pf;\n\n  &.collapsed .list-group-item .list-group-item-value {\n    transition: opacity 0ms 100ms, opacity 100ms linear;\n  }\n\n  .list-group-item {\n    .badge {\n      transition: @flyout-transition-pf;\n    }\n\n    .list-group-item-value {\n      transition: opacity 500ms ease-out;\n      transition-delay: 150ms;\n    }\n  }\n}\n\n.nav-pf-vertical-alt {\n  background: @nav-pf-vertical-alt-bg-color;\n\n  .ie9.layout-pf-alt-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n\n  .layout-pf-alt-fixed & {\n    border-right: 1px solid @nav-pf-vertical-alt-border-color;\n    bottom: 0;\n    overflow-x: hidden;\n    overflow-y: auto;\n    left: 0;\n    position: fixed;\n    top: @navbar-pf-alt-height; // move out of way of navbar-pf-alt\n    width: @nav-pf-vertical-alt-width;\n    z-index: @zindex-navbar-fixed;\n\n    &.collapsed {\n      width: @nav-pf-vertical-alt-collapsed-width !important;\n\n      .list-group-item {\n        .badge {\n          padding: 2px 3px;\n          right: 21px;\n          top: 36px;\n        }\n\n        .list-group-item-value {\n          opacity: 0;\n        }\n      }\n    }\n\n    &.hidden {\n      display: none;\n\n      &.show-mobile-nav {\n        box-shadow: 0 0 3px fade(@color-pf-black, 15%);\n        display: block !important;\n      }\n    }\n  }\n\n  .layout-pf-alt-fixed-with-footer & {\n    bottom: @footer-pf-alt-height;\n  }\n\n  .list-group {\n    border-top: 0;\n    margin-bottom: 0;\n  }\n\n  .list-group-item {\n    padding: 0;\n\n    a {\n      color: @gray-dark;\n      display: block;\n      font-size: (@font-size-base + 2);\n      height: @nav-pf-vertical-alt-link-height;\n      padding: @nav-pf-vertical-alt-link-padding;\n      position: relative;\n      white-space: nowrap;\n\n      &:focus {\n        color: @gray-dark;\n        text-decoration: none;\n      }\n\n      &:hover {\n        color: @nav-pf-vertical-alt-active-color;\n        text-decoration: none;\n      }\n    }\n\n    &.active {\n      background-color: @nav-pf-vertical-alt-bg-color;\n      border-color: @list-group-border;\n\n      &:before {\n        background: @nav-pf-vertical-alt-active-color;\n        content: \" \";\n        display: block;\n        height: 100%;\n        left: 0;\n        position: absolute;\n        top: 0;\n        width: 5px;\n      }\n\n      a {\n        color: @nav-pf-vertical-alt-active-color;\n      }\n    }\n\n    .badge {\n      background: @gray-dark;\n      border: 1px solid @nav-pf-vertical-alt-bg-color;\n      border-radius: 3px;\n      color: @nav-pf-vertical-alt-badge-color;\n      font-weight: 700;\n      font-size: (@font-size-base - 3);\n      padding: 5px;\n      position: absolute;\n      right: 15px;\n      text-align: center;\n      top: 21px;\n\n      &.notifications {\n        background: @notification-badge-color;\n      }\n    }\n\n    .fa,\n    .glyphicon,\n    .pficon {\n      float: left;\n      font-size: 18px;\n      line-height: 30px;\n      margin-right: 10px;\n      text-align: center;\n      width: 18px;\n    }\n\n    .list-group-item-value {\n      display: inline-block;\n      line-height: 30px;\n      opacity: 1;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      width: 140px;\n    }\n\n  }\n\n  .list-group-item-separator {\n    border-top-width: 5px;\n  }\n\n  .sidebar-pf & {\n    margin-left: (-(@grid-gutter-width / 2));\n    margin-right: (-(@grid-gutter-width / 2));\n  }\n}\n","//\n// Notifications Drawer\n// --------------------------------------------------\n\n\n.drawer-pf {\n  background-color: @color-pf-black-100;\n  border: 1px solid @card-pf-border-color;\n  .box-shadow(0 6px 12px fade(@color-pf-black, 17.5%));\n  overflow-y: auto;\n  position: absolute;\n  right: 0;\n  width: 320px;\n  z-index: 2;\n  .panel {\n    border-bottom: none;\n    border-left: none;\n    border-right: none;\n  }\n  .panel-group .panel-heading + .panel-collapse .panel-body {\n    border-top: none;\n    border-bottom: 1px solid @card-pf-border-color;\n    padding: 0;\n  }\n  .panel-counter {\n    display: block;\n    font-style: italic;\n    line-height: 1.2;\n    padding-left: 18px;\n    padding-top: 5px;\n  }\n  .panel-heading { border-bottom: 1px solid @card-pf-border-color; }\n  .panel-group {\n    bottom: 0;\n    margin-bottom: 0;\n    position: absolute;\n    top: 25px; // Height of Notifications Drawer box.\n    width: 100%;\n  }\n  .panel-title a {\n    cursor: pointer;\n    display: block;\n  }\n  &.drawer-pf-expanded {\n    @media (max-width: @screen-xs-max) {\n      left:0;\n      width: 100%;\n    }\n    @media (min-width: @screen-xs-max) {\n      left: 270px;\n    } // if the drawer is expanded and the screen is reduced this ensures it switches to full width on smaller screens.\n    width: inherit;\n    .drawer-pf-toggle-expand:before {\n      content: \"\\f101\";\n    }\n  }\n  .blank-slate-pf {\n    border: 0;\n    margin-bottom: 0;\n    padding: 30px;\n\n    .blank-slate-pf-icon {\n      font-size: 3em;\n      line-height: 1em;\n    }\n\n    h1 {\n      font-size: 1em;\n      margin-bottom: 0;\n      margin-top: 15px;\n    }\n  }\n}\n.drawer-pf-close, .drawer-pf-toggle-expand {\n  color: @gray-darker;\n  cursor: pointer;\n  line-height: inherit;\n  padding: 2px 10px;\n  position: absolute;\n  &:hover,\n  &:focus {\n    color: @color-pf-blue-400;\n    text-decoration: none;\n  }\n}\n.drawer-pf-toggle-expand {\n  left: 0;\n  &:before {\n    content: \"\\f100\";\n    font-family: \"FontAwesome\";\n  }\n  &:hover {\n    color: @link-color;\n  }\n}\n.drawer-pf-close {\n  right: 0;\n}\n\n\n.drawer-pf-action {\n  display: flex;\n  border-bottom: 1px solid @card-pf-border-color;\n\n  .btn-link {\n    color: @link-color;\n    padding: 10px 0;\n    .pficon, .fa {\n      margin-right: 3px;\n    }\n    .pficon-close {\n      position: relative;\n      top: 1px;\n    }\n\n    &:hover { color: @link-hover-color; }\n  }\n}\n\n.drawer-pf-action-link {\n  border-left: solid 1px @color-pf-black-300;\n  flex: 1 1 0%;\n  margin: 10px 0;\n  text-align: center;\n\n  &:first-of-type {\n    border-left-width: 0;\n  }\n\n  .btn-link {\n    padding: 0;\n  }\n}\n\n.drawer-pf-loading {\n  color: @gray-pf;\n  font-size: (@font-size-base + 2);\n  padding: 20px 15px;\n}\n\n.drawer-pf-notification {\n  border-bottom: 1px solid @card-pf-border-color;\n  padding: 15px;\n  .date {\n    border-right: 1px solid #aaa;\n    display: inline-block;\n    line-height: 1;\n    margin-right: 5px;\n    padding-right: 9px;\n  }\n  > .dropdown-kebab-pf {\n    margin-top: -3px;\n  }\n\n  .pficon {\n    font-size: @font-size-large;\n    margin-top: 3px;\n  }\n  &:last-of-type {\n    border-bottom: none;\n  }\n  &:hover { background-color: @color-pf-blue-50; }\n  &.unread .drawer-pf-notification-message {\n    font-weight: bold;\n    cursor: pointer;\n  }\n  &.expanded-notification {\n    .date {\n      border-right: none;\n      padding-right: 0;\n    }\n  }\n}\n\n.drawer-pf-notification-content {\n  cursor: default;\n}\n\n.drawer-pf-notification-info,\n.drawer-pf-notification-message {\n  display: block;\n  padding-left: 27px;\n  padding-right: 19px;\n  .expanded-notification & {\n    display: inline-block;\n  }\n}\n\n.drawer-pf-title {\n  background-color: @color-pf-black-100;\n  border-bottom: 1px solid @card-pf-border-color;\n  position: absolute;\n  width: 100%;\n  h3 {\n    font-size: @font-size-base;\n    margin: 0;\n    padding: 6px 15px;\n  }\n}\n\n.drawer-pf-notification.expanded-notification {\n  .drawer-pf-notification-content {\n    display: flex;\n    @media (max-width: @screen-sm-max) {\n      flex-direction: column;\n    }\n    .drawer-pf-notification-message {\n      flex: 1 1;\n    }\n  }\n}\n\n/* Exclusive styles to work with Vertical Navigation */\n.navbar-pf-vertical {\n  .drawer-pf {\n    height: ~\"calc(100vh - @{drawer-pf-top-vertical} - 20px)\";//to create a 20px offset bottom\n    top: @drawer-pf-top-vertical; //menu height;\n      @media (max-width: @screen-xs-max) {\n        width:100%;\n        height: calc(~\"100vh - @{drawer-pf-top-vertical}\");\n      }\n\n  }\n  .nav .drawer-pf-trigger {\n    .drawer-pf-trigger-icon {\n      border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n      border-right: 1px solid @navbar-pf-navbar-utility-border-color;\n      padding-left: 15px;\n      padding-right: 15px;\n    }\n    &.open .drawer-pf-trigger-icon {\n      background-color: @navbar-pf-navbar-utility-hover-bg-color;\n    }\n  }\n}\n\n/* Exclusive styles to work with Horizontal Navigation */\n.navbar-pf {\n  .drawer-pf {\n    height: ~\"calc(100vh - @{drawer-pf-top-horizontal} - 20px)\";\n    top: @drawer-pf-top-horizontal;\n    @media (max-width: @screen-xs-max) {\n      width:100%;\n      height: calc(~\"100vh - @{drawer-pf-top-horizontal} - 32px\");\n      top:calc(~\"@{drawer-pf-top-horizontal} + 8px\");\n    }\n  }\n  .drawer-pf-trigger-icon { cursor: pointer; }\n}\n","//\n// Search\n// --------------------------------------------------\n\n.search-pf {\n  &.has-button {\n    border-collapse: separate;\n    display: table;\n    .form-group {\n      display: table-cell;\n      width: 100%;\n      .btn {\n        .box-shadow(none);\n        float: left;\n        margin-left: -1px;\n        &.btn-lg {\n          font-size: (@font-size-large + .5); // to make button height consistent across browsers!\n        }\n        &.btn-sm {\n          font-size: (@font-size-small - .3); // to make button height consistent across browsers!\n        }\n      }\n      .form-control {\n        float: left;\n      }\n    }\n  }\n  .has-clear {\n    .clear {\n      background: fade(@color-pf-white, 0%); // to make the whole button clickable in IE9+\n      border: 0;\n      height: (@input-height-base - 1);\n      line-height: 1;\n      padding: 0;\n      position: absolute;\n      right: 1px;\n      top: 1px;\n      width: 28px;\n      &:focus {\n        outline: none;\n      }\n    }\n    .form-control {\n      padding-right: 30px;\n      &::-ms-clear {\n        display: none;\n      }\n    }\n    .input-lg + .clear {\n      height: (@input-height-large - 2);\n      width: 28px;\n    }\n    .input-sm + .clear {\n      height: (@input-height-small - 2);\n      width: 28px;\n      span {\n        font-size: (@font-size-base - 2);\n      }\n    }\n    .search-pf-input-group {\n      position: relative;\n    }\n  }\n}\n","//\n// Sidebar\n// --------------------------------------------------\n\n.sidebar-header {\n  border-bottom: 1px solid darken(@page-header-border-color, 2%);\n  padding-bottom: ((@line-height-computed / 2) + 1);\n  margin: ((@line-height-computed * 2) + 10) 0 @line-height-computed;\n  .actions {\n    margin-top: -2px;\n  }\n}\n\n.sidebar-pf {\n  .sidebar-header + .list-group {\n    border-top: 0;\n    margin-top: (-@grid-gutter-width / 2 / 2);\n    .list-group-item {\n      background: transparent;\n      border-color: darken(@page-header-border-color, 2%);\n      padding-left: 0;\n    }\n    .list-group-item-heading {\n      font-size: @font-size-base;\n    }\n  }\n  .nav-category {\n    h2 {\n      color: @dropdown-header-color;\n      font-size: @font-size-base;\n      font-weight: 400;\n      line-height: (@line-height-computed + 1);\n      margin: 0;\n      padding: 8px 0;\n    }\n    + .nav-category {\n      margin-top: (@grid-gutter-width / 4);\n    }\n  }\n  .nav-pills > li {\n    &.active > a {\n      background: @dropdown-link-active-bg !important;\n      border-color: @dropdown-link-active-border-color !important;\n      color: @color-pf-white;\n      @media (min-width: @grid-float-breakpoint) {\n        &:after {\n          content: @fa-var-angle-right;\n          font-family: @icon-font-name-fa;\n          display: block;\n          position: absolute;\n          right: (@grid-gutter-width / 2 / 2);\n          top: 1px;\n        }\n      }\n      .fa {\n        color: @color-pf-white;\n      }\n    }\n    > a {\n      border-bottom: 1px solid transparent;\n      border-radius: 0;\n      border-top: 1px solid transparent;\n      color: @text-color;\n      font-size: (@font-size-base + 1);\n      line-height: (@line-height-computed + 1);\n      padding: 1px (@grid-gutter-width / 2);\n      &:hover {\n        background: @dropdown-link-hover-bg;\n        border-color: @dropdown-link-hover-border-color;\n      }\n      .fa {\n        color: lighten(@gray-pf, 12%);\n        font-size: (@font-size-base + 3);\n        margin-right: (@grid-gutter-width / 4);\n        text-align: center;\n        vertical-align: middle;\n        width: (@font-size-base + 3);\n      }\n    }\n  }\n  .nav-stacked {\n    margin-left: (-(@grid-gutter-width / 2));\n    margin-right: (-(@grid-gutter-width / 2));\n    li + li {\n      margin-top: 0;\n    }\n  }\n  .panel {\n    background: transparent;\n  }\n  .panel-body {\n    padding: 6px (@grid-gutter-width / 2);\n    .nav-pills > li > a {\n      padding-left: (@grid-gutter-width / 2 + 17);\n    }\n  }\n  .panel-heading {\n    padding: 9px (@grid-gutter-width / 2);\n  }\n  .panel-title {\n    font-size: @font-size-base;\n    > a {\n      &:before {\n        display: inline-block;\n        margin-left: 1px;\n        margin-right: 4px;\n        width: 9px;\n      }\n      &.collapsed:before {\n        margin-left: 3px;\n        margin-right: 2px;\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint-max) {\n  .sidebar-header-bleed-left {\n    margin-left: (-(@grid-gutter-width / 2));\n    > h2 {\n      margin-left: (@grid-gutter-width / 2);\n    }\n  }\n  .sidebar-header-bleed-right {\n    margin-right: (-(@grid-gutter-width / 2));\n    .actions {\n      margin-right: (@grid-gutter-width / 2);\n    }\n    > h2 {\n      margin-right: (@grid-gutter-width / 2);\n    }\n    + .list-group {\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n  }\n  .sidebar-pf {\n    .panel-group .panel-default,\n    .treeview {\n      border-left: 0;\n      border-right: 0;\n      margin-left: (-(@grid-gutter-width / 2));\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n    .treeview {\n      margin-top: 5px;\n      .list-group-item {\n        padding-left: (@grid-gutter-width / 2);\n        padding-right: (@grid-gutter-width / 2);\n        &.node-selected:after {\n          content: @fa-var-angle-right;\n          font-family: @icon-font-name-fa;\n          display: block;\n          position: absolute;\n          right: (@grid-gutter-width/2 / 2);\n          top: 1px;\n        }\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint) {\n  .sidebar-pf {\n    background: @sidebar-pf-bg;\n    &.sidebar-pf-left {\n      border-right: 1px solid @sidebar-pf-border-color;\n    }\n    &.sidebar-pf-right {\n      border-left: 1px solid @sidebar-pf-border-color;\n    }\n    > .nav-category,\n    > .nav-stacked {\n      margin-top: 5px;\n    }\n  }\n}\n","//\n// Skip to content\n// --------------------------------------------------\n.skiplink-pf {\n  position: absolute;\n  top: @skiplink-pf-top;\n  left: -300%; /* moves off screen */\n  z-index: @zindex-modal;\n}\n.skiplink-pf:focus {\n  left: @skiplink-pf-left;\n}\n","//\n// Spinner\n// --------------------------------------------------\n\n@keyframes rotation {\n  from {transform: rotate(0deg);}\n  to {transform: rotate(359deg);}\n}\n\n.spinner {\n  animation: rotation 600ms infinite linear;\n  border-bottom: 4px solid fade(@color-pf-black, 25%);\n  border-left: 4px solid fade(@color-pf-black, 25%);\n  border-right: 4px solid fade(@color-pf-black, 25%);\n  border-radius: 100%;\n  border-top: 4px solid fade(@color-pf-black, 75%);\n  height: (@font-size-base * 2);\n  margin: 0 auto;\n  position: relative;\n  width: (@font-size-base * 2);\n  &.spinner-inline {\n    display: inline-block;\n    margin-right: 3px;\n  }\n  &.spinner-lg {\n    border-width: 5px;\n    height: (@font-size-base * 2.5);\n    width: (@font-size-base * 2.5);\n  }\n  &.spinner-sm {\n    border-width: 3px;\n    height: (@font-size-base * 1.5);\n    width: (@font-size-base * 1.5);\n  }\n  &.spinner-xs {\n    border-width: 2px;\n    height: @font-size-base;\n    width: @font-size-base;\n  }\n  &.spinner-inverse {\n    border-bottom-color: fade(@color-pf-white, 25%);\n    border-left-color: fade(@color-pf-white, 25%);\n    border-right-color: fade(@color-pf-white, 25%);\n    border-top-color: fade(@color-pf-white, 75%);\n  }\n}\n\n.ie9 .spinner {\n  background: url(\"@{img-path}/@{img-spinner}\") no-repeat;\n  border: 0;\n  &.spinner-inverse {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse}\");\n  }\n  &.spinner-inverse-lg {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-lg}\");\n  }\n  &.spinner-inverse-sm {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-sm}\");\n  }\n  &.spinner-inverse-xs {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-xs}\");\n  }\n  &.spinner-lg {\n    background-image: url(\"@{img-path}/@{img-spinner-lg}\");\n  }\n  &.spinner-sm {\n    background-image: url(\"@{img-path}/@{img-spinner-sm}\");\n  }\n  &.spinner-xs {\n    background-image: url(\"@{img-path}/@{img-spinner-xs}\");\n  }\n}\n","//\n// Syntax Highlighting for google-code-prettify\n// --------------------------------------------------\n\n.prettyprint {\n  .atn,\n  .com,\n  .fun,\n  .var {\n    color: @syntax-3;\n  }\n\n  .atv,\n  .str {\n    color: @syntax-1;\n  }\n\n  .clo,\n  .dec,\n  .kwd,\n  .opn,\n  .pln,\n  .pun {\n    color: @syntax-2;\n  }\n\n  .lit,\n  .tag,\n  .typ {\n    color: @syntax-4;\n  }\n\n  ol.linenums {\n    margin-bottom: 0;\n  }\n}\n","//\n// Table View\n// --------------------------------------------------\n\n// Keep dataTable class for legacy apps\ntable.dataTable {\n  height: 100%;\n  margin-bottom: 0;\n  max-width: none !important;\n  tbody {\n    > tr {\n      > td {\n        // Styling for inline actions\n        &.table-view-pf-actions {\n          padding: 0;\n          vertical-align: middle;\n        }\n      }\n      &:hover {\n        // Styling when hovering anywhere else on a row\n        > td.table-view-pf-actions {\n          background-color: @table-bg-accent;\n          border-bottom-color: @table-border-color;\n        }\n      }\n    }\n    > tr.selected {\n      color: @color-pf-white;\n      background-color: @color-pf-blue-400;\n      > td {\n        border-bottom-color: @color-pf-blue-500;\n        &.table-view-pf-actions {\n          background-color: @table-bg-accent;\n          border-bottom-color: @table-border-color;\n        }\n      }\n      &:hover {\n        > td {\n          background-color: inherit;\n          border-bottom-color: @color-pf-blue-500;\n          &.table-view-pf-actions {\n            background-color: @table-bg-accent;\n            border-bottom-color: @table-border-color;\n          }\n        }\n      }\n    }\n  }\n  thead {\n    .sorting,\n    .sorting_asc,\n    .sorting_desc,\n    .sorting_asc_disabled,\n    .sorting_desc_disabled {\n      cursor: pointer;\n    }\n    .sorting_asc,\n    .sorting_desc {\n      color: @link-color !important;\n      position: relative;\n      &:after {\n        content: @fa-var-angle-down;\n        font-family: @icon-font-name-fa;\n        font-size: (@font-size-base - 2);\n        font-weight: normal;\n        height: (@font-size-base - 3);\n        left: 7px;\n        line-height: @font-size-base;\n        position: relative;\n        top: 2px;\n        vertical-align: baseline;\n        width: @font-size-base;\n      }\n      &:before {\n        background: @link-color;\n        content: \"\";\n        height: 2px;\n        position: absolute;\n        left: 0;\n        top: 0;\n        width: 100%;\n      }\n    }\n    .sorting_asc:after {\n      content: @fa-var-angle-up;\n      top: -3px;\n    }\n  }\n  th:active {\n    outline: none;\n  }\n}\n\n// Empty table\n.table-view-pf-empty {\n  &.blank-slate-pf {\n    background-color: @table-bg-accent;\n    border: 1px solid @table-border-color;\n    border-radius: 0;\n    margin-top: -1px;\n  }\n}\n\n// Embedded toolbar\n.table-view-pf-toolbar {\n  &.toolbar-pf {\n    background-color: @table-bg-accent;\n    border-bottom: none;\n    border-left: 1px solid @table-border-color;\n    border-right: 1px solid @table-border-color;\n    border-top: 1px solid @table-border-color;\n    box-shadow: none;\n    margin-left: 0px;\n    margin-right: 0px;\n    .toolbar-pf-results {\n      border-top: 1px solid @table-border-color;\n      min-height: 40px;\n      line-height: 40px;\n    }\n  }\n}\n\n// External Toolbar\n.table-view-pf-toolbar-external {\n  &.toolbar-pf {\n    border-bottom: none;\n    border-top: none;\n    box-shadow: none;\n    .toolbar-pf-results {\n      border-top: 1px solid @table-border-color;\n      min-height: 40px;\n      line-height: 40px;\n    }\n  }\n}\n\n.table-view-pf-colvis-menu {\n  > li {\n    padding: 5px 10px;\n    &:hover {\n      background-color: #def3ff;\n    }\n    > input {\n      margin-top: 0;\n      margin-right: 10px;\n      vertical-align: middle;\n    }\n    > label {\n      margin-bottom: 0;\n    }\n  }\n\n}\n\n// Inline action button and kebab\n// Sets button height to 100% of td height in firefox and chrome, but not in IE when wrapping occurs.\n// Button height must be set dynamically in IE to be equal to td height.\n.table-view-pf-actions {\n  background-color: @btn-default-bg; // included just in case there are gaps between the edges of the buttons and the table cell\n  height: 100%;\n  .btn,\n  .dropdown-toggle {\n    border: none;\n    box-shadow: none;\n    height: 100%;\n    width: 100%;\n  }\n  .dropdown,\n  .table-view-pf-btn {\n    height: 100%;\n  }\n  .dropdown-menu.dropdown-menu-right {\n    right: -5px;\n  }\n  &:last-child {\n    width: 24px;\n  }\n}\n\n// Selection column\n.table-view-pf-select {\n  width: 33px;\n}\n\n// Results area containing selected row text\n.table-view-pf-select-results {\n  text-align: right;\n}\n","//\n// Time Picker\n// --------------------------------------------------\n.bootstrap-datetimepicker-widget {\n  a[data-action] {\n    border: 0;\n    box-shadow: none;\n    color: @gray-dark;\n    display: block;\n    padding-bottom: 4px;\n    padding-top: 4px;\n    &:hover { color: @link-color; }\n  }\n  &.dropdown-menu {\n    left: 0!important;\n    padding: 0;\n    width: ~\"calc(100% - 25px)\";\n    &:before, &:after {\n      content: none;\n    }\n    &.top {\n      margin-bottom: -1px;\n    }\n    &.bottom {\n      margin-top: -1px;\n    }\n  }\n  .timepicker-hour {\n    width: 100%;\n    &:after {\n      content: \":\";\n      float: right;\n    }\n  }\n}\n.timepicker-hours,\n.timepicker-minutes {\n  table td {\n    font-weight: bold;\n    line-height: 30px;\n    height: 30px;\n    &:hover { color: @link-color; }\n  }\n  .table-condensed > tbody > tr > td { padding: 0; }\n}\n.time-picker-pf {\n  .input-group-addon {\n    .fa,\n    .pficon { width: 12px; }\n    &:not(.active) { box-shadow: none; }\n  }\n}\n.timepicker-picker {\n  table td {\n    span,\n    a span {\n      height: 24px;\n      line-height: 24px;\n      margin: 0;\n      width: 100%;\n    }\n  }\n  .table-condensed > tbody > tr > td {\n    height: 25px;\n    line-height: 18px;\n    padding: 0;\n  }\n  button[data-action] { // provisional until the button is removed\n    padding-bottom: 0;\n    padding-top: 0;\n  }\n  .separator { display: none; }\n  tr:nth-child(2) td {\n    background-color: @dropdown-link-hover-bg;\n    border-color: @dropdown-link-hover-border-color;\n    border-style: solid;\n    border-width: 1px;\n    border-left: 0;\n    border-right: 0;\n  }\n}\n","//\n// Toast notifications\n// --------------------------------------------------\n\n.toast-pf {\n  background-color: @color-pf-white;\n  border-color: @color-pf-black-400;\n  box-shadow: 0 2px 6px fade(@color-pf-black, 20%);\n  padding-left: 68px; //15px space between the icon and the text\n  margin-bottom: 5px;\n  &.alert-danger > .pficon  { background-color: @alert-danger-border; }\n  &.alert-info > .pficon    { background-color: @alert-info-border; }\n  &.alert-success > .pficon { background-color: @alert-success-border; }\n  &.alert-warning > .pficon { background-color: @alert-warning-border; }\n  .dropdown-kebab-pf { margin-left: 10px; }\n  > .pficon {\n    background-color: @gray-pf;\n    bottom:  -1px;\n    box-shadow: 2px 0 5px -2px fade(@color-pf-black, 20%);\n    left: -1px;\n    padding-top: 10px;\n    text-align: center;\n    top: -1px;\n    width: 53px;\n    &:before { color: fade(@color-pf-white, 74%); }\n  }\n  .toast-pf-action {\n    margin-left: 15px;\n  }\n  .dropdown-kebab-pf .btn-link {\n    padding-top: 0;\n    padding-bottom: 0;\n    vertical-align: text-bottom;\n  }\n  /* Medium devices (desktops, 992px and up) */\n  @media (min-width: @screen-md-min) {\n    display: inline-block;\n  }\n}\n// Sets max width on toast notifications\n.toast-pf-max-width {\n @media (min-width: @screen-md-min) {\n    max-width: 31.1%; // sets the size to 4 cols;\n  }\n}\n// To position the notification on the top right corner, used in context on cards layout\n.toast-pf-top-right {\n  left: (@grid-gutter-width / 2);\n  position: absolute;\n  right: (@grid-gutter-width / 2);\n  top: 12px;\n  z-index: 1055; // More than @zindex-modal\n  /* Medium devices (desktops, 992px and up) */\n  @media (min-width: @screen-md-min) {\n    left: auto;\n  }\n}\n\n.toast-notifications-list-pf {\n  margin-left: (@grid-gutter-width / 2);\n  position: fixed;\n  right: (@grid-gutter-width / 2);\n  top: @toast-notification-top;\n  z-index: 1055;\n  .toast-pf {\n    clear: both;\n    float: right;\n  }\n  @media (min-width: @screen-sm-min) {\n    max-width: calc(50%);\n  }\n  @media (min-width: @screen-md-min) {\n    max-width: calc(33.1% ); // sets the size to 4 cols;\n  }\n}\n","//\n// Toolbar (Filter and view options)\n// --------------------------------------------------\n\n.toolbar-pf {\n  background: @color-pf-white;\n  border-bottom: 1px solid @sidebar-pf-border-color;\n  box-shadow: 0 1px 0px fade(@color-pf-black, 4.5%);\n  padding-top: (@grid-gutter-width/4);\n  .form-group {\n    margin-bottom: (@grid-gutter-width/4);\n    @media (min-width: @grid-float-breakpoint) {\n      border-right: 1px solid @sidebar-pf-border-color;\n      float: left;\n      margin-bottom: 0;\n      padding-left: (@grid-gutter-width/2);\n      padding-right: (@grid-gutter-width/2);\n    }\n    &:last-child {\n      border-right: 0;\n      margin-bottom: 0;\n      padding-right: 0;\n    }\n    .btn,\n    .btn-group {\n      + .btn,\n      + .btn-group { margin-left: 5px; }\n      + .btn-link,\n      + .dropdown { margin-left: 10px; }\n    }\n    .btn-link {\n      color: @gray-darker;\n      font-size: (@font-size-base + 4);\n      line-height: 1;\n      padding: 4px 0;\n      &:active,\n      &:focus,\n      &:hover { color: @link-color; }\n    }\n    .dropdown-kebab-pf .btn-link {\n      padding: 4px (@grid-gutter-width/4);\n      margin-left: (@grid-gutter-width/(-4));\n      margin-right: (@grid-gutter-width/(-4));\n    }\n  }\n}\n.toolbar-pf-actions {\n  display: table;\n  margin-bottom: 10px;\n  width: 100%;\n  @media (min-width: @grid-float-breakpoint) {\n    .toolbar-pf-filter {\n      padding-left: 0;\n    }\n  }\n}\n.toolbar-pf-view-selector {\n  font-size: (@font-size-base + 4);\n  .btn-link.active {\n    color: @link-color;\n    cursor: default;\n  }\n}\n.toolbar-pf-action-right {\n  float: right;\n  @media (max-width: @grid-float-breakpoint) {\n    float: none;\n  }\n}\n.toolbar-pf-find {\n  font-size: (@font-size-base + 2);\n  position: relative;\n}\n.find-pf-dropdown-container {\n  background: @color-pf-white;\n  border: solid 1px @color-pf-black-400;\n  display: none;\n  right: -20px;\n  padding: 5px;\n  position: absolute;\n  top: 35px;\n  width: 300px;\n  z-index: 10000;\n  @media (max-width: @grid-float-breakpoint) {\n    left: 30px;\n    top: -5px;\n    width: calc(100% - 30px);\n  }\n  &:before,\n  &:after {\n    content: \"\";\n    position: absolute;\n  }\n  &:before {\n    border-bottom:11px solid @color-pf-black-400;\n    border-left:11px solid transparent;\n    border-right:11px solid transparent;\n    right: 35px;\n    .toolbar-pf-find:last-child & {\n      right: 15px;\n    }\n    top: -12px;\n    @media (max-width: @grid-float-breakpoint) {\n      border-bottom:11px solid transparent;\n      border-right:11px solid @color-pf-black-400;\n      border-top:11px solid transparent;\n      left: -22px;\n      right: initial;\n      top: 8px;\n    }\n  }\n  &:after {\n    border-bottom:10px solid @color-pf-white;\n    border-left:10px solid transparent;\n    border-right:10px solid transparent;\n    right: 36px;\n    .toolbar-pf-find:last-child & {\n      right: 16px;\n    }\n    top: -10px;\n    @media (max-width: @grid-float-breakpoint) {\n      border-bottom:10px solid transparent;\n      border-right:10px solid @color-pf-white;\n      border-top:10px solid transparent;\n      left: -20px;\n      right: initial;\n      top: 9px;\n    }\n  }\n  input {\n    height: 30px;\n    padding: 5px 117px 5px 5px; // 112px (components) + 5px (offset)\n    width: 100%;\n  }\n  .find-pf-buttons {\n    position: absolute;\n    right: 10px;\n    top: 5px;\n    .btn {\n      border: none;\n      cursor: pointer;\n      margin-left: 0 !important;\n      padding: 0;\n      width: 18px;\n      .fa-angle-up,\n      .fa-angle-down {\n        font-weight: bold;\n        font-size: (@font-size-base + 6);\n      }\n      .pficon-close { font-size: (@font-size-base + 2); }\n    }\n    span {\n      height: 30px;\n      line-height: 30px;\n      vertical-align: middle;\n    }\n    .find-pf-nums {\n      color: @color-pf-black-500;\n      margin-right: 3px;\n    }\n  }\n}\n\n.toolbar-pf-results {\n  border-top: 1px solid @sidebar-pf-border-color;\n  margin-top: (@grid-gutter-width/4);\n  h5,\n  p,\n  ul {\n    display: inline-block;\n    line-height: (@grid-gutter-width/1.5);\n    margin-bottom: 0;\n    margin-top: 0;\n    @media (min-width: @screen-sm-min) {\n      line-height: @grid-gutter-width;\n    }\n  }\n  h5 {\n    font-weight: 700;\n    margin-right: 20px;\n  }\n  .label {\n    font-size: (@font-size-base - 1);\n    a {\n      color: @color-pf-white;\n      display: inline-block;\n      margin-left: 5px;\n    }\n  }\n}\n","//\n//  Vertical navigation\n// --------------------------------------------------\n//\n// Basic Required Layout for Vertical Navigation\n//\n// .navbar navbar-pf-vertical\n//   .navbar-header\n//   .collapse navbar-collapse   <-- necessary for collapsing vertical nav and mobile\n// .nav-pf-vertical [.nav-pf-vertical-callapsible-menus] [.nav-pf-persistent-secondary] [.hidden-icons-pf]\n//   .list-group\n//     .list-group-item [.active] [.secondary-nav-item-pf]\n//       a\n//         [primary icon] <-- Not shown if .hidden-icons-pf above\n//         .list-group-item-value\n//       .nav-pf-secondary-nav  <-- if .secondary-nav-item-pf above\n//         .nav-item-pf-header\n//           .secondary-collapse-toggle-pf data-toggle=\"collapse-secondary-nav\"\n//         .list-group\n//           .list-group-item [.active] [tertiary-nav-item-pf]\n//             a\n//              .list-group-item-value\n//            .nav-pf-tertiary-nav  <-- if .tertiary-nav-item-pf above\n//              .nav-item-pf-header\n//                .tertiary-collapse-toggle-pf data-toggle=\"collapse-tertiary-nav\"\n//              .list-group\n//                .list-group-item [.active] [tertiary-nav-item-pf]\n//                  a\n//                    .list-group-item-value\n//\n// .container-pf-nav-pf-vertical [.nav-pf-persistent-secondary] [.hidden-icons-pf]\n//\n\n.nav-pf-vertical {\n  background: @nav-pf-vertical-bg-color;\n  border-right: 1px solid @nav-pf-vertical-border-color;\n  bottom: 0;\n  left: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n   &.hidden.show-mobile-nav {  // Mobile mode open\n    box-shadow: 0 0 3px fade(@color-pf-black, 15%);\n    display: block !important;\n  }\n  &.hide-nav-pf {  // Used to hide navigation initially to avoid startup flicker\n    visibility: hidden !important;\n  }\n  .list-group {\n    border-top: 0;\n    margin-bottom: 0;\n  }\n  .list-group-item {\n    background-color: transparent;\n    border-color: @nav-pf-vertical-item-border-color;\n    padding: 0;\n    > a {\n      background-color: transparent;\n      color: @nav-pf-vertical-color;\n      cursor: pointer;\n      display: block;\n      font-size: (@font-size-base + 2);\n      font-weight: @nav-pf-vertical-font-weight;\n      height: @nav-pf-vertical-link-height;\n      line-height: 26px;\n      padding: @nav-pf-vertical-link-padding;\n      position: relative;\n      white-space: nowrap;\n      width: @nav-pf-vertical-width;\n      // When flexbox is supported nav item names take up all available space\n      @supports (display: flex) {\n        display: flex;\n        padding-right: 0;\n      }\n      .fa,\n      .glyphicon,\n      .pficon {\n        color: @nav-pf-vertical-icon-color;\n        float: left;\n        font-size: (@font-size-base + 8);\n        line-height: 26px;\n        margin-right: 10px;\n        text-align: center;\n        width: @nav-pf-vertical-icon-width;\n      }\n      &:hover {\n        text-decoration: none;\n      }\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-active-bg-color;\n        color: @nav-pf-vertical-active-color;\n        font-weight: @nav-pf-vertical-active-font-weight;\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @nav-pf-vertical-active-icon-color;\n        }\n      }\n    }\n    &.active {\n      > a:before {\n        background: @nav-pf-vertical-active-before-color;\n        content: \" \";\n        height: 100%;\n        left: 0;\n        position: absolute;\n        top: 0;\n        width: 3px;\n      }\n      &:hover { // to over-ride default list group setting\n        background-color: transparent;\n        border-color: @nav-pf-vertical-item-border-color;\n      }\n    }\n    .list-group-item-value {\n      display: block;\n      line-height: 25px;\n      max-width: 120px;\n      // If flexbox is supported, do not set max-width, take all space with just some right padding\n      @supports (display: flex) {\n        flex: 1;\n        max-width: none;\n        padding-right: 15px;\n      }\n      overflow: hidden;\n      text-overflow: ellipsis;\n    }\n  }\n  .list-group-item-separator {\n    border-top-color: @nav-pf-vertical-item-border-color;\n    border-top-width: 2px;\n  }\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n    .list-group-item > a {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  h5 {\n    color: @nav-pf-vertical-secondary-color;\n    cursor: default;\n    font-size: (@font-size-base + 1);\n    font-weight: 600;\n    margin: @nav-pf-vertical-secondary-list-header-margin;\n  }\n  &.hidden-icons-pf {\n    > .list-group > .list-group-item { // only the primary menu hides icons\n      > a {\n        .fa,\n        .glyphicon,\n        .pficon {\n          display: none;\n        }\n      }\n    }\n    &.collapsed {\n      display: none;\n    }\n  }\n  .badge-container-pf {\n    position: absolute;\n    right: 15px;\n    top: 20px;\n    // If flexbox is supported, use relative positioning to place to the right of the label\n    // and adjust the top position so that the secondary and tertiary nav items don't need to change\n    @supports (display: flex) {\n      padding-left: 0;\n      padding-right: 15px;\n      position: relative;\n      right: 0;\n      margin-top: -3px;\n      top: 5px;\n    }\n    .badge {\n      background: @nav-pf-vertical-badge-bg-color;\n      color: @nav-pf-vertical-badge-color;\n      float: left;\n      font-size: @font-size-base;\n      font-weight: 700;\n      line-height: @line-height-base;\n      margin: 0;\n      padding: 0 7px;\n      text-align: center;\n      .pficon,\n      .fa {\n        font-size: (@font-size-base + 2);\n        height: 20px;\n        line-height: @line-height-base;\n        margin-right: 3px;\n        margin-top: -1px;\n      }\n    }\n  }\n}\n.nav-pf-vertical-tooltip.tooltip {\n  margin-left: 15px;\n  .tooltip-inner {\n    background-color: @color-pf-white;\n    color: @color-pf-black-900;\n  }\n  .tooltip-arrow {\n    border-bottom-color: @color-pf-white;\n    left: calc(50% - 15px) !important;\n  }\n}\n.hover-secondary-nav-pf {\n  width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  &.nav-pf-vertical-with-badges {\n    width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n  }\n}\n.hover-tertiary-nav-pf {\n  width: ~\"calc(@{nav-pf-vertical-width} * 3)\";\n  &.nav-pf-vertical-with-badges {\n    width: ~\"calc(@{nav-pf-vertical-badges-width} * 3)\";\n  }\n  .nav-pf-secondary-nav {\n    width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    .collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  .nav-pf-tertiary-nav {\n    left: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-secondary-nav {\n      width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n      .collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    .nav-pf-tertiary-nav {\n      left: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n    }\n  }\n}\n.nav-pf-vertical.collapsed {\n  width: @nav-pf-vertical-collapsed-width;\n  &.collapsed-secondary-nav-pf { // collapsed state with secondary menu pinned\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.collapsed-tertiary-nav-pf { // collapsed state with tertiary menu pinned\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.hover-secondary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-badges-width} * 2))\";\n    }\n  }\n}\n.show-mobile-nav {\n  &.show-mobile-secondary {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.show-mobile-tertiary {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .mobile-nav-item-pf,\n  .mobile-secondary-item-pf {\n    .nav-pf-secondary-nav {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 4);\n    }\n    > .nav-pf-tertiary-nav {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 8);\n    }\n  }\n  .nav-pf-secondary-nav {\n    left: 0;\n    .secondary-nav-item-pf:hover & {\n      opacity: 0;\n      visibility: hidden;\n    }\n  }\n  .tertiary-nav-item-pf:hover {\n    .nav-pf-tertiary-nav {\n      opacity: 0;\n      visibility: hidden;\n    }\n  }\n  .tertiary-nav-item-pf.mobile-nav-item-pf:hover {\n    .nav-pf-tertiary-nav {\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n}\n.secondary-nav-item-pf {\n  > a {\n    cursor: default;\n    &:after {\n      color: @nav-pf-vertical-secondary-indicator-color;\n      content: @fa-var-angle-right;\n      display: block;\n      font-family: \"FontAwesome\";\n      font-size: (@font-size-base * 2);\n      line-height: 30px;\n      padding: @nav-pf-vertical-secondary-indicator-padding;\n      position: absolute;\n      right: 20px;\n      top: 0;\n    }\n    .list-group-item-value {\n      // If flex box is supported add some padding to account for the submenu indicator\n      @supports (display: flex) {\n        padding-right: 35px;\n      }\n    }\n  }\n  &.active,\n  &:hover {\n    > a {\n      width: ~\"calc(@{nav-pf-vertical-width} + 1px)\";\n      z-index: (@zindex-navbar-fixed + 1);\n      &:after {\n        right: 21px;\n      }\n      .collapsed-secondary-nav-pf & {\n        z-index: 0;\n      }\n      .collapsed-tertiary-nav-pf & {\n        z-index: 0;\n      }\n    }\n  }\n  .nav-pf-vertical-with-badges & {\n    &.active,\n    &:hover {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} + 1px)\";\n      }\n    }\n  }\n}\n.nav-pf-vertical.collapsed-secondary-nav-pf {\n  width: @nav-pf-vertical-width;\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n  }\n  .secondary-nav-item-pf {  // Keep sub-menu indicators below collapsed menu\n    &.active,\n    &.hover {\n      > a {\n        z-index: @zindex-navbar-fixed;\n      }\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .nav-pf-secondary-nav {\n    left: 0;\n  }\n  .nav-pf-tertiary-nav {\n    left: @nav-pf-vertical-width;\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-tertiary-nav {\n      left: @nav-pf-vertical-badges-width;\n    }\n  }\n}\n.nav-pf-vertical.collapsed-tertiary-nav-pf {\n  width: @nav-pf-vertical-width;\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n  }\n  .nav-pf-secondary-nav {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .secondary-nav-item-pf,    // Keep sub-menu indicators below collapsed menu\n  .tertiary-nav-item-pf {\n    &.active,\n    &.hover {\n      > a {\n        z-index: 0;\n      }\n    }\n  }\n}\n.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf {  // Persistent secondary nav settings\n  @media (min-width: @screen-lg-min) { // secondary menu only persistent at lg screen\n    width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n    }\n    &.collapsed-secondary-nav-pf {\n      width: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        width: @nav-pf-vertical-badges-width;\n      }\n      &.hover-tertiary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n        &.nav-pf-vertical-with-badges {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n        }\n      }\n    }\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.collapsed {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n      &.collapsed-secondary-nav-pf {\n        width: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          width: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          width: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.hover-tertiary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n        &.nav-pf-vertical-with-badges {\n          width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-badges-width} * 2))\";\n        }\n      }\n    }\n    &.hover-tertiary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-width} * 3)\";\n      &.nav-pf-vertical-with-badges {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} * 3)\";\n      }\n    }\n    .secondary-nav-item-pf.active {\n      .nav-pf-secondary-nav {\n        visibility: visible;\n        opacity: 1;\n      }\n    }\n  }\n}\n.nav-item-pf-header {\n  color: @nav-pf-vertical-secondary-color;\n  font-size: (@font-size-base + 4);\n  margin: @nav-pf-vertical-secondary-header-margin;\n  > a {\n    cursor: pointer;\n    margin-right: 7px;\n    &:hover,\n    &:focus {\n      color: @link-color;\n      text-decoration: none;\n    }\n  }\n}\n.nav-pf-vertical.collapsed { // Collapsed Primary Menu state\n  width: @nav-pf-vertical-collapsed-width;\n  .list-group-item { // Show only the icons\n    > a {\n      width: @nav-pf-vertical-collapsed-width;\n      > .list-group-item-value {\n        display: none;\n      }\n      > .badge-container-pf {\n        display: none;\n      }\n    }\n    &.secondary-nav-item-pf { // Adjust widths\n      &.active > a,\n      > a {\n        width: @nav-pf-vertical-collapsed-width;\n        &:after {\n          right: 10px;\n        }\n      }\n      &.active,\n      &:hover {\n        > a {\n          width: (@nav-pf-vertical-collapsed-width + 2);\n          &:after {\n            right: 11px;\n          }\n        }\n      }\n    }\n  }\n}\n.nav-pf-secondary-nav {\n  background: @nav-pf-vertical-secondary-bg-color;\n  border: 1px solid @nav-pf-vertical-border-color;\n  border-bottom: none;\n  border-top: none;\n  bottom: 0;\n  display: block;\n  left: @nav-pf-vertical-width;\n  opacity: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  visibility: hidden;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .secondary-nav-item-pf.active & {  // Show secondary menu if active and either is collapsed\n    .collapsed-secondary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 2);\n    }\n    .collapsed-tertiary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n  .secondary-nav-item-pf.is-hover & { // Show secondary menu if hovering\n    .hover-secondary-nav-pf & {\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .list-group-item {\n    border: none;\n    padding: @nav-pf-vertical-secondary-item-padding;\n    width: @nav-pf-vertical-width;\n    > a {\n      background-color: @nav-pf-vertical-secondary-bg-color;\n      color: @nav-pf-vertical-secondary-item-color;\n      font-size: @font-size-base;\n      font-weight: inherit;\n      height: inherit;\n      padding: @nav-pf-vertical-secondary-link-padding;\n      margin-left: 20px;\n      width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n\n      &:hover {\n        .list-group-item-value {\n          text-decoration: underline;\n        }\n      }\n    }\n    &.active > a:before {\n      display: none;\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-secondary-active-bg-color;\n        color: @nav-pf-vertical-secondary-active-color;\n      }\n    }\n    .badge-container-pf {\n      top: 5px;\n      .badge {\n        background: @nav-pf-vertical-secondary-badge-bg-color;\n        color: @nav-pf-vertical-badge-color;\n      }\n    }\n    .list-group-item-value {\n      padding-left: 5px;\n    }\n    &.tertiary-nav-item-pf { // Secondary menu items with tertiary sub menus\n      > a {\n        cursor: default;\n        &:after {\n          color: @nav-pf-vertical-secondary-indicator-color;\n          content: @fa-var-angle-right;\n          display: block;\n          font-family: \"FontAwesome\";\n          font-size: 20px;\n          line-height: 20px;\n          padding: @nav-pf-vertical-tertiary-indicator-padding;\n          position: absolute;\n          right: 20px;\n          top: 4px;\n        }\n        // If flex box is supported add some padding to account for the submenu indicator\n        .list-group-item-value {\n          @supports (display: flex) {\n            padding-right: 35px;\n          }\n        }\n      }\n      &.active,\n      &:hover {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-width} - 19px)\";\n          z-index: (@zindex-navbar-fixed + 3);\n          &:after {\n            right: 21px;\n          }\n        }\n      }\n    }\n  }\n  .nav-pf-vertical-with-badges & {\n    left: @nav-pf-vertical-badges-width;\n    width: @nav-pf-vertical-badges-width;\n    .list-group-item {\n      width: @nav-pf-vertical-badges-width;\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n      }\n      &.tertiary-nav-item-pf { // Secondary menu items with tertiary sub menus\n        &.active,\n        &:hover {\n          > a {\n            width: ~\"calc(@{nav-pf-vertical-badges-width} - 19px)\";\n          }\n        }\n      }\n    }\n  }\n}\n.nav-pf-tertiary-nav {\n  background: @nav-pf-vertical-tertiary-bg-color;\n  border: 1px solid @nav-pf-vertical-border-color;\n  border-bottom: none;\n  border-top: none;\n  bottom: 0;\n  display: block;\n  left: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  opacity: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  visibility: hidden;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .nav-pf-vertical-with-badges & {\n    left: @nav-pf-vertical-badges-width;\n    width: @nav-pf-vertical-badges-width;\n    .show-mobile-nav {\n      left: 0;\n    }\n  }\n  .tertiary-nav-item-pf.active & {  // Show tertiary menu if active and collapsed\n    .collapsed-tertiary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 3);\n    }\n  }\n  .tertiary-nav-item-pf.is-hover & { // Show tertiary menu if hovering\n    .hover-tertiary-nav-pf & {\n      opacity: 1;\n      visibility: visible;\n      .collapsed.collapsed-tertiary-nav-pf & {\n        left: 0;\n      }\n    }\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .nav-item-pf-header {\n    color: @nav-pf-vertical-tertiary-color;\n    margin: @nav-pf-vertical-tertiary-header-margin;\n  }\n  h5 {\n    color: @nav-pf-vertical-tertiary-color;\n    margin: @nav-pf-vertical-tertiary-list-header-margin;\n  }\n  .list-group-item {\n    border: none;\n    padding: @nav-pf-vertical-tertiary-item-padding;\n    > a {\n      background-color: transparent;\n      color: @nav-pf-vertical-tertiary-item-color;\n      font-size: @font-size-base;\n      font-weight: inherit;\n      height: inherit;\n      margin: @nav-pf-vertical-tertiary-link-margin;\n      padding: @nav-pf-vertical-tertiary-link-padding;\n    }\n    &.active > a:before {\n      display: none;\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-tertiary-active-bg-color;\n        color: @nav-pf-vertical-tertiary-active-color;\n      }\n    }\n    .badge-container-pf {\n      top: 5px;\n      .badge {\n        background: @nav-pf-vertical-tertiary-badge-bg-color;\n        color: @nav-pf-vertical-tertiary-badge-color;\n      }\n    }\n    .list-group-item-value {\n      padding-left: 5px;\n    }\n  }\n}\n.collapsed {\n  .nav-pf-secondary-nav { // Adjust left placement\n    left: @nav-pf-vertical-collapsed-width;\n    .list-group-item {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n        > .list-group-item-value { // Continue to show labels for secondary menu items\n          display: inline-block;\n        }\n        > .badge-container-pf {\n          display: inline-block;\n        }\n      }\n    }\n  }\n  .nav-pf-tertiary-nav { // Adjust left placement\n    left: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n    .list-group-item {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n        > .list-group-item-value { // Continue to show labels for tertiary menu items\n          display: inline-block;\n        }\n        > .badge-container-pf {\n          display: inline-block;\n        }\n      }\n    }\n  }\n  &.collapsed-secondary-nav-pf,\n  &.collapsed-tertiary-nav-pf {\n    width: @nav-pf-vertical-width;\n    .secondary-nav-item-pf {\n      &:hover {\n        > a {\n          z-index: @zindex-navbar-fixed;\n        }\n      }\n    }\n    .nav-pf-secondary-nav {\n      left: 0;\n    }\n  }\n  &.collapsed-secondary-nav-pf {\n    .nav-pf-tertiary-nav {\n      left: @nav-pf-vertical-width;\n    }\n  }\n  &.collapsed-tertiary-nav-pf {\n    .nav-pf-tertiary-nav {\n      left: 0;\n    }\n  }\n  &.hover-secondary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n\n    &.collapsed-secondary-nav-pf,\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n    &.collapsed-secondary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    }\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-secondary-nav {\n      .list-group-item {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n        }\n      }\n    }\n    .nav-pf-tertiary-nav {\n      left: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n      .list-group-item {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n        }\n      }\n    }\n    &.collapsed-secondary-nav-pf,\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-badges-width;\n    }\n    &.collapsed-secondary-nav-pf {\n      .nav-pf-tertiary-nav {\n        left: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.hover-secondary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n      &.collapsed-secondary-nav-pf,\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.hover-tertiary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n      &.collapsed-secondary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n      }\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-width;\n      }\n    }\n  }\n}\n.secondary-collapse-toggle-pf {\n  display: none;\n  font-family: @icon-font-name-fa;\n  font-size: inherit;\n  opacity: 0;\n  pointer-events: none;\n  -webkit-font-smoothing: antialiased;\n  &:before {\n    content: @fa-var-arrow-circle-o-left;\n  }\n  &.collapsed {\n    &:before {\n      content: @fa-var-arrow-circle-o-right;\n    }\n  }\n}\n.tertiary-collapse-toggle-pf {\n  display: none;\n  font-family: @icon-font-name-fa;\n  font-size: inherit;\n  opacity: 0;\n  pointer-events: none;\n  -webkit-font-smoothing: antialiased;\n  &:before {\n    content: @fa-var-arrow-circle-o-left;\n  }\n  &.collapsed {\n    &:before {\n      content: @fa-var-arrow-circle-o-right;\n    }\n  }\n}\n.nav-pf-vertical-collapsible-menus {\n  .secondary-collapse-toggle-pf {\n    display: inline-block;\n  }\n  .secondary-nav-item-pf.active {\n    .secondary-collapse-toggle-pf {\n      opacity: 1;\n      pointer-events: all;\n    }\n  }\n  .tertiary-collapse-toggle-pf {\n    display: inline-block;\n  }\n  .tertiary-nav-item-pf.active {\n    .tertiary-collapse-toggle-pf {\n      opacity: 1;\n      pointer-events: all;\n    }\n  }\n}\n.show-mobile-nav {\n  .secondary-collapse-toggle-pf {\n    display: inline-block;\n    opacity: 1;\n    pointer-events: all;\n    &:before {\n      content: @fa-var-arrow-circle-o-left;\n    }\n  }\n  .tertiary-collapse-toggle-pf {\n    display: inline-block;\n    opacity: 1;\n    pointer-events: all;\n    &:before {\n      content: @fa-var-arrow-circle-o-left;\n    }\n  }\n}\n.force-hide-secondary-nav-pf { // Used to temporarily hide sub-menus on an unpin event\n  .nav-pf-secondary-nav {\n    display: none !important;\n  }\n  .nav-pf-tertiary-nav {\n    display: none !important;\n  }\n}\n.nav-pf-vertical.transitions {\n  transition: width @nav-pf-menu-transition-period;\n  .nav-pf-secondary-nav {\n    transition: visibility @nav-pf-menu-transition-period, opacity @nav-pf-menu-transition-period linear;\n  }\n  .nav-pf-tertiary-nav {\n    transition: visibility @nav-pf-menu-transition-period, opacity @nav-pf-menu-transition-period linear;\n  }\n}\n","//\n// Wizard\n// --------------------------------------------------\n.wizard-pf {\n  padding: 10px;\n  margin: 0 auto;\n  max-height: 900px;\n  width: auto;\n  .modal-content {\n    min-height:100%;\n  }\n}\n\n// Wizard header\n// Top section of the wizard w/ title and dismiss\n\n.wizard-pf-body {\n    background:@color-pf-white;\n    padding: 0;\n    position: static;\n}\n/* styles the sidebard containing the sub-steps */\n.wizard-pf-sidebar {\n    background: @color-pf-black-100;\n    border-right: 1px solid @color-pf-black-300;\n    display:none;\n  @media (min-width: @screen-sm-min) {\n    display:inherit;\n    flex:0 0 auto;\n    overflow-x: hidden;\n    overflow-y: auto;\n    .list-group {\n      border-top: 0;\n      margin-bottom: 0;\n    }\n      .list-group-item {\n        background-color: transparent;\n        border-color: @color-pf-black-200;\n        padding: 0;\n        > a {\n          color: @color-pf-black;\n          cursor: pointer;\n          display: block;\n          font-size: 14px;\n          font-weight: 700;\n          height: 50px;\n          outline: 0;\n          padding-top: 11px;\n          padding-left: 20px;\n          position: relative;\n          white-space: nowrap;\n          width: 14em;\n          &:hover {\n            text-decoration: none;\n            background-color: @color-pf-black-200;\n          }\n          &:focus {\n            //corrects odd behavior when hover and focus are combined.\n            text-decoration: none;\n            span {\n              text-decoration: underline;\n            }\n          }\n        }\n        &.active {\n          background-color: @color-pf-black-200;\n\n          //override default behavior\n          &:hover {\n            border-color: @color-pf-black-200;\n          }\n          > a {\n            color: @color-pf-blue-300;\n            cursor: default;\n          }\n          // line to left side showing active substep\n          > a:before {\n            content: \" \";\n            background: @color-pf-blue-300;\n            height: 100%;\n            left: 0;\n            position: absolute;\n            top: 0;\n            width: 3px;\n          }\n          // caret to right showing active substep\n          > a:after {\n            color: @color-pf-blue-300;\n            content: \"\\f105\"; // right caret\n            display: block;\n            font-family: FontAwesome;\n            font-size: 24px;\n            font-weight: 500;\n            line-height: 30px;\n            padding-top: 10px;\n            position: absolute;\n            right: 23px;\n            top: 0;\n          }\n        }\n      }\n    }\n}\n.wizard-pf-substep-number {\n  display:inline-block;\n  margin-right: 5px;\n  vertical-align: middle;\n  width: 25px;\n}\n.wizard-pf-substep-title {\n  display:inline-block;\n  margin-right: 5px;\n  text-align: left;\n  vertical-align: middle;\n}\n/* styles the steps indicator across the top of the wizard */\n.wizard-pf-steps {\n  border-bottom: solid 1px @color-pf-black-300;\n    @media (min-width: @screen-sm-min) {\n      text-align: center;\n    }\n}\n\n.wizard-pf-steps-indicator {\n  background: @color-pf-black-200;\n  border-top: 1px solid @color-pf-black-300;\n  display: inline-block;\n  display: flex;\n  font-size: ceil((@font-size-base * 1.3333));\n  list-style: none;\n  margin-bottom: 0;\n  padding: 15px 0;\n    @media (min-width: @screen-sm-min) {\n      background: @color-pf-white;\n      height: 120px;\n      padding: 38px 0 0;\n      justify-content: space-around;\n    }\n\n  li {\n    counter-increment: section;\n    float:left; /* float for IE9 since it doesn't support flex. If items wrap, they overlap */\n    flex-grow: 1;\n    flex-basis: 0;\n    line-height: 15px;\n    margin: 0;\n    padding: 0;\n    position: relative;\n    text-align: center;\n    &:not(.active) {\n      display: none;\n      @media (min-width: @screen-sm-min) {\n        display: block;\n      }\n    }\n    a {\n        align-items: center;\n        display: flex;\n        flex-wrap:wrap;\n        font-weight: 700;\n        @media (min-width: @screen-sm-min) {\n          font-weight: normal;\n          justify-content: center;\n        }\n          .wizard-pf-step-title {\n            margin-left: 10px;\n            @media(min-width: @screen-sm-min) {\n              margin-left: 0;\n            }\n\n            &-substep {\n              font-weight: normal;\n              margin-left: 10px;\n              text-transform: capitalize;\n              &:before {\n                content:\"\\00BB\";\n                font-size: 20px;\n                margin-right: 10px;\n              }\n              &:not(.active) {\n                display: none;\n              }\n            }\n          }\n    }\n    /* draw the line between the circles */\n    @media (min-width: @screen-sm-min) {\n      .wizard-pf-step-title-substep {\n        display: none;\n      }\n      &:before {\n        background-color: @color-pf-black-400;\n        content: \"\";\n        height: 2px;\n        left: 0;\n        position: absolute;\n        right: 0;\n        top: 40px; // needed for IE9/10 calculate 50% of just the li, others calc 50% of the entire thing including the a:before\n        //otherwise, use top: calc(50% - 1px);\n      }\n      /* don't draw the line between the circles on the ends */\n      &:first-child:before {\n        left: 50%;\n        right: 0;\n      }\n      &:last-child:before {\n        left: 0;\n        right: 50%;\n      }\n      &:only-of-type:before {\n        background-color: transparent;\n      }\n    }\n    a {\n      color: @color-pf-black;\n      cursor: pointer;\n      font-size: 16px;\n      margin-left:1em;\n      margin-right:1em;\n      text-decoration: none;\n      &:hover {\n        .wizard-pf-step-number {\n          background-color: @color-pf-black-400;\n          border-color: @color-pf-black-400;\n          color: @color-pf-white;\n        }\n      }\n    }\n}\n  /* draw the step number in the circle */\n\n  .wizard-pf-step-number {\n    background-color: @color-pf-white;\n    border-radius: 50%;\n    border: solid 2px @color-pf-black-400;\n    color: @color-pf-black-400;\n    font-size: @font-size-base;\n    font-weight: 700;\n    height: 25px;\n    line-height: 22px;\n      @media (min-width: @screen-sm-min) {\n        left: ~\"calc(50% - 13px)\";\n        position: absolute;\n        top: 27px;\n      }\n    width: 25px;\n  }\n  .active .wizard-pf-step-number {\n    background-color: @color-pf-blue-300;\n    border-color: @color-pf-blue-300;\n    cursor: default;\n    color: @color-pf-white;\n  }\n\n  .viewed-pf .wizard-pf-step-number {\n    color: @color-pf-black;\n    background-color: @color-pf-white;\n    border-color: @color-pf-blue-300;\n  }\n\n}\n\n/* styles the main content portion of the wizard */\n.wizard-pf-main {\n  height: 100%;\n  padding:1em;\n  vertical-align: top;\n  width:100%;\n  @media (min-width: @screen-sm-min) {\n    overflow: auto;\n    padding:3em;\n    flex:1 1 auto;\n  }\n  .blank-slate-pf {\n    background-color: transparent;\n    border: none;\n    left: 0;\n    right: 0;\n  }\n}\n\n.wizard-pf-contents textarea {\n  resize: vertical;\n}\n\n/* styles the content of a review page */\n.wizard-pf-review-steps {\n  list-style: none;\n  .list-group, .list-group-item {\n    border: none;\n    margin-bottom: 0;\n  }\n  > ul {\n    > li {\n      float: left;\n      line-height: 15px;\n      margin: 0;\n      padding-top: 0;\n      position: relative;\n      width: 100%;\n      > a {\n        color: #030303;\n        cursor: pointer;\n        font-size: 16px;\n        padding-left: 30px;\n        padding-right: 5px;\n        text-decoration: none;\n        transition: 250ms;\n        &:before {\n          content: \"\\f107\";\n          display: block;\n          font-family: FontAwesome;\n          font-size: 24px;\n          font-weight: 500;\n          left: 20px;\n          position: absolute;\n          top: 0;\n        }\n        &.collapsed {\n          &:before {\n            content: \"\\f105\";\n          }\n        }\n      }\n    }\n  }\n}\n\n.wizard-pf-review-substeps {\n  padding-left: 22px;\n  > ul {\n    > li {\n      float: left;\n      line-height: 15px;\n      margin: 0;\n      position: relative;\n      width: 100%;\n      a {\n        color: #030303;\n        cursor: pointer;\n        font-size: 16px;\n        padding-left: 30px;\n        padding-right: 5px;\n        text-decoration: none;\n        transition: 250ms;\n        &:before {\n          content: \"\\f107\";\n          display: block;\n          font-family: FontAwesome;\n          font-size: 24px;\n          font-weight: 500;\n          left: 20px;\n          position: absolute;\n          top: 10px;\n        }\n        &.collapsed {\n          &:before {\n            content: \"\\f105\";\n          }\n        }\n      }\n    }\n  }\n}\n\n.wizard-pf-review-content {\n  padding-top: 10px;\n  padding-left: 40px;\n  .wizard-pf-review-item {\n    padding: 5px 0;\n    &.sub-item {\n      margin-left: 10px;\n    }\n    .wizard-pf-review-item-label {\n      font-weight: 700;\n      padding-right: 10px;\n    }\n    .wizard-pf-review-item-field {\n      font-weight: 700;\n      margin: 5px 0;\n      padding-right: 10px;\n      &:first-of-type {\n        margin-top: 0;\n      }\n      &:last-of-type {\n        margin-bottom: 0;\n      }\n      &.sub-field {\n        margin-left: 10px;\n      }\n    }\n  }\n}\n\n.wizard-pf-success-icon {\n  color: @color-pf-green-400;\n  font-size: (@font-size-base * 5.6);\n  line-height: (@font-size-base * 5.6);\n}\n\n/* styles the footer */\n.wizard-pf-footer {\n  background:@color-pf-white;\n  border-top: 1px solid @color-pf-black-300;\n  margin-top: 0;\n  padding-bottom: 17px;\n  .btn-cancel {\n    margin-right:25px;\n  }\n}\n\n.wizard-pf-row {\n    @media (min-width: @screen-sm-min) {\n      display: flex;\n      width:100%;\n      height: 900px;\n      max-height: 65vh;\n    }\n}\n\n// Scale up the modal\n@media (min-width: @screen-md-min) {\n  // increasing space around modal for larger viewports\n  .wizard-pf {\n    padding: 30px 0;\n    width: 900px;\n  }\n  // increasing width of sidebar for larger viewports\n  .wizard-pf-sidebar .list-group-item > a {\n    width: 18em;\n  }\n}\n\n//\n//\n// This is for the new wizard that is more robust on mobile.\n// --------------------------------------------------\n\n.wizard-pf-steps-alt, .wizard-pf-steps-alt ul {\n  list-style: none;\n  margin: 0;\n  padding: 0;\n}\n\n.wizard-pf-steps-alt {\n  margin-left: 15px;\n  margin-top: 15px;\n  background-image: linear-gradient(to right, transparent 11px, @color-pf-black-300 11px, @color-pf-black-300 13px, transparent 13px);\n  @media (min-width: @screen-sm-min) {\n    display:none;\n  }\n  &-indicator {\n    position: relative;\n    // caret to top showing active substep\n    &:after {\n      color: @color-pf-black-700;\n      content: \"\\f107\"; // top caret\n      display: block;\n      font-family: FontAwesome;\n      font-size: 24px;\n      font-weight: 500;\n      position: absolute;\n      right: 17px;\n      top: 50%;\n      transform:translateY(-50%);\n      @media (min-width: @screen-sm-min) {\n        display:none;\n      }\n    }\n    &.active {\n      &:after {\n        content: \"\\f106\";\n      }\n    }\n  }//indicator\n}//.wizard-pf-steps-alt\n\n.wizard-pf-step-alt {\n  margin-bottom: 10px;\n  a {\n    display:flex;\n    flex:1;\n    &:hover {\n      text-decoration: none;\n      .wizard-pf-step-alt-title {\n        color: @color-pf-blue-300;\n      }\n    }\n  }\n  ul {\n    margin-left: 11px;\n  }\n  .wizard-pf-step-alt-title {\n    margin-left: 5px;\n    align-self:center;\n  }\n  .wizard-pf-step-alt-number {\n    flex:0 0 auto;\n  }\n\n  &.active {\n    .wizard-pf-step-alt-number {\n      background-color: @color-pf-blue-300;\n      border-color: @color-pf-blue-300;\n      cursor: default;\n      color: @color-pf-white;\n    }\n    .wizard-pf-step-alt-title {\n      color: @color-pf-blue-300;\n    }\n    .wizard-pf-step-alt-substep:first-of-type {\n      margin-top: 2px; // gives proper spacing below number in circle active state\n    }\n\n\n  }\n  &.viewed {\n    .wizard-pf-step-alt-number {\n      color: @color-pf-black;\n      background-color: @color-pf-white;\n      border-color: @color-pf-blue-300;\n    }\n  }\n\n}//.wizard-pf-step-alt\n\n.wizard-pf-step-alt-number {\n  background-color: @color-pf-white;\n  border-radius: 50%;\n  border: solid 2px @color-pf-black-400;\n  color: @color-pf-black-400;\n  font-size: @font-size-base;\n  font-weight: 700;\n  height: 24px;\n  width: 24px;\n  display: inline-block;\n  text-align: center;\n}\n\n\n.wizard-pf-step-alt-title {\n  color: @color-pf-black;\n  font-weight: 700;\n  text-transform: capitalize;\n  display:inline-block;\n\n}//.wizard-pf-steps-alt-title\n\n.wizard-pf-step-alt-substep {\n    display:flex;\n  a {\n    padding:5px 0 5px 18px;\n    color: @color-pf-black-800;\n  }\n\n&:not(.disabled) {\n  &.active, &:hover {\n    background-color: @color-pf-black-200;\n    background-image: linear-gradient(to right, @color-pf-blue-300 2px, transparent 2px);\n    a {\n      color:@color-pf-blue-300;\n    }\n  }\n}\n  &.active {\n    a {\n      font-weight:700;\n    }\n  }\n  &.disabled {\n    cursor: not-allowed;\n    a {\n      pointer-events: none;\n    }\n  }\n}\n"]}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/patternfly/tests/build/less/patternfly-additions.min.css b/themes/src/main/node_modules/patternfly/tests/build/less/patternfly-additions.min.css
index 6d76c60..579955e 100644
--- a/themes/src/main/node_modules/patternfly/tests/build/less/patternfly-additions.min.css
+++ b/themes/src/main/node_modules/patternfly/tests/build/less/patternfly-additions.min.css
@@ -2,4 +2,4 @@
  * Datetimepicker for Bootstrap 3
  * version : 4.17.47
  * https://github.com/Eonasdan/bootstrap-datetimepicker/
- */.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{display:block;margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:700;font-size:1em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Increment Hours";content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Increment Minutes";content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Decrement Hours";content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Decrement Minutes";content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action=clear]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action=today]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:1px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:0 0}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#9c9c9c}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:0 0;cursor:pointer}.bootstrap-datetimepicker-widget table td.new,.bootstrap-datetimepicker-widget table td.old{color:#9c9c9c}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#0088ce;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#0088ce;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:1px}.bootstrap-datetimepicker-widget table td span:hover{background:0 0}.bootstrap-datetimepicker-widget table td span.active{background-color:#0088ce;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td span.old{color:#9c9c9c}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget.wider{width:21em}.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em!important}.input-group.date .input-group-addon{cursor:pointer}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.text-overflow-pf{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.about-modal-pf{background-color:#292e34;background-image:url(../img/bg-modal-about-pf.png);background-position:right bottom;background-repeat:no-repeat;background-size:216px auto}@media (min-width:768px){.about-modal-pf{background-size:auto}}.about-modal-pf .modal-body{color:#fff;padding-bottom:16px;padding-left:40px;padding-right:40px}@media (min-width:768px){.about-modal-pf .modal-body{padding-left:80px;padding-right:80px}}.about-modal-pf .modal-header{background-color:transparent}.about-modal-pf .pficon-close{color:#fff}.product-versions-pf{margin-bottom:30px;margin-top:30px}.product-versions-pf li strong{margin-right:10px}.trademark-pf{font-size:11px}.applauncher-pf{display:inline-block;overflow:visible}.applauncher-pf .applauncher-pf-title{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.applauncher-pf .dropdown-toggle.disabled{cursor:not-allowed}.applauncher-pf.open>.dropdown-menu{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.applauncher-pf .applauncher-pf-item{width:100%}.applauncher-pf .applauncher-pf-link{display:-ms-flexbox;display:flex;white-space:initial;-ms-flex-align:center;align-items:center}@media (min-width:768px){.applauncher-pf-block-list .applauncher-pf-item{-ms-flex:0 0 50%;flex:0 0 50%}}.applauncher-pf-block-list .applauncher-pf-link{-ms-flex-wrap:wrap;flex-wrap:wrap}@media (min-width:768px){.applauncher-pf-block-list .applauncher-pf-link{-ms-flex-direction:column;flex-direction:column;text-align:center;padding:15px 0;height:100%}}.applauncher-pf-block-list .applauncher-pf-link-icon{padding:0}.applauncher-pf-block-list .applauncher-pf-link-title{margin-top:auto}@media (min-width:768px){.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link{padding:9px}.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon{-ms-flex:1 0 0px;flex:1 0 0;text-align:left}.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title{-ms-flex:3;flex:3}}.applauncher-pf .dropdown-menu{padding:9px;min-width:220px}.applauncher-pf .applauncher-pf-link{border-style:solid;border-width:1px;border-color:transparent}.applauncher-pf .applauncher-pf-link:hover{background-color:#f5f5f5;border-color:#bbb;color:#0088ce;text-decoration:none;box-shadow:0 0 2px 0 #d1d1d1}.applauncher-pf .applauncher-pf-link-icon{font-size:1.2em;text-align:center;width:1.28571429em}@media (min-width:768px){.applauncher-pf .applauncher-pf-link-icon{font-size:2em}}.navbar-utility .applauncher-pf .dropdown-menu{border-width:1px!important}@media (min-width:768px){.navbar-utility .applauncher-pf .dropdown-menu{margin-top:3px;right:0}}.navbar-pf .applauncher-pf.open>a,.navbar-pf .applauncher-pf.open>a:focus,.navbar-pf .navbar-utility .applauncher-pf.open>a,.navbar-pf .navbar-utility .applauncher-pf.open>a:focus,.navbar-pf-alt .applauncher-pf.open>a,.navbar-pf-alt .applauncher-pf.open>a:focus,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a:focus{background-color:#232323;color:#f5f5f5}@media (min-width:768px){.navbar-pf .applauncher-pf.open>a,.navbar-pf .applauncher-pf.open>a:focus,.navbar-pf .navbar-utility .applauncher-pf.open>a,.navbar-pf .navbar-utility .applauncher-pf.open>a:focus,.navbar-pf-alt .applauncher-pf.open>a,.navbar-pf-alt .applauncher-pf.open>a:focus,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a:focus{background-color:#363636;border-color:#2b2b2b;color:#d1d1d1}}@media (max-width:767px){.navbar-pf .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf-alt .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu>li>a{padding-left:20px}.navbar-pf .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon{padding-right:20px}}.navbar-pf .applauncher-pf .dropdown-toggle,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .applauncher-pf .dropdown-toggle,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{background-color:inherit;color:#d1d1d1;text-align:left;text-decoration:none;border-width:0;display:block;padding-left:20px}.navbar-pf .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle.disabled{color:#8b8d8f!important}@media (min-width:768px){.navbar-pf .applauncher-pf .dropdown-toggle,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .applauncher-pf .dropdown-toggle,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{border-left:1px solid #2b2b2b;padding:7px 10px;line-height:1}}.navbar-pf .applauncher-pf .applauncher-pf-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon{padding-right:4px}@media (min-width:768px){.navbar-pf .applauncher-pf .applauncher-pf-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon{padding:0}}.navbar-pf .applauncher-pf .applauncher-pf-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title{display:inline;position:relative}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{overflow:hidden;width:100%}.navbar-pf .applauncher-pf .applauncher-pf-link:hover,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover{background-color:transparent;border-color:transparent;box-shadow:none}.navbar-pf .applauncher-pf .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-title{overflow:hidden}@media (min-width:768px){.navbar-pf .applauncher-pf,.navbar-pf .navbar-utility .applauncher-pf,.navbar-pf-alt .applauncher-pf,.navbar-pf-alt .navbar-utility .applauncher-pf{display:inline-block;overflow:visible}.navbar-pf .applauncher-pf .applauncher-pf-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.navbar-pf .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled{cursor:not-allowed}.navbar-pf .applauncher-pf.open>.dropdown-menu,.navbar-pf .navbar-utility .applauncher-pf.open>.dropdown-menu,.navbar-pf-alt .applauncher-pf.open>.dropdown-menu,.navbar-pf-alt .navbar-utility .applauncher-pf.open>.dropdown-menu{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.navbar-pf .applauncher-pf .applauncher-pf-item,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-item,.navbar-pf-alt .applauncher-pf .applauncher-pf-item,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-item{width:100%}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{display:-ms-flexbox;display:flex;white-space:initial;-ms-flex-align:center;align-items:center}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link{-ms-flex-wrap:wrap;flex-wrap:wrap}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon{padding:0}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-title{margin-top:auto}.navbar-pf .applauncher-pf .dropdown-menu,.navbar-pf .navbar-utility .applauncher-pf .dropdown-menu,.navbar-pf-alt .applauncher-pf .dropdown-menu,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-menu{padding:9px;min-width:220px}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{border-style:solid;border-width:1px;border-color:transparent}.navbar-pf .applauncher-pf .applauncher-pf-link:hover,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover{background-color:#f5f5f5;border-color:#bbb;color:#0088ce;text-decoration:none;box-shadow:0 0 2px 0 #d1d1d1}.navbar-pf .applauncher-pf .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon{font-size:1.2em;text-align:center;width:1.28571429em}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-item{-ms-flex:0 0 50%;flex:0 0 50%}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link{-ms-flex-direction:column;flex-direction:column;text-align:center;padding:15px 0;height:100%}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link{padding:9px}.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon{-ms-flex:1 0 0px;flex:1 0 0;text-align:left}.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title{-ms-flex:3;flex:3}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon{font-size:2em}}@media (min-width:768px){.navbar-iconic .applauncher-pf .dropdown-toggle,.navbar-iconic .applauncher-pf.dropdown>.dropdown-toggle,.navbar-iconic .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-iconic .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{padding:22px 10px;line-height:inherit}}.blank-slate-pf{background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:1px;margin-bottom:20px;padding:30px;text-align:center}@media (min-width:768px){.blank-slate-pf{padding:60px 60px}}@media (min-width:992px){.blank-slate-pf{padding:90px 120px}}.blank-slate-pf .blank-slate-pf-icon{color:#9c9c9c;font-size:57.6px;line-height:57.6px}.blank-slate-pf .blank-slate-pf-main-action{margin-top:20px}.blank-slate-pf .blank-slate-pf-secondary-action{margin-top:20px}.blank-slate-pf button{margin-right:5px}.blank-slate-pf button:last-of-type{margin-right:0}.combobox-container.combobox-selected .glyphicon-remove{display:inline-block}.combobox-container .caret{margin-left:0}.combobox-container .combobox::-ms-clear{display:none}.combobox-container .dropdown-menu{margin-top:-1px;width:100%}.combobox-container .glyphicon-remove{display:none;top:auto;width:12px}.combobox-container .glyphicon-remove:before{content:"\e60b";font-family:PatternFlyIcons-webfont}.combobox-container .input-group-addon{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;position:relative}.combobox-container .input-group-addon.active,.combobox-container .input-group-addon:active,.combobox-container .input-group-addon:focus,.combobox-container .input-group-addon:hover,.open .dropdown-toggle.combobox-container .input-group-addon{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.combobox-container .input-group-addon.active,.combobox-container .input-group-addon:active,.open .dropdown-toggle.combobox-container .input-group-addon{background-image:none}.combobox-container .input-group-addon.active.focus,.combobox-container .input-group-addon.active:focus,.combobox-container .input-group-addon.active:hover,.combobox-container .input-group-addon:active.focus,.combobox-container .input-group-addon:active:focus,.combobox-container .input-group-addon:active:hover,.open .dropdown-toggle.combobox-container .input-group-addon.focus,.open .dropdown-toggle.combobox-container .input-group-addon:focus,.open .dropdown-toggle.combobox-container .input-group-addon:hover{background-color:#e5e5e5;border-color:#a9a9a9}.combobox-container .input-group-addon.disabled,.combobox-container .input-group-addon.disabled.active,.combobox-container .input-group-addon.disabled:active,.combobox-container .input-group-addon.disabled:focus,.combobox-container .input-group-addon.disabled:hover,.combobox-container .input-group-addon[disabled],.combobox-container .input-group-addon[disabled].active,.combobox-container .input-group-addon[disabled]:active,.combobox-container .input-group-addon[disabled]:focus,.combobox-container .input-group-addon[disabled]:hover,fieldset[disabled] .combobox-container .input-group-addon,fieldset[disabled] .combobox-container .input-group-addon.active,fieldset[disabled] .combobox-container .input-group-addon:active,fieldset[disabled] .combobox-container .input-group-addon:focus,fieldset[disabled] .combobox-container .input-group-addon:hover{background-color:#f1f1f1;border-color:#bbb}.combobox-container .input-group-addon:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.bootstrap-datepicker.form-control[readonly]{background-color:#fff;border-color:#bbb!important;color:#363636;box-shadow:inset 0 1px 1px rgba(3,3,3,.075)}.bootstrap-datepicker.form-control[readonly]:focus{border-color:#0088ce;outline:0!important;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6)}.bootstrap-datepicker.form-control[readonly]:focus{border-color:#0088ce!important}.has-error .bootstrap-datepicker.form-control[readonly]:focus{border-color:#900;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33}.has-success .bootstrap-datepicker.form-control[readonly]:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168}.has-warning .bootstrap-datepicker.form-control[readonly]:focus{border-color:#bb6106;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60}.bootstrap-datepicker.form-control[readonly]:hover{border-color:#7dc3e8!important}.has-error .bootstrap-datepicker.form-control[readonly]:hover{border-color:#900!important}.has-success .bootstrap-datepicker.form-control[readonly]:hover{border-color:#2b542c!important}.has-warning .bootstrap-datepicker.form-control[readonly]:hover{border-color:#bb6106!important}.has-error .bootstrap-datepicker.form-control[readonly]{border-color:#c00!important}.has-success .bootstrap-datepicker.form-control[readonly]{border-color:#3c763d!important}.has-warning .bootstrap-datepicker.form-control[readonly]{border-color:#ec7a08!important}.datepicker{border-radius:1px}.datepicker .datepicker-switch,.datepicker tfoot .clear,.datepicker tfoot .today{font-size:14px;font-weight:500}.datepicker .next,.datepicker .prev{font-weight:500}.datepicker table tr td,.datepicker table tr th{border-radius:1px}.datepicker table tr td.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active:hover{background:#0088ce!important;color:#fff!important;text-shadow:none}.datepicker table tr td.day.focused,.datepicker table tr td.day:hover{background:#def3ff}.datepicker table tr td.selected,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected:hover{text-shadow:none}.datepicker table tr td span{border-radius:1px}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover{background:#0088ce;text-shadow:none}.datepicker table tr td span:hover{background:#def3ff}.datepicker tfoot tr th:hover,.datepicker thead tr:first-child th:hover{background:#def3ff}.input-daterange input:first-child{border-radius:1px 0 0 1px}.input-daterange input:last-child{border-radius:0 1px 1px 0}.input-daterange .input-group-addon{background-color:#f1f1f1;border-color:#bbb;line-height:1.66666667;padding:2px 6px}.bootstrap-select.btn-group.form-control{margin-bottom:0}.bootstrap-select.btn-group .btn{transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.bootstrap-select.btn-group .btn:hover{border-color:#7dc3e8}.bootstrap-select.btn-group .btn .caret{margin-top:-4px}.bootstrap-select.btn-group .btn:focus{border-color:#0088ce;outline:0!important;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6)}.has-error .bootstrap-select.btn-group .btn{border-color:#c00}.has-error .bootstrap-select.btn-group .btn:focus{border-color:#900;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33}.has-success .bootstrap-select.btn-group .btn{border-color:#3c763d}.has-success .bootstrap-select.btn-group .btn:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168}.has-warning .bootstrap-select.btn-group .btn{border-color:#ec7a08}.has-warning .bootstrap-select.btn-group .btn:focus{border-color:#bb6106;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60}.bootstrap-select.btn-group .dropdown-menu>.active>a,.bootstrap-select.btn-group .dropdown-menu>.active>a:active{background-color:#def3ff!important;border-color:#bee1f4!important;color:#363636!important}.bootstrap-select.btn-group .dropdown-menu>.active>a small,.bootstrap-select.btn-group .dropdown-menu>.active>a:active small{color:#9c9c9c!important}.bootstrap-select.btn-group .dropdown-menu>.disabled>a{color:#9c9c9c!important}.bootstrap-select.btn-group .dropdown-menu>.selected>a{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.bootstrap-select.btn-group .dropdown-menu>.selected>a small{color:rgba(255,255,255,.5)!important}.bootstrap-select.btn-group .dropdown-menu .divider{background:#ededed!important;margin:4px 1px!important}.bootstrap-select.btn-group .dropdown-menu dt{color:#8b8d8f;font-weight:400;padding:1px 10px}.bootstrap-select.btn-group .dropdown-menu li>a.opt{padding:1px 10px}.bootstrap-select.btn-group .dropdown-menu li a:active small{color:rgba(255,255,255,.5)!important}.bootstrap-select.btn-group .dropdown-menu li a:focus small,.bootstrap-select.btn-group .dropdown-menu li a:hover small{color:#9c9c9c}.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:focus small,.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:hover small{color:#9c9c9c}.slider-tick-label-container{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;margin-left:0!important}.slider-tick-label{width:auto!important}.slider .tooltip{top:-10px}.slider-track{background-color:#ededed;box-shadow:inset 0 2px 3px rgba(0,0,0,.1),0 0 2px #ededed;border:1px solid #bbb}.slider-selection{background-image:linear-gradient(to bottom,#0088ce 0,#39a5dc 100%);background-repeat:repeat-x}.slider-handle{width:16px;height:16px;border:1px solid #bbb}.slider-tick{background-color:transparent!important;background-image:radial-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3) 2px,transparent 2px)!important;box-shadow:none}.slider-pf{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.slider-pf *{margin-right:10px}.slider-pf :last-child{margin:0}.slider-pf .slider{width:auto;-ms-flex:1 1 100%;flex:1 1 100%}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default{background:#fafafa}.bootstrap-switch .bootstrap-switch-label{background:#f1f1f1;box-shadow:0 0 2px rgba(3,3,3,.4);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;position:relative;z-index:9}.bootstrap-touchspin .input-group-btn-vertical>.btn{padding-bottom:6px;padding-top:6px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{border-bottom-right-radius:1px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-top-right-radius:1px}.bootstrap-touchspin .input-group-btn-vertical i{font-size:8px;left:6px;top:2px}.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up{font-size:12px;line-height:12px;top:0}.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up{left:7px}.treeview .list-group{border-top:0}.treeview .list-group-item{background:0 0;border-bottom:1px solid transparent!important;border-top:1px solid transparent!important;cursor:default!important;margin-bottom:0;overflow:hidden;padding:0 10px;text-overflow:ellipsis;white-space:nowrap}.treeview .list-group-item:hover{background:0 0!important}.treeview .list-group-item.node-selected{background:0 0!important;border-color:transparent!important;color:inherit!important}.treeview .list-group-item.node-check-changed span.node-icon,.treeview .list-group-item.node-check-changed span.text{color:#39a5dc}.treeview span.icon{display:inline-block;font-size:13px;min-width:10px;text-align:center}.treeview span.icon>[class*=fa-angle]{font-size:15px}.treeview span.icon.check-icon{margin-right:10px}.treeview span.icon.expand-icon{cursor:pointer!important}.treeview span.image{background-repeat:no-repeat;background-size:contain;display:inline-block;height:1.19em;line-height:1em;margin-right:5px;vertical-align:middle;width:12px}.treeview span.indent{margin-right:5px}.treeview .node-disabled{color:#d1d1d1;cursor:not-allowed}.treeview .node-disabled span.expand-icon{cursor:default!important}.treeview .node-hidden{display:none}.treeview-pf-hover .list-group-item{cursor:pointer!important}.treeview-pf-hover .list-group-item:hover{background-color:#def3ff!important;border-color:#bee1f4!important}.treeview-pf-select .list-group-item{cursor:pointer!important}.treeview-pf-select .list-group-item.node-selected{background:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.card-pf{background:#fff;border-top:2px solid transparent;box-shadow:0 1px 1px rgba(3,3,3,.175);margin:0 -10px 20px;padding:0 20px}.card-pf.card-pf-accented{border-top-color:#39a5dc}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a,.card-pf.card-pf-aggregate-status .card-pf-title a{color:#363636}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add,.card-pf.card-pf-aggregate-status .card-pf-title a.add{color:#0088ce}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add:hover,.card-pf.card-pf-aggregate-status .card-pf-title a.add:hover{color:#00659c}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a:hover,.card-pf.card-pf-aggregate-status .card-pf-title a:hover{color:#00659c}.card-pf.card-pf-aggregate-status{padding:0 10px;text-align:center}.card-pf.card-pf-aggregate-status-mini{padding-bottom:10px;position:relative}@media (min-width:768px){.card-pf.card-pf-bleed-left{margin-left:-20px}.card-pf.card-pf-bleed-right{border-right:1px solid #d1d1d1;margin-right:-20px}}.card-pf-aggregate-status-notifications{font-size:24px;font-weight:300}.card-pf-aggregate-status-mini .card-pf-aggregate-status-notifications{line-height:1}.card-pf-aggregate-status-notifications .card-pf-aggregate-status-notification+.card-pf-aggregate-status-notification{border-left:1px solid #d1d1d1;margin-left:3px;padding-left:10px}.card-pf-aggregate-status-notifications .fa,.card-pf-aggregate-status-notifications .pficon{font-size:18px;margin-right:7px}.card-pf-body{margin:20px 0 0;padding:0 0 20px}.card-pf-aggregate-status .card-pf-body{margin-top:10px;padding-bottom:10px}.card-pf-aggregate-status-mini .card-pf-body{margin-bottom:0;margin-top:0;padding-bottom:0;position:absolute;right:20px;top:15px}.card-pf-utilization .card-pf-title+.card-pf-body{margin-top:-8px}.card-pf-body>:last-child{margin-bottom:0}.card-pf-footer{background-color:#fafafa;border-top:1px solid #d1d1d1;margin:0 -20px!important;padding:20px 20px 10px}.card-pf-footer a .fa,.card-pf-footer a .pficon{margin-right:5px}.card-pf-footer .card-pf-time-frame-filter{margin-top:-2px}.card-pf-link-with-icon{padding-left:21px;position:relative}.card-pf-link-with-icon .fa,.card-pf-link-with-icon .pficon{font-size:16px;left:0;position:absolute;top:0}.card-pf-footer .card-pf-time-frame-filter,.card-pf-heading .card-pf-time-frame-filter{float:right;margin-left:20px}.card-pf-heading{border-bottom:1px solid #d1d1d1;margin:0 -20px 20px;padding:0 20px 0}.card-pf-heading .card-pf-time-frame-filter{margin-top:-5px}.card-pf-heading-details{float:right;font-size:10px}.card-pf-subtitle{font-size:16px;margin-top:20px;margin-bottom:10px}[class^=col] .card-pf-subtitle{margin-top:0}@media (max-width:767px){.card-pf-body [class^=col]+[class^=col]>.card-pf-subtitle{margin-top:40px}}.card-pf-title{font-size:16px;font-weight:400;margin:20px 0;padding:0}.card-pf-aggregate-status .card-pf-title{font-size:14px;margin:10px 0 0}.card-pf-aggregate-status .card-pf-title .fa,.card-pf-aggregate-status .card-pf-title .pficon{color:#292e34;font-size:16px;margin-right:7px}.card-pf-title .card-pf-aggregate-status-count{font-size:16px}.card-pf-aggregate-status-mini .card-pf-title .card-pf-aggregate-status-count{display:block;font-size:24px;font-weight:300;margin-bottom:3px}.card-pf-aggregate-status-mini .card-pf-title{font-size:12px;margin-top:5px}.card-pf-aggregate-status-mini .card-pf-title a{display:inline-block}.card-pf-aggregate-status-mini .card-pf-title .fa,.card-pf-aggregate-status-mini .card-pf-title .pficon{font-size:26px;margin-right:0;min-width:26px;position:absolute;left:20px;text-align:center;top:15px}.card-pf-utilization-details{border-bottom:1px solid #d1d1d1;display:table;margin:12px 0 15px;padding:0 0 15px;width:100%}.card-pf-utilization-details .card-pf-utilization-card-details-count,.card-pf-utilization-details .card-pf-utilization-card-details-description{float:left;line-height:1}.card-pf-utilization-details .card-pf-utilization-card-details-count{font-size:26px;font-weight:300;margin-right:10px}.card-pf-utilization-details .card-pf-utilization-card-details-line-1,.card-pf-utilization-details .card-pf-utilization-card-details-line-2{display:block}.card-pf-utilization-details .card-pf-utilization-card-details-line-1{font-size:10px;margin-bottom:2px}.cards-pf{background:#f5f5f5}.cards-pf .row-cards-pf{padding:0 20px}.cards-pf .row-cards-pf:first-child{padding-top:20px}.container-cards-pf{margin-top:20px}.row-cards-pf{margin-left:-10px;margin-right:-10px}.card-pf-view{border:2px solid transparent}.card-pf-view .card-pf-heading-kebab .dropdown-kebab-pf{margin-top:-3px}.card-pf-view .card-pf-heading-kebab+.progress-pf-legend p{margin-bottom:0}.card-pf-view .card-pf-heading-kebab+.progress-pf-legend .progress{margin-bottom:7px;margin-top:16px}.card-pf-view .card-pf-info{margin-top:15px}.card-pf-view .card-pf-info strong{font-size:13px;margin-right:10px}.card-pf-view .card-pf-item{display:inline-block;font-size:16px;padding:0 13px 0 15px}.card-pf-view .card-pf-item:first-child{padding-left:0}.card-pf-view .card-pf-item:last-child{padding-right:0}.card-pf-view .card-pf-item+.card-pf-item{border-left:1px solid #d1d1d1}.card-pf-view .card-pf-item .fa-check{color:#3f9c35}.card-pf-view .card-pf-item .fa+.card-pf-item-text,.card-pf-view .card-pf-item .pficon+.card-pf-item-text{margin-left:10px}.card-pf-view .card-pf-items{margin-top:15px}.card-pf-view .card-pf-title{font-size:20px;font-weight:300;margin-bottom:0;margin-top:15px}.card-pf-view .card-pf-title .fa,.card-pf-view .card-pf-title .pficon{font-size:18px;margin-right:2px}.col-lg-2 .card-pf-view .card-pf-title{font-size:16px}.card-pf-view .card-pf-top-element .card-pf-icon-circle{border:2px solid #39a5dc;border-radius:50%;display:block;font-size:46px;height:106px;line-height:102px;margin:0 auto;text-align:center;width:106px}.col-lg-2 .card-pf-view .card-pf-top-element .card-pf-icon-circle{font-size:23px;height:54px;line-height:50px;width:54px}.card-pf-view .card-pf-view-checkbox{position:absolute;top:11px;left:15px}.card-pf-view .card-pf-view-checkbox input[type=checkbox]{display:none}.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]{display:block}@media (min-width:768px){.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]{visibility:hidden}.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]:checked{visibility:visible}}.card-pf-view.card-pf-view-multi-select:hover .card-pf-view-checkbox input[type=checkbox]{visibility:visible}.card-pf-view.card-pf-view-select{position:relative}.card-pf-view.card-pf-view-select:hover{box-shadow:0 1px 6px rgba(3,3,3,.35)}.card-pf-view.card-pf-view-select.active{border:2px solid #39a5dc}.card-pf-view.card-pf-view-single-select{cursor:pointer}.card-pf-view.card-pf-view-xs .card-pf-title{font-size:16px;font-weight:400;margin-bottom:10px}.card-pf-view.card-pf-view-xs .card-pf-title .fa,.card-pf-view.card-pf-view-xs .card-pf-title .pficon{font-size:14px;margin-right:5px}.c3 path{stroke:#d1d1d1}.c3 svg{font-family:"Open Sans",Helvetica,Arial,sans-serif}.c3-axis-x .tick line{stroke:#d1d1d1}.c3-axis-y .tick line{display:none}.c3-chart-arc path{stroke:#fff}.c3-grid line{stroke:#d1d1d1}.c3-line{stroke-width:2px}.c3-tooltip{background:#393f44;box-shadow:none;opacity:.9}.c3-tooltip td{background:0 0;border:0;color:#fff;font-size:12px;padding:5px 10px}.c3-tooltip th{background:0 0;font-size:12px;padding:5px 10px 0;border-bottom:solid 2px #030303}.c3-tooltip tr{border:0}.c3-tooltip tr+tr>td{padding-top:0}.c3-tooltip-sparkline,.donut-tooltip-pf{background:#393f44;color:#fff;opacity:.9;padding:2px 6px}.c3-xgrid,.c3-ygrid{stroke-dasharray:0 0}.chart-pf-sparkline{margin-left:-5px;margin-right:-5px}.donut-title-big-pf{font-size:30px;font-weight:300}.donut-title-small-pf{font-size:12px;font-weight:400}.line-chart-pf .c3-zoom-rect{opacity:1!important;fill:#fafafa;stroke:#d1d1d1;stroke-width:1px}.pct-donut-chart-pf .pct-donut-chart-pf-label{display:block}.pct-donut-chart-pf .pct-donut-chart-pf-left,.pct-donut-chart-pf .pct-donut-chart-pf-right,.pct-donut-chart-pf.pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-right{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.pct-donut-chart-pf.pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-right{display:-ms-inline-flexbox;display:inline-flex}.pct-donut-chart-pf .pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-left{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.close{text-shadow:none;z-index:1;position:relative;opacity:.6}.close:focus,.close:hover{opacity:.9}.ColVis_Button:active:focus{outline:0}.ColVis_catcher{position:absolute;z-index:999}.ColVis_collection{background-color:#fff;border:1px solid #bbb;border-radius:1px;box-shadow:0 6px 12px rgba(3,3,3,.175);background-clip:padding-box;list-style:none;margin:-1px 0 0 0;padding:5px 10px;width:150px;z-index:1000}.ColVis_collection label{font-weight:400;margin-bottom:5px;margin-top:5px;padding-left:20px}.ColVis_collectionBackground{background-color:#fff;height:100%;left:0;position:fixed;top:0;width:100%;z-index:998}.dataTables_header{background-color:#f5f5f5;border:1px solid #d1d1d1;border-bottom:none;padding:5px;position:relative;text-align:center}.dataTables_header .btn{box-shadow:none}.dataTables_header .ColVis{position:absolute;right:5px;text-align:left;top:5px}.dataTables_header .ColVis+.dataTables_info{padding-right:30px}.dataTables_header .dataTables_filter{position:absolute}.dataTables_header .dataTables_filter input{border:1px solid #bbb;height:24px}@media (max-width:767px){.dataTables_header .dataTables_filter input{width:100px}}.dataTables_header .dataTables_info{padding:2px 0}@media (max-width:480px){.dataTables_header .dataTables_info{text-align:right}}.dataTables_header .dataTables_info b{font-weight:700}.dataTables_footer{background-color:#fff;border:1px solid #d1d1d1;border-top:none;overflow:hidden}.dataTables_paginate{background:#fafafa;float:right;margin:0}.dataTables_paginate .pagination{float:left;margin:0}.dataTables_paginate .pagination>li>span{border-color:#fff #d1d1d1 #f5f5f5;border-width:0 1px;font-size:16px;font-weight:400;padding:0;text-align:center;width:31px}.dataTables_paginate .pagination>li.last>span{border-right:none}.dataTables_paginate .pagination>li.disabled>span{background:#f5f5f5;border-left-color:#ededed;border-right-color:#ededed}.dataTables_paginate .pagination-input{float:left;font-size:12px;line-height:1em;padding:4px 15px 0;text-align:right}.dataTables_paginate .pagination-input .paginate_input{border:1px solid #d1d1d1;box-shadow:inset 0 1px 1px rgba(3,3,3,.075);font-size:12px;font-weight:600;height:19px;margin-right:8px;padding-right:3px;text-align:right;width:30px}.dataTables_paginate .pagination-input .paginate_of{position:relative}.dataTables_paginate .pagination-input .paginate_of b{margin-left:3px}.dataTables_empty{background:#f5f5f5}.DTCR_clonedTable{background-color:rgba(255,255,255,.7);z-index:202}.DTCR_pointer{background-color:#0088ce;width:1px;z-index:201}.experimental-pf>*{border:2px solid #92d400}.experimental-pf-bar{background-color:#92d400;border:none;text-align:center;position:relative}.experimental-pf-more-info{background-color:#92d400;border:0;color:#030303;display:block;width:100%;padding-top:10px;padding-bottom:10px;position:static}@media (min-width:992px){.experimental-pf-more-info{padding:0 10px;position:absolute;right:0;top:0;width:auto}}@media (min-width:992px){.experimental-pf-text{padding-left:150px;padding-right:150px}}.experimental-pf-text a{color:#030303;text-decoration:underline}.experimental-pf-text a:hover{color:#030303;cursor:pointer}.btn-experimental-pf{background-color:#92d400;background-image:linear-gradient(to bottom,#ace12e 0,#92d400 100%);background-repeat:repeat-x;border-color:#92d400;color:#4d5258}.btn-experimental-pf.active,.btn-experimental-pf:active,.btn-experimental-pf:focus,.btn-experimental-pf:hover,.open .dropdown-toggle.btn-experimental-pf{background-color:#92d400;background-image:none;border-color:#92d400;color:#4d5258}.btn-experimental-pf.active,.btn-experimental-pf:active,.open .dropdown-toggle.btn-experimental-pf{background-image:none}.btn-experimental-pf.active.focus,.btn-experimental-pf.active:focus,.btn-experimental-pf.active:hover,.btn-experimental-pf:active.focus,.btn-experimental-pf:active:focus,.btn-experimental-pf:active:hover,.open .dropdown-toggle.btn-experimental-pf.focus,.open .dropdown-toggle.btn-experimental-pf:focus,.open .dropdown-toggle.btn-experimental-pf:hover{background-color:#80bb00;border-color:#79b000}.btn-experimental-pf.disabled,.btn-experimental-pf.disabled.active,.btn-experimental-pf.disabled:active,.btn-experimental-pf.disabled:focus,.btn-experimental-pf.disabled:hover,.btn-experimental-pf[disabled],.btn-experimental-pf[disabled].active,.btn-experimental-pf[disabled]:active,.btn-experimental-pf[disabled]:focus,.btn-experimental-pf[disabled]:hover,fieldset[disabled] .btn-experimental-pf,fieldset[disabled] .btn-experimental-pf.active,fieldset[disabled] .btn-experimental-pf:active,fieldset[disabled] .btn-experimental-pf:focus,fieldset[disabled] .btn-experimental-pf:hover{background-color:#92d400;border-color:#92d400}.filter-pf-category-select{display:-ms-flexbox;display:flex}.filter-pf-category-select-value{border-left-width:0}.filter-pf-category-item{margin-bottom:5px}.filter-pf-category-label{font-weight:700;margin-right:5px;padding:5px 0 6px 5px}.filter-pf-select .caret{position:absolute;top:50%;right:10px;-ms-transform:translateY(-50%);transform:translateY(-50%)}.filter-pf-select-dropdown{background-color:#fff;background-image:none;color:#8b8d8f;font-size:12px;font-style:italic;font-weight:400;padding-right:25px;text-align:left}.filter-pf-select-dropdown .caret{font-style:normal}.filter-pf-active-label{margin-right:5px}.footer-pf,.footer-pf-alt{background-color:#030303;color:#9c9c9c;font-size:11px;line-height:17px;padding-left:25px;padding-top:10px}.layout-pf-alt-fixed-with-footer .footer-pf,.layout-pf-alt-fixed-with-footer .footer-pf-alt,.layout-pf-fixed-with-footer .footer-pf,.layout-pf-fixed-with-footer .footer-pf-alt{bottom:0;left:0;position:fixed;right:0;z-index:1030}@font-face{font-family:PatternFlyIcons-webfont;src:url(../fonts/PatternFlyIcons-webfont.eot);src:url(../fonts/PatternFlyIcons-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/PatternFlyIcons-webfont.ttf) format("truetype"),url(../fonts/PatternFlyIcons-webfont.woff) format("woff"),url(../fonts/PatternFlyIcons-webfont.svg#PatternFlyIcons-webfont) format("svg");font-weight:400;font-style:normal}[class*=" pficon-"],[class^=pficon-]{display:inline-block;font-family:PatternFlyIcons-webfont;font-style:normal;font-variant:normal;font-weight:400;line-height:1;speak:none;text-transform:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.pficon-add-circle-o:before{content:"\e61b"}.pficon-applications:before{content:"\e936"}.pficon-arrow:before{content:"\e929"}.pficon-asleep:before{content:"\e925"}.pficon-automation:before{content:"\e937"}.pficon-build:before{content:"\e902"}.pficon-builder-image:before{content:"\e800"}.pficon-bundle:before{content:"\e918"}.pficon-blueprint:before{content:"\e915"}.pficon-catalog:before{content:"\e939"}.pficon-chat:before{content:"\e928"}.pficon-close:before{content:"\e60b"}.pficon-cloud-security:before{content:"\e903"}.pficon-cloud-tenant:before{content:"\e904"}.pficon-cluster:before{content:"\e620"}.pficon-connected:before{content:"\e938"}.pficon-container-node:before{content:"\e621"}.pficon-cpu:before{content:"\e927"}.pficon-degraded:before{content:"\e91b"}.pficon-delete:before{content:"\e611"}.pficon-disconnected:before{content:"\e93c"}.pficon-domain:before{content:"\e919"}.pficon-edit:before{content:"\e60a"}.pficon-enhancement:before{content:"\e93a"}.pficon-enterprise:before{content:"\e906"}.pficon-equalizer:before{content:"\e610"}.pficon-error-circle-o:before{color:#c00;content:"\e926"}.pficon-export:before{content:"\e616"}.pficon-flag:before,.pficon-messages:before{content:"\e603"}.pficon-flavor:before{content:"\e907"}.pficon-filter:before{content:"\e943"}.pficon-folder-close:before{content:"\e607"}.pficon-folder-open:before{content:"\e606"}.pficon-help:before{content:"\e605"}.pficon-history:before{content:"\e617"}.pficon-home:before{content:"\e618"}.pficon-image:before{content:"\e61f"}.pficon-import:before{content:"\e615"}.pficon-in-progress:before{content:"\e92c"}.pficon-info:before{content:"\e92b"}.pficon-infrastructure:before{content:"\e93d"}.pficon-integration:before{content:"\e948"}.pficon-key:before{content:"\e924"}.pficon-locked:before{content:"\e923"}.pficon-maintenance:before{content:"\e92d"}.pficon-memory:before{content:"\e908"}.pficon-middleware:before{content:"\e917"}.pficon-migration:before{content:"\e92e"}.pficon-monitoring:before{content:"\e944"}.pficon-network:before{content:"\e909"}.pficon-on:before{content:"\e931"}.pficon-on-running:before{content:"\e930"}.pficon-optimize:before{content:"\e93e"}.pficon-orders:before{content:"\e93f"}.pficon-off:before{content:"\e92f"}.pficon-ok:before{color:#3f9c35;content:"\e602"}.pficon-paused:before{content:"\e932"}.pficon-pending:before{content:"\e933"}.pficon-plugged:before{content:"\e940"}.pficon-port:before{content:"\e945"}.pficon-print:before{content:"\e612"}.pficon-process-automation:before{content:"\e949"}.pficon-private:before{content:"\e914"}.pficon-project:before{content:"\e905"}.pficon-rebalance:before{content:"\e91c"}.pficon-rebooting:before{content:"\e934"}.pficon-refresh:before,.pficon-restart:before{content:"\e617"}.pficon-regions:before{content:"\e90a"}.pficon-registry:before{content:"\e623"}.pficon-remove:before{content:"\e611"}.pficon-replicator:before{content:"\e624"}.pficon-repository:before{content:"\e90b"}.pficon-resource-pool:before{content:"\e90c"}.pficon-resources-almost-empty:before{content:"\e91d"}.pficon-resources-almost-full:before{content:"\e912"}.pficon-resources-full:before{content:"\e92a"}.pficon-route:before{content:"\e625"}.pficon-running:before{content:"\e614"}.pficon-save:before{content:"\e601"}.pficon-screen:before{content:"\e600"}.pficon-search:before{content:"\e921"}.pficon-security:before{content:"\e946"}.pficon-server:before{content:"\e90d"}.pficon-server-group:before{content:"\e91a"}.pficon-service:before{content:"\e61e"}.pficon-services:before{content:"\e947"}.pficon-service-catalog:before{content:"\e941"}.pficon-settings:before{content:"\e610"}.pficon-spinner:before{content:"\e614"}.pficon-spinner2:before{content:"\e613"}.pficon-storage-domain:before{content:"\e90e"}.pficon-tenant:before{content:"\e916"}.pficon-thumb-tack-o:before{content:"\e920"}.pficon-topology:before{content:"\e608"}.pficon-trend-down:before{content:"\e900"}.pficon-trend-up:before{content:"\e901"}.pficon-unknown:before{content:"\e935"}.pficon-user:before{content:"\e91e"}.pficon-users:before{content:"\e91f"}.pficon-unlocked:before{content:"\e922"}.pficon-unplugged:before{content:"\e942"}.pficon-virtual-machine:before{content:"\e90f"}.pficon-volume:before{content:"\e910"}.pficon-warning-triangle-o:before{color:#ec7a08;content:"\e913"}.pficon-zone:before{content:"\e911"}.navbar-nav>li>.dropdown-menu.infotip{border-top-width:1px!important;margin-top:10px}@media (max-width:767px){.navbar-pf .navbar-nav .open .dropdown-menu.infotip{background-color:#fff!important;margin-top:0}}.infotip{min-width:235px;padding:0}.infotip .list-group{border-top:0;margin:0;padding:8px 0}.infotip .list-group .list-group-item{border:none;margin:0 15px 0 34px;padding:5px 0}.infotip .list-group .list-group-item>.i{color:#4d5258;font-size:13px;left:-20px;position:absolute;top:8px}.infotip .list-group .list-group-item>a{color:#4d5258;line-height:13px}.infotip .list-group .list-group-item>.close{float:right}.infotip .footer{background-color:#f5f5f5;padding:6px 15px}.infotip .footer a:hover{color:#0088ce}.infotip .arrow,.infotip .arrow:after{border-color:transparent;border-style:solid;display:block;height:0;position:absolute;width:0}.infotip .arrow{border-width:11px}.infotip .arrow:after{border-width:10px;content:""}.infotip.bottom .arrow,.infotip.bottom-left .arrow,.infotip.bottom-right .arrow{border-bottom-color:#bbb;border-top-width:0;left:50%;margin-left:-11px;top:-11px}.infotip.bottom .arrow:after,.infotip.bottom-left .arrow:after,.infotip.bottom-right .arrow:after{border-top-width:0;border-bottom-color:#fff;content:" ";margin-left:-10px;top:1px}.infotip.bottom-left .arrow{left:20%}.infotip.bottom-right .arrow{left:80%}.infotip.top .arrow{border-bottom-width:0;border-top-color:#bbb;bottom:-11px;left:50%;margin-left:-11px}.infotip.top .arrow:after{border-bottom-width:0;border-top-color:#f5f5f5;bottom:1px;content:" ";margin-left:-10px}.infotip.right .arrow{border-left-width:0;border-right-color:#bbb;left:-11px;margin-top:-11px;top:50%}.infotip.right .arrow:after{bottom:-10px;border-left-width:0;border-right-color:#fff;content:" ";left:1px}.infotip.left .arrow{border-left-color:#bbb;border-right-width:0;margin-top:-11px;right:-11px;top:50%}.infotip.left .arrow:after{border-left-color:#fff;border-right-width:0;bottom:-10px;content:" ";right:1px}.layout-pf,.layout-pf body{min-height:100%}.layout-pf.layout-pf-fixed.transitions .container-pf-nav-pf-vertical{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf.layout-pf-fixed body{padding-top:60px}.layout-pf.layout-pf-fixed .navbar-pf{left:0;position:fixed;top:0;right:0;z-index:1030}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav{margin-left:75px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav.hidden-icons-pf{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hidden-nav{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hide-nav-pf{margin-left:0!important}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf,.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges,.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}@media (min-width:1200px){.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf{margin-left:400px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges{margin-left:500px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hidden-nav{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav{margin-left:275px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.nav-pf-vertical-with-badges{margin-left:325px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.hidden-icons-pf{margin-left:0}}.layout-pf.layout-pf-fixed-with-footer body{padding-bottom:37px}.layout-pf-alt,.layout-pf-alt body{min-height:100%}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll,.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll body{height:100%;min-height:0}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt{height:100%;overflow:auto}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt.container-cards-pf{margin-top:0;padding-top:20px}.layout-pf-alt.layout-pf-alt-fixed.transitions .container-pf-alt-nav-pf-vertical-alt{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt.layout-pf-alt-fixed body{padding-top:60px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt{margin-left:250px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.collapsed-nav{margin-left:75px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.hidden-nav{margin-left:0}.layout-pf-alt.layout-pf-alt-fixed-with-footer body{padding-bottom:37px}a.disabled{color:#8b8d8f;cursor:not-allowed;text-decoration:none}.list-pf{border-bottom:1px solid #ededed}.list-pf-item{border-color:#ededed;border-left-color:#fff;border-right-color:#fff;border-style:solid;border-width:1px;border-bottom:none}.list-pf-item:hover{background-color:#edf8ff}.list-pf-item.active{background-color:#ededed;border-color:#bbb;border-bottom-width:1px;border-bottom-style:solid}.list-pf-expansion{background-color:#fff}.list-pf-container{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;padding:20px}.list-pf-expansion .list-pf-container{border-top:1px solid #bbb}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-container{-ms-flex-align:center;align-items:center}}.list-pf-chevron{min-width:1.2em}.list-pf-chevron,.list-pf-select{margin-right:10px}.list-pf-chevron+.list-pf-content,.list-pf-select+.list-pf-content{border-left:1px solid #d1d1d1;padding-left:20px}.list-pf-chevron .fa,.list-pf-select .fa{font-size:22px}.list-pf-content-flex{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;min-width:0}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-content-flex{-ms-flex-align:center;align-items:center}}.list-pf-left{-ms-flex-positive:0;flex-grow:0;margin-left:0;margin-right:20px}.list-pf-icon{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.list-pf-icon-bordered{border-radius:50%;border:2px solid #39a5dc}.list-pf-icon-small{font-size:1.4em;height:30px;line-height:30px;width:30px}.list-pf-content-wrapper{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:0}@media (min-width:992px){.list-pf-content-wrapper{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.list-pf-content-wrapper>*+*{margin-left:40px}}.list-pf-stacked .list-pf-content-wrapper{-ms-flex-align:start;align-items:flex-start}.list-pf-main-content{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-preferred-size:70%;flex-basis:70%;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:0}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-main-content{-ms-flex-wrap:nowrap;flex-wrap:nowrap;width:auto}.list-pf:not(.list-pf-stacked) .list-pf-main-content>*+*{margin-left:40px}}.list-pf-title{-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:100%;flex-basis:100%;font-weight:700;min-width:0;word-wrap:break-word}.list-pf-description{-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:100%;flex-basis:100%;min-width:0;word-wrap:break-word}.list-pf-additional-content{display:-ms-flexbox;display:flex;-ms-flex-preferred-size:31%;flex-basis:31%;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between}.list-pf-actions{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-positive:0;flex-grow:0;margin-left:40px}.list-pf-actions>*+*{margin-left:10px}.list-view-pf .list-group-item{-ms-flex-align:start;align-items:flex-start;background-clip:padding-box;border-color:transparent #fff;border-style:solid;border-width:1px;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-bottom:0;padding-top:0}.list-view-pf .list-group-item:after,.list-view-pf .list-group-item:before{content:" ";display:table}.list-view-pf .list-group-item:after{clear:both}.list-view-pf .list-group-item.list-view-pf-expand-active{background-color:#edf8ff;box-shadow:0 2px 6px rgba(3,3,3,.2);z-index:1}.list-view-pf .list-group-item.active{color:#555;background-color:#def3ff;background-clip:border-box;border-color:#bbb transparent transparent;z-index:auto}.list-view-pf .list-group-item:hover{background-color:#edf8ff;border-left-color:transparent;border-right-color:transparent}.list-view-pf .list-group-item.list-view-pf-expand-active{border:solid 1px #bbb}.list-view-pf .list-group-item.list-view-pf-expand-active:first-child{border-top-color:#bbb}.list-view-pf .list-group-item:first-child{border-top:1px solid transparent}@media (min-width:992px){.list-view-pf .list-group-item{-ms-flex-align:center;align-items:center}}.list-view-pf .list-group-item-heading{font-size:16px}.list-view-pf .list-group-item-heading small{display:block;font-size:9.6px;font-weight:400}@media (min-width:992px){.list-view-pf .list-group-item-heading{-ms-flex:1 0 calc(25% - 20px);flex:1 0 calc(25% - 20px);float:left;font-size:12px;margin:0 20px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:calc(25% - 20px)}}.list-view-pf .list-group-item-text{color:currentColor!important;margin-bottom:10px}@media (min-width:992px){.list-view-pf .list-group-item-text{-ms-flex:1 0 auto;flex:1 0 auto;float:left;margin:0 40px 0 0;width:calc(75% - 40px)}}.list-view-pf-actions{float:right;margin-bottom:20px;margin-left:20px;margin-top:20px;-ms-flex-order:2;order:2}.list-view-pf-actions .dropdown-kebab-pf,.list-view-pf-actions button,.list-view-pf-actions>a{margin-left:10px}.list-view-pf-top-align .list-view-pf-actions{-ms-flex-item-align:start;align-self:flex-start}.list-view-pf-additional-info{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@media (min-width:992px){.list-view-pf-additional-info{-ms-flex:1 0 auto;flex:1 0 auto;float:left;width:50%}}.list-view-pf-additional-info-item{-ms-flex-align:center;align-items:center;display:inline-block;display:-ms-flexbox;display:flex;margin-right:20px;max-width:100%;text-align:center}.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked{text-align:center;-ms-flex-direction:column;flex-direction:column}.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked strong{font-size:13px;line-height:1em}.list-view-pf-additional-info-item .fa,.list-view-pf-additional-info-item .pficon{font-size:16px;margin-right:10px}.list-view-pf-additional-info-item strong{font-size:16px;font-weight:600;margin-right:5px}.list-view-pf-additional-info-item:last-child{margin-right:0}.list-view-pf-additional-info-item-donut-chart{width:60px}.list-view-pf-body{-ms-flex-align:center;align-items:center;display:table-cell;-ms-flex:1;flex:1;min-width:0;vertical-align:top;width:100%}@media (min-width:992px){.list-view-pf-body{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}}.list-view-pf-checkbox{border-right:1px solid #d1d1d1;float:left;margin-bottom:20px;margin-right:15px;margin-top:20px;padding:3px 10px 3px 0}.list-view-pf-top-align .list-view-pf-checkbox{-ms-flex-item-align:start;align-self:flex-start}.list-view-pf-description{-ms-flex:1 0 50%;flex:1 0 50%}.list-view-pf-stacked .list-view-pf-description{display:block;-ms-flex:none;flex:none}@media (min-width:992px){.list-view-pf-description{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;float:left;width:50%}}.list-view-pf-left{display:table-cell;padding-right:20px;text-align:center;vertical-align:top}.list-view-pf-left .list-view-pf-calendar{font-size:11px;line-height:1em}.list-view-pf-left .list-view-pf-calendar strong{display:block;font-size:44px;font-weight:300;line-height:1em}.list-view-pf-left .fa,.list-view-pf-left .pficon{border-radius:50%;font-size:2em}.list-view-pf-left .fa.list-view-pf-icon-md,.list-view-pf-left .pficon.list-view-pf-icon-md{background-color:#f5f5f5;height:50px;line-height:50px;width:50px}.list-view-pf-left .fa.list-view-pf-icon-danger,.list-view-pf-left .pficon.list-view-pf-icon-danger{background-color:#ffe6e6;color:#c00}.list-view-pf-left .fa.list-view-pf-icon-info,.list-view-pf-left .pficon.list-view-pf-icon-info{color:#8b8d8f}.list-view-pf-left .fa.list-view-pf-icon-lg,.list-view-pf-left .pficon.list-view-pf-icon-lg{background-color:#f5f5f5;height:60px;line-height:60px;width:60px}.list-view-pf-left .fa.list-view-pf-icon-sm,.list-view-pf-left .pficon.list-view-pf-icon-sm{border:2px solid #39a5dc;font-size:1.4em;height:30px;line-height:30px;width:30px}.list-view-pf-left .fa.list-view-pf-icon-sm:before,.list-view-pf-left .pficon.list-view-pf-icon-sm:before{display:block;line-height:26px}.list-view-pf-left .fa.list-view-pf-icon-success,.list-view-pf-left .pficon.list-view-pf-icon-success{background-color:#e9f4e9;color:#3f9c35}.list-view-pf-left .fa.list-view-pf-icon-warning,.list-view-pf-left .pficon.list-view-pf-icon-warning{background-color:#fdf2e5;color:#ec7a08}.list-view-pf-main-info{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;min-width:0;padding-bottom:20px;padding-top:20px}@media (min-width:992px){.list-view-pf-main-info{-ms-flex-align:center;align-items:center}.list-view-pf-top-align .list-view-pf-main-info{-ms-flex-align:start;align-items:flex-start}}.list-view-pf-stacked .list-group-item-heading{float:none;font-size:16px;line-height:1.2em;margin-bottom:5px;margin-right:40px;width:auto}.list-view-pf-stacked .list-group-item-text{float:none;width:auto}.list-view-pf-view{background:#ededed;border:none;margin-top:30px}.list-group-item-header{box-sizing:content-box;cursor:pointer;margin:0 -15px;padding:0 15px;width:100%}.list-view-pf-expand{cursor:pointer;float:left;margin-bottom:20px;margin-right:2px;margin-top:20px;padding:3px 0}.list-view-pf-expand.active,.list-view-pf-expand:hover{color:#0088ce}.list-view-pf-additional-info-item .list-view-pf-expand{margin:0;padding:0}.list-view-pf-expand .fa-angle-right{cursor:pointer;font-size:17px;margin-right:5px;margin-top:2px;width:10px}.list-group-item-container{background:#fff;border-top:solid 1px #bbb;box-sizing:content-box;margin:-1px -15px 0;-ms-flex-order:3;order:3;padding:10px 15px;position:relative;width:100%}.list-view-pf-dnd .dndDragging.drag-original{display:none}.list-view-pf-dnd .dndDragging.drag-original .list-view-pf-dnd-original-items{display:block}.list-view-pf-dnd .dndDragging .list-view-pf-dnd-drag-items{display:inline-block}.list-view-pf-dnd .dndDragging .list-view-pf-dnd-original-items{display:none}.list-view-pf-dnd .dndPlaceholder{background-color:#ededed;padding:20px 0}.list-view-pf-dnd .list-group-item-header{margin-left:-10px}.list-view-pf-dnd .list-group-item-header:before{background-image:linear-gradient(to bottom,#0088ce 60%,#fff 0);background-position:left;background-repeat:repeat-y;background-size:2px 5px;border:4px solid #0088ce;border-color:#00659c;content:"";height:55px;left:4px;position:absolute;top:5px;width:10px}.list-view-pf-dnd-drag-items{display:none}.login-pf{height:100%}.login-pf #brand{position:relative;top:-70px}.login-pf #brand img{display:block;height:18px;margin:0 auto;max-width:100%}@media (min-width:768px){.login-pf #brand img{margin:0;text-align:left}}.login-pf #badge{display:block;margin:20px auto 70px;position:relative;text-align:center}@media (min-width:768px){.login-pf #badge{float:right;margin-right:64px;margin-top:50px}}.login-pf body{background:#030303 url(../img/bg-login.jpg) repeat-x 50% 0;background-size:auto}@media (min-width:768px){.login-pf body{background-size:100% auto}}.login-pf .container{background-color:rgba(255,255,255,.055);clear:right;color:#fff;padding-bottom:40px;padding-top:20px;width:auto}@media (min-width:768px){.login-pf .container{bottom:13%;padding-left:80px;position:absolute;width:100%}}.login-pf .container .details p:first-child{border-top:1px solid rgba(255,255,255,.3);padding-top:25px;margin-top:25px}@media (min-width:768px){.login-pf .container .details{border-left:1px solid rgba(255,255,255,.3);padding-left:40px}.login-pf .container .details p:first-child{border-top:0;padding-top:0;margin-top:0}}.login-pf .container .details p{margin-bottom:2px}.login-pf .container .form-horizontal .control-label{font-size:13px;font-weight:400;text-align:left}.login-pf .container .form-horizontal .form-group:last-child,.login-pf .container .form-horizontal .form-group:last-child .help-block:last-child{margin-bottom:0}.login-pf .container .help-block{color:#fff}@media (min-width:768px){.login-pf .container .login{padding-right:40px}}.login-pf .container .submit{text-align:right}.login-pf-page .login-pf-brand{margin-top:20px;max-width:360px;width:70%}@media (min-width:768px){.login-pf-page .login-pf-brand{margin-top:62px}}.login-pf-page .login-pf-page-header{margin-bottom:20px;text-align:center}@media (min-width:768px){.login-pf-page .login-pf-page-header{margin-bottom:40px}}.login-pf-page .login-pf-page-header p{color:#fff;font-size:14px;margin-left:auto;margin-right:auto;margin-top:20px}.login-pf-page .card-pf{padding:10px 20px 30px 20px;margin-bottom:0}@media (min-width:768px){.login-pf-page .card-pf{padding:20px 40px 30px 40px}}.login-pf-page .card-pf p{color:#72767b}.login-pf-page .form-control{height:36px}.login-pf-page .checkbox-label{color:#72767b;font-weight:300;margin-bottom:15px}@media (min-width:768px){.login-pf-page .checkbox-label{margin:0}}.login-pf-page .btn-primary{margin-top:40px}.login-pf-page .login-pf-header{margin-bottom:20px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}@media (min-width:768px){.login-pf-page .login-pf-header{margin-bottom:30px}}.login-pf-page .login-pf-header h1,.login-pf-page .login-pf-header p{text-align:center}.login-pf-page .login-pf-header h1{font-size:16px}@media (min-width:768px){.login-pf-page .login-pf-header h1{font-size:24px}}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:auto;-ms-flex-item-align:end;align-self:flex-end}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle{color:#4d5258;background:0 0;padding:0 15px 0 0;font-weight:300}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle:not(:focus){box-shadow:none;border:1px solid transparent}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle .caret{right:0}.login-pf-page .login-pf-signup{margin:40px 0 0;font-size:15px;text-align:center}.login-pf-page .login-pf-signup a{margin-left:10px}.login-pf-page .login-pf-settings{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.login-pf-page .login-pf-page-footer{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.login-pf-page .login-pf-page-footer-links{display:-ms-flexbox;display:flex;margin:60px 0 0 0}.login-pf-page .login-pf-page-footer-links li:not(:last-of-type){position:relative;margin:0 20px 0 0}.login-pf-page .login-pf-page-footer-links li:not(:last-of-type):after{content:".";color:#fff;position:absolute;top:0;right:-10px}.login-pf-page .login-pf-page-footer-link{color:#fff;font-size:14px}.login-pf-page .login-pf-page-footer-sso-services{-ms-flex:1 0 100%;flex:1 0 100%;margin-top:40px;text-align:center;color:#fff}.login-pf-page .login-pf-page-footer-sso-services-logos{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0;margin:0;list-style:none;-ms-flex-pack:center;justify-content:center}.login-pf-page .login-pf-page-footer-sso-services-logos li{margin:0 5px 5px}.login-pf-page.login-pf-page-accounts{margin-left:20px;margin-right:20px}.login-pf-page .login-pf-accounts{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:840px;margin-left:auto;margin-right:auto}.login-pf-page .login-pf-accounts .login-pf-header,.login-pf-page .login-pf-accounts .login-pf-signup{-ms-flex-preferred-size:100%;flex-basis:100%}.login-pf-page .login-pf-social-section{-ms-flex-preferred-size:100%;flex-basis:100%;padding:0}@media (min-width:768px){.login-pf-page .login-pf-social-section{-ms-flex:0 1 50%;flex:0 1 50%;max-width:50%}}@media (min-width:768px){.login-pf-page .login-pf-social-section:first-of-type{padding-right:40px}.login-pf-page .login-pf-social-section:last-of-type{padding-left:39px;border-left:1px solid #d1d1d1}}.login-pf-page .login-pf-social{margin:40px 0 0 0}@media (min-width:768px){.login-pf-page .login-pf-social{margin:0}.login-pf-page .login-pf-social-double-col{-ms-flex-wrap:wrap;flex-wrap:wrap;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}.login-pf-page .login-pf-social-double-col .login-pf-social-link{-ms-flex-preferred-size:48%;flex-basis:48%}}.login-pf-page .login-pf-social:not(.login-pf-social-all) .login-pf-social-link-more{display:none}.login-pf-page .login-pf-social-link{margin-bottom:15px}.login-pf-page .login-pf-social-link a{display:block;padding:7px 0;font-size:14px;background:#f5f5f5;text-align:center;color:#72767b}.login-pf-page .login-pf-social-link a img{margin:0 10px 0 0;width:20px;height:20px}.login-pf-page .login-pf-social-link a:hover{text-decoration:none;background:#ededed}.login-pf-page .login-pf-social-toggle{float:right;padding:0}.login-pf-page .login-pf-social-toggle .caret{margin-left:5px}.login-pf-page .login-pf-social-toggle-active .caret{-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.navbar-pf{background:#030303;border:0;border-radius:0;border-top:3px solid #39a5dc;margin-bottom:0;min-height:0}.navbar-pf .navbar-brand{color:#f5f5f5;height:auto;padding:12px 0;margin:0 0 0 20px}.navbar-pf .navbar-brand img{display:block}.navbar-pf .navbar-collapse{border-top:0;box-shadow:none;padding:0}.navbar-pf .navbar-header{border-bottom:1px solid #292929;float:none}.navbar-pf .navbar-nav{margin:0}.navbar-pf .navbar-nav>.active>a,.navbar-pf .navbar-nav>.active>a:focus,.navbar-pf .navbar-nav>.active>a:hover{background-color:#232323;color:#f5f5f5}.navbar-pf .navbar-nav>li>a{color:#d1d1d1;line-height:1;padding:10px 20px;text-shadow:none}.navbar-pf .navbar-nav>li>a:focus,.navbar-pf .navbar-nav>li>a:hover{color:#f5f5f5}.navbar-pf .navbar-nav>.open>a,.navbar-pf .navbar-nav>.open>a:focus,.navbar-pf .navbar-nav>.open>a:hover{background-color:#232323;color:#f5f5f5}.navbar-pf .navbar-nav .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;left:26px;margin:0;padding:2px 4px;position:absolute;min-width:10px;min-height:10px;top:6px}@media (min-width:768px){.navbar-pf .navbar-nav .badge{left:auto;right:6px;top:3px}}.navbar-pf .navbar-nav .badge.badge-pf-bordered{border:1px solid #030303}@media (max-width:767px){.navbar-pf .navbar-nav .active .dropdown-menu,.navbar-pf .navbar-nav .active .navbar-persistent,.navbar-pf .navbar-nav .open .dropdown-menu{background-color:#171717!important;margin-left:0;padding-bottom:0;padding-top:0}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a,.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a:focus,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a:focus,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a:hover{background-color:#1f1f1f!important;color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent>li>a,.navbar-pf .navbar-nav .open .dropdown-menu>li>a{background-color:transparent;border:0;color:#d1d1d1;outline:0;padding-left:30px}.navbar-pf .navbar-nav .active .dropdown-menu>li>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent>li>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu>li>a:hover{color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu .divider,.navbar-pf .navbar-nav .active .navbar-persistent .divider,.navbar-pf .navbar-nav .open .dropdown-menu .divider{background-color:#292929;margin:0 1px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-header,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-header,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-header{padding-bottom:0;padding-left:30px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open .dropdown-toggle,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-toggle,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open .dropdown-toggle{color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.pull-left,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.pull-left,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.pull-left{float:none!important}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu>a:after,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu>a:after,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu>a:after{display:none}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-header,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-header,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-header{padding-left:45px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu{border:0;bottom:auto;box-shadow:none;display:block;float:none;margin:0;min-width:0;padding:0;position:relative;left:auto;right:auto;top:auto}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu>li>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu>li>a{padding:5px 15px 5px 45px;line-height:20px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu .dropdown-menu>li>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu>li>a{padding-left:60px}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-menu{display:block}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu>a:after{display:inline-block!important;position:relative;right:auto;top:1px}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu{display:none}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-submenu>a:after{display:none!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu{background-color:#fff!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a:active{background-color:#def3ff!important;border-color:#bee1f4!important;color:#363636!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a:active small{color:#9c9c9c!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.disabled>a{color:#9c9c9c!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a:active{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a:active small{color:rgba(255,255,255,.5)!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li>a.opt{border-bottom:1px solid transparent;border-top:1px solid transparent;color:#363636;padding-left:10px;padding-right:10px}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:active small{color:rgba(255,255,255,.5)!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:focus small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:hover small{color:#9c9c9c}.navbar-pf .navbar-nav .context-bootstrap-select>.open>.dropdown-menu{padding-bottom:5px;padding-top:5px}}.navbar-pf .navbar-persistent{display:none}.navbar-pf .active>.navbar-persistent{display:block}.navbar-pf .navbar-primary{float:none}.navbar-pf .navbar-primary .context{border-bottom:1px solid #292929}.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group,.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group[class*=span]{margin:8px 20px 9px;width:auto}.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a{position:relative}.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a:after{content:"\f107";display:inline-block;font-family:FontAwesome;font-weight:400}@media (max-width:767px){.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a:after{height:10px;margin-left:4px;vertical-align:baseline}}.navbar-pf .navbar-toggle{border:0;margin:0;padding:10px 20px}.navbar-pf .navbar-toggle:focus,.navbar-pf .navbar-toggle:hover{background-color:transparent;outline:0}.navbar-pf .navbar-toggle:focus .icon-bar,.navbar-pf .navbar-toggle:hover .icon-bar{box-shadow:0 0 3px #fff}.navbar-pf .navbar-toggle .icon-bar{background-color:#fff}.navbar-pf .navbar-utility{border-bottom:1px solid #292929}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle{padding-left:36px;position:relative}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle .pficon-user{left:20px;position:absolute;top:10px}@media (max-width:767px){.navbar-pf .navbar-utility>li+li{border-top:1px solid #292929}}@media (min-width:768px){.navbar-pf .navbar-brand{padding:8px 0 7px}.navbar-pf .navbar-nav>li>a{padding-bottom:14px;padding-top:14px}.navbar-pf .navbar-persistent{font-size:14px}.navbar-pf .navbar-primary{font-size:14px;background-image:linear-gradient(to bottom,#1d1d1d 0,#030303 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary.persistent-secondary .context .dropdown-menu{top:auto}.navbar-pf .navbar-primary.persistent-secondary .dropup .dropdown-menu{bottom:-5px;top:auto}.navbar-pf .navbar-primary.persistent-secondary>li{position:static}.navbar-pf .navbar-primary.persistent-secondary>li.active{margin-bottom:32px}.navbar-pf .navbar-primary.persistent-secondary>li.active>.navbar-persistent{display:block;left:0;position:absolute}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent{background:#f5f5f5;border-bottom:1px solid #d1d1d1;padding:0;width:100%}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent a{text-decoration:none!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:before,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:hover:before{background:#0088ce;bottom:-1px;content:"";display:block;height:2px;left:20px;position:absolute;right:20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:hover>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active>a:hover{color:#0088ce!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active .active>a{color:#f5f5f5}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu:hover>.dropdown-menu{display:none}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-menu{display:block;left:20px;margin-top:1px;top:100%}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-toggle{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-toggle:after{border-top-color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu>.dropdown-toggle{padding-right:35px!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu>.dropdown-toggle:after{position:absolute;right:20px;top:10px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open:before,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover:before{background:#bbb;bottom:-1px;content:"";display:block;height:2px;left:20px;position:absolute;right:20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover>a{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open>a:after,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover>a:after{border-top-color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a{background-color:transparent;display:block;line-height:1;padding:9px 20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a.dropdown-toggle{padding-right:35px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a.dropdown-toggle:after{font-size:15px;position:absolute;right:20px;top:9px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a:hover{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li a{color:#4d5258}.navbar-pf .navbar-primary>li>a{border-bottom:1px solid transparent;border-top:1px solid transparent;position:relative;margin:-1px 0 0}.navbar-pf .navbar-primary>li>a:hover{background-color:#1d1d1d;border-top-color:#5c5c5c;color:#d1d1d1;background-image:linear-gradient(to bottom,#363636 0,#1d1d1d 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary>.active>a,.navbar-pf .navbar-primary>.active>a:focus,.navbar-pf .navbar-primary>.active>a:hover,.navbar-pf .navbar-primary>.open>a,.navbar-pf .navbar-primary>.open>a:focus,.navbar-pf .navbar-primary>.open>a:hover{background-color:#303030;border-bottom-color:#303030;border-top-color:#696969;box-shadow:none;color:#f5f5f5;background-image:linear-gradient(to bottom,#434343 0,#303030 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.context-bootstrap-select .filter-option{max-width:160px;text-overflow:ellipsis}.navbar-pf .navbar-primary li.context.dropdown{border-bottom:0}.navbar-pf .navbar-primary li.context.context-bootstrap-select,.navbar-pf .navbar-primary li.context>a{background-color:#1f1f1f;border-bottom-color:#3e3e3e;border-right:1px solid #3e3e3e;border-top-color:#3b3b3b;font-weight:600;background-image:linear-gradient(to bottom,#323232 0,#1f1f1f 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.context-bootstrap-select:hover,.navbar-pf .navbar-primary li.context>a:hover{background-color:#323232;border-bottom-color:#4a4a4a;border-right-color:#4a4a4a;border-top-color:#4a4a4a;background-image:linear-gradient(to bottom,#3f3f3f 0,#323232 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.open>a{background-color:#454545;border-bottom-color:#575757;border-right-color:#575757;border-top-color:#5a5a5a;background-image:linear-gradient(to bottom,#4c4c4c 0,#454545 100%);background-repeat:repeat-x}.navbar-pf .navbar-utility{border-bottom:0;font-size:11px;position:absolute;right:0;top:0}.navbar-pf .navbar-utility>.active>a,.navbar-pf .navbar-utility>.active>a:focus,.navbar-pf .navbar-utility>.active>a:hover,.navbar-pf .navbar-utility>.open>a,.navbar-pf .navbar-utility>.open>a:focus,.navbar-pf .navbar-utility>.open>a:hover{background:#363636;color:#d1d1d1}.navbar-pf .navbar-utility>li>a{border-left:1px solid #2b2b2b;color:#d1d1d1!important;padding:7px 10px}.navbar-pf .navbar-utility>li>a:hover{background:#232323;border-left-color:#373737}.navbar-pf .navbar-utility>li.open>a{border-left-color:#444;color:#f5f5f5!important}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle{padding-left:26px}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle .pficon-user{left:10px;top:7px}.navbar-pf .navbar-utility .open .dropdown-menu{left:auto;right:0}.navbar-pf .navbar-utility .open .dropdown-menu .dropdown-menu{left:auto;right:100%}.navbar-pf .navbar-utility .open .dropdown-menu{border-top-width:0}.navbar-pf .open .dropdown-submenu>.dropdown-menu,.navbar-pf .open.bootstrap-select .dropdown-menu{border-top-width:1px!important}}@media (max-width:360px){.navbar-pf .navbar-brand{margin-left:10px;width:75%}.navbar-pf .navbar-brand img{height:auto;max-width:100%}.navbar-pf .navbar-toggle{padding-left:0}}.navbar-pf-alt{background-color:#030303;background-image:"bg-navbar-pf-alt.svg";background-repeat:no-repeat;background-size:auto 100%;border:none;border-radius:0;border-top:2px solid #39a5dc;margin-bottom:0}.navbar-pf-alt .infotip.bottom-right .arrow{left:90%}.layout-pf-alt-fixed .navbar-pf-alt{left:0;position:fixed;right:0;top:0;z-index:1030}.navbar-pf-alt .nav.navbar-nav>li>.dropdown-menu.infotip{margin-top:0}.navbar-pf-alt .nav .nav-item-iconic{cursor:pointer;line-height:1;max-height:58px;padding:21px 12px;position:relative}.navbar-pf-alt .nav .nav-item-iconic:focus,.navbar-pf-alt .nav .nav-item-iconic:hover{background-color:transparent}.navbar-pf-alt .nav .nav-item-iconic:focus .caret,.navbar-pf-alt .nav .nav-item-iconic:focus .fa,.navbar-pf-alt .nav .nav-item-iconic:focus .glyphicon,.navbar-pf-alt .nav .nav-item-iconic:focus .pficon,.navbar-pf-alt .nav .nav-item-iconic:hover .caret,.navbar-pf-alt .nav .nav-item-iconic:hover .fa,.navbar-pf-alt .nav .nav-item-iconic:hover .glyphicon,.navbar-pf-alt .nav .nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-alt .nav .nav-item-iconic .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;margin:0 0 -11px -12px;min-width:0;padding:2px 4px}.navbar-pf-alt .nav .nav-item-iconic .caret,.navbar-pf-alt .nav .nav-item-iconic .fa,.navbar-pf-alt .nav .nav-item-iconic .pficon{color:#d1d1d1;font-size:16px}.navbar-pf-alt .nav .nav-item-iconic .caret{font-size:12px;width:auto}.navbar-pf-alt .nav .open>.nav-item-iconic,.navbar-pf-alt .nav .open>.nav-item-iconic:focus,.navbar-pf-alt .nav .open>.nav-item-iconic:hover{background:0 0}.navbar-pf-alt .nav .open>.nav-item-iconic .caret,.navbar-pf-alt .nav .open>.nav-item-iconic .fa,.navbar-pf-alt .nav .open>.nav-item-iconic .pficon,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .caret,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .fa,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .pficon,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .caret,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .fa,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-alt .navbar-brand{color:#fff;height:auto;margin:0 0 0 25px;min-height:35px;padding:11px 0 12px}.navbar-pf-alt .navbar-brand .navbar-brand-name{display:inline;margin-left:0 15px 0 0;margin-right:0 15px 0 0}@media (max-width:480px){.navbar-pf-alt .navbar-brand .navbar-brand-name{display:none}}.navbar-pf-alt .navbar-brand .navbar-brand-icon{display:inline;margin-left:0 15px 0 0;margin-right:0 15px 0 0}.navbar-pf-alt .navbar-iconic{margin-right:0}.navbar-pf-alt .navbar-toggle{border:0;display:block;float:left;margin:13px 15px}.navbar-pf-alt .navbar-toggle:focus .icon-bar,.navbar-pf-alt .navbar-toggle:hover .icon-bar{background:#fff}.navbar-pf-alt .navbar-toggle+.navbar-brand{margin-left:0}.navbar-pf-alt .navbar-toggle .icon-bar{background:#d1d1d1}.navbar-pf-vertical{background-color:#1d1d1d;border:none;border-radius:0;border-top:2px solid #39a5dc;margin-bottom:0}.navbar-pf-vertical .infotip.bottom-right .arrow{left:90%}.layout-pf-fixed .navbar-pf-vertical{left:0;position:fixed;right:0;top:0;z-index:1030}.navbar-pf-vertical .nav.navbar-nav>li>.dropdown-menu.infotip{margin-top:0}.navbar-pf-vertical .nav .nav-item-iconic{color:#d1d1d1;cursor:pointer;line-height:1;max-height:58px;padding:21px 12px;position:relative}.navbar-pf-vertical .nav .nav-item-iconic:focus,.navbar-pf-vertical .nav .nav-item-iconic:hover{color:#fff;background-color:transparent}.navbar-pf-vertical .nav .nav-item-iconic:focus .caret,.navbar-pf-vertical .nav .nav-item-iconic:focus .fa,.navbar-pf-vertical .nav .nav-item-iconic:focus .glyphicon,.navbar-pf-vertical .nav .nav-item-iconic:focus .pficon,.navbar-pf-vertical .nav .nav-item-iconic:hover .caret,.navbar-pf-vertical .nav .nav-item-iconic:hover .fa,.navbar-pf-vertical .nav .nav-item-iconic:hover .glyphicon,.navbar-pf-vertical .nav .nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-vertical .nav .nav-item-iconic .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;left:20px;margin:0;padding:2px 4px;position:absolute;min-width:10px;min-height:10px;top:18px}.navbar-pf-vertical .nav .nav-item-iconic .badge.badge-pf-bordered{border:1px solid #1d1d1d}.navbar-pf-vertical .nav .nav-item-iconic .caret,.navbar-pf-vertical .nav .nav-item-iconic .fa,.navbar-pf-vertical .nav .nav-item-iconic .pficon{color:#d1d1d1;font-size:16px}.navbar-pf-vertical .nav .nav-item-iconic .caret{font-size:12px;width:auto}.navbar-pf-vertical .nav .open>.nav-item-iconic,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover{background:0 0}.navbar-pf-vertical .nav .open>.nav-item-iconic .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic .pficon,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .pficon,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-vertical .navbar-brand{color:#fff;height:auto;margin:0 0 0 25px;min-height:35px;padding:11px 0 12px}.navbar-pf-vertical .navbar-brand .navbar-brand-name{display:inline-block;margin:0 15px 0 0}@media (max-width:480px){.navbar-pf-vertical .navbar-brand .navbar-brand-name{display:none}}.navbar-pf-vertical .navbar-brand .navbar-brand-icon{display:inline-block;margin:0 15px 0 0;max-height:35px}.navbar-pf-vertical .navbar-brand .navbar-brand-txt{line-height:34px}.navbar-pf-vertical .navbar-iconic{margin-right:0}.navbar-pf-vertical .navbar-toggle{border:0;display:block;float:left;margin:13px 15px}.navbar-pf-vertical .navbar-toggle:focus .icon-bar,.navbar-pf-vertical .navbar-toggle:hover .icon-bar{background:#fff}.navbar-pf-vertical .navbar-toggle+.navbar-brand{margin-left:0}.navbar-pf-vertical .navbar-toggle .icon-bar{background:#d1d1d1}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value{transition:opacity 0s .1s,opacity .1s linear}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .badge{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .list-group-item-value{transition:opacity .5s ease-out;transition-delay:150ms}.nav-pf-vertical-alt{background:#fff}.ie9.layout-pf-alt-fixed .nav-pf-vertical-alt{box-sizing:content-box}.layout-pf-alt-fixed .nav-pf-vertical-alt{border-right:1px solid #d1d1d1;bottom:0;overflow-x:hidden;overflow-y:auto;left:0;position:fixed;top:60px;width:250px;z-index:1030}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed{width:75px!important}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .badge{padding:2px 3px;right:21px;top:36px}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value{opacity:0}.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden{display:none}.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden.show-mobile-nav{box-shadow:0 0 3px rgba(3,3,3,.15);display:block!important}.layout-pf-alt-fixed-with-footer .nav-pf-vertical-alt{bottom:37px}.nav-pf-vertical-alt .list-group{border-top:0;margin-bottom:0}.nav-pf-vertical-alt .list-group-item{padding:0}.nav-pf-vertical-alt .list-group-item a{color:#363636;display:block;font-size:14px;height:63px;padding:17px 20px 17px 25px;position:relative;white-space:nowrap}.nav-pf-vertical-alt .list-group-item a:focus{color:#363636;text-decoration:none}.nav-pf-vertical-alt .list-group-item a:hover{color:#39a5dc;text-decoration:none}.nav-pf-vertical-alt .list-group-item.active{background-color:#fff;border-color:#f5f5f5}.nav-pf-vertical-alt .list-group-item.active:before{background:#39a5dc;content:" ";display:block;height:100%;left:0;position:absolute;top:0;width:5px}.nav-pf-vertical-alt .list-group-item.active a{color:#39a5dc}.nav-pf-vertical-alt .list-group-item .badge{background:#363636;border:1px solid #fff;border-radius:3px;color:#fff;font-weight:700;font-size:9px;padding:5px;position:absolute;right:15px;text-align:center;top:21px}.nav-pf-vertical-alt .list-group-item .badge.notifications{background:#0088ce}.nav-pf-vertical-alt .list-group-item .fa,.nav-pf-vertical-alt .list-group-item .glyphicon,.nav-pf-vertical-alt .list-group-item .pficon{float:left;font-size:18px;line-height:30px;margin-right:10px;text-align:center;width:18px}.nav-pf-vertical-alt .list-group-item .list-group-item-value{display:inline-block;line-height:30px;opacity:1;overflow:hidden;text-overflow:ellipsis;width:140px}.nav-pf-vertical-alt .list-group-item-separator{border-top-width:5px}.sidebar-pf .nav-pf-vertical-alt{margin-left:-20px;margin-right:-20px}.drawer-pf{background-color:#fafafa;border:1px solid #d1d1d1;box-shadow:0 6px 12px rgba(3,3,3,.175);overflow-y:auto;position:absolute;right:0;width:320px;z-index:2}.drawer-pf .panel{border-bottom:none;border-left:none;border-right:none}.drawer-pf .panel-group .panel-heading+.panel-collapse .panel-body{border-top:none;border-bottom:1px solid #d1d1d1;padding:0}.drawer-pf .panel-counter{display:block;font-style:italic;line-height:1.2;padding-left:18px;padding-top:5px}.drawer-pf .panel-heading{border-bottom:1px solid #d1d1d1}.drawer-pf .panel-group{bottom:0;margin-bottom:0;position:absolute;top:25px;width:100%}.drawer-pf .panel-title a{cursor:pointer;display:block}.drawer-pf.drawer-pf-expanded{width:inherit}@media (max-width:767px){.drawer-pf.drawer-pf-expanded{left:0;width:100%}}@media (min-width:767px){.drawer-pf.drawer-pf-expanded{left:270px}}.drawer-pf.drawer-pf-expanded .drawer-pf-toggle-expand:before{content:"\f101"}.drawer-pf .blank-slate-pf{border:0;margin-bottom:0;padding:30px}.drawer-pf .blank-slate-pf .blank-slate-pf-icon{font-size:3em;line-height:1em}.drawer-pf .blank-slate-pf h1{font-size:1em;margin-bottom:0;margin-top:15px}.drawer-pf-close,.drawer-pf-toggle-expand{color:#252525;cursor:pointer;line-height:inherit;padding:2px 10px;position:absolute}.drawer-pf-close:focus,.drawer-pf-close:hover,.drawer-pf-toggle-expand:focus,.drawer-pf-toggle-expand:hover{color:#0088ce;text-decoration:none}.drawer-pf-toggle-expand{left:0}.drawer-pf-toggle-expand:before{content:"\f100";font-family:FontAwesome}.drawer-pf-toggle-expand:hover{color:#0088ce}.drawer-pf-close{right:0}.drawer-pf-action{display:-ms-flexbox;display:flex;border-bottom:1px solid #d1d1d1}.drawer-pf-action .btn-link{color:#0088ce;padding:10px 0}.drawer-pf-action .btn-link .fa,.drawer-pf-action .btn-link .pficon{margin-right:3px}.drawer-pf-action .btn-link .pficon-close{position:relative;top:1px}.drawer-pf-action .btn-link:hover{color:#00659c}.drawer-pf-action-link{border-left:solid 1px #d1d1d1;-ms-flex:1 1 0%;flex:1 1 0%;margin:10px 0;text-align:center}.drawer-pf-action-link:first-of-type{border-left-width:0}.drawer-pf-action-link .btn-link{padding:0}.drawer-pf-loading{color:#4d5258;font-size:14px;padding:20px 15px}.drawer-pf-notification{border-bottom:1px solid #d1d1d1;padding:15px}.drawer-pf-notification .date{border-right:1px solid #aaa;display:inline-block;line-height:1;margin-right:5px;padding-right:9px}.drawer-pf-notification>.dropdown-kebab-pf{margin-top:-3px}.drawer-pf-notification .pficon{font-size:14px;margin-top:3px}.drawer-pf-notification:last-of-type{border-bottom:none}.drawer-pf-notification:hover{background-color:#def3ff}.drawer-pf-notification.unread .drawer-pf-notification-message{font-weight:700}.drawer-pf-notification.expanded-notification .date{border-right:none;padding-right:0}.drawer-pf-notification-content{cursor:default}.drawer-pf-notification-info,.drawer-pf-notification-message{display:block;padding-left:27px;padding-right:19px}.expanded-notification .drawer-pf-notification-info,.expanded-notification .drawer-pf-notification-message{display:inline-block}.drawer-pf-notifications-non-clickable .drawer-pf-notification:hover{background-color:#fff}.drawer-pf-title{background-color:#fafafa;border-bottom:1px solid #d1d1d1;position:absolute;width:100%}.drawer-pf-title h3{font-size:12px;margin:0;padding:6px 15px}.drawer-pf-notification.expanded-notification .drawer-pf-notification-content{display:-ms-flexbox;display:flex}@media (max-width:991px){.drawer-pf-notification.expanded-notification .drawer-pf-notification-content{-ms-flex-direction:column;flex-direction:column}}.drawer-pf-notification.expanded-notification .drawer-pf-notification-content .drawer-pf-notification-message{-ms-flex:1 1;flex:1 1}.navbar-pf-vertical .drawer-pf{height:calc(100vh - 58px - 20px);top:58px}@media (max-width:767px){.navbar-pf-vertical .drawer-pf{width:100%;height:calc(100vh - 58px)}}.navbar-pf-vertical .nav .drawer-pf-trigger .drawer-pf-trigger-icon{border-left:1px solid #2b2b2b;border-right:1px solid #2b2b2b;padding-left:15px;padding-right:15px}.navbar-pf-vertical .nav .drawer-pf-trigger.open .drawer-pf-trigger-icon{background-color:#232323}.navbar-pf .drawer-pf{height:calc(100vh - 26px - 20px);top:26px}@media (max-width:767px){.navbar-pf .drawer-pf{width:100%;height:calc(100vh - 26px - 32px);top:calc(26px + 8px)}}.navbar-pf .drawer-pf-trigger-icon{cursor:pointer}.search-pf.has-button{border-collapse:separate;display:table}.search-pf.has-button .form-group{display:table-cell;width:100%}.search-pf.has-button .form-group .btn{box-shadow:none;float:left;margin-left:-1px}.search-pf.has-button .form-group .btn.btn-lg{font-size:14.5px}.search-pf.has-button .form-group .btn.btn-sm{font-size:10.7px}.search-pf.has-button .form-group .form-control{float:left}.search-pf .has-clear .clear{background:rgba(255,255,255,0);border:0;height:25px;line-height:1;padding:0;position:absolute;right:1px;top:1px;width:28px}.search-pf .has-clear .clear:focus{outline:0}.search-pf .has-clear .form-control{padding-right:30px}.search-pf .has-clear .form-control::-ms-clear{display:none}.search-pf .has-clear .input-lg+.clear{height:31px;width:28px}.search-pf .has-clear .input-sm+.clear{height:20px;width:28px}.search-pf .has-clear .input-sm+.clear span{font-size:10px}.search-pf .has-clear .search-pf-input-group{position:relative}.sidebar-header{border-bottom:1px solid #ececec;padding-bottom:11px;margin:50px 0 20px}.sidebar-header .actions{margin-top:-2px}.sidebar-pf .sidebar-header+.list-group{border-top:0;margin-top:-10px}.sidebar-pf .sidebar-header+.list-group .list-group-item{background:0 0;border-color:#ececec;padding-left:0}.sidebar-pf .sidebar-header+.list-group .list-group-item-heading{font-size:12px}.sidebar-pf .nav-category h2{color:#9c9c9c;font-size:12px;font-weight:400;line-height:21px;margin:0;padding:8px 0}.sidebar-pf .nav-category+.nav-category{margin-top:10px}.sidebar-pf .nav-pills>li.active>a{background:#0088ce!important;border-color:#0088ce!important;color:#fff}@media (min-width:768px){.sidebar-pf .nav-pills>li.active>a:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:1px}}.sidebar-pf .nav-pills>li.active>a .fa{color:#fff}.sidebar-pf .nav-pills>li>a{border-bottom:1px solid transparent;border-radius:0;border-top:1px solid transparent;color:#363636;font-size:13px;line-height:21px;padding:1px 20px}.sidebar-pf .nav-pills>li>a:hover{background:#def3ff;border-color:#bee1f4}.sidebar-pf .nav-pills>li>a .fa{color:#6a7079;font-size:15px;margin-right:10px;text-align:center;vertical-align:middle;width:15px}.sidebar-pf .nav-stacked{margin-left:-20px;margin-right:-20px}.sidebar-pf .nav-stacked li+li{margin-top:0}.sidebar-pf .panel{background:0 0}.sidebar-pf .panel-body{padding:6px 20px}.sidebar-pf .panel-body .nav-pills>li>a{padding-left:37px}.sidebar-pf .panel-heading{padding:9px 20px}.sidebar-pf .panel-title{font-size:12px}.sidebar-pf .panel-title>a:before{display:inline-block;margin-left:1px;margin-right:4px;width:9px}.sidebar-pf .panel-title>a.collapsed:before{margin-left:3px;margin-right:2px}@media (min-width:767px){.sidebar-header-bleed-left{margin-left:-20px}.sidebar-header-bleed-left>h2{margin-left:20px}.sidebar-header-bleed-right{margin-right:-20px}.sidebar-header-bleed-right .actions{margin-right:20px}.sidebar-header-bleed-right>h2{margin-right:20px}.sidebar-header-bleed-right+.list-group{margin-right:-20px}.sidebar-pf .panel-group .panel-default,.sidebar-pf .treeview{border-left:0;border-right:0;margin-left:-20px;margin-right:-20px}.sidebar-pf .treeview{margin-top:5px}.sidebar-pf .treeview .list-group-item{padding-left:20px;padding-right:20px}.sidebar-pf .treeview .list-group-item.node-selected:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:1px}}@media (min-width:768px){.sidebar-pf{background:#fafafa}.sidebar-pf.sidebar-pf-left{border-right:1px solid #d1d1d1}.sidebar-pf.sidebar-pf-right{border-left:1px solid #d1d1d1}.sidebar-pf>.nav-category,.sidebar-pf>.nav-stacked{margin-top:5px}}.skiplink-pf{position:absolute;top:12px;left:-300%;z-index:1050}.skiplink-pf:focus{left:10px}@keyframes rotation{from{transform:rotate(0)}to{transform:rotate(359deg)}}.spinner{animation:rotation .6s infinite linear;border-bottom:4px solid rgba(3,3,3,.25);border-left:4px solid rgba(3,3,3,.25);border-right:4px solid rgba(3,3,3,.25);border-radius:100%;border-top:4px solid rgba(3,3,3,.75);height:24px;margin:0 auto;position:relative;width:24px}.spinner.spinner-inline{display:inline-block;margin-right:3px}.spinner.spinner-lg{border-width:5px;height:30px;width:30px}.spinner.spinner-sm{border-width:3px;height:18px;width:18px}.spinner.spinner-xs{border-width:2px;height:12px;width:12px}.spinner.spinner-inverse{border-bottom-color:rgba(255,255,255,.25);border-left-color:rgba(255,255,255,.25);border-right-color:rgba(255,255,255,.25);border-top-color:rgba(255,255,255,.75)}.ie9 .spinner{background:url(../img/spinner.gif) no-repeat;border:0}.ie9 .spinner.spinner-inverse{background-image:url(../img/spinner-inverse.gif)}.ie9 .spinner.spinner-inverse-lg{background-image:url(../img/spinner-inverse-lg.gif)}.ie9 .spinner.spinner-inverse-sm{background-image:url(../img/spinner-inverse-sm.gif)}.ie9 .spinner.spinner-inverse-xs{background-image:url(../img/spinner-inverse-xs.gif)}.ie9 .spinner.spinner-lg{background-image:url(../img/spinner-lg.gif)}.ie9 .spinner.spinner-sm{background-image:url(../img/spinner-sm.gif)}.ie9 .spinner.spinner-xs{background-image:url(../img/spinner-xs.gif)}.prettyprint .atn,.prettyprint .com,.prettyprint .fun,.prettyprint .var{color:#3f9c35}.prettyprint .atv,.prettyprint .str{color:#a30000}.prettyprint .clo,.prettyprint .dec,.prettyprint .kwd,.prettyprint .opn,.prettyprint .pln,.prettyprint .pun{color:#363636}.prettyprint .lit,.prettyprint .tag,.prettyprint .typ{color:#00659c}.prettyprint ol.linenums{margin-bottom:0}table.dataTable{height:100%;margin-bottom:0;max-width:none!important}table.dataTable tbody>tr>td.table-view-pf-actions{padding:0;vertical-align:middle}table.dataTable tbody>tr:hover>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable tbody>tr.selected{color:#fff;background-color:#0088ce}table.dataTable tbody>tr.selected>td{border-bottom-color:#00659c}table.dataTable tbody>tr.selected>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable tbody>tr.selected:hover>td{background-color:inherit;border-bottom-color:#00659c}table.dataTable tbody>tr.selected:hover>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_desc_disabled{cursor:pointer}table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc{color:#0088ce!important;position:relative}table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after{content:"\f107";font-family:FontAwesome;font-size:10px;font-weight:400;height:9px;left:7px;line-height:12px;position:relative;top:2px;vertical-align:baseline;width:12px}table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_desc:before{background:#0088ce;content:"";height:2px;position:absolute;left:0;top:0;width:100%}table.dataTable thead .sorting_asc:after{content:"\f106";top:-3px}table.dataTable th:active{outline:0}.table-view-pf-empty.blank-slate-pf{background-color:#f5f5f5;border:1px solid #d1d1d1;border-radius:0;margin-top:-1px}.table-view-pf-toolbar.toolbar-pf{background-color:#f5f5f5;border-bottom:none;border-left:1px solid #d1d1d1;border-right:1px solid #d1d1d1;border-top:1px solid #d1d1d1;box-shadow:none;margin-left:0;margin-right:0}.table-view-pf-toolbar.toolbar-pf .toolbar-pf-results{border-top:1px solid #d1d1d1;min-height:40px;line-height:40px}.table-view-pf-toolbar-external.toolbar-pf{border-bottom:none;border-top:none;box-shadow:none}.table-view-pf-toolbar-external.toolbar-pf .toolbar-pf-results{border-top:1px solid #d1d1d1;min-height:40px;line-height:40px}.table-view-pf-colvis-menu>li{padding:5px 10px}.table-view-pf-colvis-menu>li:hover{background-color:#def3ff}.table-view-pf-colvis-menu>li>input{margin-top:0;margin-right:10px;vertical-align:middle}.table-view-pf-colvis-menu>li>label{margin-bottom:0}.table-view-pf-actions{background-color:#f1f1f1;height:100%}.table-view-pf-actions .btn,.table-view-pf-actions .dropdown-toggle{border:none;box-shadow:none;height:100%;width:100%}.table-view-pf-actions .dropdown,.table-view-pf-actions .table-view-pf-btn{height:100%}.table-view-pf-actions .dropdown-menu.dropdown-menu-right{right:-5px}.table-view-pf-actions:last-child{width:24px}.table-view-pf-select{width:33px}.table-view-pf-select-results{text-align:right}.bootstrap-datetimepicker-widget a[data-action]{border:0;box-shadow:none;color:#363636;display:block;padding-bottom:4px;padding-top:4px}.bootstrap-datetimepicker-widget a[data-action]:hover{color:#0088ce}.bootstrap-datetimepicker-widget.dropdown-menu{left:0!important;padding:0;width:calc(100% - 25px)}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:none}.bootstrap-datetimepicker-widget.dropdown-menu.top{margin-bottom:-1px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom{margin-top:-1px}.bootstrap-datetimepicker-widget .timepicker-hour{width:100%}.bootstrap-datetimepicker-widget .timepicker-hour:after{content:":";float:right}.timepicker-hours table td,.timepicker-minutes table td{font-weight:700;line-height:30px;height:30px}.timepicker-hours table td:hover,.timepicker-minutes table td:hover{color:#0088ce}.timepicker-hours .table-condensed>tbody>tr>td,.timepicker-minutes .table-condensed>tbody>tr>td{padding:0}.time-picker-pf .input-group-addon .fa,.time-picker-pf .input-group-addon .pficon{width:12px}.time-picker-pf .input-group-addon:not(.active){box-shadow:none}.timepicker-picker table td a span,.timepicker-picker table td span{height:24px;line-height:24px;margin:0;width:100%}.timepicker-picker .table-condensed>tbody>tr>td{height:25px;line-height:18px;padding:0}.timepicker-picker button[data-action]{padding-bottom:0;padding-top:0}.timepicker-picker .separator{display:none}.timepicker-picker tr:nth-child(2) td{background-color:#def3ff;border-color:#bee1f4;border-style:solid;border-width:1px;border-left:0;border-right:0}.toast-pf{background-color:#fff;border-color:#bbb;box-shadow:0 2px 6px rgba(3,3,3,.2);padding-left:68px;margin-bottom:5px}.toast-pf.alert-danger>.pficon{background-color:#c00}.toast-pf.alert-info>.pficon{background-color:#8b8d8f}.toast-pf.alert-success>.pficon{background-color:#3f9c35}.toast-pf.alert-warning>.pficon{background-color:#ec7a08}.toast-pf .dropdown-kebab-pf{margin-left:10px}.toast-pf>.pficon{background-color:#4d5258;bottom:-1px;box-shadow:2px 0 5px -2px rgba(3,3,3,.2);left:-1px;padding-top:10px;text-align:center;top:-1px;width:53px}.toast-pf>.pficon:before{color:rgba(255,255,255,.74)}.toast-pf .toast-pf-action{margin-left:15px}.toast-pf .dropdown-kebab-pf .btn-link{padding-top:0;padding-bottom:0;vertical-align:text-bottom}@media (min-width:992px){.toast-pf{display:inline-block}}@media (min-width:992px){.toast-pf-max-width{max-width:31.1%}}.toast-pf-top-right{left:20px;position:absolute;right:20px;top:12px;z-index:1055}@media (min-width:992px){.toast-pf-top-right{left:auto}}.toast-notifications-list-pf{margin-left:20px;position:fixed;right:20px;top:80px;z-index:1055}.toast-notifications-list-pf .toast-pf{clear:both;float:right}@media (min-width:768px){.toast-notifications-list-pf{max-width:calc(50%)}}@media (min-width:992px){.toast-notifications-list-pf{max-width:calc(33.1%)}}.toolbar-pf{background:#fff;border-bottom:1px solid #d1d1d1;box-shadow:0 1px 0 rgba(3,3,3,.045);padding-top:10px}.toolbar-pf .form-group{margin-bottom:10px}@media (min-width:768px){.toolbar-pf .form-group{border-right:1px solid #d1d1d1;float:left;margin-bottom:0;padding-left:20px;padding-right:20px}}.toolbar-pf .form-group:last-child{border-right:0;margin-bottom:0;padding-right:0}.toolbar-pf .form-group .btn+.btn,.toolbar-pf .form-group .btn+.btn-group,.toolbar-pf .form-group .btn-group+.btn,.toolbar-pf .form-group .btn-group+.btn-group{margin-left:5px}.toolbar-pf .form-group .btn+.btn-link,.toolbar-pf .form-group .btn+.dropdown,.toolbar-pf .form-group .btn-group+.btn-link,.toolbar-pf .form-group .btn-group+.dropdown{margin-left:10px}.toolbar-pf .form-group .btn-link{color:#252525;font-size:16px;line-height:1;padding:4px 0}.toolbar-pf .form-group .btn-link:active,.toolbar-pf .form-group .btn-link:focus,.toolbar-pf .form-group .btn-link:hover{color:#0088ce}.toolbar-pf .form-group .dropdown-kebab-pf .btn-link{padding:4px 10px;margin-left:-10px;margin-right:-10px}.toolbar-pf-actions{display:table;margin-bottom:10px;width:100%}@media (min-width:768px){.toolbar-pf-actions .toolbar-pf-filter{padding-left:0}}.toolbar-pf-view-selector{font-size:16px}.toolbar-pf-view-selector .btn-link.active{color:#0088ce;cursor:default}.toolbar-pf-action-right{float:right}@media (max-width:768px){.toolbar-pf-action-right{float:none}}.toolbar-pf-find{font-size:14px;position:relative}.find-pf-dropdown-container{background:#fff;border:solid 1px #bbb;display:none;right:-20px;padding:5px;position:absolute;top:35px;width:300px;z-index:10000}@media (max-width:768px){.find-pf-dropdown-container{left:30px;top:-5px;width:calc(100% - 30px)}}.find-pf-dropdown-container:after,.find-pf-dropdown-container:before{content:"";position:absolute}.find-pf-dropdown-container:before{border-bottom:11px solid #bbb;border-left:11px solid transparent;border-right:11px solid transparent;right:35px;top:-12px}.toolbar-pf-find:last-child .find-pf-dropdown-container:before{right:15px}@media (max-width:768px){.find-pf-dropdown-container:before{border-bottom:11px solid transparent;border-right:11px solid #bbb;border-top:11px solid transparent;left:-22px;right:initial;top:8px}}.find-pf-dropdown-container:after{border-bottom:10px solid #fff;border-left:10px solid transparent;border-right:10px solid transparent;right:36px;top:-10px}.toolbar-pf-find:last-child .find-pf-dropdown-container:after{right:16px}@media (max-width:768px){.find-pf-dropdown-container:after{border-bottom:10px solid transparent;border-right:10px solid #fff;border-top:10px solid transparent;left:-20px;right:initial;top:9px}}.find-pf-dropdown-container input{height:30px;padding:5px 117px 5px 5px;width:100%}.find-pf-dropdown-container .find-pf-buttons{position:absolute;right:10px;top:5px}.find-pf-dropdown-container .find-pf-buttons .btn{border:none;cursor:pointer;margin-left:0!important;padding:0;width:18px}.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-down,.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-up{font-weight:700;font-size:18px}.find-pf-dropdown-container .find-pf-buttons .btn .pficon-close{font-size:14px}.find-pf-dropdown-container .find-pf-buttons span{height:30px;line-height:30px;vertical-align:middle}.find-pf-dropdown-container .find-pf-buttons .find-pf-nums{color:#8b8d8f;margin-right:3px}.toolbar-pf-results{border-top:1px solid #d1d1d1;margin-top:10px}.toolbar-pf-results h5,.toolbar-pf-results p,.toolbar-pf-results ul{display:inline-block;line-height:26.66666667px;margin-bottom:0;margin-top:0}@media (min-width:768px){.toolbar-pf-results h5,.toolbar-pf-results p,.toolbar-pf-results ul{line-height:40px}}.toolbar-pf-results h5{font-weight:700;margin-right:20px}.toolbar-pf-results .label{font-size:11px}.toolbar-pf-results .label a{color:#fff;display:inline-block;margin-left:5px}.nav-pf-vertical{background:#292e34;border-right:1px solid #292e34;bottom:0;left:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;width:200px;z-index:1030}.layout-pf-fixed-with-footer .nav-pf-vertical{bottom:37px}.ie9.layout-pf-fixed .nav-pf-vertical{box-sizing:content-box}.nav-pf-vertical.hidden.show-mobile-nav{box-shadow:0 0 3px rgba(3,3,3,.15);display:block!important}.nav-pf-vertical.hide-nav-pf{visibility:hidden!important}.nav-pf-vertical .list-group{border-top:0;margin-bottom:0}.nav-pf-vertical .list-group-item{background-color:transparent;border-color:#030303;padding:0}.nav-pf-vertical .list-group-item>a{background-color:transparent;color:#d1d1d1;cursor:pointer;display:block;font-size:14px;font-weight:400;height:63px;line-height:26px;padding:17px 20px 17px 25px;position:relative;white-space:nowrap;width:200px}@supports (display:flex){.nav-pf-vertical .list-group-item>a{display:-ms-flexbox;display:flex;padding-right:0}}.nav-pf-vertical .list-group-item>a .fa,.nav-pf-vertical .list-group-item>a .glyphicon,.nav-pf-vertical .list-group-item>a .pficon{color:#72767b;float:left;font-size:20px;line-height:26px;margin-right:10px;text-align:center;width:24px}.nav-pf-vertical .list-group-item>a:hover{text-decoration:none}.nav-pf-vertical .list-group-item.active>a,.nav-pf-vertical .list-group-item:hover>a{background-color:#393f44;color:#fff;font-weight:600}.nav-pf-vertical .list-group-item.active>a .fa,.nav-pf-vertical .list-group-item.active>a .glyphicon,.nav-pf-vertical .list-group-item.active>a .pficon,.nav-pf-vertical .list-group-item:hover>a .fa,.nav-pf-vertical .list-group-item:hover>a .glyphicon,.nav-pf-vertical .list-group-item:hover>a .pficon{color:#39a5dc}.nav-pf-vertical .list-group-item.active>a:before{background:#39a5dc;content:" ";height:100%;left:0;position:absolute;top:0;width:3px}.nav-pf-vertical .list-group-item.active:hover{background-color:transparent;border-color:#030303}.nav-pf-vertical .list-group-item .list-group-item-value{display:block;line-height:25px;max-width:120px;overflow:hidden;text-overflow:ellipsis}@supports (display:flex){.nav-pf-vertical .list-group-item .list-group-item-value{-ms-flex:1;flex:1;max-width:none;padding-right:15px}}.nav-pf-vertical .list-group-item-separator{border-top-color:#030303;border-top-width:2px}.nav-pf-vertical.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-vertical-with-badges .list-group-item>a{width:250px}.nav-pf-vertical h5{color:#fff;cursor:default;font-size:13px;font-weight:600;margin:30px 20px 10px 20px}.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .fa,.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .glyphicon,.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .pficon{display:none}.nav-pf-vertical.hidden-icons-pf.collapsed{display:none}.nav-pf-vertical .badge-container-pf{position:absolute;right:15px;top:20px}@supports (display:flex){.nav-pf-vertical .badge-container-pf{padding-left:0;padding-right:15px;position:relative;right:0;margin-top:-3px;top:5px}}.nav-pf-vertical .badge-container-pf .badge{background:#292e34;color:#fff;float:left;font-size:12px;font-weight:700;line-height:1.66666667;margin:0;padding:0 7px;text-align:center}.nav-pf-vertical .badge-container-pf .badge .fa,.nav-pf-vertical .badge-container-pf .badge .pficon{font-size:14px;height:20px;line-height:1.66666667;margin-right:3px;margin-top:-1px}.nav-pf-vertical-tooltip.tooltip{margin-left:15px}.nav-pf-vertical-tooltip.tooltip .tooltip-inner{background-color:#fff;color:#292e34}.nav-pf-vertical-tooltip.tooltip .tooltip-arrow{border-bottom-color:#fff;left:calc(50% - 15px)!important}.hover-secondary-nav-pf{width:calc(200px * 2)}.hover-secondary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.hover-tertiary-nav-pf{width:calc(200px * 3)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 3)}.hover-tertiary-nav-pf .nav-pf-secondary-nav{width:calc(200px * 2)}.hover-tertiary-nav-pf .nav-pf-secondary-nav .collapsed-tertiary-nav-pf{width:200px}.hover-tertiary-nav-pf .nav-pf-tertiary-nav{left:calc(200px * 2)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav{width:calc(250px * 2)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav .collapsed-tertiary-nav-pf{width:250px}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:calc(250px * 2)}.nav-pf-vertical.collapsed{width:75px}.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed.hover-secondary-nav-pf{width:calc(75px + 200px)}.nav-pf-vertical.collapsed.hover-secondary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + 250px)}.nav-pf-vertical.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.nav-pf-vertical.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + (250px * 2))}.show-mobile-nav.show-mobile-secondary{width:200px}.show-mobile-nav.show-mobile-secondary.nav-pf-vertical-with-badges{width:250px}.show-mobile-nav.show-mobile-tertiary{width:200px}.show-mobile-nav.show-mobile-tertiary.nav-pf-vertical-with-badges{width:250px}.show-mobile-nav .mobile-nav-item-pf .nav-pf-secondary-nav,.show-mobile-nav .mobile-secondary-item-pf .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible;z-index:1034}.show-mobile-nav .mobile-nav-item-pf>.nav-pf-tertiary-nav,.show-mobile-nav .mobile-secondary-item-pf>.nav-pf-tertiary-nav{left:0;opacity:1;visibility:visible;z-index:1038}.show-mobile-nav .nav-pf-secondary-nav{left:0}.secondary-nav-item-pf:hover .show-mobile-nav .nav-pf-secondary-nav{opacity:0;visibility:hidden}.show-mobile-nav .tertiary-nav-item-pf:hover .nav-pf-tertiary-nav{opacity:0;visibility:hidden}.show-mobile-nav .tertiary-nav-item-pf.mobile-nav-item-pf:hover .nav-pf-tertiary-nav{opacity:1;visibility:visible}.secondary-nav-item-pf>a{cursor:default}.secondary-nav-item-pf>a:after{color:#72767b;content:"\f105";display:block;font-family:FontAwesome;font-size:24px;line-height:30px;padding:14px 0;position:absolute;right:20px;top:0}@supports (display:flex){.secondary-nav-item-pf>a .list-group-item-value{padding-right:35px}}.secondary-nav-item-pf.active>a,.secondary-nav-item-pf:hover>a{width:calc(200px + 1px);z-index:1031}.secondary-nav-item-pf.active>a:after,.secondary-nav-item-pf:hover>a:after{right:21px}.collapsed-secondary-nav-pf .secondary-nav-item-pf.active>a,.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover>a{z-index:0}.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active>a,.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover>a{z-index:0}.nav-pf-vertical-with-badges .secondary-nav-item-pf.active>a,.nav-pf-vertical-with-badges .secondary-nav-item-pf:hover>a{width:calc(250px + 1px)}.nav-pf-vertical.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.hover>a{z-index:1030}.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-secondary-nav{left:0}.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav{width:200px}.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.hover>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.hover>a{z-index:0}@media (min-width:1200px){.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf{width:calc(200px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf{width:calc(200px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed{width:calc(75px + 200px)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + (250px * 2))}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf{width:calc(200px * 3)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 3)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{visibility:visible;opacity:1}}.nav-item-pf-header{color:#fff;font-size:16px;margin:18px 20px 10px 20px}.nav-item-pf-header>a{cursor:pointer;margin-right:7px}.nav-item-pf-header>a:focus,.nav-item-pf-header>a:hover{color:#0088ce;text-decoration:none}.nav-pf-vertical.collapsed{width:75px}.nav-pf-vertical.collapsed .list-group-item>a{width:75px}.nav-pf-vertical.collapsed .list-group-item>a>.list-group-item-value{display:none}.nav-pf-vertical.collapsed .list-group-item>a>.badge-container-pf{display:none}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf>a{width:75px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a:after,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf>a:after{right:10px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover>a{width:77px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a:after,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover>a:after{right:11px}.nav-pf-secondary-nav{background:#393f44;border:1px solid #292e34;border-bottom:none;border-top:none;bottom:0;display:block;left:200px;opacity:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;visibility:hidden;width:200px;z-index:1030}.collapsed-secondary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible;z-index:1032}.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible}.hover-secondary-nav-pf .secondary-nav-item-pf.is-hover .nav-pf-secondary-nav{opacity:1;visibility:visible}.ie9.layout-pf-fixed .nav-pf-secondary-nav{box-sizing:content-box}.layout-pf-fixed-with-footer .nav-pf-secondary-nav{bottom:37px}.nav-pf-secondary-nav .list-group-item{border:none;padding:0 0 5px 0;width:200px}.nav-pf-secondary-nav .list-group-item>a{background-color:#393f44;color:#d1d1d1;font-size:12px;font-weight:inherit;height:inherit;padding:4px 0 2px 0;margin-left:20px;width:calc(200px - 20px)}.nav-pf-secondary-nav .list-group-item>a:hover .list-group-item-value{text-decoration:underline}.nav-pf-secondary-nav .list-group-item.active>a:before{display:none}.nav-pf-secondary-nav .list-group-item.active>a,.nav-pf-secondary-nav .list-group-item:hover>a{background-color:#4d5258;color:#fff}.nav-pf-secondary-nav .list-group-item .badge-container-pf{top:5px}.nav-pf-secondary-nav .list-group-item .badge-container-pf .badge{background:#292e34;color:#fff}.nav-pf-secondary-nav .list-group-item .list-group-item-value{padding-left:5px}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a{cursor:default}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a:after{color:#72767b;content:"\f105";display:block;font-family:FontAwesome;font-size:20px;line-height:20px;padding:0;position:absolute;right:20px;top:4px}@supports (display:flex){.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a .list-group-item-value{padding-right:35px}}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a,.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a{width:calc(200px - 19px);z-index:1033}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a:after,.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a:after{right:21px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav{left:250px;width:250px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item{width:250px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item>a{width:calc(250px - 20px)}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a,.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a{width:calc(250px - 19px)}.nav-pf-tertiary-nav{background:#4d5258;border:1px solid #292e34;border-bottom:none;border-top:none;bottom:0;display:block;left:calc(200px * 2);opacity:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;visibility:hidden;width:200px;z-index:1030}.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:250px;width:250px}.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .show-mobile-nav{left:0}.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active .nav-pf-tertiary-nav{left:0;opacity:1;visibility:visible;z-index:1033}.hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav{opacity:1;visibility:visible}.collapsed.collapsed-tertiary-nav-pf .hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav{left:0}.ie9.layout-pf-fixed .nav-pf-tertiary-nav{box-sizing:content-box}.layout-pf-fixed-with-footer .nav-pf-tertiary-nav{bottom:37px}.nav-pf-tertiary-nav .nav-item-pf-header{color:#fff;margin:18px 20px 10px 20px}.nav-pf-tertiary-nav h5{color:#fff;margin:30px 20px 10px 20px}.nav-pf-tertiary-nav .list-group-item{border:none;padding:0 0 5px 0}.nav-pf-tertiary-nav .list-group-item>a{background-color:transparent;color:#d1d1d1;font-size:12px;font-weight:inherit;height:inherit;margin:0 20px 0 20px;padding:4px 0 2px 0}.nav-pf-tertiary-nav .list-group-item.active>a:before{display:none}.nav-pf-tertiary-nav .list-group-item.active>a,.nav-pf-tertiary-nav .list-group-item:hover>a{background-color:#393f44;color:#fff}.nav-pf-tertiary-nav .list-group-item .badge-container-pf{top:5px}.nav-pf-tertiary-nav .list-group-item .badge-container-pf .badge{background:#292e34;color:#fff}.nav-pf-tertiary-nav .list-group-item .list-group-item-value{padding-left:5px}.collapsed .nav-pf-secondary-nav{left:75px}.collapsed .nav-pf-secondary-nav .list-group-item>a{width:calc(200px - 20px)}.collapsed .nav-pf-secondary-nav .list-group-item>a>.list-group-item-value{display:inline-block}.collapsed .nav-pf-secondary-nav .list-group-item>a>.badge-container-pf{display:inline-block}.collapsed .nav-pf-tertiary-nav{left:calc(75px + 200px)}.collapsed .nav-pf-tertiary-nav .list-group-item>a{width:calc(200px - 20px)}.collapsed .nav-pf-tertiary-nav .list-group-item>a>.list-group-item-value{display:inline-block}.collapsed .nav-pf-tertiary-nav .list-group-item>a>.badge-container-pf{display:inline-block}.collapsed.collapsed-secondary-nav-pf,.collapsed.collapsed-tertiary-nav-pf{width:200px}.collapsed.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover>a,.collapsed.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover>a{z-index:1030}.collapsed.collapsed-secondary-nav-pf .nav-pf-secondary-nav,.collapsed.collapsed-tertiary-nav-pf .nav-pf-secondary-nav{left:0}.collapsed.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:200px}.collapsed.collapsed-tertiary-nav-pf .nav-pf-tertiary-nav{left:0}.collapsed.hover-secondary-nav-pf{width:calc(75px + 200px)}.collapsed.hover-secondary-nav-pf.collapsed-secondary-nav-pf,.collapsed.hover-secondary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.collapsed.hover-tertiary-nav-pf.collapsed-secondary-nav-pf{width:calc(200px * 2)}.collapsed.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.collapsed.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item>a{width:calc(250px - 20px)}.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:calc(75px + 250px)}.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .list-group-item>a{width:calc(250px - 20px)}.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf,.collapsed.nav-pf-vertical-with-badges.collapsed-tertiary-nav-pf{width:250px}.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:250px}.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf{width:calc(75px + 250px)}.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-secondary-nav-pf,.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-tertiary-nav-pf{width:250px}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-secondary-nav-pf{width:calc(200px * 2)}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.secondary-collapse-toggle-pf{display:none;font-family:FontAwesome;font-size:inherit;opacity:0;pointer-events:none;-webkit-font-smoothing:antialiased}.secondary-collapse-toggle-pf:before{content:"\f190"}.secondary-collapse-toggle-pf.collapsed:before{content:"\f18e"}.tertiary-collapse-toggle-pf{display:none;font-family:FontAwesome;font-size:inherit;opacity:0;pointer-events:none;-webkit-font-smoothing:antialiased}.tertiary-collapse-toggle-pf:before{content:"\f190"}.tertiary-collapse-toggle-pf.collapsed:before{content:"\f18e"}.nav-pf-vertical-collapsible-menus .secondary-collapse-toggle-pf{display:inline-block}.nav-pf-vertical-collapsible-menus .secondary-nav-item-pf.active .secondary-collapse-toggle-pf{opacity:1;pointer-events:all}.nav-pf-vertical-collapsible-menus .tertiary-collapse-toggle-pf{display:inline-block}.nav-pf-vertical-collapsible-menus .tertiary-nav-item-pf.active .tertiary-collapse-toggle-pf{opacity:1;pointer-events:all}.show-mobile-nav .secondary-collapse-toggle-pf{display:inline-block;opacity:1;pointer-events:all}.show-mobile-nav .secondary-collapse-toggle-pf:before{content:"\f190"}.show-mobile-nav .tertiary-collapse-toggle-pf{display:inline-block;opacity:1;pointer-events:all}.show-mobile-nav .tertiary-collapse-toggle-pf:before{content:"\f190"}.force-hide-secondary-nav-pf .nav-pf-secondary-nav{display:none!important}.force-hide-secondary-nav-pf .nav-pf-tertiary-nav{display:none!important}.nav-pf-vertical.transitions{transition:width .1s}.nav-pf-vertical.transitions .nav-pf-secondary-nav{transition:visibility .1s,opacity .1s linear}.nav-pf-vertical.transitions .nav-pf-tertiary-nav{transition:visibility .1s,opacity .1s linear}.wizard-pf{padding:10px;margin:0 auto;max-height:900px;width:auto}.wizard-pf .modal-content{min-height:100%}.wizard-pf-body{background:#fff;padding:0;position:static}.wizard-pf-sidebar{background:#fafafa;border-right:1px solid #d1d1d1;display:none}@media (min-width:768px){.wizard-pf-sidebar{display:inherit;-ms-flex:0 0 auto;flex:0 0 auto;overflow-x:hidden;overflow-y:auto}.wizard-pf-sidebar .list-group{border-top:0;margin-bottom:0}.wizard-pf-sidebar .list-group-item{background-color:transparent;border-color:#ededed;padding:0}.wizard-pf-sidebar .list-group-item>a{color:#030303;cursor:pointer;display:block;font-size:14px;font-weight:700;height:50px;outline:0;padding-top:11px;padding-left:20px;position:relative;white-space:nowrap;width:14em}.wizard-pf-sidebar .list-group-item>a:hover{text-decoration:none;background-color:#ededed}.wizard-pf-sidebar .list-group-item>a:focus{text-decoration:none}.wizard-pf-sidebar .list-group-item>a:focus span{text-decoration:underline}.wizard-pf-sidebar .list-group-item.active{background-color:#ededed}.wizard-pf-sidebar .list-group-item.active:hover{border-color:#ededed}.wizard-pf-sidebar .list-group-item.active>a{color:#39a5dc;cursor:default}.wizard-pf-sidebar .list-group-item.active>a:before{content:" ";background:#39a5dc;height:100%;left:0;position:absolute;top:0;width:3px}.wizard-pf-sidebar .list-group-item.active>a:after{color:#39a5dc;content:"\f105";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;line-height:30px;padding-top:10px;position:absolute;right:23px;top:0}}.wizard-pf-substep-number{display:inline-block;margin-right:5px;vertical-align:middle;width:25px}.wizard-pf-substep-title{display:inline-block;margin-right:5px;text-align:left;vertical-align:middle}.wizard-pf-steps{border-bottom:solid 1px #d1d1d1}@media (min-width:768px){.wizard-pf-steps{text-align:center}}.wizard-pf-steps-indicator{background:#ededed;border-top:1px solid #d1d1d1;display:inline-block;display:-ms-flexbox;display:flex;font-size:16px;list-style:none;margin-bottom:0;padding:15px 0}@media (min-width:768px){.wizard-pf-steps-indicator{background:#fff;height:120px;padding:38px 0 0;-ms-flex-pack:distribute;justify-content:space-around}}.wizard-pf-steps-indicator li{counter-increment:section;float:left;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0;line-height:15px;margin:0;padding:0;position:relative;text-align:center}.wizard-pf-steps-indicator li:not(.active){display:none}@media (min-width:768px){.wizard-pf-steps-indicator li:not(.active){display:block}}.wizard-pf-steps-indicator li a{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;font-weight:700}@media (min-width:768px){.wizard-pf-steps-indicator li a{font-weight:400;-ms-flex-pack:center;justify-content:center}}.wizard-pf-steps-indicator li a .wizard-pf-step-title{margin-left:10px}@media (min-width:768px){.wizard-pf-steps-indicator li a .wizard-pf-step-title{margin-left:0}}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep{font-weight:400;margin-left:10px;text-transform:capitalize}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:before{content:"\00BB";font-size:20px;margin-right:10px}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:not(.active){display:none}@media (min-width:768px){.wizard-pf-steps-indicator li .wizard-pf-step-title-substep{display:none}.wizard-pf-steps-indicator li:before{background-color:#bbb;content:"";height:2px;left:0;position:absolute;right:0;top:40px}.wizard-pf-steps-indicator li:first-child:before{left:50%;right:0}.wizard-pf-steps-indicator li:last-child:before{left:0;right:50%}.wizard-pf-steps-indicator li:only-of-type:before{background-color:transparent}}.wizard-pf-steps-indicator li a{color:#030303;cursor:pointer;font-size:16px;margin-left:1em;margin-right:1em;text-decoration:none}.wizard-pf-steps-indicator li a:hover .wizard-pf-step-number{background-color:#bbb;border-color:#bbb;color:#fff}.wizard-pf-steps-indicator .wizard-pf-step-number{background-color:#fff;border-radius:50%;border:solid 2px #bbb;color:#bbb;font-size:12px;font-weight:700;height:25px;line-height:22px;width:25px}@media (min-width:768px){.wizard-pf-steps-indicator .wizard-pf-step-number{left:calc(50% - 13px);position:absolute;top:27px}}.wizard-pf-steps-indicator .active .wizard-pf-step-number{background-color:#39a5dc;border-color:#39a5dc;cursor:default;color:#fff}.wizard-pf-steps-indicator .viewed-pf .wizard-pf-step-number{color:#030303;background-color:#fff;border-color:#39a5dc}.wizard-pf-main{height:100%;padding:1em;vertical-align:top;width:100%}@media (min-width:768px){.wizard-pf-main{overflow:auto;padding:3em;-ms-flex:1 1 auto;flex:1 1 auto}}.wizard-pf-main .blank-slate-pf{background-color:transparent;border:none;left:0;right:0}.wizard-pf-contents textarea{resize:vertical}.wizard-pf-review-steps{list-style:none}.wizard-pf-review-steps .list-group,.wizard-pf-review-steps .list-group-item{border:none;margin-bottom:0}.wizard-pf-review-steps>ul>li{float:left;line-height:15px;margin:0;padding-top:0;position:relative;width:100%}.wizard-pf-review-steps>ul>li>a{color:#030303;cursor:pointer;font-size:16px;padding-left:30px;padding-right:5px;text-decoration:none;transition:250ms}.wizard-pf-review-steps>ul>li>a:before{content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;left:20px;position:absolute;top:0}.wizard-pf-review-steps>ul>li>a.collapsed:before{content:"\f105"}.wizard-pf-review-substeps{padding-left:22px}.wizard-pf-review-substeps>ul>li{float:left;line-height:15px;margin:0;position:relative;width:100%}.wizard-pf-review-substeps>ul>li a{color:#030303;cursor:pointer;font-size:16px;padding-left:30px;padding-right:5px;text-decoration:none;transition:250ms}.wizard-pf-review-substeps>ul>li a:before{content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;left:20px;position:absolute;top:10px}.wizard-pf-review-substeps>ul>li a.collapsed:before{content:"\f105"}.wizard-pf-review-content{padding-top:10px;padding-left:40px}.wizard-pf-review-content .wizard-pf-review-item{padding:5px 0}.wizard-pf-review-content .wizard-pf-review-item.sub-item{margin-left:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-label{font-weight:700;padding-right:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field{font-weight:700;margin:5px 0;padding-right:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:first-of-type{margin-top:0}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:last-of-type{margin-bottom:0}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field.sub-field{margin-left:10px}.wizard-pf-success-icon{color:#3f9c35;font-size:67.2px;line-height:67.2px}.wizard-pf-footer{background:#fff;border-top:1px solid #d1d1d1;margin-top:0;padding-bottom:17px}.wizard-pf-footer .btn-cancel{margin-right:25px}@media (min-width:768px){.wizard-pf-row{display:-ms-flexbox;display:flex;width:100%;height:900px;max-height:65vh}}@media (min-width:992px){.wizard-pf{padding:30px 0;width:900px}.wizard-pf-sidebar .list-group-item>a{width:18em}}.wizard-pf-steps-alt,.wizard-pf-steps-alt ul{list-style:none;margin:0;padding:0}.wizard-pf-steps-alt{margin-left:15px;margin-top:15px;background-image:linear-gradient(to right,transparent 11px,#d1d1d1 11px,#d1d1d1 13px,transparent 13px)}@media (min-width:768px){.wizard-pf-steps-alt{display:none}}.wizard-pf-steps-alt-indicator{position:relative}.wizard-pf-steps-alt-indicator:after{color:#4d5258;content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;position:absolute;right:17px;top:50%;-ms-transform:translateY(-50%);transform:translateY(-50%)}@media (min-width:768px){.wizard-pf-steps-alt-indicator:after{display:none}}.wizard-pf-steps-alt-indicator.active:after{content:"\f106"}.wizard-pf-step-alt{margin-bottom:10px}.wizard-pf-step-alt a{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1}.wizard-pf-step-alt a:hover{text-decoration:none}.wizard-pf-step-alt a:hover .wizard-pf-step-alt-title{color:#39a5dc}.wizard-pf-step-alt ul{margin-left:11px}.wizard-pf-step-alt .wizard-pf-step-alt-title{margin-left:5px;-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.wizard-pf-step-alt .wizard-pf-step-alt-number{-ms-flex:0 0 auto;flex:0 0 auto}.wizard-pf-step-alt.active .wizard-pf-step-alt-number{background-color:#39a5dc;border-color:#39a5dc;cursor:default;color:#fff}.wizard-pf-step-alt.active .wizard-pf-step-alt-title{color:#39a5dc}.wizard-pf-step-alt.active .wizard-pf-step-alt-substep:first-of-type{margin-top:2px}.wizard-pf-step-alt.viewed .wizard-pf-step-alt-number{color:#030303;background-color:#fff;border-color:#39a5dc}.wizard-pf-step-alt-number{background-color:#fff;border-radius:50%;border:solid 2px #bbb;color:#bbb;font-size:12px;font-weight:700;height:24px;width:24px;display:inline-block;text-align:center}.wizard-pf-step-alt-title{color:#030303;font-weight:700;text-transform:capitalize;display:inline-block}.wizard-pf-step-alt-substep{display:-ms-flexbox;display:flex}.wizard-pf-step-alt-substep a{padding:5px 0 5px 18px;color:#393f44}.wizard-pf-step-alt-substep:not(.disabled).active,.wizard-pf-step-alt-substep:not(.disabled):hover{background-color:#ededed;background-image:linear-gradient(to right,#39a5dc 2px,transparent 2px)}.wizard-pf-step-alt-substep:not(.disabled).active a,.wizard-pf-step-alt-substep:not(.disabled):hover a{color:#39a5dc}.wizard-pf-step-alt-substep.active a{font-weight:700}.wizard-pf-step-alt-substep.disabled{cursor:not-allowed}.wizard-pf-step-alt-substep.disabled a{pointer-events:none}
\ No newline at end of file
+ */.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{display:block;margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:700;font-size:1em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Increment Hours";content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Increment Minutes";content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Decrement Hours";content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Decrement Minutes";content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action=clear]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action=today]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:1px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:0 0}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#9c9c9c}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:0 0;cursor:pointer}.bootstrap-datetimepicker-widget table td.new,.bootstrap-datetimepicker-widget table td.old{color:#9c9c9c}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#0088ce;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#0088ce;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:1px}.bootstrap-datetimepicker-widget table td span:hover{background:0 0}.bootstrap-datetimepicker-widget table td span.active{background-color:#0088ce;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td span.old{color:#9c9c9c}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget.wider{width:21em}.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em!important}.input-group.date .input-group-addon{cursor:pointer}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.text-overflow-pf{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.about-modal-pf{background-color:#292e34;background-image:url(../img/bg-modal-about-pf.png);background-position:right bottom;background-repeat:no-repeat;background-size:216px auto}@media (min-width:768px){.about-modal-pf{background-size:auto}}.about-modal-pf .modal-body{color:#fff;padding-bottom:16px;padding-left:40px;padding-right:40px}@media (min-width:768px){.about-modal-pf .modal-body{padding-left:80px;padding-right:80px}}.about-modal-pf .modal-header{background-color:transparent}.about-modal-pf .pficon-close{color:#fff}.product-versions-pf{margin-bottom:30px;margin-top:30px}.product-versions-pf li strong{margin-right:10px}.trademark-pf{font-size:11px}.applauncher-pf{display:inline-block;overflow:visible}.applauncher-pf .applauncher-pf-title{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.applauncher-pf .dropdown-toggle.disabled{cursor:not-allowed}.applauncher-pf.open>.dropdown-menu{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.applauncher-pf .applauncher-pf-item{width:100%}.applauncher-pf .applauncher-pf-link{display:-ms-flexbox;display:flex;white-space:initial;-ms-flex-align:center;align-items:center}@media (min-width:768px){.applauncher-pf-block-list .applauncher-pf-item{-ms-flex:0 0 50%;flex:0 0 50%}}.applauncher-pf-block-list .applauncher-pf-link{-ms-flex-wrap:wrap;flex-wrap:wrap}@media (min-width:768px){.applauncher-pf-block-list .applauncher-pf-link{-ms-flex-direction:column;flex-direction:column;text-align:center;padding:15px 0;height:100%}}.applauncher-pf-block-list .applauncher-pf-link-icon{padding:0}.applauncher-pf-block-list .applauncher-pf-link-title{margin-top:auto}@media (min-width:768px){.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link{padding:9px}.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon{-ms-flex:1 0 0px;flex:1 0 0;text-align:left}.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title{-ms-flex:3;flex:3}}.applauncher-pf .dropdown-menu{padding:9px;min-width:220px}.applauncher-pf .applauncher-pf-link{border-style:solid;border-width:1px;border-color:transparent}.applauncher-pf .applauncher-pf-link:hover{background-color:#f5f5f5;border-color:#bbb;color:#0088ce;text-decoration:none;box-shadow:0 0 2px 0 #d1d1d1}.applauncher-pf .applauncher-pf-link-icon{font-size:1.2em;text-align:center;width:1.28571429em}@media (min-width:768px){.applauncher-pf .applauncher-pf-link-icon{font-size:2em}}.navbar-utility .applauncher-pf .dropdown-menu{border-width:1px!important}@media (min-width:768px){.navbar-utility .applauncher-pf .dropdown-menu{margin-top:3px;right:0}}.navbar-pf .applauncher-pf.open>a,.navbar-pf .applauncher-pf.open>a:focus,.navbar-pf .navbar-utility .applauncher-pf.open>a,.navbar-pf .navbar-utility .applauncher-pf.open>a:focus,.navbar-pf-alt .applauncher-pf.open>a,.navbar-pf-alt .applauncher-pf.open>a:focus,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a:focus{background-color:#232323;color:#f5f5f5}@media (min-width:768px){.navbar-pf .applauncher-pf.open>a,.navbar-pf .applauncher-pf.open>a:focus,.navbar-pf .navbar-utility .applauncher-pf.open>a,.navbar-pf .navbar-utility .applauncher-pf.open>a:focus,.navbar-pf-alt .applauncher-pf.open>a,.navbar-pf-alt .applauncher-pf.open>a:focus,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a:focus{background-color:#363636;border-color:#2b2b2b;color:#d1d1d1}}@media (max-width:767px){.navbar-pf .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf-alt .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu>li>a{padding-left:20px}.navbar-pf .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon{padding-right:20px}}.navbar-pf .applauncher-pf .dropdown-toggle,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .applauncher-pf .dropdown-toggle,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{background-color:inherit;color:#d1d1d1;text-align:left;text-decoration:none;border-width:0;display:block;padding-left:20px}.navbar-pf .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle.disabled{color:#8b8d8f!important}@media (min-width:768px){.navbar-pf .applauncher-pf .dropdown-toggle,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .applauncher-pf .dropdown-toggle,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{border-left:1px solid #2b2b2b;padding:7px 10px;line-height:1}}.navbar-pf .applauncher-pf .applauncher-pf-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon{padding-right:4px}@media (min-width:768px){.navbar-pf .applauncher-pf .applauncher-pf-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon{padding:0}}.navbar-pf .applauncher-pf .applauncher-pf-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title{display:inline;position:relative}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{overflow:hidden;width:100%}.navbar-pf .applauncher-pf .applauncher-pf-link:hover,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover{background-color:transparent;border-color:transparent;box-shadow:none}.navbar-pf .applauncher-pf .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-title{overflow:hidden}@media (min-width:768px){.navbar-pf .applauncher-pf,.navbar-pf .navbar-utility .applauncher-pf,.navbar-pf-alt .applauncher-pf,.navbar-pf-alt .navbar-utility .applauncher-pf{display:inline-block;overflow:visible}.navbar-pf .applauncher-pf .applauncher-pf-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.navbar-pf .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled{cursor:not-allowed}.navbar-pf .applauncher-pf.open>.dropdown-menu,.navbar-pf .navbar-utility .applauncher-pf.open>.dropdown-menu,.navbar-pf-alt .applauncher-pf.open>.dropdown-menu,.navbar-pf-alt .navbar-utility .applauncher-pf.open>.dropdown-menu{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.navbar-pf .applauncher-pf .applauncher-pf-item,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-item,.navbar-pf-alt .applauncher-pf .applauncher-pf-item,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-item{width:100%}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{display:-ms-flexbox;display:flex;white-space:initial;-ms-flex-align:center;align-items:center}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link{-ms-flex-wrap:wrap;flex-wrap:wrap}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon{padding:0}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-title{margin-top:auto}.navbar-pf .applauncher-pf .dropdown-menu,.navbar-pf .navbar-utility .applauncher-pf .dropdown-menu,.navbar-pf-alt .applauncher-pf .dropdown-menu,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-menu{padding:9px;min-width:220px}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{border-style:solid;border-width:1px;border-color:transparent}.navbar-pf .applauncher-pf .applauncher-pf-link:hover,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover{background-color:#f5f5f5;border-color:#bbb;color:#0088ce;text-decoration:none;box-shadow:0 0 2px 0 #d1d1d1}.navbar-pf .applauncher-pf .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon{font-size:1.2em;text-align:center;width:1.28571429em}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-item{-ms-flex:0 0 50%;flex:0 0 50%}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link{-ms-flex-direction:column;flex-direction:column;text-align:center;padding:15px 0;height:100%}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link{padding:9px}.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon{-ms-flex:1 0 0px;flex:1 0 0;text-align:left}.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title{-ms-flex:3;flex:3}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon{font-size:2em}}@media (min-width:768px){.navbar-iconic .applauncher-pf .dropdown-toggle,.navbar-iconic .applauncher-pf.dropdown>.dropdown-toggle,.navbar-iconic .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-iconic .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{padding:22px 10px;line-height:inherit}}.blank-slate-pf{background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:1px;margin-bottom:20px;padding:30px;text-align:center}@media (min-width:768px){.blank-slate-pf{padding:60px 60px}}@media (min-width:992px){.blank-slate-pf{padding:90px 120px}}.blank-slate-pf .blank-slate-pf-icon{color:#9c9c9c;font-size:57.6px;line-height:57.6px}.blank-slate-pf .blank-slate-pf-main-action{margin-top:20px}.blank-slate-pf .blank-slate-pf-secondary-action{margin-top:20px}.blank-slate-pf button{margin-right:5px}.blank-slate-pf button:last-of-type{margin-right:0}.combobox-container.combobox-selected .glyphicon-remove{display:inline-block}.combobox-container .caret{margin-left:0}.combobox-container .combobox::-ms-clear{display:none}.combobox-container .dropdown-menu{margin-top:-1px;width:100%}.combobox-container .glyphicon-remove{display:none;top:auto;width:12px}.combobox-container .glyphicon-remove:before{content:"\e60b";font-family:PatternFlyIcons-webfont}.combobox-container .input-group-addon{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;position:relative}.combobox-container .input-group-addon.active,.combobox-container .input-group-addon:active,.combobox-container .input-group-addon:focus,.combobox-container .input-group-addon:hover,.open .dropdown-toggle.combobox-container .input-group-addon{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.combobox-container .input-group-addon.active,.combobox-container .input-group-addon:active,.open .dropdown-toggle.combobox-container .input-group-addon{background-image:none}.combobox-container .input-group-addon.active.focus,.combobox-container .input-group-addon.active:focus,.combobox-container .input-group-addon.active:hover,.combobox-container .input-group-addon:active.focus,.combobox-container .input-group-addon:active:focus,.combobox-container .input-group-addon:active:hover,.open .dropdown-toggle.combobox-container .input-group-addon.focus,.open .dropdown-toggle.combobox-container .input-group-addon:focus,.open .dropdown-toggle.combobox-container .input-group-addon:hover{background-color:#e5e5e5;border-color:#a9a9a9}.combobox-container .input-group-addon.disabled,.combobox-container .input-group-addon.disabled.active,.combobox-container .input-group-addon.disabled:active,.combobox-container .input-group-addon.disabled:focus,.combobox-container .input-group-addon.disabled:hover,.combobox-container .input-group-addon[disabled],.combobox-container .input-group-addon[disabled].active,.combobox-container .input-group-addon[disabled]:active,.combobox-container .input-group-addon[disabled]:focus,.combobox-container .input-group-addon[disabled]:hover,fieldset[disabled] .combobox-container .input-group-addon,fieldset[disabled] .combobox-container .input-group-addon.active,fieldset[disabled] .combobox-container .input-group-addon:active,fieldset[disabled] .combobox-container .input-group-addon:focus,fieldset[disabled] .combobox-container .input-group-addon:hover{background-color:#f1f1f1;border-color:#bbb}.combobox-container .input-group-addon:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.bootstrap-datepicker.form-control[readonly]{background-color:#fff;border-color:#bbb!important;color:#363636;box-shadow:inset 0 1px 1px rgba(3,3,3,.075)}.bootstrap-datepicker.form-control[readonly]:focus{border-color:#0088ce;outline:0!important;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6)}.bootstrap-datepicker.form-control[readonly]:focus{border-color:#0088ce!important}.has-error .bootstrap-datepicker.form-control[readonly]:focus{border-color:#900;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33}.has-success .bootstrap-datepicker.form-control[readonly]:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168}.has-warning .bootstrap-datepicker.form-control[readonly]:focus{border-color:#bb6106;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60}.bootstrap-datepicker.form-control[readonly]:hover{border-color:#7dc3e8!important}.has-error .bootstrap-datepicker.form-control[readonly]:hover{border-color:#900!important}.has-success .bootstrap-datepicker.form-control[readonly]:hover{border-color:#2b542c!important}.has-warning .bootstrap-datepicker.form-control[readonly]:hover{border-color:#bb6106!important}.has-error .bootstrap-datepicker.form-control[readonly]{border-color:#c00!important}.has-success .bootstrap-datepicker.form-control[readonly]{border-color:#3c763d!important}.has-warning .bootstrap-datepicker.form-control[readonly]{border-color:#ec7a08!important}.datepicker{border-radius:1px}.datepicker .datepicker-switch,.datepicker tfoot .clear,.datepicker tfoot .today{font-size:14px;font-weight:500}.datepicker .next,.datepicker .prev{font-weight:500}.datepicker table tr td,.datepicker table tr th{border-radius:1px}.datepicker table tr td.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active:hover{background:#0088ce!important;color:#fff!important;text-shadow:none}.datepicker table tr td.day.focused,.datepicker table tr td.day:hover{background:#def3ff}.datepicker table tr td.selected,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected:hover{text-shadow:none}.datepicker table tr td span{border-radius:1px}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover{background:#0088ce;text-shadow:none}.datepicker table tr td span:hover{background:#def3ff}.datepicker tfoot tr th:hover,.datepicker thead tr:first-child th:hover{background:#def3ff}.input-daterange input:first-child{border-radius:1px 0 0 1px}.input-daterange input:last-child{border-radius:0 1px 1px 0}.input-daterange .input-group-addon{background-color:#f1f1f1;border-color:#bbb;line-height:1.66666667;padding:2px 6px}.bootstrap-select.btn-group.form-control{margin-bottom:0}.bootstrap-select.btn-group .btn{transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.bootstrap-select.btn-group .btn:hover{border-color:#7dc3e8}.bootstrap-select.btn-group .btn .caret{margin-top:-4px}.bootstrap-select.btn-group .btn:focus{border-color:#0088ce;outline:0!important;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6)}.has-error .bootstrap-select.btn-group .btn{border-color:#c00}.has-error .bootstrap-select.btn-group .btn:focus{border-color:#900;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33}.has-success .bootstrap-select.btn-group .btn{border-color:#3c763d}.has-success .bootstrap-select.btn-group .btn:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168}.has-warning .bootstrap-select.btn-group .btn{border-color:#ec7a08}.has-warning .bootstrap-select.btn-group .btn:focus{border-color:#bb6106;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60}.bootstrap-select.btn-group .dropdown-menu>.active>a,.bootstrap-select.btn-group .dropdown-menu>.active>a:active{background-color:#def3ff!important;border-color:#bee1f4!important;color:#363636!important}.bootstrap-select.btn-group .dropdown-menu>.active>a small,.bootstrap-select.btn-group .dropdown-menu>.active>a:active small{color:#9c9c9c!important}.bootstrap-select.btn-group .dropdown-menu>.disabled>a{color:#9c9c9c!important}.bootstrap-select.btn-group .dropdown-menu>.selected>a{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.bootstrap-select.btn-group .dropdown-menu>.selected>a small{color:rgba(255,255,255,.5)!important}.bootstrap-select.btn-group .dropdown-menu .divider{background:#ededed!important;margin:4px 1px!important}.bootstrap-select.btn-group .dropdown-menu dt{color:#8b8d8f;font-weight:400;padding:1px 10px}.bootstrap-select.btn-group .dropdown-menu li>a.opt{padding:1px 10px}.bootstrap-select.btn-group .dropdown-menu li a:active small{color:rgba(255,255,255,.5)!important}.bootstrap-select.btn-group .dropdown-menu li a:focus small,.bootstrap-select.btn-group .dropdown-menu li a:hover small{color:#9c9c9c}.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:focus small,.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:hover small{color:#9c9c9c}.slider-tick-label-container{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;margin-left:0!important}.slider-tick-label{width:auto!important}.slider .tooltip{top:-10px}.slider-track{background-color:#ededed;box-shadow:inset 0 2px 3px rgba(0,0,0,.1),0 0 2px #ededed;border:1px solid #bbb}.slider-selection{background-image:linear-gradient(to bottom,#0088ce 0,#39a5dc 100%);background-repeat:repeat-x}.slider-handle{width:16px;height:16px;border:1px solid #bbb}.slider-tick{background-color:transparent!important;background-image:radial-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3) 2px,transparent 2px)!important;box-shadow:none}.slider-pf{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.slider-pf *{margin-right:10px}.slider-pf :last-child{margin:0}.slider-pf .slider{width:auto;-ms-flex:1 1 100%;flex:1 1 100%}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default{background:#fafafa}.bootstrap-switch .bootstrap-switch-label{background:#f1f1f1;box-shadow:0 0 2px rgba(3,3,3,.4);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;position:relative;z-index:9}.bootstrap-touchspin .input-group-btn-vertical>.btn{padding-bottom:6px;padding-top:6px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{border-bottom-right-radius:1px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-top-right-radius:1px}.bootstrap-touchspin .input-group-btn-vertical i{font-size:8px;left:6px;top:2px}.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up{font-size:12px;line-height:12px;top:0}.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up{left:7px}.treeview .list-group{border-top:0}.treeview .list-group-item{background:0 0;border-bottom:1px solid transparent!important;border-top:1px solid transparent!important;cursor:default!important;margin-bottom:0;overflow:hidden;padding:0 10px;text-overflow:ellipsis;white-space:nowrap}.treeview .list-group-item:hover{background:0 0!important}.treeview .list-group-item.node-selected{background:0 0!important;border-color:transparent!important;color:inherit!important}.treeview .list-group-item.node-check-changed span.node-icon,.treeview .list-group-item.node-check-changed span.text{color:#39a5dc}.treeview span.icon{display:inline-block;font-size:13px;min-width:10px;text-align:center}.treeview span.icon>[class*=fa-angle]{font-size:15px}.treeview span.icon.check-icon{margin-right:10px}.treeview span.icon.expand-icon{cursor:pointer!important}.treeview span.image{background-repeat:no-repeat;background-size:contain;display:inline-block;height:1.19em;line-height:1em;margin-right:5px;vertical-align:middle;width:12px}.treeview span.indent{margin-right:5px}.treeview .node-disabled{color:#d1d1d1;cursor:not-allowed}.treeview .node-disabled span.expand-icon{cursor:default!important}.treeview .node-hidden{display:none}.treeview-pf-hover .list-group-item{cursor:pointer!important}.treeview-pf-hover .list-group-item:hover{background-color:#def3ff!important;border-color:#bee1f4!important}.treeview-pf-select .list-group-item{cursor:pointer!important}.treeview-pf-select .list-group-item.node-selected{background:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.card-pf{background:#fff;border-top:2px solid transparent;box-shadow:0 1px 1px rgba(3,3,3,.175);margin:0 -10px 20px;padding:0 20px}.card-pf.card-pf-accented{border-top-color:#39a5dc}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a,.card-pf.card-pf-aggregate-status .card-pf-title a{color:#363636}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add,.card-pf.card-pf-aggregate-status .card-pf-title a.add{color:#0088ce}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add:hover,.card-pf.card-pf-aggregate-status .card-pf-title a.add:hover{color:#00659c}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a:hover,.card-pf.card-pf-aggregate-status .card-pf-title a:hover{color:#00659c}.card-pf.card-pf-aggregate-status{padding:0 10px;text-align:center}.card-pf.card-pf-aggregate-status-mini{padding-bottom:10px;position:relative}@media (min-width:768px){.card-pf.card-pf-bleed-left{margin-left:-20px}.card-pf.card-pf-bleed-right{border-right:1px solid #d1d1d1;margin-right:-20px}}.card-pf-aggregate-status-notifications{font-size:24px;font-weight:300}.card-pf-aggregate-status-mini .card-pf-aggregate-status-notifications{line-height:1}.card-pf-aggregate-status-notifications .card-pf-aggregate-status-notification+.card-pf-aggregate-status-notification{border-left:1px solid #d1d1d1;margin-left:3px;padding-left:10px}.card-pf-aggregate-status-notifications .fa,.card-pf-aggregate-status-notifications .pficon{font-size:18px;margin-right:7px}.card-pf-body{margin:20px 0 0;padding:0 0 20px}.card-pf-aggregate-status .card-pf-body{margin-top:10px;padding-bottom:10px}.card-pf-aggregate-status-mini .card-pf-body{margin-bottom:0;margin-top:0;padding-bottom:0;position:absolute;right:20px;top:15px}.card-pf-utilization .card-pf-title+.card-pf-body{margin-top:-8px}.card-pf-body>:last-child{margin-bottom:0}.card-pf-footer{background-color:#fafafa;border-top:1px solid #d1d1d1;margin:0 -20px!important;padding:20px 20px 10px}.card-pf-footer a .fa,.card-pf-footer a .pficon{margin-right:5px}.card-pf-footer .card-pf-time-frame-filter{margin-top:-2px}.card-pf-link-with-icon{padding-left:21px;position:relative}.card-pf-link-with-icon .fa,.card-pf-link-with-icon .pficon{font-size:16px;left:0;position:absolute;top:0}.card-pf-footer .card-pf-time-frame-filter,.card-pf-heading .card-pf-time-frame-filter{float:right;margin-left:20px}.card-pf-heading{border-bottom:1px solid #d1d1d1;margin:0 -20px 20px;padding:0 20px 0}.card-pf-heading .card-pf-time-frame-filter{margin-top:-5px}.card-pf-heading-details{float:right;font-size:10px}.card-pf-subtitle{font-size:16px;margin-top:20px;margin-bottom:10px}[class^=col] .card-pf-subtitle{margin-top:0}@media (max-width:767px){.card-pf-body [class^=col]+[class^=col]>.card-pf-subtitle{margin-top:40px}}.card-pf-title{font-size:16px;font-weight:400;margin:20px 0;padding:0}.card-pf-aggregate-status .card-pf-title{font-size:14px;margin:10px 0 0}.card-pf-aggregate-status .card-pf-title .fa,.card-pf-aggregate-status .card-pf-title .pficon{color:#292e34;font-size:16px;margin-right:7px}.card-pf-title .card-pf-aggregate-status-count{font-size:16px}.card-pf-aggregate-status-mini .card-pf-title .card-pf-aggregate-status-count{display:block;font-size:24px;font-weight:300;margin-bottom:3px}.card-pf-aggregate-status-mini .card-pf-title{font-size:12px;margin-top:5px}.card-pf-aggregate-status-mini .card-pf-title a{display:inline-block}.card-pf-aggregate-status-mini .card-pf-title .fa,.card-pf-aggregate-status-mini .card-pf-title .pficon{font-size:26px;margin-right:0;min-width:26px;position:absolute;left:20px;text-align:center;top:15px}.card-pf-utilization-details{border-bottom:1px solid #d1d1d1;display:table;margin:12px 0 15px;padding:0 0 15px;width:100%}.card-pf-utilization-details .card-pf-utilization-card-details-count,.card-pf-utilization-details .card-pf-utilization-card-details-description{float:left;line-height:1}.card-pf-utilization-details .card-pf-utilization-card-details-count{font-size:26px;font-weight:300;margin-right:10px}.card-pf-utilization-details .card-pf-utilization-card-details-line-1,.card-pf-utilization-details .card-pf-utilization-card-details-line-2{display:block}.card-pf-utilization-details .card-pf-utilization-card-details-line-1{font-size:10px;margin-bottom:2px}.cards-pf{background:#f5f5f5}.cards-pf .row-cards-pf{padding:0 20px}.cards-pf .row-cards-pf:first-child{padding-top:20px}.container-cards-pf{margin-top:20px}.row-cards-pf{margin-left:-10px;margin-right:-10px}.card-pf-view{border:2px solid transparent}.card-pf-view .card-pf-heading-kebab .dropdown-kebab-pf{margin-top:-3px}.card-pf-view .card-pf-heading-kebab+.progress-pf-legend p{margin-bottom:0}.card-pf-view .card-pf-heading-kebab+.progress-pf-legend .progress{margin-bottom:7px;margin-top:16px}.card-pf-view .card-pf-info{margin-top:15px}.card-pf-view .card-pf-info strong{font-size:13px;margin-right:10px}.card-pf-view .card-pf-item{display:inline-block;font-size:16px;padding:0 13px 0 15px}.card-pf-view .card-pf-item:first-child{padding-left:0}.card-pf-view .card-pf-item:last-child{padding-right:0}.card-pf-view .card-pf-item+.card-pf-item{border-left:1px solid #d1d1d1}.card-pf-view .card-pf-item .fa-check{color:#3f9c35}.card-pf-view .card-pf-item .fa+.card-pf-item-text,.card-pf-view .card-pf-item .pficon+.card-pf-item-text{margin-left:10px}.card-pf-view .card-pf-items{margin-top:15px}.card-pf-view .card-pf-title{font-size:20px;font-weight:300;margin-bottom:0;margin-top:15px}.card-pf-view .card-pf-title .fa,.card-pf-view .card-pf-title .pficon{font-size:18px;margin-right:2px}.col-lg-2 .card-pf-view .card-pf-title{font-size:16px}.card-pf-view .card-pf-top-element .card-pf-icon-circle{border:2px solid #39a5dc;border-radius:50%;display:block;font-size:46px;height:106px;line-height:102px;margin:0 auto;text-align:center;width:106px}.col-lg-2 .card-pf-view .card-pf-top-element .card-pf-icon-circle{font-size:23px;height:54px;line-height:50px;width:54px}.card-pf-view .card-pf-view-checkbox{position:absolute;top:11px;left:15px}.card-pf-view .card-pf-view-checkbox input[type=checkbox]{display:none}.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]{display:block}@media (min-width:768px){.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]{visibility:hidden}.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]:checked{visibility:visible}}.card-pf-view.card-pf-view-multi-select:hover .card-pf-view-checkbox input[type=checkbox]{visibility:visible}.card-pf-view.card-pf-view-select{position:relative}.card-pf-view.card-pf-view-select:hover{box-shadow:0 1px 6px rgba(3,3,3,.35)}.card-pf-view.card-pf-view-select.active{border:2px solid #39a5dc}.card-pf-view.card-pf-view-single-select{cursor:pointer}.card-pf-view.card-pf-view-xs .card-pf-title{font-size:16px;font-weight:400;margin-bottom:10px}.card-pf-view.card-pf-view-xs .card-pf-title .fa,.card-pf-view.card-pf-view-xs .card-pf-title .pficon{font-size:14px;margin-right:5px}.c3 path{stroke:#d1d1d1}.c3 svg{font-family:"Open Sans",Helvetica,Arial,sans-serif}.c3-axis-x .tick line{stroke:#d1d1d1}.c3-axis-y .tick line{display:none}.c3-chart-arc path{stroke:#fff}.c3-grid line{stroke:#d1d1d1}.c3-line{stroke-width:2px}.c3-tooltip{background:#393f44;box-shadow:none;opacity:.9}.c3-tooltip td{background:0 0;border:0;color:#fff;font-size:12px;padding:5px 10px}.c3-tooltip th{background:0 0;font-size:12px;padding:5px 10px 0;border-bottom:solid 2px #030303}.c3-tooltip tr{border:0}.c3-tooltip tr+tr>td{padding-top:0}.c3-tooltip-sparkline,.donut-tooltip-pf{background:#393f44;color:#fff;opacity:.9;padding:2px 6px}.c3-xgrid,.c3-ygrid{stroke-dasharray:0 0}.chart-pf-sparkline{margin-left:-5px;margin-right:-5px}.donut-title-big-pf{font-size:30px;font-weight:300}.donut-title-small-pf{font-size:12px;font-weight:400}.line-chart-pf .c3-zoom-rect{opacity:1!important;fill:#fafafa;stroke:#d1d1d1;stroke-width:1px}.pct-donut-chart-pf .pct-donut-chart-pf-label{display:block}.pct-donut-chart-pf .pct-donut-chart-pf-left,.pct-donut-chart-pf .pct-donut-chart-pf-right,.pct-donut-chart-pf.pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-right{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.pct-donut-chart-pf.pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-right{display:-ms-inline-flexbox;display:inline-flex}.pct-donut-chart-pf .pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-left{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.close{text-shadow:none;z-index:1;position:relative;opacity:.6}.close:focus,.close:hover{opacity:.9}.layout-pf-fixed .navbar-pf-vertical.navbar-pf-contextselector{z-index:1040}.navbar-pf-vertical .nav.contextselector-pf{border-left:1px solid #4d5258}@media (min-width:768px){.navbar-pf-vertical .nav.contextselector-pf{margin-left:10px}}.navbar-pf-vertical .nav.contextselector-pf .nav-item-iconic{padding:23px 20px 18px 10px;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.contextselector-pf{float:left}.contextselector-pf-title{width:170px;white-space:nowrap;display:inline-block;overflow:hidden;text-overflow:ellipsis;line-height:normal}@media (min-width:480px){.contextselector-pf-title{width:210px}}.contextselector-pf .dropdown.open,.contextselector-pf .dropdown:hover{background-color:#303030}.contextselector-pf .dropdown-menu{width:100%;margin-top:0}.contextselector-pf .form-group{margin:0 5px 5px 5px}@media (min-width:768px){.contextselector-pf .contextselector-pf-list{max-height:200px;overflow-y:auto}}.contextselector-pf .contextselector-pf-list li{padding:1px 10px;border-width:1px 0;border-style:solid;border-color:transparent}.contextselector-pf .contextselector-pf-list li:hover{background:#def3ff;border-color:#bee1f4}.contextselector-pf .contextselector-pf-list li:hover a{text-decoration:none}.contextselector-pf .contextselector-pf-list a{color:#393f44;display:block}.ColVis_Button:active:focus{outline:0}.ColVis_catcher{position:absolute;z-index:999}.ColVis_collection{background-color:#fff;border:1px solid #bbb;border-radius:1px;box-shadow:0 6px 12px rgba(3,3,3,.175);background-clip:padding-box;list-style:none;margin:-1px 0 0 0;padding:5px 10px;width:150px;z-index:1000}.ColVis_collection label{font-weight:400;margin-bottom:5px;margin-top:5px;padding-left:20px}.ColVis_collectionBackground{background-color:#fff;height:100%;left:0;position:fixed;top:0;width:100%;z-index:998}.dataTables_header{background-color:#f5f5f5;border:1px solid #d1d1d1;border-bottom:none;padding:5px;position:relative;text-align:center}.dataTables_header .btn{box-shadow:none}.dataTables_header .ColVis{position:absolute;right:5px;text-align:left;top:5px}.dataTables_header .ColVis+.dataTables_info{padding-right:30px}.dataTables_header .dataTables_filter{position:absolute}.dataTables_header .dataTables_filter input{border:1px solid #bbb;height:24px}@media (max-width:767px){.dataTables_header .dataTables_filter input{width:100px}}.dataTables_header .dataTables_info{padding:2px 0}@media (max-width:480px){.dataTables_header .dataTables_info{text-align:right}}.dataTables_header .dataTables_info b{font-weight:700}.dataTables_footer{background-color:#fff;border:1px solid #d1d1d1;border-top:none;overflow:hidden}.dataTables_paginate{background:#fafafa;float:right;margin:0}.dataTables_paginate .pagination{float:left;margin:0}.dataTables_paginate .pagination>li>span{border-color:#fff #d1d1d1 #f5f5f5;border-width:0 1px;font-size:16px;font-weight:400;padding:0;text-align:center;width:31px}.dataTables_paginate .pagination>li.last>span{border-right:none}.dataTables_paginate .pagination>li.disabled>span{background:#f5f5f5;border-left-color:#ededed;border-right-color:#ededed}.dataTables_paginate .pagination-input{float:left;font-size:12px;line-height:1em;padding:4px 15px 0;text-align:right}.dataTables_paginate .pagination-input .paginate_input{border:1px solid #d1d1d1;box-shadow:inset 0 1px 1px rgba(3,3,3,.075);font-size:12px;font-weight:600;height:19px;margin-right:8px;padding-right:3px;text-align:right;width:30px}.dataTables_paginate .pagination-input .paginate_of{position:relative}.dataTables_paginate .pagination-input .paginate_of b{margin-left:3px}.dataTables_empty{background:#f5f5f5}.DTCR_clonedTable{background-color:rgba(255,255,255,.7);z-index:202}.DTCR_pointer{background-color:#0088ce;width:1px;z-index:201}.experimental-pf>*{border:2px solid #92d400}.experimental-pf-bar{background-color:#92d400;border:none;text-align:center;position:relative}.experimental-pf-more-info{background-color:#92d400;border:0;color:#030303;display:block;width:100%;padding-top:10px;padding-bottom:10px;position:static}@media (min-width:992px){.experimental-pf-more-info{padding:0 10px;position:absolute;right:0;top:0;width:auto}}@media (min-width:992px){.experimental-pf-text{padding-left:150px;padding-right:150px}}.experimental-pf-text a{color:#030303;text-decoration:underline}.experimental-pf-text a:hover{color:#030303;cursor:pointer}.btn-experimental-pf{background-color:#92d400;background-image:linear-gradient(to bottom,#ace12e 0,#92d400 100%);background-repeat:repeat-x;border-color:#92d400;color:#4d5258}.btn-experimental-pf.active,.btn-experimental-pf:active,.btn-experimental-pf:focus,.btn-experimental-pf:hover,.open .dropdown-toggle.btn-experimental-pf{background-color:#92d400;background-image:none;border-color:#92d400;color:#4d5258}.btn-experimental-pf.active,.btn-experimental-pf:active,.open .dropdown-toggle.btn-experimental-pf{background-image:none}.btn-experimental-pf.active.focus,.btn-experimental-pf.active:focus,.btn-experimental-pf.active:hover,.btn-experimental-pf:active.focus,.btn-experimental-pf:active:focus,.btn-experimental-pf:active:hover,.open .dropdown-toggle.btn-experimental-pf.focus,.open .dropdown-toggle.btn-experimental-pf:focus,.open .dropdown-toggle.btn-experimental-pf:hover{background-color:#80bb00;border-color:#79b000}.btn-experimental-pf.disabled,.btn-experimental-pf.disabled.active,.btn-experimental-pf.disabled:active,.btn-experimental-pf.disabled:focus,.btn-experimental-pf.disabled:hover,.btn-experimental-pf[disabled],.btn-experimental-pf[disabled].active,.btn-experimental-pf[disabled]:active,.btn-experimental-pf[disabled]:focus,.btn-experimental-pf[disabled]:hover,fieldset[disabled] .btn-experimental-pf,fieldset[disabled] .btn-experimental-pf.active,fieldset[disabled] .btn-experimental-pf:active,fieldset[disabled] .btn-experimental-pf:focus,fieldset[disabled] .btn-experimental-pf:hover{background-color:#92d400;border-color:#92d400}.filter-pf-category-select{display:-ms-flexbox;display:flex}.filter-pf-category-select-value{border-left-width:0}.filter-pf-category-item{margin-bottom:5px}.filter-pf-category-label{font-weight:700;margin-right:5px;padding:5px 0 6px 5px}.filter-pf-select .caret{position:absolute;top:50%;right:10px;-ms-transform:translateY(-50%);transform:translateY(-50%)}.filter-pf-select-dropdown{background-color:#fff;background-image:none;color:#8b8d8f;font-size:12px;font-style:italic;font-weight:400;padding-right:25px;text-align:left}.filter-pf-select-dropdown .caret{font-style:normal}.filter-pf-active-label{margin-right:5px}.footer-pf,.footer-pf-alt{background-color:#030303;color:#9c9c9c;font-size:11px;line-height:17px;padding-left:25px;padding-top:10px}.layout-pf-alt-fixed-with-footer .footer-pf,.layout-pf-alt-fixed-with-footer .footer-pf-alt,.layout-pf-fixed-with-footer .footer-pf,.layout-pf-fixed-with-footer .footer-pf-alt{bottom:0;left:0;position:fixed;right:0;z-index:1030}@font-face{font-family:PatternFlyIcons-webfont;src:url(../fonts/PatternFlyIcons-webfont.eot);src:url(../fonts/PatternFlyIcons-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/PatternFlyIcons-webfont.ttf) format("truetype"),url(../fonts/PatternFlyIcons-webfont.woff) format("woff"),url(../fonts/PatternFlyIcons-webfont.svg#PatternFlyIcons-webfont) format("svg");font-weight:400;font-style:normal}[class*=" pficon-"],[class^=pficon-]{display:inline-block;font-family:PatternFlyIcons-webfont;font-style:normal;font-variant:normal;font-weight:400;line-height:1;speak:none;text-transform:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.pficon-add-circle-o:before{content:"\e61b"}.pficon-applications:before{content:"\e936"}.pficon-arrow:before{content:"\e929"}.pficon-asleep:before{content:"\e925"}.pficon-automation:before{content:"\e937"}.pficon-build:before{content:"\e902"}.pficon-builder-image:before{content:"\e800"}.pficon-bundle:before{content:"\e918"}.pficon-blueprint:before{content:"\e915"}.pficon-catalog:before{content:"\e939"}.pficon-chat:before{content:"\e928"}.pficon-close:before{content:"\e60b"}.pficon-cloud-security:before{content:"\e903"}.pficon-cloud-tenant:before{content:"\e904"}.pficon-cluster:before{content:"\e620"}.pficon-connected:before{content:"\e938"}.pficon-container-node:before{content:"\e621"}.pficon-cpu:before{content:"\e927"}.pficon-degraded:before{content:"\e91b"}.pficon-delete:before{content:"\e611"}.pficon-disconnected:before{content:"\e93c"}.pficon-domain:before{content:"\e919"}.pficon-edit:before{content:"\e60a"}.pficon-enhancement:before{content:"\e93a"}.pficon-enterprise:before{content:"\e906"}.pficon-equalizer:before{content:"\e610"}.pficon-error-circle-o:before{color:#c00;content:"\e926"}.pficon-export:before{content:"\e616"}.pficon-flag:before,.pficon-messages:before{content:"\e603"}.pficon-flavor:before{content:"\e907"}.pficon-filter:before{content:"\e943"}.pficon-folder-close:before{content:"\e607"}.pficon-folder-open:before{content:"\e606"}.pficon-help:before{content:"\e605"}.pficon-history:before{content:"\e93b"}.pficon-home:before{content:"\e618"}.pficon-image:before{content:"\e61f"}.pficon-import:before{content:"\e615"}.pficon-in-progress:before{content:"\e92c"}.pficon-info:before{content:"\e92b"}.pficon-infrastructure:before{content:"\e93d"}.pficon-integration:before{content:"\e948"}.pficon-key:before{content:"\e924"}.pficon-locked:before{content:"\e923"}.pficon-maintenance:before{content:"\e92d"}.pficon-memory:before{content:"\e908"}.pficon-middleware:before{content:"\e917"}.pficon-migration:before{content:"\e92e"}.pficon-monitoring:before{content:"\e944"}.pficon-network:before{content:"\e909"}.pficon-network-range:before{content:"\e94a"}.pficon-on:before{content:"\e931"}.pficon-on-running:before{content:"\e930"}.pficon-optimize:before{content:"\e93e"}.pficon-orders:before{content:"\e93f"}.pficon-off:before{content:"\e92f"}.pficon-ok:before{color:#3f9c35;content:"\e602"}.pficon-paused:before{content:"\e932"}.pficon-pending:before{content:"\e933"}.pficon-plugged:before{content:"\e940"}.pficon-port:before{content:"\e945"}.pficon-print:before{content:"\e612"}.pficon-process-automation:before{content:"\e949"}.pficon-private:before{content:"\e914"}.pficon-project:before{content:"\e905"}.pficon-rebalance:before{content:"\e91c"}.pficon-rebooting:before{content:"\e934"}.pficon-refresh:before,.pficon-restart:before{content:"\e617"}.pficon-regions:before{content:"\e90a"}.pficon-registry:before{content:"\e623"}.pficon-remove:before{content:"\e611"}.pficon-replicator:before{content:"\e624"}.pficon-repository:before{content:"\e90b"}.pficon-resource-pool:before{content:"\e90c"}.pficon-resources-almost-empty:before{content:"\e91d"}.pficon-resources-almost-full:before{content:"\e912"}.pficon-resources-full:before{content:"\e92a"}.pficon-route:before{content:"\e625"}.pficon-running:before{content:"\e614"}.pficon-satellite:before{content:"\e94b"}.pficon-save:before{content:"\e601"}.pficon-screen:before{content:"\e600"}.pficon-search:before{content:"\e921"}.pficon-security:before{content:"\e946"}.pficon-server:before{content:"\e90d"}.pficon-server-group:before{content:"\e91a"}.pficon-service:before{content:"\e61e"}.pficon-services:before{content:"\e947"}.pficon-service-catalog:before{content:"\e941"}.pficon-settings:before{content:"\e610"}.pficon-spinner:before{content:"\e614"}.pficon-spinner2:before{content:"\e613"}.pficon-storage-domain:before{content:"\e90e"}.pficon-template:before{content:"\e94c"}.pficon-tenant:before{content:"\e916"}.pficon-thumb-tack-o:before{content:"\e920"}.pficon-topology:before{content:"\e608"}.pficon-trend-down:before{content:"\e900"}.pficon-trend-up:before{content:"\e901"}.pficon-unknown:before{content:"\e935"}.pficon-user:before{content:"\e91e"}.pficon-users:before{content:"\e91f"}.pficon-unlocked:before{content:"\e922"}.pficon-unplugged:before{content:"\e942"}.pficon-vcenter:before{content:"\e94d"}.pficon-virtual-machine:before{content:"\e90f"}.pficon-volume:before{content:"\e910"}.pficon-warning-triangle-o:before{color:#ec7a08;content:"\e913"}.pficon-zone:before{content:"\e911"}.navbar-nav>li>.dropdown-menu.infotip{border-top-width:1px!important;margin-top:10px}@media (max-width:767px){.navbar-pf .navbar-nav .open .dropdown-menu.infotip{background-color:#fff!important;margin-top:0}}.infotip{min-width:235px;padding:0}.infotip .list-group{border-top:0;margin:0;padding:8px 0}.infotip .list-group .list-group-item{border:none;margin:0 15px 0 34px;padding:5px 0}.infotip .list-group .list-group-item>.i{color:#4d5258;font-size:13px;left:-20px;position:absolute;top:8px}.infotip .list-group .list-group-item>a{color:#4d5258;line-height:13px}.infotip .list-group .list-group-item>.close{float:right}.infotip .footer{background-color:#f5f5f5;padding:6px 15px}.infotip .footer a:hover{color:#0088ce}.infotip .arrow,.infotip .arrow:after{border-color:transparent;border-style:solid;display:block;height:0;position:absolute;width:0}.infotip .arrow{border-width:11px}.infotip .arrow:after{border-width:10px;content:""}.infotip.bottom .arrow,.infotip.bottom-left .arrow,.infotip.bottom-right .arrow{border-bottom-color:#bbb;border-top-width:0;left:50%;margin-left:-11px;top:-11px}.infotip.bottom .arrow:after,.infotip.bottom-left .arrow:after,.infotip.bottom-right .arrow:after{border-top-width:0;border-bottom-color:#fff;content:" ";margin-left:-10px;top:1px}.infotip.bottom-left .arrow{left:20%}.infotip.bottom-right .arrow{left:80%}.infotip.top .arrow{border-bottom-width:0;border-top-color:#bbb;bottom:-11px;left:50%;margin-left:-11px}.infotip.top .arrow:after{border-bottom-width:0;border-top-color:#f5f5f5;bottom:1px;content:" ";margin-left:-10px}.infotip.right .arrow{border-left-width:0;border-right-color:#bbb;left:-11px;margin-top:-11px;top:50%}.infotip.right .arrow:after{bottom:-10px;border-left-width:0;border-right-color:#fff;content:" ";left:1px}.infotip.left .arrow{border-left-color:#bbb;border-right-width:0;margin-top:-11px;right:-11px;top:50%}.infotip.left .arrow:after{border-left-color:#fff;border-right-width:0;bottom:-10px;content:" ";right:1px}.layout-pf,.layout-pf body{min-height:100%}.layout-pf.layout-pf-fixed.transitions .container-pf-nav-pf-vertical{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf.layout-pf-fixed body{padding-top:60px}.layout-pf.layout-pf-fixed .navbar-pf{left:0;position:fixed;top:0;right:0;z-index:1030}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav{margin-left:75px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav.hidden-icons-pf{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hidden-nav{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hide-nav-pf{margin-left:0!important}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf,.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges,.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}@media (min-width:1200px){.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf{margin-left:400px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges{margin-left:500px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hidden-nav{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav{margin-left:275px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.nav-pf-vertical-with-badges{margin-left:325px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.hidden-icons-pf{margin-left:0}}.layout-pf.layout-pf-fixed-with-footer body{padding-bottom:37px}.layout-pf-alt,.layout-pf-alt body{min-height:100%}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll,.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll body{height:100%;min-height:0}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt{height:100%;overflow:auto}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt.container-cards-pf{margin-top:0;padding-top:20px}.layout-pf-alt.layout-pf-alt-fixed.transitions .container-pf-alt-nav-pf-vertical-alt{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt.layout-pf-alt-fixed body{padding-top:60px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt{margin-left:250px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.collapsed-nav{margin-left:75px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.hidden-nav{margin-left:0}.layout-pf-alt.layout-pf-alt-fixed-with-footer body{padding-bottom:37px}a.disabled{color:#8b8d8f;cursor:not-allowed;text-decoration:none}.list-pf{border-bottom:1px solid #ededed}.list-pf-item{border-color:#ededed;border-left-color:#fff;border-right-color:#fff;border-style:solid;border-width:1px;border-bottom:none}.list-pf-item:hover{background-color:#edf8ff}.list-pf-item.active{background-color:#ededed;border-color:#bbb;border-bottom-width:1px;border-bottom-style:solid}.list-pf-expansion{background-color:#fff}.list-pf-container{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;padding:20px}.list-pf-expansion .list-pf-container{border-top:1px solid #bbb}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-container{-ms-flex-align:center;align-items:center}}.list-pf-chevron{min-width:1.2em}.list-pf-chevron,.list-pf-select{margin-right:10px}.list-pf-chevron+.list-pf-content,.list-pf-select+.list-pf-content{border-left:1px solid #d1d1d1;padding-left:20px}.list-pf-chevron .fa,.list-pf-select .fa{font-size:22px}.list-pf-content-flex{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;min-width:0}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-content-flex{-ms-flex-align:center;align-items:center}}.list-pf-left{-ms-flex-positive:0;flex-grow:0;margin-left:0;margin-right:20px}.list-pf-icon{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.list-pf-icon-bordered{border-radius:50%;border:2px solid #39a5dc}.list-pf-icon-small{font-size:1.4em;height:30px;line-height:30px;width:30px}.list-pf-content-wrapper{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:0}@media (min-width:992px){.list-pf-content-wrapper{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.list-pf-content-wrapper>*+*{margin-left:40px}}.list-pf-stacked .list-pf-content-wrapper{-ms-flex-align:start;align-items:flex-start}.list-pf-main-content{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-preferred-size:70%;flex-basis:70%;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:0}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-main-content{-ms-flex-wrap:nowrap;flex-wrap:nowrap;width:auto}.list-pf:not(.list-pf-stacked) .list-pf-main-content>*+*{margin-left:40px}}.list-pf-title{-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:100%;flex-basis:100%;font-weight:700;min-width:0;word-wrap:break-word}.list-pf-description{-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:100%;flex-basis:100%;min-width:0;word-wrap:break-word}.list-pf-additional-content{display:-ms-flexbox;display:flex;-ms-flex-preferred-size:31%;flex-basis:31%;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between}.list-pf-actions{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-positive:0;flex-grow:0;margin-left:40px}.list-pf-actions>*+*{margin-left:10px}.list-view-pf .list-group-item{-ms-flex-align:start;align-items:flex-start;background-clip:padding-box;border-color:transparent #fff;border-style:solid;border-width:1px;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-bottom:0;padding-top:0}.list-view-pf .list-group-item:after,.list-view-pf .list-group-item:before{content:" ";display:table}.list-view-pf .list-group-item:after{clear:both}.list-view-pf .list-group-item.list-view-pf-expand-active{background-color:#edf8ff;box-shadow:0 2px 6px rgba(3,3,3,.2);z-index:1}.list-view-pf .list-group-item.active{color:#555;background-color:#def3ff;background-clip:border-box;border-color:#bbb transparent transparent;z-index:auto}.list-view-pf .list-group-item:hover{background-color:#edf8ff;border-left-color:transparent;border-right-color:transparent}.list-view-pf .list-group-item.list-view-pf-expand-active{border:solid 1px #bbb}.list-view-pf .list-group-item.list-view-pf-expand-active:first-child{border-top-color:#bbb}.list-view-pf .list-group-item:first-child{border-top:1px solid transparent}@media (min-width:992px){.list-view-pf .list-group-item{-ms-flex-align:center;align-items:center}}.list-view-pf .list-group-item-heading{font-size:16px}.list-view-pf .list-group-item-heading small{display:block;font-size:9.6px;font-weight:400}@media (min-width:992px){.list-view-pf .list-group-item-heading{-ms-flex:1 0 calc(25% - 20px);flex:1 0 calc(25% - 20px);float:left;font-size:12px;margin:0 20px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:calc(25% - 20px)}}.list-view-pf .list-group-item-text{color:currentColor!important;margin-bottom:10px}@media (min-width:992px){.list-view-pf .list-group-item-text{-ms-flex:1 0 auto;flex:1 0 auto;float:left;margin:0 40px 0 0;width:calc(75% - 40px)}}.list-view-pf .close{float:none;position:absolute;right:15px}.list-view-pf-actions{float:right;margin-bottom:20px;margin-left:20px;margin-top:20px;-ms-flex-order:2;order:2}.list-view-pf-actions .dropdown-kebab-pf,.list-view-pf-actions button,.list-view-pf-actions>a{margin-left:10px}.list-view-pf-top-align .list-view-pf-actions{-ms-flex-item-align:start;align-self:flex-start}.list-view-pf-additional-info{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@media (min-width:992px){.list-view-pf-additional-info{-ms-flex:1 0 auto;flex:1 0 auto;float:left;width:50%}}.list-view-pf-additional-info-item{-ms-flex-align:center;align-items:center;display:inline-block;display:-ms-flexbox;display:flex;margin-right:20px;max-width:100%;text-align:center}.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked{text-align:center;-ms-flex-direction:column;flex-direction:column}.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked strong{font-size:13px;line-height:1em}.list-view-pf-additional-info-item .fa,.list-view-pf-additional-info-item .pficon{font-size:16px;margin-right:10px}.list-view-pf-additional-info-item strong{font-size:16px;font-weight:600;margin-right:5px}.list-view-pf-additional-info-item:last-child{margin-right:0}.list-view-pf-additional-info-item-donut-chart{width:60px}.list-view-pf-body{-ms-flex-align:center;align-items:center;display:table-cell;-ms-flex:1;flex:1;min-width:0;vertical-align:top;width:100%}@media (min-width:992px){.list-view-pf-body{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}}.list-view-pf-checkbox{border-right:1px solid #d1d1d1;float:left;margin-bottom:20px;margin-right:15px;margin-top:20px;padding:3px 10px 3px 0}.list-view-pf-top-align .list-view-pf-checkbox{-ms-flex-item-align:start;align-self:flex-start}.list-view-pf-description{-ms-flex:1 0 50%;flex:1 0 50%}.list-view-pf-stacked .list-view-pf-description{display:block;-ms-flex:none;flex:none}@media (min-width:992px){.list-view-pf-description{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;float:left;width:50%}}.list-view-pf-left{display:table-cell;padding-right:20px;text-align:center;vertical-align:top}.list-view-pf-left .list-view-pf-calendar{font-size:11px;line-height:1em}.list-view-pf-left .list-view-pf-calendar strong{display:block;font-size:44px;font-weight:300;line-height:1em}.list-view-pf-left .fa,.list-view-pf-left .pficon{border-radius:50%;font-size:2em}.list-view-pf-left .fa.list-view-pf-icon-md,.list-view-pf-left .pficon.list-view-pf-icon-md{background-color:#f5f5f5;height:50px;line-height:50px;width:50px}.list-view-pf-left .fa.list-view-pf-icon-danger,.list-view-pf-left .pficon.list-view-pf-icon-danger{background-color:#ffe6e6;color:#c00}.list-view-pf-left .fa.list-view-pf-icon-info,.list-view-pf-left .pficon.list-view-pf-icon-info{color:#8b8d8f}.list-view-pf-left .fa.list-view-pf-icon-lg,.list-view-pf-left .pficon.list-view-pf-icon-lg{background-color:#f5f5f5;height:60px;line-height:60px;width:60px}.list-view-pf-left .fa.list-view-pf-icon-sm,.list-view-pf-left .pficon.list-view-pf-icon-sm{border:2px solid #39a5dc;font-size:1.4em;height:30px;line-height:30px;width:30px}.list-view-pf-left .fa.list-view-pf-icon-sm:before,.list-view-pf-left .pficon.list-view-pf-icon-sm:before{display:block;line-height:26px}.list-view-pf-left .fa.list-view-pf-icon-success,.list-view-pf-left .pficon.list-view-pf-icon-success{background-color:#e9f4e9;color:#3f9c35}.list-view-pf-left .fa.list-view-pf-icon-warning,.list-view-pf-left .pficon.list-view-pf-icon-warning{background-color:#fdf2e5;color:#ec7a08}.list-view-pf-main-info{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;min-width:0;padding-bottom:20px;padding-top:20px}@media (min-width:992px){.list-view-pf-main-info{-ms-flex-align:center;align-items:center}.list-view-pf-top-align .list-view-pf-main-info{-ms-flex-align:start;align-items:flex-start}}.list-view-pf-stacked .list-group-item-heading{float:none;font-size:16px;line-height:1.2em;margin-bottom:5px;margin-right:40px;width:auto}.list-view-pf-stacked .list-group-item-text{float:none;width:auto}.list-view-pf-view{background:#ededed;border:none;margin-top:30px}.list-group-item-header{box-sizing:content-box;cursor:pointer;margin:0 -15px;padding:0 15px;width:100%}.list-view-pf-expand{cursor:pointer;float:left;margin-bottom:20px;margin-right:2px;margin-top:20px;padding:3px 0}.list-view-pf-expand.active,.list-view-pf-expand:hover{color:#0088ce}.list-view-pf-additional-info-item .list-view-pf-expand{margin:0;padding:0}.list-view-pf-expand .fa-angle-right{cursor:pointer;font-size:17px;margin-right:5px;margin-top:2px;width:10px}.list-group-item-container{background:#fff;border-top:solid 1px #bbb;box-sizing:content-box;margin:-1px -15px 0;-ms-flex-order:3;order:3;padding:15px;position:relative;width:100%}.list-view-pf-dnd .dndDragging.drag-original{display:none}.list-view-pf-dnd .dndDragging.drag-original .list-view-pf-dnd-original-items{display:block}.list-view-pf-dnd .dndDragging .list-view-pf-dnd-drag-items{display:inline-block}.list-view-pf-dnd .dndDragging .list-view-pf-dnd-original-items{display:none}.list-view-pf-dnd .dndPlaceholder{background-color:#ededed;padding:20px 0}.list-view-pf-dnd .list-group-item-header{margin-left:-10px}.list-view-pf-dnd .list-group-item-header:before{background-image:linear-gradient(to bottom,#0088ce 60%,#fff 0);background-position:left;background-repeat:repeat-y;background-size:2px 5px;border:4px solid #0088ce;border-color:#00659c;content:"";height:55px;left:4px;position:absolute;top:5px;width:10px}.list-view-pf-dnd-drag-items{display:none}.login-pf{height:100%}.login-pf #brand{position:relative;top:-70px}.login-pf #brand img{display:block;height:18px;margin:0 auto;max-width:100%}@media (min-width:768px){.login-pf #brand img{margin:0;text-align:left}}.login-pf #badge{display:block;margin:20px auto 70px;position:relative;text-align:center}@media (min-width:768px){.login-pf #badge{float:right;margin-right:64px;margin-top:50px}}.login-pf body{background:#030303 url(../img/bg-login.jpg) repeat-x 50% 0;background-size:auto}@media (min-width:768px){.login-pf body{background-size:100% auto}}.login-pf .container{background-color:rgba(255,255,255,.055);clear:right;color:#fff;padding-bottom:40px;padding-top:20px;width:auto}@media (min-width:768px){.login-pf .container{bottom:13%;padding-left:80px;position:absolute;width:100%}}.login-pf .container .details p:first-child{border-top:1px solid rgba(255,255,255,.3);padding-top:25px;margin-top:25px}@media (min-width:768px){.login-pf .container .details{border-left:1px solid rgba(255,255,255,.3);padding-left:40px}.login-pf .container .details p:first-child{border-top:0;padding-top:0;margin-top:0}}.login-pf .container .details p{margin-bottom:2px}.login-pf .container .form-horizontal .control-label{font-size:13px;font-weight:400;text-align:left}.login-pf .container .form-horizontal .form-group:last-child,.login-pf .container .form-horizontal .form-group:last-child .help-block:last-child{margin-bottom:0}.login-pf .container .help-block{color:#fff}@media (min-width:768px){.login-pf .container .login{padding-right:40px}}.login-pf .container .submit{text-align:right}.login-pf-page .login-pf-brand{margin-top:20px;max-width:360px;width:70%}@media (min-width:768px){.login-pf-page .login-pf-brand{margin-top:62px}}.login-pf-page .login-pf-page-header{margin-bottom:20px;text-align:center}@media (min-width:768px){.login-pf-page .login-pf-page-header{margin-bottom:40px}}.login-pf-page .login-pf-page-header p{color:#fff;font-size:14px;margin-left:auto;margin-right:auto;margin-top:20px}.login-pf-page .card-pf{padding:10px 20px 30px 20px;margin-bottom:0}@media (min-width:768px){.login-pf-page .card-pf{padding:20px 40px 30px 40px}}.login-pf-page .card-pf p{color:#72767b}.login-pf-page .form-control{height:36px}.login-pf-page .checkbox-label{color:#72767b;font-weight:300;margin-bottom:15px}@media (min-width:768px){.login-pf-page .checkbox-label{margin:0}}.login-pf-page .btn-primary{margin-top:40px}.login-pf-page .login-pf-header{margin-bottom:20px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}@media (min-width:768px){.login-pf-page .login-pf-header{margin-bottom:30px}}.login-pf-page .login-pf-header h1,.login-pf-page .login-pf-header p{text-align:center}.login-pf-page .login-pf-header h1{font-size:16px}@media (min-width:768px){.login-pf-page .login-pf-header h1{font-size:24px}}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:auto;-ms-flex-item-align:end;align-self:flex-end}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle{color:#4d5258;background:0 0;padding:0 15px 0 0;font-weight:300}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle:not(:focus){box-shadow:none;border:1px solid transparent}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle .caret{right:0}.login-pf-page .login-pf-signup{margin:40px 0 0;font-size:15px;text-align:center}.login-pf-page .login-pf-signup a{margin-left:10px}.login-pf-page .login-pf-settings{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.login-pf-page .login-pf-page-footer{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.login-pf-page .login-pf-page-footer-links{display:-ms-flexbox;display:flex;margin:60px 0 0 0}.login-pf-page .login-pf-page-footer-links li:not(:last-of-type){position:relative;margin:0 20px 0 0}.login-pf-page .login-pf-page-footer-links li:not(:last-of-type):after{content:".";color:#fff;position:absolute;top:0;right:-10px}.login-pf-page .login-pf-page-footer-link{color:#fff;font-size:14px}.login-pf-page .login-pf-page-footer-sso-services{-ms-flex:1 0 100%;flex:1 0 100%;margin-top:40px;text-align:center;color:#fff}.login-pf-page .login-pf-page-footer-sso-services-logos{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0;margin:0;list-style:none;-ms-flex-pack:center;justify-content:center}.login-pf-page .login-pf-page-footer-sso-services-logos li{margin:0 5px 5px}.login-pf-page.login-pf-page-accounts{margin-left:20px;margin-right:20px}.login-pf-page .login-pf-accounts{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:840px;margin-left:auto;margin-right:auto}.login-pf-page .login-pf-accounts .login-pf-header,.login-pf-page .login-pf-accounts .login-pf-signup{-ms-flex-preferred-size:100%;flex-basis:100%}.login-pf-page .login-pf-social-section{-ms-flex-preferred-size:100%;flex-basis:100%;padding:0}@media (min-width:768px){.login-pf-page .login-pf-social-section{-ms-flex:0 1 50%;flex:0 1 50%;max-width:50%}}@media (min-width:768px){.login-pf-page .login-pf-social-section:first-of-type{padding-right:40px}.login-pf-page .login-pf-social-section:last-of-type{padding-left:39px;border-left:1px solid #d1d1d1}}.login-pf-page .login-pf-social{margin:40px 0 0 0}@media (min-width:768px){.login-pf-page .login-pf-social{margin:0}.login-pf-page .login-pf-social-double-col{-ms-flex-wrap:wrap;flex-wrap:wrap;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}.login-pf-page .login-pf-social-double-col .login-pf-social-link{-ms-flex-preferred-size:48%;flex-basis:48%}}.login-pf-page .login-pf-social:not(.login-pf-social-all) .login-pf-social-link-more{display:none}.login-pf-page .login-pf-social-link{margin-bottom:15px}.login-pf-page .login-pf-social-link a{display:block;padding:7px 0;font-size:14px;background:#f5f5f5;text-align:center;color:#72767b}.login-pf-page .login-pf-social-link a img{margin:0 10px 0 0;width:20px;height:20px}.login-pf-page .login-pf-social-link a:hover{text-decoration:none;background:#ededed}.login-pf-page .login-pf-social-toggle{float:right;padding:0}.login-pf-page .login-pf-social-toggle .caret{margin-left:5px}.login-pf-page .login-pf-social-toggle-active .caret{-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.navbar-pf{background:#030303;border:0;border-radius:0;border-top:3px solid #39a5dc;margin-bottom:0;min-height:0}.navbar-pf .navbar-brand{color:#f5f5f5;height:auto;padding:12px 0;margin:0 0 0 20px}.navbar-pf .navbar-brand img{display:block}.navbar-pf .navbar-collapse{border-top:0;box-shadow:none;padding:0}.navbar-pf .navbar-header{border-bottom:1px solid #292929;float:none}.navbar-pf .navbar-nav{margin:0}.navbar-pf .navbar-nav>.active>a,.navbar-pf .navbar-nav>.active>a:focus,.navbar-pf .navbar-nav>.active>a:hover{background-color:#232323;color:#f5f5f5}.navbar-pf .navbar-nav>li>a{color:#d1d1d1;line-height:1;padding:10px 20px;text-shadow:none}.navbar-pf .navbar-nav>li>a:focus,.navbar-pf .navbar-nav>li>a:hover{color:#f5f5f5}.navbar-pf .navbar-nav>.open>a,.navbar-pf .navbar-nav>.open>a:focus,.navbar-pf .navbar-nav>.open>a:hover{background-color:#232323;color:#f5f5f5}.navbar-pf .navbar-nav .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;left:26px;margin:0;padding:2px 4px;position:absolute;min-width:10px;min-height:10px;top:6px}@media (min-width:768px){.navbar-pf .navbar-nav .badge{left:auto;right:6px;top:3px}}.navbar-pf .navbar-nav .badge.badge-pf-bordered{border:1px solid #030303}@media (max-width:767px){.navbar-pf .navbar-nav .active .dropdown-menu,.navbar-pf .navbar-nav .active .navbar-persistent,.navbar-pf .navbar-nav .open .dropdown-menu{background-color:#171717!important;margin-left:0;padding-bottom:0;padding-top:0}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a,.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a:focus,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a:focus,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a:hover{background-color:#1f1f1f!important;color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent>li>a,.navbar-pf .navbar-nav .open .dropdown-menu>li>a{background-color:transparent;border:0;color:#d1d1d1;outline:0;padding-left:30px}.navbar-pf .navbar-nav .active .dropdown-menu>li>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent>li>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu>li>a:hover{color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu .divider,.navbar-pf .navbar-nav .active .navbar-persistent .divider,.navbar-pf .navbar-nav .open .dropdown-menu .divider{background-color:#292929;margin:0 1px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-header,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-header,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-header{padding-bottom:0;padding-left:30px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open .dropdown-toggle,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-toggle,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open .dropdown-toggle{color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.pull-left,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.pull-left,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.pull-left{float:none!important}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu>a:after,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu>a:after,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu>a:after{display:none}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-header,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-header,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-header{padding-left:45px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu{border:0;bottom:auto;box-shadow:none;display:block;float:none;margin:0;min-width:0;padding:0;position:relative;left:auto;right:auto;top:auto}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu>li>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu>li>a{padding:5px 15px 5px 45px;line-height:20px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu .dropdown-menu>li>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu>li>a{padding-left:60px}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-menu{display:block}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu>a:after{display:inline-block!important;position:relative;right:auto;top:1px}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu{display:none}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-submenu>a:after{display:none!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu{background-color:#fff!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a:active{background-color:#def3ff!important;border-color:#bee1f4!important;color:#363636!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a:active small{color:#9c9c9c!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.disabled>a{color:#9c9c9c!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a:active{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a:active small{color:rgba(255,255,255,.5)!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li>a.opt{border-bottom:1px solid transparent;border-top:1px solid transparent;color:#363636;padding-left:10px;padding-right:10px}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:active small{color:rgba(255,255,255,.5)!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:focus small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:hover small{color:#9c9c9c}.navbar-pf .navbar-nav .context-bootstrap-select>.open>.dropdown-menu{padding-bottom:5px;padding-top:5px}}.navbar-pf .navbar-persistent{display:none}.navbar-pf .active>.navbar-persistent{display:block}.navbar-pf .navbar-primary{float:none}.navbar-pf .navbar-primary .context{border-bottom:1px solid #292929}.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group,.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group[class*=span]{margin:8px 20px 9px;width:auto}.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a{position:relative}.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a:after{content:"\f107";display:inline-block;font-family:FontAwesome;font-weight:400}@media (max-width:767px){.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a:after{height:10px;margin-left:4px;vertical-align:baseline}}.navbar-pf .navbar-toggle{border:0;margin:0;padding:10px 20px}.navbar-pf .navbar-toggle:focus,.navbar-pf .navbar-toggle:hover{background-color:transparent;outline:0}.navbar-pf .navbar-toggle:focus .icon-bar,.navbar-pf .navbar-toggle:hover .icon-bar{box-shadow:0 0 3px #fff}.navbar-pf .navbar-toggle .icon-bar{background-color:#fff}.navbar-pf .navbar-utility{border-bottom:1px solid #292929}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle{padding-left:36px;position:relative}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle .pficon-user{left:20px;position:absolute;top:10px}@media (max-width:767px){.navbar-pf .navbar-utility>li+li{border-top:1px solid #292929}}@media (min-width:768px){.navbar-pf .navbar-brand{padding:8px 0 7px}.navbar-pf .navbar-nav>li>a{padding-bottom:14px;padding-top:14px}.navbar-pf .navbar-persistent{font-size:14px}.navbar-pf .navbar-primary{font-size:14px;background-image:linear-gradient(to bottom,#1d1d1d 0,#030303 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary.persistent-secondary .context .dropdown-menu{top:auto}.navbar-pf .navbar-primary.persistent-secondary .dropup .dropdown-menu{bottom:-5px;top:auto}.navbar-pf .navbar-primary.persistent-secondary>li{position:static}.navbar-pf .navbar-primary.persistent-secondary>li.active{margin-bottom:32px}.navbar-pf .navbar-primary.persistent-secondary>li.active>.navbar-persistent{display:block;left:0;position:absolute}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent{background:#f5f5f5;border-bottom:1px solid #d1d1d1;padding:0;width:100%}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent a{text-decoration:none!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:before,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:hover:before{background:#0088ce;bottom:-1px;content:"";display:block;height:2px;left:20px;position:absolute;right:20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:hover>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active>a:hover{color:#0088ce!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active .active>a{color:#f5f5f5}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu:hover>.dropdown-menu{display:none}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-menu{display:block;left:20px;margin-top:1px;top:100%}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-toggle{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-toggle:after{border-top-color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu>.dropdown-toggle{padding-right:35px!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu>.dropdown-toggle:after{position:absolute;right:20px;top:10px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open:before,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover:before{background:#bbb;bottom:-1px;content:"";display:block;height:2px;left:20px;position:absolute;right:20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover>a{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open>a:after,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover>a:after{border-top-color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a{background-color:transparent;display:block;line-height:1;padding:9px 20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a.dropdown-toggle{padding-right:35px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a.dropdown-toggle:after{font-size:15px;position:absolute;right:20px;top:9px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a:hover{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li a{color:#4d5258}.navbar-pf .navbar-primary>li>a{border-bottom:1px solid transparent;border-top:1px solid transparent;position:relative;margin:-1px 0 0}.navbar-pf .navbar-primary>li>a:hover{background-color:#1d1d1d;border-top-color:#5c5c5c;color:#d1d1d1;background-image:linear-gradient(to bottom,#363636 0,#1d1d1d 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary>.active>a,.navbar-pf .navbar-primary>.active>a:focus,.navbar-pf .navbar-primary>.active>a:hover,.navbar-pf .navbar-primary>.open>a,.navbar-pf .navbar-primary>.open>a:focus,.navbar-pf .navbar-primary>.open>a:hover{background-color:#303030;border-bottom-color:#303030;border-top-color:#696969;box-shadow:none;color:#f5f5f5;background-image:linear-gradient(to bottom,#434343 0,#303030 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.context-bootstrap-select .filter-option{max-width:160px;text-overflow:ellipsis}.navbar-pf .navbar-primary li.context.dropdown{border-bottom:0}.navbar-pf .navbar-primary li.context.context-bootstrap-select,.navbar-pf .navbar-primary li.context>a{background-color:#1f1f1f;border-bottom-color:#3e3e3e;border-right:1px solid #3e3e3e;border-top-color:#3b3b3b;font-weight:600;background-image:linear-gradient(to bottom,#323232 0,#1f1f1f 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.context-bootstrap-select:hover,.navbar-pf .navbar-primary li.context>a:hover{background-color:#323232;border-bottom-color:#4a4a4a;border-right-color:#4a4a4a;border-top-color:#4a4a4a;background-image:linear-gradient(to bottom,#3f3f3f 0,#323232 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.open>a{background-color:#454545;border-bottom-color:#575757;border-right-color:#575757;border-top-color:#5a5a5a;background-image:linear-gradient(to bottom,#4c4c4c 0,#454545 100%);background-repeat:repeat-x}.navbar-pf .navbar-utility{border-bottom:0;font-size:11px;position:absolute;right:0;top:0}.navbar-pf .navbar-utility>.active>a,.navbar-pf .navbar-utility>.active>a:focus,.navbar-pf .navbar-utility>.active>a:hover,.navbar-pf .navbar-utility>.open>a,.navbar-pf .navbar-utility>.open>a:focus,.navbar-pf .navbar-utility>.open>a:hover{background:#363636;color:#d1d1d1}.navbar-pf .navbar-utility>li>a{border-left:1px solid #2b2b2b;color:#d1d1d1!important;padding:7px 10px}.navbar-pf .navbar-utility>li>a:hover{background:#232323;border-left-color:#373737}.navbar-pf .navbar-utility>li.open>a{border-left-color:#444;color:#f5f5f5!important}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle{padding-left:26px}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle .pficon-user{left:10px;top:7px}.navbar-pf .navbar-utility .open .dropdown-menu{left:auto;right:0}.navbar-pf .navbar-utility .open .dropdown-menu .dropdown-menu{left:auto;right:100%}.navbar-pf .navbar-utility .open .dropdown-menu{border-top-width:0}.navbar-pf .open .dropdown-submenu>.dropdown-menu,.navbar-pf .open.bootstrap-select .dropdown-menu{border-top-width:1px!important}}@media (max-width:360px){.navbar-pf .navbar-brand{margin-left:10px;width:75%}.navbar-pf .navbar-brand img{height:auto;max-width:100%}.navbar-pf .navbar-toggle{padding-left:0}}.navbar-pf-alt{background-color:#030303;background-image:"bg-navbar-pf-alt.svg";background-repeat:no-repeat;background-size:auto 100%;border:none;border-radius:0;border-top:2px solid #39a5dc;margin-bottom:0}.navbar-pf-alt .infotip.bottom-right .arrow{left:90%}.layout-pf-alt-fixed .navbar-pf-alt{left:0;position:fixed;right:0;top:0;z-index:1030}.navbar-pf-alt .nav.navbar-nav>li>.dropdown-menu.infotip{margin-top:0}.navbar-pf-alt .nav .nav-item-iconic{cursor:pointer;line-height:1;max-height:58px;padding:21px 12px;position:relative}.navbar-pf-alt .nav .nav-item-iconic:focus,.navbar-pf-alt .nav .nav-item-iconic:hover{background-color:transparent}.navbar-pf-alt .nav .nav-item-iconic:focus .caret,.navbar-pf-alt .nav .nav-item-iconic:focus .fa,.navbar-pf-alt .nav .nav-item-iconic:focus .glyphicon,.navbar-pf-alt .nav .nav-item-iconic:focus .pficon,.navbar-pf-alt .nav .nav-item-iconic:hover .caret,.navbar-pf-alt .nav .nav-item-iconic:hover .fa,.navbar-pf-alt .nav .nav-item-iconic:hover .glyphicon,.navbar-pf-alt .nav .nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-alt .nav .nav-item-iconic .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;margin:0 0 -11px -12px;min-width:0;padding:2px 4px}.navbar-pf-alt .nav .nav-item-iconic .caret,.navbar-pf-alt .nav .nav-item-iconic .fa,.navbar-pf-alt .nav .nav-item-iconic .pficon{color:#d1d1d1;font-size:16px}.navbar-pf-alt .nav .nav-item-iconic .caret{font-size:12px;width:auto}.navbar-pf-alt .nav .open>.nav-item-iconic,.navbar-pf-alt .nav .open>.nav-item-iconic:focus,.navbar-pf-alt .nav .open>.nav-item-iconic:hover{background:0 0}.navbar-pf-alt .nav .open>.nav-item-iconic .caret,.navbar-pf-alt .nav .open>.nav-item-iconic .fa,.navbar-pf-alt .nav .open>.nav-item-iconic .pficon,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .caret,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .fa,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .pficon,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .caret,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .fa,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-alt .navbar-brand{color:#fff;height:auto;margin:0 0 0 25px;min-height:35px;padding:11px 0 12px}.navbar-pf-alt .navbar-brand .navbar-brand-name{display:inline;margin-left:0 15px 0 0;margin-right:0 15px 0 0}@media (max-width:480px){.navbar-pf-alt .navbar-brand .navbar-brand-name{display:none}}.navbar-pf-alt .navbar-brand .navbar-brand-icon{display:inline;margin-left:0 15px 0 0;margin-right:0 15px 0 0}.navbar-pf-alt .navbar-iconic{margin-right:0}.navbar-pf-alt .navbar-toggle{border:0;display:block;float:left;margin:13px 15px}.navbar-pf-alt .navbar-toggle:focus .icon-bar,.navbar-pf-alt .navbar-toggle:hover .icon-bar{background:#fff}.navbar-pf-alt .navbar-toggle+.navbar-brand{margin-left:0}.navbar-pf-alt .navbar-toggle .icon-bar{background:#d1d1d1}.navbar-pf-vertical{background-color:#1d1d1d;border:none;border-radius:0;border-top:2px solid #39a5dc;margin-bottom:0}.navbar-pf-vertical .infotip.bottom-right .arrow{left:90%}.layout-pf-fixed .navbar-pf-vertical{left:0;position:fixed;right:0;top:0;z-index:1030}.navbar-pf-vertical .nav.navbar-nav>li>.dropdown-menu.infotip{margin-top:0}.navbar-pf-vertical .nav .nav-item-iconic{color:#d1d1d1;cursor:pointer;line-height:1;max-height:58px;padding:21px 12px;position:relative}.navbar-pf-vertical .nav .nav-item-iconic:focus,.navbar-pf-vertical .nav .nav-item-iconic:hover{color:#fff;background-color:transparent}.navbar-pf-vertical .nav .nav-item-iconic:focus .caret,.navbar-pf-vertical .nav .nav-item-iconic:focus .fa,.navbar-pf-vertical .nav .nav-item-iconic:focus .glyphicon,.navbar-pf-vertical .nav .nav-item-iconic:focus .pficon,.navbar-pf-vertical .nav .nav-item-iconic:hover .caret,.navbar-pf-vertical .nav .nav-item-iconic:hover .fa,.navbar-pf-vertical .nav .nav-item-iconic:hover .glyphicon,.navbar-pf-vertical .nav .nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-vertical .nav .nav-item-iconic .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;left:20px;margin:0;padding:2px 4px;position:absolute;min-width:10px;min-height:10px;top:18px}.navbar-pf-vertical .nav .nav-item-iconic .badge.badge-pf-bordered{border:1px solid #1d1d1d}.navbar-pf-vertical .nav .nav-item-iconic .caret,.navbar-pf-vertical .nav .nav-item-iconic .fa,.navbar-pf-vertical .nav .nav-item-iconic .pficon{color:#d1d1d1;font-size:16px}.navbar-pf-vertical .nav .nav-item-iconic .caret{font-size:12px;width:auto}.navbar-pf-vertical .nav .open>.nav-item-iconic,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover{background:0 0}.navbar-pf-vertical .nav .open>.nav-item-iconic .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic .pficon,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .pficon,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-vertical .navbar-brand{color:#fff;height:auto;margin:0 0 0 25px;min-height:35px;padding:11px 0 12px}.navbar-pf-vertical .navbar-brand .navbar-brand-name{display:inline-block;margin:0 15px 0 0}@media (max-width:480px){.navbar-pf-vertical .navbar-brand .navbar-brand-name{display:none}}.navbar-pf-vertical .navbar-brand .navbar-brand-icon{display:inline-block;margin:0 15px 0 0;max-height:35px}.navbar-pf-vertical .navbar-brand .navbar-brand-txt{line-height:34px}.navbar-pf-vertical .navbar-iconic{margin-right:0}.navbar-pf-vertical .navbar-toggle{border:0;display:block;float:left;margin:13px 15px}.navbar-pf-vertical .navbar-toggle:focus .icon-bar,.navbar-pf-vertical .navbar-toggle:hover .icon-bar{background:#fff}.navbar-pf-vertical .navbar-toggle+.navbar-brand{margin-left:0}.navbar-pf-vertical .navbar-toggle .icon-bar{background:#d1d1d1}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value{transition:opacity 0s .1s,opacity .1s linear}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .badge{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .list-group-item-value{transition:opacity .5s ease-out;transition-delay:150ms}.nav-pf-vertical-alt{background:#fff}.ie9.layout-pf-alt-fixed .nav-pf-vertical-alt{box-sizing:content-box}.layout-pf-alt-fixed .nav-pf-vertical-alt{border-right:1px solid #d1d1d1;bottom:0;overflow-x:hidden;overflow-y:auto;left:0;position:fixed;top:60px;width:250px;z-index:1030}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed{width:75px!important}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .badge{padding:2px 3px;right:21px;top:36px}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value{opacity:0}.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden{display:none}.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden.show-mobile-nav{box-shadow:0 0 3px rgba(3,3,3,.15);display:block!important}.layout-pf-alt-fixed-with-footer .nav-pf-vertical-alt{bottom:37px}.nav-pf-vertical-alt .list-group{border-top:0;margin-bottom:0}.nav-pf-vertical-alt .list-group-item{padding:0}.nav-pf-vertical-alt .list-group-item a{color:#363636;display:block;font-size:14px;height:63px;padding:17px 20px 17px 25px;position:relative;white-space:nowrap}.nav-pf-vertical-alt .list-group-item a:focus{color:#363636;text-decoration:none}.nav-pf-vertical-alt .list-group-item a:hover{color:#39a5dc;text-decoration:none}.nav-pf-vertical-alt .list-group-item.active{background-color:#fff;border-color:#f5f5f5}.nav-pf-vertical-alt .list-group-item.active:before{background:#39a5dc;content:" ";display:block;height:100%;left:0;position:absolute;top:0;width:5px}.nav-pf-vertical-alt .list-group-item.active a{color:#39a5dc}.nav-pf-vertical-alt .list-group-item .badge{background:#363636;border:1px solid #fff;border-radius:3px;color:#fff;font-weight:700;font-size:9px;padding:5px;position:absolute;right:15px;text-align:center;top:21px}.nav-pf-vertical-alt .list-group-item .badge.notifications{background:#0088ce}.nav-pf-vertical-alt .list-group-item .fa,.nav-pf-vertical-alt .list-group-item .glyphicon,.nav-pf-vertical-alt .list-group-item .pficon{float:left;font-size:18px;line-height:30px;margin-right:10px;text-align:center;width:18px}.nav-pf-vertical-alt .list-group-item .list-group-item-value{display:inline-block;line-height:30px;opacity:1;overflow:hidden;text-overflow:ellipsis;width:140px}.nav-pf-vertical-alt .list-group-item-separator{border-top-width:5px}.sidebar-pf .nav-pf-vertical-alt{margin-left:-20px;margin-right:-20px}.drawer-pf{background-color:#fafafa;border:1px solid #d1d1d1;box-shadow:0 6px 12px rgba(3,3,3,.175);overflow-y:auto;position:absolute;right:0;width:320px;z-index:2}.drawer-pf .panel{border-bottom:none;border-left:none;border-right:none}.drawer-pf .panel-group .panel-heading+.panel-collapse .panel-body{border-top:none;border-bottom:1px solid #d1d1d1;padding:0}.drawer-pf .panel-counter{display:block;font-style:italic;line-height:1.2;padding-left:18px;padding-top:5px}.drawer-pf .panel-heading{border-bottom:1px solid #d1d1d1}.drawer-pf .panel-group{bottom:0;margin-bottom:0;position:absolute;top:25px;width:100%}.drawer-pf .panel-title a{cursor:pointer;display:block}.drawer-pf.drawer-pf-expanded{width:inherit}@media (max-width:767px){.drawer-pf.drawer-pf-expanded{left:0;width:100%}}@media (min-width:767px){.drawer-pf.drawer-pf-expanded{left:270px}}.drawer-pf.drawer-pf-expanded .drawer-pf-toggle-expand:before{content:"\f101"}.drawer-pf .blank-slate-pf{border:0;margin-bottom:0;padding:30px}.drawer-pf .blank-slate-pf .blank-slate-pf-icon{font-size:3em;line-height:1em}.drawer-pf .blank-slate-pf h1{font-size:1em;margin-bottom:0;margin-top:15px}.drawer-pf-close,.drawer-pf-toggle-expand{color:#252525;cursor:pointer;line-height:inherit;padding:2px 10px;position:absolute}.drawer-pf-close:focus,.drawer-pf-close:hover,.drawer-pf-toggle-expand:focus,.drawer-pf-toggle-expand:hover{color:#0088ce;text-decoration:none}.drawer-pf-toggle-expand{left:0}.drawer-pf-toggle-expand:before{content:"\f100";font-family:FontAwesome}.drawer-pf-toggle-expand:hover{color:#0088ce}.drawer-pf-close{right:0}.drawer-pf-action{display:-ms-flexbox;display:flex;border-bottom:1px solid #d1d1d1}.drawer-pf-action .btn-link{color:#0088ce;padding:10px 0}.drawer-pf-action .btn-link .fa,.drawer-pf-action .btn-link .pficon{margin-right:3px}.drawer-pf-action .btn-link .pficon-close{position:relative;top:1px}.drawer-pf-action .btn-link:hover{color:#00659c}.drawer-pf-action-link{border-left:solid 1px #d1d1d1;-ms-flex:1 1 0%;flex:1 1 0%;margin:10px 0;text-align:center}.drawer-pf-action-link:first-of-type{border-left-width:0}.drawer-pf-action-link .btn-link{padding:0}.drawer-pf-loading{color:#4d5258;font-size:14px;padding:20px 15px}.drawer-pf-notification{border-bottom:1px solid #d1d1d1;padding:15px}.drawer-pf-notification .date{border-right:1px solid #aaa;display:inline-block;line-height:1;margin-right:5px;padding-right:9px}.drawer-pf-notification>.dropdown-kebab-pf{margin-top:-3px}.drawer-pf-notification .pficon{font-size:14px;margin-top:3px}.drawer-pf-notification:last-of-type{border-bottom:none}.drawer-pf-notification:hover{background-color:#def3ff}.drawer-pf-notification.unread .drawer-pf-notification-message{font-weight:700;cursor:pointer}.drawer-pf-notification.expanded-notification .date{border-right:none;padding-right:0}.drawer-pf-notification-content{cursor:default}.drawer-pf-notification-info,.drawer-pf-notification-message{display:block;padding-left:27px;padding-right:19px}.expanded-notification .drawer-pf-notification-info,.expanded-notification .drawer-pf-notification-message{display:inline-block}.drawer-pf-title{background-color:#fafafa;border-bottom:1px solid #d1d1d1;position:absolute;width:100%}.drawer-pf-title h3{font-size:12px;margin:0;padding:6px 15px}.drawer-pf-notification.expanded-notification .drawer-pf-notification-content{display:-ms-flexbox;display:flex}@media (max-width:991px){.drawer-pf-notification.expanded-notification .drawer-pf-notification-content{-ms-flex-direction:column;flex-direction:column}}.drawer-pf-notification.expanded-notification .drawer-pf-notification-content .drawer-pf-notification-message{-ms-flex:1 1;flex:1 1}.navbar-pf-vertical .drawer-pf{height:calc(100vh - 58px - 20px);top:58px}@media (max-width:767px){.navbar-pf-vertical .drawer-pf{width:100%;height:calc(100vh - 58px)}}.navbar-pf-vertical .nav .drawer-pf-trigger .drawer-pf-trigger-icon{border-left:1px solid #2b2b2b;border-right:1px solid #2b2b2b;padding-left:15px;padding-right:15px}.navbar-pf-vertical .nav .drawer-pf-trigger.open .drawer-pf-trigger-icon{background-color:#232323}.navbar-pf .drawer-pf{height:calc(100vh - 26px - 20px);top:26px}@media (max-width:767px){.navbar-pf .drawer-pf{width:100%;height:calc(100vh - 26px - 32px);top:calc(26px + 8px)}}.navbar-pf .drawer-pf-trigger-icon{cursor:pointer}.search-pf.has-button{border-collapse:separate;display:table}.search-pf.has-button .form-group{display:table-cell;width:100%}.search-pf.has-button .form-group .btn{box-shadow:none;float:left;margin-left:-1px}.search-pf.has-button .form-group .btn.btn-lg{font-size:14.5px}.search-pf.has-button .form-group .btn.btn-sm{font-size:10.7px}.search-pf.has-button .form-group .form-control{float:left}.search-pf .has-clear .clear{background:rgba(255,255,255,0);border:0;height:25px;line-height:1;padding:0;position:absolute;right:1px;top:1px;width:28px}.search-pf .has-clear .clear:focus{outline:0}.search-pf .has-clear .form-control{padding-right:30px}.search-pf .has-clear .form-control::-ms-clear{display:none}.search-pf .has-clear .input-lg+.clear{height:31px;width:28px}.search-pf .has-clear .input-sm+.clear{height:20px;width:28px}.search-pf .has-clear .input-sm+.clear span{font-size:10px}.search-pf .has-clear .search-pf-input-group{position:relative}.sidebar-header{border-bottom:1px solid #ececec;padding-bottom:11px;margin:50px 0 20px}.sidebar-header .actions{margin-top:-2px}.sidebar-pf .sidebar-header+.list-group{border-top:0;margin-top:-10px}.sidebar-pf .sidebar-header+.list-group .list-group-item{background:0 0;border-color:#ececec;padding-left:0}.sidebar-pf .sidebar-header+.list-group .list-group-item-heading{font-size:12px}.sidebar-pf .nav-category h2{color:#9c9c9c;font-size:12px;font-weight:400;line-height:21px;margin:0;padding:8px 0}.sidebar-pf .nav-category+.nav-category{margin-top:10px}.sidebar-pf .nav-pills>li.active>a{background:#0088ce!important;border-color:#0088ce!important;color:#fff}@media (min-width:768px){.sidebar-pf .nav-pills>li.active>a:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:1px}}.sidebar-pf .nav-pills>li.active>a .fa{color:#fff}.sidebar-pf .nav-pills>li>a{border-bottom:1px solid transparent;border-radius:0;border-top:1px solid transparent;color:#363636;font-size:13px;line-height:21px;padding:1px 20px}.sidebar-pf .nav-pills>li>a:hover{background:#def3ff;border-color:#bee1f4}.sidebar-pf .nav-pills>li>a .fa{color:#6a7079;font-size:15px;margin-right:10px;text-align:center;vertical-align:middle;width:15px}.sidebar-pf .nav-stacked{margin-left:-20px;margin-right:-20px}.sidebar-pf .nav-stacked li+li{margin-top:0}.sidebar-pf .panel{background:0 0}.sidebar-pf .panel-body{padding:6px 20px}.sidebar-pf .panel-body .nav-pills>li>a{padding-left:37px}.sidebar-pf .panel-heading{padding:9px 20px}.sidebar-pf .panel-title{font-size:12px}.sidebar-pf .panel-title>a:before{display:inline-block;margin-left:1px;margin-right:4px;width:9px}.sidebar-pf .panel-title>a.collapsed:before{margin-left:3px;margin-right:2px}@media (min-width:767px){.sidebar-header-bleed-left{margin-left:-20px}.sidebar-header-bleed-left>h2{margin-left:20px}.sidebar-header-bleed-right{margin-right:-20px}.sidebar-header-bleed-right .actions{margin-right:20px}.sidebar-header-bleed-right>h2{margin-right:20px}.sidebar-header-bleed-right+.list-group{margin-right:-20px}.sidebar-pf .panel-group .panel-default,.sidebar-pf .treeview{border-left:0;border-right:0;margin-left:-20px;margin-right:-20px}.sidebar-pf .treeview{margin-top:5px}.sidebar-pf .treeview .list-group-item{padding-left:20px;padding-right:20px}.sidebar-pf .treeview .list-group-item.node-selected:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:1px}}@media (min-width:768px){.sidebar-pf{background:#fafafa}.sidebar-pf.sidebar-pf-left{border-right:1px solid #d1d1d1}.sidebar-pf.sidebar-pf-right{border-left:1px solid #d1d1d1}.sidebar-pf>.nav-category,.sidebar-pf>.nav-stacked{margin-top:5px}}.skiplink-pf{position:absolute;top:12px;left:-300%;z-index:1050}.skiplink-pf:focus{left:10px}@keyframes rotation{from{transform:rotate(0)}to{transform:rotate(359deg)}}.spinner{animation:rotation .6s infinite linear;border-bottom:4px solid rgba(3,3,3,.25);border-left:4px solid rgba(3,3,3,.25);border-right:4px solid rgba(3,3,3,.25);border-radius:100%;border-top:4px solid rgba(3,3,3,.75);height:24px;margin:0 auto;position:relative;width:24px}.spinner.spinner-inline{display:inline-block;margin-right:3px}.spinner.spinner-lg{border-width:5px;height:30px;width:30px}.spinner.spinner-sm{border-width:3px;height:18px;width:18px}.spinner.spinner-xs{border-width:2px;height:12px;width:12px}.spinner.spinner-inverse{border-bottom-color:rgba(255,255,255,.25);border-left-color:rgba(255,255,255,.25);border-right-color:rgba(255,255,255,.25);border-top-color:rgba(255,255,255,.75)}.ie9 .spinner{background:url(../img/spinner.gif) no-repeat;border:0}.ie9 .spinner.spinner-inverse{background-image:url(../img/spinner-inverse.gif)}.ie9 .spinner.spinner-inverse-lg{background-image:url(../img/spinner-inverse-lg.gif)}.ie9 .spinner.spinner-inverse-sm{background-image:url(../img/spinner-inverse-sm.gif)}.ie9 .spinner.spinner-inverse-xs{background-image:url(../img/spinner-inverse-xs.gif)}.ie9 .spinner.spinner-lg{background-image:url(../img/spinner-lg.gif)}.ie9 .spinner.spinner-sm{background-image:url(../img/spinner-sm.gif)}.ie9 .spinner.spinner-xs{background-image:url(../img/spinner-xs.gif)}.prettyprint .atn,.prettyprint .com,.prettyprint .fun,.prettyprint .var{color:#3f9c35}.prettyprint .atv,.prettyprint .str{color:#a30000}.prettyprint .clo,.prettyprint .dec,.prettyprint .kwd,.prettyprint .opn,.prettyprint .pln,.prettyprint .pun{color:#363636}.prettyprint .lit,.prettyprint .tag,.prettyprint .typ{color:#00659c}.prettyprint ol.linenums{margin-bottom:0}table.dataTable{height:100%;margin-bottom:0;max-width:none!important}table.dataTable tbody>tr>td.table-view-pf-actions{padding:0;vertical-align:middle}table.dataTable tbody>tr:hover>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable tbody>tr.selected{color:#fff;background-color:#0088ce}table.dataTable tbody>tr.selected>td{border-bottom-color:#00659c}table.dataTable tbody>tr.selected>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable tbody>tr.selected:hover>td{background-color:inherit;border-bottom-color:#00659c}table.dataTable tbody>tr.selected:hover>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_desc_disabled{cursor:pointer}table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc{color:#0088ce!important;position:relative}table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after{content:"\f107";font-family:FontAwesome;font-size:10px;font-weight:400;height:9px;left:7px;line-height:12px;position:relative;top:2px;vertical-align:baseline;width:12px}table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_desc:before{background:#0088ce;content:"";height:2px;position:absolute;left:0;top:0;width:100%}table.dataTable thead .sorting_asc:after{content:"\f106";top:-3px}table.dataTable th:active{outline:0}.table-view-pf-empty.blank-slate-pf{background-color:#f5f5f5;border:1px solid #d1d1d1;border-radius:0;margin-top:-1px}.table-view-pf-toolbar.toolbar-pf{background-color:#f5f5f5;border-bottom:none;border-left:1px solid #d1d1d1;border-right:1px solid #d1d1d1;border-top:1px solid #d1d1d1;box-shadow:none;margin-left:0;margin-right:0}.table-view-pf-toolbar.toolbar-pf .toolbar-pf-results{border-top:1px solid #d1d1d1;min-height:40px;line-height:40px}.table-view-pf-toolbar-external.toolbar-pf{border-bottom:none;border-top:none;box-shadow:none}.table-view-pf-toolbar-external.toolbar-pf .toolbar-pf-results{border-top:1px solid #d1d1d1;min-height:40px;line-height:40px}.table-view-pf-colvis-menu>li{padding:5px 10px}.table-view-pf-colvis-menu>li:hover{background-color:#def3ff}.table-view-pf-colvis-menu>li>input{margin-top:0;margin-right:10px;vertical-align:middle}.table-view-pf-colvis-menu>li>label{margin-bottom:0}.table-view-pf-actions{background-color:#f1f1f1;height:100%}.table-view-pf-actions .btn,.table-view-pf-actions .dropdown-toggle{border:none;box-shadow:none;height:100%;width:100%}.table-view-pf-actions .dropdown,.table-view-pf-actions .table-view-pf-btn{height:100%}.table-view-pf-actions .dropdown-menu.dropdown-menu-right{right:-5px}.table-view-pf-actions:last-child{width:24px}.table-view-pf-select{width:33px}.table-view-pf-select-results{text-align:right}.bootstrap-datetimepicker-widget a[data-action]{border:0;box-shadow:none;color:#363636;display:block;padding-bottom:4px;padding-top:4px}.bootstrap-datetimepicker-widget a[data-action]:hover{color:#0088ce}.bootstrap-datetimepicker-widget.dropdown-menu{left:0!important;padding:0;width:calc(100% - 25px)}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:none}.bootstrap-datetimepicker-widget.dropdown-menu.top{margin-bottom:-1px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom{margin-top:-1px}.bootstrap-datetimepicker-widget .timepicker-hour{width:100%}.bootstrap-datetimepicker-widget .timepicker-hour:after{content:":";float:right}.timepicker-hours table td,.timepicker-minutes table td{font-weight:700;line-height:30px;height:30px}.timepicker-hours table td:hover,.timepicker-minutes table td:hover{color:#0088ce}.timepicker-hours .table-condensed>tbody>tr>td,.timepicker-minutes .table-condensed>tbody>tr>td{padding:0}.time-picker-pf .input-group-addon .fa,.time-picker-pf .input-group-addon .pficon{width:12px}.time-picker-pf .input-group-addon:not(.active){box-shadow:none}.timepicker-picker table td a span,.timepicker-picker table td span{height:24px;line-height:24px;margin:0;width:100%}.timepicker-picker .table-condensed>tbody>tr>td{height:25px;line-height:18px;padding:0}.timepicker-picker button[data-action]{padding-bottom:0;padding-top:0}.timepicker-picker .separator{display:none}.timepicker-picker tr:nth-child(2) td{background-color:#def3ff;border-color:#bee1f4;border-style:solid;border-width:1px;border-left:0;border-right:0}.toast-pf{background-color:#fff;border-color:#bbb;box-shadow:0 2px 6px rgba(3,3,3,.2);padding-left:68px;margin-bottom:5px}.toast-pf.alert-danger>.pficon{background-color:#c00}.toast-pf.alert-info>.pficon{background-color:#8b8d8f}.toast-pf.alert-success>.pficon{background-color:#3f9c35}.toast-pf.alert-warning>.pficon{background-color:#ec7a08}.toast-pf .dropdown-kebab-pf{margin-left:10px}.toast-pf>.pficon{background-color:#4d5258;bottom:-1px;box-shadow:2px 0 5px -2px rgba(3,3,3,.2);left:-1px;padding-top:10px;text-align:center;top:-1px;width:53px}.toast-pf>.pficon:before{color:rgba(255,255,255,.74)}.toast-pf .toast-pf-action{margin-left:15px}.toast-pf .dropdown-kebab-pf .btn-link{padding-top:0;padding-bottom:0;vertical-align:text-bottom}@media (min-width:992px){.toast-pf{display:inline-block}}@media (min-width:992px){.toast-pf-max-width{max-width:31.1%}}.toast-pf-top-right{left:20px;position:absolute;right:20px;top:12px;z-index:1055}@media (min-width:992px){.toast-pf-top-right{left:auto}}.toast-notifications-list-pf{margin-left:20px;position:fixed;right:20px;top:80px;z-index:1055}.toast-notifications-list-pf .toast-pf{clear:both;float:right}@media (min-width:768px){.toast-notifications-list-pf{max-width:calc(50%)}}@media (min-width:992px){.toast-notifications-list-pf{max-width:calc(33.1%)}}.toolbar-pf{background:#fff;border-bottom:1px solid #d1d1d1;box-shadow:0 1px 0 rgba(3,3,3,.045);padding-top:10px}.toolbar-pf .form-group{margin-bottom:10px}@media (min-width:768px){.toolbar-pf .form-group{border-right:1px solid #d1d1d1;float:left;margin-bottom:0;padding-left:20px;padding-right:20px}}.toolbar-pf .form-group:last-child{border-right:0;margin-bottom:0;padding-right:0}.toolbar-pf .form-group .btn+.btn,.toolbar-pf .form-group .btn+.btn-group,.toolbar-pf .form-group .btn-group+.btn,.toolbar-pf .form-group .btn-group+.btn-group{margin-left:5px}.toolbar-pf .form-group .btn+.btn-link,.toolbar-pf .form-group .btn+.dropdown,.toolbar-pf .form-group .btn-group+.btn-link,.toolbar-pf .form-group .btn-group+.dropdown{margin-left:10px}.toolbar-pf .form-group .btn-link{color:#252525;font-size:16px;line-height:1;padding:4px 0}.toolbar-pf .form-group .btn-link:active,.toolbar-pf .form-group .btn-link:focus,.toolbar-pf .form-group .btn-link:hover{color:#0088ce}.toolbar-pf .form-group .dropdown-kebab-pf .btn-link{padding:4px 10px;margin-left:-10px;margin-right:-10px}.toolbar-pf-actions{display:table;margin-bottom:10px;width:100%}@media (min-width:768px){.toolbar-pf-actions .toolbar-pf-filter{padding-left:0}}.toolbar-pf-view-selector{font-size:16px}.toolbar-pf-view-selector .btn-link.active{color:#0088ce;cursor:default}.toolbar-pf-action-right{float:right}@media (max-width:768px){.toolbar-pf-action-right{float:none}}.toolbar-pf-find{font-size:14px;position:relative}.find-pf-dropdown-container{background:#fff;border:solid 1px #bbb;display:none;right:-20px;padding:5px;position:absolute;top:35px;width:300px;z-index:10000}@media (max-width:768px){.find-pf-dropdown-container{left:30px;top:-5px;width:calc(100% - 30px)}}.find-pf-dropdown-container:after,.find-pf-dropdown-container:before{content:"";position:absolute}.find-pf-dropdown-container:before{border-bottom:11px solid #bbb;border-left:11px solid transparent;border-right:11px solid transparent;right:35px;top:-12px}.toolbar-pf-find:last-child .find-pf-dropdown-container:before{right:15px}@media (max-width:768px){.find-pf-dropdown-container:before{border-bottom:11px solid transparent;border-right:11px solid #bbb;border-top:11px solid transparent;left:-22px;right:initial;top:8px}}.find-pf-dropdown-container:after{border-bottom:10px solid #fff;border-left:10px solid transparent;border-right:10px solid transparent;right:36px;top:-10px}.toolbar-pf-find:last-child .find-pf-dropdown-container:after{right:16px}@media (max-width:768px){.find-pf-dropdown-container:after{border-bottom:10px solid transparent;border-right:10px solid #fff;border-top:10px solid transparent;left:-20px;right:initial;top:9px}}.find-pf-dropdown-container input{height:30px;padding:5px 117px 5px 5px;width:100%}.find-pf-dropdown-container .find-pf-buttons{position:absolute;right:10px;top:5px}.find-pf-dropdown-container .find-pf-buttons .btn{border:none;cursor:pointer;margin-left:0!important;padding:0;width:18px}.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-down,.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-up{font-weight:700;font-size:18px}.find-pf-dropdown-container .find-pf-buttons .btn .pficon-close{font-size:14px}.find-pf-dropdown-container .find-pf-buttons span{height:30px;line-height:30px;vertical-align:middle}.find-pf-dropdown-container .find-pf-buttons .find-pf-nums{color:#8b8d8f;margin-right:3px}.toolbar-pf-results{border-top:1px solid #d1d1d1;margin-top:10px}.toolbar-pf-results h5,.toolbar-pf-results p,.toolbar-pf-results ul{display:inline-block;line-height:26.66666667px;margin-bottom:0;margin-top:0}@media (min-width:768px){.toolbar-pf-results h5,.toolbar-pf-results p,.toolbar-pf-results ul{line-height:40px}}.toolbar-pf-results h5{font-weight:700;margin-right:20px}.toolbar-pf-results .label{font-size:11px}.toolbar-pf-results .label a{color:#fff;display:inline-block;margin-left:5px}.nav-pf-vertical{background:#292e34;border-right:1px solid #292e34;bottom:0;left:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;width:200px;z-index:1030}.layout-pf-fixed-with-footer .nav-pf-vertical{bottom:37px}.ie9.layout-pf-fixed .nav-pf-vertical{box-sizing:content-box}.nav-pf-vertical.hidden.show-mobile-nav{box-shadow:0 0 3px rgba(3,3,3,.15);display:block!important}.nav-pf-vertical.hide-nav-pf{visibility:hidden!important}.nav-pf-vertical .list-group{border-top:0;margin-bottom:0}.nav-pf-vertical .list-group-item{background-color:transparent;border-color:#030303;padding:0}.nav-pf-vertical .list-group-item>a{background-color:transparent;color:#d1d1d1;cursor:pointer;display:block;font-size:14px;font-weight:400;height:63px;line-height:26px;padding:17px 20px 17px 25px;position:relative;white-space:nowrap;width:200px}@supports (display:flex){.nav-pf-vertical .list-group-item>a{display:-ms-flexbox;display:flex;padding-right:0}}.nav-pf-vertical .list-group-item>a .fa,.nav-pf-vertical .list-group-item>a .glyphicon,.nav-pf-vertical .list-group-item>a .pficon{color:#72767b;float:left;font-size:20px;line-height:26px;margin-right:10px;text-align:center;width:24px}.nav-pf-vertical .list-group-item>a:hover{text-decoration:none}.nav-pf-vertical .list-group-item.active>a,.nav-pf-vertical .list-group-item:hover>a{background-color:#393f44;color:#fff;font-weight:600}.nav-pf-vertical .list-group-item.active>a .fa,.nav-pf-vertical .list-group-item.active>a .glyphicon,.nav-pf-vertical .list-group-item.active>a .pficon,.nav-pf-vertical .list-group-item:hover>a .fa,.nav-pf-vertical .list-group-item:hover>a .glyphicon,.nav-pf-vertical .list-group-item:hover>a .pficon{color:#39a5dc}.nav-pf-vertical .list-group-item.active>a:before{background:#39a5dc;content:" ";height:100%;left:0;position:absolute;top:0;width:3px}.nav-pf-vertical .list-group-item.active:hover{background-color:transparent;border-color:#030303}.nav-pf-vertical .list-group-item .list-group-item-value{display:block;line-height:25px;max-width:120px;overflow:hidden;text-overflow:ellipsis}@supports (display:flex){.nav-pf-vertical .list-group-item .list-group-item-value{-ms-flex:1;flex:1;max-width:none;padding-right:15px}}.nav-pf-vertical .list-group-item-separator{border-top-color:#030303;border-top-width:2px}.nav-pf-vertical.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-vertical-with-badges .list-group-item>a{width:250px}.nav-pf-vertical h5{color:#fff;cursor:default;font-size:13px;font-weight:600;margin:30px 20px 10px 20px}.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .fa,.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .glyphicon,.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .pficon{display:none}.nav-pf-vertical.hidden-icons-pf.collapsed{display:none}.nav-pf-vertical .badge-container-pf{position:absolute;right:15px;top:20px}@supports (display:flex){.nav-pf-vertical .badge-container-pf{padding-left:0;padding-right:15px;position:relative;right:0;margin-top:-3px;top:5px}}.nav-pf-vertical .badge-container-pf .badge{background:#292e34;color:#fff;float:left;font-size:12px;font-weight:700;line-height:1.66666667;margin:0;padding:0 7px;text-align:center}.nav-pf-vertical .badge-container-pf .badge .fa,.nav-pf-vertical .badge-container-pf .badge .pficon{font-size:14px;height:20px;line-height:1.66666667;margin-right:3px;margin-top:-1px}.nav-pf-vertical-tooltip.tooltip{margin-left:15px}.nav-pf-vertical-tooltip.tooltip .tooltip-inner{background-color:#fff;color:#292e34}.nav-pf-vertical-tooltip.tooltip .tooltip-arrow{border-bottom-color:#fff;left:calc(50% - 15px)!important}.hover-secondary-nav-pf{width:calc(200px * 2)}.hover-secondary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.hover-tertiary-nav-pf{width:calc(200px * 3)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 3)}.hover-tertiary-nav-pf .nav-pf-secondary-nav{width:calc(200px * 2)}.hover-tertiary-nav-pf .nav-pf-secondary-nav .collapsed-tertiary-nav-pf{width:200px}.hover-tertiary-nav-pf .nav-pf-tertiary-nav{left:calc(200px * 2)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav{width:calc(250px * 2)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav .collapsed-tertiary-nav-pf{width:250px}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:calc(250px * 2)}.nav-pf-vertical.collapsed{width:75px}.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed.hover-secondary-nav-pf{width:calc(75px + 200px)}.nav-pf-vertical.collapsed.hover-secondary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + 250px)}.nav-pf-vertical.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.nav-pf-vertical.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + (250px * 2))}.show-mobile-nav.show-mobile-secondary{width:200px}.show-mobile-nav.show-mobile-secondary.nav-pf-vertical-with-badges{width:250px}.show-mobile-nav.show-mobile-tertiary{width:200px}.show-mobile-nav.show-mobile-tertiary.nav-pf-vertical-with-badges{width:250px}.show-mobile-nav .mobile-nav-item-pf .nav-pf-secondary-nav,.show-mobile-nav .mobile-secondary-item-pf .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible;z-index:1034}.show-mobile-nav .mobile-nav-item-pf>.nav-pf-tertiary-nav,.show-mobile-nav .mobile-secondary-item-pf>.nav-pf-tertiary-nav{left:0;opacity:1;visibility:visible;z-index:1038}.show-mobile-nav .nav-pf-secondary-nav{left:0}.secondary-nav-item-pf:hover .show-mobile-nav .nav-pf-secondary-nav{opacity:0;visibility:hidden}.show-mobile-nav .tertiary-nav-item-pf:hover .nav-pf-tertiary-nav{opacity:0;visibility:hidden}.show-mobile-nav .tertiary-nav-item-pf.mobile-nav-item-pf:hover .nav-pf-tertiary-nav{opacity:1;visibility:visible}.secondary-nav-item-pf>a{cursor:default}.secondary-nav-item-pf>a:after{color:#72767b;content:"\f105";display:block;font-family:FontAwesome;font-size:24px;line-height:30px;padding:14px 0;position:absolute;right:20px;top:0}@supports (display:flex){.secondary-nav-item-pf>a .list-group-item-value{padding-right:35px}}.secondary-nav-item-pf.active>a,.secondary-nav-item-pf:hover>a{width:calc(200px + 1px);z-index:1031}.secondary-nav-item-pf.active>a:after,.secondary-nav-item-pf:hover>a:after{right:21px}.collapsed-secondary-nav-pf .secondary-nav-item-pf.active>a,.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover>a{z-index:0}.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active>a,.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover>a{z-index:0}.nav-pf-vertical-with-badges .secondary-nav-item-pf.active>a,.nav-pf-vertical-with-badges .secondary-nav-item-pf:hover>a{width:calc(250px + 1px)}.nav-pf-vertical.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.hover>a{z-index:1030}.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-secondary-nav{left:0}.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav{width:200px}.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.hover>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.hover>a{z-index:0}@media (min-width:1200px){.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf{width:calc(200px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf{width:calc(200px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed{width:calc(75px + 200px)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + (250px * 2))}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf{width:calc(200px * 3)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 3)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{visibility:visible;opacity:1}}.nav-item-pf-header{color:#fff;font-size:16px;margin:18px 20px 10px 20px}.nav-item-pf-header>a{cursor:pointer;margin-right:7px}.nav-item-pf-header>a:focus,.nav-item-pf-header>a:hover{color:#0088ce;text-decoration:none}.nav-pf-vertical.collapsed{width:75px}.nav-pf-vertical.collapsed .list-group-item>a{width:75px}.nav-pf-vertical.collapsed .list-group-item>a>.list-group-item-value{display:none}.nav-pf-vertical.collapsed .list-group-item>a>.badge-container-pf{display:none}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf>a{width:75px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a:after,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf>a:after{right:10px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover>a{width:77px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a:after,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover>a:after{right:11px}.nav-pf-secondary-nav{background:#393f44;border:1px solid #292e34;border-bottom:none;border-top:none;bottom:0;display:block;left:200px;opacity:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;visibility:hidden;width:200px;z-index:1030}.collapsed-secondary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible;z-index:1032}.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible}.hover-secondary-nav-pf .secondary-nav-item-pf.is-hover .nav-pf-secondary-nav{opacity:1;visibility:visible}.ie9.layout-pf-fixed .nav-pf-secondary-nav{box-sizing:content-box}.layout-pf-fixed-with-footer .nav-pf-secondary-nav{bottom:37px}.nav-pf-secondary-nav .list-group-item{border:none;padding:0 0 5px 0;width:200px}.nav-pf-secondary-nav .list-group-item>a{background-color:#393f44;color:#d1d1d1;font-size:12px;font-weight:inherit;height:inherit;padding:4px 0 2px 0;margin-left:20px;width:calc(200px - 20px)}.nav-pf-secondary-nav .list-group-item>a:hover .list-group-item-value{text-decoration:underline}.nav-pf-secondary-nav .list-group-item.active>a:before{display:none}.nav-pf-secondary-nav .list-group-item.active>a,.nav-pf-secondary-nav .list-group-item:hover>a{background-color:#4d5258;color:#fff}.nav-pf-secondary-nav .list-group-item .badge-container-pf{top:5px}.nav-pf-secondary-nav .list-group-item .badge-container-pf .badge{background:#292e34;color:#fff}.nav-pf-secondary-nav .list-group-item .list-group-item-value{padding-left:5px}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a{cursor:default}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a:after{color:#72767b;content:"\f105";display:block;font-family:FontAwesome;font-size:20px;line-height:20px;padding:0;position:absolute;right:20px;top:4px}@supports (display:flex){.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a .list-group-item-value{padding-right:35px}}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a,.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a{width:calc(200px - 19px);z-index:1033}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a:after,.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a:after{right:21px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav{left:250px;width:250px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item{width:250px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item>a{width:calc(250px - 20px)}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a,.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a{width:calc(250px - 19px)}.nav-pf-tertiary-nav{background:#4d5258;border:1px solid #292e34;border-bottom:none;border-top:none;bottom:0;display:block;left:calc(200px * 2);opacity:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;visibility:hidden;width:200px;z-index:1030}.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:250px;width:250px}.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .show-mobile-nav{left:0}.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active .nav-pf-tertiary-nav{left:0;opacity:1;visibility:visible;z-index:1033}.hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav{opacity:1;visibility:visible}.collapsed.collapsed-tertiary-nav-pf .hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav{left:0}.ie9.layout-pf-fixed .nav-pf-tertiary-nav{box-sizing:content-box}.layout-pf-fixed-with-footer .nav-pf-tertiary-nav{bottom:37px}.nav-pf-tertiary-nav .nav-item-pf-header{color:#fff;margin:18px 20px 10px 20px}.nav-pf-tertiary-nav h5{color:#fff;margin:30px 20px 10px 20px}.nav-pf-tertiary-nav .list-group-item{border:none;padding:0 0 5px 0}.nav-pf-tertiary-nav .list-group-item>a{background-color:transparent;color:#d1d1d1;font-size:12px;font-weight:inherit;height:inherit;margin:0 20px 0 20px;padding:4px 0 2px 0}.nav-pf-tertiary-nav .list-group-item.active>a:before{display:none}.nav-pf-tertiary-nav .list-group-item.active>a,.nav-pf-tertiary-nav .list-group-item:hover>a{background-color:#393f44;color:#fff}.nav-pf-tertiary-nav .list-group-item .badge-container-pf{top:5px}.nav-pf-tertiary-nav .list-group-item .badge-container-pf .badge{background:#292e34;color:#fff}.nav-pf-tertiary-nav .list-group-item .list-group-item-value{padding-left:5px}.collapsed .nav-pf-secondary-nav{left:75px}.collapsed .nav-pf-secondary-nav .list-group-item>a{width:calc(200px - 20px)}.collapsed .nav-pf-secondary-nav .list-group-item>a>.list-group-item-value{display:inline-block}.collapsed .nav-pf-secondary-nav .list-group-item>a>.badge-container-pf{display:inline-block}.collapsed .nav-pf-tertiary-nav{left:calc(75px + 200px)}.collapsed .nav-pf-tertiary-nav .list-group-item>a{width:calc(200px - 20px)}.collapsed .nav-pf-tertiary-nav .list-group-item>a>.list-group-item-value{display:inline-block}.collapsed .nav-pf-tertiary-nav .list-group-item>a>.badge-container-pf{display:inline-block}.collapsed.collapsed-secondary-nav-pf,.collapsed.collapsed-tertiary-nav-pf{width:200px}.collapsed.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover>a,.collapsed.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover>a{z-index:1030}.collapsed.collapsed-secondary-nav-pf .nav-pf-secondary-nav,.collapsed.collapsed-tertiary-nav-pf .nav-pf-secondary-nav{left:0}.collapsed.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:200px}.collapsed.collapsed-tertiary-nav-pf .nav-pf-tertiary-nav{left:0}.collapsed.hover-secondary-nav-pf{width:calc(75px + 200px)}.collapsed.hover-secondary-nav-pf.collapsed-secondary-nav-pf,.collapsed.hover-secondary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.collapsed.hover-tertiary-nav-pf.collapsed-secondary-nav-pf{width:calc(200px * 2)}.collapsed.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.collapsed.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item>a{width:calc(250px - 20px)}.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:calc(75px + 250px)}.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .list-group-item>a{width:calc(250px - 20px)}.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf,.collapsed.nav-pf-vertical-with-badges.collapsed-tertiary-nav-pf{width:250px}.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:250px}.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf{width:calc(75px + 250px)}.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-secondary-nav-pf,.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-tertiary-nav-pf{width:250px}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-secondary-nav-pf{width:calc(200px * 2)}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.secondary-collapse-toggle-pf{display:none;font-family:FontAwesome;font-size:inherit;opacity:0;pointer-events:none;-webkit-font-smoothing:antialiased}.secondary-collapse-toggle-pf:before{content:"\f190"}.secondary-collapse-toggle-pf.collapsed:before{content:"\f18e"}.tertiary-collapse-toggle-pf{display:none;font-family:FontAwesome;font-size:inherit;opacity:0;pointer-events:none;-webkit-font-smoothing:antialiased}.tertiary-collapse-toggle-pf:before{content:"\f190"}.tertiary-collapse-toggle-pf.collapsed:before{content:"\f18e"}.nav-pf-vertical-collapsible-menus .secondary-collapse-toggle-pf{display:inline-block}.nav-pf-vertical-collapsible-menus .secondary-nav-item-pf.active .secondary-collapse-toggle-pf{opacity:1;pointer-events:all}.nav-pf-vertical-collapsible-menus .tertiary-collapse-toggle-pf{display:inline-block}.nav-pf-vertical-collapsible-menus .tertiary-nav-item-pf.active .tertiary-collapse-toggle-pf{opacity:1;pointer-events:all}.show-mobile-nav .secondary-collapse-toggle-pf{display:inline-block;opacity:1;pointer-events:all}.show-mobile-nav .secondary-collapse-toggle-pf:before{content:"\f190"}.show-mobile-nav .tertiary-collapse-toggle-pf{display:inline-block;opacity:1;pointer-events:all}.show-mobile-nav .tertiary-collapse-toggle-pf:before{content:"\f190"}.force-hide-secondary-nav-pf .nav-pf-secondary-nav{display:none!important}.force-hide-secondary-nav-pf .nav-pf-tertiary-nav{display:none!important}.nav-pf-vertical.transitions{transition:width .1s}.nav-pf-vertical.transitions .nav-pf-secondary-nav{transition:visibility .1s,opacity .1s linear}.nav-pf-vertical.transitions .nav-pf-tertiary-nav{transition:visibility .1s,opacity .1s linear}.wizard-pf{padding:10px;margin:0 auto;max-height:900px;width:auto}.wizard-pf .modal-content{min-height:100%}.wizard-pf-body{background:#fff;padding:0;position:static}.wizard-pf-sidebar{background:#fafafa;border-right:1px solid #d1d1d1;display:none}@media (min-width:768px){.wizard-pf-sidebar{display:inherit;-ms-flex:0 0 auto;flex:0 0 auto;overflow-x:hidden;overflow-y:auto}.wizard-pf-sidebar .list-group{border-top:0;margin-bottom:0}.wizard-pf-sidebar .list-group-item{background-color:transparent;border-color:#ededed;padding:0}.wizard-pf-sidebar .list-group-item>a{color:#030303;cursor:pointer;display:block;font-size:14px;font-weight:700;height:50px;outline:0;padding-top:11px;padding-left:20px;position:relative;white-space:nowrap;width:14em}.wizard-pf-sidebar .list-group-item>a:hover{text-decoration:none;background-color:#ededed}.wizard-pf-sidebar .list-group-item>a:focus{text-decoration:none}.wizard-pf-sidebar .list-group-item>a:focus span{text-decoration:underline}.wizard-pf-sidebar .list-group-item.active{background-color:#ededed}.wizard-pf-sidebar .list-group-item.active:hover{border-color:#ededed}.wizard-pf-sidebar .list-group-item.active>a{color:#39a5dc;cursor:default}.wizard-pf-sidebar .list-group-item.active>a:before{content:" ";background:#39a5dc;height:100%;left:0;position:absolute;top:0;width:3px}.wizard-pf-sidebar .list-group-item.active>a:after{color:#39a5dc;content:"\f105";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;line-height:30px;padding-top:10px;position:absolute;right:23px;top:0}}.wizard-pf-substep-number{display:inline-block;margin-right:5px;vertical-align:middle;width:25px}.wizard-pf-substep-title{display:inline-block;margin-right:5px;text-align:left;vertical-align:middle}.wizard-pf-steps{border-bottom:solid 1px #d1d1d1}@media (min-width:768px){.wizard-pf-steps{text-align:center}}.wizard-pf-steps-indicator{background:#ededed;border-top:1px solid #d1d1d1;display:inline-block;display:-ms-flexbox;display:flex;font-size:16px;list-style:none;margin-bottom:0;padding:15px 0}@media (min-width:768px){.wizard-pf-steps-indicator{background:#fff;height:120px;padding:38px 0 0;-ms-flex-pack:distribute;justify-content:space-around}}.wizard-pf-steps-indicator li{counter-increment:section;float:left;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0;line-height:15px;margin:0;padding:0;position:relative;text-align:center}.wizard-pf-steps-indicator li:not(.active){display:none}@media (min-width:768px){.wizard-pf-steps-indicator li:not(.active){display:block}}.wizard-pf-steps-indicator li a{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;font-weight:700}@media (min-width:768px){.wizard-pf-steps-indicator li a{font-weight:400;-ms-flex-pack:center;justify-content:center}}.wizard-pf-steps-indicator li a .wizard-pf-step-title{margin-left:10px}@media (min-width:768px){.wizard-pf-steps-indicator li a .wizard-pf-step-title{margin-left:0}}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep{font-weight:400;margin-left:10px;text-transform:capitalize}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:before{content:"\00BB";font-size:20px;margin-right:10px}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:not(.active){display:none}@media (min-width:768px){.wizard-pf-steps-indicator li .wizard-pf-step-title-substep{display:none}.wizard-pf-steps-indicator li:before{background-color:#bbb;content:"";height:2px;left:0;position:absolute;right:0;top:40px}.wizard-pf-steps-indicator li:first-child:before{left:50%;right:0}.wizard-pf-steps-indicator li:last-child:before{left:0;right:50%}.wizard-pf-steps-indicator li:only-of-type:before{background-color:transparent}}.wizard-pf-steps-indicator li a{color:#030303;cursor:pointer;font-size:16px;margin-left:1em;margin-right:1em;text-decoration:none}.wizard-pf-steps-indicator li a:hover .wizard-pf-step-number{background-color:#bbb;border-color:#bbb;color:#fff}.wizard-pf-steps-indicator .wizard-pf-step-number{background-color:#fff;border-radius:50%;border:solid 2px #bbb;color:#bbb;font-size:12px;font-weight:700;height:25px;line-height:22px;width:25px}@media (min-width:768px){.wizard-pf-steps-indicator .wizard-pf-step-number{left:calc(50% - 13px);position:absolute;top:27px}}.wizard-pf-steps-indicator .active .wizard-pf-step-number{background-color:#39a5dc;border-color:#39a5dc;cursor:default;color:#fff}.wizard-pf-steps-indicator .viewed-pf .wizard-pf-step-number{color:#030303;background-color:#fff;border-color:#39a5dc}.wizard-pf-main{height:100%;padding:1em;vertical-align:top;width:100%}@media (min-width:768px){.wizard-pf-main{overflow:auto;padding:3em;-ms-flex:1 1 auto;flex:1 1 auto}}.wizard-pf-main .blank-slate-pf{background-color:transparent;border:none;left:0;right:0}.wizard-pf-contents textarea{resize:vertical}.wizard-pf-review-steps{list-style:none}.wizard-pf-review-steps .list-group,.wizard-pf-review-steps .list-group-item{border:none;margin-bottom:0}.wizard-pf-review-steps>ul>li{float:left;line-height:15px;margin:0;padding-top:0;position:relative;width:100%}.wizard-pf-review-steps>ul>li>a{color:#030303;cursor:pointer;font-size:16px;padding-left:30px;padding-right:5px;text-decoration:none;transition:250ms}.wizard-pf-review-steps>ul>li>a:before{content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;left:20px;position:absolute;top:0}.wizard-pf-review-steps>ul>li>a.collapsed:before{content:"\f105"}.wizard-pf-review-substeps{padding-left:22px}.wizard-pf-review-substeps>ul>li{float:left;line-height:15px;margin:0;position:relative;width:100%}.wizard-pf-review-substeps>ul>li a{color:#030303;cursor:pointer;font-size:16px;padding-left:30px;padding-right:5px;text-decoration:none;transition:250ms}.wizard-pf-review-substeps>ul>li a:before{content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;left:20px;position:absolute;top:10px}.wizard-pf-review-substeps>ul>li a.collapsed:before{content:"\f105"}.wizard-pf-review-content{padding-top:10px;padding-left:40px}.wizard-pf-review-content .wizard-pf-review-item{padding:5px 0}.wizard-pf-review-content .wizard-pf-review-item.sub-item{margin-left:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-label{font-weight:700;padding-right:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field{font-weight:700;margin:5px 0;padding-right:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:first-of-type{margin-top:0}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:last-of-type{margin-bottom:0}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field.sub-field{margin-left:10px}.wizard-pf-success-icon{color:#3f9c35;font-size:67.2px;line-height:67.2px}.wizard-pf-footer{background:#fff;border-top:1px solid #d1d1d1;margin-top:0;padding-bottom:17px}.wizard-pf-footer .btn-cancel{margin-right:25px}@media (min-width:768px){.wizard-pf-row{display:-ms-flexbox;display:flex;width:100%;height:900px;max-height:65vh}}@media (min-width:992px){.wizard-pf{padding:30px 0;width:900px}.wizard-pf-sidebar .list-group-item>a{width:18em}}.wizard-pf-steps-alt,.wizard-pf-steps-alt ul{list-style:none;margin:0;padding:0}.wizard-pf-steps-alt{margin-left:15px;margin-top:15px;background-image:linear-gradient(to right,transparent 11px,#d1d1d1 11px,#d1d1d1 13px,transparent 13px)}@media (min-width:768px){.wizard-pf-steps-alt{display:none}}.wizard-pf-steps-alt-indicator{position:relative}.wizard-pf-steps-alt-indicator:after{color:#4d5258;content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;position:absolute;right:17px;top:50%;-ms-transform:translateY(-50%);transform:translateY(-50%)}@media (min-width:768px){.wizard-pf-steps-alt-indicator:after{display:none}}.wizard-pf-steps-alt-indicator.active:after{content:"\f106"}.wizard-pf-step-alt{margin-bottom:10px}.wizard-pf-step-alt a{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1}.wizard-pf-step-alt a:hover{text-decoration:none}.wizard-pf-step-alt a:hover .wizard-pf-step-alt-title{color:#39a5dc}.wizard-pf-step-alt ul{margin-left:11px}.wizard-pf-step-alt .wizard-pf-step-alt-title{margin-left:5px;-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.wizard-pf-step-alt .wizard-pf-step-alt-number{-ms-flex:0 0 auto;flex:0 0 auto}.wizard-pf-step-alt.active .wizard-pf-step-alt-number{background-color:#39a5dc;border-color:#39a5dc;cursor:default;color:#fff}.wizard-pf-step-alt.active .wizard-pf-step-alt-title{color:#39a5dc}.wizard-pf-step-alt.active .wizard-pf-step-alt-substep:first-of-type{margin-top:2px}.wizard-pf-step-alt.viewed .wizard-pf-step-alt-number{color:#030303;background-color:#fff;border-color:#39a5dc}.wizard-pf-step-alt-number{background-color:#fff;border-radius:50%;border:solid 2px #bbb;color:#bbb;font-size:12px;font-weight:700;height:24px;width:24px;display:inline-block;text-align:center}.wizard-pf-step-alt-title{color:#030303;font-weight:700;text-transform:capitalize;display:inline-block}.wizard-pf-step-alt-substep{display:-ms-flexbox;display:flex}.wizard-pf-step-alt-substep a{padding:5px 0 5px 18px;color:#393f44}.wizard-pf-step-alt-substep:not(.disabled).active,.wizard-pf-step-alt-substep:not(.disabled):hover{background-color:#ededed;background-image:linear-gradient(to right,#39a5dc 2px,transparent 2px)}.wizard-pf-step-alt-substep:not(.disabled).active a,.wizard-pf-step-alt-substep:not(.disabled):hover a{color:#39a5dc}.wizard-pf-step-alt-substep.active a{font-weight:700}.wizard-pf-step-alt-substep.disabled{cursor:not-allowed}.wizard-pf-step-alt-substep.disabled a{pointer-events:none}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/patternfly/tests/build/less/patternfly-additions.min.css.map b/themes/src/main/node_modules/patternfly/tests/build/less/patternfly-additions.min.css.map
index 04010a4..84bf866 100644
--- a/themes/src/main/node_modules/patternfly/tests/build/less/patternfly-additions.min.css.map
+++ b/themes/src/main/node_modules/patternfly/tests/build/less/patternfly-additions.min.css.map
@@ -1 +1 @@
-{"version":3,"sources":["node_modules/bootstrap-slider/src/less/rules.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","node_modules/patternfly-bootstrap-combobox/less/combobox.less","node_modules/bootstrap-datepicker/less/datepicker3.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap-select/less/bootstrap-select.less","node_modules/bootstrap-switch/src/less/bootstrap3/bootstrap-switch.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap-touchspin/dist/jquery.bootstrap-touchspin.css","node_modules/c3/c3.css","tests/build/less/patternfly-additions.css","node_modules/eonasdan-bootstrap-datetimepicker/src/less/_bootstrap-datetimepicker.less","node_modules/eonasdan-bootstrap-datetimepicker/src/less/bootstrap-datetimepicker-build.less","src/less/mixins.less","src/less/about-modal.less","src/less/application-launcher.less","src/less/blank-slate.less","src/less/bootstrap-combobox.less","src/less/variables.less","src/less/bootstrap-datepicker.less","src/less/bootstrap-mixin-overrides.less","src/less/bootstrap-select.less","src/less/bootstrap-slider.less","src/less/bootstrap-switch.less","src/less/bootstrap-touchspin.less","src/less/bootstrap-treeview.less","src/less/cards.less","src/less/card-view.less","src/less/charts.less","src/less/close.less","src/less/datatables.less","src/less/experimental-features.less","src/less/filter.less","src/less/footer.less","src/less/icons.less","src/less/infotip.less","src/less/layouts.less","src/less/links.less","src/less/list-pf.less","src/less/list-view.less","node_modules/bootstrap/less/mixins/clearfix.less","src/less/list-view-dnd.less","src/less/login.less","src/less/navbar.less","node_modules/font-awesome/less/variables.less","src/less/navbar-alt.less","src/less/navbar-vertical.less","src/less/nav-vertical-alt.less","src/less/notifications-drawer.less","src/less/search.less","src/less/sidebar.less","src/less/skip-to-content.less","src/less/spinner.less","src/less/syntax-highlighting.less","src/less/table-view.less","src/less/time-picker.less","src/less/toast.less","src/less/toolbar.less","src/less/vertical-nav.less","src/less/wizard.less"],"names":[],"mappings":"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iIkE,QgB/HhD,oBAClB,QhB+HkE,QgB7H/C,qBACnB,QhB6HkE,QgB3HtC,8BAC5B,QhB2HkE,QgBzHxC,4BAC1B,QhByHkE,QgBvH7C,uBACrB,QhBuHkE,QgBrH3C,yBACvB,QhBqHkE,QgBnHtC,8BAC5B,QhBmHkE,QgBjHjD,mBACjB,QhBiHkE,QgB/G5C,wBACtB,QhB+GkE,QgB7G9C,sBACpB,QhB6GkE,QgB3GxC,4BAC1B,QhB2GkE,QgBzG9C,sBACpB,QhByGkE,QgBvGhD,oBAClB,QhBuGkE,QgBrGzC,2BACzB,QhBqGkE,QgBnG1C,0BACxB,QhBmGkE,QgBjG3C,yBACvB,QhBiGkE,QgB/FtC,8BAC5B,MAAA,KACA,QhB8FkE,QgB5F9C,sBACpB,QhB4FkE,QgB1FhD,oBACI,wBACtB,QhByFkE,QgBvF9C,sBACpB,QhBuFkE,QgBrF9C,sBACpB,QhBqFkE,QgBnFxC,4BAC1B,QhBmFkE,QgBjFzC,2BACzB,QhBiFkE,QgB/EhD,oBAClB,QhB+EkE,QgB7E7C,uBACrB,QhB6EkE,QgB3EhD,oBAClB,QhB2EkE,QgBzE/C,qBACnB,QhByEkE,QgBvE9C,sBACpB,QhBuEkE,QgBrEzC,2BACzB,QhBwEkE,QgBtEhD,oBAClB,QhBkEkE,QgBhEtC,8BAC5B,QhBgEkE,QgB9DzC,2BACzB,QhB8DkE,QgB5DjD,mBACjB,QhB6DkE,QgB3D9C,sBACpB,QhB4DkE,QgB1DzC,2BACzB,QhB0DkE,QgBxD9C,sBACpB,QhBwDkE,QgBtD1C,0BACxB,QhBuDkE,QgBrD3C,yBACvB,QhBqDkE,QgBnD1C,0BACxB,QhBmDkE,QgBjD7C,uBACrB,QhBiDkE,QgB/ClD,kBAChB,QhBiDkE,QgB/C1C,0BACxB,QhB+CkE,QgB7C5C,wBACtB,QhB8CkE,QgB5C9C,sBACpB,QhB4CkE,QgB1CjD,mBACjB,QhBmCkE,QgBjClD,kBAChB,MAAA,QACA,QhBgCkE,QgB9B9C,sBACpB,QhBmCkE,QgBjC7C,uBACrB,QhBiCkE,QgB/B7C,uBACrB,QhB+BkE,QgB7BhD,oBAClB,QhB6BkE,QgB3B/C,qBACnB,QhB4BkE,QgB1BlC,kCAChC,QhB0BkE,QgBxB7C,uBACrB,QhBqBkE,QgBnB7C,uBACrB,QhBqBkE,QgBnB3C,yBACvB,QhBmBkE,QgBjB3C,yBACvB,QhBiBkE,QgBf7C,uBACA,uBACrB,QhBuBkE,QgBrB7C,uBACrB,QhBWkE,QgBT5C,wBACtB,QhBSkE,QgBP9C,sBACpB,QhBOkE,QgBL1C,0BACxB,QhBKkE,QgBH1C,0BACxB,QhBGkE,QgBDvC,6BAC3B,QhBCkE,QgBC9B,sCACpC,QhBDkE,QgBG/B,qCACnC,QhBHkE,QgBKtC,8BAC5B,QhBLkE,QgBO/C,qBACnB,QhBNkE,QgBQ7C,uBACrB,QhBRkE,QgBUhD,oBAClB,QhBVkE,QgBY9C,sBACpB,QhBZkE,QgBc9C,sBACpB,QhBdkE,QgBgB5C,wBACtB,QhBhBkE,QgBkB9C,sBACpB,QhBlBkE,QgBoBxC,4BAC1B,QhBpBkE,QgBsB7C,uBACrB,QhBtBkE,QgBwB5C,wBACtB,QhBvBkE,QgByBrC,+BAC7B,QhB3BkE,QgB6B5C,wBACtB,QhB5BkE,QgB8B7C,uBACrB,QhB9BkE,QgBgC5C,wBACtB,QhBhCkE,QgBkCtC,8BAC5B,QhBlCkE,QgBoC9C,sBACpB,QhBpCkE,QgBsCxC,4BAC1B,QhBtCkE,QgBwC5C,wBACtB,QhBxCkE,QgB0C1C,0BACxB,QhB1CkE,QgB4C5C,wBACtB,QhB5CkE,QgB8C7C,uBACrB,QhB5CkE,QgB8ChD,oBAClB,QhB9CkE,QgBgD/C,qBACnB,QhBhDkE,QgBkD5C,wBACtB,QhBvDkE,QgByD3C,yBACvB,QhBzDkE,QgB2DrC,+BAC7B,QhBxDkE,QgB0D9C,sBACpB,QhB1DkE,QgB4DlC,kCAChC,MAAA,QACA,QhB7DkE,QgB+DhD,oBAClB,QhB/DkE,QiBxRnC,sCAC/B,iBAAA,cACA,WAAA,KAI6C,yBACF,oDACzC,iBAAA,eACA,WAAA,GAKJ,SACE,UAAA,MACA,QAAA,EACA,qBACE,WAAA,EACA,OAAA,EACA,QAAA,IAAA,EACA,sCACE,OAAA,KACA,OAAA,EAAA,KAAA,EAAA,KACA,QAAA,IAAA,EACA,yCA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"}
\ No newline at end of file
+{"version":3,"sources":["node_modules/bootstrap-slider/src/less/rules.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","node_modules/patternfly-bootstrap-combobox/less/combobox.less","node_modules/bootstrap-datepicker/less/datepicker3.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap-select/less/bootstrap-select.less","node_modules/bootstrap-switch/src/less/bootstrap3/bootstrap-switch.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap-touchspin/dist/jquery.bootstrap-touchspin.css","node_modules/c3/c3.css","tests/build/less/patternfly-additions.css","node_modules/eonasdan-bootstrap-datetimepicker/src/less/_bootstrap-datetimepicker.less","node_modules/eonasdan-bootstrap-datetimepicker/src/less/bootstrap-datetimepicker-build.less","src/less/mixins.less","src/less/about-modal.less","src/less/application-launcher.less","src/less/blank-slate.less","src/less/bootstrap-combobox.less","src/less/variables.less","src/less/bootstrap-datepicker.less","src/less/bootstrap-mixin-overrides.less","src/less/bootstrap-select.less","src/less/bootstrap-slider.less","src/less/bootstrap-switch.less","src/less/bootstrap-touchspin.less","src/less/bootstrap-treeview.less","src/less/cards.less","src/less/card-view.less","src/less/charts.less","src/less/close.less","src/less/context-selector.less","src/less/datatables.less","src/less/experimental-features.less","src/less/filter.less","src/less/footer.less","src/less/icons.less","src/less/infotip.less","src/less/layouts.less","src/less/links.less","src/less/list-pf.less","src/less/list-view.less","node_modules/bootstrap/less/mixins/clearfix.less","src/less/list-view-dnd.less","src/less/login.less","src/less/navbar.less","node_modules/font-awesome/less/variables.less","src/less/navbar-alt.less","src/less/navbar-vertical.less","src/less/nav-vertical-alt.less","src/less/notifications-drawer.less","src/less/search.less","src/less/sidebar.less","src/less/skip-to-content.less","src/less/spinner.less","src/less/syntax-highlighting.less","src/less/table-view.less","src/less/time-picker.less","src/less/toast.less","src/less/toolbar.less","src/less/vertical-nav.less","src/less/wizard.less"],"names":[],"mappings":"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,QiBtEzC,2BACzB,QjBsEkE,QiBpEjD,mBACjB,QjBqEkE,QiBnE9C,sBACpB,QjBoEkE,QiBlEzC,2BACzB,QjBkEkE,QiBhE9C,sBACpB,QjBgEkE,QiB9D1C,0BACxB,QjB+DkE,QiB7D3C,yBACvB,QjB6DkE,QiB3D1C,0BACxB,QjB2DkE,QiBzD7C,uBACrB,QjByDkE,QiBvDvC,6BAC3B,QjBuDkE,QiBrDlD,kBAChB,QjBuDkE,QiBrD1C,0BACxB,QjBqDkE,QiBnD5C,wBACtB,QjBoDkE,QiBlD9C,sBACpB,QjBkDkE,QiBhDjD,mBACjB,QjByCkE,QiBvClD,kBAChB,MAAA,QACA,QjBsCkE,QiBpC9C,sBACpB,QjByCkE,QiBvC7C,uBACrB,QjBuCkE,QiBrC7C,uBACrB,QjBqCkE,QiBnChD,oBAClB,QjBmCkE,QiBjC/C,qBACnB,QjBkCkE,QiBhClC,kCAChC,QjBgCkE,QiB9B7C,uBACrB,QjB2BkE,QiBzB7C,uBACrB,QjB2BkE,QiBzB3C,yBACvB,QjByBkE,QiBvB3C,yBACvB,QjBuBkE,QiBrB7C,uBACA,uBACrB,QjB6BkE,QiB3B7C,uBACrB,QjBiBkE,QiBf5C,wBACtB,QjBekE,QiBb9C,sBACpB,QjBakE,QiBX1C,0BACxB,QjBWkE,QiBT1C,0BACxB,QjBSkE,QiBPvC,6BAC3B,QjBOkE,QiBL9B,sCACpC,QjBKkE,QiBH/B,qCACnC,QjBGkE,QiBDtC,8BAC5B,QjBCkE,QiBC/C,qBACnB,QjBAkE,QiBE7C,uBACrB,QjBFkE,QiBI3C,yBACvB,QjBHkE,QiBKhD,oBAClB,QjBPkE,QiBS9C,sBACpB,QjBRkE,QiBU9C,sBACpB,QjBVkE,QiBY5C,wBACtB,QjBZkE,QiBc9C,sBACpB,QjBdkE,QiBgBxC,4BAC1B,QjBhBkE,QiBkB7C,uBACrB,QjBlBkE,QiBoB5C,wBACtB,QjBnBkE,QiBqBrC,+BAC7B,QjBvBkE,QiByB5C,wBACtB,QjBxBkE,QiB0B7C,uBACrB,QjB1BkE,QiB4B5C,wBACtB,QjB5BkE,QiB8BtC,8BAC5B,QjB9BkE,QiBgC5C,wBACtB,QjBh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"}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/patternfly/tests/build/sass/patternfly.css b/themes/src/main/node_modules/patternfly/tests/build/sass/patternfly.css
index 863e87b..5f08ac6 100644
--- a/themes/src/main/node_modules/patternfly/tests/build/sass/patternfly.css
+++ b/themes/src/main/node_modules/patternfly/tests/build/sass/patternfly.css
@@ -13060,7 +13060,7 @@ select.selectpicker {
 
 .breadcrumb > li + li:before {
   color: #9c9c9c;
-  content: "";
+  content: "";
   font-family: "FontAwesome";
   font-size: 11px;
   padding: 0 9px 0 7px;
@@ -13729,7 +13729,7 @@ fieldset[disabled]
   background: #f5f5f5;
   box-shadow: none;
   color: #8b8d8f;
-  cursor: default;
+  cursor: not-allowed;
 }
 
 .pager .next > a > .i,
@@ -13872,7 +13872,7 @@ fieldset[disabled]
 .pagination > .disabled > a:hover,
 .pagination > .disabled > a:focus {
   box-shadow: none;
-  cursor: default;
+  cursor: not-allowed;
   background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
   background-repeat: repeat-x;
   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFAFAFA', endColorstr='#FFEDEDED', GradientType=0);
@@ -16559,7 +16559,7 @@ fieldset[disabled] .btn-experimental-pf.active {
 }
 
 .pficon-history:before {
-  content: "";
+  content: "";
 }
 
 .pficon-home:before {
@@ -16622,6 +16622,10 @@ fieldset[disabled] .btn-experimental-pf.active {
   content: "";
 }
 
+.pficon-network-range:before {
+  content: "";
+}
+
 .pficon-on:before {
   content: "";
 }
@@ -16736,6 +16740,10 @@ fieldset[disabled] .btn-experimental-pf.active {
   content: "";
 }
 
+.pficon-satellite:before {
+  content: "";
+}
+
 .pficon-save:before {
   content: "";
 }
@@ -16788,6 +16796,10 @@ fieldset[disabled] .btn-experimental-pf.active {
   content: "";
 }
 
+.pficon-template:before {
+  content: "";
+}
+
 .pficon-tenant:before {
   content: "";
 }
@@ -16828,6 +16840,10 @@ fieldset[disabled] .btn-experimental-pf.active {
   content: "";
 }
 
+.pficon-vcenter:before {
+  content: "";
+}
+
 .pficon-virtual-machine:before {
   content: "";
 }
@@ -17515,6 +17531,12 @@ a.disabled {
   }
 }
 
+.list-view-pf .close {
+  float: none;
+  position: absolute;
+  right: 15px;
+}
+
 .list-view-pf-actions {
   float: right;
   margin-bottom: 20px;
@@ -17806,7 +17828,7 @@ a.disabled {
   margin: -1px -15px 0;
   -ms-flex-order: 3;
       order: 3;
-  padding: 10px 15px;
+  padding: 15px;
   position: relative;
   width: 100%;
 }
@@ -19439,6 +19461,7 @@ a.disabled {
 
 .drawer-pf-notification.unread .drawer-pf-notification-message {
   font-weight: bold;
+  cursor: pointer;
 }
 
 .drawer-pf-notification.expanded-notification .date {
@@ -19462,10 +19485,6 @@ a.disabled {
   display: inline-block;
 }
 
-.drawer-pf-notifications-non-clickable .drawer-pf-notification:hover {
-  background-color: #fff;
-}
-
 .drawer-pf-title {
   background-color: #fafafa;
   border-bottom: 1px solid #d1d1d1;
diff --git a/themes/src/main/node_modules/patternfly/tests/build/sass/patternfly.min.css b/themes/src/main/node_modules/patternfly/tests/build/sass/patternfly.min.css
index 0bec091..d504000 100644
--- a/themes/src/main/node_modules/patternfly/tests/build/sass/patternfly.min.css
+++ b/themes/src/main/node_modules/patternfly/tests/build/sass/patternfly.min.css
@@ -42,4 +42,4 @@
  * Datetimepicker for Bootstrap 3
  * ! version : 4.7.14
  * https://github.com/Eonasdan/bootstrap-datetimepicker/
- */.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:700;font-size:1em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after{content:"Increment Hours";content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after{content:"Increment Minutes";content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after{content:"Decrement Hours";content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after{content:"Decrement Minutes";content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after{content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after{content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after{content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action=clear]::after{content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action=today]::after{content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:1px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:0 0}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#9c9c9c}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:0 0;cursor:pointer}.bootstrap-datetimepicker-widget table td.new,.bootstrap-datetimepicker-widget table td.old{color:#9c9c9c}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#0088ce;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#0088ce;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:1px}.bootstrap-datetimepicker-widget table td span:hover{background:0 0}.bootstrap-datetimepicker-widget table td span.active{background-color:#0088ce;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td span.old{color:#9c9c9c}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.input-group.date .input-group-addon{cursor:pointer}.text-overflow-pf{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.alert{border-width:1px;padding-left:47px;padding-right:14px;position:relative;word-wrap:break-word}.alert .alert-link{color:#0088ce}.alert .alert-link:hover{color:#00659c}.alert>.btn.pull-right{margin-top:-3px}.alert>.pficon{font-size:22px;position:absolute;left:13px;top:10px}.alert .close{opacity:.85}.alert .close:focus,.alert .close:hover{opacity:1}.alert .pficon-info{color:#4d5258}.alert-dismissable{padding-right:28px}.alert-dismissable .close{right:-13px;top:1px}.badge{margin-left:6px}.nav-pills>li>a>.badge{margin-left:6px}.breadcrumb{padding-left:0}.breadcrumb>.active strong{font-weight:600}.breadcrumb>li{display:inline}.breadcrumb>li+li:before{color:#9c9c9c;content:"";font-family:FontAwesome;font-size:11px;padding:0 9px 0 7px}.btn{box-shadow:0 2px 3px rgba(3,3,3,.1)}.btn:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{background-color:#fafafa!important;background-image:none!important;border-color:#d1d1d1!important;color:#8b8d8f!important;opacity:1}.btn.disabled:active,.btn[disabled]:active,fieldset[disabled] .btn:active{box-shadow:none}.btn.disabled.btn-link,.btn[disabled].btn-link,fieldset[disabled] .btn.btn-link{background-color:transparent!important;border:0}.btn-danger{background-color:#a30000;background-image:linear-gradient(to bottom,#c00 0,#a30000 100%);background-repeat:repeat-x;border-color:#8b0000;color:#fff}.btn-danger .open .dropdown-toggle.btn-danger,.btn-danger.active,.btn-danger:active,.btn-danger:focus,.btn-danger:hover{background-color:#a30000;background-image:none;border-color:#8b0000;color:#fff}.btn-danger .open .dropdown-toggle.btn-danger,.btn-danger.active,.btn-danger:active{background-image:none}.btn-danger .open .dropdown-toggle.btn-danger.focus,.btn-danger .open .dropdown-toggle.btn-danger:focus,.btn-danger .open .dropdown-toggle.btn-danger:hover,.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover{background-color:#8a0000;border-color:#670000}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#a30000;border-color:#8b0000}.btn-default{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258}.btn-default .open .dropdown-toggle.btn-default,.btn-default.active,.btn-default:active,.btn-default:focus,.btn-default:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.btn-default .open .dropdown-toggle.btn-default,.btn-default.active,.btn-default:active{background-image:none}.btn-default .open .dropdown-toggle.btn-default.focus,.btn-default .open .dropdown-toggle.btn-default:focus,.btn-default .open .dropdown-toggle.btn-default:hover,.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#f1f1f1;border-color:#bbb}.btn-link,.btn-link:active{box-shadow:none}.btn-primary{background-color:#0088ce;background-image:linear-gradient(to bottom,#39a5dc 0,#0088ce 100%);background-repeat:repeat-x;border-color:#00659c;color:#fff}.btn-primary .open .dropdown-toggle.btn-primary,.btn-primary.active,.btn-primary:active,.btn-primary:focus,.btn-primary:hover{background-color:#0088ce;background-image:none;border-color:#00659c;color:#fff}.btn-primary .open .dropdown-toggle.btn-primary,.btn-primary.active,.btn-primary:active{background-image:none}.btn-primary .open .dropdown-toggle.btn-primary.focus,.btn-primary .open .dropdown-toggle.btn-primary:focus,.btn-primary .open .dropdown-toggle.btn-primary:hover,.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover{background-color:#0077b5;border-color:#004e78}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#0088ce;border-color:#00659c}.btn-group-xs .btn,.btn-group-xs>.btn,.btn-xs{font-weight:400}.caret{font-family:FontAwesome;font-weight:400;height:9px;position:relative;vertical-align:baseline;width:12px}.caret:before{bottom:0;content:"";left:0;line-height:12px;position:absolute;text-align:center;top:-1px;right:0}.dropup .caret:before{content:""}.dropdown-toggle:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.dropdown-menu .divider{background-color:#ededed;height:1px;margin:4px 1px;overflow:hidden}.dropdown-menu>li>a{border-color:transparent;border-style:solid;border-width:1px 0;padding:1px 10px}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{border-color:#bee1f4}.dropdown-menu>li>a:active{background-color:#0088ce;border-color:#0088ce;color:#fff!important}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#0088ce!important;border-color:#0088ce!important}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{border-color:transparent}.dropdown-menu>.selected>a{background-color:#0088ce;border-color:#0088ce;color:#fff}.dropdown-menu>.selected>a small{color:rgba(255,255,255,.5)}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{border-color:transparent}.dropdown-header{padding-left:10px;padding-right:10px;text-transform:uppercase}.btn-group>.dropdown-menu,.dropdown>.dropdown-menu,.input-group-btn>.dropdown-menu{margin-top:-1px}.dropup .dropdown-menu{margin-bottom:-1px}.dropdown-submenu{position:relative}.dropdown-submenu:hover>a{background-color:#def3ff;border-color:#bee1f4}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropdown-submenu.pull-left{float:none!important}.dropdown-submenu.pull-left>.dropdown-menu{left:auto;margin-left:10px;right:100%}.dropdown-submenu>a{padding-right:20px!important}.dropdown-submenu>a:after{content:"";font-family:FontAwesome;display:block;position:absolute;right:10px;top:2px}.dropdown-submenu>.dropdown-menu{left:100%;margin-top:0;top:-6px}.dropup .dropdown-submenu>.dropdown-menu{bottom:-5px;top:auto}.open .dropdown-submenu.active>.dropdown-menu{display:block}.dropdown-kebab-pf .btn-link,.dropdown-kebab-pf.btn-group>.btn:first-child{color:#252525;font-size:16px;line-height:1;padding:4px 10px;margin-left:-10px;margin-right:-10px}.dropdown-kebab-pf .btn-link:active,.dropdown-kebab-pf .btn-link:focus,.dropdown-kebab-pf .btn-link:hover,.dropdown-kebab-pf.btn-group>.btn:first-child:active,.dropdown-kebab-pf.btn-group>.btn:first-child:focus,.dropdown-kebab-pf.btn-group>.btn:first-child:hover{color:#0088ce}.dropdown-kebab-pf.btn-group{margin-left:10px}.dropdown-kebab-pf .dropdown-menu{left:-15px;margin-top:11px}.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right{left:auto;right:-15px}.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:after,.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:before{left:auto;right:6px}.dropdown-kebab-pf .dropdown-menu:after,.dropdown-kebab-pf .dropdown-menu:before{border-bottom-color:#bbb;border-bottom-style:solid;border-bottom-width:10px;border-left:10px solid transparent;border-right:10px solid transparent;content:"";display:inline-block;left:6px;position:absolute;top:-11px}.dropdown-kebab-pf .dropdown-menu:after{border-bottom-color:#fff;top:-10px}.dropdown-kebab-pf.dropup .dropdown-menu{margin-bottom:11px;margin-top:0}.dropdown-kebab-pf.dropup .dropdown-menu:after,.dropdown-kebab-pf.dropup .dropdown-menu:before{border-bottom:none;border-top-color:#bbb;border-top-style:solid;border-top-width:10px;bottom:-11px;top:auto}.dropdown-kebab-pf.dropup .dropdown-menu:after{border-top-color:#fff;bottom:-10px}.chars-remaining-pf span{font-weight:600;padding-right:5px}.chars-warn-remaining-pf{color:#c00}.fields-status-pf{color:#8b8d8f;margin-bottom:15px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{box-shadow:none;color:#8b8d8f}.form-control[disabled]:hover,.form-control[readonly]:hover,fieldset[disabled] .form-control:hover{border-color:#bbb}.form-control:hover{border-color:#7dc3e8}.has-error .form-control:hover{border-color:#900}.has-success .form-control:hover{border-color:#2b542c}.has-warning .form-control:hover{border-color:#bb6106}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label,.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label,.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#363636}.help-block{margin-bottom:0}.input-group .input-group-btn .btn{box-shadow:none}label{font-weight:600}label.required-pf:after{color:#c00;content:"*";margin-left:3px}span.required-pf{color:#c00}.fields-section-pf{border-color:#ededed;border-style:solid;border-width:1px 0 0;margin-top:25px;padding:15px 0 0}.fields-section-header-pf{border:none;font-size:12px;margin:0;padding-right:10px;width:auto}.fields-section-header-pf .fa-angle-right{cursor:pointer;font-size:14px;width:14px}.label{border-radius:0;font-size:100%;font-weight:600}h1 .label,h2 .label,h3 .label,h4 .label,h5 .label,h6 .label{font-size:75%}.list-group{border-top:1px solid #ededed}.list-group .list-group-item:first-child{border-top:0}.list-group-item{border-left:0;border-right:0}.list-group-item-heading{font-weight:600}.modal-header{background-color:#f5f5f5;border-bottom:none;padding:10px 18px}.modal-header .close{margin-top:2px}.modal-title{font-size:13px;font-weight:700}.modal-footer{border-top:none;margin-top:15px;padding:14px 15px 15px}.modal-footer>.btn{padding-left:10px;padding-right:10px}.modal-footer>.btn>.fa-angle-left{margin-right:5px}.modal-footer>.btn>.fa-angle-right{margin-left:5px}.pager li>a,.pager li>span{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;color:#4d5258;font-weight:600;line-height:22px;padding:2px 14px}.pager li>a .open .dropdown-toggle.pager li>a,.pager li>a .pager li>span,.pager li>a.active,.pager li>a:active,.pager li>a:focus,.pager li>a:hover,.pager li>span .open .dropdown-toggle.pager li>a,.pager li>span .pager li>span,.pager li>span.active,.pager li>span:active,.pager li>span:focus,.pager li>span:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.pager li>a .open .dropdown-toggle.pager li>a,.pager li>a .pager li>span,.pager li>a.active,.pager li>a:active,.pager li>span .open .dropdown-toggle.pager li>a,.pager li>span .pager li>span,.pager li>span.active,.pager li>span:active{background-image:none}.pager li>a .open .dropdown-toggle.pager li>a.focus,.pager li>a .open .dropdown-toggle.pager li>a:focus,.pager li>a .open .dropdown-toggle.pager li>a:hover,.pager li>a .pager li>span.focus,.pager li>a .pager li>span:focus,.pager li>a .pager li>span:hover,.pager li>a.active.focus,.pager li>a.active:focus,.pager li>a.active:hover,.pager li>a:active.focus,.pager li>a:active:focus,.pager li>a:active:hover,.pager li>span .open .dropdown-toggle.pager li>a.focus,.pager li>span .open .dropdown-toggle.pager li>a:focus,.pager li>span .open .dropdown-toggle.pager li>a:hover,.pager li>span .pager li>span.focus,.pager li>span .pager li>span:focus,.pager li>span .pager li>span:hover,.pager li>span.active.focus,.pager li>span.active:focus,.pager li>span.active:hover,.pager li>span:active.focus,.pager li>span:active:focus,.pager li>span:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.pager li>a.disabled,.pager li>a.disabled.active,.pager li>a.disabled:active,.pager li>a.disabled:focus,.pager li>a.disabled:hover,.pager li>a[disabled],.pager li>a[disabled].active,.pager li>a[disabled]:active,.pager li>a[disabled]:focus,.pager li>a[disabled]:hover,.pager li>span.disabled,.pager li>span.disabled.active,.pager li>span.disabled:active,.pager li>span.disabled:focus,.pager li>span.disabled:hover,.pager li>span[disabled],.pager li>span[disabled].active,.pager li>span[disabled]:active,.pager li>span[disabled]:focus,.pager li>span[disabled]:hover,fieldset[disabled] .pager li>a,fieldset[disabled] .pager li>a.active,fieldset[disabled] .pager li>a:active,fieldset[disabled] .pager li>a:focus,fieldset[disabled] .pager li>a:hover,fieldset[disabled] .pager li>span,fieldset[disabled] .pager li>span.active,fieldset[disabled] .pager li>span:active,fieldset[disabled] .pager li>span:focus,fieldset[disabled] .pager li>span:hover{background-color:#f1f1f1;border-color:#bbb}.pager li>a>.i,.pager li>span>.i{font-size:18px;vertical-align:top;margin:2px 0}.pager li a:active{background-image:none;box-shadow:inset 0 3px 5px rgba(3,3,3,.125);outline:0}.pager .disabled>a,.pager .disabled>a:active,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{background:#f5f5f5;box-shadow:none;color:#8b8d8f;cursor:default}.pager .next>a>.i,.pager .next>span>.i{margin-left:5px}.pager .previous>a>.i,.pager .previous>span>.i{margin-right:5px}.pager-sm li>a,.pager-sm li>span{font-weight:400;line-height:16px;padding:1px 10px}.pager-sm li>a>.i,.pager-sm li>span>.i{font-size:12px}.pagination>li>a,.pagination>li>span{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;cursor:default;font-weight:600;padding:2px 10px}.pagination>li>a .open .dropdown-toggle.pagination>li>a,.pagination>li>a .pagination>li>span,.pagination>li>a.active,.pagination>li>a:active,.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span .open .dropdown-toggle.pagination>li>a,.pagination>li>span .pagination>li>span,.pagination>li>span.active,.pagination>li>span:active,.pagination>li>span:focus,.pagination>li>span:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.pagination>li>a .open .dropdown-toggle.pagination>li>a,.pagination>li>a .pagination>li>span,.pagination>li>a.active,.pagination>li>a:active,.pagination>li>span .open .dropdown-toggle.pagination>li>a,.pagination>li>span .pagination>li>span,.pagination>li>span.active,.pagination>li>span:active{background-image:none}.pagination>li>a .open .dropdown-toggle.pagination>li>a.focus,.pagination>li>a .open .dropdown-toggle.pagination>li>a:focus,.pagination>li>a .open .dropdown-toggle.pagination>li>a:hover,.pagination>li>a .pagination>li>span.focus,.pagination>li>a .pagination>li>span:focus,.pagination>li>a .pagination>li>span:hover,.pagination>li>a.active.focus,.pagination>li>a.active:focus,.pagination>li>a.active:hover,.pagination>li>a:active.focus,.pagination>li>a:active:focus,.pagination>li>a:active:hover,.pagination>li>span .open .dropdown-toggle.pagination>li>a.focus,.pagination>li>span .open .dropdown-toggle.pagination>li>a:focus,.pagination>li>span .open .dropdown-toggle.pagination>li>a:hover,.pagination>li>span .pagination>li>span.focus,.pagination>li>span .pagination>li>span:focus,.pagination>li>span .pagination>li>span:hover,.pagination>li>span.active.focus,.pagination>li>span.active:focus,.pagination>li>span.active:hover,.pagination>li>span:active.focus,.pagination>li>span:active:focus,.pagination>li>span:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.pagination>li>a.disabled,.pagination>li>a.disabled.active,.pagination>li>a.disabled:active,.pagination>li>a.disabled:focus,.pagination>li>a.disabled:hover,.pagination>li>a[disabled],.pagination>li>a[disabled].active,.pagination>li>a[disabled]:active,.pagination>li>a[disabled]:focus,.pagination>li>a[disabled]:hover,.pagination>li>span.disabled,.pagination>li>span.disabled.active,.pagination>li>span.disabled:active,.pagination>li>span.disabled:focus,.pagination>li>span.disabled:hover,.pagination>li>span[disabled],.pagination>li>span[disabled].active,.pagination>li>span[disabled]:active,.pagination>li>span[disabled]:focus,.pagination>li>span[disabled]:hover,fieldset[disabled] .pagination>li>a,fieldset[disabled] .pagination>li>a.active,fieldset[disabled] .pagination>li>a:active,fieldset[disabled] .pagination>li>a:focus,fieldset[disabled] .pagination>li>a:hover,fieldset[disabled] .pagination>li>span,fieldset[disabled] .pagination>li>span.active,fieldset[disabled] .pagination>li>span:active,fieldset[disabled] .pagination>li>span:focus,fieldset[disabled] .pagination>li>span:hover{background-color:#f1f1f1;border-color:#bbb}.pagination>li>a>.i,.pagination>li>span>.i{font-size:15px;vertical-align:top;margin:2px 0}.pagination>li>a:active,.pagination>li>span:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{background-color:#f1f1f1;border-color:#bbb;box-shadow:inset 0 2px 8px rgba(3,3,3,.2);color:#4d5258;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{box-shadow:none;cursor:default;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.pagination-sm>li>a,.pagination-sm>li>span{padding:2px 6px;font-size:11px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pagination-sm>li>a,.pagination-sm>li>span{font-weight:400}.pagination-sm>li>a>.i,.pagination-sm>li>span>.i{font-size:12px;margin-top:2px}.content-view-pf-pagination{background-color:#f5f5f5;border:1px solid #d1d1d1;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between}.content-view-pf-pagination.table-view-pf-pagination{border-top:none}.content-view-pf-pagination .form-group{-ms-flex-align:baseline;align-items:baseline;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;float:left;margin:5px}@supports (display:flex){.content-view-pf-pagination .form-group{float:none}}.content-view-pf-pagination .form-group:last-child{-ms-flex-pack:end;justify-content:flex-end;float:right}@supports (display:flex){.content-view-pf-pagination .form-group:last-child{float:none}}.content-view-pf-pagination .form-group .pagination-pf-pagesize.bootstrap-select.btn-group,.content-view-pf-pagination .form-group .pagination-pf-pagesize.btn-group{display:-ms-flexbox;display:flex;float:none;margin-bottom:0;margin-left:0;margin-right:5px;width:auto}.content-view-pf-pagination .form-group .dropdown-menu{min-width:auto}.content-view-pf-pagination .pagination-pf-page{margin-left:10px;margin-right:5px;padding:0 2px 2px;text-align:right;width:2.5em}.content-view-pf-pagination .pagination{display:-ms-flexbox;display:flex;margin:0 0 0 10px}.content-view-pf-pagination .pagination a{float:none}@supports (display:flex){.content-view-pf-pagination .pagination a{display:block}}.panel-title{font-weight:700}.panel-group .panel{color:#4d5258}.panel-group .panel+.panel{margin-top:-1px}.panel-group .panel-default{border-color:#bbb;border-top-color:#bbb}.panel-group .panel-default .panel-heading{background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.panel-group .panel-default .panel-heading+.panel-collapse .panel-body{border-top:1px solid #d1d1d1}.panel-group .panel-info{border-color:#00659c}.panel-group .panel-info .panel-heading{background-color:#dae5f4}.panel-group .panel-info+.panel-default{border-top-color:#00659c}.panel-group .panel-primary{border-color:#39a5dc}.panel-group .panel-primary .panel-heading{background-color:#def0f9}.panel-group .panel-primary+.panel-default{border-top-color:#39a5dc}.panel-group .panel-primary+.panel-info{border-top-color:#39a5dc}.panel-group .panel-success{border-color:#3f9c35}.panel-group .panel-success .panel-heading{background-color:#e9f4e9}.panel-group .panel-success+.panel-default{border-top-color:#3f9c35}.panel-group .panel-success+.panel-info{border-top-color:#3f9c35}.panel-group .panel-success+.panel-primary{border-top-color:#3f9c35}.panel-group .panel-warning{border-color:#ec7a08}.panel-group .panel-warning .panel-heading{background-color:#fdf2e5}.panel-group .panel-warning+.panel-default{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-info{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-primary{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-success{border-top-color:#ec7a08}.panel-group .panel-danger{border-color:#c00}.panel-group .panel-danger .panel-heading{background-color:#ffe6e6}.panel-group .panel-danger+.panel-default{border-top-color:#c00}.panel-group .panel-danger+.panel-info{border-top-color:#c00}.panel-group .panel-danger+.panel-primary{border-top-color:#c00}.panel-group .panel-danger+.panel-success{border-top-color:#c00}.panel-group .panel-danger+.panel-warning{border-top-color:#c00}.panel-group .panel-title{font-weight:500;line-height:1}.panel-group .panel-title>a{color:#4d5258;font-weight:600}.panel-group .panel-title>a:before{content:"\f107";display:inline-block;font-family:FontAwesome;font-size:13px;margin-right:5px;text-align:center;vertical-align:0;width:8px}.panel-group .panel-title>a:focus{outline:0;text-decoration:none}.panel-group .panel-title>a:hover{text-decoration:none}.panel-group .panel-title>a.collapsed:before{content:"\f105"}.popover{box-shadow:0 2px 2px rgba(3,3,3,.08);padding:0}.popover-content{color:#4d5258;line-height:18px;padding:10px 14px}.popover-title{border-bottom:none;border-radius:0;color:#4d5258;font-size:13px;font-weight:700;min-height:34px}.popover-title .close{height:22px;position:absolute;right:8px;top:6px}.popover-title.closable{padding-right:30px}@keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}.progress{box-shadow:inset 0 0 1px rgba(3,3,3,.25)}.progress.progress-label-left,.progress.progress-label-top-right{overflow:visible;position:relative}.progress.progress-label-left{margin-left:40px}.progress.progress-sm{height:14px;margin-bottom:14px}.progress.progress-xs{height:6px;margin-bottom:6px}td>.progress:first-child:last-child{margin-bottom:0;margin-top:3px}.progress-bar{box-shadow:none}.progress-label-left .progress-bar span,.progress-label-right .progress-bar span,.progress-label-top-right .progress-bar span{color:#363636;position:absolute;text-align:right}.progress-label-left .progress-bar span{font-size:14px;left:-40px;top:0;width:35px}.progress-label-right .progress-bar span,.progress-label-top-right .progress-bar span{font-size:11px;overflow:hidden;right:0;text-overflow:ellipsis;white-space:nowrap}.progress-label-right .progress-bar span strong,.progress-label-top-right .progress-bar span strong{font-weight:600}.progress-label-right .progress-bar span{max-width:85px;top:0}.progress-label-top-right .progress-bar span{max-width:47%;top:-30px}.progress-label-left.progress-sm .progress-bar span,.progress-label-top-right.progress-sm .progress-bar span{font-size:12px}.progress-sm .progress-bar{line-height:14px}.progress-xs .progress-bar{line-height:6px}.progress-bar-remaining{background:0 0}.progress-container{position:relative}.progress-container.progress-description-left{padding-left:90px}.progress-container.progress-label-right{padding-right:90px}.progress-description{margin-bottom:10px;max-width:52%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.progress-description .count{font-size:20.004px;font-weight:300;line-height:1;margin-right:5px}.progress-description .fa,.progress-description .pficon{font-size:14px;margin-right:3px}.progress-description-left .progress-description{left:0;margin-bottom:0;max-width:85px;position:absolute;top:0}.progress-description .tooltip{white-space:normal}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:2px 10px 3px}.table>tbody>tr>td>a:hover,.table>tbody>tr>th>a:hover,.table>tfoot>tr>td>a:hover,.table>tfoot>tr>th>a:hover,.table>thead>tr>td>a:hover,.table>thead>tr>th>a:hover{text-decoration:none}.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>th{font-family:"Open Sans";font-style:normal;font-weight:600}.table>thead{background-clip:padding-box;background-color:#f5f5f5;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.table-bordered{border:1px solid #d1d1d1}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #d1d1d1}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:1px}.table-striped>tbody>tr:nth-of-type(even){background-color:#f5f5f5}.table-striped>tbody>tr:nth-of-type(odd){background-color:transparent}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#def3ff;border-bottom-color:#7dc3e8}.table-treegrid span.indent{margin-left:10px;margin-right:10px}.table-treegrid span.icon{display:inline-block;font-size:13px;margin-right:5px;min-width:10px;text-align:center}.table-treegrid span.collapse-icon,.table-treegrid span.expand-icon{cursor:pointer}.table-treegrid>tbody>tr.odd{background-color:#f5f5f5}.nav-tabs{font-size:14px}.nav-tabs>li>a{color:#4d5258;margin-right:-1px;padding-bottom:5px;padding-top:5px}.nav-tabs>li>a:active,.nav-tabs>li>a:focus,.nav-tabs>li>a:hover{background:0 0;border-color:#ededed;color:#252525}.nav-tabs>li>.dropdown-menu{border-top:0;border-color:#ededed}.nav-tabs>li>.dropdown-menu.pull-right{right:-1px}.nav-tabs+.nav-tabs-pf,.nav-tabs.nav-tabs-pf-secondary{font-size:12px}.nav-tabs+.nav-tabs-pf>li:first-child>a,.nav-tabs.nav-tabs-pf-secondary>li:first-child>a{padding-left:15px}.nav-tabs+.nav-tabs-pf>li:first-child>a:before,.nav-tabs.nav-tabs-pf-secondary>li:first-child>a:before{left:15px!important}.nav-tabs .open>a,.nav-tabs .open>a:focus,.nav-tabs .open>a:hover{background-color:transparent;border-color:#ededed}@media (min-width:768px){.nav-tabs-pf.nav-justified{border-bottom:1px solid #ededed}}.nav-tabs-pf.nav-justified>li:first-child>a{padding-left:15px}.nav-tabs-pf.nav-justified>li>a{border-bottom:0}.nav-tabs-pf.nav-justified>li>a:before{left:0!important;right:0!important}.nav-tabs-pf>li{margin-bottom:0}.nav-tabs-pf>li.active>a:before{background:#0088ce;bottom:-1px;content:"";display:block;height:2px;left:15px;position:absolute;right:15px}.nav-tabs-pf>li.active>a,.nav-tabs-pf>li.active>a:active,.nav-tabs-pf>li.active>a:focus,.nav-tabs-pf>li.active>a:hover{background-color:transparent;border:0!important;color:#0088ce}.nav-tabs-pf>li.active>a:active:before,.nav-tabs-pf>li.active>a:before,.nav-tabs-pf>li.active>a:focus:before,.nav-tabs-pf>li.active>a:hover:before{background:#0088ce}.nav-tabs-pf>li:first-child>a{padding-left:0}.nav-tabs-pf>li:first-child>a:before{left:0!important}.nav-tabs-pf>li>a{border:0;line-height:1;margin-right:0;padding-bottom:10px;padding-top:10px}.nav-tabs-pf>li>a:active:before,.nav-tabs-pf>li>a:focus:before,.nav-tabs-pf>li>a:hover:before{background:#bbb;bottom:-1px;content:"";display:block;height:2px;left:15px;position:absolute;right:15px}.nav-tabs-pf>li>.dropdown-menu{left:15px;margin-top:1px}.nav-tabs-pf>li>.dropdown-menu.pull-right{left:auto;right:15px}.nav-tabs-pf .open>a,.nav-tabs-pf .open>a:focus,.nav-tabs-pf .open>a:hover{background-color:transparent}.tooltip{font-size:12px;line-height:1.4}.tooltip-inner{padding:7px 12px;text-align:left}.h1,.h2,h1,h2{font-weight:300}.page-header .actions{margin-top:8px}.page-header .actions a>.pficon{margin-right:4px}@media (min-width:767px){.page-header-bleed-left{margin-left:-20px}.page-header-bleed-right{margin-right:-20px}.page-header-bleed-right .actions{margin-right:20px}}.about-modal-pf{background-color:#292e34;background-image:url(../img/bg-modal-about-pf.png);background-position:right bottom;background-repeat:no-repeat;background-size:216px auto}@media (min-width:768px){.about-modal-pf{background-size:auto}}.about-modal-pf .modal-body{color:#fff;padding-bottom:16px;padding-left:40px;padding-right:40px}@media (min-width:768px){.about-modal-pf .modal-body{padding-left:80px;padding-right:80px}}.about-modal-pf .modal-header{background-color:transparent}.about-modal-pf .pficon-close{color:#fff}.product-versions-pf{margin-bottom:30px;margin-top:30px}.product-versions-pf li strong{margin-right:10px}.trademark-pf{font-size:11px}.applauncher-pf{display:inline-block;overflow:visible}.applauncher-pf .applauncher-pf-title{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.applauncher-pf .dropdown-toggle.disabled{cursor:not-allowed}.applauncher-pf.open>.dropdown-menu{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.applauncher-pf .applauncher-pf-item{width:100%}.applauncher-pf .applauncher-pf-link{display:-ms-flexbox;display:flex;white-space:initial;-ms-flex-align:center;align-items:center}@media (min-width:768px){.applauncher-pf-block-list .applauncher-pf-item{-ms-flex:0 0 50%;flex:0 0 50%}}.applauncher-pf-block-list .applauncher-pf-link{-ms-flex-wrap:wrap;flex-wrap:wrap}@media (min-width:768px){.applauncher-pf-block-list .applauncher-pf-link{-ms-flex-direction:column;flex-direction:column;text-align:center;padding:15px 0}}.applauncher-pf-block-list .applauncher-pf-link-icon{padding:0}@media (min-width:768px){.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link{padding:9px}.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon{-ms-flex:1 0 0px;flex:1 0 0;text-align:left}.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title{-ms-flex:3;flex:3}}.applauncher-pf .dropdown-menu{padding:9px;min-width:220px}.applauncher-pf .applauncher-pf-link{border-style:solid;border-width:1px;border-color:transparent}.applauncher-pf .applauncher-pf-link:hover{background-color:#f5f5f5;border-color:#bbb;color:#0088ce;text-decoration:none;box-shadow:0 0 2px 0 #d1d1d1}.applauncher-pf .applauncher-pf-link-icon{font-size:1.2em;text-align:center;width:1.2857142857em}@media (min-width:768px){.applauncher-pf .applauncher-pf-link-icon{font-size:2em}}.navbar-utility .applauncher-pf .dropdown-menu{border-width:1px!important}@media (min-width:768px){.navbar-utility .applauncher-pf .dropdown-menu{margin-top:3px;right:0}}.navbar-pf .applauncher-pf.open>a,.navbar-pf .applauncher-pf.open>a:focus,.navbar-pf .navbar-utility .applauncher-pf.open>a,.navbar-pf .navbar-utility .applauncher-pf.open>a:focus,.navbar-pf-alt .applauncher-pf.open>a,.navbar-pf-alt .applauncher-pf.open>a:focus,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a:focus{background-color:#232323;color:#f5f5f5}@media (min-width:768px){.navbar-pf .applauncher-pf.open>a,.navbar-pf .applauncher-pf.open>a:focus,.navbar-pf .navbar-utility .applauncher-pf.open>a,.navbar-pf .navbar-utility .applauncher-pf.open>a:focus,.navbar-pf-alt .applauncher-pf.open>a,.navbar-pf-alt .applauncher-pf.open>a:focus,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a:focus{background-color:#363636;border-color:#2b2b2b;color:#d1d1d1}}@media (max-width:767px){.navbar-pf .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf-alt .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu>li>a{padding-left:20px}.navbar-pf .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon{padding-right:20px}}.navbar-pf .applauncher-pf .dropdown-toggle,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .applauncher-pf .dropdown-toggle,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{background-color:inherit;color:#d1d1d1;text-align:left;text-decoration:none;border-width:0;display:block;padding-left:20px}.navbar-pf .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle.disabled{color:#8b8d8f!important}@media (min-width:768px){.navbar-pf .applauncher-pf .dropdown-toggle,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .applauncher-pf .dropdown-toggle,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{border-left:1px solid #2b2b2b;padding:7px 10px;line-height:1}}.navbar-pf .applauncher-pf .applauncher-pf-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon{padding-right:4px}@media (min-width:768px){.navbar-pf .applauncher-pf .applauncher-pf-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon{padding:0}}.navbar-pf .applauncher-pf .applauncher-pf-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title{display:inline;position:relative}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{overflow:hidden;width:100%}.navbar-pf .applauncher-pf .applauncher-pf-link:hover,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover{background-color:transparent;border-color:transparent;box-shadow:none}.navbar-pf .applauncher-pf .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-title{overflow:hidden}@media (min-width:768px){.navbar-pf .applauncher-pf,.navbar-pf .navbar-utility .applauncher-pf,.navbar-pf-alt .applauncher-pf,.navbar-pf-alt .navbar-utility .applauncher-pf{display:inline-block;overflow:visible}.navbar-pf .applauncher-pf .applauncher-pf-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.navbar-pf .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled{cursor:not-allowed}.navbar-pf .applauncher-pf.open>.dropdown-menu,.navbar-pf .navbar-utility .applauncher-pf.open>.dropdown-menu,.navbar-pf-alt .applauncher-pf.open>.dropdown-menu,.navbar-pf-alt .navbar-utility .applauncher-pf.open>.dropdown-menu{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.navbar-pf .applauncher-pf .applauncher-pf-item,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-item,.navbar-pf-alt .applauncher-pf .applauncher-pf-item,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-item{width:100%}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{display:-ms-flexbox;display:flex;white-space:initial;-ms-flex-align:center;align-items:center}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-item{-ms-flex:0 0 50%;flex:0 0 50%}}@media (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link{-ms-flex-direction:column;flex-direction:column;text-align:center;padding:15px 0}}@media (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon{padding:0}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link{padding:9px}.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon{-ms-flex:1 0 0px;flex:1 0 0;text-align:left}.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title{-ms-flex:3;flex:3}}@media (min-width:768px){.navbar-pf .applauncher-pf .dropdown-menu,.navbar-pf .navbar-utility .applauncher-pf .dropdown-menu,.navbar-pf-alt .applauncher-pf .dropdown-menu,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-menu{padding:9px;min-width:220px}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{border-style:solid;border-width:1px;border-color:transparent}.navbar-pf .applauncher-pf .applauncher-pf-link:hover,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover{background-color:#f5f5f5;border-color:#bbb;color:#0088ce;text-decoration:none;box-shadow:0 0 2px 0 #d1d1d1}.navbar-pf .applauncher-pf .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon{font-size:1.2em;text-align:center;width:1.2857142857em}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon{font-size:2em}}@media (min-width:768px){.navbar-iconic .applauncher-pf .dropdown-toggle,.navbar-iconic .applauncher-pf.dropdown>.dropdown-toggle,.navbar-iconic .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-iconic .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{padding:22px 10px;line-height:inherit}}.blank-slate-pf{background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:1px;margin-bottom:20px;padding:30px;text-align:center}@media (min-width:768px){.blank-slate-pf{padding:60px 60px}}@media (min-width:992px){.blank-slate-pf{padding:90px 120px}}.blank-slate-pf .blank-slate-pf-icon{color:#9c9c9c;font-size:57.6px;line-height:57.6px}.blank-slate-pf .blank-slate-pf-main-action{margin-top:20px}.blank-slate-pf .blank-slate-pf-secondary-action{margin-top:20px}.blank-slate-pf button{margin-right:5px}.blank-slate-pf button:last-of-type{margin-right:0}.combobox-container.combobox-selected .glyphicon-remove{display:inline-block}.combobox-container .caret{margin-left:0}.combobox-container .combobox::-ms-clear{display:none}.combobox-container .dropdown-menu{margin-top:-1px;width:100%}.combobox-container .glyphicon-remove{display:none;top:auto;width:12px}.combobox-container .glyphicon-remove:before{content:"\e60b";font-family:PatternFlyIcons-webfont}.combobox-container .input-group-addon{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;position:relative}.combobox-container .input-group-addon .open .dropdown-toggle.combobox-container .input-group-addon,.combobox-container .input-group-addon.active,.combobox-container .input-group-addon:active,.combobox-container .input-group-addon:focus,.combobox-container .input-group-addon:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.combobox-container .input-group-addon .open .dropdown-toggle.combobox-container .input-group-addon,.combobox-container .input-group-addon.active,.combobox-container .input-group-addon:active{background-image:none}.combobox-container .input-group-addon .open .dropdown-toggle.combobox-container .input-group-addon.focus,.combobox-container .input-group-addon .open .dropdown-toggle.combobox-container .input-group-addon:focus,.combobox-container .input-group-addon .open .dropdown-toggle.combobox-container .input-group-addon:hover,.combobox-container .input-group-addon.active.focus,.combobox-container .input-group-addon.active:focus,.combobox-container .input-group-addon.active:hover,.combobox-container .input-group-addon:active.focus,.combobox-container .input-group-addon:active:focus,.combobox-container .input-group-addon:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.combobox-container .input-group-addon.disabled,.combobox-container .input-group-addon.disabled.active,.combobox-container .input-group-addon.disabled:active,.combobox-container .input-group-addon.disabled:focus,.combobox-container .input-group-addon.disabled:hover,.combobox-container .input-group-addon[disabled],.combobox-container .input-group-addon[disabled].active,.combobox-container .input-group-addon[disabled]:active,.combobox-container .input-group-addon[disabled]:focus,.combobox-container .input-group-addon[disabled]:hover,fieldset[disabled] .combobox-container .input-group-addon,fieldset[disabled] .combobox-container .input-group-addon.active,fieldset[disabled] .combobox-container .input-group-addon:active,fieldset[disabled] .combobox-container .input-group-addon:focus,fieldset[disabled] .combobox-container .input-group-addon:hover{background-color:#f1f1f1;border-color:#bbb}.combobox-container .input-group-addon:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.bootstrap-datepicker.form-control[readonly]{background-color:#fff;border-color:#bbb!important;color:#363636;box-shadow:inset 0 1px 1px rgba(3,3,3,.075)}.bootstrap-datepicker.form-control[readonly]:focus{border-color:#0088ce;outline:0!important;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6)}.bootstrap-datepicker.form-control[readonly]:focus{border-color:#0088ce!important}.has-error .bootstrap-datepicker.form-control[readonly]:focus{border-color:#900;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33}.has-success .bootstrap-datepicker.form-control[readonly]:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168}.has-warning .bootstrap-datepicker.form-control[readonly]:focus{border-color:#bb6106;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60}.bootstrap-datepicker.form-control[readonly]:hover{border-color:#7dc3e8!important}.has-error .bootstrap-datepicker.form-control[readonly]:hover{border-color:#900!important}.has-success .bootstrap-datepicker.form-control[readonly]:hover{border-color:#2b542c!important}.has-warning .bootstrap-datepicker.form-control[readonly]:hover{border-color:#bb6106!important}.has-error .bootstrap-datepicker.form-control[readonly]{border-color:#c00!important}.has-success .bootstrap-datepicker.form-control[readonly]{border-color:#3c763d!important}.has-warning .bootstrap-datepicker.form-control[readonly]{border-color:#ec7a08!important}.datepicker{border-radius:1px}.datepicker .datepicker-switch,.datepicker tfoot .clear,.datepicker tfoot .today{font-size:14px;font-weight:500}.datepicker .next,.datepicker .prev{font-weight:500}.datepicker table tr td,.datepicker table tr th{border-radius:1px}.datepicker table tr td.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active:hover{background:#0088ce!important;color:#fff!important;text-shadow:none}.datepicker table tr td.day.focused,.datepicker table tr td.day:hover{background:#def3ff}.datepicker table tr td.selected,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected:hover{text-shadow:none}.datepicker table tr td span{border-radius:1px}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover{background:#0088ce;text-shadow:none}.datepicker table tr td span:hover{background:#def3ff}.datepicker tfoot tr th:hover,.datepicker thead tr:first-child th:hover{background:#def3ff}.input-daterange input:first-child{border-radius:1px 0 0 1px}.input-daterange input:last-child{border-radius:0 1px 1px 0}.input-daterange .input-group-addon{background-color:#f1f1f1;border-color:#bbb;line-height:1.66666667;padding:2px 6px}.bootstrap-select.btn-group.form-control{margin-bottom:0}.bootstrap-select.btn-group .btn{transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.bootstrap-select.btn-group .btn:hover{border-color:#7dc3e8}.bootstrap-select.btn-group .btn .caret{margin-top:-4px}.bootstrap-select.btn-group .btn:focus{border-color:#0088ce;outline:0!important;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6)}.has-error .bootstrap-select.btn-group .btn{border-color:#c00}.has-error .bootstrap-select.btn-group .btn:focus{border-color:#900;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33}.has-success .bootstrap-select.btn-group .btn{border-color:#3c763d}.has-success .bootstrap-select.btn-group .btn:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168}.has-warning .bootstrap-select.btn-group .btn{border-color:#ec7a08}.has-warning .bootstrap-select.btn-group .btn:focus{border-color:#bb6106;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60}.bootstrap-select.btn-group .dropdown-menu>.active>a,.bootstrap-select.btn-group .dropdown-menu>.active>a:active{background-color:#def3ff!important;border-color:#bee1f4!important;color:#363636!important}.bootstrap-select.btn-group .dropdown-menu>.active>a small,.bootstrap-select.btn-group .dropdown-menu>.active>a:active small{color:#9c9c9c!important}.bootstrap-select.btn-group .dropdown-menu>.disabled>a{color:#9c9c9c!important}.bootstrap-select.btn-group .dropdown-menu>.selected>a{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.bootstrap-select.btn-group .dropdown-menu>.selected>a small{color:rgba(255,255,255,.5)!important}.bootstrap-select.btn-group .dropdown-menu .divider{background:#ededed!important;margin:4px 1px!important}.bootstrap-select.btn-group .dropdown-menu dt{color:#8b8d8f;font-weight:400;padding:1px 10px}.bootstrap-select.btn-group .dropdown-menu li>a.opt{padding:1px 10px}.bootstrap-select.btn-group .dropdown-menu li a:active small{color:rgba(255,255,255,.5)!important}.bootstrap-select.btn-group .dropdown-menu li a:focus small,.bootstrap-select.btn-group .dropdown-menu li a:hover small{color:#9c9c9c}.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:focus small,.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:hover small{color:#9c9c9c}.slider-tick-label-container{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;margin-left:0!important}.slider-tick-label{width:auto!important}.slider .tooltip{top:-10px}.slider-track{background-color:#ededed;box-shadow:inset 0 2px 3px rgba(0,0,0,.1),0 0 2px #ededed;border:1px solid #bbb}.slider-selection{background-image:linear-gradient(to bottom,#0088ce 0,#39a5dc 100%);background-repeat:repeat-x}.slider-handle{width:16px;height:16px;border:1px solid #bbb}.slider-tick{background-color:transparent!important;background-image:radial-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3) 2px,transparent 2px)!important;box-shadow:none}.slider-pf{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.slider-pf *{margin-right:10px}.slider-pf :last-child{margin:0}.slider-pf .slider{width:auto;-ms-flex:1 1 100%;flex:1 1 100%}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default{background:#fafafa}.bootstrap-switch .bootstrap-switch-label{background:#f1f1f1;box-shadow:0 0 2px rgba(3,3,3,.4);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;position:relative;z-index:9}.bootstrap-touchspin .input-group-btn-vertical>.btn{padding-bottom:6px;padding-top:6px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{border-bottom-right-radius:1px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-top-right-radius:1px}.bootstrap-touchspin .input-group-btn-vertical i{font-size:8px;left:6px;top:2px}.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up{font-size:12px;line-height:12px;top:0}.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up{left:7px}.treeview .list-group{border-top:0}.treeview .list-group-item{background:0 0;border-bottom:1px solid transparent!important;border-top:1px solid transparent!important;cursor:default!important;margin-bottom:0;overflow:hidden;padding:0 10px;text-overflow:ellipsis;white-space:nowrap}.treeview .list-group-item:hover{background:0 0!important}.treeview .list-group-item.node-selected{background:0 0!important;border-color:transparent!important;color:inherit!important}.treeview .list-group-item.node-check-changed span.node-icon,.treeview .list-group-item.node-check-changed span.text{color:#39a5dc}.treeview span.icon{display:inline-block;font-size:13px;min-width:10px;text-align:center}.treeview span.icon>[class*=fa-angle]{font-size:15px}.treeview span.icon.check-icon{margin-right:10px}.treeview span.icon.expand-icon{cursor:pointer!important}.treeview span.image{background-repeat:no-repeat;background-size:contain;display:inline-block;height:1.19em;line-height:1em;margin-right:5px;vertical-align:middle;width:12px}.treeview span.indent{margin-right:5px}.treeview .node-disabled{color:#d1d1d1;cursor:not-allowed}.treeview .node-disabled span.expand-icon{cursor:default!important}.treeview .node-hidden{display:none}.treeview-pf-hover .list-group-item{cursor:pointer!important}.treeview-pf-hover .list-group-item:hover{background-color:#def3ff!important;border-color:#bee1f4!important}.treeview-pf-select .list-group-item{cursor:pointer!important}.treeview-pf-select .list-group-item.node-selected{background:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.card-pf-view{border:2px solid transparent}.card-pf-view .card-pf-heading-kebab .dropdown-kebab-pf{margin-top:-3px}.card-pf-view .card-pf-heading-kebab+.progress-pf-legend p{margin-bottom:0}.card-pf-view .card-pf-heading-kebab+.progress-pf-legend .progress{margin-bottom:7px;margin-top:16px}.card-pf-view .card-pf-info{margin-top:15px}.card-pf-view .card-pf-info strong{font-size:13px;margin-right:10px}.card-pf-view .card-pf-item{display:inline-block;font-size:16px;padding:0 13px 0 15px}.card-pf-view .card-pf-item:first-child{padding-left:0}.card-pf-view .card-pf-item:last-child{padding-right:0}.card-pf-view .card-pf-item+.card-pf-item{border-left:1px solid #d1d1d1}.card-pf-view .card-pf-item .fa-check{color:#3f9c35}.card-pf-view .card-pf-item .fa+.card-pf-item-text,.card-pf-view .card-pf-item .pficon+.card-pf-item-text{margin-left:10px}.card-pf-view .card-pf-items{margin-top:15px}.card-pf-view .card-pf-title{font-size:20px;font-weight:300;margin-bottom:0;margin-top:15px}.card-pf-view .card-pf-title .fa,.card-pf-view .card-pf-title .pficon{font-size:18px;margin-right:2px}.col-lg-2 .card-pf-view .card-pf-title{font-size:16px}.card-pf-view .card-pf-top-element .card-pf-icon-circle{border:2px solid #39a5dc;border-radius:50%;display:block;font-size:46px;height:106px;line-height:102px;margin:0 auto;text-align:center;width:106px}.col-lg-2 .card-pf-view .card-pf-top-element .card-pf-icon-circle{font-size:23px;height:54px;line-height:50px;width:54px}.card-pf-view .card-pf-view-checkbox{position:absolute;top:11px;left:15px}.card-pf-view .card-pf-view-checkbox input[type=checkbox]{display:none}.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]{display:block}@media (min-width:768px){.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]{visibility:hidden}.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]:checked{visibility:visible}}.card-pf-view.card-pf-view-multi-select:hover .card-pf-view-checkbox input[type=checkbox]{visibility:visible}.card-pf-view.card-pf-view-select{position:relative}.card-pf-view.card-pf-view-select:hover{box-shadow:0 1px 6px rgba(3,3,3,.35)}.card-pf-view.card-pf-view-select.active{border:2px solid #39a5dc}.card-pf-view.card-pf-view-single-select{cursor:pointer}.card-pf-view.card-pf-view-xs .card-pf-title{font-size:16px;font-weight:400;margin-bottom:10px}.card-pf-view.card-pf-view-xs .card-pf-title .fa,.card-pf-view.card-pf-view-xs .card-pf-title .pficon{font-size:14px;margin-right:5px}.card-pf{background:#fff;border-top:2px solid transparent;box-shadow:0 1px 1px rgba(3,3,3,.175);margin:0 -10px 20px;padding:0 20px}.card-pf.card-pf-accented{border-top-color:#39a5dc}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a,.card-pf.card-pf-aggregate-status .card-pf-title a{color:#363636}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add,.card-pf.card-pf-aggregate-status .card-pf-title a.add{color:#0088ce}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add:hover,.card-pf.card-pf-aggregate-status .card-pf-title a.add:hover{color:#00659c}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a:hover,.card-pf.card-pf-aggregate-status .card-pf-title a:hover{color:#00659c}.card-pf.card-pf-aggregate-status{padding:0 10px;text-align:center}.card-pf.card-pf-aggregate-status-mini{padding-bottom:10px;position:relative}@media (min-width:768px){.card-pf.card-pf-bleed-left{margin-left:-20px}.card-pf.card-pf-bleed-right{border-right:1px solid #d1d1d1;margin-right:-20px}}.card-pf-aggregate-status-notifications{font-size:24px;font-weight:300}.card-pf-aggregate-status-mini .card-pf-aggregate-status-notifications{line-height:1}.card-pf-aggregate-status-notifications .card-pf-aggregate-status-notification+.card-pf-aggregate-status-notification{border-left:1px solid #d1d1d1;margin-left:3px;padding-left:10px}.card-pf-aggregate-status-notifications .fa,.card-pf-aggregate-status-notifications .pficon{font-size:18px;margin-right:7px}.card-pf-body{margin:20px 0 0;padding:0 0 20px}.card-pf-aggregate-status .card-pf-body{margin-top:10px;padding-bottom:10px}.card-pf-aggregate-status-mini .card-pf-body{margin-bottom:0;margin-top:0;padding-bottom:0;position:absolute;right:20px;top:15px}.card-pf-utilization .card-pf-title+.card-pf-body{margin-top:-8px}.card-pf-body>:last-child{margin-bottom:0}.card-pf-footer{background-color:#fafafa;border-top:1px solid #d1d1d1;margin:0 -20px!important;padding:20px 20px 10px}.card-pf-footer a>.fa,.card-pf-footer a>.pficon{margin-right:5px}.card-pf-footer .card-pf-time-frame-filter{margin-top:-2px}.card-pf-link-with-icon{padding-left:21px;position:relative}.card-pf-link-with-icon .fa,.card-pf-link-with-icon .pficon{font-size:16px;left:0;position:absolute;top:0}.card-pf-footer .card-pf-time-frame-filter,.card-pf-heading .card-pf-time-frame-filter{float:right;margin-left:20px}.card-pf-heading{border-bottom:1px solid #d1d1d1;margin:0 -20px 20px;padding:0 20px 0}.card-pf-heading .card-pf-time-frame-filter{margin-top:-5px}.card-pf-heading-details{float:right;font-size:10px}.card-pf-subtitle{font-size:16px;margin-top:20px;margin-bottom:10px}[class^=col] .card-pf-subtitle{margin-top:0}@media (max-width:767px){.card-pf-body [class^=col]+[class^=col]>.card-pf-subtitle{margin-top:40px}}.card-pf-title{font-size:16px;font-weight:400;margin:20px 0;padding:0}.card-pf-aggregate-status .card-pf-title{font-size:14px;margin:10px 0 0}.card-pf-aggregate-status .card-pf-title .fa,.card-pf-aggregate-status .card-pf-title .pficon{color:#292e34;font-size:16px;margin-right:7px}.card-pf-title .card-pf-aggregate-status-count{font-size:16px}.card-pf-aggregate-status-mini .card-pf-title .card-pf-aggregate-status-count{display:block;font-size:24px;font-weight:300;margin-bottom:3px}.card-pf-aggregate-status-mini .card-pf-title{font-size:12px;margin-top:5px}.card-pf-aggregate-status-mini .card-pf-title a{display:inline-block}.card-pf-aggregate-status-mini .card-pf-title .fa,.card-pf-aggregate-status-mini .card-pf-title .pficon{font-size:26px;margin-right:0;min-width:26px;position:absolute;left:20px;text-align:center;top:15px}.card-pf-utilization-details{border-bottom:1px solid #d1d1d1;display:table;margin:12px 0 15px;padding:0 0 15px;width:100%}.card-pf-utilization-details .card-pf-utilization-card-details-count,.card-pf-utilization-details .card-pf-utilization-card-details-description{float:left;line-height:1}.card-pf-utilization-details .card-pf-utilization-card-details-count{font-size:26px;font-weight:300;margin-right:10px}.card-pf-utilization-details .card-pf-utilization-card-details-line-1,.card-pf-utilization-details .card-pf-utilization-card-details-line-2{display:block}.card-pf-utilization-details .card-pf-utilization-card-details-line-1{font-size:10px;margin-bottom:2px}.cards-pf{background:#f5f5f5}.cards-pf .row-cards-pf{padding:0 20px}.cards-pf .row-cards-pf:first-child{padding-top:20px}.container-cards-pf{margin-top:20px}.row-cards-pf{margin-left:-10px;margin-right:-10px}.c3 path{stroke:#d1d1d1}.c3 svg{font-family:"Open Sans",Helvetica,Arial,sans-serif}.c3-axis-x .tick line{stroke:#d1d1d1}.c3-axis-y .tick line{display:none}.c3-chart-arc path{stroke:#fff}.c3-grid line{stroke:#d1d1d1}.c3-line{stroke-width:2px}.c3-tooltip{background:#393f44;box-shadow:none;opacity:.9}.c3-tooltip td{background:0 0;border:0;color:#fff;font-size:12px;padding:5px 10px}.c3-tooltip th{background:0 0;font-size:12px;padding:5px 10px 0;border-bottom:solid 2px #030303}.c3-tooltip tr{border:0}.c3-tooltip tr+tr>td{padding-top:0}.c3-tooltip-sparkline,.donut-tooltip-pf{background:#393f44;color:#fff;opacity:.9;padding:2px 6px}.c3-xgrid,.c3-ygrid{stroke-dasharray:0 0}.chart-pf-sparkline{margin-left:-5px;margin-right:-5px}.donut-title-big-pf{font-size:30px;font-weight:300}.donut-title-small-pf{font-size:12px;font-weight:400}.line-chart-pf .c3-zoom-rect{opacity:1!important;fill:#fafafa;stroke:#d1d1d1;stroke-width:1px}.pct-donut-chart-pf .pct-donut-chart-pf-label{display:block}.pct-donut-chart-pf .pct-donut-chart-pf-left,.pct-donut-chart-pf .pct-donut-chart-pf-right,.pct-donut-chart-pf.pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-right{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.pct-donut-chart-pf.pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-right{display:-ms-inline-flexbox;display:inline-flex}.pct-donut-chart-pf .pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-left{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.close{text-shadow:none;z-index:1;position:relative;opacity:.6}.close:focus,.close:hover{opacity:.9}.ColVis_Button:active:focus{outline:0}.ColVis_catcher{position:absolute;z-index:999}.ColVis_collection{background-color:#fff;border:1px solid #bbb;border-radius:1px;box-shadow:0 6px 12px rgba(3,3,3,.175);background-clip:padding-box;list-style:none;margin:-1px 0 0 0;padding:5px 10px;width:150px;z-index:1000}.ColVis_collection label{font-weight:400;margin-bottom:5px;margin-top:5px;padding-left:20px}.ColVis_collectionBackground{background-color:#fff;height:100%;left:0;position:fixed;top:0;width:100%;z-index:998}.dataTables_header{background-color:#f5f5f5;border:1px solid #d1d1d1;border-bottom:none;padding:5px;position:relative;text-align:center}.dataTables_header .btn{box-shadow:none}.dataTables_header .ColVis{position:absolute;right:5px;text-align:left;top:5px}.dataTables_header .ColVis+.dataTables_info{padding-right:30px}.dataTables_header .dataTables_filter{position:absolute}.dataTables_header .dataTables_filter input{border:1px solid #bbb;height:24px}@media (max-width:767px){.dataTables_header .dataTables_filter input{width:100px}}.dataTables_header .dataTables_info{padding:2px 0}@media (max-width:480px){.dataTables_header .dataTables_info{text-align:right}}.dataTables_header .dataTables_info b{font-weight:700}.dataTables_footer{background-color:#fff;border:1px solid #d1d1d1;border-top:none;overflow:hidden}.dataTables_paginate{background:#fafafa;float:right;margin:0}.dataTables_paginate .pagination{float:left;margin:0}.dataTables_paginate .pagination>li>span{border-color:#fff #d1d1d1 #f5f5f5;border-width:0 1px;font-size:16px;font-weight:400;padding:0;text-align:center;width:31px}.dataTables_paginate .pagination>li.last>span{border-right:none}.dataTables_paginate .pagination>li.disabled>span{background:#f5f5f5;border-left-color:#ededed;border-right-color:#ededed}.dataTables_paginate .pagination-input{float:left;font-size:12px;line-height:1em;padding:4px 15px 0;text-align:right}.dataTables_paginate .pagination-input .paginate_input{border:1px solid #d1d1d1;box-shadow:inset 0 1px 1px rgba(3,3,3,.075);font-size:12px;font-weight:600;height:19px;margin-right:8px;padding-right:3px;text-align:right;width:30px}.dataTables_paginate .pagination-input .paginate_of{position:relative}.dataTables_paginate .pagination-input .paginate_of b{margin-left:3px}.dataTables_empty{background:#f5f5f5}.DTCR_clonedTable{background-color:rgba(255,255,255,.7);z-index:202}.DTCR_pointer{background-color:#0088ce;width:1px;z-index:201}.experimental-pf>*{border:2px solid #92d400}.experimental-pf-bar{background-color:#92d400;border:none;text-align:center;position:relative}.experimental-pf-more-info{background-color:#92d400;border:0;color:#030303;display:block;width:100%;padding-top:10px;padding-bottom:10px;position:static}@media (min-width:992px){.experimental-pf-more-info{padding:0 10px;position:absolute;right:0;top:0;width:auto}}@media (min-width:992px){.experimental-pf-text{padding-left:150px;padding-right:150px}}.experimental-pf-text a{color:#030303;text-decoration:underline}.experimental-pf-text a:hover{color:#030303;cursor:pointer}.btn-experimental-pf{background-color:#92d400;background-image:linear-gradient(to bottom,#ace12e 0,#92d400 100%);background-repeat:repeat-x;border-color:#92d400;color:#4d5258}.btn-experimental-pf .open .dropdown-toggle.btn-experimental-pf,.btn-experimental-pf.active,.btn-experimental-pf:active,.btn-experimental-pf:focus,.btn-experimental-pf:hover{background-color:#92d400;background-image:none;border-color:#92d400;color:#4d5258}.btn-experimental-pf .open .dropdown-toggle.btn-experimental-pf,.btn-experimental-pf.active,.btn-experimental-pf:active{background-image:none}.btn-experimental-pf .open .dropdown-toggle.btn-experimental-pf.focus,.btn-experimental-pf .open .dropdown-toggle.btn-experimental-pf:focus,.btn-experimental-pf .open .dropdown-toggle.btn-experimental-pf:hover,.btn-experimental-pf.active.focus,.btn-experimental-pf.active:focus,.btn-experimental-pf.active:hover,.btn-experimental-pf:active.focus,.btn-experimental-pf:active:focus,.btn-experimental-pf:active:hover{background-color:#80bb00;border-color:#79b000}.btn-experimental-pf.disabled,.btn-experimental-pf.disabled.active,.btn-experimental-pf.disabled:active,.btn-experimental-pf.disabled:focus,.btn-experimental-pf.disabled:hover,.btn-experimental-pf[disabled],.btn-experimental-pf[disabled].active,.btn-experimental-pf[disabled]:active,.btn-experimental-pf[disabled]:focus,.btn-experimental-pf[disabled]:hover,fieldset[disabled] .btn-experimental-pf,fieldset[disabled] .btn-experimental-pf.active,fieldset[disabled] .btn-experimental-pf:active,fieldset[disabled] .btn-experimental-pf:focus,fieldset[disabled] .btn-experimental-pf:hover{background-color:#92d400;border-color:#92d400}.filter-pf-category-select{display:-ms-flexbox;display:flex}.filter-pf-category-select-value{border-left-width:0}.filter-pf-category-item{margin-bottom:5px}.filter-pf-category-label{font-weight:700;margin-right:5px;padding:5px 0 6px 5px}.filter-pf-select .caret{position:absolute;top:50%;right:10px;-ms-transform:translateY(-50%);transform:translateY(-50%)}.filter-pf-select-dropdown{background-color:#fff;background-image:none;color:#8b8d8f;font-size:12px;font-style:italic;font-weight:400;padding-right:25px;text-align:left}.filter-pf-select-dropdown .caret{font-style:normal}.filter-pf-active-label{margin-right:5px}.footer-pf,.footer-pf-alt{background-color:#030303;color:#9c9c9c;font-size:11px;line-height:17px;padding-left:25px;padding-top:10px}.layout-pf-alt-fixed-with-footer .footer-pf,.layout-pf-alt-fixed-with-footer .footer-pf-alt,.layout-pf-fixed-with-footer .footer-pf,.layout-pf-fixed-with-footer .footer-pf-alt{bottom:0;left:0;position:fixed;right:0;z-index:1030}@font-face{font-family:PatternFlyIcons-webfont;src:url(../fonts/PatternFlyIcons-webfont.eot);src:url(../fonts/PatternFlyIcons-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/PatternFlyIcons-webfont.ttf) format("truetype"),url(../fonts/PatternFlyIcons-webfont.woff) format("woff"),url(../fonts/PatternFlyIcons-webfont.svg#PatternFlyIcons-webfont) format("svg");font-weight:400;font-style:normal}[class*=" pficon-"],[class^=pficon-]{display:inline-block;font-family:PatternFlyIcons-webfont;font-style:normal;font-variant:normal;font-weight:400;line-height:1;speak:none;text-transform:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.pficon-add-circle-o:before{content:""}.pficon-applications:before{content:""}.pficon-arrow:before{content:""}.pficon-asleep:before{content:""}.pficon-automation:before{content:""}.pficon-build:before{content:""}.pficon-builder-image:before{content:""}.pficon-bundle:before{content:""}.pficon-blueprint:before{content:""}.pficon-catalog:before{content:""}.pficon-chat:before{content:""}.pficon-close:before{content:""}.pficon-cloud-security:before{content:""}.pficon-cloud-tenant:before{content:""}.pficon-cluster:before{content:""}.pficon-connected:before{content:""}.pficon-container-node:before{content:""}.pficon-cpu:before{content:""}.pficon-degraded:before{content:""}.pficon-delete:before{content:""}.pficon-disconnected:before{content:""}.pficon-domain:before{content:""}.pficon-edit:before{content:""}.pficon-enhancement:before{content:""}.pficon-enterprise:before{content:""}.pficon-equalizer:before{content:""}.pficon-error-circle-o:before{color:#c00;content:""}.pficon-export:before{content:""}.pficon-flag:before,.pficon-messages:before{content:""}.pficon-flavor:before{content:""}.pficon-filter:before{content:""}.pficon-folder-close:before{content:""}.pficon-folder-open:before{content:""}.pficon-help:before{content:""}.pficon-history:before{content:""}.pficon-home:before{content:""}.pficon-image:before{content:""}.pficon-import:before{content:""}.pficon-in-progress:before{content:""}.pficon-info:before{content:""}.pficon-infrastructure:before{content:""}.pficon-integration:before{content:""}.pficon-key:before{content:""}.pficon-locked:before{content:""}.pficon-maintenance:before{content:""}.pficon-memory:before{content:""}.pficon-middleware:before{content:""}.pficon-migration:before{content:""}.pficon-monitoring:before{content:""}.pficon-network:before{content:""}.pficon-on:before{content:""}.pficon-on-running:before{content:""}.pficon-optimize:before{content:""}.pficon-orders:before{content:""}.pficon-off:before{content:""}.pficon-ok:before{color:#3f9c35;content:""}.pficon-paused:before{content:""}.pficon-pending:before{content:""}.pficon-plugged:before{content:""}.pficon-port:before{content:""}.pficon-print:before{content:""}.pficon-process-automation:before{content:""}.pficon-private:before{content:""}.pficon-project:before{content:""}.pficon-rebalance:before{content:""}.pficon-rebooting:before{content:""}.pficon-refresh:before,.pficon-restart:before{content:""}.pficon-regions:before{content:""}.pficon-registry:before{content:""}.pficon-remove:before{content:""}.pficon-replicator:before{content:""}.pficon-repository:before{content:""}.pficon-resource-pool:before{content:""}.pficon-resources-almost-empty:before{content:""}.pficon-resources-almost-full:before{content:""}.pficon-resources-full:before{content:""}.pficon-route:before{content:""}.pficon-running:before{content:""}.pficon-save:before{content:""}.pficon-screen:before{content:""}.pficon-search:before{content:""}.pficon-security:before{content:""}.pficon-server:before{content:""}.pficon-server-group:before{content:""}.pficon-service:before{content:""}.pficon-services:before{content:""}.pficon-service-catalog:before{content:""}.pficon-settings:before{content:""}.pficon-spinner:before{content:""}.pficon-spinner2:before{content:""}.pficon-storage-domain:before{content:""}.pficon-tenant:before{content:""}.pficon-thumb-tack-o:before{content:""}.pficon-topology:before{content:""}.pficon-trend-down:before{content:""}.pficon-trend-up:before{content:""}.pficon-unknown:before{content:""}.pficon-user:before{content:""}.pficon-users:before{content:""}.pficon-unlocked:before{content:""}.pficon-unplugged:before{content:""}.pficon-virtual-machine:before{content:""}.pficon-volume:before{content:""}.pficon-warning-triangle-o:before{color:#ec7a08;content:""}.pficon-zone:before{content:""}.navbar-nav>li>.dropdown-menu.infotip{border-top-width:1px!important;margin-top:10px}@media (max-width:767px){.navbar-pf .navbar-nav .open .dropdown-menu.infotip{background-color:#fff!important;margin-top:0}}.infotip{min-width:235px;padding:0}.infotip .list-group{border-top:0;margin:0;padding:8px 0}.infotip .list-group .list-group-item{border:none;margin:0 15px 0 34px;padding:5px 0}.infotip .list-group .list-group-item>.i{color:#4d5258;font-size:13px;left:-20px;position:absolute;top:8px}.infotip .list-group .list-group-item>a{color:#4d5258;line-height:13px}.infotip .list-group .list-group-item>.close{float:right}.infotip .footer{background-color:#f5f5f5;padding:6px 15px}.infotip .footer a:hover{color:#0088ce}.infotip .arrow,.infotip .arrow:after{border-color:transparent;border-style:solid;display:block;height:0;position:absolute;width:0}.infotip .arrow{border-width:11px}.infotip .arrow:after{border-width:10px;content:""}.infotip.bottom .arrow,.infotip.bottom-left .arrow,.infotip.bottom-right .arrow{border-bottom-color:#bbb;border-top-width:0;left:50%;margin-left:-11px;top:-11px}.infotip.bottom .arrow:after,.infotip.bottom-left .arrow:after,.infotip.bottom-right .arrow:after{border-top-width:0;border-bottom-color:#fff;content:" ";margin-left:-10px;top:1px}.infotip.bottom-left .arrow{left:20%}.infotip.bottom-right .arrow{left:80%}.infotip.top .arrow{border-bottom-width:0;border-top-color:#bbb;bottom:-11px;left:50%;margin-left:-11px}.infotip.top .arrow:after{border-bottom-width:0;border-top-color:#f5f5f5;bottom:1px;content:" ";margin-left:-10px}.infotip.right .arrow{border-left-width:0;border-right-color:#bbb;left:-11px;margin-top:-11px;top:50%}.infotip.right .arrow:after{bottom:-10px;border-left-width:0;border-right-color:#fff;content:" ";left:1px}.infotip.left .arrow{border-left-color:#bbb;border-right-width:0;margin-top:-11px;right:-11px;top:50%}.infotip.left .arrow:after{border-left-color:#fff;border-right-width:0;bottom:-10px;content:" ";right:1px}.layout-pf,.layout-pf body{min-height:100%}.layout-pf.layout-pf-fixed.transitions .container-pf-nav-pf-vertical{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf.layout-pf-fixed body{padding-top:60px}.layout-pf.layout-pf-fixed .navbar-pf{left:0;position:fixed;top:0;right:0;z-index:1030}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav{margin-left:75px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav.hidden-icons-pf{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hidden-nav{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hide-nav-pf{margin-left:0!important}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf,.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges,.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}@media (min-width:1200px){.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf{margin-left:400px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges{margin-left:500px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hidden-nav{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav{margin-left:275px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.nav-pf-vertical-with-badges{margin-left:325px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.hidden-icons-pf{margin-left:0}}.layout-pf.layout-pf-fixed-with-footer body{padding-bottom:37px}.layout-pf-alt,.layout-pf-alt body{min-height:100%}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll,.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll body{height:100%;min-height:0}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt{height:100%;overflow:auto}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt.container-cards-pf{margin-top:0;padding-top:20px}.layout-pf-alt.layout-pf-alt-fixed.transitions .container-pf-alt-nav-pf-vertical-alt{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt.layout-pf-alt-fixed body{padding-top:60px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt{margin-left:250px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.collapsed-nav{margin-left:75px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.hidden-nav{margin-left:0}.layout-pf-alt.layout-pf-alt-fixed-with-footer body{padding-bottom:37px}a.disabled{color:#8b8d8f;cursor:not-allowed;text-decoration:none}.list-pf{border-bottom:1px solid #ededed}.list-pf-item{border-color:#ededed;border-left-color:#fff;border-right-color:#fff;border-style:solid;border-width:1px;border-bottom:none}.list-pf-item:hover{background-color:#edf8ff}.list-pf-item.active{background-color:#ededed;border-color:#bbb;border-bottom-width:1px;border-bottom-style:solid}.list-pf-expansion{background-color:#fff}.list-pf-container{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;padding:20px}.list-pf-expansion .list-pf-container{border-top:1px solid #bbb}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-container{-ms-flex-align:center;align-items:center}}.list-pf-chevron{min-width:1.2em}.list-pf-chevron,.list-pf-select{margin-right:10px}.list-pf-chevron+.list-pf-content,.list-pf-select+.list-pf-content{border-left:1px solid #d1d1d1;padding-left:20px}.list-pf-chevron .fa,.list-pf-select .fa{font-size:22px}.list-pf-content-flex{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;min-width:0}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-content-flex{-ms-flex-align:center;align-items:center}}.list-pf-left{-ms-flex-positive:0;flex-grow:0;margin-left:0;margin-right:20px}.list-pf-icon{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.list-pf-icon-bordered{border-radius:50%;border:2px solid #39a5dc}.list-pf-icon-small{font-size:1.4em;height:30px;line-height:30px;width:30px}.list-pf-content-wrapper{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:0}@media (min-width:992px){.list-pf-content-wrapper{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.list-pf-content-wrapper>*+*{margin-left:40px}}.list-pf-stacked .list-pf-content-wrapper{-ms-flex-align:start;align-items:flex-start}.list-pf-main-content{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-preferred-size:70%;flex-basis:70%;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:0}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-main-content{-ms-flex-wrap:nowrap;flex-wrap:nowrap;width:auto}.list-pf:not(.list-pf-stacked) .list-pf-main-content>*+*{margin-left:40px}}.list-pf-title{-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:100%;flex-basis:100%;font-weight:700;min-width:0;word-wrap:break-word}.list-pf-description{-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:100%;flex-basis:100%;min-width:0;word-wrap:break-word}.list-pf-additional-content{display:-ms-flexbox;display:flex;-ms-flex-preferred-size:31%;flex-basis:31%;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between}.list-pf-actions{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-positive:0;flex-grow:0;margin-left:40px}.list-pf-actions>*+*{margin-left:10px}.list-view-pf-dnd .dndDragging.drag-original{display:none}.list-view-pf-dnd .dndDragging.drag-original .list-view-pf-dnd-original-items{display:block}.list-view-pf-dnd .dndDragging .list-view-pf-dnd-drag-items{display:inline-block}.list-view-pf-dnd .dndDragging .list-view-pf-dnd-original-items{display:none}.list-view-pf-dnd .dndPlaceholder{background-color:#ededed;padding:20px 0}.list-view-pf-dnd .list-group-item-header{margin-left:-10px}.list-view-pf-dnd .list-group-item-header:before{background-image:linear-gradient(to bottom,#0088ce 60%,#fff 0);background-position:left;background-repeat:repeat-y;background-size:2px 5px;border:4px solid #0088ce;border-color:#00659c;content:"";height:55px;left:4px;position:absolute;top:5px;width:10px}.list-view-pf-dnd-drag-items{display:none}.list-view-pf .list-group-item{-ms-flex-align:start;align-items:flex-start;background-clip:padding-box;border-color:transparent #fff;border-style:solid;border-width:1px;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-bottom:0;padding-top:0}.list-view-pf .list-group-item:after,.list-view-pf .list-group-item:before{content:" ";display:table}.list-view-pf .list-group-item:after{clear:both}.list-view-pf .list-group-item.list-view-pf-expand-active{background-color:#edf8ff;box-shadow:0 2px 6px rgba(3,3,3,.2);z-index:1}.list-view-pf .list-group-item.active{color:#555;background-color:#def3ff;background-clip:border-box;border-color:#bbb transparent transparent;z-index:auto}.list-view-pf .list-group-item:hover{background-color:#edf8ff;border-left-color:transparent;border-right-color:transparent}.list-view-pf .list-group-item.list-view-pf-expand-active{border:solid 1px #bbb}.list-view-pf .list-group-item.list-view-pf-expand-active:first-child{border-top-color:#bbb}.list-view-pf .list-group-item:first-child{border-top:1px solid transparent}@media (min-width:992px){.list-view-pf .list-group-item{-ms-flex-align:center;align-items:center}}.list-view-pf .list-group-item-heading{font-size:16px}.list-view-pf .list-group-item-heading small{display:block;font-size:9.6px;font-weight:400}@media (min-width:992px){.list-view-pf .list-group-item-heading{-ms-flex:1 0 calc(25% - 20px);flex:1 0 calc(25% - 20px);float:left;font-size:12px;margin:0 20px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:calc(25% - 20px)}}.list-view-pf .list-group-item-text{color:currentColor!important;margin-bottom:10px}@media (min-width:992px){.list-view-pf .list-group-item-text{-ms-flex:1 0 auto;flex:1 0 auto;float:left;margin:0 40px 0 0;width:calc(75% - 40px)}}.list-view-pf-actions{float:right;margin-bottom:20px;margin-left:20px;margin-top:20px;-ms-flex-order:2;order:2}.list-view-pf-actions .dropdown-kebab-pf,.list-view-pf-actions button,.list-view-pf-actions>a{margin-left:10px}.list-view-pf-top-align .list-view-pf-actions{-ms-flex-item-align:start;align-self:flex-start}.list-view-pf-additional-info{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@media (min-width:992px){.list-view-pf-additional-info{-ms-flex:1 0 auto;flex:1 0 auto;float:left;width:50%}}.list-view-pf-additional-info-item{-ms-flex-align:center;align-items:center;display:inline-block;display:-ms-flexbox;display:flex;margin-right:20px;max-width:100%;text-align:center}.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked{text-align:center;-ms-flex-direction:column;flex-direction:column}.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked strong{font-size:13px;line-height:1em}.list-view-pf-additional-info-item .fa,.list-view-pf-additional-info-item .pficon{font-size:16px;margin-right:10px}.list-view-pf-additional-info-item strong{font-size:16px;font-weight:600;margin-right:5px}.list-view-pf-additional-info-item:last-child{margin-right:0}.list-view-pf-additional-info-item-donut-chart{width:60px}.list-view-pf-body{-ms-flex-align:center;align-items:center;display:table-cell;-ms-flex:1;flex:1;min-width:0;vertical-align:top;width:100%}@media (min-width:992px){.list-view-pf-body{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}}.list-view-pf-checkbox{border-right:1px solid #d1d1d1;float:left;margin-bottom:20px;margin-right:15px;margin-top:20px;padding:3px 10px 3px 0}.list-view-pf-top-align .list-view-pf-checkbox{-ms-flex-item-align:start;align-self:flex-start}.list-view-pf-description{-ms-flex:1 0 50%;flex:1 0 50%}.list-view-pf-stacked .list-view-pf-description{display:block;-ms-flex:none;flex:none}@media (min-width:992px){.list-view-pf-description{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;float:left;width:50%}}.list-view-pf-left{display:table-cell;padding-right:20px;text-align:center;vertical-align:top}.list-view-pf-left .list-view-pf-calendar{font-size:11px;line-height:1em}.list-view-pf-left .list-view-pf-calendar strong{display:block;font-size:44px;font-weight:300;line-height:1em}.list-view-pf-left .fa,.list-view-pf-left .pficon{border-radius:50%;font-size:2em}.list-view-pf-left .fa.list-view-pf-icon-md,.list-view-pf-left .pficon.list-view-pf-icon-md{background-color:#f5f5f5;height:50px;line-height:50px;width:50px}.list-view-pf-left .fa.list-view-pf-icon-danger,.list-view-pf-left .pficon.list-view-pf-icon-danger{background-color:#ffe6e6;color:#c00}.list-view-pf-left .fa.list-view-pf-icon-info,.list-view-pf-left .pficon.list-view-pf-icon-info{color:#8b8d8f}.list-view-pf-left .fa.list-view-pf-icon-lg,.list-view-pf-left .pficon.list-view-pf-icon-lg{background-color:#f5f5f5;height:60px;line-height:60px;width:60px}.list-view-pf-left .fa.list-view-pf-icon-sm,.list-view-pf-left .pficon.list-view-pf-icon-sm{border:2px solid #39a5dc;font-size:1.4em;height:30px;line-height:30px;width:30px}.list-view-pf-left .fa.list-view-pf-icon-sm:before,.list-view-pf-left .pficon.list-view-pf-icon-sm:before{display:block;line-height:26px}.list-view-pf-left .fa.list-view-pf-icon-success,.list-view-pf-left .pficon.list-view-pf-icon-success{background-color:#e9f4e9;color:#3f9c35}.list-view-pf-left .fa.list-view-pf-icon-warning,.list-view-pf-left .pficon.list-view-pf-icon-warning{background-color:#fdf2e5;color:#ec7a08}.list-view-pf-main-info{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;min-width:0;padding-bottom:20px;padding-top:20px}@media (min-width:992px){.list-view-pf-main-info{-ms-flex-align:center;align-items:center}.list-view-pf-top-align .list-view-pf-main-info{-ms-flex-align:start;align-items:flex-start}}.list-view-pf-stacked .list-group-item-heading{float:none;font-size:16px;line-height:1.2em;margin-bottom:5px;margin-right:40px;width:auto}.list-view-pf-stacked .list-group-item-text{float:none;width:auto}.list-view-pf-view{background:#ededed;border:none;margin-top:30px}.list-group-item-header{box-sizing:content-box;cursor:pointer;margin:0 -15px;padding:0 15px;width:100%}.list-view-pf-expand{cursor:pointer;float:left;margin-bottom:20px;margin-right:2px;margin-top:20px;padding:3px 0}.list-view-pf-expand.active,.list-view-pf-expand:hover{color:#0088ce}.list-view-pf-additional-info-item .list-view-pf-expand{margin:0;padding:0}.list-view-pf-expand .fa-angle-right{cursor:pointer;font-size:17px;margin-right:5px;margin-top:2px;width:10px}.list-group-item-container{background:#fff;border-top:solid 1px #bbb;box-sizing:content-box;margin:-1px -15px 0;-ms-flex-order:3;order:3;padding:10px 15px;position:relative;width:100%}.login-pf{height:100%}.login-pf #brand{position:relative;top:-70px}.login-pf #brand img{display:block;height:18px;margin:0 auto;max-width:100%}@media (min-width:768px){.login-pf #brand img{margin:0;text-align:left}}.login-pf #badge{display:block;margin:20px auto 70px;position:relative;text-align:center}@media (min-width:768px){.login-pf #badge{float:right;margin-right:64px;margin-top:50px}}.login-pf body{background:#030303 url(../img/bg-login.jpg) repeat-x 50% 0;background-size:auto}@media (min-width:768px){.login-pf body{background-size:100% auto}}.login-pf .container{background-color:rgba(255,255,255,.055);clear:right;color:#fff;padding-bottom:40px;padding-top:20px;width:auto}@media (min-width:768px){.login-pf .container{bottom:13%;padding-left:80px;position:absolute;width:100%}}.login-pf .container .details p:first-child{border-top:1px solid rgba(255,255,255,.3);padding-top:25px;margin-top:25px}@media (min-width:768px){.login-pf .container .details{border-left:1px solid rgba(255,255,255,.3);padding-left:40px}.login-pf .container .details p:first-child{border-top:0;padding-top:0;margin-top:0}}.login-pf .container .details p{margin-bottom:2px}.login-pf .container .form-horizontal .control-label{font-size:13px;font-weight:400;text-align:left}.login-pf .container .form-horizontal .form-group:last-child,.login-pf .container .form-horizontal .form-group:last-child .help-block:last-child{margin-bottom:0}.login-pf .container .help-block{color:#fff}@media (min-width:768px){.login-pf .container .login{padding-right:40px}}.login-pf .container .submit{text-align:right}.login-pf-page .login-pf-brand{margin-top:20px;max-width:360px;width:70%}@media (min-width:768px){.login-pf-page .login-pf-brand{margin-top:62px}}.login-pf-page .login-pf-page-header{margin-bottom:20px;text-align:center}@media (min-width:768px){.login-pf-page .login-pf-page-header{margin-bottom:40px}}.login-pf-page .login-pf-page-header p{color:#fff;font-size:14px;margin-left:auto;margin-right:auto;margin-top:20px}.login-pf-page .card-pf{padding:10px 20px 30px 20px;margin-bottom:0}@media (min-width:768px){.login-pf-page .card-pf{padding:20px 40px 30px 40px}}.login-pf-page .card-pf p{color:#72767b}.login-pf-page .form-control{height:36px}.login-pf-page .checkbox-label{color:#72767b;font-weight:300;margin-bottom:15px}@media (min-width:768px){.login-pf-page .checkbox-label{margin:0}}.login-pf-page .btn-primary{margin-top:40px}.login-pf-page .login-pf-header{margin-bottom:20px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}@media (min-width:768px){.login-pf-page .login-pf-header{margin-bottom:30px}}.login-pf-page .login-pf-header h1,.login-pf-page .login-pf-header p{text-align:center}.login-pf-page .login-pf-header h1{font-size:16px}@media (min-width:768px){.login-pf-page .login-pf-header h1{font-size:24px}}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:auto;-ms-flex-item-align:end;align-self:flex-end}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle{color:#4d5258;background:0 0;padding:0 15px 0 0;font-weight:300}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle:not(:focus){box-shadow:none;border:1px solid transparent}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle .caret{right:0}.login-pf-page .login-pf-signup{margin:40px 0 0;font-size:15px;text-align:center}.login-pf-page .login-pf-signup a{margin-left:10px}.login-pf-page .login-pf-settings{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.login-pf-page .login-pf-page-footer{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.login-pf-page .login-pf-page-footer-links{display:-ms-flexbox;display:flex;margin:60px 0 0 0}.login-pf-page .login-pf-page-footer-links li:not(:last-of-type){position:relative;margin:0 20px 0 0}.login-pf-page .login-pf-page-footer-links li:not(:last-of-type):after{content:".";color:#fff;position:absolute;top:0;right:-10px}.login-pf-page .login-pf-page-footer-link{color:#fff;font-size:14px}.login-pf-page .login-pf-page-footer-sso-services{-ms-flex:1 0 100%;flex:1 0 100%;margin-top:40px;text-align:center;color:#fff}.login-pf-page .login-pf-page-footer-sso-services-logos{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0;margin:0;list-style:none;-ms-flex-pack:center;justify-content:center}.login-pf-page .login-pf-page-footer-sso-services-logos li{margin:0 5px 5px}.login-pf-page.login-pf-page-accounts{margin-left:20px;margin-right:20px}.login-pf-page .login-pf-accounts{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:840px;margin-left:auto;margin-right:auto}.login-pf-page .login-pf-accounts .login-pf-header,.login-pf-page .login-pf-accounts .login-pf-signup{-ms-flex-preferred-size:100%;flex-basis:100%}.login-pf-page .login-pf-social-section{-ms-flex-preferred-size:100%;flex-basis:100%;padding:0}@media (min-width:768px){.login-pf-page .login-pf-social-section{-ms-flex:0 1 50%;flex:0 1 50%;max-width:50%}}@media (min-width:768px){.login-pf-page .login-pf-social-section:first-of-type{padding-right:40px}.login-pf-page .login-pf-social-section:last-of-type{padding-left:39px;border-left:1px solid #d1d1d1}}.login-pf-page .login-pf-social{margin:40px 0 0 0}@media (min-width:768px){.login-pf-page .login-pf-social{margin:0}.login-pf-page .login-pf-social-double-col{-ms-flex-wrap:wrap;flex-wrap:wrap;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}.login-pf-page .login-pf-social-double-col .login-pf-social-link{-ms-flex-preferred-size:48%;flex-basis:48%}}.login-pf-page .login-pf-social:not(.login-pf-social-all) .login-pf-social-link-more{display:none}.login-pf-page .login-pf-social-link{margin-bottom:15px}.login-pf-page .login-pf-social-link a{display:block;padding:7px 0;font-size:14px;background:#f5f5f5;text-align:center;color:#72767b}.login-pf-page .login-pf-social-link a img{margin:0 10px 0 0;width:20px;height:20px}.login-pf-page .login-pf-social-link a:hover{text-decoration:none;background:#ededed}.login-pf-page .login-pf-social-toggle{float:right;padding:0}.login-pf-page .login-pf-social-toggle .caret{margin-left:5px}.login-pf-page .login-pf-social-toggle-active .caret{-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value{transition:opacity 0s .1s,opacity .1s linear}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .badge{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .list-group-item-value{transition:opacity .5s ease-out;transition-delay:150ms}.nav-pf-vertical-alt{background:#fff}.ie9.layout-pf-alt-fixed .nav-pf-vertical-alt{box-sizing:content-box}.layout-pf-alt-fixed .nav-pf-vertical-alt{border-right:1px solid #d1d1d1;bottom:0;overflow-x:hidden;overflow-y:auto;left:0;position:fixed;top:60px;width:250px;z-index:1030}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed{width:75px!important}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .badge{padding:2px 3px;right:21px;top:36px}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value{opacity:0}.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden{display:none}.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden.show-mobile-nav{box-shadow:0 0 3px rgba(3,3,3,.15);display:block!important}.layout-pf-alt-fixed-with-footer .nav-pf-vertical-alt{bottom:37px}.nav-pf-vertical-alt .list-group{border-top:0;margin-bottom:0}.nav-pf-vertical-alt .list-group-item{padding:0}.nav-pf-vertical-alt .list-group-item a{color:#363636;display:block;font-size:14px;height:63px;padding:17px 20px 17px 25px;position:relative;white-space:nowrap}.nav-pf-vertical-alt .list-group-item a:focus{color:#363636;text-decoration:none}.nav-pf-vertical-alt .list-group-item a:hover{color:#39a5dc;text-decoration:none}.nav-pf-vertical-alt .list-group-item.active{background-color:#fff;border-color:#f5f5f5}.nav-pf-vertical-alt .list-group-item.active:before{background:#39a5dc;content:" ";display:block;height:100%;left:0;position:absolute;top:0;width:5px}.nav-pf-vertical-alt .list-group-item.active a{color:#39a5dc}.nav-pf-vertical-alt .list-group-item .badge{background:#363636;border:1px solid #fff;border-radius:3px;color:#fff;font-weight:700;font-size:9px;padding:5px;position:absolute;right:15px;text-align:center;top:21px}.nav-pf-vertical-alt .list-group-item .badge.notifications{background:#0088ce}.nav-pf-vertical-alt .list-group-item .fa,.nav-pf-vertical-alt .list-group-item .glyphicon,.nav-pf-vertical-alt .list-group-item .pficon{float:left;font-size:18px;line-height:30px;margin-right:10px;text-align:center;width:18px}.nav-pf-vertical-alt .list-group-item .list-group-item-value{display:inline-block;line-height:30px;opacity:1;overflow:hidden;text-overflow:ellipsis;width:140px}.nav-pf-vertical-alt .list-group-item-separator{border-top-width:5px}.sidebar-pf .nav-pf-vertical-alt{margin-left:-20px;margin-right:-20px}.navbar-pf-alt{background-color:#030303;background-image:"bg-navbar-pf-alt.svg";background-repeat:no-repeat;background-size:auto 100%;border:none;border-radius:0;border-top:2px solid #39a5dc;margin-bottom:0}.navbar-pf-alt .infotip.bottom-right .arrow{left:90%}.layout-pf-alt-fixed .navbar-pf-alt{left:0;position:fixed;right:0;top:0;z-index:1030}.navbar-pf-alt .nav.navbar-nav>li>.dropdown-menu.infotip{margin-top:0}.navbar-pf-alt .nav .nav-item-iconic{cursor:pointer;line-height:1;max-height:58px;padding:21px 12px;position:relative}.navbar-pf-alt .nav .nav-item-iconic:focus,.navbar-pf-alt .nav .nav-item-iconic:hover{background-color:transparent}.navbar-pf-alt .nav .nav-item-iconic:focus .caret,.navbar-pf-alt .nav .nav-item-iconic:focus .fa,.navbar-pf-alt .nav .nav-item-iconic:focus .glyphicon,.navbar-pf-alt .nav .nav-item-iconic:focus .pficon,.navbar-pf-alt .nav .nav-item-iconic:hover .caret,.navbar-pf-alt .nav .nav-item-iconic:hover .fa,.navbar-pf-alt .nav .nav-item-iconic:hover .glyphicon,.navbar-pf-alt .nav .nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-alt .nav .nav-item-iconic .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;margin:0 0 -11px -12px;min-width:0;padding:2px 4px}.navbar-pf-alt .nav .nav-item-iconic .caret,.navbar-pf-alt .nav .nav-item-iconic .fa,.navbar-pf-alt .nav .nav-item-iconic .pficon{color:#d1d1d1;font-size:16px}.navbar-pf-alt .nav .nav-item-iconic .caret{font-size:12px;width:auto}.navbar-pf-alt .nav .open>.nav-item-iconic,.navbar-pf-alt .nav .open>.nav-item-iconic:focus,.navbar-pf-alt .nav .open>.nav-item-iconic:hover{background:0 0}.navbar-pf-alt .nav .open>.nav-item-iconic .caret,.navbar-pf-alt .nav .open>.nav-item-iconic .fa,.navbar-pf-alt .nav .open>.nav-item-iconic .pficon,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .caret,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .fa,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .pficon,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .caret,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .fa,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-alt .navbar-brand{color:#fff;height:auto;margin:0 0 0 25px;min-height:35px;padding:11px 0 12px}.navbar-pf-alt .navbar-brand .navbar-brand-name{display:inline;margin-left:0 15px 0 0;margin-right:0 15px 0 0}@media (max-width:480px){.navbar-pf-alt .navbar-brand .navbar-brand-name{display:none}}.navbar-pf-alt .navbar-brand .navbar-brand-icon{display:inline;margin-left:0 15px 0 0;margin-right:0 15px 0 0}.navbar-pf-alt .navbar-iconic{margin-right:0}.navbar-pf-alt .navbar-toggle{border:0;display:block;float:left;margin:13px 15px}.navbar-pf-alt .navbar-toggle:focus .icon-bar,.navbar-pf-alt .navbar-toggle:hover .icon-bar{background:#fff}.navbar-pf-alt .navbar-toggle+.navbar-brand{margin-left:0}.navbar-pf-alt .navbar-toggle .icon-bar{background:#d1d1d1}.navbar-pf-vertical{background-color:#1d1d1d;border:none;border-radius:0;border-top:2px solid #39a5dc;margin-bottom:0}.navbar-pf-vertical .infotip.bottom-right .arrow{left:90%}.layout-pf-fixed .navbar-pf-vertical{left:0;position:fixed;right:0;top:0;z-index:1030}.navbar-pf-vertical .nav.navbar-nav>li>.dropdown-menu.infotip{margin-top:0}.navbar-pf-vertical .nav .nav-item-iconic{color:#d1d1d1;cursor:pointer;line-height:1;max-height:58px;padding:21px 12px;position:relative}.navbar-pf-vertical .nav .nav-item-iconic:focus,.navbar-pf-vertical .nav .nav-item-iconic:hover{color:#fff;background-color:transparent}.navbar-pf-vertical .nav .nav-item-iconic:focus .caret,.navbar-pf-vertical .nav .nav-item-iconic:focus .fa,.navbar-pf-vertical .nav .nav-item-iconic:focus .glyphicon,.navbar-pf-vertical .nav .nav-item-iconic:focus .pficon,.navbar-pf-vertical .nav .nav-item-iconic:hover .caret,.navbar-pf-vertical .nav .nav-item-iconic:hover .fa,.navbar-pf-vertical .nav .nav-item-iconic:hover .glyphicon,.navbar-pf-vertical .nav .nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-vertical .nav .nav-item-iconic .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;left:20px;margin:0;padding:2px 4px;position:absolute;min-width:10px;min-height:10px;top:18px}.navbar-pf-vertical .nav .nav-item-iconic .badge.badge-pf-bordered{border:1px solid #1d1d1d}.navbar-pf-vertical .nav .nav-item-iconic .caret,.navbar-pf-vertical .nav .nav-item-iconic .fa,.navbar-pf-vertical .nav .nav-item-iconic .pficon{color:#d1d1d1;font-size:16px}.navbar-pf-vertical .nav .nav-item-iconic .caret{font-size:12px;width:auto}.navbar-pf-vertical .nav .open>.nav-item-iconic,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover{background:0 0}.navbar-pf-vertical .nav .open>.nav-item-iconic .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic .pficon,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .pficon,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-vertical .navbar-brand{color:#fff;height:auto;margin:0 0 0 25px;min-height:35px;padding:11px 0 12px}.navbar-pf-vertical .navbar-brand .navbar-brand-name{display:inline-block;margin:0 15px 0 0}@media (max-width:480px){.navbar-pf-vertical .navbar-brand .navbar-brand-name{display:none}}.navbar-pf-vertical .navbar-brand .navbar-brand-icon{display:inline-block;margin:0 15px 0 0;max-height:35px}.navbar-pf-vertical .navbar-brand .navbar-brand-txt{line-height:34px}.navbar-pf-vertical .navbar-iconic{margin-right:0}.navbar-pf-vertical .navbar-toggle{border:0;display:block;float:left;margin:13px 15px}.navbar-pf-vertical .navbar-toggle:focus .icon-bar,.navbar-pf-vertical .navbar-toggle:hover .icon-bar{background:#fff}.navbar-pf-vertical .navbar-toggle+.navbar-brand{margin-left:0}.navbar-pf-vertical .navbar-toggle .icon-bar{background:#d1d1d1}.navbar-pf{background:#030303;border:0;border-radius:0;border-top:3px solid #39a5dc;margin-bottom:0;min-height:0}.navbar-pf .navbar-brand{color:#f5f5f5;height:auto;padding:12px 0;margin:0 0 0 20px}.navbar-pf .navbar-brand img{display:block}.navbar-pf .navbar-collapse{border-top:0;box-shadow:none;padding:0}.navbar-pf .navbar-header{border-bottom:1px solid #292929;float:none}.navbar-pf .navbar-nav{margin:0}.navbar-pf .navbar-nav>.active>a,.navbar-pf .navbar-nav>.active>a:focus,.navbar-pf .navbar-nav>.active>a:hover{background-color:#232323;color:#f5f5f5}.navbar-pf .navbar-nav>li>a{color:#d1d1d1;line-height:1;padding:10px 20px;text-shadow:none}.navbar-pf .navbar-nav>li>a:focus,.navbar-pf .navbar-nav>li>a:hover{color:#f5f5f5}.navbar-pf .navbar-nav>.open>a,.navbar-pf .navbar-nav>.open>a:focus,.navbar-pf .navbar-nav>.open>a:hover{background-color:#232323;color:#f5f5f5}.navbar-pf .navbar-nav .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;left:26px;margin:0;padding:2px 4px;position:absolute;min-width:10px;min-height:10px;top:6px}@media (min-width:768px){.navbar-pf .navbar-nav .badge{left:auto;right:6px;top:3px}}.navbar-pf .navbar-nav .badge.badge-pf-bordered{border:1px solid #030303}@media (max-width:767px){.navbar-pf .navbar-nav .active .dropdown-menu,.navbar-pf .navbar-nav .active .navbar-persistent,.navbar-pf .navbar-nav .open .dropdown-menu{background-color:#171717!important;margin-left:0;padding-bottom:0;padding-top:0}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a,.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a:focus,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a:focus,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a:hover{background-color:#1f1f1f!important;color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent>li>a,.navbar-pf .navbar-nav .open .dropdown-menu>li>a{background-color:transparent;border:0;color:#d1d1d1;outline:0;padding-left:30px}.navbar-pf .navbar-nav .active .dropdown-menu>li>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent>li>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu>li>a:hover{color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu .divider,.navbar-pf .navbar-nav .active .navbar-persistent .divider,.navbar-pf .navbar-nav .open .dropdown-menu .divider{background-color:#292929;margin:0 1px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-header,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-header,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-header{padding-bottom:0;padding-left:30px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open .dropdown-toggle,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-toggle,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open .dropdown-toggle{color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.pull-left,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.pull-left,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.pull-left{float:none!important}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu>a:after,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu>a:after,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu>a:after{display:none}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-header,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-header,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-header{padding-left:45px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu{border:0;bottom:auto;box-shadow:none;display:block;float:none;margin:0;min-width:0;padding:0;position:relative;left:auto;right:auto;top:auto}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu>li>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu>li>a{padding:5px 15px 5px 45px;line-height:20px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu .dropdown-menu>li>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu>li>a{padding-left:60px}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-menu{display:block}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu>a:after{display:inline-block!important;position:relative;right:auto;top:1px}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu{display:none}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-submenu>a:after{display:none!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu{background-color:#fff!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a:active{background-color:#def3ff!important;border-color:#bee1f4!important;color:#363636!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a:active small{color:#9c9c9c!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.disabled>a{color:#9c9c9c!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a:active{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a:active small{color:rgba(255,255,255,.5)!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li>a.opt{border-bottom:1px solid transparent;border-top:1px solid transparent;color:#363636;padding-left:10px;padding-right:10px}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:active small{color:rgba(255,255,255,.5)!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:focus small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:hover small{color:#9c9c9c}.navbar-pf .navbar-nav .context-bootstrap-select>.open>.dropdown-menu{padding-bottom:5px;padding-top:5px}}.navbar-pf .navbar-persistent{display:none}.navbar-pf .active>.navbar-persistent{display:block}.navbar-pf .navbar-primary{float:none}.navbar-pf .navbar-primary .context{border-bottom:1px solid #292929}.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group,.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group[class*=span]{margin:8px 20px 9px;width:auto}.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a{position:relative}.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a:after{content:"";display:inline-block;font-family:FontAwesome;font-weight:400}@media (max-width:767px){.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a:after{height:10px;margin-left:4px;vertical-align:baseline}}.navbar-pf .navbar-toggle{border:0;margin:0;padding:10px 20px}.navbar-pf .navbar-toggle:focus,.navbar-pf .navbar-toggle:hover{background-color:transparent;outline:0}.navbar-pf .navbar-toggle:focus .icon-bar,.navbar-pf .navbar-toggle:hover .icon-bar{box-shadow:0 0 3px #fff}.navbar-pf .navbar-toggle .icon-bar{background-color:#fff}.navbar-pf .navbar-utility{border-bottom:1px solid #292929}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle{padding-left:36px;position:relative}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle .pficon-user{left:20px;position:absolute;top:10px}@media (max-width:767px){.navbar-pf .navbar-utility>li+li{border-top:1px solid #292929}}@media (min-width:768px){.navbar-pf .navbar-brand{padding:8px 0 7px}.navbar-pf .navbar-nav>li>a{padding-bottom:14px;padding-top:14px}.navbar-pf .navbar-persistent{font-size:14px}.navbar-pf .navbar-primary{font-size:14px;background-image:linear-gradient(to bottom,#1d1c1c 0,#030303 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary.persistent-secondary .context .dropdown-menu{top:auto}.navbar-pf .navbar-primary.persistent-secondary .dropup .dropdown-menu{bottom:-5px;top:auto}.navbar-pf .navbar-primary.persistent-secondary>li{position:static}.navbar-pf .navbar-primary.persistent-secondary>li.active{margin-bottom:32px}.navbar-pf .navbar-primary.persistent-secondary>li.active>.navbar-persistent{display:block;left:0;position:absolute}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent{background:#f5f5f5;border-bottom:1px solid #d1d1d1;padding:0;width:100%}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent a{text-decoration:none!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:before,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:hover:before{background:#0088ce;bottom:-1px;content:"";display:block;height:2px;left:20px;position:absolute;right:20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:hover>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active>a:hover{color:#0088ce!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active .active>a{color:#f5f5f5}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu:hover>.dropdown-menu{display:none}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-menu{display:block;left:20px;margin-top:1px;top:100%}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-toggle{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-toggle:after{border-top-color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu>.dropdown-toggle{padding-right:35px!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu>.dropdown-toggle:after{position:absolute;right:20px;top:10px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open:before,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover:before{background:#bbb;bottom:-1px;content:"";display:block;height:2px;left:20px;position:absolute;right:20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover>a{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open>a:after,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover>a:after{border-top-color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a{background-color:transparent;display:block;line-height:1;padding:9px 20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a.dropdown-toggle{padding-right:35px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a.dropdown-toggle:after{font-size:15px;position:absolute;right:20px;top:9px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a:hover{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li a{color:#4d5258}.navbar-pf .navbar-primary>li>a{border-bottom:1px solid transparent;border-top:1px solid transparent;position:relative;margin:-1px 0 0}.navbar-pf .navbar-primary>li>a:hover{background-color:#1d1c1c;border-top-color:#5c5c5c;color:#d1d1d1;background-image:linear-gradient(to bottom,#363636 0,#1d1c1c 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary>.active>a,.navbar-pf .navbar-primary>.active>a:focus,.navbar-pf .navbar-primary>.active>a:hover,.navbar-pf .navbar-primary>.open>a,.navbar-pf .navbar-primary>.open>a:focus,.navbar-pf .navbar-primary>.open>a:hover{background-color:#303030;border-bottom-color:#303030;border-top-color:#696969;box-shadow:none;color:#f5f5f5;background-image:linear-gradient(to bottom,#434343 0,#303030 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.context-bootstrap-select .filter-option{max-width:160px;text-overflow:ellipsis}.navbar-pf .navbar-primary li.context.dropdown{border-bottom:0}.navbar-pf .navbar-primary li.context.context-bootstrap-select,.navbar-pf .navbar-primary li.context>a{background-color:#1f1f1f;border-bottom-color:#3e3e3e;border-right:1px solid #3e3e3e;border-top-color:#3b3b3b;font-weight:600;background-image:linear-gradient(to bottom,#323232 0,#1f1f1f 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.context-bootstrap-select:hover,.navbar-pf .navbar-primary li.context>a:hover{background-color:#323232;border-bottom-color:#4a4a4a;border-right-color:#4a4a4a;border-top-color:#4a4a4a;background-image:linear-gradient(to bottom,#3f3f3f 0,#323232 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.open>a{background-color:#454545;border-bottom-color:#575757;border-right-color:#575757;border-top-color:#5a5a5a;background-image:linear-gradient(to bottom,#4c4c4c 0,#454545 100%);background-repeat:repeat-x}.navbar-pf .navbar-utility{border-bottom:0;font-size:11px;position:absolute;right:0;top:0}.navbar-pf .navbar-utility>.active>a,.navbar-pf .navbar-utility>.active>a:focus,.navbar-pf .navbar-utility>.active>a:hover,.navbar-pf .navbar-utility>.open>a,.navbar-pf .navbar-utility>.open>a:focus,.navbar-pf .navbar-utility>.open>a:hover{background:#363636;color:#d1d1d1}.navbar-pf .navbar-utility>li>a{border-left:1px solid #2b2b2b;color:#d1d1d1!important;padding:7px 10px}.navbar-pf .navbar-utility>li>a:hover{background:#232323;border-left-color:#373737}.navbar-pf .navbar-utility>li.open>a{border-left-color:#444;color:#f5f5f5!important}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle{padding-left:26px}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle .pficon-user{left:10px;top:7px}.navbar-pf .navbar-utility .open .dropdown-menu{left:auto;right:0}.navbar-pf .navbar-utility .open .dropdown-menu .dropdown-menu{left:auto;right:100%}.navbar-pf .navbar-utility .open .dropdown-menu{border-top-width:0}.navbar-pf .open .dropdown-submenu>.dropdown-menu,.navbar-pf .open.bootstrap-select .dropdown-menu{border-top-width:1px!important}}@media (max-width:360px){.navbar-pf .navbar-brand{margin-left:10px;width:75%}.navbar-pf .navbar-brand img{height:auto;max-width:100%}.navbar-pf .navbar-toggle{padding-left:0}}.drawer-pf{background-color:#fafafa;border:1px solid #d1d1d1;box-shadow:0 6px 12px rgba(3,3,3,.175);overflow-y:auto;position:absolute;right:0;width:320px;z-index:2}.drawer-pf .panel{border-bottom:none;border-left:none;border-right:none}.drawer-pf .panel-group .panel-heading+.panel-collapse .panel-body{border-top:none;border-bottom:1px solid #d1d1d1;padding:0}.drawer-pf .panel-counter{display:block;font-style:italic;line-height:1.2;padding-left:18px;padding-top:5px}.drawer-pf .panel-heading{border-bottom:1px solid #d1d1d1}.drawer-pf .panel-group{bottom:0;margin-bottom:0;position:absolute;top:25px;width:100%}.drawer-pf .panel-title a{cursor:pointer;display:block}.drawer-pf.drawer-pf-expanded{width:inherit}@media (max-width:767px){.drawer-pf.drawer-pf-expanded{left:0;width:100%}}@media (min-width:767px){.drawer-pf.drawer-pf-expanded{left:270px}}.drawer-pf.drawer-pf-expanded .drawer-pf-toggle-expand:before{content:"\f101"}.drawer-pf .blank-slate-pf{border:0;margin-bottom:0;padding:30px}.drawer-pf .blank-slate-pf .blank-slate-pf-icon{font-size:3em;line-height:1em}.drawer-pf .blank-slate-pf h1{font-size:1em;margin-bottom:0;margin-top:15px}.drawer-pf-close,.drawer-pf-toggle-expand{color:#252525;cursor:pointer;line-height:inherit;padding:2px 10px;position:absolute}.drawer-pf-close:focus,.drawer-pf-close:hover,.drawer-pf-toggle-expand:focus,.drawer-pf-toggle-expand:hover{color:#0088ce;text-decoration:none}.drawer-pf-toggle-expand{left:0}.drawer-pf-toggle-expand:before{content:"\f100";font-family:FontAwesome}.drawer-pf-toggle-expand:hover{color:#0088ce}.drawer-pf-close{right:0}.drawer-pf-action{display:-ms-flexbox;display:flex;border-bottom:1px solid #d1d1d1}.drawer-pf-action .btn-link{color:#0088ce;padding:10px 0}.drawer-pf-action .btn-link .fa,.drawer-pf-action .btn-link .pficon{margin-right:3px}.drawer-pf-action .btn-link .pficon-close{position:relative;top:1px}.drawer-pf-action .btn-link:hover{color:#00659c}.drawer-pf-action-link{border-left:solid 1px #d1d1d1;-ms-flex:1 1 0%;flex:1 1 0%;margin:10px 0;text-align:center}.drawer-pf-action-link:first-of-type{border-left-width:0}.drawer-pf-action-link .btn-link{padding:0}.drawer-pf-loading{color:#4d5258;font-size:14px;padding:20px 15px}.drawer-pf-notification{border-bottom:1px solid #d1d1d1;padding:15px}.drawer-pf-notification .date{border-right:1px solid #aaa;display:inline-block;line-height:1;margin-right:5px;padding-right:9px}.drawer-pf-notification>.dropdown-kebab-pf{margin-top:-3px}.drawer-pf-notification .pficon{font-size:14px;margin-top:3px}.drawer-pf-notification:last-of-type{border-bottom:none}.drawer-pf-notification:hover{background-color:#def3ff}.drawer-pf-notification.unread .drawer-pf-notification-message{font-weight:700}.drawer-pf-notification.expanded-notification .date{border-right:none;padding-right:0}.drawer-pf-notification-content{cursor:default}.drawer-pf-notification-info,.drawer-pf-notification-message{display:block;padding-left:27px;padding-right:19px}.expanded-notification .drawer-pf-notification-info,.expanded-notification .drawer-pf-notification-message{display:inline-block}.drawer-pf-notifications-non-clickable .drawer-pf-notification:hover{background-color:#fff}.drawer-pf-title{background-color:#fafafa;border-bottom:1px solid #d1d1d1;position:absolute;width:100%}.drawer-pf-title h3{font-size:12px;margin:0;padding:6px 15px}.drawer-pf-notification.expanded-notification .drawer-pf-notification-content{display:-ms-flexbox;display:flex}@media (max-width:991px){.drawer-pf-notification.expanded-notification .drawer-pf-notification-content{-ms-flex-direction:column;flex-direction:column}}.drawer-pf-notification.expanded-notification .drawer-pf-notification-content .drawer-pf-notification-message{-ms-flex:1 1;flex:1 1}.navbar-pf-vertical .drawer-pf{height:calc(100vh - 58px - 20px);top:58px}@media (max-width:767px){.navbar-pf-vertical .drawer-pf{width:100%;height:calc(unquote("100vh - 58px"))}}.navbar-pf-vertical .nav .drawer-pf-trigger .drawer-pf-trigger-icon{border-left:1px solid #2b2b2b;border-right:1px solid #2b2b2b;padding-left:15px;padding-right:15px}.navbar-pf-vertical .nav .drawer-pf-trigger.open .drawer-pf-trigger-icon{background-color:#232323}.navbar-pf .drawer-pf{height:calc(100vh - 26px - 20px);top:26px}@media (max-width:767px){.navbar-pf .drawer-pf{width:100%;height:calc(unquote("100vh - 26px - 32px"));top:calc(unquote("26px + 8px"))}}.navbar-pf .drawer-pf-trigger-icon{cursor:pointer}.search-pf.has-button{border-collapse:separate;display:table}.search-pf.has-button .form-group{display:table-cell;width:100%}.search-pf.has-button .form-group .btn{box-shadow:none;float:left;margin-left:-1px}.search-pf.has-button .form-group .btn-group-lg>.btn,.search-pf.has-button .form-group .btn.btn-lg{font-size:14.5px}.search-pf.has-button .form-group .btn-group-sm>.btn,.search-pf.has-button .form-group .btn.btn-sm{font-size:10.7px}.search-pf.has-button .form-group .form-control{float:left}.search-pf .has-clear .clear{background:rgba(255,255,255,0);border:0;height:25px;line-height:1;padding:0;position:absolute;right:1px;top:1px;width:28px}.search-pf .has-clear .clear:focus{outline:0}.search-pf .has-clear .form-control{padding-right:30px}.search-pf .has-clear .form-control::-ms-clear{display:none}.search-pf .has-clear .input-group-lg>.form-control+.clear,.search-pf .has-clear .input-group-lg>.input-group-addon+.clear,.search-pf .has-clear .input-group-lg>.input-group-btn>.btn+.clear,.search-pf .has-clear .input-lg+.clear{height:31px;width:28px}.search-pf .has-clear .input-group-sm>.form-control+.clear,.search-pf .has-clear .input-group-sm>.input-group-addon+.clear,.search-pf .has-clear .input-group-sm>.input-group-btn>.btn+.clear,.search-pf .has-clear .input-sm+.clear{height:20px;width:28px}.search-pf .has-clear .input-group-sm>.form-control+.clear span,.search-pf .has-clear .input-group-sm>.input-group-addon+.clear span,.search-pf .has-clear .input-group-sm>.input-group-btn>.btn+.clear span,.search-pf .has-clear .input-sm+.clear span{font-size:10px}.search-pf .has-clear .search-pf-input-group{position:relative}.sidebar-header{border-bottom:1px solid #ececec;padding-bottom:11px;margin:50px 0 20px}.sidebar-header .actions{margin-top:-2px}.sidebar-pf .sidebar-header+.list-group{border-top:0;margin-top:-10px}.sidebar-pf .sidebar-header+.list-group .list-group-item{background:0 0;border-color:#ececec;padding-left:0}.sidebar-pf .sidebar-header+.list-group .list-group-item-heading{font-size:12px}.sidebar-pf .nav-category h2{color:#9c9c9c;font-size:12px;font-weight:400;line-height:21px;margin:0;padding:8px 0}.sidebar-pf .nav-category+.nav-category{margin-top:10px}.sidebar-pf .nav-pills>li.active>a{background:#0088ce!important;border-color:#0088ce!important;color:#fff}@media (min-width:768px){.sidebar-pf .nav-pills>li.active>a:after{content:"";font-family:FontAwesome;display:block;position:absolute;right:10px;top:1px}}.sidebar-pf .nav-pills>li.active>a .fa{color:#fff}.sidebar-pf .nav-pills>li>a{border-bottom:1px solid transparent;border-radius:0;border-top:1px solid transparent;color:#363636;font-size:13px;line-height:21px;padding:1px 20px}.sidebar-pf .nav-pills>li>a:hover{background:#def3ff;border-color:#bee1f4}.sidebar-pf .nav-pills>li>a .fa{color:#6a7079;font-size:15px;margin-right:10px;text-align:center;vertical-align:middle;width:15px}.sidebar-pf .nav-stacked{margin-left:-20px;margin-right:-20px}.sidebar-pf .nav-stacked li+li{margin-top:0}.sidebar-pf .panel{background:0 0}.sidebar-pf .panel-body{padding:6px 20px}.sidebar-pf .panel-body .nav-pills>li>a{padding-left:37px}.sidebar-pf .panel-heading{padding:9px 20px}.sidebar-pf .panel-title{font-size:12px}.sidebar-pf .panel-title>a:before{display:inline-block;margin-left:1px;margin-right:4px;width:9px}.sidebar-pf .panel-title>a.collapsed:before{margin-left:3px;margin-right:2px}@media (min-width:767px){.sidebar-header-bleed-left{margin-left:-20px}.sidebar-header-bleed-left>h2{margin-left:20px}.sidebar-header-bleed-right{margin-right:-20px}.sidebar-header-bleed-right .actions{margin-right:20px}.sidebar-header-bleed-right>h2{margin-right:20px}.sidebar-header-bleed-right+.list-group{margin-right:-20px}.sidebar-pf .panel-group .panel-default,.sidebar-pf .treeview{border-left:0;border-right:0;margin-left:-20px;margin-right:-20px}.sidebar-pf .treeview{margin-top:5px}.sidebar-pf .treeview .list-group-item{padding-left:20px;padding-right:20px}.sidebar-pf .treeview .list-group-item.node-selected:after{content:"";font-family:FontAwesome;display:block;position:absolute;right:10px;top:1px}}@media (min-width:768px){.sidebar-pf{background:#fafafa}.sidebar-pf.sidebar-pf-left{border-right:1px solid #d1d1d1}.sidebar-pf.sidebar-pf-right{border-left:1px solid #d1d1d1}.sidebar-pf>.nav-category,.sidebar-pf>.nav-stacked{margin-top:5px}}.skiplink-pf{position:absolute;top:12px;left:-300%;z-index:1050}.skiplink-pf:focus{left:10px}@keyframes rotation{from{transform:rotate(0)}to{transform:rotate(359deg)}}.spinner{animation:rotation .6s infinite linear;border-bottom:4px solid rgba(3,3,3,.25);border-left:4px solid rgba(3,3,3,.25);border-right:4px solid rgba(3,3,3,.25);border-radius:100%;border-top:4px solid rgba(3,3,3,.75);height:24px;margin:0 auto;position:relative;width:24px}.spinner.spinner-inline{display:inline-block;margin-right:3px}.spinner.spinner-lg{border-width:5px;height:30px;width:30px}.spinner.spinner-sm{border-width:3px;height:18px;width:18px}.spinner.spinner-xs{border-width:2px;height:12px;width:12px}.spinner.spinner-inverse{border-bottom-color:rgba(255,255,255,.25);border-left-color:rgba(255,255,255,.25);border-right-color:rgba(255,255,255,.25);border-top-color:rgba(255,255,255,.75)}.ie9 .spinner{background:url(../img/spinner.gif) no-repeat;border:0}.ie9 .spinner.spinner-inverse{background-image:url(../img/spinner-inverse.gif)}.ie9 .spinner.spinner-inverse-lg{background-image:url(../img/spinner-inverse-lg.gif)}.ie9 .spinner.spinner-inverse-sm{background-image:url(../img/spinner-inverse-sm.gif)}.ie9 .spinner.spinner-inverse-xs{background-image:url(../img/spinner-inverse-xs.gif)}.ie9 .spinner.spinner-lg{background-image:url(../img/spinner-lg.gif)}.ie9 .spinner.spinner-sm{background-image:url(../img/spinner-sm.gif)}.ie9 .spinner.spinner-xs{background-image:url(../img/spinner-xs.gif)}.prettyprint .atn,.prettyprint .com,.prettyprint .fun,.prettyprint .var{color:#3f9c35}.prettyprint .atv,.prettyprint .str{color:#a30000}.prettyprint .clo,.prettyprint .dec,.prettyprint .kwd,.prettyprint .opn,.prettyprint .pln,.prettyprint .pun{color:#363636}.prettyprint .lit,.prettyprint .tag,.prettyprint .typ{color:#00659c}.prettyprint ol.linenums{margin-bottom:0}table.dataTable{height:100%;margin-bottom:0;max-width:none!important}table.dataTable tbody>tr>td.table-view-pf-actions{padding:0;vertical-align:middle}table.dataTable tbody>tr:hover>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable tbody>tr.selected{color:#fff;background-color:#0088ce}table.dataTable tbody>tr.selected>td{border-bottom-color:#00659c}table.dataTable tbody>tr.selected>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable tbody>tr.selected:hover>td{background-color:inherit;border-bottom-color:#00659c}table.dataTable tbody>tr.selected:hover>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_desc_disabled{cursor:pointer}table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc{color:#0088ce!important;position:relative}table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after{content:"";font-family:FontAwesome;font-size:10px;font-weight:400;height:9px;left:7px;line-height:12px;position:relative;top:2px;vertical-align:baseline;width:12px}table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_desc:before{background:#0088ce;content:"";height:2px;position:absolute;left:0;top:0;width:100%}table.dataTable thead .sorting_asc:after{content:"";top:-3px}table.dataTable th:active{outline:0}.table-view-pf-empty.blank-slate-pf{background-color:#f5f5f5;border:1px solid #d1d1d1;border-radius:0;margin-top:-1px}.table-view-pf-toolbar.toolbar-pf{background-color:#f5f5f5;border-bottom:none;border-left:1px solid #d1d1d1;border-right:1px solid #d1d1d1;border-top:1px solid #d1d1d1;box-shadow:none;margin-left:0;margin-right:0}.table-view-pf-toolbar.toolbar-pf .toolbar-pf-results{border-top:1px solid #d1d1d1;min-height:40px;line-height:40px}.table-view-pf-toolbar-external.toolbar-pf{border-bottom:none;border-top:none;box-shadow:none}.table-view-pf-toolbar-external.toolbar-pf .toolbar-pf-results{border-top:1px solid #d1d1d1;min-height:40px;line-height:40px}.table-view-pf-colvis-menu>li{padding:5px 10px}.table-view-pf-colvis-menu>li:hover{background-color:#def3ff}.table-view-pf-colvis-menu>li>input{margin-top:0;margin-right:10px;vertical-align:middle}.table-view-pf-colvis-menu>li>label{margin-bottom:0}.table-view-pf-actions{background-color:#f1f1f1;height:100%}.table-view-pf-actions .btn,.table-view-pf-actions .dropdown-toggle{border:none;box-shadow:none;height:100%;width:100%}.table-view-pf-actions .dropdown,.table-view-pf-actions .table-view-pf-btn{height:100%}.table-view-pf-actions .dropdown-menu.dropdown-menu-right{right:-5px}.table-view-pf-actions:last-child{width:24px}.table-view-pf-select{width:33px}.table-view-pf-select-results{text-align:right}.bootstrap-datetimepicker-widget a[data-action]{border:0;box-shadow:none;color:#363636;display:block;padding-bottom:4px;padding-top:4px}.bootstrap-datetimepicker-widget a[data-action]:hover{color:#0088ce}.bootstrap-datetimepicker-widget.dropdown-menu{left:0!important;padding:0;width:calc(100% - 25px)}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:none}.bootstrap-datetimepicker-widget.dropdown-menu.top{margin-bottom:-1px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom{margin-top:-1px}.bootstrap-datetimepicker-widget .timepicker-hour{width:100%}.bootstrap-datetimepicker-widget .timepicker-hour:after{content:":";float:right}.timepicker-hours table td,.timepicker-minutes table td{font-weight:700;line-height:30px;height:30px}.timepicker-hours table td:hover,.timepicker-minutes table td:hover{color:#0088ce}.timepicker-hours .table-condensed>tbody>tr>td,.timepicker-minutes .table-condensed>tbody>tr>td{padding:0}.time-picker-pf .input-group-addon .fa,.time-picker-pf .input-group-addon .pficon{width:12px}.time-picker-pf .input-group-addon:not(.active){box-shadow:none}.timepicker-picker table td a span,.timepicker-picker table td span{height:24px;line-height:24px;margin:0;width:100%}.timepicker-picker .table-condensed>tbody>tr>td{height:25px;line-height:18px;padding:0}.timepicker-picker button[data-action]{padding-bottom:0;padding-top:0}.timepicker-picker .separator{display:none}.timepicker-picker tr:nth-child(2) td{background-color:#def3ff;border-color:#bee1f4;border-style:solid;border-width:1px;border-left:0;border-right:0}.toast-pf{background-color:#fff;border-color:#bbb;box-shadow:0 2px 6px rgba(3,3,3,.2);padding-left:68px;margin-bottom:5px}.toast-pf.alert-danger>.pficon{background-color:#c00}.toast-pf.alert-info>.pficon{background-color:#8b8d8f}.toast-pf.alert-success>.pficon{background-color:#3f9c35}.toast-pf.alert-warning>.pficon{background-color:#ec7a08}.toast-pf .dropdown-kebab-pf{margin-left:10px}.toast-pf>.pficon{background-color:#4d5258;bottom:-1px;box-shadow:2px 0 5px -2px rgba(3,3,3,.2);left:-1px;padding-top:10px;text-align:center;top:-1px;width:53px}.toast-pf>.pficon:before{color:rgba(255,255,255,.74)}.toast-pf .toast-pf-action{margin-left:15px}.toast-pf .dropdown-kebab-pf .btn-link{padding-top:0;padding-bottom:0;vertical-align:text-bottom}@media (min-width:992px){.toast-pf{display:inline-block}}@media (min-width:992px){.toast-pf-max-width{max-width:31.1%}}.toast-pf-top-right{left:20px;position:absolute;right:20px;top:12px;z-index:1055}@media (min-width:992px){.toast-pf-top-right{left:auto}}.toast-notifications-list-pf{margin-left:20px;position:fixed;right:20px;top:80px;z-index:1055}.toast-notifications-list-pf .toast-pf{clear:both;float:right}@media (min-width:768px){.toast-notifications-list-pf{max-width:calc(50%)}}@media (min-width:992px){.toast-notifications-list-pf{max-width:calc(33.1%)}}.toolbar-pf{background:#fff;border-bottom:1px solid #d1d1d1;box-shadow:0 1px 0 rgba(3,3,3,.045);padding-top:10px}.toolbar-pf .form-group{margin-bottom:10px}@media (min-width:768px){.toolbar-pf .form-group{border-right:1px solid #d1d1d1;float:left;margin-bottom:0;padding-left:20px;padding-right:20px}}.toolbar-pf .form-group:last-child{border-right:0;margin-bottom:0;padding-right:0}.toolbar-pf .form-group .btn+.btn,.toolbar-pf .form-group .btn+.btn-group,.toolbar-pf .form-group .btn-group+.btn,.toolbar-pf .form-group .btn-group+.btn-group{margin-left:5px}.toolbar-pf .form-group .btn+.btn-link,.toolbar-pf .form-group .btn+.dropdown,.toolbar-pf .form-group .btn-group+.btn-link,.toolbar-pf .form-group .btn-group+.dropdown{margin-left:10px}.toolbar-pf .form-group .btn-link{color:#252525;font-size:16px;line-height:1;padding:4px 0}.toolbar-pf .form-group .btn-link:active,.toolbar-pf .form-group .btn-link:focus,.toolbar-pf .form-group .btn-link:hover{color:#0088ce}.toolbar-pf .form-group .dropdown-kebab-pf .btn-link{padding:4px 10px;margin-left:-10px;margin-right:-10px}.toolbar-pf-actions{display:table;margin-bottom:10px;width:100%}@media (min-width:768px){.toolbar-pf-actions .toolbar-pf-filter{padding-left:0}}.toolbar-pf-view-selector{font-size:16px}.toolbar-pf-view-selector .btn-link.active{color:#0088ce;cursor:default}.toolbar-pf-action-right{float:right}@media (max-width:768px){.toolbar-pf-action-right{float:none}}.toolbar-pf-find{font-size:14px;position:relative}.find-pf-dropdown-container{background:#fff;border:solid 1px #bbb;display:none;right:-20px;padding:5px;position:absolute;top:35px;width:300px;z-index:10000}@media (max-width:768px){.find-pf-dropdown-container{left:30px;top:-5px;width:calc(100% - 30px)}}.find-pf-dropdown-container:after,.find-pf-dropdown-container:before{content:"";position:absolute}.find-pf-dropdown-container:before{border-bottom:11px solid #bbb;border-left:11px solid transparent;border-right:11px solid transparent;right:35px;top:-12px}.toolbar-pf-find:last-child .find-pf-dropdown-container:before{right:15px}@media (max-width:768px){.find-pf-dropdown-container:before{border-bottom:11px solid transparent;border-right:11px solid #bbb;border-top:11px solid transparent;left:-22px;right:initial;top:8px}}.find-pf-dropdown-container:after{border-bottom:10px solid #fff;border-left:10px solid transparent;border-right:10px solid transparent;right:36px;top:-10px}.toolbar-pf-find:last-child .find-pf-dropdown-container:after{right:16px}@media (max-width:768px){.find-pf-dropdown-container:after{border-bottom:10px solid transparent;border-right:10px solid #fff;border-top:10px solid transparent;left:-20px;right:initial;top:9px}}.find-pf-dropdown-container input{height:30px;padding:5px 117px 5px 5px;width:100%}.find-pf-dropdown-container .find-pf-buttons{position:absolute;right:10px;top:5px}.find-pf-dropdown-container .find-pf-buttons .btn{border:none;cursor:pointer;margin-left:0!important;padding:0;width:18px}.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-down,.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-up{font-weight:700;font-size:18px}.find-pf-dropdown-container .find-pf-buttons .btn .pficon-close{font-size:14px}.find-pf-dropdown-container .find-pf-buttons span{height:30px;line-height:30px;vertical-align:middle}.find-pf-dropdown-container .find-pf-buttons .find-pf-nums{color:#8b8d8f;margin-right:3px}.toolbar-pf-results{border-top:1px solid #d1d1d1;margin-top:10px}.toolbar-pf-results h5,.toolbar-pf-results p,.toolbar-pf-results ul{display:inline-block;line-height:26.6666666667px;margin-bottom:0;margin-top:0}@media (min-width:768px){.toolbar-pf-results h5,.toolbar-pf-results p,.toolbar-pf-results ul{line-height:40px}}.toolbar-pf-results h5{font-weight:700;margin-right:20px}.toolbar-pf-results .label{font-size:11px}.toolbar-pf-results .label a{color:#fff;display:inline-block;margin-left:5px}.nav-pf-vertical{background:#292e34;border-right:1px solid #292e34;bottom:0;left:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;width:200px;z-index:1030}.layout-pf-fixed-with-footer .nav-pf-vertical{bottom:37px}.ie9.layout-pf-fixed .nav-pf-vertical{box-sizing:content-box}.nav-pf-vertical.hidden.show-mobile-nav{box-shadow:0 0 3px rgba(3,3,3,.15);display:block!important}.nav-pf-vertical.hide-nav-pf{visibility:hidden!important}.nav-pf-vertical .list-group{border-top:0;margin-bottom:0}.nav-pf-vertical .list-group-item{background-color:transparent;border-color:#030303;padding:0}.nav-pf-vertical .list-group-item>a{background-color:transparent;color:#d1d1d1;cursor:pointer;display:block;font-size:14px;font-weight:400;height:63px;line-height:26px;padding:17px 20px 17px 25px;position:relative;white-space:nowrap;width:200px}@supports (display:flex){.nav-pf-vertical .list-group-item>a{display:-ms-flexbox;display:flex;padding-right:0}}.nav-pf-vertical .list-group-item>a .fa,.nav-pf-vertical .list-group-item>a .glyphicon,.nav-pf-vertical .list-group-item>a .pficon{color:#72767b;float:left;font-size:20px;line-height:26px;margin-right:10px;text-align:center;width:24px}.nav-pf-vertical .list-group-item>a:hover{text-decoration:none}.nav-pf-vertical .list-group-item.active>a,.nav-pf-vertical .list-group-item:hover>a{background-color:#393f44;color:#fff;font-weight:600}.nav-pf-vertical .list-group-item.active>a .fa,.nav-pf-vertical .list-group-item.active>a .glyphicon,.nav-pf-vertical .list-group-item.active>a .pficon,.nav-pf-vertical .list-group-item:hover>a .fa,.nav-pf-vertical .list-group-item:hover>a .glyphicon,.nav-pf-vertical .list-group-item:hover>a .pficon{color:#39a5dc}.nav-pf-vertical .list-group-item.active>a:before{background:#39a5dc;content:" ";height:100%;left:0;position:absolute;top:0;width:3px}.nav-pf-vertical .list-group-item.active:hover{background-color:transparent;border-color:#030303}.nav-pf-vertical .list-group-item .list-group-item-value{display:block;line-height:25px;max-width:120px;overflow:hidden;text-overflow:ellipsis}@supports (display:flex){.nav-pf-vertical .list-group-item .list-group-item-value{-ms-flex:1;flex:1;max-width:none;padding-right:15px}}.nav-pf-vertical .list-group-item-separator{border-top-color:#030303;border-top-width:2px}.nav-pf-vertical.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-vertical-with-badges .list-group-item>a{width:250px}.nav-pf-vertical h5{color:#fff;cursor:default;font-size:13px;font-weight:600;margin:30px 20px 10px 20px}.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .fa,.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .glyphicon,.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .pficon{display:none}.nav-pf-vertical.hidden-icons-pf.collapsed{display:none}.nav-pf-vertical .badge-container-pf{position:absolute;right:15px;top:20px}@supports (display:flex){.nav-pf-vertical .badge-container-pf{padding-left:0;padding-right:15px;position:relative;right:0;margin-top:-3px;top:5px}}.nav-pf-vertical .badge-container-pf .badge{background:#292e34;color:#fff;float:left;font-size:12px;font-weight:700;line-height:1.66666667;margin:0;padding:0 7px;text-align:center}.nav-pf-vertical .badge-container-pf .badge .fa,.nav-pf-vertical .badge-container-pf .badge .pficon{font-size:14px;height:20px;line-height:1.66666667;margin-right:3px;margin-top:-1px}.nav-pf-vertical-tooltip.tooltip{margin-left:15px}.nav-pf-vertical-tooltip.tooltip .tooltip-inner{background-color:#fff;color:#292e34}.nav-pf-vertical-tooltip.tooltip .tooltip-arrow{border-bottom-color:#fff;left:calc(50% - 15px)!important}.hover-secondary-nav-pf{width:calc(200px * 2)}.hover-secondary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.hover-tertiary-nav-pf{width:calc(200px * 3)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 3)}.hover-tertiary-nav-pf .nav-pf-secondary-nav{width:calc(200px * 2)}.hover-tertiary-nav-pf .nav-pf-secondary-nav .collapsed-tertiary-nav-pf{width:200px}.hover-tertiary-nav-pf .nav-pf-tertiary-nav{left:calc(200px * 2)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav{width:calc(250px * 2)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav .collapsed-tertiary-nav-pf{width:250px}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:calc(250px * 2)}.nav-pf-vertical.collapsed{width:75px}.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed.hover-secondary-nav-pf{width:calc(75px + 200px)}.nav-pf-vertical.collapsed.hover-secondary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + 250px)}.nav-pf-vertical.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.nav-pf-vertical.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + (250px * 2))}.show-mobile-nav.show-mobile-secondary{width:200px}.show-mobile-nav.show-mobile-secondary.nav-pf-vertical-with-badges{width:250px}.show-mobile-nav.show-mobile-tertiary{width:200px}.show-mobile-nav.show-mobile-tertiary.nav-pf-vertical-with-badges{width:250px}.show-mobile-nav .mobile-nav-item-pf .nav-pf-secondary-nav,.show-mobile-nav .mobile-secondary-item-pf .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible;z-index:1034}.show-mobile-nav .mobile-nav-item-pf>.nav-pf-tertiary-nav,.show-mobile-nav .mobile-secondary-item-pf>.nav-pf-tertiary-nav{left:0;opacity:1;visibility:visible;z-index:1038}.show-mobile-nav .nav-pf-secondary-nav{left:0}.secondary-nav-item-pf:hover .show-mobile-nav .nav-pf-secondary-nav{opacity:0;visibility:hidden}.show-mobile-nav .tertiary-nav-item-pf:hover .nav-pf-tertiary-nav{opacity:0;visibility:hidden}.show-mobile-nav .tertiary-nav-item-pf.mobile-nav-item-pf:hover .nav-pf-tertiary-nav{opacity:1;visibility:visible}.secondary-nav-item-pf>a{cursor:default}.secondary-nav-item-pf>a:after{color:#72767b;content:"";display:block;font-family:FontAwesome;font-size:24px;line-height:30px;padding:14px 0;position:absolute;right:20px;top:0}@supports (display:flex){.secondary-nav-item-pf>a .list-group-item-value{padding-right:35px}}.secondary-nav-item-pf.active>a,.secondary-nav-item-pf:hover>a{width:calc(200px + 1px);z-index:1031}.secondary-nav-item-pf.active>a:after,.secondary-nav-item-pf:hover>a:after{right:21px}.collapsed-secondary-nav-pf .secondary-nav-item-pf.active>a,.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover>a{z-index:0}.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active>a,.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover>a{z-index:0}.nav-pf-vertical-with-badges .secondary-nav-item-pf.active>a,.nav-pf-vertical-with-badges .secondary-nav-item-pf:hover>a{width:calc(250px + 1px)}.nav-pf-vertical.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.hover>a{z-index:1030}.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-secondary-nav{left:0}.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav{width:200px}.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.hover>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.hover>a{z-index:0}@media (min-width:1200px){.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf{width:calc(200px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf{width:calc(200px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed{width:calc(75px + 200px)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + (250px * 2))}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf{width:calc(200px * 3)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 3)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{visibility:visible;opacity:1}}.nav-item-pf-header{color:#fff;font-size:16px;margin:18px 20px 10px 20px}.nav-item-pf-header>a{cursor:pointer;margin-right:7px}.nav-item-pf-header>a:focus,.nav-item-pf-header>a:hover{color:#0088ce;text-decoration:none}.nav-pf-vertical.collapsed{width:75px}.nav-pf-vertical.collapsed .list-group-item>a{width:75px}.nav-pf-vertical.collapsed .list-group-item>a>.list-group-item-value{display:none}.nav-pf-vertical.collapsed .list-group-item>a>.badge-container-pf{display:none}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf>a{width:75px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a:after,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf>a:after{right:10px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover>a{width:77px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a:after,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover>a:after{right:11px}.nav-pf-secondary-nav{background:#393f44;border:1px solid #292e34;border-bottom:none;border-top:none;bottom:0;display:block;left:200px;opacity:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;visibility:hidden;width:200px;z-index:1030}.collapsed-secondary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible;z-index:1032}.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible}.hover-secondary-nav-pf .secondary-nav-item-pf.is-hover .nav-pf-secondary-nav{opacity:1;visibility:visible}.ie9.layout-pf-fixed .nav-pf-secondary-nav{box-sizing:content-box}.layout-pf-fixed-with-footer .nav-pf-secondary-nav{bottom:37px}.nav-pf-secondary-nav .list-group-item{border:none;padding:0 0 5px 0;width:200px}.nav-pf-secondary-nav .list-group-item>a{background-color:#393f44;color:#d1d1d1;font-size:12px;font-weight:inherit;height:inherit;padding:4px 0 2px 0;margin-left:20px;width:calc(200px - 20px)}.nav-pf-secondary-nav .list-group-item>a:hover .list-group-item-value{text-decoration:underline}.nav-pf-secondary-nav .list-group-item.active>a:before{display:none}.nav-pf-secondary-nav .list-group-item.active>a,.nav-pf-secondary-nav .list-group-item:hover>a{background-color:#4d5258;color:#fff}.nav-pf-secondary-nav .list-group-item .badge-container-pf{top:5px}.nav-pf-secondary-nav .list-group-item .badge-container-pf .badge{background:#292e34;color:#fff}.nav-pf-secondary-nav .list-group-item .list-group-item-value{padding-left:5px}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a{cursor:default}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a:after{color:#72767b;content:"";display:block;font-family:FontAwesome;font-size:20px;line-height:20px;padding:0;position:absolute;right:20px;top:4px}@supports (display:flex){.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a .list-group-item-value{padding-right:35px}}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a,.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a{width:calc(200px - 19px);z-index:1033}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a:after,.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a:after{right:21px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav{left:250px;width:250px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item{width:250px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item>a{width:calc(250px - 20px)}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a,.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a{width:calc(250px - 19px)}.nav-pf-tertiary-nav{background:#4d5258;border:1px solid #292e34;border-bottom:none;border-top:none;bottom:0;display:block;left:calc(200px * 2);opacity:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;visibility:hidden;width:200px;z-index:1030}.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:250px;width:250px}.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .show-mobile-nav{left:0}.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active .nav-pf-tertiary-nav{left:0;opacity:1;visibility:visible;z-index:1033}.hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav{opacity:1;visibility:visible}.collapsed.collapsed-tertiary-nav-pf .hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav{left:0}.ie9.layout-pf-fixed .nav-pf-tertiary-nav{box-sizing:content-box}.layout-pf-fixed-with-footer .nav-pf-tertiary-nav{bottom:37px}.nav-pf-tertiary-nav .nav-item-pf-header{color:#fff;margin:18px 20px 10px 20px}.nav-pf-tertiary-nav h5{color:#fff;margin:30px 20px 10px 20px}.nav-pf-tertiary-nav .list-group-item{border:none;padding:0 0 5px 0}.nav-pf-tertiary-nav .list-group-item>a{background-color:transparent;color:#d1d1d1;font-size:12px;font-weight:inherit;height:inherit;margin:0 20px 0 20px;padding:4px 0 2px 0}.nav-pf-tertiary-nav .list-group-item.active>a:before{display:none}.nav-pf-tertiary-nav .list-group-item.active>a,.nav-pf-tertiary-nav .list-group-item:hover>a{background-color:#393f44;color:#fff}.nav-pf-tertiary-nav .list-group-item .badge-container-pf{top:5px}.nav-pf-tertiary-nav .list-group-item .badge-container-pf .badge{background:#292e34;color:#fff}.nav-pf-tertiary-nav .list-group-item .list-group-item-value{padding-left:5px}.collapsed .nav-pf-secondary-nav{left:75px}.collapsed .nav-pf-secondary-nav .list-group-item>a{width:calc(200px - 20px)}.collapsed .nav-pf-secondary-nav .list-group-item>a>.list-group-item-value{display:inline-block}.collapsed .nav-pf-secondary-nav .list-group-item>a>.badge-container-pf{display:inline-block}.collapsed .nav-pf-tertiary-nav{left:calc(75px + 200px)}.collapsed .nav-pf-tertiary-nav .list-group-item>a{width:calc(200px - 20px)}.collapsed .nav-pf-tertiary-nav .list-group-item>a>.list-group-item-value{display:inline-block}.collapsed .nav-pf-tertiary-nav .list-group-item>a>.badge-container-pf{display:inline-block}.collapsed.collapsed-secondary-nav-pf,.collapsed.collapsed-tertiary-nav-pf{width:200px}.collapsed.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover>a,.collapsed.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover>a{z-index:1030}.collapsed.collapsed-secondary-nav-pf .nav-pf-secondary-nav,.collapsed.collapsed-tertiary-nav-pf .nav-pf-secondary-nav{left:0}.collapsed.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:200px}.collapsed.collapsed-tertiary-nav-pf .nav-pf-tertiary-nav{left:0}.collapsed.hover-secondary-nav-pf{width:calc(75px + 200px)}.collapsed.hover-secondary-nav-pf.collapsed-secondary-nav-pf,.collapsed.hover-secondary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.collapsed.hover-tertiary-nav-pf.collapsed-secondary-nav-pf{width:calc(200px * 2)}.collapsed.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.collapsed.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item>a{width:calc(250px - 20px)}.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:calc(75px + 250px)}.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .list-group-item>a{width:calc(250px - 20px)}.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf,.collapsed.nav-pf-vertical-with-badges.collapsed-tertiary-nav-pf{width:250px}.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:250px}.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf{width:calc(75px + 250px)}.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-secondary-nav-pf,.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-tertiary-nav-pf{width:250px}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-secondary-nav-pf{width:calc(200px * 2)}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.secondary-collapse-toggle-pf{display:none;font-family:FontAwesome;font-size:inherit;opacity:0;pointer-events:none;-webkit-font-smoothing:antialiased}.secondary-collapse-toggle-pf:before{content:""}.secondary-collapse-toggle-pf.collapsed:before{content:""}.tertiary-collapse-toggle-pf{display:none;font-family:FontAwesome;font-size:inherit;opacity:0;pointer-events:none;-webkit-font-smoothing:antialiased}.tertiary-collapse-toggle-pf:before{content:""}.tertiary-collapse-toggle-pf.collapsed:before{content:""}.nav-pf-vertical-collapsible-menus .secondary-collapse-toggle-pf{display:inline-block}.nav-pf-vertical-collapsible-menus .secondary-nav-item-pf.active .secondary-collapse-toggle-pf{opacity:1;pointer-events:all}.nav-pf-vertical-collapsible-menus .tertiary-collapse-toggle-pf{display:inline-block}.nav-pf-vertical-collapsible-menus .tertiary-nav-item-pf.active .tertiary-collapse-toggle-pf{opacity:1;pointer-events:all}.show-mobile-nav .secondary-collapse-toggle-pf{display:inline-block;opacity:1;pointer-events:all}.show-mobile-nav .secondary-collapse-toggle-pf:before{content:""}.show-mobile-nav .tertiary-collapse-toggle-pf{display:inline-block;opacity:1;pointer-events:all}.show-mobile-nav .tertiary-collapse-toggle-pf:before{content:""}.force-hide-secondary-nav-pf .nav-pf-secondary-nav{display:none!important}.force-hide-secondary-nav-pf .nav-pf-tertiary-nav{display:none!important}.nav-pf-vertical.transitions{transition:width .1s}.nav-pf-vertical.transitions .nav-pf-secondary-nav{transition:visibility .1s,opacity .1s linear}.nav-pf-vertical.transitions .nav-pf-tertiary-nav{transition:visibility .1s,opacity .1s linear}.wizard-pf{padding:10px;margin:0 auto;max-height:900px;width:auto}.wizard-pf .modal-content{min-height:100%}.wizard-pf-body{background:#fff;padding:0;position:static}.wizard-pf-sidebar{background:#fafafa;border-right:1px solid #d1d1d1;display:none}@media (min-width:768px){.wizard-pf-sidebar{display:inherit;-ms-flex:0 0 auto;flex:0 0 auto;overflow-x:hidden;overflow-y:auto}.wizard-pf-sidebar .list-group{border-top:0;margin-bottom:0}.wizard-pf-sidebar .list-group-item{background-color:transparent;border-color:#ededed;padding:0}.wizard-pf-sidebar .list-group-item>a{color:#030303;cursor:pointer;display:block;font-size:14px;font-weight:700;height:50px;outline:0;padding-top:11px;padding-left:20px;position:relative;white-space:nowrap;width:14em}.wizard-pf-sidebar .list-group-item>a:hover{text-decoration:none;background-color:#ededed}.wizard-pf-sidebar .list-group-item>a:focus{text-decoration:none}.wizard-pf-sidebar .list-group-item>a:focus span{text-decoration:underline}.wizard-pf-sidebar .list-group-item.active{background-color:#ededed}.wizard-pf-sidebar .list-group-item.active:hover{border-color:#ededed}.wizard-pf-sidebar .list-group-item.active>a{color:#39a5dc;cursor:default}.wizard-pf-sidebar .list-group-item.active>a:before{content:" ";background:#39a5dc;height:100%;left:0;position:absolute;top:0;width:3px}.wizard-pf-sidebar .list-group-item.active>a:after{color:#39a5dc;content:"\f105";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;line-height:30px;padding-top:10px;position:absolute;right:23px;top:0}}.wizard-pf-substep-number{display:inline-block;margin-right:5px;vertical-align:middle;width:25px}.wizard-pf-substep-title{display:inline-block;margin-right:5px;text-align:left;vertical-align:middle}.wizard-pf-steps{border-bottom:solid 1px #d1d1d1}@media (min-width:768px){.wizard-pf-steps{text-align:center}}.wizard-pf-steps-indicator{background:#ededed;border-top:1px solid #d1d1d1;display:inline-block;display:-ms-flexbox;display:flex;font-size:16px;list-style:none;margin-bottom:0;padding:15px 0}@media (min-width:768px){.wizard-pf-steps-indicator{background:#fff;height:120px;padding:38px 0 0;-ms-flex-pack:distribute;justify-content:space-around}}.wizard-pf-steps-indicator li{counter-increment:section;float:left;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0;line-height:15px;margin:0;padding:0;position:relative;text-align:center}.wizard-pf-steps-indicator li:not(.active){display:none}@media (min-width:768px){.wizard-pf-steps-indicator li:not(.active){display:block}}.wizard-pf-steps-indicator li a{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;font-weight:700}@media (min-width:768px){.wizard-pf-steps-indicator li a{font-weight:400;-ms-flex-pack:center;justify-content:center}}.wizard-pf-steps-indicator li a .wizard-pf-step-title{margin-left:10px}@media (min-width:768px){.wizard-pf-steps-indicator li a .wizard-pf-step-title{margin-left:0}}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep{font-weight:400;margin-left:10px;text-transform:capitalize}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:before{content:"\00BB";font-size:20px;margin-right:10px}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:not(.active){display:none}@media (min-width:768px){.wizard-pf-steps-indicator li .wizard-pf-step-title-substep{display:none}.wizard-pf-steps-indicator li:before{background-color:#bbb;content:"";height:2px;left:0;position:absolute;right:0;top:40px}.wizard-pf-steps-indicator li:first-child:before{left:50%;right:0}.wizard-pf-steps-indicator li:last-child:before{left:0;right:50%}.wizard-pf-steps-indicator li:only-of-type:before{background-color:transparent}}.wizard-pf-steps-indicator li a{color:#030303;cursor:pointer;font-size:16px;margin-left:1em;margin-right:1em;text-decoration:none}.wizard-pf-steps-indicator li a:hover .wizard-pf-step-number{background-color:#bbb;border-color:#bbb;color:#fff}.wizard-pf-steps-indicator .wizard-pf-step-number{background-color:#fff;border-radius:50%;border:solid 2px #bbb;color:#bbb;font-size:12px;font-weight:700;height:25px;line-height:22px;width:25px}@media (min-width:768px){.wizard-pf-steps-indicator .wizard-pf-step-number{left:calc(50% - 13px);position:absolute;top:27px}}.wizard-pf-steps-indicator .active .wizard-pf-step-number{background-color:#39a5dc;border-color:#39a5dc;cursor:default;color:#fff}.wizard-pf-steps-indicator .viewed-pf .wizard-pf-step-number{color:#030303;background-color:#fff;border-color:#39a5dc}.wizard-pf-main{height:100%;padding:1em;vertical-align:top;width:100%}@media (min-width:768px){.wizard-pf-main{overflow:auto;padding:3em;-ms-flex:1 1 auto;flex:1 1 auto}}.wizard-pf-main .blank-slate-pf{background-color:transparent;border:none;left:0;right:0}.wizard-pf-contents textarea{resize:vertical}.wizard-pf-review-steps{list-style:none}.wizard-pf-review-steps .list-group,.wizard-pf-review-steps .list-group-item{border:none;margin-bottom:0}.wizard-pf-review-steps>ul>li{float:left;line-height:15px;margin:0;padding-top:0;position:relative;width:100%}.wizard-pf-review-steps>ul>li>a{color:#030303;cursor:pointer;font-size:16px;padding-left:30px;padding-right:5px;text-decoration:none;transition:250ms}.wizard-pf-review-steps>ul>li>a:before{content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;left:20px;position:absolute;top:0}.wizard-pf-review-steps>ul>li>a.collapsed:before{content:"\f105"}.wizard-pf-review-substeps{padding-left:22px}.wizard-pf-review-substeps>ul>li{float:left;line-height:15px;margin:0;position:relative;width:100%}.wizard-pf-review-substeps>ul>li a{color:#030303;cursor:pointer;font-size:16px;padding-left:30px;padding-right:5px;text-decoration:none;transition:250ms}.wizard-pf-review-substeps>ul>li a:before{content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;left:20px;position:absolute;top:10px}.wizard-pf-review-substeps>ul>li a.collapsed:before{content:"\f105"}.wizard-pf-review-content{padding-top:10px;padding-left:40px}.wizard-pf-review-content .wizard-pf-review-item{padding:5px 0}.wizard-pf-review-content .wizard-pf-review-item.sub-item{margin-left:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-label{font-weight:700;padding-right:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field{font-weight:700;margin:5px 0;padding-right:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:first-of-type{margin-top:0}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:last-of-type{margin-bottom:0}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field.sub-field{margin-left:10px}.wizard-pf-success-icon{color:#3f9c35;font-size:67.2px;line-height:67.2px}.wizard-pf-footer{background:#fff;border-top:1px solid #d1d1d1;margin-top:0;padding-bottom:17px}.wizard-pf-footer .btn-cancel{margin-right:25px}@media (min-width:768px){.wizard-pf-row{display:-ms-flexbox;display:flex;width:100%;height:900px;max-height:65vh}}@media (min-width:992px){.wizard-pf{padding:30px 0;width:900px}.wizard-pf-sidebar .list-group-item>a{width:18em}}.wizard-pf-steps-alt,.wizard-pf-steps-alt ul{list-style:none;margin:0;padding:0}.wizard-pf-steps-alt{margin-left:15px;margin-top:15px;background-image:linear-gradient(to right,transparent 11px,#d1d1d1 11px,#d1d1d1 13px,transparent 13px)}@media (min-width:768px){.wizard-pf-steps-alt{display:none}}.wizard-pf-steps-alt-indicator{position:relative}.wizard-pf-steps-alt-indicator:after{color:#4d5258;content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;position:absolute;right:17px;top:50%;-ms-transform:translateY(-50%);transform:translateY(-50%)}@media (min-width:768px){.wizard-pf-steps-alt-indicator:after{display:none}}.wizard-pf-steps-alt-indicator.active:after{content:"\f106"}.wizard-pf-step-alt{margin-bottom:10px}.wizard-pf-step-alt a{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1}.wizard-pf-step-alt a:hover{text-decoration:none}.wizard-pf-step-alt a:hover .wizard-pf-step-alt-title{color:#39a5dc}.wizard-pf-step-alt ul{margin-left:11px}.wizard-pf-step-alt .wizard-pf-step-alt-title{margin-left:5px;-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.wizard-pf-step-alt .wizard-pf-step-alt-number{-ms-flex:0 0 auto;flex:0 0 auto}.wizard-pf-step-alt.active .wizard-pf-step-alt-number{background-color:#39a5dc;border-color:#39a5dc;cursor:default;color:#fff}.wizard-pf-step-alt.active .wizard-pf-step-alt-title{color:#39a5dc}.wizard-pf-step-alt.active .wizard-pf-step-alt-substep:first-of-type{margin-top:2px}.wizard-pf-step-alt.viewed .wizard-pf-step-alt-number{color:#030303;background-color:#fff;border-color:#39a5dc}.wizard-pf-step-alt-number{background-color:#fff;border-radius:50%;border:solid 2px #bbb;color:#bbb;font-size:12px;font-weight:700;height:24px;width:24px;display:inline-block;text-align:center}.wizard-pf-step-alt-title{color:#030303;font-weight:700;text-transform:capitalize;display:inline-block}.wizard-pf-step-alt-substep{display:-ms-flexbox;display:flex}.wizard-pf-step-alt-substep a{padding:5px 0 5px 18px;color:#393f44}.wizard-pf-step-alt-substep:not(.disabled).active,.wizard-pf-step-alt-substep:not(.disabled):hover{background-color:#ededed;background-image:linear-gradient(to right,#39a5dc 2px,transparent 2px)}.wizard-pf-step-alt-substep:not(.disabled).active a,.wizard-pf-step-alt-substep:not(.disabled):hover a{color:#39a5dc}.wizard-pf-step-alt-substep.active a{font-weight:700}.wizard-pf-step-alt-substep.disabled{cursor:not-allowed}.wizard-pf-step-alt-substep.disabled a{pointer-events:none}
\ No newline at end of file
+ */.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:700;font-size:1em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after{content:"Increment Hours";content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after{content:"Increment Minutes";content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after{content:"Decrement Hours";content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after{content:"Decrement Minutes";content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after{content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after{content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after{content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action=clear]::after{content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action=today]::after{content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:1px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:0 0}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#9c9c9c}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:0 0;cursor:pointer}.bootstrap-datetimepicker-widget table td.new,.bootstrap-datetimepicker-widget table td.old{color:#9c9c9c}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#0088ce;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#0088ce;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:1px}.bootstrap-datetimepicker-widget table td span:hover{background:0 0}.bootstrap-datetimepicker-widget table td span.active{background-color:#0088ce;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td span.old{color:#9c9c9c}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.input-group.date .input-group-addon{cursor:pointer}.text-overflow-pf{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.alert{border-width:1px;padding-left:47px;padding-right:14px;position:relative;word-wrap:break-word}.alert .alert-link{color:#0088ce}.alert .alert-link:hover{color:#00659c}.alert>.btn.pull-right{margin-top:-3px}.alert>.pficon{font-size:22px;position:absolute;left:13px;top:10px}.alert .close{opacity:.85}.alert .close:focus,.alert .close:hover{opacity:1}.alert .pficon-info{color:#4d5258}.alert-dismissable{padding-right:28px}.alert-dismissable .close{right:-13px;top:1px}.badge{margin-left:6px}.nav-pills>li>a>.badge{margin-left:6px}.breadcrumb{padding-left:0}.breadcrumb>.active strong{font-weight:600}.breadcrumb>li{display:inline}.breadcrumb>li+li:before{color:#9c9c9c;content:"";font-family:FontAwesome;font-size:11px;padding:0 9px 0 7px}.btn{box-shadow:0 2px 3px rgba(3,3,3,.1)}.btn:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{background-color:#fafafa!important;background-image:none!important;border-color:#d1d1d1!important;color:#8b8d8f!important;opacity:1}.btn.disabled:active,.btn[disabled]:active,fieldset[disabled] .btn:active{box-shadow:none}.btn.disabled.btn-link,.btn[disabled].btn-link,fieldset[disabled] .btn.btn-link{background-color:transparent!important;border:0}.btn-danger{background-color:#a30000;background-image:linear-gradient(to bottom,#c00 0,#a30000 100%);background-repeat:repeat-x;border-color:#8b0000;color:#fff}.btn-danger .open .dropdown-toggle.btn-danger,.btn-danger.active,.btn-danger:active,.btn-danger:focus,.btn-danger:hover{background-color:#a30000;background-image:none;border-color:#8b0000;color:#fff}.btn-danger .open .dropdown-toggle.btn-danger,.btn-danger.active,.btn-danger:active{background-image:none}.btn-danger .open .dropdown-toggle.btn-danger.focus,.btn-danger .open .dropdown-toggle.btn-danger:focus,.btn-danger .open .dropdown-toggle.btn-danger:hover,.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover{background-color:#8a0000;border-color:#670000}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#a30000;border-color:#8b0000}.btn-default{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258}.btn-default .open .dropdown-toggle.btn-default,.btn-default.active,.btn-default:active,.btn-default:focus,.btn-default:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.btn-default .open .dropdown-toggle.btn-default,.btn-default.active,.btn-default:active{background-image:none}.btn-default .open .dropdown-toggle.btn-default.focus,.btn-default .open .dropdown-toggle.btn-default:focus,.btn-default .open .dropdown-toggle.btn-default:hover,.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#f1f1f1;border-color:#bbb}.btn-link,.btn-link:active{box-shadow:none}.btn-primary{background-color:#0088ce;background-image:linear-gradient(to bottom,#39a5dc 0,#0088ce 100%);background-repeat:repeat-x;border-color:#00659c;color:#fff}.btn-primary .open .dropdown-toggle.btn-primary,.btn-primary.active,.btn-primary:active,.btn-primary:focus,.btn-primary:hover{background-color:#0088ce;background-image:none;border-color:#00659c;color:#fff}.btn-primary .open .dropdown-toggle.btn-primary,.btn-primary.active,.btn-primary:active{background-image:none}.btn-primary .open .dropdown-toggle.btn-primary.focus,.btn-primary .open .dropdown-toggle.btn-primary:focus,.btn-primary .open .dropdown-toggle.btn-primary:hover,.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover{background-color:#0077b5;border-color:#004e78}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#0088ce;border-color:#00659c}.btn-group-xs .btn,.btn-group-xs>.btn,.btn-xs{font-weight:400}.caret{font-family:FontAwesome;font-weight:400;height:9px;position:relative;vertical-align:baseline;width:12px}.caret:before{bottom:0;content:"";left:0;line-height:12px;position:absolute;text-align:center;top:-1px;right:0}.dropup .caret:before{content:""}.dropdown-toggle:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.dropdown-menu .divider{background-color:#ededed;height:1px;margin:4px 1px;overflow:hidden}.dropdown-menu>li>a{border-color:transparent;border-style:solid;border-width:1px 0;padding:1px 10px}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{border-color:#bee1f4}.dropdown-menu>li>a:active{background-color:#0088ce;border-color:#0088ce;color:#fff!important}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#0088ce!important;border-color:#0088ce!important}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{border-color:transparent}.dropdown-menu>.selected>a{background-color:#0088ce;border-color:#0088ce;color:#fff}.dropdown-menu>.selected>a small{color:rgba(255,255,255,.5)}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{border-color:transparent}.dropdown-header{padding-left:10px;padding-right:10px;text-transform:uppercase}.btn-group>.dropdown-menu,.dropdown>.dropdown-menu,.input-group-btn>.dropdown-menu{margin-top:-1px}.dropup .dropdown-menu{margin-bottom:-1px}.dropdown-submenu{position:relative}.dropdown-submenu:hover>a{background-color:#def3ff;border-color:#bee1f4}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropdown-submenu.pull-left{float:none!important}.dropdown-submenu.pull-left>.dropdown-menu{left:auto;margin-left:10px;right:100%}.dropdown-submenu>a{padding-right:20px!important}.dropdown-submenu>a:after{content:"";font-family:FontAwesome;display:block;position:absolute;right:10px;top:2px}.dropdown-submenu>.dropdown-menu{left:100%;margin-top:0;top:-6px}.dropup .dropdown-submenu>.dropdown-menu{bottom:-5px;top:auto}.open .dropdown-submenu.active>.dropdown-menu{display:block}.dropdown-kebab-pf .btn-link,.dropdown-kebab-pf.btn-group>.btn:first-child{color:#252525;font-size:16px;line-height:1;padding:4px 10px;margin-left:-10px;margin-right:-10px}.dropdown-kebab-pf .btn-link:active,.dropdown-kebab-pf .btn-link:focus,.dropdown-kebab-pf .btn-link:hover,.dropdown-kebab-pf.btn-group>.btn:first-child:active,.dropdown-kebab-pf.btn-group>.btn:first-child:focus,.dropdown-kebab-pf.btn-group>.btn:first-child:hover{color:#0088ce}.dropdown-kebab-pf.btn-group{margin-left:10px}.dropdown-kebab-pf .dropdown-menu{left:-15px;margin-top:11px}.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right{left:auto;right:-15px}.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:after,.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:before{left:auto;right:6px}.dropdown-kebab-pf .dropdown-menu:after,.dropdown-kebab-pf .dropdown-menu:before{border-bottom-color:#bbb;border-bottom-style:solid;border-bottom-width:10px;border-left:10px solid transparent;border-right:10px solid transparent;content:"";display:inline-block;left:6px;position:absolute;top:-11px}.dropdown-kebab-pf .dropdown-menu:after{border-bottom-color:#fff;top:-10px}.dropdown-kebab-pf.dropup .dropdown-menu{margin-bottom:11px;margin-top:0}.dropdown-kebab-pf.dropup .dropdown-menu:after,.dropdown-kebab-pf.dropup .dropdown-menu:before{border-bottom:none;border-top-color:#bbb;border-top-style:solid;border-top-width:10px;bottom:-11px;top:auto}.dropdown-kebab-pf.dropup .dropdown-menu:after{border-top-color:#fff;bottom:-10px}.chars-remaining-pf span{font-weight:600;padding-right:5px}.chars-warn-remaining-pf{color:#c00}.fields-status-pf{color:#8b8d8f;margin-bottom:15px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{box-shadow:none;color:#8b8d8f}.form-control[disabled]:hover,.form-control[readonly]:hover,fieldset[disabled] .form-control:hover{border-color:#bbb}.form-control:hover{border-color:#7dc3e8}.has-error .form-control:hover{border-color:#900}.has-success .form-control:hover{border-color:#2b542c}.has-warning .form-control:hover{border-color:#bb6106}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label,.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label,.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#363636}.help-block{margin-bottom:0}.input-group .input-group-btn .btn{box-shadow:none}label{font-weight:600}label.required-pf:after{color:#c00;content:"*";margin-left:3px}span.required-pf{color:#c00}.fields-section-pf{border-color:#ededed;border-style:solid;border-width:1px 0 0;margin-top:25px;padding:15px 0 0}.fields-section-header-pf{border:none;font-size:12px;margin:0;padding-right:10px;width:auto}.fields-section-header-pf .fa-angle-right{cursor:pointer;font-size:14px;width:14px}.label{border-radius:0;font-size:100%;font-weight:600}h1 .label,h2 .label,h3 .label,h4 .label,h5 .label,h6 .label{font-size:75%}.list-group{border-top:1px solid #ededed}.list-group .list-group-item:first-child{border-top:0}.list-group-item{border-left:0;border-right:0}.list-group-item-heading{font-weight:600}.modal-header{background-color:#f5f5f5;border-bottom:none;padding:10px 18px}.modal-header .close{margin-top:2px}.modal-title{font-size:13px;font-weight:700}.modal-footer{border-top:none;margin-top:15px;padding:14px 15px 15px}.modal-footer>.btn{padding-left:10px;padding-right:10px}.modal-footer>.btn>.fa-angle-left{margin-right:5px}.modal-footer>.btn>.fa-angle-right{margin-left:5px}.pager li>a,.pager li>span{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;color:#4d5258;font-weight:600;line-height:22px;padding:2px 14px}.pager li>a .open .dropdown-toggle.pager li>a,.pager li>a .pager li>span,.pager li>a.active,.pager li>a:active,.pager li>a:focus,.pager li>a:hover,.pager li>span .open .dropdown-toggle.pager li>a,.pager li>span .pager li>span,.pager li>span.active,.pager li>span:active,.pager li>span:focus,.pager li>span:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.pager li>a .open .dropdown-toggle.pager li>a,.pager li>a .pager li>span,.pager li>a.active,.pager li>a:active,.pager li>span .open .dropdown-toggle.pager li>a,.pager li>span .pager li>span,.pager li>span.active,.pager li>span:active{background-image:none}.pager li>a .open .dropdown-toggle.pager li>a.focus,.pager li>a .open .dropdown-toggle.pager li>a:focus,.pager li>a .open .dropdown-toggle.pager li>a:hover,.pager li>a .pager li>span.focus,.pager li>a .pager li>span:focus,.pager li>a .pager li>span:hover,.pager li>a.active.focus,.pager li>a.active:focus,.pager li>a.active:hover,.pager li>a:active.focus,.pager li>a:active:focus,.pager li>a:active:hover,.pager li>span .open .dropdown-toggle.pager li>a.focus,.pager li>span .open .dropdown-toggle.pager li>a:focus,.pager li>span .open .dropdown-toggle.pager li>a:hover,.pager li>span .pager li>span.focus,.pager li>span .pager li>span:focus,.pager li>span .pager li>span:hover,.pager li>span.active.focus,.pager li>span.active:focus,.pager li>span.active:hover,.pager li>span:active.focus,.pager li>span:active:focus,.pager li>span:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.pager li>a.disabled,.pager li>a.disabled.active,.pager li>a.disabled:active,.pager li>a.disabled:focus,.pager li>a.disabled:hover,.pager li>a[disabled],.pager li>a[disabled].active,.pager li>a[disabled]:active,.pager li>a[disabled]:focus,.pager li>a[disabled]:hover,.pager li>span.disabled,.pager li>span.disabled.active,.pager li>span.disabled:active,.pager li>span.disabled:focus,.pager li>span.disabled:hover,.pager li>span[disabled],.pager li>span[disabled].active,.pager li>span[disabled]:active,.pager li>span[disabled]:focus,.pager li>span[disabled]:hover,fieldset[disabled] .pager li>a,fieldset[disabled] .pager li>a.active,fieldset[disabled] .pager li>a:active,fieldset[disabled] .pager li>a:focus,fieldset[disabled] .pager li>a:hover,fieldset[disabled] .pager li>span,fieldset[disabled] .pager li>span.active,fieldset[disabled] .pager li>span:active,fieldset[disabled] .pager li>span:focus,fieldset[disabled] .pager li>span:hover{background-color:#f1f1f1;border-color:#bbb}.pager li>a>.i,.pager li>span>.i{font-size:18px;vertical-align:top;margin:2px 0}.pager li a:active{background-image:none;box-shadow:inset 0 3px 5px rgba(3,3,3,.125);outline:0}.pager .disabled>a,.pager .disabled>a:active,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{background:#f5f5f5;box-shadow:none;color:#8b8d8f;cursor:not-allowed}.pager .next>a>.i,.pager .next>span>.i{margin-left:5px}.pager .previous>a>.i,.pager .previous>span>.i{margin-right:5px}.pager-sm li>a,.pager-sm li>span{font-weight:400;line-height:16px;padding:1px 10px}.pager-sm li>a>.i,.pager-sm li>span>.i{font-size:12px}.pagination>li>a,.pagination>li>span{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;cursor:default;font-weight:600;padding:2px 10px}.pagination>li>a .open .dropdown-toggle.pagination>li>a,.pagination>li>a .pagination>li>span,.pagination>li>a.active,.pagination>li>a:active,.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span .open .dropdown-toggle.pagination>li>a,.pagination>li>span .pagination>li>span,.pagination>li>span.active,.pagination>li>span:active,.pagination>li>span:focus,.pagination>li>span:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.pagination>li>a .open .dropdown-toggle.pagination>li>a,.pagination>li>a .pagination>li>span,.pagination>li>a.active,.pagination>li>a:active,.pagination>li>span .open .dropdown-toggle.pagination>li>a,.pagination>li>span .pagination>li>span,.pagination>li>span.active,.pagination>li>span:active{background-image:none}.pagination>li>a .open .dropdown-toggle.pagination>li>a.focus,.pagination>li>a .open .dropdown-toggle.pagination>li>a:focus,.pagination>li>a .open .dropdown-toggle.pagination>li>a:hover,.pagination>li>a .pagination>li>span.focus,.pagination>li>a .pagination>li>span:focus,.pagination>li>a .pagination>li>span:hover,.pagination>li>a.active.focus,.pagination>li>a.active:focus,.pagination>li>a.active:hover,.pagination>li>a:active.focus,.pagination>li>a:active:focus,.pagination>li>a:active:hover,.pagination>li>span .open .dropdown-toggle.pagination>li>a.focus,.pagination>li>span .open .dropdown-toggle.pagination>li>a:focus,.pagination>li>span .open .dropdown-toggle.pagination>li>a:hover,.pagination>li>span .pagination>li>span.focus,.pagination>li>span .pagination>li>span:focus,.pagination>li>span .pagination>li>span:hover,.pagination>li>span.active.focus,.pagination>li>span.active:focus,.pagination>li>span.active:hover,.pagination>li>span:active.focus,.pagination>li>span:active:focus,.pagination>li>span:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.pagination>li>a.disabled,.pagination>li>a.disabled.active,.pagination>li>a.disabled:active,.pagination>li>a.disabled:focus,.pagination>li>a.disabled:hover,.pagination>li>a[disabled],.pagination>li>a[disabled].active,.pagination>li>a[disabled]:active,.pagination>li>a[disabled]:focus,.pagination>li>a[disabled]:hover,.pagination>li>span.disabled,.pagination>li>span.disabled.active,.pagination>li>span.disabled:active,.pagination>li>span.disabled:focus,.pagination>li>span.disabled:hover,.pagination>li>span[disabled],.pagination>li>span[disabled].active,.pagination>li>span[disabled]:active,.pagination>li>span[disabled]:focus,.pagination>li>span[disabled]:hover,fieldset[disabled] .pagination>li>a,fieldset[disabled] .pagination>li>a.active,fieldset[disabled] .pagination>li>a:active,fieldset[disabled] .pagination>li>a:focus,fieldset[disabled] .pagination>li>a:hover,fieldset[disabled] .pagination>li>span,fieldset[disabled] .pagination>li>span.active,fieldset[disabled] .pagination>li>span:active,fieldset[disabled] .pagination>li>span:focus,fieldset[disabled] .pagination>li>span:hover{background-color:#f1f1f1;border-color:#bbb}.pagination>li>a>.i,.pagination>li>span>.i{font-size:15px;vertical-align:top;margin:2px 0}.pagination>li>a:active,.pagination>li>span:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{background-color:#f1f1f1;border-color:#bbb;box-shadow:inset 0 2px 8px rgba(3,3,3,.2);color:#4d5258;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{box-shadow:none;cursor:not-allowed;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.pagination-sm>li>a,.pagination-sm>li>span{padding:2px 6px;font-size:11px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pagination-sm>li>a,.pagination-sm>li>span{font-weight:400}.pagination-sm>li>a>.i,.pagination-sm>li>span>.i{font-size:12px;margin-top:2px}.content-view-pf-pagination{background-color:#f5f5f5;border:1px solid #d1d1d1;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between}.content-view-pf-pagination.table-view-pf-pagination{border-top:none}.content-view-pf-pagination .form-group{-ms-flex-align:baseline;align-items:baseline;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;float:left;margin:5px}@supports (display:flex){.content-view-pf-pagination .form-group{float:none}}.content-view-pf-pagination .form-group:last-child{-ms-flex-pack:end;justify-content:flex-end;float:right}@supports (display:flex){.content-view-pf-pagination .form-group:last-child{float:none}}.content-view-pf-pagination .form-group .pagination-pf-pagesize.bootstrap-select.btn-group,.content-view-pf-pagination .form-group .pagination-pf-pagesize.btn-group{display:-ms-flexbox;display:flex;float:none;margin-bottom:0;margin-left:0;margin-right:5px;width:auto}.content-view-pf-pagination .form-group .dropdown-menu{min-width:auto}.content-view-pf-pagination .pagination-pf-page{margin-left:10px;margin-right:5px;padding:0 2px 2px;text-align:right;width:2.5em}.content-view-pf-pagination .pagination{display:-ms-flexbox;display:flex;margin:0 0 0 10px}.content-view-pf-pagination .pagination a{float:none}@supports (display:flex){.content-view-pf-pagination .pagination a{display:block}}.panel-title{font-weight:700}.panel-group .panel{color:#4d5258}.panel-group .panel+.panel{margin-top:-1px}.panel-group .panel-default{border-color:#bbb;border-top-color:#bbb}.panel-group .panel-default .panel-heading{background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.panel-group .panel-default .panel-heading+.panel-collapse .panel-body{border-top:1px solid #d1d1d1}.panel-group .panel-info{border-color:#00659c}.panel-group .panel-info .panel-heading{background-color:#dae5f4}.panel-group .panel-info+.panel-default{border-top-color:#00659c}.panel-group .panel-primary{border-color:#39a5dc}.panel-group .panel-primary .panel-heading{background-color:#def0f9}.panel-group .panel-primary+.panel-default{border-top-color:#39a5dc}.panel-group .panel-primary+.panel-info{border-top-color:#39a5dc}.panel-group .panel-success{border-color:#3f9c35}.panel-group .panel-success .panel-heading{background-color:#e9f4e9}.panel-group .panel-success+.panel-default{border-top-color:#3f9c35}.panel-group .panel-success+.panel-info{border-top-color:#3f9c35}.panel-group .panel-success+.panel-primary{border-top-color:#3f9c35}.panel-group .panel-warning{border-color:#ec7a08}.panel-group .panel-warning .panel-heading{background-color:#fdf2e5}.panel-group .panel-warning+.panel-default{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-info{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-primary{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-success{border-top-color:#ec7a08}.panel-group .panel-danger{border-color:#c00}.panel-group .panel-danger .panel-heading{background-color:#ffe6e6}.panel-group .panel-danger+.panel-default{border-top-color:#c00}.panel-group .panel-danger+.panel-info{border-top-color:#c00}.panel-group .panel-danger+.panel-primary{border-top-color:#c00}.panel-group .panel-danger+.panel-success{border-top-color:#c00}.panel-group .panel-danger+.panel-warning{border-top-color:#c00}.panel-group .panel-title{font-weight:500;line-height:1}.panel-group .panel-title>a{color:#4d5258;font-weight:600}.panel-group .panel-title>a:before{content:"\f107";display:inline-block;font-family:FontAwesome;font-size:13px;margin-right:5px;text-align:center;vertical-align:0;width:8px}.panel-group .panel-title>a:focus{outline:0;text-decoration:none}.panel-group .panel-title>a:hover{text-decoration:none}.panel-group .panel-title>a.collapsed:before{content:"\f105"}.popover{box-shadow:0 2px 2px rgba(3,3,3,.08);padding:0}.popover-content{color:#4d5258;line-height:18px;padding:10px 14px}.popover-title{border-bottom:none;border-radius:0;color:#4d5258;font-size:13px;font-weight:700;min-height:34px}.popover-title .close{height:22px;position:absolute;right:8px;top:6px}.popover-title.closable{padding-right:30px}@keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}.progress{box-shadow:inset 0 0 1px rgba(3,3,3,.25)}.progress.progress-label-left,.progress.progress-label-top-right{overflow:visible;position:relative}.progress.progress-label-left{margin-left:40px}.progress.progress-sm{height:14px;margin-bottom:14px}.progress.progress-xs{height:6px;margin-bottom:6px}td>.progress:first-child:last-child{margin-bottom:0;margin-top:3px}.progress-bar{box-shadow:none}.progress-label-left .progress-bar span,.progress-label-right .progress-bar span,.progress-label-top-right .progress-bar span{color:#363636;position:absolute;text-align:right}.progress-label-left .progress-bar span{font-size:14px;left:-40px;top:0;width:35px}.progress-label-right .progress-bar span,.progress-label-top-right .progress-bar span{font-size:11px;overflow:hidden;right:0;text-overflow:ellipsis;white-space:nowrap}.progress-label-right .progress-bar span strong,.progress-label-top-right .progress-bar span strong{font-weight:600}.progress-label-right .progress-bar span{max-width:85px;top:0}.progress-label-top-right .progress-bar span{max-width:47%;top:-30px}.progress-label-left.progress-sm .progress-bar span,.progress-label-top-right.progress-sm .progress-bar span{font-size:12px}.progress-sm .progress-bar{line-height:14px}.progress-xs .progress-bar{line-height:6px}.progress-bar-remaining{background:0 0}.progress-container{position:relative}.progress-container.progress-description-left{padding-left:90px}.progress-container.progress-label-right{padding-right:90px}.progress-description{margin-bottom:10px;max-width:52%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.progress-description .count{font-size:20.004px;font-weight:300;line-height:1;margin-right:5px}.progress-description .fa,.progress-description .pficon{font-size:14px;margin-right:3px}.progress-description-left .progress-description{left:0;margin-bottom:0;max-width:85px;position:absolute;top:0}.progress-description .tooltip{white-space:normal}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:2px 10px 3px}.table>tbody>tr>td>a:hover,.table>tbody>tr>th>a:hover,.table>tfoot>tr>td>a:hover,.table>tfoot>tr>th>a:hover,.table>thead>tr>td>a:hover,.table>thead>tr>th>a:hover{text-decoration:none}.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>th{font-family:"Open Sans";font-style:normal;font-weight:600}.table>thead{background-clip:padding-box;background-color:#f5f5f5;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.table-bordered{border:1px solid #d1d1d1}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #d1d1d1}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:1px}.table-striped>tbody>tr:nth-of-type(even){background-color:#f5f5f5}.table-striped>tbody>tr:nth-of-type(odd){background-color:transparent}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#def3ff;border-bottom-color:#7dc3e8}.table-treegrid span.indent{margin-left:10px;margin-right:10px}.table-treegrid span.icon{display:inline-block;font-size:13px;margin-right:5px;min-width:10px;text-align:center}.table-treegrid span.collapse-icon,.table-treegrid span.expand-icon{cursor:pointer}.table-treegrid>tbody>tr.odd{background-color:#f5f5f5}.nav-tabs{font-size:14px}.nav-tabs>li>a{color:#4d5258;margin-right:-1px;padding-bottom:5px;padding-top:5px}.nav-tabs>li>a:active,.nav-tabs>li>a:focus,.nav-tabs>li>a:hover{background:0 0;border-color:#ededed;color:#252525}.nav-tabs>li>.dropdown-menu{border-top:0;border-color:#ededed}.nav-tabs>li>.dropdown-menu.pull-right{right:-1px}.nav-tabs+.nav-tabs-pf,.nav-tabs.nav-tabs-pf-secondary{font-size:12px}.nav-tabs+.nav-tabs-pf>li:first-child>a,.nav-tabs.nav-tabs-pf-secondary>li:first-child>a{padding-left:15px}.nav-tabs+.nav-tabs-pf>li:first-child>a:before,.nav-tabs.nav-tabs-pf-secondary>li:first-child>a:before{left:15px!important}.nav-tabs .open>a,.nav-tabs .open>a:focus,.nav-tabs .open>a:hover{background-color:transparent;border-color:#ededed}@media (min-width:768px){.nav-tabs-pf.nav-justified{border-bottom:1px solid #ededed}}.nav-tabs-pf.nav-justified>li:first-child>a{padding-left:15px}.nav-tabs-pf.nav-justified>li>a{border-bottom:0}.nav-tabs-pf.nav-justified>li>a:before{left:0!important;right:0!important}.nav-tabs-pf>li{margin-bottom:0}.nav-tabs-pf>li.active>a:before{background:#0088ce;bottom:-1px;content:"";display:block;height:2px;left:15px;position:absolute;right:15px}.nav-tabs-pf>li.active>a,.nav-tabs-pf>li.active>a:active,.nav-tabs-pf>li.active>a:focus,.nav-tabs-pf>li.active>a:hover{background-color:transparent;border:0!important;color:#0088ce}.nav-tabs-pf>li.active>a:active:before,.nav-tabs-pf>li.active>a:before,.nav-tabs-pf>li.active>a:focus:before,.nav-tabs-pf>li.active>a:hover:before{background:#0088ce}.nav-tabs-pf>li:first-child>a{padding-left:0}.nav-tabs-pf>li:first-child>a:before{left:0!important}.nav-tabs-pf>li>a{border:0;line-height:1;margin-right:0;padding-bottom:10px;padding-top:10px}.nav-tabs-pf>li>a:active:before,.nav-tabs-pf>li>a:focus:before,.nav-tabs-pf>li>a:hover:before{background:#bbb;bottom:-1px;content:"";display:block;height:2px;left:15px;position:absolute;right:15px}.nav-tabs-pf>li>.dropdown-menu{left:15px;margin-top:1px}.nav-tabs-pf>li>.dropdown-menu.pull-right{left:auto;right:15px}.nav-tabs-pf .open>a,.nav-tabs-pf .open>a:focus,.nav-tabs-pf .open>a:hover{background-color:transparent}.tooltip{font-size:12px;line-height:1.4}.tooltip-inner{padding:7px 12px;text-align:left}.h1,.h2,h1,h2{font-weight:300}.page-header .actions{margin-top:8px}.page-header .actions a>.pficon{margin-right:4px}@media (min-width:767px){.page-header-bleed-left{margin-left:-20px}.page-header-bleed-right{margin-right:-20px}.page-header-bleed-right .actions{margin-right:20px}}.about-modal-pf{background-color:#292e34;background-image:url(../img/bg-modal-about-pf.png);background-position:right bottom;background-repeat:no-repeat;background-size:216px auto}@media (min-width:768px){.about-modal-pf{background-size:auto}}.about-modal-pf .modal-body{color:#fff;padding-bottom:16px;padding-left:40px;padding-right:40px}@media (min-width:768px){.about-modal-pf .modal-body{padding-left:80px;padding-right:80px}}.about-modal-pf .modal-header{background-color:transparent}.about-modal-pf .pficon-close{color:#fff}.product-versions-pf{margin-bottom:30px;margin-top:30px}.product-versions-pf li strong{margin-right:10px}.trademark-pf{font-size:11px}.applauncher-pf{display:inline-block;overflow:visible}.applauncher-pf .applauncher-pf-title{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.applauncher-pf .dropdown-toggle.disabled{cursor:not-allowed}.applauncher-pf.open>.dropdown-menu{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.applauncher-pf .applauncher-pf-item{width:100%}.applauncher-pf .applauncher-pf-link{display:-ms-flexbox;display:flex;white-space:initial;-ms-flex-align:center;align-items:center}@media (min-width:768px){.applauncher-pf-block-list .applauncher-pf-item{-ms-flex:0 0 50%;flex:0 0 50%}}.applauncher-pf-block-list .applauncher-pf-link{-ms-flex-wrap:wrap;flex-wrap:wrap}@media (min-width:768px){.applauncher-pf-block-list .applauncher-pf-link{-ms-flex-direction:column;flex-direction:column;text-align:center;padding:15px 0}}.applauncher-pf-block-list .applauncher-pf-link-icon{padding:0}@media (min-width:768px){.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link{padding:9px}.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon{-ms-flex:1 0 0px;flex:1 0 0;text-align:left}.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title{-ms-flex:3;flex:3}}.applauncher-pf .dropdown-menu{padding:9px;min-width:220px}.applauncher-pf .applauncher-pf-link{border-style:solid;border-width:1px;border-color:transparent}.applauncher-pf .applauncher-pf-link:hover{background-color:#f5f5f5;border-color:#bbb;color:#0088ce;text-decoration:none;box-shadow:0 0 2px 0 #d1d1d1}.applauncher-pf .applauncher-pf-link-icon{font-size:1.2em;text-align:center;width:1.2857142857em}@media (min-width:768px){.applauncher-pf .applauncher-pf-link-icon{font-size:2em}}.navbar-utility .applauncher-pf .dropdown-menu{border-width:1px!important}@media (min-width:768px){.navbar-utility .applauncher-pf .dropdown-menu{margin-top:3px;right:0}}.navbar-pf .applauncher-pf.open>a,.navbar-pf .applauncher-pf.open>a:focus,.navbar-pf .navbar-utility .applauncher-pf.open>a,.navbar-pf .navbar-utility .applauncher-pf.open>a:focus,.navbar-pf-alt .applauncher-pf.open>a,.navbar-pf-alt .applauncher-pf.open>a:focus,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a:focus{background-color:#232323;color:#f5f5f5}@media (min-width:768px){.navbar-pf .applauncher-pf.open>a,.navbar-pf .applauncher-pf.open>a:focus,.navbar-pf .navbar-utility .applauncher-pf.open>a,.navbar-pf .navbar-utility .applauncher-pf.open>a:focus,.navbar-pf-alt .applauncher-pf.open>a,.navbar-pf-alt .applauncher-pf.open>a:focus,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a:focus{background-color:#363636;border-color:#2b2b2b;color:#d1d1d1}}@media (max-width:767px){.navbar-pf .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf-alt .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu>li>a{padding-left:20px}.navbar-pf .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon{padding-right:20px}}.navbar-pf .applauncher-pf .dropdown-toggle,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .applauncher-pf .dropdown-toggle,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{background-color:inherit;color:#d1d1d1;text-align:left;text-decoration:none;border-width:0;display:block;padding-left:20px}.navbar-pf .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle.disabled{color:#8b8d8f!important}@media (min-width:768px){.navbar-pf .applauncher-pf .dropdown-toggle,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .applauncher-pf .dropdown-toggle,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{border-left:1px solid #2b2b2b;padding:7px 10px;line-height:1}}.navbar-pf .applauncher-pf .applauncher-pf-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon{padding-right:4px}@media (min-width:768px){.navbar-pf .applauncher-pf .applauncher-pf-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon{padding:0}}.navbar-pf .applauncher-pf .applauncher-pf-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title{display:inline;position:relative}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{overflow:hidden;width:100%}.navbar-pf .applauncher-pf .applauncher-pf-link:hover,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover{background-color:transparent;border-color:transparent;box-shadow:none}.navbar-pf .applauncher-pf .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-title{overflow:hidden}@media (min-width:768px){.navbar-pf .applauncher-pf,.navbar-pf .navbar-utility .applauncher-pf,.navbar-pf-alt .applauncher-pf,.navbar-pf-alt .navbar-utility .applauncher-pf{display:inline-block;overflow:visible}.navbar-pf .applauncher-pf .applauncher-pf-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.navbar-pf .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled{cursor:not-allowed}.navbar-pf .applauncher-pf.open>.dropdown-menu,.navbar-pf .navbar-utility .applauncher-pf.open>.dropdown-menu,.navbar-pf-alt .applauncher-pf.open>.dropdown-menu,.navbar-pf-alt .navbar-utility .applauncher-pf.open>.dropdown-menu{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.navbar-pf .applauncher-pf .applauncher-pf-item,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-item,.navbar-pf-alt .applauncher-pf .applauncher-pf-item,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-item{width:100%}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{display:-ms-flexbox;display:flex;white-space:initial;-ms-flex-align:center;align-items:center}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-item{-ms-flex:0 0 50%;flex:0 0 50%}}@media (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link{-ms-flex-direction:column;flex-direction:column;text-align:center;padding:15px 0}}@media (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon{padding:0}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link{padding:9px}.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon{-ms-flex:1 0 0px;flex:1 0 0;text-align:left}.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title{-ms-flex:3;flex:3}}@media (min-width:768px){.navbar-pf .applauncher-pf .dropdown-menu,.navbar-pf .navbar-utility .applauncher-pf .dropdown-menu,.navbar-pf-alt .applauncher-pf .dropdown-menu,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-menu{padding:9px;min-width:220px}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{border-style:solid;border-width:1px;border-color:transparent}.navbar-pf .applauncher-pf .applauncher-pf-link:hover,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover{background-color:#f5f5f5;border-color:#bbb;color:#0088ce;text-decoration:none;box-shadow:0 0 2px 0 #d1d1d1}.navbar-pf .applauncher-pf .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon{font-size:1.2em;text-align:center;width:1.2857142857em}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon{font-size:2em}}@media (min-width:768px){.navbar-iconic .applauncher-pf .dropdown-toggle,.navbar-iconic .applauncher-pf.dropdown>.dropdown-toggle,.navbar-iconic .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-iconic .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{padding:22px 10px;line-height:inherit}}.blank-slate-pf{background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:1px;margin-bottom:20px;padding:30px;text-align:center}@media (min-width:768px){.blank-slate-pf{padding:60px 60px}}@media (min-width:992px){.blank-slate-pf{padding:90px 120px}}.blank-slate-pf .blank-slate-pf-icon{color:#9c9c9c;font-size:57.6px;line-height:57.6px}.blank-slate-pf .blank-slate-pf-main-action{margin-top:20px}.blank-slate-pf .blank-slate-pf-secondary-action{margin-top:20px}.blank-slate-pf button{margin-right:5px}.blank-slate-pf button:last-of-type{margin-right:0}.combobox-container.combobox-selected .glyphicon-remove{display:inline-block}.combobox-container .caret{margin-left:0}.combobox-container .combobox::-ms-clear{display:none}.combobox-container .dropdown-menu{margin-top:-1px;width:100%}.combobox-container .glyphicon-remove{display:none;top:auto;width:12px}.combobox-container .glyphicon-remove:before{content:"\e60b";font-family:PatternFlyIcons-webfont}.combobox-container .input-group-addon{background-color:#f1f1f1;background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;position:relative}.combobox-container .input-group-addon .open .dropdown-toggle.combobox-container .input-group-addon,.combobox-container .input-group-addon.active,.combobox-container .input-group-addon:active,.combobox-container .input-group-addon:focus,.combobox-container .input-group-addon:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.combobox-container .input-group-addon .open .dropdown-toggle.combobox-container .input-group-addon,.combobox-container .input-group-addon.active,.combobox-container .input-group-addon:active{background-image:none}.combobox-container .input-group-addon .open .dropdown-toggle.combobox-container .input-group-addon.focus,.combobox-container .input-group-addon .open .dropdown-toggle.combobox-container .input-group-addon:focus,.combobox-container .input-group-addon .open .dropdown-toggle.combobox-container .input-group-addon:hover,.combobox-container .input-group-addon.active.focus,.combobox-container .input-group-addon.active:focus,.combobox-container .input-group-addon.active:hover,.combobox-container .input-group-addon:active.focus,.combobox-container .input-group-addon:active:focus,.combobox-container .input-group-addon:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.combobox-container .input-group-addon.disabled,.combobox-container .input-group-addon.disabled.active,.combobox-container .input-group-addon.disabled:active,.combobox-container .input-group-addon.disabled:focus,.combobox-container .input-group-addon.disabled:hover,.combobox-container .input-group-addon[disabled],.combobox-container .input-group-addon[disabled].active,.combobox-container .input-group-addon[disabled]:active,.combobox-container .input-group-addon[disabled]:focus,.combobox-container .input-group-addon[disabled]:hover,fieldset[disabled] .combobox-container .input-group-addon,fieldset[disabled] .combobox-container .input-group-addon.active,fieldset[disabled] .combobox-container .input-group-addon:active,fieldset[disabled] .combobox-container .input-group-addon:focus,fieldset[disabled] .combobox-container .input-group-addon:hover{background-color:#f1f1f1;border-color:#bbb}.combobox-container .input-group-addon:active{box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.bootstrap-datepicker.form-control[readonly]{background-color:#fff;border-color:#bbb!important;color:#363636;box-shadow:inset 0 1px 1px rgba(3,3,3,.075)}.bootstrap-datepicker.form-control[readonly]:focus{border-color:#0088ce;outline:0!important;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6)}.bootstrap-datepicker.form-control[readonly]:focus{border-color:#0088ce!important}.has-error .bootstrap-datepicker.form-control[readonly]:focus{border-color:#900;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33}.has-success .bootstrap-datepicker.form-control[readonly]:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168}.has-warning .bootstrap-datepicker.form-control[readonly]:focus{border-color:#bb6106;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60}.bootstrap-datepicker.form-control[readonly]:hover{border-color:#7dc3e8!important}.has-error .bootstrap-datepicker.form-control[readonly]:hover{border-color:#900!important}.has-success .bootstrap-datepicker.form-control[readonly]:hover{border-color:#2b542c!important}.has-warning .bootstrap-datepicker.form-control[readonly]:hover{border-color:#bb6106!important}.has-error .bootstrap-datepicker.form-control[readonly]{border-color:#c00!important}.has-success .bootstrap-datepicker.form-control[readonly]{border-color:#3c763d!important}.has-warning .bootstrap-datepicker.form-control[readonly]{border-color:#ec7a08!important}.datepicker{border-radius:1px}.datepicker .datepicker-switch,.datepicker tfoot .clear,.datepicker tfoot .today{font-size:14px;font-weight:500}.datepicker .next,.datepicker .prev{font-weight:500}.datepicker table tr td,.datepicker table tr th{border-radius:1px}.datepicker table tr td.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active:hover{background:#0088ce!important;color:#fff!important;text-shadow:none}.datepicker table tr td.day.focused,.datepicker table tr td.day:hover{background:#def3ff}.datepicker table tr td.selected,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected:hover{text-shadow:none}.datepicker table tr td span{border-radius:1px}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover{background:#0088ce;text-shadow:none}.datepicker table tr td span:hover{background:#def3ff}.datepicker tfoot tr th:hover,.datepicker thead tr:first-child th:hover{background:#def3ff}.input-daterange input:first-child{border-radius:1px 0 0 1px}.input-daterange input:last-child{border-radius:0 1px 1px 0}.input-daterange .input-group-addon{background-color:#f1f1f1;border-color:#bbb;line-height:1.66666667;padding:2px 6px}.bootstrap-select.btn-group.form-control{margin-bottom:0}.bootstrap-select.btn-group .btn{transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.bootstrap-select.btn-group .btn:hover{border-color:#7dc3e8}.bootstrap-select.btn-group .btn .caret{margin-top:-4px}.bootstrap-select.btn-group .btn:focus{border-color:#0088ce;outline:0!important;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6)}.has-error .bootstrap-select.btn-group .btn{border-color:#c00}.has-error .bootstrap-select.btn-group .btn:focus{border-color:#900;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33}.has-success .bootstrap-select.btn-group .btn{border-color:#3c763d}.has-success .bootstrap-select.btn-group .btn:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168}.has-warning .bootstrap-select.btn-group .btn{border-color:#ec7a08}.has-warning .bootstrap-select.btn-group .btn:focus{border-color:#bb6106;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60}.bootstrap-select.btn-group .dropdown-menu>.active>a,.bootstrap-select.btn-group .dropdown-menu>.active>a:active{background-color:#def3ff!important;border-color:#bee1f4!important;color:#363636!important}.bootstrap-select.btn-group .dropdown-menu>.active>a small,.bootstrap-select.btn-group .dropdown-menu>.active>a:active small{color:#9c9c9c!important}.bootstrap-select.btn-group .dropdown-menu>.disabled>a{color:#9c9c9c!important}.bootstrap-select.btn-group .dropdown-menu>.selected>a{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.bootstrap-select.btn-group .dropdown-menu>.selected>a small{color:rgba(255,255,255,.5)!important}.bootstrap-select.btn-group .dropdown-menu .divider{background:#ededed!important;margin:4px 1px!important}.bootstrap-select.btn-group .dropdown-menu dt{color:#8b8d8f;font-weight:400;padding:1px 10px}.bootstrap-select.btn-group .dropdown-menu li>a.opt{padding:1px 10px}.bootstrap-select.btn-group .dropdown-menu li a:active small{color:rgba(255,255,255,.5)!important}.bootstrap-select.btn-group .dropdown-menu li a:focus small,.bootstrap-select.btn-group .dropdown-menu li a:hover small{color:#9c9c9c}.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:focus small,.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:hover small{color:#9c9c9c}.slider-tick-label-container{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;margin-left:0!important}.slider-tick-label{width:auto!important}.slider .tooltip{top:-10px}.slider-track{background-color:#ededed;box-shadow:inset 0 2px 3px rgba(0,0,0,.1),0 0 2px #ededed;border:1px solid #bbb}.slider-selection{background-image:linear-gradient(to bottom,#0088ce 0,#39a5dc 100%);background-repeat:repeat-x}.slider-handle{width:16px;height:16px;border:1px solid #bbb}.slider-tick{background-color:transparent!important;background-image:radial-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3) 2px,transparent 2px)!important;box-shadow:none}.slider-pf{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center}.slider-pf *{margin-right:10px}.slider-pf :last-child{margin:0}.slider-pf .slider{width:auto;-ms-flex:1 1 100%;flex:1 1 100%}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default{background:#fafafa}.bootstrap-switch .bootstrap-switch-label{background:#f1f1f1;box-shadow:0 0 2px rgba(3,3,3,.4);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;position:relative;z-index:9}.bootstrap-touchspin .input-group-btn-vertical>.btn{padding-bottom:6px;padding-top:6px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{border-bottom-right-radius:1px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-top-right-radius:1px}.bootstrap-touchspin .input-group-btn-vertical i{font-size:8px;left:6px;top:2px}.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up{font-size:12px;line-height:12px;top:0}.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up{left:7px}.treeview .list-group{border-top:0}.treeview .list-group-item{background:0 0;border-bottom:1px solid transparent!important;border-top:1px solid transparent!important;cursor:default!important;margin-bottom:0;overflow:hidden;padding:0 10px;text-overflow:ellipsis;white-space:nowrap}.treeview .list-group-item:hover{background:0 0!important}.treeview .list-group-item.node-selected{background:0 0!important;border-color:transparent!important;color:inherit!important}.treeview .list-group-item.node-check-changed span.node-icon,.treeview .list-group-item.node-check-changed span.text{color:#39a5dc}.treeview span.icon{display:inline-block;font-size:13px;min-width:10px;text-align:center}.treeview span.icon>[class*=fa-angle]{font-size:15px}.treeview span.icon.check-icon{margin-right:10px}.treeview span.icon.expand-icon{cursor:pointer!important}.treeview span.image{background-repeat:no-repeat;background-size:contain;display:inline-block;height:1.19em;line-height:1em;margin-right:5px;vertical-align:middle;width:12px}.treeview span.indent{margin-right:5px}.treeview .node-disabled{color:#d1d1d1;cursor:not-allowed}.treeview .node-disabled span.expand-icon{cursor:default!important}.treeview .node-hidden{display:none}.treeview-pf-hover .list-group-item{cursor:pointer!important}.treeview-pf-hover .list-group-item:hover{background-color:#def3ff!important;border-color:#bee1f4!important}.treeview-pf-select .list-group-item{cursor:pointer!important}.treeview-pf-select .list-group-item.node-selected{background:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.card-pf-view{border:2px solid transparent}.card-pf-view .card-pf-heading-kebab .dropdown-kebab-pf{margin-top:-3px}.card-pf-view .card-pf-heading-kebab+.progress-pf-legend p{margin-bottom:0}.card-pf-view .card-pf-heading-kebab+.progress-pf-legend .progress{margin-bottom:7px;margin-top:16px}.card-pf-view .card-pf-info{margin-top:15px}.card-pf-view .card-pf-info strong{font-size:13px;margin-right:10px}.card-pf-view .card-pf-item{display:inline-block;font-size:16px;padding:0 13px 0 15px}.card-pf-view .card-pf-item:first-child{padding-left:0}.card-pf-view .card-pf-item:last-child{padding-right:0}.card-pf-view .card-pf-item+.card-pf-item{border-left:1px solid #d1d1d1}.card-pf-view .card-pf-item .fa-check{color:#3f9c35}.card-pf-view .card-pf-item .fa+.card-pf-item-text,.card-pf-view .card-pf-item .pficon+.card-pf-item-text{margin-left:10px}.card-pf-view .card-pf-items{margin-top:15px}.card-pf-view .card-pf-title{font-size:20px;font-weight:300;margin-bottom:0;margin-top:15px}.card-pf-view .card-pf-title .fa,.card-pf-view .card-pf-title .pficon{font-size:18px;margin-right:2px}.col-lg-2 .card-pf-view .card-pf-title{font-size:16px}.card-pf-view .card-pf-top-element .card-pf-icon-circle{border:2px solid #39a5dc;border-radius:50%;display:block;font-size:46px;height:106px;line-height:102px;margin:0 auto;text-align:center;width:106px}.col-lg-2 .card-pf-view .card-pf-top-element .card-pf-icon-circle{font-size:23px;height:54px;line-height:50px;width:54px}.card-pf-view .card-pf-view-checkbox{position:absolute;top:11px;left:15px}.card-pf-view .card-pf-view-checkbox input[type=checkbox]{display:none}.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]{display:block}@media (min-width:768px){.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]{visibility:hidden}.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]:checked{visibility:visible}}.card-pf-view.card-pf-view-multi-select:hover .card-pf-view-checkbox input[type=checkbox]{visibility:visible}.card-pf-view.card-pf-view-select{position:relative}.card-pf-view.card-pf-view-select:hover{box-shadow:0 1px 6px rgba(3,3,3,.35)}.card-pf-view.card-pf-view-select.active{border:2px solid #39a5dc}.card-pf-view.card-pf-view-single-select{cursor:pointer}.card-pf-view.card-pf-view-xs .card-pf-title{font-size:16px;font-weight:400;margin-bottom:10px}.card-pf-view.card-pf-view-xs .card-pf-title .fa,.card-pf-view.card-pf-view-xs .card-pf-title .pficon{font-size:14px;margin-right:5px}.card-pf{background:#fff;border-top:2px solid transparent;box-shadow:0 1px 1px rgba(3,3,3,.175);margin:0 -10px 20px;padding:0 20px}.card-pf.card-pf-accented{border-top-color:#39a5dc}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a,.card-pf.card-pf-aggregate-status .card-pf-title a{color:#363636}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add,.card-pf.card-pf-aggregate-status .card-pf-title a.add{color:#0088ce}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add:hover,.card-pf.card-pf-aggregate-status .card-pf-title a.add:hover{color:#00659c}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a:hover,.card-pf.card-pf-aggregate-status .card-pf-title a:hover{color:#00659c}.card-pf.card-pf-aggregate-status{padding:0 10px;text-align:center}.card-pf.card-pf-aggregate-status-mini{padding-bottom:10px;position:relative}@media (min-width:768px){.card-pf.card-pf-bleed-left{margin-left:-20px}.card-pf.card-pf-bleed-right{border-right:1px solid #d1d1d1;margin-right:-20px}}.card-pf-aggregate-status-notifications{font-size:24px;font-weight:300}.card-pf-aggregate-status-mini .card-pf-aggregate-status-notifications{line-height:1}.card-pf-aggregate-status-notifications .card-pf-aggregate-status-notification+.card-pf-aggregate-status-notification{border-left:1px solid #d1d1d1;margin-left:3px;padding-left:10px}.card-pf-aggregate-status-notifications .fa,.card-pf-aggregate-status-notifications .pficon{font-size:18px;margin-right:7px}.card-pf-body{margin:20px 0 0;padding:0 0 20px}.card-pf-aggregate-status .card-pf-body{margin-top:10px;padding-bottom:10px}.card-pf-aggregate-status-mini .card-pf-body{margin-bottom:0;margin-top:0;padding-bottom:0;position:absolute;right:20px;top:15px}.card-pf-utilization .card-pf-title+.card-pf-body{margin-top:-8px}.card-pf-body>:last-child{margin-bottom:0}.card-pf-footer{background-color:#fafafa;border-top:1px solid #d1d1d1;margin:0 -20px!important;padding:20px 20px 10px}.card-pf-footer a>.fa,.card-pf-footer a>.pficon{margin-right:5px}.card-pf-footer .card-pf-time-frame-filter{margin-top:-2px}.card-pf-link-with-icon{padding-left:21px;position:relative}.card-pf-link-with-icon .fa,.card-pf-link-with-icon .pficon{font-size:16px;left:0;position:absolute;top:0}.card-pf-footer .card-pf-time-frame-filter,.card-pf-heading .card-pf-time-frame-filter{float:right;margin-left:20px}.card-pf-heading{border-bottom:1px solid #d1d1d1;margin:0 -20px 20px;padding:0 20px 0}.card-pf-heading .card-pf-time-frame-filter{margin-top:-5px}.card-pf-heading-details{float:right;font-size:10px}.card-pf-subtitle{font-size:16px;margin-top:20px;margin-bottom:10px}[class^=col] .card-pf-subtitle{margin-top:0}@media (max-width:767px){.card-pf-body [class^=col]+[class^=col]>.card-pf-subtitle{margin-top:40px}}.card-pf-title{font-size:16px;font-weight:400;margin:20px 0;padding:0}.card-pf-aggregate-status .card-pf-title{font-size:14px;margin:10px 0 0}.card-pf-aggregate-status .card-pf-title .fa,.card-pf-aggregate-status .card-pf-title .pficon{color:#292e34;font-size:16px;margin-right:7px}.card-pf-title .card-pf-aggregate-status-count{font-size:16px}.card-pf-aggregate-status-mini .card-pf-title .card-pf-aggregate-status-count{display:block;font-size:24px;font-weight:300;margin-bottom:3px}.card-pf-aggregate-status-mini .card-pf-title{font-size:12px;margin-top:5px}.card-pf-aggregate-status-mini .card-pf-title a{display:inline-block}.card-pf-aggregate-status-mini .card-pf-title .fa,.card-pf-aggregate-status-mini .card-pf-title .pficon{font-size:26px;margin-right:0;min-width:26px;position:absolute;left:20px;text-align:center;top:15px}.card-pf-utilization-details{border-bottom:1px solid #d1d1d1;display:table;margin:12px 0 15px;padding:0 0 15px;width:100%}.card-pf-utilization-details .card-pf-utilization-card-details-count,.card-pf-utilization-details .card-pf-utilization-card-details-description{float:left;line-height:1}.card-pf-utilization-details .card-pf-utilization-card-details-count{font-size:26px;font-weight:300;margin-right:10px}.card-pf-utilization-details .card-pf-utilization-card-details-line-1,.card-pf-utilization-details .card-pf-utilization-card-details-line-2{display:block}.card-pf-utilization-details .card-pf-utilization-card-details-line-1{font-size:10px;margin-bottom:2px}.cards-pf{background:#f5f5f5}.cards-pf .row-cards-pf{padding:0 20px}.cards-pf .row-cards-pf:first-child{padding-top:20px}.container-cards-pf{margin-top:20px}.row-cards-pf{margin-left:-10px;margin-right:-10px}.c3 path{stroke:#d1d1d1}.c3 svg{font-family:"Open Sans",Helvetica,Arial,sans-serif}.c3-axis-x .tick line{stroke:#d1d1d1}.c3-axis-y .tick line{display:none}.c3-chart-arc path{stroke:#fff}.c3-grid line{stroke:#d1d1d1}.c3-line{stroke-width:2px}.c3-tooltip{background:#393f44;box-shadow:none;opacity:.9}.c3-tooltip td{background:0 0;border:0;color:#fff;font-size:12px;padding:5px 10px}.c3-tooltip th{background:0 0;font-size:12px;padding:5px 10px 0;border-bottom:solid 2px #030303}.c3-tooltip tr{border:0}.c3-tooltip tr+tr>td{padding-top:0}.c3-tooltip-sparkline,.donut-tooltip-pf{background:#393f44;color:#fff;opacity:.9;padding:2px 6px}.c3-xgrid,.c3-ygrid{stroke-dasharray:0 0}.chart-pf-sparkline{margin-left:-5px;margin-right:-5px}.donut-title-big-pf{font-size:30px;font-weight:300}.donut-title-small-pf{font-size:12px;font-weight:400}.line-chart-pf .c3-zoom-rect{opacity:1!important;fill:#fafafa;stroke:#d1d1d1;stroke-width:1px}.pct-donut-chart-pf .pct-donut-chart-pf-label{display:block}.pct-donut-chart-pf .pct-donut-chart-pf-left,.pct-donut-chart-pf .pct-donut-chart-pf-right,.pct-donut-chart-pf.pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-right{display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center}.pct-donut-chart-pf.pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-right{display:-ms-inline-flexbox;display:inline-flex}.pct-donut-chart-pf .pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-left{-ms-flex-direction:row-reverse;flex-direction:row-reverse}.close{text-shadow:none;z-index:1;position:relative;opacity:.6}.close:focus,.close:hover{opacity:.9}.ColVis_Button:active:focus{outline:0}.ColVis_catcher{position:absolute;z-index:999}.ColVis_collection{background-color:#fff;border:1px solid #bbb;border-radius:1px;box-shadow:0 6px 12px rgba(3,3,3,.175);background-clip:padding-box;list-style:none;margin:-1px 0 0 0;padding:5px 10px;width:150px;z-index:1000}.ColVis_collection label{font-weight:400;margin-bottom:5px;margin-top:5px;padding-left:20px}.ColVis_collectionBackground{background-color:#fff;height:100%;left:0;position:fixed;top:0;width:100%;z-index:998}.dataTables_header{background-color:#f5f5f5;border:1px solid #d1d1d1;border-bottom:none;padding:5px;position:relative;text-align:center}.dataTables_header .btn{box-shadow:none}.dataTables_header .ColVis{position:absolute;right:5px;text-align:left;top:5px}.dataTables_header .ColVis+.dataTables_info{padding-right:30px}.dataTables_header .dataTables_filter{position:absolute}.dataTables_header .dataTables_filter input{border:1px solid #bbb;height:24px}@media (max-width:767px){.dataTables_header .dataTables_filter input{width:100px}}.dataTables_header .dataTables_info{padding:2px 0}@media (max-width:480px){.dataTables_header .dataTables_info{text-align:right}}.dataTables_header .dataTables_info b{font-weight:700}.dataTables_footer{background-color:#fff;border:1px solid #d1d1d1;border-top:none;overflow:hidden}.dataTables_paginate{background:#fafafa;float:right;margin:0}.dataTables_paginate .pagination{float:left;margin:0}.dataTables_paginate .pagination>li>span{border-color:#fff #d1d1d1 #f5f5f5;border-width:0 1px;font-size:16px;font-weight:400;padding:0;text-align:center;width:31px}.dataTables_paginate .pagination>li.last>span{border-right:none}.dataTables_paginate .pagination>li.disabled>span{background:#f5f5f5;border-left-color:#ededed;border-right-color:#ededed}.dataTables_paginate .pagination-input{float:left;font-size:12px;line-height:1em;padding:4px 15px 0;text-align:right}.dataTables_paginate .pagination-input .paginate_input{border:1px solid #d1d1d1;box-shadow:inset 0 1px 1px rgba(3,3,3,.075);font-size:12px;font-weight:600;height:19px;margin-right:8px;padding-right:3px;text-align:right;width:30px}.dataTables_paginate .pagination-input .paginate_of{position:relative}.dataTables_paginate .pagination-input .paginate_of b{margin-left:3px}.dataTables_empty{background:#f5f5f5}.DTCR_clonedTable{background-color:rgba(255,255,255,.7);z-index:202}.DTCR_pointer{background-color:#0088ce;width:1px;z-index:201}.experimental-pf>*{border:2px solid #92d400}.experimental-pf-bar{background-color:#92d400;border:none;text-align:center;position:relative}.experimental-pf-more-info{background-color:#92d400;border:0;color:#030303;display:block;width:100%;padding-top:10px;padding-bottom:10px;position:static}@media (min-width:992px){.experimental-pf-more-info{padding:0 10px;position:absolute;right:0;top:0;width:auto}}@media (min-width:992px){.experimental-pf-text{padding-left:150px;padding-right:150px}}.experimental-pf-text a{color:#030303;text-decoration:underline}.experimental-pf-text a:hover{color:#030303;cursor:pointer}.btn-experimental-pf{background-color:#92d400;background-image:linear-gradient(to bottom,#ace12e 0,#92d400 100%);background-repeat:repeat-x;border-color:#92d400;color:#4d5258}.btn-experimental-pf .open .dropdown-toggle.btn-experimental-pf,.btn-experimental-pf.active,.btn-experimental-pf:active,.btn-experimental-pf:focus,.btn-experimental-pf:hover{background-color:#92d400;background-image:none;border-color:#92d400;color:#4d5258}.btn-experimental-pf .open .dropdown-toggle.btn-experimental-pf,.btn-experimental-pf.active,.btn-experimental-pf:active{background-image:none}.btn-experimental-pf .open .dropdown-toggle.btn-experimental-pf.focus,.btn-experimental-pf .open .dropdown-toggle.btn-experimental-pf:focus,.btn-experimental-pf .open .dropdown-toggle.btn-experimental-pf:hover,.btn-experimental-pf.active.focus,.btn-experimental-pf.active:focus,.btn-experimental-pf.active:hover,.btn-experimental-pf:active.focus,.btn-experimental-pf:active:focus,.btn-experimental-pf:active:hover{background-color:#80bb00;border-color:#79b000}.btn-experimental-pf.disabled,.btn-experimental-pf.disabled.active,.btn-experimental-pf.disabled:active,.btn-experimental-pf.disabled:focus,.btn-experimental-pf.disabled:hover,.btn-experimental-pf[disabled],.btn-experimental-pf[disabled].active,.btn-experimental-pf[disabled]:active,.btn-experimental-pf[disabled]:focus,.btn-experimental-pf[disabled]:hover,fieldset[disabled] .btn-experimental-pf,fieldset[disabled] .btn-experimental-pf.active,fieldset[disabled] .btn-experimental-pf:active,fieldset[disabled] .btn-experimental-pf:focus,fieldset[disabled] .btn-experimental-pf:hover{background-color:#92d400;border-color:#92d400}.filter-pf-category-select{display:-ms-flexbox;display:flex}.filter-pf-category-select-value{border-left-width:0}.filter-pf-category-item{margin-bottom:5px}.filter-pf-category-label{font-weight:700;margin-right:5px;padding:5px 0 6px 5px}.filter-pf-select .caret{position:absolute;top:50%;right:10px;-ms-transform:translateY(-50%);transform:translateY(-50%)}.filter-pf-select-dropdown{background-color:#fff;background-image:none;color:#8b8d8f;font-size:12px;font-style:italic;font-weight:400;padding-right:25px;text-align:left}.filter-pf-select-dropdown .caret{font-style:normal}.filter-pf-active-label{margin-right:5px}.footer-pf,.footer-pf-alt{background-color:#030303;color:#9c9c9c;font-size:11px;line-height:17px;padding-left:25px;padding-top:10px}.layout-pf-alt-fixed-with-footer .footer-pf,.layout-pf-alt-fixed-with-footer .footer-pf-alt,.layout-pf-fixed-with-footer .footer-pf,.layout-pf-fixed-with-footer .footer-pf-alt{bottom:0;left:0;position:fixed;right:0;z-index:1030}@font-face{font-family:PatternFlyIcons-webfont;src:url(../fonts/PatternFlyIcons-webfont.eot);src:url(../fonts/PatternFlyIcons-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/PatternFlyIcons-webfont.ttf) format("truetype"),url(../fonts/PatternFlyIcons-webfont.woff) format("woff"),url(../fonts/PatternFlyIcons-webfont.svg#PatternFlyIcons-webfont) format("svg");font-weight:400;font-style:normal}[class*=" pficon-"],[class^=pficon-]{display:inline-block;font-family:PatternFlyIcons-webfont;font-style:normal;font-variant:normal;font-weight:400;line-height:1;speak:none;text-transform:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.pficon-add-circle-o:before{content:""}.pficon-applications:before{content:""}.pficon-arrow:before{content:""}.pficon-asleep:before{content:""}.pficon-automation:before{content:""}.pficon-build:before{content:""}.pficon-builder-image:before{content:""}.pficon-bundle:before{content:""}.pficon-blueprint:before{content:""}.pficon-catalog:before{content:""}.pficon-chat:before{content:""}.pficon-close:before{content:""}.pficon-cloud-security:before{content:""}.pficon-cloud-tenant:before{content:""}.pficon-cluster:before{content:""}.pficon-connected:before{content:""}.pficon-container-node:before{content:""}.pficon-cpu:before{content:""}.pficon-degraded:before{content:""}.pficon-delete:before{content:""}.pficon-disconnected:before{content:""}.pficon-domain:before{content:""}.pficon-edit:before{content:""}.pficon-enhancement:before{content:""}.pficon-enterprise:before{content:""}.pficon-equalizer:before{content:""}.pficon-error-circle-o:before{color:#c00;content:""}.pficon-export:before{content:""}.pficon-flag:before,.pficon-messages:before{content:""}.pficon-flavor:before{content:""}.pficon-filter:before{content:""}.pficon-folder-close:before{content:""}.pficon-folder-open:before{content:""}.pficon-help:before{content:""}.pficon-history:before{content:""}.pficon-home:before{content:""}.pficon-image:before{content:""}.pficon-import:before{content:""}.pficon-in-progress:before{content:""}.pficon-info:before{content:""}.pficon-infrastructure:before{content:""}.pficon-integration:before{content:""}.pficon-key:before{content:""}.pficon-locked:before{content:""}.pficon-maintenance:before{content:""}.pficon-memory:before{content:""}.pficon-middleware:before{content:""}.pficon-migration:before{content:""}.pficon-monitoring:before{content:""}.pficon-network:before{content:""}.pficon-network-range:before{content:""}.pficon-on:before{content:""}.pficon-on-running:before{content:""}.pficon-optimize:before{content:""}.pficon-orders:before{content:""}.pficon-off:before{content:""}.pficon-ok:before{color:#3f9c35;content:""}.pficon-paused:before{content:""}.pficon-pending:before{content:""}.pficon-plugged:before{content:""}.pficon-port:before{content:""}.pficon-print:before{content:""}.pficon-process-automation:before{content:""}.pficon-private:before{content:""}.pficon-project:before{content:""}.pficon-rebalance:before{content:""}.pficon-rebooting:before{content:""}.pficon-refresh:before,.pficon-restart:before{content:""}.pficon-regions:before{content:""}.pficon-registry:before{content:""}.pficon-remove:before{content:""}.pficon-replicator:before{content:""}.pficon-repository:before{content:""}.pficon-resource-pool:before{content:""}.pficon-resources-almost-empty:before{content:""}.pficon-resources-almost-full:before{content:""}.pficon-resources-full:before{content:""}.pficon-route:before{content:""}.pficon-running:before{content:""}.pficon-satellite:before{content:""}.pficon-save:before{content:""}.pficon-screen:before{content:""}.pficon-search:before{content:""}.pficon-security:before{content:""}.pficon-server:before{content:""}.pficon-server-group:before{content:""}.pficon-service:before{content:""}.pficon-services:before{content:""}.pficon-service-catalog:before{content:""}.pficon-settings:before{content:""}.pficon-spinner:before{content:""}.pficon-spinner2:before{content:""}.pficon-storage-domain:before{content:""}.pficon-template:before{content:""}.pficon-tenant:before{content:""}.pficon-thumb-tack-o:before{content:""}.pficon-topology:before{content:""}.pficon-trend-down:before{content:""}.pficon-trend-up:before{content:""}.pficon-unknown:before{content:""}.pficon-user:before{content:""}.pficon-users:before{content:""}.pficon-unlocked:before{content:""}.pficon-unplugged:before{content:""}.pficon-vcenter:before{content:""}.pficon-virtual-machine:before{content:""}.pficon-volume:before{content:""}.pficon-warning-triangle-o:before{color:#ec7a08;content:""}.pficon-zone:before{content:""}.navbar-nav>li>.dropdown-menu.infotip{border-top-width:1px!important;margin-top:10px}@media (max-width:767px){.navbar-pf .navbar-nav .open .dropdown-menu.infotip{background-color:#fff!important;margin-top:0}}.infotip{min-width:235px;padding:0}.infotip .list-group{border-top:0;margin:0;padding:8px 0}.infotip .list-group .list-group-item{border:none;margin:0 15px 0 34px;padding:5px 0}.infotip .list-group .list-group-item>.i{color:#4d5258;font-size:13px;left:-20px;position:absolute;top:8px}.infotip .list-group .list-group-item>a{color:#4d5258;line-height:13px}.infotip .list-group .list-group-item>.close{float:right}.infotip .footer{background-color:#f5f5f5;padding:6px 15px}.infotip .footer a:hover{color:#0088ce}.infotip .arrow,.infotip .arrow:after{border-color:transparent;border-style:solid;display:block;height:0;position:absolute;width:0}.infotip .arrow{border-width:11px}.infotip .arrow:after{border-width:10px;content:""}.infotip.bottom .arrow,.infotip.bottom-left .arrow,.infotip.bottom-right .arrow{border-bottom-color:#bbb;border-top-width:0;left:50%;margin-left:-11px;top:-11px}.infotip.bottom .arrow:after,.infotip.bottom-left .arrow:after,.infotip.bottom-right .arrow:after{border-top-width:0;border-bottom-color:#fff;content:" ";margin-left:-10px;top:1px}.infotip.bottom-left .arrow{left:20%}.infotip.bottom-right .arrow{left:80%}.infotip.top .arrow{border-bottom-width:0;border-top-color:#bbb;bottom:-11px;left:50%;margin-left:-11px}.infotip.top .arrow:after{border-bottom-width:0;border-top-color:#f5f5f5;bottom:1px;content:" ";margin-left:-10px}.infotip.right .arrow{border-left-width:0;border-right-color:#bbb;left:-11px;margin-top:-11px;top:50%}.infotip.right .arrow:after{bottom:-10px;border-left-width:0;border-right-color:#fff;content:" ";left:1px}.infotip.left .arrow{border-left-color:#bbb;border-right-width:0;margin-top:-11px;right:-11px;top:50%}.infotip.left .arrow:after{border-left-color:#fff;border-right-width:0;bottom:-10px;content:" ";right:1px}.layout-pf,.layout-pf body{min-height:100%}.layout-pf.layout-pf-fixed.transitions .container-pf-nav-pf-vertical{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf.layout-pf-fixed body{padding-top:60px}.layout-pf.layout-pf-fixed .navbar-pf{left:0;position:fixed;top:0;right:0;z-index:1030}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav{margin-left:75px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav.hidden-icons-pf{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hidden-nav{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hide-nav-pf{margin-left:0!important}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf,.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges,.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}@media (min-width:1200px){.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf{margin-left:400px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges{margin-left:500px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hidden-nav{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav{margin-left:275px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.nav-pf-vertical-with-badges{margin-left:325px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.hidden-icons-pf{margin-left:0}}.layout-pf.layout-pf-fixed-with-footer body{padding-bottom:37px}.layout-pf-alt,.layout-pf-alt body{min-height:100%}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll,.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll body{height:100%;min-height:0}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt{height:100%;overflow:auto}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt.container-cards-pf{margin-top:0;padding-top:20px}.layout-pf-alt.layout-pf-alt-fixed.transitions .container-pf-alt-nav-pf-vertical-alt{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt.layout-pf-alt-fixed body{padding-top:60px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt{margin-left:250px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.collapsed-nav{margin-left:75px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.hidden-nav{margin-left:0}.layout-pf-alt.layout-pf-alt-fixed-with-footer body{padding-bottom:37px}a.disabled{color:#8b8d8f;cursor:not-allowed;text-decoration:none}.list-pf{border-bottom:1px solid #ededed}.list-pf-item{border-color:#ededed;border-left-color:#fff;border-right-color:#fff;border-style:solid;border-width:1px;border-bottom:none}.list-pf-item:hover{background-color:#edf8ff}.list-pf-item.active{background-color:#ededed;border-color:#bbb;border-bottom-width:1px;border-bottom-style:solid}.list-pf-expansion{background-color:#fff}.list-pf-container{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;padding:20px}.list-pf-expansion .list-pf-container{border-top:1px solid #bbb}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-container{-ms-flex-align:center;align-items:center}}.list-pf-chevron{min-width:1.2em}.list-pf-chevron,.list-pf-select{margin-right:10px}.list-pf-chevron+.list-pf-content,.list-pf-select+.list-pf-content{border-left:1px solid #d1d1d1;padding-left:20px}.list-pf-chevron .fa,.list-pf-select .fa{font-size:22px}.list-pf-content-flex{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-ms-flex-pack:start;justify-content:flex-start;min-width:0}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-content-flex{-ms-flex-align:center;align-items:center}}.list-pf-left{-ms-flex-positive:0;flex-grow:0;margin-left:0;margin-right:20px}.list-pf-icon{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.list-pf-icon-bordered{border-radius:50%;border:2px solid #39a5dc}.list-pf-icon-small{font-size:1.4em;height:30px;line-height:30px;width:30px}.list-pf-content-wrapper{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-positive:1;flex-grow:1;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:0}@media (min-width:992px){.list-pf-content-wrapper{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.list-pf-content-wrapper>*+*{margin-left:40px}}.list-pf-stacked .list-pf-content-wrapper{-ms-flex-align:start;align-items:flex-start}.list-pf-main-content{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-preferred-size:70%;flex-basis:70%;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:0}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-main-content{-ms-flex-wrap:nowrap;flex-wrap:nowrap;width:auto}.list-pf:not(.list-pf-stacked) .list-pf-main-content>*+*{margin-left:40px}}.list-pf-title{-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:100%;flex-basis:100%;font-weight:700;min-width:0;word-wrap:break-word}.list-pf-description{-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:100%;flex-basis:100%;min-width:0;word-wrap:break-word}.list-pf-additional-content{display:-ms-flexbox;display:flex;-ms-flex-preferred-size:31%;flex-basis:31%;-ms-flex-positive:1;flex-grow:1;-ms-flex-negative:1;flex-shrink:1;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:justify;justify-content:space-between}.list-pf-actions{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-positive:0;flex-grow:0;margin-left:40px}.list-pf-actions>*+*{margin-left:10px}.list-view-pf-dnd .dndDragging.drag-original{display:none}.list-view-pf-dnd .dndDragging.drag-original .list-view-pf-dnd-original-items{display:block}.list-view-pf-dnd .dndDragging .list-view-pf-dnd-drag-items{display:inline-block}.list-view-pf-dnd .dndDragging .list-view-pf-dnd-original-items{display:none}.list-view-pf-dnd .dndPlaceholder{background-color:#ededed;padding:20px 0}.list-view-pf-dnd .list-group-item-header{margin-left:-10px}.list-view-pf-dnd .list-group-item-header:before{background-image:linear-gradient(to bottom,#0088ce 60%,#fff 0);background-position:left;background-repeat:repeat-y;background-size:2px 5px;border:4px solid #0088ce;border-color:#00659c;content:"";height:55px;left:4px;position:absolute;top:5px;width:10px}.list-view-pf-dnd-drag-items{display:none}.list-view-pf .list-group-item{-ms-flex-align:start;align-items:flex-start;background-clip:padding-box;border-color:transparent #fff;border-style:solid;border-width:1px;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-bottom:0;padding-top:0}.list-view-pf .list-group-item:after,.list-view-pf .list-group-item:before{content:" ";display:table}.list-view-pf .list-group-item:after{clear:both}.list-view-pf .list-group-item.list-view-pf-expand-active{background-color:#edf8ff;box-shadow:0 2px 6px rgba(3,3,3,.2);z-index:1}.list-view-pf .list-group-item.active{color:#555;background-color:#def3ff;background-clip:border-box;border-color:#bbb transparent transparent;z-index:auto}.list-view-pf .list-group-item:hover{background-color:#edf8ff;border-left-color:transparent;border-right-color:transparent}.list-view-pf .list-group-item.list-view-pf-expand-active{border:solid 1px #bbb}.list-view-pf .list-group-item.list-view-pf-expand-active:first-child{border-top-color:#bbb}.list-view-pf .list-group-item:first-child{border-top:1px solid transparent}@media (min-width:992px){.list-view-pf .list-group-item{-ms-flex-align:center;align-items:center}}.list-view-pf .list-group-item-heading{font-size:16px}.list-view-pf .list-group-item-heading small{display:block;font-size:9.6px;font-weight:400}@media (min-width:992px){.list-view-pf .list-group-item-heading{-ms-flex:1 0 calc(25% - 20px);flex:1 0 calc(25% - 20px);float:left;font-size:12px;margin:0 20px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:calc(25% - 20px)}}.list-view-pf .list-group-item-text{color:currentColor!important;margin-bottom:10px}@media (min-width:992px){.list-view-pf .list-group-item-text{-ms-flex:1 0 auto;flex:1 0 auto;float:left;margin:0 40px 0 0;width:calc(75% - 40px)}}.list-view-pf .close{float:none;position:absolute;right:15px}.list-view-pf-actions{float:right;margin-bottom:20px;margin-left:20px;margin-top:20px;-ms-flex-order:2;order:2}.list-view-pf-actions .dropdown-kebab-pf,.list-view-pf-actions button,.list-view-pf-actions>a{margin-left:10px}.list-view-pf-top-align .list-view-pf-actions{-ms-flex-item-align:start;align-self:flex-start}.list-view-pf-additional-info{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}@media (min-width:992px){.list-view-pf-additional-info{-ms-flex:1 0 auto;flex:1 0 auto;float:left;width:50%}}.list-view-pf-additional-info-item{-ms-flex-align:center;align-items:center;display:inline-block;display:-ms-flexbox;display:flex;margin-right:20px;max-width:100%;text-align:center}.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked{text-align:center;-ms-flex-direction:column;flex-direction:column}.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked strong{font-size:13px;line-height:1em}.list-view-pf-additional-info-item .fa,.list-view-pf-additional-info-item .pficon{font-size:16px;margin-right:10px}.list-view-pf-additional-info-item strong{font-size:16px;font-weight:600;margin-right:5px}.list-view-pf-additional-info-item:last-child{margin-right:0}.list-view-pf-additional-info-item-donut-chart{width:60px}.list-view-pf-body{-ms-flex-align:center;align-items:center;display:table-cell;-ms-flex:1;flex:1;min-width:0;vertical-align:top;width:100%}@media (min-width:992px){.list-view-pf-body{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-direction:row;flex-direction:row}}.list-view-pf-checkbox{border-right:1px solid #d1d1d1;float:left;margin-bottom:20px;margin-right:15px;margin-top:20px;padding:3px 10px 3px 0}.list-view-pf-top-align .list-view-pf-checkbox{-ms-flex-item-align:start;align-self:flex-start}.list-view-pf-description{-ms-flex:1 0 50%;flex:1 0 50%}.list-view-pf-stacked .list-view-pf-description{display:block;-ms-flex:none;flex:none}@media (min-width:992px){.list-view-pf-description{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;float:left;width:50%}}.list-view-pf-left{display:table-cell;padding-right:20px;text-align:center;vertical-align:top}.list-view-pf-left .list-view-pf-calendar{font-size:11px;line-height:1em}.list-view-pf-left .list-view-pf-calendar strong{display:block;font-size:44px;font-weight:300;line-height:1em}.list-view-pf-left .fa,.list-view-pf-left .pficon{border-radius:50%;font-size:2em}.list-view-pf-left .fa.list-view-pf-icon-md,.list-view-pf-left .pficon.list-view-pf-icon-md{background-color:#f5f5f5;height:50px;line-height:50px;width:50px}.list-view-pf-left .fa.list-view-pf-icon-danger,.list-view-pf-left .pficon.list-view-pf-icon-danger{background-color:#ffe6e6;color:#c00}.list-view-pf-left .fa.list-view-pf-icon-info,.list-view-pf-left .pficon.list-view-pf-icon-info{color:#8b8d8f}.list-view-pf-left .fa.list-view-pf-icon-lg,.list-view-pf-left .pficon.list-view-pf-icon-lg{background-color:#f5f5f5;height:60px;line-height:60px;width:60px}.list-view-pf-left .fa.list-view-pf-icon-sm,.list-view-pf-left .pficon.list-view-pf-icon-sm{border:2px solid #39a5dc;font-size:1.4em;height:30px;line-height:30px;width:30px}.list-view-pf-left .fa.list-view-pf-icon-sm:before,.list-view-pf-left .pficon.list-view-pf-icon-sm:before{display:block;line-height:26px}.list-view-pf-left .fa.list-view-pf-icon-success,.list-view-pf-left .pficon.list-view-pf-icon-success{background-color:#e9f4e9;color:#3f9c35}.list-view-pf-left .fa.list-view-pf-icon-warning,.list-view-pf-left .pficon.list-view-pf-icon-warning{background-color:#fdf2e5;color:#ec7a08}.list-view-pf-main-info{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;min-width:0;padding-bottom:20px;padding-top:20px}@media (min-width:992px){.list-view-pf-main-info{-ms-flex-align:center;align-items:center}.list-view-pf-top-align .list-view-pf-main-info{-ms-flex-align:start;align-items:flex-start}}.list-view-pf-stacked .list-group-item-heading{float:none;font-size:16px;line-height:1.2em;margin-bottom:5px;margin-right:40px;width:auto}.list-view-pf-stacked .list-group-item-text{float:none;width:auto}.list-view-pf-view{background:#ededed;border:none;margin-top:30px}.list-group-item-header{box-sizing:content-box;cursor:pointer;margin:0 -15px;padding:0 15px;width:100%}.list-view-pf-expand{cursor:pointer;float:left;margin-bottom:20px;margin-right:2px;margin-top:20px;padding:3px 0}.list-view-pf-expand.active,.list-view-pf-expand:hover{color:#0088ce}.list-view-pf-additional-info-item .list-view-pf-expand{margin:0;padding:0}.list-view-pf-expand .fa-angle-right{cursor:pointer;font-size:17px;margin-right:5px;margin-top:2px;width:10px}.list-group-item-container{background:#fff;border-top:solid 1px #bbb;box-sizing:content-box;margin:-1px -15px 0;-ms-flex-order:3;order:3;padding:15px;position:relative;width:100%}.login-pf{height:100%}.login-pf #brand{position:relative;top:-70px}.login-pf #brand img{display:block;height:18px;margin:0 auto;max-width:100%}@media (min-width:768px){.login-pf #brand img{margin:0;text-align:left}}.login-pf #badge{display:block;margin:20px auto 70px;position:relative;text-align:center}@media (min-width:768px){.login-pf #badge{float:right;margin-right:64px;margin-top:50px}}.login-pf body{background:#030303 url(../img/bg-login.jpg) repeat-x 50% 0;background-size:auto}@media (min-width:768px){.login-pf body{background-size:100% auto}}.login-pf .container{background-color:rgba(255,255,255,.055);clear:right;color:#fff;padding-bottom:40px;padding-top:20px;width:auto}@media (min-width:768px){.login-pf .container{bottom:13%;padding-left:80px;position:absolute;width:100%}}.login-pf .container .details p:first-child{border-top:1px solid rgba(255,255,255,.3);padding-top:25px;margin-top:25px}@media (min-width:768px){.login-pf .container .details{border-left:1px solid rgba(255,255,255,.3);padding-left:40px}.login-pf .container .details p:first-child{border-top:0;padding-top:0;margin-top:0}}.login-pf .container .details p{margin-bottom:2px}.login-pf .container .form-horizontal .control-label{font-size:13px;font-weight:400;text-align:left}.login-pf .container .form-horizontal .form-group:last-child,.login-pf .container .form-horizontal .form-group:last-child .help-block:last-child{margin-bottom:0}.login-pf .container .help-block{color:#fff}@media (min-width:768px){.login-pf .container .login{padding-right:40px}}.login-pf .container .submit{text-align:right}.login-pf-page .login-pf-brand{margin-top:20px;max-width:360px;width:70%}@media (min-width:768px){.login-pf-page .login-pf-brand{margin-top:62px}}.login-pf-page .login-pf-page-header{margin-bottom:20px;text-align:center}@media (min-width:768px){.login-pf-page .login-pf-page-header{margin-bottom:40px}}.login-pf-page .login-pf-page-header p{color:#fff;font-size:14px;margin-left:auto;margin-right:auto;margin-top:20px}.login-pf-page .card-pf{padding:10px 20px 30px 20px;margin-bottom:0}@media (min-width:768px){.login-pf-page .card-pf{padding:20px 40px 30px 40px}}.login-pf-page .card-pf p{color:#72767b}.login-pf-page .form-control{height:36px}.login-pf-page .checkbox-label{color:#72767b;font-weight:300;margin-bottom:15px}@media (min-width:768px){.login-pf-page .checkbox-label{margin:0}}.login-pf-page .btn-primary{margin-top:40px}.login-pf-page .login-pf-header{margin-bottom:20px;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column}@media (min-width:768px){.login-pf-page .login-pf-header{margin-bottom:30px}}.login-pf-page .login-pf-header h1,.login-pf-page .login-pf-header p{text-align:center}.login-pf-page .login-pf-header h1{font-size:16px}@media (min-width:768px){.login-pf-page .login-pf-header h1{font-size:24px}}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:auto;-ms-flex-item-align:end;align-self:flex-end}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle{color:#4d5258;background:0 0;padding:0 15px 0 0;font-weight:300}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle:not(:focus){box-shadow:none;border:1px solid transparent}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle .caret{right:0}.login-pf-page .login-pf-signup{margin:40px 0 0;font-size:15px;text-align:center}.login-pf-page .login-pf-signup a{margin-left:10px}.login-pf-page .login-pf-settings{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.login-pf-page .login-pf-page-footer{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.login-pf-page .login-pf-page-footer-links{display:-ms-flexbox;display:flex;margin:60px 0 0 0}.login-pf-page .login-pf-page-footer-links li:not(:last-of-type){position:relative;margin:0 20px 0 0}.login-pf-page .login-pf-page-footer-links li:not(:last-of-type):after{content:".";color:#fff;position:absolute;top:0;right:-10px}.login-pf-page .login-pf-page-footer-link{color:#fff;font-size:14px}.login-pf-page .login-pf-page-footer-sso-services{-ms-flex:1 0 100%;flex:1 0 100%;margin-top:40px;text-align:center;color:#fff}.login-pf-page .login-pf-page-footer-sso-services-logos{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0;margin:0;list-style:none;-ms-flex-pack:center;justify-content:center}.login-pf-page .login-pf-page-footer-sso-services-logos li{margin:0 5px 5px}.login-pf-page.login-pf-page-accounts{margin-left:20px;margin-right:20px}.login-pf-page .login-pf-accounts{display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap;max-width:840px;margin-left:auto;margin-right:auto}.login-pf-page .login-pf-accounts .login-pf-header,.login-pf-page .login-pf-accounts .login-pf-signup{-ms-flex-preferred-size:100%;flex-basis:100%}.login-pf-page .login-pf-social-section{-ms-flex-preferred-size:100%;flex-basis:100%;padding:0}@media (min-width:768px){.login-pf-page .login-pf-social-section{-ms-flex:0 1 50%;flex:0 1 50%;max-width:50%}}@media (min-width:768px){.login-pf-page .login-pf-social-section:first-of-type{padding-right:40px}.login-pf-page .login-pf-social-section:last-of-type{padding-left:39px;border-left:1px solid #d1d1d1}}.login-pf-page .login-pf-social{margin:40px 0 0 0}@media (min-width:768px){.login-pf-page .login-pf-social{margin:0}.login-pf-page .login-pf-social-double-col{-ms-flex-wrap:wrap;flex-wrap:wrap;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between}.login-pf-page .login-pf-social-double-col .login-pf-social-link{-ms-flex-preferred-size:48%;flex-basis:48%}}.login-pf-page .login-pf-social:not(.login-pf-social-all) .login-pf-social-link-more{display:none}.login-pf-page .login-pf-social-link{margin-bottom:15px}.login-pf-page .login-pf-social-link a{display:block;padding:7px 0;font-size:14px;background:#f5f5f5;text-align:center;color:#72767b}.login-pf-page .login-pf-social-link a img{margin:0 10px 0 0;width:20px;height:20px}.login-pf-page .login-pf-social-link a:hover{text-decoration:none;background:#ededed}.login-pf-page .login-pf-social-toggle{float:right;padding:0}.login-pf-page .login-pf-social-toggle .caret{margin-left:5px}.login-pf-page .login-pf-social-toggle-active .caret{-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value{transition:opacity 0s .1s,opacity .1s linear}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .badge{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .list-group-item-value{transition:opacity .5s ease-out;transition-delay:150ms}.nav-pf-vertical-alt{background:#fff}.ie9.layout-pf-alt-fixed .nav-pf-vertical-alt{box-sizing:content-box}.layout-pf-alt-fixed .nav-pf-vertical-alt{border-right:1px solid #d1d1d1;bottom:0;overflow-x:hidden;overflow-y:auto;left:0;position:fixed;top:60px;width:250px;z-index:1030}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed{width:75px!important}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .badge{padding:2px 3px;right:21px;top:36px}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value{opacity:0}.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden{display:none}.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden.show-mobile-nav{box-shadow:0 0 3px rgba(3,3,3,.15);display:block!important}.layout-pf-alt-fixed-with-footer .nav-pf-vertical-alt{bottom:37px}.nav-pf-vertical-alt .list-group{border-top:0;margin-bottom:0}.nav-pf-vertical-alt .list-group-item{padding:0}.nav-pf-vertical-alt .list-group-item a{color:#363636;display:block;font-size:14px;height:63px;padding:17px 20px 17px 25px;position:relative;white-space:nowrap}.nav-pf-vertical-alt .list-group-item a:focus{color:#363636;text-decoration:none}.nav-pf-vertical-alt .list-group-item a:hover{color:#39a5dc;text-decoration:none}.nav-pf-vertical-alt .list-group-item.active{background-color:#fff;border-color:#f5f5f5}.nav-pf-vertical-alt .list-group-item.active:before{background:#39a5dc;content:" ";display:block;height:100%;left:0;position:absolute;top:0;width:5px}.nav-pf-vertical-alt .list-group-item.active a{color:#39a5dc}.nav-pf-vertical-alt .list-group-item .badge{background:#363636;border:1px solid #fff;border-radius:3px;color:#fff;font-weight:700;font-size:9px;padding:5px;position:absolute;right:15px;text-align:center;top:21px}.nav-pf-vertical-alt .list-group-item .badge.notifications{background:#0088ce}.nav-pf-vertical-alt .list-group-item .fa,.nav-pf-vertical-alt .list-group-item .glyphicon,.nav-pf-vertical-alt .list-group-item .pficon{float:left;font-size:18px;line-height:30px;margin-right:10px;text-align:center;width:18px}.nav-pf-vertical-alt .list-group-item .list-group-item-value{display:inline-block;line-height:30px;opacity:1;overflow:hidden;text-overflow:ellipsis;width:140px}.nav-pf-vertical-alt .list-group-item-separator{border-top-width:5px}.sidebar-pf .nav-pf-vertical-alt{margin-left:-20px;margin-right:-20px}.navbar-pf-alt{background-color:#030303;background-image:"bg-navbar-pf-alt.svg";background-repeat:no-repeat;background-size:auto 100%;border:none;border-radius:0;border-top:2px solid #39a5dc;margin-bottom:0}.navbar-pf-alt .infotip.bottom-right .arrow{left:90%}.layout-pf-alt-fixed .navbar-pf-alt{left:0;position:fixed;right:0;top:0;z-index:1030}.navbar-pf-alt .nav.navbar-nav>li>.dropdown-menu.infotip{margin-top:0}.navbar-pf-alt .nav .nav-item-iconic{cursor:pointer;line-height:1;max-height:58px;padding:21px 12px;position:relative}.navbar-pf-alt .nav .nav-item-iconic:focus,.navbar-pf-alt .nav .nav-item-iconic:hover{background-color:transparent}.navbar-pf-alt .nav .nav-item-iconic:focus .caret,.navbar-pf-alt .nav .nav-item-iconic:focus .fa,.navbar-pf-alt .nav .nav-item-iconic:focus .glyphicon,.navbar-pf-alt .nav .nav-item-iconic:focus .pficon,.navbar-pf-alt .nav .nav-item-iconic:hover .caret,.navbar-pf-alt .nav .nav-item-iconic:hover .fa,.navbar-pf-alt .nav .nav-item-iconic:hover .glyphicon,.navbar-pf-alt .nav .nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-alt .nav .nav-item-iconic .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;margin:0 0 -11px -12px;min-width:0;padding:2px 4px}.navbar-pf-alt .nav .nav-item-iconic .caret,.navbar-pf-alt .nav .nav-item-iconic .fa,.navbar-pf-alt .nav .nav-item-iconic .pficon{color:#d1d1d1;font-size:16px}.navbar-pf-alt .nav .nav-item-iconic .caret{font-size:12px;width:auto}.navbar-pf-alt .nav .open>.nav-item-iconic,.navbar-pf-alt .nav .open>.nav-item-iconic:focus,.navbar-pf-alt .nav .open>.nav-item-iconic:hover{background:0 0}.navbar-pf-alt .nav .open>.nav-item-iconic .caret,.navbar-pf-alt .nav .open>.nav-item-iconic .fa,.navbar-pf-alt .nav .open>.nav-item-iconic .pficon,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .caret,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .fa,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .pficon,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .caret,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .fa,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-alt .navbar-brand{color:#fff;height:auto;margin:0 0 0 25px;min-height:35px;padding:11px 0 12px}.navbar-pf-alt .navbar-brand .navbar-brand-name{display:inline;margin-left:0 15px 0 0;margin-right:0 15px 0 0}@media (max-width:480px){.navbar-pf-alt .navbar-brand .navbar-brand-name{display:none}}.navbar-pf-alt .navbar-brand .navbar-brand-icon{display:inline;margin-left:0 15px 0 0;margin-right:0 15px 0 0}.navbar-pf-alt .navbar-iconic{margin-right:0}.navbar-pf-alt .navbar-toggle{border:0;display:block;float:left;margin:13px 15px}.navbar-pf-alt .navbar-toggle:focus .icon-bar,.navbar-pf-alt .navbar-toggle:hover .icon-bar{background:#fff}.navbar-pf-alt .navbar-toggle+.navbar-brand{margin-left:0}.navbar-pf-alt .navbar-toggle .icon-bar{background:#d1d1d1}.navbar-pf-vertical{background-color:#1d1d1d;border:none;border-radius:0;border-top:2px solid #39a5dc;margin-bottom:0}.navbar-pf-vertical .infotip.bottom-right .arrow{left:90%}.layout-pf-fixed .navbar-pf-vertical{left:0;position:fixed;right:0;top:0;z-index:1030}.navbar-pf-vertical .nav.navbar-nav>li>.dropdown-menu.infotip{margin-top:0}.navbar-pf-vertical .nav .nav-item-iconic{color:#d1d1d1;cursor:pointer;line-height:1;max-height:58px;padding:21px 12px;position:relative}.navbar-pf-vertical .nav .nav-item-iconic:focus,.navbar-pf-vertical .nav .nav-item-iconic:hover{color:#fff;background-color:transparent}.navbar-pf-vertical .nav .nav-item-iconic:focus .caret,.navbar-pf-vertical .nav .nav-item-iconic:focus .fa,.navbar-pf-vertical .nav .nav-item-iconic:focus .glyphicon,.navbar-pf-vertical .nav .nav-item-iconic:focus .pficon,.navbar-pf-vertical .nav .nav-item-iconic:hover .caret,.navbar-pf-vertical .nav .nav-item-iconic:hover .fa,.navbar-pf-vertical .nav .nav-item-iconic:hover .glyphicon,.navbar-pf-vertical .nav .nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-vertical .nav .nav-item-iconic .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;left:20px;margin:0;padding:2px 4px;position:absolute;min-width:10px;min-height:10px;top:18px}.navbar-pf-vertical .nav .nav-item-iconic .badge.badge-pf-bordered{border:1px solid #1d1d1d}.navbar-pf-vertical .nav .nav-item-iconic .caret,.navbar-pf-vertical .nav .nav-item-iconic .fa,.navbar-pf-vertical .nav .nav-item-iconic .pficon{color:#d1d1d1;font-size:16px}.navbar-pf-vertical .nav .nav-item-iconic .caret{font-size:12px;width:auto}.navbar-pf-vertical .nav .open>.nav-item-iconic,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover{background:0 0}.navbar-pf-vertical .nav .open>.nav-item-iconic .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic .pficon,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .pficon,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-vertical .navbar-brand{color:#fff;height:auto;margin:0 0 0 25px;min-height:35px;padding:11px 0 12px}.navbar-pf-vertical .navbar-brand .navbar-brand-name{display:inline-block;margin:0 15px 0 0}@media (max-width:480px){.navbar-pf-vertical .navbar-brand .navbar-brand-name{display:none}}.navbar-pf-vertical .navbar-brand .navbar-brand-icon{display:inline-block;margin:0 15px 0 0;max-height:35px}.navbar-pf-vertical .navbar-brand .navbar-brand-txt{line-height:34px}.navbar-pf-vertical .navbar-iconic{margin-right:0}.navbar-pf-vertical .navbar-toggle{border:0;display:block;float:left;margin:13px 15px}.navbar-pf-vertical .navbar-toggle:focus .icon-bar,.navbar-pf-vertical .navbar-toggle:hover .icon-bar{background:#fff}.navbar-pf-vertical .navbar-toggle+.navbar-brand{margin-left:0}.navbar-pf-vertical .navbar-toggle .icon-bar{background:#d1d1d1}.navbar-pf{background:#030303;border:0;border-radius:0;border-top:3px solid #39a5dc;margin-bottom:0;min-height:0}.navbar-pf .navbar-brand{color:#f5f5f5;height:auto;padding:12px 0;margin:0 0 0 20px}.navbar-pf .navbar-brand img{display:block}.navbar-pf .navbar-collapse{border-top:0;box-shadow:none;padding:0}.navbar-pf .navbar-header{border-bottom:1px solid #292929;float:none}.navbar-pf .navbar-nav{margin:0}.navbar-pf .navbar-nav>.active>a,.navbar-pf .navbar-nav>.active>a:focus,.navbar-pf .navbar-nav>.active>a:hover{background-color:#232323;color:#f5f5f5}.navbar-pf .navbar-nav>li>a{color:#d1d1d1;line-height:1;padding:10px 20px;text-shadow:none}.navbar-pf .navbar-nav>li>a:focus,.navbar-pf .navbar-nav>li>a:hover{color:#f5f5f5}.navbar-pf .navbar-nav>.open>a,.navbar-pf .navbar-nav>.open>a:focus,.navbar-pf .navbar-nav>.open>a:hover{background-color:#232323;color:#f5f5f5}.navbar-pf .navbar-nav .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;left:26px;margin:0;padding:2px 4px;position:absolute;min-width:10px;min-height:10px;top:6px}@media (min-width:768px){.navbar-pf .navbar-nav .badge{left:auto;right:6px;top:3px}}.navbar-pf .navbar-nav .badge.badge-pf-bordered{border:1px solid #030303}@media (max-width:767px){.navbar-pf .navbar-nav .active .dropdown-menu,.navbar-pf .navbar-nav .active .navbar-persistent,.navbar-pf .navbar-nav .open .dropdown-menu{background-color:#171717!important;margin-left:0;padding-bottom:0;padding-top:0}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a,.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a:focus,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a:focus,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a:hover{background-color:#1f1f1f!important;color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent>li>a,.navbar-pf .navbar-nav .open .dropdown-menu>li>a{background-color:transparent;border:0;color:#d1d1d1;outline:0;padding-left:30px}.navbar-pf .navbar-nav .active .dropdown-menu>li>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent>li>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu>li>a:hover{color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu .divider,.navbar-pf .navbar-nav .active .navbar-persistent .divider,.navbar-pf .navbar-nav .open .dropdown-menu .divider{background-color:#292929;margin:0 1px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-header,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-header,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-header{padding-bottom:0;padding-left:30px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open .dropdown-toggle,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-toggle,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open .dropdown-toggle{color:#f5f5f5}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.pull-left,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.pull-left,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.pull-left{float:none!important}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu>a:after,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu>a:after,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu>a:after{display:none}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-header,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-header,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-header{padding-left:45px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu{border:0;bottom:auto;box-shadow:none;display:block;float:none;margin:0;min-width:0;padding:0;position:relative;left:auto;right:auto;top:auto}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu>li>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu>li>a{padding:5px 15px 5px 45px;line-height:20px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu .dropdown-menu>li>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu>li>a{padding-left:60px}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-menu{display:block}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu>a:after{display:inline-block!important;position:relative;right:auto;top:1px}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu{display:none}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-submenu>a:after{display:none!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu{background-color:#fff!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a:active{background-color:#def3ff!important;border-color:#bee1f4!important;color:#363636!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a:active small{color:#9c9c9c!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.disabled>a{color:#9c9c9c!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a:active{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a:active small{color:rgba(255,255,255,.5)!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li>a.opt{border-bottom:1px solid transparent;border-top:1px solid transparent;color:#363636;padding-left:10px;padding-right:10px}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:active small{color:rgba(255,255,255,.5)!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:focus small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:hover small{color:#9c9c9c}.navbar-pf .navbar-nav .context-bootstrap-select>.open>.dropdown-menu{padding-bottom:5px;padding-top:5px}}.navbar-pf .navbar-persistent{display:none}.navbar-pf .active>.navbar-persistent{display:block}.navbar-pf .navbar-primary{float:none}.navbar-pf .navbar-primary .context{border-bottom:1px solid #292929}.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group,.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group[class*=span]{margin:8px 20px 9px;width:auto}.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a{position:relative}.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a:after{content:"";display:inline-block;font-family:FontAwesome;font-weight:400}@media (max-width:767px){.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a:after{height:10px;margin-left:4px;vertical-align:baseline}}.navbar-pf .navbar-toggle{border:0;margin:0;padding:10px 20px}.navbar-pf .navbar-toggle:focus,.navbar-pf .navbar-toggle:hover{background-color:transparent;outline:0}.navbar-pf .navbar-toggle:focus .icon-bar,.navbar-pf .navbar-toggle:hover .icon-bar{box-shadow:0 0 3px #fff}.navbar-pf .navbar-toggle .icon-bar{background-color:#fff}.navbar-pf .navbar-utility{border-bottom:1px solid #292929}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle{padding-left:36px;position:relative}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle .pficon-user{left:20px;position:absolute;top:10px}@media (max-width:767px){.navbar-pf .navbar-utility>li+li{border-top:1px solid #292929}}@media (min-width:768px){.navbar-pf .navbar-brand{padding:8px 0 7px}.navbar-pf .navbar-nav>li>a{padding-bottom:14px;padding-top:14px}.navbar-pf .navbar-persistent{font-size:14px}.navbar-pf .navbar-primary{font-size:14px;background-image:linear-gradient(to bottom,#1d1c1c 0,#030303 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary.persistent-secondary .context .dropdown-menu{top:auto}.navbar-pf .navbar-primary.persistent-secondary .dropup .dropdown-menu{bottom:-5px;top:auto}.navbar-pf .navbar-primary.persistent-secondary>li{position:static}.navbar-pf .navbar-primary.persistent-secondary>li.active{margin-bottom:32px}.navbar-pf .navbar-primary.persistent-secondary>li.active>.navbar-persistent{display:block;left:0;position:absolute}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent{background:#f5f5f5;border-bottom:1px solid #d1d1d1;padding:0;width:100%}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent a{text-decoration:none!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:before,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:hover:before{background:#0088ce;bottom:-1px;content:"";display:block;height:2px;left:20px;position:absolute;right:20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:hover>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active>a:hover{color:#0088ce!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active .active>a{color:#f5f5f5}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu:hover>.dropdown-menu{display:none}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-menu{display:block;left:20px;margin-top:1px;top:100%}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-toggle{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-toggle:after{border-top-color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu>.dropdown-toggle{padding-right:35px!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu>.dropdown-toggle:after{position:absolute;right:20px;top:10px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open:before,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover:before{background:#bbb;bottom:-1px;content:"";display:block;height:2px;left:20px;position:absolute;right:20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover>a{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open>a:after,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover>a:after{border-top-color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a{background-color:transparent;display:block;line-height:1;padding:9px 20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a.dropdown-toggle{padding-right:35px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a.dropdown-toggle:after{font-size:15px;position:absolute;right:20px;top:9px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a:hover{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li a{color:#4d5258}.navbar-pf .navbar-primary>li>a{border-bottom:1px solid transparent;border-top:1px solid transparent;position:relative;margin:-1px 0 0}.navbar-pf .navbar-primary>li>a:hover{background-color:#1d1c1c;border-top-color:#5c5c5c;color:#d1d1d1;background-image:linear-gradient(to bottom,#363636 0,#1d1c1c 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary>.active>a,.navbar-pf .navbar-primary>.active>a:focus,.navbar-pf .navbar-primary>.active>a:hover,.navbar-pf .navbar-primary>.open>a,.navbar-pf .navbar-primary>.open>a:focus,.navbar-pf .navbar-primary>.open>a:hover{background-color:#303030;border-bottom-color:#303030;border-top-color:#696969;box-shadow:none;color:#f5f5f5;background-image:linear-gradient(to bottom,#434343 0,#303030 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.context-bootstrap-select .filter-option{max-width:160px;text-overflow:ellipsis}.navbar-pf .navbar-primary li.context.dropdown{border-bottom:0}.navbar-pf .navbar-primary li.context.context-bootstrap-select,.navbar-pf .navbar-primary li.context>a{background-color:#1f1f1f;border-bottom-color:#3e3e3e;border-right:1px solid #3e3e3e;border-top-color:#3b3b3b;font-weight:600;background-image:linear-gradient(to bottom,#323232 0,#1f1f1f 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.context-bootstrap-select:hover,.navbar-pf .navbar-primary li.context>a:hover{background-color:#323232;border-bottom-color:#4a4a4a;border-right-color:#4a4a4a;border-top-color:#4a4a4a;background-image:linear-gradient(to bottom,#3f3f3f 0,#323232 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.open>a{background-color:#454545;border-bottom-color:#575757;border-right-color:#575757;border-top-color:#5a5a5a;background-image:linear-gradient(to bottom,#4c4c4c 0,#454545 100%);background-repeat:repeat-x}.navbar-pf .navbar-utility{border-bottom:0;font-size:11px;position:absolute;right:0;top:0}.navbar-pf .navbar-utility>.active>a,.navbar-pf .navbar-utility>.active>a:focus,.navbar-pf .navbar-utility>.active>a:hover,.navbar-pf .navbar-utility>.open>a,.navbar-pf .navbar-utility>.open>a:focus,.navbar-pf .navbar-utility>.open>a:hover{background:#363636;color:#d1d1d1}.navbar-pf .navbar-utility>li>a{border-left:1px solid #2b2b2b;color:#d1d1d1!important;padding:7px 10px}.navbar-pf .navbar-utility>li>a:hover{background:#232323;border-left-color:#373737}.navbar-pf .navbar-utility>li.open>a{border-left-color:#444;color:#f5f5f5!important}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle{padding-left:26px}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle .pficon-user{left:10px;top:7px}.navbar-pf .navbar-utility .open .dropdown-menu{left:auto;right:0}.navbar-pf .navbar-utility .open .dropdown-menu .dropdown-menu{left:auto;right:100%}.navbar-pf .navbar-utility .open .dropdown-menu{border-top-width:0}.navbar-pf .open .dropdown-submenu>.dropdown-menu,.navbar-pf .open.bootstrap-select .dropdown-menu{border-top-width:1px!important}}@media (max-width:360px){.navbar-pf .navbar-brand{margin-left:10px;width:75%}.navbar-pf .navbar-brand img{height:auto;max-width:100%}.navbar-pf .navbar-toggle{padding-left:0}}.drawer-pf{background-color:#fafafa;border:1px solid #d1d1d1;box-shadow:0 6px 12px rgba(3,3,3,.175);overflow-y:auto;position:absolute;right:0;width:320px;z-index:2}.drawer-pf .panel{border-bottom:none;border-left:none;border-right:none}.drawer-pf .panel-group .panel-heading+.panel-collapse .panel-body{border-top:none;border-bottom:1px solid #d1d1d1;padding:0}.drawer-pf .panel-counter{display:block;font-style:italic;line-height:1.2;padding-left:18px;padding-top:5px}.drawer-pf .panel-heading{border-bottom:1px solid #d1d1d1}.drawer-pf .panel-group{bottom:0;margin-bottom:0;position:absolute;top:25px;width:100%}.drawer-pf .panel-title a{cursor:pointer;display:block}.drawer-pf.drawer-pf-expanded{width:inherit}@media (max-width:767px){.drawer-pf.drawer-pf-expanded{left:0;width:100%}}@media (min-width:767px){.drawer-pf.drawer-pf-expanded{left:270px}}.drawer-pf.drawer-pf-expanded .drawer-pf-toggle-expand:before{content:"\f101"}.drawer-pf .blank-slate-pf{border:0;margin-bottom:0;padding:30px}.drawer-pf .blank-slate-pf .blank-slate-pf-icon{font-size:3em;line-height:1em}.drawer-pf .blank-slate-pf h1{font-size:1em;margin-bottom:0;margin-top:15px}.drawer-pf-close,.drawer-pf-toggle-expand{color:#252525;cursor:pointer;line-height:inherit;padding:2px 10px;position:absolute}.drawer-pf-close:focus,.drawer-pf-close:hover,.drawer-pf-toggle-expand:focus,.drawer-pf-toggle-expand:hover{color:#0088ce;text-decoration:none}.drawer-pf-toggle-expand{left:0}.drawer-pf-toggle-expand:before{content:"\f100";font-family:FontAwesome}.drawer-pf-toggle-expand:hover{color:#0088ce}.drawer-pf-close{right:0}.drawer-pf-action{display:-ms-flexbox;display:flex;border-bottom:1px solid #d1d1d1}.drawer-pf-action .btn-link{color:#0088ce;padding:10px 0}.drawer-pf-action .btn-link .fa,.drawer-pf-action .btn-link .pficon{margin-right:3px}.drawer-pf-action .btn-link .pficon-close{position:relative;top:1px}.drawer-pf-action .btn-link:hover{color:#00659c}.drawer-pf-action-link{border-left:solid 1px #d1d1d1;-ms-flex:1 1 0%;flex:1 1 0%;margin:10px 0;text-align:center}.drawer-pf-action-link:first-of-type{border-left-width:0}.drawer-pf-action-link .btn-link{padding:0}.drawer-pf-loading{color:#4d5258;font-size:14px;padding:20px 15px}.drawer-pf-notification{border-bottom:1px solid #d1d1d1;padding:15px}.drawer-pf-notification .date{border-right:1px solid #aaa;display:inline-block;line-height:1;margin-right:5px;padding-right:9px}.drawer-pf-notification>.dropdown-kebab-pf{margin-top:-3px}.drawer-pf-notification .pficon{font-size:14px;margin-top:3px}.drawer-pf-notification:last-of-type{border-bottom:none}.drawer-pf-notification:hover{background-color:#def3ff}.drawer-pf-notification.unread .drawer-pf-notification-message{font-weight:700;cursor:pointer}.drawer-pf-notification.expanded-notification .date{border-right:none;padding-right:0}.drawer-pf-notification-content{cursor:default}.drawer-pf-notification-info,.drawer-pf-notification-message{display:block;padding-left:27px;padding-right:19px}.expanded-notification .drawer-pf-notification-info,.expanded-notification .drawer-pf-notification-message{display:inline-block}.drawer-pf-title{background-color:#fafafa;border-bottom:1px solid #d1d1d1;position:absolute;width:100%}.drawer-pf-title h3{font-size:12px;margin:0;padding:6px 15px}.drawer-pf-notification.expanded-notification .drawer-pf-notification-content{display:-ms-flexbox;display:flex}@media (max-width:991px){.drawer-pf-notification.expanded-notification .drawer-pf-notification-content{-ms-flex-direction:column;flex-direction:column}}.drawer-pf-notification.expanded-notification .drawer-pf-notification-content .drawer-pf-notification-message{-ms-flex:1 1;flex:1 1}.navbar-pf-vertical .drawer-pf{height:calc(100vh - 58px - 20px);top:58px}@media (max-width:767px){.navbar-pf-vertical .drawer-pf{width:100%;height:calc(unquote("100vh - 58px"))}}.navbar-pf-vertical .nav .drawer-pf-trigger .drawer-pf-trigger-icon{border-left:1px solid #2b2b2b;border-right:1px solid #2b2b2b;padding-left:15px;padding-right:15px}.navbar-pf-vertical .nav .drawer-pf-trigger.open .drawer-pf-trigger-icon{background-color:#232323}.navbar-pf .drawer-pf{height:calc(100vh - 26px - 20px);top:26px}@media (max-width:767px){.navbar-pf .drawer-pf{width:100%;height:calc(unquote("100vh - 26px - 32px"));top:calc(unquote("26px + 8px"))}}.navbar-pf .drawer-pf-trigger-icon{cursor:pointer}.search-pf.has-button{border-collapse:separate;display:table}.search-pf.has-button .form-group{display:table-cell;width:100%}.search-pf.has-button .form-group .btn{box-shadow:none;float:left;margin-left:-1px}.search-pf.has-button .form-group .btn-group-lg>.btn,.search-pf.has-button .form-group .btn.btn-lg{font-size:14.5px}.search-pf.has-button .form-group .btn-group-sm>.btn,.search-pf.has-button .form-group .btn.btn-sm{font-size:10.7px}.search-pf.has-button .form-group .form-control{float:left}.search-pf .has-clear .clear{background:rgba(255,255,255,0);border:0;height:25px;line-height:1;padding:0;position:absolute;right:1px;top:1px;width:28px}.search-pf .has-clear .clear:focus{outline:0}.search-pf .has-clear .form-control{padding-right:30px}.search-pf .has-clear .form-control::-ms-clear{display:none}.search-pf .has-clear .input-group-lg>.form-control+.clear,.search-pf .has-clear .input-group-lg>.input-group-addon+.clear,.search-pf .has-clear .input-group-lg>.input-group-btn>.btn+.clear,.search-pf .has-clear .input-lg+.clear{height:31px;width:28px}.search-pf .has-clear .input-group-sm>.form-control+.clear,.search-pf .has-clear .input-group-sm>.input-group-addon+.clear,.search-pf .has-clear .input-group-sm>.input-group-btn>.btn+.clear,.search-pf .has-clear .input-sm+.clear{height:20px;width:28px}.search-pf .has-clear .input-group-sm>.form-control+.clear span,.search-pf .has-clear .input-group-sm>.input-group-addon+.clear span,.search-pf .has-clear .input-group-sm>.input-group-btn>.btn+.clear span,.search-pf .has-clear .input-sm+.clear span{font-size:10px}.search-pf .has-clear .search-pf-input-group{position:relative}.sidebar-header{border-bottom:1px solid #ececec;padding-bottom:11px;margin:50px 0 20px}.sidebar-header .actions{margin-top:-2px}.sidebar-pf .sidebar-header+.list-group{border-top:0;margin-top:-10px}.sidebar-pf .sidebar-header+.list-group .list-group-item{background:0 0;border-color:#ececec;padding-left:0}.sidebar-pf .sidebar-header+.list-group .list-group-item-heading{font-size:12px}.sidebar-pf .nav-category h2{color:#9c9c9c;font-size:12px;font-weight:400;line-height:21px;margin:0;padding:8px 0}.sidebar-pf .nav-category+.nav-category{margin-top:10px}.sidebar-pf .nav-pills>li.active>a{background:#0088ce!important;border-color:#0088ce!important;color:#fff}@media (min-width:768px){.sidebar-pf .nav-pills>li.active>a:after{content:"";font-family:FontAwesome;display:block;position:absolute;right:10px;top:1px}}.sidebar-pf .nav-pills>li.active>a .fa{color:#fff}.sidebar-pf .nav-pills>li>a{border-bottom:1px solid transparent;border-radius:0;border-top:1px solid transparent;color:#363636;font-size:13px;line-height:21px;padding:1px 20px}.sidebar-pf .nav-pills>li>a:hover{background:#def3ff;border-color:#bee1f4}.sidebar-pf .nav-pills>li>a .fa{color:#6a7079;font-size:15px;margin-right:10px;text-align:center;vertical-align:middle;width:15px}.sidebar-pf .nav-stacked{margin-left:-20px;margin-right:-20px}.sidebar-pf .nav-stacked li+li{margin-top:0}.sidebar-pf .panel{background:0 0}.sidebar-pf .panel-body{padding:6px 20px}.sidebar-pf .panel-body .nav-pills>li>a{padding-left:37px}.sidebar-pf .panel-heading{padding:9px 20px}.sidebar-pf .panel-title{font-size:12px}.sidebar-pf .panel-title>a:before{display:inline-block;margin-left:1px;margin-right:4px;width:9px}.sidebar-pf .panel-title>a.collapsed:before{margin-left:3px;margin-right:2px}@media (min-width:767px){.sidebar-header-bleed-left{margin-left:-20px}.sidebar-header-bleed-left>h2{margin-left:20px}.sidebar-header-bleed-right{margin-right:-20px}.sidebar-header-bleed-right .actions{margin-right:20px}.sidebar-header-bleed-right>h2{margin-right:20px}.sidebar-header-bleed-right+.list-group{margin-right:-20px}.sidebar-pf .panel-group .panel-default,.sidebar-pf .treeview{border-left:0;border-right:0;margin-left:-20px;margin-right:-20px}.sidebar-pf .treeview{margin-top:5px}.sidebar-pf .treeview .list-group-item{padding-left:20px;padding-right:20px}.sidebar-pf .treeview .list-group-item.node-selected:after{content:"";font-family:FontAwesome;display:block;position:absolute;right:10px;top:1px}}@media (min-width:768px){.sidebar-pf{background:#fafafa}.sidebar-pf.sidebar-pf-left{border-right:1px solid #d1d1d1}.sidebar-pf.sidebar-pf-right{border-left:1px solid #d1d1d1}.sidebar-pf>.nav-category,.sidebar-pf>.nav-stacked{margin-top:5px}}.skiplink-pf{position:absolute;top:12px;left:-300%;z-index:1050}.skiplink-pf:focus{left:10px}@keyframes rotation{from{transform:rotate(0)}to{transform:rotate(359deg)}}.spinner{animation:rotation .6s infinite linear;border-bottom:4px solid rgba(3,3,3,.25);border-left:4px solid rgba(3,3,3,.25);border-right:4px solid rgba(3,3,3,.25);border-radius:100%;border-top:4px solid rgba(3,3,3,.75);height:24px;margin:0 auto;position:relative;width:24px}.spinner.spinner-inline{display:inline-block;margin-right:3px}.spinner.spinner-lg{border-width:5px;height:30px;width:30px}.spinner.spinner-sm{border-width:3px;height:18px;width:18px}.spinner.spinner-xs{border-width:2px;height:12px;width:12px}.spinner.spinner-inverse{border-bottom-color:rgba(255,255,255,.25);border-left-color:rgba(255,255,255,.25);border-right-color:rgba(255,255,255,.25);border-top-color:rgba(255,255,255,.75)}.ie9 .spinner{background:url(../img/spinner.gif) no-repeat;border:0}.ie9 .spinner.spinner-inverse{background-image:url(../img/spinner-inverse.gif)}.ie9 .spinner.spinner-inverse-lg{background-image:url(../img/spinner-inverse-lg.gif)}.ie9 .spinner.spinner-inverse-sm{background-image:url(../img/spinner-inverse-sm.gif)}.ie9 .spinner.spinner-inverse-xs{background-image:url(../img/spinner-inverse-xs.gif)}.ie9 .spinner.spinner-lg{background-image:url(../img/spinner-lg.gif)}.ie9 .spinner.spinner-sm{background-image:url(../img/spinner-sm.gif)}.ie9 .spinner.spinner-xs{background-image:url(../img/spinner-xs.gif)}.prettyprint .atn,.prettyprint .com,.prettyprint .fun,.prettyprint .var{color:#3f9c35}.prettyprint .atv,.prettyprint .str{color:#a30000}.prettyprint .clo,.prettyprint .dec,.prettyprint .kwd,.prettyprint .opn,.prettyprint .pln,.prettyprint .pun{color:#363636}.prettyprint .lit,.prettyprint .tag,.prettyprint .typ{color:#00659c}.prettyprint ol.linenums{margin-bottom:0}table.dataTable{height:100%;margin-bottom:0;max-width:none!important}table.dataTable tbody>tr>td.table-view-pf-actions{padding:0;vertical-align:middle}table.dataTable tbody>tr:hover>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable tbody>tr.selected{color:#fff;background-color:#0088ce}table.dataTable tbody>tr.selected>td{border-bottom-color:#00659c}table.dataTable tbody>tr.selected>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable tbody>tr.selected:hover>td{background-color:inherit;border-bottom-color:#00659c}table.dataTable tbody>tr.selected:hover>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_desc_disabled{cursor:pointer}table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc{color:#0088ce!important;position:relative}table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after{content:"";font-family:FontAwesome;font-size:10px;font-weight:400;height:9px;left:7px;line-height:12px;position:relative;top:2px;vertical-align:baseline;width:12px}table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_desc:before{background:#0088ce;content:"";height:2px;position:absolute;left:0;top:0;width:100%}table.dataTable thead .sorting_asc:after{content:"";top:-3px}table.dataTable th:active{outline:0}.table-view-pf-empty.blank-slate-pf{background-color:#f5f5f5;border:1px solid #d1d1d1;border-radius:0;margin-top:-1px}.table-view-pf-toolbar.toolbar-pf{background-color:#f5f5f5;border-bottom:none;border-left:1px solid #d1d1d1;border-right:1px solid #d1d1d1;border-top:1px solid #d1d1d1;box-shadow:none;margin-left:0;margin-right:0}.table-view-pf-toolbar.toolbar-pf .toolbar-pf-results{border-top:1px solid #d1d1d1;min-height:40px;line-height:40px}.table-view-pf-toolbar-external.toolbar-pf{border-bottom:none;border-top:none;box-shadow:none}.table-view-pf-toolbar-external.toolbar-pf .toolbar-pf-results{border-top:1px solid #d1d1d1;min-height:40px;line-height:40px}.table-view-pf-colvis-menu>li{padding:5px 10px}.table-view-pf-colvis-menu>li:hover{background-color:#def3ff}.table-view-pf-colvis-menu>li>input{margin-top:0;margin-right:10px;vertical-align:middle}.table-view-pf-colvis-menu>li>label{margin-bottom:0}.table-view-pf-actions{background-color:#f1f1f1;height:100%}.table-view-pf-actions .btn,.table-view-pf-actions .dropdown-toggle{border:none;box-shadow:none;height:100%;width:100%}.table-view-pf-actions .dropdown,.table-view-pf-actions .table-view-pf-btn{height:100%}.table-view-pf-actions .dropdown-menu.dropdown-menu-right{right:-5px}.table-view-pf-actions:last-child{width:24px}.table-view-pf-select{width:33px}.table-view-pf-select-results{text-align:right}.bootstrap-datetimepicker-widget a[data-action]{border:0;box-shadow:none;color:#363636;display:block;padding-bottom:4px;padding-top:4px}.bootstrap-datetimepicker-widget a[data-action]:hover{color:#0088ce}.bootstrap-datetimepicker-widget.dropdown-menu{left:0!important;padding:0;width:calc(100% - 25px)}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:none}.bootstrap-datetimepicker-widget.dropdown-menu.top{margin-bottom:-1px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom{margin-top:-1px}.bootstrap-datetimepicker-widget .timepicker-hour{width:100%}.bootstrap-datetimepicker-widget .timepicker-hour:after{content:":";float:right}.timepicker-hours table td,.timepicker-minutes table td{font-weight:700;line-height:30px;height:30px}.timepicker-hours table td:hover,.timepicker-minutes table td:hover{color:#0088ce}.timepicker-hours .table-condensed>tbody>tr>td,.timepicker-minutes .table-condensed>tbody>tr>td{padding:0}.time-picker-pf .input-group-addon .fa,.time-picker-pf .input-group-addon .pficon{width:12px}.time-picker-pf .input-group-addon:not(.active){box-shadow:none}.timepicker-picker table td a span,.timepicker-picker table td span{height:24px;line-height:24px;margin:0;width:100%}.timepicker-picker .table-condensed>tbody>tr>td{height:25px;line-height:18px;padding:0}.timepicker-picker button[data-action]{padding-bottom:0;padding-top:0}.timepicker-picker .separator{display:none}.timepicker-picker tr:nth-child(2) td{background-color:#def3ff;border-color:#bee1f4;border-style:solid;border-width:1px;border-left:0;border-right:0}.toast-pf{background-color:#fff;border-color:#bbb;box-shadow:0 2px 6px rgba(3,3,3,.2);padding-left:68px;margin-bottom:5px}.toast-pf.alert-danger>.pficon{background-color:#c00}.toast-pf.alert-info>.pficon{background-color:#8b8d8f}.toast-pf.alert-success>.pficon{background-color:#3f9c35}.toast-pf.alert-warning>.pficon{background-color:#ec7a08}.toast-pf .dropdown-kebab-pf{margin-left:10px}.toast-pf>.pficon{background-color:#4d5258;bottom:-1px;box-shadow:2px 0 5px -2px rgba(3,3,3,.2);left:-1px;padding-top:10px;text-align:center;top:-1px;width:53px}.toast-pf>.pficon:before{color:rgba(255,255,255,.74)}.toast-pf .toast-pf-action{margin-left:15px}.toast-pf .dropdown-kebab-pf .btn-link{padding-top:0;padding-bottom:0;vertical-align:text-bottom}@media (min-width:992px){.toast-pf{display:inline-block}}@media (min-width:992px){.toast-pf-max-width{max-width:31.1%}}.toast-pf-top-right{left:20px;position:absolute;right:20px;top:12px;z-index:1055}@media (min-width:992px){.toast-pf-top-right{left:auto}}.toast-notifications-list-pf{margin-left:20px;position:fixed;right:20px;top:80px;z-index:1055}.toast-notifications-list-pf .toast-pf{clear:both;float:right}@media (min-width:768px){.toast-notifications-list-pf{max-width:calc(50%)}}@media (min-width:992px){.toast-notifications-list-pf{max-width:calc(33.1%)}}.toolbar-pf{background:#fff;border-bottom:1px solid #d1d1d1;box-shadow:0 1px 0 rgba(3,3,3,.045);padding-top:10px}.toolbar-pf .form-group{margin-bottom:10px}@media (min-width:768px){.toolbar-pf .form-group{border-right:1px solid #d1d1d1;float:left;margin-bottom:0;padding-left:20px;padding-right:20px}}.toolbar-pf .form-group:last-child{border-right:0;margin-bottom:0;padding-right:0}.toolbar-pf .form-group .btn+.btn,.toolbar-pf .form-group .btn+.btn-group,.toolbar-pf .form-group .btn-group+.btn,.toolbar-pf .form-group .btn-group+.btn-group{margin-left:5px}.toolbar-pf .form-group .btn+.btn-link,.toolbar-pf .form-group .btn+.dropdown,.toolbar-pf .form-group .btn-group+.btn-link,.toolbar-pf .form-group .btn-group+.dropdown{margin-left:10px}.toolbar-pf .form-group .btn-link{color:#252525;font-size:16px;line-height:1;padding:4px 0}.toolbar-pf .form-group .btn-link:active,.toolbar-pf .form-group .btn-link:focus,.toolbar-pf .form-group .btn-link:hover{color:#0088ce}.toolbar-pf .form-group .dropdown-kebab-pf .btn-link{padding:4px 10px;margin-left:-10px;margin-right:-10px}.toolbar-pf-actions{display:table;margin-bottom:10px;width:100%}@media (min-width:768px){.toolbar-pf-actions .toolbar-pf-filter{padding-left:0}}.toolbar-pf-view-selector{font-size:16px}.toolbar-pf-view-selector .btn-link.active{color:#0088ce;cursor:default}.toolbar-pf-action-right{float:right}@media (max-width:768px){.toolbar-pf-action-right{float:none}}.toolbar-pf-find{font-size:14px;position:relative}.find-pf-dropdown-container{background:#fff;border:solid 1px #bbb;display:none;right:-20px;padding:5px;position:absolute;top:35px;width:300px;z-index:10000}@media (max-width:768px){.find-pf-dropdown-container{left:30px;top:-5px;width:calc(100% - 30px)}}.find-pf-dropdown-container:after,.find-pf-dropdown-container:before{content:"";position:absolute}.find-pf-dropdown-container:before{border-bottom:11px solid #bbb;border-left:11px solid transparent;border-right:11px solid transparent;right:35px;top:-12px}.toolbar-pf-find:last-child .find-pf-dropdown-container:before{right:15px}@media (max-width:768px){.find-pf-dropdown-container:before{border-bottom:11px solid transparent;border-right:11px solid #bbb;border-top:11px solid transparent;left:-22px;right:initial;top:8px}}.find-pf-dropdown-container:after{border-bottom:10px solid #fff;border-left:10px solid transparent;border-right:10px solid transparent;right:36px;top:-10px}.toolbar-pf-find:last-child .find-pf-dropdown-container:after{right:16px}@media (max-width:768px){.find-pf-dropdown-container:after{border-bottom:10px solid transparent;border-right:10px solid #fff;border-top:10px solid transparent;left:-20px;right:initial;top:9px}}.find-pf-dropdown-container input{height:30px;padding:5px 117px 5px 5px;width:100%}.find-pf-dropdown-container .find-pf-buttons{position:absolute;right:10px;top:5px}.find-pf-dropdown-container .find-pf-buttons .btn{border:none;cursor:pointer;margin-left:0!important;padding:0;width:18px}.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-down,.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-up{font-weight:700;font-size:18px}.find-pf-dropdown-container .find-pf-buttons .btn .pficon-close{font-size:14px}.find-pf-dropdown-container .find-pf-buttons span{height:30px;line-height:30px;vertical-align:middle}.find-pf-dropdown-container .find-pf-buttons .find-pf-nums{color:#8b8d8f;margin-right:3px}.toolbar-pf-results{border-top:1px solid #d1d1d1;margin-top:10px}.toolbar-pf-results h5,.toolbar-pf-results p,.toolbar-pf-results ul{display:inline-block;line-height:26.6666666667px;margin-bottom:0;margin-top:0}@media (min-width:768px){.toolbar-pf-results h5,.toolbar-pf-results p,.toolbar-pf-results ul{line-height:40px}}.toolbar-pf-results h5{font-weight:700;margin-right:20px}.toolbar-pf-results .label{font-size:11px}.toolbar-pf-results .label a{color:#fff;display:inline-block;margin-left:5px}.nav-pf-vertical{background:#292e34;border-right:1px solid #292e34;bottom:0;left:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;width:200px;z-index:1030}.layout-pf-fixed-with-footer .nav-pf-vertical{bottom:37px}.ie9.layout-pf-fixed .nav-pf-vertical{box-sizing:content-box}.nav-pf-vertical.hidden.show-mobile-nav{box-shadow:0 0 3px rgba(3,3,3,.15);display:block!important}.nav-pf-vertical.hide-nav-pf{visibility:hidden!important}.nav-pf-vertical .list-group{border-top:0;margin-bottom:0}.nav-pf-vertical .list-group-item{background-color:transparent;border-color:#030303;padding:0}.nav-pf-vertical .list-group-item>a{background-color:transparent;color:#d1d1d1;cursor:pointer;display:block;font-size:14px;font-weight:400;height:63px;line-height:26px;padding:17px 20px 17px 25px;position:relative;white-space:nowrap;width:200px}@supports (display:flex){.nav-pf-vertical .list-group-item>a{display:-ms-flexbox;display:flex;padding-right:0}}.nav-pf-vertical .list-group-item>a .fa,.nav-pf-vertical .list-group-item>a .glyphicon,.nav-pf-vertical .list-group-item>a .pficon{color:#72767b;float:left;font-size:20px;line-height:26px;margin-right:10px;text-align:center;width:24px}.nav-pf-vertical .list-group-item>a:hover{text-decoration:none}.nav-pf-vertical .list-group-item.active>a,.nav-pf-vertical .list-group-item:hover>a{background-color:#393f44;color:#fff;font-weight:600}.nav-pf-vertical .list-group-item.active>a .fa,.nav-pf-vertical .list-group-item.active>a .glyphicon,.nav-pf-vertical .list-group-item.active>a .pficon,.nav-pf-vertical .list-group-item:hover>a .fa,.nav-pf-vertical .list-group-item:hover>a .glyphicon,.nav-pf-vertical .list-group-item:hover>a .pficon{color:#39a5dc}.nav-pf-vertical .list-group-item.active>a:before{background:#39a5dc;content:" ";height:100%;left:0;position:absolute;top:0;width:3px}.nav-pf-vertical .list-group-item.active:hover{background-color:transparent;border-color:#030303}.nav-pf-vertical .list-group-item .list-group-item-value{display:block;line-height:25px;max-width:120px;overflow:hidden;text-overflow:ellipsis}@supports (display:flex){.nav-pf-vertical .list-group-item .list-group-item-value{-ms-flex:1;flex:1;max-width:none;padding-right:15px}}.nav-pf-vertical .list-group-item-separator{border-top-color:#030303;border-top-width:2px}.nav-pf-vertical.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-vertical-with-badges .list-group-item>a{width:250px}.nav-pf-vertical h5{color:#fff;cursor:default;font-size:13px;font-weight:600;margin:30px 20px 10px 20px}.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .fa,.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .glyphicon,.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .pficon{display:none}.nav-pf-vertical.hidden-icons-pf.collapsed{display:none}.nav-pf-vertical .badge-container-pf{position:absolute;right:15px;top:20px}@supports (display:flex){.nav-pf-vertical .badge-container-pf{padding-left:0;padding-right:15px;position:relative;right:0;margin-top:-3px;top:5px}}.nav-pf-vertical .badge-container-pf .badge{background:#292e34;color:#fff;float:left;font-size:12px;font-weight:700;line-height:1.66666667;margin:0;padding:0 7px;text-align:center}.nav-pf-vertical .badge-container-pf .badge .fa,.nav-pf-vertical .badge-container-pf .badge .pficon{font-size:14px;height:20px;line-height:1.66666667;margin-right:3px;margin-top:-1px}.nav-pf-vertical-tooltip.tooltip{margin-left:15px}.nav-pf-vertical-tooltip.tooltip .tooltip-inner{background-color:#fff;color:#292e34}.nav-pf-vertical-tooltip.tooltip .tooltip-arrow{border-bottom-color:#fff;left:calc(50% - 15px)!important}.hover-secondary-nav-pf{width:calc(200px * 2)}.hover-secondary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.hover-tertiary-nav-pf{width:calc(200px * 3)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 3)}.hover-tertiary-nav-pf .nav-pf-secondary-nav{width:calc(200px * 2)}.hover-tertiary-nav-pf .nav-pf-secondary-nav .collapsed-tertiary-nav-pf{width:200px}.hover-tertiary-nav-pf .nav-pf-tertiary-nav{left:calc(200px * 2)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav{width:calc(250px * 2)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav .collapsed-tertiary-nav-pf{width:250px}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:calc(250px * 2)}.nav-pf-vertical.collapsed{width:75px}.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed.hover-secondary-nav-pf{width:calc(75px + 200px)}.nav-pf-vertical.collapsed.hover-secondary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + 250px)}.nav-pf-vertical.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.nav-pf-vertical.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + (250px * 2))}.show-mobile-nav.show-mobile-secondary{width:200px}.show-mobile-nav.show-mobile-secondary.nav-pf-vertical-with-badges{width:250px}.show-mobile-nav.show-mobile-tertiary{width:200px}.show-mobile-nav.show-mobile-tertiary.nav-pf-vertical-with-badges{width:250px}.show-mobile-nav .mobile-nav-item-pf .nav-pf-secondary-nav,.show-mobile-nav .mobile-secondary-item-pf .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible;z-index:1034}.show-mobile-nav .mobile-nav-item-pf>.nav-pf-tertiary-nav,.show-mobile-nav .mobile-secondary-item-pf>.nav-pf-tertiary-nav{left:0;opacity:1;visibility:visible;z-index:1038}.show-mobile-nav .nav-pf-secondary-nav{left:0}.secondary-nav-item-pf:hover .show-mobile-nav .nav-pf-secondary-nav{opacity:0;visibility:hidden}.show-mobile-nav .tertiary-nav-item-pf:hover .nav-pf-tertiary-nav{opacity:0;visibility:hidden}.show-mobile-nav .tertiary-nav-item-pf.mobile-nav-item-pf:hover .nav-pf-tertiary-nav{opacity:1;visibility:visible}.secondary-nav-item-pf>a{cursor:default}.secondary-nav-item-pf>a:after{color:#72767b;content:"";display:block;font-family:FontAwesome;font-size:24px;line-height:30px;padding:14px 0;position:absolute;right:20px;top:0}@supports (display:flex){.secondary-nav-item-pf>a .list-group-item-value{padding-right:35px}}.secondary-nav-item-pf.active>a,.secondary-nav-item-pf:hover>a{width:calc(200px + 1px);z-index:1031}.secondary-nav-item-pf.active>a:after,.secondary-nav-item-pf:hover>a:after{right:21px}.collapsed-secondary-nav-pf .secondary-nav-item-pf.active>a,.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover>a{z-index:0}.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active>a,.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover>a{z-index:0}.nav-pf-vertical-with-badges .secondary-nav-item-pf.active>a,.nav-pf-vertical-with-badges .secondary-nav-item-pf:hover>a{width:calc(250px + 1px)}.nav-pf-vertical.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.hover>a{z-index:1030}.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-secondary-nav{left:0}.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav{width:200px}.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.hover>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.hover>a{z-index:0}@media (min-width:1200px){.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf{width:calc(200px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf{width:calc(200px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed{width:calc(75px + 200px)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + (250px * 2))}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf{width:calc(200px * 3)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 3)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{visibility:visible;opacity:1}}.nav-item-pf-header{color:#fff;font-size:16px;margin:18px 20px 10px 20px}.nav-item-pf-header>a{cursor:pointer;margin-right:7px}.nav-item-pf-header>a:focus,.nav-item-pf-header>a:hover{color:#0088ce;text-decoration:none}.nav-pf-vertical.collapsed{width:75px}.nav-pf-vertical.collapsed .list-group-item>a{width:75px}.nav-pf-vertical.collapsed .list-group-item>a>.list-group-item-value{display:none}.nav-pf-vertical.collapsed .list-group-item>a>.badge-container-pf{display:none}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf>a{width:75px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a:after,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf>a:after{right:10px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover>a{width:77px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a:after,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover>a:after{right:11px}.nav-pf-secondary-nav{background:#393f44;border:1px solid #292e34;border-bottom:none;border-top:none;bottom:0;display:block;left:200px;opacity:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;visibility:hidden;width:200px;z-index:1030}.collapsed-secondary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible;z-index:1032}.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible}.hover-secondary-nav-pf .secondary-nav-item-pf.is-hover .nav-pf-secondary-nav{opacity:1;visibility:visible}.ie9.layout-pf-fixed .nav-pf-secondary-nav{box-sizing:content-box}.layout-pf-fixed-with-footer .nav-pf-secondary-nav{bottom:37px}.nav-pf-secondary-nav .list-group-item{border:none;padding:0 0 5px 0;width:200px}.nav-pf-secondary-nav .list-group-item>a{background-color:#393f44;color:#d1d1d1;font-size:12px;font-weight:inherit;height:inherit;padding:4px 0 2px 0;margin-left:20px;width:calc(200px - 20px)}.nav-pf-secondary-nav .list-group-item>a:hover .list-group-item-value{text-decoration:underline}.nav-pf-secondary-nav .list-group-item.active>a:before{display:none}.nav-pf-secondary-nav .list-group-item.active>a,.nav-pf-secondary-nav .list-group-item:hover>a{background-color:#4d5258;color:#fff}.nav-pf-secondary-nav .list-group-item .badge-container-pf{top:5px}.nav-pf-secondary-nav .list-group-item .badge-container-pf .badge{background:#292e34;color:#fff}.nav-pf-secondary-nav .list-group-item .list-group-item-value{padding-left:5px}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a{cursor:default}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a:after{color:#72767b;content:"";display:block;font-family:FontAwesome;font-size:20px;line-height:20px;padding:0;position:absolute;right:20px;top:4px}@supports (display:flex){.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a .list-group-item-value{padding-right:35px}}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a,.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a{width:calc(200px - 19px);z-index:1033}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a:after,.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a:after{right:21px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav{left:250px;width:250px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item{width:250px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item>a{width:calc(250px - 20px)}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a,.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a{width:calc(250px - 19px)}.nav-pf-tertiary-nav{background:#4d5258;border:1px solid #292e34;border-bottom:none;border-top:none;bottom:0;display:block;left:calc(200px * 2);opacity:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;visibility:hidden;width:200px;z-index:1030}.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:250px;width:250px}.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .show-mobile-nav{left:0}.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active .nav-pf-tertiary-nav{left:0;opacity:1;visibility:visible;z-index:1033}.hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav{opacity:1;visibility:visible}.collapsed.collapsed-tertiary-nav-pf .hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav{left:0}.ie9.layout-pf-fixed .nav-pf-tertiary-nav{box-sizing:content-box}.layout-pf-fixed-with-footer .nav-pf-tertiary-nav{bottom:37px}.nav-pf-tertiary-nav .nav-item-pf-header{color:#fff;margin:18px 20px 10px 20px}.nav-pf-tertiary-nav h5{color:#fff;margin:30px 20px 10px 20px}.nav-pf-tertiary-nav .list-group-item{border:none;padding:0 0 5px 0}.nav-pf-tertiary-nav .list-group-item>a{background-color:transparent;color:#d1d1d1;font-size:12px;font-weight:inherit;height:inherit;margin:0 20px 0 20px;padding:4px 0 2px 0}.nav-pf-tertiary-nav .list-group-item.active>a:before{display:none}.nav-pf-tertiary-nav .list-group-item.active>a,.nav-pf-tertiary-nav .list-group-item:hover>a{background-color:#393f44;color:#fff}.nav-pf-tertiary-nav .list-group-item .badge-container-pf{top:5px}.nav-pf-tertiary-nav .list-group-item .badge-container-pf .badge{background:#292e34;color:#fff}.nav-pf-tertiary-nav .list-group-item .list-group-item-value{padding-left:5px}.collapsed .nav-pf-secondary-nav{left:75px}.collapsed .nav-pf-secondary-nav .list-group-item>a{width:calc(200px - 20px)}.collapsed .nav-pf-secondary-nav .list-group-item>a>.list-group-item-value{display:inline-block}.collapsed .nav-pf-secondary-nav .list-group-item>a>.badge-container-pf{display:inline-block}.collapsed .nav-pf-tertiary-nav{left:calc(75px + 200px)}.collapsed .nav-pf-tertiary-nav .list-group-item>a{width:calc(200px - 20px)}.collapsed .nav-pf-tertiary-nav .list-group-item>a>.list-group-item-value{display:inline-block}.collapsed .nav-pf-tertiary-nav .list-group-item>a>.badge-container-pf{display:inline-block}.collapsed.collapsed-secondary-nav-pf,.collapsed.collapsed-tertiary-nav-pf{width:200px}.collapsed.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover>a,.collapsed.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover>a{z-index:1030}.collapsed.collapsed-secondary-nav-pf .nav-pf-secondary-nav,.collapsed.collapsed-tertiary-nav-pf .nav-pf-secondary-nav{left:0}.collapsed.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:200px}.collapsed.collapsed-tertiary-nav-pf .nav-pf-tertiary-nav{left:0}.collapsed.hover-secondary-nav-pf{width:calc(75px + 200px)}.collapsed.hover-secondary-nav-pf.collapsed-secondary-nav-pf,.collapsed.hover-secondary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.collapsed.hover-tertiary-nav-pf.collapsed-secondary-nav-pf{width:calc(200px * 2)}.collapsed.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.collapsed.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item>a{width:calc(250px - 20px)}.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:calc(75px + 250px)}.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .list-group-item>a{width:calc(250px - 20px)}.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf,.collapsed.nav-pf-vertical-with-badges.collapsed-tertiary-nav-pf{width:250px}.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:250px}.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf{width:calc(75px + 250px)}.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-secondary-nav-pf,.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-tertiary-nav-pf{width:250px}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-secondary-nav-pf{width:calc(200px * 2)}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.secondary-collapse-toggle-pf{display:none;font-family:FontAwesome;font-size:inherit;opacity:0;pointer-events:none;-webkit-font-smoothing:antialiased}.secondary-collapse-toggle-pf:before{content:""}.secondary-collapse-toggle-pf.collapsed:before{content:""}.tertiary-collapse-toggle-pf{display:none;font-family:FontAwesome;font-size:inherit;opacity:0;pointer-events:none;-webkit-font-smoothing:antialiased}.tertiary-collapse-toggle-pf:before{content:""}.tertiary-collapse-toggle-pf.collapsed:before{content:""}.nav-pf-vertical-collapsible-menus .secondary-collapse-toggle-pf{display:inline-block}.nav-pf-vertical-collapsible-menus .secondary-nav-item-pf.active .secondary-collapse-toggle-pf{opacity:1;pointer-events:all}.nav-pf-vertical-collapsible-menus .tertiary-collapse-toggle-pf{display:inline-block}.nav-pf-vertical-collapsible-menus .tertiary-nav-item-pf.active .tertiary-collapse-toggle-pf{opacity:1;pointer-events:all}.show-mobile-nav .secondary-collapse-toggle-pf{display:inline-block;opacity:1;pointer-events:all}.show-mobile-nav .secondary-collapse-toggle-pf:before{content:""}.show-mobile-nav .tertiary-collapse-toggle-pf{display:inline-block;opacity:1;pointer-events:all}.show-mobile-nav .tertiary-collapse-toggle-pf:before{content:""}.force-hide-secondary-nav-pf .nav-pf-secondary-nav{display:none!important}.force-hide-secondary-nav-pf .nav-pf-tertiary-nav{display:none!important}.nav-pf-vertical.transitions{transition:width .1s}.nav-pf-vertical.transitions .nav-pf-secondary-nav{transition:visibility .1s,opacity .1s linear}.nav-pf-vertical.transitions .nav-pf-tertiary-nav{transition:visibility .1s,opacity .1s linear}.wizard-pf{padding:10px;margin:0 auto;max-height:900px;width:auto}.wizard-pf .modal-content{min-height:100%}.wizard-pf-body{background:#fff;padding:0;position:static}.wizard-pf-sidebar{background:#fafafa;border-right:1px solid #d1d1d1;display:none}@media (min-width:768px){.wizard-pf-sidebar{display:inherit;-ms-flex:0 0 auto;flex:0 0 auto;overflow-x:hidden;overflow-y:auto}.wizard-pf-sidebar .list-group{border-top:0;margin-bottom:0}.wizard-pf-sidebar .list-group-item{background-color:transparent;border-color:#ededed;padding:0}.wizard-pf-sidebar .list-group-item>a{color:#030303;cursor:pointer;display:block;font-size:14px;font-weight:700;height:50px;outline:0;padding-top:11px;padding-left:20px;position:relative;white-space:nowrap;width:14em}.wizard-pf-sidebar .list-group-item>a:hover{text-decoration:none;background-color:#ededed}.wizard-pf-sidebar .list-group-item>a:focus{text-decoration:none}.wizard-pf-sidebar .list-group-item>a:focus span{text-decoration:underline}.wizard-pf-sidebar .list-group-item.active{background-color:#ededed}.wizard-pf-sidebar .list-group-item.active:hover{border-color:#ededed}.wizard-pf-sidebar .list-group-item.active>a{color:#39a5dc;cursor:default}.wizard-pf-sidebar .list-group-item.active>a:before{content:" ";background:#39a5dc;height:100%;left:0;position:absolute;top:0;width:3px}.wizard-pf-sidebar .list-group-item.active>a:after{color:#39a5dc;content:"\f105";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;line-height:30px;padding-top:10px;position:absolute;right:23px;top:0}}.wizard-pf-substep-number{display:inline-block;margin-right:5px;vertical-align:middle;width:25px}.wizard-pf-substep-title{display:inline-block;margin-right:5px;text-align:left;vertical-align:middle}.wizard-pf-steps{border-bottom:solid 1px #d1d1d1}@media (min-width:768px){.wizard-pf-steps{text-align:center}}.wizard-pf-steps-indicator{background:#ededed;border-top:1px solid #d1d1d1;display:inline-block;display:-ms-flexbox;display:flex;font-size:16px;list-style:none;margin-bottom:0;padding:15px 0}@media (min-width:768px){.wizard-pf-steps-indicator{background:#fff;height:120px;padding:38px 0 0;-ms-flex-pack:distribute;justify-content:space-around}}.wizard-pf-steps-indicator li{counter-increment:section;float:left;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:0;flex-basis:0;line-height:15px;margin:0;padding:0;position:relative;text-align:center}.wizard-pf-steps-indicator li:not(.active){display:none}@media (min-width:768px){.wizard-pf-steps-indicator li:not(.active){display:block}}.wizard-pf-steps-indicator li a{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;font-weight:700}@media (min-width:768px){.wizard-pf-steps-indicator li a{font-weight:400;-ms-flex-pack:center;justify-content:center}}.wizard-pf-steps-indicator li a .wizard-pf-step-title{margin-left:10px}@media (min-width:768px){.wizard-pf-steps-indicator li a .wizard-pf-step-title{margin-left:0}}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep{font-weight:400;margin-left:10px;text-transform:capitalize}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:before{content:"\00BB";font-size:20px;margin-right:10px}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:not(.active){display:none}@media (min-width:768px){.wizard-pf-steps-indicator li .wizard-pf-step-title-substep{display:none}.wizard-pf-steps-indicator li:before{background-color:#bbb;content:"";height:2px;left:0;position:absolute;right:0;top:40px}.wizard-pf-steps-indicator li:first-child:before{left:50%;right:0}.wizard-pf-steps-indicator li:last-child:before{left:0;right:50%}.wizard-pf-steps-indicator li:only-of-type:before{background-color:transparent}}.wizard-pf-steps-indicator li a{color:#030303;cursor:pointer;font-size:16px;margin-left:1em;margin-right:1em;text-decoration:none}.wizard-pf-steps-indicator li a:hover .wizard-pf-step-number{background-color:#bbb;border-color:#bbb;color:#fff}.wizard-pf-steps-indicator .wizard-pf-step-number{background-color:#fff;border-radius:50%;border:solid 2px #bbb;color:#bbb;font-size:12px;font-weight:700;height:25px;line-height:22px;width:25px}@media (min-width:768px){.wizard-pf-steps-indicator .wizard-pf-step-number{left:calc(50% - 13px);position:absolute;top:27px}}.wizard-pf-steps-indicator .active .wizard-pf-step-number{background-color:#39a5dc;border-color:#39a5dc;cursor:default;color:#fff}.wizard-pf-steps-indicator .viewed-pf .wizard-pf-step-number{color:#030303;background-color:#fff;border-color:#39a5dc}.wizard-pf-main{height:100%;padding:1em;vertical-align:top;width:100%}@media (min-width:768px){.wizard-pf-main{overflow:auto;padding:3em;-ms-flex:1 1 auto;flex:1 1 auto}}.wizard-pf-main .blank-slate-pf{background-color:transparent;border:none;left:0;right:0}.wizard-pf-contents textarea{resize:vertical}.wizard-pf-review-steps{list-style:none}.wizard-pf-review-steps .list-group,.wizard-pf-review-steps .list-group-item{border:none;margin-bottom:0}.wizard-pf-review-steps>ul>li{float:left;line-height:15px;margin:0;padding-top:0;position:relative;width:100%}.wizard-pf-review-steps>ul>li>a{color:#030303;cursor:pointer;font-size:16px;padding-left:30px;padding-right:5px;text-decoration:none;transition:250ms}.wizard-pf-review-steps>ul>li>a:before{content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;left:20px;position:absolute;top:0}.wizard-pf-review-steps>ul>li>a.collapsed:before{content:"\f105"}.wizard-pf-review-substeps{padding-left:22px}.wizard-pf-review-substeps>ul>li{float:left;line-height:15px;margin:0;position:relative;width:100%}.wizard-pf-review-substeps>ul>li a{color:#030303;cursor:pointer;font-size:16px;padding-left:30px;padding-right:5px;text-decoration:none;transition:250ms}.wizard-pf-review-substeps>ul>li a:before{content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;left:20px;position:absolute;top:10px}.wizard-pf-review-substeps>ul>li a.collapsed:before{content:"\f105"}.wizard-pf-review-content{padding-top:10px;padding-left:40px}.wizard-pf-review-content .wizard-pf-review-item{padding:5px 0}.wizard-pf-review-content .wizard-pf-review-item.sub-item{margin-left:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-label{font-weight:700;padding-right:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field{font-weight:700;margin:5px 0;padding-right:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:first-of-type{margin-top:0}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:last-of-type{margin-bottom:0}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field.sub-field{margin-left:10px}.wizard-pf-success-icon{color:#3f9c35;font-size:67.2px;line-height:67.2px}.wizard-pf-footer{background:#fff;border-top:1px solid #d1d1d1;margin-top:0;padding-bottom:17px}.wizard-pf-footer .btn-cancel{margin-right:25px}@media (min-width:768px){.wizard-pf-row{display:-ms-flexbox;display:flex;width:100%;height:900px;max-height:65vh}}@media (min-width:992px){.wizard-pf{padding:30px 0;width:900px}.wizard-pf-sidebar .list-group-item>a{width:18em}}.wizard-pf-steps-alt,.wizard-pf-steps-alt ul{list-style:none;margin:0;padding:0}.wizard-pf-steps-alt{margin-left:15px;margin-top:15px;background-image:linear-gradient(to right,transparent 11px,#d1d1d1 11px,#d1d1d1 13px,transparent 13px)}@media (min-width:768px){.wizard-pf-steps-alt{display:none}}.wizard-pf-steps-alt-indicator{position:relative}.wizard-pf-steps-alt-indicator:after{color:#4d5258;content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;position:absolute;right:17px;top:50%;-ms-transform:translateY(-50%);transform:translateY(-50%)}@media (min-width:768px){.wizard-pf-steps-alt-indicator:after{display:none}}.wizard-pf-steps-alt-indicator.active:after{content:"\f106"}.wizard-pf-step-alt{margin-bottom:10px}.wizard-pf-step-alt a{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1}.wizard-pf-step-alt a:hover{text-decoration:none}.wizard-pf-step-alt a:hover .wizard-pf-step-alt-title{color:#39a5dc}.wizard-pf-step-alt ul{margin-left:11px}.wizard-pf-step-alt .wizard-pf-step-alt-title{margin-left:5px;-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.wizard-pf-step-alt .wizard-pf-step-alt-number{-ms-flex:0 0 auto;flex:0 0 auto}.wizard-pf-step-alt.active .wizard-pf-step-alt-number{background-color:#39a5dc;border-color:#39a5dc;cursor:default;color:#fff}.wizard-pf-step-alt.active .wizard-pf-step-alt-title{color:#39a5dc}.wizard-pf-step-alt.active .wizard-pf-step-alt-substep:first-of-type{margin-top:2px}.wizard-pf-step-alt.viewed .wizard-pf-step-alt-number{color:#030303;background-color:#fff;border-color:#39a5dc}.wizard-pf-step-alt-number{background-color:#fff;border-radius:50%;border:solid 2px #bbb;color:#bbb;font-size:12px;font-weight:700;height:24px;width:24px;display:inline-block;text-align:center}.wizard-pf-step-alt-title{color:#030303;font-weight:700;text-transform:capitalize;display:inline-block}.wizard-pf-step-alt-substep{display:-ms-flexbox;display:flex}.wizard-pf-step-alt-substep a{padding:5px 0 5px 18px;color:#393f44}.wizard-pf-step-alt-substep:not(.disabled).active,.wizard-pf-step-alt-substep:not(.disabled):hover{background-color:#ededed;background-image:linear-gradient(to right,#39a5dc 2px,transparent 2px)}.wizard-pf-step-alt-substep:not(.disabled).active a,.wizard-pf-step-alt-substep:not(.disabled):hover a{color:#39a5dc}.wizard-pf-step-alt-substep.active a{font-weight:700}.wizard-pf-step-alt-substep.disabled{cursor:not-allowed}.wizard-pf-step-alt-substep.disabled a{pointer-events:none}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/patternfly/tests/build/sass/patternfly.min.css.map b/themes/src/main/node_modules/patternfly/tests/build/sass/patternfly.min.css.map
index 72591d1..cc4fcb8 100644
--- a/themes/src/main/node_modules/patternfly/tests/build/sass/patternfly.min.css.map
+++ b/themes/src/main/node_modules/patternfly/tests/build/sass/patternfly.min.css.map
@@ -1 +1 @@
-{"version":3,"sources":["tests/build/sass/patternfly.css"],"names":[],"mappings":"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ACE,KAAM,cAER,eACE,KAAM,eAER,eACE,KAAM,IAER,eACE,KAAM,eAER,eACE,KAAM,eAER,eACE,KAAM,IAER,eACE,KAAM,eAER,eACE,KAAM,eAER,eACE,KAAM,IAER,gBACE,KAAM,eAER,gBACE,KAAM,eAER,gBACE,KAAM,KAER,iBACE,YAAa,EAEf,iBACE,YAAa,cAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,iBACE,YAAa,eAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,iBACE,YAAa,eAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,kBACE,YAAa,eAEf,kBACE,YAAa,eAEf,kBACE,YAAa,MAIjB,yBACE,UAAmG,WAAY,WAAY,WAAhH,UAAW,UAAW,UAAW,UAAW,UAAW,UAAW,UAAW,UACtF,MAAO,KAET,UACE,MAAO,cAET,UACE,MAAO,eAET,UACE,MAAO,IAET,UACE,MAAO,eAET,UACE,MAAO,eAET,UACE,MAAO,IAET,UACE,MAAO,eAET,UACE,MAAO,eAET,UACE,MAAO,IAET,WACE,MAAO,eAET,WACE,MAAO,eAET,WACE,MAAO,KAET,eACE,MAAO,KAET,eACE,MAAO,cAET,eACE,MAAO,eAET,eACE,MAAO,IAET,eACE,MAAO,eAET,eACE,MAAO,eAET,eACE,MAAO,IAET,eACE,MAAO,eAET,eACE,MAAO,eAET,eACE,MAAO,IAET,gBACE,MAAO,eAET,gBACE,MAAO,eAET,gBACE,MAAO,KAET,eACE,KAAM,KAER,eACE,KAAM,cAER,eACE,KAAM,eAER,eACE,KAAM,IAER,eACE,KAAM,eAER,eACE,KAAM,eAER,eACE,KAAM,IAER,eACE,KAAM,eAER,eACE,KAAM,eAER,eACE,KAAM,IAER,gBACE,KAAM,eAER,gBACE,KAAM,eAER,gBACE,KAAM,KAER,iBACE,YAAa,EAEf,iBACE,YAAa,cAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,iBACE,YAAa,eAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,iBACE,YAAa,eAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,kBACE,YAAa,eAEf,kBACE,YAAa,eAEf,kBACE,YAAa,MAIjB,0BACE,UAAmG,WAAY,WAAY,WAAhH,UAAW,UAAW,UAAW,UAAW,UAAW,UAAW,UAAW,UACtF,MAAO,KAET,UACE,MAAO,cAET,UACE,MAAO,eAET,UACE,MAAO,IAET,UACE,MAAO,eAET,UACE,MAAO,eAET,UACE,MAAO,IAET,UACE,MAAO,eAET,UACE,MAAO,eAET,UACE,MAAO,IAET,WACE,MAAO,eAET,WACE,MAAO,eAET,WACE,MAAO,KAET,eACE,MAAO,KAET,eACE,MAAO,cAET,eACE,MAAO,eAET,eACE,MAAO,IAET,eACE,MAAO,eAET,eACE,MAAO,eAET,eACE,MAAO,IAET,eACE,MAAO,eAET,eACE,MAAO,eAET,eACE,MAAO,IAET,gBACE,MAAO,eAET,gBACE,MAAO,eAET,gBACE,MAAO,KAET,eACE,KAAM,KAER,eACE,KAAM,cAER,eACE,KAAM,eAER,eACE,KAAM,IAER,eACE,KAAM,eAER,eACE,KAAM,eAER,eACE,KAAM,IAER,eACE,KAAM,eAER,eACE,KAAM,eAER,eACE,KAAM,IAER,gBACE,KAAM,eAER,gBACE,KAAM,eAER,gBACE,KAAM,KAER,iBACE,YAAa,EAEf,iBACE,YAAa,cAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,iBACE,YAAa,eAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,iBACE,YAAa,eAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,kBACE,YAAa,eAEf,kBACE,YAAa,eAEf,kBACE,YAAa,MAIjB,MACE,iBAAkB,YAGpB,QACE,YAAa,KACb,eAAgB,KAChB,MAAO,QACP,WAAY,KAGd,GACE,WAAY,KAGd,OACE,MAAO,KACP,UAAW,KACX,cAAe,KAMjB,mBADA,mBAGA,mBADA,mBAHA,mBADA,mBAME,QAAS,KACT,YAAa,WACb,eAAgB,IAChB,WAAY,IAAI,MAAM,QAGxB,mBACE,eAAgB,OAChB,cAAe,IAAI,MAAM,QAI3B,uCADA,uCAGA,wCADA,wCAGA,2CADA,2CAEE,W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"}
\ No newline at end of file
+{"version":3,"sources":["tests/build/sass/patternfly.css"],"names":[],"mappings":"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ACE,KAAM,cAER,eACE,KAAM,eAER,eACE,KAAM,IAER,eACE,KAAM,eAER,eACE,KAAM,eAER,eACE,KAAM,IAER,eACE,KAAM,eAER,eACE,KAAM,eAER,eACE,KAAM,IAER,gBACE,KAAM,eAER,gBACE,KAAM,eAER,gBACE,KAAM,KAER,iBACE,YAAa,EAEf,iBACE,YAAa,cAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,iBACE,YAAa,eAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,iBACE,YAAa,eAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,kBACE,YAAa,eAEf,kBACE,YAAa,eAEf,kBACE,YAAa,MAIjB,yBACE,UAAmG,WAAY,WAAY,WAAhH,UAAW,UAAW,UAAW,UAAW,UAAW,UAAW,UAAW,UACtF,MAAO,KAET,UACE,MAAO,cAET,UACE,MAAO,eAET,UACE,MAAO,IAET,UACE,MAAO,eAET,UACE,MAAO,eAET,UACE,MAAO,IAET,UACE,MAAO,eAET,UACE,MAAO,eAET,UACE,MAAO,IAET,WACE,MAAO,eAET,WACE,MAAO,eAET,WACE,MAAO,KAET,eACE,MAAO,KAET,eACE,MAAO,cAET,eACE,MAAO,eAET,eACE,MAAO,IAET,eACE,MAAO,eAET,eACE,MAAO,eAET,eACE,MAAO,IAET,eACE,MAAO,eAET,eACE,MAAO,eAET,eACE,MAAO,IAET,gBACE,MAAO,eAET,gBACE,MAAO,eAET,gBACE,MAAO,KAET,eACE,KAAM,KAER,eACE,KAAM,cAER,eACE,KAAM,eAER,eACE,KAAM,IAER,eACE,KAAM,eAER,eACE,KAAM,eAER,eACE,KAAM,IAER,eACE,KAAM,eAER,eACE,KAAM,eAER,eACE,KAAM,IAER,gBACE,KAAM,eAER,gBACE,KAAM,eAER,gBACE,KAAM,KAER,iBACE,YAAa,EAEf,iBACE,YAAa,cAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,iBACE,YAAa,eAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,iBACE,YAAa,eAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,kBACE,YAAa,eAEf,kBACE,YAAa,eAEf,kBACE,YAAa,MAIjB,0BACE,UAAmG,WAAY,WAAY,WAAhH,UAAW,UAAW,UAAW,UAAW,UAAW,UAAW,UAAW,UACtF,MAAO,KAET,UACE,MAAO,cAET,UACE,MAAO,eAET,UACE,MAAO,IAET,UACE,MAAO,eAET,UACE,MAAO,eAET,UACE,MAAO,IAET,UACE,MAAO,eAET,UACE,MAAO,eAET,UACE,MAAO,IAET,WACE,MAAO,eAET,WACE,MAAO,eAET,WACE,MAAO,KAET,eACE,MAAO,KAET,eACE,MAAO,cAET,eACE,MAAO,eAET,eACE,MAAO,IAET,eACE,MAAO,eAET,eACE,MAAO,eAET,eACE,MAAO,IAET,eACE,MAAO,eAET,eACE,MAAO,eAET,eACE,MAAO,IAET,gBACE,MAAO,eAET,gBACE,MAAO,eAET,gBACE,MAAO,KAET,eACE,KAAM,KAER,eACE,KAAM,cAER,eACE,KAAM,eAER,eACE,KAAM,IAER,eACE,KAAM,eAER,eACE,KAAM,eAER,eACE,KAAM,IAER,eACE,KAAM,eAER,eACE,KAAM,eAER,eACE,KAAM,IAER,gBACE,KAAM,eAER,gBACE,KAAM,eAER,gBACE,KAAM,KAER,iBACE,YAAa,EAEf,iBACE,YAAa,cAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,iBACE,YAAa,eAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,iBACE,YAAa,eAEf,iBACE,YAAa,eAEf,iBACE,YAAa,IAEf,kBACE,YAAa,eAEf,kBACE,YAAa,eAEf,kBACE,YAAa,MAIjB,MACE,iBAAkB,YAGpB,QACE,YAAa,KACb,eAAgB,KAChB,MAAO,QACP,WAAY,KAGd,GACE,WAAY,KAGd,OACE,MAAO,KACP,UAAW,KACX,cAAe,KAMjB,mBADA,mBAGA,mBADA,mBAHA,mBADA,mBAME,QAAS,KACT,YAAa,WACb,eAAgB,IAChB,WAAY,IAAI,MAAM,QAGxB,mBACE,eAAgB,OAChB,cAAe,IAAI,MAAM,QAI3B,uCADA,uCAGA,wCADA,wCAGA,2CADA,2CAEE,WAAY,EAGd,mBACE,WAAY,IAAI,MAAM,QAGxB,cACE,iBAAkB,KAMpB,6BADA,6BAGA,6BADA,6BAHA,6BADA,6BAME,QAAS,IAGX,gBACE,OAAQ,IAAI,MAAM,QAMpB,4BADA,4BAGA,4BADA,4BAHA,4BADA,4BAME,OAAQ,IAAI,MAAM,QAIpB,4BADA,4BAEE,oBAAqB,IAGvB,yCACE,iBAAkB,QAGpB,4BACE,iBAAkB,QAGpB,uBACE,SAAU,OACV,MAAO,KACP,QAAS,aAGX,sBACA,sBACE,SAAU,OACV,MAAO,KACP,QAAS,WASX,0BACA,0BAHA,0BACA,0BAKA,0BACA,0BAHA,0BACA,0BAPA,0BACA,0BAHA,0BACA,0BAWE,iBAAkB,QAKpB,sCAEA,sCADA,oCAHA,sCACA,sCAIE,iBAAkB,QASpB,2BACA,2BAHA,2BACA,2BAKA,2BACA,2BAHA,2BACA,2BAPA,2BACA,2BAHA,2BACA,2BAWE,iBAAkB,QAKpB,uCAEA,uCADA,qCAHA,uCACA,uCAIE,iBAAkB,QASpB,wBACA,wBAHA,wBACA,wBAKA,wBACA,wBAHA,wBACA,wBAPA,wBACA,wBAHA,wBACA,wBAWE,iBAAkB,QAKpB,oCAEA,oCADA,kCAHA,oCACA,oCAIE,iBAAkB,QASpB,2BACA,2BAHA,2BACA,2BAKA,2BACA,2BAHA,2BACA,2BAPA,2BACA,2BAHA,2BACA,2BAWE,iBAAkB,QAKpB,uCAEA,uCADA,qCAHA,uCACA,uCAIE,iBAAkB,QASpB,0BACA,0BAHA,0BACA,0BAKA,0BACA,0BAHA,0BACA,0BAPA,0BACA,0BAHA,0BACA,0BAWE,iBAAkB,QAKpB,sCAEA,sCADA,oCAHA,sCACA,sCAIE,iBAAkB,QAGpB,kBACE,WAAY,KACZ,WAAY,KAGd,oCACE,kBACE,MAAO,KACP,cAAe,KACf,WAAY,OACZ,mBAAoB,yBACpB,OAAQ,IAAI,MAAM,QAEpB,yBACE,cAAe,EAKjB,qCADA,qCAGA,qCADA,qCAHA,qCADA,qCAME,YAAa,OAEf,kCACE,OAAQ,EAKV,0DADA,0DAGA,0DADA,0DAHA,0DADA,0DAME,YAAa,EAKf,yDADA,yDAGA,yDADA,yDAHA,yDADA,yDAME,aAAc,EAGhB,yDADA,yDAGA,yDADA,yDAEE,cAAe,GAInB,SACE,QAAS,EACT,OAAQ,EACR,OAAQ,EACR,UAAW,EAGb,OACE,QAAS,MACT,MAAO,KACP,QAAS,EACT,cAAe,KACf,UAAW,KACX,YAAa,QACb,MAAO,QACP,OAAQ,EACR,cAAe,IAAI,MAAM,QAG3B,MACE,QAAS,aACT,UAAW,KACX,cAAe,IACf,YAAa,IAGf,mBACE,mBAAoB,WACpB,gBAAiB,WACjB,WAAY,WAId,qBADA,kBAEE,OAAQ,IAAI,EAAE,EAEd,YAAa,OAGf,iBACE,QAAS,MAGX,kBACE,QAAS,MACT,MAAO,KAGT,iBACA,aACE,OAAQ,KAKV,2BAFA,uBACA,wBAEE,QAAS,IAAI,KAAK,yBAClB,eAAgB,KAGlB,OACE,QAAS,MACT,YAAa,IACb,UAAW,KACX,YAAa,WACb,MAAO,QAGT,cACE,QAAS,MACT,MAAO,KACP,OAAQ,KACR,QAAS,IAAI,IACb,UAAW,KACX,YAAa,WACb,MAAO,QACP,iBAAkB,KAClB,iBAAkB,KAClB,OAAQ,IAAI,MAAM,KAClB,cAAe,IACf,mBAAoB,MAAM,EAAE,IAAI,IAAI,iBACpC,WAAY,MAAM,EAAE,IAAI,IAAI,iBAC5B,mBAAoB,aAAa,YAAY,IAAK,CAAE,WAAW,YAAY,KAC3E,cAAe,aAAa,YAAY,IAAK,CAAE,WAAW,YAAY,KACtE,WAAY,aAAa,YAAY,IAAK,CAAE,WAAW,YAAY,KAGrE,oBACE,aAAc,QACd,QAAS,EACT,mBAAoB,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,mBAClE,WAAY,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,mBAG5D,+BACE,MAAO,KACP,WAAY,OAGd,gCACE,MAAO,KACP,WAAY,OACZ,QAAS,EAGX,oCACE,MAAO,KACP,WAAY,OAGd,yCACE,MAAO,KACP,WAAY,OAGd,0BACE,OAAQ,EACR,iBAAkB,YAGpB,wBAAyB,wBACzB,iCACE,iBAAkB,QAClB,QAAS,EAGX,wBACA,iCACE,OAAQ,YAGV,sBACE,OAAQ,KAGV,mBACE,mBAAoB,KAGtB,qDACE,8BAEA,wCACA,+BAFA,8BAGE,YAAa,KAKf,iCAWA,2CAMA,kCAZA,iCANA,sDAWA,gEAMA,uDAZA,sDAP6B,8CAC7B,mDAUA,wDACA,6DAKA,+CACA,oDAbA,8CACA,mDANA,0BAUA,oCAMA,2BAZA,0BAkBE,YAAa,KAKf,iCAWA,2CAMA,kCAZA,iCANA,sDAWA,gEAMA,uDAZA,sDAP6B,8CAC7B,mDAUA,wDACA,6DAKA,+CACA,oDAbA,8CACA,mDANA,0BAUA,oCAMA,2BAZA,0BAkBE,YAAa,MAIjB,YACE,cAAe,KAIjB,UADA,OAEE,SAAU,SACV,QAAS,MACT,WAAY,KACZ,cAAe,KAIjB,gBADA,aAEE,WAAY,KACZ,aAAc,KACd,cAAe,EACf,YAAa,IACb,OAAQ,QAKV,+BACA,sCAHA,yBACA,gCAGE,SAAU,SACV,YAAa,MAKf,oBADA,cAEE,WAAY,KAId,iBADA,cAEE,SAAU,SACV,QAAS,aACT,aAAc,KACd,cAAe,EACf,eAAgB,OAChB,YAAa,IACb,OAAQ,QAIV,kCADA,4BAEE,WAAY,EACZ,YAAa,KAOf,wCAHA,qCAEA,8BADA,+BAF+B,2BAA/B,4BAME,OAAQ,YAKV,0BAFA,uBAGA,oCAFA,iCAIE,OAAQ,YAKV,yBAFA,sBAGA,mCAFA,gCAIE,OAAQ,YAGV,qBACE,YAAa,IACb,eAAgB,IAChB,cAAe,EACf,WAAY,KAGd,8BAE+D,8BAFhC,kDAC/B,uDACA,0DAA8F,kDAC9F,uDACA,0DACE,aAAc,EACd,cAAe,EAGN,8BACX,mCACA,sCAFA,UAGE,OAAQ,KACR,QAAS,IAAI,IACb,UAAW,KACX,YAAa,IACb,cAAe,IAKjB,4CAFiB,oCACjB,yCADA,gBAGE,OAAQ,KACR,YAAa,KASf,sDAJA,8CAEA,8CACA,mDALmB,sCACnB,2CAEA,0BAHA,kBAOE,OAAQ,KAGV,6BACE,OAAQ,KACR,QAAS,IAAI,IACb,UAAW,KACX,YAAa,IACb,cAAe,IAGjB,mCACE,OAAQ,KACR,YAAa,KAIf,6CADA,qCAEE,OAAQ,KAGV,oCACE,OAAQ,KACR,WAAY,KACZ,QAAS,IAAI,IACb,UAAW,KACX,YAAa,IAGJ,8BACX,mCACA,sCAFA,UAGE,OAAQ,KACR,QAAS,IAAI,KACb,UAAW,KACX,YAAa,UACb,cAAe,IAKjB,4CAFiB,oCACjB,yCADA,gBAGE,OAAQ,KACR,YAAa,KASf,sDAJA,8CAEA,8CACA,mDALmB,sCACnB,2CAEA,0BAHA,kBAOE,OAAQ,KAGV,6BACE,OAAQ,KACR,QAAS,IAAI,KACb,UAAW,KACX,YAAa,UACb,cAAe,IAGjB,mCACE,OAAQ,KACR,YAAa,KAIf,6CADA,qCAEE,OAAQ,KAGV,oCACE,OAAQ,KACR,WAAY,KACZ,QAAS,IAAI,KACb,UAAW,KACX,YAAa,UAGf,cACE,SAAU,SAGZ,4BACE,cAAe,OAGjB,uBACE,SAAU,SACV,IAAK,EACL,MAAO,EACP,QAAS,EACT,QAAS,MACT,MAAO,KACP,OAAQ,KACR,YAAa,KACb,WAAY,OACZ,eAAgB,KAOlB,oDADA,uCAHoC,qDACpC,0DACA,6DAFA,iCAKE,MAAO,KACP,OAAQ,KACR,YAAa,KAOf,oDADA,uCAHoC,qDACpC,0DACA,6DAFA,iCAKE,MAAO,KACP,OAAQ,KACR,YAAa,KAMf,uBAEA,8BAJA,4BADA,yBAEA,oBAEA,2BAGA,4BAEA,mCAHA,yBAEA,gCAEE,MAAO,QAGT,2BACE,aAAc,QACd,mBAAoB,MAAM,EAAE,IAAI,IAAI,iBACpC,WAAY,MAAM,EAAE,IAAI,IAAI,iBAG9B,iCACE,aAAc,QACd,mBAAoB,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,QAClE,WAAY,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,QAG5D,gCACE,MAAO,QACP,aAAc,QACd,iBAAkB,QAGpB,oCACE,MAAO,QAMT,uBAEA,8BAJA,4BADA,yBAEA,oBAEA,2BAGA,4BAEA,mCAHA,yBAEA,gCAEE,MAAO,QAGT,2BACE,aAAc,QACd,mBAAoB,MAAM,EAAE,IAAI,IAAI,iBACpC,WAAY,MAAM,EAAE,IAAI,IAAI,iBAG9B,iCACE,aAAc,QACd,mBAAoB,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,QAClE,WAAY,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,QAG5D,gCACE,MAAO,QACP,aAAc,QACd,iBAAkB,QAGpB,oCACE,MAAO,QAMT,qBAEA,4BAJA,0BADA,uBAEA,kBAEA,yBAGA,0BAEA,iCAHA,uBAEA,8BAEE,MAAO,KAGT,yBACE,aAAc,KACd,mBAAoB,MAAM,EAAE,IAAI,IAAI,iBACpC,WAAY,MAAM,EAAE,IAAI,IAAI,iBAG9B,+BACE,aAAc,KACd,mBAAoB,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,KAClE,WAAY,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,KAG5D,8BACE,MAAO,KACP,aAAc,KACd,iBAAkB,QAGpB,kCACE,MAAO,KAGT,2CACE,IAAK,KAGkyD,0GAAvpC,mHAAkP,qHAAttB,mHAAkP,qHAAitB,8GAAwO,gHAA8qB,0GAAnc,iHAAspB,iGAAhiB,0GAAhqC,mHAAgP,qHAAptB,mHAAgP,qHAAwtB,8GAAsO,gHAAorB,0GAA1c,iHAAwqB,iGAAtnE,mDACE,IAAK,EAGP,YACE,QAAS,MACT,WAAY,IACZ,cAAe,KACf,MAAO,QAGT,yBACE,yBACE,QAAS,aACT,cAAe,EACf,eAAgB,OAElB,2BACE,QAAS,aACT,MAAO,KACP,eAAgB,OAElB,kCACE,QAAS,aAEX,0BACE,QAAS,aACT,eAAgB,OAIlB,wCAFA,6CACA,2CAEE,MAAO,KAET,wCACE,MAAO,KAET,4BACE,cAAe,EACf,eAAgB,OAGlB,uBADA,oBAEE,QAAS,aACT,WAAY,EACZ,cAAe,EACf,eAAgB,OAGlB,6BADA,0BAEE,aAAc,EAGhB,4CADA,sCAEE,SAAU,SACV,YAAa,EAEf,kDACE,IAAK,GAKT,2BAEA,kCAHA,wBAEA,+BAEE,WAAY,EACZ,cAAe,EACf,YAAa,IAIf,2BADA,wBAEE,WAAY,KAGd,6BACE,YAAa,MACb,aAAc,MAGqB,mCAArC,oCACE,QAAS,IACT,QAAS,MAGX,mCACE,MAAO,KAGT,yBACE,gCACE,WAAY,MACZ,cAAe,EACf,YAAa,KAIjB,sDACE,MAAO,KAGT,yBACE,+CACE,YAAa,IACb,UAAW,MAIf,yBACE,+CACE,YAAa,IACb,UAAW,MAIf,KACE,QAAS,aACT,cAAe,EACf,YAAa,IACb,WAAY,OACZ,eAAgB,OAChB,aAAc,aACd,OAAQ,QACR,iBAAkB,KAClB,OAAQ,IAAI,MAAM,YAClB,YAAa,OACb,QAAS,IAAI,IACb,UAAW,KACX,YAAa,WACb,cAAe,IACf,oBAAqB,KACrB,iBAAkB,KAClB,gBAAiB,KACjB,YAAa,KAGkE,kBAAnB,kBAAlD,WAA+B,kBAAnB,kBAAxB,WACE,QAAS,IAAI,KAAK,yBAClB,eAAgB,KAGM,WAAZ,WAAZ,WACE,MAAO,QACP,gBAAiB,KAGN,YAAb,YACE,QAAS,EACT,iBAAkB,KAClB,mBAAoB,MAAM,EAAE,IAAI,IAAI,iBACpC,WAAY,MAAM,EAAE,IAAI,IAAI,iBAG9B,cAAe,eACf,wBACE,OAAQ,YACR,QAAS,IAET,mBAAoB,KACpB,WAAY,KAGd,eACA,yBACE,eAAgB,KAGlB,aACE,MAAO,QACP,iBAAkB,QAClB,aAAc,KAGI,mBAApB,mBACE,MAAO,QACP,iBAAkB,QAClB,aAAc,QAGhB,mBACE,MAAO,QACP,iBAAkB,QAClB,aAAc,QAGK,oBAArB,oBACA,mCACE,MAAO,QACP,iBAAkB,QAClB,aAAc,QAGuH,0BAA3B,0BAA3B,0BAA3B,0BAA3B,0BAA3B,0BAGA,yCADA,yCADA,yCAGE,MAAO,QACP,iBAAkB,QAClB,aAAc,QAGK,oBAArB,oBACA,mCACE,iBAAkB,KAGsC,4BAA7B,4BAA7B,4BAAmJ,6BAA9B,6BAA9B,6BAGvF,sCADA,sCADA,sCAGE,iBAAkB,QAClB,aAAc,KAGhB,oBACE,MAAO,QACP,iBAAkB,QAGpB,aACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGI,mBAApB,mBACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,mBACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGK,oBAArB,oBACA,mCACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGuH,0BAA3B,0BAA3B,0BAA3B,0BAA3B,0BAA3B,0BAGA,yCADA,yCADA,yCAGE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGK,oBAArB,oBACA,mCACE,iBAAkB,KAGsC,4BAA7B,4BAA7B,4BAAmJ,6BAA9B,6BAA9B,6BAGvF,sCADA,sCADA,sCAGE,iBAAkB,QAClB,aAAc,QAGhB,oBACE,MAAO,QACP,iBAAkB,KAGpB,aACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGI,mBAApB,mBACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,mBACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGK,oBAArB,oBACA,mCACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGuH,0BAA3B,0BAA3B,0BAA3B,0BAA3B,0BAA3B,0BAGA,yCADA,yCADA,yCAGE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGK,oBAArB,oBACA,mCACE,iBAAkB,KAGsC,4BAA7B,4BAA7B,4BAAmJ,6BAA9B,6BAA9B,6BAGvF,sCADA,sCADA,sCAGE,iBAAkB,QAClB,aAAc,QAGhB,oBACE,MAAO,QACP,iBAAkB,KAGpB,UACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGC,gBAAjB,gBACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,gBACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGE,iBAAlB,iBACA,gCACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGwG,uBAAxB,uBAAxB,uBAAxB,uBAAxB,uBAAxB,uBAGA,sCADA,sCADA,sCAGE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGE,iBAAlB,iBACA,gCACE,iBAAkB,KAGgC,yBAA1B,yBAA1B,yBAAoI,0BAA3B,0BAA3B,0BAG9E,mCADA,mCADA,mCAGE,iBAAkB,QAClB,aAAc,QAGhB,iBACE,MAAO,QACP,iBAAkB,KAGpB,aACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGI,mBAApB,mBACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,mBACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGK,oBAArB,oBACA,mCACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGuH,0BAA3B,0BAA3B,0BAA3B,0BAA3B,0BAA3B,0BAGA,yCADA,yCADA,yCAGE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGK,oBAArB,oBACA,mCACE,iBAAkB,KAGsC,4BAA7B,4BAA7B,4BAAmJ,6BAA9B,6BAA9B,6BAGvF,sCADA,sCADA,sCAGE,iBAAkB,QAClB,aAAc,QAGhB,oBACE,MAAO,QACP,iBAAkB,KAGpB,YACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGG,kBAAnB,kBACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,kBACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGI,mBAApB,mBACA,kCACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGkH,yBAA1B,yBAA1B,yBAA1B,yBAA1B,yBAA1B,yBAGA,wCADA,wCADA,wCAGE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGI,mBAApB,mBACA,kCACE,iBAAkB,KAGoC,2BAA5B,2BAA5B,2BAA8I,4BAA7B,4BAA7B,4BAGpF,qCADA,qCADA,qCAGE,iBAAkB,QAClB,aAAc,QAGhB,mBACE,MAAO,QACP,iBAAkB,KAGpB,UACE,MAAO,QACP,YAAa,IACb,cAAe,EAGjB,UAA6B,iBAAlB,iBAAoC,oBAC/C,6BACE,iBAAkB,YAClB,mBAAoB,KACpB,WAAY,KAGd,UAA6C,iBAAjB,gBAAjB,gBACT,aAAc,YAGC,gBAAjB,gBACE,MAAO,QACP,gBAAiB,UACjB,iBAAkB,YAGO,0BAA3B,0BAEA,mCADA,mCAEE,MAAO,QACP,gBAAiB,KAGV,mBAAT,QACE,QAAS,IAAI,KACb,UAAW,KACX,YAAa,UACb,cAAe,IAGR,mBAAT,QACE,QAAS,IAAI,IACb,UAAW,KACX,YAAa,IACb,cAAe,IAGR,mBAAT,QACE,QAAS,IAAI,IACb,UAAW,KACX,YAAa,IACb,cAAe,IAGjB,WACE,QAAS,MACT,MAAO,KAGT,sBACE,WAAY,IAKd,6BADA,4BADA,6BAGE,MAAO,KAGT,MACE,QAAS,EACT,mBAAoB,QAAQ,KAAM,OAClC,cAAe,QAAQ,KAAM,OAC7B,WAAY,QAAQ,KAAM,OAG5B,SACE,QAAS,EAGX,UACE,QAAS,KAGX,aACE,QAAS,MAGX,eACE,QAAS,UAGX,kBACE,QAAS,gBAGX,YACE,SAAU,SACV,OAAQ,EACR,SAAU,OACV,4BAA6B,MAAM,CAAE,WACrC,oBAAqB,MAAM,CAAE,WAC7B,4BAA6B,KAC7B,oBAAqB,KACrB,mCAAoC,KACpC,2BAA4B,KAG9B,OACE,QAAS,aACT,MAAO,EACP,OAAQ,EACR,YAAa,IACb,eAAgB,OAChB,WAAY,EAAE,OAEd,aAAc,EAAE,MAAM,YACtB,YAAa,EAAE,MAAM,YAIvB,UADA,QAEE,SAAU,SAGZ,uBACE,QAAS,EAGX,eACE,SAAU,SACV,IAAK,KACL,KAAM,EACN,QAAS,KACT,QAAS,KACT,MAAO,KACP,UAAW,MACX,QAAS,IAAI,EACb,OAAQ,IAAI,EAAE,EACd,WAAY,KACZ,UAAW,KACX,WAAY,KACZ,iBAAkB,KAClB,OAAQ,IAAI,MAAM,KAClB,OAAQ,IAAI,MAAM,KAClB,cAAe,IACf,mBAAoB,EAAE,IAAI,KAAK,iBAC/B,WAAY,EAAE,IAAI,KAAK,iBACvB,gBAAiB,YAGnB,0BACE,MAAO,EACP,KAAM,KAGR,wBACE,iBAAkB,QAClB,OAAQ,IACR,OAAQ,IAAI,IACZ,SAAU,OAGZ,oBACE,QAAS,MACT,QAAS,IAAI,KACb,MAAO,KACP,YAAa,IACb,YAAa,WACb,MAAO,QACP,YAAa,OAGgB,0BAA/B,0BACE,gBAAiB,KACjB,MAAO,QACP,iBAAkB,QAGpB,yBAAkE,+BAApC,+BAC5B,MAAO,KACP,gBAAiB,KACjB,QAAS,EACT,iBAAkB,QAGpB,2BAAsE,iCAAtC,iCAC9B,MAAO,QAG6B,iCAAtC,iCACE,gBAAiB,KACjB,iBAAkB,YAClB,iBAAkB,KAElB,OAAQ,YAGV,qBACE,QAAS,MAGX,QACE,QAAS,EAGX,qBACE,KAAM,KACN,MAAO,EAGT,oBACE,KAAM,EACN,MAAO,KAGT,iBACE,QAAS,MACT,QAAS,IAAI,KACb,UAAW,KACX,YAAa,WACb,MAAO,QACP,YAAa,OAGf,mBACE,SAAU,MACV,KAAM,EACN,MAAO,EACP,OAAQ,EACR,IAAK,EACL,QAAS,IAGX,2BACE,MAAO,EACP,KAAM,KAGR,eACA,sCACE,WAAY,EACZ,cAAe,EAAE,OAEjB,QAAS,GAGX,uBACA,8CACE,IAAK,KACL,OAAQ,KACR,cAAe,IAGjB,yBACE,6BACE,MAAO,EACP,KAAM,KAER,kCACE,KAAM,EACN,MAAO,MAIX,WACA,oBACE,SAAU,SACV,QAAS,aACT,eAAgB,OAIlB,yBADA,gBAEE,SAAU,SACV,MAAO,KAOT,gCADA,gCADA,+BADA,+BAD4E,uBAA1B,uBAAzB,sBAAzB,sBAKE,QAAS,EAGX,qBACA,2BACA,2BACA,iCACE,YAAa,KAGf,aACE,YAAa,KAGM,mBAArB,oBACE,QAAS,IACT,QAAS,MAGX,mBACE,MAAO,KAGT,kBACA,wBACA,0BACE,MAAO,KAGT,kBACA,wBACA,0BACE,YAAa,IAGf,yEACE,cAAe,EAGjB,4BACE,YAAa,EAGf,mEACE,2BAA4B,EAC5B,wBAAyB,EAG3B,6CACA,8CACE,0BAA2B,EAC3B,uBAAwB,EAG1B,sBACE,MAAO,KAGT,8DACE,cAAe,EAGjB,mEACA,oEACE,2BAA4B,EAC5B,wBAAyB,EAG3B,oEACE,0BAA2B,EAC3B,uBAAwB,EAG1B,mCACA,iCACE,QAAS,EAGX,iCACE,aAAc,IACd,cAAe,IAGwB,8CAAzC,oCACE,aAAc,KACd,cAAe,KAGjB,iCACE,mBAAoB,MAAM,EAAE,IAAI,IAAI,iBACpC,WAAY,MAAM,EAAE,IAAI,IAAI,iBAG9B,0CACE,mBAAoB,KACpB,WAAY,KAGd,YACE,YAAa,EAGC,0BAAhB,eACE,aAAc,EAAE,EAAE,EAClB,oBAAqB,EAGC,kCAAxB,uBACE,aAAc,EAAE,EAAE,EAGpB,yBACA,+BACA,oCACE,QAAS,MACT,MAAO,KACP,MAAO,KACP,UAAW,KAG4B,qCAAzC,sCACE,QAAS,IACT,QAAS,MAGX,qCACE,MAAO,KAGT,oCACE,MAAO,KAGT,8BACA,oCACA,oCACA,0CACE,WAAY,KACZ,YAAa,EAGf,4DACE,cAAe,EAGjB,sDACE,wBAAyB,IACzB,uBAAwB,IACxB,2BAA4B,EAC5B,0BAA2B,EAG7B,sDACE,wBAAyB,EACzB,uBAAwB,EACxB,2BAA4B,IAC5B,0BAA2B,IAG7B,uEACE,cAAe,EAGjB,4EACA,6EACE,2BAA4B,EAC5B,0BAA2B,EAG7B,6EACE,wBAAyB,EACzB,uBAAwB,EAG1B,qBACE,QAAS,MACT,MAAO,KACP,aAAc,MACd,gBAAiB,SAGnB,0BACA,gCACE,MAAO,KACP,QAAS,WACT,MAAO,GAGT,qCACE,MAAO,KAGT,+CACE,KAAM,KAIR,gDADA,6CAGA,2DADA,wDAEE,SAAU,SACV,KAAM,cACN,eAAgB,KAGlB,aACE,SAAU,SACV,QAAS,MACT,gBAAiB,SAGnB,0BACE,MAAO,KACP,aAAc,EACd,cAAe,EAGjB,2BACE,SAAU,SACV,QAAS,EACT,MAAO,KACP,MAAO,KACP,cAAe,EAGjB,iCACE,QAAS,EAKX,2BAFA,mBACA,iBAEE,QAAS,WAKX,8DAFA,sDACA,oDAEE,cAAe,EAGjB,mBACA,iBACE,MAAO,GACP,YAAa,OACb,eAAgB,OAGlB,mBACE,QAAS,IAAI,IACb,UAAW,KACX,YAAa,IACb,YAAa,EACb,MAAO,QACP,WAAY,OACZ,iBAAkB,QAClB,OAAQ,IAAI,MAAM,KAClB,cAAe,IAGjB,4BACA,mCACA,wDACE,QAAS,IAAI,IACb,UAAW,KACX,cAAe,IAGjB,4BACA,mCACA,wDACE,QAAS,IAAI,KACb,UAAW,KACX,cAAe,IAIjB,wCADA,qCAEE,WAAY,EAGd,uCACA,+BACA,kCACA,6CACA,8CAEA,6DADA,wEAEE,2BAA4B,EAC5B,wBAAyB,EAG3B,+BACE,aAAc,EAGhB,sCACA,8BAKA,+DADA,oDAHA,iCACA,4CACA,6CAGE,0BAA2B,EAC3B,uBAAwB,EAG1B,8BACE,YAAa,EAGf,iBACE,SAAU,SACV,UAAW,EACX,YAAa,OAGf,sBACE,SAAU,SAGZ,2BACE,YAAa,KAG+C,6BAA/B,4BAA/B,4BACE,QAAS,EAGX,kCACA,wCACE,aAAc,KAGhB,iCACA,uCACE,QAAS,EACT,YAAa,KAGf,KACE,cAAe,EACf,aAAc,EACd,WAAY,KAGD,WAAb,YACE,QAAS,IACT,QAAS,MAGX,WACE,MAAO,KAGT,QACE,SAAU,SACV,QAAS,MAGX,UACE,SAAU,SACV,QAAS,MACT,QAAS,KAAK,KAGK,gBAArB,gBACE,gBAAiB,KACjB,iBAAkB,QAGpB,mBACE,MAAO,QAGqB,yBAA9B,yBACE,MAAO,QACP,gBAAiB,KACjB,iBAAkB,YAClB,OAAQ,YAGV,aAAsC,mBAAtB,mBACd,iBAAkB,QAClB,aAAc,QAGhB,kBACE,iBAAkB,QAClB,OAAQ,IACR,OAAQ,IAAI,IACZ,SAAU,OAGZ,cACE,UAAW,KAGb,UACE,cAAe,IAAI,MAAM,QAG3B,aACE,MAAO,KACP,cAAe,KAGjB,eACE,aAAc,IACd,YAAa,WACb,OAAQ,IAAI,MAAM,YAClB,cAAe,IAAI,IAAI,EAAE,EAG3B,qBACE,aAAc,YAAY,YAAY,QAGxC,sBAA4D,4BAAjC,4BACzB,MAAO,QACP,iBAAkB,KAClB,OAAQ,IAAI,MAAM,KAClB,oBAAqB,YACrB,OAAQ,QAGV,cACE,MAAO,KAGT,gBACE,cAAe,IAGjB,iBACE,YAAa,IAGf,uBAA8D,6BAAlC,6BAC1B,MAAO,KACP,iBAAkB,QAGpB,gBACE,MAAO,KAGT,mBACE,WAAY,IACZ,YAAa,EAGf,eAAgB,wBACd,MAAO,KAGT,kBAAqB,2BACnB,MAAO,KAGT,oBAAyB,6BACvB,WAAY,OACZ,cAAe,IAGjB,wCACE,IAAK,KACL,KAAM,KAGR,yBACE,kBAAqB,2BACnB,QAAS,WACT,MAAO,GAET,oBAAyB,6BACvB,cAAe,GAInB,oBAAqB,wBACnB,cAAe,EAGjB,yBAA8B,6BAC5B,aAAc,EACd,cAAe,IAGjB,8BAEA,oCADA,oCADmC,kCAEM,wCADA,wCAEvC,OAAQ,IAAI,MAAM,QAGpB,yBACE,yBAA8B,6BAC5B,cAAe,IAAI,MAAM,QACzB,cAAe,IAAI,IAAI,EAAE,EAE3B,8BAEA,oCADA,oCADmC,kCAEM,wCADA,wCAEvC,oBAAqB,MAIzB,uBACE,QAAS,KAGX,qBACE,QAAS,MAGX,yBACE,WAAY,KACZ,wBAAyB,EACzB,uBAAwB,EAG1B,QACE,SAAU,SACV,WAAY,KACZ,cAAe,KACf,OAAQ,IAAI,MAAM,YAGJ,cAAhB,eACE,QAAS,IACT,QAAS,MAGX,cACE,MAAO,KAGT,yBACE,QACE,cAAe,KAII,qBAAvB,sBACE,QAAS,IACT,QAAS,MAGX,qBACE,MAAO,KAGT,yBACE,eACE,MAAO,MAIX,iBACE,WAAY,QACZ,cAAe,KACf,aAAc,KACd,WAAY,IAAI,MAAM,YACtB,WAAY,MAAM,EAAE,IAAI,EAAE,qBAC1B,2BAA4B,MAGL,uBAAzB,wBACE,QAAS,IACT,QAAS,MAGX,uBACE,MAAO,KAGT,oBACE,WAAY,KAGd,yBACE,iBACE,MAAO,KACP,WAAY,EACZ,WAAY,KAEd,0BACE,QAAS,gBACT,OAAQ,eACR,eAAgB,EAChB,SAAU,kBAEZ,oBACE,WAAY,QAId,sCAFA,mCACA,oCAEE,aAAc,EACd,cAAe,GAKnB,sCADA,mCAEE,WAAY,MAGd,4DAEE,sCADA,mCAEE,WAAY,OAOhB,kCADA,gCADA,4BADA,0BAIE,aAAc,MACd,YAAa,MAGf,yBAIE,kCADA,gCADA,4BADA,0BAIE,aAAc,EACd,YAAa,GAIjB,mBACE,QAAS,KACT,aAAc,EAAE,EAAE,IAGpB,yBACE,mBACE,cAAe,GAKnB,qBADA,kBAEE,SAAU,MACV,MAAO,EACP,KAAM,EACN,QAAS,KAGX,yBAEE,qBADA,kBAEE,cAAe,GAInB,kBACE,IAAK,EACL,aAAc,EAAE,EAAE,IAGpB,qBACE,OAAQ,EACR,cAAe,EACf,aAAc,IAAI,EAAE,EAGtB,cACE,MAAO,KACP,QAAS,KAAK,KACd,UAAW,KACX,YAAa,KACb,OAAQ,KAGW,oBAArB,oBACE,gBAAiB,KAGnB,kBACE,QAAS,MAGX,yBACE,iCACA,uCACE,YAAa,OAIjB,eACE,SAAU,SACV,MAAO,MACP,aAAc,KACd,QAAS,IAAI,KACb,WAAY,IACZ,cAAe,IACf,iBAAkB,YAClB,iBAAkB,KAClB,OAAQ,IAAI,MAAM,YAClB,cAAe,IAGjB,qBACE,QAAS,EAGX,yBACE,QAAS,MACT,MAAO,KACP,OAAQ,IACR,cAAe,IAGjB,mCACE,WAAY,IAGd,yBACE,eACE,QAAS,MAIb,YACE,OAAQ,MAAM,MAGhB,iBACE,YAAa,KACb,eAAgB,KAChB,YAAa,KAGf,yBACE,iCACE,SAAU,OACV,MAAO,KACP,MAAO,KACP,WAAY,EACZ,iBAAkB,YAClB,OAAQ,EACR,WAAY,KAGd,kDADA,sCAEE,QAAS,IAAI,KAAK,IAAI,KAExB,sCACE,YAAa,KAEkC,4CAAjD,4CACE,iBAAkB,MAItB,yBACE,YACE,MAAO,KACP,OAAQ,EAEV,eACE,MAAO,KAET,iBACE,YAAa,KACb,eAAgB,MAIpB,aACE,YAAa,MACb,aAAc,MACd,QAAS,KAAK,KACd,WAAY,IAAI,MAAM,YACtB,cAAe,IAAI,MAAM,YACzB,mBAAoB,MAAM,EAAE,IAAI,EAAE,oBAAwB,CAAE,EAAE,IAAI,EAAE,qBACpE,WAAY,MAAM,EAAE,IAAI,EAAE,oBAAwB,CAAE,EAAE,IAAI,EAAE,qBAC5D,WAAY,KACZ,cAAe,KAGjB,yBACE,yBACE,QAAS,aACT,cAAe,EACf,eAAgB,OAElB,2BACE,QAAS,aACT,MAAO,KACP,eAAgB,OAElB,kCACE,QAAS,aAEX,0BACE,QAAS,aACT,eAAgB,OAIlB,wCAFA,6CACA,2CAEE,MAAO,KAET,wCACE,MAAO,KAET,4BACE,cAAe,EACf,eAAgB,OAGlB,uBADA,oBAEE,QAAS,aACT,WAAY,EACZ,cAAe,EACf,eAAgB,OAGlB,6BADA,0BAEE,aAAc,EAGhB,4CADA,sCAEE,SAAU,SACV,YAAa,EAEf,kDACE,IAAK,GAIT,yBACE,yBACE,cAAe,IAEjB,oCACE,cAAe,GAInB,yBACE,aACE,MAAO,KACP,OAAQ,EACR,YAAa,EACb,aAAc,EACd,YAAa,EACb,eAAgB,EAChB,mBAAoB,KACpB,WAAY,MAIhB,8BACE,WAAY,EACZ,wBAAyB,EACzB,uBAAwB,EAG1B,mDACE,cAAe,EACf,wBAAyB,IACzB,uBAAwB,IACxB,2BAA4B,EAC5B,0BAA2B,EAG7B,YACE,WAAY,KACZ,cAAe,KAGG,8BAApB,mBACE,WAAY,KACZ,cAAe,KAGG,8BAApB,mBACE,WAAY,KACZ,cAAe,KAGjB,aACE,WAAY,KACZ,cAAe,KAGjB,yBACE,aACE,MAAO,KACP,YAAa,KACb,aAAc,MAIlB,yBACE,aACE,MAAO,eAET,cACE,MAAO,gBACP,aAAc,MAEhB,4BACE,aAAc,GAIlB,gBACE,iBAAkB,QAClB,aAAc,QAGhB,8BACE,MAAO,KAG4B,oCAArC,oCACE,MAAO,QACP,iBAAkB,YAGpB,6BACE,MAAO,KAGT,iCACE,MAAO,KAGmC,uCAA5C,uCACE,MAAO,KACP,iBAAkB,YAGpB,sCAA4F,4CAAjD,4CACzC,MAAO,KACP,iBAAkB,QAGpB,wCAAgG,8CAAnD,8CAC3C,MAAO,KACP,iBAAkB,YAGpB,+BACE,aAAc,KAGsB,qCAAtC,qCACE,iBAAkB,KAGpB,yCACE,iBAAkB,KAGpB,iCACA,6BACE,aAAc,QAGhB,oCAAwF,0CAA/C,0CACvC,iBAAkB,QAClB,MAAO,KAGT,yBACE,sDACE,MAAO,KAEwD,4DAAjE,4DACE,MAAO,KACP,iBAAkB,YAEpB,2DAAsI,iEAAtE,iEAC9D,MAAO,KACP,iBAAkB,QAEpB,6DAA0I,mEAAxE,mEAChE,MAAO,KACP,iBAAkB,aAItB,6BACE,MAAO,KAGT,mCACE,MAAO,KAGT,0BACE,MAAO,KAGwB,gCAAjC,gCACE,MAAO,KAGkC,0CAA3C,0CAEA,mDADA,mDAEE,MAAO,KAGT,gBACE,iBAAkB,KAClB,aAAc,QAGhB,8BACE,MAAO,QAG4B,oCAArC,oCACE,MAAO,KACP,iBAAkB,YAGpB,6BACE,MAAO,QAGT,iCACE,MAAO,QAGmC,uCAA5C,uCACE,MAAO,KACP,iBAAkB,YAGpB,sCAA4F,4CAAjD,4CACzC,MAAO,KACP,iBAAkB,QAGpB,wCAAgG,8CAAnD,8CAC3C,MAAO,KACP,iBAAkB,YAGpB,+BACE,aAAc,KAGsB,qCAAtC,qCACE,iBAAkB,KAGpB,yCACE,iBAAkB,KAGpB,iCACA,6BACE,aAAc,QAGhB,oCAAwF,0CAA/C,0CACvC,iBAAkB,QAClB,MAAO,KAGT,yBACE,kEACE,aAAc,QAEhB,0DACE,iBAAkB,QAEpB,sDACE,MAAO,QAEwD,4DAAjE,4DACE,MAAO,KACP,iBAAkB,YAEpB,2DAAsI,iEAAtE,iEAC9D,MAAO,KACP,iBAAkB,QAEpB,6DAA0I,mEAAxE,mEAChE,MAAO,KACP,iBAAkB,aAItB,6BACE,MAAO,QAGT,mCACE,MAAO,KAGT,0BACE,MAAO,QAGwB,gCAAjC,gCACE,MAAO,KAGkC,0CAA3C,0CAEA,mDADA,mDAEE,MAAO,KAGT,YACE,QAAS,IAAI,KACb,cAAe,KACf,WAAY,KACZ,iBAAkB,YAClB,cAAe,IAGjB,eACE,QAAS,aAGX,yBACE,QAAS,KACT,QAAS,EAAE,IACX,MAAO,QAGT,oBACE,MAAO,QAGT,YACE,QAAS,aACT,aAAc,EACd,OAAQ,KAAK,EACb,cAAe,IAGjB,eACE,QAAS,OAGX,iBACA,oBACE,SAAU,SACV,MAAO,KACP,QAAS,IAAI,IACb,YAAa,WACb,gBAAiB,KACjB,MAAO,QACP,iBAAkB,QAClB,OAAQ,IAAI,MAAM,KAClB,YAAa,KAGf,6BACA,gCACE,YAAa,EACb,0BAA2B,IAC3B,uBAAwB,IAG1B,4BACA,+BACE,2BAA4B,IAC5B,wBAAyB,IAGC,uBAA5B,uBAEA,0BADA,0BAEE,QAAS,EACT,MAAO,QACP,iBAAkB,QAClB,aAAc,KAGhB,sBAA4D,4BAAjC,4BAC3B,yBAEA,+BADA,+BAEE,QAAS,EACT,MAAO,KACP,iBAAkB,QAClB,aAAc,QACd,OAAQ,QAMV,wBAEA,8BADA,8BAJA,2BAEA,iCADA,iCAKE,MAAO,QACP,iBAAkB,KAClB,aAAc,KACd,OAAQ,YAGV,oBACA,uBACE,QAAS,IAAI,KACb,UAAW,KACX,YAAa,UAGf,gCACA,mCACE,0BAA2B,IAC3B,uBAAwB,IAG1B,+BACA,kCACE,2BAA4B,IAC5B,wBAAyB,IAG3B,oBACA,uBACE,QAAS,IAAI,IACb,UAAW,KACX,YAAa,IAGf,gCACA,mCACE,0BAA2B,IAC3B,uBAAwB,IAG1B,+BACA,kCACE,2BAA4B,IAC5B,wBAAyB,IAG3B,OACE,aAAc,EACd,OAAQ,KAAK,EACb,WAAY,KACZ,WAAY,OAGC,aAAf,cACE,QAAS,IACT,QAAS,MAGX,aACE,MAAO,KAGT,UACE,QAAS,OAGX,YACA,eACE,QAAS,aACT,QAAS,IAAI,KACb,iBAAkB,QAClB,OAAQ,IAAI,MAAM,KAClB,cAAe,EAIjB,kBADA,kBAEE,gBAAiB,KACjB,iBAAkB,QAGpB,eACA,kBACE,MAAO,MAGT,mBACA,sBACE,MAAO,KAGT,mBAEA,yBADA,yBAEA,sBACE,MAAO,QACP,iBAAkB,QAClB,OAAQ,YAGV,OACE,QAAS,OACT,QAAS,KAAK,KAAK,KACnB,UAAW,IACX,YAAa,IACb,YAAa,EACb,MAAO,KACP,WAAY,OACZ,YAAa,OACb,eAAgB,SAChB,cAAe,MAGjB,aACE,QAAS,KAGX,YACE,SAAU,SACV,IAAK,KAGQ,cAAf,cACE,MAAO,KACP,gBAAiB,KACjB,OAAQ,QAGV,eACE,iBAAkB,QAGQ,2BAA5B,2BACE,iBAAkB,QAGpB,eACE,iBAAkB,QAGQ,2BAA5B,2BACE,iBAAkB,QAGpB,eACE,iBAAkB,QAGQ,2BAA5B,2BACE,iBAAkB,QAGpB,YACE,iBAAkB,QAGK,wBAAzB,wBACE,iBAAkB,QAGpB,eACE,iBAAkB,QAGQ,2BAA5B,2BACE,iBAAkB,QAGpB,cACE,iBAAkB,KAGO,0BAA3B,0BACE,iBAAkB,KAGpB,OACE,QAAS,aACT,UAAW,KACX,QAAS,IAAI,IACb,UAAW,KACX,YAAa,IACb,MAAO,KACP,YAAa,EACb,eAAgB,OAChB,YAAa,OACb,WAAY,OACZ,iBAAkB,QAClB,cAAe,IAGjB,aACE,QAAS,KAGX,YACE,SAAU,SACV,IAAK,KAGS,0BAAhB,eAEE,IAAK,EACL,QAAS,IAAI,IAGf,+BACA,4BACE,MAAO,QACP,iBAAkB,KAGpB,wBACE,MAAO,MAGT,+BACE,aAAc,IAGhB,uBACE,YAAa,IAGA,cAAf,cACE,MAAO,KACP,gBAAiB,KACjB,OAAQ,QAGV,WACE,YAAa,KACb,eAAgB,KAChB,cAAe,KACf,MAAO,QACP,iBAAkB,QAIpB,eADA,cAEE,MAAO,QAGT,aACE,cAAe,KACf,UAAW,KACX,YAAa,IAGf,cACE,iBAAkB,QAGpB,sBACA,4BACE,cAAe,IACf,aAAc,KACd,cAAe,KAGjB,sBACE,UAAW,KAGb,oCACE,WACE,YAAa,KACb,eAAgB,KAElB,sBACA,4BACE,aAAc,KACd,cAAe,KAGjB,eADA,cAEE,UAAW,MAIf,WACE,QAAS,MACT,QAAS,IACT,cAAe,KACf,YAAa,WACb,iBAAkB,KAClB,OAAQ,IAAI,MAAM,KAClB,cAAe,IACf,mBAAoB,OAAO,IAAK,YAChC,cAAe,OAAO,IAAK,YAC3B,WAAY,OAAO,IAAK,YAI1B,iBADA,eAEE,QAAS,MACT,UAAW,KACX,OAAQ,KACR,YAAa,KACb,aAAc,KAGhB,oBACE,QAAS,IACT,MAAO,QAKT,mBADA,kBADA,kBAGE,aAAc,QAGhB,OACE,QAAS,KACT,cAAe,KACf,OAAQ,IAAI,MAAM,YAClB,cAAe,IAGjB,UACE,WAAY,EACZ,MAAO,QAGT,mBACE,YAAa,IAGf,SACA,UACE,cAAe,EAGjB,WACE,WAAY,IAGd,mBACA,mBACE,cAAe,KAGjB,0BACA,0BACE,SAAU,SACV,IAAK,KACL,MAAO,MACP,MAAO,QAGT,eACE,iBAAkB,QAClB,aAAc,QACd,MAAO,QAGT,kBACE,iBAAkB,QAGpB,2BACE,MAAO,QAGT,YACE,iBAAkB,QAClB,aAAc,QACd,MAAO,QAGT,eACE,iBAAkB,QAGpB,wBACE,MAAO,QAGT,eACE,iBAAkB,QAClB,aAAc,QACd,MAAO,QAGT,kBACE,iBAAkB,QAGpB,2BACE,MAAO,QAGT,cACE,iBAAkB,QAClB,aAAc,KACd,MAAO,QAGT,iBACE,iBAAkB,QAGpB,0BACE,MAAO,QAGT,wCACE,KACE,oBAAqB,KAAK,EAE5B,GACE,oBAAqB,EAAE,GAI3B,gCACE,KACE,oBAAqB,KAAK,EAE5B,GACE,oBAAqB,EAAE,GAI3B,UACE,SAAU,OACV,OAAQ,KACR,cAAe,KACf,iBAAkB,QAClB,cAAe,IACf,mBAAoB,MAAM,EAAE,IAAI,IAAI,eACpC,WAAY,MAAM,EAAE,IAAI,IAAI,eAG9B,cACE,MAAO,KACP,MAAO,GACP,OAAQ,KACR,UAAW,KACX,YAAa,KACb,MAAO,KACP,WAAY,OACZ,iBAAkB,QAClB,mBAAoB,MAAM,EAAE,KAAK,EAAE,gBACnC,WAAY,MAAM,EAAE,KAAK,EAAE,gBAC3B,mBAAoB,MAAM,IAAK,KAC/B,cAAe,MAAM,IAAK,KAC1B,WAAY,MAAM,IAAK,KAIzB,sBADA,gCAEE,iBAAkB,gOAClB,gBAAiB,KAAK,KAIxB,qBADA,+BAEE,kBAAmB,qBAAqB,GAAG,OAAO,SAClD,aAAc,qBAAqB,GAAG,OAAO,SAC7C,UAAW,qBAAqB,GAAG,OAAO,SAG5C,sBACE,iBAAkB,QAGpB,wCACE,iBAAkB,gOAGpB,mBACE,iBAAkB,QAGpB,qCACE,iBAAkB,gOAGpB,sBACE,iBAAkB,QAGpB,wCACE,iBAAkB,gOAGpB,qBACE,iBAAkB,KAGpB,uCACE,iBAAkB,gOAGpB,OACE,WAAY,KAGd,mBACE,WAAY,EAGd,OACA,YACE,KAAM,EACN,SAAU,OAGZ,YACE,MAAO,QAGT,cACE,QAAS,MAGX,4BACE,UAAW,KAGb,aACA,mBACE,aAAc,KAGhB,YACA,kBACE,cAAe,KAKjB,YAFA,YACA,aAEE,QAAS,WACT,eAAgB,IAGlB,cACE,eAAgB,OAGlB,cACE,eAAgB,OAGlB,eACE,WAAY,EACZ,cAAe,IAGjB,YACE,aAAc,EACd,WAAY,KAGd,YACE,cAAe,KACf,aAAc,EAGhB,iBACE,SAAU,SACV,QAAS,MACT,QAAS,KAAK,KACd,cAAe,KACf,iBAAkB,KAClB,OAAQ,IAAI,MAAM,QAGpB,6BACE,wBAAyB,EACzB,uBAAwB,EAG1B,4BACE,cAAe,EACf,2BAA4B,EAC5B,0BAA2B,EAG7B,kBACA,uBACE,MAAO,KAGT,2CACA,gDACE,MAAO,KAGgB,wBAAzB,wBAEA,6BADA,6BAEE,gBAAiB,KACjB,MAAO,KACP,iBAAkB,QAGpB,uBACE,MAAO,KACP,WAAY,KAGd,0BAA4D,gCAAjC,gCACzB,iBAAkB,QAClB,MAAO,QACP,OAAQ,YAGV,mDAA8G,yDAA1D,yDAClD,MAAO,QAGT,gDAAwG,sDAAvD,sDAC/C,MAAO,QAGT,wBAAwD,8BAA/B,8BACvB,QAAS,EACT,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,iDAEA,wDADA,uDAGiE,uDAEjE,8DADA,6DAH2D,uDAE3D,8DADA,6DAIE,MAAO,QAGT,8CAAoG,oDAArD,oDAC7C,MAAO,QAGT,yBACE,MAAO,QACP,iBAAkB,QAGpB,0BACA,+BACE,MAAO,QAGT,mDACA,wDACE,MAAO,QAGwB,gCAAjC,gCAEA,qCADA,qCAEE,MAAO,QACP,iBAAkB,QAGpB,iCAA0E,uCAAxC,uCAClC,sCAEA,4CADA,4CAEE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,sBACE,MAAO,QACP,iBAAkB,QAGpB,uBACA,4BACE,MAAO,QAGT,gDACA,qDACE,MAAO,QAGqB,6BAA9B,6BAEA,kCADA,kCAEE,MAAO,QACP,iBAAkB,QAGpB,8BAAoE,oCAArC,oCAC/B,mCAEA,yCADA,yCAEE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,yBACE,MAAO,QACP,iBAAkB,QAGpB,0BACA,+BACE,MAAO,QAGT,mDACA,wDACE,MAAO,QAGwB,gCAAjC,gCAEA,qCADA,qCAEE,MAAO,QACP,iBAAkB,QAGpB,iCAA0E,uCAAxC,uCAClC,sCAEA,4CADA,4CAEE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,wBACE,MAAO,KACP,iBAAkB,QAGpB,yBACA,8BACE,MAAO,KAGT,kDACA,uDACE,MAAO,QAGuB,+BAAhC,+BAEA,oCADA,oCAEE,MAAO,KACP,iBAAkB,QAGpB,gCAAwE,sCAAvC,sCACjC,qCAEA,2CADA,2CAEE,MAAO,KACP,iBAAkB,KAClB,aAAc,KAGhB,yBACE,WAAY,EACZ,cAAe,IAGjB,sBACE,cAAe,EACf,YAAa,IAGf,OACE,cAAe,KACf,iBAAkB,KAClB,OAAQ,IAAI,MAAM,YAClB,cAAe,IACf,mBAAoB,EAAE,IAAI,IAAI,gBAC9B,WAAY,EAAE,IAAI,IAAI,gBAGxB,YACE,QAAS,KAGS,kBAApB,mBACE,QAAS,IACT,QAAS,MAGX,kBACE,MAAO,KAGT,eACE,QAAS,KAAK,KACd,cAAe,IAAI,MAAM,YACzB,wBAAyB,EACzB,uBAAwB,EAG1B,0CACE,MAAO,QAGT,aACE,WAAY,EACZ,cAAe,EACf,UAAW,KACX,MAAO,QAKT,oBAEA,sBAJA,eACA,mBAEA,qBAEE,MAAO,QAGT,cACE,QAAS,KAAK,KACd,iBAAkB,QAClB,WAAY,IAAI,MAAM,QACtB,2BAA4B,EAC5B,0BAA2B,EAG7B,mBACA,mCACE,cAAe,EAGjB,oCACA,oDACE,aAAc,IAAI,EAClB,cAAe,EAGjB,4DACA,4EACE,WAAY,EACZ,wBAAyB,EACzB,uBAAwB,EAG1B,0DACA,0EACE,cAAe,EACf,2BAA4B,EAC5B,0BAA2B,EAG7B,+EACE,wBAAyB,EACzB,uBAAwB,EAG1B,wDACE,iBAAkB,EAGpB,0BACE,iBAAkB,EAKpB,8BAFA,cACA,gCAEE,cAAe,EAKjB,sCAFA,sBACA,wCAEE,aAAc,KACd,cAAe,KAIjB,wDADA,0BAEE,wBAAyB,EACzB,uBAAwB,EAM1B,yFADA,yFADA,2DADA,2DAIE,uBAAwB,EACxB,wBAAyB,EAS3B,wGACA,wGAHA,wGACA,wGAHA,0EACA,0EAHA,0EACA,0EAOE,uBAAwB,EAS1B,uGACA,uGAHA,uGACA,uGAHA,yEACA,yEAHA,yEACA,yEAOE,wBAAyB,EAI3B,sDADA,yBAEE,2BAA4B,EAC5B,0BAA2B,EAK7B,qFACA,qFAHA,wDACA,wDAGE,0BAA2B,EAC3B,2BAA4B,EAO9B,oGACA,oGACA,oGACA,oGAPA,uEACA,uEACA,uEACA,uEAKE,0BAA2B,EAO7B,mGACA,mGACA,mGACA,mGAPA,sEACA,sEACA,sEACA,sEAKE,2BAA4B,EAG9B,0BACA,qCACA,0BACA,qCACE,WAAY,IAAI,MAAM,QAIxB,kDADA,kDAEE,WAAY,EAGd,uBACA,yCACE,OAAQ,EAMV,+CADA,+CAGA,+CADA,+CAHA,+CADA,+CASA,iEADA,iEAGA,iEADA,iEAHA,iEADA,iEAME,YAAa,EAMf,8CADA,8CAGA,8CADA,8CAHA,8CADA,8CASA,gEADA,gEAGA,gEADA,gEAHA,gEADA,gEAME,aAAc,EAKhB,+CACA,+CAHA,+CACA,+CAKA,iEACA,iEAHA,iEACA,iEAGE,cAAe,EAGjB,8CACA,8CACA,8CACA,8CACA,gEACA,gEACA,gEACA,gEACE,cAAe,EAGjB,yBACE,OAAQ,EACR,cAAe,EAGjB,aACE,cAAe,KAGjB,oBACE,cAAe,EACf,cAAe,IAGjB,2BACE,WAAY,IAGd,4BACE,cAAe,EAIjB,wDADA,wDAEE,WAAY,IAAI,MAAM,QAGxB,2BACE,WAAY,EAGd,uDACE,cAAe,IAAI,MAAM,QAG3B,eACE,aAAc,KAGhB,8BACE,MAAO,QACP,iBAAkB,QAClB,aAAc,KAGhB,0DACE,iBAAkB,KAGpB,qCACE,MAAO,QACP,iBAAkB,QAGpB,yDACE,oBAAqB,KAGvB,eACE,aAAc,QAGhB,8BACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,0DACE,iBAAkB,QAGpB,qCACE,MAAO,QACP,iBAAkB,KAGpB,yDACE,oBAAqB,QAGvB,eACE,aAAc,QAGhB,8BACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,0DACE,iBAAkB,QAGpB,qCACE,MAAO,QACP,iBAAkB,KAGpB,yDACE,oBAAqB,QAGvB,YACE,aAAc,QAGhB,2BACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,uDACE,iBAAkB,QAGpB,kCACE,MAAO,QACP,iBAAkB,KAGpB,sDACE,oBAAqB,QAGvB,eACE,aAAc,QAGhB,8BACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,0DACE,iBAAkB,QAGpB,qCACE,MAAO,QACP,iBAAkB,KAGpB,yDACE,oBAAqB,QAGvB,cACE,aAAc,KAGhB,6BACE,MAAO,KACP,iBAAkB,KAClB,aAAc,KAGhB,yDACE,iBAAkB,KAGpB,oCACE,MAAO,KACP,iBAAkB,KAGpB,wDACE,oBAAqB,KAGvB,kBACE,SAAU,SACV,QAAS,MACT,OAAQ,EACR,QAAS,EACT,SAAU,OAGZ,yCAEA,wBADA,yBAEA,yBACA,wBACE,SAAU,SACV,IAAK,EACL,KAAM,EACN,OAAQ,EACR,OAAQ,KACR,MAAO,KACP,OAAQ,EAGV,wBACE,eAAgB,OAGlB,uBACE,eAAgB,IAGlB,MACE,WAAY,KACZ,QAAS,KACT,cAAe,KACf,iBAAkB,QAClB,OAAQ,IAAI,MAAM,QAClB,cAAe,IACf,mBAAoB,MAAM,EAAE,IAAI,IAAI,gBACpC,WAAY,MAAM,EAAE,IAAI,IAAI,gBAG9B,iBACE,aAAc,KACd,aAAc,gBAGhB,SACE,QAAS,KACT,cAAe,IAGjB,SACE,QAAS,IACT,cAAe,IAGjB,OACE,MAAO,MACP,UAAW,KACX,YAAa,IACb,YAAa,EACb,MAAO,KACP,YAAa,EAAE,IAAI,EAAE,KACrB,QAAS,GAIG,aAAd,aACE,MAAO,KACP,gBAAiB,KACjB,OAAQ,QACR,QAAS,GAIX,aACE,QAAS,EACT,OAAQ,QACR,WAAY,IACZ,OAAQ,EACR,mBAAoB,KAGtB,YACE,SAAU,OAGZ,OACE,QAAS,KACT,SAAU,OACV,SAAU,MACV,IAAK,EACL,MAAO,EACP,OAAQ,EACR,KAAM,EACN,QAAS,KACT,2BAA4B,MAC5B,QAAS,EAGX,0BACE,kBAAmB,kBACnB,cAAe,kBACf,aAAc,kBACd,UAAW,kBACX,mBAAoB,kBAAkB,IAAK,SAC3C,gBAAiB,eAAe,IAAK,SACrC,cAAe,aAAa,IAAK,SACjC,WAAY,UAAU,IAAK,SAG7B,wBACE,kBAAmB,eACnB,cAAe,eACf,aAAc,eACd,UAAW,eAGb,mBACE,WAAY,OACZ,WAAY,KAGd,cACE,SAAU,SACV,MAAO,KACP,OAAQ,KAGV,eACE,SAAU,SACV,iBAAkB,KAClB,OAAQ,IAAI,MAAM,KAClB,OAAQ,IAAI,MAAM,eAClB,cAAe,IACf,mBAAoB,EAAE,IAAI,IAAI,eAC9B,WAAY,EAAE,IAAI,IAAI,eACtB,gBAAiB,YACjB,QAAS,EAGX,gBACE,SAAU,MACV,IAAK,EACL,MAAO,EACP,OAAQ,EACR,KAAM,EACN,QAAS,KACT,iBAAkB,KAGpB,qBACE,QAAS,EAIX,mBACE,QAAS,GAIX,cACE,QAAS,KACT,cAAe,IAAI,MAAM,QAGL,oBAAtB,qBACE,QAAS,IACT,QAAS,MAGX,oBACE,MAAO,KAGT,qBACE,WAAY,KAGd,aACE,OAAQ,EACR,YAAa,WAGf,YACE,SAAU,SACV,QAAS,KAGX,cACE,QAAS,KACT,WAAY,MACZ,WAAY,IAAI,MAAM,QAGF,oBAAtB,qBACE,QAAS,IACT,QAAS,MAGX,oBACE,MAAO,KAGT,wBACE,YAAa,IACb,cAAe,EAGjB,mCACE,YAAa,KAGf,oCACE,YAAa,EAGf,yBACE,SAAU,SACV,IAAK,QACL,MAAO,KACP,OAAQ,KACR,SAAU,OAGZ,yBACE,cACE,MAAO,MACP,OAAQ,KAAK,KAEf,eACE,mBAAoB,EAAE,IAAI,KAAK,eAC/B,WAAY,EAAE,IAAI,KAAK,eAEzB,UACE,MAAO,OAIX,yBACE,UACE,MAAO,OAIX,SACE,SAAU,SACV,QAAS,KACT,QAAS,MACT,YAAa,WAAW,CAAE,SAAS,CAAE,KAAK,CAAE,WAC5C,WAAY,OACZ,YAAa,IACb,eAAgB,OAChB,WAAY,KACZ,YAAa,WACb,WAAY,KACZ,WAAY,MACZ,gBAAiB,KACjB,YAAa,KACb,eAAgB,KAChB,YAAa,OACb,WAAY,OACZ,aAAc,OACd,UAAW,OACX,UAAW,KACX,QAAS,EAIX,YACE,QAAS,GAIX,aACE,WAAY,KACZ,QAAS,IAAI,EAGf,eACE,YAAa,IACb,QAAS,EAAE,IAGb,gBACE,WAAY,IACZ,QAAS,IAAI,EAGf,cACE,YAAa,KACb,QAAS,EAAE,IAGb,eACE,UAAW,MACX,QAAS,IAAI,IACb,MAAO,KACP,WAAY,OACZ,iBAAkB,QAClB,cAAe,IAGjB,eACE,SAAU,SACV,MAAO,EACP,OAAQ,EACR,aAAc,YACd,aAAc,MAGhB,4BACE,OAAQ,EACR,KAAM,IACN,YAAa,KACb,aAAc,IAAI,IAAI,EACtB,iBAAkB,QAGpB,iCACE,OAAQ,EACR,MAAO,IACP,cAAe,KACf,aAAc,IAAI,IAAI,EACtB,iBAAkB,QAGpB,kCACE,OAAQ,EACR,KAAM,IACN,cAAe,KACf,aAAc,IAAI,IAAI,EACtB,iBAAkB,QAGpB,8BACE,IAAK,IACL,KAAM,EACN,WAAY,KACZ,aAAc,IAAI,IAAI,IAAI,EAC1B,mBAAoB,QAGtB,6BACE,IAAK,IACL,MAAO,EACP,WAAY,KACZ,aAAc,IAAI,EAAE,IAAI,IACxB,kBAAmB,QAGrB,+BACE,IAAK,EACL,KAAM,IACN,YAAa,KACb,aAAc,EAAE,IAAI,IACpB,oBAAqB,QAGvB,oCACE,IAAK,EACL,MAAO,IACP,WAAY,KACZ,aAAc,EAAE,IAAI,IACpB,oBAAqB,QAGvB,qCACE,IAAK,EACL,KAAM,IACN,WAAY,KACZ,aAAc,EAAE,IAAI,IACpB,oBAAqB,QAGvB,SACE,SAAU,SACV,IAAK,EACL,KAAM,EACN,QAAS,KACT,QAAS,KACT,UAAW,MACX,QAAS,IACT,YAAa,WAAW,CAAE,SAAS,CAAE,KAAK,CAAE,WAC5C,WAAY,OACZ,YAAa,IACb,eAAgB,OAChB,WAAY,KACZ,YAAa,WACb,WAAY,KACZ,WAAY,MACZ,gBAAiB,KACjB,YAAa,KACb,eAAgB,KAChB,YAAa,OACb,WAAY,OACZ,aAAc,OACd,UAAW,OACX,UAAW,KACX,iBAAkB,KAClB,gBAAiB,YACjB,OAAQ,IAAI,MAAM,KAClB,OAAQ,IAAI,MAAM,KAClB,cAAe,IACf,mBAAoB,EAAE,IAAI,KAAK,eAC/B,WAAY,EAAE,IAAI,KAAK,eAGzB,aACE,WAAY,MAGd,eACE,YAAa,KAGf,gBACE,WAAY,KAGd,cACE,YAAa,MAGf,eACE,OAAQ,EACR,QAAS,IAAI,KACb,UAAW,KACX,iBAAkB,QAClB,cAAe,IAAI,MAAM,QACzB,cAAe,EAGjB,iBACE,QAAS,IAAI,KAGf,gBAAmB,sBACjB,SAAU,SACV,QAAS,MACT,MAAO,EACP,OAAQ,EACR,aAAc,YACd,aAAc,MAGhB,gBACE,aAAc,KAGhB,sBACE,aAAc,KACd,QAAS,GAGX,oBACE,KAAM,IACN,YAAa,MACb,oBAAqB,EACrB,iBAAkB,KAClB,iBAAkB,KAClB,OAAQ,MAGV,0BACE,QAAS,IACT,OAAQ,IACR,YAAa,MACb,oBAAqB,EACrB,iBAAkB,KAGpB,sBACE,IAAK,IACL,KAAM,MACN,WAAY,MACZ,kBAAmB,EACnB,mBAAoB,KACpB,mBAAoB,KAGtB,4BACE,QAAS,IACT,KAAM,IACN,OAAQ,MACR,kBAAmB,EACnB,mBAAoB,KAGtB,uBACE,KAAM,IACN,YAAa,MACb,iBAAkB,EAClB,oBAAqB,KACrB,oBAAqB,KACrB,IAAK,MAGP,6BACE,QAAS,IACT,IAAK,IACL,YAAa,MACb,iBAAkB,EAClB,oBAAqB,KAGvB,qBACE,IAAK,IACL,MAAO,MACP,WAAY,MACZ,mBAAoB,EACpB,kBAAmB,KACnB,kBAAmB,KAGrB,2BACE,QAAS,IACT,MAAO,IACP,mBAAoB,EACpB,kBAAmB,KACnB,OAAQ,MAGV,UACE,SAAU,SAGZ,gBACE,SAAU,SACV,SAAU,OACV,MAAO,KAGT,sBACE,QAAS,KACT,SAAU,SACV,mBAAoB,IAAK,YAAY,KACrC,cAAe,IAAK,YAAY,KAChC,WAAY,IAAK,YAAY,KAI/B,4BADA,0BAEE,QAAS,MACT,UAAW,KACX,OAAQ,KACR,YAAa,EAGf,8BAA+B,uBAC7B,sBACE,mBAAoB,kBAAkB,IAAK,YAC3C,gBAAiB,eAAe,IAAK,YACrC,cAAe,aAAa,IAAK,YACjC,WAAY,UAAU,IAAK,YAC3B,4BAA6B,OAC7B,yBAA0B,OAC1B,oBAAqB,OACrB,oBAAqB,OACrB,iBAAkB,OAClB,YAAa,OAEe,mCAA9B,2BACE,kBAAmB,sBACnB,UAAW,sBACX,KAAM,EAEsB,kCAA9B,2BACE,kBAAmB,uBACnB,UAAW,uBACX,KAAM,EAE+D,6BAAvE,gCAAmC,iCACjC,kBAAmB,mBACnB,UAAW,mBACX,KAAM,GAIV,wBACA,sBACA,sBACE,QAAS,MAGX,wBACE,KAAM,EAGR,sBACA,sBACE,SAAU,SACV,IAAK,EACL,MAAO,KAGT,sBACE,KAAM,KAGR,sBACE,KAAM,MAGR,2BACA,4BACE,KAAM,EAGR,6BACE,KAAM,MAGR,8BACE,KAAM,KAGR,kBACE,SAAU,SACV,IAAK,EACL,KAAM,EACN,OAAQ,EACR,MAAO,IACP,QAAS,GAET,UAAW,KACX,MAAO,KACP,WAAY,OACZ,YAAa,EAAE,IAAI,IAAI,eACvB,iBAAkB,YAGpB,uBACE,iBAAkB,sEAClB,iBAAkB,iEAClB,iBAAkB,kEAClB,kBAAmB,SAIrB,wBACE,KAAM,KACN,MAAO,EACP,iBAAkB,sEAClB,iBAAkB,iEAClB,iBAAkB,kEAClB,kBAAmB,SAII,wBAAzB,wBACE,QAAS,EACT,MAAO,KACP,gBAAiB,KACjB,QAAS,GAMX,0CACA,2CAFA,6BADA,6BAIE,SAAU,SACV,IAAK,IACL,WAAY,MACZ,QAAS,EACT,QAAS,aAIX,0CADA,6BAEE,KAAM,IACN,YAAa,MAIf,2CADA,6BAEE,MAAO,IACP,aAAc,MAIhB,6BADA,6BAEE,MAAO,KACP,OAAQ,KACR,YAAa,EACb,YAAa,MAGf,oCACE,QAAS,QAGX,oCACE,QAAS,QAGX,qBACE,SAAU,SACV,OAAQ,KACR,KAAM,IACN,QAAS,GACT,MAAO,IACP,YAAa,KACb,aAAc,EACd,WAAY,KACZ,WAAY,OAGd,wBACE,QAAS,aACT,MAAO,KACP,OAAQ,KACR,OAAQ,IACR,YAAa,OACb,OAAQ,IAAI,MAAM,KAClB,cAAe,KACf,OAAQ,QAER,iBAAkB,YAGpB,6BACE,OAAQ,EACR,MAAO,KACP,OAAQ,KACR,iBAAkB,KAGpB,kBACE,SAAU,SACV,KAAM,IACN,MAAO,IACP,OAAQ,KACR,QAAS,GACT,YAAa,KACb,eAAgB,KAChB,MAAO,KACP,WAAY,OACZ,YAAa,EAAE,IAAI,IAAI,eAGzB,uBACE,YAAa,KAGf,oCACE,0CACA,2CAEA,6BADA,6BAEE,MAAO,KACP,OAAQ,KACR,WAAY,MACZ,UAAW,KAEb,0CACA,6BACE,YAAa,MAEf,2CACA,6BACE,aAAc,MAEhB,kBACE,KAAM,IACN,MAAO,IACP,eAAgB,KAElB,qBACE,OAAQ,MAIM,gBAAlB,iBACE,QAAS,IACT,QAAS,MAGX,gBACE,MAAO,KAGT,cACE,QAAS,MACT,YAAa,KACb,aAAc,KAGhB,YACE,MAAO,gBAGT,WACE,MAAO,eAGT,MACE,QAAS,eAGX,MACE,QAAS,gBAGX,WACE,WAAY,OAGd,WACE,KAAM,CAAC,CAAC,EAAE,EACV,MAAO,YACP,YAAa,KACb,iBAAkB,YAClB,OAAQ,EAGV,QACE,QAAS,eAGX,OACE,SAAU,MAGZ,cACE,MAAO,aAGT,YACE,QAAS,eAGX,YACE,QAAS,eAGX,YACE,QAAS,eAGX,YACE,QAAS,eAYX,kBACA,mBACA,yBALA,kBACA,mBACA,yBALA,kBACA,mBACA,yBALA,kBACA,mBACA,yBAUE,QAAS,eAGX,yBACE,YACE,QAAS,gBAEX,iBACE,QAAS,gBAEX,cACE,QAAS,oBAGX,cADA,cAEE,QAAS,sBAIb,yBACE,kBACE,QAAS,iBAIb,yBACE,mBACE,QAAS,kBAIb,yBACE,yBACE,QAAS,wBAIb,+CACE,YACE,QAAS,gBAEX,iBACE,QAAS,gBAEX,cACE,QAAS,oBAGX,cADA,cAEE,QAAS,sBAIb,+CACE,kBACE,QAAS,iBAIb,+CACE,mBACE,QAAS,kBAIb,+CACE,yBACE,QAAS,wBAIb,gDACE,YACE,QAAS,gBAEX,iBACE,QAAS,gBAEX,cACE,QAAS,oBAGX,cADA,cAEE,QAAS,sBAIb,gDACE,kBACE,QAAS,iBAIb,gDACE,mBACE,QAAS,kBAIb,gDACE,yBACE,QAAS,wBAIb,0BACE,YACE,QAAS,gBAEX,iBACE,QAAS,gBAEX,cACE,QAAS,oBAGX,cADA,cAEE,QAAS,sBAIb,0BACE,kBACE,QAAS,iBAIb,0BACE,mBACE,QAAS,kBAIb,0BACE,yBACE,QAAS,wBAIb,yBACE,WACE,QAAS,gBAIb,+CACE,WACE,QAAS,gBAIb,gDACE,WACE,QAAS,gBAIb,0BACE,WACE,QAAS,gBAIb,eACE,QAAS,eAGX,aACE,eACE,QAAS,gBAEX,oBACE,QAAS,gBAEX,iBACE,QAAS,oBAGX,iBADA,iBAEE,QAAS,sBAIb,qBACE,QAAS,eAGX,aACE,qBACE,QAAS,iBAIb,sBACE,QAAS,eAGX,aACE,sBACE,QAAS,kBAIb,4BACE,QAAS,eAGX,aACE,4BACE,QAAS,wBAIb,aACE,cACE,QAAS,gBAIb;;;AAMA,WACE,YAAa,YACb,IAAK,8CACL,IAAK,oDAAsD,2BAA2B,CAAE,gDAAkD,eAAe,CAAE,+CAAiD,cAAc,CAAE,8CAAgD,kBAAkB,CAAE,iEAAmE,cACnW,YAAa,IACb,WAAY,OAGd,IACE,QAAS,aACT,KAAM,OAAO,OAAO,OAAO,IAAI,CAAC,EAAE,YAClC,UAAW,QACX,eAAgB,KAChB,uBAAwB,YACxB,wBAAyB,UAI3B,OACE,UAAW,eACX,YAAa,MACb,eAAgB,KAGlB,OACE,UAAW,IAGb,OACE,UAAW,IAGb,OACE,UAAW,IAGb,OACE,UAAW,IAGb,OACE,MAAO,eACP,WAAY,OAGd,OACE,aAAc,EACd,YAAa,eACb,gBAAiB,KAGnB,UACE,SAAU,SAGZ,OACE,SAAU,SACV,KAAM,gBACN,MAAO,eACP,IAAK,cACL,WAAY,OAGd,aACE,KAAM,gBAGR,WACE,QAAS,KAAK,MAAM,MACpB,OAAQ,MAAM,MAAO,KACrB,cAAe,KAGjB,cACE,MAAO,KAGT,eACE,MAAO,MAGT,iBACE,aAAc,KAGhB,kBACE,YAAa,KAIf,YACE,MAAO,MAGT,WACE,MAAO,KAGT,cACE,aAAc,KAGhB,eACE,YAAa,KAGf,SACE,kBAAmB,QAAQ,GAAG,SAAS,OACvC,UAAW,QAAQ,GAAG,SAAS,OAGjC,UACE,kBAAmB,QAAQ,GAAG,SAAS,SACvC,UAAW,QAAQ,GAAG,SAAS,SAGjC,2BACE,GACE,kBAAmB,UACnB,UAAW,UAEb,KACE,kBAAmB,eACnB,UAAW,gBAIf,mBACE,GACE,kBAAmB,UACnB,UAAW,UAEb,KACE,kBAAmB,eACnB,UAAW,gBAIf,cAEE,kBAAmB,cACnB,cAAe,cACf,UAAW,cAGb,eAEE,kBAAmB,eACnB,cAAe,eACf,UAAW,eAGb,eAEE,kBAAmB,eACnB,cAAe,eACf,UAAW,eAGb,oBAEE,kBAAmB,YACnB,cAAe,YACf,UAAW,YAGb,kBAEE,kBAAmB,YACnB,cAAe,YACf,UAAW,YAMb,0BACA,wBAHA,qBACA,qBAFA,oBAKE,OAAQ,KAGV,UACE,SAAU,SACV,QAAS,aACT,MAAO,IACP,OAAQ,IACR,YAAa,IACb,eAAgB,OAGlB,aAAc,aACZ,SAAU,SACV,KAAM,EACN,MAAO,KACP,WAAY,OAGd,aACE,YAAa,QAGf,aACE,UAAW,IAGb,YACE,MAAO,KAKT,iBACE,QAAS,IAGX,iBACE,QAAS,IAGX,kBACE,QAAS,IAGX,sBACE,QAAS,IAGX,iBACE,QAAS,IAGX,gBACE,QAAS,IAGX,kBACE,QAAS,IAGX,gBACE,QAAS,IAGX,gBACE,QAAS,IAGX,oBACE,QAAS,IAGX,cACE,QAAS,IAGX,mBACE,QAAS,IAGX,iBACE,QAAS,IAIX,iBADA,kBAEA,iBACE,QAAS,IAGX,uBACE,QAAS,IAGX,wBACE,QAAS,IAGX,qBACE,QAAS,IAGX,kBACE,QAAS,IAIX,eADA,gBAEE,QAAS,IAGX,mBACE,QAAS,IAGX,gBACE,QAAS,IAGX,kBACE,QAAS,IAGX,mBACE,QAAS,IAGX,gBACE,QAAS,IAGX,oBACE,QAAS,IAGX,+BACE,QAAS,IAGX,6BACE,QAAS,IAGX,iBACE,QAAS,IAGX,yBACE,QAAS,IAIX,kBADA,wBAEE,QAAS,IAGX,mBACE,QAAS,IAGX,oBACE,QAAS,IAGX,gBACE,QAAS,IAGX,gBACE,QAAS,IAGX,sBACE,QAAS,IAGX,sBACE,QAAS,IAGX,uBACE,QAAS,IAGX,qBACE,QAAS,IAGX,kBACE,QAAS,IAGX,mBACE,QAAS,IAGX,eACE,QAAS,IAGX,gBACE,QAAS,IAGX,gBACE,QAAS,IAGX,oBACE,QAAS,IAGX,iBACE,QAAS,IAGX,kBACE,QAAS,IAGX,gBACE,QAAS,IAGX,gBACE,QAAS,IAGX,kBACE,QAAS,IAGX,uBACE,QAAS,IAGX,sBACE,QAAS,IAGX,sBACE,QAAS,IAGX,wBACE,QAAS,IAGX,uBACE,QAAS,IAGX,yBACE,QAAS,IAGX,gBACE,QAAS,IAGX,kBACA,mBACE,QAAS,IAGX,kBACE,QAAS,IAGX,wBACE,QAAS,IAIX,iBADA,iBAEA,qBACE,QAAS,IAGX,kBACE,QAAS,IAGX,sBACE,QAAS,IAGX,kBACE,QAAS,IAGX,gBACE,QAAS,IAGX,gBACA,2BACE,QAAS,IAGX,0BACE,QAAS,IAGX,0BACE,QAAS,IAGX,kBACE,QAAS,IAGX,yBACE,QAAS,IAGX,yBACE,QAAS,IAGX,oBACE,QAAS,IAGX,gBACE,QAAS,IAGX,iBACE,QAAS,IAGX,gBACE,QAAS,IAGX,mBACE,QAAS,IAGX,wBACE,QAAS,IAGX,wBACE,QAAS,IAGX,iBACE,QAAS,IAGX,wBACE,QAAS,IAGX,yBACE,QAAS,IAGX,uBACE,QAAS,IAGX,wBACE,QAAS,IAGX,wBACE,QAAS,IAGX,wBACE,QAAS,IAGX,2BACE,QAAS,IAGX,uBACE,QAAS,IAGX,sBACE,QAAS,IAGX,0BACE,QAAS,IAGX,0BACE,QAAS,IAGX,eACE,QAAS,IAGX,sBACE,QAAS,IAGX,uBACE,QAAS,IAGX,oBACE,QAAS,IAGX,sBACE,QAAS,IAGX,wBACA,iBACE,QAAS,IAGX,kBACE,QAAS,IAGX,oBACE,QAAS,IAGX,gBACE,QAAS,IAGX,iBACE,QAAS,IAGX,oBACE,QAAS,IAGX,8BACE,QAAS,IAGX,gBACE,QAAS,IAGX,gBACE,QAAS,IAGX,gBACE,QAAS,IAGX,eACE,QAAS,IAGX,qBACE,QAAS,IAIX,gCADA,mBAEE,QAAS,IAGX,iBACE,QAAS,IAGX,oBACE,QAAS,IAGX,kBACE,QAAS,IAGX,mBACE,QAAS,IAGX,kBACE,QAAS,IAGX,sBACE,QAAS,IAGX,wBACE,QAAS,IAGX,mBACE,QAAS,IAGX,yBACE,QAAS,IAGX,kBACE,QAAS,IAGX,uBACE,QAAS,IAGX,oBACE,QAAS,IAGX,oBACE,QAAS,IAGX,uBACA,qBACE,QAAS,IAGX,0BACE,QAAS,IAGX,2BACE,QAAS,IAGX,wBACE,QAAS,IAGX,eACE,QAAS,IAIX,gBADA,iBAEE,QAAS,IAGX,oBACE,QAAS,IAGX,uBACE,QAAS,IAGX,yBACE,QAAS,IAGX,qBACE,QAAS,IAGX,mBACE,QAAS,IAGX,oBACE,QAAS,IAGX,2BACE,QAAS,IAGX,sBACE,QAAS,IAGX,yBACE,QAAS,IAGX,mBACE,QAAS,IAGX,kBACE,QAAS,IAGX,yBACE,QAAS,IAGX,kBACE,QAAS,IAGX,mBACE,QAAS,IAGX,iBACE,QAAS,IAGX,oBACE,QAAS,IAGX,sBACE,QAAS,IAGX,wBACE,QAAS,IAGX,mBACE,QAAS,IAGX,sBACA,oBACE,QAAS,IAGX,kBACE,QAAS,IAGX,kBACE,QAAS,IAGX,uBACE,QAAS,IAGX,gBACA,eACE,QAAS,IAGX,iBACE,QAAS,IAGX,oBACE,QAAS,IAGX,gBACE,QAAS,IAGX,uBACE,QAAS,IAGX,wBACE,QAAS,IAGX,uBACE,QAAS,IAGX,qBACE,QAAS,IAGX,uBACE,QAAS,IAGX,6BACE,QAAS,IAGX,8BACE,QAAS,IAGX,2BACE,QAAS,IAGX,6BACE,QAAS,IAGX,iBACE,QAAS,IAGX,kBACE,QAAS,IAGX,iBACE,QAAS,IAGX,kBACE,QAAS,IAGX,qBACE,QAAS,IAGX,sBACE,QAAS,IAGX,iBACA,iBACE,QAAS,IAGX,iBACA,gBACE,QAAS,IAGX,iBACE,QAAS,IAGX,iBACE,QAAS,IAGX,eACA,oBACE,QAAS,IAGX,gBACA,mBACE,QAAS,IAGX,qBACE,QAAS,IAIX,oBADA,gBAEE,QAAS,IAGX,kBACE,QAAS,IAKX,gBAFA,mBACA,mBAEE,QAAS,IAGX,mBACE,QAAS,IAGX,mBACE,QAAS,IAGX,yBACE,QAAS,IAGX,qBACE,QAAS,IAGX,iBACE,QAAS,IAGX,iBACE,QAAS,IAGX,iBACE,QAAS,IAGX,qBACE,QAAS,IAGX,4BACE,QAAS,IAGX,8BACE,QAAS,IAGX,uBACE,QAAS,IAGX,iBACE,QAAS,IAGX,sBACE,QAAS,IAGX,oBACE,QAAS,IAGX,sBACE,QAAS,IAGX,uBACE,QAAS,IAGX,mBACE,QAAS,IAIX,gBADA,oBAEE,QAAS,IAIX,qBADA,qBAEE,QAAS,IAIX,oBADA,mBAEE,QAAS,IAGX,oBACE,QAAS,IAGX,oBACE,QAAS,IAGX,uBACA,gBACE,QAAS,IAIX,iBADA,iBAEE,QAAS,IAGX,qBACA,sBACE,QAAS,IAGX,qBACE,QAAS,IAGX,sBACE,QAAS,IAIX,gBADA,iBAEE,QAAS,IAGX,mBACE,QAAS,IAGX,oBACE,QAAS,IAIX,qBADA,iBAEE,QAAS,IAGX,uBACE,QAAS,IAGX,oBACE,QAAS,IAGX,0BACE,QAAS,IAGX,wBACE,QAAS,IAGX,mBACE,QAAS,IAGX,uBACE,QAAS,IAGX,oBACE,QAAS,IAGX,kBACE,QAAS,IAGX,kBACE,QAAS,IAGX,mBACE,QAAS,IAGX,uBACE,QAAS,IAGX,sBACE,QAAS,IAGX,sBACE,QAAS,IAGX,qBACE,QAAS,IAGX,kBACE,QAAS,IAGX,uBACE,QAAS,IAGX,gBACE,QAAS,IAGX,oBACE,QAAS,IAGX,uBACE,QAAS,IAGX,6BACE,QAAS,IAGX,8BACE,QAAS,IAGX,2BACE,QAAS,IAGX,6BACE,QAAS,IAGX,sBACE,QAAS,IAGX,uBACE,QAAS,IAGX,oBACE,QAAS,IAGX,sBACE,QAAS,IAGX,mBACE,QAAS,IAGX,kBACE,QAAS,IAGX,kBACE,QAAS,IAGX,wBACA,kBACE,QAAS,IAGX,oBACE,QAAS,IAGX,sBACE,QAAS,IAGX,uBACE,QAAS,IAGX,mBACE,QAAS,IAGX,kBACE,QAAS,IAGX,sBACA,iBACE,QAAS,IAGX,sBACE,QAAS,IAGX,oBACE,QAAS,IAGX,yBACE,QAAS,IAGX,mBACE,QAAS,IAGX,mBACE,QAAS,IAGX,iBACE,QAAS,IAGX,mBACE,QAAS,IAGX,sBACE,QAAS,IAGX,kBACE,QAAS,IAGX,0BACE,QAAS,IAGX,oBACE,QAAS,IAGX,gBACE,QAAS,IAGX,0BACA,qBACE,QAAS,IAGX,2BACA,0BACA,uBACE,QAAS,IAGX,0BACE,QAAS,IAGX,gBACE,QAAS,IAGX,qBACE,QAAS,IAIX,wBADA,kBAEE,QAAS,IAGX,oBACE,QAAS,IAGX,gBACE,QAAS,IAGX,uBACE,QAAS,IAGX,uBACE,QAAS,IAGX,qBACE,QAAS,IAGX,kBACE,QAAS,IAGX,wBACE,QAAS,IAGX,sBACE,QAAS,IAGX,4BACE,QAAS,IAGX,kBACE,QAAS,IAGX,sBACE,QAAS,IAGX,6BACE,QAAS,IAGX,kBACE,QAAS,IAGX,kBACE,QAAS,IAGX,+BACE,QAAS,IAGX,gCACE,QAAS,IAGX,6BACE,QAAS,IAGX,+BACE,QAAS,IAGX,iBACE,QAAS,IAGX,gBACE,QAAS,IAGX,kBACE,QAAS,IAGX,sBACE,QAAS,IAGX,oBACE,QAAS,IAGX,sBACE,QAAS,IAGX,sBACE,QAAS,IAGX,sBACE,QAAS,IAGX,uBACE,QAAS,IAGX,kBACE,QAAS,IAGX,wBACE,QAAS,IAGX,0BACE,QAAS,IAGX,oBACE,QAAS,IAGX,sBACE,QAAS,IAGX,wBACE,QAAS,IAGX,yBACE,QAAS,IAGX,gCACE,QAAS,IAGX,wBACE,QAAS,IAGX,mBACE,QAAS,IAIX,+BADA,uBAEE,QAAS,IAIX,6BADA,qBAEE,QAAS,IAIX,gCADA,wBAEE,QAAS,IAIX,eADA,gBAEE,QAAS,IAGX,eACE,QAAS,IAGX,kBACA,eACE,QAAS,IAIX,eADA,iBAEE,QAAS,IAGX,eAGA,eAFA,eACA,eAEE,QAAS,IAIX,kBACA,eAFA,iBAGE,QAAS,IAIX,eADA,eAEE,QAAS,IAGX,mBACA,eACE,QAAS,IAGX,gBACE,QAAS,IAGX,qBACE,QAAS,IAGX,0BACE,QAAS,IAGX,2BACE,QAAS,IAGX,2BACE,QAAS,IAGX,4BACE,QAAS,IAGX,4BACE,QAAS,IAGX,6BACE,QAAS,IAGX,qBACE,QAAS,IAGX,uBACE,QAAS,IAGX,0BACE,QAAS,IAGX,mBACE,QAAS,IAGX,gBACE,QAAS,IAGX,uBACE,QAAS,IAGX,wBACE,QAAS,IAGX,mBACE,QAAS,IAGX,0BACE,QAAS,IAGX,qBACE,QAAS,IAGX,kBACE,QAAS,IAGX,eACE,QAAS,IAGX,qBACE,QAAS,IAGX,4BACE,QAAS,IAGX,kBACE,QAAS,IAGX,yBACE,QAAS,IAGX,2BACE,QAAS,IAGX,yBACE,QAAS,IAGX,2BACE,QAAS,IAGX,4BACE,QAAS,IAGX,iBACE,QAAS,IAGX,mBACE,QAAS,IAGX,mBACE,QAAS,IAGX,iBACE,QAAS,IAGX,oBACE,QAAS,IAGX,iBACE,QAAS,IAGX,sBACE,QAAS,IAGX,kBACE,QAAS,IAGX,kBACE,QAAS,IAGX,gBACE,QAAS,IAGX,kBACA,oBACE,QAAS,IAGX,iBACE,QAAS,IAGX,kBACE,QAAS,IAGX,mBACE,QAAS,IAGX,eACE,QAAS,IAGX,cACE,QAAS,IAGX,iBACE,QAAS,IAGX,kBACE,QAAS,IAGX,qBACE,QAAS,IAGX,0BACE,QAAS,IAGX,gCACE,QAAS,IAGX,+BACE,QAAS,IAIX,+BADA,uBAEE,QAAS,IAGX,wBACE,QAAS,IAGX,sBACE,QAAS,IAGX,wBACE,QAAS,IAIX,eADA,wBAEE,QAAS,IAGX,yBACE,QAAS,IAGX,yBACE,QAAS,IAGX,iBACE,QAAS,IAGX,2BACE,QAAS,IAGX,qBACE,QAAS,IAGX,kBACE,QAAS,IAIX,gBADA,uBAEA,sBACE,QAAS,IAIX,0BADA,wBAEE,QAAS,IAGX,iBACE,QAAS,IAGX,kBACE,QAAS,IAGX,kBACE,QAAS,IAGX,yBACE,QAAS,IAGX,8BACE,QAAS,IAGX,uBACE,QAAS,IAGX,qBACE,QAAS,IAGX,gBACE,QAAS,IAGX,yBACE,QAAS,IAGX,0BACE,QAAS,IAGX,kBACE,QAAS,IAGX,kBACE,QAAS,IAGX,oBACE,QAAS,IAGX,eACE,QAAS,IAGX,oBACE,QAAS,IAGX,iBACE,QAAS,IAGX,eACE,QAAS,IAGX,iBACE,QAAS,IAGX,gBACE,QAAS,IAGX,iBACE,QAAS,IAGX,mBACE,QAAS,IAGX,0BACE,QAAS,IAGX,iBACE,QAAS,IAGX,wBACE,QAAS,IAGX,mBACE,QAAS,IAGX,sBACA,eACE,QAAS,IAGX,eACA,gBACE,QAAS,IAGX,gBACE,QAAS,IAGX,mBACE,QAAS,IAGX,sBACE,QAAS,IAGX,sBACE,QAAS,IAGX,oBACE,QAAS,IAGX,sBACE,QAAS,IAGX,uBACE,QAAS,IAGX,wBACE,QAAS,IAGX,6BACE,QAAS,IAKX,wBAFA,wBACA,0BAEE,QAAS,IAIX,0BADA,sBAEE,QAAS,IAIX,wBADA,wBAEE,QAAS,IAGX,wBACA,wBACE,QAAS,IAGX,uBACE,QAAS,IAGX,gBACE,QAAS,IAGX,mBACE,QAAS,IAGX,oBACE,QAAS,IAGX,qBACA,qBAGA,qBAFA,sBACA,mBAEE,QAAS,IAGX,0BACE,QAAS,IAGX,cAEA,iBADA,sBAEE,QAAS,IAIX,kBADA,cAEE,QAAS,IAGX,sBACE,QAAS,IAGX,eACE,QAAS,IAKX,uBAFA,+BACA,qBAEE,QAAS,IAGX,yBACE,QAAS,IAGX,cACE,QAAS,IAGX,kBACA,kBACE,QAAS,IAIX,uBADA,gBAEE,QAAS,IAIX,yBADA,kBAEE,QAAS,IAGX,mBACE,QAAS,IAGX,uBACE,QAAS,IAGX,kBACE,QAAS,IAGX,qBACE,QAAS,IAGX,mBACE,QAAS,IAGX,qBACE,QAAS,IAGX,4BACE,QAAS,IAGX,gBACE,QAAS,IAIX,oBADA,yBAEE,QAAS,IAGX,eACE,QAAS,IAGX,sBACE,QAAS,IAGX,gBACE,QAAS,IAGX,sBACE,QAAS,IAGX,kBACE,QAAS,IAGX,gBACE,QAAS,IAGX,uBACE,QAAS,IAGX,gBACE,QAAS,IAGX,sBACE,QAAS,IAGX,kBACE,QAAS,IAGX,yBACE,QAAS,IAGX,mBACE,QAAS,IAGX,yBACE,QAAS,IAGX,uBACE,QAAS,IAGX,mBACE,QAAS,IAGX,qBACE,QAAS,IAGX,qBACE,QAAS,IAGX,sBACE,QAAS,IAGX,wBACE,QAAS,IAGX,iBACE,QAAS,IAGX,qBACE,QAAS,IAGX,cACE,QAAS,IAGX,sBACE,QAAS,IAGX,uBACE,QAAS,IAGX,yBACE,QAAS,IAGX,sBACE,QAAS,IAGX,qBACE,QAAS,IAGX,sBACE,QAAS,IAGX,kBACE,QAAS,IAGX,yBACE,QAAS,IAGX,sBACE,QAAS,IAGX,qBACE,QAAS,IAGX,mBACE,QAAS,IAGX,eACE,QAAS,IAGX,mBACE,QAAS,IAGX,qBACE,QAAS,IAGX,cACE,QAAS,IAKX,eAFA,kBACA,kBAEE,QAAS,IAGX,oBACE,QAAS,IAGX,sBACE,QAAS,IAGX,0BACE,QAAS,IAGX,oBACE,QAAS,IAGX,oBACE,QAAS,IAGX,mBACE,QAAS,IAGX,kBACE,QAAS,IAGX,wBACE,QAAS,IAGX,uBACE,QAAS,IAGX,oBACE,QAAS,IAGX,qBACE,QAAS,IAGX,2BACE,QAAS,IAGX,mBACE,QAAS,IAGX,gBACE,QAAS,IAGX,uBACE,QAAS,IAGX,sBACE,QAAS,IAGX,uBACE,QAAS,IAGX,qBACE,QAAS,IAGX,iBACE,QAAS,IAGX,gBACE,QAAS,IAGX,mBACE,QAAS,IAGX,oBACA,uBACE,QAAS,IAGX,2BACE,QAAS,IAGX,wBACE,QAAS,IAGX,uBACE,QAAS,IAGX,sBACE,QAAS,IAGX,uBACE,QAAS,IAGX,yBACE,QAAS,IAGX,yBACE,QAAS,IAGX,kBACE,QAAS,IAGX,sBACE,QAAS,IAGX,6BACE,QAAS,IAGX,uBACE,QAAS,IAGX,oBACE,QAAS,IAGX,kBACE,QAAS,IAGX,qBACE,QAAS,IAGX,sBACE,QAAS,IAIX,eADA,iBAEE,QAAS,IAGX,mBACE,QAAS,IAGX,iBACE,QAAS,IAGX,kBACE,QAAS,IAGX,kBACE,QAAS,IAIX,wBADA,cAEE,QAAS,IAGX,yBACE,QAAS,IAGX,oBACE,QAAS,IAGX,wBACE,QAAS,IAGX,qBAEA,wBADA,mBAEE,QAAS,IAGX,qBACA,kCACE,QAAS,IAGX,qBACA,wBACE,QAAS,IAGX,qBACA,2BACE,QAAS,IAGX,qBACA,yBACE,QAAS,IAGX,yBACE,QAAS,IAGX,oBACE,QAAS,IAGX,wBACE,QAAS,IAGX,0BACE,QAAS,IAGX,uBACE,QAAS,IAGX,yBACE,QAAS,IAGX,kBACE,QAAS,IAGX,0BACE,QAAS,IAGX,iBACE,QAAS,IAGX,yBACE,QAAS,IAGX,uBACE,QAAS,IAGX,uBACA,2BACE,QAAS,IAGX,uBACA,0BACE,QAAS,IAGX,uBACA,yBACE,QAAS,IAGX,qBACE,QAAS,IAGX,uBACA,uBACE,QAAS,IAIX,wBADA,uBAEE,QAAS,IAGX,2BACE,QAAS,IAGX,yBACE,QAAS,IAGX,wBACE,QAAS,IAGX,0BACE,QAAS,IAGX,wBACE,QAAS,IAGX,qBACE,QAAS,IAGX,sBACE,QAAS,IAGX,4BACE,QAAS,IAGX,cACE,QAAS,IAGX,qBACE,QAAS,IAGX,uBACE,QAAS,IAGX,yBACE,QAAS,IAGX,gCACE,QAAS,IAGX,sBACE,QAAS,IAGX,uBACE,QAAS,IAGX,kBACE,QAAS,IAGX,kBACE,QAAS,IAGX,mBACE,QAAS,IAGX,iBACE,QAAS,IAGX,6BACE,QAAS,IAIX,sBADA,cAEE,QAAS,IAGX,kBACE,QAAS,IAGX,iBACE,QAAS,IAGX,kBACE,QAAS,IAGX,2BACE,QAAS,IAGX,4BACE,QAAS,IAGX,4BACE,QAAS,IAGX,4BACE,QAAS,IAGX,oBACE,QAAS,IAGX,mBACE,QAAS,IAGX,qBACE,QAAS,IAGX,iBACE,QAAS,IAGX,eACE,QAAS,IAGX,sBACE,QAAS,IAGX,wBACE,QAAS,IAGX,iBACE,QAAS,IAGX,iBACE,QAAS,IAGX,qBACE,QAAS,IAGX,qBACE,QAAS,IAGX,wBACE,QAAS,IAGX,gBACE,QAAS,IAGX,2BACE,QAAS,IAGX,oBACE,QAAS,IAGX,gBACE,QAAS,IAGX,wBACE,QAAS,IAGX,eACE,QAAS,IAGX,wBACE,QAAS,IAGX,oBACE,QAAS,IAGX,kBACE,QAAS,IAGX,wBACE,QAAS,IAGX,0BACE,QAAS,IAGX,uBACE,QAAS,IAGX,yBACE,QAAS,IAGX,wBACE,QAAS,IAGX,2BACE,QAAS,IAGX,mBACE,QAAS,IAGX,qBACE,QAAS,IAGX,uBACE,QAAS,IAGX,mBACE,QAAS,IAGX,kBACE,QAAS,IAGX,sBACE,QAAS,IAGX,mBACE,QAAS,IAGX,kBACE,QAAS,IAGX,4BACE,QAAS,IAGX,0BACE,QAAS,IAGX,6BACE,QAAS,IAGX,iBACE,QAAS,IAGX,6BACE,QAAS,IAGX,gCACE,QAAS,IAGX,mBACE,QAAS,IAGX,uCACE,QAAS,IAIX,+CADA,4BAEE,QAAS,IAKX,gBAFA,oBACA,2BAEE,QAAS,IAGX,iBACE,QAAS,IAGX,mBACE,QAAS,IAIX,yBADA,mBAEE,QAAS,IAGX,sBACE,QAAS,IAGX,kBACE,QAAS,IAGX,yBACE,QAAS,IAGX,oBACE,QAAS,IAGX,0BACE,QAAS,IAGX,2BACE,QAAS,IAGX,sBACE,QAAS,IAGX,uBACE,QAAS,IAGX,iBACE,QAAS,IAGX,qBACE,QAAS,IAGX,8BACA,gCACE,QAAS,IAGX,cACA,wBACE,QAAS,IAGX,uBACE,QAAS,IAGX,yBACE,QAAS,IAGX,2BACE,QAAS,IAGX,kBACE,QAAS,IAGX,wBACE,QAAS,IAGX,0BACE,QAAS,IAIX,wBADA,iBAEE,QAAS,IAIX,0BADA,mBAEE,QAAS,IAGX,uBACE,QAAS,IAGX,yBACE,QAAS,IAGX,kBACE,QAAS,IAGX,oBACE,QAAS,IAGX,2BACA,mBACE,QAAS,IAGX,6BACA,qBACE,QAAS,IAGX,iBACE,QAAS,IAGX,0BACE,QAAS,IAGX,oBACE,QAAS,IAGX,yBAEA,4BADA,uBAEE,QAAS,IAGX,yBACA,sCACE,QAAS,IAGX,yBACA,4BACE,QAAS,IAGX,yBACA,+BACE,QAAS,IAGX,yBACA,6BACE,QAAS,IAGX,kBACE,QAAS,IAKX,gBAFA,mBACA,eAEE,QAAS,IAGX,mBACE,QAAS,IAGX,2BACE,QAAS,IAGX,2BACE,QAAS,IAGX,0BACE,QAAS,IAGX,2BACA,wBACE,QAAS,IAGX,6BACA,0BACE,QAAS,IAGX,oBACE,QAAS,IAGX,gBACE,QAAS,IAGX,gBACE,QAAS,IAGX,gBACE,QAAS,IAGX,mBACE,QAAS,IAGX,mBACE,QAAS,IAGX,qBACE,QAAS,IAGX,uBACE,QAAS,IAGX,uBACE,QAAS,IAGX,sBACE,QAAS,IAGX,kBACE,QAAS,IAG6gB,gEAApX,yEAA4E,2EAAtO,yEAA4E,2EAAwO,oEAAuE,sEAAsN,gEAA7I,uEAAgN,uDAA+G,sDAAvD,sDAAttB,SACE,SAAU,SACV,MAAO,IACP,OAAQ,IACR,QAAS,EACT,OAAQ,KACR,SAAU,OACV,KAAM,cACN,OAAQ,EAGV,0BAA2B,yBACzB,SAAU,OACV,MAAO,KACP,OAAQ,KACR,OAAQ,EACR,SAAU,QACV,KAAM,KAGR,yBAEE,iCADA,iCAEE,QAAS,aACT,cAAe,EACf,eAAgB,IAGlB,oDADA,oDAEE,MAAO,MAIX,0BACE,QAAS,KAIX,8DACE,QAAS,KAGX,gBACE,WAAY,MACZ,WAAY,KAGd,iDACE,MAAO,QACP,aAAc,QAGhB,gDACE,iBAAkB,QAGpB,mDACE,MAAO,QACP,aAAc,QAGhB,kDACE,iBAAkB,QAGpB,mDACE,MAAO,QACP,aAAc,QAGhB,kDACE,iBAAkB,QAGpB,YACE,cAAe,IACf,UAAW,IAGb,mBACE,MAAO,MAGT,gBACE,UAAW,IAGb,8BACE,KAAM,KAGR,iCACE,MAAO,MAGT,qBACE,IAAK,EACL,KAAM,EACN,QAAS,IAGX,4BACE,QAAS,GACT,QAAS,aACT,YAAa,IAAI,MAAM,YACvB,aAAc,IAAI,MAAM,YACxB,cAAe,IAAI,MAAM,KACzB,WAAY,EACZ,oBAAqB,eACrB,SAAU,SAGZ,2BACE,QAAS,GACT,QAAS,aACT,YAAa,IAAI,MAAM,YACvB,aAAc,IAAI,MAAM,YACxB,cAAe,IAAI,MAAM,KACzB,WAAY,EACZ,SAAU,SAGZ,mDACE,KAAM,IAGR,kDACE,KAAM,IAGR,oDACE,MAAO,IAGT,mDACE,MAAO,IAGT,qDACE,IAAK,KAGP,oDACE,IAAK,KAGP,kDACE,OAAQ,KACR,cAAe,EACf,WAAY,IAAI,MAAM,KAGxB,iDACE,OAAQ,KACR,cAAe,EACf,WAAY,IAAI,MAAM,KAGxB,kBACE,OAAQ,EACR,sBAAuB,KACvB,oBAAqB,KACrB,mBAAoB,KACpB,iBAAkB,KAClB,gBAAiB,KACjB,YAAa,KAGf,wBAAyB,wBACvB,WAAY,OACZ,MAAO,KACP,OAAQ,KACR,cAAe,IACf,OAAQ,KAGV,uCAAwC,uCACtC,iBAAkB,YAGS,4BAA7B,4BACE,MAAO,QAGT,kCAAmC,gCACjC,WAAY,QACZ,OAAQ,QAGV,iCAAkC,uCAChC,WAAY,IACZ,MAAO,QACP,OAAQ,QAGV,oCACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QACd,cAAe,EAG0B,0CAA3C,0CACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,0CACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAG4B,2CAA5C,2CACA,0DACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAG0O,iDAAlD,iDAAlD,iDAAlD,iDAAlD,iDAAlD,iDAGA,gEADA,gEADA,gEAGE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAG4B,2CAA5C,2CACA,0DACE,iBAAkB,KAGoF,mDAApD,mDAApD,mDAAsQ,oDAArD,oDAArD,oDAG5J,6DADA,6DADA,6DAGE,iBAAkB,QAClB,aAAc,QAGhB,2CACE,MAAO,QACP,iBAAkB,KAGpB,4CACE,WAAY,QAGd,6CAA8C,oDAC5C,WAAY,QACZ,MAAO,QAGT,8BACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGqB,oCAArC,oCACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,oCACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGsB,qCAAtC,qCACA,oDACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAG4M,2CAA5C,2CAA5C,2CAA5C,2CAA5C,2CAA5C,2CAGA,0DADA,0DADA,0DAGE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGsB,qCAAtC,qCACA,oDACE,iBAAkB,KAGwE,6CAA9C,6CAA9C,6CAAwO,8CAA/C,8CAA/C,8CAG1I,uDADA,uDADA,uDAGE,iBAAkB,QAClB,aAAc,QAGhB,qCACE,MAAO,QACP,iBAAkB,KAGpB,sCACE,WAAY,QAGd,uCAAwC,8CACtC,WAAY,QACZ,MAAO,QAGT,8BACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QACd,cAAe,EAGoB,oCAArC,oCACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,oCACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGsB,qCAAtC,qCACA,oDACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAG4M,2CAA5C,2CAA5C,2CAA5C,2CAA5C,2CAA5C,2CAGA,0DADA,0DADA,0DAGE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGsB,qCAAtC,qCACA,oDACE,iBAAkB,KAGwE,6CAA9C,6CAA9C,6CAAwO,8CAA/C,8CAA/C,8CAG1I,uDADA,uDADA,uDAGE,iBAAkB,QAClB,aAAc,QAGhB,qCACE,MAAO,QACP,iBAAkB,KAGpB,sCACE,WAAY,QAGd,uCAAwC,8CACtC,WAAY,QACZ,MAAO,QAGT,0CACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGiC,gDAAjD,gDACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,gDACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGkC,iDAAlD,iDACA,gEACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGwQ,uDAAxD,uDAAxD,uDAAxD,uDAAxD,uDAAxD,uDAGA,sEADA,sEADA,sEAGE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGkC,iDAAlD,iDACA,gEACE,iBAAkB,KAGgG,yDAA1D,yDAA1D,yDAAoS,0DAA3D,0DAA3D,0DAG9K,mEADA,mEADA,mEAGE,iBAAkB,QAClB,aAAc,QAGhB,iDACE,MAAO,QACP,iBAAkB,KAGpB,kDACE,WAAY,QAGd,mDAAoD,0DAClD,WAAY,QACZ,MAAO,QAGT,oCACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAG2B,0CAA3C,0CACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGhB,0CACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAG4B,2CAA5C,2CACA,0DACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAG0O,iDAAlD,iDAAlD,iDAAlD,iDAAlD,iDAAlD,iDAGA,gEADA,gEADA,gEAGE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAG4B,2CAA5C,2CACA,0DACE,iBAAkB,KAGoF,mDAApD,mDAApD,mDAAsQ,oDAArD,oDAArD,oDAG5J,6DADA,6DADA,6DAGE,iBAAkB,QAClB,aAAc,QAGhB,2CACE,MAAO,QACP,iBAAkB,KAGpB,6CAA8C,oDAC5C,WAAY,QACZ,MAAO,QAGT,iCAAkC,6CAChC,MAAO,KACP,iBAAkB,QAClB,aAAc,KACd,YAAa,EAAE,KAAK,EAAE,gBAGgB,uCAA4F,mDAApD,mDAAhF,uCACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGwB,mDAAxC,uCACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGyB,wCACsE,oDAArD,oDAD1D,wCACA,uDACA,mEACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAG2N,8CAA/C,8CAA/C,8CAG0N,0DAA3D,0DAA3D,0DAA3D,0DAA3D,0DAA3D,0DAH8B,8CAA/C,8CAA/C,8CAGA,6DADA,6DADA,6DAKA,yEADA,yEADA,yEAGE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGyB,wCACsE,oDAArD,oDAD1D,wCACA,uDACA,mEACE,iBAAkB,KAG8E,gDAAjD,gDAAjD,gDAGqL,4DAA7D,4DAA7D,4DAAmT,6DAA9D,6DAA9D,6DAHK,iDAAlD,iDAAlD,iDAGnJ,0DAGA,sEADA,sEADA,sEAFA,0DADA,0DAME,iBAAkB,QAClB,aAAc,KAGhB,wCAAyC,oDACvC,MAAO,QACP,iBAAkB,KAGpB,+BAAgC,2CAC9B,MAAO,KACP,iBAAkB,QAClB,aAAc,QACd,YAAa,EAAE,KAAK,EAAE,gBAGc,qCAAwF,iDAAlD,iDAA5E,qCACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGsB,iDAAtC,qCACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGuB,sCACoE,kDAAnD,kDADxD,sCACA,qDACA,iEACE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGiN,4CAA7C,4CAA7C,4CAGoN,wDAAzD,wDAAzD,wDAAzD,wDAAzD,wDAAzD,wDAH4B,4CAA7C,4CAA7C,4CAGA,2DADA,2DADA,2DAKA,uEADA,uEADA,uEAGE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAGuB,sCACoE,kDAAnD,kDADxD,sCACA,qDACA,iEACE,iBAAkB,KAG0E,8CAA/C,8CAA/C,8CAG+K,0DAA3D,0DAA3D,0DAAyS,2DAA5D,2DAA5D,2DAHG,+CAAhD,+CAAhD,+CAG7I,wDAGA,oEADA,oEADA,oEAFA,wDADA,wDAME,iBAAkB,QAClB,aAAc,QAGhB,sCAAuC,kDACrC,MAAO,QACP,iBAAkB,KAGpB,6BACE,QAAS,MACT,MAAO,IACP,OAAQ,KACR,YAAa,KACb,MAAO,KACP,OAAQ,GACR,OAAQ,QACR,cAAe,IAGmB,qCAApC,mCACE,WAAY,QAGd,sCAAuC,4CACrC,WAAY,IACZ,MAAO,QACP,OAAQ,QAGV,oCAAgF,6CAA8C,mDAAzF,0CACnC,MAAO,KACP,iBAAkB,QAClB,aAAc,QACd,YAAa,EAAE,KAAK,EAAE,gBAGoN,mDAApD,mDAAkK,yDAA1D,yDAArP,0CAA3C,0CAAuI,gDAAjD,gDACpF,MAAO,KACP,iBAAkB,QAClB,aAAc,QAG4E,mDAAoD,yDAAhJ,0CAA2C,gDACzC,MAAO,KACP,iBAAkB,QAClB,aAAc,QAG4B,2CAE4E,oDAArD,oDAC8D,0DAA3D,0DAHtE,2CAC+G,iDAAlD,iDAE7D,mEACA,yEAHA,0DACA,gEAGE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAG0O,iDAAlD,iDAAlD,iDAM0N,0DAA3D,0DAA3D,0DAA3D,0DAA3D,0DAA3D,0DAGwU,gEAAjE,gEAAjE,gEAAjE,gEAAjE,gEAAjE,gEATwB,iDAAlD,iDAAlD,iDAG2V,uDAAxD,uDAAxD,uDAAxD,uDAAxD,uDAAxD,uDAMnE,yEADA,yEADA,yEAKA,+EADA,+EADA,+EAPA,gEADA,gEADA,gEAKA,sEADA,sEADA,sEASE,MAAO,KACP,iBAAkB,QAClB,aAAc,QAG4B,2CAE4E,oDAArD,oDAC8D,0DAA3D,0DAHtE,2CAC+G,iDAAlD,iDAE7D,mEACA,yEAHA,0DACA,gEAGE,iBAAkB,KAS0K,4DAA7D,4DAA7D,4DANoC,mDAApD,mDAApD,mDAS6M,kEAAnE,kEAAnE,kEAAiV,mEAApE,mEAApE,mEAHuG,6DAA9D,6DAA9D,6DAHzE,yDAA1D,yDAA1D,yDAAoS,0DAA3D,0DAA3D,0DAH0B,oDAArD,oDAArD,oDAS5J,sEADA,sEADA,sEAKA,4EADA,4EADA,4EAPA,6DADA,6DADA,6DAKA,mEADA,mEADA,mEASE,iBAAkB,QAClB,aAAc,QAGhB,2CAA8F,oDAAqD,0DAAvG,iDAC1C,MAAO,QACP,iBAAkB,KAGc,iCAAlC,iCACE,MAAO,QAGT,+BACE,MAAO,MAGT,+BAEA,kBADA,kBAEA,wBACE,OAAQ,QAGV,qCAEA,wBADA,wBAEA,8BACE,WAAY,QAGc,2BAA5B,2BACE,WAAY,OAGd,gBACE,UAAW,KACX,MAAO,KACP,QAAS,EAAE,IAAI,EAAE,IACjB,eAAgB,OAGlB,qCACE,OAAQ,QAGV,iBACE,MAAO,KAGT,uBACE,WAAY,OAGd,mCACE,cAAe,IAAI,EAAE,EAAE,IAGzB,kCACE,cAAe,EAAE,IAAI,IAAI,EAG3B,oCACE,MAAO,KACP,UAAW,KACX,QAAS,IAAI,IACb,YAAa,WACb,YAAa,EAAE,IAAI,EAAE,KACrB,aAAc,IAAI,EAClB,YAAa,KACb,aAAc,KAGhB,wBACA,oBACE,QAAS,eAQX,mCACE,MAAO,KACP,cAAe,KACf,QAAS,EAGX,kDAA2K,yDAA3D,wDAA3D,wDACnD,MAAO,KAGT,yBACE,SAAU,mBACV,OAAQ,EACR,KAAM,IACN,QAAS,gBACT,MAAO,eACP,OAAQ,eACR,QAAS,YACT,QAAS,YACT,OAAQ,KAGV,uCACE,IAAK,EACL,KAAM,EACN,QAAS,gBACT,MAAO,eACP,QAAS,EAIX,0CADA,8CAEE,aAAc,QAGhB,4BACE,MAAO,eAGT,sFACE,MAAO,MAGT,yCACE,QAAS,KAAK,OAAO,eACrB,QAAS,IAAI,KAAK,mCAClB,eAAgB,KAGlB,+BACE,cAAe,EACf,QAAS,EACT,OAAQ,KAGV,kDACE,MAAO,KAGT,+CACE,QAAS,KAGX,uFACE,cAAe,EAGjB,kDAAmD,yCACjD,MAAO,KACP,QAAS,aACT,YAAa,EAGf,gDAAiD,6DACjD,kEACE,MAAO,MAKT,wCADA,6CADA,yCAGE,cAAe,EAGjB,wDACA,wDACE,QAAS,EAGX,yEACA,yEACE,OAAQ,KACR,UAAW,QACX,YAAa,QACb,cAAe,QAGjB,uDACE,MAAO,KAGT,qCACA,sCACE,OAAQ,YAGV,2CACA,4CACE,QAAS,YAGX,yCACE,SAAU,SACV,OAAQ,YACR,QAAS,YAGX,wDACE,QAAS,KAGX,4DACE,QAAS,aACT,SAAU,OACV,MAAO,KACP,WAAY,KAGd,oDACE,SAAU,SACV,IAAK,IACL,MAAO,KACP,WAAY,KACZ,eAAgB,OAGlB,0DACE,MAAO,KAGT,2CACE,UAAW,KACX,mBAAoB,WACpB,gBAAiB,WACjB,WAAY,WAGd,iDACE,SAAU,OACV,MAAO,KACP,OAAQ,EACR,QAAS,EACT,OAAQ,EACR,cAAe,EACf,WAAY,KAGd,8CACE,SAAU,SAGZ,2DACE,MAAO,KAGT,yDACE,OAAQ,YAGV,gDACE,OAAQ,QACR,YAAa,KAGf,oDACE,SAAU,SACV,aAAc,OAGhB,gEACE,QAAS,KAGX,0DACE,QAAS,aAGX,oDACE,aAAc,KAGhB,mDACE,SAAU,SACV,OAAQ,IACR,MAAO,IACP,OAAQ,EAAE,GACV,WAAY,KACZ,QAAS,IAAI,IACb,WAAY,QACZ,OAAQ,IAAI,MAAM,QAClB,mBAAoB,MAAM,EAAE,IAAI,IAAI,gBACpC,WAAY,MAAM,EAAE,IAAI,IAAI,gBAC5B,eAAgB,KAChB,QAAS,GACT,mBAAoB,WACpB,gBAAiB,WACjB,WAAY,WAGd,wCACE,QAAS,IACT,WAAY,QACZ,OAAQ,EAAE,IACV,YAAa,OAGf,sEACE,SAAU,OAGZ,8DACE,SAAU,OACV,IAAK,KACL,WAAY,KAGd,mFACE,SAAU,SACV,QAAS,aACT,MAAO,KACP,WAAY,IAGd,oEACE,aAAc,KAGhB,wDACE,QAAS,KAGX,0DACE,QAAS,GACT,YAAa,IAAI,MAAM,YACvB,aAAc,IAAI,MAAM,YACxB,cAAe,IAAI,MAAM,qBACzB,SAAU,SACV,OAAQ,KACR,KAAM,IACN,QAAS,KAGX,yDACE,QAAS,GACT,YAAa,IAAI,MAAM,YACvB,aAAc,IAAI,MAAM,YACxB,cAAe,IAAI,MAAM,KACzB,SAAU,SACV,OAAQ,KACR,KAAM,KACN,QAAS,KAGX,iEACE,OAAQ,KACR,IAAK,KACL,WAAY,IAAI,MAAM,qBACtB,cAAe,EAGjB,gEACE,OAAQ,KACR,IAAK,KACL,WAAY,IAAI,MAAM,KACtB,cAAe,EAGjB,qEACE,MAAO,KACP,KAAM,KAGR,oEACE,MAAO,KACP,KAAM,KAG0D,8DAAlE,+DACE,QAAS,MAIX,eACA,eAFA,cAGE,QAAS,IAAI,IAGf,eACE,MAAO,KACP,mBAAoB,WACpB,gBAAiB,WACjB,WAAY,WAGd,iCACE,MAAO,IAGT,eACE,MAAO,KACP,MAAO,KACP,mBAAoB,WACpB,gBAAiB,WACjB,WAAY,WAGd,iCACE,MAAO,KAGT,6BACE,QAAS,EAAE,IAAI,IAGjB,4BACE,cAAe,EACf,MAAO,KACP,MAAO,KAGT;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAsCA,QACE,QAAS,aACT,eAAgB,OAChB,SAAU,SAGZ,0BACE,MAAO,KACP,OAAQ,KAGV,wCACE,OAAQ,IACR,MAAO,KACP,WAAY,KACZ,IAAK,IACL,KAAM,EAGR,4CAA0F,6CAA7C,4CAC3C,OAAQ,KACR,IAAK,EACL,OAAQ,EAIV,yCADA,uCAEE,YAAa,KAIf,kDADA,gDAEE,SAAU,SACV,IAAK,IACL,UAAW,iBACX,aAAc,EAAE,IAAI,IAAI,IACxB,MAAO,EACP,OAAQ,EACR,oBAAqB,QACrB,WAAY,EAGd,iDACE,YAAa,OACb,SAAU,SACV,IAAK,EACL,KAAM,EACN,MAAO,KAGT,uDACE,YAAa,OACb,WAAY,KAGd,0EACE,QAAS,aACT,YAAa,OACb,WAAY,OAGd,mDACE,KAAM,QACN,MAAO,EAIT,oDADA,kDAEE,YAAa,QACb,aAAc,KAGhB,4DACE,KAAM,QACN,MAAO,EAGT,wBACE,OAAQ,MACR,MAAO,KAGT,sCACE,MAAO,IACP,OAAQ,KACR,KAAM,IACN,IAAK,EAGP,0CACE,MAAO,KACP,KAAM,EACN,IAAK,EACL,OAAQ,EAGiC,2CAA3C,0CACE,MAAO,KACP,KAAM,EACN,MAAO,EAIT,uCADA,qCAEE,WAAY,KAId,gDADA,8CAEE,aAAc,IAAI,EAAE,IAAI,IACxB,MAAO,IACP,OAAQ,IACR,kBAAmB,QACnB,YAAa,EAGf,qDACE,YAAa,OAGf,wEACE,aAAc,MAGhB,iDACE,KAAM,QACN,MAAO,IAGT,qDACE,KAAM,QACN,MAAO,EAIT,2DADA,yDAEE,aAAc,IAAI,IAAI,IAAI,EAG5B,mFACE,aAAc,QACd,cAAe,MAGjB,uCACE,iBAAkB,QAClB,iBAAkB,0CAClB,iBAAkB,8DAClB,iBAAkB,6CAClB,iBAAkB,wCAClB,iBAAkB,2CAClB,kBAAmB,SAIrB,sCACE,iBAAkB,QAClB,iBAAkB,0CAClB,iBAAkB,8DAClB,iBAAkB,6CAClB,iBAAkB,wCAClB,iBAAkB,2CAClB,kBAAmB,SAEnB,OAAQ,YAGV,cACE,QAAS,KAGX,uBACE,YAAa,OACb,UAAW,KAGb,qBACE,WAAY,MAGd,uBACE,YAAa,OACb,UAAW,KAGb,cACE,QAAS,KAGX,cACE,iBAAkB,QAClB,iBAAkB,0CAClB,iBAAkB,8DAClB,iBAAkB,6CAClB,iBAAkB,wCAClB,iBAAkB,2CAClB,kBAAmB,SAEnB,mBAAoB,MAAM,EAAE,IAAI,IAAI,eACpC,gBAAiB,MAAM,EAAE,IAAI,IAAI,eACjC,WAAY,MAAM,EAAE,IAAI,IAAI,eAC5B,sBAAuB,IACvB,mBAAoB,IACpB,cAAe,IACf,SAAU,SACV,OAAQ,QAGV,kBACE,iBAAkB,QAClB,iBAAkB,0CAClB,iBAAkB,8DAClB,iBAAkB,6CAClB,iBAAkB,wCAClB,iBAAkB,2CAClB,kBAAmB,SAEnB,mBAAoB,MAAM,EAAE,KAAK,EAAE,gBACnC,gBAAiB,MAAM,EAAE,KAAK,EAAE,gBAChC,WAAY,MAAM,EAAE,KAAK,EAAE,gBAC3B,mBAAoB,WACpB,gBAAiB,WACjB,WAAY,WACZ,sBAAuB,IACvB,mBAAoB,IACpB,cAAe,IACf,SAAU,SAGZ,wCACE,iBAAkB,QAClB,iBAAkB,0CAClB,iBAAkB,8DAClB,iBAAkB,6CAClB,iBAAkB,wCAClB,iBAAkB,2CAClB,kBAAmB,SAIF,mBAAnB,kBACE,mBAAoB,WACpB,gBAAiB,WACjB,WAAY,WACZ,sBAAuB,IACvB,mBAAoB,IACpB,cAAe,IACf,SAAU,SACV,WAAY,IAGd,eACE,iBAAkB,QAClB,iBAAkB,0CAClB,iBAAkB,8DAClB,iBAAkB,6CAClB,iBAAkB,wCAClB,iBAAkB,2CAClB,kBAAmB,SAEnB,mBAAoB,MAAM,EAAE,IAAI,EAAE,oBAAwB,CAAE,EAAE,IAAI,IAAI,gBACtE,gBAAiB,MAAM,EAAE,IAAI,EAAE,oBAAwB,CAAE,EAAE,IAAI,IAAI,gBACnE,WAAY,MAAM,EAAE,IAAI,EAAE,oBAAwB,CAAE,EAAE,IAAI,IAAI,gBAC9D,SAAU,SACV,IAAK,EACL,MAAO,KACP,OAAQ,KACR,iBAAkB,QAClB,OAAQ,EAAI,MAAM,YAGpB,qBACE,sBAAuB,KACvB,mBAAoB,KACpB,cAAe,KAGjB,wBACE,WAAY,YAAY,KAG1B,sBACE,WAAY,YAAY,KAG1B,8BACE,YAAa,KACb,UAAW,KACX,QAAS,QACT,MAAO,QAGT,aACE,iBAAkB,QAClB,iBAAkB,0CAClB,iBAAkB,8DAClB,iBAAkB,6CAClB,iBAAkB,wCAClB,iBAAkB,2CAClB,kBAAmB,SAEnB,mBAAoB,MAAM,EAAE,KAAK,EAAE,gBACnC,gBAAiB,MAAM,EAAE,KAAK,EAAE,gBAChC,WAAY,MAAM,EAAE,KAAK,EAAE,gBAC3B,mBAAoB,WACpB,gBAAiB,WACjB,WAAY,WACZ,SAAU,SACV,MAAO,KACP,OAAQ,KACR,OAAQ,KACR,QAAS,GACT,OAAQ,EAAI,MAAM,YAGpB,mBACE,cAAe,IAGjB,sBACE,WAAY,YAAY,KAG1B,oBACE,WAAY,YAAY,KAG1B,4BACE,YAAa,KACb,UAAW,KACX,QAAS,QACT,MAAO,QAGT,0BACE,iBAAkB,QAClB,iBAAkB,0CAClB,iBAAkB,8DAClB,iBAAkB,6CAClB,iBAAkB,wCAClB,iBAAkB,2CAClB,kBAAmB,SAEnB,QAAS,EAGX,kBACE,QAAS,aACT,UAAW,IACX,OAAQ,QACR,cAAe,IACf,OAAQ,IAAI,MACZ,aAAc,KACd,SAAU,SACV,WAAY,KACZ,SAAU,OACV,YAAa,IACb,QAAS,EACT,oBAAqB,KACrB,iBAAkB,KAClB,gBAAiB,KACjB,YAAa,KACb,eAAgB,OAChB,mBAAoB,aAAa,YAAY,IAAI,CAAE,WAAW,YAAY,KAC1E,cAAe,aAAa,YAAY,IAAI,CAAE,WAAW,YAAY,KACrE,WAAY,aAAa,YAAY,IAAI,CAAE,WAAW,YAAY,KAGpE,8CACE,QAAS,aACT,IAAK,EACL,cAAe,IACf,kBAAmB,mBACnB,UAAW,mBAIb,+CADA,8CAEA,0CACE,mBAAoB,WACpB,gBAAiB,WACjB,WAAY,WACZ,OAAQ,QACR,QAAS,WACT,eAAgB,OAChB,QAAS,IAAI,IACb,UAAW,KACX,YAAa,KAIf,+CADA,8CAEE,WAAY,OACZ,QAAS,EAIX,wEADA,uEAEE,MAAO,KACP,WAAY,QAId,qEADA,oEAEE,MAAO,KACP,WAAY,QAId,wEADA,uEAEE,MAAO,KACP,WAAY,QAId,wEADA,uEAEE,WAAY,QACZ,MAAO,KAIT,uEADA,sEAEE,MAAO,KACP,WAAY,QAId,wEADA,uEAEE,MAAO,KACP,WAAY,QAGd,0CACE,WAAY,OACZ,WAAY,KACZ,cAAe,KACf,QAAS,IACT,MAAO,QACP,WAAY,QAGd,+BACE,QAAS,QAGX,8CACE,0BAA2B,EAC3B,uBAAwB,EAG1B,+CACE,2BAA4B,EAC5B,wBAAyB,EAI3B,uCADA,oCAEE,SAAU,mBACV,IAAK,EACL,KAAM,EACN,OAAQ,EACR,QAAS,GACT,QAAS,EAET,WAAY,OAId,qEADA,oEAEA,gEACE,QAAS,IAAI,IACb,UAAW,KACX,YAAa,IAIf,sEADA,qEAEA,iEACE,QAAS,IAAI,IACb,UAAW,KACX,YAAa,IAIf,sEADA,qEAEA,iEACE,QAAS,IAAI,KACb,UAAW,KACX,YAAa,UAGf,4CAA0F,iDAA7C,4CAC3C,OAAQ,kBAIV,yEADA,wEAEA,oEAGA,8EADqE,6EAErE,yEAHA,yEADqE,wEAErE,oEAGE,QAAS,GAET,OAAQ,kBAGV,uEACE,mBAAoB,YAAY,IAChC,cAAe,YAAY,IAC3B,WAAY,YAAY,IAG1B,uEACE,0BAA2B,EAC3B,uBAAwB,EACxB,2BAA4B,EAC5B,wBAAyB,EAG3B,wEACE,2BAA4B,EAC5B,wBAAyB,EACzB,0BAA2B,EAC3B,uBAAwB,EAG1B,2CACE,aAAc,QACd,QAAS,EACT,mBAAoB,MAAM,EAAE,IAAI,IAAI,gBAAgB,CAAE,EAAE,EAAE,IAAI,mBAC9D,WAAY,MAAM,EAAE,IAAI,IAAI,gBAAgB,CAAE,EAAE,EAAE,IAAI,mBAGO,wFAA/D,8DACE,2BAA4B,EAC5B,wBAAyB,EAGqC,uFAAhE,+DACE,0BAA2B,EAC3B,uBAAwB,EAW1B,+CACE,SAAU,SACV,YAAa,OACb,MAAO,GACP,eAAgB,OAChB,QAAS,WAGX,oDACE,QAAS,MACT,MAAO,KACP,MAAO,KACP,UAAW,KACX,QAAS,IAAI,KACb,YAAa,KACb,SAAU,SAGZ,uEACE,cAAe,EACf,wBAAyB,IAG3B,yEACE,WAAY,KACZ,cAAe,EACf,2BAA4B,IAG9B,iDACE,SAAU,SACV,IAAK,IACL,KAAM,IACN,UAAW,IACX,YAAa,IAIf,QACE,KAAM,KAAK,WACX,4BAA6B,YAGrB,SAAV,SACE,KAAM,KACN,OAAQ,KAGV,SACE,oBAAqB,KACrB,iBAAkB,KAClB,YAAa,KAOf,cADA,eAHA,qBACA,gBACA,UAGE,gBAAiB,WAGnB,mBACE,OAAQ,KAGV,mBACE,KAAM,KACN,UAAW,KAKb,cACE,OAAQ,KAGV,cACE,KAAM,KAGR,UAAW,UACT,iBAAkB,EAAE,EAItB,kBACE,KAAM,KACN,UAAW,IAIb,SACE,aAAc,IAIhB,sBACE,aAAc,IACd,OAAQ,KAGV,oBACE,KAAM,KACN,aAAc,IAIhB,QACE,aAAc,EAGhB,mBACE,aAAc,EACd,aAAc,IAIhB,sBACE,QAAS,EAGX,mCAAoC,mCAClC,aAAc,IAGhB,wBACE,QAAS,aAIX,WACE,KAAM,QACN,aAAc,GAIhB,kBACE,aAAc,GAKhB,gBACE,UAAW,KAGb,uBACE,QAAS,IAGX,sBACE,QAAS,IACT,KAAM,KACN,OAAQ,QACR,aAAc,EAIhB,UACE,KAAM,KAAK,WAIb,sBACE,QAAS,GAGX,YACE,gBAAiB,SACjB,eAAgB,EAChB,iBAAkB,KAClB,YAAa,KACb,mBAAoB,IAAI,IAAI,KAAK,KAAK,KACtC,gBAAiB,IAAI,IAAI,KAAK,KAAK,KACnC,WAAY,IAAI,IAAI,KAAK,KAAK,KAC9B,QAAS,GAGX,eACE,OAAQ,IAAI,MAAM,KAGpB,eACE,iBAAkB,KAClB,UAAW,KACX,QAAS,IAAI,IACb,WAAY,KACZ,MAAO,KAGT,eACE,UAAW,KACX,QAAS,IAAI,IACb,iBAAkB,KAClB,YAAa,IAAI,OAAO,KAG1B,oBACE,QAAS,aACT,MAAO,KACP,OAAQ,KACR,aAAc,IAGhB,qBACE,WAAY,MAId,SACE,aAAc,EACd,QAAS,GAIX,qBACE,kBAAmB,OACnB,UAAW,MAGb,yCACE,KAAM,QACN,OAAQ,KAGV,yCACE,KAAM,KACN,UAAW,KAGb,wCACE,KAAM,KAGR,wCACE,KAAM,KAGR,8BACE,KAAM,KAIR,+BACE,QAAS,EAGX,0CACE,QAAS,EAG6gB,gEAApX,yEAA4E,2EAAtO,yEAA4E,2EAAwO,oEAAuE,sEAAsN,gEAA7I,uEAAgN,uDAA+G,sDAAvD,sDAAttB,SACE,SAAU,SACV,MAAO,IACP,OAAQ,IACR,OAAQ,KACR,QAAS,EACT,SAAU,OACV,KAAM,cACN,OAAQ,EAGV;;;;AAKA,iCACE,WAAY,KAGd,+CACE,OAAQ,IAAI,EACZ,QAAS,IACT,MAAO,KAGT,yBACE,8DACE,MAAO,MAIX,yBACE,8DACE,MAAO,MAIX,0BACE,8DACE,MAAO,MAI4C,qDAAvD,sDACE,QAAS,GACT,QAAS,aACT,SAAU,SAGZ,6DACE,YAAa,IAAI,MAAM,YACvB,aAAc,IAAI,MAAM,YACxB,cAAe,IAAI,MAAM,KACzB,oBAAqB,eACrB,IAAK,KACL,KAAM,IAGR,4DACE,YAAa,IAAI,MAAM,YACvB,aAAc,IAAI,MAAM,YACxB,cAAe,IAAI,MAAM,KACzB,IAAK,KACL,KAAM,IAGR,0DACE,YAAa,IAAI,MAAM,YACvB,aAAc,IAAI,MAAM,YACxB,WAAY,IAAI,MAAM,KACtB,iBAAkB,eAClB,OAAQ,KACR,KAAM,IAGR,yDACE,YAAa,IAAI,MAAM,YACvB,aAAc,IAAI,MAAM,YACxB,WAAY,IAAI,MAAM,KACtB,OAAQ,KACR,KAAM,IAGR,iEACE,KAAM,KACN,MAAO,IAGT,gEACE,KAAM,KACN,MAAO,IAGT,gDACE,OAAQ,EAGV,gDACE,QAAS,IAAI,EAGf,uDACE,WAAY,KAGd,kDAAmD,oDAAqD,oDACtG,MAAO,KACP,YAAa,IACb,UAAW,IACX,OAAQ,EAGV,qDACE,QAAS,IAGX,yEACE,QAAS,kBAGX,2EACE,QAAS,oBAGX,yEACE,QAAS,kBAGX,2EACE,QAAS,oBAGX,oEACE,QAAS,aAGX,sEACE,QAAS,eAGX,uEACE,QAAS,eAGX,gEACE,QAAS,mBAGX,gEACE,QAAS,wBAGX,gDACE,WAAY,OAGd,uDACE,QAAS,+BAGX,mDACE,QAAS,EACT,OAAQ,EACR,OAAQ,KACR,MAAO,KACP,YAAa,QAGf,wDACE,YAAa,IACb,OAAQ,MACR,MAAO,KAGT,uCACE,MAAO,KACP,OAAQ,EAGV,0CACA,0CACE,WAAY,OACZ,cAAe,IAGjB,0CACE,OAAQ,KACR,YAAa,KACb,MAAO,KAGT,wDACE,MAAO,MAGT,mDAAoD,yDAClD,WAAY,IACZ,MAAO,QACP,OAAQ,YAGV,sDACE,QAAS,iBAGX,sDACE,QAAS,aAGX,+DACE,OAAQ,QAGV,qEACE,WAAY,IAGd,0CACE,OAAQ,KACR,YAAa,KACb,MAAO,KAGT,6CACE,UAAW,KACX,OAAQ,KACR,YAAa,KACb,MAAO,QAGT,8CACE,OAAQ,KACR,YAAa,KACb,MAAO,KAGT,oDAAqD,qDAAsD,uDAAwD,uDACjK,WAAY,IACZ,OAAQ,QAGqC,8CAA/C,8CACE,MAAO,QAGT,gDACE,SAAU,SAGZ,uDACE,QAAS,GACT,QAAS,aACT,OAAQ,MAAM,YACd,aAAc,EAAE,EAAE,IAAI,IACtB,oBAAqB,QACrB,iBAAkB,eAClB,SAAU,SACV,OAAQ,IACR,MAAO,IAGT,iDAAkD,uDAChD,iBAAkB,QAClB,MAAO,KACP,YAAa,EAAE,KAAK,EAAE,gBAGxB,8DACE,oBAAqB,KAGvB,mDAAoD,yDAClD,WAAY,IACZ,MAAO,QACP,OAAQ,YAGV,+CACE,QAAS,aACT,MAAO,KACP,OAAQ,KACR,YAAa,KACb,OAAQ,IAAI,MACZ,OAAQ,QACR,cAAe,IAGjB,qDACE,WAAY,IAGd,sDACE,iBAAkB,QAClB,MAAO,KACP,YAAa,EAAE,KAAK,EAAE,gBAGxB,mDACE,MAAO,QAGT,wDAAyD,8DACvD,WAAY,IACZ,MAAO,QACP,OAAQ,YAGV,uDACE,OAAQ,KACR,YAAa,KAGf,qCACE,OAAQ,QAGV,kBACE,SAAU,OACV,cAAe,SACf,YAAa,OACb,UAAW,OAGb,OACE,aAAc,IACd,aAAc,KACd,cAAe,KACf,SAAU,SACV,UAAW,WAGb,mBACE,MAAO,QAGT,yBACE,MAAO,QAGT,uBACE,WAAY,KAGd,eACE,UAAW,KACX,SAAU,SACV,KAAM,KACN,IAAK,KAGP,cACE,QAAS,IAIU,oBAArB,oBACE,QAAS,EAIX,oBACE,MAAO,QAGT,mBACE,cAAe,KAGjB,0BACE,MAAO,MACP,IAAK,IAGP,OACE,YAAa,IAGf,uBACE,YAAa,IAGf,YACE,aAAc,EAGhB,2BACE,YAAa,IAGf,eACE,QAAS,OAIX,yBACE,MAAO,QACP,QAAS,IACT,YAAa,YACb,UAAW,KACX,QAAS,EAAE,IAAI,EAAE,IAGnB,KACE,mBAAoB,EAAE,IAAI,IAAI,eAC9B,WAAY,EAAE,IAAI,IAAI,eAGxB,YACE,mBAAoB,MAAM,EAAE,IAAI,IAAI,eACpC,WAAY,MAAM,EAAE,IAAI,IAAI,eAG9B,cAAe,eACf,wBACE,iBAAkB,kBAClB,iBAAkB,eAClB,aAAc,kBACd,MAAO,kBACP,QAAS,EAGX,qBAAsB,sBACtB,+BACE,mBAAoB,KACpB,WAAY,KAGd,uBAAwB,wBACxB,iCACE,iBAAkB,sBAClB,OAAQ,EAGV,YACE,iBAAkB,QAClB,iBAAkB,iDAClB,iBAAkB,4CAClB,iBAAkB,+CAClB,kBAAmB,SAEnB,aAAc,QACd,MAAO,KAIT,8CAD0D,mBAApB,mBAAnB,kBAAnB,kBAEE,iBAAkB,QAClB,iBAAkB,KAClB,aAAc,QACd,MAAO,KAIT,8CADoB,mBAApB,mBAEE,iBAAkB,KAMpB,oDADA,oDADA,oDADkI,yBAA1B,yBAA1B,yBAA1B,yBAA1B,yBAA1B,yBAIE,iBAAkB,QAClB,aAAc,QAGhB,qBAA2G,4BAA7B,4BAA5B,2BAA5B,2BAAkH,sBAA+G,6BAA9B,6BAA7B,4BAA7B,4BAC/J,+BAIA,sCADA,sCADA,qCADA,qCAIE,iBAAkB,QAClB,aAAc,QAGhB,aACE,iBAAkB,QAClB,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAEnB,aAAc,KACd,MAAO,QAIT,gDAD6D,oBAArB,oBAApB,mBAApB,mBAEE,iBAAkB,QAClB,iBAAkB,KAClB,aAAc,KACd,MAAO,QAIT,gDADqB,oBAArB,oBAEE,iBAAkB,KAMpB,sDADA,sDADA,sDADuI,0BAA3B,0BAA3B,0BAA3B,0BAA3B,0BAA3B,0BAIE,iBAAkB,QAClB,aAAc,QAGhB,sBAA+G,6BAA9B,6BAA7B,4BAA7B,4BAAsH,uBAAmH,8BAA/B,8BAA9B,6BAA9B,6BACrK,gCAIA,uCADA,uCADA,sCADA,sCAIE,iBAAkB,QAClB,aAAc,KAGhB,UAAW,iBACT,mBAAoB,KACpB,WAAY,KAGd,aACE,iBAAkB,QAClB,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAEnB,aAAc,QACd,MAAO,KAIT,gDAD6D,oBAArB,oBAApB,mBAApB,mBAEE,iBAAkB,QAClB,iBAAkB,KAClB,aAAc,QACd,MAAO,KAIT,gDADqB,oBAArB,oBAEE,iBAAkB,KAMpB,sDADA,sDADA,sDADuI,0BAA3B,0BAA3B,0BAA3B,0BAA3B,0BAA3B,0BAIE,iBAAkB,QAClB,aAAc,QAGhB,sBAA+G,6BAA9B,6BAA7B,4BAA7B,4BAAsH,uBAAmH,8BAA/B,8BAA9B,6BAA9B,6BACrK,gCAIA,uCADA,uCADA,sCADA,sCAIE,iBAAkB,QAClB,aAAc,QAIhB,mBADS,mBAAT,QAEE,YAAa,IAGf,OACE,YAAa,YACb,YAAa,IACb,OAAQ,IACR,SAAU,SACV,eAAgB,SAChB,MAAO,KAGT,cACE,OAAQ,EACR,QAAS,IACT,KAAM,EACN,YAAa,KACb,SAAU,SACV,WAAY,OACZ,IAAK,KACL,MAAO,EAGT,sBACE,QAAS,IAGX,uBACE,QAAS,IAAI,KAAK,yBAClB,eAAgB,KAGlB,wBACE,iBAAkB,QAClB,OAAQ,IACR,OAAQ,IAAI,IACZ,SAAU,OAGZ,oBACE,aAAc,YACd,aAAc,MACd,aAAc,IAAI,EAClB,QAAS,IAAI,KAGgB,0BAA/B,0BACE,aAAc,QAIhB,2BACE,iBAAkB,QAClB,aAAc,QACd,MAAO,eAIT,yBAAkE,+BAApC,+BAC5B,iBAAkB,kBAClB,aAAc,kBAIhB,2BAAsE,iCAAtC,iCAC9B,aAAc,YAGhB,2BACE,iBAAkB,QAClB,aAAc,QACd,MAAO,KAGT,iCACE,MAAO,qBAG6B,iCAAtC,iCACE,aAAc,YAGhB,iBACE,aAAc,KACd,cAAe,KACf,eAAgB,UAGlB,0BACA,yBACA,gCACE,WAAY,KAGd,uBACE,cAAe,KAGjB,kBACE,SAAU,SAGZ,0BACE,iBAAkB,QAClB,aAAc,QAGhB,uCACE,QAAS,MAGX,4BACE,MAAO,eAGT,2CACE,KAAM,KACN,YAAa,KACb,MAAO,KAGT,oBACE,cAAe,eAGjB,0BACE,QAAS,IACT,YAAa,YACb,QAAS,MACT,SAAU,SACV,MAAO,KACP,IAAK,IAGP,iCACE,KAAM,KACN,WAAY,EACZ,IAAK,KAGP,yCACE,OAAQ,KACR,IAAK,KAGP,8CACE,QAAS,MAIX,6BADA,8CAEE,MAAO,QACP,UAAW,KACX,YAAa,EACb,QAAS,IAAI,KACb,YAAa,MACb,aAAc,MAIhB,oCACA,mCACA,mCAHA,qDAAwD,oDAAuD,oDAI7G,MAAO,QAGT,6BACE,YAAa,KAGf,kCACE,KAAM,MACN,WAAY,KAGd,sDACE,KAAM,KACN,MAAO,MAGT,4DAA6D,6DAC3D,KAAM,KACN,MAAO,IAGT,wCAAyC,yCACvC,oBAAqB,KACrB,oBAAqB,MACrB,oBAAqB,KACrB,YAAa,KAAK,MAAM,YACxB,aAAc,KAAK,MAAM,YACzB,QAAS,GACT,QAAS,aACT,KAAM,IACN,SAAU,SACV,IAAK,MAGP,wCACE,oBAAqB,KACrB,IAAK,MAGP,yCACE,cAAe,KACf,WAAY,EAGd,+CAAgD,gDAC9C,cAAe,KACf,iBAAkB,KAClB,iBAAkB,MAClB,iBAAkB,KAClB,OAAQ,MACR,IAAK,KAGP,+CACE,iBAAkB,KAClB,OAAQ,MAGV,yBACE,YAAa,IACb,cAAe,IAGjB,yBACE,MAAO,KAGT,kBACE,MAAO,QACP,cAAe,KAGjB,wBAAyB,wBACzB,iCACE,mBAAoB,KACpB,WAAY,KACZ,MAAO,QAGT,8BAA+B,8BAC/B,uCACE,aAAc,KAGhB,oBACE,aAAc,QAGhB,+BACE,aAAc,KAGhB,iCACE,aAAc,QAGhB,iCACE,aAAc,QAGhB,qBACA,4BACA,0BACA,kBACA,yBACA,0BACA,iCACA,uBACA,8BAA+B,uBAC/B,8BACA,4BACA,oBACA,2BACA,4BACA,mCACA,yBACA,gCAAiC,uBACjC,8BACA,4BACA,oBACA,2BACA,4BACA,mCACA,yBACA,gCACE,MAAO,QAGT,YACE,cAAe,EAGjB,mCACE,mBAAoB,KACpB,WAAY,KAGd,MACE,YAAa,IAGf,wBACE,MAAO,KACP,QAAS,IACT,YAAa,IAGf,iBACE,MAAO,KAGT,mBACE,aAAc,QACd,aAAc,MACd,aAAc,IAAI,EAAE,EACpB,WAAY,KACZ,QAAS,KAAK,EAAE,EAGlB,0BACE,OAAQ,KACR,UAAW,KACX,OAAQ,EACR,cAAe,KACf,MAAO,KAGT,0CACE,OAAQ,QACR,UAAW,KACX,MAAO,KAGT,OACE,cAAe,EACf,UAAW,KACX,YAAa,IAGf,UACA,UACA,UACA,UACA,UACA,UACE,UAAW,IAGb,YACE,WAAY,IAAI,MAAM,QAGxB,yCACE,WAAY,EAGd,iBACE,YAAa,EACb,aAAc,EAGhB,yBACE,YAAa,IAGf,cACE,iBAAkB,QAClB,cAAe,KACf,QAAS,KAAK,KAGhB,qBACE,WAAY,IAGd,aACE,UAAW,KACX,YAAa,IAGf,cACE,WAAY,KACZ,WAAY,KACZ,QAAS,KAAK,KAAK,KAGrB,mBACE,aAAc,KACd,cAAe,KAGjB,kCACE,aAAc,IAGhB,mCACE,YAAa,IAGf,YACA,eACE,iBAAkB,QAClB,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAEnB,aAAc,KACd,MAAO,QACP,MAAO,QACP,YAAa,IACb,YAAa,KACb,QAAS,IAAI,KAIf,8CAAmD,2BADa,mBAAtB,mBAArB,kBAArB,kBAMA,iDACA,8BAFA,sBADA,sBADA,qBADA,qBAME,iBAAkB,QAClB,iBAAkB,KAClB,aAAc,KACd,MAAO,QAIT,8CAAmD,2BAD7B,mBAAtB,mBAIA,iDACA,8BAFA,sBADA,sBAIE,iBAAkB,KAMpB,oDADA,oDADA,oDAEqI,iCAAtC,iCAAtC,iCAHmF,yBAA5B,yBAA5B,yBAA5B,yBAA5B,yBAA5B,yBAYA,uDADA,uDADA,uDAKA,oCADA,oCADA,oCAJA,4BADA,4BADA,4BADA,4BADA,4BADA,4BAYE,iBAAkB,QAClB,aAAc,QAGhB,qBAAmH,4BAA/B,4BAA9B,2BAA9B,2BAA0H,sBAAuH,6BAAhC,6BAA/B,4BAA/B,4BAM3K,wBAIA,+BADA,+BADA,8BADA,8BAIA,yBAIA,gCADA,gCADA,+BADA,+BAXA,+BAIA,sCADA,sCADA,qCADA,qCAcA,kCAQA,yCAFA,yCAFA,wCAFA,wCAQE,iBAAkB,QAClB,aAAc,KAGhB,eACA,kBACE,UAAW,KACX,eAAgB,IAChB,OAAQ,IAAI,EAGd,mBACE,iBAAkB,KAClB,mBAAoB,MAAM,EAAE,IAAI,IAAI,iBACpC,WAAY,MAAM,EAAE,IAAI,IAAI,iBAC5B,QAAS,EAGX,mBAGA,0BADA,yBADA,yBAGA,sBACE,WAAY,QACZ,mBAAoB,KACpB,WAAY,KACZ,MAAO,QACP,OAAQ,YAGV,kBACA,qBACE,YAAa,IAGf,sBACA,yBACE,aAAc,IAGhB,eACA,kBACE,YAAa,IACb,YAAa,KACb,QAAS,IAAI,KAGf,kBACA,qBACE,UAAW,KAGb,iBACA,oBACE,iBAAkB,QAClB,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAEnB,aAAc,KACd,MAAO,QACP,OAAQ,QACR,YAAa,IACb,QAAS,IAAI,KAIf,wDAAiE,qCADoB,wBAA7B,wBAA5B,uBAA5B,uBAMA,2DACA,wCAFA,2BADA,2BADA,0BADA,0BAME,iBAAkB,QAClB,iBAAkB,KAClB,aAAc,KACd,MAAO,QAIT,wDAAiE,qCADpC,wBAA7B,wBAIA,2DACA,wCAFA,2BADA,2BAIE,iBAAkB,KAMpB,8DADA,8DADA,8DAE+K,2CAApD,2CAApD,2CAHwG,8BAAnC,8BAAnC,8BAAnC,8BAAnC,8BAAnC,8BAYA,iEADA,iEADA,iEAKA,8CADA,8CADA,8CAJA,iCADA,iCADA,iCADA,iCADA,iCADA,iCAYE,iBAAkB,QAClB,aAAc,QAGhB,0BAA+I,iCAAtC,iCAArC,gCAArC,gCAAsJ,2BAAmJ,kCAAvC,kCAAtC,iCAAtC,iCAMrN,6BAIA,oCADA,oCADA,mCADA,mCAIA,8BAIA,qCADA,qCADA,oCADA,oCAXA,oCAIA,2CADA,2CADA,0CADA,0CAcA,uCAQA,8CAFA,8CAFA,6CAFA,6CAQE,iBAAkB,QAClB,aAAc,KAGhB,oBACA,uBACE,UAAW,KACX,eAAgB,IAChB,OAAQ,IAAI,EAGd,wBACA,2BACE,mBAAoB,MAAM,EAAE,IAAI,IAAI,eACpC,WAAY,MAAM,EAAE,IAAI,IAAI,eAG9B,sBAA4D,4BAAjC,4BAC3B,yBAEA,+BADA,+BAEE,iBAAkB,QAClB,aAAc,KACd,mBAAoB,MAAM,EAAE,IAAI,IAAI,eACpC,WAAY,MAAM,EAAE,IAAI,IAAI,eAC5B,MAAO,QACP,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAOrB,wBAEA,8BADA,8BAJA,2BAEA,iCADA,iCAKE,mBAAoB,KACpB,WAAY,KACZ,OAAQ,YACR,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAIrB,oBACA,uBACE,QAAS,IAAI,IACb,UAAW,KACX,YAAa,IAGf,gCACA,mCACE,0BAA2B,IAC3B,uBAAwB,IAG1B,+BACA,kCACE,2BAA4B,IAC5B,wBAAyB,IAG3B,oBACA,uBACE,YAAa,IAGf,uBACA,0BACE,UAAW,KACX,WAAY,IAGd,4BACE,iBAAkB,QAClB,OAAQ,IAAI,MAAM,QAClB,QAAS,KACT,UAAW,KACX,gBAAiB,cAGnB,qDACE,WAAY,KAGd,wCACE,YAAa,SACb,QAAS,KACT,UAAW,EACX,MAAO,KACP,OAAQ,IAGV,yBACE,wCACE,MAAO,MAIX,mDACE,gBAAiB,SACjB,MAAO,MAGT,yBACE,mDACE,MAAO,MAIX,2FACA,0EACE,QAAS,KACT,MAAO,KACP,cAAe,EACf,YAAa,EACb,aAAc,IACd,MAAO,KAGT,uDACE,UAAW,KAGb,gDACE,YAAa,KACb,aAAc,IACd,QAAS,EAAE,IAAI,IACf,WAAY,MACZ,MAAO,MAGT,wCACE,QAAS,KACT,OAAQ,EAAE,EAAE,EAAE,KAGhB,0CACE,MAAO,KAGT,yBACE,0CACE,QAAS,OAIb,aACE,YAAa,IAGf,oBACE,MAAO,QAGT,2BACE,WAAY,KAGd,4BACE,aAAc,KACd,iBAAkB,KAGpB,2CACE,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAIrB,uEACE,WAAY,IAAI,MAAM,QAGxB,yBACE,aAAc,QAGhB,wCACE,iBAAkB,QAGpB,wCACE,iBAAkB,QAGpB,4BACE,aAAc,QAGhB,2CACE,iBAAkB,QAGpB,2CACE,iBAAkB,QAGpB,wCACE,iBAAkB,QAGpB,4BACE,aAAc,QAGhB,2CACE,iBAAkB,QAGpB,2CACE,iBAAkB,QAGpB,wCACE,iBAAkB,QAGpB,2CACE,iBAAkB,QAGpB,4BACE,aAAc,QAGhB,2CACE,iBAAkB,QAGpB,2CACE,iBAAkB,QAGpB,wCACE,iBAAkB,QAGpB,2CACE,iBAAkB,QAGpB,2CACE,iBAAkB,QAGpB,2BACE,aAAc,KAGhB,0CACE,iBAAkB,QAGpB,0CACE,iBAAkB,KAGpB,uCACE,iBAAkB,KAGpB,0CACE,iBAAkB,KAGpB,0CACE,iBAAkB,KAGpB,0CACE,iBAAkB,KAGpB,0BACE,YAAa,IACb,YAAa,EAGf,4BACE,MAAO,QACP,YAAa,IAGf,mCACE,QAAS,QACT,QAAS,aACT,YAAa,YACb,UAAW,KACX,aAAc,IACd,WAAY,OACZ,eAAgB,EAChB,MAAO,IAGT,kCACE,QAAS,EACT,gBAAiB,KAGnB,kCACE,gBAAiB,KAGnB,6CACE,QAAS,QAGX,SACE,mBAAoB,EAAE,IAAI,IAAI,gBAC9B,WAAY,EAAE,IAAI,IAAI,gBACtB,QAAS,EAGX,iBACE,MAAO,QACP,YAAa,KACb,QAAS,KAAK,KAGhB,eACE,cAAe,KACf,cAAe,EACf,MAAO,QACP,UAAW,KACX,YAAa,IACb,WAAY,KAGd,sBACE,OAAQ,KACR,SAAU,SACV,MAAO,IACP,IAAK,IAGP,wBACE,cAAe,KAGjB,gCACE,KACE,oBAAqB,EAAE,EAEzB,GACE,oBAAqB,KAAK,GAI9B,UACE,mBAAoB,MAAM,EAAE,EAAE,IAAI,gBAClC,WAAY,MAAM,EAAE,EAAE,IAAI,gBAG5B,8BAA+B,mCAC7B,SAAU,QACV,SAAU,SAGZ,8BACE,YAAa,KAGf,sBACE,OAAQ,KACR,cAAe,KAGjB,sBACE,OAAQ,IACR,cAAe,IAGjB,oCACE,cAAe,EACf,WAAY,IAGd,cACE,WAAY,KAGd,wCACA,yCACA,6CACE,MAAO,QACP,SAAU,SACV,WAAY,MAGd,wCACE,UAAW,KACX,KAAM,MACN,IAAK,EACL,MAAO,KAGT,yCACA,6CACE,UAAW,KACX,SAAU,OACV,MAAO,EACP,cAAe,SACf,YAAa,OAGf,gDACA,oDACE,YAAa,IAGf,yCACE,UAAW,KACX,IAAK,EAGP,6CACE,UAAW,IACX,IAAK,MAGP,oDACA,yDACE,UAAW,KAGb,2BACE,YAAa,KAGf,2BACE,YAAa,IAGf,wBACE,WAAY,IAGd,oBACE,SAAU,SAGZ,8CACE,aAAc,KAGhB,yCACE,cAAe,KAGjB,sBACE,cAAe,KACf,UAAW,IACX,SAAU,OACV,cAAe,SACf,YAAa,OAGf,6BACE,UAAW,SACX,YAAa,IACb,YAAa,EACb,aAAc,IAGhB,0BACA,8BACE,UAAW,KACX,aAAc,IAGhB,iDACE,KAAM,EACN,cAAe,EACf,UAAW,KACX,SAAU,SACV,IAAK,EAGP,+BACE,YAAa,OAMf,mBADA,mBAGA,mBADA,mBAHA,mBADA,mBAME,QAAS,IAAI,KAAK,IAMpB,2BADA,2BAGA,2BADA,2BAHA,2BADA,2BAME,gBAAiB,KAInB,mBACA,mBAFA,mBAGE,YAAa,YACb,WAAY,OACZ,YAAa,IAGf,aACE,gBAAiB,YACjB,iBAAkB,QAClB,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAIrB,gBACE,OAAQ,IAAI,MAAM,QAMpB,4BADA,4BAGA,4BADA,4BAHA,4BADA,4BAME,OAAQ,IAAI,MAAM,QAIpB,4BADA,4BAEE,oBAAqB,IAGvB,0CACE,iBAAkB,QAGpB,yCACE,iBAAkB,YAGpB,+BACA,+BACE,iBAAkB,QAClB,oBAAqB,QAGvB,4BACE,YAAa,KACb,aAAc,KAGhB,0BACE,QAAS,aACT,UAAW,KACX,aAAc,IACd,UAAW,KACX,WAAY,OAGoB,mCAAlC,iCACE,OAAQ,QAGV,6BACE,iBAAkB,QAGpB,UACE,UAAW,KAGb,eACE,MAAO,QACP,aAAc,KACd,eAAgB,IAChB,YAAa,IAGf,sBAA2B,qBAA0B,qBACnD,WAAY,IACZ,aAAc,QACd,MAAO,QAGT,4BACE,WAAY,EACZ,aAAc,QAGhB,uCACE,MAAO,KAGT,uBAA0B,gCACxB,UAAW,KAGb,wCAA+C,iDAC7C,aAAc,KAGhB,+CAAsD,wDACpD,KAAM,eAGR,kBAAgD,wBAA3B,wBACnB,iBAAkB,YAClB,aAAc,QAGhB,yBACE,2BACE,cAAe,IAAI,MAAM,SAI7B,4CACE,aAAc,KAGhB,gCACE,cAAe,EAGjB,uCACE,KAAM,YACN,MAAO,YAGT,gBACE,cAAe,EAGjB,gCACE,WAAY,QACZ,OAAQ,KACR,QAAS,GACT,QAAS,MACT,OAAQ,IACR,KAAM,KACN,SAAU,SACV,MAAO,KAGT,yBAA8B,gCAAqC,+BAAoC,+BACrG,iBAAkB,YAClB,OAAQ,YACR,MAAO,QAG4B,uCAArC,gCAAiF,sCAA2C,sCAC1H,WAAY,QAGd,8BACE,aAAc,EAGhB,qCACE,KAAM,YAGR,kBACE,OAAQ,EACR,YAAa,EACb,aAAc,EACd,eAAgB,KAChB,YAAa,KAGf,gCAAqC,+BAAoC,+BACvE,WAAY,KACZ,OAAQ,KACR,QAAS,GACT,QAAS,MACT,OAAQ,IACR,KAAM,KACN,SAAU,SACV,MAAO,KAGT,+BACE,KAAM,KACN,WAAY,IAGd,0CACE,KAAM,KACN,MAAO,KAGT,qBAAsD,2BAA9B,2BACtB,iBAAkB,YAGpB,SACE,UAAW,KACX,YAAa,IAGf,eACE,QAAS,IAAI,KACb,WAAY,KAId,IAEA,IAHA,GAEA,GAEE,YAAa,IAGf,sBACE,WAAY,IAGd,gCACE,aAAc,IAGhB,yBACE,wBACE,YAAa,MAEf,yBACE,aAAc,MAEhB,kCACE,aAAc,MAIlB,gBACE,iBAAkB,QAClB,iBAAkB,kCAClB,oBAAqB,MAAM,OAC3B,kBAAmB,UACnB,gBAAiB,MAAM,KAGzB,yBACE,gBACE,gBAAiB,MAIrB,4BACE,MAAO,KACP,eAAgB,KAChB,aAAc,KACd,cAAe,KAGjB,yBACE,4BACE,aAAc,KACd,cAAe,MAInB,8BACE,iBAAkB,YAGpB,8BACE,MAAO,KAGT,qBACE,cAAe,KACf,WAAY,KAGd,+BACE,aAAc,KAGhB,cACE,UAAW,KAGb,gBACE,QAAS,aACT,SAAU,QAGZ,sCACE,SAAU,SACV,MAAO,IACP,OAAQ,IACR,OAAQ,KACR,QAAS,EACT,SAAU,OACV,KAAM,cACN,OAAQ,EAGV,0CACE,OAAQ,YAGV,oCACE,QAAS,KACT,UAAW,KAGb,qCACE,MAAO,KAGT,qCACE,QAAS,KACT,YAAa,QACb,YAAa,OAGf,yBACE,gDACE,KAAM,EAAE,EAAE,KAId,gDACE,UAAW,KAGb,yBACE,gDACE,eAAgB,OAChB,WAAY,OACZ,QAAS,KAAK,GAIlB,qDACE,QAAS,EAGX,yBACE,qEACE,QAAS,IAEX,0EACE,KAAM,EAAE,EAAE,EACV,WAAY,KAEd,2EACE,KAAM,GAIV,+BACE,QAAS,IACT,UAAW,MAGb,qCACE,aAAc,MACd,aAAc,IACd,aAAc,YAGhB,2CACE,iBAAkB,QAClB,aAAc,KACd,MAAO,QACP,gBAAiB,KACjB,mBAAoB,EAAE,EAAE,IAAI,EAAE,QAC9B,WAAY,EAAE,EAAE,IAAI,EAAE,QAGxB,0CACE,UAAW,MACX,WAAY,OACZ,MAAO,eAGT,yBACE,0CACE,UAAW,KAIf,+CACE,aAAc,cAGhB,yBACE,+CACE,WAAY,IACZ,MAAO,GAKgD,kCAC3D,wCAFA,kDACA,wDAE+D,sCAC/D,4CAF2C,sDAC3C,4DAEE,iBAAkB,QAClB,MAAO,QAGT,yBAE6D,kCAC3D,wCAFA,kDACA,wDAE+D,sCAC/D,4CAF2C,sDAC3C,4DAEE,iBAAkB,QAClB,aAAc,QACd,MAAO,SAIX,yBAC2E,oDAAzE,oEAA+M,wDAA7E,wEAChI,aAAc,KAEmF,8EAAnG,8FAA6R,kFAAvG,kGACpL,cAAe,MAMnB,4CAD6D,qDAA7D,4DADA,qEAIA,gDADiE,yDAAjE,gEAD6C,yEAG3C,iBAAkB,QAClB,MAAO,QACP,WAAY,KACZ,gBAAiB,KACjB,aAAc,EACd,QAAS,MACT,aAAc,KAKhB,qDADsE,8DAAtE,qEADA,8EAIA,yDAD0E,kEAA1E,yEADsD,kFAGpD,MAAO,kBAGT,yBAGE,4CAD6D,qDAA7D,4DADA,qEAIA,gDADiE,yDAAjE,gEAD6C,yEAG3C,YAAa,IAAI,MAAM,QACvB,QAAS,IAAI,KACb,YAAa,GAIgD,gDAAjE,gEAAuL,oDAArE,oEAChH,cAAe,IAGjB,yBACmE,gDAAjE,gEAAuL,oDAArE,oEAChH,QAAS,GAIqD,iDAAlE,iEAA0L,qDAAtE,qEAClH,QAAS,OACT,SAAU,SAGqD,gDAAjE,gEAAuL,oDAArE,oEAChH,SAAU,OACV,MAAO,KAG8D,sDAAvE,sEAAyM,0DAA3E,0EAC5H,iBAAkB,YAClB,aAAc,YACd,mBAAoB,KACpB,WAAY,KAGyD,sDAAvE,sEAAyM,0DAA3E,0EAC5H,SAAU,OAGZ,yBAC8C,2BAA5C,2CAAwH,+BAAhD,+CACtE,QAAS,aACT,SAAU,QAEsD,iDAAlE,iEAA0L,qDAAtE,qEAClH,SAAU,SACV,MAAO,IACP,OAAQ,IACR,OAAQ,KACR,QAAS,EACT,SAAU,OACV,KAAM,cACN,OAAQ,EAE4D,qDAAtE,qEAAsM,yDAA1E,yEAC1H,OAAQ,YAEwD,+CAAlE,+DAA0L,mDAAtE,mEAClH,QAAS,KACT,UAAW,KAEoD,gDAAjE,gEAAuL,oDAArE,oEAChH,MAAO,KAEwD,gDAAjE,gEAAuL,oDAArE,oEAChH,QAAS,KACT,YAAa,QACb,YAAa,QAIjB,+CAC8E,2DAA5E,2EAAwN,+DAAhF,+EACtI,KAAM,EAAE,EAAE,KAId,yBAC8E,2DAA5E,2EAAwN,+DAAhF,+EACtI,UAAW,MAIf,+CAC8E,2DAA5E,2EAAwN,+DAAhF,+EACtI,eAAgB,OAChB,WAAY,OACZ,QAAS,KAAK,GAIlB,yBACmF,gEAAjF,gFAAuO,oEAArF,oFAChJ,QAAS,GAIb,+CACmG,gFAAjG,gGAAuR,oFAArG,oGAChL,QAAS,IAE2F,qFAAtG,qGAAsS,yFAA1G,yGAC1L,KAAM,EAAE,EAAE,EACV,WAAY,KAEyF,sFAAvG,sGAAyS,0FAA3G,0GAC5L,KAAM,GAIV,yBAC6D,0CAA3D,0DAAqK,8CAA/D,8DACpG,QAAS,IACT,UAAW,MAEoD,gDAAjE,gEAAuL,oDAArE,oEAChH,aAAc,MACd,aAAc,IACd,aAAc,YAEuD,sDAAvE,sEAAyM,0DAA3E,0EAC5H,iBAAkB,QAClB,aAAc,KACd,MAAO,QACP,gBAAiB,KACjB,mBAAoB,EAAE,EAAE,IAAI,EAAE,QAC9B,WAAY,EAAE,EAAE,IAAI,EAAE,QAE8C,qDAAtE,qEAAsM,yDAA1E,yEAC1H,UAAW,MACX,WAAY,OACZ,MAAO,gBAIX,+CACwE,qDAAtE,qEAAsM,yDAA1E,yEAC1H,UAAW,KAIf,yBAIE,gDADA,yDADA,gEADA,yEAIE,QAAS,KAAK,KACd,YAAa,SAIjB,gBACE,iBAAkB,QAClB,OAAQ,IAAI,MAAM,QAClB,cAAe,IACf,cAAe,KACf,QAAS,KACT,WAAY,OAGd,yBACE,gBACE,QAAS,KAAK,MAIlB,yBACE,gBACE,QAAS,KAAK,OAIlB,qCACE,MAAO,QACP,UAAW,OACX,YAAa,OAGf,4CACE,WAAY,KAGd,iDACE,WAAY,KAGd,uBACE,aAAc,IAGhB,oCACE,aAAc,EAGhB,wDACE,QAAS,aAGX,2BACE,YAAa,EAGf,yCACE,QAAS,KAGX,mCACE,WAAY,KACZ,MAAO,KAGT,sCACE,QAAS,KACT,IAAK,KACL,MAAO,KAGT,6CACE,QAAS,QACT,YAAa,wBAGf,uCACE,iBAAkB,QAClB,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAEnB,aAAc,KACd,MAAO,QACP,SAAU,SAIZ,oGAD2I,8CAA/C,8CAA9C,6CAA9C,6CAEE,iBAAkB,QAClB,iBAAkB,KAClB,aAAc,KACd,MAAO,QAIT,oGAD+C,8CAA/C,8CAEE,iBAAkB,KAMpB,0GADA,0GADA,0GADyQ,oDAArD,oDAArD,oDAArD,oDAArD,oDAArD,oDAIE,iBAAkB,QAClB,aAAc,QAGhB,gDAAuN,uDAAxD,uDAAvD,sDAAvD,sDAA8N,iDAA2N,wDAAzD,wDAAxD,uDAAxD,uDACjU,0DAIA,iEADA,iEADA,gEADA,gEAIE,iBAAkB,QAClB,aAAc,KAGhB,8CACE,mBAAoB,MAAM,EAAE,IAAI,IAAI,eACpC,WAAY,MAAM,EAAE,IAAI,IAAI,eAG9B,6CACE,iBAAkB,KAClB,aAAc,eACd,MAAO,QACP,mBAAoB,MAAM,EAAE,IAAI,IAAI,iBACpC,WAAY,MAAM,EAAE,IAAI,IAAI,iBAG9B,mDACE,aAAc,QACd,QAAS,YACT,mBAAoB,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,mBAClE,WAAY,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,mBAG5D,mDACE,aAAc,kBAGhB,8DACE,aAAc,KACd,mBAAoB,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,KAClE,WAAY,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,KAG5D,gEACE,aAAc,QACd,mBAAoB,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,QAClE,WAAY,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,QAG5D,gEACE,aAAc,QACd,mBAAoB,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,QAClE,WAAY,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,QAG5D,mDACE,aAAc,kBAGhB,8DACE,aAAc,eAGhB,gEACE,aAAc,kBAGhB,gEACE,aAAc,kBAGhB,wDACE,aAAc,eAGhB,0DACE,aAAc,kBAGhB,0DACE,aAAc,kBAGhB,YACE,cAAe,IAGjB,+BACA,yBACA,yBACE,UAAW,KACX,YAAa,IAGf,kBACA,kBACE,YAAa,IAGf,wBACA,wBACE,cAAe,IAGjB,+BAAsE,wCAAyC,8CAA/E,qCAC9B,WAAY,kBACZ,MAAO,eACP,YAAa,KAGoB,oCAAnC,kCACE,WAAY,QAGd,iCAA0E,0CAA2C,gDAAnF,uCAChC,YAAa,KAGf,6BACE,cAAe,IAGjB,oCAAgF,6CAA8C,mDAAzF,0CACnC,WAAY,QACZ,YAAa,KAGf,mCACE,WAAY,QAId,8BADA,0CAEE,WAAY,QAGd,mCACE,cAAe,IAAI,EAAE,EAAE,IAGzB,kCACE,cAAe,EAAE,IAAI,IAAI,EAG3B,oCACE,iBAAkB,QAClB,aAAc,KACd,YAAa,WACb,QAAS,IAAI,IAGf,yCACE,cAAe,EAGjB,iCACE,mBAAoB,aAAa,YAAY,IAAI,CAAE,WAAW,YAAY,KAC1E,cAAe,aAAa,YAAY,IAAI,CAAE,WAAW,YAAY,KACrE,WAAY,aAAa,YAAY,IAAI,CAAE,WAAW,YAAY,KAGpE,uCACE,aAAc,QAGhB,wCACE,WAAY,KAGd,uCACE,aAAc,QACd,QAAS,YACT,mBAAoB,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,mBAClE,WAAY,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,mBAG5D,4CACE,aAAc,KAGhB,kDACE,aAAc,KACd,mBAAoB,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,KAClE,WAAY,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,KAG5D,8CACE,aAAc,QAGhB,oDACE,aAAc,QACd,mBAAoB,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,QAClE,WAAY,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,QAG5D,8CACE,aAAc,QAGhB,oDACE,aAAc,QACd,mBAAoB,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,QAClE,WAAY,MAAM,EAAE,IAAI,IAAI,gBAAoB,CAAE,EAAE,EAAE,IAAI,QAG5D,qDAA0D,4DACxD,iBAAkB,kBAClB,aAAc,kBACd,MAAO,kBAGT,2DAAgE,kEAC9D,MAAO,kBAGT,uDACE,MAAO,kBAGT,uDACE,iBAAkB,kBAClB,aAAc,kBACd,MAAO,eAGT,6DACE,MAAO,+BAGT,oDACE,WAAY,kBACZ,OAAQ,IAAI,cAGd,8CACE,MAAO,QACP,YAAa,IACb,QAAS,IAAI,KAGf,oDACE,QAAS,IAAI,KAGf,6DACE,MAAO,+BAGoD,4DAA7D,4DACE,MAAO,QAIT,2EADA,2EAEE,MAAO,QAGT,6BACE,QAAS,KACT,gBAAiB,cACjB,YAAa,YAGf,mBACE,MAAO,eAGT,iBACE,IAAK,MAGP,cACE,iBAAkB,QAClB,WAAY,MAAM,EAAE,IAAI,IAAI,cAAkB,CAAE,EAAE,EAAI,IAAI,QAC1D,OAAQ,IAAI,MAAM,KAGpB,kBACE,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAIrB,eACE,MAAO,KACP,OAAQ,KACR,OAAQ,IAAI,MAAM,KAGpB,aACE,iBAAkB,sBAClB,iBAAkB,6EAClB,mBAAoB,KACpB,WAAY,KAGd,WACE,QAAS,KACT,YAAa,OAGf,aACE,aAAc,KAGhB,uBACE,OAAQ,EAGV,mBACE,MAAO,KACP,KAAM,EAAE,EAAE,KAGZ,wEACA,uEACE,WAAY,QAGd,0CACE,WAAY,QACZ,WAAY,EAAE,EAAE,IAAI,eACpB,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAEnB,SAAU,SACV,QAAS,EAGX,oDACE,eAAgB,IAChB,YAAa,IAGf,yEACE,2BAA4B,IAG9B,uEACE,wBAAyB,IAG3B,iDACE,UAAW,IACX,KAAM,IACN,IAAK,IAGP,+DAAgE,6DAC9D,UAAW,KACX,YAAa,KACb,IAAK,EAGP,+DAAgE,6DAC9D,KAAM,IAGR,sBACE,WAAY,EAGd,2BACE,WAAY,IACZ,cAAe,IAAI,MAAM,sBACzB,WAAY,IAAI,MAAM,sBACtB,OAAQ,kBACR,cAAe,EACf,SAAU,OACV,QAAS,EAAE,KACX,cAAe,SACf,YAAa,OAGf,iCACE,WAAY,cAGd,yCACE,WAAY,cACZ,aAAc,sBACd,MAAO,kBAGT,6DACA,wDACE,MAAO,QAGT,oBACE,QAAS,aACT,UAAW,KACX,UAAW,KACX,WAAY,OAGd,sCACE,UAAW,KAGb,+BACE,aAAc,KAGhB,gCACE,OAAQ,kBAGV,qBACE,kBAAmB,UACnB,gBAAiB,QACjB,QAAS,aACT,OAAQ,OACR,YAAa,IACb,aAAc,IACd,eAAgB,OAChB,MAAO,KAGT,sBACE,aAAc,IAGhB,yBACE,MAAO,QACP,OAAQ,YAGV,0CACE,OAAQ,kBAGV,uBACE,QAAS,KAGX,oCACE,OAAQ,kBAGV,0CACE,iBAAkB,kBAClB,aAAc,kBAGhB,qCACE,OAAQ,kBAGV,mDACE,WAAY,kBACZ,aAAc,kBACd,MAAO,eAGT,cACE,OAAQ,IAAI,MAAM,YAGpB,wDACE,WAAY,KAGd,2DACE,cAAe,EAGjB,mEACE,cAAe,IACf,WAAY,KAGd,4BACE,WAAY,KAGd,mCACE,UAAW,KACX,aAAc,KAGhB,4BACE,QAAS,aACT,UAAW,KACX,QAAS,EAAE,KAAK,EAAE,KAGpB,wCACE,aAAc,EAGhB,uCACE,cAAe,EAGjB,0CACE,YAAa,IAAI,MAAM,QAGzB,sCACE,MAAO,QAGT,mDACA,uDACE,YAAa,KAGf,6BACE,WAAY,KAGd,6BACE,UAAW,KACX,YAAa,IACb,cAAe,EACf,WAAY,KAGd,iCACA,qCACE,UAAW,KACX,aAAc,IAGhB,uCACE,UAAW,KAGb,wDACE,OAAQ,IAAI,MAAM,QAClB,cAAe,IACf,QAAS,MACT,UAAW,KACX,OAAQ,MACR,YAAa,MACb,OAAQ,EAAE,KACV,WAAY,OACZ,MAAO,MAGT,kEACE,UAAW,KACX,OAAQ,KACR,YAAa,KACb,MAAO,KAGT,qCACE,SAAU,SACV,IAAK,KACL,KAAM,KAGR,0DACE,QAAS,KAGX,oFACE,QAAS,MAGX,yBACE,oFACE,WAAY,OAEd,4FACE,WAAY,SAIhB,0FACE,WAAY,QAGd,kCACE,SAAU,SAGZ,wCACE,mBAAoB,EAAE,IAAI,IAAI,gBAC9B,WAAY,EAAE,IAAI,IAAI,gBAGxB,yCACE,OAAQ,IAAI,MAAM,QAGpB,yCACE,OAAQ,QAGV,6CACE,UAAW,KACX,YAAa,IACb,cAAe,KAGjB,iDACA,qDACE,UAAW,KACX,aAAc,IAGhB,SACE,WAAY,KACZ,WAAY,IAAI,MAAM,YACtB,mBAAoB,EAAE,IAAI,IAAI,iBAC9B,WAAY,EAAE,IAAI,IAAI,iBACtB,OAAQ,EAAE,MAAM,KAChB,QAAS,EAAE,KAGb,0BACE,iBAAkB,QAGpB,4EACA,mDACE,MAAO,QAGT,gFACA,uDACE,MAAO,QAGT,sFACA,6DACE,MAAO,QAGT,kFACA,yDACE,MAAO,QAGT,kCACE,QAAS,EAAE,KACX,WAAY,OAGd,uCACE,eAAgB,KAChB,SAAU,SAGZ,yBACE,4BACE,YAAa,MAEf,6BACE,aAAc,IAAI,MAAM,QACxB,aAAc,OAIlB,wCACE,UAAW,KACX,YAAa,IAGf,uEACE,YAAa,EAGf,sHACE,YAAa,IAAI,MAAM,QACvB,YAAa,IACb,aAAc,KAGhB,4CAA6C,gDAC3C,UAAW,KACX,aAAc,IAGhB,cACE,OAAQ,KAAK,EAAE,EACf,QAAS,EAAE,EAAE,KAGf,wCACE,WAAY,KACZ,eAAgB,KAGlB,6CACE,cAAe,EACf,WAAY,EACZ,eAAgB,EAChB,SAAU,SACV,MAAO,KACP,IAAK,KAGP,kDACE,WAAY,KAGd,0BACE,cAAe,EAGjB,gBACE,iBAAkB,QAClB,WAAY,IAAI,MAAM,QACtB,OAAQ,EAAE,gBACV,QAAS,KAAK,KAAK,KAGrB,sBACA,0BACE,aAAc,IAGhB,2CACE,WAAY,KAGd,wBACE,aAAc,KACd,SAAU,SAGZ,4BACA,gCACE,UAAW,KACX,KAAM,EACN,SAAU,SACV,IAAK,EAIP,2CADA,4CAEE,MAAO,MACP,YAAa,KAGf,iBACE,cAAe,IAAI,MAAM,QACzB,OAAQ,EAAE,MAAM,KAChB,QAAS,EAAE,KAAK,EAGlB,4CACE,WAAY,KAGd,yBACE,MAAO,MACP,UAAW,KAGb,kBACE,UAAW,KACX,WAAY,KACZ,cAAe,KAGjB,+BACE,WAAY,EAGd,yBACE,0DACE,WAAY,MAIhB,eACE,UAAW,KACX,YAAa,IACb,OAAQ,KAAK,EACb,QAAS,EAGX,yCACE,UAAW,KACX,OAAQ,KAAK,EAAE,EAGjB,6CACA,iDACE,MAAO,QACP,UAAW,KACX,aAAc,IAGhB,+CACE,UAAW,KAGb,8EACE,QAAS,MACT,UAAW,KACX,YAAa,IACb,cAAe,IAGjB,8CACE,UAAW,KACX,WAAY,IAGd,gDACE,QAAS,aAGX,kDACA,sDACE,UAAW,KACX,aAAc,EACd,UAAW,KACX,SAAU,SACV,KAAM,KACN,WAAY,OACZ,IAAK,KAGP,6BACE,cAAe,IAAI,MAAM,QACzB,QAAS,MACT,OAAQ,KAAK,EAAE,KACf,QAAS,EAAE,EAAE,KACb,MAAO,KAGT,qEACA,2EACE,MAAO,KACP,YAAa,EAGf,qEACE,UAAW,KACX,YAAa,IACb,aAAc,KAGhB,sEACA,sEACE,QAAS,MAGX,sEACE,UAAW,KACX,cAAe,IAGjB,UACE,WAAY,QAGd,wBACE,QAAS,EAAE,KAGb,oCACE,YAAa,KAGf,oBACE,WAAY,KAGd,cACE,YAAa,MACb,aAAc,MAGhB,SACE,OAAQ,QAGV,QACE,YAAa,WAAW,CAAE,SAAS,CAAE,KAAK,CAAE,WAG9C,sBACE,OAAQ,QAGV,sBACE,QAAS,KAGX,mBACE,OAAQ,KAGV,cACE,OAAQ,QAGV,SACE,aAAc,IAGhB,YACE,WAAY,QACZ,mBAAoB,KACpB,WAAY,KACZ,QAAS,GAIX,eACE,WAAY,IACZ,OAAQ,EACR,MAAO,KACP,UAAW,KACX,QAAS,IAAI,KAGf,eACE,WAAY,IACZ,UAAW,KACX,QAAS,IAAI,KAAK,EAClB,cAAe,MAAM,IAAI,QAG3B,eACE,OAAQ,EAGV,qBACE,YAAa,EAGf,sBACA,kBACE,WAAY,QACZ,MAAO,KACP,QAAS,GAET,QAAS,IAAI,IAGf,UACA,UACE,iBAAkB,EAAE,EAGtB,oBACE,YAAa,KACb,aAAc,KAGhB,oBACE,UAAW,KACX,YAAa,IAGf,sBACE,UAAW,KACX,YAAa,IAGf,6BACE,QAAS,YACT,KAAM,QACN,OAAQ,QACR,aAAc,IAGhB,8CACE,QAAS,MAIX,6CACA,8CAFA,4CAA6C,6CAG3C,QAAS,KACT,eAAgB,IAChB,gBAAiB,OACjB,YAAa,OAGf,4CAA6C,6CAC3C,QAAS,YAIX,6CADA,4CAEE,eAAgB,YAGlB,OACE,YAAa,KACb,QAAS,EACT,SAAU,SACV,QAAS,GAIG,aAAd,aACE,QAAS,GAIX,4BACE,QAAS,EAGX,gBACE,SAAU,SACV,QAAS,IAGX,mBACE,iBAAkB,KAClB,OAAQ,IAAI,MAAM,KAClB,cAAe,IACf,mBAAoB,EAAE,IAAI,KAAK,iBAC/B,WAAY,EAAE,IAAI,KAAK,iBACvB,gBAAiB,YACjB,WAAY,KACZ,OAAQ,KAAK,EAAE,EAAE,EACjB,QAAS,IAAI,KACb,MAAO,MACP,QAAS,KAGX,yBACE,YAAa,IACb,cAAe,IACf,WAAY,IACZ,aAAc,KAGhB,6BACE,iBAAkB,KAClB,OAAQ,KACR,KAAM,EACN,SAAU,MACV,IAAK,EACL,MAAO,KACP,QAAS,IAGX,mBACE,iBAAkB,QAClB,OAAQ,IAAI,MAAM,QAClB,cAAe,KACf,QAAS,IACT,SAAU,SACV,WAAY,OAGd,wBACE,mBAAoB,KACpB,WAAY,KAGd,2BACE,SAAU,SACV,MAAO,IACP,WAAY,KACZ,IAAK,IAGP,4CACE,cAAe,KAGjB,sCACE,SAAU,SAGZ,4CACE,OAAQ,IAAI,MAAM,KAClB,OAAQ,KAGV,yBACE,4CACE,MAAO,OAIX,oCACE,QAAS,IAAI,EAGf,yBACE,oCACE,WAAY,OAIhB,sCACE,YAAa,IAGf,mBACE,iBAAkB,KAClB,OAAQ,IAAI,MAAM,QAClB,WAAY,KACZ,SAAU,OAGZ,qBACE,WAAY,QACZ,MAAO,MACP,OAAQ,EAGV,iCACE,MAAO,KACP,OAAQ,EAGV,yCACE,aAAc,KAAK,QAAQ,QAC3B,aAAc,EAAE,IAChB,UAAW,KACX,YAAa,IACb,QAAS,EACT,WAAY,OACZ,MAAO,KAOT,8CACE,aAAc,KAGhB,kDACE,WAAY,QACZ,kBAAmB,QACnB,mBAAoB,QAItB,uCACE,MAAO,KACP,UAAW,KACX,YAAa,IACb,QAAS,IAAI,KAAK,EAClB,WAAY,MAGd,uDACE,OAAQ,IAAI,MAAM,QAClB,mBAAoB,MAAM,EAAE,IAAI,IAAI,iBACpC,WAAY,MAAM,EAAE,IAAI,IAAI,iBAC5B,UAAW,KACX,YAAa,IACb,OAAQ,KACR,aAAc,IACd,cAAe,IACf,WAAY,MACZ,MAAO,KAGT,oDACE,SAAU,SAGZ,sDACE,YAAa,IAGf,kBACE,WAAY,QAad,kBACE,iBAAkB,qBAClB,QAAS,IAGX,cACE,iBAAkB,QAClB,MAAO,IACP,QAAS,IAGX,mBACE,OAAQ,IAAI,MAAM,QAGpB,qBACE,iBAAkB,QAClB,OAAQ,KACR,WAAY,OACZ,SAAU,SAGZ,2BACE,iBAAkB,QAClB,OAAQ,EACR,MAAO,QACP,QAAS,MACT,MAAO,KACP,YAAa,KACb,eAAgB,KAChB,SAAU,OAGZ,yBACE,2BACE,QAAS,EAAE,KACX,SAAU,SACV,MAAO,EACP,IAAK,EACL,MAAO,MAIX,yBACE,sBACE,aAAc,MACd,cAAe,OAInB,wBACE,MAAO,QACP,gBAAiB,UAGnB,8BACE,MAAO,QACP,OAAQ,QAGV,qBACE,iBAAkB,QAClB,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAEnB,aAAc,QACd,MAAO,QAIT,gEADqF,4BAA7B,4BAA5B,2BAA5B,2BAEE,iBAAkB,QAClB,iBAAkB,KAClB,aAAc,QACd,MAAO,QAIT,gEAD6B,4BAA7B,4BAEE,iBAAkB,KAMpB,sEADA,sEADA,sEAD+K,kCAAnC,kCAAnC,kCAAnC,kCAAnC,kCAAnC,kCAIE,iBAAkB,QAClB,aAAc,QAGhB,8BAA+I,qCAAtC,qCAArC,oCAArC,oCAAsJ,+BAAmJ,sCAAvC,sCAAtC,qCAAtC,qCACrN,wCAIA,+CADA,+CADA,8CADA,8CAIE,iBAAkB,QAClB,aAAc,QAGhB,2BACE,QAAS,KAGX,iCACE,kBAAmB,EAGrB,yBACE,cAAe,IAGjB,0BACE,YAAa,IACb,aAAc,IACd,QAAS,IAAI,EAAE,IAAI,IAGrB,yBACE,SAAU,SACV,IAAK,IACL,MAAO,KACP,UAAW,iBAGb,2BACE,iBAAkB,KAClB,iBAAkB,KAClB,MAAO,QACP,UAAW,KACX,WAAY,OACZ,YAAa,IACb,cAAe,KACf,WAAY,KAGd,kCACE,WAAY,OAGd,wBACE,aAAc,IAGA,WAAhB,eACE,iBAAkB,QAClB,MAAO,QACP,UAAW,KACX,YAAa,KACb,aAAc,KACd,YAAa,KAG+E,4CAA9F,gDAA2I,wCAA1F,4CAC/C,OAAQ,EACR,KAAM,EACN,SAAU,MACV,MAAO,EACP,QAAS,KAGX,WACE,YAAa,wBACb,IAAK,0CACL,IAAK,iDAAmD,2BAA2B,CAAE,0CAA4C,kBAAkB,CAAE,2CAA6C,cAAc,CAAE,kEAAoE,cACtR,YAAa,IACb,WAAY,OAId,oBADA,iBAEE,QAAS,aACT,YAAa,wBACb,WAAY,OACZ,aAAc,OACd,YAAa,IACb,YAAa,EACb,MAAO,KACP,eAAgB,KAEhB,wBAAyB,UACzB,uBAAwB,YAG1B,4BACE,QAAS,IAGX,4BACE,QAAS,IAGX,qBACE,QAAS,IAGX,sBACE,QAAS,IAGX,0BACE,QAAS,IAGX,qBACE,QAAS,IAGX,6BACE,QAAS,IAGX,sBACE,QAAS,IAGX,yBACE,QAAS,IAGX,uBACE,QAAS,IAGX,oBACE,QAAS,IAGX,qBACE,QAAS,IAGX,8BACE,QAAS,IAGX,4BACE,QAAS,IAGX,uBACE,QAAS,IAGX,yBACE,QAAS,IAGX,8BACE,QAAS,IAGX,mBACE,QAAS,IAGX,wBACE,QAAS,IAGX,sBACE,QAAS,IAGX,4BACE,QAAS,IAGX,sBACE,QAAS,IAGX,oBACE,QAAS,IAGX,2BACE,QAAS,IAGX,0BACE,QAAS,IAGX,yBACE,QAAS,IAGX,8BACE,MAAO,KACP,QAAS,IAGX,sBACE,QAAS,IAGX,oBACA,wBACE,QAAS,IAGX,sBACE,QAAS,IAGX,sBACE,QAAS,IAGX,4BACE,QAAS,IAGX,2BACE,QAAS,IAGX,oBACE,QAAS,IAGX,uBACE,QAAS,IAGX,oBACE,QAAS,IAGX,qBACE,QAAS,IAGX,sBACE,QAAS,IAGX,2BACE,QAAS,IAGX,oBACE,QAAS,IAGX,8BACE,QAAS,IAGX,2BACE,QAAS,IAGX,mBACE,QAAS,IAGX,sBACE,QAAS,IAGX,2BACE,QAAS,IAGX,sBACE,QAAS,IAGX,0BACE,QAAS,IAGX,yBACE,QAAS,IAGX,0BACE,QAAS,IAGX,uBACE,QAAS,IAGX,6BACE,QAAS,IAGX,kBACE,QAAS,IAGX,0BACE,QAAS,IAGX,wBACE,QAAS,IAGX,sBACE,QAAS,IAGX,mBACE,QAAS,IAGX,kBACE,MAAO,QACP,QAAS,IAGX,sBACE,QAAS,IAGX,uBACE,QAAS,IAGX,uBACE,QAAS,IAGX,oBACE,QAAS,IAGX,qBACE,QAAS,IAGX,kCACE,QAAS,IAGX,uBACE,QAAS,IAGX,uBACE,QAAS,IAGX,yBACE,QAAS,IAGX,yBACE,QAAS,IAGX,uBACA,uBACE,QAAS,IAGX,uBACE,QAAS,IAGX,wBACE,QAAS,IAGX,sBACE,QAAS,IAGX,0BACE,QAAS,IAGX,0BACE,QAAS,IAGX,6BACE,QAAS,IAGX,sCACE,QAAS,IAGX,qCACE,QAAS,IAGX,8BACE,QAAS,IAGX,qBACE,QAAS,IAGX,uBACE,QAAS,IAGX,yBACE,QAAS,IAGX,oBACE,QAAS,IAGX,sBACE,QAAS,IAGX,sBACE,QAAS,IAGX,wBACE,QAAS,IAGX,sBACE,QAAS,IAGX,4BACE,QAAS,IAGX,uBACE,QAAS,IAGX,wBACE,QAAS,IAGX,+BACE,QAAS,IAGX,wBACE,QAAS,IAGX,uBACE,QAAS,IAGX,wBACE,QAAS,IAGX,8BACE,QAAS,IAGX,wBACE,QAAS,IAGX,sBACE,QAAS,IAGX,4BACE,QAAS,IAGX,wBACE,QAAS,IAGX,0BACE,QAAS,IAGX,wBACE,QAAS,IAGX,uBACE,QAAS,IAGX,oBACE,QAAS,IAGX,qBACE,QAAS,IAGX,wBACE,QAAS,IAGX,yBACE,QAAS,IAGX,uBACE,QAAS,IAGX,+BACE,QAAS,IAGX,sBACE,QAAS,IAGX,kCACE,MAAO,QACP,QAAS,IAGX,oBACE,QAAS,IAGX,sCACE,iBAAkB,cAClB,WAAY,KAGd,yBACE,oDACE,iBAAkB,eAClB,WAAY,GAIhB,SACE,UAAW,MACX,QAAS,EAGX,qBACE,WAAY,EACZ,OAAQ,EACR,QAAS,IAAI,EAGf,sCACE,OAAQ,KACR,OAAQ,EAAE,KAAK,EAAE,KACjB,QAAS,IAAI,EAGf,yCACE,MAAO,QACP,UAAW,KACX,KAAM,MACN,SAAU,SACV,IAAK,IAGP,wCACE,MAAO,QACP,YAAa,KAGf,6CACE,MAAO,MAGT,iBACE,iBAAkB,QAClB,QAAS,IAAI,KAGf,yBACE,MAAO,QAGT,gBAAiB,sBACf,aAAc,YACd,aAAc,MACd,QAAS,MACT,OAAQ,EACR,SAAU,SACV,MAAO,EAGT,gBACE,aAAc,KAGhB,sBACE,aAAc,KACd,QAAS,GAGX,uBACA,4BACA,6BACE,oBAAqB,KACrB,iBAAkB,EAClB,KAAM,IACN,YAAa,MACb,IAAK,MAGP,6BACA,kCACA,mCACE,iBAAkB,EAClB,oBAAqB,KACrB,QAAS,IACT,YAAa,MACb,IAAK,IAGP,4BACE,KAAM,IAGR,6BACE,KAAM,IAGR,oBACE,oBAAqB,EACrB,iBAAkB,KAClB,OAAQ,MACR,KAAM,IACN,YAAa,MAGf,0BACE,oBAAqB,EACrB,iBAAkB,QAClB,OAAQ,IACR,QAAS,IACT,YAAa,MAGf,sBACE,kBAAmB,EACnB,mBAAoB,KACpB,KAAM,MACN,WAAY,MACZ,IAAK,IAGP,4BACE,OAAQ,MACR,kBAAmB,EACnB,mBAAoB,KACpB,QAAS,IACT,KAAM,IAGR,qBACE,kBAAmB,KACnB,mBAAoB,EACpB,WAAY,MACZ,MAAO,MACP,IAAK,IAGP,2BACE,kBAAmB,KACnB,mBAAoB,EACpB,OAAQ,MACR,QAAS,IACT,MAAO,IAGT,WACA,gBACE,WAAY,KAGd,qEACE,WAAY,IAAI,IAAM,0BAGxB,gCACE,YAAa,KAGf,sCACE,KAAM,EACN,SAAU,MACV,IAAK,EACL,MAAO,EACP,QAAS,KAGX,yDACE,YAAa,MAGf,qFACE,YAAa,MAGf,uEACE,YAAa,KAGf,uFACE,YAAa,EAGf,oEACE,YAAa,EAGf,qEACE,YAAa,YAGf,oFAAqF,mFACnF,YAAa,MAGf,gHAAiH,+GAC/G,YAAa,MAGf,0BACE,0GACE,YAAa,MAEf,sIACE,YAAa,MAEf,qHACE,YAAa,EAEf,qIACE,YAAa,MAEf,iKACE,YAAa,MAEf,oIACE,YAAa,MAEf,gKACE,YAAa,MAEf,wHACE,YAAa,MAEf,oJACE,YAAa,MAEf,mJACE,YAAa,MAEf,+KACE,YAAa,MAEf,kJACE,YAAa,MAEf,8KACE,YAAa,MAEf,wIACE,YAAa,GAIjB,4CACE,eAAgB,KAGlB,eACA,oBACE,WAAY,KAGd,oEACA,yEACE,OAAQ,KACR,WAAY,EAGd,0GACE,OAAQ,KACR,SAAU,KAGZ,6HACE,WAAY,EACZ,YAAa,KAGf,qFACE,WAAY,IAAI,IAAM,0BAGxB,wCACE,YAAa,KAGf,yEACE,YAAa,MAGf,uFACE,YAAa,KAGf,oFACE,YAAa,EAGf,oDACE,eAAgB,KAGlB,WACE,MAAO,QACP,OAAQ,YACR,gBAAiB,KAGnB,SACE,cAAe,IAAI,MAAM,QAG3B,cACE,aAAc,QACd,kBAAmB,KACnB,mBAAoB,KACpB,aAAc,MACd,aAAc,IACd,cAAe,KAGjB,oBACE,iBAAkB,QAGpB,qBACE,iBAAkB,QAClB,aAAc,KACd,oBAAqB,IACrB,oBAAqB,MAGvB,mBACE,iBAAkB,KAGpB,mBACE,YAAa,WACb,QAAS,KACT,QAAS,KAGX,sCACE,WAAY,IAAI,MAAM,KAGxB,yBACE,kDACE,YAAa,QAIjB,iBACE,UAAW,MAGb,iBACA,gBACE,aAAc,KAGhB,kCACA,iCACE,YAAa,IAAI,MAAM,QACvB,aAAc,KAGhB,qBACA,oBACE,UAAW,KAGb,sBACE,YAAa,WACb,QAAS,KACT,UAAW,EACX,UAAW,OACX,gBAAiB,WACjB,UAAW,EAGb,yBACE,qDACE,YAAa,QAIjB,cACE,UAAW,EACX,YAAa,EACb,aAAc,KAGhB,cACE,YAAa,OACb,QAAS,KACT,gBAAiB,OAGnB,uBACE,cAAe,IACf,OAAQ,IAAI,MAAM,QAGpB,oBACE,UAAW,MACX,OAAQ,KACR,YAAa,KACb,MAAO,KAGT,yBACE,YAAa,OACb,QAAS,KACT,UAAW,EACX,UAAW,KACX,UAAW,EAGb,yBACE,yBACE,UAAW,OAEb,6BACE,YAAa,MAIjB,0CACE,YAAa,WAGf,sBACE,YAAa,OACb,QAAS,KACT,WAAY,IACZ,UAAW,EACX,YAAa,EACb,UAAW,KACX,UAAW,EAGb,yBACE,qDACE,UAAW,OACX,MAAO,KAET,yDACE,YAAa,MAIjB,eACE,UAAW,EACX,YAAa,EACb,WAAY,KACZ,YAAa,IACb,UAAW,EACX,UAAW,WAGb,qBACE,UAAW,EACX,YAAa,EACb,WAAY,KACZ,UAAW,EACX,UAAW,WAGb,4BACE,QAAS,KACT,WAAY,IACZ,UAAW,EACX,YAAa,EACb,UAAW,KACX,gBAAiB,cAGnB,iBACE,QAAS,KACT,YAAa,WACb,UAAW,EACX,YAAa,KAGf,qBACE,YAAa,KAGf,6CACE,QAAS,KAGX,8EACE,QAAS,MAGX,4DACE,QAAS,aAGX,gEACE,QAAS,KAGX,kCACE,iBAAkB,QAClB,QAAS,KAAK,EAGhB,0CACE,YAAa,MAGf,iDACE,iBAAkB,8CAClB,oBAAqB,KACrB,kBAAmB,SACnB,gBAAiB,IAAI,IACrB,OAAQ,IAAI,MAAM,QAClB,aAAc,QACd,QAAS,GACT,OAAQ,KACR,KAAM,IACN,SAAU,SACV,IAAK,IACL,MAAO,KAGT,6BACE,QAAS,KAGX,+BACE,YAAa,WACb,gBAAiB,YACjB,aAAc,YAAY,KAC1B,aAAc,MACd,aAAc,IACd,QAAS,KACT,UAAW,KACX,eAAgB,EAChB,YAAa,EAGwB,qCAAvC,sCACE,QAAS,IACT,QAAS,MAGX,qCACE,MAAO,KAGT,0DACE,iBAAkB,QAClB,WAAY,EAAE,IAAI,IAAI,eACtB,QAAS,EAGX,sCACE,MAAO,KACP,iBAAkB,QAClB,gBAAiB,WACjB,aAAc,KAAK,YAAY,YAC/B,QAAS,KAGX,qCACE,iBAAkB,QAClB,kBAAmB,YACnB,mBAAoB,YAGtB,0DACE,OAAQ,MAAM,IAAI,KAGpB,sEACE,iBAAkB,KAGpB,2CACE,WAAY,IAAI,MAAM,YAGxB,yBACE,+BACE,YAAa,QAIjB,uCACE,UAAW,KAGb,6CACE,QAAS,MACT,UAAW,MACX,YAAa,IAGf,yBACE,uCACE,KAAM,EAAE,EAAE,iBACV,MAAO,KACP,UAAW,KACX,OAAQ,EAAE,KAAK,EAAE,EACjB,SAAU,OACV,cAAe,SACf,YAAa,OACb,MAAO,kBAIX,oCACE,MAAO,uBACP,cAAe,KAGjB,yBACE,oCACE,KAAM,EAAE,EAAE,KACV,MAAO,KACP,OAAQ,EAAE,KAAK,EAAE,EACjB,MAAO,kBAIX,qBACE,MAAO,KACP,SAAU,SACV,MAAO,KAGT,sBACE,MAAO,MACP,cAAe,KACf,YAAa,KACb,WAAY,KACZ,MAAO,EAKT,yCAFA,6BACA,wBAEE,YAAa,KAGf,8CACE,WAAY,WAGd,8BACE,YAAa,OACb,QAAS,KACT,UAAW,KAGb,yBACE,8BACE,KAAM,EAAE,EAAE,KACV,MAAO,KACP,MAAO,KAIX,mCACE,YAAa,OACb,QAAS,aACT,QAAS,KACT,aAAc,KACd,UAAW,KACX,WAAY,OAGd,6EACE,WAAY,OACZ,eAAgB,OAGlB,oFACE,UAAW,KACX,YAAa,IAG6B,uCAA5C,2CACE,UAAW,KACX,aAAc,KAGhB,0CACE,UAAW,KACX,YAAa,IACb,aAAc,IAGhB,8CACE,aAAc,EAGhB,+CACE,MAAO,KAGT,mBACE,YAAa,OACb,QAAS,WACT,KAAM,EACN,UAAW,EACX,eAAgB,IAChB,MAAO,KAGT,yBACE,mBACE,YAAa,OACb,QAAS,KACT,eAAgB,KAIpB,uBACE,aAAc,IAAI,MAAM,QACxB,MAAO,KACP,cAAe,KACf,aAAc,KACd,WAAY,KACZ,QAAS,IAAI,KAAK,IAAI,EAGxB,+CACE,WAAY,WAGd,0BACE,KAAM,EAAE,EAAE,IAGZ,gDACE,QAAS,MACT,KAAM,KAGR,yBACE,0BACE,YAAa,OACb,QAAS,KACT,MAAO,KACP,MAAO,KAIX,mBACE,QAAS,WACT,cAAe,KACf,WAAY,OACZ,eAAgB,IAGlB,0CACE,UAAW,KACX,YAAa,IAGf,iDACE,QAAS,MACT,UAAW,KACX,YAAa,IACb,YAAa,IAGa,uBAA5B,2BACE,cAAe,IACf,UAAW,IAGoC,4CAAjD,gDACE,iBAAkB,QAClB,OAAQ,KACR,YAAa,KACb,MAAO,KAG4C,gDAArD,oDACE,iBAAkB,QAClB,MAAO,KAG0C,8CAAnD,kDACE,MAAO,QAGwC,4CAAjD,gDACE,iBAAkB,QAClB,OAAQ,KACR,YAAa,KACb,MAAO,KAGwC,4CAAjD,gDACE,OAAQ,IAAI,MAAM,QAClB,UAAW,MACX,OAAQ,KACR,YAAa,KACb,MAAO,KAG+C,mDAAxD,uDACE,QAAS,MACT,YAAa,KAGuC,iDAAtD,qDACE,iBAAkB,QAClB,MAAO,QAG6C,iDAAtD,qDACE,iBAAkB,QAClB,MAAO,QAGT,wBACE,YAAa,WACb,QAAS,KACT,KAAM,EACN,UAAW,EACX,eAAgB,KAChB,YAAa,KAGf,yBACE,wBACE,YAAa,OAEf,gDACE,YAAa,YAIjB,+CACE,MAAO,KACP,UAAW,KACX,YAAa,MACb,cAAe,IACf,aAAc,KACd,MAAO,KAGT,4CACE,MAAO,KACP,MAAO,KAGT,mBACE,WAAY,QACZ,OAAQ,KACR,WAAY,KAGd,wBACE,WAAY,YACZ,OAAQ,QACR,OAAQ,EAAE,MACV,QAAS,EAAE,KACX,MAAO,KAGT,qBACE,OAAQ,QACR,MAAO,KACP,cAAe,KACf,aAAc,IACd,WAAY,KACZ,QAAS,IAAI,EAGf,4BAA6B,2BAC3B,MAAO,QAGT,wDACE,OAAQ,EACR,QAAS,EAGX,qCACE,OAAQ,QACR,UAAW,KACX,aAAc,IACd,WAAY,IACZ,MAAO,KAGT,2BACE,WAAY,KACZ,WAAY,MAAM,IAAI,KACtB,WAAY,YACZ,OAAQ,KAAK,MAAM,EACnB,MAAO,EACP,QAAS,KACT,SAAU,SACV,MAAO,KAGT,UACE,OAAQ,KAGV,iBACE,SAAU,SACV,IAAK,MAGP,qBACE,QAAS,MACT,OAAQ,KACR,OAAQ,EAAE,KACV,UAAW,KAGb,yBACE,qBACE,OAAQ,EACR,WAAY,MAIhB,iBACE,QAAS,MACT,OAAQ,KAAK,KAAK,KAClB,SAAU,SACV,WAAY,OAGd,yBACE,iBACE,MAAO,MACP,aAAc,KACd,WAAY,MAIhB,eACE,WAAY,QAAQ,yBAA2B,SAAS,IAAI,EAC5D,gBAAiB,KAGnB,yBACE,eACE,gBAAiB,KAAK,MAI1B,qBACE,iBAAkB,uBAClB,MAAO,MACP,MAAO,KACP,eAAgB,KAChB,YAAa,KACb,MAAO,KAGT,yBACE,qBACE,OAAQ,IACR,aAAc,KACd,SAAU,SACV,MAAO,MAIX,4CACE,WAAY,IAAI,MAAM,qBACtB,YAAa,KACb,WAAY,KAGd,yBACE,8BACE,YAAa,IAAI,MAAM,qBACvB,aAAc,KAEhB,4CACE,WAAY,EACZ,YAAa,EACb,WAAY,GAIhB,gCACE,cAAe,IAGjB,qDACE,UAAW,KACX,YAAa,IACb,WAAY,KAGd,6DACA,oFACE,cAAe,EAGjB,iCACE,MAAO,KAGT,yBACE,4BACE,cAAe,MAInB,6BACE,WAAY,MAGd,+BACE,WAAY,KACZ,UAAW,MACX,MAAO,IAGT,yBACE,+BACE,WAAY,MAIhB,qCACE,cAAe,KACf,WAAY,OAGd,yBACE,qCACE,cAAe,MAInB,uCACE,MAAO,KACP,UAAW,KACX,YAAa,KACb,aAAc,KACd,WAAY,KAGd,wBACE,QAAS,KAAK,KAAK,KAAK,KACxB,cAAe,EAGjB,yBACE,wBACE,QAAS,KAAK,KAAK,KAAK,MAI5B,0BACE,MAAO,QAGT,6BACE,OAAQ,KAGV,+BACE,MAAO,QACP,YAAa,IACb,cAAe,KAGjB,yBACE,+BACE,OAAQ,GAIZ,4BACE,WAAY,KAGd,gCACE,cAAe,KACf,QAAS,KACT,eAAgB,OAGlB,yBACE,gCACE,cAAe,MAInB,mCAAoC,kCAClC,WAAY,OAGd,mCACE,UAAW,KAGb,yBACE,mCACE,UAAW,MAIf,sHACE,MAAO,KACP,WAAY,SAGd,uIACE,MAAO,QACP,WAAY,IACZ,QAAS,EAAE,KAAK,EAAE,EAClB,YAAa,IAGf,mJACE,WAAY,KACZ,OAAQ,IAAI,MAAM,YAGpB,8IACE,MAAO,EAGT,gCACE,OAAQ,KAAK,EAAE,EACf,UAAW,KACX,WAAY,OAGd,kCACE,YAAa,KAGf,kCACE,QAAS,KACT,gBAAiB,cACjB,UAAW,KAGb,qCACE,QAAS,KACT,gBAAiB,OACjB,UAAW,KAGb,2CACE,QAAS,KACT,OAAQ,KAAK,EAAE,EAAE,EAGnB,iEACE,SAAU,SACV,OAAQ,EAAE,KAAK,EAAE,EAGnB,uEACE,QAAS,IACT,MAAO,KACP,SAAU,SACV,IAAK,EACL,MAAO,MAGT,0CACE,MAAO,KACP,UAAW,KAGb,kDACE,KAAM,EAAE,EAAE,KACV,WAAY,KACZ,WAAY,OACZ,MAAO,KAGT,wDACE,QAAS,KACT,UAAW,KACX,QAAS,EACT,OAAQ,EACR,WAAY,KACZ,gBAAiB,OAGnB,2DACE,OAAQ,EAAE,IAAI,IAGhB,sCACE,YAAa,KACb,aAAc,KAGhB,kCACE,QAAS,KACT,gBAAiB,cACjB,UAAW,KACX,UAAW,MACX,YAAa,KACb,aAAc,KAGhB,mDAAoD,mDAClD,WAAY,KAGd,wCACE,WAAY,KACZ,QAAS,EAGX,yBACE,wCACE,KAAM,EAAE,EAAE,IACV,UAAW,KAIf,yBACE,sDACE,cAAe,KAEjB,qDACE,aAAc,KACd,YAAa,IAAI,MAAM,SAI3B,gCACE,OAAQ,KAAK,EAAE,EAAE,EAGnB,yBACE,gCACE,OAAQ,EAEV,2CACE,UAAW,KACX,QAAS,KACT,gBAAiB,cAEnB,iEACE,WAAY,KAIhB,qFACE,QAAS,KAGX,qCACE,cAAe,KAGjB,uCACE,QAAS,MACT,QAAS,IAAI,EACb,UAAW,KACX,WAAY,QACZ,WAAY,OACZ,MAAO,QAGT,2CACE,OAAQ,EAAE,KAAK,EAAE,EACjB,MAAO,KACP,OAAQ,KAGV,6CACE,gBAAiB,KACjB,WAAY,QAGd,uCACE,MAAO,MACP,QAAS,EAGX,8CACE,YAAa,IAGf,qDACE,UAAW,gBAGb,sDACE,WAAY,IAAI,IAAM,0BAGxB,wGACE,WAAY,QAAQ,GAAI,GAAK,CAAE,QAAQ,IAAM,OAG/C,8EACE,WAAY,IAAI,IAAM,0BAGxB,8FACE,WAAY,QAAQ,IAAM,SAC1B,iBAAkB,MAGpB,qBACE,WAAY,KAGd,8CACE,WAAY,YAGd,0CACE,aAAc,IAAI,MAAM,QACxB,OAAQ,EACR,WAAY,OACZ,WAAY,KACZ,KAAM,EACN,SAAU,MACV,IAAK,KACL,MAAO,MACP,QAAS,KAGX,oDACE,MAAO,eAGT,4EACE,QAAS,IAAI,IACb,MAAO,KACP,IAAK,KAGP,4FACE,QAAS,EAGX,iDACE,QAAS,KAGX,iEACE,WAAY,EAAE,EAAE,IAAI,gBACpB,QAAS,gBAGX,sDACE,OAAQ,KAGV,iCACE,WAAY,EACZ,cAAe,EAGjB,sCACE,QAAS,EAGX,wCACE,MAAO,QACP,QAAS,MACT,UAAW,KACX,OAAQ,KACR,QAAS,KAAK,KAAK,KAAK,KACxB,SAAU,SACV,YAAa,OAGf,8CACE,MAAO,QACP,gBAAiB,KAGnB,8CACE,MAAO,QACP,gBAAiB,KAGnB,6CACE,iBAAkB,KAClB,aAAc,QAGhB,oDACE,WAAY,QACZ,QAAS,IACT,QAAS,MACT,OAAQ,KACR,KAAM,EACN,SAAU,SACV,IAAK,EACL,MAAO,IAGT,+CACE,MAAO,QAGT,6CACE,WAAY,QACZ,OAAQ,IAAI,MAAM,KAClB,cAAe,IACf,MAAO,KACP,YAAa,IACb,UAAW,IACX,QAAS,IACT,SAAU,SACV,MAAO,KACP,WAAY,OACZ,IAAK,KAGP,2DACE,WAAY,QAGd,0CACA,iDACA,8CACE,MAAO,KACP,UAAW,KACX,YAAa,KACb,aAAc,KACd,WAAY,OACZ,MAAO,KAGT,6DACE,QAAS,aACT,YAAa,KACb,QAAS,EACT,SAAU,OACV,cAAe,SACf,MAAO,MAGT,gDACE,iBAAkB,IAGpB,iCACE,YAAa,MACb,aAAc,MAGhB,eACE,iBAAkB,QAClB,iBAAkB,uBAClB,kBAAmB,UACnB,gBAAiB,KAAK,KACtB,OAAQ,KACR,cAAe,EACf,WAAY,IAAI,MAAM,QACtB,cAAe,EAGjB,4CACE,KAAM,IAGR,oCACE,KAAM,EACN,SAAU,MACV,MAAO,EACP,IAAK,EACL,QAAS,KAGX,yDACE,WAAY,EAGd,qCACE,OAAQ,QACR,YAAa,EACb,WAAY,KACZ,QAAS,KAAK,KACd,SAAU,SAGgC,2CAA5C,2CACE,iBAAkB,YAMgC,kDACpD,+CACA,sDACA,mDANA,kDACA,+CACA,sDACA,mDAIE,MAAO,KAGT,4CACE,iBAAkB,QAClB,cAAe,KACf,MAAO,KACP,OAAQ,QACR,UAAW,IACX,YAAa,IACb,OAAQ,EAAE,EAAE,MAAM,MAClB,UAAW,EACX,QAAS,IAAI,IAGf,4CACA,yCACA,6CACE,MAAO,QACP,UAAW,KAGb,4CACE,UAAW,KACX,MAAO,KAGT,2CAAkG,iDAApD,iDAC5C,WAAY,IAGd,kDACA,+CACA,mDAE4D,wDAC5D,qDACA,yDAJsD,wDACtD,qDACA,yDAGE,MAAO,KAGT,6BACE,MAAO,KACP,OAAQ,KACR,OAAQ,EAAE,EAAE,EAAE,KACd,WAAY,KACZ,QAAS,KAAK,EAAE,KAGlB,gDACE,QAAS,OACT,YAAa,EAAE,KAAK,EAAE,EACtB,aAAc,EAAE,KAAK,EAAE,EAGzB,yBACE,gDACE,QAAS,MAIb,gDACE,QAAS,OACT,YAAa,EAAE,KAAK,EAAE,EACtB,aAAc,EAAE,KAAK,EAAE,EAGzB,8BACE,aAAc,EAGhB,8BACE,OAAQ,EACR,QAAS,MACT,MAAO,KACP,OAAQ,KAAK,KAGgC,8CAA/C,8CACE,WAAY,KAGd,4CACE,YAAa,EAGf,wCACE,WAAY,QAGd,oBACE,iBAAkB,QAClB,OAAQ,KACR,cAAe,EACf,WAAY,IAAI,MAAM,QACtB,cAAe,EAGjB,iDACE,KAAM,IAGR,qCACE,KAAM,EACN,SAAU,MACV,MAAO,EACP,IAAK,EACL,QAAS,KAGX,8DACE,WAAY,EAGd,0CACE,MAAO,QACP,OAAQ,QACR,YAAa,EACb,WAAY,KACZ,QAAS,KAAK,KACd,SAAU,SAGqC,gDAAjD,gDACE,MAAO,KACP,iBAAkB,YAMqC,uDACzD,oDACA,2DACA,wDANA,uDACA,oDACA,2DACA,wDAIE,MAAO,KAGT,iDACE,iBAAkB,QAClB,cAAe,KACf,MAAO,KACP,OAAQ,QACR,UAAW,IACX,YAAa,IACb,KAAM,KACN,OAAQ,EACR,QAAS,IAAI,IACb,SAAU,SACV,UAAW,KACX,WAAY,KACZ,IAAK,KAGP,mEACE,OAAQ,IAAI,MAAM,QAGpB,iDACA,8CACA,kDACE,MAAO,QACP,UAAW,KAGb,iDACE,UAAW,KACX,MAAO,KAGT,gDAA4G,sDAAzD,sDACjD,WAAY,IAGd,uDACA,oDACA,wDAEiE,6DACjE,0DACA,8DAJ2D,6DAC3D,0DACA,8DAGE,MAAO,KAGT,kCACE,MAAO,KACP,OAAQ,KACR,OAAQ,EAAE,EAAE,EAAE,KACd,WAAY,KACZ,QAAS,KAAK,EAAE,KAGlB,qDACE,QAAS,aACT,OAAQ,EAAE,KAAK,EAAE,EAGnB,yBACE,qDACE,QAAS,MAIb,qDACE,QAAS,aACT,OAAQ,EAAE,KAAK,EAAE,EACjB,WAAY,KAGd,oDACE,YAAa,KAGf,mCACE,aAAc,EAGhB,mCACE,OAAQ,EACR,QAAS,MACT,MAAO,KACP,OAAQ,KAAK,KAGqC,mDAApD,mDACE,WAAY,KAGd,iDACE,YAAa,EAGf,6CACE,WAAY,QAGd,WACE,WAAY,QACZ,OAAQ,EACR,cAAe,EACf,WAAY,IAAI,MAAM,QACtB,cAAe,EACf,WAAY,EAGd,yBACE,MAAO,QACP,OAAQ,KACR,QAAS,KAAK,EACd,OAAQ,EAAE,EAAE,EAAE,KAGhB,6BACE,QAAS,MAGX,4BACE,WAAY,EACZ,mBAAoB,KACpB,WAAY,KACZ,QAAS,EAGX,0BACE,cAAe,IAAI,MAAM,QACzB,MAAO,KAGT,uBACE,OAAQ,EAGV,iCAEA,uCADA,uCAEE,iBAAkB,QAClB,MAAO,QAGT,4BACE,MAAO,QACP,YAAa,EACb,QAAS,KAAK,KACd,YAAa,KAGwB,kCAAvC,kCACE,MAAO,QAGT,+BAA8E,qCAA1C,qCAClC,iBAAkB,QAClB,MAAO,QAGT,8BACE,iBAAkB,QAClB,cAAe,KACf,MAAO,KACP,OAAQ,QACR,UAAW,IACX,YAAa,IACb,KAAM,KACN,OAAQ,EACR,QAAS,IAAI,IACb,SAAU,SACV,UAAW,KACX,WAAY,KACZ,IAAK,IAGP,yBACE,8BACE,KAAM,KACN,MAAO,IACP,IAAK,KAIT,gDACE,OAAQ,IAAI,MAAM,QAGpB,yBACE,8CACA,kDACA,4CACE,iBAAkB,kBAClB,YAAa,EACb,eAAgB,EAChB,YAAa,EAGf,uEAEA,6EADA,6EAFA,wDAAgI,8DAAnE,8DAO7D,2EAEA,iFADA,iFAJA,4DAEA,kEADA,kEAQA,qEAEA,2EADA,2EAJA,sDAEA,4DADA,4DAKE,iBAAkB,kBAClB,MAAO,QAET,mDACA,uDACA,iDACE,iBAAkB,YAClB,OAAQ,EACR,MAAO,QACP,QAAS,EACT,aAAc,KAEhB,yDACA,6DACA,uDACE,MAAO,QAET,uDACA,2DACA,qDACE,iBAAkB,QAClB,OAAQ,EAAE,IAEZ,+DACA,mEACA,6DACE,eAAgB,EAChB,aAAc,KAEhB,sFACA,0FACA,oFACE,MAAO,QAET,0EACA,8EACA,wEACE,MAAO,eAET,wEACA,4EACA,sEACE,QAAS,KAEX,iFACA,qFACA,+EACE,aAAc,KAEhB,+EACA,mFACA,6EACE,OAAQ,EACR,OAAQ,KACR,mBAAoB,KACpB,WAAY,KACZ,QAAS,MACT,MAAO,KACP,OAAQ,EACR,UAAW,EACX,QAAS,EACT,SAAU,SACV,KAAM,KACN,MAAO,KACP,IAAK,KAEP,oFACA,wFACA,kFACE,QAAS,IAAI,KAAK,IAAI,KACtB,YAAa,KAEf,mGACA,uGACA,iGACE,aAAc,KAEhB,wFACE,QAAS,MAEX,4EACE,QAAS,uBACT,SAAU,SACV,MAAO,KACP,IAAK,IAEP,mFACE,QAAS,KAEX,8FACE,QAAS,eAEX,sEACE,iBAAkB,eAEpB,gFAAuF,uFACrF,iBAAkB,kBAClB,aAAc,kBACd,MAAO,kBAET,sFAA6F,6FAC3F,MAAO,kBAET,kFACE,MAAO,kBAET,kFAAyF,yFACvF,iBAAkB,kBAClB,aAAc,kBACd,MAAO,eAET,wFAA+F,+FAC7F,MAAO,+BAET,+EACE,cAAe,IAAI,MAAM,YACzB,WAAY,IAAI,MAAM,YACtB,MAAO,QACP,aAAc,KACd,cAAe,KAEjB,wFACE,MAAO,+BAEiF,uFAA1F,uFACE,MAAO,QAET,sEACE,eAAgB,IAChB,YAAa,KAIjB,8BACE,QAAS,KAGX,sCACE,QAAS,MAGX,2BACE,MAAO,KAGT,oCACE,cAAe,IAAI,MAAM,QAG3B,yFAA0F,sGACxF,OAAQ,IAAI,KAAK,IACjB,MAAO,KAGT,qEACE,SAAU,SAGZ,2EACE,QAAS,IACT,QAAS,aACT,YAAa,YACb,YAAa,IAGf,yBACE,2EACE,OAAQ,KACR,YAAa,IACb,eAAgB,UAIpB,0BACE,OAAQ,EACR,OAAQ,EACR,QAAS,KAAK,KAGiB,gCAAjC,gCACE,iBAAkB,YAClB,QAAS,EAGgC,0CAA3C,0CACE,mBAAoB,EAAE,EAAE,IAAI,KAC5B,WAAY,EAAE,EAAE,IAAI,KAGtB,oCACE,iBAAkB,KAGpB,2BACE,cAAe,IAAI,MAAM,QAG3B,wDACE,aAAc,KACd,SAAU,SAGZ,qEACE,KAAM,KACN,SAAU,SACV,IAAK,KAGP,yBACE,iCACE,WAAY,IAAI,MAAM,SAI1B,yBACE,yBACE,QAAS,IAAI,EAAE,IAEjB,4BACE,eAAgB,KAChB,YAAa,KAEf,8BACE,UAAW,KAEb,2BACE,UAAW,KACX,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAGrB,wEACE,IAAK,KAEP,uEACE,OAAQ,KACR,IAAK,KAEP,mDACE,SAAU,OAEZ,0DACE,cAAe,KAEjB,6EACE,QAAS,MACT,KAAM,EACN,SAAU,SAEZ,sEACE,WAAY,QACZ,cAAe,IAAI,MAAM,QACzB,QAAS,EACT,MAAO,KAET,wEACE,gBAAiB,eAEnB,uFAA8F,6FAC5F,WAAY,QACZ,OAAQ,KACR,QAAS,GACT,QAAS,MACT,OAAQ,IACR,KAAM,KACN,SAAU,SACV,MAAO,KAIT,wFAFA,kFACA,wFAEE,MAAO,kBAET,0FACE,MAAO,QAET,+GACE,QAAS,KAEX,8GACE,QAAS,MACT,KAAM,KACN,WAAY,IACZ,IAAK,KAEP,gHACE,MAAO,QAET,sHACE,iBAAkB,QAEpB,2GACE,cAAe,eAEjB,iHACE,SAAU,SACV,MAAO,KACP,IAAK,KAEsF,qFAA7F,sFACE,WAAY,KACZ,OAAQ,KACR,QAAS,GACT,QAAS,MACT,OAAQ,IACR,KAAM,KACN,SAAU,SACV,MAAO,KAEiF,gFAA1F,iFACE,MAAO,QAEuF,sFAAhG,uFACE,iBAAkB,QAEpB,2EACE,iBAAkB,YAClB,QAAS,MACT,YAAa,EACb,QAAS,IAAI,KAEf,2FACE,cAAe,KAEjB,iGACE,UAAW,KACX,SAAU,SACV,MAAO,KACP,IAAK,IAEP,iFACE,MAAO,QAET,2EACE,MAAO,QAET,gCACE,cAAe,IAAI,MAAM,YACzB,WAAY,IAAI,MAAM,YACtB,SAAU,SACV,OAAQ,KAAK,EAAE,EAEjB,sCACE,iBAAkB,QAClB,iBAAkB,QAClB,MAAO,QACP,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAGrB,qCAEA,2CADA,2CAEA,mCAEA,yCADA,yCAEE,iBAAkB,QAClB,oBAAqB,QACrB,iBAAkB,QAClB,mBAAoB,KACpB,WAAY,KACZ,MAAO,QACP,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAGrB,8EACE,UAAW,MACX,cAAe,SAEjB,+CACE,cAAe,EAE0B,+DAA3C,wCACE,iBAAkB,QAClB,oBAAqB,QACrB,aAAc,IAAI,MAAM,QACxB,iBAAkB,QAClB,YAAa,IACb,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAG4B,qEAAjD,8CACE,iBAAkB,QAClB,oBAAqB,QACrB,mBAAoB,QACpB,iBAAkB,QAClB,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAGrB,6CACE,iBAAkB,QAClB,oBAAqB,QACrB,mBAAoB,QACpB,iBAAkB,QAClB,iBAAkB,oDAClB,iBAAkB,+CAClB,iBAAkB,kDAClB,kBAAmB,SAGrB,2BACE,cAAe,EACf,UAAW,KACX,SAAU,SACV,MAAO,EACP,IAAK,EAEP,qCAEA,2CADA,2CAEA,mCAEA,yCADA,yCAEE,WAAY,QACZ,MAAO,QAET,gCACE,YAAa,IAAI,MAAM,QACvB,MAAO,kBACP,QAAS,IAAI,KAEf,sCACE,WAAY,QACZ,kBAAmB,QAErB,qCACE,kBAAmB,KACnB,MAAO,kBAET,wDACE,aAAc,KAEhB,qEACE,KAAM,KACN,IAAK,IAEP,gDACE,KAAM,KACN,MAAO,EAET,+DACE,KAAM,KACN,MAAO,KAET,gDACE,iBAAkB,EAGpB,kDADA,iDAEE,iBAAkB,eAItB,yBACE,yBACE,YAAa,KACb,MAAO,IAET,6BACE,OAAQ,KACR,UAAW,KAEb,0BACE,aAAc,GAIlB,WACE,iBAAkB,QAClB,OAAQ,IAAI,MAAM,QAClB,mBAAoB,EAAE,IAAI,KAAK,iBAC/B,WAAY,EAAE,IAAI,KAAK,iBACvB,WAAY,KACZ,SAAU,SACV,MAAO,EACP,MAAO,MACP,QAAS,EAGX,kBACE,cAAe,KACf,YAAa,KACb,aAAc,KAGhB,mEACE,WAAY,KACZ,cAAe,IAAI,MAAM,QACzB,QAAS,EAGX,0BACE,QAAS,MACT,WAAY,OACZ,YAAa,IACb,aAAc,KACd,YAAa,IAGf,0BACE,cAAe,IAAI,MAAM,QAG3B,wBACE,OAAQ,EACR,cAAe,EACf,SAAU,SACV,IAAK,KACL,MAAO,KAGT,0BACE,OAAQ,QACR,QAAS,MAGX,8BACE,MAAO,QAGT,yBACE,8BACE,KAAM,EACN,MAAO,MAIX,yBACE,8BACE,KAAM,OAIV,8DACE,QAAS,QAGX,2BACE,OAAQ,EACR,cAAe,EACf,QAAS,KAGX,gDACE,UAAW,IACX,YAAa,IAGf,8BACE,UAAW,IACX,cAAe,EACf,WAAY,KAGd,iBAAkB,yBAChB,MAAO,QACP,OAAQ,QACR,YAAa,QACb,QAAS,IAAI,KACb,SAAU,SAGY,uBAAxB,uBAAgF,+BAAhC,+BAC9C,MAAO,QACP,gBAAiB,KAGnB,yBACE,KAAM,EAGR,gCACE,QAAS,QACT,YAAa,YAGf,+BACE,MAAO,QAGT,iBACE,MAAO,EAGT,kBACE,QAAS,KACT,cAAe,IAAI,MAAM,QAG3B,4BACE,MAAO,QACP,QAAS,KAAK,EAGqB,gCAArC,oCACE,aAAc,IAGhB,0CACE,SAAU,SACV,IAAK,IAGP,kCACE,MAAO,QAGT,uBACE,YAAa,MAAM,IAAI,QACvB,KAAM,EAAE,EAAE,GACV,OAAQ,KAAK,EACb,WAAY,OAGd,qCACE,kBAAmB,EAGrB,iCACE,QAAS,EAGX,mBACE,MAAO,QACP,UAAW,KACX,QAAS,KAAK,KAGhB,wBACE,cAAe,IAAI,MAAM,QACzB,QAAS,KAGX,8BACE,aAAc,IAAI,MAAM,KACxB,QAAS,aACT,YAAa,EACb,aAAc,IACd,cAAe,IAGjB,2CACE,WAAY,KAGd,gCACE,UAAW,KACX,WAAY,IAGd,qCACE,cAAe,KAGjB,8BACE,iBAAkB,QAGpB,+DACE,YAAa,IACb,OAAQ,QAGV,oDACE,aAAc,KACd,cAAe,EAGjB,gCACE,OAAQ,QAGV,6BACA,gCACE,QAAS,MACT,aAAc,KACd,cAAe,KAGjB,oDAAqD,uDAEnD,QAAS,aAGX,iBACE,iBAAkB,QAClB,cAAe,IAAI,MAAM,QACzB,SAAU,SACV,MAAO,KAGT,oBACE,UAAW,KACX,OAAQ,EACR,QAAS,IAAI,KAGf,8EACE,QAAS,KAGX,yBACE,8EACE,eAAgB,QAIpB,8GACE,KAAM,EAAE,EAIV,+BACE,OAAQ,0BACR,IAAK,KAGP,yBACE,+BACE,MAAO,KACP,OAAQ,+BAIZ,oEACE,YAAa,IAAI,MAAM,QACvB,aAAc,IAAI,MAAM,QACxB,aAAc,KACd,cAAe,KAGjB,yEACE,iBAAkB,QAIpB,sBACE,OAAQ,0BACR,IAAK,KAGP,yBACE,sBACE,MAAO,KACP,OAAQ,qCACR,IAAK,6BAIT,mCACE,OAAQ,QAGV,sBACE,gBAAiB,SACjB,QAAS,MAGX,kCACE,QAAS,WACT,MAAO,KAGT,uCACE,mBAAoB,KACpB,WAAY,KACZ,MAAO,KACP,YAAa,KAGgC,qDAA/C,8CACE,UAAW,OAGkC,qDAA/C,8CACE,UAAW,OAGb,gDACE,MAAO,KAGT,6BACE,WAAY,oBACZ,OAAQ,EACR,OAAQ,KACR,YAAa,EACb,QAAS,EACT,SAAU,SACV,MAAO,IACP,IAAK,IACL,MAAO,KAGT,mCACE,QAAS,EAGX,oCACE,cAAe,KAGjB,+CACE,QAAS,KAG+B,2DAAgE,gEAC3D,mEAD/C,uCAGE,OAAQ,KACR,MAAO,KAGiC,2DAAgE,gEAC3D,mEAD/C,uCAGE,OAAQ,KACR,MAAO,KAGsC,gEAAqE,qEAChE,wEADpD,4CAGE,UAAW,KAGb,6CACE,SAAU,SAGZ,gBACE,cAAe,IAAI,MAAM,QACzB,eAAgB,KAChB,OAAQ,KAAK,EAAE,KAGjB,yBACE,WAAY,KAGd,wCACE,WAAY,EACZ,WAAY,MAGd,yDACE,WAAY,IACZ,aAAc,QACd,aAAc,EAGhB,iEACE,UAAW,KAGb,6BACE,MAAO,QACP,UAAW,KACX,YAAa,IACb,YAAa,KACb,OAAQ,EACR,QAAS,IAAI,EAGf,wCACE,WAAY,KAGd,mCACE,WAAY,kBACZ,aAAc,kBACd,MAAO,KAGT,yBACE,yCACE,QAAS,IACT,YAAa,YACb,QAAS,MACT,SAAU,SACV,MAAO,KACP,IAAK,KAIT,uCACE,MAAO,KAGT,4BACE,cAAe,IAAI,MAAM,YACzB,cAAe,EACf,WAAY,IAAI,MAAM,YACtB,MAAO,QACP,UAAW,KACX,YAAa,KACb,QAAS,IAAI,KAGf,kCACE,WAAY,QACZ,aAAc,QAGhB,gCACE,MAAO,QACP,UAAW,KACX,aAAc,KACd,WAAY,OACZ,eAAgB,OAChB,MAAO,KAGT,yBACE,YAAa,MACb,aAAc,MAGhB,+BACE,WAAY,EAGd,mBACE,WAAY,IAGd,wBACE,QAAS,IAAI,KAGf,wCACE,aAAc,KAGhB,2BACE,QAAS,IAAI,KAGf,yBACE,UAAW,KAGb,kCACE,QAAS,aACT,YAAa,IACb,aAAc,IACd,MAAO,IAGT,4CACE,YAAa,IACb,aAAc,IAGhB,yBACE,2BACE,YAAa,MAEf,8BACE,YAAa,KAEf,4BACE,aAAc,MAEhB,qCACE,aAAc,KAEhB,+BACE,aAAc,KAEhB,wCACE,aAAc,MAEhB,wCACA,sBACE,YAAa,EACb,aAAc,EACd,YAAa,MACb,aAAc,MAEhB,sBACE,WAAY,IAEd,uCACE,aAAc,KACd,cAAe,KAEjB,2DACE,QAAS,IACT,YAAa,YACb,QAAS,MACT,SAAU,SACV,MAAO,KACP,IAAK,KAIT,yBACE,YACE,WAAY,QAEd,4BACE,aAAc,IAAI,MAAM,QAE1B,6BACE,YAAa,IAAI,MAAM,QAEzB,0BACA,yBACE,WAAY,KAIhB,aACE,SAAU,SACV,IAAK,KACL,KAAM,MAEN,QAAS,KAGX,mBACE,KAAM,KAGR,oBACE,KACE,UAAW,UAEb,GACE,UAAW,gBAIf,SACE,UAAW,SAAS,IAAM,SAAS,OACnC,cAAe,IAAI,MAAM,gBACzB,YAAa,IAAI,MAAM,gBACvB,aAAc,IAAI,MAAM,gBACxB,cAAe,KACf,WAAY,IAAI,MAAM,gBACtB,OAAQ,KACR,OAAQ,EAAE,KACV,SAAU,SACV,MAAO,KAGT,wBACE,QAAS,aACT,aAAc,IAGhB,oBACE,aAAc,IACd,OAAQ,KACR,MAAO,KAGT,oBACE,aAAc,IACd,OAAQ,KACR,MAAO,KAGT,oBACE,aAAc,IACd,OAAQ,KACR,MAAO,KAGT,yBACE,oBAAqB,sBACrB,kBAAmB,sBACnB,mBAAoB,sBACpB,iBAAkB,sBAGpB,cACE,WAAY,wBAA0B,UACtC,OAAQ,EAGV,8BACE,iBAAkB,gCAGpB,iCACE,iBAAkB,mCAGpB,iCACE,iBAAkB,mCAGpB,iCACE,iBAAkB,mCAGpB,yBACE,iBAAkB,2BAGpB,yBACE,iBAAkB,2BAGpB,yBACE,iBAAkB,2BAGpB,kBACA,kBACA,kBACA,kBACE,MAAO,QAGT,kBACA,kBACE,MAAO,QAGT,kBACA,kBACA,kBACA,kBACA,kBACA,kBACE,MAAO,QAGT,kBACA,kBACA,kBACE,MAAO,QAGT,yBACE,cAAe,EAGjB,gBACE,OAAQ,KACR,cAAe,EACf,UAAW,eAGb,kDACE,QAAS,EACT,eAAgB,OAGlB,wDACE,iBAAkB,QAClB,oBAAqB,QAGvB,kCACE,MAAO,KACP,iBAAkB,QAGpB,qCACE,oBAAqB,QAGvB,2DACE,iBAAkB,QAClB,oBAAqB,QAGvB,2CACE,iBAAkB,QAClB,oBAAqB,QAGvB,iEACE,iBAAkB,QAClB,oBAAqB,QAGvB,+BACA,mCAEA,4CADA,oCAEA,6CACE,OAAQ,QAGV,mCACA,oCACE,MAAO,kBACP,SAAU,SAGZ,yCACA,0CACE,QAAS,IACT,YAAa,YACb,UAAW,KACX,YAAa,IACb,OAAQ,IACR,KAAM,IACN,YAAa,KACb,SAAU,SACV,IAAK,IACL,eAAgB,SAChB,MAAO,KAGT,0CACA,2CACE,WAAY,QACZ,QAAS,GACT,OAAQ,IACR,SAAU,SACV,KAAM,EACN,IAAK,EACL,MAAO,KAGT,yCACE,QAAS,IACT,IAAK,KAGP,0BACE,QAAS,EAGX,oCACE,iBAAkB,QAClB,OAAQ,IAAI,MAAM,QAClB,cAAe,EACf,WAAY,KAGd,kCACE,iBAAkB,QAClB,cAAe,KACf,YAAa,IAAI,MAAM,QACvB,aAAc,IAAI,MAAM,QACxB,WAAY,IAAI,MAAM,QACtB,WAAY,KACZ,YAAa,EACb,aAAc,EAGhB,sDACE,WAAY,IAAI,MAAM,QACtB,WAAY,KACZ,YAAa,KAGf,2CACE,cAAe,KACf,WAAY,KACZ,WAAY,KAGd,+DACE,WAAY,IAAI,MAAM,QACtB,WAAY,KACZ,YAAa,KAGf,8BACE,QAAS,IAAI,KAGf,oCACE,iBAAkB,QAGpB,oCACE,WAAY,EACZ,aAAc,KACd,eAAgB,OAGlB,oCACE,cAAe,EAGjB,uBACE,iBAAkB,QAClB,OAAQ,KAGV,4BACA,wCACE,OAAQ,KACR,WAAY,KACZ,OAAQ,KACR,MAAO,KAGT,iCACA,0CACE,OAAQ,KAGV,0DACE,MAAO,KAGT,kCACE,MAAO,KAGT,sBACE,MAAO,KAGT,8BACE,WAAY,MAGd,gDACE,OAAQ,EACR,WAAY,KACZ,MAAO,QACP,QAAS,MACT,eAAgB,IAChB,YAAa,IAGf,sDACE,MAAO,QAGT,+CACE,KAAM,YACN,QAAS,EACT,MAAO,kBAG8C,qDAAvD,sDACE,QAAS,KAGX,mDACE,cAAe,KAGjB,sDACE,WAAY,KAGd,kDACE,MAAO,KAGT,wDACE,QAAS,IACT,MAAO,MAGT,2BACA,6BACE,YAAa,IACb,YAAa,KACb,OAAQ,KAGV,iCACA,mCACE,MAAO,QAGT,+CACA,iDACE,QAAS,EAGX,uCACA,2CACE,MAAO,KAGT,gDACE,WAAY,KAId,mCADA,iCAEE,OAAQ,KACR,YAAa,KACb,OAAQ,EACR,MAAO,KAGT,gDACE,OAAQ,KACR,YAAa,KACb,QAAS,EAGX,uCACE,eAAgB,EAChB,YAAa,EAGf,8BACE,QAAS,KAGX,sCACE,iBAAkB,QAClB,aAAc,QACd,aAAc,MACd,aAAc,IACd,YAAa,EACb,aAAc,EAGhB,UACE,iBAAkB,KAClB,aAAc,KACd,WAAY,EAAE,IAAI,IAAI,eACtB,aAAc,KACd,cAAe,IAIjB,+BACE,iBAAkB,KAGpB,6BACE,iBAAkB,QAGpB,gCACE,iBAAkB,QAGpB,gCACE,iBAAkB,QAGpB,6BACE,YAAa,KAGf,kBACE,iBAAkB,QAClB,OAAQ,KACR,WAAY,IAAI,EAAE,IAAI,KAAK,eAC3B,KAAM,KACN,YAAa,KACb,WAAY,OACZ,IAAK,KACL,MAAO,KAGT,yBACE,MAAO,sBAGT,2BACE,YAAa,KAGf,uCACE,YAAa,EACb,eAAgB,EAChB,eAAgB,YAGlB,yBACE,UACE,QAAS,cAIb,yBACE,oBACE,UAAW,OAIf,oBACE,KAAM,KACN,SAAU,SACV,MAAO,KACP,IAAK,KACL,QAAS,KAIX,yBACE,oBACE,KAAM,MAIV,6BACE,YAAa,KACb,SAAU,MACV,MAAO,KACP,IAAK,KACL,QAAS,KAGX,uCACE,MAAO,KACP,MAAO,MAGT,yBACE,6BACE,UAAW,WAIf,yBACE,6BACE,UAAW,aAIf,YACE,WAAY,KACZ,cAAe,IAAI,MAAM,QACzB,WAAY,EAAE,IAAI,EAAI,iBACtB,YAAa,KAGf,wBACE,cAAe,KAGjB,yBACE,wBACE,aAAc,IAAI,MAAM,QACxB,MAAO,KACP,cAAe,EACf,aAAc,KACd,cAAe,MAInB,mCACE,aAAc,EACd,cAAe,EACf,cAAe,EAGjB,kCACA,wCACA,wCACA,8CACE,YAAa,IAGf,uCACA,uCACA,6CACA,6CACE,YAAa,KAGf,kCACE,MAAO,QACP,UAAW,KACX,YAAa,EACb,QAAS,IAAI,EAGf,yCAA0C,wCAAyC,wCACjF,MAAO,QAGT,qDACE,QAAS,IAAI,KACb,YAAa,MACb,aAAc,MAGhB,oBACE,QAAS,MACT,cAAe,KACf,MAAO,KAGT,yBACE,uCACE,aAAc,GAIlB,0BACE,UAAW,KAGb,2CACE,MAAO,QACP,OAAQ,QAGV,yBACE,MAAO,MAGT,yBACE,yBACE,MAAO,MAIX,iBACE,UAAW,KACX,SAAU,SAGZ,4BACE,WAAY,KACZ,OAAQ,MAAM,IAAI,KAClB,QAAS,KACT,MAAO,MACP,QAAS,IACT,SAAU,SACV,IAAK,KACL,MAAO,MACP,QAAS,MAGX,yBACE,4BACE,KAAM,KACN,IAAK,KACL,MAAO,mBAIyB,kCAApC,mCACE,QAAS,GACT,SAAU,SAGZ,mCACE,cAAe,KAAK,MAAM,KAC1B,YAAa,KAAK,MAAM,YACxB,aAAc,KAAK,MAAM,YACzB,MAAO,KACP,IAAK,MAGP,+DACE,MAAO,KAGT,yBACE,mCACE,cAAe,KAAK,MAAM,YAC1B,aAAc,KAAK,MAAM,KACzB,WAAY,KAAK,MAAM,YACvB,KAAM,MACN,MAAO,QACP,IAAK,KAIT,kCACE,cAAe,KAAK,MAAM,KAC1B,YAAa,KAAK,MAAM,YACxB,aAAc,KAAK,MAAM,YACzB,MAAO,KACP,IAAK,MAGP,8DACE,MAAO,KAGT,yBACE,kCACE,cAAe,KAAK,MAAM,YAC1B,aAAc,KAAK,MAAM,KACzB,WAAY,KAAK,MAAM,YACvB,KAAM,MACN,MAAO,QACP,IAAK,KAIT,kCACE,OAAQ,KACR,QAAS,IAAI,MAAM,IAAI,IACvB,MAAO,KAGT,6CACE,SAAU,SACV,MAAO,KACP,IAAK,IAGP,kDACE,OAAQ,KACR,OAAQ,QACR,YAAa,YACb,QAAS,EACT,MAAO,KAIT,iEADA,+DAEE,YAAa,IACb,UAAW,KAGb,gEACE,UAAW,KAGb,kDACE,OAAQ,KACR,YAAa,KACb,eAAgB,OAGlB,2DACE,MAAO,QACP,aAAc,IAGhB,oBACE,WAAY,IAAI,MAAM,QACtB,WAAY,KAGd,uBACA,sBACA,uBACE,QAAS,aACT,YAAa,gBACb,cAAe,EACf,WAAY,EAGd,yBACE,uBACA,sBACA,uBACE,YAAa,MAIjB,uBACE,YAAa,IACb,aAAc,KAGhB,2BACE,UAAW,KAGb,6BACE,MAAO,KACP,QAAS,aACT,YAAa,IAGf,iBACE,WAAY,QACZ,aAAc,IAAI,MAAM,QACxB,OAAQ,EACR,KAAM,EACN,WAAY,OACZ,WAAY,KACZ,SAAU,MACV,IAAK,KACL,MAAO,MACP,QAAS,KAGX,8CACE,OAAQ,KAGV,sCACE,WAAY,YAGd,wCACE,WAAY,EAAE,EAAE,IAAI,gBACpB,QAAS,gBAGX,6BACE,WAAY,iBAGd,6BACE,WAAY,EACZ,cAAe,EAGjB,kCACE,iBAAkB,YAClB,aAAc,QACd,QAAS,EAGX,oCACE,iBAAkB,YAClB,MAAO,QACP,OAAQ,QACR,QAAS,MACT,UAAW,KACX,YAAa,IACb,OAAQ,KACR,YAAa,KACb,QAAS,KAAK,KAAK,KAAK,KACxB,SAAU,SACV,YAAa,OACb,MAAO,MAGT,yBACE,oCACE,QAAS,KACT,cAAe,GAInB,wCACA,+CACA,4CACE,MAAO,QACP,MAAO,KACP,UAAW,KACX,YAAa,KACb,aAAc,KACd,WAAY,OACZ,MAAO,KAGT,0CACE,gBAAiB,KAGnB,2CAA8C,0CAC5C,iBAAkB,QAClB,MAAO,KACP,YAAa,IAGf,+CACA,sDACA,mDAAsD,8CACtD,qDACA,kDACE,MAAO,QAGT,kDACE,WAAY,QACZ,QAAS,IACT,OAAQ,KACR,KAAM,EACN,SAAU,SACV,IAAK,EACL,MAAO,IAGT,+CACE,iBAAkB,YAClB,aAAc,QAGhB,yDACE,QAAS,MACT,YAAa,KACb,UAAW,MACX,SAAU,OACV,cAAe,SAGjB,yBACE,yDACE,KAAM,EACN,UAAW,KACX,cAAe,MAInB,4CACE,iBAAkB,QAClB,iBAAkB,IAGpB,6CACE,MAAO,MAGT,gEACE,MAAO,MAGT,oBACE,MAAO,KACP,OAAQ,QACR,UAAW,KACX,YAAa,IACb,OAAQ,KAAK,KAAK,KAAK,KAGzB,oEACA,2EACA,wEACE,QAAS,KAGX,2CACE,QAAS,KAGX,qCACE,SAAU,SACV,MAAO,KACP,IAAK,KAGP,yBACE,qCACE,aAAc,EACd,cAAe,KACf,SAAU,SACV,MAAO,EACP,WAAY,KACZ,IAAK,KAIT,4CACE,WAAY,QACZ,MAAO,KACP,MAAO,KACP,UAAW,KACX,YAAa,IACb,YAAa,WACb,OAAQ,EACR,QAAS,EAAE,IACX,WAAY,OAId,gDADA,oDAEE,UAAW,KACX,OAAQ,KACR,YAAa,WACb,aAAc,IACd,WAAY,KAGd,iCACE,YAAa,KAGf,gDACE,iBAAkB,KAClB,MAAO,QAGT,gDACE,oBAAqB,KACrB,KAAM,2BAGR,wBACE,MAAO,gBAGT,oDACE,MAAO,gBAGT,uBACE,MAAO,gBAGT,mDACE,MAAO,gBAGT,6CACE,MAAO,gBAGT,wEACE,MAAO,MAGT,4CACE,KAAM,gBAGR,yEACE,MAAO,gBAGT,oGACE,MAAO,MAGT,wEACE,KAAM,gBAGR,2BACE,MAAO,KAGT,sDACE,MAAO,MAGT,kFACE,MAAO,MAGT,qDACE,MAAO,MAGT,iFACE,MAAO,MAGT,kDACE,MAAO,mBAGT,8EACE,MAAO,mBAGT,iDACE,MAAO,yBAGT,6EACE,MAAO,yBAGT,uCACE,MAAO,MAGT,mEACE,MAAO,MAGT,sCACE,MAAO,MAGT,kEACE,MAAO,MAGT,2DACA,iEACE,KAAM,EACN,QAAS,EACT,WAAY,QACZ,QAAS,KAGX,0DACA,gEACE,KAAM,EACN,QAAS,EACT,WAAY,QACZ,QAAS,KAGX,uCACE,KAAM,EAGR,oEACE,QAAS,EACT,WAAY,OAGd,kEACE,QAAS,EACT,WAAY,OAGd,qFACE,QAAS,EACT,WAAY,QAGd,yBACE,OAAQ,QAGV,+BACE,MAAO,QACP,QAAS,IACT,QAAS,MACT,YAAa,YACb,UAAW,KACX,YAAa,KACb,QAAS,KAAK,EACd,SAAU,SACV,MAAO,KACP,IAAK,EAGP,yBACE,gDACE,cAAe,MAInB,gCAAmC,+BACjC,MAAO,kBACP,QAAS,KAGX,sCAAyC,qCACvC,MAAO,KAGT,4DAA+D,2DAC7D,QAAS,EAGX,2DAA8D,0DAC5D,QAAS,EAGX,6DAAgE,4DAC9D,MAAO,kBAGT,4CACE,MAAO,MAGT,wEACE,MAAO,MAGT,4EAA+E,2EAC7E,QAAS,KAGX,kEACE,MAAO,MAGT,8FACE,MAAO,MAGT,kEACE,KAAM,EAGR,iEACE,KAAM,MAGR,6FACE,KAAM,MAGR,2CACE,MAAO,MAGT,uEACE,MAAO,MAGT,iEACE,MAAO,MAGT,6FACE,MAAO,MAGT,2EAA8E,0EAC9E,0EACA,yEACE,QAAS,EAGX,0BACE,kEACE,MAAO,gBAET,8FACE,MAAO,gBAET,6FACE,MAAO,MAET,yHACE,MAAO,MAET,mHACE,MAAO,gBAET,+IACE,MAAO,gBAET,4FACE,MAAO,MAET,wHACE,MAAO,MAET,4EACE,MAAO,mBAET,uGACE,MAAO,MAET,mIACE,MAAO,MAET,sGACE,MAAO,MAET,kIACE,MAAO,MAET,kGACE,MAAO,yBAET,8HACE,MAAO,yBAET,wFACE,MAAO,gBAET,oHACE,MAAO,gBAET,sHACE,WAAY,QACZ,QAAS,GAIb,oBACE,MAAO,KACP,UAAW,KACX,OAAQ,KAAK,KAAK,KAAK,KAGzB,sBACE,OAAQ,QACR,aAAc,IAGe,4BAA/B,4BACE,MAAO,QACP,gBAAiB,KAGnB,2BACE,MAAO,KAGT,8CACE,MAAO,KAGT,qEACE,QAAS,KAGX,kEACE,QAAS,KAGX,2EACA,oEACE,MAAO,KAGT,iFACA,0EACE,MAAO,KAGT,2EAA8E,0EAC5E,MAAO,KAGT,iFAAoF,gFAClF,MAAO,KAGT,sBACE,WAAY,QACZ,OAAQ,IAAI,MAAM,QAClB,cAAe,KACf,WAAY,KACZ,OAAQ,EACR,QAAS,MACT,KAAM,MACN,QAAS,EACT,WAAY,OACZ,WAAY,KACZ,SAAU,MACV,IAAK,KACL,WAAY,OACZ,MAAO,MACP,QAAS,KAGX,gFACE,KAAM,EACN,QAAS,EACT,WAAY,QACZ,QAAS,KAGX,+EACE,KAAM,EACN,QAAS,EACT,WAAY,QAGd,8EACE,QAAS,EACT,WAAY,QAGd,2CACE,WAAY,YAGd,mDACE,OAAQ,KAGV,uCACE,OAAQ,KACR,QAAS,EAAE,EAAE,IAAI,EACjB,MAAO,MAGT,yCACE,iBAAkB,QAClB,MAAO,QACP,UAAW,KACX,YAAa,QACb,OAAQ,QACR,QAAS,IAAI,EAAE,IAAI,EACnB,YAAa,KACb,MAAO,mBAGT,sEACE,gBAAiB,UAGnB,uDACE,QAAS,KAGX,gDAAmD,+CACjD,iBAAkB,QAClB,MAAO,KAGT,2DACE,IAAK,IAGP,kEACE,WAAY,QACZ,MAAO,KAGT,8DACE,aAAc,IAGhB,8DACE,OAAQ,QAGV,oEACE,MAAO,QACP,QAAS,IACT,QAAS,MACT,YAAa,YACb,UAAW,KACX,YAAa,KACb,QAAS,EACT,SAAU,SACV,MAAO,KACP,IAAK,IAGP,yBACE,qFACE,cAAe,MAInB,qEAAwE,oEACtE,MAAO,mBACP,QAAS,KAGX,2EAA8E,0EAC5E,MAAO,KAGT,mDACE,KAAM,MACN,MAAO,MAGT,oEACE,MAAO,MAGT,sEACE,MAAO,mBAGT,kGAAqG,iGACnG,MAAO,mBAGT,qBACE,WAAY,QACZ,OAAQ,IAAI,MAAM,QAClB,cAAe,KACf,WAAY,KACZ,OAAQ,EACR,QAAS,MACT,KAAM,gBACN,QAAS,EACT,WAAY,OACZ,WAAY,KACZ,SAAU,MACV,IAAK,KACL,WAAY,OACZ,MAAO,MACP,QAAS,KAGX,kDACE,KAAM,MACN,MAAO,MAGT,mEACE,KAAM,EAGR,6EACE,KAAM,EACN,QAAS,EACT,WAAY,QACZ,QAAS,KAGX,2EACE,QAAS,EACT,WAAY,QAGd,gHACE,KAAM,EAGR,0CACE,WAAY,YAGd,kDACE,OAAQ,KAGV,yCACE,MAAO,KACP,OAAQ,KAAK,KAAK,KAAK,KAGzB,wBACE,MAAO,KACP,OAAQ,KAAK,KAAK,KAAK,KAGzB,sCACE,OAAQ,KACR,QAAS,EAAE,EAAE,IAAI,EAGnB,wCACE,iBAAkB,YAClB,MAAO,QACP,UAAW,KACX,YAAa,QACb,OAAQ,QACR,OAAQ,EAAE,KAAK,EAAE,KACjB,QAAS,IAAI,EAAE,IAAI,EAGrB,sDACE,QAAS,KAGX,+CAAkD,8CAChD,iBAAkB,QAClB,MAAO,KAGT,0DACE,IAAK,IAGP,iEACE,WAAY,QACZ,MAAO,KAGT,6DACE,aAAc,IAGhB,iCACE,KAAM,KAGR,oDACE,MAAO,mBAGT,2EACE,QAAS,aAGX,wEACE,QAAS,aAGX,gCACE,KAAM,mBAGR,mDACE,MAAO,mBAGT,0EACE,QAAS,aAGX,uEACE,QAAS,aAGX,sCAAuC,qCACrC,MAAO,MAGT,qEAAwE,oEACtE,QAAS,KAGX,4DAA6D,2DAC3D,KAAM,EAGR,2DACE,KAAM,MAGR,0DACE,KAAM,EAGR,kCACE,MAAO,mBAGT,6DAA8D,4DAC5D,MAAO,MAGT,iCACE,MAAO,yBAGT,4DACE,MAAO,gBAGT,2DACE,MAAO,MAGT,gFACE,MAAO,mBAGT,4DACE,KAAM,mBAGR,+EACE,MAAO,mBAGT,kEAAmE,iEACjE,MAAO,MAGT,uFACE,KAAM,MAGR,8DACE,MAAO,mBAGT,yFAA0F,wFACxF,MAAO,MAGT,6DACE,MAAO,yBAGT,wFACE,MAAO,gBAGT,uFACE,MAAO,MAGT,8BACE,QAAS,KACT,YAAa,YACb,UAAW,QACX,QAAS,EACT,eAAgB,KAChB,uBAAwB,YAG1B,qCACE,QAAS,IAGX,+CACE,QAAS,IAGX,6BACE,QAAS,KACT,YAAa,YACb,UAAW,QACX,QAAS,EACT,eAAgB,KAChB,uBAAwB,YAG1B,oCACE,QAAS,IAGX,8CACE,QAAS,IAGX,iEACE,QAAS,aAGX,+FACE,QAAS,EACT,eAAgB,IAGlB,gEACE,QAAS,aAGX,6FACE,QAAS,EACT,eAAgB,IAGlB,+CACE,QAAS,aACT,QAAS,EACT,eAAgB,IAGlB,sDACE,QAAS,IAGX,8CACE,QAAS,aACT,QAAS,EACT,eAAgB,IAGlB,qDACE,QAAS,IAGX,mDACE,QAAS,eAGX,kDACE,QAAS,eAGX,6BACE,WAAY,MAAM,IAGpB,mDACE,WAAY,WAAW,GAAK,CAAE,QAAQ,IAAM,OAG9C,kDACE,WAAY,WAAW,GAAK,CAAE,QAAQ,IAAM,OAG9C,WACE,QAAS,KACT,OAAQ,EAAE,KACV,WAAY,MACZ,MAAO,KAGT,0BACE,WAAY,KAGd,gBACE,WAAY,KACZ,QAAS,EACT,SAAU,OAIZ,mBACE,WAAY,QACZ,aAAc,IAAI,MAAM,QACxB,QAAS,KAGX,yBACE,mBACE,QAAS,QACT,KAAM,EAAE,EAAE,KACV,WAAY,OACZ,WAAY,KAEd,+BACE,WAAY,EACZ,cAAe,EAEjB,oCACE,iBAAkB,YAClB,aAAc,QACd,QAAS,EAEX,sCACE,MAAO,QACP,OAAQ,QACR,QAAS,MACT,UAAW,KACX,YAAa,IACb,OAAQ,KACR,QAAS,EACT,YAAa,KACb,aAAc,KACd,SAAU,SACV,YAAa,OACb,MAAO,KAET,4CACE,gBAAiB,KACjB,iBAAkB,QAEpB,4CACE,gBAAiB,KAEnB,iDACE,gBAAiB,UAEnB,2CACE,iBAAkB,QAEpB,iDACE,aAAc,QAEhB,6CACE,MAAO,QACP,OAAQ,QAEV,oDACE,QAAS,IACT,WAAY,QACZ,OAAQ,KACR,KAAM,EACN,SAAU,SACV,IAAK,EACL,MAAO,IAET,mDACE,MAAO,QACP,QAAS,QACT,QAAS,MACT,YAAa,YACb,UAAW,KACX,YAAa,IACb,YAAa,KACb,YAAa,KACb,SAAU,SACV,MAAO,KACP,IAAK,GAIT,0BACE,QAAS,aACT,aAAc,IACd,eAAgB,OAChB,MAAO,KAGT,yBACE,QAAS,aACT,aAAc,IACd,WAAY,KACZ,eAAgB,OAIlB,iBACE,cAAe,MAAM,IAAI,QAG3B,yBACE,iBACE,WAAY,QAIhB,2BACE,WAAY,QACZ,WAAY,IAAI,MAAM,QACtB,QAAS,aACT,QAAS,KACT,UAAW,KACX,WAAY,KACZ,cAAe,EACf,QAAS,KAAK,EAIhB,yBACE,2BACE,WAAY,KACZ,OAAQ,MACR,QAAS,KAAK,EAAE,EAChB,gBAAiB,cAIrB,8BACE,kBAAmB,QACnB,MAAO,KAEP,UAAW,EACX,WAAY,EACZ,YAAa,KACb,OAAQ,EACR,QAAS,EACT,SAAU,SACV,WAAY,OAId,2CACE,QAAS,KAGX,yBACE,2CACE,QAAS,OAIb,gCACE,YAAa,OACb,QAAS,KACT,UAAW,KACX,YAAa,IAGf,yBACE,gCACE,YAAa,IACb,gBAAiB,QAIrB,sDACE,YAAa,KAGf,yBACE,sDACE,YAAa,GAIjB,8DACE,YAAa,IACb,YAAa,KACb,eAAgB,WAGlB,qEACE,QAAS,QACT,UAAW,KACX,aAAc,KAGhB,2EACE,QAAS,KAGX,yBAIE,4DACE,QAAS,KAEX,qCACE,iBAAkB,KAClB,QAAS,GACT,OAAQ,IACR,KAAM,EACN,SAAU,SACV,MAAO,EACP,IAAK,KAEP,iDACE,KAAM,IACN,MAAO,EAET,gDACE,KAAM,EACN,MAAO,IAET,kDACE,iBAAkB,aAItB,gCACE,MAAO,QACP,OAAQ,QACR,UAAW,KACX,YAAa,IACb,aAAc,IACd,gBAAiB,KAGnB,6DACE,iBAAkB,KAClB,aAAc,KACd,MAAO,KAGT,kDACE,iBAAkB,KAClB,cAAe,IACf,OAAQ,MAAM,IAAI,KAClB,MAAO,KACP,UAAW,KACX,YAAa,IACb,OAAQ,KACR,YAAa,KACb,MAAO,KAGT,yBACE,kDACE,KAAM,iBACN,SAAU,SACV,IAAK,MAIT,0DACE,iBAAkB,QAClB,aAAc,QACd,OAAQ,QACR,MAAO,KAGT,6DACE,MAAO,QACP,iBAAkB,KAClB,aAAc,QAIhB,gBACE,OAAQ,KACR,QAAS,IACT,eAAgB,IAChB,MAAO,KAGT,yBACE,gBACE,SAAU,KACV,QAAS,IACT,KAAM,EAAE,EAAE,MAId,gCACE,iBAAkB,YAClB,OAAQ,KACR,KAAM,EACN,MAAO,EAGT,6BACE,OAAQ,SAIV,wBACE,WAAY,KAGd,oCAAqC,yCACnC,OAAQ,KACR,cAAe,EAGjB,8BACE,MAAO,KACP,YAAa,KACb,OAAQ,EACR,YAAa,EACb,SAAU,SACV,MAAO,KAGT,gCACE,MAAO,QACP,OAAQ,QACR,UAAW,KACX,aAAc,KACd,cAAe,IACf,gBAAiB,KACjB,WAAY,MAGd,uCACE,QAAS,QACT,QAAS,MACT,YAAa,YACb,UAAW,KACX,YAAa,IACb,KAAM,KACN,SAAU,SACV,IAAK,EAGP,iDACE,QAAS,QAGX,2BACE,aAAc,KAGhB,iCACE,MAAO,KACP,YAAa,KACb,OAAQ,EACR,SAAU,SACV,MAAO,KAGT,mCACE,MAAO,QACP,OAAQ,QACR,UAAW,KACX,aAAc,KACd,cAAe,IACf,gBAAiB,KACjB,WAAY,MAGd,0CACE,QAAS,QACT,QAAS,MACT,YAAa,YACb,UAAW,KACX,YAAa,IACb,KAAM,KACN,SAAU,SACV,IAAK,KAGP,oDACE,QAAS,QAGX,0BACE,YAAa,KACb,aAAc,KAGhB,iDACE,QAAS,IAAI,EAGf,0DACE,YAAa,KAGf,8EACE,YAAa,IACb,cAAe,KAGjB,8EACE,YAAa,IACb,OAAQ,IAAI,EACZ,cAAe,KAGjB,4FACE,WAAY,EAGd,2FACE,cAAe,EAGjB,wFACE,YAAa,KAGf,wBACE,MAAO,QACP,UAAW,OACX,YAAa,OAIf,kBACE,WAAY,KACZ,WAAY,IAAI,MAAM,QACtB,WAAY,EACZ,eAAgB,KAGlB,8BACE,aAAc,KAGhB,yBACE,eACE,QAAS,KACT,MAAO,KACP,OAAQ,MACR,WAAY,MAIhB,yBACE,WACE,QAAS,KAAK,EACd,MAAO,MAET,sCACE,MAAO,MAIX,qBAAsB,wBACpB,WAAY,KACZ,OAAQ,EACR,QAAS,EAGX,qBACE,YAAa,KACb,WAAY,KACZ,iBAAkB,sFAGpB,yBACE,qBACE,QAAS,MAIb,+BACE,SAAU,SAGZ,qCACE,MAAO,QACP,QAAS,QACT,QAAS,MACT,YAAa,YACb,UAAW,KACX,YAAa,IACb,SAAU,SACV,MAAO,KACP,IAAK,IACL,UAAW,iBAGb,yBACE,qCACE,QAAS,MAIb,4CACE,QAAS,QAGX,oBACE,cAAe,KAGjB,sBACE,QAAS,KACT,KAAM,EAGR,4BACE,gBAAiB,KAGnB,sDACE,MAAO,QAGT,uBACE,YAAa,KAGf,8CACE,YAAa,IACb,WAAY,OAGd,+CACE,KAAM,EAAE,EAAE,KAGZ,sDACE,iBAAkB,QAClB,aAAc,QACd,OAAQ,QACR,MAAO,KAGT,qDACE,MAAO,QAGT,qEACE,WAAY,IAGd,sDACE,MAAO,QACP,iBAAkB,KAClB,aAAc,QAGhB,2BACE,iBAAkB,KAClB,cAAe,IACf,OAAQ,MAAM,IAAI,KAClB,MAAO,KACP,UAAW,KACX,YAAa,IACb,OAAQ,KACR,MAAO,KACP,QAAS,aACT,WAAY,OAGd,0BACE,MAAO,QACP,YAAa,IACb,eAAgB,WAChB,QAAS,aAGX,4BACE,QAAS,KAGX,8BACE,QAAS,IAAI,EAAE,IAAI,KACnB,MAAO,QAGT,kDAAmD,iDACjD,iBAAkB,QAClB,iBAAkB,sDAGpB,oDAAqD,mDACnD,MAAO,QAGT,qCACE,YAAa,IAGf,qCACE,OAAQ,YAGV,uCACE,eAAgB"}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/_config.yml b/themes/src/main/node_modules/patternfly/tests/pages/_config.yml
index 51a16fd..f194a76 100644
--- a/themes/src/main/node_modules/patternfly/tests/pages/_config.yml
+++ b/themes/src/main/node_modules/patternfly/tests/pages/_config.yml
@@ -11,6 +11,9 @@ navbar-logo-alt-icon: '/img/logo-alt.svg'
 navbar-brand-icon: '/img/brand.svg'
 navbar-brand-alt-icon: '/img/brand-alt.svg'
 brand-horizontal: '/img/Logo_Horizontal_Reversed.svg'
+google-drive-icon: '/img/google-drive.svg'
+gmail-icon: '/img/gmail.svg'
+google-calendar-icon: '/img/google-calendar.svg'
 title: PatternFly
 title-product: 'PatternFly Enterprise Application'
 url-css-additions: '/css/patternfly-additions.min.css'
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/charts/donut-utilization.html b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/charts/donut-utilization.html
index 5f55ba0..938b2ed 100644
--- a/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/charts/donut-utilization.html
+++ b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/charts/donut-utilization.html
@@ -1,9 +1,9 @@
 <div id="{{include.id}}1" class="example-donut-chart-utilization"></div>
 
 <div class="pct-donut-chart-pf example-donut-chart-utilization">
-  <span class="pct-donut-chart-pf-chart">
-    <span id="{{include.id}}2"></span>
-  </span>
+  <div class="pct-donut-chart-pf-chart">
+    <div id="{{include.id}}2"></div>
+  </div>
   <span class="pct-donut-chart-pf-label">
     60 MHz of 100 MHz used
   </span>
@@ -11,9 +11,9 @@
 
 <div class="example-donut-chart-utilization">
   <span class="pct-donut-chart-pf pct-donut-chart-pf-left">
-    <span class="pct-donut-chart-pf-chart">
-      <span id="{{include.id}}3"></span>
-    </span>
+    <div class="pct-donut-chart-pf-chart">
+      <div id="{{include.id}}3"></div>
+    </div>
     <span class="pct-donut-chart-pf-label text-right">
       60 MHz of 100 MHz used
     </span>
@@ -22,9 +22,9 @@
 
 <div class="example-donut-chart-utilization">
   <span class="pct-donut-chart-pf pct-donut-chart-pf-right">
-    <span class="pct-donut-chart-pf-chart">
-      <span id="{{include.id}}4"></span>
-    </span>
+    <div class="pct-donut-chart-pf-chart">
+      <div id="{{include.id}}4"></div>
+    </div>
     <span class="pct-donut-chart-pf-label text-left">
       60 MHz of 100 MHz
     </span>
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/forms/bootstrap-slider.html b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/forms/bootstrap-slider.html
new file mode 100644
index 0000000..64d6853
--- /dev/null
+++ b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/forms/bootstrap-slider.html
@@ -0,0 +1,144 @@
+<input id="slider-one" type="text"
+data-provide="slider"
+data-slider-min="0"
+data-slider-max="100"
+data-slider-tooltip="show" />
+
+<br>
+<br>
+
+<input id="slider-two" type="text"
+data-provide="slider"
+data-slider-ticks="[1, 2, 3, 4, 5]"
+data-slider-ticks-labels='["1", "2", "3", "4", "5"]'
+data-slider-min="1"
+data-slider-max="5"
+data-slider-step="1"
+data-slider-value="3"
+data-slider-tooltip="show" />
+
+<h2>Example of a slider in a form</h2>
+<form class="form-horizontal" role="form">
+  <div class="form-group">
+    <label for="size" class="col-sm-2 control-label">Size</label>
+    <div class="col-sm-10">
+      <input id="slider" type="text"
+      data-provide="slider"
+      data-slider-ticks="[1, 2, 3, 4, 5]"
+      data-slider-ticks-labels='["1", "2", "3", "4", "5"]'
+      data-slider-min="1"
+      data-slider-max="5"
+      data-slider-step="1"
+      data-slider-value="3"
+      data-slider-tooltip="show" />
+    </div>
+  </div>
+  <div class="form-group">
+    <label for="name" class="col-sm-2 control-label">Name</label>
+    <div class="col-sm-10">
+      <input type="text" class="form-control" id="name">
+    </div>
+  </div>
+
+  <div class="form-group">
+    <label for="size" class="col-sm-2 control-label">Size</label>
+    <div class="col-sm-10">
+      <div class="slider-pf">
+        <b>0</b>
+        <input id="size" type="text"
+        data-provide="slider"
+        data-slider-min="0"
+        data-slider-max="100"
+        data-slider-tooltip="show" />
+        <b>100</b>
+        <input type="text" size="3" class="slider-input-pf">
+        <span>GB</span>
+      </div>
+    </div>
+  </div>
+
+  <div class="form-group">
+    <div class="col-sm-offset-2 col-sm-10">
+      <button type="submit" class="btn btn-default">Sign in</button>
+    </div>
+  </div>
+</form>
+
+<br>
+<br>
+
+<div class="slider-pf">
+  <b>0</b>
+  <input id="slider-pf" type="text"
+  data-provide="slider"
+  data-slider-min="0"
+  data-slider-max="100"
+  data-slider-tooltip="show" />
+  <b>100</b>
+  <input type="text" size="3" class="slider-input-pf">
+  <span>GB</span>
+</div>
+
+<br>
+<br>
+
+<div class="slider-pf">
+  <b>0</b>
+  <input id="with-stops" type="text"
+  data-provide="slider"
+  data-slider-min="0"
+  data-slider-max="100"
+  data-slider-tooltip="show" />
+  <b>100</b>
+  <input type="text" size="3" class="slider-input-pf">
+  <span class="dropdown">
+    <button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+      GB
+      <span class="caret"></span>
+    </button>
+    <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+      <li><a href="#">GB</a></li>
+      <li><a href="#">MB</a></li>
+    </ul>
+  </span>
+</div>
+<script>
+  $(function () {
+    $('.slider-input-pf').tooltip({ trigger: 'manual' })
+      .on('keyup', function (e) {
+        var $this = $(this);
+        var sd = $this.siblings('[data-provide=slider]').slider();
+        if ($this.val().trim() !== '' && !$.isNumeric(this.value)) {
+          this.value = sd.slider('getValue');
+        }
+      })
+      .on('keypress blur', function (e) {
+        if (e.which == 13 || e.type === 'blur') {
+          e.preventDefault();
+          var $this = $(this);
+          var sd = $this.siblings('[data-provide=slider]').slider();
+          var max = sd.slider('getAttribute', 'max');
+          var min = sd.slider('getAttribute', 'min');
+          if (!$.isNumeric(this.value) || (this.value > max || this.value < min)) {
+            var warningInfo = $.isNumeric(this.value) ? 'Valid value should be between ' + min
+              + ' and ' + max : 'Valid value should be number';
+            $this.attr('data-original-title', warningInfo).tooltip('show').addClass('warning');
+            this.value = sd.slider('getValue');
+            setTimeout(function(){ $this.tooltip('hide'); }, 3000);
+          } else {
+            if ($this.is('.warning')) {
+              $this.tooltip('hide');
+            }
+            this.value = $this.val().trim();
+            sd.slider('setValue', this.value);
+          }
+        }
+      })
+      .siblings('[data-provide=slider]').each(function () {
+        $(this).siblings('.slider-input-pf').val(this.value);
+        $(this).slider().on('slide', function (e) {
+          $(e.target).siblings('.slider-input-pf').val(e.value);
+        });
+      });
+  });
+</script>
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/forms/field-level-help.html b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/forms/field-level-help.html
index 792cd42..8b71058 100644
--- a/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/forms/field-level-help.html
+++ b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/forms/field-level-help.html
@@ -10,5 +10,8 @@
   // Initialize Popovers
   $(document).ready(function() {
     $('[data-toggle=popover]').popovers()
+      .on('hidden.bs.popover', function (e) {
+        $(e.target).data('bs.popover').inState.click = false;
+      });
   });
 </script>
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/forms/filter.html b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/forms/filter.html
new file mode 100644
index 0000000..8364163
--- /dev/null
+++ b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/forms/filter.html
@@ -0,0 +1,122 @@
+<div>
+  <h3>Input Filters</h3>
+  <div style="width: 300px;">
+    <div class="filter-pf">
+      <div class="filter-pf-fields">
+        <div class="input-group form-group">
+          <div class="input-group-btn">
+            <div class="dropdown btn-group">
+              <button type="button" class="dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+                Name
+                <span class="caret"></span>
+              </button>
+              <ul class="dropdown-menu">
+                <li class="selected"><a href="#">Name</a></li>
+                <li><a href="#">Address</a></li>
+                <li><a href="#">Birth Month</a></li>
+                <li><a href="#">Car</a></li>
+              </ul>
+            </div>
+          </div>
+          <input type="text" class="form-control" value="" placeholder="Filter by Name">
+        </div>
+      </div>
+    </div>
+  </div>
+
+  <h3>Select Filters</h3>
+  <div class="filter-pf">
+    <div class="filter-pf-fields">
+      <div class="input-group form-group">
+        <div class="input-group-btn">
+          <div class="dropdown btn-group">
+            <button type="button" class="filter-pf-fields dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+              Birth Month
+              <span class="caret"></span>
+            </button>
+            <ul class="dropdown-menu">
+              <li class="selected"><a href="#">Name</a></li>
+              <li><a href="#">Address</a></li>
+              <li><a href="#">Birth Month</a></li>
+              <li><a href="#">Car</a></li>
+            </ul>
+          </div>
+        </div>
+        <div class="filter-pf-select">
+          <div class="dropdown btn-group">
+            <button type="button" class="filter-pf-select-dropdown dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+              Filter by Birth Month
+              <span class="caret"></span>
+            </button>
+            <ul role="menu" class="dropdown-menu" aria-labelledby="filterSelectMenu">
+              <li><a href="#">Filter by Birth Month</a></li>
+              <li><a role="menuitem" tabindex="-1" href="#">January</a></li>
+              <li class="selected"><a role="menuitem" tabindex="-1" href="#">February</a></li>
+              <li><a href="#">March</a></li>
+              <li><a href="#">April</a></li>
+              <li><a href="#">May</a></li>
+              <li><a href="#">June</a></li>
+              <li><a href="#">July</a></li>
+              <li><a href="#">August</a></li>
+              <li><a href="#">September</a></li>
+              <li><a href="#">October</a></li>
+              <li><a href="#">November</a></li>
+              <li><a href="#">December</a></li>
+            </ul>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+
+  <h3>Category Filters</h3>
+  <div class="filter-pf">
+    <div class="filter-pf-fields">
+      <div class="input-group form-group">
+        <div class="input-group-btn">
+          <div class="dropdown btn-group">
+            <button type="button" class="filter-pf-fields dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+              Car
+              <span class="caret"></span>
+            </button>
+            <ul class="dropdown-menu">
+              <li><a href="#">Name</a></li>
+              <li><a href="#">Address</a></li>
+              <li><a href="#">Birth Month</a></li>
+              <li class="selected"><a href="#">Car</a></li>
+            </ul>
+          </div>
+        </div>
+        <div class="filter-pf-category-select">
+          <div class="filter-pf-select">
+            <div class="dropdown btn-group">
+              <button type="button" class="filter-pf-select-dropdown dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+                Subaru
+                <span class="caret"></span>
+              </button>
+              <ul class="dropdown-menu">
+                <li><a href="#">Filter by Car Make</a></li>
+                <li class="selected"><a href="#">Subaru</a></li>
+                <li><a href="#">Toyota</a></li>
+              </ul>
+            </div>
+          </div>
+          <div class="filter-pf-select">
+            <div class="dropdown btn-group">
+              <button type="button" class="filter-pf-category-select-value filter-pf-select-dropdown dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+                Crosstrek
+                <span class="caret"></span>
+              </button>
+              <ul class="dropdown-menu">
+                <li><a href="#">Filter by Car Model</a></li>
+                <li><a href="#">Outback</a></li>
+                <li><a href="#">Crosstrek</a></li>
+                <li><a href="#">Impreza</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/forms/modal-overlay.html b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/forms/modal-overlay.html
new file mode 100644
index 0000000..b41297e
--- /dev/null
+++ b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/forms/modal-overlay.html
@@ -0,0 +1,37 @@
+<button class="btn btn-default" data-toggle="modal" data-target="#myModal">Launch demo modal</button>
+<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
+  <div class="modal-dialog">
+    <div class="modal-content">
+      <div class="modal-header">
+        <button type="button" class="close" data-dismiss="modal" aria-hidden="true" aria-label="Close">
+          <span class="pficon pficon-close"></span>
+        </button>
+        <h4 class="modal-title" id="myModalLabel">Modal Title</h4>
+      </div>
+      <div class="modal-body">
+        <form class="form-horizontal">
+          <div class="form-group">
+            <label class="col-sm-3 control-label" for="textInput">Field One</label>
+            <div class="col-sm-9">
+              <input type="text" id="textInput" class="form-control"></div>
+          </div>
+          <div class="form-group">
+            <label class="col-sm-3 control-label" for="textInput2">Field Two</label>
+            <div class="col-sm-9">
+              <input type="text" id="textInput2" class="form-control"></div>
+          </div>
+          <div class="form-group">
+            <label class="col-sm-3 control-label" for="textInput3">Field Three</label>
+            <div class="col-sm-9">
+              <input type="text" id="textInput3" class="form-control">
+            </div>
+          </div>
+        </form>
+      </div>
+      <div class="modal-footer">
+        <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
+        <button type="button" class="btn btn-primary">Save</button>
+      </div>
+    </div>
+  </div>
+</div>
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/framework/context-selector.html b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/framework/context-selector.html
new file mode 100644
index 0000000..605e575
--- /dev/null
+++ b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/framework/context-selector.html
@@ -0,0 +1,30 @@
+<ul class="nav contextselector-pf">
+  <li class="dropdown">
+    <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu3{{include.navindex}}" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+      <span class="contextselector-pf-title">Really long server name server name</span>
+      <span class="caret"></span>
+    </a>
+    <div class="dropdown-menu" aria-labelledby="dropdownMenu3{{include.navindex}}">
+    <div class="form-group">
+    <label class="sr-only" for="searchinput">search</label>
+    <input type="text" class="form-control" id="searchinput" placeholder="Search">
+  </div>
+    <ul class="contextselector-pf-list list-unstyled">
+      <li><a href="#0">A Different Context</a></li>
+      <li><a href="#0">A Second Context</a></li>
+      <li><a href="#0">Current</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+    </ul>
+  </div>
+  </li>
+</ul>
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/framework/login-single-sign-on.html b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/framework/login-single-sign-on.html
index 2c4f210..d42b631 100644
--- a/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/framework/login-single-sign-on.html
+++ b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/framework/login-single-sign-on.html
@@ -41,9 +41,9 @@
           <div class="login-pf-page-footer-sso-services">
             <p>One account for all your company services</p>
             <ul class="login-pf-page-footer-sso-services-logos">
-              <li><img src="{{site.assets-base}}/img/google-drive.svg" alt="google drive icon" /></li>
-              <li><img src="{{site.assets-base}}/img/gmail.svg" alt="gmail icon" /></li>
-              <li><img src="{{site.assets-base}}/img/google-calendar.svg" alt="google calendar icon" /></li>
+              <li><img src="{{site.assets-base}}/{{site.google-drive-icon}}" alt="google drive icon" /></li>
+              <li><img src="{{site.assets-base}}/{{site.gmail-icon}}" alt="gmail icon" /></li>
+              <li><img src="{{site.assets-base}}/{{site.google-calendar-icon}}" alt="google calendar icon" /></li>
             </ul>
           </div>
           <ul class="login-pf-page-footer-links list-unstyled">
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/layouts/navbar-vertical.html b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/layouts/navbar-vertical.html
index c95094e..6bc7724 100644
--- a/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/layouts/navbar-vertical.html
+++ b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/layouts/navbar-vertical.html
@@ -1,6 +1,6 @@
 {% assign launchergrid = include.launchergrid %}
 {% assign launchericons = include.launchericons %}
-<nav class="navbar navbar-pf-vertical">
+<nav class="navbar navbar-pf-vertical{% if page.contextselector %} navbar-pf-contextselector{% endif %}">
   <div class="navbar-header">
     <button type="button" class="navbar-toggle">
       <span class="sr-only">Toggle navigation</span>
@@ -8,9 +8,12 @@
       <span class="icon-bar"></span>
       <span class="icon-bar"></span>
     </button>
-    <a href="/" class="navbar-brand">
+    <a href="/" class="navbar-brand{% if page.contextselector %} hidden-sm hidden-xs{% endif %}">
       {% if site.navbar-pf-navbar-brand-icon %}<img class="navbar-brand-icon" src="{{site.assets-base}}/{{site.navbar-logo-alt-icon}}" alt=""/>{% endif %}<img class="navbar-brand-name" src="{{site.assets-base}}/{{site.navbar-brand-alt-icon}}" alt="{{site.title-product}}" />
     </a>
+    {% if page.contextselector %}
+    {% include widgets/framework/context-selector.html %}
+    {% endif %}
   </div>
   <nav class="collapse navbar-collapse">
     <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/layouts/nav-vertical-notification-drawer.html b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/layouts/nav-vertical-notification-drawer.html
index 3d262cb..093fbf4 100644
--- a/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/layouts/nav-vertical-notification-drawer.html
+++ b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/layouts/nav-vertical-notification-drawer.html
@@ -17,6 +17,9 @@
         </a>
       </li>
     </ul>
+    {% if page.contextselector %}
+    {% include widgets/framework/context-selector.html %}
+    {% endif %}
   </div>
   <nav class="collapse navbar-collapse">
     <ul class="nav navbar-nav">
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/navigation/pagination.html b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/navigation/pagination.html
new file mode 100644
index 0000000..cfe544c
--- /dev/null
+++ b/themes/src/main/node_modules/patternfly/tests/pages/_includes/widgets/navigation/pagination.html
@@ -0,0 +1,245 @@
+<h2>Pager - default size</h2>
+<ul class="pager">
+  <li class="previous">
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+      Previous
+    </a>
+  </li>
+  <li class="next">
+    <a href="#">
+      Next
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pager">
+  <li class="previous disabled">
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+      Previous
+    </a>
+  </li>
+  <li class="next disabled">
+    <a href="#">
+      Next
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<hr>
+<h2>Pager - mini size</h2>
+<ul class="pager pager-sm">
+  <li class="previous">
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+      Previous
+    </a>
+  </li>
+  <li class="next">
+    <a href="#">
+      Next
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pager pager-sm">
+  <li class="previous disabled">
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+      Previous
+    </a>
+  </li>
+  <li class="next disabled">
+    <a href="#">
+      Next
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<hr>
+<h2>Pagination - default size</h2>
+<ul class="pagination">
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+    </a>
+  </li>
+  <li>
+    <a href="#">1</a>
+  </li>
+  <li>
+    <a href="#">2</a>
+  </li>
+  <li>
+    <a href="#">3</a>
+  </li>
+  <li>
+    <a href="#">4</a>
+  </li>
+  <li>
+    <a href="#">5</a>
+  </li>
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pagination">
+  <li class="disabled">
+    <span>
+      <span class="i fa fa-angle-left"></span>
+    </span>
+  </li>
+  <li class="active">
+    <span>
+      1
+      <span class="sr-only">(current)</span>
+    </span>
+  </li>
+  <li>
+    <a href="#">2</a>
+  </li>
+  <li>
+    <a href="#">3</a>
+  </li>
+  <li>
+    <a href="#">4</a>
+  </li>
+  <li>
+    <a href="#">5</a>
+  </li>
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pagination">
+  <li class="disabled">
+    <span>
+      <span class="i fa fa-angle-left"></span>
+    </span>
+  </li>
+  <li class="disabled">
+    <span>
+      1
+      <span class="sr-only">(current)</span>
+    </span>
+  </li>
+  <li class="disabled">
+    <a href="#">2</a>
+  </li>
+  <li class="disabled">
+    <a href="#">3</a>
+  </li>
+  <li class="disabled">
+    <a href="#">4</a>
+  </li>
+  <li class="disabled">
+    <a href="#">5</a>
+  </li>
+  <li class="disabled">
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<hr>
+<h2>Pagination - mini size</h2>
+<ul class="pagination pagination-sm">
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+    </a>
+  </li>
+  <li>
+    <a href="#">1</a>
+  </li>
+  <li>
+    <a href="#">2</a>
+  </li>
+  <li>
+    <a href="#">3</a>
+  </li>
+  <li>
+    <a href="#">4</a>
+  </li>
+  <li>
+    <a href="#">5</a>
+  </li>
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pagination pagination-sm">
+  <li class="disabled">
+    <span>
+      <span class="i fa fa-angle-left"></span>
+    </span>
+  </li>
+  <li class="active">
+    <span>
+      1
+      <span class="sr-only">(current)</span>
+    </span>
+  </li>
+  <li>
+    <a href="#">2</a>
+  </li>
+  <li>
+    <a href="#">3</a>
+  </li>
+  <li>
+    <a href="#">4</a>
+  </li>
+  <li>
+    <a href="#">5</a>
+  </li>
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pagination pagination-sm">
+  <li class="disabled">
+    <span>
+      <span class="i fa fa-angle-left"></span>
+    </span>
+  </li>
+  <li class="disabled">
+    <span>
+      1
+      <span class="sr-only">(current)</span>
+    </span>
+  </li>
+  <li class="disabled">
+    <a href="#">2</a>
+  </li>
+  <li class="disabled">
+    <a href="#">3</a>
+  </li>
+  <li class="disabled">
+    <a href="#">4</a>
+  </li>
+  <li class="disabled">
+    <a href="#">5</a>
+  </li>
+  <li class="disabled">
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<hr>
+<h2>Pagination row for card, list, and table views</h2>
+<p>The following control can be seen in these examples:</p>
+<ul>
+  <li><a href="pagination-card-view.html">Card View</a></li>
+  <li><a href="pagination-list-view.html">List View</a></li>
+  <li><a href="pagination-table-view.html">Table View</a></li>
+</ul>
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/bootstrap-slider.html b/themes/src/main/node_modules/patternfly/tests/pages/bootstrap-slider.html
index 302dee5..61b40f1 100644
--- a/themes/src/main/node_modules/patternfly/tests/pages/bootstrap-slider.html
+++ b/themes/src/main/node_modules/patternfly/tests/pages/bootstrap-slider.html
@@ -1,107 +1,9 @@
 ---
-alert-message: ', <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://seiyria.com/bootstrap-slider/">hhttp://seiyria.com/bootstrap-slider/</a>.'
+alert-message: ', <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://seiyria.com/bootstrap-slider/">http://seiyria.com/bootstrap-slider/</a>.'
 categories: [Widgets]
 layout: page
 title: Bootstrap Slider
 resource: true
 url-js-extra: 'https://cdnjs.cloudflare.com/ajax/libs/bootstrap-slider/9.9.0/bootstrap-slider.min.js'
 ---
-
-<input id="slider-one" type="text"
-data-provide="slider"
-data-slider-min="0"
-data-slider-max="100"
-data-slider-tooltip="show" />
-
-<br>
-<br>
-
-<input id="slider-two" type="text"
-data-provide="slider"
-data-slider-ticks="[1, 2, 3, 4, 5]"
-data-slider-ticks-labels='["1", "2", "3", "4", "5"]'
-data-slider-min="1"
-data-slider-max="5"
-data-slider-step="1"
-data-slider-value="3"
-data-slider-tooltip="show" />
-
-<h2>Example of a slider in a form</h2>
-<form class="form-horizontal" role="form">
-  <div class="form-group">
-    <label for="size" class="col-sm-2 control-label">Size</label>
-    <div class="col-sm-10">
-      <input id="slider" type="text"
-      data-provide="slider"
-      data-slider-ticks="[1, 2, 3, 4, 5]"
-      data-slider-ticks-labels='["1", "2", "3", "4", "5"]'
-      data-slider-min="1"
-      data-slider-max="5"
-      data-slider-step="1"
-      data-slider-value="3"
-      data-slider-tooltip="show" />
-    </div>
-  </div>
-  <div class="form-group">
-    <label for="name" class="col-sm-2 control-label">Name</label>
-    <div class="col-sm-10">
-      <input type="text" class="form-control" id="name">
-    </div>
-  </div>
-
-  <div class="form-group">
-    <label for="size" class="col-sm-2 control-label">Size</label>
-    <div class="col-sm-10">
-      <div class="slider-pf">
-        <input id="size" type="text"
-        data-provide="slider"
-        data-slider-min="0"
-        data-slider-max="100"
-        data-slider-tooltip="show" />
-        <input type="text" size="3">
-        <span>GB</span>
-      </div>
-    </div>
-  </div>
-
-  <div class="form-group">
-    <div class="col-sm-offset-2 col-sm-10">
-      <button type="submit" class="btn btn-default">Sign in</button>
-    </div>
-  </div>
-</form>
-
-<br>
-<br>
-
-<div class="slider-pf">
-  <input id="slider-pf" type="text"
-  data-provide="slider"
-  data-slider-min="0"
-  data-slider-max="100"
-  data-slider-tooltip="show" />
-  <input type="text" size="3">
-  <span>GB</span>
-</div>
-
-<br>
-<br>
-
-<div class="slider-pf">
-  <input id="with-stops" type="text"
-  data-provide="slider"
-  data-slider-min="0"
-  data-slider-max="100"
-  data-slider-tooltip="show" />
-  <input type="text" size="3">
-  <span class="dropdown">
-    <button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
-      GB
-      <span class="caret"></span>
-    </button>
-    <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
-      <li><a href="#">GB</a></li>
-      <li><a href="#">MB</a></li>
-    </ul>
-  </span>
-</div>
+{% include widgets/forms/bootstrap-slider.html %}
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/context-selector.html b/themes/src/main/node_modules/patternfly/tests/pages/context-selector.html
new file mode 100644
index 0000000..1ade1df
--- /dev/null
+++ b/themes/src/main/node_modules/patternfly/tests/pages/context-selector.html
@@ -0,0 +1,10 @@
+---
+categories: [Widgets]
+css-extra: false
+layout: page
+resource: true
+contextselector: true
+navindex: 1
+title: Context Selector
+---
+{% include widgets/layouts/navbar-vertical.html navindex=5 %}
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/context-selector-vertical-nav.html b/themes/src/main/node_modules/patternfly/tests/pages/context-selector-vertical-nav.html
new file mode 100644
index 0000000..b9aadaa
--- /dev/null
+++ b/themes/src/main/node_modules/patternfly/tests/pages/context-selector-vertical-nav.html
@@ -0,0 +1,12 @@
+---
+categories: [Navigation]
+css-extra: false
+layout: layout-fixed
+resource: true
+full-page: true
+contextselector: true
+submenus: true
+title: Context Selector for Vertical Navigation
+url-js-extra: ['https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js', 'https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js', 'https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js']
+---
+{% include widgets/navigation/vertical-navigation.html icons=true %}
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/filter.html b/themes/src/main/node_modules/patternfly/tests/pages/filter.html
index 326eb7d..b42e019 100644
--- a/themes/src/main/node_modules/patternfly/tests/pages/filter.html
+++ b/themes/src/main/node_modules/patternfly/tests/pages/filter.html
@@ -4,125 +4,4 @@ layout: page
 title: Filter
 resource: true
 ---
-<div>
-  <h3>Input Filters</h3>
-  <div style="width: 300px;">
-    <div class="filter-pf">
-      <div class="filter-pf-fields">
-        <div class="input-group form-group">
-          <div class="input-group-btn">
-            <div class="dropdown btn-group">
-              <button type="button" class="dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
-                Name
-                <span class="caret"></span>
-              </button>
-              <ul class="dropdown-menu">
-                <li class="selected"><a href="#">Name</a></li>
-                <li><a href="#">Address</a></li>
-                <li><a href="#">Birth Month</a></li>
-                <li><a href="#">Car</a></li>
-              </ul>
-            </div>
-          </div>
-          <input type="text" class="form-control" value="" placeholder="Filter by Name">
-        </div>
-      </div>
-    </div>
-  </div>
-
-  <h3>Select Filters</h3>
-  <div class="filter-pf">
-    <div class="filter-pf-fields">
-      <div class="input-group form-group">
-        <div class="input-group-btn">
-          <div class="dropdown btn-group">
-            <button type="button" class="filter-pf-fields dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
-              Birth Month
-              <span class="caret"></span>
-            </button>
-            <ul class="dropdown-menu">
-              <li class="selected"><a href="#">Name</a></li>
-              <li><a href="#">Address</a></li>
-              <li><a href="#">Birth Month</a></li>
-              <li><a href="#">Car</a></li>
-            </ul>
-          </div>
-        </div>
-        <div class="filter-pf-select">
-          <div class="dropdown btn-group">
-            <button type="button" class="filter-pf-select-dropdown dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
-              Filter by Birth Month
-              <span class="caret"></span>
-            </button>
-            <ul role="menu" class="dropdown-menu" aria-labelledby="filterSelectMenu">
-              <li><a href="#">Filter by Birth Month</a></li>
-              <li><a role="menuitem" tabindex="-1" href="#">January</a></li>
-              <li class="selected"><a role="menuitem" tabindex="-1" href="#">February</a></li>
-              <li><a href="#">March</a></li>
-              <li><a href="#">April</a></li>
-              <li><a href="#">May</a></li>
-              <li><a href="#">June</a></li>
-              <li><a href="#">July</a></li>
-              <li><a href="#">August</a></li>
-              <li><a href="#">September</a></li>
-              <li><a href="#">October</a></li>
-              <li><a href="#">November</a></li>
-              <li><a href="#">December</a></li>
-            </ul>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-
-  <h3>Category Filters</h3>
-  <div class="filter-pf">
-    <div class="filter-pf-fields">
-      <div class="input-group form-group">
-        <div class="input-group-btn">
-          <div class="dropdown btn-group">
-            <button type="button" class="filter-pf-fields dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
-              Car
-              <span class="caret"></span>
-            </button>
-            <ul class="dropdown-menu">
-              <li><a href="#">Name</a></li>
-              <li><a href="#">Address</a></li>
-              <li><a href="#">Birth Month</a></li>
-              <li class="selected"><a href="#">Car</a></li>
-            </ul>
-          </div>
-        </div>
-        <div class="filter-pf-category-select">
-          <div class="filter-pf-select">
-            <div class="dropdown btn-group">
-              <button type="button" class="filter-pf-select-dropdown dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
-                Subaru
-                <span class="caret"></span>
-              </button>
-              <ul class="dropdown-menu">
-                <li><a href="#">Filter by Car Make</a></li>
-                <li class="selected"><a href="#">Subaru</a></li>
-                <li><a href="#">Toyota</a></li>
-              </ul>
-            </div>
-          </div>
-          <div class="filter-pf-select">
-            <div class="dropdown btn-group">
-              <button type="button" class="filter-pf-category-select-value filter-pf-select-dropdown dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
-                Crosstrek
-                <span class="caret"></span>
-              </button>
-              <ul class="dropdown-menu">
-                <li><a href="#">Filter by Car Model</a></li>
-                <li><a href="#">Outback</a></li>
-                <li><a href="#">Crosstrek</a></li>
-                <li><a href="#">Impreza</a></li>
-              </ul>
-            </div>
-          </div>
-        </div>
-      </div>
-    </div>
-  </div>
-</div>
+{% include widgets/forms/filter.html %}
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/icons.html b/themes/src/main/node_modules/patternfly/tests/pages/icons.html
index ba277e0..fe888ee 100644
--- a/themes/src/main/node_modules/patternfly/tests/pages/icons.html
+++ b/themes/src/main/node_modules/patternfly/tests/pages/icons.html
@@ -206,6 +206,10 @@ resource: true
               <span class="icon-class">pficon-middleware</span>
             </li>
             <li>
+              <span class="pficon pficon-network-range"></span>
+              <span class="icon-class">pficon-network-range</span>
+            </li>
+            <li>
               <span class="pficon pficon-network"></span>
               <span class="icon-class">pficon-network</span>
             </li>
@@ -310,6 +314,10 @@ resource: true
               <span class="icon-class">pficon-route</span>
             </li>
             <li>
+              <span class="pficon pficon-satellite"></span>
+              <span class="icon-class">pficon-satellite</span>
+            </li>
+            <li>
               <span class="pficon pficon-save"></span>
               <span class="icon-class">pficon-save</span>
             </li>
@@ -358,6 +366,10 @@ resource: true
               <span class="icon-class">pficon-storage-domain</span>
             </li>
             <li>
+              <span class="pficon pficon-template"></span>
+              <span class="icon-class">pficon-template</span>
+            </li>
+            <li>
               <span class="pficon pficon-tenant"></span>
               <span class="icon-class">pficon-tenant</span>
             </li>
@@ -398,6 +410,10 @@ resource: true
               <span class="icon-class">pficon-users</span>
             </li>
             <li>
+              <span class="pficon pficon-vcenter"></span>
+              <span class="icon-class">pficon-vcenter</span>
+            </li>
+            <li>
               <span class="pficon pficon-virtual-machine"></span>
               <span class="icon-class">pficon-virtual-machine</span>
             </li>
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/modals.html b/themes/src/main/node_modules/patternfly/tests/pages/modals.html
index 2919e03..098246b 100644
--- a/themes/src/main/node_modules/patternfly/tests/pages/modals.html
+++ b/themes/src/main/node_modules/patternfly/tests/pages/modals.html
@@ -4,40 +4,4 @@ layout: page
 title: Modals
 resource: true
 ---
-      <button class="btn btn-default" data-toggle="modal" data-target="#myModal">Launch demo modal</button>
-      <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
-        <div class="modal-dialog">
-          <div class="modal-content">
-            <div class="modal-header">
-              <button type="button" class="close" data-dismiss="modal" aria-hidden="true" aria-label="Close">
-                <span class="pficon pficon-close"></span>
-              </button>
-              <h4 class="modal-title" id="myModalLabel">Modal Title</h4>
-            </div>
-            <div class="modal-body">
-              <form class="form-horizontal">
-                <div class="form-group">
-                  <label class="col-sm-3 control-label" for="textInput">Field One</label>
-                  <div class="col-sm-9">
-                    <input type="text" id="textInput" class="form-control"></div>
-                </div>
-                <div class="form-group">
-                  <label class="col-sm-3 control-label" for="textInput2">Field Two</label>
-                  <div class="col-sm-9">
-                    <input type="text" id="textInput2" class="form-control"></div>
-                </div>
-                <div class="form-group">
-                  <label class="col-sm-3 control-label" for="textInput3">Field Three</label>
-                  <div class="col-sm-9">
-                    <input type="text" id="textInput3" class="form-control">
-                  </div>
-                </div>
-              </form>
-            </div>
-            <div class="modal-footer">
-              <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
-              <button type="button" class="btn btn-primary">Save</button>
-            </div>
-          </div>
-        </div>
-      </div>
+{% include widgets/forms/modal-overlay.html %}
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/notification-drawer-vertical-nav.html b/themes/src/main/node_modules/patternfly/tests/pages/notification-drawer-vertical-nav.html
index f9a5b2c..b6866da 100644
--- a/themes/src/main/node_modules/patternfly/tests/pages/notification-drawer-vertical-nav.html
+++ b/themes/src/main/node_modules/patternfly/tests/pages/notification-drawer-vertical-nav.html
@@ -5,6 +5,7 @@ layout: layout-fixed
 resource: true
 full-page: true
 notification-drawer: true
+contextselector: true
 submenus: true
 title: Notification Drawer for Vertical Navigation
 url-js-extra: ['https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js', 'https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js', 'https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js']
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/pagination.html b/themes/src/main/node_modules/patternfly/tests/pages/pagination.html
index daa2934..5936b8d 100644
--- a/themes/src/main/node_modules/patternfly/tests/pages/pagination.html
+++ b/themes/src/main/node_modules/patternfly/tests/pages/pagination.html
@@ -4,251 +4,6 @@ layout: page
 title: Pagination
 resource: true
 url-js-extra: [ 'https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js']
-
 ---
-      <h2>Pager - default size</h2>
-      <ul class="pager">
-        <li class="previous">
-          <a href="#">
-            <span class="i fa fa-angle-left"></span>
-            Previous
-          </a>
-        </li>
-        <li class="next">
-          <a href="#">
-            Next
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <ul class="pager">
-        <li class="previous disabled">
-          <a href="#">
-            <span class="i fa fa-angle-left"></span>
-            Previous
-          </a>
-        </li>
-        <li class="next disabled">
-          <a href="#">
-            Next
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <hr>
-      <h2>Pager - mini size</h2>
-      <ul class="pager pager-sm">
-        <li class="previous">
-          <a href="#">
-            <span class="i fa fa-angle-left"></span>
-            Previous
-          </a>
-        </li>
-        <li class="next">
-          <a href="#">
-            Next
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <ul class="pager pager-sm">
-        <li class="previous disabled">
-          <a href="#">
-            <span class="i fa fa-angle-left"></span>
-            Previous
-          </a>
-        </li>
-        <li class="next disabled">
-          <a href="#">
-            Next
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <hr>
-      <h2>Pagination - default size</h2>
-      <ul class="pagination">
-        <li>
-          <a href="#">
-            <span class="i fa fa-angle-left"></span>
-          </a>
-        </li>
-        <li>
-          <a href="#">1</a>
-        </li>
-        <li>
-          <a href="#">2</a>
-        </li>
-        <li>
-          <a href="#">3</a>
-        </li>
-        <li>
-          <a href="#">4</a>
-        </li>
-        <li>
-          <a href="#">5</a>
-        </li>
-        <li>
-          <a href="#">
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <ul class="pagination">
-        <li class="disabled">
-          <span>
-            <span class="i fa fa-angle-left"></span>
-          </span>
-        </li>
-        <li class="active">
-          <span>
-            1
-            <span class="sr-only">(current)</span>
-          </span>
-        </li>
-        <li>
-          <a href="#">2</a>
-        </li>
-        <li>
-          <a href="#">3</a>
-        </li>
-        <li>
-          <a href="#">4</a>
-        </li>
-        <li>
-          <a href="#">5</a>
-        </li>
-        <li>
-          <a href="#">
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <ul class="pagination">
-        <li class="disabled">
-          <span>
-            <span class="i fa fa-angle-left"></span>
-          </span>
-        </li>
-        <li class="disabled">
-          <span>
-            1
-            <span class="sr-only">(current)</span>
-          </span>
-        </li>
-        <li class="disabled">
-          <a href="#">2</a>
-        </li>
-        <li class="disabled">
-          <a href="#">3</a>
-        </li>
-        <li class="disabled">
-          <a href="#">4</a>
-        </li>
-        <li class="disabled">
-          <a href="#">5</a>
-        </li>
-        <li class="disabled">
-          <a href="#">
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <hr>
-      <h2>Pagination - mini size</h2>
-      <ul class="pagination pagination-sm">
-        <li>
-          <a href="#">
-            <span class="i fa fa-angle-left"></span>
-          </a>
-        </li>
-        <li>
-          <a href="#">1</a>
-        </li>
-        <li>
-          <a href="#">2</a>
-        </li>
-        <li>
-          <a href="#">3</a>
-        </li>
-        <li>
-          <a href="#">4</a>
-        </li>
-        <li>
-          <a href="#">5</a>
-        </li>
-        <li>
-          <a href="#">
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <ul class="pagination pagination-sm">
-        <li class="disabled">
-          <span>
-            <span class="i fa fa-angle-left"></span>
-          </span>
-        </li>
-        <li class="active">
-          <span>
-            1
-            <span class="sr-only">(current)</span>
-          </span>
-        </li>
-        <li>
-          <a href="#">2</a>
-        </li>
-        <li>
-          <a href="#">3</a>
-        </li>
-        <li>
-          <a href="#">4</a>
-        </li>
-        <li>
-          <a href="#">5</a>
-        </li>
-        <li>
-          <a href="#">
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <ul class="pagination pagination-sm">
-        <li class="disabled">
-          <span>
-            <span class="i fa fa-angle-left"></span>
-          </span>
-        </li>
-        <li class="disabled">
-          <span>
-            1
-            <span class="sr-only">(current)</span>
-          </span>
-        </li>
-        <li class="disabled">
-          <a href="#">2</a>
-        </li>
-        <li class="disabled">
-          <a href="#">3</a>
-        </li>
-        <li class="disabled">
-          <a href="#">4</a>
-        </li>
-        <li class="disabled">
-          <a href="#">5</a>
-        </li>
-        <li class="disabled">
-          <a href="#">
-            <span class="i fa fa-angle-right"></span>
-          </a>
-        </li>
-      </ul>
-      <hr>
-      <h2>Pagination row for card, list, and table views</h2>
-      <p>The following control can be seen in these examples:</p>
-      <ul>
-        <li><a href="pagination-card-view.html">Card View</a></li>
-        <li><a href="pagination-list-view.html">List View</a></li>
-        <li><a href="pagination-table-view.html">Table View</a></li>
-      </ul>
-      {% include widgets/pagination/pagination.html %}
+{% include widgets/navigation/pagination.html %}
+{% include widgets/pagination/pagination.html %}
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/vertical-navigation-with-badges.html b/themes/src/main/node_modules/patternfly/tests/pages/vertical-navigation-with-badges.html
index e19f35b..6e0065f 100644
--- a/themes/src/main/node_modules/patternfly/tests/pages/vertical-navigation-with-badges.html
+++ b/themes/src/main/node_modules/patternfly/tests/pages/vertical-navigation-with-badges.html
@@ -14,3 +14,14 @@ title: Vertical Navigation with Tertiary Navigation (badges)
 url-js-extra: ['https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js', 'https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js', 'https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js']
 ---
 {% include widgets/navigation/vertical-navigation.html %}
+<script>
+  const currentUrl = new URL(window.location.href);
+  const currentEnvironment = currentUrl.searchParams.get('environment');
+
+  if (currentEnvironment === 'regressions') {
+    let verticalNavEl = document.querySelector('div.nav-pf-vertical');
+    let ipsumEl = document.querySelector('[data-target="#ipsum-secondary"]');
+    ipsumEl.className = `${ipsumEl.className} is-hover`;
+    verticalNavEl.className = `${verticalNavEl.className} nav-pf-vertical-with-submenus hover-secondary-nav-pf`;
+  }
+</script>
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/vertical-navigation-with-secondary.html b/themes/src/main/node_modules/patternfly/tests/pages/vertical-navigation-with-secondary.html
index d72a8a4..72eb57d 100644
--- a/themes/src/main/node_modules/patternfly/tests/pages/vertical-navigation-with-secondary.html
+++ b/themes/src/main/node_modules/patternfly/tests/pages/vertical-navigation-with-secondary.html
@@ -12,3 +12,14 @@ title: Vertical Navigation with Secondary
 url-js-extra: ['https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js', 'https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js', 'https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js']
 ---
 {% include widgets/navigation/vertical-navigation.html %}
+<script>
+  const currentUrl = new URL(window.location.href);
+  const currentEnvironment = currentUrl.searchParams.get('environment');
+
+  if (currentEnvironment === 'regressions') {
+    let verticalNavEl = document.querySelector('div.nav-pf-vertical');
+    let ipsumEl = document.querySelector('[data-target="#ipsum-secondary"]');
+    ipsumEl.className = `${ipsumEl.className} is-hover`;
+    verticalNavEl.className = `${verticalNavEl.className} nav-pf-vertical-with-submenus hover-secondary-nav-pf`;
+  }
+</script>
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/vertical-navigation-with-tertiary-no-icons.html b/themes/src/main/node_modules/patternfly/tests/pages/vertical-navigation-with-tertiary-no-icons.html
index c3bf1c0..0e19ede 100644
--- a/themes/src/main/node_modules/patternfly/tests/pages/vertical-navigation-with-tertiary-no-icons.html
+++ b/themes/src/main/node_modules/patternfly/tests/pages/vertical-navigation-with-tertiary-no-icons.html
@@ -12,3 +12,16 @@ title: Vertical Navigation with Tertiary Navigation (no icons)
 url-js-extra: ['https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js', 'https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js', 'https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js']
 ---
 {% include widgets/navigation/vertical-navigation.html %}
+<script>
+  const currentUrl = new URL(window.location.href);
+  const currentEnvironment = currentUrl.searchParams.get('environment');
+
+  if (currentEnvironment === 'regressions') {
+    let verticalNavEl = document.querySelector('div.nav-pf-vertical');
+    let ipsumEl = document.querySelector('[data-target="#ipsum-secondary"]');
+    let tertiaryNavItemEl = document.querySelector('.list-group-item.active.tertiary-nav-item-pf')
+    verticalNavEl.className = `${verticalNavEl.className} nav-pf-vertical-with-submenus hidden-icons-pf hover-secondary-nav-pf hover-tertiary-nav-pf`;
+    ipsumEl.className = `${ipsumEl.className} is-hover`;
+    tertiaryNavItemEl.className = `${tertiaryNavItemEl.className} is-hover`;
+  }
+</script>
diff --git a/themes/src/main/node_modules/patternfly/tests/pages/vertical-navigation-with-tertiary-pins.html b/themes/src/main/node_modules/patternfly/tests/pages/vertical-navigation-with-tertiary-pins.html
index 0be025b..cbd9aef 100644
--- a/themes/src/main/node_modules/patternfly/tests/pages/vertical-navigation-with-tertiary-pins.html
+++ b/themes/src/main/node_modules/patternfly/tests/pages/vertical-navigation-with-tertiary-pins.html
@@ -12,3 +12,16 @@ title: Vertical Navigation with Tertiary Navigation (pinnable)
 url-js-extra: ['https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js', 'https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js', 'https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js']
 ---
 {% include widgets/navigation/vertical-navigation.html %}
+<script>
+  const currentUrl = new URL(window.location.href);
+  const currentEnvironment = currentUrl.searchParams.get('environment');
+
+  if (currentEnvironment === 'regressions') {
+    let verticalNavEl = document.querySelector('div.nav-pf-vertical');
+    let ipsumEl = document.querySelector('[data-target="#ipsum-secondary"]');
+    let tertiaryNavItemEl = document.querySelector('.list-group-item.active.tertiary-nav-item-pf')
+    verticalNavEl.className = `${verticalNavEl.className} nav-pf-vertical-with-submenus hidden-icons-pf hover-secondary-nav-pf hover-tertiary-nav-pf`;
+    ipsumEl.className = `${ipsumEl.className} is-hover`;
+    tertiaryNavItemEl.className = `${tertiaryNavItemEl.className} is-hover`;
+  }
+</script>
diff --git a/themes/src/main/node_modules/rcue/.bowerrc b/themes/src/main/node_modules/rcue/.bowerrc
new file mode 100644
index 0000000..e05a876
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/.bowerrc
@@ -0,0 +1,3 @@
+{
+    "directory": "components"
+}
diff --git a/themes/src/main/node_modules/rcue/.npmignore b/themes/src/main/node_modules/rcue/.npmignore
new file mode 100644
index 0000000..93493ab
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/.npmignore
@@ -0,0 +1,22 @@
+# Ignore Sublime files
+*.sublime-workspace
+*.sublime-project
+
+# Ignore vim files
+*.swp
+*.swn
+*.swo
+
+# Ignore local Bower packages
+components/
+bower_components/
+
+# Ignore local nodejs packages
+node_modules/
+
+# Ignore node files
+*.man
+nodevars.bat
+npm
+npm.cmd
+.idea
diff --git a/themes/src/main/node_modules/rcue/.travis.yml b/themes/src/main/node_modules/rcue/.travis.yml
new file mode 100644
index 0000000..6c8240b
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/.travis.yml
@@ -0,0 +1,16 @@
+language: node_js
+node_js:
+  - '4'
+
+before_install:
+  - rvm install 2.3.1
+  - if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
+  - npm install -g bower grunt-cli
+  - npm install patternfly-eng-release
+
+install: true
+
+script:
+  - sh -x ./node_modules/patternfly-eng-release/scripts/_build.sh -r
+
+after_success:
diff --git a/themes/src/main/node_modules/rcue/_config.yml b/themes/src/main/node_modules/rcue/_config.yml
new file mode 100644
index 0000000..6f5d5cc
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/_config.yml
@@ -0,0 +1,17 @@
+# Site settings
+alert-message: ' and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.'
+category-list: [Widgets, Charts, Layouts, Alternate Layouts]
+company: 'Red Hat&reg;'
+title: 'Red Hat&reg; Common User Experience'
+title-product: 'Red Hat&reg; Common User Experience'
+url-css-additions: '../dist/css/rcue-additions.min.css'
+url-css-extra: 'tests.css'
+url-css-main: '../dist/css/rcue.min.css'
+url-img: 'img/'
+url-js: '../components/patternfly/dist/js/patternfly.min.js'
+navbar-pf-navbar-brand-icon: true
+navbar-pf-alt-navbar-brand-icon: true
+navbar-logo-icon: 'dist/img/logo.svg'
+navbar-logo-alt-icon: 'dist/img/logo.svg'
+navbar-brand-icon: 'dist/img/brand.svg'
+navbar-brand-alt-icon: 'dist/img/brand-alt.svg'
diff --git a/themes/src/main/node_modules/rcue/bower.json b/themes/src/main/node_modules/rcue/bower.json
new file mode 100644
index 0000000..095649c
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/bower.json
@@ -0,0 +1,27 @@
+{
+  "name": "rcue",
+  "version": "3.41.6",
+  "authors": "Red Hat",
+  "license": "Apache-2.0",
+  "homepage": "http://rcue-uxd.itos.redhat.com/",
+  "main": [
+    "dist/css/rcue.css",
+    "dist/css/rcue-additions.css"
+  ],
+  "ignore": [
+    "**/.*",
+    "node_modules",
+    "bower_components",
+    "test",
+    "tests",
+    "Makefile",
+    "rcue.spec.in"
+  ],
+  "dependencies": {
+    "patternfly": "3.41.6"
+  },
+  "private": true,
+  "resolutions": {
+    "jquery": "~2.1.4"
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/dist/css/rcue.css b/themes/src/main/node_modules/rcue/dist/css/rcue.css
new file mode 100644
index 0000000..44e7c20
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/css/rcue.css
@@ -0,0 +1,10662 @@
+/* Red Hat Common User Experience (RCUE) */
+/* PatternFly */
+@font-face {
+  font-family: "Open Sans";
+  font-style: normal;
+  font-weight: 300;
+  src: url("../fonts/OpenSans-Light-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Light"), local("OpenSans-Light"), url("../fonts/OpenSans-Light-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-Light-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-Light-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-Light-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-Light-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: normal;
+  font-weight: 400;
+  src: url("../fonts/OpenSans-Regular-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans"), local("OpenSans"), url("../fonts/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-Regular-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-Regular-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-Regular-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-Regular-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: italic;
+  font-weight: 300;
+  src: url("../fonts/OpenSans-LightItalic-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Light Italic"), local("OpenSansLight-Italic"), url("../fonts/OpenSans-LightItalic-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-LightItalic-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-LightItalic-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-LightItalic-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-LightItalic-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: italic;
+  font-weight: 400;
+  src: url("../fonts/OpenSans-Italic-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Italic"), local("OpenSans-Italic"), url("../fonts/OpenSans-Italic-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-Italic-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-Italic-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-Italic-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-Italic-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: normal;
+  font-weight: 600;
+  src: url("../fonts/OpenSans-Semibold-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Semibold"), local("OpenSans-Semibold-webfont"), url("../fonts/OpenSans-Semibold-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-Semibold-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-Semibold-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-Semibold-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-Semibold-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: italic;
+  font-weight: 600;
+  src: url("../fonts/OpenSans-SemiboldItalic-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Semibold Italic"), local("OpenSans-SemiboldItalic-webfont"), url("../fonts/OpenSans-SemiboldItalic-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-SemiboldItalic-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-SemiboldItalic-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-SemiboldItalic-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-SemiboldItalic-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: normal;
+  font-weight: 700;
+  src: url("../fonts/OpenSans-Bold-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("../fonts/OpenSans-Bold-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-Bold-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-Bold-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-Bold-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-Bold-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: italic;
+  font-weight: 700;
+  src: url("../fonts/OpenSans-BoldItalic-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Bold Italic"), local("OpenSans-BoldItalic"), url("../fonts/OpenSans-BoldItalic-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-BoldItalic-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-BoldItalic-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-BoldItalic-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-BoldItalic-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: italic;
+  font-weight: 800;
+  src: url("../fonts/OpenSans-ExtraBoldItalic-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Extrabold Italic"), local("OpenSans-ExtraboldItalic"), url("../fonts/OpenSans-ExtraBoldItalic-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-ExtraBoldItalic-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-ExtraBoldItalic-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-ExtraBoldItalic-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-ExtraBoldItalic-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: normal;
+  font-weight: 800;
+  src: url("../fonts/OpenSans-ExtraBold-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Extrabold"), local("OpenSans-Extrabold"), url("../fonts/OpenSans-ExtraBold-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-ExtraBold-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-ExtraBold-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-ExtraBold-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-ExtraBold-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
+html {
+  font-family: sans-serif;
+  -ms-text-size-adjust: 100%;
+  -webkit-text-size-adjust: 100%;
+}
+body {
+  margin: 0;
+}
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+main,
+menu,
+nav,
+section,
+summary {
+  display: block;
+}
+audio,
+canvas,
+progress,
+video {
+  display: inline-block;
+  vertical-align: baseline;
+}
+audio:not([controls]) {
+  display: none;
+  height: 0;
+}
+[hidden],
+template {
+  display: none;
+}
+a {
+  background-color: transparent;
+}
+a:active,
+a:hover {
+  outline: 0;
+}
+abbr[title] {
+  border-bottom: 1px dotted;
+}
+b,
+strong {
+  font-weight: bold;
+}
+dfn {
+  font-style: italic;
+}
+h1 {
+  font-size: 2em;
+  margin: 0.67em 0;
+}
+mark {
+  background: #ff0;
+  color: #000;
+}
+small {
+  font-size: 80%;
+}
+sub,
+sup {
+  font-size: 75%;
+  line-height: 0;
+  position: relative;
+  vertical-align: baseline;
+}
+sup {
+  top: -0.5em;
+}
+sub {
+  bottom: -0.25em;
+}
+img {
+  border: 0;
+}
+svg:not(:root) {
+  overflow: hidden;
+}
+figure {
+  margin: 1em 40px;
+}
+hr {
+  box-sizing: content-box;
+  height: 0;
+}
+pre {
+  overflow: auto;
+}
+code,
+kbd,
+pre,
+samp {
+  font-family: monospace, monospace;
+  font-size: 1em;
+}
+button,
+input,
+optgroup,
+select,
+textarea {
+  color: inherit;
+  font: inherit;
+  margin: 0;
+}
+button {
+  overflow: visible;
+}
+button,
+select {
+  text-transform: none;
+}
+button,
+html input[type="button"],
+input[type="reset"],
+input[type="submit"] {
+  -webkit-appearance: button;
+  cursor: pointer;
+}
+button[disabled],
+html input[disabled] {
+  cursor: default;
+}
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+  border: 0;
+  padding: 0;
+}
+input {
+  line-height: normal;
+}
+input[type="checkbox"],
+input[type="radio"] {
+  box-sizing: border-box;
+  padding: 0;
+}
+input[type="number"]::-webkit-inner-spin-button,
+input[type="number"]::-webkit-outer-spin-button {
+  height: auto;
+}
+input[type="search"] {
+  -webkit-appearance: textfield;
+  box-sizing: content-box;
+}
+input[type="search"]::-webkit-search-cancel-button,
+input[type="search"]::-webkit-search-decoration {
+  -webkit-appearance: none;
+}
+fieldset {
+  border: 1px solid #c0c0c0;
+  margin: 0 2px;
+  padding: 0.35em 0.625em 0.75em;
+}
+legend {
+  border: 0;
+  padding: 0;
+}
+textarea {
+  overflow: auto;
+}
+optgroup {
+  font-weight: bold;
+}
+table {
+  border-collapse: collapse;
+  border-spacing: 0;
+}
+td,
+th {
+  padding: 0;
+}
+/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
+@media print {
+  *,
+  *:before,
+  *:after {
+    background: transparent !important;
+    color: #000 !important;
+    box-shadow: none !important;
+    text-shadow: none !important;
+  }
+  a,
+  a:visited {
+    text-decoration: underline;
+  }
+  a[href]:after {
+    content: " (" attr(href) ")";
+  }
+  abbr[title]:after {
+    content: " (" attr(title) ")";
+  }
+  a[href^="#"]:after,
+  a[href^="javascript:"]:after {
+    content: "";
+  }
+  pre,
+  blockquote {
+    border: 1px solid #999;
+    page-break-inside: avoid;
+  }
+  thead {
+    display: table-header-group;
+  }
+  tr,
+  img {
+    page-break-inside: avoid;
+  }
+  img {
+    max-width: 100% !important;
+  }
+  p,
+  h2,
+  h3 {
+    orphans: 3;
+    widows: 3;
+  }
+  h2,
+  h3 {
+    page-break-after: avoid;
+  }
+  .navbar {
+    display: none;
+  }
+  .btn > .caret,
+  .dropup > .btn > .caret {
+    border-top-color: #000 !important;
+  }
+  .label {
+    border: 1px solid #000;
+  }
+  .table {
+    border-collapse: collapse !important;
+  }
+  .table td,
+  .table th {
+    background-color: #fff !important;
+  }
+  .table-bordered th,
+  .table-bordered td {
+    border: 1px solid #ddd !important;
+  }
+}
+@font-face {
+  font-family: 'Glyphicons Halflings';
+  src: url('../fonts/glyphicons-halflings-regular.eot');
+  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
+}
+.glyphicon {
+  position: relative;
+  top: 1px;
+  display: inline-block;
+  font-family: 'Glyphicons Halflings';
+  font-style: normal;
+  font-weight: normal;
+  line-height: 1;
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+}
+.glyphicon-asterisk:before {
+  content: "\002a";
+}
+.glyphicon-plus:before {
+  content: "\002b";
+}
+.glyphicon-euro:before,
+.glyphicon-eur:before {
+  content: "\20ac";
+}
+.glyphicon-minus:before {
+  content: "\2212";
+}
+.glyphicon-cloud:before {
+  content: "\2601";
+}
+.glyphicon-envelope:before {
+  content: "\2709";
+}
+.glyphicon-pencil:before {
+  content: "\270f";
+}
+.glyphicon-glass:before {
+  content: "\e001";
+}
+.glyphicon-music:before {
+  content: "\e002";
+}
+.glyphicon-search:before {
+  content: "\e003";
+}
+.glyphicon-heart:before {
+  content: "\e005";
+}
+.glyphicon-star:before {
+  content: "\e006";
+}
+.glyphicon-star-empty:before {
+  content: "\e007";
+}
+.glyphicon-user:before {
+  content: "\e008";
+}
+.glyphicon-film:before {
+  content: "\e009";
+}
+.glyphicon-th-large:before {
+  content: "\e010";
+}
+.glyphicon-th:before {
+  content: "\e011";
+}
+.glyphicon-th-list:before {
+  content: "\e012";
+}
+.glyphicon-ok:before {
+  content: "\e013";
+}
+.glyphicon-remove:before {
+  content: "\e014";
+}
+.glyphicon-zoom-in:before {
+  content: "\e015";
+}
+.glyphicon-zoom-out:before {
+  content: "\e016";
+}
+.glyphicon-off:before {
+  content: "\e017";
+}
+.glyphicon-signal:before {
+  content: "\e018";
+}
+.glyphicon-cog:before {
+  content: "\e019";
+}
+.glyphicon-trash:before {
+  content: "\e020";
+}
+.glyphicon-home:before {
+  content: "\e021";
+}
+.glyphicon-file:before {
+  content: "\e022";
+}
+.glyphicon-time:before {
+  content: "\e023";
+}
+.glyphicon-road:before {
+  content: "\e024";
+}
+.glyphicon-download-alt:before {
+  content: "\e025";
+}
+.glyphicon-download:before {
+  content: "\e026";
+}
+.glyphicon-upload:before {
+  content: "\e027";
+}
+.glyphicon-inbox:before {
+  content: "\e028";
+}
+.glyphicon-play-circle:before {
+  content: "\e029";
+}
+.glyphicon-repeat:before {
+  content: "\e030";
+}
+.glyphicon-refresh:before {
+  content: "\e031";
+}
+.glyphicon-list-alt:before {
+  content: "\e032";
+}
+.glyphicon-lock:before {
+  content: "\e033";
+}
+.glyphicon-flag:before {
+  content: "\e034";
+}
+.glyphicon-headphones:before {
+  content: "\e035";
+}
+.glyphicon-volume-off:before {
+  content: "\e036";
+}
+.glyphicon-volume-down:before {
+  content: "\e037";
+}
+.glyphicon-volume-up:before {
+  content: "\e038";
+}
+.glyphicon-qrcode:before {
+  content: "\e039";
+}
+.glyphicon-barcode:before {
+  content: "\e040";
+}
+.glyphicon-tag:before {
+  content: "\e041";
+}
+.glyphicon-tags:before {
+  content: "\e042";
+}
+.glyphicon-book:before {
+  content: "\e043";
+}
+.glyphicon-bookmark:before {
+  content: "\e044";
+}
+.glyphicon-print:before {
+  content: "\e045";
+}
+.glyphicon-camera:before {
+  content: "\e046";
+}
+.glyphicon-font:before {
+  content: "\e047";
+}
+.glyphicon-bold:before {
+  content: "\e048";
+}
+.glyphicon-italic:before {
+  content: "\e049";
+}
+.glyphicon-text-height:before {
+  content: "\e050";
+}
+.glyphicon-text-width:before {
+  content: "\e051";
+}
+.glyphicon-align-left:before {
+  content: "\e052";
+}
+.glyphicon-align-center:before {
+  content: "\e053";
+}
+.glyphicon-align-right:before {
+  content: "\e054";
+}
+.glyphicon-align-justify:before {
+  content: "\e055";
+}
+.glyphicon-list:before {
+  content: "\e056";
+}
+.glyphicon-indent-left:before {
+  content: "\e057";
+}
+.glyphicon-indent-right:before {
+  content: "\e058";
+}
+.glyphicon-facetime-video:before {
+  content: "\e059";
+}
+.glyphicon-picture:before {
+  content: "\e060";
+}
+.glyphicon-map-marker:before {
+  content: "\e062";
+}
+.glyphicon-adjust:before {
+  content: "\e063";
+}
+.glyphicon-tint:before {
+  content: "\e064";
+}
+.glyphicon-edit:before {
+  content: "\e065";
+}
+.glyphicon-share:before {
+  content: "\e066";
+}
+.glyphicon-check:before {
+  content: "\e067";
+}
+.glyphicon-move:before {
+  content: "\e068";
+}
+.glyphicon-step-backward:before {
+  content: "\e069";
+}
+.glyphicon-fast-backward:before {
+  content: "\e070";
+}
+.glyphicon-backward:before {
+  content: "\e071";
+}
+.glyphicon-play:before {
+  content: "\e072";
+}
+.glyphicon-pause:before {
+  content: "\e073";
+}
+.glyphicon-stop:before {
+  content: "\e074";
+}
+.glyphicon-forward:before {
+  content: "\e075";
+}
+.glyphicon-fast-forward:before {
+  content: "\e076";
+}
+.glyphicon-step-forward:before {
+  content: "\e077";
+}
+.glyphicon-eject:before {
+  content: "\e078";
+}
+.glyphicon-chevron-left:before {
+  content: "\e079";
+}
+.glyphicon-chevron-right:before {
+  content: "\e080";
+}
+.glyphicon-plus-sign:before {
+  content: "\e081";
+}
+.glyphicon-minus-sign:before {
+  content: "\e082";
+}
+.glyphicon-remove-sign:before {
+  content: "\e083";
+}
+.glyphicon-ok-sign:before {
+  content: "\e084";
+}
+.glyphicon-question-sign:before {
+  content: "\e085";
+}
+.glyphicon-info-sign:before {
+  content: "\e086";
+}
+.glyphicon-screenshot:before {
+  content: "\e087";
+}
+.glyphicon-remove-circle:before {
+  content: "\e088";
+}
+.glyphicon-ok-circle:before {
+  content: "\e089";
+}
+.glyphicon-ban-circle:before {
+  content: "\e090";
+}
+.glyphicon-arrow-left:before {
+  content: "\e091";
+}
+.glyphicon-arrow-right:before {
+  content: "\e092";
+}
+.glyphicon-arrow-up:before {
+  content: "\e093";
+}
+.glyphicon-arrow-down:before {
+  content: "\e094";
+}
+.glyphicon-share-alt:before {
+  content: "\e095";
+}
+.glyphicon-resize-full:before {
+  content: "\e096";
+}
+.glyphicon-resize-small:before {
+  content: "\e097";
+}
+.glyphicon-exclamation-sign:before {
+  content: "\e101";
+}
+.glyphicon-gift:before {
+  content: "\e102";
+}
+.glyphicon-leaf:before {
+  content: "\e103";
+}
+.glyphicon-fire:before {
+  content: "\e104";
+}
+.glyphicon-eye-open:before {
+  content: "\e105";
+}
+.glyphicon-eye-close:before {
+  content: "\e106";
+}
+.glyphicon-warning-sign:before {
+  content: "\e107";
+}
+.glyphicon-plane:before {
+  content: "\e108";
+}
+.glyphicon-calendar:before {
+  content: "\e109";
+}
+.glyphicon-random:before {
+  content: "\e110";
+}
+.glyphicon-comment:before {
+  content: "\e111";
+}
+.glyphicon-magnet:before {
+  content: "\e112";
+}
+.glyphicon-chevron-up:before {
+  content: "\e113";
+}
+.glyphicon-chevron-down:before {
+  content: "\e114";
+}
+.glyphicon-retweet:before {
+  content: "\e115";
+}
+.glyphicon-shopping-cart:before {
+  content: "\e116";
+}
+.glyphicon-folder-close:before {
+  content: "\e117";
+}
+.glyphicon-folder-open:before {
+  content: "\e118";
+}
+.glyphicon-resize-vertical:before {
+  content: "\e119";
+}
+.glyphicon-resize-horizontal:before {
+  content: "\e120";
+}
+.glyphicon-hdd:before {
+  content: "\e121";
+}
+.glyphicon-bullhorn:before {
+  content: "\e122";
+}
+.glyphicon-bell:before {
+  content: "\e123";
+}
+.glyphicon-certificate:before {
+  content: "\e124";
+}
+.glyphicon-thumbs-up:before {
+  content: "\e125";
+}
+.glyphicon-thumbs-down:before {
+  content: "\e126";
+}
+.glyphicon-hand-right:before {
+  content: "\e127";
+}
+.glyphicon-hand-left:before {
+  content: "\e128";
+}
+.glyphicon-hand-up:before {
+  content: "\e129";
+}
+.glyphicon-hand-down:before {
+  content: "\e130";
+}
+.glyphicon-circle-arrow-right:before {
+  content: "\e131";
+}
+.glyphicon-circle-arrow-left:before {
+  content: "\e132";
+}
+.glyphicon-circle-arrow-up:before {
+  content: "\e133";
+}
+.glyphicon-circle-arrow-down:before {
+  content: "\e134";
+}
+.glyphicon-globe:before {
+  content: "\e135";
+}
+.glyphicon-wrench:before {
+  content: "\e136";
+}
+.glyphicon-tasks:before {
+  content: "\e137";
+}
+.glyphicon-filter:before {
+  content: "\e138";
+}
+.glyphicon-briefcase:before {
+  content: "\e139";
+}
+.glyphicon-fullscreen:before {
+  content: "\e140";
+}
+.glyphicon-dashboard:before {
+  content: "\e141";
+}
+.glyphicon-paperclip:before {
+  content: "\e142";
+}
+.glyphicon-heart-empty:before {
+  content: "\e143";
+}
+.glyphicon-link:before {
+  content: "\e144";
+}
+.glyphicon-phone:before {
+  content: "\e145";
+}
+.glyphicon-pushpin:before {
+  content: "\e146";
+}
+.glyphicon-usd:before {
+  content: "\e148";
+}
+.glyphicon-gbp:before {
+  content: "\e149";
+}
+.glyphicon-sort:before {
+  content: "\e150";
+}
+.glyphicon-sort-by-alphabet:before {
+  content: "\e151";
+}
+.glyphicon-sort-by-alphabet-alt:before {
+  content: "\e152";
+}
+.glyphicon-sort-by-order:before {
+  content: "\e153";
+}
+.glyphicon-sort-by-order-alt:before {
+  content: "\e154";
+}
+.glyphicon-sort-by-attributes:before {
+  content: "\e155";
+}
+.glyphicon-sort-by-attributes-alt:before {
+  content: "\e156";
+}
+.glyphicon-unchecked:before {
+  content: "\e157";
+}
+.glyphicon-expand:before {
+  content: "\e158";
+}
+.glyphicon-collapse-down:before {
+  content: "\e159";
+}
+.glyphicon-collapse-up:before {
+  content: "\e160";
+}
+.glyphicon-log-in:before {
+  content: "\e161";
+}
+.glyphicon-flash:before {
+  content: "\e162";
+}
+.glyphicon-log-out:before {
+  content: "\e163";
+}
+.glyphicon-new-window:before {
+  content: "\e164";
+}
+.glyphicon-record:before {
+  content: "\e165";
+}
+.glyphicon-save:before {
+  content: "\e166";
+}
+.glyphicon-open:before {
+  content: "\e167";
+}
+.glyphicon-saved:before {
+  content: "\e168";
+}
+.glyphicon-import:before {
+  content: "\e169";
+}
+.glyphicon-export:before {
+  content: "\e170";
+}
+.glyphicon-send:before {
+  content: "\e171";
+}
+.glyphicon-floppy-disk:before {
+  content: "\e172";
+}
+.glyphicon-floppy-saved:before {
+  content: "\e173";
+}
+.glyphicon-floppy-remove:before {
+  content: "\e174";
+}
+.glyphicon-floppy-save:before {
+  content: "\e175";
+}
+.glyphicon-floppy-open:before {
+  content: "\e176";
+}
+.glyphicon-credit-card:before {
+  content: "\e177";
+}
+.glyphicon-transfer:before {
+  content: "\e178";
+}
+.glyphicon-cutlery:before {
+  content: "\e179";
+}
+.glyphicon-header:before {
+  content: "\e180";
+}
+.glyphicon-compressed:before {
+  content: "\e181";
+}
+.glyphicon-earphone:before {
+  content: "\e182";
+}
+.glyphicon-phone-alt:before {
+  content: "\e183";
+}
+.glyphicon-tower:before {
+  content: "\e184";
+}
+.glyphicon-stats:before {
+  content: "\e185";
+}
+.glyphicon-sd-video:before {
+  content: "\e186";
+}
+.glyphicon-hd-video:before {
+  content: "\e187";
+}
+.glyphicon-subtitles:before {
+  content: "\e188";
+}
+.glyphicon-sound-stereo:before {
+  content: "\e189";
+}
+.glyphicon-sound-dolby:before {
+  content: "\e190";
+}
+.glyphicon-sound-5-1:before {
+  content: "\e191";
+}
+.glyphicon-sound-6-1:before {
+  content: "\e192";
+}
+.glyphicon-sound-7-1:before {
+  content: "\e193";
+}
+.glyphicon-copyright-mark:before {
+  content: "\e194";
+}
+.glyphicon-registration-mark:before {
+  content: "\e195";
+}
+.glyphicon-cloud-download:before {
+  content: "\e197";
+}
+.glyphicon-cloud-upload:before {
+  content: "\e198";
+}
+.glyphicon-tree-conifer:before {
+  content: "\e199";
+}
+.glyphicon-tree-deciduous:before {
+  content: "\e200";
+}
+.glyphicon-cd:before {
+  content: "\e201";
+}
+.glyphicon-save-file:before {
+  content: "\e202";
+}
+.glyphicon-open-file:before {
+  content: "\e203";
+}
+.glyphicon-level-up:before {
+  content: "\e204";
+}
+.glyphicon-copy:before {
+  content: "\e205";
+}
+.glyphicon-paste:before {
+  content: "\e206";
+}
+.glyphicon-alert:before {
+  content: "\e209";
+}
+.glyphicon-equalizer:before {
+  content: "\e210";
+}
+.glyphicon-king:before {
+  content: "\e211";
+}
+.glyphicon-queen:before {
+  content: "\e212";
+}
+.glyphicon-pawn:before {
+  content: "\e213";
+}
+.glyphicon-bishop:before {
+  content: "\e214";
+}
+.glyphicon-knight:before {
+  content: "\e215";
+}
+.glyphicon-baby-formula:before {
+  content: "\e216";
+}
+.glyphicon-tent:before {
+  content: "\26fa";
+}
+.glyphicon-blackboard:before {
+  content: "\e218";
+}
+.glyphicon-bed:before {
+  content: "\e219";
+}
+.glyphicon-apple:before {
+  content: "\f8ff";
+}
+.glyphicon-erase:before {
+  content: "\e221";
+}
+.glyphicon-hourglass:before {
+  content: "\231b";
+}
+.glyphicon-lamp:before {
+  content: "\e223";
+}
+.glyphicon-duplicate:before {
+  content: "\e224";
+}
+.glyphicon-piggy-bank:before {
+  content: "\e225";
+}
+.glyphicon-scissors:before {
+  content: "\e226";
+}
+.glyphicon-bitcoin:before {
+  content: "\e227";
+}
+.glyphicon-btc:before {
+  content: "\e227";
+}
+.glyphicon-xbt:before {
+  content: "\e227";
+}
+.glyphicon-yen:before {
+  content: "\00a5";
+}
+.glyphicon-jpy:before {
+  content: "\00a5";
+}
+.glyphicon-ruble:before {
+  content: "\20bd";
+}
+.glyphicon-rub:before {
+  content: "\20bd";
+}
+.glyphicon-scale:before {
+  content: "\e230";
+}
+.glyphicon-ice-lolly:before {
+  content: "\e231";
+}
+.glyphicon-ice-lolly-tasted:before {
+  content: "\e232";
+}
+.glyphicon-education:before {
+  content: "\e233";
+}
+.glyphicon-option-horizontal:before {
+  content: "\e234";
+}
+.glyphicon-option-vertical:before {
+  content: "\e235";
+}
+.glyphicon-menu-hamburger:before {
+  content: "\e236";
+}
+.glyphicon-modal-window:before {
+  content: "\e237";
+}
+.glyphicon-oil:before {
+  content: "\e238";
+}
+.glyphicon-grain:before {
+  content: "\e239";
+}
+.glyphicon-sunglasses:before {
+  content: "\e240";
+}
+.glyphicon-text-size:before {
+  content: "\e241";
+}
+.glyphicon-text-color:before {
+  content: "\e242";
+}
+.glyphicon-text-background:before {
+  content: "\e243";
+}
+.glyphicon-object-align-top:before {
+  content: "\e244";
+}
+.glyphicon-object-align-bottom:before {
+  content: "\e245";
+}
+.glyphicon-object-align-horizontal:before {
+  content: "\e246";
+}
+.glyphicon-object-align-left:before {
+  content: "\e247";
+}
+.glyphicon-object-align-vertical:before {
+  content: "\e248";
+}
+.glyphicon-object-align-right:before {
+  content: "\e249";
+}
+.glyphicon-triangle-right:before {
+  content: "\e250";
+}
+.glyphicon-triangle-left:before {
+  content: "\e251";
+}
+.glyphicon-triangle-bottom:before {
+  content: "\e252";
+}
+.glyphicon-triangle-top:before {
+  content: "\e253";
+}
+.glyphicon-console:before {
+  content: "\e254";
+}
+.glyphicon-superscript:before {
+  content: "\e255";
+}
+.glyphicon-subscript:before {
+  content: "\e256";
+}
+.glyphicon-menu-left:before {
+  content: "\e257";
+}
+.glyphicon-menu-right:before {
+  content: "\e258";
+}
+.glyphicon-menu-down:before {
+  content: "\e259";
+}
+.glyphicon-menu-up:before {
+  content: "\e260";
+}
+* {
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box;
+}
+*:before,
+*:after {
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box;
+}
+html {
+  font-size: 10px;
+  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
+}
+body {
+  font-family: "Open Sans", Helvetica, Arial, sans-serif;
+  font-size: 12px;
+  line-height: 1.66666667;
+  color: #363636;
+  background-color: #fff;
+}
+input,
+button,
+select,
+textarea {
+  font-family: inherit;
+  font-size: inherit;
+  line-height: inherit;
+}
+a {
+  color: #0088ce;
+  text-decoration: none;
+}
+a:hover,
+a:focus {
+  color: #00659c;
+  text-decoration: underline;
+}
+a:focus {
+  outline: 5px auto -webkit-focus-ring-color;
+  outline-offset: -2px;
+}
+figure {
+  margin: 0;
+}
+img {
+  vertical-align: middle;
+}
+.img-responsive,
+.thumbnail > img,
+.thumbnail a > img,
+.carousel-inner > .item > img,
+.carousel-inner > .item > a > img {
+  display: block;
+  max-width: 100%;
+  height: auto;
+}
+.img-rounded {
+  border-radius: 1px;
+}
+.img-thumbnail {
+  padding: 4px;
+  line-height: 1.66666667;
+  background-color: #fff;
+  border: 1px solid #ddd;
+  border-radius: 1px;
+  -webkit-transition: all 0.2s ease-in-out;
+  -o-transition: all 0.2s ease-in-out;
+  transition: all 0.2s ease-in-out;
+  display: inline-block;
+  max-width: 100%;
+  height: auto;
+}
+.img-circle {
+  border-radius: 50%;
+}
+hr {
+  margin-top: 20px;
+  margin-bottom: 20px;
+  border: 0;
+  border-top: 1px solid #f1f1f1;
+}
+.sr-only {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+}
+.sr-only-focusable:active,
+.sr-only-focusable:focus {
+  position: static;
+  width: auto;
+  height: auto;
+  margin: 0;
+  overflow: visible;
+  clip: auto;
+}
+[role="button"] {
+  cursor: pointer;
+}
+h1,
+h2,
+h3,
+h4,
+h5,
+h6,
+.h1,
+.h2,
+.h3,
+.h4,
+.h5,
+.h6 {
+  font-family: inherit;
+  font-weight: 500;
+  line-height: 1.1;
+  color: inherit;
+}
+h1 small,
+h2 small,
+h3 small,
+h4 small,
+h5 small,
+h6 small,
+.h1 small,
+.h2 small,
+.h3 small,
+.h4 small,
+.h5 small,
+.h6 small,
+h1 .small,
+h2 .small,
+h3 .small,
+h4 .small,
+h5 .small,
+h6 .small,
+.h1 .small,
+.h2 .small,
+.h3 .small,
+.h4 .small,
+.h5 .small,
+.h6 .small {
+  font-weight: normal;
+  line-height: 1;
+  color: #9c9c9c;
+}
+h1,
+.h1,
+h2,
+.h2,
+h3,
+.h3 {
+  margin-top: 20px;
+  margin-bottom: 10px;
+}
+h1 small,
+.h1 small,
+h2 small,
+.h2 small,
+h3 small,
+.h3 small,
+h1 .small,
+.h1 .small,
+h2 .small,
+.h2 .small,
+h3 .small,
+.h3 .small {
+  font-size: 65%;
+}
+h4,
+.h4,
+h5,
+.h5,
+h6,
+.h6 {
+  margin-top: 10px;
+  margin-bottom: 10px;
+}
+h4 small,
+.h4 small,
+h5 small,
+.h5 small,
+h6 small,
+.h6 small,
+h4 .small,
+.h4 .small,
+h5 .small,
+.h5 .small,
+h6 .small,
+.h6 .small {
+  font-size: 75%;
+}
+h1,
+.h1 {
+  font-size: 24px;
+}
+h2,
+.h2 {
+  font-size: 22px;
+}
+h3,
+.h3 {
+  font-size: 16px;
+}
+h4,
+.h4 {
+  font-size: 15px;
+}
+h5,
+.h5 {
+  font-size: 13px;
+}
+h6,
+.h6 {
+  font-size: 11px;
+}
+p {
+  margin: 0 0 10px;
+}
+.lead {
+  margin-bottom: 20px;
+  font-size: 13px;
+  font-weight: 300;
+  line-height: 1.4;
+}
+@media (min-width: 768px) {
+  .lead {
+    font-size: 18px;
+  }
+}
+small,
+.small {
+  font-size: 91%;
+}
+mark,
+.mark {
+  background-color: #fcf8e3;
+  padding: .2em;
+}
+.text-left {
+  text-align: left;
+}
+.text-right {
+  text-align: right;
+}
+.text-center {
+  text-align: center;
+}
+.text-justify {
+  text-align: justify;
+}
+.text-nowrap {
+  white-space: nowrap;
+}
+.text-lowercase {
+  text-transform: lowercase;
+}
+.text-uppercase {
+  text-transform: uppercase;
+}
+.text-capitalize {
+  text-transform: capitalize;
+}
+.text-muted {
+  color: #9c9c9c;
+}
+.text-primary {
+  color: #39a5dc;
+}
+a.text-primary:hover,
+a.text-primary:focus {
+  color: #228bc0;
+}
+.text-success {
+  color: #3c763d;
+}
+a.text-success:hover,
+a.text-success:focus {
+  color: #2b542c;
+}
+.text-info {
+  color: #31708f;
+}
+a.text-info:hover,
+a.text-info:focus {
+  color: #245269;
+}
+.text-warning {
+  color: #ec7a08;
+}
+a.text-warning:hover,
+a.text-warning:focus {
+  color: #bb6106;
+}
+.text-danger {
+  color: #cc0000;
+}
+a.text-danger:hover,
+a.text-danger:focus {
+  color: #990000;
+}
+.bg-primary {
+  color: #fff;
+  background-color: #39a5dc;
+}
+a.bg-primary:hover,
+a.bg-primary:focus {
+  background-color: #228bc0;
+}
+.bg-success {
+  background-color: #dff0d8;
+}
+a.bg-success:hover,
+a.bg-success:focus {
+  background-color: #c1e2b3;
+}
+.bg-info {
+  background-color: #d9edf7;
+}
+a.bg-info:hover,
+a.bg-info:focus {
+  background-color: #afd9ee;
+}
+.bg-warning {
+  background-color: #fcf8e3;
+}
+a.bg-warning:hover,
+a.bg-warning:focus {
+  background-color: #f7ecb5;
+}
+.bg-danger {
+  background-color: #f2dede;
+}
+a.bg-danger:hover,
+a.bg-danger:focus {
+  background-color: #e4b9b9;
+}
+.page-header {
+  padding-bottom: 9px;
+  margin: 40px 0 20px;
+  border-bottom: 1px solid #f1f1f1;
+}
+ul,
+ol {
+  margin-top: 0;
+  margin-bottom: 10px;
+}
+ul ul,
+ol ul,
+ul ol,
+ol ol {
+  margin-bottom: 0;
+}
+.list-unstyled {
+  padding-left: 0;
+  list-style: none;
+}
+.list-inline {
+  padding-left: 0;
+  list-style: none;
+  margin-left: -5px;
+}
+.list-inline > li {
+  display: inline-block;
+  padding-left: 5px;
+  padding-right: 5px;
+}
+dl {
+  margin-top: 0;
+  margin-bottom: 20px;
+}
+dt,
+dd {
+  line-height: 1.66666667;
+}
+dt {
+  font-weight: bold;
+}
+dd {
+  margin-left: 0;
+}
+@media (min-width: 768px) {
+  .dl-horizontal dt {
+    float: left;
+    width: 160px;
+    clear: left;
+    text-align: right;
+    overflow: hidden;
+    text-overflow: ellipsis;
+    white-space: nowrap;
+  }
+  .dl-horizontal dd {
+    margin-left: 180px;
+  }
+}
+abbr[title],
+abbr[data-original-title] {
+  cursor: help;
+  border-bottom: 1px dotted #9c9c9c;
+}
+.initialism {
+  font-size: 90%;
+  text-transform: uppercase;
+}
+blockquote {
+  padding: 10px 20px;
+  margin: 0 0 20px;
+  font-size: 15px;
+  border-left: 5px solid #f1f1f1;
+}
+blockquote p:last-child,
+blockquote ul:last-child,
+blockquote ol:last-child {
+  margin-bottom: 0;
+}
+blockquote footer,
+blockquote small,
+blockquote .small {
+  display: block;
+  font-size: 80%;
+  line-height: 1.66666667;
+  color: #9c9c9c;
+}
+blockquote footer:before,
+blockquote small:before,
+blockquote .small:before {
+  content: '\2014 \00A0';
+}
+.blockquote-reverse,
+blockquote.pull-right {
+  padding-right: 15px;
+  padding-left: 0;
+  border-right: 5px solid #f1f1f1;
+  border-left: 0;
+  text-align: right;
+}
+.blockquote-reverse footer:before,
+blockquote.pull-right footer:before,
+.blockquote-reverse small:before,
+blockquote.pull-right small:before,
+.blockquote-reverse .small:before,
+blockquote.pull-right .small:before {
+  content: '';
+}
+.blockquote-reverse footer:after,
+blockquote.pull-right footer:after,
+.blockquote-reverse small:after,
+blockquote.pull-right small:after,
+.blockquote-reverse .small:after,
+blockquote.pull-right .small:after {
+  content: '\00A0 \2014';
+}
+address {
+  margin-bottom: 20px;
+  font-style: normal;
+  line-height: 1.66666667;
+}
+code,
+kbd,
+pre,
+samp {
+  font-family: Menlo, Monaco, Consolas, monospace;
+}
+code {
+  padding: 2px 4px;
+  font-size: 90%;
+  color: #004368;
+  background-color: #def3ff;
+  border-radius: 1px;
+}
+kbd {
+  padding: 2px 4px;
+  font-size: 90%;
+  color: #fff;
+  background-color: #333;
+  border-radius: 1px;
+  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+kbd kbd {
+  padding: 0;
+  font-size: 100%;
+  font-weight: bold;
+  box-shadow: none;
+}
+pre {
+  display: block;
+  padding: 9.5px;
+  margin: 0 0 10px;
+  font-size: 11px;
+  line-height: 1.66666667;
+  word-break: break-all;
+  word-wrap: break-word;
+  color: #363636;
+  background-color: #fafafa;
+  border: 1px solid #ccc;
+  border-radius: 1px;
+}
+pre code {
+  padding: 0;
+  font-size: inherit;
+  color: inherit;
+  white-space: pre-wrap;
+  background-color: transparent;
+  border-radius: 0;
+}
+.pre-scrollable {
+  max-height: 340px;
+  overflow-y: scroll;
+}
+.container {
+  margin-right: auto;
+  margin-left: auto;
+  padding-left: 20px;
+  padding-right: 20px;
+}
+@media (min-width: 768px) {
+  .container {
+    width: 760px;
+  }
+}
+@media (min-width: 992px) {
+  .container {
+    width: 980px;
+  }
+}
+@media (min-width: 1200px) {
+  .container {
+    width: 1180px;
+  }
+}
+.container-fluid {
+  margin-right: auto;
+  margin-left: auto;
+  padding-left: 20px;
+  padding-right: 20px;
+}
+.row {
+  margin-left: -20px;
+  margin-right: -20px;
+}
+.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
+  position: relative;
+  min-height: 1px;
+  padding-left: 20px;
+  padding-right: 20px;
+}
+.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
+  float: left;
+}
+.col-xs-12 {
+  width: 100%;
+}
+.col-xs-11 {
+  width: 91.66666667%;
+}
+.col-xs-10 {
+  width: 83.33333333%;
+}
+.col-xs-9 {
+  width: 75%;
+}
+.col-xs-8 {
+  width: 66.66666667%;
+}
+.col-xs-7 {
+  width: 58.33333333%;
+}
+.col-xs-6 {
+  width: 50%;
+}
+.col-xs-5 {
+  width: 41.66666667%;
+}
+.col-xs-4 {
+  width: 33.33333333%;
+}
+.col-xs-3 {
+  width: 25%;
+}
+.col-xs-2 {
+  width: 16.66666667%;
+}
+.col-xs-1 {
+  width: 8.33333333%;
+}
+.col-xs-pull-12 {
+  right: 100%;
+}
+.col-xs-pull-11 {
+  right: 91.66666667%;
+}
+.col-xs-pull-10 {
+  right: 83.33333333%;
+}
+.col-xs-pull-9 {
+  right: 75%;
+}
+.col-xs-pull-8 {
+  right: 66.66666667%;
+}
+.col-xs-pull-7 {
+  right: 58.33333333%;
+}
+.col-xs-pull-6 {
+  right: 50%;
+}
+.col-xs-pull-5 {
+  right: 41.66666667%;
+}
+.col-xs-pull-4 {
+  right: 33.33333333%;
+}
+.col-xs-pull-3 {
+  right: 25%;
+}
+.col-xs-pull-2 {
+  right: 16.66666667%;
+}
+.col-xs-pull-1 {
+  right: 8.33333333%;
+}
+.col-xs-pull-0 {
+  right: auto;
+}
+.col-xs-push-12 {
+  left: 100%;
+}
+.col-xs-push-11 {
+  left: 91.66666667%;
+}
+.col-xs-push-10 {
+  left: 83.33333333%;
+}
+.col-xs-push-9 {
+  left: 75%;
+}
+.col-xs-push-8 {
+  left: 66.66666667%;
+}
+.col-xs-push-7 {
+  left: 58.33333333%;
+}
+.col-xs-push-6 {
+  left: 50%;
+}
+.col-xs-push-5 {
+  left: 41.66666667%;
+}
+.col-xs-push-4 {
+  left: 33.33333333%;
+}
+.col-xs-push-3 {
+  left: 25%;
+}
+.col-xs-push-2 {
+  left: 16.66666667%;
+}
+.col-xs-push-1 {
+  left: 8.33333333%;
+}
+.col-xs-push-0 {
+  left: auto;
+}
+.col-xs-offset-12 {
+  margin-left: 100%;
+}
+.col-xs-offset-11 {
+  margin-left: 91.66666667%;
+}
+.col-xs-offset-10 {
+  margin-left: 83.33333333%;
+}
+.col-xs-offset-9 {
+  margin-left: 75%;
+}
+.col-xs-offset-8 {
+  margin-left: 66.66666667%;
+}
+.col-xs-offset-7 {
+  margin-left: 58.33333333%;
+}
+.col-xs-offset-6 {
+  margin-left: 50%;
+}
+.col-xs-offset-5 {
+  margin-left: 41.66666667%;
+}
+.col-xs-offset-4 {
+  margin-left: 33.33333333%;
+}
+.col-xs-offset-3 {
+  margin-left: 25%;
+}
+.col-xs-offset-2 {
+  margin-left: 16.66666667%;
+}
+.col-xs-offset-1 {
+  margin-left: 8.33333333%;
+}
+.col-xs-offset-0 {
+  margin-left: 0%;
+}
+@media (min-width: 768px) {
+  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
+    float: left;
+  }
+  .col-sm-12 {
+    width: 100%;
+  }
+  .col-sm-11 {
+    width: 91.66666667%;
+  }
+  .col-sm-10 {
+    width: 83.33333333%;
+  }
+  .col-sm-9 {
+    width: 75%;
+  }
+  .col-sm-8 {
+    width: 66.66666667%;
+  }
+  .col-sm-7 {
+    width: 58.33333333%;
+  }
+  .col-sm-6 {
+    width: 50%;
+  }
+  .col-sm-5 {
+    width: 41.66666667%;
+  }
+  .col-sm-4 {
+    width: 33.33333333%;
+  }
+  .col-sm-3 {
+    width: 25%;
+  }
+  .col-sm-2 {
+    width: 16.66666667%;
+  }
+  .col-sm-1 {
+    width: 8.33333333%;
+  }
+  .col-sm-pull-12 {
+    right: 100%;
+  }
+  .col-sm-pull-11 {
+    right: 91.66666667%;
+  }
+  .col-sm-pull-10 {
+    right: 83.33333333%;
+  }
+  .col-sm-pull-9 {
+    right: 75%;
+  }
+  .col-sm-pull-8 {
+    right: 66.66666667%;
+  }
+  .col-sm-pull-7 {
+    right: 58.33333333%;
+  }
+  .col-sm-pull-6 {
+    right: 50%;
+  }
+  .col-sm-pull-5 {
+    right: 41.66666667%;
+  }
+  .col-sm-pull-4 {
+    right: 33.33333333%;
+  }
+  .col-sm-pull-3 {
+    right: 25%;
+  }
+  .col-sm-pull-2 {
+    right: 16.66666667%;
+  }
+  .col-sm-pull-1 {
+    right: 8.33333333%;
+  }
+  .col-sm-pull-0 {
+    right: auto;
+  }
+  .col-sm-push-12 {
+    left: 100%;
+  }
+  .col-sm-push-11 {
+    left: 91.66666667%;
+  }
+  .col-sm-push-10 {
+    left: 83.33333333%;
+  }
+  .col-sm-push-9 {
+    left: 75%;
+  }
+  .col-sm-push-8 {
+    left: 66.66666667%;
+  }
+  .col-sm-push-7 {
+    left: 58.33333333%;
+  }
+  .col-sm-push-6 {
+    left: 50%;
+  }
+  .col-sm-push-5 {
+    left: 41.66666667%;
+  }
+  .col-sm-push-4 {
+    left: 33.33333333%;
+  }
+  .col-sm-push-3 {
+    left: 25%;
+  }
+  .col-sm-push-2 {
+    left: 16.66666667%;
+  }
+  .col-sm-push-1 {
+    left: 8.33333333%;
+  }
+  .col-sm-push-0 {
+    left: auto;
+  }
+  .col-sm-offset-12 {
+    margin-left: 100%;
+  }
+  .col-sm-offset-11 {
+    margin-left: 91.66666667%;
+  }
+  .col-sm-offset-10 {
+    margin-left: 83.33333333%;
+  }
+  .col-sm-offset-9 {
+    margin-left: 75%;
+  }
+  .col-sm-offset-8 {
+    margin-left: 66.66666667%;
+  }
+  .col-sm-offset-7 {
+    margin-left: 58.33333333%;
+  }
+  .col-sm-offset-6 {
+    margin-left: 50%;
+  }
+  .col-sm-offset-5 {
+    margin-left: 41.66666667%;
+  }
+  .col-sm-offset-4 {
+    margin-left: 33.33333333%;
+  }
+  .col-sm-offset-3 {
+    margin-left: 25%;
+  }
+  .col-sm-offset-2 {
+    margin-left: 16.66666667%;
+  }
+  .col-sm-offset-1 {
+    margin-left: 8.33333333%;
+  }
+  .col-sm-offset-0 {
+    margin-left: 0%;
+  }
+}
+@media (min-width: 992px) {
+  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
+    float: left;
+  }
+  .col-md-12 {
+    width: 100%;
+  }
+  .col-md-11 {
+    width: 91.66666667%;
+  }
+  .col-md-10 {
+    width: 83.33333333%;
+  }
+  .col-md-9 {
+    width: 75%;
+  }
+  .col-md-8 {
+    width: 66.66666667%;
+  }
+  .col-md-7 {
+    width: 58.33333333%;
+  }
+  .col-md-6 {
+    width: 50%;
+  }
+  .col-md-5 {
+    width: 41.66666667%;
+  }
+  .col-md-4 {
+    width: 33.33333333%;
+  }
+  .col-md-3 {
+    width: 25%;
+  }
+  .col-md-2 {
+    width: 16.66666667%;
+  }
+  .col-md-1 {
+    width: 8.33333333%;
+  }
+  .col-md-pull-12 {
+    right: 100%;
+  }
+  .col-md-pull-11 {
+    right: 91.66666667%;
+  }
+  .col-md-pull-10 {
+    right: 83.33333333%;
+  }
+  .col-md-pull-9 {
+    right: 75%;
+  }
+  .col-md-pull-8 {
+    right: 66.66666667%;
+  }
+  .col-md-pull-7 {
+    right: 58.33333333%;
+  }
+  .col-md-pull-6 {
+    right: 50%;
+  }
+  .col-md-pull-5 {
+    right: 41.66666667%;
+  }
+  .col-md-pull-4 {
+    right: 33.33333333%;
+  }
+  .col-md-pull-3 {
+    right: 25%;
+  }
+  .col-md-pull-2 {
+    right: 16.66666667%;
+  }
+  .col-md-pull-1 {
+    right: 8.33333333%;
+  }
+  .col-md-pull-0 {
+    right: auto;
+  }
+  .col-md-push-12 {
+    left: 100%;
+  }
+  .col-md-push-11 {
+    left: 91.66666667%;
+  }
+  .col-md-push-10 {
+    left: 83.33333333%;
+  }
+  .col-md-push-9 {
+    left: 75%;
+  }
+  .col-md-push-8 {
+    left: 66.66666667%;
+  }
+  .col-md-push-7 {
+    left: 58.33333333%;
+  }
+  .col-md-push-6 {
+    left: 50%;
+  }
+  .col-md-push-5 {
+    left: 41.66666667%;
+  }
+  .col-md-push-4 {
+    left: 33.33333333%;
+  }
+  .col-md-push-3 {
+    left: 25%;
+  }
+  .col-md-push-2 {
+    left: 16.66666667%;
+  }
+  .col-md-push-1 {
+    left: 8.33333333%;
+  }
+  .col-md-push-0 {
+    left: auto;
+  }
+  .col-md-offset-12 {
+    margin-left: 100%;
+  }
+  .col-md-offset-11 {
+    margin-left: 91.66666667%;
+  }
+  .col-md-offset-10 {
+    margin-left: 83.33333333%;
+  }
+  .col-md-offset-9 {
+    margin-left: 75%;
+  }
+  .col-md-offset-8 {
+    margin-left: 66.66666667%;
+  }
+  .col-md-offset-7 {
+    margin-left: 58.33333333%;
+  }
+  .col-md-offset-6 {
+    margin-left: 50%;
+  }
+  .col-md-offset-5 {
+    margin-left: 41.66666667%;
+  }
+  .col-md-offset-4 {
+    margin-left: 33.33333333%;
+  }
+  .col-md-offset-3 {
+    margin-left: 25%;
+  }
+  .col-md-offset-2 {
+    margin-left: 16.66666667%;
+  }
+  .col-md-offset-1 {
+    margin-left: 8.33333333%;
+  }
+  .col-md-offset-0 {
+    margin-left: 0%;
+  }
+}
+@media (min-width: 1200px) {
+  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
+    float: left;
+  }
+  .col-lg-12 {
+    width: 100%;
+  }
+  .col-lg-11 {
+    width: 91.66666667%;
+  }
+  .col-lg-10 {
+    width: 83.33333333%;
+  }
+  .col-lg-9 {
+    width: 75%;
+  }
+  .col-lg-8 {
+    width: 66.66666667%;
+  }
+  .col-lg-7 {
+    width: 58.33333333%;
+  }
+  .col-lg-6 {
+    width: 50%;
+  }
+  .col-lg-5 {
+    width: 41.66666667%;
+  }
+  .col-lg-4 {
+    width: 33.33333333%;
+  }
+  .col-lg-3 {
+    width: 25%;
+  }
+  .col-lg-2 {
+    width: 16.66666667%;
+  }
+  .col-lg-1 {
+    width: 8.33333333%;
+  }
+  .col-lg-pull-12 {
+    right: 100%;
+  }
+  .col-lg-pull-11 {
+    right: 91.66666667%;
+  }
+  .col-lg-pull-10 {
+    right: 83.33333333%;
+  }
+  .col-lg-pull-9 {
+    right: 75%;
+  }
+  .col-lg-pull-8 {
+    right: 66.66666667%;
+  }
+  .col-lg-pull-7 {
+    right: 58.33333333%;
+  }
+  .col-lg-pull-6 {
+    right: 50%;
+  }
+  .col-lg-pull-5 {
+    right: 41.66666667%;
+  }
+  .col-lg-pull-4 {
+    right: 33.33333333%;
+  }
+  .col-lg-pull-3 {
+    right: 25%;
+  }
+  .col-lg-pull-2 {
+    right: 16.66666667%;
+  }
+  .col-lg-pull-1 {
+    right: 8.33333333%;
+  }
+  .col-lg-pull-0 {
+    right: auto;
+  }
+  .col-lg-push-12 {
+    left: 100%;
+  }
+  .col-lg-push-11 {
+    left: 91.66666667%;
+  }
+  .col-lg-push-10 {
+    left: 83.33333333%;
+  }
+  .col-lg-push-9 {
+    left: 75%;
+  }
+  .col-lg-push-8 {
+    left: 66.66666667%;
+  }
+  .col-lg-push-7 {
+    left: 58.33333333%;
+  }
+  .col-lg-push-6 {
+    left: 50%;
+  }
+  .col-lg-push-5 {
+    left: 41.66666667%;
+  }
+  .col-lg-push-4 {
+    left: 33.33333333%;
+  }
+  .col-lg-push-3 {
+    left: 25%;
+  }
+  .col-lg-push-2 {
+    left: 16.66666667%;
+  }
+  .col-lg-push-1 {
+    left: 8.33333333%;
+  }
+  .col-lg-push-0 {
+    left: auto;
+  }
+  .col-lg-offset-12 {
+    margin-left: 100%;
+  }
+  .col-lg-offset-11 {
+    margin-left: 91.66666667%;
+  }
+  .col-lg-offset-10 {
+    margin-left: 83.33333333%;
+  }
+  .col-lg-offset-9 {
+    margin-left: 75%;
+  }
+  .col-lg-offset-8 {
+    margin-left: 66.66666667%;
+  }
+  .col-lg-offset-7 {
+    margin-left: 58.33333333%;
+  }
+  .col-lg-offset-6 {
+    margin-left: 50%;
+  }
+  .col-lg-offset-5 {
+    margin-left: 41.66666667%;
+  }
+  .col-lg-offset-4 {
+    margin-left: 33.33333333%;
+  }
+  .col-lg-offset-3 {
+    margin-left: 25%;
+  }
+  .col-lg-offset-2 {
+    margin-left: 16.66666667%;
+  }
+  .col-lg-offset-1 {
+    margin-left: 8.33333333%;
+  }
+  .col-lg-offset-0 {
+    margin-left: 0%;
+  }
+}
+table {
+  background-color: transparent;
+}
+caption {
+  padding-top: 10px;
+  padding-bottom: 10px;
+  color: #9c9c9c;
+  text-align: left;
+}
+th {
+  text-align: left;
+}
+.table {
+  width: 100%;
+  max-width: 100%;
+  margin-bottom: 20px;
+}
+.table > thead > tr > th,
+.table > tbody > tr > th,
+.table > tfoot > tr > th,
+.table > thead > tr > td,
+.table > tbody > tr > td,
+.table > tfoot > tr > td {
+  padding: 10px;
+  line-height: 1.66666667;
+  vertical-align: top;
+  border-top: 1px solid #d1d1d1;
+}
+.table > thead > tr > th {
+  vertical-align: bottom;
+  border-bottom: 2px solid #d1d1d1;
+}
+.table > caption + thead > tr:first-child > th,
+.table > colgroup + thead > tr:first-child > th,
+.table > thead:first-child > tr:first-child > th,
+.table > caption + thead > tr:first-child > td,
+.table > colgroup + thead > tr:first-child > td,
+.table > thead:first-child > tr:first-child > td {
+  border-top: 0;
+}
+.table > tbody + tbody {
+  border-top: 2px solid #d1d1d1;
+}
+.table .table {
+  background-color: #fff;
+}
+.table-condensed > thead > tr > th,
+.table-condensed > tbody > tr > th,
+.table-condensed > tfoot > tr > th,
+.table-condensed > thead > tr > td,
+.table-condensed > tbody > tr > td,
+.table-condensed > tfoot > tr > td {
+  padding: 5px;
+}
+.table-bordered {
+  border: 1px solid #d1d1d1;
+}
+.table-bordered > thead > tr > th,
+.table-bordered > tbody > tr > th,
+.table-bordered > tfoot > tr > th,
+.table-bordered > thead > tr > td,
+.table-bordered > tbody > tr > td,
+.table-bordered > tfoot > tr > td {
+  border: 1px solid #d1d1d1;
+}
+.table-bordered > thead > tr > th,
+.table-bordered > thead > tr > td {
+  border-bottom-width: 2px;
+}
+.table-striped > tbody > tr:nth-of-type(odd) {
+  background-color: #f5f5f5;
+}
+.table-hover > tbody > tr:hover {
+  background-color: #def3ff;
+}
+table col[class*="col-"] {
+  position: static;
+  float: none;
+  display: table-column;
+}
+table td[class*="col-"],
+table th[class*="col-"] {
+  position: static;
+  float: none;
+  display: table-cell;
+}
+.table > thead > tr > td.active,
+.table > tbody > tr > td.active,
+.table > tfoot > tr > td.active,
+.table > thead > tr > th.active,
+.table > tbody > tr > th.active,
+.table > tfoot > tr > th.active,
+.table > thead > tr.active > td,
+.table > tbody > tr.active > td,
+.table > tfoot > tr.active > td,
+.table > thead > tr.active > th,
+.table > tbody > tr.active > th,
+.table > tfoot > tr.active > th {
+  background-color: #def3ff;
+}
+.table-hover > tbody > tr > td.active:hover,
+.table-hover > tbody > tr > th.active:hover,
+.table-hover > tbody > tr.active:hover > td,
+.table-hover > tbody > tr:hover > .active,
+.table-hover > tbody > tr.active:hover > th {
+  background-color: #c4eaff;
+}
+.table > thead > tr > td.success,
+.table > tbody > tr > td.success,
+.table > tfoot > tr > td.success,
+.table > thead > tr > th.success,
+.table > tbody > tr > th.success,
+.table > tfoot > tr > th.success,
+.table > thead > tr.success > td,
+.table > tbody > tr.success > td,
+.table > tfoot > tr.success > td,
+.table > thead > tr.success > th,
+.table > tbody > tr.success > th,
+.table > tfoot > tr.success > th {
+  background-color: #dff0d8;
+}
+.table-hover > tbody > tr > td.success:hover,
+.table-hover > tbody > tr > th.success:hover,
+.table-hover > tbody > tr.success:hover > td,
+.table-hover > tbody > tr:hover > .success,
+.table-hover > tbody > tr.success:hover > th {
+  background-color: #d0e9c6;
+}
+.table > thead > tr > td.info,
+.table > tbody > tr > td.info,
+.table > tfoot > tr > td.info,
+.table > thead > tr > th.info,
+.table > tbody > tr > th.info,
+.table > tfoot > tr > th.info,
+.table > thead > tr.info > td,
+.table > tbody > tr.info > td,
+.table > tfoot > tr.info > td,
+.table > thead > tr.info > th,
+.table > tbody > tr.info > th,
+.table > tfoot > tr.info > th {
+  background-color: #d9edf7;
+}
+.table-hover > tbody > tr > td.info:hover,
+.table-hover > tbody > tr > th.info:hover,
+.table-hover > tbody > tr.info:hover > td,
+.table-hover > tbody > tr:hover > .info,
+.table-hover > tbody > tr.info:hover > th {
+  background-color: #c4e3f3;
+}
+.table > thead > tr > td.warning,
+.table > tbody > tr > td.warning,
+.table > tfoot > tr > td.warning,
+.table > thead > tr > th.warning,
+.table > tbody > tr > th.warning,
+.table > tfoot > tr > th.warning,
+.table > thead > tr.warning > td,
+.table > tbody > tr.warning > td,
+.table > tfoot > tr.warning > td,
+.table > thead > tr.warning > th,
+.table > tbody > tr.warning > th,
+.table > tfoot > tr.warning > th {
+  background-color: #fcf8e3;
+}
+.table-hover > tbody > tr > td.warning:hover,
+.table-hover > tbody > tr > th.warning:hover,
+.table-hover > tbody > tr.warning:hover > td,
+.table-hover > tbody > tr:hover > .warning,
+.table-hover > tbody > tr.warning:hover > th {
+  background-color: #faf2cc;
+}
+.table > thead > tr > td.danger,
+.table > tbody > tr > td.danger,
+.table > tfoot > tr > td.danger,
+.table > thead > tr > th.danger,
+.table > tbody > tr > th.danger,
+.table > tfoot > tr > th.danger,
+.table > thead > tr.danger > td,
+.table > tbody > tr.danger > td,
+.table > tfoot > tr.danger > td,
+.table > thead > tr.danger > th,
+.table > tbody > tr.danger > th,
+.table > tfoot > tr.danger > th {
+  background-color: #f2dede;
+}
+.table-hover > tbody > tr > td.danger:hover,
+.table-hover > tbody > tr > th.danger:hover,
+.table-hover > tbody > tr.danger:hover > td,
+.table-hover > tbody > tr:hover > .danger,
+.table-hover > tbody > tr.danger:hover > th {
+  background-color: #ebcccc;
+}
+.table-responsive {
+  overflow-x: auto;
+  min-height: 0.01%;
+}
+@media screen and (max-width: 767px) {
+  .table-responsive {
+    width: 100%;
+    margin-bottom: 15px;
+    overflow-y: hidden;
+    -ms-overflow-style: -ms-autohiding-scrollbar;
+    border: 1px solid #d1d1d1;
+  }
+  .table-responsive > .table {
+    margin-bottom: 0;
+  }
+  .table-responsive > .table > thead > tr > th,
+  .table-responsive > .table > tbody > tr > th,
+  .table-responsive > .table > tfoot > tr > th,
+  .table-responsive > .table > thead > tr > td,
+  .table-responsive > .table > tbody > tr > td,
+  .table-responsive > .table > tfoot > tr > td {
+    white-space: nowrap;
+  }
+  .table-responsive > .table-bordered {
+    border: 0;
+  }
+  .table-responsive > .table-bordered > thead > tr > th:first-child,
+  .table-responsive > .table-bordered > tbody > tr > th:first-child,
+  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
+  .table-responsive > .table-bordered > thead > tr > td:first-child,
+  .table-responsive > .table-bordered > tbody > tr > td:first-child,
+  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
+    border-left: 0;
+  }
+  .table-responsive > .table-bordered > thead > tr > th:last-child,
+  .table-responsive > .table-bordered > tbody > tr > th:last-child,
+  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
+  .table-responsive > .table-bordered > thead > tr > td:last-child,
+  .table-responsive > .table-bordered > tbody > tr > td:last-child,
+  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
+    border-right: 0;
+  }
+  .table-responsive > .table-bordered > tbody > tr:last-child > th,
+  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
+  .table-responsive > .table-bordered > tbody > tr:last-child > td,
+  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
+    border-bottom: 0;
+  }
+}
+fieldset {
+  padding: 0;
+  margin: 0;
+  border: 0;
+  min-width: 0;
+}
+legend {
+  display: block;
+  width: 100%;
+  padding: 0;
+  margin-bottom: 20px;
+  font-size: 18px;
+  line-height: inherit;
+  color: #363636;
+  border: 0;
+  border-bottom: 1px solid #e5e5e5;
+}
+label {
+  display: inline-block;
+  max-width: 100%;
+  margin-bottom: 5px;
+  font-weight: bold;
+}
+input[type="search"] {
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box;
+}
+input[type="radio"],
+input[type="checkbox"] {
+  margin: 4px 0 0;
+  margin-top: 1px \9;
+  line-height: normal;
+}
+input[type="file"] {
+  display: block;
+}
+input[type="range"] {
+  display: block;
+  width: 100%;
+}
+select[multiple],
+select[size] {
+  height: auto;
+}
+input[type="file"]:focus,
+input[type="radio"]:focus,
+input[type="checkbox"]:focus {
+  outline: 5px auto -webkit-focus-ring-color;
+  outline-offset: -2px;
+}
+output {
+  display: block;
+  padding-top: 3px;
+  font-size: 12px;
+  line-height: 1.66666667;
+  color: #363636;
+}
+.form-control {
+  display: block;
+  width: 100%;
+  height: 26px;
+  padding: 2px 6px;
+  font-size: 12px;
+  line-height: 1.66666667;
+  color: #363636;
+  background-color: #fff;
+  background-image: none;
+  border: 1px solid #bbb;
+  border-radius: 1px;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+}
+.form-control:focus {
+  border-color: #0088ce;
+  outline: 0;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 136, 206, 0.6);
+  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 136, 206, 0.6);
+}
+.form-control::-moz-placeholder {
+  color: #999;
+  opacity: 1;
+}
+.form-control:-ms-input-placeholder {
+  color: #999;
+}
+.form-control::-webkit-input-placeholder {
+  color: #999;
+}
+.form-control:-moz-placeholder {
+  color: #999;
+  font-style: italic;
+}
+.form-control::-moz-placeholder {
+  color: #999;
+  font-style: italic;
+  opacity: 1;
+}
+.form-control:-ms-input-placeholder {
+  color: #999;
+  font-style: italic;
+}
+.form-control::-webkit-input-placeholder {
+  color: #999;
+  font-style: italic;
+}
+.form-control::-ms-expand {
+  border: 0;
+  background-color: transparent;
+}
+.form-control[disabled],
+.form-control[readonly],
+fieldset[disabled] .form-control {
+  background-color: #f5f5f5;
+  opacity: 1;
+}
+.form-control[disabled],
+fieldset[disabled] .form-control {
+  cursor: not-allowed;
+}
+textarea.form-control {
+  height: auto;
+}
+input[type="search"] {
+  -webkit-appearance: none;
+}
+@media screen and (-webkit-min-device-pixel-ratio: 0) {
+  input[type="date"].form-control,
+  input[type="time"].form-control,
+  input[type="datetime-local"].form-control,
+  input[type="month"].form-control {
+    line-height: 26px;
+  }
+  input[type="date"].input-sm,
+  input[type="time"].input-sm,
+  input[type="datetime-local"].input-sm,
+  input[type="month"].input-sm,
+  .input-group-sm input[type="date"],
+  .input-group-sm input[type="time"],
+  .input-group-sm input[type="datetime-local"],
+  .input-group-sm input[type="month"] {
+    line-height: 22px;
+  }
+  input[type="date"].input-lg,
+  input[type="time"].input-lg,
+  input[type="datetime-local"].input-lg,
+  input[type="month"].input-lg,
+  .input-group-lg input[type="date"],
+  .input-group-lg input[type="time"],
+  .input-group-lg input[type="datetime-local"],
+  .input-group-lg input[type="month"] {
+    line-height: 33px;
+  }
+}
+.form-group {
+  margin-bottom: 15px;
+}
+.radio,
+.checkbox {
+  position: relative;
+  display: block;
+  margin-top: 10px;
+  margin-bottom: 10px;
+}
+.radio label,
+.checkbox label {
+  min-height: 20px;
+  padding-left: 20px;
+  margin-bottom: 0;
+  font-weight: normal;
+  cursor: pointer;
+}
+.radio input[type="radio"],
+.radio-inline input[type="radio"],
+.checkbox input[type="checkbox"],
+.checkbox-inline input[type="checkbox"] {
+  position: absolute;
+  margin-left: -20px;
+  margin-top: 4px \9;
+}
+.radio + .radio,
+.checkbox + .checkbox {
+  margin-top: -5px;
+}
+.radio-inline,
+.checkbox-inline {
+  position: relative;
+  display: inline-block;
+  padding-left: 20px;
+  margin-bottom: 0;
+  vertical-align: middle;
+  font-weight: normal;
+  cursor: pointer;
+}
+.radio-inline + .radio-inline,
+.checkbox-inline + .checkbox-inline {
+  margin-top: 0;
+  margin-left: 10px;
+}
+input[type="radio"][disabled],
+input[type="checkbox"][disabled],
+input[type="radio"].disabled,
+input[type="checkbox"].disabled,
+fieldset[disabled] input[type="radio"],
+fieldset[disabled] input[type="checkbox"] {
+  cursor: not-allowed;
+}
+.radio-inline.disabled,
+.checkbox-inline.disabled,
+fieldset[disabled] .radio-inline,
+fieldset[disabled] .checkbox-inline {
+  cursor: not-allowed;
+}
+.radio.disabled label,
+.checkbox.disabled label,
+fieldset[disabled] .radio label,
+fieldset[disabled] .checkbox label {
+  cursor: not-allowed;
+}
+.form-control-static {
+  padding-top: 3px;
+  padding-bottom: 3px;
+  margin-bottom: 0;
+  min-height: 32px;
+}
+.form-control-static.input-lg,
+.form-control-static.input-sm {
+  padding-left: 0;
+  padding-right: 0;
+}
+.input-sm {
+  height: 22px;
+  padding: 2px 6px;
+  font-size: 11px;
+  line-height: 1.5;
+  border-radius: 1px;
+}
+select.input-sm {
+  height: 22px;
+  line-height: 22px;
+}
+textarea.input-sm,
+select[multiple].input-sm {
+  height: auto;
+}
+.form-group-sm .form-control {
+  height: 22px;
+  padding: 2px 6px;
+  font-size: 11px;
+  line-height: 1.5;
+  border-radius: 1px;
+}
+.form-group-sm select.form-control {
+  height: 22px;
+  line-height: 22px;
+}
+.form-group-sm textarea.form-control,
+.form-group-sm select[multiple].form-control {
+  height: auto;
+}
+.form-group-sm .form-control-static {
+  height: 22px;
+  min-height: 31px;
+  padding: 3px 6px;
+  font-size: 11px;
+  line-height: 1.5;
+}
+.input-lg {
+  height: 33px;
+  padding: 6px 10px;
+  font-size: 14px;
+  line-height: 1.3333333;
+  border-radius: 1px;
+}
+select.input-lg {
+  height: 33px;
+  line-height: 33px;
+}
+textarea.input-lg,
+select[multiple].input-lg {
+  height: auto;
+}
+.form-group-lg .form-control {
+  height: 33px;
+  padding: 6px 10px;
+  font-size: 14px;
+  line-height: 1.3333333;
+  border-radius: 1px;
+}
+.form-group-lg select.form-control {
+  height: 33px;
+  line-height: 33px;
+}
+.form-group-lg textarea.form-control,
+.form-group-lg select[multiple].form-control {
+  height: auto;
+}
+.form-group-lg .form-control-static {
+  height: 33px;
+  min-height: 34px;
+  padding: 7px 10px;
+  font-size: 14px;
+  line-height: 1.3333333;
+}
+.has-feedback {
+  position: relative;
+}
+.has-feedback .form-control {
+  padding-right: 32.5px;
+}
+.form-control-feedback {
+  position: absolute;
+  top: 0;
+  right: 0;
+  z-index: 2;
+  display: block;
+  width: 26px;
+  height: 26px;
+  line-height: 26px;
+  text-align: center;
+  pointer-events: none;
+}
+.input-lg + .form-control-feedback,
+.input-group-lg + .form-control-feedback,
+.form-group-lg .form-control + .form-control-feedback {
+  width: 33px;
+  height: 33px;
+  line-height: 33px;
+}
+.input-sm + .form-control-feedback,
+.input-group-sm + .form-control-feedback,
+.form-group-sm .form-control + .form-control-feedback {
+  width: 22px;
+  height: 22px;
+  line-height: 22px;
+}
+.has-success .help-block,
+.has-success .control-label,
+.has-success .radio,
+.has-success .checkbox,
+.has-success .radio-inline,
+.has-success .checkbox-inline,
+.has-success.radio label,
+.has-success.checkbox label,
+.has-success.radio-inline label,
+.has-success.checkbox-inline label {
+  color: #3c763d;
+}
+.has-success .form-control {
+  border-color: #3c763d;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+}
+.has-success .form-control:focus {
+  border-color: #2b542c;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
+}
+.has-success .input-group-addon {
+  color: #3c763d;
+  border-color: #3c763d;
+  background-color: #dff0d8;
+}
+.has-success .form-control-feedback {
+  color: #3c763d;
+}
+.has-warning .help-block,
+.has-warning .control-label,
+.has-warning .radio,
+.has-warning .checkbox,
+.has-warning .radio-inline,
+.has-warning .checkbox-inline,
+.has-warning.radio label,
+.has-warning.checkbox label,
+.has-warning.radio-inline label,
+.has-warning.checkbox-inline label {
+  color: #ec7a08;
+}
+.has-warning .form-control {
+  border-color: #ec7a08;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+}
+.has-warning .form-control:focus {
+  border-color: #bb6106;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #faad60;
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #faad60;
+}
+.has-warning .input-group-addon {
+  color: #ec7a08;
+  border-color: #ec7a08;
+  background-color: #fcf8e3;
+}
+.has-warning .form-control-feedback {
+  color: #ec7a08;
+}
+.has-error .help-block,
+.has-error .control-label,
+.has-error .radio,
+.has-error .checkbox,
+.has-error .radio-inline,
+.has-error .checkbox-inline,
+.has-error.radio label,
+.has-error.checkbox label,
+.has-error.radio-inline label,
+.has-error.checkbox-inline label {
+  color: #cc0000;
+}
+.has-error .form-control {
+  border-color: #cc0000;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+}
+.has-error .form-control:focus {
+  border-color: #990000;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff3333;
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff3333;
+}
+.has-error .input-group-addon {
+  color: #cc0000;
+  border-color: #cc0000;
+  background-color: #f2dede;
+}
+.has-error .form-control-feedback {
+  color: #cc0000;
+}
+.has-feedback label ~ .form-control-feedback {
+  top: 25px;
+}
+.has-feedback label.sr-only ~ .form-control-feedback {
+  top: 0;
+}
+.help-block {
+  display: block;
+  margin-top: 5px;
+  margin-bottom: 10px;
+  color: #767676;
+}
+@media (min-width: 768px) {
+  .form-inline .form-group {
+    display: inline-block;
+    margin-bottom: 0;
+    vertical-align: middle;
+  }
+  .form-inline .form-control {
+    display: inline-block;
+    width: auto;
+    vertical-align: middle;
+  }
+  .form-inline .form-control-static {
+    display: inline-block;
+  }
+  .form-inline .input-group {
+    display: inline-table;
+    vertical-align: middle;
+  }
+  .form-inline .input-group .input-group-addon,
+  .form-inline .input-group .input-group-btn,
+  .form-inline .input-group .form-control {
+    width: auto;
+  }
+  .form-inline .input-group > .form-control {
+    width: 100%;
+  }
+  .form-inline .control-label {
+    margin-bottom: 0;
+    vertical-align: middle;
+  }
+  .form-inline .radio,
+  .form-inline .checkbox {
+    display: inline-block;
+    margin-top: 0;
+    margin-bottom: 0;
+    vertical-align: middle;
+  }
+  .form-inline .radio label,
+  .form-inline .checkbox label {
+    padding-left: 0;
+  }
+  .form-inline .radio input[type="radio"],
+  .form-inline .checkbox input[type="checkbox"] {
+    position: relative;
+    margin-left: 0;
+  }
+  .form-inline .has-feedback .form-control-feedback {
+    top: 0;
+  }
+}
+.form-horizontal .radio,
+.form-horizontal .checkbox,
+.form-horizontal .radio-inline,
+.form-horizontal .checkbox-inline {
+  margin-top: 0;
+  margin-bottom: 0;
+  padding-top: 3px;
+}
+.form-horizontal .radio,
+.form-horizontal .checkbox {
+  min-height: 23px;
+}
+.form-horizontal .form-group {
+  margin-left: -20px;
+  margin-right: -20px;
+}
+@media (min-width: 768px) {
+  .form-horizontal .control-label {
+    text-align: right;
+    margin-bottom: 0;
+    padding-top: 3px;
+  }
+}
+.form-horizontal .has-feedback .form-control-feedback {
+  right: 20px;
+}
+@media (min-width: 768px) {
+  .form-horizontal .form-group-lg .control-label {
+    padding-top: 7px;
+    font-size: 14px;
+  }
+}
+@media (min-width: 768px) {
+  .form-horizontal .form-group-sm .control-label {
+    padding-top: 3px;
+    font-size: 11px;
+  }
+}
+.btn {
+  display: inline-block;
+  margin-bottom: 0;
+  font-weight: 600;
+  text-align: center;
+  vertical-align: middle;
+  touch-action: manipulation;
+  cursor: pointer;
+  background-image: none;
+  border: 1px solid transparent;
+  white-space: nowrap;
+  padding: 2px 6px;
+  font-size: 12px;
+  line-height: 1.66666667;
+  border-radius: 1px;
+  -webkit-user-select: none;
+  -moz-user-select: none;
+  -ms-user-select: none;
+  user-select: none;
+}
+.btn:focus,
+.btn:active:focus,
+.btn.active:focus,
+.btn.focus,
+.btn:active.focus,
+.btn.active.focus {
+  outline: 5px auto -webkit-focus-ring-color;
+  outline-offset: -2px;
+}
+.btn:hover,
+.btn:focus,
+.btn.focus {
+  color: #4d5258;
+  text-decoration: none;
+}
+.btn:active,
+.btn.active {
+  outline: 0;
+  background-image: none;
+  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+}
+.btn.disabled,
+.btn[disabled],
+fieldset[disabled] .btn {
+  cursor: not-allowed;
+  opacity: 0.65;
+  filter: alpha(opacity=65);
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+a.btn.disabled,
+fieldset[disabled] a.btn {
+  pointer-events: none;
+}
+.btn-default {
+  color: #4d5258;
+  background-color: #f1f1f1;
+  border-color: #bbb;
+}
+.btn-default:focus,
+.btn-default.focus {
+  color: #4d5258;
+  background-color: #d8d8d8;
+  border-color: #7b7b7b;
+}
+.btn-default:hover {
+  color: #4d5258;
+  background-color: #d8d8d8;
+  border-color: #9c9c9c;
+}
+.btn-default:active,
+.btn-default.active,
+.open > .dropdown-toggle.btn-default {
+  color: #4d5258;
+  background-color: #d8d8d8;
+  border-color: #9c9c9c;
+}
+.btn-default:active:hover,
+.btn-default.active:hover,
+.open > .dropdown-toggle.btn-default:hover,
+.btn-default:active:focus,
+.btn-default.active:focus,
+.open > .dropdown-toggle.btn-default:focus,
+.btn-default:active.focus,
+.btn-default.active.focus,
+.open > .dropdown-toggle.btn-default.focus {
+  color: #4d5258;
+  background-color: #c6c6c6;
+  border-color: #7b7b7b;
+}
+.btn-default:active,
+.btn-default.active,
+.open > .dropdown-toggle.btn-default {
+  background-image: none;
+}
+.btn-default.disabled:hover,
+.btn-default[disabled]:hover,
+fieldset[disabled] .btn-default:hover,
+.btn-default.disabled:focus,
+.btn-default[disabled]:focus,
+fieldset[disabled] .btn-default:focus,
+.btn-default.disabled.focus,
+.btn-default[disabled].focus,
+fieldset[disabled] .btn-default.focus {
+  background-color: #f1f1f1;
+  border-color: #bbb;
+}
+.btn-default .badge {
+  color: #f1f1f1;
+  background-color: #4d5258;
+}
+.btn-primary {
+  color: #fff;
+  background-color: #0088ce;
+  border-color: #00659c;
+}
+.btn-primary:focus,
+.btn-primary.focus {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #00121d;
+}
+.btn-primary:hover {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #003d5f;
+}
+.btn-primary:active,
+.btn-primary.active,
+.open > .dropdown-toggle.btn-primary {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #003d5f;
+}
+.btn-primary:active:hover,
+.btn-primary.active:hover,
+.open > .dropdown-toggle.btn-primary:hover,
+.btn-primary:active:focus,
+.btn-primary.active:focus,
+.open > .dropdown-toggle.btn-primary:focus,
+.btn-primary:active.focus,
+.btn-primary.active.focus,
+.open > .dropdown-toggle.btn-primary.focus {
+  color: #fff;
+  background-color: #004f77;
+  border-color: #00121d;
+}
+.btn-primary:active,
+.btn-primary.active,
+.open > .dropdown-toggle.btn-primary {
+  background-image: none;
+}
+.btn-primary.disabled:hover,
+.btn-primary[disabled]:hover,
+fieldset[disabled] .btn-primary:hover,
+.btn-primary.disabled:focus,
+.btn-primary[disabled]:focus,
+fieldset[disabled] .btn-primary:focus,
+.btn-primary.disabled.focus,
+.btn-primary[disabled].focus,
+fieldset[disabled] .btn-primary.focus {
+  background-color: #0088ce;
+  border-color: #00659c;
+}
+.btn-primary .badge {
+  color: #0088ce;
+  background-color: #fff;
+}
+.btn-success {
+  color: #fff;
+  background-color: #3f9c35;
+  border-color: #37892f;
+}
+.btn-success:focus,
+.btn-success.focus {
+  color: #fff;
+  background-color: #307628;
+  border-color: #112a0e;
+}
+.btn-success:hover {
+  color: #fff;
+  background-color: #307628;
+  border-color: #255b1f;
+}
+.btn-success:active,
+.btn-success.active,
+.open > .dropdown-toggle.btn-success {
+  color: #fff;
+  background-color: #307628;
+  border-color: #255b1f;
+}
+.btn-success:active:hover,
+.btn-success.active:hover,
+.open > .dropdown-toggle.btn-success:hover,
+.btn-success:active:focus,
+.btn-success.active:focus,
+.open > .dropdown-toggle.btn-success:focus,
+.btn-success:active.focus,
+.btn-success.active.focus,
+.open > .dropdown-toggle.btn-success.focus {
+  color: #fff;
+  background-color: #255b1f;
+  border-color: #112a0e;
+}
+.btn-success:active,
+.btn-success.active,
+.open > .dropdown-toggle.btn-success {
+  background-image: none;
+}
+.btn-success.disabled:hover,
+.btn-success[disabled]:hover,
+fieldset[disabled] .btn-success:hover,
+.btn-success.disabled:focus,
+.btn-success[disabled]:focus,
+fieldset[disabled] .btn-success:focus,
+.btn-success.disabled.focus,
+.btn-success[disabled].focus,
+fieldset[disabled] .btn-success.focus {
+  background-color: #3f9c35;
+  border-color: #37892f;
+}
+.btn-success .badge {
+  color: #3f9c35;
+  background-color: #fff;
+}
+.btn-info {
+  color: #fff;
+  background-color: #00659c;
+  border-color: #005483;
+}
+.btn-info:focus,
+.btn-info.focus {
+  color: #fff;
+  background-color: #004469;
+  border-color: #000203;
+}
+.btn-info:hover {
+  color: #fff;
+  background-color: #004469;
+  border-color: #002d45;
+}
+.btn-info:active,
+.btn-info.active,
+.open > .dropdown-toggle.btn-info {
+  color: #fff;
+  background-color: #004469;
+  border-color: #002d45;
+}
+.btn-info:active:hover,
+.btn-info.active:hover,
+.open > .dropdown-toggle.btn-info:hover,
+.btn-info:active:focus,
+.btn-info.active:focus,
+.open > .dropdown-toggle.btn-info:focus,
+.btn-info:active.focus,
+.btn-info.active.focus,
+.open > .dropdown-toggle.btn-info.focus {
+  color: #fff;
+  background-color: #002d45;
+  border-color: #000203;
+}
+.btn-info:active,
+.btn-info.active,
+.open > .dropdown-toggle.btn-info {
+  background-image: none;
+}
+.btn-info.disabled:hover,
+.btn-info[disabled]:hover,
+fieldset[disabled] .btn-info:hover,
+.btn-info.disabled:focus,
+.btn-info[disabled]:focus,
+fieldset[disabled] .btn-info:focus,
+.btn-info.disabled.focus,
+.btn-info[disabled].focus,
+fieldset[disabled] .btn-info.focus {
+  background-color: #00659c;
+  border-color: #005483;
+}
+.btn-info .badge {
+  color: #00659c;
+  background-color: #fff;
+}
+.btn-warning {
+  color: #fff;
+  background-color: #ec7a08;
+  border-color: #d36d07;
+}
+.btn-warning:focus,
+.btn-warning.focus {
+  color: #fff;
+  background-color: #bb6106;
+  border-color: #582e03;
+}
+.btn-warning:hover {
+  color: #fff;
+  background-color: #bb6106;
+  border-color: #984f05;
+}
+.btn-warning:active,
+.btn-warning.active,
+.open > .dropdown-toggle.btn-warning {
+  color: #fff;
+  background-color: #bb6106;
+  border-color: #984f05;
+}
+.btn-warning:active:hover,
+.btn-warning.active:hover,
+.open > .dropdown-toggle.btn-warning:hover,
+.btn-warning:active:focus,
+.btn-warning.active:focus,
+.open > .dropdown-toggle.btn-warning:focus,
+.btn-warning:active.focus,
+.btn-warning.active.focus,
+.open > .dropdown-toggle.btn-warning.focus {
+  color: #fff;
+  background-color: #984f05;
+  border-color: #582e03;
+}
+.btn-warning:active,
+.btn-warning.active,
+.open > .dropdown-toggle.btn-warning {
+  background-image: none;
+}
+.btn-warning.disabled:hover,
+.btn-warning[disabled]:hover,
+fieldset[disabled] .btn-warning:hover,
+.btn-warning.disabled:focus,
+.btn-warning[disabled]:focus,
+fieldset[disabled] .btn-warning:focus,
+.btn-warning.disabled.focus,
+.btn-warning[disabled].focus,
+fieldset[disabled] .btn-warning.focus {
+  background-color: #ec7a08;
+  border-color: #d36d07;
+}
+.btn-warning .badge {
+  color: #ec7a08;
+  background-color: #fff;
+}
+.btn-danger {
+  color: #fff;
+  background-color: #a30000;
+  border-color: #8b0000;
+}
+.btn-danger:focus,
+.btn-danger.focus {
+  color: #fff;
+  background-color: #700000;
+  border-color: #0b0000;
+}
+.btn-danger:hover {
+  color: #fff;
+  background-color: #700000;
+  border-color: #4e0000;
+}
+.btn-danger:active,
+.btn-danger.active,
+.open > .dropdown-toggle.btn-danger {
+  color: #fff;
+  background-color: #700000;
+  border-color: #4e0000;
+}
+.btn-danger:active:hover,
+.btn-danger.active:hover,
+.open > .dropdown-toggle.btn-danger:hover,
+.btn-danger:active:focus,
+.btn-danger.active:focus,
+.open > .dropdown-toggle.btn-danger:focus,
+.btn-danger:active.focus,
+.btn-danger.active.focus,
+.open > .dropdown-toggle.btn-danger.focus {
+  color: #fff;
+  background-color: #4c0000;
+  border-color: #0b0000;
+}
+.btn-danger:active,
+.btn-danger.active,
+.open > .dropdown-toggle.btn-danger {
+  background-image: none;
+}
+.btn-danger.disabled:hover,
+.btn-danger[disabled]:hover,
+fieldset[disabled] .btn-danger:hover,
+.btn-danger.disabled:focus,
+.btn-danger[disabled]:focus,
+fieldset[disabled] .btn-danger:focus,
+.btn-danger.disabled.focus,
+.btn-danger[disabled].focus,
+fieldset[disabled] .btn-danger.focus {
+  background-color: #a30000;
+  border-color: #8b0000;
+}
+.btn-danger .badge {
+  color: #a30000;
+  background-color: #fff;
+}
+.btn-link {
+  color: #0088ce;
+  font-weight: normal;
+  border-radius: 0;
+}
+.btn-link,
+.btn-link:active,
+.btn-link.active,
+.btn-link[disabled],
+fieldset[disabled] .btn-link {
+  background-color: transparent;
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+.btn-link,
+.btn-link:hover,
+.btn-link:focus,
+.btn-link:active {
+  border-color: transparent;
+}
+.btn-link:hover,
+.btn-link:focus {
+  color: #00659c;
+  text-decoration: underline;
+  background-color: transparent;
+}
+.btn-link[disabled]:hover,
+fieldset[disabled] .btn-link:hover,
+.btn-link[disabled]:focus,
+fieldset[disabled] .btn-link:focus {
+  color: #9c9c9c;
+  text-decoration: none;
+}
+.btn-lg,
+.btn-group-lg > .btn {
+  padding: 6px 10px;
+  font-size: 14px;
+  line-height: 1.3333333;
+  border-radius: 1px;
+}
+.btn-sm,
+.btn-group-sm > .btn {
+  padding: 2px 6px;
+  font-size: 11px;
+  line-height: 1.5;
+  border-radius: 1px;
+}
+.btn-xs,
+.btn-group-xs > .btn {
+  padding: 1px 5px;
+  font-size: 11px;
+  line-height: 1.5;
+  border-radius: 1px;
+}
+.btn-block {
+  display: block;
+  width: 100%;
+}
+.btn-block + .btn-block {
+  margin-top: 5px;
+}
+input[type="submit"].btn-block,
+input[type="reset"].btn-block,
+input[type="button"].btn-block {
+  width: 100%;
+}
+.fade {
+  opacity: 0;
+  -webkit-transition: opacity 0.15s linear;
+  -o-transition: opacity 0.15s linear;
+  transition: opacity 0.15s linear;
+}
+.fade.in {
+  opacity: 1;
+}
+.collapse {
+  display: none;
+}
+.collapse.in {
+  display: block;
+}
+tr.collapse.in {
+  display: table-row;
+}
+tbody.collapse.in {
+  display: table-row-group;
+}
+.collapsing {
+  position: relative;
+  height: 0;
+  overflow: hidden;
+  -webkit-transition-property: height, visibility;
+  transition-property: height, visibility;
+  -webkit-transition-duration: 0.35s;
+  transition-duration: 0.35s;
+  -webkit-transition-timing-function: ease;
+  transition-timing-function: ease;
+}
+.caret {
+  display: inline-block;
+  width: 0;
+  height: 0;
+  margin-left: 2px;
+  vertical-align: middle;
+  border-top: 0 dashed;
+  border-top: 0 solid \9;
+  border-right: 0 solid transparent;
+  border-left: 0 solid transparent;
+}
+.dropup,
+.dropdown {
+  position: relative;
+}
+.dropdown-toggle:focus {
+  outline: 0;
+}
+.dropdown-menu {
+  position: absolute;
+  top: 100%;
+  left: 0;
+  z-index: 1000;
+  display: none;
+  float: left;
+  min-width: 160px;
+  padding: 5px 0;
+  margin: 2px 0 0;
+  list-style: none;
+  font-size: 12px;
+  text-align: left;
+  background-color: #fff;
+  border: 1px solid #bbb;
+  border-radius: 1px;
+  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
+  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
+  background-clip: padding-box;
+}
+.dropdown-menu.pull-right {
+  right: 0;
+  left: auto;
+}
+.dropdown-menu .divider {
+  margin: 9px 0;
+  background-color: #ededed;
+  height: 1px;
+  margin: 4px 1px;
+  overflow: hidden;
+}
+.dropdown-menu > li > a {
+  display: block;
+  padding: 3px 20px;
+  clear: both;
+  font-weight: normal;
+  line-height: 1.66666667;
+  color: #363636;
+  white-space: nowrap;
+}
+.dropdown-menu > li > a:hover,
+.dropdown-menu > li > a:focus {
+  text-decoration: none;
+  color: #4d5258;
+  background-color: #def3ff;
+}
+.dropdown-menu > .active > a,
+.dropdown-menu > .active > a:hover,
+.dropdown-menu > .active > a:focus {
+  color: #fff;
+  text-decoration: none;
+  outline: 0;
+  background-color: #0088ce;
+}
+.dropdown-menu > .disabled > a,
+.dropdown-menu > .disabled > a:hover,
+.dropdown-menu > .disabled > a:focus {
+  color: #9c9c9c;
+}
+.dropdown-menu > .disabled > a:hover,
+.dropdown-menu > .disabled > a:focus {
+  text-decoration: none;
+  background-color: transparent;
+  background-image: none;
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+  cursor: not-allowed;
+}
+.open > .dropdown-menu {
+  display: block;
+}
+.open > a {
+  outline: 0;
+}
+.dropdown-menu-right {
+  left: auto;
+  right: 0;
+}
+.dropdown-menu-left {
+  left: 0;
+  right: auto;
+}
+.dropdown-header {
+  display: block;
+  padding: 3px 20px;
+  font-size: 11px;
+  line-height: 1.66666667;
+  color: #9c9c9c;
+  white-space: nowrap;
+}
+.dropdown-backdrop {
+  position: fixed;
+  left: 0;
+  right: 0;
+  bottom: 0;
+  top: 0;
+  z-index: 990;
+}
+.pull-right > .dropdown-menu {
+  right: 0;
+  left: auto;
+}
+.dropup .caret,
+.navbar-fixed-bottom .dropdown .caret {
+  border-top: 0;
+  border-bottom: 0 dashed;
+  border-bottom: 0 solid \9;
+  content: "";
+}
+.dropup .dropdown-menu,
+.navbar-fixed-bottom .dropdown .dropdown-menu {
+  top: auto;
+  bottom: 100%;
+  margin-bottom: 2px;
+}
+@media (min-width: 768px) {
+  .navbar-right .dropdown-menu {
+    left: auto;
+    right: 0;
+  }
+  .navbar-right .dropdown-menu-left {
+    left: 0;
+    right: auto;
+  }
+}
+.btn-group,
+.btn-group-vertical {
+  position: relative;
+  display: inline-block;
+  vertical-align: middle;
+}
+.btn-group > .btn,
+.btn-group-vertical > .btn {
+  position: relative;
+  float: left;
+}
+.btn-group > .btn:hover,
+.btn-group-vertical > .btn:hover,
+.btn-group > .btn:focus,
+.btn-group-vertical > .btn:focus,
+.btn-group > .btn:active,
+.btn-group-vertical > .btn:active,
+.btn-group > .btn.active,
+.btn-group-vertical > .btn.active {
+  z-index: 2;
+}
+.btn-group .btn + .btn,
+.btn-group .btn + .btn-group,
+.btn-group .btn-group + .btn,
+.btn-group .btn-group + .btn-group {
+  margin-left: -1px;
+}
+.btn-toolbar {
+  margin-left: -5px;
+}
+.btn-toolbar .btn,
+.btn-toolbar .btn-group,
+.btn-toolbar .input-group {
+  float: left;
+}
+.btn-toolbar > .btn,
+.btn-toolbar > .btn-group,
+.btn-toolbar > .input-group {
+  margin-left: 5px;
+}
+.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
+  border-radius: 0;
+}
+.btn-group > .btn:first-child {
+  margin-left: 0;
+}
+.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
+  border-bottom-right-radius: 0;
+  border-top-right-radius: 0;
+}
+.btn-group > .btn:last-child:not(:first-child),
+.btn-group > .dropdown-toggle:not(:first-child) {
+  border-bottom-left-radius: 0;
+  border-top-left-radius: 0;
+}
+.btn-group > .btn-group {
+  float: left;
+}
+.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
+  border-radius: 0;
+}
+.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
+.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
+  border-bottom-right-radius: 0;
+  border-top-right-radius: 0;
+}
+.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
+  border-bottom-left-radius: 0;
+  border-top-left-radius: 0;
+}
+.btn-group .dropdown-toggle:active,
+.btn-group.open .dropdown-toggle {
+  outline: 0;
+}
+.btn-group > .btn + .dropdown-toggle {
+  padding-left: 8px;
+  padding-right: 8px;
+}
+.btn-group > .btn-lg + .dropdown-toggle {
+  padding-left: 12px;
+  padding-right: 12px;
+}
+.btn-group.open .dropdown-toggle {
+  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+}
+.btn-group.open .dropdown-toggle.btn-link {
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+.btn .caret {
+  margin-left: 0;
+}
+.btn-lg .caret {
+  border-width: 0 0 0;
+  border-bottom-width: 0;
+}
+.dropup .btn-lg .caret {
+  border-width: 0 0 0;
+}
+.btn-group-vertical > .btn,
+.btn-group-vertical > .btn-group,
+.btn-group-vertical > .btn-group > .btn {
+  display: block;
+  float: none;
+  width: 100%;
+  max-width: 100%;
+}
+.btn-group-vertical > .btn-group > .btn {
+  float: none;
+}
+.btn-group-vertical > .btn + .btn,
+.btn-group-vertical > .btn + .btn-group,
+.btn-group-vertical > .btn-group + .btn,
+.btn-group-vertical > .btn-group + .btn-group {
+  margin-top: -1px;
+  margin-left: 0;
+}
+.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
+  border-radius: 0;
+}
+.btn-group-vertical > .btn:first-child:not(:last-child) {
+  border-top-right-radius: 1px;
+  border-top-left-radius: 1px;
+  border-bottom-right-radius: 0;
+  border-bottom-left-radius: 0;
+}
+.btn-group-vertical > .btn:last-child:not(:first-child) {
+  border-top-right-radius: 0;
+  border-top-left-radius: 0;
+  border-bottom-right-radius: 1px;
+  border-bottom-left-radius: 1px;
+}
+.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
+  border-radius: 0;
+}
+.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
+.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
+  border-bottom-right-radius: 0;
+  border-bottom-left-radius: 0;
+}
+.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
+  border-top-right-radius: 0;
+  border-top-left-radius: 0;
+}
+.btn-group-justified {
+  display: table;
+  width: 100%;
+  table-layout: fixed;
+  border-collapse: separate;
+}
+.btn-group-justified > .btn,
+.btn-group-justified > .btn-group {
+  float: none;
+  display: table-cell;
+  width: 1%;
+}
+.btn-group-justified > .btn-group .btn {
+  width: 100%;
+}
+.btn-group-justified > .btn-group .dropdown-menu {
+  left: auto;
+}
+[data-toggle="buttons"] > .btn input[type="radio"],
+[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
+[data-toggle="buttons"] > .btn input[type="checkbox"],
+[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
+  position: absolute;
+  clip: rect(0, 0, 0, 0);
+  pointer-events: none;
+}
+.input-group {
+  position: relative;
+  display: table;
+  border-collapse: separate;
+}
+.input-group[class*="col-"] {
+  float: none;
+  padding-left: 0;
+  padding-right: 0;
+}
+.input-group .form-control {
+  position: relative;
+  z-index: 2;
+  float: left;
+  width: 100%;
+  margin-bottom: 0;
+}
+.input-group .form-control:focus {
+  z-index: 3;
+}
+.input-group-lg > .form-control,
+.input-group-lg > .input-group-addon,
+.input-group-lg > .input-group-btn > .btn {
+  height: 33px;
+  padding: 6px 10px;
+  font-size: 14px;
+  line-height: 1.3333333;
+  border-radius: 1px;
+}
+select.input-group-lg > .form-control,
+select.input-group-lg > .input-group-addon,
+select.input-group-lg > .input-group-btn > .btn {
+  height: 33px;
+  line-height: 33px;
+}
+textarea.input-group-lg > .form-control,
+textarea.input-group-lg > .input-group-addon,
+textarea.input-group-lg > .input-group-btn > .btn,
+select[multiple].input-group-lg > .form-control,
+select[multiple].input-group-lg > .input-group-addon,
+select[multiple].input-group-lg > .input-group-btn > .btn {
+  height: auto;
+}
+.input-group-sm > .form-control,
+.input-group-sm > .input-group-addon,
+.input-group-sm > .input-group-btn > .btn {
+  height: 22px;
+  padding: 2px 6px;
+  font-size: 11px;
+  line-height: 1.5;
+  border-radius: 1px;
+}
+select.input-group-sm > .form-control,
+select.input-group-sm > .input-group-addon,
+select.input-group-sm > .input-group-btn > .btn {
+  height: 22px;
+  line-height: 22px;
+}
+textarea.input-group-sm > .form-control,
+textarea.input-group-sm > .input-group-addon,
+textarea.input-group-sm > .input-group-btn > .btn,
+select[multiple].input-group-sm > .form-control,
+select[multiple].input-group-sm > .input-group-addon,
+select[multiple].input-group-sm > .input-group-btn > .btn {
+  height: auto;
+}
+.input-group-addon,
+.input-group-btn,
+.input-group .form-control {
+  display: table-cell;
+}
+.input-group-addon:not(:first-child):not(:last-child),
+.input-group-btn:not(:first-child):not(:last-child),
+.input-group .form-control:not(:first-child):not(:last-child) {
+  border-radius: 0;
+}
+.input-group-addon,
+.input-group-btn {
+  width: 1%;
+  white-space: nowrap;
+  vertical-align: middle;
+}
+.input-group-addon {
+  padding: 2px 6px;
+  font-size: 12px;
+  font-weight: normal;
+  line-height: 1;
+  color: #363636;
+  text-align: center;
+  background-color: #f1f1f1;
+  border: 1px solid #bbb;
+  border-radius: 1px;
+}
+.input-group-addon.input-sm {
+  padding: 2px 6px;
+  font-size: 11px;
+  border-radius: 1px;
+}
+.input-group-addon.input-lg {
+  padding: 6px 10px;
+  font-size: 14px;
+  border-radius: 1px;
+}
+.input-group-addon input[type="radio"],
+.input-group-addon input[type="checkbox"] {
+  margin-top: 0;
+}
+.input-group .form-control:first-child,
+.input-group-addon:first-child,
+.input-group-btn:first-child > .btn,
+.input-group-btn:first-child > .btn-group > .btn,
+.input-group-btn:first-child > .dropdown-toggle,
+.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
+.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
+  border-bottom-right-radius: 0;
+  border-top-right-radius: 0;
+}
+.input-group-addon:first-child {
+  border-right: 0;
+}
+.input-group .form-control:last-child,
+.input-group-addon:last-child,
+.input-group-btn:last-child > .btn,
+.input-group-btn:last-child > .btn-group > .btn,
+.input-group-btn:last-child > .dropdown-toggle,
+.input-group-btn:first-child > .btn:not(:first-child),
+.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
+  border-bottom-left-radius: 0;
+  border-top-left-radius: 0;
+}
+.input-group-addon:last-child {
+  border-left: 0;
+}
+.input-group-btn {
+  position: relative;
+  font-size: 0;
+  white-space: nowrap;
+}
+.input-group-btn > .btn {
+  position: relative;
+}
+.input-group-btn > .btn + .btn {
+  margin-left: -1px;
+}
+.input-group-btn > .btn:hover,
+.input-group-btn > .btn:focus,
+.input-group-btn > .btn:active {
+  z-index: 2;
+}
+.input-group-btn:first-child > .btn,
+.input-group-btn:first-child > .btn-group {
+  margin-right: -1px;
+}
+.input-group-btn:last-child > .btn,
+.input-group-btn:last-child > .btn-group {
+  z-index: 2;
+  margin-left: -1px;
+}
+.nav {
+  margin-bottom: 0;
+  padding-left: 0;
+  list-style: none;
+}
+.nav > li {
+  position: relative;
+  display: block;
+}
+.nav > li > a {
+  position: relative;
+  display: block;
+  padding: 10px 15px;
+}
+.nav > li > a:hover,
+.nav > li > a:focus {
+  text-decoration: none;
+  background-color: #f1f1f1;
+}
+.nav > li.disabled > a {
+  color: #9c9c9c;
+}
+.nav > li.disabled > a:hover,
+.nav > li.disabled > a:focus {
+  color: #9c9c9c;
+  text-decoration: none;
+  background-color: transparent;
+  cursor: not-allowed;
+}
+.nav .open > a,
+.nav .open > a:hover,
+.nav .open > a:focus {
+  background-color: #f1f1f1;
+  border-color: #0088ce;
+}
+.nav .nav-divider {
+  margin: 9px 0;
+  background-color: #e5e5e5;
+  background-color: #ededed;
+  height: 1px;
+  margin: 4px 1px;
+  overflow: hidden;
+}
+.nav > li > a > img {
+  max-width: none;
+}
+.nav-tabs {
+  border-bottom: 1px solid #ededed;
+}
+.nav-tabs > li {
+  float: left;
+  margin-bottom: -1px;
+}
+.nav-tabs > li > a {
+  margin-right: 2px;
+  line-height: 1.66666667;
+  border: 1px solid transparent;
+  border-radius: 1px 1px 0 0;
+}
+.nav-tabs > li > a:hover {
+  border-color: transparent transparent #ededed;
+}
+.nav-tabs > li.active > a,
+.nav-tabs > li.active > a:hover,
+.nav-tabs > li.active > a:focus {
+  color: #0088ce;
+  background-color: #fff;
+  border: 1px solid #ddd;
+  border-bottom-color: transparent;
+  cursor: default;
+}
+.nav-tabs.nav-justified {
+  width: 100%;
+  border-bottom: 0;
+}
+.nav-tabs.nav-justified > li {
+  float: none;
+}
+.nav-tabs.nav-justified > li > a {
+  text-align: center;
+  margin-bottom: 5px;
+}
+.nav-tabs.nav-justified > .dropdown .dropdown-menu {
+  top: auto;
+  left: auto;
+}
+@media (min-width: 768px) {
+  .nav-tabs.nav-justified > li {
+    display: table-cell;
+    width: 1%;
+  }
+  .nav-tabs.nav-justified > li > a {
+    margin-bottom: 0;
+  }
+}
+.nav-tabs.nav-justified > li > a {
+  margin-right: 0;
+  border-radius: 1px;
+}
+.nav-tabs.nav-justified > .active > a,
+.nav-tabs.nav-justified > .active > a:hover,
+.nav-tabs.nav-justified > .active > a:focus {
+  border: 1px solid #ededed;
+}
+@media (min-width: 768px) {
+  .nav-tabs.nav-justified > li > a {
+    border-bottom: 1px solid #ededed;
+    border-radius: 1px 1px 0 0;
+  }
+  .nav-tabs.nav-justified > .active > a,
+  .nav-tabs.nav-justified > .active > a:hover,
+  .nav-tabs.nav-justified > .active > a:focus {
+    border-bottom-color: #fff;
+  }
+}
+.nav-pills > li {
+  float: left;
+}
+.nav-pills > li > a {
+  border-radius: 1px;
+}
+.nav-pills > li + li {
+  margin-left: 2px;
+}
+.nav-pills > li.active > a,
+.nav-pills > li.active > a:hover,
+.nav-pills > li.active > a:focus {
+  color: #fff;
+  background-color: #39a5dc;
+}
+.nav-stacked > li {
+  float: none;
+}
+.nav-stacked > li + li {
+  margin-top: 2px;
+  margin-left: 0;
+}
+.nav-justified {
+  width: 100%;
+}
+.nav-justified > li {
+  float: none;
+}
+.nav-justified > li > a {
+  text-align: center;
+  margin-bottom: 5px;
+}
+.nav-justified > .dropdown .dropdown-menu {
+  top: auto;
+  left: auto;
+}
+@media (min-width: 768px) {
+  .nav-justified > li {
+    display: table-cell;
+    width: 1%;
+  }
+  .nav-justified > li > a {
+    margin-bottom: 0;
+  }
+}
+.nav-tabs-justified {
+  border-bottom: 0;
+}
+.nav-tabs-justified > li > a {
+  margin-right: 0;
+  border-radius: 1px;
+}
+.nav-tabs-justified > .active > a,
+.nav-tabs-justified > .active > a:hover,
+.nav-tabs-justified > .active > a:focus {
+  border: 1px solid #ededed;
+}
+@media (min-width: 768px) {
+  .nav-tabs-justified > li > a {
+    border-bottom: 1px solid #ededed;
+    border-radius: 1px 1px 0 0;
+  }
+  .nav-tabs-justified > .active > a,
+  .nav-tabs-justified > .active > a:hover,
+  .nav-tabs-justified > .active > a:focus {
+    border-bottom-color: #fff;
+  }
+}
+.tab-content > .tab-pane {
+  display: none;
+}
+.tab-content > .active {
+  display: block;
+}
+.nav-tabs .dropdown-menu {
+  margin-top: -1px;
+  border-top-right-radius: 0;
+  border-top-left-radius: 0;
+}
+.navbar {
+  position: relative;
+  min-height: 50px;
+  margin-bottom: 20px;
+  border: 1px solid transparent;
+}
+@media (min-width: 768px) {
+  .navbar {
+    border-radius: 1px;
+  }
+}
+@media (min-width: 768px) {
+  .navbar-header {
+    float: left;
+  }
+}
+.navbar-collapse {
+  overflow-x: visible;
+  padding-right: 20px;
+  padding-left: 20px;
+  border-top: 1px solid transparent;
+  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
+  -webkit-overflow-scrolling: touch;
+}
+.navbar-collapse.in {
+  overflow-y: auto;
+}
+@media (min-width: 768px) {
+  .navbar-collapse {
+    width: auto;
+    border-top: 0;
+    box-shadow: none;
+  }
+  .navbar-collapse.collapse {
+    display: block !important;
+    height: auto !important;
+    padding-bottom: 0;
+    overflow: visible !important;
+  }
+  .navbar-collapse.in {
+    overflow-y: visible;
+  }
+  .navbar-fixed-top .navbar-collapse,
+  .navbar-static-top .navbar-collapse,
+  .navbar-fixed-bottom .navbar-collapse {
+    padding-left: 0;
+    padding-right: 0;
+  }
+}
+.navbar-fixed-top .navbar-collapse,
+.navbar-fixed-bottom .navbar-collapse {
+  max-height: 340px;
+}
+@media (max-device-width: 480px) and (orientation: landscape) {
+  .navbar-fixed-top .navbar-collapse,
+  .navbar-fixed-bottom .navbar-collapse {
+    max-height: 200px;
+  }
+}
+.container > .navbar-header,
+.container-fluid > .navbar-header,
+.container > .navbar-collapse,
+.container-fluid > .navbar-collapse {
+  margin-right: -20px;
+  margin-left: -20px;
+}
+@media (min-width: 768px) {
+  .container > .navbar-header,
+  .container-fluid > .navbar-header,
+  .container > .navbar-collapse,
+  .container-fluid > .navbar-collapse {
+    margin-right: 0;
+    margin-left: 0;
+  }
+}
+.navbar-static-top {
+  z-index: 1000;
+  border-width: 0 0 1px;
+}
+@media (min-width: 768px) {
+  .navbar-static-top {
+    border-radius: 0;
+  }
+}
+.navbar-fixed-top,
+.navbar-fixed-bottom {
+  position: fixed;
+  right: 0;
+  left: 0;
+  z-index: 1030;
+}
+@media (min-width: 768px) {
+  .navbar-fixed-top,
+  .navbar-fixed-bottom {
+    border-radius: 0;
+  }
+}
+.navbar-fixed-top {
+  top: 0;
+  border-width: 0 0 1px;
+}
+.navbar-fixed-bottom {
+  bottom: 0;
+  margin-bottom: 0;
+  border-width: 1px 0 0;
+}
+.navbar-brand {
+  float: left;
+  padding: 15px 20px;
+  font-size: 14px;
+  line-height: 20px;
+  height: 50px;
+}
+.navbar-brand:hover,
+.navbar-brand:focus {
+  text-decoration: none;
+}
+.navbar-brand > img {
+  display: block;
+}
+@media (min-width: 768px) {
+  .navbar > .container .navbar-brand,
+  .navbar > .container-fluid .navbar-brand {
+    margin-left: -20px;
+  }
+}
+.navbar-toggle {
+  position: relative;
+  float: right;
+  margin-right: 20px;
+  padding: 9px 10px;
+  margin-top: 8px;
+  margin-bottom: 8px;
+  background-color: transparent;
+  background-image: none;
+  border: 1px solid transparent;
+  border-radius: 1px;
+}
+.navbar-toggle:focus {
+  outline: 0;
+}
+.navbar-toggle .icon-bar {
+  display: block;
+  width: 22px;
+  height: 2px;
+  border-radius: 1px;
+}
+.navbar-toggle .icon-bar + .icon-bar {
+  margin-top: 4px;
+}
+@media (min-width: 768px) {
+  .navbar-toggle {
+    display: none;
+  }
+}
+.navbar-nav {
+  margin: 7.5px -20px;
+}
+.navbar-nav > li > a {
+  padding-top: 10px;
+  padding-bottom: 10px;
+  line-height: 20px;
+}
+@media (max-width: 767px) {
+  .navbar-nav .open .dropdown-menu {
+    position: static;
+    float: none;
+    width: auto;
+    margin-top: 0;
+    background-color: transparent;
+    border: 0;
+    box-shadow: none;
+  }
+  .navbar-nav .open .dropdown-menu > li > a,
+  .navbar-nav .open .dropdown-menu .dropdown-header {
+    padding: 5px 15px 5px 25px;
+  }
+  .navbar-nav .open .dropdown-menu > li > a {
+    line-height: 20px;
+  }
+  .navbar-nav .open .dropdown-menu > li > a:hover,
+  .navbar-nav .open .dropdown-menu > li > a:focus {
+    background-image: none;
+  }
+}
+@media (min-width: 768px) {
+  .navbar-nav {
+    float: left;
+    margin: 0;
+  }
+  .navbar-nav > li {
+    float: left;
+  }
+  .navbar-nav > li > a {
+    padding-top: 15px;
+    padding-bottom: 15px;
+  }
+}
+.navbar-form {
+  margin-left: -20px;
+  margin-right: -20px;
+  padding: 10px 20px;
+  border-top: 1px solid transparent;
+  border-bottom: 1px solid transparent;
+  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+  margin-top: 12px;
+  margin-bottom: 12px;
+}
+@media (min-width: 768px) {
+  .navbar-form .form-group {
+    display: inline-block;
+    margin-bottom: 0;
+    vertical-align: middle;
+  }
+  .navbar-form .form-control {
+    display: inline-block;
+    width: auto;
+    vertical-align: middle;
+  }
+  .navbar-form .form-control-static {
+    display: inline-block;
+  }
+  .navbar-form .input-group {
+    display: inline-table;
+    vertical-align: middle;
+  }
+  .navbar-form .input-group .input-group-addon,
+  .navbar-form .input-group .input-group-btn,
+  .navbar-form .input-group .form-control {
+    width: auto;
+  }
+  .navbar-form .input-group > .form-control {
+    width: 100%;
+  }
+  .navbar-form .control-label {
+    margin-bottom: 0;
+    vertical-align: middle;
+  }
+  .navbar-form .radio,
+  .navbar-form .checkbox {
+    display: inline-block;
+    margin-top: 0;
+    margin-bottom: 0;
+    vertical-align: middle;
+  }
+  .navbar-form .radio label,
+  .navbar-form .checkbox label {
+    padding-left: 0;
+  }
+  .navbar-form .radio input[type="radio"],
+  .navbar-form .checkbox input[type="checkbox"] {
+    position: relative;
+    margin-left: 0;
+  }
+  .navbar-form .has-feedback .form-control-feedback {
+    top: 0;
+  }
+}
+@media (max-width: 767px) {
+  .navbar-form .form-group {
+    margin-bottom: 5px;
+  }
+  .navbar-form .form-group:last-child {
+    margin-bottom: 0;
+  }
+}
+@media (min-width: 768px) {
+  .navbar-form {
+    width: auto;
+    border: 0;
+    margin-left: 0;
+    margin-right: 0;
+    padding-top: 0;
+    padding-bottom: 0;
+    -webkit-box-shadow: none;
+    box-shadow: none;
+  }
+}
+.navbar-nav > li > .dropdown-menu {
+  margin-top: 0;
+  border-top-right-radius: 0;
+  border-top-left-radius: 0;
+}
+.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
+  margin-bottom: 0;
+  border-top-right-radius: 1px;
+  border-top-left-radius: 1px;
+  border-bottom-right-radius: 0;
+  border-bottom-left-radius: 0;
+}
+.navbar-btn {
+  margin-top: 12px;
+  margin-bottom: 12px;
+}
+.navbar-btn.btn-sm {
+  margin-top: 14px;
+  margin-bottom: 14px;
+}
+.navbar-btn.btn-xs {
+  margin-top: 14px;
+  margin-bottom: 14px;
+}
+.navbar-text {
+  margin-top: 15px;
+  margin-bottom: 15px;
+}
+@media (min-width: 768px) {
+  .navbar-text {
+    float: left;
+    margin-left: 20px;
+    margin-right: 20px;
+  }
+}
+@media (min-width: 768px) {
+  .navbar-left {
+    float: left !important;
+    float: left;
+  }
+  .navbar-right {
+    float: right !important;
+    float: right;
+    margin-right: -20px;
+  }
+  .navbar-right ~ .navbar-right {
+    margin-right: 0;
+  }
+}
+.navbar-default {
+  background-color: #f8f8f8;
+  border-color: #e7e7e7;
+}
+.navbar-default .navbar-brand {
+  color: #777;
+}
+.navbar-default .navbar-brand:hover,
+.navbar-default .navbar-brand:focus {
+  color: #5e5e5e;
+  background-color: transparent;
+}
+.navbar-default .navbar-text {
+  color: #777;
+}
+.navbar-default .navbar-nav > li > a {
+  color: #777;
+}
+.navbar-default .navbar-nav > li > a:hover,
+.navbar-default .navbar-nav > li > a:focus {
+  color: #333;
+  background-color: transparent;
+}
+.navbar-default .navbar-nav > .active > a,
+.navbar-default .navbar-nav > .active > a:hover,
+.navbar-default .navbar-nav > .active > a:focus {
+  color: #555;
+  background-color: #e7e7e7;
+}
+.navbar-default .navbar-nav > .disabled > a,
+.navbar-default .navbar-nav > .disabled > a:hover,
+.navbar-default .navbar-nav > .disabled > a:focus {
+  color: #ccc;
+  background-color: transparent;
+}
+.navbar-default .navbar-toggle {
+  border-color: #ddd;
+}
+.navbar-default .navbar-toggle:hover,
+.navbar-default .navbar-toggle:focus {
+  background-color: #ddd;
+}
+.navbar-default .navbar-toggle .icon-bar {
+  background-color: #888;
+}
+.navbar-default .navbar-collapse,
+.navbar-default .navbar-form {
+  border-color: #e7e7e7;
+}
+.navbar-default .navbar-nav > .open > a,
+.navbar-default .navbar-nav > .open > a:hover,
+.navbar-default .navbar-nav > .open > a:focus {
+  background-color: #e7e7e7;
+  color: #555;
+}
+@media (max-width: 767px) {
+  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
+    color: #777;
+  }
+  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
+  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
+    color: #333;
+    background-color: transparent;
+  }
+  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
+  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
+  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
+    color: #555;
+    background-color: #e7e7e7;
+  }
+  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
+  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
+  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
+    color: #ccc;
+    background-color: transparent;
+  }
+}
+.navbar-default .navbar-link {
+  color: #777;
+}
+.navbar-default .navbar-link:hover {
+  color: #333;
+}
+.navbar-default .btn-link {
+  color: #777;
+}
+.navbar-default .btn-link:hover,
+.navbar-default .btn-link:focus {
+  color: #333;
+}
+.navbar-default .btn-link[disabled]:hover,
+fieldset[disabled] .navbar-default .btn-link:hover,
+.navbar-default .btn-link[disabled]:focus,
+fieldset[disabled] .navbar-default .btn-link:focus {
+  color: #ccc;
+}
+.navbar-inverse {
+  background-color: #222;
+  border-color: #080808;
+}
+.navbar-inverse .navbar-brand {
+  color: #c2c2c2;
+}
+.navbar-inverse .navbar-brand:hover,
+.navbar-inverse .navbar-brand:focus {
+  color: #fff;
+  background-color: transparent;
+}
+.navbar-inverse .navbar-text {
+  color: #c2c2c2;
+}
+.navbar-inverse .navbar-nav > li > a {
+  color: #c2c2c2;
+}
+.navbar-inverse .navbar-nav > li > a:hover,
+.navbar-inverse .navbar-nav > li > a:focus {
+  color: #fff;
+  background-color: transparent;
+}
+.navbar-inverse .navbar-nav > .active > a,
+.navbar-inverse .navbar-nav > .active > a:hover,
+.navbar-inverse .navbar-nav > .active > a:focus {
+  color: #fff;
+  background-color: #080808;
+}
+.navbar-inverse .navbar-nav > .disabled > a,
+.navbar-inverse .navbar-nav > .disabled > a:hover,
+.navbar-inverse .navbar-nav > .disabled > a:focus {
+  color: #444;
+  background-color: transparent;
+}
+.navbar-inverse .navbar-toggle {
+  border-color: #333;
+}
+.navbar-inverse .navbar-toggle:hover,
+.navbar-inverse .navbar-toggle:focus {
+  background-color: #333;
+}
+.navbar-inverse .navbar-toggle .icon-bar {
+  background-color: #fff;
+}
+.navbar-inverse .navbar-collapse,
+.navbar-inverse .navbar-form {
+  border-color: #101010;
+}
+.navbar-inverse .navbar-nav > .open > a,
+.navbar-inverse .navbar-nav > .open > a:hover,
+.navbar-inverse .navbar-nav > .open > a:focus {
+  background-color: #080808;
+  color: #fff;
+}
+@media (max-width: 767px) {
+  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
+    border-color: #080808;
+  }
+  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
+    background-color: #080808;
+  }
+  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
+    color: #c2c2c2;
+  }
+  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
+  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
+    color: #fff;
+    background-color: transparent;
+  }
+  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
+  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
+  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
+    color: #fff;
+    background-color: #080808;
+  }
+  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
+  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
+  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
+    color: #444;
+    background-color: transparent;
+  }
+}
+.navbar-inverse .navbar-link {
+  color: #c2c2c2;
+}
+.navbar-inverse .navbar-link:hover {
+  color: #fff;
+}
+.navbar-inverse .btn-link {
+  color: #c2c2c2;
+}
+.navbar-inverse .btn-link:hover,
+.navbar-inverse .btn-link:focus {
+  color: #fff;
+}
+.navbar-inverse .btn-link[disabled]:hover,
+fieldset[disabled] .navbar-inverse .btn-link:hover,
+.navbar-inverse .btn-link[disabled]:focus,
+fieldset[disabled] .navbar-inverse .btn-link:focus {
+  color: #444;
+}
+.breadcrumb {
+  padding: 8px 15px;
+  margin-bottom: 20px;
+  list-style: none;
+  background-color: transparent;
+  border-radius: 1px;
+}
+.breadcrumb > li {
+  display: inline-block;
+}
+.breadcrumb > li + li:before {
+  content: "\f105\00a0";
+  padding: 0 5px;
+  color: #4d5258;
+}
+.breadcrumb > .active {
+  color: #4d5258;
+}
+.pagination {
+  display: inline-block;
+  padding-left: 0;
+  margin: 20px 0;
+  border-radius: 1px;
+}
+.pagination > li {
+  display: inline;
+}
+.pagination > li > a,
+.pagination > li > span {
+  position: relative;
+  float: left;
+  padding: 2px 6px;
+  line-height: 1.66666667;
+  text-decoration: none;
+  color: #0088ce;
+  background-color: #f5f5f5;
+  border: 1px solid #bbb;
+  margin-left: -1px;
+}
+.pagination > li:first-child > a,
+.pagination > li:first-child > span {
+  margin-left: 0;
+  border-bottom-left-radius: 1px;
+  border-top-left-radius: 1px;
+}
+.pagination > li:last-child > a,
+.pagination > li:last-child > span {
+  border-bottom-right-radius: 1px;
+  border-top-right-radius: 1px;
+}
+.pagination > li > a:hover,
+.pagination > li > span:hover,
+.pagination > li > a:focus,
+.pagination > li > span:focus {
+  z-index: 2;
+  color: #00659c;
+  background-color: #ededed;
+  border-color: #ddd;
+}
+.pagination > .active > a,
+.pagination > .active > span,
+.pagination > .active > a:hover,
+.pagination > .active > span:hover,
+.pagination > .active > a:focus,
+.pagination > .active > span:focus {
+  z-index: 3;
+  color: #fff;
+  background-color: #39a5dc;
+  border-color: #39a5dc;
+  cursor: default;
+}
+.pagination > .disabled > span,
+.pagination > .disabled > span:hover,
+.pagination > .disabled > span:focus,
+.pagination > .disabled > a,
+.pagination > .disabled > a:hover,
+.pagination > .disabled > a:focus {
+  color: #9c9c9c;
+  background-color: #fff;
+  border-color: #ddd;
+  cursor: not-allowed;
+}
+.pagination-lg > li > a,
+.pagination-lg > li > span {
+  padding: 6px 10px;
+  font-size: 14px;
+  line-height: 1.3333333;
+}
+.pagination-lg > li:first-child > a,
+.pagination-lg > li:first-child > span {
+  border-bottom-left-radius: 1px;
+  border-top-left-radius: 1px;
+}
+.pagination-lg > li:last-child > a,
+.pagination-lg > li:last-child > span {
+  border-bottom-right-radius: 1px;
+  border-top-right-radius: 1px;
+}
+.pagination-sm > li > a,
+.pagination-sm > li > span {
+  padding: 2px 6px;
+  font-size: 11px;
+  line-height: 1.5;
+}
+.pagination-sm > li:first-child > a,
+.pagination-sm > li:first-child > span {
+  border-bottom-left-radius: 1px;
+  border-top-left-radius: 1px;
+}
+.pagination-sm > li:last-child > a,
+.pagination-sm > li:last-child > span {
+  border-bottom-right-radius: 1px;
+  border-top-right-radius: 1px;
+}
+.pager {
+  padding-left: 0;
+  margin: 20px 0;
+  list-style: none;
+  text-align: center;
+}
+.pager li {
+  display: inline;
+}
+.pager li > a,
+.pager li > span {
+  display: inline-block;
+  padding: 5px 14px;
+  background-color: #f5f5f5;
+  border: 1px solid #bbb;
+  border-radius: 0;
+}
+.pager li > a:hover,
+.pager li > a:focus {
+  text-decoration: none;
+  background-color: #ededed;
+}
+.pager .next > a,
+.pager .next > span {
+  float: right;
+}
+.pager .previous > a,
+.pager .previous > span {
+  float: left;
+}
+.pager .disabled > a,
+.pager .disabled > a:hover,
+.pager .disabled > a:focus,
+.pager .disabled > span {
+  color: #8b8d8f;
+  background-color: #f5f5f5;
+  cursor: not-allowed;
+}
+.label {
+  display: inline;
+  padding: .2em .6em .3em;
+  font-size: 75%;
+  font-weight: bold;
+  line-height: 1;
+  color: #fff;
+  text-align: center;
+  white-space: nowrap;
+  vertical-align: baseline;
+  border-radius: .25em;
+}
+a.label:hover,
+a.label:focus {
+  color: #fff;
+  text-decoration: none;
+  cursor: pointer;
+}
+.label:empty {
+  display: none;
+}
+.btn .label {
+  position: relative;
+  top: -1px;
+}
+.label-default {
+  background-color: #9c9c9c;
+}
+.label-default[href]:hover,
+.label-default[href]:focus {
+  background-color: #838383;
+}
+.label-primary {
+  background-color: #39a5dc;
+}
+.label-primary[href]:hover,
+.label-primary[href]:focus {
+  background-color: #228bc0;
+}
+.label-success {
+  background-color: #3f9c35;
+}
+.label-success[href]:hover,
+.label-success[href]:focus {
+  background-color: #307628;
+}
+.label-info {
+  background-color: #00659c;
+}
+.label-info[href]:hover,
+.label-info[href]:focus {
+  background-color: #004469;
+}
+.label-warning {
+  background-color: #ec7a08;
+}
+.label-warning[href]:hover,
+.label-warning[href]:focus {
+  background-color: #bb6106;
+}
+.label-danger {
+  background-color: #cc0000;
+}
+.label-danger[href]:hover,
+.label-danger[href]:focus {
+  background-color: #990000;
+}
+.badge {
+  display: inline-block;
+  min-width: 10px;
+  padding: 3px 7px;
+  font-size: 11px;
+  font-weight: bold;
+  color: #fff;
+  line-height: 1;
+  vertical-align: middle;
+  white-space: nowrap;
+  text-align: center;
+  background-color: #9c9c9c;
+  border-radius: 1px;
+}
+.badge:empty {
+  display: none;
+}
+.btn .badge {
+  position: relative;
+  top: -1px;
+}
+.btn-xs .badge,
+.btn-group-xs > .btn .badge {
+  top: 0;
+  padding: 1px 5px;
+}
+a.badge:hover,
+a.badge:focus {
+  color: #fff;
+  text-decoration: none;
+  cursor: pointer;
+}
+.list-group-item.active > .badge,
+.nav-pills > .active > a > .badge {
+  color: #0088ce;
+  background-color: #fff;
+}
+.list-group-item > .badge {
+  float: right;
+}
+.list-group-item > .badge + .badge {
+  margin-right: 5px;
+}
+.nav-pills > li > a > .badge {
+  margin-left: 3px;
+}
+.jumbotron {
+  padding-top: 30px;
+  padding-bottom: 30px;
+  margin-bottom: 30px;
+  color: inherit;
+  background-color: #f1f1f1;
+}
+.jumbotron h1,
+.jumbotron .h1 {
+  color: inherit;
+}
+.jumbotron p {
+  margin-bottom: 15px;
+  font-size: 18px;
+  font-weight: 200;
+}
+.jumbotron > hr {
+  border-top-color: #d8d8d8;
+}
+.container .jumbotron,
+.container-fluid .jumbotron {
+  border-radius: 1px;
+  padding-left: 20px;
+  padding-right: 20px;
+}
+.jumbotron .container {
+  max-width: 100%;
+}
+@media screen and (min-width: 768px) {
+  .jumbotron {
+    padding-top: 48px;
+    padding-bottom: 48px;
+  }
+  .container .jumbotron,
+  .container-fluid .jumbotron {
+    padding-left: 60px;
+    padding-right: 60px;
+  }
+  .jumbotron h1,
+  .jumbotron .h1 {
+    font-size: 54px;
+  }
+}
+.thumbnail {
+  display: block;
+  padding: 4px;
+  margin-bottom: 20px;
+  line-height: 1.66666667;
+  background-color: #fff;
+  border: 1px solid #ddd;
+  border-radius: 1px;
+  -webkit-transition: border 0.2s ease-in-out;
+  -o-transition: border 0.2s ease-in-out;
+  transition: border 0.2s ease-in-out;
+}
+.thumbnail > img,
+.thumbnail a > img {
+  margin-left: auto;
+  margin-right: auto;
+}
+a.thumbnail:hover,
+a.thumbnail:focus,
+a.thumbnail.active {
+  border-color: #0088ce;
+}
+.thumbnail .caption {
+  padding: 9px;
+  color: #363636;
+}
+.alert {
+  padding: 11px;
+  margin-bottom: 20px;
+  border: 1px solid transparent;
+  border-radius: 1px;
+}
+.alert h4 {
+  margin-top: 0;
+  color: inherit;
+}
+.alert .alert-link {
+  font-weight: 500;
+}
+.alert > p,
+.alert > ul {
+  margin-bottom: 0;
+}
+.alert > p + p {
+  margin-top: 5px;
+}
+.alert-dismissable,
+.alert-dismissible {
+  padding-right: 31px;
+}
+.alert-dismissable .close,
+.alert-dismissible .close {
+  position: relative;
+  top: -2px;
+  right: -21px;
+  color: inherit;
+}
+.alert-success {
+  background-color: #e9f4e9;
+  border-color: #3f9c35;
+  color: #363636;
+}
+.alert-success hr {
+  border-top-color: #37892f;
+}
+.alert-success .alert-link {
+  color: #1d1d1d;
+}
+.alert-info {
+  background-color: #f5f5f5;
+  border-color: #8b8d8f;
+  color: #363636;
+}
+.alert-info hr {
+  border-top-color: #7e8082;
+}
+.alert-info .alert-link {
+  color: #1d1d1d;
+}
+.alert-warning {
+  background-color: #fdf2e5;
+  border-color: #ec7a08;
+  color: #363636;
+}
+.alert-warning hr {
+  border-top-color: #d36d07;
+}
+.alert-warning .alert-link {
+  color: #1d1d1d;
+}
+.alert-danger {
+  background-color: #ffe6e6;
+  border-color: #cc0000;
+  color: #363636;
+}
+.alert-danger hr {
+  border-top-color: #b30000;
+}
+.alert-danger .alert-link {
+  color: #1d1d1d;
+}
+@-webkit-keyframes progress-bar-stripes {
+  from {
+    background-position: 40px 0;
+  }
+  to {
+    background-position: 0 0;
+  }
+}
+@keyframes progress-bar-stripes {
+  from {
+    background-position: 40px 0;
+  }
+  to {
+    background-position: 0 0;
+  }
+}
+.progress {
+  overflow: hidden;
+  height: 20px;
+  margin-bottom: 20px;
+  background-color: #ededed;
+  border-radius: 1px;
+  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+}
+.progress-bar {
+  float: left;
+  width: 0%;
+  height: 100%;
+  font-size: 11px;
+  line-height: 20px;
+  color: #fff;
+  text-align: center;
+  background-color: #39a5dc;
+  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+  -webkit-transition: width 0.6s ease;
+  -o-transition: width 0.6s ease;
+  transition: width 0.6s ease;
+}
+.progress-striped .progress-bar,
+.progress-bar-striped {
+  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(-45deg, rgba(3, 3, 3, 0.15) 25%, rgba(3, 3, 3, 0.15) 26%, transparent 27%, transparent 49%, rgba(3, 3, 3, 0.15) 50%, rgba(3, 3, 3, 0.15) 51%, transparent 52%, transparent 74%, rgba(3, 3, 3, 0.15) 75%, rgba(3, 3, 3, 0.15) 76%, transparent 77%);
+  background-size: 40px 40px;
+}
+.progress.active .progress-bar,
+.progress-bar.active {
+  -webkit-animation: progress-bar-stripes 2s linear infinite;
+  -o-animation: progress-bar-stripes 2s linear infinite;
+  animation: progress-bar-stripes 2s linear infinite;
+}
+.progress-bar-success {
+  background-color: #3f9c35;
+}
+.progress-striped .progress-bar-success {
+  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(-45deg, rgba(3, 3, 3, 0.15) 25%, rgba(3, 3, 3, 0.15) 26%, transparent 27%, transparent 49%, rgba(3, 3, 3, 0.15) 50%, rgba(3, 3, 3, 0.15) 51%, transparent 52%, transparent 74%, rgba(3, 3, 3, 0.15) 75%, rgba(3, 3, 3, 0.15) 76%, transparent 77%);
+}
+.progress-bar-info {
+  background-color: #00659c;
+}
+.progress-striped .progress-bar-info {
+  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(-45deg, rgba(3, 3, 3, 0.15) 25%, rgba(3, 3, 3, 0.15) 26%, transparent 27%, transparent 49%, rgba(3, 3, 3, 0.15) 50%, rgba(3, 3, 3, 0.15) 51%, transparent 52%, transparent 74%, rgba(3, 3, 3, 0.15) 75%, rgba(3, 3, 3, 0.15) 76%, transparent 77%);
+}
+.progress-bar-warning {
+  background-color: #ec7a08;
+}
+.progress-striped .progress-bar-warning {
+  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(-45deg, rgba(3, 3, 3, 0.15) 25%, rgba(3, 3, 3, 0.15) 26%, transparent 27%, transparent 49%, rgba(3, 3, 3, 0.15) 50%, rgba(3, 3, 3, 0.15) 51%, transparent 52%, transparent 74%, rgba(3, 3, 3, 0.15) 75%, rgba(3, 3, 3, 0.15) 76%, transparent 77%);
+}
+.progress-bar-danger {
+  background-color: #cc0000;
+}
+.progress-striped .progress-bar-danger {
+  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(-45deg, rgba(3, 3, 3, 0.15) 25%, rgba(3, 3, 3, 0.15) 26%, transparent 27%, transparent 49%, rgba(3, 3, 3, 0.15) 50%, rgba(3, 3, 3, 0.15) 51%, transparent 52%, transparent 74%, rgba(3, 3, 3, 0.15) 75%, rgba(3, 3, 3, 0.15) 76%, transparent 77%);
+}
+.media {
+  margin-top: 15px;
+}
+.media:first-child {
+  margin-top: 0;
+}
+.media,
+.media-body {
+  zoom: 1;
+  overflow: hidden;
+}
+.media-body {
+  width: 10000px;
+}
+.media-object {
+  display: block;
+}
+.media-object.img-thumbnail {
+  max-width: none;
+}
+.media-right,
+.media > .pull-right {
+  padding-left: 10px;
+}
+.media-left,
+.media > .pull-left {
+  padding-right: 10px;
+}
+.media-left,
+.media-right,
+.media-body {
+  display: table-cell;
+  vertical-align: top;
+}
+.media-middle {
+  vertical-align: middle;
+}
+.media-bottom {
+  vertical-align: bottom;
+}
+.media-heading {
+  margin-top: 0;
+  margin-bottom: 5px;
+}
+.media-list {
+  padding-left: 0;
+  list-style: none;
+}
+.list-group {
+  margin-bottom: 20px;
+  padding-left: 0;
+}
+.list-group-item {
+  position: relative;
+  display: block;
+  padding: 10px 15px;
+  margin-bottom: -1px;
+  background-color: #fff;
+  border: 1px solid #f5f5f5;
+}
+.list-group-item:first-child {
+  border-top-right-radius: 0;
+  border-top-left-radius: 0;
+}
+.list-group-item:last-child {
+  margin-bottom: 0;
+  border-bottom-right-radius: 0;
+  border-bottom-left-radius: 0;
+}
+a.list-group-item,
+button.list-group-item {
+  color: #555;
+}
+a.list-group-item .list-group-item-heading,
+button.list-group-item .list-group-item-heading {
+  color: #333;
+}
+a.list-group-item:hover,
+button.list-group-item:hover,
+a.list-group-item:focus,
+button.list-group-item:focus {
+  text-decoration: none;
+  color: #555;
+  background-color: #def3ff;
+}
+button.list-group-item {
+  width: 100%;
+  text-align: left;
+}
+.list-group-item.disabled,
+.list-group-item.disabled:hover,
+.list-group-item.disabled:focus {
+  background-color: #f1f1f1;
+  color: #9c9c9c;
+  cursor: not-allowed;
+}
+.list-group-item.disabled .list-group-item-heading,
+.list-group-item.disabled:hover .list-group-item-heading,
+.list-group-item.disabled:focus .list-group-item-heading {
+  color: inherit;
+}
+.list-group-item.disabled .list-group-item-text,
+.list-group-item.disabled:hover .list-group-item-text,
+.list-group-item.disabled:focus .list-group-item-text {
+  color: #9c9c9c;
+}
+.list-group-item.active,
+.list-group-item.active:hover,
+.list-group-item.active:focus {
+  z-index: 2;
+  color: #fff;
+  background-color: #39a5dc;
+  border-color: #39a5dc;
+}
+.list-group-item.active .list-group-item-heading,
+.list-group-item.active:hover .list-group-item-heading,
+.list-group-item.active:focus .list-group-item-heading,
+.list-group-item.active .list-group-item-heading > small,
+.list-group-item.active:hover .list-group-item-heading > small,
+.list-group-item.active:focus .list-group-item-heading > small,
+.list-group-item.active .list-group-item-heading > .small,
+.list-group-item.active:hover .list-group-item-heading > .small,
+.list-group-item.active:focus .list-group-item-heading > .small {
+  color: inherit;
+}
+.list-group-item.active .list-group-item-text,
+.list-group-item.active:hover .list-group-item-text,
+.list-group-item.active:focus .list-group-item-text {
+  color: #e6f4fb;
+}
+.list-group-item-success {
+  color: #3c763d;
+  background-color: #dff0d8;
+}
+a.list-group-item-success,
+button.list-group-item-success {
+  color: #3c763d;
+}
+a.list-group-item-success .list-group-item-heading,
+button.list-group-item-success .list-group-item-heading {
+  color: inherit;
+}
+a.list-group-item-success:hover,
+button.list-group-item-success:hover,
+a.list-group-item-success:focus,
+button.list-group-item-success:focus {
+  color: #3c763d;
+  background-color: #d0e9c6;
+}
+a.list-group-item-success.active,
+button.list-group-item-success.active,
+a.list-group-item-success.active:hover,
+button.list-group-item-success.active:hover,
+a.list-group-item-success.active:focus,
+button.list-group-item-success.active:focus {
+  color: #fff;
+  background-color: #3c763d;
+  border-color: #3c763d;
+}
+.list-group-item-info {
+  color: #31708f;
+  background-color: #d9edf7;
+}
+a.list-group-item-info,
+button.list-group-item-info {
+  color: #31708f;
+}
+a.list-group-item-info .list-group-item-heading,
+button.list-group-item-info .list-group-item-heading {
+  color: inherit;
+}
+a.list-group-item-info:hover,
+button.list-group-item-info:hover,
+a.list-group-item-info:focus,
+button.list-group-item-info:focus {
+  color: #31708f;
+  background-color: #c4e3f3;
+}
+a.list-group-item-info.active,
+button.list-group-item-info.active,
+a.list-group-item-info.active:hover,
+button.list-group-item-info.active:hover,
+a.list-group-item-info.active:focus,
+button.list-group-item-info.active:focus {
+  color: #fff;
+  background-color: #31708f;
+  border-color: #31708f;
+}
+.list-group-item-warning {
+  color: #ec7a08;
+  background-color: #fcf8e3;
+}
+a.list-group-item-warning,
+button.list-group-item-warning {
+  color: #ec7a08;
+}
+a.list-group-item-warning .list-group-item-heading,
+button.list-group-item-warning .list-group-item-heading {
+  color: inherit;
+}
+a.list-group-item-warning:hover,
+button.list-group-item-warning:hover,
+a.list-group-item-warning:focus,
+button.list-group-item-warning:focus {
+  color: #ec7a08;
+  background-color: #faf2cc;
+}
+a.list-group-item-warning.active,
+button.list-group-item-warning.active,
+a.list-group-item-warning.active:hover,
+button.list-group-item-warning.active:hover,
+a.list-group-item-warning.active:focus,
+button.list-group-item-warning.active:focus {
+  color: #fff;
+  background-color: #ec7a08;
+  border-color: #ec7a08;
+}
+.list-group-item-danger {
+  color: #cc0000;
+  background-color: #f2dede;
+}
+a.list-group-item-danger,
+button.list-group-item-danger {
+  color: #cc0000;
+}
+a.list-group-item-danger .list-group-item-heading,
+button.list-group-item-danger .list-group-item-heading {
+  color: inherit;
+}
+a.list-group-item-danger:hover,
+button.list-group-item-danger:hover,
+a.list-group-item-danger:focus,
+button.list-group-item-danger:focus {
+  color: #cc0000;
+  background-color: #ebcccc;
+}
+a.list-group-item-danger.active,
+button.list-group-item-danger.active,
+a.list-group-item-danger.active:hover,
+button.list-group-item-danger.active:hover,
+a.list-group-item-danger.active:focus,
+button.list-group-item-danger.active:focus {
+  color: #fff;
+  background-color: #cc0000;
+  border-color: #cc0000;
+}
+.list-group-item-heading {
+  margin-top: 0;
+  margin-bottom: 5px;
+}
+.list-group-item-text {
+  margin-bottom: 0;
+  line-height: 1.3;
+}
+.panel {
+  margin-bottom: 20px;
+  background-color: #fff;
+  border: 1px solid transparent;
+  border-radius: 1px;
+  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
+  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
+}
+.panel-body {
+  padding: 15px;
+}
+.panel-heading {
+  padding: 10px 15px;
+  border-bottom: 1px solid transparent;
+  border-top-right-radius: 0px;
+  border-top-left-radius: 0px;
+}
+.panel-heading > .dropdown .dropdown-toggle {
+  color: inherit;
+}
+.panel-title {
+  margin-top: 0;
+  margin-bottom: 0;
+  font-size: 14px;
+  color: inherit;
+}
+.panel-title > a,
+.panel-title > small,
+.panel-title > .small,
+.panel-title > small > a,
+.panel-title > .small > a {
+  color: inherit;
+}
+.panel-footer {
+  padding: 10px 15px;
+  background-color: #f5f5f5;
+  border-top: 1px solid #d1d1d1;
+  border-bottom-right-radius: 0px;
+  border-bottom-left-radius: 0px;
+}
+.panel > .list-group,
+.panel > .panel-collapse > .list-group {
+  margin-bottom: 0;
+}
+.panel > .list-group .list-group-item,
+.panel > .panel-collapse > .list-group .list-group-item {
+  border-width: 1px 0;
+  border-radius: 0;
+}
+.panel > .list-group:first-child .list-group-item:first-child,
+.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
+  border-top: 0;
+  border-top-right-radius: 0px;
+  border-top-left-radius: 0px;
+}
+.panel > .list-group:last-child .list-group-item:last-child,
+.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
+  border-bottom: 0;
+  border-bottom-right-radius: 0px;
+  border-bottom-left-radius: 0px;
+}
+.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
+  border-top-right-radius: 0;
+  border-top-left-radius: 0;
+}
+.panel-heading + .list-group .list-group-item:first-child {
+  border-top-width: 0;
+}
+.list-group + .panel-footer {
+  border-top-width: 0;
+}
+.panel > .table,
+.panel > .table-responsive > .table,
+.panel > .panel-collapse > .table {
+  margin-bottom: 0;
+}
+.panel > .table caption,
+.panel > .table-responsive > .table caption,
+.panel > .panel-collapse > .table caption {
+  padding-left: 15px;
+  padding-right: 15px;
+}
+.panel > .table:first-child,
+.panel > .table-responsive:first-child > .table:first-child {
+  border-top-right-radius: 0px;
+  border-top-left-radius: 0px;
+}
+.panel > .table:first-child > thead:first-child > tr:first-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
+  border-top-left-radius: 0px;
+  border-top-right-radius: 0px;
+}
+.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
+.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
+  border-top-left-radius: 0px;
+}
+.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
+.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
+  border-top-right-radius: 0px;
+}
+.panel > .table:last-child,
+.panel > .table-responsive:last-child > .table:last-child {
+  border-bottom-right-radius: 0px;
+  border-bottom-left-radius: 0px;
+}
+.panel > .table:last-child > tbody:last-child > tr:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
+  border-bottom-left-radius: 0px;
+  border-bottom-right-radius: 0px;
+}
+.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
+.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
+  border-bottom-left-radius: 0px;
+}
+.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
+.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
+  border-bottom-right-radius: 0px;
+}
+.panel > .panel-body + .table,
+.panel > .panel-body + .table-responsive,
+.panel > .table + .panel-body,
+.panel > .table-responsive + .panel-body {
+  border-top: 1px solid #d1d1d1;
+}
+.panel > .table > tbody:first-child > tr:first-child th,
+.panel > .table > tbody:first-child > tr:first-child td {
+  border-top: 0;
+}
+.panel > .table-bordered,
+.panel > .table-responsive > .table-bordered {
+  border: 0;
+}
+.panel > .table-bordered > thead > tr > th:first-child,
+.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
+.panel > .table-bordered > tbody > tr > th:first-child,
+.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
+.panel > .table-bordered > tfoot > tr > th:first-child,
+.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
+.panel > .table-bordered > thead > tr > td:first-child,
+.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
+.panel > .table-bordered > tbody > tr > td:first-child,
+.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
+.panel > .table-bordered > tfoot > tr > td:first-child,
+.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
+  border-left: 0;
+}
+.panel > .table-bordered > thead > tr > th:last-child,
+.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
+.panel > .table-bordered > tbody > tr > th:last-child,
+.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
+.panel > .table-bordered > tfoot > tr > th:last-child,
+.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
+.panel > .table-bordered > thead > tr > td:last-child,
+.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
+.panel > .table-bordered > tbody > tr > td:last-child,
+.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
+.panel > .table-bordered > tfoot > tr > td:last-child,
+.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
+  border-right: 0;
+}
+.panel > .table-bordered > thead > tr:first-child > td,
+.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
+.panel > .table-bordered > tbody > tr:first-child > td,
+.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
+.panel > .table-bordered > thead > tr:first-child > th,
+.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
+.panel > .table-bordered > tbody > tr:first-child > th,
+.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
+  border-bottom: 0;
+}
+.panel > .table-bordered > tbody > tr:last-child > td,
+.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
+.panel > .table-bordered > tfoot > tr:last-child > td,
+.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
+.panel > .table-bordered > tbody > tr:last-child > th,
+.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
+.panel > .table-bordered > tfoot > tr:last-child > th,
+.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
+  border-bottom: 0;
+}
+.panel > .table-responsive {
+  border: 0;
+  margin-bottom: 0;
+}
+.panel-group {
+  margin-bottom: 20px;
+}
+.panel-group .panel {
+  margin-bottom: 0;
+  border-radius: 1px;
+}
+.panel-group .panel + .panel {
+  margin-top: 5px;
+}
+.panel-group .panel-heading {
+  border-bottom: 0;
+}
+.panel-group .panel-heading + .panel-collapse > .panel-body,
+.panel-group .panel-heading + .panel-collapse > .list-group {
+  border-top: 1px solid #d1d1d1;
+}
+.panel-group .panel-footer {
+  border-top: 0;
+}
+.panel-group .panel-footer + .panel-collapse .panel-body {
+  border-bottom: 1px solid #d1d1d1;
+}
+.panel-default {
+  border-color: #ddd;
+}
+.panel-default > .panel-heading {
+  color: #363636;
+  background-color: #f5f5f5;
+  border-color: #ddd;
+}
+.panel-default > .panel-heading + .panel-collapse > .panel-body {
+  border-top-color: #ddd;
+}
+.panel-default > .panel-heading .badge {
+  color: #f5f5f5;
+  background-color: #363636;
+}
+.panel-default > .panel-footer + .panel-collapse > .panel-body {
+  border-bottom-color: #ddd;
+}
+.panel-primary {
+  border-color: #39a5dc;
+}
+.panel-primary > .panel-heading {
+  color: #fff;
+  background-color: #39a5dc;
+  border-color: #39a5dc;
+}
+.panel-primary > .panel-heading + .panel-collapse > .panel-body {
+  border-top-color: #39a5dc;
+}
+.panel-primary > .panel-heading .badge {
+  color: #39a5dc;
+  background-color: #fff;
+}
+.panel-primary > .panel-footer + .panel-collapse > .panel-body {
+  border-bottom-color: #39a5dc;
+}
+.panel-success {
+  border-color: #3f9c35;
+}
+.panel-success > .panel-heading {
+  color: #fff;
+  background-color: #3f9c35;
+  border-color: #3f9c35;
+}
+.panel-success > .panel-heading + .panel-collapse > .panel-body {
+  border-top-color: #3f9c35;
+}
+.panel-success > .panel-heading .badge {
+  color: #3f9c35;
+  background-color: #fff;
+}
+.panel-success > .panel-footer + .panel-collapse > .panel-body {
+  border-bottom-color: #3f9c35;
+}
+.panel-info {
+  border-color: #00659c;
+}
+.panel-info > .panel-heading {
+  color: #fff;
+  background-color: #00659c;
+  border-color: #00659c;
+}
+.panel-info > .panel-heading + .panel-collapse > .panel-body {
+  border-top-color: #00659c;
+}
+.panel-info > .panel-heading .badge {
+  color: #00659c;
+  background-color: #fff;
+}
+.panel-info > .panel-footer + .panel-collapse > .panel-body {
+  border-bottom-color: #00659c;
+}
+.panel-warning {
+  border-color: #ec7a08;
+}
+.panel-warning > .panel-heading {
+  color: #fff;
+  background-color: #ec7a08;
+  border-color: #ec7a08;
+}
+.panel-warning > .panel-heading + .panel-collapse > .panel-body {
+  border-top-color: #ec7a08;
+}
+.panel-warning > .panel-heading .badge {
+  color: #ec7a08;
+  background-color: #fff;
+}
+.panel-warning > .panel-footer + .panel-collapse > .panel-body {
+  border-bottom-color: #ec7a08;
+}
+.panel-danger {
+  border-color: #cc0000;
+}
+.panel-danger > .panel-heading {
+  color: #fff;
+  background-color: #cc0000;
+  border-color: #cc0000;
+}
+.panel-danger > .panel-heading + .panel-collapse > .panel-body {
+  border-top-color: #cc0000;
+}
+.panel-danger > .panel-heading .badge {
+  color: #cc0000;
+  background-color: #fff;
+}
+.panel-danger > .panel-footer + .panel-collapse > .panel-body {
+  border-bottom-color: #cc0000;
+}
+.embed-responsive {
+  position: relative;
+  display: block;
+  height: 0;
+  padding: 0;
+  overflow: hidden;
+}
+.embed-responsive .embed-responsive-item,
+.embed-responsive iframe,
+.embed-responsive embed,
+.embed-responsive object,
+.embed-responsive video {
+  position: absolute;
+  top: 0;
+  left: 0;
+  bottom: 0;
+  height: 100%;
+  width: 100%;
+  border: 0;
+}
+.embed-responsive-16by9 {
+  padding-bottom: 56.25%;
+}
+.embed-responsive-4by3 {
+  padding-bottom: 75%;
+}
+.well {
+  min-height: 20px;
+  padding: 19px;
+  margin-bottom: 20px;
+  background-color: #f5f5f5;
+  border: 1px solid #e3e3e3;
+  border-radius: 1px;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
+}
+.well blockquote {
+  border-color: #ddd;
+  border-color: rgba(0, 0, 0, 0.15);
+}
+.well-lg {
+  padding: 24px;
+  border-radius: 1px;
+}
+.well-sm {
+  padding: 9px;
+  border-radius: 1px;
+}
+.close {
+  float: right;
+  font-size: 18px;
+  font-weight: bold;
+  line-height: 1;
+  color: #000;
+  text-shadow: 0 1px 0 #fff;
+  opacity: 0.2;
+  filter: alpha(opacity=20);
+}
+.close:hover,
+.close:focus {
+  color: #000;
+  text-decoration: none;
+  cursor: pointer;
+  opacity: 0.5;
+  filter: alpha(opacity=50);
+}
+button.close {
+  padding: 0;
+  cursor: pointer;
+  background: transparent;
+  border: 0;
+  -webkit-appearance: none;
+}
+.modal-open {
+  overflow: hidden;
+}
+.modal {
+  display: none;
+  overflow: hidden;
+  position: fixed;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: 1050;
+  -webkit-overflow-scrolling: touch;
+  outline: 0;
+}
+.modal.fade .modal-dialog {
+  -webkit-transform: translate(0, -25%);
+  -ms-transform: translate(0, -25%);
+  -o-transform: translate(0, -25%);
+  transform: translate(0, -25%);
+  -webkit-transition: -webkit-transform 0.3s ease-out;
+  -moz-transition: -moz-transform 0.3s ease-out;
+  -o-transition: -o-transform 0.3s ease-out;
+  transition: transform 0.3s ease-out;
+}
+.modal.in .modal-dialog {
+  -webkit-transform: translate(0, 0);
+  -ms-transform: translate(0, 0);
+  -o-transform: translate(0, 0);
+  transform: translate(0, 0);
+}
+.modal-open .modal {
+  overflow-x: hidden;
+  overflow-y: auto;
+}
+.modal-dialog {
+  position: relative;
+  width: auto;
+  margin: 10px;
+}
+.modal-content {
+  position: relative;
+  background-color: #fff;
+  border: 1px solid #999;
+  border: 1px solid rgba(0, 0, 0, 0.2);
+  border-radius: 1px;
+  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
+  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
+  background-clip: padding-box;
+  outline: 0;
+}
+.modal-backdrop {
+  position: fixed;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: 1040;
+  background-color: #000;
+}
+.modal-backdrop.fade {
+  opacity: 0;
+  filter: alpha(opacity=0);
+}
+.modal-backdrop.in {
+  opacity: 0.5;
+  filter: alpha(opacity=50);
+}
+.modal-header {
+  padding: 15px;
+  border-bottom: 1px solid #e5e5e5;
+}
+.modal-header .close {
+  margin-top: -2px;
+}
+.modal-title {
+  margin: 0;
+  line-height: 1.66666667;
+}
+.modal-body {
+  position: relative;
+  padding: 15px;
+}
+.modal-footer {
+  padding: 15px;
+  text-align: right;
+  border-top: 1px solid #e5e5e5;
+}
+.modal-footer .btn + .btn {
+  margin-left: 5px;
+  margin-bottom: 0;
+}
+.modal-footer .btn-group .btn + .btn {
+  margin-left: -1px;
+}
+.modal-footer .btn-block + .btn-block {
+  margin-left: 0;
+}
+.modal-scrollbar-measure {
+  position: absolute;
+  top: -9999px;
+  width: 50px;
+  height: 50px;
+  overflow: scroll;
+}
+@media (min-width: 768px) {
+  .modal-dialog {
+    width: 600px;
+    margin: 30px auto;
+  }
+  .modal-content {
+    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
+    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
+  }
+  .modal-sm {
+    width: 300px;
+  }
+}
+@media (min-width: 992px) {
+  .modal-lg {
+    width: 900px;
+  }
+}
+.tooltip {
+  position: absolute;
+  z-index: 1070;
+  display: block;
+  font-family: "Open Sans", Helvetica, Arial, sans-serif;
+  font-style: normal;
+  font-weight: normal;
+  letter-spacing: normal;
+  line-break: auto;
+  line-height: 1.66666667;
+  text-align: left;
+  text-align: start;
+  text-decoration: none;
+  text-shadow: none;
+  text-transform: none;
+  white-space: normal;
+  word-break: normal;
+  word-spacing: normal;
+  word-wrap: normal;
+  font-size: 11px;
+  opacity: 0;
+  filter: alpha(opacity=0);
+}
+.tooltip.in {
+  opacity: 0.9;
+  filter: alpha(opacity=90);
+}
+.tooltip.top {
+  margin-top: -3px;
+  padding: 8px 0;
+}
+.tooltip.right {
+  margin-left: 3px;
+  padding: 0 8px;
+}
+.tooltip.bottom {
+  margin-top: 3px;
+  padding: 8px 0;
+}
+.tooltip.left {
+  margin-left: -3px;
+  padding: 0 8px;
+}
+.tooltip-inner {
+  max-width: 220px;
+  padding: 3px 8px;
+  color: #fff;
+  text-align: center;
+  background-color: #393f44;
+  border-radius: 1px;
+}
+.tooltip-arrow {
+  position: absolute;
+  width: 0;
+  height: 0;
+  border-color: transparent;
+  border-style: solid;
+}
+.tooltip.top .tooltip-arrow {
+  bottom: 0;
+  left: 50%;
+  margin-left: -8px;
+  border-width: 8px 8px 0;
+  border-top-color: #393f44;
+}
+.tooltip.top-left .tooltip-arrow {
+  bottom: 0;
+  right: 8px;
+  margin-bottom: -8px;
+  border-width: 8px 8px 0;
+  border-top-color: #393f44;
+}
+.tooltip.top-right .tooltip-arrow {
+  bottom: 0;
+  left: 8px;
+  margin-bottom: -8px;
+  border-width: 8px 8px 0;
+  border-top-color: #393f44;
+}
+.tooltip.right .tooltip-arrow {
+  top: 50%;
+  left: 0;
+  margin-top: -8px;
+  border-width: 8px 8px 8px 0;
+  border-right-color: #393f44;
+}
+.tooltip.left .tooltip-arrow {
+  top: 50%;
+  right: 0;
+  margin-top: -8px;
+  border-width: 8px 0 8px 8px;
+  border-left-color: #393f44;
+}
+.tooltip.bottom .tooltip-arrow {
+  top: 0;
+  left: 50%;
+  margin-left: -8px;
+  border-width: 0 8px 8px;
+  border-bottom-color: #393f44;
+}
+.tooltip.bottom-left .tooltip-arrow {
+  top: 0;
+  right: 8px;
+  margin-top: -8px;
+  border-width: 0 8px 8px;
+  border-bottom-color: #393f44;
+}
+.tooltip.bottom-right .tooltip-arrow {
+  top: 0;
+  left: 8px;
+  margin-top: -8px;
+  border-width: 0 8px 8px;
+  border-bottom-color: #393f44;
+}
+.popover {
+  position: absolute;
+  top: 0;
+  left: 0;
+  z-index: 1060;
+  display: none;
+  max-width: 220px;
+  padding: 1px;
+  font-family: "Open Sans", Helvetica, Arial, sans-serif;
+  font-style: normal;
+  font-weight: normal;
+  letter-spacing: normal;
+  line-break: auto;
+  line-height: 1.66666667;
+  text-align: left;
+  text-align: start;
+  text-decoration: none;
+  text-shadow: none;
+  text-transform: none;
+  white-space: normal;
+  word-break: normal;
+  word-spacing: normal;
+  word-wrap: normal;
+  font-size: 12px;
+  background-color: #fff;
+  background-clip: padding-box;
+  border: 1px solid #ccc;
+  border: 1px solid #bbb;
+  border-radius: 1px;
+  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+}
+.popover.top {
+  margin-top: -10px;
+}
+.popover.right {
+  margin-left: 10px;
+}
+.popover.bottom {
+  margin-top: 10px;
+}
+.popover.left {
+  margin-left: -10px;
+}
+.popover-title {
+  margin: 0;
+  padding: 8px 14px;
+  font-size: 12px;
+  background-color: #f5f5f5;
+  border-bottom: 1px solid #e8e8e8;
+  border-radius: 0px 0px 0 0;
+}
+.popover-content {
+  padding: 9px 14px;
+}
+.popover > .arrow,
+.popover > .arrow:after {
+  position: absolute;
+  display: block;
+  width: 0;
+  height: 0;
+  border-color: transparent;
+  border-style: solid;
+}
+.popover > .arrow {
+  border-width: 11px;
+}
+.popover > .arrow:after {
+  border-width: 10px;
+  content: "";
+}
+.popover.top > .arrow {
+  left: 50%;
+  margin-left: -11px;
+  border-bottom-width: 0;
+  border-top-color: #999999;
+  border-top-color: #bbb;
+  bottom: -11px;
+}
+.popover.top > .arrow:after {
+  content: " ";
+  bottom: 1px;
+  margin-left: -10px;
+  border-bottom-width: 0;
+  border-top-color: #fff;
+}
+.popover.right > .arrow {
+  top: 50%;
+  left: -11px;
+  margin-top: -11px;
+  border-left-width: 0;
+  border-right-color: #999999;
+  border-right-color: #bbb;
+}
+.popover.right > .arrow:after {
+  content: " ";
+  left: 1px;
+  bottom: -10px;
+  border-left-width: 0;
+  border-right-color: #fff;
+}
+.popover.bottom > .arrow {
+  left: 50%;
+  margin-left: -11px;
+  border-top-width: 0;
+  border-bottom-color: #999999;
+  border-bottom-color: #bbb;
+  top: -11px;
+}
+.popover.bottom > .arrow:after {
+  content: " ";
+  top: 1px;
+  margin-left: -10px;
+  border-top-width: 0;
+  border-bottom-color: #fff;
+}
+.popover.left > .arrow {
+  top: 50%;
+  right: -11px;
+  margin-top: -11px;
+  border-right-width: 0;
+  border-left-color: #999999;
+  border-left-color: #bbb;
+}
+.popover.left > .arrow:after {
+  content: " ";
+  right: 1px;
+  border-right-width: 0;
+  border-left-color: #fff;
+  bottom: -10px;
+}
+.carousel {
+  position: relative;
+}
+.carousel-inner {
+  position: relative;
+  overflow: hidden;
+  width: 100%;
+}
+.carousel-inner > .item {
+  display: none;
+  position: relative;
+  -webkit-transition: 0.6s ease-in-out left;
+  -o-transition: 0.6s ease-in-out left;
+  transition: 0.6s ease-in-out left;
+}
+.carousel-inner > .item > img,
+.carousel-inner > .item > a > img {
+  line-height: 1;
+}
+@media all and (transform-3d), (-webkit-transform-3d) {
+  .carousel-inner > .item {
+    -webkit-transition: -webkit-transform 0.6s ease-in-out;
+    -moz-transition: -moz-transform 0.6s ease-in-out;
+    -o-transition: -o-transform 0.6s ease-in-out;
+    transition: transform 0.6s ease-in-out;
+    -webkit-backface-visibility: hidden;
+    -moz-backface-visibility: hidden;
+    backface-visibility: hidden;
+    -webkit-perspective: 1000px;
+    -moz-perspective: 1000px;
+    perspective: 1000px;
+  }
+  .carousel-inner > .item.next,
+  .carousel-inner > .item.active.right {
+    -webkit-transform: translate3d(100%, 0, 0);
+    transform: translate3d(100%, 0, 0);
+    left: 0;
+  }
+  .carousel-inner > .item.prev,
+  .carousel-inner > .item.active.left {
+    -webkit-transform: translate3d(-100%, 0, 0);
+    transform: translate3d(-100%, 0, 0);
+    left: 0;
+  }
+  .carousel-inner > .item.next.left,
+  .carousel-inner > .item.prev.right,
+  .carousel-inner > .item.active {
+    -webkit-transform: translate3d(0, 0, 0);
+    transform: translate3d(0, 0, 0);
+    left: 0;
+  }
+}
+.carousel-inner > .active,
+.carousel-inner > .next,
+.carousel-inner > .prev {
+  display: block;
+}
+.carousel-inner > .active {
+  left: 0;
+}
+.carousel-inner > .next,
+.carousel-inner > .prev {
+  position: absolute;
+  top: 0;
+  width: 100%;
+}
+.carousel-inner > .next {
+  left: 100%;
+}
+.carousel-inner > .prev {
+  left: -100%;
+}
+.carousel-inner > .next.left,
+.carousel-inner > .prev.right {
+  left: 0;
+}
+.carousel-inner > .active.left {
+  left: -100%;
+}
+.carousel-inner > .active.right {
+  left: 100%;
+}
+.carousel-control {
+  position: absolute;
+  top: 0;
+  left: 0;
+  bottom: 0;
+  width: 15%;
+  opacity: 0.5;
+  filter: alpha(opacity=50);
+  font-size: 20px;
+  color: #fff;
+  text-align: center;
+  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
+  background-color: rgba(0, 0, 0, 0);
+}
+.carousel-control.left {
+  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
+  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
+  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
+}
+.carousel-control.right {
+  left: auto;
+  right: 0;
+  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
+  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
+  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
+}
+.carousel-control:hover,
+.carousel-control:focus {
+  outline: 0;
+  color: #fff;
+  text-decoration: none;
+  opacity: 0.9;
+  filter: alpha(opacity=90);
+}
+.carousel-control .icon-prev,
+.carousel-control .icon-next,
+.carousel-control .glyphicon-chevron-left,
+.carousel-control .glyphicon-chevron-right {
+  position: absolute;
+  top: 50%;
+  margin-top: -10px;
+  z-index: 5;
+  display: inline-block;
+}
+.carousel-control .icon-prev,
+.carousel-control .glyphicon-chevron-left {
+  left: 50%;
+  margin-left: -10px;
+}
+.carousel-control .icon-next,
+.carousel-control .glyphicon-chevron-right {
+  right: 50%;
+  margin-right: -10px;
+}
+.carousel-control .icon-prev,
+.carousel-control .icon-next {
+  width: 20px;
+  height: 20px;
+  line-height: 1;
+  font-family: serif;
+}
+.carousel-control .icon-prev:before {
+  content: '\2039';
+}
+.carousel-control .icon-next:before {
+  content: '\203a';
+}
+.carousel-indicators {
+  position: absolute;
+  bottom: 10px;
+  left: 50%;
+  z-index: 15;
+  width: 60%;
+  margin-left: -30%;
+  padding-left: 0;
+  list-style: none;
+  text-align: center;
+}
+.carousel-indicators li {
+  display: inline-block;
+  width: 10px;
+  height: 10px;
+  margin: 1px;
+  text-indent: -999px;
+  border: 1px solid #fff;
+  border-radius: 10px;
+  cursor: pointer;
+  background-color: #000 \9;
+  background-color: rgba(0, 0, 0, 0);
+}
+.carousel-indicators .active {
+  margin: 0;
+  width: 12px;
+  height: 12px;
+  background-color: #fff;
+}
+.carousel-caption {
+  position: absolute;
+  left: 15%;
+  right: 15%;
+  bottom: 20px;
+  z-index: 10;
+  padding-top: 20px;
+  padding-bottom: 20px;
+  color: #fff;
+  text-align: center;
+  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
+}
+.carousel-caption .btn {
+  text-shadow: none;
+}
+@media screen and (min-width: 768px) {
+  .carousel-control .glyphicon-chevron-left,
+  .carousel-control .glyphicon-chevron-right,
+  .carousel-control .icon-prev,
+  .carousel-control .icon-next {
+    width: 30px;
+    height: 30px;
+    margin-top: -10px;
+    font-size: 30px;
+  }
+  .carousel-control .glyphicon-chevron-left,
+  .carousel-control .icon-prev {
+    margin-left: -10px;
+  }
+  .carousel-control .glyphicon-chevron-right,
+  .carousel-control .icon-next {
+    margin-right: -10px;
+  }
+  .carousel-caption {
+    left: 20%;
+    right: 20%;
+    padding-bottom: 30px;
+  }
+  .carousel-indicators {
+    bottom: 20px;
+  }
+}
+.clearfix:before,
+.clearfix:after,
+.dl-horizontal dd:before,
+.dl-horizontal dd:after,
+.container:before,
+.container:after,
+.container-fluid:before,
+.container-fluid:after,
+.row:before,
+.row:after,
+.form-horizontal .form-group:before,
+.form-horizontal .form-group:after,
+.btn-toolbar:before,
+.btn-toolbar:after,
+.btn-group-vertical > .btn-group:before,
+.btn-group-vertical > .btn-group:after,
+.nav:before,
+.nav:after,
+.navbar:before,
+.navbar:after,
+.navbar-header:before,
+.navbar-header:after,
+.navbar-collapse:before,
+.navbar-collapse:after,
+.pager:before,
+.pager:after,
+.panel-body:before,
+.panel-body:after,
+.modal-header:before,
+.modal-header:after,
+.modal-footer:before,
+.modal-footer:after {
+  content: " ";
+  display: table;
+}
+.clearfix:after,
+.dl-horizontal dd:after,
+.container:after,
+.container-fluid:after,
+.row:after,
+.form-horizontal .form-group:after,
+.btn-toolbar:after,
+.btn-group-vertical > .btn-group:after,
+.nav:after,
+.navbar:after,
+.navbar-header:after,
+.navbar-collapse:after,
+.pager:after,
+.panel-body:after,
+.modal-header:after,
+.modal-footer:after {
+  clear: both;
+}
+.center-block {
+  display: block;
+  margin-left: auto;
+  margin-right: auto;
+}
+.pull-right {
+  float: right !important;
+}
+.pull-left {
+  float: left !important;
+}
+.hide {
+  display: none !important;
+}
+.show {
+  display: block !important;
+}
+.invisible {
+  visibility: hidden;
+}
+.text-hide {
+  font: 0/0 a;
+  color: transparent;
+  text-shadow: none;
+  background-color: transparent;
+  border: 0;
+}
+.hidden {
+  display: none !important;
+}
+.affix {
+  position: fixed;
+}
+@-ms-viewport {
+  width: device-width;
+}
+.visible-xs,
+.visible-sm,
+.visible-md,
+.visible-lg {
+  display: none !important;
+}
+.visible-xs-block,
+.visible-xs-inline,
+.visible-xs-inline-block,
+.visible-sm-block,
+.visible-sm-inline,
+.visible-sm-inline-block,
+.visible-md-block,
+.visible-md-inline,
+.visible-md-inline-block,
+.visible-lg-block,
+.visible-lg-inline,
+.visible-lg-inline-block {
+  display: none !important;
+}
+@media (max-width: 767px) {
+  .visible-xs {
+    display: block !important;
+  }
+  table.visible-xs {
+    display: table !important;
+  }
+  tr.visible-xs {
+    display: table-row !important;
+  }
+  th.visible-xs,
+  td.visible-xs {
+    display: table-cell !important;
+  }
+}
+@media (max-width: 767px) {
+  .visible-xs-block {
+    display: block !important;
+  }
+}
+@media (max-width: 767px) {
+  .visible-xs-inline {
+    display: inline !important;
+  }
+}
+@media (max-width: 767px) {
+  .visible-xs-inline-block {
+    display: inline-block !important;
+  }
+}
+@media (min-width: 768px) and (max-width: 991px) {
+  .visible-sm {
+    display: block !important;
+  }
+  table.visible-sm {
+    display: table !important;
+  }
+  tr.visible-sm {
+    display: table-row !important;
+  }
+  th.visible-sm,
+  td.visible-sm {
+    display: table-cell !important;
+  }
+}
+@media (min-width: 768px) and (max-width: 991px) {
+  .visible-sm-block {
+    display: block !important;
+  }
+}
+@media (min-width: 768px) and (max-width: 991px) {
+  .visible-sm-inline {
+    display: inline !important;
+  }
+}
+@media (min-width: 768px) and (max-width: 991px) {
+  .visible-sm-inline-block {
+    display: inline-block !important;
+  }
+}
+@media (min-width: 992px) and (max-width: 1199px) {
+  .visible-md {
+    display: block !important;
+  }
+  table.visible-md {
+    display: table !important;
+  }
+  tr.visible-md {
+    display: table-row !important;
+  }
+  th.visible-md,
+  td.visible-md {
+    display: table-cell !important;
+  }
+}
+@media (min-width: 992px) and (max-width: 1199px) {
+  .visible-md-block {
+    display: block !important;
+  }
+}
+@media (min-width: 992px) and (max-width: 1199px) {
+  .visible-md-inline {
+    display: inline !important;
+  }
+}
+@media (min-width: 992px) and (max-width: 1199px) {
+  .visible-md-inline-block {
+    display: inline-block !important;
+  }
+}
+@media (min-width: 1200px) {
+  .visible-lg {
+    display: block !important;
+  }
+  table.visible-lg {
+    display: table !important;
+  }
+  tr.visible-lg {
+    display: table-row !important;
+  }
+  th.visible-lg,
+  td.visible-lg {
+    display: table-cell !important;
+  }
+}
+@media (min-width: 1200px) {
+  .visible-lg-block {
+    display: block !important;
+  }
+}
+@media (min-width: 1200px) {
+  .visible-lg-inline {
+    display: inline !important;
+  }
+}
+@media (min-width: 1200px) {
+  .visible-lg-inline-block {
+    display: inline-block !important;
+  }
+}
+@media (max-width: 767px) {
+  .hidden-xs {
+    display: none !important;
+  }
+}
+@media (min-width: 768px) and (max-width: 991px) {
+  .hidden-sm {
+    display: none !important;
+  }
+}
+@media (min-width: 992px) and (max-width: 1199px) {
+  .hidden-md {
+    display: none !important;
+  }
+}
+@media (min-width: 1200px) {
+  .hidden-lg {
+    display: none !important;
+  }
+}
+.visible-print {
+  display: none !important;
+}
+@media print {
+  .visible-print {
+    display: block !important;
+  }
+  table.visible-print {
+    display: table !important;
+  }
+  tr.visible-print {
+    display: table-row !important;
+  }
+  th.visible-print,
+  td.visible-print {
+    display: table-cell !important;
+  }
+}
+.visible-print-block {
+  display: none !important;
+}
+@media print {
+  .visible-print-block {
+    display: block !important;
+  }
+}
+.visible-print-inline {
+  display: none !important;
+}
+@media print {
+  .visible-print-inline {
+    display: inline !important;
+  }
+}
+.visible-print-inline-block {
+  display: none !important;
+}
+@media print {
+  .visible-print-inline-block {
+    display: inline-block !important;
+  }
+}
+@media print {
+  .hidden-print {
+    display: none !important;
+  }
+}
+/*!
+ *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
+ *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */
+/* FONT PATH
+ * -------------------------- */
+@font-face {
+  font-family: 'FontAwesome';
+  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
+  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
+  font-weight: normal;
+  font-style: normal;
+}
+.fa {
+  display: inline-block;
+  font: normal normal normal 14px/1 FontAwesome;
+  font-size: inherit;
+  text-rendering: auto;
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+}
+/* makes the font 33% larger relative to the icon container */
+.fa-lg {
+  font-size: 1.33333333em;
+  line-height: 0.75em;
+  vertical-align: -15%;
+}
+.fa-2x {
+  font-size: 2em;
+}
+.fa-3x {
+  font-size: 3em;
+}
+.fa-4x {
+  font-size: 4em;
+}
+.fa-5x {
+  font-size: 5em;
+}
+.fa-fw {
+  width: 1.28571429em;
+  text-align: center;
+}
+.fa-ul {
+  padding-left: 0;
+  margin-left: 2.14285714em;
+  list-style-type: none;
+}
+.fa-ul > li {
+  position: relative;
+}
+.fa-li {
+  position: absolute;
+  left: -2.14285714em;
+  width: 2.14285714em;
+  top: 0.14285714em;
+  text-align: center;
+}
+.fa-li.fa-lg {
+  left: -1.85714286em;
+}
+.fa-border {
+  padding: .2em .25em .15em;
+  border: solid 0.08em #eee;
+  border-radius: .1em;
+}
+.fa-pull-left {
+  float: left;
+}
+.fa-pull-right {
+  float: right;
+}
+.fa.fa-pull-left {
+  margin-right: .3em;
+}
+.fa.fa-pull-right {
+  margin-left: .3em;
+}
+/* Deprecated as of 4.4.0 */
+.pull-right {
+  float: right;
+}
+.pull-left {
+  float: left;
+}
+.fa.pull-left {
+  margin-right: .3em;
+}
+.fa.pull-right {
+  margin-left: .3em;
+}
+.fa-spin {
+  -webkit-animation: fa-spin 2s infinite linear;
+  animation: fa-spin 2s infinite linear;
+}
+.fa-pulse {
+  -webkit-animation: fa-spin 1s infinite steps(8);
+  animation: fa-spin 1s infinite steps(8);
+}
+@-webkit-keyframes fa-spin {
+  0% {
+    -webkit-transform: rotate(0deg);
+    transform: rotate(0deg);
+  }
+  100% {
+    -webkit-transform: rotate(359deg);
+    transform: rotate(359deg);
+  }
+}
+@keyframes fa-spin {
+  0% {
+    -webkit-transform: rotate(0deg);
+    transform: rotate(0deg);
+  }
+  100% {
+    -webkit-transform: rotate(359deg);
+    transform: rotate(359deg);
+  }
+}
+.fa-rotate-90 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
+  -webkit-transform: rotate(90deg);
+  -ms-transform: rotate(90deg);
+  transform: rotate(90deg);
+}
+.fa-rotate-180 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
+  -webkit-transform: rotate(180deg);
+  -ms-transform: rotate(180deg);
+  transform: rotate(180deg);
+}
+.fa-rotate-270 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
+  -webkit-transform: rotate(270deg);
+  -ms-transform: rotate(270deg);
+  transform: rotate(270deg);
+}
+.fa-flip-horizontal {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
+  -webkit-transform: scale(-1, 1);
+  -ms-transform: scale(-1, 1);
+  transform: scale(-1, 1);
+}
+.fa-flip-vertical {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
+  -webkit-transform: scale(1, -1);
+  -ms-transform: scale(1, -1);
+  transform: scale(1, -1);
+}
+:root .fa-rotate-90,
+:root .fa-rotate-180,
+:root .fa-rotate-270,
+:root .fa-flip-horizontal,
+:root .fa-flip-vertical {
+  filter: none;
+}
+.fa-stack {
+  position: relative;
+  display: inline-block;
+  width: 2em;
+  height: 2em;
+  line-height: 2em;
+  vertical-align: middle;
+}
+.fa-stack-1x,
+.fa-stack-2x {
+  position: absolute;
+  left: 0;
+  width: 100%;
+  text-align: center;
+}
+.fa-stack-1x {
+  line-height: inherit;
+}
+.fa-stack-2x {
+  font-size: 2em;
+}
+.fa-inverse {
+  color: #fff;
+}
+/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
+   readers do not read off random characters that represent icons */
+.fa-glass:before {
+  content: "\f000";
+}
+.fa-music:before {
+  content: "\f001";
+}
+.fa-search:before {
+  content: "\f002";
+}
+.fa-envelope-o:before {
+  content: "\f003";
+}
+.fa-heart:before {
+  content: "\f004";
+}
+.fa-star:before {
+  content: "\f005";
+}
+.fa-star-o:before {
+  content: "\f006";
+}
+.fa-user:before {
+  content: "\f007";
+}
+.fa-film:before {
+  content: "\f008";
+}
+.fa-th-large:before {
+  content: "\f009";
+}
+.fa-th:before {
+  content: "\f00a";
+}
+.fa-th-list:before {
+  content: "\f00b";
+}
+.fa-check:before {
+  content: "\f00c";
+}
+.fa-remove:before,
+.fa-close:before,
+.fa-times:before {
+  content: "\f00d";
+}
+.fa-search-plus:before {
+  content: "\f00e";
+}
+.fa-search-minus:before {
+  content: "\f010";
+}
+.fa-power-off:before {
+  content: "\f011";
+}
+.fa-signal:before {
+  content: "\f012";
+}
+.fa-gear:before,
+.fa-cog:before {
+  content: "\f013";
+}
+.fa-trash-o:before {
+  content: "\f014";
+}
+.fa-home:before {
+  content: "\f015";
+}
+.fa-file-o:before {
+  content: "\f016";
+}
+.fa-clock-o:before {
+  content: "\f017";
+}
+.fa-road:before {
+  content: "\f018";
+}
+.fa-download:before {
+  content: "\f019";
+}
+.fa-arrow-circle-o-down:before {
+  content: "\f01a";
+}
+.fa-arrow-circle-o-up:before {
+  content: "\f01b";
+}
+.fa-inbox:before {
+  content: "\f01c";
+}
+.fa-play-circle-o:before {
+  content: "\f01d";
+}
+.fa-rotate-right:before,
+.fa-repeat:before {
+  content: "\f01e";
+}
+.fa-refresh:before {
+  content: "\f021";
+}
+.fa-list-alt:before {
+  content: "\f022";
+}
+.fa-lock:before {
+  content: "\f023";
+}
+.fa-flag:before {
+  content: "\f024";
+}
+.fa-headphones:before {
+  content: "\f025";
+}
+.fa-volume-off:before {
+  content: "\f026";
+}
+.fa-volume-down:before {
+  content: "\f027";
+}
+.fa-volume-up:before {
+  content: "\f028";
+}
+.fa-qrcode:before {
+  content: "\f029";
+}
+.fa-barcode:before {
+  content: "\f02a";
+}
+.fa-tag:before {
+  content: "\f02b";
+}
+.fa-tags:before {
+  content: "\f02c";
+}
+.fa-book:before {
+  content: "\f02d";
+}
+.fa-bookmark:before {
+  content: "\f02e";
+}
+.fa-print:before {
+  content: "\f02f";
+}
+.fa-camera:before {
+  content: "\f030";
+}
+.fa-font:before {
+  content: "\f031";
+}
+.fa-bold:before {
+  content: "\f032";
+}
+.fa-italic:before {
+  content: "\f033";
+}
+.fa-text-height:before {
+  content: "\f034";
+}
+.fa-text-width:before {
+  content: "\f035";
+}
+.fa-align-left:before {
+  content: "\f036";
+}
+.fa-align-center:before {
+  content: "\f037";
+}
+.fa-align-right:before {
+  content: "\f038";
+}
+.fa-align-justify:before {
+  content: "\f039";
+}
+.fa-list:before {
+  content: "\f03a";
+}
+.fa-dedent:before,
+.fa-outdent:before {
+  content: "\f03b";
+}
+.fa-indent:before {
+  content: "\f03c";
+}
+.fa-video-camera:before {
+  content: "\f03d";
+}
+.fa-photo:before,
+.fa-image:before,
+.fa-picture-o:before {
+  content: "\f03e";
+}
+.fa-pencil:before {
+  content: "\f040";
+}
+.fa-map-marker:before {
+  content: "\f041";
+}
+.fa-adjust:before {
+  content: "\f042";
+}
+.fa-tint:before {
+  content: "\f043";
+}
+.fa-edit:before,
+.fa-pencil-square-o:before {
+  content: "\f044";
+}
+.fa-share-square-o:before {
+  content: "\f045";
+}
+.fa-check-square-o:before {
+  content: "\f046";
+}
+.fa-arrows:before {
+  content: "\f047";
+}
+.fa-step-backward:before {
+  content: "\f048";
+}
+.fa-fast-backward:before {
+  content: "\f049";
+}
+.fa-backward:before {
+  content: "\f04a";
+}
+.fa-play:before {
+  content: "\f04b";
+}
+.fa-pause:before {
+  content: "\f04c";
+}
+.fa-stop:before {
+  content: "\f04d";
+}
+.fa-forward:before {
+  content: "\f04e";
+}
+.fa-fast-forward:before {
+  content: "\f050";
+}
+.fa-step-forward:before {
+  content: "\f051";
+}
+.fa-eject:before {
+  content: "\f052";
+}
+.fa-chevron-left:before {
+  content: "\f053";
+}
+.fa-chevron-right:before {
+  content: "\f054";
+}
+.fa-plus-circle:before {
+  content: "\f055";
+}
+.fa-minus-circle:before {
+  content: "\f056";
+}
+.fa-times-circle:before {
+  content: "\f057";
+}
+.fa-check-circle:before {
+  content: "\f058";
+}
+.fa-question-circle:before {
+  content: "\f059";
+}
+.fa-info-circle:before {
+  content: "\f05a";
+}
+.fa-crosshairs:before {
+  content: "\f05b";
+}
+.fa-times-circle-o:before {
+  content: "\f05c";
+}
+.fa-check-circle-o:before {
+  content: "\f05d";
+}
+.fa-ban:before {
+  content: "\f05e";
+}
+.fa-arrow-left:before {
+  content: "\f060";
+}
+.fa-arrow-right:before {
+  content: "\f061";
+}
+.fa-arrow-up:before {
+  content: "\f062";
+}
+.fa-arrow-down:before {
+  content: "\f063";
+}
+.fa-mail-forward:before,
+.fa-share:before {
+  content: "\f064";
+}
+.fa-expand:before {
+  content: "\f065";
+}
+.fa-compress:before {
+  content: "\f066";
+}
+.fa-plus:before {
+  content: "\f067";
+}
+.fa-minus:before {
+  content: "\f068";
+}
+.fa-asterisk:before {
+  content: "\f069";
+}
+.fa-exclamation-circle:before {
+  content: "\f06a";
+}
+.fa-gift:before {
+  content: "\f06b";
+}
+.fa-leaf:before {
+  content: "\f06c";
+}
+.fa-fire:before {
+  content: "\f06d";
+}
+.fa-eye:before {
+  content: "\f06e";
+}
+.fa-eye-slash:before {
+  content: "\f070";
+}
+.fa-warning:before,
+.fa-exclamation-triangle:before {
+  content: "\f071";
+}
+.fa-plane:before {
+  content: "\f072";
+}
+.fa-calendar:before {
+  content: "\f073";
+}
+.fa-random:before {
+  content: "\f074";
+}
+.fa-comment:before {
+  content: "\f075";
+}
+.fa-magnet:before {
+  content: "\f076";
+}
+.fa-chevron-up:before {
+  content: "\f077";
+}
+.fa-chevron-down:before {
+  content: "\f078";
+}
+.fa-retweet:before {
+  content: "\f079";
+}
+.fa-shopping-cart:before {
+  content: "\f07a";
+}
+.fa-folder:before {
+  content: "\f07b";
+}
+.fa-folder-open:before {
+  content: "\f07c";
+}
+.fa-arrows-v:before {
+  content: "\f07d";
+}
+.fa-arrows-h:before {
+  content: "\f07e";
+}
+.fa-bar-chart-o:before,
+.fa-bar-chart:before {
+  content: "\f080";
+}
+.fa-twitter-square:before {
+  content: "\f081";
+}
+.fa-facebook-square:before {
+  content: "\f082";
+}
+.fa-camera-retro:before {
+  content: "\f083";
+}
+.fa-key:before {
+  content: "\f084";
+}
+.fa-gears:before,
+.fa-cogs:before {
+  content: "\f085";
+}
+.fa-comments:before {
+  content: "\f086";
+}
+.fa-thumbs-o-up:before {
+  content: "\f087";
+}
+.fa-thumbs-o-down:before {
+  content: "\f088";
+}
+.fa-star-half:before {
+  content: "\f089";
+}
+.fa-heart-o:before {
+  content: "\f08a";
+}
+.fa-sign-out:before {
+  content: "\f08b";
+}
+.fa-linkedin-square:before {
+  content: "\f08c";
+}
+.fa-thumb-tack:before {
+  content: "\f08d";
+}
+.fa-external-link:before {
+  content: "\f08e";
+}
+.fa-sign-in:before {
+  content: "\f090";
+}
+.fa-trophy:before {
+  content: "\f091";
+}
+.fa-github-square:before {
+  content: "\f092";
+}
+.fa-upload:before {
+  content: "\f093";
+}
+.fa-lemon-o:before {
+  content: "\f094";
+}
+.fa-phone:before {
+  content: "\f095";
+}
+.fa-square-o:before {
+  content: "\f096";
+}
+.fa-bookmark-o:before {
+  content: "\f097";
+}
+.fa-phone-square:before {
+  content: "\f098";
+}
+.fa-twitter:before {
+  content: "\f099";
+}
+.fa-facebook-f:before,
+.fa-facebook:before {
+  content: "\f09a";
+}
+.fa-github:before {
+  content: "\f09b";
+}
+.fa-unlock:before {
+  content: "\f09c";
+}
+.fa-credit-card:before {
+  content: "\f09d";
+}
+.fa-feed:before,
+.fa-rss:before {
+  content: "\f09e";
+}
+.fa-hdd-o:before {
+  content: "\f0a0";
+}
+.fa-bullhorn:before {
+  content: "\f0a1";
+}
+.fa-bell:before {
+  content: "\f0f3";
+}
+.fa-certificate:before {
+  content: "\f0a3";
+}
+.fa-hand-o-right:before {
+  content: "\f0a4";
+}
+.fa-hand-o-left:before {
+  content: "\f0a5";
+}
+.fa-hand-o-up:before {
+  content: "\f0a6";
+}
+.fa-hand-o-down:before {
+  content: "\f0a7";
+}
+.fa-arrow-circle-left:before {
+  content: "\f0a8";
+}
+.fa-arrow-circle-right:before {
+  content: "\f0a9";
+}
+.fa-arrow-circle-up:before {
+  content: "\f0aa";
+}
+.fa-arrow-circle-down:before {
+  content: "\f0ab";
+}
+.fa-globe:before {
+  content: "\f0ac";
+}
+.fa-wrench:before {
+  content: "\f0ad";
+}
+.fa-tasks:before {
+  content: "\f0ae";
+}
+.fa-filter:before {
+  content: "\f0b0";
+}
+.fa-briefcase:before {
+  content: "\f0b1";
+}
+.fa-arrows-alt:before {
+  content: "\f0b2";
+}
+.fa-group:before,
+.fa-users:before {
+  content: "\f0c0";
+}
+.fa-chain:before,
+.fa-link:before {
+  content: "\f0c1";
+}
+.fa-cloud:before {
+  content: "\f0c2";
+}
+.fa-flask:before {
+  content: "\f0c3";
+}
+.fa-cut:before,
+.fa-scissors:before {
+  content: "\f0c4";
+}
+.fa-copy:before,
+.fa-files-o:before {
+  content: "\f0c5";
+}
+.fa-paperclip:before {
+  content: "\f0c6";
+}
+.fa-save:before,
+.fa-floppy-o:before {
+  content: "\f0c7";
+}
+.fa-square:before {
+  content: "\f0c8";
+}
+.fa-navicon:before,
+.fa-reorder:before,
+.fa-bars:before {
+  content: "\f0c9";
+}
+.fa-list-ul:before {
+  content: "\f0ca";
+}
+.fa-list-ol:before {
+  content: "\f0cb";
+}
+.fa-strikethrough:before {
+  content: "\f0cc";
+}
+.fa-underline:before {
+  content: "\f0cd";
+}
+.fa-table:before {
+  content: "\f0ce";
+}
+.fa-magic:before {
+  content: "\f0d0";
+}
+.fa-truck:before {
+  content: "\f0d1";
+}
+.fa-pinterest:before {
+  content: "\f0d2";
+}
+.fa-pinterest-square:before {
+  content: "\f0d3";
+}
+.fa-google-plus-square:before {
+  content: "\f0d4";
+}
+.fa-google-plus:before {
+  content: "\f0d5";
+}
+.fa-money:before {
+  content: "\f0d6";
+}
+.fa-caret-down:before {
+  content: "\f0d7";
+}
+.fa-caret-up:before {
+  content: "\f0d8";
+}
+.fa-caret-left:before {
+  content: "\f0d9";
+}
+.fa-caret-right:before {
+  content: "\f0da";
+}
+.fa-columns:before {
+  content: "\f0db";
+}
+.fa-unsorted:before,
+.fa-sort:before {
+  content: "\f0dc";
+}
+.fa-sort-down:before,
+.fa-sort-desc:before {
+  content: "\f0dd";
+}
+.fa-sort-up:before,
+.fa-sort-asc:before {
+  content: "\f0de";
+}
+.fa-envelope:before {
+  content: "\f0e0";
+}
+.fa-linkedin:before {
+  content: "\f0e1";
+}
+.fa-rotate-left:before,
+.fa-undo:before {
+  content: "\f0e2";
+}
+.fa-legal:before,
+.fa-gavel:before {
+  content: "\f0e3";
+}
+.fa-dashboard:before,
+.fa-tachometer:before {
+  content: "\f0e4";
+}
+.fa-comment-o:before {
+  content: "\f0e5";
+}
+.fa-comments-o:before {
+  content: "\f0e6";
+}
+.fa-flash:before,
+.fa-bolt:before {
+  content: "\f0e7";
+}
+.fa-sitemap:before {
+  content: "\f0e8";
+}
+.fa-umbrella:before {
+  content: "\f0e9";
+}
+.fa-paste:before,
+.fa-clipboard:before {
+  content: "\f0ea";
+}
+.fa-lightbulb-o:before {
+  content: "\f0eb";
+}
+.fa-exchange:before {
+  content: "\f0ec";
+}
+.fa-cloud-download:before {
+  content: "\f0ed";
+}
+.fa-cloud-upload:before {
+  content: "\f0ee";
+}
+.fa-user-md:before {
+  content: "\f0f0";
+}
+.fa-stethoscope:before {
+  content: "\f0f1";
+}
+.fa-suitcase:before {
+  content: "\f0f2";
+}
+.fa-bell-o:before {
+  content: "\f0a2";
+}
+.fa-coffee:before {
+  content: "\f0f4";
+}
+.fa-cutlery:before {
+  content: "\f0f5";
+}
+.fa-file-text-o:before {
+  content: "\f0f6";
+}
+.fa-building-o:before {
+  content: "\f0f7";
+}
+.fa-hospital-o:before {
+  content: "\f0f8";
+}
+.fa-ambulance:before {
+  content: "\f0f9";
+}
+.fa-medkit:before {
+  content: "\f0fa";
+}
+.fa-fighter-jet:before {
+  content: "\f0fb";
+}
+.fa-beer:before {
+  content: "\f0fc";
+}
+.fa-h-square:before {
+  content: "\f0fd";
+}
+.fa-plus-square:before {
+  content: "\f0fe";
+}
+.fa-angle-double-left:before {
+  content: "\f100";
+}
+.fa-angle-double-right:before {
+  content: "\f101";
+}
+.fa-angle-double-up:before {
+  content: "\f102";
+}
+.fa-angle-double-down:before {
+  content: "\f103";
+}
+.fa-angle-left:before {
+  content: "\f104";
+}
+.fa-angle-right:before {
+  content: "\f105";
+}
+.fa-angle-up:before {
+  content: "\f106";
+}
+.fa-angle-down:before {
+  content: "\f107";
+}
+.fa-desktop:before {
+  content: "\f108";
+}
+.fa-laptop:before {
+  content: "\f109";
+}
+.fa-tablet:before {
+  content: "\f10a";
+}
+.fa-mobile-phone:before,
+.fa-mobile:before {
+  content: "\f10b";
+}
+.fa-circle-o:before {
+  content: "\f10c";
+}
+.fa-quote-left:before {
+  content: "\f10d";
+}
+.fa-quote-right:before {
+  content: "\f10e";
+}
+.fa-spinner:before {
+  content: "\f110";
+}
+.fa-circle:before {
+  content: "\f111";
+}
+.fa-mail-reply:before,
+.fa-reply:before {
+  content: "\f112";
+}
+.fa-github-alt:before {
+  content: "\f113";
+}
+.fa-folder-o:before {
+  content: "\f114";
+}
+.fa-folder-open-o:before {
+  content: "\f115";
+}
+.fa-smile-o:before {
+  content: "\f118";
+}
+.fa-frown-o:before {
+  content: "\f119";
+}
+.fa-meh-o:before {
+  content: "\f11a";
+}
+.fa-gamepad:before {
+  content: "\f11b";
+}
+.fa-keyboard-o:before {
+  content: "\f11c";
+}
+.fa-flag-o:before {
+  content: "\f11d";
+}
+.fa-flag-checkered:before {
+  content: "\f11e";
+}
+.fa-terminal:before {
+  content: "\f120";
+}
+.fa-code:before {
+  content: "\f121";
+}
+.fa-mail-reply-all:before,
+.fa-reply-all:before {
+  content: "\f122";
+}
+.fa-star-half-empty:before,
+.fa-star-half-full:before,
+.fa-star-half-o:before {
+  content: "\f123";
+}
+.fa-location-arrow:before {
+  content: "\f124";
+}
+.fa-crop:before {
+  content: "\f125";
+}
+.fa-code-fork:before {
+  content: "\f126";
+}
+.fa-unlink:before,
+.fa-chain-broken:before {
+  content: "\f127";
+}
+.fa-question:before {
+  content: "\f128";
+}
+.fa-info:before {
+  content: "\f129";
+}
+.fa-exclamation:before {
+  content: "\f12a";
+}
+.fa-superscript:before {
+  content: "\f12b";
+}
+.fa-subscript:before {
+  content: "\f12c";
+}
+.fa-eraser:before {
+  content: "\f12d";
+}
+.fa-puzzle-piece:before {
+  content: "\f12e";
+}
+.fa-microphone:before {
+  content: "\f130";
+}
+.fa-microphone-slash:before {
+  content: "\f131";
+}
+.fa-shield:before {
+  content: "\f132";
+}
+.fa-calendar-o:before {
+  content: "\f133";
+}
+.fa-fire-extinguisher:before {
+  content: "\f134";
+}
+.fa-rocket:before {
+  content: "\f135";
+}
+.fa-maxcdn:before {
+  content: "\f136";
+}
+.fa-chevron-circle-left:before {
+  content: "\f137";
+}
+.fa-chevron-circle-right:before {
+  content: "\f138";
+}
+.fa-chevron-circle-up:before {
+  content: "\f139";
+}
+.fa-chevron-circle-down:before {
+  content: "\f13a";
+}
+.fa-html5:before {
+  content: "\f13b";
+}
+.fa-css3:before {
+  content: "\f13c";
+}
+.fa-anchor:before {
+  content: "\f13d";
+}
+.fa-unlock-alt:before {
+  content: "\f13e";
+}
+.fa-bullseye:before {
+  content: "\f140";
+}
+.fa-ellipsis-h:before {
+  content: "\f141";
+}
+.fa-ellipsis-v:before {
+  content: "\f142";
+}
+.fa-rss-square:before {
+  content: "\f143";
+}
+.fa-play-circle:before {
+  content: "\f144";
+}
+.fa-ticket:before {
+  content: "\f145";
+}
+.fa-minus-square:before {
+  content: "\f146";
+}
+.fa-minus-square-o:before {
+  content: "\f147";
+}
+.fa-level-up:before {
+  content: "\f148";
+}
+.fa-level-down:before {
+  content: "\f149";
+}
+.fa-check-square:before {
+  content: "\f14a";
+}
+.fa-pencil-square:before {
+  content: "\f14b";
+}
+.fa-external-link-square:before {
+  content: "\f14c";
+}
+.fa-share-square:before {
+  content: "\f14d";
+}
+.fa-compass:before {
+  content: "\f14e";
+}
+.fa-toggle-down:before,
+.fa-caret-square-o-down:before {
+  content: "\f150";
+}
+.fa-toggle-up:before,
+.fa-caret-square-o-up:before {
+  content: "\f151";
+}
+.fa-toggle-right:before,
+.fa-caret-square-o-right:before {
+  content: "\f152";
+}
+.fa-euro:before,
+.fa-eur:before {
+  content: "\f153";
+}
+.fa-gbp:before {
+  content: "\f154";
+}
+.fa-dollar:before,
+.fa-usd:before {
+  content: "\f155";
+}
+.fa-rupee:before,
+.fa-inr:before {
+  content: "\f156";
+}
+.fa-cny:before,
+.fa-rmb:before,
+.fa-yen:before,
+.fa-jpy:before {
+  content: "\f157";
+}
+.fa-ruble:before,
+.fa-rouble:before,
+.fa-rub:before {
+  content: "\f158";
+}
+.fa-won:before,
+.fa-krw:before {
+  content: "\f159";
+}
+.fa-bitcoin:before,
+.fa-btc:before {
+  content: "\f15a";
+}
+.fa-file:before {
+  content: "\f15b";
+}
+.fa-file-text:before {
+  content: "\f15c";
+}
+.fa-sort-alpha-asc:before {
+  content: "\f15d";
+}
+.fa-sort-alpha-desc:before {
+  content: "\f15e";
+}
+.fa-sort-amount-asc:before {
+  content: "\f160";
+}
+.fa-sort-amount-desc:before {
+  content: "\f161";
+}
+.fa-sort-numeric-asc:before {
+  content: "\f162";
+}
+.fa-sort-numeric-desc:before {
+  content: "\f163";
+}
+.fa-thumbs-up:before {
+  content: "\f164";
+}
+.fa-thumbs-down:before {
+  content: "\f165";
+}
+.fa-youtube-square:before {
+  content: "\f166";
+}
+.fa-youtube:before {
+  content: "\f167";
+}
+.fa-xing:before {
+  content: "\f168";
+}
+.fa-xing-square:before {
+  content: "\f169";
+}
+.fa-youtube-play:before {
+  content: "\f16a";
+}
+.fa-dropbox:before {
+  content: "\f16b";
+}
+.fa-stack-overflow:before {
+  content: "\f16c";
+}
+.fa-instagram:before {
+  content: "\f16d";
+}
+.fa-flickr:before {
+  content: "\f16e";
+}
+.fa-adn:before {
+  content: "\f170";
+}
+.fa-bitbucket:before {
+  content: "\f171";
+}
+.fa-bitbucket-square:before {
+  content: "\f172";
+}
+.fa-tumblr:before {
+  content: "\f173";
+}
+.fa-tumblr-square:before {
+  content: "\f174";
+}
+.fa-long-arrow-down:before {
+  content: "\f175";
+}
+.fa-long-arrow-up:before {
+  content: "\f176";
+}
+.fa-long-arrow-left:before {
+  content: "\f177";
+}
+.fa-long-arrow-right:before {
+  content: "\f178";
+}
+.fa-apple:before {
+  content: "\f179";
+}
+.fa-windows:before {
+  content: "\f17a";
+}
+.fa-android:before {
+  content: "\f17b";
+}
+.fa-linux:before {
+  content: "\f17c";
+}
+.fa-dribbble:before {
+  content: "\f17d";
+}
+.fa-skype:before {
+  content: "\f17e";
+}
+.fa-foursquare:before {
+  content: "\f180";
+}
+.fa-trello:before {
+  content: "\f181";
+}
+.fa-female:before {
+  content: "\f182";
+}
+.fa-male:before {
+  content: "\f183";
+}
+.fa-gittip:before,
+.fa-gratipay:before {
+  content: "\f184";
+}
+.fa-sun-o:before {
+  content: "\f185";
+}
+.fa-moon-o:before {
+  content: "\f186";
+}
+.fa-archive:before {
+  content: "\f187";
+}
+.fa-bug:before {
+  content: "\f188";
+}
+.fa-vk:before {
+  content: "\f189";
+}
+.fa-weibo:before {
+  content: "\f18a";
+}
+.fa-renren:before {
+  content: "\f18b";
+}
+.fa-pagelines:before {
+  content: "\f18c";
+}
+.fa-stack-exchange:before {
+  content: "\f18d";
+}
+.fa-arrow-circle-o-right:before {
+  content: "\f18e";
+}
+.fa-arrow-circle-o-left:before {
+  content: "\f190";
+}
+.fa-toggle-left:before,
+.fa-caret-square-o-left:before {
+  content: "\f191";
+}
+.fa-dot-circle-o:before {
+  content: "\f192";
+}
+.fa-wheelchair:before {
+  content: "\f193";
+}
+.fa-vimeo-square:before {
+  content: "\f194";
+}
+.fa-turkish-lira:before,
+.fa-try:before {
+  content: "\f195";
+}
+.fa-plus-square-o:before {
+  content: "\f196";
+}
+.fa-space-shuttle:before {
+  content: "\f197";
+}
+.fa-slack:before {
+  content: "\f198";
+}
+.fa-envelope-square:before {
+  content: "\f199";
+}
+.fa-wordpress:before {
+  content: "\f19a";
+}
+.fa-openid:before {
+  content: "\f19b";
+}
+.fa-institution:before,
+.fa-bank:before,
+.fa-university:before {
+  content: "\f19c";
+}
+.fa-mortar-board:before,
+.fa-graduation-cap:before {
+  content: "\f19d";
+}
+.fa-yahoo:before {
+  content: "\f19e";
+}
+.fa-google:before {
+  content: "\f1a0";
+}
+.fa-reddit:before {
+  content: "\f1a1";
+}
+.fa-reddit-square:before {
+  content: "\f1a2";
+}
+.fa-stumbleupon-circle:before {
+  content: "\f1a3";
+}
+.fa-stumbleupon:before {
+  content: "\f1a4";
+}
+.fa-delicious:before {
+  content: "\f1a5";
+}
+.fa-digg:before {
+  content: "\f1a6";
+}
+.fa-pied-piper-pp:before {
+  content: "\f1a7";
+}
+.fa-pied-piper-alt:before {
+  content: "\f1a8";
+}
+.fa-drupal:before {
+  content: "\f1a9";
+}
+.fa-joomla:before {
+  content: "\f1aa";
+}
+.fa-language:before {
+  content: "\f1ab";
+}
+.fa-fax:before {
+  content: "\f1ac";
+}
+.fa-building:before {
+  content: "\f1ad";
+}
+.fa-child:before {
+  content: "\f1ae";
+}
+.fa-paw:before {
+  content: "\f1b0";
+}
+.fa-spoon:before {
+  content: "\f1b1";
+}
+.fa-cube:before {
+  content: "\f1b2";
+}
+.fa-cubes:before {
+  content: "\f1b3";
+}
+.fa-behance:before {
+  content: "\f1b4";
+}
+.fa-behance-square:before {
+  content: "\f1b5";
+}
+.fa-steam:before {
+  content: "\f1b6";
+}
+.fa-steam-square:before {
+  content: "\f1b7";
+}
+.fa-recycle:before {
+  content: "\f1b8";
+}
+.fa-automobile:before,
+.fa-car:before {
+  content: "\f1b9";
+}
+.fa-cab:before,
+.fa-taxi:before {
+  content: "\f1ba";
+}
+.fa-tree:before {
+  content: "\f1bb";
+}
+.fa-spotify:before {
+  content: "\f1bc";
+}
+.fa-deviantart:before {
+  content: "\f1bd";
+}
+.fa-soundcloud:before {
+  content: "\f1be";
+}
+.fa-database:before {
+  content: "\f1c0";
+}
+.fa-file-pdf-o:before {
+  content: "\f1c1";
+}
+.fa-file-word-o:before {
+  content: "\f1c2";
+}
+.fa-file-excel-o:before {
+  content: "\f1c3";
+}
+.fa-file-powerpoint-o:before {
+  content: "\f1c4";
+}
+.fa-file-photo-o:before,
+.fa-file-picture-o:before,
+.fa-file-image-o:before {
+  content: "\f1c5";
+}
+.fa-file-zip-o:before,
+.fa-file-archive-o:before {
+  content: "\f1c6";
+}
+.fa-file-sound-o:before,
+.fa-file-audio-o:before {
+  content: "\f1c7";
+}
+.fa-file-movie-o:before,
+.fa-file-video-o:before {
+  content: "\f1c8";
+}
+.fa-file-code-o:before {
+  content: "\f1c9";
+}
+.fa-vine:before {
+  content: "\f1ca";
+}
+.fa-codepen:before {
+  content: "\f1cb";
+}
+.fa-jsfiddle:before {
+  content: "\f1cc";
+}
+.fa-life-bouy:before,
+.fa-life-buoy:before,
+.fa-life-saver:before,
+.fa-support:before,
+.fa-life-ring:before {
+  content: "\f1cd";
+}
+.fa-circle-o-notch:before {
+  content: "\f1ce";
+}
+.fa-ra:before,
+.fa-resistance:before,
+.fa-rebel:before {
+  content: "\f1d0";
+}
+.fa-ge:before,
+.fa-empire:before {
+  content: "\f1d1";
+}
+.fa-git-square:before {
+  content: "\f1d2";
+}
+.fa-git:before {
+  content: "\f1d3";
+}
+.fa-y-combinator-square:before,
+.fa-yc-square:before,
+.fa-hacker-news:before {
+  content: "\f1d4";
+}
+.fa-tencent-weibo:before {
+  content: "\f1d5";
+}
+.fa-qq:before {
+  content: "\f1d6";
+}
+.fa-wechat:before,
+.fa-weixin:before {
+  content: "\f1d7";
+}
+.fa-send:before,
+.fa-paper-plane:before {
+  content: "\f1d8";
+}
+.fa-send-o:before,
+.fa-paper-plane-o:before {
+  content: "\f1d9";
+}
+.fa-history:before {
+  content: "\f1da";
+}
+.fa-circle-thin:before {
+  content: "\f1db";
+}
+.fa-header:before {
+  content: "\f1dc";
+}
+.fa-paragraph:before {
+  content: "\f1dd";
+}
+.fa-sliders:before {
+  content: "\f1de";
+}
+.fa-share-alt:before {
+  content: "\f1e0";
+}
+.fa-share-alt-square:before {
+  content: "\f1e1";
+}
+.fa-bomb:before {
+  content: "\f1e2";
+}
+.fa-soccer-ball-o:before,
+.fa-futbol-o:before {
+  content: "\f1e3";
+}
+.fa-tty:before {
+  content: "\f1e4";
+}
+.fa-binoculars:before {
+  content: "\f1e5";
+}
+.fa-plug:before {
+  content: "\f1e6";
+}
+.fa-slideshare:before {
+  content: "\f1e7";
+}
+.fa-twitch:before {
+  content: "\f1e8";
+}
+.fa-yelp:before {
+  content: "\f1e9";
+}
+.fa-newspaper-o:before {
+  content: "\f1ea";
+}
+.fa-wifi:before {
+  content: "\f1eb";
+}
+.fa-calculator:before {
+  content: "\f1ec";
+}
+.fa-paypal:before {
+  content: "\f1ed";
+}
+.fa-google-wallet:before {
+  content: "\f1ee";
+}
+.fa-cc-visa:before {
+  content: "\f1f0";
+}
+.fa-cc-mastercard:before {
+  content: "\f1f1";
+}
+.fa-cc-discover:before {
+  content: "\f1f2";
+}
+.fa-cc-amex:before {
+  content: "\f1f3";
+}
+.fa-cc-paypal:before {
+  content: "\f1f4";
+}
+.fa-cc-stripe:before {
+  content: "\f1f5";
+}
+.fa-bell-slash:before {
+  content: "\f1f6";
+}
+.fa-bell-slash-o:before {
+  content: "\f1f7";
+}
+.fa-trash:before {
+  content: "\f1f8";
+}
+.fa-copyright:before {
+  content: "\f1f9";
+}
+.fa-at:before {
+  content: "\f1fa";
+}
+.fa-eyedropper:before {
+  content: "\f1fb";
+}
+.fa-paint-brush:before {
+  content: "\f1fc";
+}
+.fa-birthday-cake:before {
+  content: "\f1fd";
+}
+.fa-area-chart:before {
+  content: "\f1fe";
+}
+.fa-pie-chart:before {
+  content: "\f200";
+}
+.fa-line-chart:before {
+  content: "\f201";
+}
+.fa-lastfm:before {
+  content: "\f202";
+}
+.fa-lastfm-square:before {
+  content: "\f203";
+}
+.fa-toggle-off:before {
+  content: "\f204";
+}
+.fa-toggle-on:before {
+  content: "\f205";
+}
+.fa-bicycle:before {
+  content: "\f206";
+}
+.fa-bus:before {
+  content: "\f207";
+}
+.fa-ioxhost:before {
+  content: "\f208";
+}
+.fa-angellist:before {
+  content: "\f209";
+}
+.fa-cc:before {
+  content: "\f20a";
+}
+.fa-shekel:before,
+.fa-sheqel:before,
+.fa-ils:before {
+  content: "\f20b";
+}
+.fa-meanpath:before {
+  content: "\f20c";
+}
+.fa-buysellads:before {
+  content: "\f20d";
+}
+.fa-connectdevelop:before {
+  content: "\f20e";
+}
+.fa-dashcube:before {
+  content: "\f210";
+}
+.fa-forumbee:before {
+  content: "\f211";
+}
+.fa-leanpub:before {
+  content: "\f212";
+}
+.fa-sellsy:before {
+  content: "\f213";
+}
+.fa-shirtsinbulk:before {
+  content: "\f214";
+}
+.fa-simplybuilt:before {
+  content: "\f215";
+}
+.fa-skyatlas:before {
+  content: "\f216";
+}
+.fa-cart-plus:before {
+  content: "\f217";
+}
+.fa-cart-arrow-down:before {
+  content: "\f218";
+}
+.fa-diamond:before {
+  content: "\f219";
+}
+.fa-ship:before {
+  content: "\f21a";
+}
+.fa-user-secret:before {
+  content: "\f21b";
+}
+.fa-motorcycle:before {
+  content: "\f21c";
+}
+.fa-street-view:before {
+  content: "\f21d";
+}
+.fa-heartbeat:before {
+  content: "\f21e";
+}
+.fa-venus:before {
+  content: "\f221";
+}
+.fa-mars:before {
+  content: "\f222";
+}
+.fa-mercury:before {
+  content: "\f223";
+}
+.fa-intersex:before,
+.fa-transgender:before {
+  content: "\f224";
+}
+.fa-transgender-alt:before {
+  content: "\f225";
+}
+.fa-venus-double:before {
+  content: "\f226";
+}
+.fa-mars-double:before {
+  content: "\f227";
+}
+.fa-venus-mars:before {
+  content: "\f228";
+}
+.fa-mars-stroke:before {
+  content: "\f229";
+}
+.fa-mars-stroke-v:before {
+  content: "\f22a";
+}
+.fa-mars-stroke-h:before {
+  content: "\f22b";
+}
+.fa-neuter:before {
+  content: "\f22c";
+}
+.fa-genderless:before {
+  content: "\f22d";
+}
+.fa-facebook-official:before {
+  content: "\f230";
+}
+.fa-pinterest-p:before {
+  content: "\f231";
+}
+.fa-whatsapp:before {
+  content: "\f232";
+}
+.fa-server:before {
+  content: "\f233";
+}
+.fa-user-plus:before {
+  content: "\f234";
+}
+.fa-user-times:before {
+  content: "\f235";
+}
+.fa-hotel:before,
+.fa-bed:before {
+  content: "\f236";
+}
+.fa-viacoin:before {
+  content: "\f237";
+}
+.fa-train:before {
+  content: "\f238";
+}
+.fa-subway:before {
+  content: "\f239";
+}
+.fa-medium:before {
+  content: "\f23a";
+}
+.fa-yc:before,
+.fa-y-combinator:before {
+  content: "\f23b";
+}
+.fa-optin-monster:before {
+  content: "\f23c";
+}
+.fa-opencart:before {
+  content: "\f23d";
+}
+.fa-expeditedssl:before {
+  content: "\f23e";
+}
+.fa-battery-4:before,
+.fa-battery:before,
+.fa-battery-full:before {
+  content: "\f240";
+}
+.fa-battery-3:before,
+.fa-battery-three-quarters:before {
+  content: "\f241";
+}
+.fa-battery-2:before,
+.fa-battery-half:before {
+  content: "\f242";
+}
+.fa-battery-1:before,
+.fa-battery-quarter:before {
+  content: "\f243";
+}
+.fa-battery-0:before,
+.fa-battery-empty:before {
+  content: "\f244";
+}
+.fa-mouse-pointer:before {
+  content: "\f245";
+}
+.fa-i-cursor:before {
+  content: "\f246";
+}
+.fa-object-group:before {
+  content: "\f247";
+}
+.fa-object-ungroup:before {
+  content: "\f248";
+}
+.fa-sticky-note:before {
+  content: "\f249";
+}
+.fa-sticky-note-o:before {
+  content: "\f24a";
+}
+.fa-cc-jcb:before {
+  content: "\f24b";
+}
+.fa-cc-diners-club:before {
+  content: "\f24c";
+}
+.fa-clone:before {
+  content: "\f24d";
+}
+.fa-balance-scale:before {
+  content: "\f24e";
+}
+.fa-hourglass-o:before {
+  content: "\f250";
+}
+.fa-hourglass-1:before,
+.fa-hourglass-start:before {
+  content: "\f251";
+}
+.fa-hourglass-2:before,
+.fa-hourglass-half:before {
+  content: "\f252";
+}
+.fa-hourglass-3:before,
+.fa-hourglass-end:before {
+  content: "\f253";
+}
+.fa-hourglass:before {
+  content: "\f254";
+}
+.fa-hand-grab-o:before,
+.fa-hand-rock-o:before {
+  content: "\f255";
+}
+.fa-hand-stop-o:before,
+.fa-hand-paper-o:before {
+  content: "\f256";
+}
+.fa-hand-scissors-o:before {
+  content: "\f257";
+}
+.fa-hand-lizard-o:before {
+  content: "\f258";
+}
+.fa-hand-spock-o:before {
+  content: "\f259";
+}
+.fa-hand-pointer-o:before {
+  content: "\f25a";
+}
+.fa-hand-peace-o:before {
+  content: "\f25b";
+}
+.fa-trademark:before {
+  content: "\f25c";
+}
+.fa-registered:before {
+  content: "\f25d";
+}
+.fa-creative-commons:before {
+  content: "\f25e";
+}
+.fa-gg:before {
+  content: "\f260";
+}
+.fa-gg-circle:before {
+  content: "\f261";
+}
+.fa-tripadvisor:before {
+  content: "\f262";
+}
+.fa-odnoklassniki:before {
+  content: "\f263";
+}
+.fa-odnoklassniki-square:before {
+  content: "\f264";
+}
+.fa-get-pocket:before {
+  content: "\f265";
+}
+.fa-wikipedia-w:before {
+  content: "\f266";
+}
+.fa-safari:before {
+  content: "\f267";
+}
+.fa-chrome:before {
+  content: "\f268";
+}
+.fa-firefox:before {
+  content: "\f269";
+}
+.fa-opera:before {
+  content: "\f26a";
+}
+.fa-internet-explorer:before {
+  content: "\f26b";
+}
+.fa-tv:before,
+.fa-television:before {
+  content: "\f26c";
+}
+.fa-contao:before {
+  content: "\f26d";
+}
+.fa-500px:before {
+  content: "\f26e";
+}
+.fa-amazon:before {
+  content: "\f270";
+}
+.fa-calendar-plus-o:before {
+  content: "\f271";
+}
+.fa-calendar-minus-o:before {
+  content: "\f272";
+}
+.fa-calendar-times-o:before {
+  content: "\f273";
+}
+.fa-calendar-check-o:before {
+  content: "\f274";
+}
+.fa-industry:before {
+  content: "\f275";
+}
+.fa-map-pin:before {
+  content: "\f276";
+}
+.fa-map-signs:before {
+  content: "\f277";
+}
+.fa-map-o:before {
+  content: "\f278";
+}
+.fa-map:before {
+  content: "\f279";
+}
+.fa-commenting:before {
+  content: "\f27a";
+}
+.fa-commenting-o:before {
+  content: "\f27b";
+}
+.fa-houzz:before {
+  content: "\f27c";
+}
+.fa-vimeo:before {
+  content: "\f27d";
+}
+.fa-black-tie:before {
+  content: "\f27e";
+}
+.fa-fonticons:before {
+  content: "\f280";
+}
+.fa-reddit-alien:before {
+  content: "\f281";
+}
+.fa-edge:before {
+  content: "\f282";
+}
+.fa-credit-card-alt:before {
+  content: "\f283";
+}
+.fa-codiepie:before {
+  content: "\f284";
+}
+.fa-modx:before {
+  content: "\f285";
+}
+.fa-fort-awesome:before {
+  content: "\f286";
+}
+.fa-usb:before {
+  content: "\f287";
+}
+.fa-product-hunt:before {
+  content: "\f288";
+}
+.fa-mixcloud:before {
+  content: "\f289";
+}
+.fa-scribd:before {
+  content: "\f28a";
+}
+.fa-pause-circle:before {
+  content: "\f28b";
+}
+.fa-pause-circle-o:before {
+  content: "\f28c";
+}
+.fa-stop-circle:before {
+  content: "\f28d";
+}
+.fa-stop-circle-o:before {
+  content: "\f28e";
+}
+.fa-shopping-bag:before {
+  content: "\f290";
+}
+.fa-shopping-basket:before {
+  content: "\f291";
+}
+.fa-hashtag:before {
+  content: "\f292";
+}
+.fa-bluetooth:before {
+  content: "\f293";
+}
+.fa-bluetooth-b:before {
+  content: "\f294";
+}
+.fa-percent:before {
+  content: "\f295";
+}
+.fa-gitlab:before {
+  content: "\f296";
+}
+.fa-wpbeginner:before {
+  content: "\f297";
+}
+.fa-wpforms:before {
+  content: "\f298";
+}
+.fa-envira:before {
+  content: "\f299";
+}
+.fa-universal-access:before {
+  content: "\f29a";
+}
+.fa-wheelchair-alt:before {
+  content: "\f29b";
+}
+.fa-question-circle-o:before {
+  content: "\f29c";
+}
+.fa-blind:before {
+  content: "\f29d";
+}
+.fa-audio-description:before {
+  content: "\f29e";
+}
+.fa-volume-control-phone:before {
+  content: "\f2a0";
+}
+.fa-braille:before {
+  content: "\f2a1";
+}
+.fa-assistive-listening-systems:before {
+  content: "\f2a2";
+}
+.fa-asl-interpreting:before,
+.fa-american-sign-language-interpreting:before {
+  content: "\f2a3";
+}
+.fa-deafness:before,
+.fa-hard-of-hearing:before,
+.fa-deaf:before {
+  content: "\f2a4";
+}
+.fa-glide:before {
+  content: "\f2a5";
+}
+.fa-glide-g:before {
+  content: "\f2a6";
+}
+.fa-signing:before,
+.fa-sign-language:before {
+  content: "\f2a7";
+}
+.fa-low-vision:before {
+  content: "\f2a8";
+}
+.fa-viadeo:before {
+  content: "\f2a9";
+}
+.fa-viadeo-square:before {
+  content: "\f2aa";
+}
+.fa-snapchat:before {
+  content: "\f2ab";
+}
+.fa-snapchat-ghost:before {
+  content: "\f2ac";
+}
+.fa-snapchat-square:before {
+  content: "\f2ad";
+}
+.fa-pied-piper:before {
+  content: "\f2ae";
+}
+.fa-first-order:before {
+  content: "\f2b0";
+}
+.fa-yoast:before {
+  content: "\f2b1";
+}
+.fa-themeisle:before {
+  content: "\f2b2";
+}
+.fa-google-plus-circle:before,
+.fa-google-plus-official:before {
+  content: "\f2b3";
+}
+.fa-fa:before,
+.fa-font-awesome:before {
+  content: "\f2b4";
+}
+.fa-handshake-o:before {
+  content: "\f2b5";
+}
+.fa-envelope-open:before {
+  content: "\f2b6";
+}
+.fa-envelope-open-o:before {
+  content: "\f2b7";
+}
+.fa-linode:before {
+  content: "\f2b8";
+}
+.fa-address-book:before {
+  content: "\f2b9";
+}
+.fa-address-book-o:before {
+  content: "\f2ba";
+}
+.fa-vcard:before,
+.fa-address-card:before {
+  content: "\f2bb";
+}
+.fa-vcard-o:before,
+.fa-address-card-o:before {
+  content: "\f2bc";
+}
+.fa-user-circle:before {
+  content: "\f2bd";
+}
+.fa-user-circle-o:before {
+  content: "\f2be";
+}
+.fa-user-o:before {
+  content: "\f2c0";
+}
+.fa-id-badge:before {
+  content: "\f2c1";
+}
+.fa-drivers-license:before,
+.fa-id-card:before {
+  content: "\f2c2";
+}
+.fa-drivers-license-o:before,
+.fa-id-card-o:before {
+  content: "\f2c3";
+}
+.fa-quora:before {
+  content: "\f2c4";
+}
+.fa-free-code-camp:before {
+  content: "\f2c5";
+}
+.fa-telegram:before {
+  content: "\f2c6";
+}
+.fa-thermometer-4:before,
+.fa-thermometer:before,
+.fa-thermometer-full:before {
+  content: "\f2c7";
+}
+.fa-thermometer-3:before,
+.fa-thermometer-three-quarters:before {
+  content: "\f2c8";
+}
+.fa-thermometer-2:before,
+.fa-thermometer-half:before {
+  content: "\f2c9";
+}
+.fa-thermometer-1:before,
+.fa-thermometer-quarter:before {
+  content: "\f2ca";
+}
+.fa-thermometer-0:before,
+.fa-thermometer-empty:before {
+  content: "\f2cb";
+}
+.fa-shower:before {
+  content: "\f2cc";
+}
+.fa-bathtub:before,
+.fa-s15:before,
+.fa-bath:before {
+  content: "\f2cd";
+}
+.fa-podcast:before {
+  content: "\f2ce";
+}
+.fa-window-maximize:before {
+  content: "\f2d0";
+}
+.fa-window-minimize:before {
+  content: "\f2d1";
+}
+.fa-window-restore:before {
+  content: "\f2d2";
+}
+.fa-times-rectangle:before,
+.fa-window-close:before {
+  content: "\f2d3";
+}
+.fa-times-rectangle-o:before,
+.fa-window-close-o:before {
+  content: "\f2d4";
+}
+.fa-bandcamp:before {
+  content: "\f2d5";
+}
+.fa-grav:before {
+  content: "\f2d6";
+}
+.fa-etsy:before {
+  content: "\f2d7";
+}
+.fa-imdb:before {
+  content: "\f2d8";
+}
+.fa-ravelry:before {
+  content: "\f2d9";
+}
+.fa-eercast:before {
+  content: "\f2da";
+}
+.fa-microchip:before {
+  content: "\f2db";
+}
+.fa-snowflake-o:before {
+  content: "\f2dc";
+}
+.fa-superpowers:before {
+  content: "\f2dd";
+}
+.fa-wpexplorer:before {
+  content: "\f2de";
+}
+.fa-meetup:before {
+  content: "\f2e0";
+}
+.sr-only {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  padding: 0;
+  margin: -1px;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+}
+.sr-only-focusable:active,
+.sr-only-focusable:focus {
+  position: static;
+  width: auto;
+  height: auto;
+  margin: 0;
+  overflow: visible;
+  clip: auto;
+}
+.sr-only-focusable:active,
+.sr-only-focusable:focus {
+  position: static;
+  width: auto;
+  height: auto;
+  margin: 0;
+  overflow: visible;
+  clip: auto;
+}
+.text-overflow-pf {
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  word-wrap: normal;
+}
+.alert {
+  border-width: 1px;
+  padding-left: 47px;
+  padding-right: 14px;
+  position: relative;
+  word-wrap: break-word;
+}
+.alert .alert-link {
+  color: #0088ce;
+}
+.alert .alert-link:hover {
+  color: #00659c;
+}
+.alert > .btn.pull-right {
+  margin-top: -3px;
+}
+.alert > .pficon {
+  font-size: 22px;
+  position: absolute;
+  left: 13px;
+  top: 10px;
+}
+.alert .close {
+  opacity: 0.85;
+  filter: alpha(opacity=85);
+}
+.alert .close:hover,
+.alert .close:focus {
+  opacity: 1;
+  filter: alpha(opacity=100);
+}
+.alert .pficon-info {
+  color: #4d5258;
+}
+.alert-dismissable {
+  padding-right: 28px;
+}
+.alert-dismissable .close {
+  right: -13px;
+  top: 1px;
+}
+.badge {
+  margin-left: 6px;
+}
+.nav-pills > li > a > .badge {
+  margin-left: 6px;
+}
+.breadcrumb {
+  padding-left: 0;
+}
+.breadcrumb > .active strong {
+  font-weight: 600;
+}
+.breadcrumb > li {
+  display: inline;
+  /* IE8 */
+}
+.breadcrumb > li + li:before {
+  color: #9c9c9c;
+  content: "\f105";
+  font-family: "FontAwesome";
+  font-size: 11px;
+  padding: 0 9px 0 7px;
+}
+.btn {
+  -webkit-box-shadow: 0 2px 3px rgba(3, 3, 3, 0.1);
+  box-shadow: 0 2px 3px rgba(3, 3, 3, 0.1);
+}
+.btn:active {
+  -webkit-box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
+  box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
+}
+.btn.disabled,
+.btn[disabled],
+fieldset[disabled] .btn {
+  background-color: #fafafa !important;
+  background-image: none !important;
+  border-color: #d1d1d1 !important;
+  color: #8b8d8f !important;
+  opacity: 1;
+}
+.btn.disabled:active,
+.btn[disabled]:active,
+fieldset[disabled] .btn:active {
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+.btn.disabled.btn-link,
+.btn[disabled].btn-link,
+fieldset[disabled] .btn.btn-link {
+  background-color: transparent !important;
+  border: 0;
+}
+.btn-danger {
+  background-color: #a30000;
+  background-image: -webkit-linear-gradient(top, #cc0000 0%, #a30000 100%);
+  background-image: -o-linear-gradient(top, #cc0000 0%, #a30000 100%);
+  background-image: linear-gradient(to bottom, #cc0000 0%, #a30000 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffcc0000', endColorstr='#ffa30000', GradientType=0);
+  border-color: #8b0000;
+  color: #fff;
+}
+.btn-danger:hover,
+.btn-danger:focus,
+.btn-danger:active,
+.btn-danger.active,
+.open .dropdown-toggle.btn-danger {
+  background-color: #a30000;
+  background-image: none;
+  border-color: #8b0000;
+  color: #fff;
+}
+.btn-danger:active,
+.btn-danger.active,
+.open .dropdown-toggle.btn-danger {
+  background-image: none;
+}
+.btn-danger:active:hover,
+.btn-danger.active:hover,
+.open .dropdown-toggle.btn-danger:hover,
+.btn-danger:active:focus,
+.btn-danger.active:focus,
+.open .dropdown-toggle.btn-danger:focus,
+.btn-danger:active.focus,
+.btn-danger.active.focus,
+.open .dropdown-toggle.btn-danger.focus {
+  background-color: #8a0000;
+  border-color: #670000;
+}
+.btn-danger.disabled,
+.btn-danger[disabled],
+fieldset[disabled] .btn-danger,
+.btn-danger.disabled:hover,
+.btn-danger[disabled]:hover,
+fieldset[disabled] .btn-danger:hover,
+.btn-danger.disabled:focus,
+.btn-danger[disabled]:focus,
+fieldset[disabled] .btn-danger:focus,
+.btn-danger.disabled:active,
+.btn-danger[disabled]:active,
+fieldset[disabled] .btn-danger:active,
+.btn-danger.disabled.active,
+.btn-danger[disabled].active,
+fieldset[disabled] .btn-danger.active {
+  background-color: #a30000;
+  border-color: #8b0000;
+}
+.btn-default {
+  background-color: #f1f1f1;
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+  border-color: #bbb;
+  color: #4d5258;
+}
+.btn-default:hover,
+.btn-default:focus,
+.btn-default:active,
+.btn-default.active,
+.open .dropdown-toggle.btn-default {
+  background-color: #f1f1f1;
+  background-image: none;
+  border-color: #bbb;
+  color: #4d5258;
+}
+.btn-default:active,
+.btn-default.active,
+.open .dropdown-toggle.btn-default {
+  background-image: none;
+}
+.btn-default:active:hover,
+.btn-default.active:hover,
+.open .dropdown-toggle.btn-default:hover,
+.btn-default:active:focus,
+.btn-default.active:focus,
+.open .dropdown-toggle.btn-default:focus,
+.btn-default:active.focus,
+.btn-default.active.focus,
+.open .dropdown-toggle.btn-default.focus {
+  background-color: #e5e5e5;
+  border-color: #a9a9a9;
+}
+.btn-default.disabled,
+.btn-default[disabled],
+fieldset[disabled] .btn-default,
+.btn-default.disabled:hover,
+.btn-default[disabled]:hover,
+fieldset[disabled] .btn-default:hover,
+.btn-default.disabled:focus,
+.btn-default[disabled]:focus,
+fieldset[disabled] .btn-default:focus,
+.btn-default.disabled:active,
+.btn-default[disabled]:active,
+fieldset[disabled] .btn-default:active,
+.btn-default.disabled.active,
+.btn-default[disabled].active,
+fieldset[disabled] .btn-default.active {
+  background-color: #f1f1f1;
+  border-color: #bbb;
+}
+.btn-link,
+.btn-link:active {
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+.btn-primary {
+  background-color: #0088ce;
+  background-image: -webkit-linear-gradient(top, #39a5dc 0%, #0088ce 100%);
+  background-image: -o-linear-gradient(top, #39a5dc 0%, #0088ce 100%);
+  background-image: linear-gradient(to bottom, #39a5dc 0%, #0088ce 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff39a5dc', endColorstr='#ff0088ce', GradientType=0);
+  border-color: #00659c;
+  color: #fff;
+}
+.btn-primary:hover,
+.btn-primary:focus,
+.btn-primary:active,
+.btn-primary.active,
+.open .dropdown-toggle.btn-primary {
+  background-color: #0088ce;
+  background-image: none;
+  border-color: #00659c;
+  color: #fff;
+}
+.btn-primary:active,
+.btn-primary.active,
+.open .dropdown-toggle.btn-primary {
+  background-image: none;
+}
+.btn-primary:active:hover,
+.btn-primary.active:hover,
+.open .dropdown-toggle.btn-primary:hover,
+.btn-primary:active:focus,
+.btn-primary.active:focus,
+.open .dropdown-toggle.btn-primary:focus,
+.btn-primary:active.focus,
+.btn-primary.active.focus,
+.open .dropdown-toggle.btn-primary.focus {
+  background-color: #0077b5;
+  border-color: #004e78;
+}
+.btn-primary.disabled,
+.btn-primary[disabled],
+fieldset[disabled] .btn-primary,
+.btn-primary.disabled:hover,
+.btn-primary[disabled]:hover,
+fieldset[disabled] .btn-primary:hover,
+.btn-primary.disabled:focus,
+.btn-primary[disabled]:focus,
+fieldset[disabled] .btn-primary:focus,
+.btn-primary.disabled:active,
+.btn-primary[disabled]:active,
+fieldset[disabled] .btn-primary:active,
+.btn-primary.disabled.active,
+.btn-primary[disabled].active,
+fieldset[disabled] .btn-primary.active {
+  background-color: #0088ce;
+  border-color: #00659c;
+}
+.btn-xs,
+.btn-group-xs .btn,
+.btn-group-xs > .btn {
+  font-weight: 400;
+}
+.caret {
+  font-family: "FontAwesome";
+  font-weight: normal;
+  height: 9px;
+  position: relative;
+  vertical-align: baseline;
+  width: 12px;
+}
+.caret:before {
+  bottom: 0;
+  content: "\f107";
+  left: 0;
+  line-height: 12px;
+  position: absolute;
+  text-align: center;
+  top: -1px;
+  right: 0;
+}
+.dropup .caret:before {
+  content: "\f106";
+}
+.dropdown-toggle:focus {
+  outline: 5px auto -webkit-focus-ring-color;
+  outline-offset: -2px;
+}
+.dropdown-menu .divider {
+  background-color: #ededed;
+  height: 1px;
+  margin: 4px 1px;
+  overflow: hidden;
+}
+.dropdown-menu > li > a {
+  border-color: transparent;
+  border-style: solid;
+  border-width: 1px 0;
+  padding: 1px 10px;
+}
+.dropdown-menu > li > a:hover,
+.dropdown-menu > li > a:focus {
+  border-color: #bee1f4;
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+}
+.dropdown-menu > li > a:active {
+  background-color: #0088ce;
+  border-color: #0088ce;
+  color: #fff !important;
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+}
+.dropdown-menu > .active > a,
+.dropdown-menu > .active > a:hover,
+.dropdown-menu > .active > a:focus {
+  background-color: #0088ce !important;
+  border-color: #0088ce !important;
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+}
+.dropdown-menu > .disabled > a,
+.dropdown-menu > .disabled > a:hover,
+.dropdown-menu > .disabled > a:focus {
+  border-color: transparent;
+}
+.dropdown-menu > .selected > a {
+  background-color: #0088ce;
+  border-color: #0088ce;
+  color: #fff;
+}
+.dropdown-menu > .selected > a small {
+  color: rgba(255, 255, 255, 0.5);
+}
+.dropdown-menu > .disabled > a:hover,
+.dropdown-menu > .disabled > a:focus {
+  border-color: transparent;
+}
+.dropdown-header {
+  padding-left: 10px;
+  padding-right: 10px;
+  text-transform: uppercase;
+}
+.btn-group > .dropdown-menu,
+.dropdown > .dropdown-menu,
+.input-group-btn > .dropdown-menu {
+  margin-top: -1px;
+}
+.dropup .dropdown-menu {
+  margin-bottom: -1px;
+}
+.dropdown-submenu {
+  position: relative;
+}
+.dropdown-submenu:hover > a {
+  background-color: #def3ff;
+  border-color: #bee1f4;
+}
+.dropdown-submenu:hover > .dropdown-menu {
+  display: block;
+}
+.dropdown-submenu.pull-left {
+  float: none !important;
+}
+.dropdown-submenu.pull-left > .dropdown-menu {
+  left: auto;
+  margin-left: 10px;
+  right: 100%;
+}
+.dropdown-submenu > a {
+  padding-right: 20px !important;
+}
+.dropdown-submenu > a:after {
+  content: "\f105";
+  font-family: "FontAwesome";
+  display: block;
+  position: absolute;
+  right: 10px;
+  top: 2px;
+}
+.dropdown-submenu > .dropdown-menu {
+  left: 100%;
+  margin-top: 0;
+  top: -6px;
+}
+.dropup .dropdown-submenu > .dropdown-menu {
+  bottom: -5px;
+  top: auto;
+}
+.open .dropdown-submenu.active > .dropdown-menu {
+  display: block;
+}
+.dropdown-kebab-pf.btn-group > .btn:first-child,
+.dropdown-kebab-pf .btn-link {
+  color: #252525;
+  font-size: 16px;
+  line-height: 1;
+  padding: 4px 10px;
+  margin-left: -10px;
+  margin-right: -10px;
+}
+.dropdown-kebab-pf.btn-group > .btn:first-child:active,
+.dropdown-kebab-pf .btn-link:active,
+.dropdown-kebab-pf.btn-group > .btn:first-child:focus,
+.dropdown-kebab-pf .btn-link:focus,
+.dropdown-kebab-pf.btn-group > .btn:first-child:hover,
+.dropdown-kebab-pf .btn-link:hover {
+  color: #0088ce;
+}
+.dropdown-kebab-pf.btn-group {
+  margin-left: 10px;
+}
+.dropdown-kebab-pf .dropdown-menu {
+  left: -15px;
+  margin-top: 11px;
+}
+.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right {
+  left: auto;
+  right: -15px;
+}
+.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:after,
+.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:before {
+  left: auto;
+  right: 6px;
+}
+.dropdown-kebab-pf .dropdown-menu:after,
+.dropdown-kebab-pf .dropdown-menu:before {
+  border-bottom-color: #bbb;
+  border-bottom-style: solid;
+  border-bottom-width: 10px;
+  border-left: 10px solid transparent;
+  border-right: 10px solid transparent;
+  content: "";
+  display: inline-block;
+  left: 6px;
+  position: absolute;
+  top: -11px;
+}
+.dropdown-kebab-pf .dropdown-menu:after {
+  border-bottom-color: #fff;
+  top: -10px;
+}
+.dropdown-kebab-pf.dropup .dropdown-menu {
+  margin-bottom: 11px;
+  margin-top: 0;
+}
+.dropdown-kebab-pf.dropup .dropdown-menu:after,
+.dropdown-kebab-pf.dropup .dropdown-menu:before {
+  border-bottom: none;
+  border-top-color: #bbb;
+  border-top-style: solid;
+  border-top-width: 10px;
+  bottom: -11px;
+  top: auto;
+}
+.dropdown-kebab-pf.dropup .dropdown-menu:after {
+  border-top-color: #fff;
+  bottom: -10px;
+}
+.chars-remaining-pf span {
+  font-weight: 600;
+  padding-right: 5px;
+}
+.chars-warn-remaining-pf {
+  color: #cc0000;
+}
+.fields-status-pf {
+  color: #8b8d8f;
+  margin-bottom: 15px;
+}
+.form-control[disabled],
+.form-control[readonly],
+fieldset[disabled] .form-control {
+  -webkit-box-shadow: none;
+  box-shadow: none;
+  color: #8b8d8f;
+}
+.form-control[disabled]:hover,
+.form-control[readonly]:hover,
+fieldset[disabled] .form-control:hover {
+  border-color: #bbb;
+}
+.form-control:hover {
+  border-color: #7dc3e8;
+}
+.has-error .form-control:hover {
+  border-color: #990000;
+}
+.has-success .form-control:hover {
+  border-color: #2b542c;
+}
+.has-warning .form-control:hover {
+  border-color: #bb6106;
+}
+.has-error .checkbox,
+.has-success .checkbox,
+.has-warning .checkbox,
+.has-error .checkbox-inline,
+.has-success .checkbox-inline,
+.has-warning .checkbox-inline,
+.has-error .control-label,
+.has-success .control-label,
+.has-warning .control-label,
+.has-error .radio,
+.has-success .radio,
+.has-warning .radio,
+.has-error .radio-inline,
+.has-success .radio-inline,
+.has-warning .radio-inline,
+.has-error.checkbox label,
+.has-success.checkbox label,
+.has-warning.checkbox label,
+.has-error.checkbox-inline label,
+.has-success.checkbox-inline label,
+.has-warning.checkbox-inline label,
+.has-error.radio label,
+.has-success.radio label,
+.has-warning.radio label,
+.has-error.radio-inline label,
+.has-success.radio-inline label,
+.has-warning.radio-inline label {
+  color: #363636;
+}
+.help-block {
+  margin-bottom: 0px;
+}
+.input-group .input-group-btn .btn {
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+label {
+  font-weight: 600;
+}
+label.required-pf:after {
+  color: #cc0000;
+  content: "*";
+  margin-left: 3px;
+}
+span.required-pf {
+  color: #cc0000;
+}
+.fields-section-pf {
+  border-color: #ededed;
+  border-style: solid;
+  border-width: 1px 0 0;
+  margin-top: 25px;
+  padding: 15px 0 0;
+}
+.fields-section-header-pf {
+  border: none;
+  font-size: 12px;
+  margin: 0;
+  padding-right: 10px;
+  width: auto;
+}
+.fields-section-header-pf .fa-angle-right {
+  cursor: pointer;
+  font-size: 14px;
+  width: 14px;
+}
+.label {
+  border-radius: 0;
+  font-size: 100%;
+  font-weight: 600;
+}
+h1 .label,
+h2 .label,
+h3 .label,
+h4 .label,
+h5 .label,
+h6 .label {
+  font-size: 75%;
+}
+.list-group {
+  border-top: 1px solid #ededed;
+}
+.list-group .list-group-item:first-child {
+  border-top: 0;
+}
+.list-group-item {
+  border-left: 0;
+  border-right: 0;
+}
+.list-group-item-heading {
+  font-weight: 600;
+}
+.modal-header {
+  background-color: #f5f5f5;
+  border-bottom: none;
+  padding: 10px 18px;
+}
+.modal-header .close {
+  margin-top: 2px;
+}
+.modal-title {
+  font-size: 13px;
+  font-weight: 700;
+}
+.modal-footer {
+  border-top: none;
+  margin-top: 15px;
+  padding: 14px 15px 15px;
+}
+.modal-footer > .btn {
+  padding-left: 10px;
+  padding-right: 10px;
+}
+.modal-footer > .btn > .fa-angle-left {
+  margin-right: 5px;
+}
+.modal-footer > .btn > .fa-angle-right {
+  margin-left: 5px;
+}
+.pager li > a,
+.pager li > span {
+  background-color: #f1f1f1;
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+  border-color: #bbb;
+  color: #4d5258;
+  font-weight: 600;
+  line-height: 22px;
+  padding: 2px 14px;
+}
+.pager li > a:hover,
+.pager li > span:hover,
+.pager li > a:focus,
+.pager li > span:focus,
+.pager li > a:active,
+.pager li > span:active,
+.pager li > a.active,
+.pager li > span.active,
+.open .dropdown-toggle.pager li > a,
+.open .dropdown-toggle.pager li > span {
+  background-color: #f1f1f1;
+  background-image: none;
+  border-color: #bbb;
+  color: #4d5258;
+}
+.pager li > a:active,
+.pager li > span:active,
+.pager li > a.active,
+.pager li > span.active,
+.open .dropdown-toggle.pager li > a,
+.open .dropdown-toggle.pager li > span {
+  background-image: none;
+}
+.pager li > a:active:hover,
+.pager li > span:active:hover,
+.pager li > a.active:hover,
+.pager li > span.active:hover,
+.open .dropdown-toggle.pager li > a:hover,
+.open .dropdown-toggle.pager li > span:hover,
+.pager li > a:active:focus,
+.pager li > span:active:focus,
+.pager li > a.active:focus,
+.pager li > span.active:focus,
+.open .dropdown-toggle.pager li > a:focus,
+.open .dropdown-toggle.pager li > span:focus,
+.pager li > a:active.focus,
+.pager li > span:active.focus,
+.pager li > a.active.focus,
+.pager li > span.active.focus,
+.open .dropdown-toggle.pager li > a.focus,
+.open .dropdown-toggle.pager li > span.focus {
+  background-color: #e5e5e5;
+  border-color: #a9a9a9;
+}
+.pager li > a.disabled,
+.pager li > span.disabled,
+.pager li > a[disabled],
+.pager li > span[disabled],
+fieldset[disabled] .pager li > a,
+fieldset[disabled] .pager li > span,
+.pager li > a.disabled:hover,
+.pager li > span.disabled:hover,
+.pager li > a[disabled]:hover,
+.pager li > span[disabled]:hover,
+fieldset[disabled] .pager li > a:hover,
+fieldset[disabled] .pager li > span:hover,
+.pager li > a.disabled:focus,
+.pager li > span.disabled:focus,
+.pager li > a[disabled]:focus,
+.pager li > span[disabled]:focus,
+fieldset[disabled] .pager li > a:focus,
+fieldset[disabled] .pager li > span:focus,
+.pager li > a.disabled:active,
+.pager li > span.disabled:active,
+.pager li > a[disabled]:active,
+.pager li > span[disabled]:active,
+fieldset[disabled] .pager li > a:active,
+fieldset[disabled] .pager li > span:active,
+.pager li > a.disabled.active,
+.pager li > span.disabled.active,
+.pager li > a[disabled].active,
+.pager li > span[disabled].active,
+fieldset[disabled] .pager li > a.active,
+fieldset[disabled] .pager li > span.active {
+  background-color: #f1f1f1;
+  border-color: #bbb;
+}
+.pager li > a > .i,
+.pager li > span > .i {
+  font-size: 18px;
+  vertical-align: top;
+  margin: 2px 0;
+}
+.pager li a:active {
+  background-image: none;
+  -webkit-box-shadow: inset 0 3px 5px rgba(3, 3, 3, 0.125);
+  box-shadow: inset 0 3px 5px rgba(3, 3, 3, 0.125);
+  outline: 0;
+}
+.pager .disabled > a,
+.pager .disabled > a:hover,
+.pager .disabled > a:focus,
+.pager .disabled > a:active,
+.pager .disabled > span {
+  background: #f5f5f5;
+  -webkit-box-shadow: none;
+  box-shadow: none;
+  color: #8b8d8f;
+  cursor: not-allowed;
+}
+.pager .next > a > .i,
+.pager .next > span > .i {
+  margin-left: 5px;
+}
+.pager .previous > a > .i,
+.pager .previous > span > .i {
+  margin-right: 5px;
+}
+.pager-sm li > a,
+.pager-sm li > span {
+  font-weight: 400;
+  line-height: 16px;
+  padding: 1px 10px;
+}
+.pager-sm li > a > .i,
+.pager-sm li > span > .i {
+  font-size: 12px;
+}
+.pagination > li > a,
+.pagination > li > span {
+  background-color: #f1f1f1;
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+  border-color: #bbb;
+  color: #4d5258;
+  cursor: default;
+  font-weight: 600;
+  padding: 2px 10px;
+}
+.pagination > li > a:hover,
+.pagination > li > span:hover,
+.pagination > li > a:focus,
+.pagination > li > span:focus,
+.pagination > li > a:active,
+.pagination > li > span:active,
+.pagination > li > a.active,
+.pagination > li > span.active,
+.open .dropdown-toggle.pagination > li > a,
+.open .dropdown-toggle.pagination > li > span {
+  background-color: #f1f1f1;
+  background-image: none;
+  border-color: #bbb;
+  color: #4d5258;
+}
+.pagination > li > a:active,
+.pagination > li > span:active,
+.pagination > li > a.active,
+.pagination > li > span.active,
+.open .dropdown-toggle.pagination > li > a,
+.open .dropdown-toggle.pagination > li > span {
+  background-image: none;
+}
+.pagination > li > a:active:hover,
+.pagination > li > span:active:hover,
+.pagination > li > a.active:hover,
+.pagination > li > span.active:hover,
+.open .dropdown-toggle.pagination > li > a:hover,
+.open .dropdown-toggle.pagination > li > span:hover,
+.pagination > li > a:active:focus,
+.pagination > li > span:active:focus,
+.pagination > li > a.active:focus,
+.pagination > li > span.active:focus,
+.open .dropdown-toggle.pagination > li > a:focus,
+.open .dropdown-toggle.pagination > li > span:focus,
+.pagination > li > a:active.focus,
+.pagination > li > span:active.focus,
+.pagination > li > a.active.focus,
+.pagination > li > span.active.focus,
+.open .dropdown-toggle.pagination > li > a.focus,
+.open .dropdown-toggle.pagination > li > span.focus {
+  background-color: #e5e5e5;
+  border-color: #a9a9a9;
+}
+.pagination > li > a.disabled,
+.pagination > li > span.disabled,
+.pagination > li > a[disabled],
+.pagination > li > span[disabled],
+fieldset[disabled] .pagination > li > a,
+fieldset[disabled] .pagination > li > span,
+.pagination > li > a.disabled:hover,
+.pagination > li > span.disabled:hover,
+.pagination > li > a[disabled]:hover,
+.pagination > li > span[disabled]:hover,
+fieldset[disabled] .pagination > li > a:hover,
+fieldset[disabled] .pagination > li > span:hover,
+.pagination > li > a.disabled:focus,
+.pagination > li > span.disabled:focus,
+.pagination > li > a[disabled]:focus,
+.pagination > li > span[disabled]:focus,
+fieldset[disabled] .pagination > li > a:focus,
+fieldset[disabled] .pagination > li > span:focus,
+.pagination > li > a.disabled:active,
+.pagination > li > span.disabled:active,
+.pagination > li > a[disabled]:active,
+.pagination > li > span[disabled]:active,
+fieldset[disabled] .pagination > li > a:active,
+fieldset[disabled] .pagination > li > span:active,
+.pagination > li > a.disabled.active,
+.pagination > li > span.disabled.active,
+.pagination > li > a[disabled].active,
+.pagination > li > span[disabled].active,
+fieldset[disabled] .pagination > li > a.active,
+fieldset[disabled] .pagination > li > span.active {
+  background-color: #f1f1f1;
+  border-color: #bbb;
+}
+.pagination > li > a > .i,
+.pagination > li > span > .i {
+  font-size: 15px;
+  vertical-align: top;
+  margin: 2px 0;
+}
+.pagination > li > a:active,
+.pagination > li > span:active {
+  -webkit-box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
+  box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
+}
+.pagination > .active > a,
+.pagination > .active > span,
+.pagination > .active > a:hover,
+.pagination > .active > span:hover,
+.pagination > .active > a:focus,
+.pagination > .active > span:focus {
+  background-color: #f1f1f1;
+  border-color: #bbb;
+  -webkit-box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
+  box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
+  color: #4d5258;
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+}
+.pagination > .disabled > span,
+.pagination > .disabled > span:hover,
+.pagination > .disabled > span:focus,
+.pagination > .disabled > a,
+.pagination > .disabled > a:hover,
+.pagination > .disabled > a:focus {
+  -webkit-box-shadow: none;
+  box-shadow: none;
+  cursor: not-allowed;
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+}
+.pagination-sm > li > a,
+.pagination-sm > li > span {
+  padding: 2px 6px;
+  font-size: 11px;
+  line-height: 1.5;
+}
+.pagination-sm > li:first-child > a,
+.pagination-sm > li:first-child > span {
+  border-bottom-left-radius: 1px;
+  border-top-left-radius: 1px;
+}
+.pagination-sm > li:last-child > a,
+.pagination-sm > li:last-child > span {
+  border-bottom-right-radius: 1px;
+  border-top-right-radius: 1px;
+}
+.pagination-sm > li > a,
+.pagination-sm > li > span {
+  font-weight: 400;
+}
+.pagination-sm > li > a > .i,
+.pagination-sm > li > span > .i {
+  font-size: 12px;
+  margin-top: 2px;
+}
+.content-view-pf-pagination {
+  background-color: #f5f5f5;
+  border: 1px solid #d1d1d1;
+  display: flex;
+  flex-wrap: wrap;
+  justify-content: space-between;
+}
+.content-view-pf-pagination.table-view-pf-pagination {
+  border-top: none;
+}
+.content-view-pf-pagination .form-group {
+  align-items: baseline;
+  display: flex;
+  flex-grow: 1;
+  float: left;
+  margin: 5px;
+}
+@supports (display: flex) {
+  .content-view-pf-pagination .form-group {
+    float: none;
+  }
+}
+.content-view-pf-pagination .form-group:last-child {
+  justify-content: flex-end;
+  float: right;
+}
+@supports (display: flex) {
+  .content-view-pf-pagination .form-group:last-child {
+    float: none;
+  }
+}
+.content-view-pf-pagination .form-group .pagination-pf-pagesize.bootstrap-select.btn-group,
+.content-view-pf-pagination .form-group .pagination-pf-pagesize.btn-group {
+  display: flex;
+  float: none;
+  margin-bottom: 0;
+  margin-left: 0;
+  margin-right: 5px;
+  width: auto;
+}
+.content-view-pf-pagination .form-group .dropdown-menu {
+  min-width: auto;
+}
+.content-view-pf-pagination .pagination-pf-page {
+  margin-left: 10px;
+  margin-right: 5px;
+  padding: 0 2px 2px;
+  text-align: right;
+  width: 2.5em;
+}
+.content-view-pf-pagination .pagination {
+  display: flex;
+  margin: 0 0 0 10px;
+}
+.content-view-pf-pagination .pagination a {
+  float: none;
+}
+@supports (display: flex) {
+  .content-view-pf-pagination .pagination a {
+    display: block;
+  }
+}
+.panel-title {
+  font-weight: 700;
+}
+.panel-group .panel {
+  color: #4d5258;
+}
+.panel-group .panel + .panel {
+  margin-top: -1px;
+}
+.panel-group .panel-default {
+  border-color: #bbb;
+  border-top-color: #bbb;
+}
+.panel-group .panel-default .panel-heading {
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+}
+.panel-group .panel-default .panel-heading + .panel-collapse .panel-body {
+  border-top: 1px solid #d1d1d1;
+}
+.panel-group .panel-info {
+  border-color: #00659c;
+}
+.panel-group .panel-info .panel-heading {
+  background-color: #dae5f4;
+}
+.panel-group .panel-info + .panel-default {
+  border-top-color: #00659c;
+}
+.panel-group .panel-primary {
+  border-color: #39a5dc;
+}
+.panel-group .panel-primary .panel-heading {
+  background-color: #def0f9;
+}
+.panel-group .panel-primary + .panel-default {
+  border-top-color: #39a5dc;
+}
+.panel-group .panel-primary + .panel-info {
+  border-top-color: #39a5dc;
+}
+.panel-group .panel-success {
+  border-color: #3f9c35;
+}
+.panel-group .panel-success .panel-heading {
+  background-color: #e9f4e9;
+}
+.panel-group .panel-success + .panel-default {
+  border-top-color: #3f9c35;
+}
+.panel-group .panel-success + .panel-info {
+  border-top-color: #3f9c35;
+}
+.panel-group .panel-success + .panel-primary {
+  border-top-color: #3f9c35;
+}
+.panel-group .panel-warning {
+  border-color: #ec7a08;
+}
+.panel-group .panel-warning .panel-heading {
+  background-color: #fdf2e5;
+}
+.panel-group .panel-warning + .panel-default {
+  border-top-color: #ec7a08;
+}
+.panel-group .panel-warning + .panel-info {
+  border-top-color: #ec7a08;
+}
+.panel-group .panel-warning + .panel-primary {
+  border-top-color: #ec7a08;
+}
+.panel-group .panel-warning + .panel-success {
+  border-top-color: #ec7a08;
+}
+.panel-group .panel-danger {
+  border-color: #cc0000;
+}
+.panel-group .panel-danger .panel-heading {
+  background-color: #ffe6e6;
+}
+.panel-group .panel-danger + .panel-default {
+  border-top-color: #cc0000;
+}
+.panel-group .panel-danger + .panel-info {
+  border-top-color: #cc0000;
+}
+.panel-group .panel-danger + .panel-primary {
+  border-top-color: #cc0000;
+}
+.panel-group .panel-danger + .panel-success {
+  border-top-color: #cc0000;
+}
+.panel-group .panel-danger + .panel-warning {
+  border-top-color: #cc0000;
+}
+.panel-group .panel-title {
+  font-weight: 500;
+  line-height: 1;
+}
+.panel-group .panel-title > a {
+  color: #4d5258;
+  font-weight: 600;
+}
+.panel-group .panel-title > a:before {
+  content: "\f107";
+  display: inline-block;
+  font-family: "FontAwesome";
+  font-size: 13px;
+  margin-right: 5px;
+  text-align: center;
+  vertical-align: 0;
+  width: 8px;
+}
+.panel-group .panel-title > a:focus {
+  outline: none;
+  text-decoration: none;
+}
+.panel-group .panel-title > a:hover {
+  text-decoration: none;
+}
+.panel-group .panel-title > a.collapsed:before {
+  content: "\f105";
+}
+.popover {
+  -webkit-box-shadow: 0 2px 2px rgba(3, 3, 3, 0.08);
+  box-shadow: 0 2px 2px rgba(3, 3, 3, 0.08);
+  padding: 0;
+}
+.popover-content {
+  color: #4d5258;
+  line-height: 18px;
+  padding: 10px 14px;
+}
+.popover-title {
+  border-bottom: none;
+  border-radius: 0;
+  color: #4d5258;
+  font-size: 13px;
+  font-weight: 700;
+  min-height: 34px;
+}
+.popover-title .close {
+  height: 22px;
+  position: absolute;
+  right: 8px;
+  top: 6px;
+}
+.popover-title.closable {
+  padding-right: 30px;
+}
+@keyframes progress-bar-stripes {
+  from {
+    background-position: 0 0;
+  }
+  to {
+    background-position: 40px 0;
+  }
+}
+.progress {
+  -webkit-box-shadow: inset 0 0 1px rgba(3, 3, 3, 0.25);
+  box-shadow: inset 0 0 1px rgba(3, 3, 3, 0.25);
+}
+.progress.progress-label-left,
+.progress.progress-label-top-right {
+  overflow: visible;
+  position: relative;
+}
+.progress.progress-label-left {
+  margin-left: 40px;
+}
+.progress.progress-sm {
+  height: 14px;
+  margin-bottom: 14px;
+}
+.progress.progress-xs {
+  height: 6px;
+  margin-bottom: 6px;
+}
+td > .progress:first-child:last-child {
+  margin-bottom: 0;
+  margin-top: 3px;
+}
+.progress-bar {
+  box-shadow: none;
+}
+.progress-label-left .progress-bar span,
+.progress-label-right .progress-bar span,
+.progress-label-top-right .progress-bar span {
+  color: #363636;
+  position: absolute;
+  text-align: right;
+}
+.progress-label-left .progress-bar span {
+  font-size: 14px;
+  left: -40px;
+  top: 0;
+  width: 35px;
+}
+.progress-label-right .progress-bar span,
+.progress-label-top-right .progress-bar span {
+  font-size: 11px;
+  overflow: hidden;
+  right: 0;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+}
+.progress-label-right .progress-bar span strong,
+.progress-label-top-right .progress-bar span strong {
+  font-weight: 600;
+}
+.progress-label-right .progress-bar span {
+  max-width: 85px;
+  top: 0;
+}
+.progress-label-top-right .progress-bar span {
+  max-width: 47%;
+  top: -30px;
+}
+.progress-label-left.progress-sm .progress-bar span,
+.progress-label-top-right.progress-sm .progress-bar span {
+  font-size: 12px;
+}
+.progress-sm .progress-bar {
+  line-height: 14px;
+}
+.progress-xs .progress-bar {
+  line-height: 6px;
+}
+.progress-bar-remaining {
+  background: transparent;
+}
+.progress-container {
+  position: relative;
+}
+.progress-container.progress-description-left {
+  padding-left: 90px;
+}
+.progress-container.progress-label-right {
+  padding-right: 90px;
+}
+.progress-description {
+  margin-bottom: 10px;
+  max-width: 52%;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+}
+.progress-description .count {
+  font-size: 20.004px;
+  font-weight: 300;
+  line-height: 1;
+  margin-right: 5px;
+}
+.progress-description .fa,
+.progress-description .pficon {
+  font-size: 14px;
+  margin-right: 3px;
+}
+.progress-description-left .progress-description {
+  left: 0;
+  margin-bottom: 0;
+  max-width: 85px;
+  position: absolute;
+  top: 0;
+}
+.progress-description .tooltip {
+  white-space: normal;
+}
+.table > thead > tr > th,
+.table > tbody > tr > th,
+.table > tfoot > tr > th,
+.table > thead > tr > td,
+.table > tbody > tr > td,
+.table > tfoot > tr > td {
+  padding: 2px 10px 3px;
+}
+.table > thead > tr > th > a:hover,
+.table > tbody > tr > th > a:hover,
+.table > tfoot > tr > th > a:hover,
+.table > thead > tr > td > a:hover,
+.table > tbody > tr > td > a:hover,
+.table > tfoot > tr > td > a:hover {
+  text-decoration: none;
+}
+.table > thead > tr > th,
+.table > tbody > tr > th,
+.table > tfoot > tr > th {
+  font-family: "Open Sans";
+  font-style: normal;
+  font-weight: 600;
+}
+.table > thead {
+  background-clip: padding-box;
+  background-color: #f5f5f5;
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+}
+.table-bordered {
+  border: 1px solid #d1d1d1;
+}
+.table-bordered > thead > tr > th,
+.table-bordered > tbody > tr > th,
+.table-bordered > tfoot > tr > th,
+.table-bordered > thead > tr > td,
+.table-bordered > tbody > tr > td,
+.table-bordered > tfoot > tr > td {
+  border: 1px solid #d1d1d1;
+}
+.table-bordered > thead > tr > th,
+.table-bordered > thead > tr > td {
+  border-bottom-width: 1px;
+}
+.table-striped > tbody > tr:nth-of-type(even) {
+  background-color: #f5f5f5;
+}
+.table-striped > tbody > tr:nth-of-type(odd) {
+  background-color: transparent;
+}
+.table-hover > tbody > tr:hover > td,
+.table-hover > tbody > tr:hover > th {
+  background-color: #def3ff;
+  border-bottom-color: #7dc3e8;
+}
+.table-treegrid span.indent {
+  margin-left: 10px;
+  margin-right: 10px;
+}
+.table-treegrid span.icon {
+  display: inline-block;
+  font-size: 13px;
+  margin-right: 5px;
+  min-width: 10px;
+  text-align: center;
+}
+.table-treegrid span.expand-icon,
+.table-treegrid span.collapse-icon {
+  cursor: pointer;
+}
+.table-treegrid > tbody > tr.odd {
+  background-color: #f5f5f5;
+}
+.nav-tabs {
+  font-size: 14px;
+}
+.nav-tabs > li > a {
+  color: #4d5258;
+  margin-right: -1px;
+  padding-bottom: 5px;
+  padding-top: 5px;
+}
+.nav-tabs > li > a:active,
+.nav-tabs > li > a:focus,
+.nav-tabs > li > a:hover {
+  background: transparent;
+  border-color: #ededed;
+  color: #252525;
+}
+.nav-tabs > li > .dropdown-menu {
+  border-top: 0;
+  border-color: #ededed;
+}
+.nav-tabs > li > .dropdown-menu.pull-right {
+  right: -1px;
+}
+.nav-tabs + .nav-tabs-pf,
+.nav-tabs.nav-tabs-pf-secondary {
+  font-size: 12px;
+}
+.nav-tabs + .nav-tabs-pf > li:first-child > a,
+.nav-tabs.nav-tabs-pf-secondary > li:first-child > a {
+  padding-left: 15px;
+}
+.nav-tabs + .nav-tabs-pf > li:first-child > a:before,
+.nav-tabs.nav-tabs-pf-secondary > li:first-child > a:before {
+  left: 15px !important;
+}
+.nav-tabs .open > a,
+.nav-tabs .open > a:hover,
+.nav-tabs .open > a:focus {
+  background-color: transparent;
+  border-color: #ededed;
+}
+@media (min-width: 768px) {
+  .nav-tabs-pf.nav-justified {
+    border-bottom: 1px solid #ededed;
+  }
+}
+.nav-tabs-pf.nav-justified > li:first-child > a {
+  padding-left: 15px;
+}
+.nav-tabs-pf.nav-justified > li > a {
+  border-bottom: 0;
+}
+.nav-tabs-pf.nav-justified > li > a:before {
+  left: 0 !important;
+  right: 0 !important;
+}
+.nav-tabs-pf > li {
+  margin-bottom: 0;
+}
+.nav-tabs-pf > li.active > a:before {
+  background: #0088ce;
+  bottom: -1px;
+  content: "";
+  display: block;
+  height: 2px;
+  left: 15px;
+  position: absolute;
+  right: 15px;
+}
+.nav-tabs-pf > li.active > a,
+.nav-tabs-pf > li.active > a:active,
+.nav-tabs-pf > li.active > a:focus,
+.nav-tabs-pf > li.active > a:hover {
+  background-color: transparent;
+  border: 0 !important;
+  color: #0088ce;
+}
+.nav-tabs-pf > li.active > a:before,
+.nav-tabs-pf > li.active > a:active:before,
+.nav-tabs-pf > li.active > a:focus:before,
+.nav-tabs-pf > li.active > a:hover:before {
+  background: #0088ce;
+}
+.nav-tabs-pf > li:first-child > a {
+  padding-left: 0;
+}
+.nav-tabs-pf > li:first-child > a:before {
+  left: 0 !important;
+}
+.nav-tabs-pf > li > a {
+  border: 0;
+  line-height: 1;
+  margin-right: 0;
+  padding-bottom: 10px;
+  padding-top: 10px;
+}
+.nav-tabs-pf > li > a:active:before,
+.nav-tabs-pf > li > a:focus:before,
+.nav-tabs-pf > li > a:hover:before {
+  background: #bbb;
+  bottom: -1px;
+  content: "";
+  display: block;
+  height: 2px;
+  left: 15px;
+  position: absolute;
+  right: 15px;
+}
+.nav-tabs-pf > li > .dropdown-menu {
+  left: 15px;
+  margin-top: 1px;
+}
+.nav-tabs-pf > li > .dropdown-menu.pull-right {
+  left: auto;
+  right: 15px;
+}
+.nav-tabs-pf .open > a,
+.nav-tabs-pf .open > a:hover,
+.nav-tabs-pf .open > a:focus {
+  background-color: transparent;
+}
+.tooltip {
+  font-size: 12px;
+  line-height: 1.4;
+}
+.tooltip-inner {
+  padding: 7px 12px;
+  text-align: left;
+}
+h1,
+.h1,
+h2,
+.h2 {
+  font-weight: 300;
+}
+.page-header .actions {
+  margin-top: 8px;
+}
+.page-header .actions a > .pficon {
+  margin-right: 4px;
+}
+@media (min-width: 767px) {
+  .page-header-bleed-left {
+    margin-left: -20px;
+  }
+  .page-header-bleed-right {
+    margin-right: -20px;
+  }
+  .page-header-bleed-right .actions {
+    margin-right: 20px;
+  }
+}
+/* RCUE-specific */
+/*# sourceMappingURL=rcue.css.map */
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/dist/css/rcue.css.map b/themes/src/main/node_modules/rcue/dist/css/rcue.css.map
new file mode 100644
index 0000000..c33b644
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/css/rcue.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["node_modules/patternfly/dist/less/fonts.less","node_modules/bootstrap/less/normalize.less","node_modules/bootstrap/less/print.less","node_modules/bootstrap/less/glyphicons.less","node_modules/bootstrap/less/scaffolding.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","node_modules/patternfly/dist/less/variables.less","node_modules/bootstrap/less/mixins/tab-focus.less","node_modules/bootstrap/less/thumbnails.less","node_modules/bootstrap/less/carousel.less","node_modules/bootstrap/less/mixins/image.less","node_modules/bootstrap/less/type.less","node_modules/bootstrap/less/mixins/text-emphasis.less","node_modules/bootstrap/less/mixins/background-variant.less","node_modules/bootstrap/less/mixins/text-overflow.less","node_modules/bootstrap/less/code.less","node_modules/bootstrap/less/grid.less","node_modules/bootstrap/less/mixins/grid.less","node_modules/bootstrap/less/mixins/grid-framework.less","node_modules/bootstrap/less/tables.less","node_modules/bootstrap/less/mixins/table-row.less","node_modules/bootstrap/less/forms.less","node_modules/bootstrap/less/mixins/forms.less","node_modules/patternfly/dist/less/bootstrap-mixin-overrides.less","node_modules/bootstrap/less/buttons.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap/less/button-groups.less","node_modules/bootstrap/less/component-animations.less","node_modules/bootstrap/less/dropdowns.less","node_modules/bootstrap/less/mixins/nav-divider.less","node_modules/bootstrap/less/mixins/reset-filter.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/input-groups.less","node_modules/bootstrap/less/navs.less","node_modules/bootstrap/less/navbar.less","node_modules/bootstrap/less/mixins/nav-vertical-align.less","node_modules/bootstrap/less/utilities.less","node_modules/font-awesome/less/bordered-pulled.less","node_modules/bootstrap/less/breadcrumbs.less","node_modules/bootstrap/less/pagination.less","node_modules/bootstrap/less/mixins/pagination.less","node_modules/bootstrap/less/pager.less","node_modules/bootstrap/less/labels.less","node_modules/bootstrap/less/mixins/labels.less","node_modules/bootstrap/less/badges.less","node_modules/bootstrap/less/jumbotron.less","node_modules/bootstrap/less/alerts.less","node_modules/bootstrap/less/mixins/alerts.less","node_modules/bootstrap/less/progress-bars.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/progress-bar.less","node_modules/bootstrap/less/media.less","node_modules/bootstrap/less/list-group.less","node_modules/bootstrap/less/mixins/list-group.less","node_modules/bootstrap/less/panels.less","node_modules/bootstrap/less/mixins/panels.less","node_modules/bootstrap/less/responsive-embed.less","node_modules/bootstrap/less/wells.less","node_modules/bootstrap/less/close.less","node_modules/bootstrap/less/modals.less","node_modules/bootstrap/less/tooltip.less","node_modules/bootstrap/less/mixins/reset-text.less","node_modules/bootstrap/less/popovers.less","node_modules/bootstrap/less/mixins/clearfix.less","node_modules/bootstrap/less/mixins/center-block.less","node_modules/bootstrap/less/mixins/hide-text.less","node_modules/bootstrap/less/responsive-utilities.less","node_modules/bootstrap/less/mixins/responsive-visibility.less","node_modules/font-awesome/less/path.less","node_modules/font-awesome/less/core.less","node_modules/font-awesome/less/larger.less","node_modules/font-awesome/less/fixed-width.less","node_modules/font-awesome/less/list.less","node_modules/font-awesome/less/animated.less","node_modules/font-awesome/less/rotated-flipped.less","node_modules/font-awesome/less/mixins.less","node_modules/font-awesome/less/stacked.less","node_modules/font-awesome/less/icons.less","node_modules/font-awesome/less/variables.less","node_modules/font-awesome/less/screen-reader.less","node_modules/patternfly/dist/less/mixins.less","node_modules/patternfly/dist/less/alerts.less","node_modules/patternfly/dist/less/badges.less","node_modules/patternfly/dist/less/breadcrumbs.less","node_modules/patternfly/dist/less/buttons.less","node_modules/patternfly/dist/less/dropdowns.less","node_modules/patternfly/dist/less/forms.less","node_modules/patternfly/dist/less/labels.less","node_modules/patternfly/dist/less/list-group.less","node_modules/patternfly/dist/less/modals.less","node_modules/patternfly/dist/less/pager.less","node_modules/patternfly/dist/less/pagination.less","node_modules/patternfly/dist/less/panels.less","node_modules/patternfly/dist/less/popovers.less","node_modules/patternfly/dist/less/progress-bars.less","node_modules/patternfly/dist/less/tables.less","node_modules/patternfly/dist/less/tabs.less","node_modules/patternfly/dist/less/tooltip.less","node_modules/patternfly/dist/less/type.less"],"names":[],"mappings":"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","sourcesContent":["//\n// Fonts\n// --------------------------------------------------\n\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 300;\n  src: url(\"@{font-path}/OpenSans-Light-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Light\"), local(\"OpenSans-Light\"),\n       url(\"@{font-path}/OpenSans-Light-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Light-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Light-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Light-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Light-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 400;\n  src: url(\"@{font-path}/OpenSans-Regular-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans\"), local(\"OpenSans\"),\n       url(\"@{font-path}/OpenSans-Regular-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Regular-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Regular-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Regular-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Regular-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 300;\n  src: url(\"@{font-path}/OpenSans-LightItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Light Italic\"), local(\"OpenSansLight-Italic\"),\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 400;\n  src: url(\"@{font-path}/OpenSans-Italic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Italic\"), local(\"OpenSans-Italic\"),\n       url(\"@{font-path}/OpenSans-Italic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Italic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Italic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Italic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Italic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 600;\n  src: url(\"@{font-path}/OpenSans-Semibold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Semibold\"), local(\"OpenSans-Semibold-webfont\"),\n       url(\"@{font-path}/OpenSans-Semibold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 600;\n  src: url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Semibold Italic\"), local(\"OpenSans-SemiboldItalic-webfont\"),\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 700;\n  src: url(\"@{font-path}/OpenSans-Bold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Bold\"), local(\"OpenSans-Bold\"),\n       url(\"@{font-path}/OpenSans-Bold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Bold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Bold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Bold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Bold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 700;\n  src: url(\"@{font-path}/OpenSans-BoldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Bold Italic\"), local(\"OpenSans-BoldItalic\"),\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 800;\n  src: url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Extrabold Italic\"), local(\"OpenSans-ExtraboldItalic\"),\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 800;\n  src: url(\"@{font-path}/OpenSans-ExtraBold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Extrabold\"), local(\"OpenSans-Extrabold\"),\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n","/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS and IE text size adjust after device orientation change,\n//    without disabling user zoom.\n//\n\nhtml {\n  font-family: sans-serif; // 1\n  -ms-text-size-adjust: 100%; // 2\n  -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n  margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n  display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n  display: inline-block; // 1\n  vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n  display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n  background-color: transparent;\n}\n\n//\n// Improve readability of focused elements when they are also in an\n// active/hover state.\n//\n\na:active,\na:hover {\n  outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n  border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n  font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n  font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n  background: #ff0;\n  color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n  font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\n\nsup {\n  top: -0.5em;\n}\n\nsub {\n  bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n  border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n  overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n  margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n  box-sizing: content-box;\n  height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n  overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace, monospace;\n  font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n//    Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  color: inherit; // 1\n  font: inherit; // 2\n  margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n  overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n  text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n//    and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n//    `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n  -webkit-appearance: button; // 2\n  cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n  cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n  border: 0;\n  padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n  line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n  box-sizing: border-box; // 1\n  padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.\n//\n\ninput[type=\"search\"] {\n  -webkit-appearance: textfield; // 1\n  box-sizing: content-box; //2\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n  border: 1px solid #c0c0c0;\n  margin: 0 2px;\n  padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n  border: 0; // 1\n  padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n  overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n  font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n  border-collapse: collapse;\n  border-spacing: 0;\n}\n\ntd,\nth {\n  padding: 0;\n}\n","/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n    *,\n    *:before,\n    *:after {\n        background: transparent !important;\n        color: #000 !important; // Black prints faster: h5bp.com/s\n        box-shadow: none !important;\n        text-shadow: none !important;\n    }\n\n    a,\n    a:visited {\n        text-decoration: underline;\n    }\n\n    a[href]:after {\n        content: \" (\" attr(href) \")\";\n    }\n\n    abbr[title]:after {\n        content: \" (\" attr(title) \")\";\n    }\n\n    // Don't show links that are fragment identifiers,\n    // or use the `javascript:` pseudo protocol\n    a[href^=\"#\"]:after,\n    a[href^=\"javascript:\"]:after {\n        content: \"\";\n    }\n\n    pre,\n    blockquote {\n        border: 1px solid #999;\n        page-break-inside: avoid;\n    }\n\n    thead {\n        display: table-header-group; // h5bp.com/t\n    }\n\n    tr,\n    img {\n        page-break-inside: avoid;\n    }\n\n    img {\n        max-width: 100% !important;\n    }\n\n    p,\n    h2,\n    h3 {\n        orphans: 3;\n        widows: 3;\n    }\n\n    h2,\n    h3 {\n        page-break-after: avoid;\n    }\n\n    // Bootstrap specific changes start\n\n    // Bootstrap components\n    .navbar {\n        display: none;\n    }\n    .btn,\n    .dropup > .btn {\n        > .caret {\n            border-top-color: #000 !important;\n        }\n    }\n    .label {\n        border: 1px solid #000;\n    }\n\n    .table {\n        border-collapse: collapse !important;\n\n        td,\n        th {\n            background-color: #fff !important;\n        }\n    }\n    .table-bordered {\n        th,\n        td {\n            border: 1px solid #ddd !important;\n        }\n    }\n\n    // Bootstrap specific changes end\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// <a href=\"#\"><span class=\"glyphicon glyphicon-star\"></span> Star</a>\n\n// Import the fonts\n@font-face {\n  font-family: 'Glyphicons Halflings';\n  src: url('@{icon-font-path}@{icon-font-name}.eot');\n  src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),\n       url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),\n       url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),\n       url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),\n       url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');\n}\n\n// Catchall baseclass\n.glyphicon {\n  position: relative;\n  top: 1px;\n  display: inline-block;\n  font-family: 'Glyphicons Halflings';\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk               { &:before { content: \"\\002a\"; } }\n.glyphicon-plus                   { &:before { content: \"\\002b\"; } }\n.glyphicon-euro,\n.glyphicon-eur                    { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus                  { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud                  { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope               { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil                 { &:before { content: \"\\270f\"; } }\n.glyphicon-glass                  { &:before { content: \"\\e001\"; } }\n.glyphicon-music                  { &:before { content: \"\\e002\"; } }\n.glyphicon-search                 { &:before { content: \"\\e003\"; } }\n.glyphicon-heart                  { &:before { content: \"\\e005\"; } }\n.glyphicon-star                   { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty             { &:before { content: \"\\e007\"; } }\n.glyphicon-user                   { &:before { content: \"\\e008\"; } }\n.glyphicon-film                   { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large               { &:before { content: \"\\e010\"; } }\n.glyphicon-th                     { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list                { &:before { content: \"\\e012\"; } }\n.glyphicon-ok                     { &:before { content: \"\\e013\"; } }\n.glyphicon-remove                 { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in                { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out               { &:before { content: \"\\e016\"; } }\n.glyphicon-off                    { &:before { content: \"\\e017\"; } }\n.glyphicon-signal                 { &:before { content: \"\\e018\"; } }\n.glyphicon-cog                    { &:before { content: \"\\e019\"; } }\n.glyphicon-trash                  { &:before { content: \"\\e020\"; } }\n.glyphicon-home                   { &:before { content: \"\\e021\"; } }\n.glyphicon-file                   { &:before { content: \"\\e022\"; } }\n.glyphicon-time                   { &:before { content: \"\\e023\"; } }\n.glyphicon-road                   { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt           { &:before { content: \"\\e025\"; } }\n.glyphicon-download               { &:before { content: \"\\e026\"; } }\n.glyphicon-upload                 { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox                  { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle            { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat                 { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh                { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt               { &:before { content: \"\\e032\"; } }\n.glyphicon-lock                   { &:before { content: \"\\e033\"; } }\n.glyphicon-flag                   { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones             { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off             { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down            { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up              { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode                 { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode                { &:before { content: \"\\e040\"; } }\n.glyphicon-tag                    { &:before { content: \"\\e041\"; } }\n.glyphicon-tags                   { &:before { content: \"\\e042\"; } }\n.glyphicon-book                   { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark               { &:before { content: \"\\e044\"; } }\n.glyphicon-print                  { &:before { content: \"\\e045\"; } }\n.glyphicon-camera                 { &:before { content: \"\\e046\"; } }\n.glyphicon-font                   { &:before { content: \"\\e047\"; } }\n.glyphicon-bold                   { &:before { content: \"\\e048\"; } }\n.glyphicon-italic                 { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height            { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width             { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left             { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center           { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right            { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify          { &:before { content: \"\\e055\"; } }\n.glyphicon-list                   { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left            { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right           { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video         { &:before { content: \"\\e059\"; } }\n.glyphicon-picture                { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker             { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust                 { &:before { content: \"\\e063\"; } }\n.glyphicon-tint                   { &:before { content: \"\\e064\"; } }\n.glyphicon-edit                   { &:before { content: \"\\e065\"; } }\n.glyphicon-share                  { &:before { content: \"\\e066\"; } }\n.glyphicon-check                  { &:before { content: \"\\e067\"; } }\n.glyphicon-move                   { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward          { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward          { &:before { content: \"\\e070\"; } }\n.glyphicon-backward               { &:before { content: \"\\e071\"; } }\n.glyphicon-play                   { &:before { content: \"\\e072\"; } }\n.glyphicon-pause                  { &:before { content: \"\\e073\"; } }\n.glyphicon-stop                   { &:before { content: \"\\e074\"; } }\n.glyphicon-forward                { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward           { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward           { &:before { content: \"\\e077\"; } }\n.glyphicon-eject                  { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left           { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right          { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign              { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign             { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign            { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign                { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign          { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign              { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot             { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle          { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle              { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle             { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left             { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right            { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up               { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down             { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt              { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full            { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small           { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign       { &:before { content: \"\\e101\"; } }\n.glyphicon-gift                   { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf                   { &:before { content: \"\\e103\"; } }\n.glyphicon-fire                   { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open               { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close              { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign           { &:before { content: \"\\e107\"; } }\n.glyphicon-plane                  { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar               { &:before { content: \"\\e109\"; } }\n.glyphicon-random                 { &:before { content: \"\\e110\"; } }\n.glyphicon-comment                { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet                 { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up             { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down           { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet                { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart          { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close           { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open            { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical        { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal      { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd                    { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn               { &:before { content: \"\\e122\"; } }\n.glyphicon-bell                   { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate            { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up              { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down            { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right             { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left              { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up                { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down              { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right     { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left      { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up        { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down      { &:before { content: \"\\e134\"; } }\n.glyphicon-globe                  { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench                 { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks                  { &:before { content: \"\\e137\"; } }\n.glyphicon-filter                 { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase              { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen             { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard              { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip              { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty            { &:before { content: \"\\e143\"; } }\n.glyphicon-link                   { &:before { content: \"\\e144\"; } }\n.glyphicon-phone                  { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin                { &:before { content: \"\\e146\"; } }\n.glyphicon-usd                    { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp                    { &:before { content: \"\\e149\"; } }\n.glyphicon-sort                   { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet       { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt   { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order          { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt      { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes     { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked              { &:before { content: \"\\e157\"; } }\n.glyphicon-expand                 { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down          { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up            { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in                 { &:before { content: \"\\e161\"; } }\n.glyphicon-flash                  { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out                { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window             { &:before { content: \"\\e164\"; } }\n.glyphicon-record                 { &:before { content: \"\\e165\"; } }\n.glyphicon-save                   { &:before { content: \"\\e166\"; } }\n.glyphicon-open                   { &:before { content: \"\\e167\"; } }\n.glyphicon-saved                  { &:before { content: \"\\e168\"; } }\n.glyphicon-import                 { &:before { content: \"\\e169\"; } }\n.glyphicon-export                 { &:before { content: \"\\e170\"; } }\n.glyphicon-send                   { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk            { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved           { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove          { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save            { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open            { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card            { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer               { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery                { &:before { content: \"\\e179\"; } }\n.glyphicon-header                 { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed             { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone               { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt              { &:before { content: \"\\e183\"; } }\n.glyphicon-tower                  { &:before { content: \"\\e184\"; } }\n.glyphicon-stats                  { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video               { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video               { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles              { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo           { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby            { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1              { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1              { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1              { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark         { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark      { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download         { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload           { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer           { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous         { &:before { content: \"\\e200\"; } }\n.glyphicon-cd                     { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file              { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file              { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up               { &:before { content: \"\\e204\"; } }\n.glyphicon-copy                   { &:before { content: \"\\e205\"; } }\n.glyphicon-paste                  { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door                   { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key                    { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert                  { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer              { &:before { content: \"\\e210\"; } }\n.glyphicon-king                   { &:before { content: \"\\e211\"; } }\n.glyphicon-queen                  { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn                   { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop                 { &:before { content: \"\\e214\"; } }\n.glyphicon-knight                 { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula           { &:before { content: \"\\e216\"; } }\n.glyphicon-tent                   { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard             { &:before { content: \"\\e218\"; } }\n.glyphicon-bed                    { &:before { content: \"\\e219\"; } }\n.glyphicon-apple                  { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase                  { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass              { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp                   { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate              { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank             { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors               { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin                { &:before { content: \"\\e227\"; } }\n.glyphicon-btc                    { &:before { content: \"\\e227\"; } }\n.glyphicon-xbt                    { &:before { content: \"\\e227\"; } }\n.glyphicon-yen                    { &:before { content: \"\\00a5\"; } }\n.glyphicon-jpy                    { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble                  { &:before { content: \"\\20bd\"; } }\n.glyphicon-rub                    { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale                  { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly              { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted       { &:before { content: \"\\e232\"; } }\n.glyphicon-education              { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal      { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical        { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger         { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window           { &:before { content: \"\\e237\"; } }\n.glyphicon-oil                    { &:before { content: \"\\e238\"; } }\n.glyphicon-grain                  { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses             { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size              { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color             { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background        { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top       { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom    { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left      { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical  { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right     { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right         { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left          { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom        { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top           { &:before { content: \"\\e253\"; } }\n.glyphicon-console                { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript            { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript              { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left              { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right             { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down              { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up                { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n  .box-sizing(border-box);\n}\n*:before,\n*:after {\n  .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n  font-size: 10px;\n  -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n  font-family: @font-family-base;\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @text-color;\n  background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n}\n\n\n// Links\n\na {\n  color: @link-color;\n  text-decoration: none;\n\n  &:hover,\n  &:focus {\n    color: @link-hover-color;\n    text-decoration: @link-hover-decoration;\n  }\n\n  &:focus {\n    .tab-focus();\n  }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n  margin: 0;\n}\n\n\n// Images\n\nimg {\n  vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n  .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n  border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n  padding: @thumbnail-padding;\n  line-height: @line-height-base;\n  background-color: @thumbnail-bg;\n  border: 1px solid @thumbnail-border;\n  border-radius: @thumbnail-border-radius;\n  .transition(all .2s ease-in-out);\n\n  // Keep them at most 100% wide\n  .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n  border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n  margin-top:    @line-height-computed;\n  margin-bottom: @line-height-computed;\n  border: 0;\n  border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content\n\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n  &:active,\n  &:focus {\n    position: static;\n    width: auto;\n    height: auto;\n    margin: 0;\n    overflow: visible;\n    clip: auto;\n  }\n}\n\n\n// iOS \"clickable elements\" fix for role=\"button\"\n//\n// Fixes \"clickability\" issue (and more generally, the firing of events such as focus as well)\n// for traditionally non-focusable elements with role=\"button\"\n// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n\n[role=\"button\"] {\n  cursor: pointer;\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n  -webkit-animation: @animation;\n       -o-animation: @animation;\n          animation: @animation;\n}\n.animation-name(@name) {\n  -webkit-animation-name: @name;\n          animation-name: @name;\n}\n.animation-duration(@duration) {\n  -webkit-animation-duration: @duration;\n          animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n  -webkit-animation-timing-function: @timing-function;\n          animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n  -webkit-animation-delay: @delay;\n          animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n  -webkit-animation-iteration-count: @iteration-count;\n          animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n  -webkit-animation-direction: @direction;\n          animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n  -webkit-animation-fill-mode: @fill-mode;\n          animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n  -webkit-backface-visibility: @visibility;\n     -moz-backface-visibility: @visibility;\n          backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n          box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n  -webkit-box-sizing: @boxmodel;\n     -moz-box-sizing: @boxmodel;\n          box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n  -webkit-column-count: @column-count;\n     -moz-column-count: @column-count;\n          column-count: @column-count;\n  -webkit-column-gap: @column-gap;\n     -moz-column-gap: @column-gap;\n          column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n  word-wrap: break-word;\n  -webkit-hyphens: @mode;\n     -moz-hyphens: @mode;\n      -ms-hyphens: @mode; // IE10+\n       -o-hyphens: @mode;\n          hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  // Firefox\n  &::-moz-placeholder {\n    color: @color;\n    opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n  }\n  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n  -webkit-transform: scale(@ratio);\n      -ms-transform: scale(@ratio); // IE9 only\n       -o-transform: scale(@ratio);\n          transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n  -webkit-transform: scale(@ratioX, @ratioY);\n      -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n       -o-transform: scale(@ratioX, @ratioY);\n          transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n  -webkit-transform: scaleX(@ratio);\n      -ms-transform: scaleX(@ratio); // IE9 only\n       -o-transform: scaleX(@ratio);\n          transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n  -webkit-transform: scaleY(@ratio);\n      -ms-transform: scaleY(@ratio); // IE9 only\n       -o-transform: scaleY(@ratio);\n          transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n  -webkit-transform: skewX(@x) skewY(@y);\n      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n       -o-transform: skewX(@x) skewY(@y);\n          transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n  -webkit-transform: translate(@x, @y);\n      -ms-transform: translate(@x, @y); // IE9 only\n       -o-transform: translate(@x, @y);\n          transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n  -webkit-transform: translate3d(@x, @y, @z);\n          transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees); // IE9 only\n       -o-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n  -webkit-transform: rotateX(@degrees);\n      -ms-transform: rotateX(@degrees); // IE9 only\n       -o-transform: rotateX(@degrees);\n          transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n  -webkit-transform: rotateY(@degrees);\n      -ms-transform: rotateY(@degrees); // IE9 only\n       -o-transform: rotateY(@degrees);\n          transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n  -webkit-perspective: @perspective;\n     -moz-perspective: @perspective;\n          perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n  -webkit-perspective-origin: @perspective;\n     -moz-perspective-origin: @perspective;\n          perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n  -webkit-transform-origin: @origin;\n     -moz-transform-origin: @origin;\n      -ms-transform-origin: @origin; // IE9 only\n          transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n  -webkit-transition: @transition;\n       -o-transition: @transition;\n          transition: @transition;\n}\n.transition-property(@transition-property) {\n  -webkit-transition-property: @transition-property;\n          transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n  -webkit-transition-delay: @transition-delay;\n          transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n  -webkit-transition-duration: @transition-duration;\n          transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n  -webkit-transition-timing-function: @timing-function;\n          transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n  -webkit-transition: -webkit-transform @transition;\n     -moz-transition: -moz-transform @transition;\n       -o-transition: -o-transform @transition;\n          transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n  -webkit-user-select: @select;\n     -moz-user-select: @select;\n      -ms-user-select: @select; // IE10+\n          user-select: @select;\n}\n","//\n// Variables\n// --------------------------------------------------\n// Bootstrap overrides and PatternFly-specific variables\n\n// Sass compass/sprockets asset helper flag\n// ----------------------\n@pf-sass-asset-helper:                                              false;\n\n// PatternFly-specific\n// -------------------\n@import \"color-variables.less\";\n\n@applauncher-pf-dropdown-menu-border-width:                         1px;\n@applauncher-pf-dropdown-menu-padding:                              9px;\n@applauncher-pf-dropdown-menu-width:                                220px;\n@applauncher-pf-dropdown-toggle-padding:                            7px 10px;\n@applauncher-pf-icon-padding-right:                                 4px;\n@applauncher-pf-menu-link-border-color:                             @color-pf-white;\n@applauncher-pf-menu-link-border-color-hover:                       @color-pf-black-400;\n@applauncher-pf-menu-link-border-width:                             1px;\n@applauncher-pf-menu-link-color:                                    @color-pf-black-300;\n@applauncher-pf-menu-link-color-disabled:                           @color-pf-black-500;\n@applauncher-pf-menu-link-color-hover:                              @color-pf-blue-400;\n@applauncher-pf-menu-link-padding:                                  7px 10px;\n@applauncher-pf-menu-link-padding-block-list:                       15px 10px;\n@applauncher-pf-menu-link-background-color-hover:                   @color-pf-black-150;\n@applauncher-pf-menu-link-shadow:                                   @color-pf-black-300;\n@applauncher-pf-menu-link-icon-font-size:                           2em;\n@applauncher-pf-menu-link-icon-width:                               ((9 * @applauncher-pf-menu-link-icon-font-size) / 14); //Numbers to imitate fa-fw class\n@bootstrap-switch-handle-default-bg-color:                          @color-pf-black-100;\n@bootstrap-treeview-highlight-color:                                @color-pf-blue-300;\n@btn-default-bg-img-start:                                          @color-pf-black-100;\n@btn-default-bg-img-stop:                                           @color-pf-black-200;\n@btn-xs-font-weight:                                                400;\n@card-pf-accented-border-top-color:                                 @color-pf-blue-300;\n@card-pf-aggregate-status-title-icon-color:                         @color-pf-black-900;\n@card-pf-bg-color:                                                  @color-pf-white;\n@card-pf-border-color:                                              @color-pf-black-300;\n@card-pf-border-top-color:                                          transparent;\n@card-pf-container-bg-color:                                        @color-pf-black-150;\n@card-pf-footer-bg-color:                                           @color-pf-black-100;\n@card-pf-selected-border-color:                                     @color-pf-blue-300;\n@contextselector-pf-margin-left:                                    10px;\n@contextselector-pf-nav-item-iconic-padding:                        23px 20px 18px 10px;\n@contextselector-title-width-mobile:                                170px;\n@contextselector-title-width-desktop:                               210px;\n@contextselector-pf-form-group-margin:                              0 5px 5px 5px;\n@contextselector-pf-list-max-height:                                200px;\n@contextselector-pf-list-li-padding:                                1px 10px;\n@contextselector-pf-list-li-border-width:                           1px 0;\n@donut-font-size-big:                                               30px;\n@drawer-pf-top-vertical:                                            58px;\n@drawer-pf-top-horizontal:                                          26px;\n@dropdown-divider-margin:                                           4px 1px;\n@dropdown-link-active-border-color:                                 @color-pf-blue;\n@dropdown-link-hover-border-color:                                  @color-pf-blue-100;\n@dropdown-link-focus-color:                                         @color-pf-white;\n@flyout-transition-pf:                                              all 200ms cubic-bezier(.35, 0, .25, 1);\n@font-family-monospace:                                             Menlo, Monaco, Consolas, monospace;\n@font-path:                                                         \"../fonts\";\n@footer-pf-bg-color:                                                @color-pf-black;\n@footer-pf-padding-left:                                            25px;\n@footer-pf-padding-top:                                             10px;\n@footer-pf-height:                                                  37px;\n@gray-light-pf:                                                     @color-pf-black-400;\n@gray-pf:                                                           @color-pf-black-700;\n@icon-font-name-fa:                                                 \"FontAwesome\";\n@icon-font-name-pf:                                                 \"PatternFlyIcons-webfont\";\n@icon-prefix:                                                       pficon;\n@img-bg-login:                                                      \"bg-login.jpg\";\n@img-path:                                                          \"../img\";\n@img-spinner:                                                       \"spinner.gif\";\n@img-spinner-inverse:                                               \"spinner-inverse.gif\";\n@img-spinner-inverse-lg:                                            \"spinner-inverse-lg.gif\";\n@img-spinner-inverse-sm:                                            \"spinner-inverse-sm.gif\";\n@img-spinner-inverse-xs:                                            \"spinner-inverse-xs.gif\";\n@img-spinner-lg:                                                    \"spinner-lg.gif\";\n@img-spinner-sm:                                                    \"spinner-sm.gif\";\n@img-spinner-xs:                                                    \"spinner-xs.gif\";\n@input-border-hover:                                                @color-pf-blue-200;\n@input-border-focus:                                                @color-pf-blue-400;\n@list-pf-border-color:                                              @color-pf-black-200;\n@list-pf-active-border-color:                                       @color-pf-black-400;\n@list-pf-header-background-color:                                   @color-pf-black-200;\n@list-pf-hover-background-color:                                    @color-pf-blue-25;\n@list-pf-main-content-width:                                        70%; // sets the proportional width of the main content vs the additional content\n@list-pf-padding:                                                   20px;\n@list-view-accented-border:                                         @color-pf-blue-300;\n@list-view-active-bg:                                               @color-pf-blue-50;\n@list-view-active-border:                                           @color-pf-black-400;\n@list-view-divider:                                                 @color-pf-black-300;\n@list-view-hover-bg:                                                @color-pf-blue-25;\n@list-group-top-border:                                             @color-pf-black-200;\n@login-bg-color:                                                    @color-pf-black;\n@login-container-bg-color-rgba:                                     fade(@color-pf-white, 5.5%);\n@modal-about-pf-bg-img:                                             \"bg-modal-about-pf.png\";\n@modal-title-padding-horizontal:                                    18px;\n@modal-title-padding-vertical:                                      10px;\n@navbar-pf-active-color:                                            @color-pf-black-150;\n@navbar-pf-alt-active-color:                                        @color-pf-white;\n@navbar-pf-alt-bg-color:                                            @color-pf-black;\n@navbar-pf-alt-bg-img:                                              \"bg-navbar-pf-alt.svg\";\n@navbar-pf-bg-color:                                                @color-pf-black;\n@navbar-pf-border-color:                                            @color-pf-blue-300;\n@navbar-pf-color:                                                   @color-pf-black-300;\n@navbar-pf-height:                                                  60px;\n@navbar-pf-icon-bar-bg-color:                                       @color-pf-white;\n@navbar-pf-navbar-navbar-brand-min-width:                           270px;\n@navbar-pf-navbar-navbar-brand-padding:                             8px 0 7px;\n@navbar-pf-navbar-navbar-persistent-bg-color:                       @color-pf-black-150;\n@navbar-pf-navbar-navbar-persistent-border-color:                   @color-pf-black-300;\n@navbar-pf-vertical-active-color:                                   @color-pf-white;\n@navbar-pf-vertical-bg-color:                                       #1d1d1d;\n@navbar-pf-vertical-bg-repeat:                                      no-repeat;\n@navbar-pf-vertical-bg-size:                                        auto 100%;\n@navbar-pf-vertical-border-color:                                   @color-pf-blue-300;\n@navbar-pf-vertical-border-style:                                   solid;\n@navbar-pf-vertical-border-width:                                   2px;\n@navbar-pf-vertical-color:                                          @color-pf-black-300;\n@navbar-pf-vertical-height:                                         60px;\n@navbar-pf-vertical-icon-bar-bg-color:                              @color-pf-white;\n@navbar-pf-vertical-navbar-brand-color:                             @color-pf-white;\n@navbar-pf-vertical-navbar-brand-icon-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-margin:                            0 0 0 25px;\n@navbar-pf-vertical-navbar-brand-min-height:                        35px;\n@navbar-pf-vertical-navbar-brand-max-height:                        35px;\n@navbar-pf-vertical-navbar-brand-line-height:                       34px;\n@navbar-pf-vertical-navbar-brand-name-breakpoint:                   480px;\n@navbar-pf-vertical-navbar-brand-name-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-padding:                           11px 0 12px;\n@navbar-pf-vertical-navbar-toggle-margin:                           13px 15px;\n@navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg:                @color-pf-white;\n@navbar-pf-vertical-nav-item-iconic-padding:                        21px 12px;\n@nav-pf-container-transition-period:                                250ms;\n@nav-pf-menu-transition-period:                                     100ms;\n@nav-pf-vertical-active-color:                                      @color-pf-white;\n@nav-pf-vertical-active-before-color:                               @color-pf-blue-300;\n@nav-pf-vertical-active-bg-color:                                   @color-pf-black-800;\n@nav-pf-vertical-active-border-color:                               @color-pf-black-900;\n@nav-pf-vertical-active-font-weight:                                600;\n@nav-pf-vertical-active-icon-color:                                 @color-pf-blue-300;\n@nav-pf-vertical-badge-color:                                       @color-pf-white;\n@nav-pf-vertical-badge-bg-color:                                    @color-pf-black-900;\n@nav-pf-vertical-bg-color:                                          @color-pf-black-900;\n@nav-pf-vertical-border-color:                                      @color-pf-black-900;\n@nav-pf-vertical-collapsed-width:                                   75px;\n@nav-pf-vertical-color:                                             @color-pf-black-300;\n@nav-pf-vertical-font-weight:                                       400;\n@nav-pf-vertical-icon-color:                                        @color-pf-black-600;\n@nav-pf-vertical-icon-width:                                        24px;\n@nav-pf-vertical-item-border-color:                                 @color-pf-black;\n@nav-pf-vertical-link-height:                                       63px;\n@nav-pf-vertical-link-padding:                                      17px 20px 17px 25px;\n@nav-pf-vertical-secondary-active-color:                            @color-pf-white;\n@nav-pf-vertical-secondary-active-bg-color:                         @color-pf-black-700;\n@nav-pf-vertical-secondary-active-icon-color:                       @color-pf-blue-300;\n@nav-pf-vertical-secondary-badge-color:                             @color-pf-white;\n@nav-pf-vertical-secondary-badge-bg-color:                          @color-pf-black-900;\n@nav-pf-vertical-secondary-border-color:                            @color-pf-blue-300;\n@nav-pf-vertical-secondary-color:                                   @color-pf-white;\n@nav-pf-vertical-secondary-header-margin:                           18px 20px 10px 20px;\n@nav-pf-vertical-secondary-indicator-color:                         @color-pf-black-600;\n@nav-pf-vertical-secondary-indicator-padding:                       14px 0;\n@nav-pf-vertical-secondary-item-color:                              @color-pf-black-300;\n@nav-pf-vertical-secondary-item-padding:                            0 0 5px 0;\n@nav-pf-vertical-secondary-link-height:                             63px;\n@nav-pf-vertical-secondary-link-padding:                            4px 0 2px 0;\n@nav-pf-vertical-secondary-list-header-margin:                      30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-active-color:                             @color-pf-white;\n@nav-pf-vertical-tertiary-active-bg-color:                          @color-pf-black-800;\n@nav-pf-vertical-tertiary-indicator-padding:                        0;\n@nav-pf-vertical-tertiary-bg-color:                                 @color-pf-black-700;\n@nav-pf-vertical-tertiary-color:                                    #fff;\n@nav-pf-vertical-tertiary-header-margin:                            18px 20px 10px 20px;\n@nav-pf-vertical-tertiary-list-header-margin:                       30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-item-padding:                             0 0 5px 0;\n@nav-pf-vertical-tertiary-item-color:                               @color-pf-black-300;\n@nav-pf-vertical-tertiary-link-margin:                              0 20px 0 20px;\n@nav-pf-vertical-tertiary-link-padding:                             4px 0 2px 0;\n@nav-pf-vertical-tertiary-badge-color:                              @color-pf-white;\n@nav-pf-vertical-tertiary-badge-bg-color:                           @color-pf-black-900;\n@nav-pf-vertical-width:                                             200px;\n@toast-notification-top:                                            80px;\n@pagination-padding-small-vertical:                                 0;\n@panel-default-border-color:                                        @color-pf-black-400;\n@pficon-var-add-circle-o:                                           \"\\e61b\";\n@pficon-var-applications:                                           \"\\e936\";\n@pficon-var-arrow:                                                  \"\\e929\";\n@pficon-var-asleep:                                                 \"\\e925\";\n@pficon-var-automation:                                             \"\\e937\";\n@pficon-var-blueprint:                                              \"\\e915\";\n@pficon-var-build:                                                  \"\\e902\";\n@pficon-var-builder-image:                                          \"\\e800\";\n@pficon-var-bundle:                                                 \"\\e918\";\n@pficon-var-catalog:                                                \"\\e939\";\n@pficon-var-chat:                                                   \"\\e928\";\n@pficon-var-close:                                                  \"\\e60b\";\n@pficon-var-cloud-security:                                         \"\\e903\";\n@pficon-var-cloud-tenant:                                           \"\\e904\";\n@pficon-var-cluster:                                                \"\\e620\";\n@pficon-var-connected:                                              \"\\e938\";\n@pficon-var-container-node:                                         \"\\e621\";\n@pficon-var-cpu:                                                    \"\\e927\";\n@pficon-var-degraded:                                               \"\\e91b\";\n@pficon-var-delete:                                                 \"\\e611\";\n@pficon-var-disconnected:                                           \"\\e93c\";\n@pficon-var-domain:                                                 \"\\e919\";\n@pficon-var-edit:                                                   \"\\e60a\";\n@pficon-var-enhancement:                                            \"\\e93a\";\n@pficon-var-enterprise:                                             \"\\e906\";\n@pficon-var-equalizer:                                              \"\\e610\";\n@pficon-var-error-circle-o:                                         \"\\e926\";\n@pficon-var-export:                                                 \"\\e616\";\n@pficon-var-flag:                                                   \"\\e603\";\n@pficon-var-flavor:                                                 \"\\e907\";\n@pficon-var-filter:                                                 \"\\e943\";\n@pficon-var-folder-close:                                           \"\\e607\";\n@pficon-var-folder-open:                                            \"\\e606\";\n@pficon-var-help:                                                   \"\\e605\";\n@pficon-var-history:                                                \"\\e93b\";\n@pficon-var-home:                                                   \"\\e618\";\n@pficon-var-image:                                                  \"\\e61f\";\n@pficon-var-import:                                                 \"\\e615\";\n@pficon-var-info:                                                   \"\\e92b\";\n@pficon-var-infrastructure:                                         \"\\e93d\";\n@pficon-var-integration:                                            \"\\e948\";\n@pficon-var-in-progress:                                            \"\\e92c\";\n@pficon-var-key:                                                    \"\\e924\";\n@pficon-var-kubernetes:                                             \"\\e627\";\n@pficon-var-locked:                                                 \"\\e923\";\n@pficon-var-maintenance:                                            \"\\e92d\";\n@pficon-var-memory:                                                 \"\\e908\";\n@pficon-var-messages:                                               \"\\e603\";\n@pficon-var-middleware:                                             \"\\e917\";\n@pficon-var-migration:                                              \"\\e92e\";\n@pficon-var-monitoring:                                             \"\\e944\";\n@pficon-var-network:                                                \"\\e909\";\n@pficon-var-network-range:                                          \"\\e94a\";\n@pficon-var-off:                                                    \"\\e92f\";\n@pficon-var-ok:                                                     \"\\e602\";\n@pficon-var-on:                                                     \"\\e931\";\n@pficon-var-on-running:                                             \"\\e930\";\n@pficon-var-openshift:                                              \"\\e626\";\n@pficon-var-optimize:                                               \"\\e93e\";\n@pficon-var-orders:                                                 \"\\e93f\";\n@pficon-var-paused:                                                 \"\\e932\";\n@pficon-var-pending:                                                \"\\e933\";\n@pficon-var-plugged:                                                \"\\e940\";\n@pficon-var-port:                                                   \"\\e945\";\n@pficon-var-private:                                                \"\\e914\";\n@pficon-var-print:                                                  \"\\e612\";\n@pficon-var-process-automation:                                     \"\\e949\";\n@pficon-var-project:                                                \"\\e905\";\n@pficon-var-rebalance:                                              \"\\e91c\";\n@pficon-var-rebooting:                                              \"\\e934\";\n@pficon-var-regions:                                                \"\\e90a\";\n@pficon-var-registry:                                               \"\\e623\";\n@pficon-var-remove:                                                 \"\\e611\";\n@pficon-var-replicator:                                             \"\\e624\";\n@pficon-var-repository:                                             \"\\e90b\";\n@pficon-var-resource-pool:                                          \"\\e90c\";\n@pficon-var-resources-almost-empty:                                 \"\\e91d\";\n@pficon-var-resources-almost-full:                                  \"\\e912\";\n@pficon-var-resources-full:                                         \"\\e92a\";\n@pficon-var-restart:                                                \"\\e617\";\n@pficon-var-route:                                                  \"\\e625\";\n@pficon-var-running:                                                \"\\e614\";\n@pficon-var-save:                                                   \"\\e601\";\n@pficon-var-satellite:                                              \"\\e94b\";\n@pficon-var-screen:                                                 \"\\e600\";\n@pficon-var-search:                                                 \"\\e921\";\n@pficon-var-security:                                               \"\\e946\";\n@pficon-var-server:                                                 \"\\e90d\";\n@pficon-var-server-group:                                           \"\\e91a\";\n@pficon-var-service:                                                \"\\e61e\";\n@pficon-var-service-catalog:                                        \"\\e941\";\n@pficon-var-services:                                               \"\\e947\";\n@pficon-var-settings:                                               \"\\e610\";\n@pficon-var-spinner:                                                \"\\e614\";\n@pficon-var-spinner2:                                               \"\\e613\";\n@pficon-var-storage-domain:                                         \"\\e90e\";\n@pficon-var-template:                                               \"\\e94c\";\n@pficon-var-tenant:                                                 \"\\e916\";\n@pficon-var-thumb-tack-o:                                           \"\\e920\";\n@pficon-var-topology:                                               \"\\e608\";\n@pficon-var-trend-down:                                             \"\\e900\";\n@pficon-var-trend-up:                                               \"\\e901\";\n@pficon-var-unlocked:                                               \"\\e922\";\n@pficon-var-unplugged:                                              \"\\e942\";\n@pficon-var-unknown:                                                \"\\e935\";\n@pficon-var-user:                                                   \"\\e91e\";\n@pficon-var-users:                                                  \"\\e91f\";\n@pficon-var-vcenter:                                                \"\\e94d\";\n@pficon-var-virtual-machine:                                        \"\\e90f\";\n@pficon-var-volume:                                                 \"\\e910\";\n@pficon-var-warning-triangle-o:                                     \"\\e913\";\n@pficon-var-zone:                                                   \"\\e911\";\n@progress-description-label-width:                                  85px;\n@sidebar-pf-bg:                                                     @color-pf-black-100;\n@sidebar-pf-border-color:                                           @color-pf-black-300;\n@skiplink-pf-top:                                                   12px;\n@skiplink-pf-left:                                                  10px;\n@table-border-hover:                                                @color-pf-blue-200;\n@table-cell-padding-bottom:                                         3px;\n@table-cell-padding-top:                                            2px;\n// Reference variables declared in block above\n@bootstrap-switch-bg-color-start:                                   @btn-default-bg-img-start;\n@bootstrap-switch-bg-color-stop:                                    @btn-default-bg-img-stop;\n@fa-font-path:                                                      @font-path;\n@navbar-pf-navbar-header-border-color:                              lighten(@navbar-pf-bg-color, 15%);\n@navbar-pf-navbar-nav-active-active-bg-color:                       lighten(@navbar-pf-bg-color, 8%);\n@navbar-pf-navbar-nav-active-active-open-bg-color:                  lighten(@navbar-pf-bg-color, 11%);\n@navbar-pf-navbar-nav-active-bg-color:                              lighten(@navbar-pf-bg-color, 12.5%);\n@navbar-pf-navbar-primary-bg-color-start:                           lighten(@navbar-pf-bg-color, 10%); // #474C50\n@navbar-pf-navbar-primary-bg-color-stop:                            @navbar-pf-bg-color; // #383F43\n@navbar-pf-navbar-utility-border-color:                             lighten(@navbar-pf-bg-color, 15.5%);\n@navbar-pf-navbar-utility-color:                                    @navbar-pf-color;\n@navbar-pf-navbar-utility-hover-bg-color:                           lighten(@navbar-pf-bg-color, 12.5%);\n@nav-pf-vertical-secondary-bg-color:                                @nav-pf-vertical-active-bg-color;\n@nav-tabs-color:                                                    @gray-pf;\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-bg-color-start:                   lighten(@navbar-pf-navbar-primary-bg-color-start, 8.5%);\n@navbar-pf-navbar-primary-context-bg-color-stop:                    lighten(@navbar-pf-navbar-primary-bg-color-stop, 11%);\n@navbar-pf-navbar-primary-hover-bg-color-start:                     lighten(@navbar-pf-navbar-primary-bg-color-start, 10%);\n@navbar-pf-navbar-primary-hover-bg-color-stop:                      lighten(@navbar-pf-navbar-primary-bg-color-stop, 10%);\n@navbar-pf-navbar-primary-hover-border-color:                       lighten(@navbar-pf-navbar-header-border-color, 20%);\n@navbar-pf-navbar-primary-context-border-color:                     lighten(@navbar-pf-navbar-header-border-color, 8%);\n@navbar-pf-navbar-primary-context-border-top-color:                 lighten(@navbar-pf-navbar-header-border-color, 7%);\n@navbar-pf-navbar-utility-hover-border-color:                       lighten(@navbar-pf-navbar-utility-border-color, 5%);\n@navbar-pf-navbar-utility-open-bg-color:                            lighten(@navbar-pf-navbar-utility-hover-bg-color, 7.5%);\n@navbar-pf-navbar-utility-open-border-color:                        lighten(@navbar-pf-navbar-utility-hover-border-color, 5%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-active-bg-color-start:                    lighten(@navbar-pf-navbar-primary-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-active-bg-color-stop:                     lighten(@navbar-pf-navbar-primary-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-active-border-color:                      lighten(@navbar-pf-navbar-primary-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-start:             lighten(@navbar-pf-navbar-primary-context-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-stop:              lighten(@navbar-pf-navbar-primary-context-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-hover-border-color:               lighten(@navbar-pf-navbar-primary-context-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-border-top-color:           lighten(@navbar-pf-navbar-primary-context-border-top-color, 6%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-active-bg-color-start:            lighten(@navbar-pf-navbar-primary-context-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-active-bg-color-stop:             lighten(@navbar-pf-navbar-primary-context-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-active-border-color:              lighten(@navbar-pf-navbar-primary-context-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-active-border-top-color:          lighten(@navbar-pf-navbar-primary-context-hover-border-top-color, 6%);\n// References variable declared in block above\n@navbar-pf-navbar-primary-context-active-border-right-color:        @navbar-pf-navbar-primary-context-active-border-color;\n@slider-line-height:                                                16px;\n@slider-horizontal-width:                                           100%;\n@slider-primary-top:                                                @color-pf-black-100;\n@slider-primary-bottom:                                             @color-pf-black-200;\n@slider-secondary-top:                                              @color-pf-blue-400;\n@slider-secondary-bottom:                                           @color-pf-blue-300;\n\n// Alternate navigation layout - Kept for backwards compatibility\n// --------------------------------------------------------------\n@footer-pf-alt-bg-color:                                            @footer-pf-bg-color;\n@footer-pf-alt-padding-left:                                        @footer-pf-padding-left;\n@footer-pf-alt-padding-top:                                         @footer-pf-padding-top;\n@footer-pf-alt-height:                                              @footer-pf-height;\n@img-path-alt:                                                      @img-path;\n@nav-pf-vertical-alt-active-color:                                  @color-pf-blue-300;\n@nav-pf-vertical-alt-bg-color:                                      @color-pf-white;\n@nav-pf-vertical-alt-badge-color:                                   @color-pf-white;\n@nav-pf-vertical-alt-border-color:                                  @sidebar-pf-border-color;\n@nav-pf-vertical-alt-collapsed-width:                               75px;\n@nav-pf-vertical-alt-link-height:                                   63px;\n@nav-pf-vertical-alt-link-padding:                                  17px 20px 17px 25px;\n@nav-pf-vertical-alt-width:                                         250px;\n@navbar-pf-alt-bg-repeat:                                           @navbar-pf-vertical-bg-repeat;\n@navbar-pf-alt-bg-size:                                             @navbar-pf-vertical-bg-size;\n@navbar-pf-alt-border-color:                                        @navbar-pf-vertical-border-color;\n@navbar-pf-alt-border-style:                                        @navbar-pf-vertical-border-style;\n@navbar-pf-alt-border-width:                                        @navbar-pf-vertical-border-width;\n@navbar-pf-alt-color:                                               @navbar-pf-vertical-color;\n@navbar-pf-alt-height:                                              @navbar-pf-vertical-height;\n@navbar-pf-alt-nav-item-iconic-padding:                             @navbar-pf-vertical-nav-item-iconic-padding;\n@navbar-pf-alt-navbar-brand-color:                                  @navbar-pf-vertical-navbar-brand-color;\n@navbar-pf-alt-navbar-brand-icon-margin:                            @navbar-pf-vertical-navbar-brand-icon-margin;\n@navbar-pf-alt-navbar-brand-margin:                                 @navbar-pf-vertical-navbar-brand-margin;\n@navbar-pf-alt-navbar-brand-min-height:                             @navbar-pf-vertical-navbar-brand-min-height;\n@navbar-pf-alt-navbar-brand-name-breakpoint:                        @navbar-pf-vertical-navbar-brand-name-breakpoint;\n@navbar-pf-alt-navbar-brand-name-margin:                            @navbar-pf-vertical-navbar-brand-name-margin;\n@navbar-pf-alt-navbar-brand-padding:                                @navbar-pf-vertical-navbar-brand-padding;\n@navbar-pf-alt-navbar-toggle-margin:                                @navbar-pf-vertical-navbar-toggle-margin;\n@navbar-pf-alt-navbar-toggle-icon-bar-hover-bg:                     @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n\n// Login page\n// -------------------\n@login-pf-brand-margin-top:                                               20px;\n@login-pf-brand-desktop-margin-top:                                       62px;\n@login-pf-page-header-margin-bottom:                                      20px;\n@login-pf-page-header-desktop-margin-bottom:                              40px;\n@login-pf-page-header-paragraph-margin-top:                               20px;\n@login-pf-card-pf-padding:                                 10px 20px 30px 20px;\n@login-pf-card-pf-desktop-padding:                         20px 40px 30px 40px;\n@login-pf-card-pf-max-width:                                             840px;\n@login-pf-checkbox-label-margin-bottom:                                   15px;\n@login-pf-dropdown-toggle-padding-right:                                  15px;\n@login-pf-btn-primary-margin-top:                                         40px;\n@login-pf-header-margin-bottom:                                           20px;\n@login-pf-header-desktop-margin-bottom:                                   30px;\n@login-pf-signup-margin-top:                                              40px;\n@login-pf-signup-a-margin-left:                                           10px;\n@login-pf-page-footer-links-margin-top:                                   60px;\n@login-pf-page-footer-links-li-margin-right:                              20px;\n@login-pf-page-footer-sso-margin-top:                                     40px;\n@login-pf-page-footer-sso-logos-li-margin:                                5px;\n@login-pf-page-accounts-margin:                                           20px;\n@login-pf-accounts-section-heading-margin-top:                            30px;\n@login-pf-accounts-section-heading-margin-bottom:                         30px;\n@login-pf-accounts-section-heading-desktop-margin-bottom:                 15px;\n@login-pf-accounts-section-heading-desktop-padding-right:                 40px;\n@login-pf-accounts-section-heading-desktop-padding-left:                  40px;\n@login-pf-accounts-link-margin-bottom:                                    15px;\n@login-pf-accounts-link-img-margin-right:                                 10px;\n@login-pf-accounts-link-a-padding:                                        7px;\n@login-pf-accounts-more-caret-margin-left:                                5px;\n@login-pf-social-margin:                                           40px 0 0 0;\n\n\n// Bootstrap overrides\n// -------------------\n@alert-info-border:                                                 @color-pf-black-500;\n@alert-link-font-weight:                                            500;\n@alert-padding:                                                     11px;\n@body-bg:                                                           @color-pf-white;\n@border-radius-base:                                                1px;\n@brand-danger:                                                      @color-pf-red;\n@brand-info:                                                        @color-pf-blue-500;\n@brand-primary:                                                     @color-pf-blue-300;\n@brand-success:                                                     @color-pf-green;\n@brand-warning:                                                     @color-pf-orange;\n@breadcrumb-bg:                                                     transparent;\n@breadcrumb-separator:                                              \"\\f105\";\n@bs-datetimepicker-timepicker-font-size:                            1em;\n@bs-datetimepicker-btn-hover-bg:                                    transparent;\n@btn-danger-bg:                                                     @color-pf-red-200;\n@btn-danger-border:                                                 @color-pf-red-300;\n@btn-default-border:                                                @color-pf-black-400;\n@btn-font-weight:                                                   600;\n@btn-primary-bg:                                                    @color-pf-blue;\n@btn-primary-border:                                                @color-pf-blue-500;\n@caret-width-base:                                                  0;\n@code-bg:                                                           @color-pf-blue-50;\n@dropdown-border:                                                   @color-pf-black-400;\n@dropdown-divider-bg:                                               @color-pf-black-200;\n@dropdown-link-active-color:                                        @color-pf-white;\n@dropdown-link-hover-bg:                                            @color-pf-blue-50;\n@font-family-base:                                                  \"Open Sans\", Helvetica, Arial, sans-serif;\n@font-size-base:                                                    12px;\n@gray-dark:                                                         lighten(@color-pf-black, 20%);   // #333\n@gray-darker:                                                       lighten(@color-pf-black, 13.5%); // #222\n@gray-light:                                                        lighten(@color-pf-black, 60%);   // #999\n@gray-lighter:                                                      lighten(@color-pf-black, 93.5%); // #eee\n@grid-gutter-width:                                                 40px;\n@icon-font-path:                                                    \"../fonts/\";\n@input-bg-disabled:                                                 @color-pf-black-150;\n@input-border:                                                      @color-pf-black-400;\n@line-height-base:                                                  1.66666667; // 20/12\n@link-color:                                                        @color-pf-blue;\n@list-group-border:                                                 @color-pf-black-150;\n@list-group-border-radius:                                          0;\n@list-group-hover-bg:                                               @color-pf-blue-50;\n@link-hover-color:                                                  @color-pf-blue-500;\n@nav-tabs-border-color:                                             @color-pf-black-200;\n@nav-tabs-link-hover-border-color:                                  transparent;\n@padding-large-horizontal:                                          10px;\n@padding-base-horizontal:                                           6px;\n@padding-base-vertical:                                             2px;\n@padding-large-vertical:                                            6px;\n@pager-border-radius:                                               0;\n@pager-disabled-color:                                              @color-pf-black-500;\n@pagination-bg:                                                     @color-pf-black-150;\n@pagination-border:                                                 @color-pf-black-400;\n@pagination-hover-bg:                                               @color-pf-black-200;\n@panel-inner-border:                                                @color-pf-black-300;\n@popover-arrow-color:                                               @color-pf-white;\n@popover-arrow-outer-color:                                         @color-pf-black-400;\n@popover-border-color:                                              @color-pf-black-400;\n@popover-max-width:                                                 220px;\n@popover-title-bg:                                                  @color-pf-black-150;\n@pre-bg:                                                            @color-pf-black-100;\n@progress-bg:                                                       @color-pf-black-200;\n@table-bg-accent:                                                   @color-pf-black-150;\n@table-bg-hover:                                                    @color-pf-blue-50;\n@table-border-color:                                                @color-pf-black-300;\n@table-cell-padding:                                                10px;\n@tooltip-arrow-width:                                               8px;\n@tooltip-bg:                                                        @color-pf-black-800;\n@tooltip-max-width:                                                 220px;\n// Reference variables declared in block above\n@alert-danger-bg:                                                   lighten(@color-pf-red-100, 55%);\n@alert-danger-border:                                               @brand-danger;\n@alert-danger-text:                                                 @gray-dark;\n@alert-info-bg:                                                     @color-pf-black-150;\n@alert-info-text:                                                   @gray-dark;\n@alert-success-bg:                                                  lighten(@color-pf-green-100, 8%);\n@alert-success-border:                                              @brand-success;\n@alert-success-text:                                                @gray-dark;\n@alert-warning-bg:                                                  lighten(@color-pf-orange-100, 8%);\n@alert-warning-border:                                              @brand-warning;\n@alert-warning-text:                                                @gray-dark;\n@badge-border-radius:                                               @border-radius-base;\n@border-radius-large:                                               @border-radius-base;\n@border-radius-small:                                               @border-radius-base;\n@breadcrumb-active-color:                                           @gray-pf;\n@breadcrumb-color:                                                  @gray-pf;\n@btn-default-bg:                                                    @gray-lighter;\n@btn-default-color:                                                 @gray-pf;\n@caret-width-large:                                                 @caret-width-base;\n@code-color:                                                        @color-pf-blue-600;\n@dropdown-fallback-border:                                          @dropdown-border;\n@dropdown-link-active-bg:                                           @link-color;\n@dropdown-link-hover-color:                                         @gray-pf;\n@font-size-h1:                                                      ceil((@font-size-base * 2)); // ~24px\n@font-size-h2:                                                      ceil((@font-size-base * 1.8333)); // ~22px\n@font-size-h3:                                                      ceil((@font-size-base * 1.3333)); // ~16px\n@font-size-h5:                                                      ceil((@font-size-base * 1.0833)); // ~13px\n@font-size-large:                                                   ceil((@font-size-base * 1.1666)); // ~14px\n@font-size-small:                                                   ceil((@font-size-base * .9166)); // ~11px\n@input-color:                                                       @gray-dark;\n@nav-tabs-active-link-hover-color:                                  @link-color;\n@nav-tabs-justified-link-border-color:                              @nav-tabs-border-color;\n@nav-pf-vertical-badges-width:                                      (@nav-pf-vertical-width + 50px);\n@padding-small-horizontal:                                          @padding-base-horizontal;\n@padding-small-vertical:                                            @padding-base-vertical;\n@panel-group-pf-danger-heading-bg:                                  @alert-danger-bg;\n@panel-group-pf-primary-heading-bg:                                 lighten(@brand-primary, 38%);\n@panel-group-pf-success-heading-bg:                                 @alert-success-bg;\n@panel-group-pf-warning-heading-bg:                                 @alert-warning-bg;\n@panel-group-pf-info-heading-bg:                                    lighten(desaturate(spin(@brand-info, 13), 45), 60%);\n@panel-danger-border:                                               @brand-danger;\n@panel-danger-heading-bg:                                           @brand-danger;\n@panel-info-border:                                                 @brand-info;\n@panel-info-heading-bg:                                             @brand-info;\n@panel-primary-border:                                              @brand-primary;\n@panel-primary-text:                                                @body-bg;\n@panel-success-border:                                              @brand-success;\n@panel-success-heading-bg:                                          @brand-success;\n@panel-warning-border:                                              @brand-warning;\n@panel-warning-heading-bg:                                          @brand-warning;\n@state-warning-text:                                                @brand-warning;\n@state-danger-text:                                                 @brand-danger;\n// Reference variable declared in block above\n@panel-danger-text:                                                 @panel-primary-text;\n@panel-info-text:                                                   @panel-primary-text;\n@panel-success-text:                                                @panel-primary-text;\n@panel-warning-text:                                                @panel-primary-text;\n\n// PatternFly-specific variables based on Bootstrap overides\n// ---------------------------------------------------------\n@bootstrap-switch-bg-color:                                         @btn-default-bg;\n@btn-danger-bg-img-start:                                           @brand-danger;\n@btn-danger-bg-img-stop:                                            @btn-danger-bg;\n@btn-primary-bg-img-start:                                          @brand-primary;\n@btn-primary-bg-img-stop:                                           @btn-primary-bg;\n@dropdown-link-focus-bg:                                            @link-color;\n@line-height-computed:                                              floor((@font-size-base * @line-height-base));\n@nav-pf-vertical-icon-size:                                         (@font-size-base + 8);\n@notification-badge-color:                                          @color-pf-blue-400;\n@progress-sm:                                                       (@line-height-computed - 6);\n@progress-xs:                                                       (@line-height-computed - 14);\n@syntax-1:                                                          @btn-danger-bg;\n@syntax-2:                                                          @gray-dark;\n@syntax-3:                                                          @brand-success;\n@syntax-4:                                                          @brand-info;\n@tooltip-font-size:                                                 @font-size-base;\n","// WebKit-style focus\n\n.tab-focus() {\n  // WebKit-specific. Other browsers will keep their default outline style.\n  // (Initially tried to also force default via `outline: initial`,\n  // but that seems to erroneously remove the outline in Firefox altogether.)\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\n","//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n  display: block;\n  padding: @thumbnail-padding;\n  margin-bottom: @line-height-computed;\n  line-height: @line-height-base;\n  background-color: @thumbnail-bg;\n  border: 1px solid @thumbnail-border;\n  border-radius: @thumbnail-border-radius;\n  .transition(border .2s ease-in-out);\n\n  > img,\n  a > img {\n    &:extend(.img-responsive);\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  // Add a hover state for linked versions only\n  a&:hover,\n  a&:focus,\n  a&.active {\n    border-color: @link-color;\n  }\n\n  // Image captions\n  .caption {\n    padding: @thumbnail-caption-padding;\n    color: @thumbnail-caption-color;\n  }\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n  position: relative;\n}\n\n.carousel-inner {\n  position: relative;\n  overflow: hidden;\n  width: 100%;\n\n  > .item {\n    display: none;\n    position: relative;\n    .transition(.6s ease-in-out left);\n\n    // Account for jankitude on images\n    > img,\n    > a > img {\n      &:extend(.img-responsive);\n      line-height: 1;\n    }\n\n    // WebKit CSS3 transforms for supported devices\n    @media all and (transform-3d), (-webkit-transform-3d) {\n      .transition-transform(~'0.6s ease-in-out');\n      .backface-visibility(~'hidden');\n      .perspective(1000px);\n\n      &.next,\n      &.active.right {\n        .translate3d(100%, 0, 0);\n        left: 0;\n      }\n      &.prev,\n      &.active.left {\n        .translate3d(-100%, 0, 0);\n        left: 0;\n      }\n      &.next.left,\n      &.prev.right,\n      &.active {\n        .translate3d(0, 0, 0);\n        left: 0;\n      }\n    }\n  }\n\n  > .active,\n  > .next,\n  > .prev {\n    display: block;\n  }\n\n  > .active {\n    left: 0;\n  }\n\n  > .next,\n  > .prev {\n    position: absolute;\n    top: 0;\n    width: 100%;\n  }\n\n  > .next {\n    left: 100%;\n  }\n  > .prev {\n    left: -100%;\n  }\n  > .next.left,\n  > .prev.right {\n    left: 0;\n  }\n\n  > .active.left {\n    left: -100%;\n  }\n  > .active.right {\n    left: 100%;\n  }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  width: @carousel-control-width;\n  .opacity(@carousel-control-opacity);\n  font-size: @carousel-control-font-size;\n  color: @carousel-control-color;\n  text-align: center;\n  text-shadow: @carousel-text-shadow;\n  background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug\n  // We can't have this transition here because WebKit cancels the carousel\n  // animation if you trip this while in the middle of another animation.\n\n  // Set gradients for backgrounds\n  &.left {\n    #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n  }\n  &.right {\n    left: auto;\n    right: 0;\n    #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n  }\n\n  // Hover/focus state\n  &:hover,\n  &:focus {\n    outline: 0;\n    color: @carousel-control-color;\n    text-decoration: none;\n    .opacity(.9);\n  }\n\n  // Toggles\n  .icon-prev,\n  .icon-next,\n  .glyphicon-chevron-left,\n  .glyphicon-chevron-right {\n    position: absolute;\n    top: 50%;\n    margin-top: -10px;\n    z-index: 5;\n    display: inline-block;\n  }\n  .icon-prev,\n  .glyphicon-chevron-left {\n    left: 50%;\n    margin-left: -10px;\n  }\n  .icon-next,\n  .glyphicon-chevron-right {\n    right: 50%;\n    margin-right: -10px;\n  }\n  .icon-prev,\n  .icon-next {\n    width:  20px;\n    height: 20px;\n    line-height: 1;\n    font-family: serif;\n  }\n\n\n  .icon-prev {\n    &:before {\n      content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n    }\n  }\n  .icon-next {\n    &:before {\n      content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n    }\n  }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n  position: absolute;\n  bottom: 10px;\n  left: 50%;\n  z-index: 15;\n  width: 60%;\n  margin-left: -30%;\n  padding-left: 0;\n  list-style: none;\n  text-align: center;\n\n  li {\n    display: inline-block;\n    width:  10px;\n    height: 10px;\n    margin: 1px;\n    text-indent: -999px;\n    border: 1px solid @carousel-indicator-border-color;\n    border-radius: 10px;\n    cursor: pointer;\n\n    // IE8-9 hack for event handling\n    //\n    // Internet Explorer 8-9 does not support clicks on elements without a set\n    // `background-color`. We cannot use `filter` since that's not viewed as a\n    // background color by the browser. Thus, a hack is needed.\n    // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer\n    //\n    // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n    // set alpha transparency for the best results possible.\n    background-color: #000 \\9; // IE8\n    background-color: rgba(0,0,0,0); // IE9\n  }\n  .active {\n    margin: 0;\n    width:  12px;\n    height: 12px;\n    background-color: @carousel-indicator-active-bg;\n  }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n  position: absolute;\n  left: 15%;\n  right: 15%;\n  bottom: 20px;\n  z-index: 10;\n  padding-top: 20px;\n  padding-bottom: 20px;\n  color: @carousel-caption-color;\n  text-align: center;\n  text-shadow: @carousel-text-shadow;\n  & .btn {\n    text-shadow: none; // No shadow for button elements in carousel-caption\n  }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n  // Scale up the controls a smidge\n  .carousel-control {\n    .glyphicon-chevron-left,\n    .glyphicon-chevron-right,\n    .icon-prev,\n    .icon-next {\n      width: (@carousel-control-font-size * 1.5);\n      height: (@carousel-control-font-size * 1.5);\n      margin-top: (@carousel-control-font-size / -2);\n      font-size: (@carousel-control-font-size * 1.5);\n    }\n    .glyphicon-chevron-left,\n    .icon-prev {\n      margin-left: (@carousel-control-font-size / -2);\n    }\n    .glyphicon-chevron-right,\n    .icon-next {\n      margin-right: (@carousel-control-font-size / -2);\n    }\n  }\n\n  // Show and left align the captions\n  .carousel-caption {\n    left: 20%;\n    right: 20%;\n    padding-bottom: 30px;\n  }\n\n  // Move up the indicators\n  .carousel-indicators {\n    bottom: 20px;\n  }\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n  display: @display;\n  max-width: 100%; // Part 1: Set a maximum relative to the parent\n  height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n  background-image: url(\"@{file-1x}\");\n\n  @media\n  only screen and (-webkit-min-device-pixel-ratio: 2),\n  only screen and (   min--moz-device-pixel-ratio: 2),\n  only screen and (     -o-min-device-pixel-ratio: 2/1),\n  only screen and (        min-device-pixel-ratio: 2),\n  only screen and (                min-resolution: 192dpi),\n  only screen and (                min-resolution: 2dppx) {\n    background-image: url(\"@{file-2x}\");\n    background-size: @width-1x @height-1x;\n  }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n  font-family: @headings-font-family;\n  font-weight: @headings-font-weight;\n  line-height: @headings-line-height;\n  color: @headings-color;\n\n  small,\n  .small {\n    font-weight: normal;\n    line-height: 1;\n    color: @headings-small-color;\n  }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n  margin-top: @line-height-computed;\n  margin-bottom: (@line-height-computed / 2);\n\n  small,\n  .small {\n    font-size: 65%;\n  }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n  margin-top: (@line-height-computed / 2);\n  margin-bottom: (@line-height-computed / 2);\n\n  small,\n  .small {\n    font-size: 75%;\n  }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n  margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n  margin-bottom: @line-height-computed;\n  font-size: floor((@font-size-base * 1.15));\n  font-weight: 300;\n  line-height: 1.4;\n\n  @media (min-width: @screen-sm-min) {\n    font-size: (@font-size-base * 1.5);\n  }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n  font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n  background-color: @state-warning-bg;\n  padding: .2em;\n}\n\n// Alignment\n.text-left           { text-align: left; }\n.text-right          { text-align: right; }\n.text-center         { text-align: center; }\n.text-justify        { text-align: justify; }\n.text-nowrap         { white-space: nowrap; }\n\n// Transformation\n.text-lowercase      { text-transform: lowercase; }\n.text-uppercase      { text-transform: uppercase; }\n.text-capitalize     { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n  color: @text-muted;\n}\n.text-primary {\n  .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n  .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n  .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n  .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n  .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n  // Given the contrast here, this is the only class to have its color inverted\n  // automatically.\n  color: #fff;\n  .bg-variant(@brand-primary);\n}\n.bg-success {\n  .bg-variant(@state-success-bg);\n}\n.bg-info {\n  .bg-variant(@state-info-bg);\n}\n.bg-warning {\n  .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n  .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n  padding-bottom: ((@line-height-computed / 2) - 1);\n  margin: (@line-height-computed * 2) 0 @line-height-computed;\n  border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n  margin-top: 0;\n  margin-bottom: (@line-height-computed / 2);\n  ul,\n  ol {\n    margin-bottom: 0;\n  }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n  padding-left: 0;\n  list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n  .list-unstyled();\n  margin-left: -5px;\n\n  > li {\n    display: inline-block;\n    padding-left: 5px;\n    padding-right: 5px;\n  }\n}\n\n// Description Lists\ndl {\n  margin-top: 0; // Remove browser default\n  margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n  line-height: @line-height-base;\n}\ndt {\n  font-weight: bold;\n}\ndd {\n  margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n  dd {\n    &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n  }\n\n  @media (min-width: @dl-horizontal-breakpoint) {\n    dt {\n      float: left;\n      width: (@dl-horizontal-offset - 20);\n      clear: left;\n      text-align: right;\n      .text-overflow();\n    }\n    dd {\n      margin-left: @dl-horizontal-offset;\n    }\n  }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n  cursor: help;\n  border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n  font-size: 90%;\n  .text-uppercase();\n}\n\n// Blockquotes\nblockquote {\n  padding: (@line-height-computed / 2) @line-height-computed;\n  margin: 0 0 @line-height-computed;\n  font-size: @blockquote-font-size;\n  border-left: 5px solid @blockquote-border-color;\n\n  p,\n  ul,\n  ol {\n    &:last-child {\n      margin-bottom: 0;\n    }\n  }\n\n  // Note: Deprecated small and .small as of v3.1.0\n  // Context: https://github.com/twbs/bootstrap/issues/11660\n  footer,\n  small,\n  .small {\n    display: block;\n    font-size: 80%; // back to default font-size\n    line-height: @line-height-base;\n    color: @blockquote-small-color;\n\n    &:before {\n      content: '\\2014 \\00A0'; // em dash, nbsp\n    }\n  }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n  padding-right: 15px;\n  padding-left: 0;\n  border-right: 5px solid @blockquote-border-color;\n  border-left: 0;\n  text-align: right;\n\n  // Account for citation\n  footer,\n  small,\n  .small {\n    &:before { content: ''; }\n    &:after {\n      content: '\\00A0 \\2014'; // nbsp, em dash\n    }\n  }\n}\n\n// Addresses\naddress {\n  margin-bottom: @line-height-computed;\n  font-style: normal;\n  line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n  color: @color;\n  a&:hover,\n  a&:focus {\n    color: darken(@color, 10%);\n  }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n  background-color: @color;\n  a&:hover,\n  a&:focus {\n    background-color: darken(@color, 10%);\n  }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n  font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: @code-color;\n  background-color: @code-bg;\n  border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: @kbd-color;\n  background-color: @kbd-bg;\n  border-radius: @border-radius-small;\n  box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n\n  kbd {\n    padding: 0;\n    font-size: 100%;\n    font-weight: bold;\n    box-shadow: none;\n  }\n}\n\n// Blocks of code\npre {\n  display: block;\n  padding: ((@line-height-computed - 1) / 2);\n  margin: 0 0 (@line-height-computed / 2);\n  font-size: (@font-size-base - 1); // 14px to 13px\n  line-height: @line-height-base;\n  word-break: break-all;\n  word-wrap: break-word;\n  color: @pre-color;\n  background-color: @pre-bg;\n  border: 1px solid @pre-border-color;\n  border-radius: @border-radius-base;\n\n  // Account for some code outputs that place code tags in pre tags\n  code {\n    padding: 0;\n    font-size: inherit;\n    color: inherit;\n    white-space: pre-wrap;\n    background-color: transparent;\n    border-radius: 0;\n  }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n  max-height: @pre-scrollable-max-height;\n  overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n  .container-fixed();\n\n  @media (min-width: @screen-sm-min) {\n    width: @container-sm;\n  }\n  @media (min-width: @screen-md-min) {\n    width: @container-md;\n  }\n  @media (min-width: @screen-lg-min) {\n    width: @container-lg;\n  }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n  .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n  .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n  .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n  .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n  .make-grid(lg);\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @grid-gutter-width) {\n  margin-right: auto;\n  margin-left: auto;\n  padding-left:  floor((@gutter / 2));\n  padding-right: ceil((@gutter / 2));\n  &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n  margin-left:  ceil((@gutter / -2));\n  margin-right: floor((@gutter / -2));\n  &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  float: left;\n  width: percentage((@columns / @grid-columns));\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n  margin-left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-push(@columns) {\n  left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-pull(@columns) {\n  right: percentage((@columns / @grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-sm-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-offset(@columns) {\n  @media (min-width: @screen-sm-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-push(@columns) {\n  @media (min-width: @screen-sm-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-pull(@columns) {\n  @media (min-width: @screen-sm-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-md-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-offset(@columns) {\n  @media (min-width: @screen-md-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-push(@columns) {\n  @media (min-width: @screen-md-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-pull(@columns) {\n  @media (min-width: @screen-md-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-lg-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-offset(@columns) {\n  @media (min-width: @screen-lg-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-push(@columns) {\n  @media (min-width: @screen-lg-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-pull(@columns) {\n  @media (min-width: @screen-lg-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n  // Common styles for all sizes of grid columns, widths 1-12\n  .col(@index) { // initial\n    @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n    .col((@index + 1), @item);\n  }\n  .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n    @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n    .col((@index + 1), ~\"@{list}, @{item}\");\n  }\n  .col(@index, @list) when (@index > @grid-columns) { // terminal\n    @{list} {\n      position: relative;\n      // Prevent columns from collapsing when empty\n      min-height: 1px;\n      // Inner gutter via padding\n      padding-left:  ceil((@grid-gutter-width / 2));\n      padding-right: floor((@grid-gutter-width / 2));\n    }\n  }\n  .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n  .col(@index) { // initial\n    @item: ~\".col-@{class}-@{index}\";\n    .col((@index + 1), @item);\n  }\n  .col(@index, @list) when (@index =< @grid-columns) { // general\n    @item: ~\".col-@{class}-@{index}\";\n    .col((@index + 1), ~\"@{list}, @{item}\");\n  }\n  .col(@index, @list) when (@index > @grid-columns) { // terminal\n    @{list} {\n      float: left;\n    }\n  }\n  .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n  .col-@{class}-@{index} {\n    width: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n  .col-@{class}-push-@{index} {\n    left: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n  .col-@{class}-push-0 {\n    left: auto;\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n  .col-@{class}-pull-@{index} {\n    right: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n  .col-@{class}-pull-0 {\n    right: auto;\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n  .col-@{class}-offset-@{index} {\n    margin-left: percentage((@index / @grid-columns));\n  }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n  .calc-grid-column(@index, @class, @type);\n  // next iteration\n  .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n  .float-grid-columns(@class);\n  .loop-grid-columns(@grid-columns, @class, width);\n  .loop-grid-columns(@grid-columns, @class, pull);\n  .loop-grid-columns(@grid-columns, @class, push);\n  .loop-grid-columns(@grid-columns, @class, offset);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n  background-color: @table-bg;\n}\ncaption {\n  padding-top: @table-cell-padding;\n  padding-bottom: @table-cell-padding;\n  color: @text-muted;\n  text-align: left;\n}\nth {\n  text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n  width: 100%;\n  max-width: 100%;\n  margin-bottom: @line-height-computed;\n  // Cells\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-cell-padding;\n        line-height: @line-height-base;\n        vertical-align: top;\n        border-top: 1px solid @table-border-color;\n      }\n    }\n  }\n  // Bottom align for column headings\n  > thead > tr > th {\n    vertical-align: bottom;\n    border-bottom: 2px solid @table-border-color;\n  }\n  // Remove top border from thead by default\n  > caption + thead,\n  > colgroup + thead,\n  > thead:first-child {\n    > tr:first-child {\n      > th,\n      > td {\n        border-top: 0;\n      }\n    }\n  }\n  // Account for multiple tbody instances\n  > tbody + tbody {\n    border-top: 2px solid @table-border-color;\n  }\n\n  // Nesting\n  .table {\n    background-color: @body-bg;\n  }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-condensed-cell-padding;\n      }\n    }\n  }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n  border: 1px solid @table-border-color;\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        border: 1px solid @table-border-color;\n      }\n    }\n  }\n  > thead > tr {\n    > th,\n    > td {\n      border-bottom-width: 2px;\n    }\n  }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n  > tbody > tr:nth-of-type(odd) {\n    background-color: @table-bg-accent;\n  }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n  > tbody > tr:hover {\n    background-color: @table-bg-hover;\n  }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n  position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n  float: none;\n  display: table-column;\n}\ntable {\n  td,\n  th {\n    &[class*=\"col-\"] {\n      position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n      float: none;\n      display: table-cell;\n    }\n  }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n  overflow-x: auto;\n  min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n\n  @media screen and (max-width: @screen-xs-max) {\n    width: 100%;\n    margin-bottom: (@line-height-computed * 0.75);\n    overflow-y: hidden;\n    -ms-overflow-style: -ms-autohiding-scrollbar;\n    border: 1px solid @table-border-color;\n\n    // Tighten up spacing\n    > .table {\n      margin-bottom: 0;\n\n      // Ensure the content doesn't wrap\n      > thead,\n      > tbody,\n      > tfoot {\n        > tr {\n          > th,\n          > td {\n            white-space: nowrap;\n          }\n        }\n      }\n    }\n\n    // Special overrides for the bordered tables\n    > .table-bordered {\n      border: 0;\n\n      // Nuke the appropriate borders so that the parent can handle them\n      > thead,\n      > tbody,\n      > tfoot {\n        > tr {\n          > th:first-child,\n          > td:first-child {\n            border-left: 0;\n          }\n          > th:last-child,\n          > td:last-child {\n            border-right: 0;\n          }\n        }\n      }\n\n      // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n      // chances are there will be only one `tr` in a `thead` and that would\n      // remove the border altogether.\n      > tbody,\n      > tfoot {\n        > tr:last-child {\n          > th,\n          > td {\n            border-bottom: 0;\n          }\n        }\n      }\n\n    }\n  }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n  // Exact selectors below required to override `.table-striped` and prevent\n  // inheritance to nested tables.\n  .table > thead > tr,\n  .table > tbody > tr,\n  .table > tfoot > tr {\n    > td.@{state},\n    > th.@{state},\n    &.@{state} > td,\n    &.@{state} > th {\n      background-color: @background;\n    }\n  }\n\n  // Hover states for `.table-hover`\n  // Note: this is not available for cells or rows within `thead` or `tfoot`.\n  .table-hover > tbody > tr {\n    > td.@{state}:hover,\n    > th.@{state}:hover,\n    &.@{state}:hover > td,\n    &:hover > .@{state},\n    &.@{state}:hover > th {\n      background-color: darken(@background, 5%);\n    }\n  }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n  padding: 0;\n  margin: 0;\n  border: 0;\n  // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n  // so we reset that to ensure it behaves more like a standard block element.\n  // See https://github.com/twbs/bootstrap/issues/12359.\n  min-width: 0;\n}\n\nlegend {\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin-bottom: @line-height-computed;\n  font-size: (@font-size-base * 1.5);\n  line-height: inherit;\n  color: @legend-color;\n  border: 0;\n  border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n  display: inline-block;\n  max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n  margin-bottom: 5px;\n  font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n  .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  margin: 4px 0 0;\n  margin-top: 1px \\9; // IE8-9\n  line-height: normal;\n}\n\ninput[type=\"file\"] {\n  display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n  display: block;\n  width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n  height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n  .tab-focus();\n}\n\n// Adjust output element\noutput {\n  display: block;\n  padding-top: (@padding-base-vertical + 1);\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n  display: block;\n  width: 100%;\n  height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n  padding: @padding-base-vertical @padding-base-horizontal;\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @input-color;\n  background-color: @input-bg;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid @input-border;\n  border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.\n  .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n  .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n  // Customize the `:focus` state to imitate native WebKit styles.\n  .form-control-focus();\n\n  // Placeholder\n  .placeholder();\n\n  // Unstyle the caret on `<select>`s in IE10+.\n  &::-ms-expand {\n    border: 0;\n    background-color: transparent;\n  }\n\n  // Disabled and read-only inputs\n  //\n  // HTML5 says that controls under a fieldset > legend:first-child won't be\n  // disabled if the fieldset is disabled. Due to implementation difficulty, we\n  // don't honor that edge case; we style them as disabled anyway.\n  &[disabled],\n  &[readonly],\n  fieldset[disabled] & {\n    background-color: @input-bg-disabled;\n    opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655\n  }\n\n  &[disabled],\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n\n  // Reset height for `textarea`s\n  textarea& {\n    height: auto;\n  }\n}\n\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n  -webkit-appearance: none;\n}\n\n\n// Special styles for iOS temporal inputs\n//\n// In Mobile Safari, setting `display: block` on temporal inputs causes the\n// text within the input to become vertically misaligned. As a workaround, we\n// set a pixel line-height that matches the given height of the input, but only\n// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848\n//\n// Note that as of 9.3, iOS doesn't support `week`.\n\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n  input[type=\"date\"],\n  input[type=\"time\"],\n  input[type=\"datetime-local\"],\n  input[type=\"month\"] {\n    &.form-control {\n      line-height: @input-height-base;\n    }\n\n    &.input-sm,\n    .input-group-sm & {\n      line-height: @input-height-small;\n    }\n\n    &.input-lg,\n    .input-group-lg & {\n      line-height: @input-height-large;\n    }\n  }\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n  margin-bottom: @form-group-margin-bottom;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n  position: relative;\n  display: block;\n  margin-top: 10px;\n  margin-bottom: 10px;\n\n  label {\n    min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: normal;\n    cursor: pointer;\n  }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n  position: absolute;\n  margin-left: -20px;\n  margin-top: 4px \\9;\n}\n\n.radio + .radio,\n.checkbox + .checkbox {\n  margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n  position: relative;\n  display: inline-block;\n  padding-left: 20px;\n  margin-bottom: 0;\n  vertical-align: middle;\n  font-weight: normal;\n  cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n  margin-top: 0;\n  margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n// Some special care is needed because <label>s don't inherit their parent's `cursor`.\n//\n// Note: Neither radios nor checkboxes can be readonly.\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  &[disabled],\n  &.disabled,\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n}\n// These classes are used directly on <label>s\n.radio-inline,\n.checkbox-inline {\n  &.disabled,\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n}\n// These classes are used on elements with <label> descendants\n.radio,\n.checkbox {\n  &.disabled,\n  fieldset[disabled] & {\n    label {\n      cursor: @cursor-disabled;\n    }\n  }\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n.form-control-static {\n  // Size it appropriately next to real form controls\n  padding-top: (@padding-base-vertical + 1);\n  padding-bottom: (@padding-base-vertical + 1);\n  // Remove default margin from `p`\n  margin-bottom: 0;\n  min-height: (@line-height-computed + @font-size-base);\n\n  &.input-lg,\n  &.input-sm {\n    padding-left: 0;\n    padding-right: 0;\n  }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n//\n// The `.form-group-* form-control` variations are sadly duplicated to avoid the\n// issue documented in https://github.com/twbs/bootstrap/issues/15074.\n\n.input-sm {\n  .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);\n}\n.form-group-sm {\n  .form-control {\n    height: @input-height-small;\n    padding: @padding-small-vertical @padding-small-horizontal;\n    font-size: @font-size-small;\n    line-height: @line-height-small;\n    border-radius: @input-border-radius-small;\n  }\n  select.form-control {\n    height: @input-height-small;\n    line-height: @input-height-small;\n  }\n  textarea.form-control,\n  select[multiple].form-control {\n    height: auto;\n  }\n  .form-control-static {\n    height: @input-height-small;\n    min-height: (@line-height-computed + @font-size-small);\n    padding: (@padding-small-vertical + 1) @padding-small-horizontal;\n    font-size: @font-size-small;\n    line-height: @line-height-small;\n  }\n}\n\n.input-lg {\n  .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);\n}\n.form-group-lg {\n  .form-control {\n    height: @input-height-large;\n    padding: @padding-large-vertical @padding-large-horizontal;\n    font-size: @font-size-large;\n    line-height: @line-height-large;\n    border-radius: @input-border-radius-large;\n  }\n  select.form-control {\n    height: @input-height-large;\n    line-height: @input-height-large;\n  }\n  textarea.form-control,\n  select[multiple].form-control {\n    height: auto;\n  }\n  .form-control-static {\n    height: @input-height-large;\n    min-height: (@line-height-computed + @font-size-large);\n    padding: (@padding-large-vertical + 1) @padding-large-horizontal;\n    font-size: @font-size-large;\n    line-height: @line-height-large;\n  }\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n.has-feedback {\n  // Enable absolute positioning\n  position: relative;\n\n  // Ensure icons don't overlap text\n  .form-control {\n    padding-right: (@input-height-base * 1.25);\n  }\n}\n// Feedback icon (requires .glyphicon classes)\n.form-control-feedback {\n  position: absolute;\n  top: 0;\n  right: 0;\n  z-index: 2; // Ensure icon is above input groups\n  display: block;\n  width: @input-height-base;\n  height: @input-height-base;\n  line-height: @input-height-base;\n  text-align: center;\n  pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n  width: @input-height-large;\n  height: @input-height-large;\n  line-height: @input-height-large;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n  width: @input-height-small;\n  height: @input-height-small;\n  line-height: @input-height-small;\n}\n\n// Feedback states\n.has-success {\n  .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n.has-warning {\n  .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);\n}\n.has-error {\n  .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);\n}\n\n// Reposition feedback icon if input has visible label above\n.has-feedback label {\n\n  & ~ .form-control-feedback {\n    top: (@line-height-computed + 5); // Height of the `label` and its margin\n  }\n  &.sr-only ~ .form-control-feedback {\n    top: 0;\n  }\n}\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n  display: block; // account for any element using help-block\n  margin-top: 5px;\n  margin-bottom: 10px;\n  color: lighten(@text-color, 25%); // lighten the text some for contrast\n}\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n  // Kick in the inline\n  @media (min-width: @screen-sm-min) {\n    // Inline-block all the things for \"inline\"\n    .form-group {\n      display: inline-block;\n      margin-bottom: 0;\n      vertical-align: middle;\n    }\n\n    // In navbar-form, allow folks to *not* use `.form-group`\n    .form-control {\n      display: inline-block;\n      width: auto; // Prevent labels from stacking above inputs in `.form-group`\n      vertical-align: middle;\n    }\n\n    // Make static controls behave like regular ones\n    .form-control-static {\n      display: inline-block;\n    }\n\n    .input-group {\n      display: inline-table;\n      vertical-align: middle;\n\n      .input-group-addon,\n      .input-group-btn,\n      .form-control {\n        width: auto;\n      }\n    }\n\n    // Input groups need that 100% width though\n    .input-group > .form-control {\n      width: 100%;\n    }\n\n    .control-label {\n      margin-bottom: 0;\n      vertical-align: middle;\n    }\n\n    // Remove default margin on radios/checkboxes that were used for stacking, and\n    // then undo the floating of radios and checkboxes to match.\n    .radio,\n    .checkbox {\n      display: inline-block;\n      margin-top: 0;\n      margin-bottom: 0;\n      vertical-align: middle;\n\n      label {\n        padding-left: 0;\n      }\n    }\n    .radio input[type=\"radio\"],\n    .checkbox input[type=\"checkbox\"] {\n      position: relative;\n      margin-left: 0;\n    }\n\n    // Re-override the feedback icon.\n    .has-feedback .form-control-feedback {\n      top: 0;\n    }\n  }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n  // Consistent vertical alignment of radios and checkboxes\n  //\n  // Labels also get some reset styles, but that is scoped to a media query below.\n  .radio,\n  .checkbox,\n  .radio-inline,\n  .checkbox-inline {\n    margin-top: 0;\n    margin-bottom: 0;\n    padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n  }\n  // Account for padding we're adding to ensure the alignment and of help text\n  // and other content below items\n  .radio,\n  .checkbox {\n    min-height: (@line-height-computed + (@padding-base-vertical + 1));\n  }\n\n  // Make form groups behave like rows\n  .form-group {\n    .make-row();\n  }\n\n  // Reset spacing and right align labels, but scope to media queries so that\n  // labels on narrow viewports stack the same as a default form example.\n  @media (min-width: @screen-sm-min) {\n    .control-label {\n      text-align: right;\n      margin-bottom: 0;\n      padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n    }\n  }\n\n  // Validation states\n  //\n  // Reposition the icon because it's now within a grid column and columns have\n  // `position: relative;` on them. Also accounts for the grid gutter padding.\n  .has-feedback .form-control-feedback {\n    right: floor((@grid-gutter-width / 2));\n  }\n\n  // Form group sizes\n  //\n  // Quick utility class for applying `.input-lg` and `.input-sm` styles to the\n  // inputs and labels within a `.form-group`.\n  .form-group-lg {\n    @media (min-width: @screen-sm-min) {\n      .control-label {\n        padding-top: (@padding-large-vertical + 1);\n        font-size: @font-size-large;\n      }\n    }\n  }\n  .form-group-sm {\n    @media (min-width: @screen-sm-min) {\n      .control-label {\n        padding-top: (@padding-small-vertical + 1);\n        font-size: @font-size-small;\n      }\n    }\n  }\n}\n","// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n  // Color the label and help text\n  .help-block,\n  .control-label,\n  .radio,\n  .checkbox,\n  .radio-inline,\n  .checkbox-inline,\n  &.radio label,\n  &.checkbox label,\n  &.radio-inline label,\n  &.checkbox-inline label  {\n    color: @text-color;\n  }\n  // Set the border and box shadow on specific inputs to match\n  .form-control {\n    border-color: @border-color;\n    .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n    &:focus {\n      border-color: darken(@border-color, 10%);\n      @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n      .box-shadow(@shadow);\n    }\n  }\n  // Set validation states also for addons\n  .input-group-addon {\n    color: @text-color;\n    border-color: @border-color;\n    background-color: @background-color;\n  }\n  // Optional feedback icon\n  .form-control-feedback {\n    color: @text-color;\n  }\n}\n\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-border-focus` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n.form-control-focus(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0;\n    .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  height: @input-height;\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n\n  select& {\n    height: @input-height;\n    line-height: @input-height;\n  }\n\n  textarea&,\n  select[multiple]& {\n    height: auto;\n  }\n}\n","// Mixins - Bootstrap overrides\n// -------------------\n\n// Form control outline\n.form-control-outline(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0 !important;\n    .box-shadow(~\"inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Gradients\n#gradient {\n  .striped(@color: fade(@color-pf-black, 15%); @angle: -45deg) {\n    background-image: linear-gradient(@angle, @color 25%, @color 26%, transparent 27%, transparent 49%, @color 50%, @color 51%, transparent 52%, transparent 74%, @color 75%, @color 76%, transparent 77%);\n  }\n}\n\n// Horizontal dividers\n.nav-divider(@color: @color-pf-black-200, @margin: 4px 1px) {\n  background-color: @color;\n  height: 1px;\n  margin: @margin;\n  overflow: hidden;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  &:-moz-placeholder            { color: @color; font-style: italic; } // Firefox 4-18\n  &::-moz-placeholder           { color: @color; font-style: italic; opacity: 1; } // Firefox 19+\n  &:-ms-input-placeholder       { color: @color; font-style: italic; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; font-style: italic; } // Safari and Chrome\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n  display: inline-block;\n  margin-bottom: 0; // For input.btn\n  font-weight: @btn-font-weight;\n  text-align: center;\n  vertical-align: middle;\n  touch-action: manipulation;\n  cursor: pointer;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid transparent;\n  white-space: nowrap;\n  .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);\n  .user-select(none);\n\n  &,\n  &:active,\n  &.active {\n    &:focus,\n    &.focus {\n      .tab-focus();\n    }\n  }\n\n  &:hover,\n  &:focus,\n  &.focus {\n    color: @btn-default-color;\n    text-decoration: none;\n  }\n\n  &:active,\n  &.active {\n    outline: 0;\n    background-image: none;\n    .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n  }\n\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n    .opacity(.65);\n    .box-shadow(none);\n  }\n\n  a& {\n    &.disabled,\n    fieldset[disabled] & {\n      pointer-events: none; // Future-proof disabling of clicks on `<a>` elements\n    }\n  }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n  .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n  .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n  .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n  .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n  .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n  .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n  color: @link-color;\n  font-weight: normal;\n  border-radius: 0;\n\n  &,\n  &:active,\n  &.active,\n  &[disabled],\n  fieldset[disabled] & {\n    background-color: transparent;\n    .box-shadow(none);\n  }\n  &,\n  &:hover,\n  &:focus,\n  &:active {\n    border-color: transparent;\n  }\n  &:hover,\n  &:focus {\n    color: @link-hover-color;\n    text-decoration: @link-hover-decoration;\n    background-color: transparent;\n  }\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus {\n      color: @btn-link-disabled-color;\n      text-decoration: none;\n    }\n  }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n  // line-height: ensure even-numbered height of button next to large input\n  .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @btn-border-radius-large);\n}\n.btn-sm {\n  // line-height: ensure proper height of button next to small input\n  .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n.btn-xs {\n  .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n  display: block;\n  width: 100%;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n  margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n  &.btn-block {\n    width: 100%;\n  }\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n  color: @color;\n  background-color: @background;\n  border-color: @border;\n\n  &:focus,\n  &.focus {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 25%);\n  }\n  &:hover {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n\n    &:hover,\n    &:focus,\n    &.focus {\n      color: @color;\n      background-color: darken(@background, 17%);\n          border-color: darken(@border, 25%);\n    }\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    background-image: none;\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: @background;\n          border-color: @border;\n    }\n  }\n\n  .badge {\n    color: @background;\n    background-color: @color;\n  }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n  opacity: @opacity;\n  // IE8 filter\n  @opacity-ie: (@opacity * 100);\n  filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","//\n// Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n  position: relative;\n  display: inline-block;\n  vertical-align: middle; // match .btn alignment given font-size hack above\n  > .btn {\n    position: relative;\n    float: left;\n    // Bring the \"active\" button to the front\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      z-index: 2;\n    }\n  }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n  .btn + .btn,\n  .btn + .btn-group,\n  .btn-group + .btn,\n  .btn-group + .btn-group {\n    margin-left: -1px;\n  }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n  margin-left: -5px; // Offset the first child's margin\n  &:extend(.clearfix all);\n\n  .btn,\n  .btn-group,\n  .input-group {\n    float: left;\n  }\n  > .btn,\n  > .btn-group,\n  > .input-group {\n    margin-left: 5px;\n  }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n  border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n  margin-left: 0;\n  &:not(:last-child):not(.dropdown-toggle) {\n    .border-right-radius(0);\n  }\n}\n// Need .dropdown-toggle since :last-child doesn't apply, given that a .dropdown-menu is used immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n  .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n  float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) {\n  > .btn:last-child,\n  > .dropdown-toggle {\n    .border-right-radius(0);\n  }\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n  outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { &:extend(.btn-xs); }\n.btn-group-sm > .btn { &:extend(.btn-sm); }\n.btn-group-lg > .btn { &:extend(.btn-lg); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n  padding-left: 8px;\n  padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n  padding-left: 12px;\n  padding-right: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n  .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n\n  // Show no shadow for `.btn-link` since it has no other button styles.\n  &.btn-link {\n    .box-shadow(none);\n  }\n}\n\n\n// Reposition the caret\n.btn .caret {\n  margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n  border-width: @caret-width-large @caret-width-large 0;\n  border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n  border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n  > .btn,\n  > .btn-group,\n  > .btn-group > .btn {\n    display: block;\n    float: none;\n    width: 100%;\n    max-width: 100%;\n  }\n\n  // Clear floats so dropdown menus can be properly placed\n  > .btn-group {\n    &:extend(.clearfix all);\n    > .btn {\n      float: none;\n    }\n  }\n\n  > .btn + .btn,\n  > .btn + .btn-group,\n  > .btn-group + .btn,\n  > .btn-group + .btn-group {\n    margin-top: -1px;\n    margin-left: 0;\n  }\n}\n\n.btn-group-vertical > .btn {\n  &:not(:first-child):not(:last-child) {\n    border-radius: 0;\n  }\n  &:first-child:not(:last-child) {\n    .border-top-radius(@btn-border-radius-base);\n    .border-bottom-radius(0);\n  }\n  &:last-child:not(:first-child) {\n    .border-top-radius(0);\n    .border-bottom-radius(@btn-border-radius-base);\n  }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) {\n  > .btn:last-child,\n  > .dropdown-toggle {\n    .border-bottom-radius(0);\n  }\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  .border-top-radius(0);\n}\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n  display: table;\n  width: 100%;\n  table-layout: fixed;\n  border-collapse: separate;\n  > .btn,\n  > .btn-group {\n    float: none;\n    display: table-cell;\n    width: 1%;\n  }\n  > .btn-group .btn {\n    width: 100%;\n  }\n\n  > .btn-group .dropdown-menu {\n    left: auto;\n  }\n}\n\n\n// Checkbox and radio options\n//\n// In order to support the browser's form validation feedback, powered by the\n// `required` attribute, we have to \"hide\" the inputs via `clip`. We cannot use\n// `display: none;` or `visibility: hidden;` as that also hides the popover.\n// Simply visually hiding the inputs via `opacity` would leave them clickable in\n// certain cases which is prevented by using `clip` and `pointer-events`.\n// This way, we ensure a DOM element is visible to position the popover from.\n//\n// See https://github.com/twbs/bootstrap/pull/12794 and\n// https://github.com/twbs/bootstrap/pull/14559 for more information.\n\n[data-toggle=\"buttons\"] {\n  > .btn,\n  > .btn-group > .btn {\n    input[type=\"radio\"],\n    input[type=\"checkbox\"] {\n      position: absolute;\n      clip: rect(0,0,0,0);\n      pointer-events: none;\n    }\n  }\n}\n","//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.\n\n.fade {\n  opacity: 0;\n  .transition(opacity .15s linear);\n  &.in {\n    opacity: 1;\n  }\n}\n\n.collapse {\n  display: none;\n\n  &.in      { display: block; }\n  tr&.in    { display: table-row; }\n  tbody&.in { display: table-row-group; }\n}\n\n.collapsing {\n  position: relative;\n  height: 0;\n  overflow: hidden;\n  .transition-property(~\"height, visibility\");\n  .transition-duration(.35s);\n  .transition-timing-function(ease);\n}\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 2px;\n  vertical-align: middle;\n  border-top:   @caret-width-base dashed;\n  border-top:   @caret-width-base solid ~\"\\9\"; // IE8\n  border-right: @caret-width-base solid transparent;\n  border-left:  @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropup,\n.dropdown {\n  position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n  outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  z-index: @zindex-dropdown;\n  display: none; // none by default, but block on \"open\" of the menu\n  float: left;\n  min-width: 160px;\n  padding: 5px 0;\n  margin: 2px 0 0; // override default ul\n  list-style: none;\n  font-size: @font-size-base;\n  text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n  background-color: @dropdown-bg;\n  border: 1px solid @dropdown-fallback-border; // IE8 fallback\n  border: 1px solid @dropdown-border;\n  border-radius: @border-radius-base;\n  .box-shadow(0 6px 12px rgba(0,0,0,.175));\n  background-clip: padding-box;\n\n  // Aligns the dropdown menu to right\n  //\n  // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n  &.pull-right {\n    right: 0;\n    left: auto;\n  }\n\n  // Dividers (basically an hr) within the dropdown\n  .divider {\n    .nav-divider(@dropdown-divider-bg);\n  }\n\n  // Links within the dropdown menu\n  > li > a {\n    display: block;\n    padding: 3px 20px;\n    clear: both;\n    font-weight: normal;\n    line-height: @line-height-base;\n    color: @dropdown-link-color;\n    white-space: nowrap; // prevent links from randomly breaking onto new lines\n  }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    color: @dropdown-link-hover-color;\n    background-color: @dropdown-link-hover-bg;\n  }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n  &,\n  &:hover,\n  &:focus {\n    color: @dropdown-link-active-color;\n    text-decoration: none;\n    outline: 0;\n    background-color: @dropdown-link-active-bg;\n  }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n  &,\n  &:hover,\n  &:focus {\n    color: @dropdown-link-disabled-color;\n  }\n\n  // Nuke hover/focus effects\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    background-color: transparent;\n    background-image: none; // Remove CSS gradient\n    .reset-filter();\n    cursor: @cursor-disabled;\n  }\n}\n\n// Open state for the dropdown\n.open {\n  // Show the menu\n  > .dropdown-menu {\n    display: block;\n  }\n\n  // Remove the outline when :focus is triggered\n  > a {\n    outline: 0;\n  }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n  left: auto; // Reset the default from `.dropdown-menu`\n  right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n  left: 0;\n  right: auto;\n}\n\n// Dropdown section headers\n.dropdown-header {\n  display: block;\n  padding: 3px 20px;\n  font-size: @font-size-small;\n  line-height: @line-height-base;\n  color: @dropdown-header-color;\n  white-space: nowrap; // as with > li > a\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n  position: fixed;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  top: 0;\n  z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n  right: 0;\n  left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n  // Reverse the caret\n  .caret {\n    border-top: 0;\n    border-bottom: @caret-width-base dashed;\n    border-bottom: @caret-width-base solid ~\"\\9\"; // IE8\n    content: \"\";\n  }\n  // Different positioning for bottom up menu\n  .dropdown-menu {\n    top: auto;\n    bottom: 100%;\n    margin-bottom: 2px;\n  }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-right {\n    .dropdown-menu {\n      .dropdown-menu-right();\n    }\n    // Necessary for overrides of the default right aligned menu.\n    // Will remove come v4 in all likelihood.\n    .dropdown-menu-left {\n      .dropdown-menu-left();\n    }\n  }\n}\n","// Horizontal dividers\n//\n// Dividers (basically an hr) within dropdowns and nav lists\n\n.nav-divider(@color: #e5e5e5) {\n  height: 1px;\n  margin: ((@line-height-computed / 2) - 1) 0;\n  overflow: hidden;\n  background-color: @color;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n  filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n  border-top-right-radius: @radius;\n   border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n  border-bottom-right-radius: @radius;\n     border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n  border-bottom-right-radius: @radius;\n   border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n  border-bottom-left-radius: @radius;\n     border-top-left-radius: @radius;\n}\n","//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n  position: relative; // For dropdowns\n  display: table;\n  border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n  // Undo padding and float of grid classes\n  &[class*=\"col-\"] {\n    float: none;\n    padding-left: 0;\n    padding-right: 0;\n  }\n\n  .form-control {\n    // Ensure that the input is always above the *appended* addon button for\n    // proper border colors.\n    position: relative;\n    z-index: 2;\n\n    // IE9 fubars the placeholder attribute in text inputs and the arrows on\n    // select elements in input groups. To fix it, we float the input. Details:\n    // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n    float: left;\n\n    width: 100%;\n    margin-bottom: 0;\n\n    &:focus {\n      z-index: 3;\n    }\n  }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n  .input-lg();\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n  .input-sm();\n}\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n  display: table-cell;\n\n  &:not(:first-child):not(:last-child) {\n    border-radius: 0;\n  }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n  width: 1%;\n  white-space: nowrap;\n  vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n  padding: @padding-base-vertical @padding-base-horizontal;\n  font-size: @font-size-base;\n  font-weight: normal;\n  line-height: 1;\n  color: @input-color;\n  text-align: center;\n  background-color: @input-group-addon-bg;\n  border: 1px solid @input-group-addon-border-color;\n  border-radius: @input-border-radius;\n\n  // Sizing\n  &.input-sm {\n    padding: @padding-small-vertical @padding-small-horizontal;\n    font-size: @font-size-small;\n    border-radius: @input-border-radius-small;\n  }\n  &.input-lg {\n    padding: @padding-large-vertical @padding-large-horizontal;\n    font-size: @font-size-large;\n    border-radius: @input-border-radius-large;\n  }\n\n  // Nuke default margins from checkboxes and radios to vertically center within.\n  input[type=\"radio\"],\n  input[type=\"checkbox\"] {\n    margin-top: 0;\n  }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n  .border-right-radius(0);\n}\n.input-group-addon:first-child {\n  border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n  .border-left-radius(0);\n}\n.input-group-addon:last-child {\n  border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n  position: relative;\n  // Jankily prevent input button groups from wrapping with `white-space` and\n  // `font-size` in combination with `inline-block` on buttons.\n  font-size: 0;\n  white-space: nowrap;\n\n  // Negative margin for spacing, position for bringing hovered/focused/actived\n  // element above the siblings.\n  > .btn {\n    position: relative;\n    + .btn {\n      margin-left: -1px;\n    }\n    // Bring the \"active\" button to the front\n    &:hover,\n    &:focus,\n    &:active {\n      z-index: 2;\n    }\n  }\n\n  // Negative margin to only have a 1px border between the two\n  &:first-child {\n    > .btn,\n    > .btn-group {\n      margin-right: -1px;\n    }\n  }\n  &:last-child {\n    > .btn,\n    > .btn-group {\n      z-index: 2;\n      margin-left: -1px;\n    }\n  }\n}\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n  margin-bottom: 0;\n  padding-left: 0; // Override default ul/ol\n  list-style: none;\n  &:extend(.clearfix all);\n\n  > li {\n    position: relative;\n    display: block;\n\n    > a {\n      position: relative;\n      display: block;\n      padding: @nav-link-padding;\n      &:hover,\n      &:focus {\n        text-decoration: none;\n        background-color: @nav-link-hover-bg;\n      }\n    }\n\n    // Disabled state sets text to gray and nukes hover/tab effects\n    &.disabled > a {\n      color: @nav-disabled-link-color;\n\n      &:hover,\n      &:focus {\n        color: @nav-disabled-link-hover-color;\n        text-decoration: none;\n        background-color: transparent;\n        cursor: @cursor-disabled;\n      }\n    }\n  }\n\n  // Open dropdowns\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: @nav-link-hover-bg;\n      border-color: @link-color;\n    }\n  }\n\n  // Nav dividers (deprecated with v3.0.1)\n  //\n  // This should have been removed in v3 with the dropping of `.nav-list`, but\n  // we missed it. We don't currently support this anywhere, but in the interest\n  // of maintaining backward compatibility in case you use it, it's deprecated.\n  .nav-divider {\n    .nav-divider();\n  }\n\n  // Prevent IE8 from misplacing imgs\n  //\n  // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n  > li > a > img {\n    max-width: none;\n  }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n  border-bottom: 1px solid @nav-tabs-border-color;\n  > li {\n    float: left;\n    // Make the list-items overlay the bottom border\n    margin-bottom: -1px;\n\n    // Actual tabs (as links)\n    > a {\n      margin-right: 2px;\n      line-height: @line-height-base;\n      border: 1px solid transparent;\n      border-radius: @border-radius-base @border-radius-base 0 0;\n      &:hover {\n        border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n      }\n    }\n\n    // Active state, and its :hover to override normal :hover\n    &.active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @nav-tabs-active-link-hover-color;\n        background-color: @nav-tabs-active-link-hover-bg;\n        border: 1px solid @nav-tabs-active-link-hover-border-color;\n        border-bottom-color: transparent;\n        cursor: default;\n      }\n    }\n  }\n  // pulling this in mainly for less shorthand\n  &.nav-justified {\n    .nav-justified();\n    .nav-tabs-justified();\n  }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n  > li {\n    float: left;\n\n    // Links rendered as pills\n    > a {\n      border-radius: @nav-pills-border-radius;\n    }\n    + li {\n      margin-left: 2px;\n    }\n\n    // Active state\n    &.active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @nav-pills-active-link-hover-color;\n        background-color: @nav-pills-active-link-hover-bg;\n      }\n    }\n  }\n}\n\n\n// Stacked pills\n.nav-stacked {\n  > li {\n    float: none;\n    + li {\n      margin-top: 2px;\n      margin-left: 0; // no need for this gap between nav items\n    }\n  }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n  width: 100%;\n\n  > li {\n    float: none;\n    > a {\n      text-align: center;\n      margin-bottom: 5px;\n    }\n  }\n\n  > .dropdown .dropdown-menu {\n    top: auto;\n    left: auto;\n  }\n\n  @media (min-width: @screen-sm-min) {\n    > li {\n      display: table-cell;\n      width: 1%;\n      > a {\n        margin-bottom: 0;\n      }\n    }\n  }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n  border-bottom: 0;\n\n  > li > a {\n    // Override margin from .nav-tabs\n    margin-right: 0;\n    border-radius: @border-radius-base;\n  }\n\n  > .active > a,\n  > .active > a:hover,\n  > .active > a:focus {\n    border: 1px solid @nav-tabs-justified-link-border-color;\n  }\n\n  @media (min-width: @screen-sm-min) {\n    > li > a {\n      border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n      border-radius: @border-radius-base @border-radius-base 0 0;\n    }\n    > .active > a,\n    > .active > a:hover,\n    > .active > a:focus {\n      border-bottom-color: @nav-tabs-justified-active-link-border-color;\n    }\n  }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Hide tabbable panes to start, show them when `.active`\n.tab-content {\n  > .tab-pane {\n    display: none;\n  }\n  > .active {\n    display: block;\n  }\n}\n\n\n// Dropdowns\n// -------------------------\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n  // make dropdown border overlap tab border\n  margin-top: -1px;\n  // Remove the top rounded corners here since there is a hard edge above the menu\n  .border-top-radius(0);\n}\n","//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n  position: relative;\n  min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n  margin-bottom: @navbar-margin-bottom;\n  border: 1px solid transparent;\n\n  // Prevent floats from breaking the navbar\n  &:extend(.clearfix all);\n\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: @navbar-border-radius;\n  }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n  &:extend(.clearfix all);\n\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n  }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n  overflow-x: visible;\n  padding-right: @navbar-padding-horizontal;\n  padding-left:  @navbar-padding-horizontal;\n  border-top: 1px solid transparent;\n  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n  &:extend(.clearfix all);\n  -webkit-overflow-scrolling: touch;\n\n  &.in {\n    overflow-y: auto;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    width: auto;\n    border-top: 0;\n    box-shadow: none;\n\n    &.collapse {\n      display: block !important;\n      height: auto !important;\n      padding-bottom: 0; // Override default setting\n      overflow: visible !important;\n    }\n\n    &.in {\n      overflow-y: visible;\n    }\n\n    // Undo the collapse side padding for navbars with containers to ensure\n    // alignment of right-aligned contents.\n    .navbar-fixed-top &,\n    .navbar-static-top &,\n    .navbar-fixed-bottom & {\n      padding-left: 0;\n      padding-right: 0;\n    }\n  }\n}\n\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  .navbar-collapse {\n    max-height: @navbar-collapse-max-height;\n\n    @media (max-device-width: @screen-xs-min) and (orientation: landscape) {\n      max-height: 200px;\n    }\n  }\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container,\n.container-fluid {\n  > .navbar-header,\n  > .navbar-collapse {\n    margin-right: -@navbar-padding-horizontal;\n    margin-left:  -@navbar-padding-horizontal;\n\n    @media (min-width: @grid-float-breakpoint) {\n      margin-right: 0;\n      margin-left:  0;\n    }\n  }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n  z-index: @zindex-navbar;\n  border-width: 0 0 1px;\n\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: 0;\n  }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  position: fixed;\n  right: 0;\n  left: 0;\n  z-index: @zindex-navbar-fixed;\n\n  // Undo the rounded corners\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top {\n  top: 0;\n  border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n  bottom: 0;\n  margin-bottom: 0; // override .navbar defaults\n  border-width: 1px 0 0;\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n  float: left;\n  padding: @navbar-padding-vertical @navbar-padding-horizontal;\n  font-size: @font-size-large;\n  line-height: @line-height-computed;\n  height: @navbar-height;\n\n  &:hover,\n  &:focus {\n    text-decoration: none;\n  }\n\n  > img {\n    display: block;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    .navbar > .container &,\n    .navbar > .container-fluid & {\n      margin-left: -@navbar-padding-horizontal;\n    }\n  }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n  position: relative;\n  float: right;\n  margin-right: @navbar-padding-horizontal;\n  padding: 9px 10px;\n  .navbar-vertical-align(34px);\n  background-color: transparent;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid transparent;\n  border-radius: @border-radius-base;\n\n  // We remove the `outline` here, but later compensate by attaching `:hover`\n  // styles to `:focus`.\n  &:focus {\n    outline: 0;\n  }\n\n  // Bars\n  .icon-bar {\n    display: block;\n    width: 22px;\n    height: 2px;\n    border-radius: 1px;\n  }\n  .icon-bar + .icon-bar {\n    margin-top: 4px;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    display: none;\n  }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n  margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n  > li > a {\n    padding-top:    10px;\n    padding-bottom: 10px;\n    line-height: @line-height-computed;\n  }\n\n  @media (max-width: @grid-float-breakpoint-max) {\n    // Dropdowns get custom display when collapsed\n    .open .dropdown-menu {\n      position: static;\n      float: none;\n      width: auto;\n      margin-top: 0;\n      background-color: transparent;\n      border: 0;\n      box-shadow: none;\n      > li > a,\n      .dropdown-header {\n        padding: 5px 15px 5px 25px;\n      }\n      > li > a {\n        line-height: @line-height-computed;\n        &:hover,\n        &:focus {\n          background-image: none;\n        }\n      }\n    }\n  }\n\n  // Uncollapse the nav\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n    margin: 0;\n\n    > li {\n      float: left;\n      > a {\n        padding-top:    @navbar-padding-vertical;\n        padding-bottom: @navbar-padding-vertical;\n      }\n    }\n  }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n  margin-left: -@navbar-padding-horizontal;\n  margin-right: -@navbar-padding-horizontal;\n  padding: 10px @navbar-padding-horizontal;\n  border-top: 1px solid transparent;\n  border-bottom: 1px solid transparent;\n  @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);\n  .box-shadow(@shadow);\n\n  // Mixin behavior for optimum display\n  .form-inline();\n\n  .form-group {\n    @media (max-width: @grid-float-breakpoint-max) {\n      margin-bottom: 5px;\n\n      &:last-child {\n        margin-bottom: 0;\n      }\n    }\n  }\n\n  // Vertically center in expanded, horizontal navbar\n  .navbar-vertical-align(@input-height-base);\n\n  // Undo 100% width for pull classes\n  @media (min-width: @grid-float-breakpoint) {\n    width: auto;\n    border: 0;\n    margin-left: 0;\n    margin-right: 0;\n    padding-top: 0;\n    padding-bottom: 0;\n    .box-shadow(none);\n  }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n  margin-top: 0;\n  .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n  margin-bottom: 0;\n  .border-top-radius(@navbar-border-radius);\n  .border-bottom-radius(0);\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n  .navbar-vertical-align(@input-height-base);\n\n  &.btn-sm {\n    .navbar-vertical-align(@input-height-small);\n  }\n  &.btn-xs {\n    .navbar-vertical-align(22);\n  }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n  .navbar-vertical-align(@line-height-computed);\n\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n    margin-left: @navbar-padding-horizontal;\n    margin-right: @navbar-padding-horizontal;\n  }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n//\n// Declared after the navbar components to ensure more specificity on the margins.\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-left  { .pull-left(); }\n  .navbar-right {\n    .pull-right();\n    margin-right: -@navbar-padding-horizontal;\n\n    ~ .navbar-right {\n      margin-right: 0;\n    }\n  }\n}\n\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n  background-color: @navbar-default-bg;\n  border-color: @navbar-default-border;\n\n  .navbar-brand {\n    color: @navbar-default-brand-color;\n    &:hover,\n    &:focus {\n      color: @navbar-default-brand-hover-color;\n      background-color: @navbar-default-brand-hover-bg;\n    }\n  }\n\n  .navbar-text {\n    color: @navbar-default-color;\n  }\n\n  .navbar-nav {\n    > li > a {\n      color: @navbar-default-link-color;\n\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-hover-color;\n        background-color: @navbar-default-link-hover-bg;\n      }\n    }\n    > .active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-active-color;\n        background-color: @navbar-default-link-active-bg;\n      }\n    }\n    > .disabled > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-disabled-color;\n        background-color: @navbar-default-link-disabled-bg;\n      }\n    }\n  }\n\n  .navbar-toggle {\n    border-color: @navbar-default-toggle-border-color;\n    &:hover,\n    &:focus {\n      background-color: @navbar-default-toggle-hover-bg;\n    }\n    .icon-bar {\n      background-color: @navbar-default-toggle-icon-bar-bg;\n    }\n  }\n\n  .navbar-collapse,\n  .navbar-form {\n    border-color: @navbar-default-border;\n  }\n\n  // Dropdown menu items\n  .navbar-nav {\n    // Remove background color from open dropdown\n    > .open > a {\n      &,\n      &:hover,\n      &:focus {\n        background-color: @navbar-default-link-active-bg;\n        color: @navbar-default-link-active-color;\n      }\n    }\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      // Dropdowns get custom display when collapsed\n      .open .dropdown-menu {\n        > li > a {\n          color: @navbar-default-link-color;\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-hover-color;\n            background-color: @navbar-default-link-hover-bg;\n          }\n        }\n        > .active > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-active-color;\n            background-color: @navbar-default-link-active-bg;\n          }\n        }\n        > .disabled > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-disabled-color;\n            background-color: @navbar-default-link-disabled-bg;\n          }\n        }\n      }\n    }\n  }\n\n\n  // Links in navbars\n  //\n  // Add a class to ensure links outside the navbar nav are colored correctly.\n\n  .navbar-link {\n    color: @navbar-default-link-color;\n    &:hover {\n      color: @navbar-default-link-hover-color;\n    }\n  }\n\n  .btn-link {\n    color: @navbar-default-link-color;\n    &:hover,\n    &:focus {\n      color: @navbar-default-link-hover-color;\n    }\n    &[disabled],\n    fieldset[disabled] & {\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-disabled-color;\n      }\n    }\n  }\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n  background-color: @navbar-inverse-bg;\n  border-color: @navbar-inverse-border;\n\n  .navbar-brand {\n    color: @navbar-inverse-brand-color;\n    &:hover,\n    &:focus {\n      color: @navbar-inverse-brand-hover-color;\n      background-color: @navbar-inverse-brand-hover-bg;\n    }\n  }\n\n  .navbar-text {\n    color: @navbar-inverse-color;\n  }\n\n  .navbar-nav {\n    > li > a {\n      color: @navbar-inverse-link-color;\n\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-hover-color;\n        background-color: @navbar-inverse-link-hover-bg;\n      }\n    }\n    > .active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-active-color;\n        background-color: @navbar-inverse-link-active-bg;\n      }\n    }\n    > .disabled > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-disabled-color;\n        background-color: @navbar-inverse-link-disabled-bg;\n      }\n    }\n  }\n\n  // Darken the responsive nav toggle\n  .navbar-toggle {\n    border-color: @navbar-inverse-toggle-border-color;\n    &:hover,\n    &:focus {\n      background-color: @navbar-inverse-toggle-hover-bg;\n    }\n    .icon-bar {\n      background-color: @navbar-inverse-toggle-icon-bar-bg;\n    }\n  }\n\n  .navbar-collapse,\n  .navbar-form {\n    border-color: darken(@navbar-inverse-bg, 7%);\n  }\n\n  // Dropdowns\n  .navbar-nav {\n    > .open > a {\n      &,\n      &:hover,\n      &:focus {\n        background-color: @navbar-inverse-link-active-bg;\n        color: @navbar-inverse-link-active-color;\n      }\n    }\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      // Dropdowns get custom display\n      .open .dropdown-menu {\n        > .dropdown-header {\n          border-color: @navbar-inverse-border;\n        }\n        .divider {\n          background-color: @navbar-inverse-border;\n        }\n        > li > a {\n          color: @navbar-inverse-link-color;\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-hover-color;\n            background-color: @navbar-inverse-link-hover-bg;\n          }\n        }\n        > .active > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-active-color;\n            background-color: @navbar-inverse-link-active-bg;\n          }\n        }\n        > .disabled > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-disabled-color;\n            background-color: @navbar-inverse-link-disabled-bg;\n          }\n        }\n      }\n    }\n  }\n\n  .navbar-link {\n    color: @navbar-inverse-link-color;\n    &:hover {\n      color: @navbar-inverse-link-hover-color;\n    }\n  }\n\n  .btn-link {\n    color: @navbar-inverse-link-color;\n    &:hover,\n    &:focus {\n      color: @navbar-inverse-link-hover-color;\n    }\n    &[disabled],\n    fieldset[disabled] & {\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-disabled-color;\n      }\n    }\n  }\n}\n","// Navbar vertical align\n//\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n\n.navbar-vertical-align(@element-height) {\n  margin-top: ((@navbar-height - @element-height) / 2);\n  margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n","//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n  .clearfix();\n}\n.center-block {\n  .center-block();\n}\n.pull-right {\n  float: right !important;\n}\n.pull-left {\n  float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1\n.hide {\n  display: none !important;\n}\n.show {\n  display: block !important;\n}\n.invisible {\n  visibility: hidden;\n}\n.text-hide {\n  .text-hide();\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n  display: none !important;\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n  position: fixed;\n}\n","// Bordered & Pulled\n// -------------------------\n\n.@{fa-css-prefix}-border {\n  padding: .2em .25em .15em;\n  border: solid .08em @fa-border-color;\n  border-radius: .1em;\n}\n\n.@{fa-css-prefix}-pull-left { float: left; }\n.@{fa-css-prefix}-pull-right { float: right; }\n\n.@{fa-css-prefix} {\n  &.@{fa-css-prefix}-pull-left { margin-right: .3em; }\n  &.@{fa-css-prefix}-pull-right { margin-left: .3em; }\n}\n\n/* Deprecated as of 4.4.0 */\n.pull-right { float: right; }\n.pull-left { float: left; }\n\n.@{fa-css-prefix} {\n  &.pull-left { margin-right: .3em; }\n  &.pull-right { margin-left: .3em; }\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n  padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n  margin-bottom: @line-height-computed;\n  list-style: none;\n  background-color: @breadcrumb-bg;\n  border-radius: @border-radius-base;\n\n  > li {\n    display: inline-block;\n\n    + li:before {\n      content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n      padding: 0 5px;\n      color: @breadcrumb-color;\n    }\n  }\n\n  > .active {\n    color: @breadcrumb-active-color;\n  }\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n  display: inline-block;\n  padding-left: 0;\n  margin: @line-height-computed 0;\n  border-radius: @border-radius-base;\n\n  > li {\n    display: inline; // Remove list-style and block-level defaults\n    > a,\n    > span {\n      position: relative;\n      float: left; // Collapse white-space\n      padding: @padding-base-vertical @padding-base-horizontal;\n      line-height: @line-height-base;\n      text-decoration: none;\n      color: @pagination-color;\n      background-color: @pagination-bg;\n      border: 1px solid @pagination-border;\n      margin-left: -1px;\n    }\n    &:first-child {\n      > a,\n      > span {\n        margin-left: 0;\n        .border-left-radius(@border-radius-base);\n      }\n    }\n    &:last-child {\n      > a,\n      > span {\n        .border-right-radius(@border-radius-base);\n      }\n    }\n  }\n\n  > li > a,\n  > li > span {\n    &:hover,\n    &:focus {\n      z-index: 2;\n      color: @pagination-hover-color;\n      background-color: @pagination-hover-bg;\n      border-color: @pagination-hover-border;\n    }\n  }\n\n  > .active > a,\n  > .active > span {\n    &,\n    &:hover,\n    &:focus {\n      z-index: 3;\n      color: @pagination-active-color;\n      background-color: @pagination-active-bg;\n      border-color: @pagination-active-border;\n      cursor: default;\n    }\n  }\n\n  > .disabled {\n    > span,\n    > span:hover,\n    > span:focus,\n    > a,\n    > a:hover,\n    > a:focus {\n      color: @pagination-disabled-color;\n      background-color: @pagination-disabled-bg;\n      border-color: @pagination-disabled-border;\n      cursor: @cursor-disabled;\n    }\n  }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n  .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n  .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n","// Pagination\n\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  > li {\n    > a,\n    > span {\n      padding: @padding-vertical @padding-horizontal;\n      font-size: @font-size;\n      line-height: @line-height;\n    }\n    &:first-child {\n      > a,\n      > span {\n        .border-left-radius(@border-radius);\n      }\n    }\n    &:last-child {\n      > a,\n      > span {\n        .border-right-radius(@border-radius);\n      }\n    }\n  }\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n  padding-left: 0;\n  margin: @line-height-computed 0;\n  list-style: none;\n  text-align: center;\n  &:extend(.clearfix all);\n  li {\n    display: inline;\n    > a,\n    > span {\n      display: inline-block;\n      padding: 5px 14px;\n      background-color: @pager-bg;\n      border: 1px solid @pager-border;\n      border-radius: @pager-border-radius;\n    }\n\n    > a:hover,\n    > a:focus {\n      text-decoration: none;\n      background-color: @pager-hover-bg;\n    }\n  }\n\n  .next {\n    > a,\n    > span {\n      float: right;\n    }\n  }\n\n  .previous {\n    > a,\n    > span {\n      float: left;\n    }\n  }\n\n  .disabled {\n    > a,\n    > a:hover,\n    > a:focus,\n    > span {\n      color: @pager-disabled-color;\n      background-color: @pager-bg;\n      cursor: @cursor-disabled;\n    }\n  }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n  display: inline;\n  padding: .2em .6em .3em;\n  font-size: 75%;\n  font-weight: bold;\n  line-height: 1;\n  color: @label-color;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  border-radius: .25em;\n\n  // Add hover effects, but only for links\n  a& {\n    &:hover,\n    &:focus {\n      color: @label-link-hover-color;\n      text-decoration: none;\n      cursor: pointer;\n    }\n  }\n\n  // Empty labels collapse automatically (not available in IE8)\n  &:empty {\n    display: none;\n  }\n\n  // Quick fix for labels in buttons\n  .btn & {\n    position: relative;\n    top: -1px;\n  }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n  .label-variant(@label-default-bg);\n}\n\n.label-primary {\n  .label-variant(@label-primary-bg);\n}\n\n.label-success {\n  .label-variant(@label-success-bg);\n}\n\n.label-info {\n  .label-variant(@label-info-bg);\n}\n\n.label-warning {\n  .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n  .label-variant(@label-danger-bg);\n}\n","// Labels\n\n.label-variant(@color) {\n  background-color: @color;\n\n  &[href] {\n    &:hover,\n    &:focus {\n      background-color: darken(@color, 10%);\n    }\n  }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base class\n.badge {\n  display: inline-block;\n  min-width: 10px;\n  padding: 3px 7px;\n  font-size: @font-size-small;\n  font-weight: @badge-font-weight;\n  color: @badge-color;\n  line-height: @badge-line-height;\n  vertical-align: middle;\n  white-space: nowrap;\n  text-align: center;\n  background-color: @badge-bg;\n  border-radius: @badge-border-radius;\n\n  // Empty badges collapse automatically (not available in IE8)\n  &:empty {\n    display: none;\n  }\n\n  // Quick fix for badges in buttons\n  .btn & {\n    position: relative;\n    top: -1px;\n  }\n\n  .btn-xs &,\n  .btn-group-xs > .btn & {\n    top: 0;\n    padding: 1px 5px;\n  }\n\n  // Hover state, but only for links\n  a& {\n    &:hover,\n    &:focus {\n      color: @badge-link-hover-color;\n      text-decoration: none;\n      cursor: pointer;\n    }\n  }\n\n  // Account for badges in navs\n  .list-group-item.active > &,\n  .nav-pills > .active > a > & {\n    color: @badge-active-color;\n    background-color: @badge-active-bg;\n  }\n\n  .list-group-item > & {\n    float: right;\n  }\n\n  .list-group-item > & + & {\n    margin-right: 5px;\n  }\n\n  .nav-pills > li > a > & {\n    margin-left: 3px;\n  }\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n  padding-top:    @jumbotron-padding;\n  padding-bottom: @jumbotron-padding;\n  margin-bottom: @jumbotron-padding;\n  color: @jumbotron-color;\n  background-color: @jumbotron-bg;\n\n  h1,\n  .h1 {\n    color: @jumbotron-heading-color;\n  }\n\n  p {\n    margin-bottom: (@jumbotron-padding / 2);\n    font-size: @jumbotron-font-size;\n    font-weight: 200;\n  }\n\n  > hr {\n    border-top-color: darken(@jumbotron-bg, 10%);\n  }\n\n  .container &,\n  .container-fluid & {\n    border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n    padding-left:  (@grid-gutter-width / 2);\n    padding-right: (@grid-gutter-width / 2);\n  }\n\n  .container {\n    max-width: 100%;\n  }\n\n  @media screen and (min-width: @screen-sm-min) {\n    padding-top:    (@jumbotron-padding * 1.6);\n    padding-bottom: (@jumbotron-padding * 1.6);\n\n    .container &,\n    .container-fluid & {\n      padding-left:  (@jumbotron-padding * 2);\n      padding-right: (@jumbotron-padding * 2);\n    }\n\n    h1,\n    .h1 {\n      font-size: @jumbotron-heading-font-size;\n    }\n  }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n  padding: @alert-padding;\n  margin-bottom: @line-height-computed;\n  border: 1px solid transparent;\n  border-radius: @alert-border-radius;\n\n  // Headings for larger alerts\n  h4 {\n    margin-top: 0;\n    // Specified for the h4 to prevent conflicts of changing @headings-color\n    color: inherit;\n  }\n\n  // Provide class for links that match alerts\n  .alert-link {\n    font-weight: @alert-link-font-weight;\n  }\n\n  // Improve alignment and spacing of inner content\n  > p,\n  > ul {\n    margin-bottom: 0;\n  }\n\n  > p + p {\n    margin-top: 5px;\n  }\n}\n\n// Dismissible alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.\n.alert-dismissible {\n  padding-right: (@alert-padding + 20);\n\n  // Adjust close link position\n  .close {\n    position: relative;\n    top: -2px;\n    right: -21px;\n    color: inherit;\n  }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n  .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n\n.alert-info {\n  .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n\n.alert-warning {\n  .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n\n.alert-danger {\n  .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","// Alerts\n\n.alert-variant(@background; @border; @text-color) {\n  background-color: @background;\n  border-color: @border;\n  color: @text-color;\n\n  hr {\n    border-top-color: darken(@border, 5%);\n  }\n  .alert-link {\n    color: darken(@text-color, 10%);\n  }\n}\n","//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// WebKit\n@-webkit-keyframes progress-bar-stripes {\n  from  { background-position: 40px 0; }\n  to    { background-position: 0 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n  from  { background-position: 40px 0; }\n  to    { background-position: 0 0; }\n}\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n  overflow: hidden;\n  height: @line-height-computed;\n  margin-bottom: @line-height-computed;\n  background-color: @progress-bg;\n  border-radius: @progress-border-radius;\n  .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n}\n\n// Bar of progress\n.progress-bar {\n  float: left;\n  width: 0%;\n  height: 100%;\n  font-size: @font-size-small;\n  line-height: @line-height-computed;\n  color: @progress-bar-color;\n  text-align: center;\n  background-color: @progress-bar-bg;\n  .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n  .transition(width .6s ease);\n}\n\n// Striped bars\n//\n// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar-striped` class, which you just add to an existing\n// `.progress-bar`.\n.progress-striped .progress-bar,\n.progress-bar-striped {\n  #gradient > .striped();\n  background-size: 40px 40px;\n}\n\n// Call animation for the active one\n//\n// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar.active` approach.\n.progress.active .progress-bar,\n.progress-bar.active {\n  .animation(progress-bar-stripes 2s linear infinite);\n}\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n  .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n  .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n  .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n  .progress-bar-variant(@progress-bar-danger-bg);\n}\n","// Gradients\n\n#gradient {\n\n  // Horizontal gradient, from left to right\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  // Vertical gradient, from top to bottom\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12\n    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n    background-repeat: repeat-x;\n    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n  }\n  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .radial(@inner-color: #555; @outer-color: #333) {\n    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n    background-image: radial-gradient(circle, @inner-color, @outer-color);\n    background-repeat: no-repeat;\n  }\n  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n  }\n}\n","// Progress bars\n\n.progress-bar-variant(@color) {\n  background-color: @color;\n\n  // Deprecated parent class requirement as of v3.2.0\n  .progress-striped & {\n    #gradient > .striped();\n  }\n}\n",".media {\n  // Proper spacing between instances of .media\n  margin-top: 15px;\n\n  &:first-child {\n    margin-top: 0;\n  }\n}\n\n.media,\n.media-body {\n  zoom: 1;\n  overflow: hidden;\n}\n\n.media-body {\n  width: 10000px;\n}\n\n.media-object {\n  display: block;\n\n  // Fix collapse in webkit from max-width: 100% and display: table-cell.\n  &.img-thumbnail {\n    max-width: none;\n  }\n}\n\n.media-right,\n.media > .pull-right {\n  padding-left: 10px;\n}\n\n.media-left,\n.media > .pull-left {\n  padding-right: 10px;\n}\n\n.media-left,\n.media-right,\n.media-body {\n  display: table-cell;\n  vertical-align: top;\n}\n\n.media-middle {\n  vertical-align: middle;\n}\n\n.media-bottom {\n  vertical-align: bottom;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n\n// Media list variation\n//\n// Undo default ul/ol styles\n.media-list {\n  padding-left: 0;\n  list-style: none;\n}\n","//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n  // No need to set list-style: none; since .list-group-item is block level\n  margin-bottom: 20px;\n  padding-left: 0; // reset padding because ul and ol\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n  // Place the border on the list items and negative margin up for better styling\n  margin-bottom: -1px;\n  background-color: @list-group-bg;\n  border: 1px solid @list-group-border;\n\n  // Round the first and last items\n  &:first-child {\n    .border-top-radius(@list-group-border-radius);\n  }\n  &:last-child {\n    margin-bottom: 0;\n    .border-bottom-radius(@list-group-border-radius);\n  }\n}\n\n\n// Interactive list items\n//\n// Use anchor or button elements instead of `li`s or `div`s to create interactive items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item,\nbutton.list-group-item {\n  color: @list-group-link-color;\n\n  .list-group-item-heading {\n    color: @list-group-link-heading-color;\n  }\n\n  // Hover state\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    color: @list-group-link-hover-color;\n    background-color: @list-group-hover-bg;\n  }\n}\n\nbutton.list-group-item {\n  width: 100%;\n  text-align: left;\n}\n\n.list-group-item {\n  // Disabled state\n  &.disabled,\n  &.disabled:hover,\n  &.disabled:focus {\n    background-color: @list-group-disabled-bg;\n    color: @list-group-disabled-color;\n    cursor: @cursor-disabled;\n\n    // Force color to inherit for custom content\n    .list-group-item-heading {\n      color: inherit;\n    }\n    .list-group-item-text {\n      color: @list-group-disabled-text-color;\n    }\n  }\n\n  // Active class on item itself, not parent\n  &.active,\n  &.active:hover,\n  &.active:focus {\n    z-index: 2; // Place active items above their siblings for proper border styling\n    color: @list-group-active-color;\n    background-color: @list-group-active-bg;\n    border-color: @list-group-active-border;\n\n    // Force color to inherit for custom content\n    .list-group-item-heading,\n    .list-group-item-heading > small,\n    .list-group-item-heading > .small {\n      color: inherit;\n    }\n    .list-group-item-text {\n      color: @list-group-active-text-color;\n    }\n  }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.list-group-item-text {\n  margin-bottom: 0;\n  line-height: 1.3;\n}\n","// List Groups\n\n.list-group-item-variant(@state; @background; @color) {\n  .list-group-item-@{state} {\n    color: @color;\n    background-color: @background;\n\n    a&,\n    button& {\n      color: @color;\n\n      .list-group-item-heading {\n        color: inherit;\n      }\n\n      &:hover,\n      &:focus {\n        color: @color;\n        background-color: darken(@background, 5%);\n      }\n      &.active,\n      &.active:hover,\n      &.active:focus {\n        color: #fff;\n        background-color: @color;\n        border-color: @color;\n      }\n    }\n  }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n  margin-bottom: @line-height-computed;\n  background-color: @panel-bg;\n  border: 1px solid transparent;\n  border-radius: @panel-border-radius;\n  .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n  padding: @panel-body-padding;\n  &:extend(.clearfix all);\n}\n\n// Optional heading\n.panel-heading {\n  padding: @panel-heading-padding;\n  border-bottom: 1px solid transparent;\n  .border-top-radius((@panel-border-radius - 1));\n\n  > .dropdown .dropdown-toggle {\n    color: inherit;\n  }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n  margin-top: 0;\n  margin-bottom: 0;\n  font-size: ceil((@font-size-base * 1.125));\n  color: inherit;\n\n  > a,\n  > small,\n  > .small,\n  > small > a,\n  > .small > a {\n    color: inherit;\n  }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n  padding: @panel-footer-padding;\n  background-color: @panel-footer-bg;\n  border-top: 1px solid @panel-inner-border;\n  .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n  > .list-group,\n  > .panel-collapse > .list-group {\n    margin-bottom: 0;\n\n    .list-group-item {\n      border-width: 1px 0;\n      border-radius: 0;\n    }\n\n    // Add border top radius for first one\n    &:first-child {\n      .list-group-item:first-child {\n        border-top: 0;\n        .border-top-radius((@panel-border-radius - 1));\n      }\n    }\n\n    // Add border bottom radius for last one\n    &:last-child {\n      .list-group-item:last-child {\n        border-bottom: 0;\n        .border-bottom-radius((@panel-border-radius - 1));\n      }\n    }\n  }\n  > .panel-heading + .panel-collapse > .list-group {\n    .list-group-item:first-child {\n      .border-top-radius(0);\n    }\n  }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n  .list-group-item:first-child {\n    border-top-width: 0;\n  }\n}\n.list-group + .panel-footer {\n  border-top-width: 0;\n}\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n  > .table,\n  > .table-responsive > .table,\n  > .panel-collapse > .table {\n    margin-bottom: 0;\n\n    caption {\n      padding-left: @panel-body-padding;\n      padding-right: @panel-body-padding;\n    }\n  }\n  // Add border top radius for first one\n  > .table:first-child,\n  > .table-responsive:first-child > .table:first-child {\n    .border-top-radius((@panel-border-radius - 1));\n\n    > thead:first-child,\n    > tbody:first-child {\n      > tr:first-child {\n        border-top-left-radius: (@panel-border-radius - 1);\n        border-top-right-radius: (@panel-border-radius - 1);\n\n        td:first-child,\n        th:first-child {\n          border-top-left-radius: (@panel-border-radius - 1);\n        }\n        td:last-child,\n        th:last-child {\n          border-top-right-radius: (@panel-border-radius - 1);\n        }\n      }\n    }\n  }\n  // Add border bottom radius for last one\n  > .table:last-child,\n  > .table-responsive:last-child > .table:last-child {\n    .border-bottom-radius((@panel-border-radius - 1));\n\n    > tbody:last-child,\n    > tfoot:last-child {\n      > tr:last-child {\n        border-bottom-left-radius: (@panel-border-radius - 1);\n        border-bottom-right-radius: (@panel-border-radius - 1);\n\n        td:first-child,\n        th:first-child {\n          border-bottom-left-radius: (@panel-border-radius - 1);\n        }\n        td:last-child,\n        th:last-child {\n          border-bottom-right-radius: (@panel-border-radius - 1);\n        }\n      }\n    }\n  }\n  > .panel-body + .table,\n  > .panel-body + .table-responsive,\n  > .table + .panel-body,\n  > .table-responsive + .panel-body {\n    border-top: 1px solid @table-border-color;\n  }\n  > .table > tbody:first-child > tr:first-child th,\n  > .table > tbody:first-child > tr:first-child td {\n    border-top: 0;\n  }\n  > .table-bordered,\n  > .table-responsive > .table-bordered {\n    border: 0;\n    > thead,\n    > tbody,\n    > tfoot {\n      > tr {\n        > th:first-child,\n        > td:first-child {\n          border-left: 0;\n        }\n        > th:last-child,\n        > td:last-child {\n          border-right: 0;\n        }\n      }\n    }\n    > thead,\n    > tbody {\n      > tr:first-child {\n        > td,\n        > th {\n          border-bottom: 0;\n        }\n      }\n    }\n    > tbody,\n    > tfoot {\n      > tr:last-child {\n        > td,\n        > th {\n          border-bottom: 0;\n        }\n      }\n    }\n  }\n  > .table-responsive {\n    border: 0;\n    margin-bottom: 0;\n  }\n}\n\n\n// Collapsible panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n  margin-bottom: @line-height-computed;\n\n  // Tighten up margin so it's only between panels\n  .panel {\n    margin-bottom: 0;\n    border-radius: @panel-border-radius;\n\n    + .panel {\n      margin-top: 5px;\n    }\n  }\n\n  .panel-heading {\n    border-bottom: 0;\n\n    + .panel-collapse > .panel-body,\n    + .panel-collapse > .list-group {\n      border-top: 1px solid @panel-inner-border;\n    }\n  }\n\n  .panel-footer {\n    border-top: 0;\n    + .panel-collapse .panel-body {\n      border-bottom: 1px solid @panel-inner-border;\n    }\n  }\n}\n\n\n// Contextual variations\n.panel-default {\n  .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n  .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n  .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n  .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n  .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n  .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","// Panels\n\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n  border-color: @border;\n\n  & > .panel-heading {\n    color: @heading-text-color;\n    background-color: @heading-bg-color;\n    border-color: @heading-border;\n\n    + .panel-collapse > .panel-body {\n      border-top-color: @border;\n    }\n    .badge {\n      color: @heading-bg-color;\n      background-color: @heading-text-color;\n    }\n  }\n  & > .panel-footer {\n    + .panel-collapse > .panel-body {\n      border-bottom-color: @border;\n    }\n  }\n}\n","// Embeds responsive\n//\n// Credit: Nicolas Gallagher and SUIT CSS.\n\n.embed-responsive {\n  position: relative;\n  display: block;\n  height: 0;\n  padding: 0;\n  overflow: hidden;\n\n  .embed-responsive-item,\n  iframe,\n  embed,\n  object,\n  video {\n    position: absolute;\n    top: 0;\n    left: 0;\n    bottom: 0;\n    height: 100%;\n    width: 100%;\n    border: 0;\n  }\n}\n\n// Modifier class for 16:9 aspect ratio\n.embed-responsive-16by9 {\n  padding-bottom: 56.25%;\n}\n\n// Modifier class for 4:3 aspect ratio\n.embed-responsive-4by3 {\n  padding-bottom: 75%;\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n  min-height: 20px;\n  padding: 19px;\n  margin-bottom: 20px;\n  background-color: @well-bg;\n  border: 1px solid @well-border;\n  border-radius: @border-radius-base;\n  .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n  blockquote {\n    border-color: #ddd;\n    border-color: rgba(0,0,0,.15);\n  }\n}\n\n// Sizes\n.well-lg {\n  padding: 24px;\n  border-radius: @border-radius-large;\n}\n.well-sm {\n  padding: 9px;\n  border-radius: @border-radius-small;\n}\n","//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n  float: right;\n  font-size: (@font-size-base * 1.5);\n  font-weight: @close-font-weight;\n  line-height: 1;\n  color: @close-color;\n  text-shadow: @close-text-shadow;\n  .opacity(.2);\n\n  &:hover,\n  &:focus {\n    color: @close-color;\n    text-decoration: none;\n    cursor: pointer;\n    .opacity(.5);\n  }\n\n  // Additional properties for button version\n  // iOS requires the button element instead of an anchor tag.\n  // If you want the anchor version, it requires `href=\"#\"`.\n  // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n  button& {\n    padding: 0;\n    cursor: pointer;\n    background: transparent;\n    border: 0;\n    -webkit-appearance: none;\n  }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open      - body class for killing the scroll\n// .modal           - container to scroll within\n// .modal-dialog    - positioning shell for the actual modal\n// .modal-content   - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n  overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n  display: none;\n  overflow: hidden;\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: @zindex-modal;\n  -webkit-overflow-scrolling: touch;\n\n  // Prevent Chrome on Windows from adding a focus outline. For details, see\n  // https://github.com/twbs/bootstrap/pull/10951.\n  outline: 0;\n\n  // When fading in the modal, animate it to slide down\n  &.fade .modal-dialog {\n    .translate(0, -25%);\n    .transition-transform(~\"0.3s ease-out\");\n  }\n  &.in .modal-dialog { .translate(0, 0) }\n}\n.modal-open .modal {\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n  position: relative;\n  width: auto;\n  margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n  position: relative;\n  background-color: @modal-content-bg;\n  border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n  border: 1px solid @modal-content-border-color;\n  border-radius: @border-radius-large;\n  .box-shadow(0 3px 9px rgba(0,0,0,.5));\n  background-clip: padding-box;\n  // Remove focus outline from opened modal\n  outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: @zindex-modal-background;\n  background-color: @modal-backdrop-bg;\n  // Fade for backdrop\n  &.fade { .opacity(0); }\n  &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n  padding: @modal-title-padding;\n  border-bottom: 1px solid @modal-header-border-color;\n  &:extend(.clearfix all);\n}\n// Close icon\n.modal-header .close {\n  margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n  margin: 0;\n  line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n  position: relative;\n  padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n  padding: @modal-inner-padding;\n  text-align: right; // right align buttons\n  border-top: 1px solid @modal-footer-border-color;\n  &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n  // Properly space out buttons\n  .btn + .btn {\n    margin-left: 5px;\n    margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n  }\n  // but override that for button groups\n  .btn-group .btn + .btn {\n    margin-left: -1px;\n  }\n  // and override it for block buttons as well\n  .btn-block + .btn-block {\n    margin-left: 0;\n  }\n}\n\n// Measure scrollbar width for padding body during modal show/hide\n.modal-scrollbar-measure {\n  position: absolute;\n  top: -9999px;\n  width: 50px;\n  height: 50px;\n  overflow: scroll;\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n  // Automatically set modal's width for larger viewports\n  .modal-dialog {\n    width: @modal-md;\n    margin: 30px auto;\n  }\n  .modal-content {\n    .box-shadow(0 5px 15px rgba(0,0,0,.5));\n  }\n\n  // Modal sizes\n  .modal-sm { width: @modal-sm; }\n}\n\n@media (min-width: @screen-md-min) {\n  .modal-lg { width: @modal-lg; }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n  position: absolute;\n  z-index: @zindex-tooltip;\n  display: block;\n  // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n  // So reset our font and text properties to avoid inheriting weird values.\n  .reset-text();\n  font-size: @font-size-small;\n\n  .opacity(0);\n\n  &.in     { .opacity(@tooltip-opacity); }\n  &.top    { margin-top:  -3px; padding: @tooltip-arrow-width 0; }\n  &.right  { margin-left:  3px; padding: 0 @tooltip-arrow-width; }\n  &.bottom { margin-top:   3px; padding: @tooltip-arrow-width 0; }\n  &.left   { margin-left: -3px; padding: 0 @tooltip-arrow-width; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n  max-width: @tooltip-max-width;\n  padding: 3px 8px;\n  color: @tooltip-color;\n  text-align: center;\n  background-color: @tooltip-bg;\n  border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n  position: absolute;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1\n.tooltip {\n  &.top .tooltip-arrow {\n    bottom: 0;\n    left: 50%;\n    margin-left: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.top-left .tooltip-arrow {\n    bottom: 0;\n    right: @tooltip-arrow-width;\n    margin-bottom: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.top-right .tooltip-arrow {\n    bottom: 0;\n    left: @tooltip-arrow-width;\n    margin-bottom: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.right .tooltip-arrow {\n    top: 50%;\n    left: 0;\n    margin-top: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-right-color: @tooltip-arrow-color;\n  }\n  &.left .tooltip-arrow {\n    top: 50%;\n    right: 0;\n    margin-top: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-left-color: @tooltip-arrow-color;\n  }\n  &.bottom .tooltip-arrow {\n    top: 0;\n    left: 50%;\n    margin-left: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n  &.bottom-left .tooltip-arrow {\n    top: 0;\n    right: @tooltip-arrow-width;\n    margin-top: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n  &.bottom-right .tooltip-arrow {\n    top: 0;\n    left: @tooltip-arrow-width;\n    margin-top: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n}\n",".reset-text() {\n  font-family: @font-family-base;\n  // We deliberately do NOT reset font-size.\n  font-style: normal;\n  font-weight: normal;\n  letter-spacing: normal;\n  line-break: auto;\n  line-height: @line-height-base;\n  text-align: left; // Fallback for where `start` is not supported\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  white-space: normal;\n  word-break: normal;\n  word-spacing: normal;\n  word-wrap: normal;\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n  position: absolute;\n  top: 0;\n  left: 0;\n  z-index: @zindex-popover;\n  display: none;\n  max-width: @popover-max-width;\n  padding: 1px;\n  // Our parent element can be arbitrary since popovers are by default inserted as a sibling of their target element.\n  // So reset our font and text properties to avoid inheriting weird values.\n  .reset-text();\n  font-size: @font-size-base;\n\n  background-color: @popover-bg;\n  background-clip: padding-box;\n  border: 1px solid @popover-fallback-border-color;\n  border: 1px solid @popover-border-color;\n  border-radius: @border-radius-large;\n  .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n  // Offset the popover to account for the popover arrow\n  &.top     { margin-top: -@popover-arrow-width; }\n  &.right   { margin-left: @popover-arrow-width; }\n  &.bottom  { margin-top: @popover-arrow-width; }\n  &.left    { margin-left: -@popover-arrow-width; }\n}\n\n.popover-title {\n  margin: 0; // reset heading margin\n  padding: 8px 14px;\n  font-size: @font-size-base;\n  background-color: @popover-title-bg;\n  border-bottom: 1px solid darken(@popover-title-bg, 5%);\n  border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;\n}\n\n.popover-content {\n  padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover > .arrow {\n  &,\n  &:after {\n    position: absolute;\n    display: block;\n    width: 0;\n    height: 0;\n    border-color: transparent;\n    border-style: solid;\n  }\n}\n.popover > .arrow {\n  border-width: @popover-arrow-outer-width;\n}\n.popover > .arrow:after {\n  border-width: @popover-arrow-width;\n  content: \"\";\n}\n\n.popover {\n  &.top > .arrow {\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    border-bottom-width: 0;\n    border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-top-color: @popover-arrow-outer-color;\n    bottom: -@popover-arrow-outer-width;\n    &:after {\n      content: \" \";\n      bottom: 1px;\n      margin-left: -@popover-arrow-width;\n      border-bottom-width: 0;\n      border-top-color: @popover-arrow-color;\n    }\n  }\n  &.right > .arrow {\n    top: 50%;\n    left: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    border-left-width: 0;\n    border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-right-color: @popover-arrow-outer-color;\n    &:after {\n      content: \" \";\n      left: 1px;\n      bottom: -@popover-arrow-width;\n      border-left-width: 0;\n      border-right-color: @popover-arrow-color;\n    }\n  }\n  &.bottom > .arrow {\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    border-top-width: 0;\n    border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-bottom-color: @popover-arrow-outer-color;\n    top: -@popover-arrow-outer-width;\n    &:after {\n      content: \" \";\n      top: 1px;\n      margin-left: -@popover-arrow-width;\n      border-top-width: 0;\n      border-bottom-color: @popover-arrow-color;\n    }\n  }\n\n  &.left > .arrow {\n    top: 50%;\n    right: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    border-right-width: 0;\n    border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-left-color: @popover-arrow-outer-color;\n    &:after {\n      content: \" \";\n      right: 1px;\n      border-right-width: 0;\n      border-left-color: @popover-arrow-color;\n      bottom: -@popover-arrow-width;\n    }\n  }\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n//    contenteditable attribute is included anywhere else in the document.\n//    Otherwise it causes space to appear at the top and bottom of elements\n//    that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n//    `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n  &:before,\n  &:after {\n    content: \" \"; // 1\n    display: table; // 2\n  }\n  &:after {\n    clear: both;\n  }\n}\n","// Center-align a block level element\n\n.center-block() {\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n","// CSS image replacement\n//\n// Heads up! v3 launched with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (has been removed in v4)\n.hide-text() {\n  font: ~\"0/0\" a;\n  color: transparent;\n  text-shadow: none;\n  background-color: transparent;\n  border: 0;\n}\n\n// New mixin to use as of v3.0.1\n.text-hide() {\n  .hide-text();\n}\n","//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#support-ie10-width\n// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n  width: device-width;\n}\n\n\n// Visibility utilities\n// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n  .responsive-invisibility();\n}\n\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n  display: none !important;\n}\n\n.visible-xs {\n  @media (max-width: @screen-xs-max) {\n    .responsive-visibility();\n  }\n}\n.visible-xs-block {\n  @media (max-width: @screen-xs-max) {\n    display: block !important;\n  }\n}\n.visible-xs-inline {\n  @media (max-width: @screen-xs-max) {\n    display: inline !important;\n  }\n}\n.visible-xs-inline-block {\n  @media (max-width: @screen-xs-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-sm {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    .responsive-visibility();\n  }\n}\n.visible-sm-block {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: block !important;\n  }\n}\n.visible-sm-inline {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: inline !important;\n  }\n}\n.visible-sm-inline-block {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-md {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    .responsive-visibility();\n  }\n}\n.visible-md-block {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: block !important;\n  }\n}\n.visible-md-inline {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: inline !important;\n  }\n}\n.visible-md-inline-block {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-lg {\n  @media (min-width: @screen-lg-min) {\n    .responsive-visibility();\n  }\n}\n.visible-lg-block {\n  @media (min-width: @screen-lg-min) {\n    display: block !important;\n  }\n}\n.visible-lg-inline {\n  @media (min-width: @screen-lg-min) {\n    display: inline !important;\n  }\n}\n.visible-lg-inline-block {\n  @media (min-width: @screen-lg-min) {\n    display: inline-block !important;\n  }\n}\n\n.hidden-xs {\n  @media (max-width: @screen-xs-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-sm {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-md {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-lg {\n  @media (min-width: @screen-lg-min) {\n    .responsive-invisibility();\n  }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n// Note: Deprecated .visible-print as of v3.2.0\n.visible-print {\n  .responsive-invisibility();\n\n  @media print {\n    .responsive-visibility();\n  }\n}\n.visible-print-block {\n  display: none !important;\n\n  @media print {\n    display: block !important;\n  }\n}\n.visible-print-inline {\n  display: none !important;\n\n  @media print {\n    display: inline !important;\n  }\n}\n.visible-print-inline-block {\n  display: none !important;\n\n  @media print {\n    display: inline-block !important;\n  }\n}\n\n.hidden-print {\n  @media print {\n    .responsive-invisibility();\n  }\n}\n","// Responsive utilities\n\n//\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n  display: block !important;\n  table&  { display: table !important; }\n  tr&     { display: table-row !important; }\n  th&,\n  td&     { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n  display: none !important;\n}\n","/* FONT PATH\n * -------------------------- */\n\n@font-face {\n  font-family: 'FontAwesome';\n  src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');\n  src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),\n    url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),\n    url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),\n    url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),\n    url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');\n  // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts\n  font-weight: normal;\n  font-style: normal;\n}\n","// Base Class Definition\n// -------------------------\n\n.@{fa-css-prefix} {\n  display: inline-block;\n  font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration\n  font-size: inherit; // can't have font-size inherit on line above, so need to override\n  text-rendering: auto; // optimizelegibility throws things off #1094\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n\n}\n","// Icon Sizes\n// -------------------------\n\n/* makes the font 33% larger relative to the icon container */\n.@{fa-css-prefix}-lg {\n  font-size: (4em / 3);\n  line-height: (3em / 4);\n  vertical-align: -15%;\n}\n.@{fa-css-prefix}-2x { font-size: 2em; }\n.@{fa-css-prefix}-3x { font-size: 3em; }\n.@{fa-css-prefix}-4x { font-size: 4em; }\n.@{fa-css-prefix}-5x { font-size: 5em; }\n","// Fixed Width Icons\n// -------------------------\n.@{fa-css-prefix}-fw {\n  width: (18em / 14);\n  text-align: center;\n}\n","// List Icons\n// -------------------------\n\n.@{fa-css-prefix}-ul {\n  padding-left: 0;\n  margin-left: @fa-li-width;\n  list-style-type: none;\n  > li { position: relative; }\n}\n.@{fa-css-prefix}-li {\n  position: absolute;\n  left: -@fa-li-width;\n  width: @fa-li-width;\n  top: (2em / 14);\n  text-align: center;\n  &.@{fa-css-prefix}-lg {\n    left: (-@fa-li-width + (4em / 14));\n  }\n}\n","// Animated Icons\n// --------------------------\n\n.@{fa-css-prefix}-spin {\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear;\n}\n\n.@{fa-css-prefix}-pulse {\n  -webkit-animation: fa-spin 1s infinite steps(8);\n          animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n            transform: rotate(359deg);\n  }\n}\n\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n            transform: rotate(359deg);\n  }\n}\n","// Rotated & Flipped Icons\n// -------------------------\n\n.@{fa-css-prefix}-rotate-90  { .fa-icon-rotate(90deg, 1);  }\n.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }\n.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }\n\n.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }\n.@{fa-css-prefix}-flip-vertical   { .fa-icon-flip(1, -1, 2); }\n\n// Hook for IE8-9\n// -------------------------\n\n:root .@{fa-css-prefix}-rotate-90,\n:root .@{fa-css-prefix}-rotate-180,\n:root .@{fa-css-prefix}-rotate-270,\n:root .@{fa-css-prefix}-flip-horizontal,\n:root .@{fa-css-prefix}-flip-vertical {\n  filter: none;\n}\n","// Mixins\n// --------------------------\n\n.fa-icon() {\n  display: inline-block;\n  font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration\n  font-size: inherit; // can't have font-size inherit on line above, so need to override\n  text-rendering: auto; // optimizelegibility throws things off #1094\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n\n}\n\n.fa-icon-rotate(@degrees, @rotation) {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})\";\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n\n.fa-icon-flip(@horiz, @vert, @rotation) {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)\";\n  -webkit-transform: scale(@horiz, @vert);\n      -ms-transform: scale(@horiz, @vert);\n          transform: scale(@horiz, @vert);\n}\n\n\n// Only display content to screen readers. A la Bootstrap 4.\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n//\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n//\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable() {\n  &:active,\n  &:focus {\n    position: static;\n    width: auto;\n    height: auto;\n    margin: 0;\n    overflow: visible;\n    clip: auto;\n  }\n}\n","// Stacked Icons\n// -------------------------\n\n.@{fa-css-prefix}-stack {\n  position: relative;\n  display: inline-block;\n  width: 2em;\n  height: 2em;\n  line-height: 2em;\n  vertical-align: middle;\n}\n.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {\n  position: absolute;\n  left: 0;\n  width: 100%;\n  text-align: center;\n}\n.@{fa-css-prefix}-stack-1x { line-height: inherit; }\n.@{fa-css-prefix}-stack-2x { font-size: 2em; }\n.@{fa-css-prefix}-inverse { color: @fa-inverse; }\n","/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n   readers do not read off random characters that represent icons */\n\n.@{fa-css-prefix}-glass:before { content: @fa-var-glass; }\n.@{fa-css-prefix}-music:before { content: @fa-var-music; }\n.@{fa-css-prefix}-search:before { content: @fa-var-search; }\n.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; }\n.@{fa-css-prefix}-heart:before { content: @fa-var-heart; }\n.@{fa-css-prefix}-star:before { content: @fa-var-star; }\n.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; }\n.@{fa-css-prefix}-user:before { content: @fa-var-user; }\n.@{fa-css-prefix}-film:before { content: @fa-var-film; }\n.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; }\n.@{fa-css-prefix}-th:before { content: @fa-var-th; }\n.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; }\n.@{fa-css-prefix}-check:before { content: @fa-var-check; }\n.@{fa-css-prefix}-remove:before,\n.@{fa-css-prefix}-close:before,\n.@{fa-css-prefix}-times:before { content: @fa-var-times; }\n.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; }\n.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; }\n.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; }\n.@{fa-css-prefix}-signal:before { content: @fa-var-signal; }\n.@{fa-css-prefix}-gear:before,\n.@{fa-css-prefix}-cog:before { content: @fa-var-cog; }\n.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; }\n.@{fa-css-prefix}-home:before { content: @fa-var-home; }\n.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; }\n.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; }\n.@{fa-css-prefix}-road:before { content: @fa-var-road; }\n.@{fa-css-prefix}-download:before { content: @fa-var-download; }\n.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; }\n.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; }\n.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; }\n.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; }\n.@{fa-css-prefix}-rotate-right:before,\n.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; }\n.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; }\n.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; }\n.@{fa-css-prefix}-lock:before { content: @fa-var-lock; }\n.@{fa-css-prefix}-flag:before { content: @fa-var-flag; }\n.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; }\n.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; }\n.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; }\n.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; }\n.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; }\n.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; }\n.@{fa-css-prefix}-tag:before { content: @fa-var-tag; }\n.@{fa-css-prefix}-tags:before { content: @fa-var-tags; }\n.@{fa-css-prefix}-book:before { content: @fa-var-book; }\n.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; }\n.@{fa-css-prefix}-print:before { content: @fa-var-print; }\n.@{fa-css-prefix}-camera:before { content: @fa-var-camera; }\n.@{fa-css-prefix}-font:before { content: @fa-var-font; }\n.@{fa-css-prefix}-bold:before { content: @fa-var-bold; }\n.@{fa-css-prefix}-italic:before { content: @fa-var-italic; }\n.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; }\n.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; }\n.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; }\n.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; }\n.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; }\n.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; }\n.@{fa-css-prefix}-list:before { content: @fa-var-list; }\n.@{fa-css-prefix}-dedent:before,\n.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; }\n.@{fa-css-prefix}-indent:before { content: @fa-var-indent; }\n.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; }\n.@{fa-css-prefix}-photo:before,\n.@{fa-css-prefix}-image:before,\n.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; }\n.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; }\n.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; }\n.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; }\n.@{fa-css-prefix}-tint:before { content: @fa-var-tint; }\n.@{fa-css-prefix}-edit:before,\n.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; }\n.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; }\n.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; }\n.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; }\n.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; }\n.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; }\n.@{fa-css-prefix}-backward:before { content: @fa-var-backward; }\n.@{fa-css-prefix}-play:before { content: @fa-var-play; }\n.@{fa-css-prefix}-pause:before { content: @fa-var-pause; }\n.@{fa-css-prefix}-stop:before { content: @fa-var-stop; }\n.@{fa-css-prefix}-forward:before { content: @fa-var-forward; }\n.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; }\n.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; }\n.@{fa-css-prefix}-eject:before { content: @fa-var-eject; }\n.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; }\n.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; }\n.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; }\n.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; }\n.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; }\n.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; }\n.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; }\n.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; }\n.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; }\n.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; }\n.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; }\n.@{fa-css-prefix}-ban:before { content: @fa-var-ban; }\n.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; }\n.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; }\n.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; }\n.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; }\n.@{fa-css-prefix}-mail-forward:before,\n.@{fa-css-prefix}-share:before { content: @fa-var-share; }\n.@{fa-css-prefix}-expand:before { content: @fa-var-expand; }\n.@{fa-css-prefix}-compress:before { content: @fa-var-compress; }\n.@{fa-css-prefix}-plus:before { content: @fa-var-plus; }\n.@{fa-css-prefix}-minus:before { content: @fa-var-minus; }\n.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; }\n.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; }\n.@{fa-css-prefix}-gift:before { content: @fa-var-gift; }\n.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; }\n.@{fa-css-prefix}-fire:before { content: @fa-var-fire; }\n.@{fa-css-prefix}-eye:before { content: @fa-var-eye; }\n.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; }\n.@{fa-css-prefix}-warning:before,\n.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; }\n.@{fa-css-prefix}-plane:before { content: @fa-var-plane; }\n.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; }\n.@{fa-css-prefix}-random:before { content: @fa-var-random; }\n.@{fa-css-prefix}-comment:before { content: @fa-var-comment; }\n.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; }\n.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; }\n.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; }\n.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; }\n.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; }\n.@{fa-css-prefix}-folder:before { content: @fa-var-folder; }\n.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; }\n.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; }\n.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; }\n.@{fa-css-prefix}-bar-chart-o:before,\n.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; }\n.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; }\n.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; }\n.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; }\n.@{fa-css-prefix}-key:before { content: @fa-var-key; }\n.@{fa-css-prefix}-gears:before,\n.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; }\n.@{fa-css-prefix}-comments:before { content: @fa-var-comments; }\n.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; }\n.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; }\n.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; }\n.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; }\n.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; }\n.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; }\n.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; }\n.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; }\n.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; }\n.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; }\n.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; }\n.@{fa-css-prefix}-upload:before { content: @fa-var-upload; }\n.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; }\n.@{fa-css-prefix}-phone:before { content: @fa-var-phone; }\n.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; }\n.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; }\n.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; }\n.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; }\n.@{fa-css-prefix}-facebook-f:before,\n.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; }\n.@{fa-css-prefix}-github:before { content: @fa-var-github; }\n.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; }\n.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; }\n.@{fa-css-prefix}-feed:before,\n.@{fa-css-prefix}-rss:before { content: @fa-var-rss; }\n.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; }\n.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; }\n.@{fa-css-prefix}-bell:before { content: @fa-var-bell; }\n.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; }\n.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; }\n.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; }\n.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; }\n.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; }\n.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; }\n.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; }\n.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; }\n.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; }\n.@{fa-css-prefix}-globe:before { content: @fa-var-globe; }\n.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; }\n.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; }\n.@{fa-css-prefix}-filter:before { content: @fa-var-filter; }\n.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; }\n.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; }\n.@{fa-css-prefix}-group:before,\n.@{fa-css-prefix}-users:before { content: @fa-var-users; }\n.@{fa-css-prefix}-chain:before,\n.@{fa-css-prefix}-link:before { content: @fa-var-link; }\n.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; }\n.@{fa-css-prefix}-flask:before { content: @fa-var-flask; }\n.@{fa-css-prefix}-cut:before,\n.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; }\n.@{fa-css-prefix}-copy:before,\n.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; }\n.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; }\n.@{fa-css-prefix}-save:before,\n.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; }\n.@{fa-css-prefix}-square:before { content: @fa-var-square; }\n.@{fa-css-prefix}-navicon:before,\n.@{fa-css-prefix}-reorder:before,\n.@{fa-css-prefix}-bars:before { content: @fa-var-bars; }\n.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; }\n.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; }\n.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; }\n.@{fa-css-prefix}-underline:before { content: @fa-var-underline; }\n.@{fa-css-prefix}-table:before { content: @fa-var-table; }\n.@{fa-css-prefix}-magic:before { content: @fa-var-magic; }\n.@{fa-css-prefix}-truck:before { content: @fa-var-truck; }\n.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; }\n.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; }\n.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; }\n.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; }\n.@{fa-css-prefix}-money:before { content: @fa-var-money; }\n.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; }\n.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; }\n.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; }\n.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; }\n.@{fa-css-prefix}-columns:before { content: @fa-var-columns; }\n.@{fa-css-prefix}-unsorted:before,\n.@{fa-css-prefix}-sort:before { content: @fa-var-sort; }\n.@{fa-css-prefix}-sort-down:before,\n.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; }\n.@{fa-css-prefix}-sort-up:before,\n.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; }\n.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; }\n.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; }\n.@{fa-css-prefix}-rotate-left:before,\n.@{fa-css-prefix}-undo:before { content: @fa-var-undo; }\n.@{fa-css-prefix}-legal:before,\n.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; }\n.@{fa-css-prefix}-dashboard:before,\n.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; }\n.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; }\n.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; }\n.@{fa-css-prefix}-flash:before,\n.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; }\n.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; }\n.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; }\n.@{fa-css-prefix}-paste:before,\n.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; }\n.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; }\n.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; }\n.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; }\n.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; }\n.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; }\n.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; }\n.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; }\n.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; }\n.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; }\n.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; }\n.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; }\n.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; }\n.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; }\n.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; }\n.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; }\n.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; }\n.@{fa-css-prefix}-beer:before { content: @fa-var-beer; }\n.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; }\n.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; }\n.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; }\n.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; }\n.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; }\n.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; }\n.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; }\n.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; }\n.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; }\n.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; }\n.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; }\n.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; }\n.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; }\n.@{fa-css-prefix}-mobile-phone:before,\n.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; }\n.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; }\n.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; }\n.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; }\n.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; }\n.@{fa-css-prefix}-circle:before { content: @fa-var-circle; }\n.@{fa-css-prefix}-mail-reply:before,\n.@{fa-css-prefix}-reply:before { content: @fa-var-reply; }\n.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; }\n.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; }\n.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; }\n.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; }\n.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; }\n.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; }\n.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; }\n.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; }\n.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; }\n.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; }\n.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; }\n.@{fa-css-prefix}-code:before { content: @fa-var-code; }\n.@{fa-css-prefix}-mail-reply-all:before,\n.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; }\n.@{fa-css-prefix}-star-half-empty:before,\n.@{fa-css-prefix}-star-half-full:before,\n.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; }\n.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; }\n.@{fa-css-prefix}-crop:before { content: @fa-var-crop; }\n.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; }\n.@{fa-css-prefix}-unlink:before,\n.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; }\n.@{fa-css-prefix}-question:before { content: @fa-var-question; }\n.@{fa-css-prefix}-info:before { content: @fa-var-info; }\n.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; }\n.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; }\n.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; }\n.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; }\n.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; }\n.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; }\n.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; }\n.@{fa-css-prefix}-shield:before { content: @fa-var-shield; }\n.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; }\n.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; }\n.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; }\n.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; }\n.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; }\n.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; }\n.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; }\n.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; }\n.@{fa-css-prefix}-html5:before { content: @fa-var-html5; }\n.@{fa-css-prefix}-css3:before { content: @fa-var-css3; }\n.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; }\n.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; }\n.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; }\n.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; }\n.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; }\n.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; }\n.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; }\n.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; }\n.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; }\n.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; }\n.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; }\n.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; }\n.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; }\n.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; }\n.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; }\n.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; }\n.@{fa-css-prefix}-compass:before { content: @fa-var-compass; }\n.@{fa-css-prefix}-toggle-down:before,\n.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; }\n.@{fa-css-prefix}-toggle-up:before,\n.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; }\n.@{fa-css-prefix}-toggle-right:before,\n.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; }\n.@{fa-css-prefix}-euro:before,\n.@{fa-css-prefix}-eur:before { content: @fa-var-eur; }\n.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; }\n.@{fa-css-prefix}-dollar:before,\n.@{fa-css-prefix}-usd:before { content: @fa-var-usd; }\n.@{fa-css-prefix}-rupee:before,\n.@{fa-css-prefix}-inr:before { content: @fa-var-inr; }\n.@{fa-css-prefix}-cny:before,\n.@{fa-css-prefix}-rmb:before,\n.@{fa-css-prefix}-yen:before,\n.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; }\n.@{fa-css-prefix}-ruble:before,\n.@{fa-css-prefix}-rouble:before,\n.@{fa-css-prefix}-rub:before { content: @fa-var-rub; }\n.@{fa-css-prefix}-won:before,\n.@{fa-css-prefix}-krw:before { content: @fa-var-krw; }\n.@{fa-css-prefix}-bitcoin:before,\n.@{fa-css-prefix}-btc:before { content: @fa-var-btc; }\n.@{fa-css-prefix}-file:before { content: @fa-var-file; }\n.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; }\n.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; }\n.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; }\n.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; }\n.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; }\n.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; }\n.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; }\n.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; }\n.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; }\n.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; }\n.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; }\n.@{fa-css-prefix}-xing:before { content: @fa-var-xing; }\n.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; }\n.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; }\n.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; }\n.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; }\n.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; }\n.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; }\n.@{fa-css-prefix}-adn:before { content: @fa-var-adn; }\n.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; }\n.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; }\n.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; }\n.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; }\n.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; }\n.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; }\n.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; }\n.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; }\n.@{fa-css-prefix}-apple:before { content: @fa-var-apple; }\n.@{fa-css-prefix}-windows:before { content: @fa-var-windows; }\n.@{fa-css-prefix}-android:before { content: @fa-var-android; }\n.@{fa-css-prefix}-linux:before { content: @fa-var-linux; }\n.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; }\n.@{fa-css-prefix}-skype:before { content: @fa-var-skype; }\n.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; }\n.@{fa-css-prefix}-trello:before { content: @fa-var-trello; }\n.@{fa-css-prefix}-female:before { content: @fa-var-female; }\n.@{fa-css-prefix}-male:before { content: @fa-var-male; }\n.@{fa-css-prefix}-gittip:before,\n.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; }\n.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; }\n.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; }\n.@{fa-css-prefix}-archive:before { content: @fa-var-archive; }\n.@{fa-css-prefix}-bug:before { content: @fa-var-bug; }\n.@{fa-css-prefix}-vk:before { content: @fa-var-vk; }\n.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; }\n.@{fa-css-prefix}-renren:before { content: @fa-var-renren; }\n.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; }\n.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; }\n.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; }\n.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; }\n.@{fa-css-prefix}-toggle-left:before,\n.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; }\n.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; }\n.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; }\n.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; }\n.@{fa-css-prefix}-turkish-lira:before,\n.@{fa-css-prefix}-try:before { content: @fa-var-try; }\n.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; }\n.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; }\n.@{fa-css-prefix}-slack:before { content: @fa-var-slack; }\n.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; }\n.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; }\n.@{fa-css-prefix}-openid:before { content: @fa-var-openid; }\n.@{fa-css-prefix}-institution:before,\n.@{fa-css-prefix}-bank:before,\n.@{fa-css-prefix}-university:before { content: @fa-var-university; }\n.@{fa-css-prefix}-mortar-board:before,\n.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; }\n.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; }\n.@{fa-css-prefix}-google:before { content: @fa-var-google; }\n.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; }\n.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; }\n.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; }\n.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; }\n.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; }\n.@{fa-css-prefix}-digg:before { content: @fa-var-digg; }\n.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; }\n.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; }\n.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; }\n.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; }\n.@{fa-css-prefix}-language:before { content: @fa-var-language; }\n.@{fa-css-prefix}-fax:before { content: @fa-var-fax; }\n.@{fa-css-prefix}-building:before { content: @fa-var-building; }\n.@{fa-css-prefix}-child:before { content: @fa-var-child; }\n.@{fa-css-prefix}-paw:before { content: @fa-var-paw; }\n.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; }\n.@{fa-css-prefix}-cube:before { content: @fa-var-cube; }\n.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; }\n.@{fa-css-prefix}-behance:before { content: @fa-var-behance; }\n.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; }\n.@{fa-css-prefix}-steam:before { content: @fa-var-steam; }\n.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; }\n.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; }\n.@{fa-css-prefix}-automobile:before,\n.@{fa-css-prefix}-car:before { content: @fa-var-car; }\n.@{fa-css-prefix}-cab:before,\n.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; }\n.@{fa-css-prefix}-tree:before { content: @fa-var-tree; }\n.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; }\n.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; }\n.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; }\n.@{fa-css-prefix}-database:before { content: @fa-var-database; }\n.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; }\n.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; }\n.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; }\n.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; }\n.@{fa-css-prefix}-file-photo-o:before,\n.@{fa-css-prefix}-file-picture-o:before,\n.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; }\n.@{fa-css-prefix}-file-zip-o:before,\n.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; }\n.@{fa-css-prefix}-file-sound-o:before,\n.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; }\n.@{fa-css-prefix}-file-movie-o:before,\n.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; }\n.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; }\n.@{fa-css-prefix}-vine:before { content: @fa-var-vine; }\n.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; }\n.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; }\n.@{fa-css-prefix}-life-bouy:before,\n.@{fa-css-prefix}-life-buoy:before,\n.@{fa-css-prefix}-life-saver:before,\n.@{fa-css-prefix}-support:before,\n.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; }\n.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; }\n.@{fa-css-prefix}-ra:before,\n.@{fa-css-prefix}-resistance:before,\n.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; }\n.@{fa-css-prefix}-ge:before,\n.@{fa-css-prefix}-empire:before { content: @fa-var-empire; }\n.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; }\n.@{fa-css-prefix}-git:before { content: @fa-var-git; }\n.@{fa-css-prefix}-y-combinator-square:before,\n.@{fa-css-prefix}-yc-square:before,\n.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; }\n.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; }\n.@{fa-css-prefix}-qq:before { content: @fa-var-qq; }\n.@{fa-css-prefix}-wechat:before,\n.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; }\n.@{fa-css-prefix}-send:before,\n.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; }\n.@{fa-css-prefix}-send-o:before,\n.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; }\n.@{fa-css-prefix}-history:before { content: @fa-var-history; }\n.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; }\n.@{fa-css-prefix}-header:before { content: @fa-var-header; }\n.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; }\n.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; }\n.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; }\n.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; }\n.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; }\n.@{fa-css-prefix}-soccer-ball-o:before,\n.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; }\n.@{fa-css-prefix}-tty:before { content: @fa-var-tty; }\n.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; }\n.@{fa-css-prefix}-plug:before { content: @fa-var-plug; }\n.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; }\n.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; }\n.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; }\n.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; }\n.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; }\n.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; }\n.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; }\n.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; }\n.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; }\n.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; }\n.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; }\n.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; }\n.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; }\n.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; }\n.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; }\n.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; }\n.@{fa-css-prefix}-trash:before { content: @fa-var-trash; }\n.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; }\n.@{fa-css-prefix}-at:before { content: @fa-var-at; }\n.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; }\n.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; }\n.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; }\n.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; }\n.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; }\n.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; }\n.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; }\n.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; }\n.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; }\n.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; }\n.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; }\n.@{fa-css-prefix}-bus:before { content: @fa-var-bus; }\n.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; }\n.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; }\n.@{fa-css-prefix}-cc:before { content: @fa-var-cc; }\n.@{fa-css-prefix}-shekel:before,\n.@{fa-css-prefix}-sheqel:before,\n.@{fa-css-prefix}-ils:before { content: @fa-var-ils; }\n.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; }\n.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; }\n.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; }\n.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; }\n.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; }\n.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; }\n.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; }\n.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; }\n.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; }\n.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; }\n.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; }\n.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; }\n.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; }\n.@{fa-css-prefix}-ship:before { content: @fa-var-ship; }\n.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; }\n.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; }\n.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; }\n.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; }\n.@{fa-css-prefix}-venus:before { content: @fa-var-venus; }\n.@{fa-css-prefix}-mars:before { content: @fa-var-mars; }\n.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; }\n.@{fa-css-prefix}-intersex:before,\n.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; }\n.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; }\n.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; }\n.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; }\n.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; }\n.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; }\n.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; }\n.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; }\n.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; }\n.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; }\n.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; }\n.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; }\n.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; }\n.@{fa-css-prefix}-server:before { content: @fa-var-server; }\n.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; }\n.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; }\n.@{fa-css-prefix}-hotel:before,\n.@{fa-css-prefix}-bed:before { content: @fa-var-bed; }\n.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; }\n.@{fa-css-prefix}-train:before { content: @fa-var-train; }\n.@{fa-css-prefix}-subway:before { content: @fa-var-subway; }\n.@{fa-css-prefix}-medium:before { content: @fa-var-medium; }\n.@{fa-css-prefix}-yc:before,\n.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; }\n.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; }\n.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; }\n.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; }\n.@{fa-css-prefix}-battery-4:before,\n.@{fa-css-prefix}-battery:before,\n.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; }\n.@{fa-css-prefix}-battery-3:before,\n.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; }\n.@{fa-css-prefix}-battery-2:before,\n.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; }\n.@{fa-css-prefix}-battery-1:before,\n.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; }\n.@{fa-css-prefix}-battery-0:before,\n.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; }\n.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; }\n.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; }\n.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; }\n.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; }\n.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; }\n.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; }\n.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; }\n.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; }\n.@{fa-css-prefix}-clone:before { content: @fa-var-clone; }\n.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; }\n.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; }\n.@{fa-css-prefix}-hourglass-1:before,\n.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; }\n.@{fa-css-prefix}-hourglass-2:before,\n.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; }\n.@{fa-css-prefix}-hourglass-3:before,\n.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; }\n.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; }\n.@{fa-css-prefix}-hand-grab-o:before,\n.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; }\n.@{fa-css-prefix}-hand-stop-o:before,\n.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; }\n.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; }\n.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; }\n.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; }\n.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; }\n.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; }\n.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; }\n.@{fa-css-prefix}-registered:before { content: @fa-var-registered; }\n.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; }\n.@{fa-css-prefix}-gg:before { content: @fa-var-gg; }\n.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; }\n.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; }\n.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; }\n.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; }\n.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; }\n.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; }\n.@{fa-css-prefix}-safari:before { content: @fa-var-safari; }\n.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; }\n.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; }\n.@{fa-css-prefix}-opera:before { content: @fa-var-opera; }\n.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; }\n.@{fa-css-prefix}-tv:before,\n.@{fa-css-prefix}-television:before { content: @fa-var-television; }\n.@{fa-css-prefix}-contao:before { content: @fa-var-contao; }\n.@{fa-css-prefix}-500px:before { content: @fa-var-500px; }\n.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; }\n.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; }\n.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; }\n.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; }\n.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; }\n.@{fa-css-prefix}-industry:before { content: @fa-var-industry; }\n.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; }\n.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; }\n.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; }\n.@{fa-css-prefix}-map:before { content: @fa-var-map; }\n.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; }\n.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; }\n.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; }\n.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; }\n.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; }\n.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; }\n.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; }\n.@{fa-css-prefix}-edge:before { content: @fa-var-edge; }\n.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; }\n.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; }\n.@{fa-css-prefix}-modx:before { content: @fa-var-modx; }\n.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; }\n.@{fa-css-prefix}-usb:before { content: @fa-var-usb; }\n.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; }\n.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; }\n.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; }\n.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; }\n.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; }\n.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; }\n.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; }\n.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; }\n.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; }\n.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; }\n.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; }\n.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; }\n.@{fa-css-prefix}-percent:before { content: @fa-var-percent; }\n.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; }\n.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; }\n.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; }\n.@{fa-css-prefix}-envira:before { content: @fa-var-envira; }\n.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; }\n.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; }\n.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; }\n.@{fa-css-prefix}-blind:before { content: @fa-var-blind; }\n.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; }\n.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; }\n.@{fa-css-prefix}-braille:before { content: @fa-var-braille; }\n.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; }\n.@{fa-css-prefix}-asl-interpreting:before,\n.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; }\n.@{fa-css-prefix}-deafness:before,\n.@{fa-css-prefix}-hard-of-hearing:before,\n.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; }\n.@{fa-css-prefix}-glide:before { content: @fa-var-glide; }\n.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; }\n.@{fa-css-prefix}-signing:before,\n.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; }\n.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; }\n.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; }\n.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; }\n.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; }\n.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; }\n.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; }\n.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; }\n.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; }\n.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; }\n.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; }\n.@{fa-css-prefix}-google-plus-circle:before,\n.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; }\n.@{fa-css-prefix}-fa:before,\n.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; }\n.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; }\n.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; }\n.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; }\n.@{fa-css-prefix}-linode:before { content: @fa-var-linode; }\n.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; }\n.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; }\n.@{fa-css-prefix}-vcard:before,\n.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; }\n.@{fa-css-prefix}-vcard-o:before,\n.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; }\n.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; }\n.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; }\n.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; }\n.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; }\n.@{fa-css-prefix}-drivers-license:before,\n.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; }\n.@{fa-css-prefix}-drivers-license-o:before,\n.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; }\n.@{fa-css-prefix}-quora:before { content: @fa-var-quora; }\n.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; }\n.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; }\n.@{fa-css-prefix}-thermometer-4:before,\n.@{fa-css-prefix}-thermometer:before,\n.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; }\n.@{fa-css-prefix}-thermometer-3:before,\n.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; }\n.@{fa-css-prefix}-thermometer-2:before,\n.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; }\n.@{fa-css-prefix}-thermometer-1:before,\n.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; }\n.@{fa-css-prefix}-thermometer-0:before,\n.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; }\n.@{fa-css-prefix}-shower:before { content: @fa-var-shower; }\n.@{fa-css-prefix}-bathtub:before,\n.@{fa-css-prefix}-s15:before,\n.@{fa-css-prefix}-bath:before { content: @fa-var-bath; }\n.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; }\n.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; }\n.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; }\n.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; }\n.@{fa-css-prefix}-times-rectangle:before,\n.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; }\n.@{fa-css-prefix}-times-rectangle-o:before,\n.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; }\n.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; }\n.@{fa-css-prefix}-grav:before { content: @fa-var-grav; }\n.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; }\n.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; }\n.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; }\n.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; }\n.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; }\n.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; }\n.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; }\n.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; }\n.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; }\n","// Variables\n// --------------------------\n\n@fa-font-path:        \"../fonts\";\n@fa-font-size-base:   14px;\n@fa-line-height-base: 1;\n//@fa-font-path:        \"//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts\"; // for referencing Bootstrap CDN font files directly\n@fa-css-prefix:       fa;\n@fa-version:          \"4.7.0\";\n@fa-border-color:     #eee;\n@fa-inverse:          #fff;\n@fa-li-width:         (30em / 14);\n\n@fa-var-500px: \"\\f26e\";\n@fa-var-address-book: \"\\f2b9\";\n@fa-var-address-book-o: \"\\f2ba\";\n@fa-var-address-card: \"\\f2bb\";\n@fa-var-address-card-o: \"\\f2bc\";\n@fa-var-adjust: \"\\f042\";\n@fa-var-adn: \"\\f170\";\n@fa-var-align-center: \"\\f037\";\n@fa-var-align-justify: \"\\f039\";\n@fa-var-align-left: \"\\f036\";\n@fa-var-align-right: \"\\f038\";\n@fa-var-amazon: \"\\f270\";\n@fa-var-ambulance: \"\\f0f9\";\n@fa-var-american-sign-language-interpreting: \"\\f2a3\";\n@fa-var-anchor: \"\\f13d\";\n@fa-var-android: \"\\f17b\";\n@fa-var-angellist: \"\\f209\";\n@fa-var-angle-double-down: \"\\f103\";\n@fa-var-angle-double-left: \"\\f100\";\n@fa-var-angle-double-right: \"\\f101\";\n@fa-var-angle-double-up: \"\\f102\";\n@fa-var-angle-down: \"\\f107\";\n@fa-var-angle-left: \"\\f104\";\n@fa-var-angle-right: \"\\f105\";\n@fa-var-angle-up: \"\\f106\";\n@fa-var-apple: \"\\f179\";\n@fa-var-archive: \"\\f187\";\n@fa-var-area-chart: \"\\f1fe\";\n@fa-var-arrow-circle-down: \"\\f0ab\";\n@fa-var-arrow-circle-left: \"\\f0a8\";\n@fa-var-arrow-circle-o-down: \"\\f01a\";\n@fa-var-arrow-circle-o-left: \"\\f190\";\n@fa-var-arrow-circle-o-right: \"\\f18e\";\n@fa-var-arrow-circle-o-up: \"\\f01b\";\n@fa-var-arrow-circle-right: \"\\f0a9\";\n@fa-var-arrow-circle-up: \"\\f0aa\";\n@fa-var-arrow-down: \"\\f063\";\n@fa-var-arrow-left: \"\\f060\";\n@fa-var-arrow-right: \"\\f061\";\n@fa-var-arrow-up: \"\\f062\";\n@fa-var-arrows: \"\\f047\";\n@fa-var-arrows-alt: \"\\f0b2\";\n@fa-var-arrows-h: \"\\f07e\";\n@fa-var-arrows-v: \"\\f07d\";\n@fa-var-asl-interpreting: \"\\f2a3\";\n@fa-var-assistive-listening-systems: \"\\f2a2\";\n@fa-var-asterisk: \"\\f069\";\n@fa-var-at: \"\\f1fa\";\n@fa-var-audio-description: \"\\f29e\";\n@fa-var-automobile: \"\\f1b9\";\n@fa-var-backward: \"\\f04a\";\n@fa-var-balance-scale: \"\\f24e\";\n@fa-var-ban: \"\\f05e\";\n@fa-var-bandcamp: \"\\f2d5\";\n@fa-var-bank: \"\\f19c\";\n@fa-var-bar-chart: \"\\f080\";\n@fa-var-bar-chart-o: \"\\f080\";\n@fa-var-barcode: \"\\f02a\";\n@fa-var-bars: \"\\f0c9\";\n@fa-var-bath: \"\\f2cd\";\n@fa-var-bathtub: \"\\f2cd\";\n@fa-var-battery: \"\\f240\";\n@fa-var-battery-0: \"\\f244\";\n@fa-var-battery-1: \"\\f243\";\n@fa-var-battery-2: \"\\f242\";\n@fa-var-battery-3: \"\\f241\";\n@fa-var-battery-4: \"\\f240\";\n@fa-var-battery-empty: \"\\f244\";\n@fa-var-battery-full: \"\\f240\";\n@fa-var-battery-half: \"\\f242\";\n@fa-var-battery-quarter: \"\\f243\";\n@fa-var-battery-three-quarters: \"\\f241\";\n@fa-var-bed: \"\\f236\";\n@fa-var-beer: \"\\f0fc\";\n@fa-var-behance: \"\\f1b4\";\n@fa-var-behance-square: \"\\f1b5\";\n@fa-var-bell: \"\\f0f3\";\n@fa-var-bell-o: \"\\f0a2\";\n@fa-var-bell-slash: \"\\f1f6\";\n@fa-var-bell-slash-o: \"\\f1f7\";\n@fa-var-bicycle: \"\\f206\";\n@fa-var-binoculars: \"\\f1e5\";\n@fa-var-birthday-cake: \"\\f1fd\";\n@fa-var-bitbucket: \"\\f171\";\n@fa-var-bitbucket-square: \"\\f172\";\n@fa-var-bitcoin: \"\\f15a\";\n@fa-var-black-tie: \"\\f27e\";\n@fa-var-blind: \"\\f29d\";\n@fa-var-bluetooth: \"\\f293\";\n@fa-var-bluetooth-b: \"\\f294\";\n@fa-var-bold: \"\\f032\";\n@fa-var-bolt: \"\\f0e7\";\n@fa-var-bomb: \"\\f1e2\";\n@fa-var-book: \"\\f02d\";\n@fa-var-bookmark: \"\\f02e\";\n@fa-var-bookmark-o: \"\\f097\";\n@fa-var-braille: \"\\f2a1\";\n@fa-var-briefcase: \"\\f0b1\";\n@fa-var-btc: \"\\f15a\";\n@fa-var-bug: \"\\f188\";\n@fa-var-building: \"\\f1ad\";\n@fa-var-building-o: \"\\f0f7\";\n@fa-var-bullhorn: \"\\f0a1\";\n@fa-var-bullseye: \"\\f140\";\n@fa-var-bus: \"\\f207\";\n@fa-var-buysellads: \"\\f20d\";\n@fa-var-cab: \"\\f1ba\";\n@fa-var-calculator: \"\\f1ec\";\n@fa-var-calendar: \"\\f073\";\n@fa-var-calendar-check-o: \"\\f274\";\n@fa-var-calendar-minus-o: \"\\f272\";\n@fa-var-calendar-o: \"\\f133\";\n@fa-var-calendar-plus-o: \"\\f271\";\n@fa-var-calendar-times-o: \"\\f273\";\n@fa-var-camera: \"\\f030\";\n@fa-var-camera-retro: \"\\f083\";\n@fa-var-car: \"\\f1b9\";\n@fa-var-caret-down: \"\\f0d7\";\n@fa-var-caret-left: \"\\f0d9\";\n@fa-var-caret-right: \"\\f0da\";\n@fa-var-caret-square-o-down: \"\\f150\";\n@fa-var-caret-square-o-left: \"\\f191\";\n@fa-var-caret-square-o-right: \"\\f152\";\n@fa-var-caret-square-o-up: \"\\f151\";\n@fa-var-caret-up: \"\\f0d8\";\n@fa-var-cart-arrow-down: \"\\f218\";\n@fa-var-cart-plus: \"\\f217\";\n@fa-var-cc: \"\\f20a\";\n@fa-var-cc-amex: \"\\f1f3\";\n@fa-var-cc-diners-club: \"\\f24c\";\n@fa-var-cc-discover: \"\\f1f2\";\n@fa-var-cc-jcb: \"\\f24b\";\n@fa-var-cc-mastercard: \"\\f1f1\";\n@fa-var-cc-paypal: \"\\f1f4\";\n@fa-var-cc-stripe: \"\\f1f5\";\n@fa-var-cc-visa: \"\\f1f0\";\n@fa-var-certificate: \"\\f0a3\";\n@fa-var-chain: \"\\f0c1\";\n@fa-var-chain-broken: \"\\f127\";\n@fa-var-check: \"\\f00c\";\n@fa-var-check-circle: \"\\f058\";\n@fa-var-check-circle-o: \"\\f05d\";\n@fa-var-check-square: \"\\f14a\";\n@fa-var-check-square-o: \"\\f046\";\n@fa-var-chevron-circle-down: \"\\f13a\";\n@fa-var-chevron-circle-left: \"\\f137\";\n@fa-var-chevron-circle-right: \"\\f138\";\n@fa-var-chevron-circle-up: \"\\f139\";\n@fa-var-chevron-down: \"\\f078\";\n@fa-var-chevron-left: \"\\f053\";\n@fa-var-chevron-right: \"\\f054\";\n@fa-var-chevron-up: \"\\f077\";\n@fa-var-child: \"\\f1ae\";\n@fa-var-chrome: \"\\f268\";\n@fa-var-circle: \"\\f111\";\n@fa-var-circle-o: \"\\f10c\";\n@fa-var-circle-o-notch: \"\\f1ce\";\n@fa-var-circle-thin: \"\\f1db\";\n@fa-var-clipboard: \"\\f0ea\";\n@fa-var-clock-o: \"\\f017\";\n@fa-var-clone: \"\\f24d\";\n@fa-var-close: \"\\f00d\";\n@fa-var-cloud: \"\\f0c2\";\n@fa-var-cloud-download: \"\\f0ed\";\n@fa-var-cloud-upload: \"\\f0ee\";\n@fa-var-cny: \"\\f157\";\n@fa-var-code: \"\\f121\";\n@fa-var-code-fork: \"\\f126\";\n@fa-var-codepen: \"\\f1cb\";\n@fa-var-codiepie: \"\\f284\";\n@fa-var-coffee: \"\\f0f4\";\n@fa-var-cog: \"\\f013\";\n@fa-var-cogs: \"\\f085\";\n@fa-var-columns: \"\\f0db\";\n@fa-var-comment: \"\\f075\";\n@fa-var-comment-o: \"\\f0e5\";\n@fa-var-commenting: \"\\f27a\";\n@fa-var-commenting-o: \"\\f27b\";\n@fa-var-comments: \"\\f086\";\n@fa-var-comments-o: \"\\f0e6\";\n@fa-var-compass: \"\\f14e\";\n@fa-var-compress: \"\\f066\";\n@fa-var-connectdevelop: \"\\f20e\";\n@fa-var-contao: \"\\f26d\";\n@fa-var-copy: \"\\f0c5\";\n@fa-var-copyright: \"\\f1f9\";\n@fa-var-creative-commons: \"\\f25e\";\n@fa-var-credit-card: \"\\f09d\";\n@fa-var-credit-card-alt: \"\\f283\";\n@fa-var-crop: \"\\f125\";\n@fa-var-crosshairs: \"\\f05b\";\n@fa-var-css3: \"\\f13c\";\n@fa-var-cube: \"\\f1b2\";\n@fa-var-cubes: \"\\f1b3\";\n@fa-var-cut: \"\\f0c4\";\n@fa-var-cutlery: \"\\f0f5\";\n@fa-var-dashboard: \"\\f0e4\";\n@fa-var-dashcube: \"\\f210\";\n@fa-var-database: \"\\f1c0\";\n@fa-var-deaf: \"\\f2a4\";\n@fa-var-deafness: \"\\f2a4\";\n@fa-var-dedent: \"\\f03b\";\n@fa-var-delicious: \"\\f1a5\";\n@fa-var-desktop: \"\\f108\";\n@fa-var-deviantart: \"\\f1bd\";\n@fa-var-diamond: \"\\f219\";\n@fa-var-digg: \"\\f1a6\";\n@fa-var-dollar: \"\\f155\";\n@fa-var-dot-circle-o: \"\\f192\";\n@fa-var-download: \"\\f019\";\n@fa-var-dribbble: \"\\f17d\";\n@fa-var-drivers-license: \"\\f2c2\";\n@fa-var-drivers-license-o: \"\\f2c3\";\n@fa-var-dropbox: \"\\f16b\";\n@fa-var-drupal: \"\\f1a9\";\n@fa-var-edge: \"\\f282\";\n@fa-var-edit: \"\\f044\";\n@fa-var-eercast: \"\\f2da\";\n@fa-var-eject: \"\\f052\";\n@fa-var-ellipsis-h: \"\\f141\";\n@fa-var-ellipsis-v: \"\\f142\";\n@fa-var-empire: \"\\f1d1\";\n@fa-var-envelope: \"\\f0e0\";\n@fa-var-envelope-o: \"\\f003\";\n@fa-var-envelope-open: \"\\f2b6\";\n@fa-var-envelope-open-o: \"\\f2b7\";\n@fa-var-envelope-square: \"\\f199\";\n@fa-var-envira: \"\\f299\";\n@fa-var-eraser: \"\\f12d\";\n@fa-var-etsy: \"\\f2d7\";\n@fa-var-eur: \"\\f153\";\n@fa-var-euro: \"\\f153\";\n@fa-var-exchange: \"\\f0ec\";\n@fa-var-exclamation: \"\\f12a\";\n@fa-var-exclamation-circle: \"\\f06a\";\n@fa-var-exclamation-triangle: \"\\f071\";\n@fa-var-expand: \"\\f065\";\n@fa-var-expeditedssl: \"\\f23e\";\n@fa-var-external-link: \"\\f08e\";\n@fa-var-external-link-square: \"\\f14c\";\n@fa-var-eye: \"\\f06e\";\n@fa-var-eye-slash: \"\\f070\";\n@fa-var-eyedropper: \"\\f1fb\";\n@fa-var-fa: \"\\f2b4\";\n@fa-var-facebook: \"\\f09a\";\n@fa-var-facebook-f: \"\\f09a\";\n@fa-var-facebook-official: \"\\f230\";\n@fa-var-facebook-square: \"\\f082\";\n@fa-var-fast-backward: \"\\f049\";\n@fa-var-fast-forward: \"\\f050\";\n@fa-var-fax: \"\\f1ac\";\n@fa-var-feed: \"\\f09e\";\n@fa-var-female: \"\\f182\";\n@fa-var-fighter-jet: \"\\f0fb\";\n@fa-var-file: \"\\f15b\";\n@fa-var-file-archive-o: \"\\f1c6\";\n@fa-var-file-audio-o: \"\\f1c7\";\n@fa-var-file-code-o: \"\\f1c9\";\n@fa-var-file-excel-o: \"\\f1c3\";\n@fa-var-file-image-o: \"\\f1c5\";\n@fa-var-file-movie-o: \"\\f1c8\";\n@fa-var-file-o: \"\\f016\";\n@fa-var-file-pdf-o: \"\\f1c1\";\n@fa-var-file-photo-o: \"\\f1c5\";\n@fa-var-file-picture-o: \"\\f1c5\";\n@fa-var-file-powerpoint-o: \"\\f1c4\";\n@fa-var-file-sound-o: \"\\f1c7\";\n@fa-var-file-text: \"\\f15c\";\n@fa-var-file-text-o: \"\\f0f6\";\n@fa-var-file-video-o: \"\\f1c8\";\n@fa-var-file-word-o: \"\\f1c2\";\n@fa-var-file-zip-o: \"\\f1c6\";\n@fa-var-files-o: \"\\f0c5\";\n@fa-var-film: \"\\f008\";\n@fa-var-filter: \"\\f0b0\";\n@fa-var-fire: \"\\f06d\";\n@fa-var-fire-extinguisher: \"\\f134\";\n@fa-var-firefox: \"\\f269\";\n@fa-var-first-order: \"\\f2b0\";\n@fa-var-flag: \"\\f024\";\n@fa-var-flag-checkered: \"\\f11e\";\n@fa-var-flag-o: \"\\f11d\";\n@fa-var-flash: \"\\f0e7\";\n@fa-var-flask: \"\\f0c3\";\n@fa-var-flickr: \"\\f16e\";\n@fa-var-floppy-o: \"\\f0c7\";\n@fa-var-folder: \"\\f07b\";\n@fa-var-folder-o: \"\\f114\";\n@fa-var-folder-open: \"\\f07c\";\n@fa-var-folder-open-o: \"\\f115\";\n@fa-var-font: \"\\f031\";\n@fa-var-font-awesome: \"\\f2b4\";\n@fa-var-fonticons: \"\\f280\";\n@fa-var-fort-awesome: \"\\f286\";\n@fa-var-forumbee: \"\\f211\";\n@fa-var-forward: \"\\f04e\";\n@fa-var-foursquare: \"\\f180\";\n@fa-var-free-code-camp: \"\\f2c5\";\n@fa-var-frown-o: \"\\f119\";\n@fa-var-futbol-o: \"\\f1e3\";\n@fa-var-gamepad: \"\\f11b\";\n@fa-var-gavel: \"\\f0e3\";\n@fa-var-gbp: \"\\f154\";\n@fa-var-ge: \"\\f1d1\";\n@fa-var-gear: \"\\f013\";\n@fa-var-gears: \"\\f085\";\n@fa-var-genderless: \"\\f22d\";\n@fa-var-get-pocket: \"\\f265\";\n@fa-var-gg: \"\\f260\";\n@fa-var-gg-circle: \"\\f261\";\n@fa-var-gift: \"\\f06b\";\n@fa-var-git: \"\\f1d3\";\n@fa-var-git-square: \"\\f1d2\";\n@fa-var-github: \"\\f09b\";\n@fa-var-github-alt: \"\\f113\";\n@fa-var-github-square: \"\\f092\";\n@fa-var-gitlab: \"\\f296\";\n@fa-var-gittip: \"\\f184\";\n@fa-var-glass: \"\\f000\";\n@fa-var-glide: \"\\f2a5\";\n@fa-var-glide-g: \"\\f2a6\";\n@fa-var-globe: \"\\f0ac\";\n@fa-var-google: \"\\f1a0\";\n@fa-var-google-plus: \"\\f0d5\";\n@fa-var-google-plus-circle: \"\\f2b3\";\n@fa-var-google-plus-official: \"\\f2b3\";\n@fa-var-google-plus-square: \"\\f0d4\";\n@fa-var-google-wallet: \"\\f1ee\";\n@fa-var-graduation-cap: \"\\f19d\";\n@fa-var-gratipay: \"\\f184\";\n@fa-var-grav: \"\\f2d6\";\n@fa-var-group: \"\\f0c0\";\n@fa-var-h-square: \"\\f0fd\";\n@fa-var-hacker-news: \"\\f1d4\";\n@fa-var-hand-grab-o: \"\\f255\";\n@fa-var-hand-lizard-o: \"\\f258\";\n@fa-var-hand-o-down: \"\\f0a7\";\n@fa-var-hand-o-left: \"\\f0a5\";\n@fa-var-hand-o-right: \"\\f0a4\";\n@fa-var-hand-o-up: \"\\f0a6\";\n@fa-var-hand-paper-o: \"\\f256\";\n@fa-var-hand-peace-o: \"\\f25b\";\n@fa-var-hand-pointer-o: \"\\f25a\";\n@fa-var-hand-rock-o: \"\\f255\";\n@fa-var-hand-scissors-o: \"\\f257\";\n@fa-var-hand-spock-o: \"\\f259\";\n@fa-var-hand-stop-o: \"\\f256\";\n@fa-var-handshake-o: \"\\f2b5\";\n@fa-var-hard-of-hearing: \"\\f2a4\";\n@fa-var-hashtag: \"\\f292\";\n@fa-var-hdd-o: \"\\f0a0\";\n@fa-var-header: \"\\f1dc\";\n@fa-var-headphones: \"\\f025\";\n@fa-var-heart: \"\\f004\";\n@fa-var-heart-o: \"\\f08a\";\n@fa-var-heartbeat: \"\\f21e\";\n@fa-var-history: \"\\f1da\";\n@fa-var-home: \"\\f015\";\n@fa-var-hospital-o: \"\\f0f8\";\n@fa-var-hotel: \"\\f236\";\n@fa-var-hourglass: \"\\f254\";\n@fa-var-hourglass-1: \"\\f251\";\n@fa-var-hourglass-2: \"\\f252\";\n@fa-var-hourglass-3: \"\\f253\";\n@fa-var-hourglass-end: \"\\f253\";\n@fa-var-hourglass-half: \"\\f252\";\n@fa-var-hourglass-o: \"\\f250\";\n@fa-var-hourglass-start: \"\\f251\";\n@fa-var-houzz: \"\\f27c\";\n@fa-var-html5: \"\\f13b\";\n@fa-var-i-cursor: \"\\f246\";\n@fa-var-id-badge: \"\\f2c1\";\n@fa-var-id-card: \"\\f2c2\";\n@fa-var-id-card-o: \"\\f2c3\";\n@fa-var-ils: \"\\f20b\";\n@fa-var-image: \"\\f03e\";\n@fa-var-imdb: \"\\f2d8\";\n@fa-var-inbox: \"\\f01c\";\n@fa-var-indent: \"\\f03c\";\n@fa-var-industry: \"\\f275\";\n@fa-var-info: \"\\f129\";\n@fa-var-info-circle: \"\\f05a\";\n@fa-var-inr: \"\\f156\";\n@fa-var-instagram: \"\\f16d\";\n@fa-var-institution: \"\\f19c\";\n@fa-var-internet-explorer: \"\\f26b\";\n@fa-var-intersex: \"\\f224\";\n@fa-var-ioxhost: \"\\f208\";\n@fa-var-italic: \"\\f033\";\n@fa-var-joomla: \"\\f1aa\";\n@fa-var-jpy: \"\\f157\";\n@fa-var-jsfiddle: \"\\f1cc\";\n@fa-var-key: \"\\f084\";\n@fa-var-keyboard-o: \"\\f11c\";\n@fa-var-krw: \"\\f159\";\n@fa-var-language: \"\\f1ab\";\n@fa-var-laptop: \"\\f109\";\n@fa-var-lastfm: \"\\f202\";\n@fa-var-lastfm-square: \"\\f203\";\n@fa-var-leaf: \"\\f06c\";\n@fa-var-leanpub: \"\\f212\";\n@fa-var-legal: \"\\f0e3\";\n@fa-var-lemon-o: \"\\f094\";\n@fa-var-level-down: \"\\f149\";\n@fa-var-level-up: \"\\f148\";\n@fa-var-life-bouy: \"\\f1cd\";\n@fa-var-life-buoy: \"\\f1cd\";\n@fa-var-life-ring: \"\\f1cd\";\n@fa-var-life-saver: \"\\f1cd\";\n@fa-var-lightbulb-o: \"\\f0eb\";\n@fa-var-line-chart: \"\\f201\";\n@fa-var-link: \"\\f0c1\";\n@fa-var-linkedin: \"\\f0e1\";\n@fa-var-linkedin-square: \"\\f08c\";\n@fa-var-linode: \"\\f2b8\";\n@fa-var-linux: \"\\f17c\";\n@fa-var-list: \"\\f03a\";\n@fa-var-list-alt: \"\\f022\";\n@fa-var-list-ol: \"\\f0cb\";\n@fa-var-list-ul: \"\\f0ca\";\n@fa-var-location-arrow: \"\\f124\";\n@fa-var-lock: \"\\f023\";\n@fa-var-long-arrow-down: \"\\f175\";\n@fa-var-long-arrow-left: \"\\f177\";\n@fa-var-long-arrow-right: \"\\f178\";\n@fa-var-long-arrow-up: \"\\f176\";\n@fa-var-low-vision: \"\\f2a8\";\n@fa-var-magic: \"\\f0d0\";\n@fa-var-magnet: \"\\f076\";\n@fa-var-mail-forward: \"\\f064\";\n@fa-var-mail-reply: \"\\f112\";\n@fa-var-mail-reply-all: \"\\f122\";\n@fa-var-male: \"\\f183\";\n@fa-var-map: \"\\f279\";\n@fa-var-map-marker: \"\\f041\";\n@fa-var-map-o: \"\\f278\";\n@fa-var-map-pin: \"\\f276\";\n@fa-var-map-signs: \"\\f277\";\n@fa-var-mars: \"\\f222\";\n@fa-var-mars-double: \"\\f227\";\n@fa-var-mars-stroke: \"\\f229\";\n@fa-var-mars-stroke-h: \"\\f22b\";\n@fa-var-mars-stroke-v: \"\\f22a\";\n@fa-var-maxcdn: \"\\f136\";\n@fa-var-meanpath: \"\\f20c\";\n@fa-var-medium: \"\\f23a\";\n@fa-var-medkit: \"\\f0fa\";\n@fa-var-meetup: \"\\f2e0\";\n@fa-var-meh-o: \"\\f11a\";\n@fa-var-mercury: \"\\f223\";\n@fa-var-microchip: \"\\f2db\";\n@fa-var-microphone: \"\\f130\";\n@fa-var-microphone-slash: \"\\f131\";\n@fa-var-minus: \"\\f068\";\n@fa-var-minus-circle: \"\\f056\";\n@fa-var-minus-square: \"\\f146\";\n@fa-var-minus-square-o: \"\\f147\";\n@fa-var-mixcloud: \"\\f289\";\n@fa-var-mobile: \"\\f10b\";\n@fa-var-mobile-phone: \"\\f10b\";\n@fa-var-modx: \"\\f285\";\n@fa-var-money: \"\\f0d6\";\n@fa-var-moon-o: \"\\f186\";\n@fa-var-mortar-board: \"\\f19d\";\n@fa-var-motorcycle: \"\\f21c\";\n@fa-var-mouse-pointer: \"\\f245\";\n@fa-var-music: \"\\f001\";\n@fa-var-navicon: \"\\f0c9\";\n@fa-var-neuter: \"\\f22c\";\n@fa-var-newspaper-o: \"\\f1ea\";\n@fa-var-object-group: \"\\f247\";\n@fa-var-object-ungroup: \"\\f248\";\n@fa-var-odnoklassniki: \"\\f263\";\n@fa-var-odnoklassniki-square: \"\\f264\";\n@fa-var-opencart: \"\\f23d\";\n@fa-var-openid: \"\\f19b\";\n@fa-var-opera: \"\\f26a\";\n@fa-var-optin-monster: \"\\f23c\";\n@fa-var-outdent: \"\\f03b\";\n@fa-var-pagelines: \"\\f18c\";\n@fa-var-paint-brush: \"\\f1fc\";\n@fa-var-paper-plane: \"\\f1d8\";\n@fa-var-paper-plane-o: \"\\f1d9\";\n@fa-var-paperclip: \"\\f0c6\";\n@fa-var-paragraph: \"\\f1dd\";\n@fa-var-paste: \"\\f0ea\";\n@fa-var-pause: \"\\f04c\";\n@fa-var-pause-circle: \"\\f28b\";\n@fa-var-pause-circle-o: \"\\f28c\";\n@fa-var-paw: \"\\f1b0\";\n@fa-var-paypal: \"\\f1ed\";\n@fa-var-pencil: \"\\f040\";\n@fa-var-pencil-square: \"\\f14b\";\n@fa-var-pencil-square-o: \"\\f044\";\n@fa-var-percent: \"\\f295\";\n@fa-var-phone: \"\\f095\";\n@fa-var-phone-square: \"\\f098\";\n@fa-var-photo: \"\\f03e\";\n@fa-var-picture-o: \"\\f03e\";\n@fa-var-pie-chart: \"\\f200\";\n@fa-var-pied-piper: \"\\f2ae\";\n@fa-var-pied-piper-alt: \"\\f1a8\";\n@fa-var-pied-piper-pp: \"\\f1a7\";\n@fa-var-pinterest: \"\\f0d2\";\n@fa-var-pinterest-p: \"\\f231\";\n@fa-var-pinterest-square: \"\\f0d3\";\n@fa-var-plane: \"\\f072\";\n@fa-var-play: \"\\f04b\";\n@fa-var-play-circle: \"\\f144\";\n@fa-var-play-circle-o: \"\\f01d\";\n@fa-var-plug: \"\\f1e6\";\n@fa-var-plus: \"\\f067\";\n@fa-var-plus-circle: \"\\f055\";\n@fa-var-plus-square: \"\\f0fe\";\n@fa-var-plus-square-o: \"\\f196\";\n@fa-var-podcast: \"\\f2ce\";\n@fa-var-power-off: \"\\f011\";\n@fa-var-print: \"\\f02f\";\n@fa-var-product-hunt: \"\\f288\";\n@fa-var-puzzle-piece: \"\\f12e\";\n@fa-var-qq: \"\\f1d6\";\n@fa-var-qrcode: \"\\f029\";\n@fa-var-question: \"\\f128\";\n@fa-var-question-circle: \"\\f059\";\n@fa-var-question-circle-o: \"\\f29c\";\n@fa-var-quora: \"\\f2c4\";\n@fa-var-quote-left: \"\\f10d\";\n@fa-var-quote-right: \"\\f10e\";\n@fa-var-ra: \"\\f1d0\";\n@fa-var-random: \"\\f074\";\n@fa-var-ravelry: \"\\f2d9\";\n@fa-var-rebel: \"\\f1d0\";\n@fa-var-recycle: \"\\f1b8\";\n@fa-var-reddit: \"\\f1a1\";\n@fa-var-reddit-alien: \"\\f281\";\n@fa-var-reddit-square: \"\\f1a2\";\n@fa-var-refresh: \"\\f021\";\n@fa-var-registered: \"\\f25d\";\n@fa-var-remove: \"\\f00d\";\n@fa-var-renren: \"\\f18b\";\n@fa-var-reorder: \"\\f0c9\";\n@fa-var-repeat: \"\\f01e\";\n@fa-var-reply: \"\\f112\";\n@fa-var-reply-all: \"\\f122\";\n@fa-var-resistance: \"\\f1d0\";\n@fa-var-retweet: \"\\f079\";\n@fa-var-rmb: \"\\f157\";\n@fa-var-road: \"\\f018\";\n@fa-var-rocket: \"\\f135\";\n@fa-var-rotate-left: \"\\f0e2\";\n@fa-var-rotate-right: \"\\f01e\";\n@fa-var-rouble: \"\\f158\";\n@fa-var-rss: \"\\f09e\";\n@fa-var-rss-square: \"\\f143\";\n@fa-var-rub: \"\\f158\";\n@fa-var-ruble: \"\\f158\";\n@fa-var-rupee: \"\\f156\";\n@fa-var-s15: \"\\f2cd\";\n@fa-var-safari: \"\\f267\";\n@fa-var-save: \"\\f0c7\";\n@fa-var-scissors: \"\\f0c4\";\n@fa-var-scribd: \"\\f28a\";\n@fa-var-search: \"\\f002\";\n@fa-var-search-minus: \"\\f010\";\n@fa-var-search-plus: \"\\f00e\";\n@fa-var-sellsy: \"\\f213\";\n@fa-var-send: \"\\f1d8\";\n@fa-var-send-o: \"\\f1d9\";\n@fa-var-server: \"\\f233\";\n@fa-var-share: \"\\f064\";\n@fa-var-share-alt: \"\\f1e0\";\n@fa-var-share-alt-square: \"\\f1e1\";\n@fa-var-share-square: \"\\f14d\";\n@fa-var-share-square-o: \"\\f045\";\n@fa-var-shekel: \"\\f20b\";\n@fa-var-sheqel: \"\\f20b\";\n@fa-var-shield: \"\\f132\";\n@fa-var-ship: \"\\f21a\";\n@fa-var-shirtsinbulk: \"\\f214\";\n@fa-var-shopping-bag: \"\\f290\";\n@fa-var-shopping-basket: \"\\f291\";\n@fa-var-shopping-cart: \"\\f07a\";\n@fa-var-shower: \"\\f2cc\";\n@fa-var-sign-in: \"\\f090\";\n@fa-var-sign-language: \"\\f2a7\";\n@fa-var-sign-out: \"\\f08b\";\n@fa-var-signal: \"\\f012\";\n@fa-var-signing: \"\\f2a7\";\n@fa-var-simplybuilt: \"\\f215\";\n@fa-var-sitemap: \"\\f0e8\";\n@fa-var-skyatlas: \"\\f216\";\n@fa-var-skype: \"\\f17e\";\n@fa-var-slack: \"\\f198\";\n@fa-var-sliders: \"\\f1de\";\n@fa-var-slideshare: \"\\f1e7\";\n@fa-var-smile-o: \"\\f118\";\n@fa-var-snapchat: \"\\f2ab\";\n@fa-var-snapchat-ghost: \"\\f2ac\";\n@fa-var-snapchat-square: \"\\f2ad\";\n@fa-var-snowflake-o: \"\\f2dc\";\n@fa-var-soccer-ball-o: \"\\f1e3\";\n@fa-var-sort: \"\\f0dc\";\n@fa-var-sort-alpha-asc: \"\\f15d\";\n@fa-var-sort-alpha-desc: \"\\f15e\";\n@fa-var-sort-amount-asc: \"\\f160\";\n@fa-var-sort-amount-desc: \"\\f161\";\n@fa-var-sort-asc: \"\\f0de\";\n@fa-var-sort-desc: \"\\f0dd\";\n@fa-var-sort-down: \"\\f0dd\";\n@fa-var-sort-numeric-asc: \"\\f162\";\n@fa-var-sort-numeric-desc: \"\\f163\";\n@fa-var-sort-up: \"\\f0de\";\n@fa-var-soundcloud: \"\\f1be\";\n@fa-var-space-shuttle: \"\\f197\";\n@fa-var-spinner: \"\\f110\";\n@fa-var-spoon: \"\\f1b1\";\n@fa-var-spotify: \"\\f1bc\";\n@fa-var-square: \"\\f0c8\";\n@fa-var-square-o: \"\\f096\";\n@fa-var-stack-exchange: \"\\f18d\";\n@fa-var-stack-overflow: \"\\f16c\";\n@fa-var-star: \"\\f005\";\n@fa-var-star-half: \"\\f089\";\n@fa-var-star-half-empty: \"\\f123\";\n@fa-var-star-half-full: \"\\f123\";\n@fa-var-star-half-o: \"\\f123\";\n@fa-var-star-o: \"\\f006\";\n@fa-var-steam: \"\\f1b6\";\n@fa-var-steam-square: \"\\f1b7\";\n@fa-var-step-backward: \"\\f048\";\n@fa-var-step-forward: \"\\f051\";\n@fa-var-stethoscope: \"\\f0f1\";\n@fa-var-sticky-note: \"\\f249\";\n@fa-var-sticky-note-o: \"\\f24a\";\n@fa-var-stop: \"\\f04d\";\n@fa-var-stop-circle: \"\\f28d\";\n@fa-var-stop-circle-o: \"\\f28e\";\n@fa-var-street-view: \"\\f21d\";\n@fa-var-strikethrough: \"\\f0cc\";\n@fa-var-stumbleupon: \"\\f1a4\";\n@fa-var-stumbleupon-circle: \"\\f1a3\";\n@fa-var-subscript: \"\\f12c\";\n@fa-var-subway: \"\\f239\";\n@fa-var-suitcase: \"\\f0f2\";\n@fa-var-sun-o: \"\\f185\";\n@fa-var-superpowers: \"\\f2dd\";\n@fa-var-superscript: \"\\f12b\";\n@fa-var-support: \"\\f1cd\";\n@fa-var-table: \"\\f0ce\";\n@fa-var-tablet: \"\\f10a\";\n@fa-var-tachometer: \"\\f0e4\";\n@fa-var-tag: \"\\f02b\";\n@fa-var-tags: \"\\f02c\";\n@fa-var-tasks: \"\\f0ae\";\n@fa-var-taxi: \"\\f1ba\";\n@fa-var-telegram: \"\\f2c6\";\n@fa-var-television: \"\\f26c\";\n@fa-var-tencent-weibo: \"\\f1d5\";\n@fa-var-terminal: \"\\f120\";\n@fa-var-text-height: \"\\f034\";\n@fa-var-text-width: \"\\f035\";\n@fa-var-th: \"\\f00a\";\n@fa-var-th-large: \"\\f009\";\n@fa-var-th-list: \"\\f00b\";\n@fa-var-themeisle: \"\\f2b2\";\n@fa-var-thermometer: \"\\f2c7\";\n@fa-var-thermometer-0: \"\\f2cb\";\n@fa-var-thermometer-1: \"\\f2ca\";\n@fa-var-thermometer-2: \"\\f2c9\";\n@fa-var-thermometer-3: \"\\f2c8\";\n@fa-var-thermometer-4: \"\\f2c7\";\n@fa-var-thermometer-empty: \"\\f2cb\";\n@fa-var-thermometer-full: \"\\f2c7\";\n@fa-var-thermometer-half: \"\\f2c9\";\n@fa-var-thermometer-quarter: \"\\f2ca\";\n@fa-var-thermometer-three-quarters: \"\\f2c8\";\n@fa-var-thumb-tack: \"\\f08d\";\n@fa-var-thumbs-down: \"\\f165\";\n@fa-var-thumbs-o-down: \"\\f088\";\n@fa-var-thumbs-o-up: \"\\f087\";\n@fa-var-thumbs-up: \"\\f164\";\n@fa-var-ticket: \"\\f145\";\n@fa-var-times: \"\\f00d\";\n@fa-var-times-circle: \"\\f057\";\n@fa-var-times-circle-o: \"\\f05c\";\n@fa-var-times-rectangle: \"\\f2d3\";\n@fa-var-times-rectangle-o: \"\\f2d4\";\n@fa-var-tint: \"\\f043\";\n@fa-var-toggle-down: \"\\f150\";\n@fa-var-toggle-left: \"\\f191\";\n@fa-var-toggle-off: \"\\f204\";\n@fa-var-toggle-on: \"\\f205\";\n@fa-var-toggle-right: \"\\f152\";\n@fa-var-toggle-up: \"\\f151\";\n@fa-var-trademark: \"\\f25c\";\n@fa-var-train: \"\\f238\";\n@fa-var-transgender: \"\\f224\";\n@fa-var-transgender-alt: \"\\f225\";\n@fa-var-trash: \"\\f1f8\";\n@fa-var-trash-o: \"\\f014\";\n@fa-var-tree: \"\\f1bb\";\n@fa-var-trello: \"\\f181\";\n@fa-var-tripadvisor: \"\\f262\";\n@fa-var-trophy: \"\\f091\";\n@fa-var-truck: \"\\f0d1\";\n@fa-var-try: \"\\f195\";\n@fa-var-tty: \"\\f1e4\";\n@fa-var-tumblr: \"\\f173\";\n@fa-var-tumblr-square: \"\\f174\";\n@fa-var-turkish-lira: \"\\f195\";\n@fa-var-tv: \"\\f26c\";\n@fa-var-twitch: \"\\f1e8\";\n@fa-var-twitter: \"\\f099\";\n@fa-var-twitter-square: \"\\f081\";\n@fa-var-umbrella: \"\\f0e9\";\n@fa-var-underline: \"\\f0cd\";\n@fa-var-undo: \"\\f0e2\";\n@fa-var-universal-access: \"\\f29a\";\n@fa-var-university: \"\\f19c\";\n@fa-var-unlink: \"\\f127\";\n@fa-var-unlock: \"\\f09c\";\n@fa-var-unlock-alt: \"\\f13e\";\n@fa-var-unsorted: \"\\f0dc\";\n@fa-var-upload: \"\\f093\";\n@fa-var-usb: \"\\f287\";\n@fa-var-usd: \"\\f155\";\n@fa-var-user: \"\\f007\";\n@fa-var-user-circle: \"\\f2bd\";\n@fa-var-user-circle-o: \"\\f2be\";\n@fa-var-user-md: \"\\f0f0\";\n@fa-var-user-o: \"\\f2c0\";\n@fa-var-user-plus: \"\\f234\";\n@fa-var-user-secret: \"\\f21b\";\n@fa-var-user-times: \"\\f235\";\n@fa-var-users: \"\\f0c0\";\n@fa-var-vcard: \"\\f2bb\";\n@fa-var-vcard-o: \"\\f2bc\";\n@fa-var-venus: \"\\f221\";\n@fa-var-venus-double: \"\\f226\";\n@fa-var-venus-mars: \"\\f228\";\n@fa-var-viacoin: \"\\f237\";\n@fa-var-viadeo: \"\\f2a9\";\n@fa-var-viadeo-square: \"\\f2aa\";\n@fa-var-video-camera: \"\\f03d\";\n@fa-var-vimeo: \"\\f27d\";\n@fa-var-vimeo-square: \"\\f194\";\n@fa-var-vine: \"\\f1ca\";\n@fa-var-vk: \"\\f189\";\n@fa-var-volume-control-phone: \"\\f2a0\";\n@fa-var-volume-down: \"\\f027\";\n@fa-var-volume-off: \"\\f026\";\n@fa-var-volume-up: \"\\f028\";\n@fa-var-warning: \"\\f071\";\n@fa-var-wechat: \"\\f1d7\";\n@fa-var-weibo: \"\\f18a\";\n@fa-var-weixin: \"\\f1d7\";\n@fa-var-whatsapp: \"\\f232\";\n@fa-var-wheelchair: \"\\f193\";\n@fa-var-wheelchair-alt: \"\\f29b\";\n@fa-var-wifi: \"\\f1eb\";\n@fa-var-wikipedia-w: \"\\f266\";\n@fa-var-window-close: \"\\f2d3\";\n@fa-var-window-close-o: \"\\f2d4\";\n@fa-var-window-maximize: \"\\f2d0\";\n@fa-var-window-minimize: \"\\f2d1\";\n@fa-var-window-restore: \"\\f2d2\";\n@fa-var-windows: \"\\f17a\";\n@fa-var-won: \"\\f159\";\n@fa-var-wordpress: \"\\f19a\";\n@fa-var-wpbeginner: \"\\f297\";\n@fa-var-wpexplorer: \"\\f2de\";\n@fa-var-wpforms: \"\\f298\";\n@fa-var-wrench: \"\\f0ad\";\n@fa-var-xing: \"\\f168\";\n@fa-var-xing-square: \"\\f169\";\n@fa-var-y-combinator: \"\\f23b\";\n@fa-var-y-combinator-square: \"\\f1d4\";\n@fa-var-yahoo: \"\\f19e\";\n@fa-var-yc: \"\\f23b\";\n@fa-var-yc-square: \"\\f1d4\";\n@fa-var-yelp: \"\\f1e9\";\n@fa-var-yen: \"\\f157\";\n@fa-var-yoast: \"\\f2b1\";\n@fa-var-youtube: \"\\f167\";\n@fa-var-youtube-play: \"\\f16a\";\n@fa-var-youtube-square: \"\\f166\";\n\n","// Screen Readers\n// -------------------------\n\n.sr-only { .sr-only(); }\n.sr-only-focusable { .sr-only-focusable(); }\n","//\n// Patternfly Mixins\n// --------------------------------------------------\n// PatternFly-specific mixins\n\n// Patternfly button variants.\n.button-variant(@color; @background; @background-image-start; @background-image-stop; @border) {\n  background-color: @background;\n  #gradient > .vertical(@background-image-start, @background-image-stop);\n  border-color: @border;\n  color: @color;\n\n  &:hover,\n  &:focus,\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-color: @background;\n    background-image: none;\n    border-color: @border;\n    color: @color;\n  }\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-image: none;\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: darken(@background, 5%);\n          border-color: darken(@border, 7%);\n    }\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &,\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      background-color: @background;\n      border-color: @border;\n    }\n  }\n}\n\n// SASS CONVERSION FIX.\n// Allows inclusion of sr-only rules in nested media queries where @extends .sr-only\n// will not work.\n.sr-only-pf() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n\n.tab-indicator(@background: @gray-light-pf, @left: 15px, @right: 15px) {\n  &:before {\n    background: @background;\n    bottom: -1px;\n    content: \"\";\n    display: block;\n    height: 2px;\n    left: @left;\n    position: absolute;\n    right: @right;\n  }\n}\n\n// Ellipse overflow text\n.text-overflow-pf {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  word-wrap: normal;\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n.alert {\n  border-width: 1px;\n  padding-left: 47px;\n  padding-right: (@alert-padding + 3);\n  position: relative;\n  word-wrap: break-word;\n  .alert-link {\n    color: @link-color;\n    &:hover {\n      color: @link-hover-color;\n    }\n  }\n  > .btn.pull-right {\n    margin-top: -3px;\n  }\n  > .pficon {\n    font-size: 22px;\n    position: absolute;\n    left: 13px;\n    top: 10px;\n  }\n  .close {\n    .opacity(.85);\n    &:hover,\n    &:focus {\n      .opacity(1);\n    }\n  }\n  .pficon-info {\n    color: @color-pf-black-700;\n  }\n}\n\n.alert-dismissable {\n  padding-right: (@alert-padding + 17);\n  .close {\n    right: -13px;\n    top: 1px;\n  }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n.badge {\n  margin-left: 6px;\n}\n\n.nav-pills > li > a > .badge {\n  margin-left: 6px;\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n.breadcrumb {\n  padding-left: 0;\n  > .active strong {\n    font-weight: 600;\n  }\n  > li {\n      display: inline; /* IE8 */\n      + li:before {\n      color: @gray-light;\n      content: @fa-var-angle-right;\n      font-family: @icon-font-name-fa;\n      font-size: (@font-size-base - 1);\n      padding: 0 9px 0 7px;\n    }\n  }\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n.btn {\n  .box-shadow(0 2px 3px fade(@color-pf-black, 10%));\n  &:active {\n    .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    background-color: @color-pf-black-100 !important;\n    background-image: none !important;\n    border-color: @color-pf-black-300 !important;\n    color: @color-pf-black-500 !important;\n    opacity: 1;\n    &:active {\n      .box-shadow(none);\n    }\n    &.btn-link {\n      background-color: transparent !important;\n      border: 0;\n    }\n  }\n}\n\n.btn-danger {\n  .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-bg-img-start; @btn-danger-bg-img-stop; @btn-danger-border);\n}\n\n.btn-default {\n  .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n}\n\n.btn-link {\n  &,\n  &:active {\n    .box-shadow(none);\n  }\n}\n\n.btn-primary {\n  .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-bg-img-start; @btn-primary-bg-img-stop; @btn-primary-border);\n}\n\n.btn-xs,\n.btn-group-xs .btn {\n  font-weight: @btn-xs-font-weight;\n}\n","//\n// Dropdowns\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n// Modified to use Font Awesome's angle-down icon\n.caret {\n  font-family: @icon-font-name-fa;\n  font-weight: normal;\n  height: (@font-size-base - 3);\n  position: relative;\n  vertical-align: baseline;\n  width: @font-size-base;\n  &:before {\n    bottom: 0;\n    content: @fa-var-angle-down;\n    left: 0;\n    line-height: @font-size-base;\n    position: absolute;\n    text-align: center;\n    top: -1px;\n    right: 0;\n  }\n  .dropup & {\n    &:before {\n      content: @fa-var-angle-up;\n    }\n  }\n}\n\n// Bootstrap removes the focus ring on dropdowns; this replaces it for better accessibility\n.dropdown-toggle:focus {\n  .tab-focus();\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n  // Dividers (basically an hr) within the dropdown\n  .divider {\n    .nav-divider(@dropdown-divider-bg, @dropdown-divider-margin);\n  }\n  // Links within the dropdown menu\n  > li > a {\n    border-color: transparent;\n    border-style: solid;\n    border-width: 1px 0;\n    padding: 1px 10px;\n  }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n  &:hover,\n  &:focus {\n    border-color: @dropdown-link-hover-border-color;\n    .reset-filter();\n  }\n  &:active {\n    background-color: @dropdown-link-focus-bg;\n    border-color: @dropdown-link-active-border-color;\n    color: @dropdown-link-focus-color !important;\n    .reset-filter();\n  }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n  &,\n  &:hover,\n  &:focus {\n    background-color: @dropdown-link-active-bg !important;\n    border-color: @dropdown-link-active-border-color !important;\n    .reset-filter();\n  }\n}\n\n// Disabled state\n.dropdown-menu > .disabled > a {\n  &,\n  &:hover,\n  &:focus {\n    border-color: transparent;\n  }\n}\n\n// Selected state\n.dropdown-menu > .selected > a {\n  background-color: @dropdown-link-active-bg;\n  border-color: @dropdown-link-active-border-color;\n  color: @color-pf-white;\n  small {\n    color: fade(@color-pf-white, 50%);\n  }\n}\n\n// Nuke hover/focus effects\n.dropdown-menu > .disabled > a {\n  &:hover,\n  &:focus {\n    border-color: transparent;\n  }\n}\n\n// Dropdown section headers\n.dropdown-header {\n  padding-left: 10px;\n  padding-right: 10px;\n  text-transform: uppercase;\n}\n\n// Position Menu closer to button\n.btn-group,\n.dropdown,\n.input-group-btn {\n  > .dropdown-menu {\n    margin-top: -1px;\n  }\n}\n\n// Position Menu closer to button (dropup-menu)\n.dropup .dropdown-menu {\n  margin-bottom: -1px;\n}\n\n// Add back styles for dropdown-submenu\n.dropdown-submenu {\n  position:relative;\n  &:hover {\n    > a {\n      background-color: @dropdown-link-hover-bg;\n      border-color: @dropdown-link-hover-border-color;\n    }\n    > .dropdown-menu {\n      display: block;\n    }\n  }\n  &.pull-left {\n    float: none !important;\n    > .dropdown-menu {\n      left: auto;\n      margin-left: 10px;\n      right: 100%;\n    }\n  }\n  > a {\n    padding-right: 20px !important;\n    &:after {\n      content: @fa-var-angle-right;\n      font-family: @icon-font-name-fa;\n      display: block;\n      position: absolute;\n      right: 10px;\n      top: 2px;\n    }\n  }\n  > .dropdown-menu {\n    left: 100%;\n    margin-top: 0;\n    top: -6px;\n  }\n  .dropup & > .dropdown-menu {\n    bottom: -5px;\n    top: auto;\n  }\n  .open &.active > .dropdown-menu {\n    display: block;\n  }\n}\n\n// Kebab dropmenu\n.dropdown-kebab-pf {\n  &.btn-group > .btn:first-child,\n  .btn-link {\n    color: @gray-darker;\n    font-size: (@font-size-base + 4);\n    line-height: 1;\n    padding: 4px (@grid-gutter-width/4);\n    margin-left: (@grid-gutter-width/(-4));\n    margin-right: (@grid-gutter-width/(-4));\n    &:active,\n    &:focus,\n    &:hover {\n      color: @link-color;\n    }\n  }\n  &.btn-group { margin-left: (@grid-gutter-width/4); }\n  .dropdown-menu {\n    left: -15px;\n    margin-top: 11px;\n    &.dropdown-menu-right {\n      left: auto;\n      right: -15px;\n      &:after,\n      &:before {\n        left: auto;\n        right: 6px;\n      }\n    }\n    &:after,\n    &:before {\n      border-bottom-color: @dropdown-border;\n      border-bottom-style: solid;\n      border-bottom-width: 10px;\n      border-left: 10px solid transparent;\n      border-right: 10px solid transparent;\n      content: \"\";\n      display: inline-block;\n      left: 6px;\n      position: absolute;\n      top: -11px;\n    }\n    &:after {\n      border-bottom-color: @dropdown-bg;\n      top: -10px;\n    }\n  }\n  &.dropup .dropdown-menu {\n    margin-bottom: 11px;\n    margin-top: 0;\n    &:after,\n    &:before {\n      border-bottom: none;\n      border-top-color: @dropdown-border;\n      border-top-style: solid;\n      border-top-width: 10px;\n      bottom: -11px;\n      top: auto;\n    }\n    &:after {\n      border-top-color: @dropdown-bg;\n      bottom: -10px;\n    }\n  }\n}\n","//\n// Forms\n// --------------------------------------------------\n.chars-remaining-pf span {\n  font-weight: 600;\n  padding-right: 5px;\n}\n\n.chars-warn-remaining-pf {\n  color: @brand-danger;\n}\n\n.fields-status-pf {\n  color: @color-pf-black-500;\n  margin-bottom: 15px;\n}\n\n.form-control {\n  &[disabled],\n  &[readonly],\n  fieldset[disabled] & {\n    .box-shadow(none);\n    color: @color-pf-black-500;\n    &:hover {\n      border-color: @input-border;\n    }\n  }\n  &:hover {\n    border-color: @input-border-hover;\n    .has-error & {\n      border-color: darken(@state-danger-text, 10%);\n    }\n    .has-success & {\n      border-color: darken(@state-success-text, 10%);\n    }\n    .has-warning & {\n      border-color: darken(@state-warning-text, 10%);\n    }\n  }\n}\n\n.has-error, .has-success, .has-warning {\n  .checkbox,\n  .checkbox-inline,\n  .control-label,\n  .radio,\n  .radio-inline,\n  &.checkbox label,\n  &.checkbox-inline label,\n  &.radio label,\n  &.radio-inline label {\n    color: @text-color;\n  }\n}\n\n.help-block {\n  margin-bottom: 0px;\n}\n\n.input-group .input-group-btn .btn {\n  .box-shadow(none);\n}\n\nlabel {\n  font-weight: 600;\n  &.required-pf:after {\n    color: @brand-danger;\n    content: \"*\";\n    margin-left: 3px;\n  }\n}\n\nspan.required-pf {\n  color: @brand-danger;\n}\n\n.fields-section-pf {\n  border-color: @color-pf-black-200;\n  border-style: solid;\n  border-width: 1px 0 0;\n  margin-top: 25px;\n  padding: 15px 0 0;\n}\n.fields-section-header-pf {\n  border: none;\n  font-size: @font-size-base;\n  margin: 0;\n  padding-right: @padding-large-horizontal;\n  width: auto;\n  .fa-angle-right {\n    cursor: pointer;\n    font-size: @font-size-large;\n    width: @font-size-large;\n  }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n  border-radius: 0;\n  font-size: 100%;\n  font-weight: 600;\n  h1 &,\n  h2 &,\n  h3 &,\n  h4 &,\n  h5 &,\n  h6 & {\n    font-size: 75%;\n  }\n}\n","//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n  border-top: 1px solid @list-group-top-border;\n  .list-group-item:first-child {\n    border-top: 0;\n  }\n}\n.list-group-item {\n  border-left: 0;\n  border-right: 0;\n}\n\n.list-group-item-heading {\n  font-weight: 600;\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n  background-color: @color-pf-black-150;\n  border-bottom: none;\n  padding: @modal-title-padding-vertical @modal-title-padding-horizontal;\n}\n// Close icon\n.modal-header .close {\n  margin-top: 2px;\n}\n\n// Title text within header\n.modal-title {\n  font-size: 13px;\n  font-weight: 700;\n}\n\n// Footer (for actions)\n.modal-footer {\n  border-top: none;\n  margin-top: 15px;\n  padding: (@modal-inner-padding - 1) @modal-inner-padding @modal-inner-padding;\n  > .btn {\n    padding-left: 10px;\n    padding-right: 10px;\n    > .fa-angle-left {\n      margin-right: 5px;\n    }\n    > .fa-angle-right {\n      margin-left: 5px;\n    }\n  }\n}\n","//\n// Pager\n// --------------------------------------------------\n\n.pager {\n  li {\n    > a,\n    > span {\n      .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n      color: @gray-pf;\n      font-weight: 600;\n      line-height: 22px;\n      padding: 2px 14px;\n      > .i {\n        font-size: 18px;\n        vertical-align: top;\n        margin: 2px 0;\n      }\n    }\n    a:active {\n      background-image: none;\n      .box-shadow(inset 0 3px 5px fade(@color-pf-black, 12.5%));\n      outline: 0;\n    }\n  }\n  .disabled {\n    > a,\n    > a:hover,\n    > a:focus,\n    > a:active,\n    > span {\n      background: @pagination-bg;\n      .box-shadow(none);\n      color: @pager-disabled-color;\n      cursor: not-allowed;\n    }\n  }\n  .next {\n     > a,\n     > span {\n       > .i {\n          margin-left: 5px;\n       }\n     }\n  }\n  .previous {\n     > a,\n     > span {\n       > .i {\n          margin-right: 5px;\n       }\n     }\n  }\n}\n\n.pager-sm {\n  li {\n    > a,\n    > span {\n      font-weight: 400;\n      line-height: 16px;\n      padding: 1px 10px;\n      > .i {\n        font-size: 12px;\n      }\n    }\n  }\n}\n","//\n// Pagination\n// --------------------------------------------------\n\n.pagination {\n  > li {\n    > a,\n    > span {\n      .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n      cursor: default;\n      font-weight: 600;\n      padding: @padding-base-vertical @padding-large-horizontal;\n      > .i {\n        font-size: 15px;\n        vertical-align: top;\n        margin: 2px 0;\n      }\n    }\n  }\n  > li > a,\n  > li > span {\n    &:active {\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n    }\n  }\n  > .active > a,\n  > .active > span {\n    &,\n    &:hover,\n    &:focus {\n      background-color: @btn-default-bg;\n      border-color: @pagination-border;\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n      color: @btn-default-color;\n      #gradient > .vertical(@btn-default-bg-img-start; @btn-default-bg-img-stop);\n    }\n  }\n  > .disabled {\n    > span,\n    > span:hover,\n    > span:focus,\n    > a,\n    > a:hover,\n    > a:focus {\n      .box-shadow(none);\n      cursor: not-allowed;\n      #gradient > .vertical(@btn-default-bg-img-start; @btn-default-bg-img-stop);\n    }\n  }\n}\n\n.pagination-sm {\n  .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n  > li {\n    > a,\n    > span {\n      font-weight: 400;\n      > .i {\n        font-size: 12px;\n        margin-top: 2px;\n      }\n    }\n  }\n}\n\n.content-view-pf-pagination {\n  background-color: @table-bg-accent;\n  border: 1px solid @table-border-color;\n  display: flex;\n  flex-wrap: wrap;\n  justify-content: space-between;\n  &.table-view-pf-pagination {\n    border-top: none;\n  }\n  .form-group {\n    align-items: baseline;\n    display: flex;\n    flex-grow: 1;\n    float: left; //IE9 fallback\n    @supports (display: flex) {\n      float: none;\n    }\n    margin: 5px;\n    &:last-child {\n      justify-content: flex-end; // if pagination controls wrap, pagination buttons stay on the right\n      float: right; //IE9 fallback\n      @supports (display: flex) {\n        float: none;\n      }\n    }\n    .pagination-pf-pagesize.bootstrap-select.btn-group,\n    .pagination-pf-pagesize.btn-group {\n      display: flex;\n      float: none;\n      margin-bottom: 0;\n      margin-left: 0;\n      margin-right: 5px;\n      width: auto;\n    }\n    .dropdown-menu {\n      min-width: auto;\n    }\n  }\n  .pagination-pf-page {\n    margin-left: 10px;\n    margin-right: 5px;\n    padding: 0 2px 2px;\n    text-align: right;\n    width: 2.5em;\n  }\n  .pagination {\n    display: flex;\n    margin: 0 0 0 10px;\n    a {\n      float: none;\n      @supports (display: flex) {\n        display: block;\n      }\n    }\n  }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n.panel-title {\n  font-weight: 700;\n}\n\n//\n// Collapsable panels (aka, accordion)\n// --------------------------------------------------\n\n.panel-group {\n  .panel {\n    color: @gray-pf;\n    + .panel {\n      margin-top: -1px;\n    }\n  }\n  .panel-default {\n    border-color: @panel-default-border-color;\n    border-top-color: @panel-default-border-color;\n    .panel-heading {\n      #gradient > .vertical(@btn-default-bg-img-start, @btn-default-bg-img-stop);\n      + .panel-collapse .panel-body {\n        border-top: 1px solid @panel-inner-border;\n      }\n    }\n  }\n\n  .panel-info {\n    border-color: @panel-info-border;\n    .panel-heading {\n      background-color: @panel-group-pf-info-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-info-border;\n    }\n  }\n  .panel-primary {\n    border-color: @panel-primary-border;\n    .panel-heading {\n      background-color: @panel-group-pf-primary-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-primary-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-primary-border;\n    }\n  }\n  .panel-success {\n    border-color: @panel-success-border;\n    .panel-heading {\n      background-color: @panel-group-pf-success-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-success-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-success-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-success-border;\n    }\n  }\n  .panel-warning {\n    border-color: @panel-warning-border;\n    .panel-heading {\n      background-color: @panel-group-pf-warning-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-success {\n      border-top-color: @panel-warning-border;\n    }\n  }\n  .panel-danger {\n    border-color: @panel-danger-border;\n    .panel-heading {\n      background-color: @panel-group-pf-danger-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-success {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-warning {\n      border-top-color: @panel-danger-border;\n    }\n  }\n  .panel-title {\n    font-weight: 500;\n    line-height: 1;\n    > a {\n      color: @gray-pf;\n      font-weight: @btn-font-weight;\n      &:before {\n        content: \"\\f107\";\n        display: inline-block;\n        font-family: @icon-font-name-fa;\n        font-size: 13px;\n        margin-right: 5px;\n        text-align: center;\n        vertical-align: 0;\n        width: 8px;\n      }\n      &:focus {\n        outline: none;\n        text-decoration: none;\n      }\n      &:hover {\n        text-decoration: none;\n      }\n      &.collapsed:before {\n        content: \"\\f105\";\n      }\n    }\n  }\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n.popover {\n  .box-shadow(0 2px 2px fade(@color-pf-black, 8%));\n  padding: 0;\n}\n\n.popover-content {\n  color: @gray-pf;\n  line-height: 18px;\n  padding: 10px 14px;\n}\n\n.popover-title {\n  border-bottom: none;\n  border-radius: 0;\n  color: @gray-pf;\n  font-size: (@font-size-base + 1);\n  font-weight: 700;\n  min-height: 34px;\n  .close {\n    height: 22px;\n    position: absolute;\n    right: 8px;\n    top: 6px;\n  }\n  &.closable {\n    padding-right: 30px;\n  }\n}\n","//\n// Progress Bar\n// --------------------------------------------------\n\n@keyframes progress-bar-stripes {\n  from  { background-position: 0 0; }\n  to    { background-position: 40px 0; }\n}\n\n.progress {\n  .box-shadow(inset 0 0 1px fade(@color-pf-black, 25%));\n  &.progress-label-left,\n  &.progress-label-top-right {\n    overflow: visible;\n    position: relative;\n  }\n  &.progress-label-left {\n    margin-left: 40px;\n  }\n  &.progress-sm {\n    height: @progress-sm;\n    margin-bottom: @progress-sm;\n  }\n  &.progress-xs {\n    height: @progress-xs;\n    margin-bottom: @progress-xs;\n  }\n  td > &:first-child:last-child {\n    margin-bottom: 0;\n    margin-top: 3px;\n  }\n}\n\n.progress-bar {\n  box-shadow: none;\n  .progress-label-left & span,\n  .progress-label-right & span,\n  .progress-label-top-right & span {\n    color: @text-color;\n    position: absolute;\n    text-align: right;\n  }\n  .progress-label-left & span {\n    font-size: @font-size-large;\n    left: -40px;\n    top: 0;\n    width: 35px;\n  }\n  .progress-label-right & span,\n  .progress-label-top-right & span {\n    font-size: @font-size-small;\n    overflow: hidden;\n    right: 0;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    strong {\n      font-weight: 600;\n    }\n  }\n  .progress-label-right & span {\n    max-width: @progress-description-label-width;\n    top: 0;\n  }\n  .progress-label-top-right & span {\n    max-width: 47%;\n    top: (-(@line-height-computed * 1.5)); // -30px\n  }\n  .progress-label-left.progress-sm & span,\n  .progress-label-top-right.progress-sm & span {\n    font-size: @font-size-base;\n  }\n  .progress-sm & {\n    line-height: @progress-sm;\n  }\n  .progress-xs & {\n    line-height: @progress-xs;\n  }\n}\n\n.progress-bar-remaining {\n  background: transparent;\n}\n\n.progress-container {\n  position: relative;\n  &.progress-description-left {\n    padding-left :(@progress-description-label-width + 5);\n  }\n  &.progress-label-right {\n    padding-right :(@progress-description-label-width + 5);\n  }\n}\n\n.progress-description {\n  margin-bottom: (@line-height-computed / 2); // 10px\n  max-width: 52%;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  .count {\n    font-size: (@font-size-base * 1.667); // 20px\n    font-weight: 300;\n    line-height: 1;\n    margin-right: 5px;\n  }\n  .fa,\n  .pficon {\n    font-size: 14px;\n    margin-right: 3px;\n  }\n  .progress-description-left & {\n    left: 0;\n    margin-bottom: 0;\n    max-width: @progress-description-label-width;\n    position: absolute;\n    top: 0;\n  }\n  .tooltip {\n    white-space: normal;\n  }\n}\n","//\n// Tables\n// --------------------------------------------------\n\n.table {\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-cell-padding-top @table-cell-padding @table-cell-padding-bottom;\n        > a:hover {\n          text-decoration: none;\n        }\n      }\n      > th {\n        font-family: \"Open Sans\";\n        font-style: normal;\n        font-weight: 600;\n      }\n    }\n  }\n  > thead {\n    background-clip: padding-box;\n    background-color: @color-pf-black-150;\n    #gradient > .vertical(@start-color: @color-pf-black-100; @end-color: @color-pf-black-200; @start-percent: 0%; @end-percent: 100%);\n  }\n}\n\n.table-bordered {\n  border: 1px solid @table-border-color;\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        border: 1px solid @table-border-color;\n      }\n    }\n  }\n  > thead > tr {\n    > th,\n    > td {\n      border-bottom-width: 1px;\n    }\n  }\n}\n\n.table-striped {\n  > tbody > tr {\n    &:nth-of-type(even) {\n      background-color: @table-bg-accent;\n    }\n    &:nth-of-type(odd) {\n      background-color: transparent;\n    }\n  }\n}\n\n.table-hover {\n  > tbody > tr:hover {\n    > td,\n    > th {\n      background-color: @table-bg-hover;\n      border-bottom-color: @table-border-hover;\n    }\n  }\n}\n\n.table-treegrid {\n  span.indent {\n    margin-left: 10px;\n    margin-right: 10px;\n  }\n  span.icon {\n    display: inline-block;\n    font-size: 13px;\n    margin-right: 5px;\n    min-width: 10px;\n    text-align: center;\n  }\n  span.expand-icon, span.collapse-icon {\n    cursor: pointer;\n  }\n  > tbody > tr.odd {\n    background-color: @table-bg-accent;\n  }\n}\n","//\n// Tabs\n// --------------------------------------------------\n\n.nav-tabs {\n  font-size: @font-size-large;\n  > li {\n    > a {\n      color: @nav-tabs-color;\n      margin-right: -1px;\n      padding-bottom: 5px;\n      padding-top: 5px;\n      &:active,\n      &:focus,\n      &:hover {\n        background: transparent;\n        border-color: @nav-tabs-border-color;\n        color: @gray-darker;\n      }\n    }\n    > .dropdown-menu {\n      border-top: 0;\n      border-color: @nav-tabs-border-color;\n      &.pull-right {\n        right: -1px;\n      }\n    }\n  }\n  + .nav-tabs-pf, &.nav-tabs-pf-secondary {\n    font-size: @font-size-base;\n    > li:first-child > a {\n      padding-left: 15px;\n      &:before {\n        left: 15px !important;\n      }\n    }\n  }\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: transparent;\n      border-color: @nav-tabs-border-color;\n    }\n  }\n}\n\n.nav-tabs-pf {\n  &.nav-justified {\n    @media (min-width: @grid-float-breakpoint) {\n      border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n    }\n    > li {\n      &:first-child > a {\n        padding-left: 15px;\n      }\n      > a {\n        border-bottom: 0;\n        &:before {\n          left: 0 !important;\n          right: 0 !important;\n        }\n      }\n    }\n  }\n  > li {\n    margin-bottom: 0;\n    &.active > a {\n      .tab-indicator(@background: @nav-tabs-active-link-hover-color);\n      &,\n      &:active,\n      &:focus,\n      &:hover {\n        background-color: transparent;\n        border: 0 !important;\n        color: @link-color;\n        &:before {\n          background: @nav-tabs-active-link-hover-color;\n        }\n      }\n    }\n    &:first-child {\n      > a {\n        padding-left: 0;\n        &:before {\n          left: 0 !important;\n        }\n      }\n    }\n    > a {\n      border: 0;\n      line-height: 1;\n      margin-right: 0;\n      padding-bottom: 10px;\n      padding-top: 10px;\n      &:active,\n      &:focus,\n      &:hover {\n        .tab-indicator()\n      }\n    }\n    > .dropdown-menu {\n      left: 15px;\n      margin-top: 1px;\n      &.pull-right {\n        left: auto;\n        right: 15px;\n      }\n    }\n  }\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: transparent;\n    }\n  }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n// Base class\n.tooltip {\n  font-size: @tooltip-font-size;\n  line-height: 1.4;\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n  padding: 7px 12px;\n  text-align: left;\n}\n","//\n// Typography\n// --------------------------------------------------\n\nh1,\n.h1,\nh2,\n.h2 {\n  font-weight: 300;\n}\n\n.page-header .actions {\n  margin-top: 8px;\n  a > .pficon {\n    margin-right: 4px;\n  }\n}\n\n@media (min-width: @grid-float-breakpoint-max) {\n  .page-header-bleed-left {\n    margin-left: (-(@grid-gutter-width / 2));\n  }\n  .page-header-bleed-right {\n    margin-right: ((-@grid-gutter-width / 2));\n    .actions {\n      margin-right: (@grid-gutter-width / 2);\n    }\n  }\n}\n"]}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/dist/css/rcue.min.css b/themes/src/main/node_modules/rcue/dist/css/rcue.min.css
new file mode 100644
index 0000000..97bdd55
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/css/rcue.min.css
@@ -0,0 +1,9 @@
+@font-face{font-family:"Open Sans";font-style:normal;font-weight:300;src:url(../fonts/OpenSans-Light-webfont.eot);src:local("Open Sans Light"),local("OpenSans-Light"),url(../fonts/OpenSans-Light-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-Light-webfont.woff2) format("woff2"),url(../fonts/OpenSans-Light-webfont.woff) format("woff"),url(../fonts/OpenSans-Light-webfont.ttf) format("truetype"),url(../fonts/OpenSans-Light-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:400;src:url(../fonts/OpenSans-Regular-webfont.eot);src:local("Open Sans"),local("OpenSans"),url(../fonts/OpenSans-Regular-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-Regular-webfont.woff2) format("woff2"),url(../fonts/OpenSans-Regular-webfont.woff) format("woff"),url(../fonts/OpenSans-Regular-webfont.ttf) format("truetype"),url(../fonts/OpenSans-Regular-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:300;src:url(../fonts/OpenSans-LightItalic-webfont.eot);src:local("Open Sans Light Italic"),local("OpenSansLight-Italic"),url(../fonts/OpenSans-LightItalic-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-LightItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans-LightItalic-webfont.woff) format("woff"),url(../fonts/OpenSans-LightItalic-webfont.ttf) format("truetype"),url(../fonts/OpenSans-LightItalic-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:400;src:url(../fonts/OpenSans-Italic-webfont.eot);src:local("Open Sans Italic"),local("OpenSans-Italic"),url(../fonts/OpenSans-Italic-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-Italic-webfont.woff2) format("woff2"),url(../fonts/OpenSans-Italic-webfont.woff) format("woff"),url(../fonts/OpenSans-Italic-webfont.ttf) format("truetype"),url(../fonts/OpenSans-Italic-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:600;src:url(../fonts/OpenSans-Semibold-webfont.eot);src:local("Open Sans Semibold"),local("OpenSans-Semibold-webfont"),url(../fonts/OpenSans-Semibold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-Semibold-webfont.woff2) format("woff2"),url(../fonts/OpenSans-Semibold-webfont.woff) format("woff"),url(../fonts/OpenSans-Semibold-webfont.ttf) format("truetype"),url(../fonts/OpenSans-Semibold-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:600;src:url(../fonts/OpenSans-SemiboldItalic-webfont.eot);src:local("Open Sans Semibold Italic"),local("OpenSans-SemiboldItalic-webfont"),url(../fonts/OpenSans-SemiboldItalic-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-SemiboldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans-SemiboldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans-SemiboldItalic-webfont.ttf) format("truetype"),url(../fonts/OpenSans-SemiboldItalic-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:700;src:url(../fonts/OpenSans-Bold-webfont.eot);src:local("Open Sans Bold"),local("OpenSans-Bold"),url(../fonts/OpenSans-Bold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-Bold-webfont.woff2) format("woff2"),url(../fonts/OpenSans-Bold-webfont.woff) format("woff"),url(../fonts/OpenSans-Bold-webfont.ttf) format("truetype"),url(../fonts/OpenSans-Bold-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:700;src:url(../fonts/OpenSans-BoldItalic-webfont.eot);src:local("Open Sans Bold Italic"),local("OpenSans-BoldItalic"),url(../fonts/OpenSans-BoldItalic-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-BoldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans-BoldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans-BoldItalic-webfont.ttf) format("truetype"),url(../fonts/OpenSans-BoldItalic-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:800;src:url(../fonts/OpenSans-ExtraBoldItalic-webfont.eot);src:local("Open Sans Extrabold Italic"),local("OpenSans-ExtraboldItalic"),url(../fonts/OpenSans-ExtraBoldItalic-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-ExtraBoldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans-ExtraBoldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans-ExtraBoldItalic-webfont.ttf) format("truetype"),url(../fonts/OpenSans-ExtraBoldItalic-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:800;src:url(../fonts/OpenSans-ExtraBold-webfont.eot);src:local("Open Sans Extrabold"),local("OpenSans-Extrabold"),url(../fonts/OpenSans-ExtraBold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-ExtraBold-webfont.woff2) format("woff2"),url(../fonts/OpenSans-ExtraBold-webfont.woff) format("woff"),url(../fonts/OpenSans-ExtraBold-webfont.ttf) format("truetype"),url(../fonts/OpenSans-ExtraBold-webfont.svg#OpenSans) format("svg")}/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{background:0 0!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:"Open Sans",Helvetica,Arial,sans-serif;font-size:12px;line-height:1.66666667;color:#363636;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#0088ce;text-decoration:none}a:focus,a:hover{color:#00659c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:1px}.img-thumbnail{padding:4px;line-height:1.66666667;background-color:#fff;border:1px solid #ddd;border-radius:1px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #f1f1f1}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#9c9c9c}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:24px}.h2,h2{font-size:22px}.h3,h3{font-size:16px}.h4,h4{font-size:15px}.h5,h5{font-size:13px}.h6,h6{font-size:11px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:13px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:18px}}.small,small{font-size:91%}.mark,mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#9c9c9c}.text-primary{color:#39a5dc}a.text-primary:focus,a.text-primary:hover{color:#228bc0}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#ec7a08}a.text-warning:focus,a.text-warning:hover{color:#bb6106}.text-danger{color:#c00}a.text-danger:focus,a.text-danger:hover{color:#900}.bg-primary{color:#fff;background-color:#39a5dc}a.bg-primary:focus,a.bg-primary:hover{background-color:#228bc0}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #f1f1f1}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.66666667}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #9c9c9c}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:15px;border-left:5px solid #f1f1f1}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.66666667;color:#9c9c9c}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #f1f1f1;border-left:0;text-align:right}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.66666667}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,monospace}code{padding:2px 4px;font-size:90%;color:#004368;background-color:#def3ff;border-radius:1px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:1px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:11px;line-height:1.66666667;word-break:break-all;word-wrap:break-word;color:#363636;background-color:#fafafa;border:1px solid #ccc;border-radius:1px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:20px;padding-right:20px}@media (min-width:768px){.container{width:760px}}@media (min-width:992px){.container{width:980px}}@media (min-width:1200px){.container{width:1180px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:20px;padding-right:20px}.row{margin-left:-20px;margin-right:-20px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:20px;padding-right:20px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:10px;padding-bottom:10px;color:#9c9c9c;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:10px;line-height:1.66666667;vertical-align:top;border-top:1px solid #d1d1d1}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #d1d1d1}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #d1d1d1}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #d1d1d1}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #d1d1d1}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f5f5f5}.table-hover>tbody>tr:hover{background-color:#def3ff}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#def3ff}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#c4eaff}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #d1d1d1}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:18px;line-height:inherit;color:#363636;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:3px;font-size:12px;line-height:1.66666667;color:#363636}.form-control{display:block;width:100%;height:26px;padding:2px 6px;font-size:12px;line-height:1.66666667;color:#363636;background-color:#fff;background-image:none;border:1px solid #bbb;border-radius:1px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#0088ce;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,136,206,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,136,206,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control:-moz-placeholder{color:#999;font-style:italic}.form-control::-moz-placeholder{color:#999;font-style:italic;opacity:1}.form-control:-ms-input-placeholder{color:#999;font-style:italic}.form-control::-webkit-input-placeholder{color:#999;font-style:italic}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#f5f5f5;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:26px}.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:22px}.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:33px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{padding-top:3px;padding-bottom:3px;margin-bottom:0;min-height:32px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:22px;padding:2px 6px;font-size:11px;line-height:1.5;border-radius:1px}select.input-sm{height:22px;line-height:22px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:22px;padding:2px 6px;font-size:11px;line-height:1.5;border-radius:1px}.form-group-sm select.form-control{height:22px;line-height:22px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:22px;min-height:31px;padding:3px 6px;font-size:11px;line-height:1.5}.input-lg{height:33px;padding:6px 10px;font-size:14px;line-height:1.3333333;border-radius:1px}select.input-lg{height:33px;line-height:33px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:33px;padding:6px 10px;font-size:14px;line-height:1.3333333;border-radius:1px}.form-group-lg select.form-control{height:33px;line-height:33px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:33px;min-height:34px;padding:7px 10px;font-size:14px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:32.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:26px;height:26px;line-height:26px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:33px;height:33px;line-height:33px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:22px;height:22px;line-height:22px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#ec7a08}.has-warning .form-control{border-color:#ec7a08;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#bb6106;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #faad60;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #faad60}.has-warning .input-group-addon{color:#ec7a08;border-color:#ec7a08;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#ec7a08}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#c00}.has-error .form-control{border-color:#c00;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#900;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #f33;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #f33}.has-error .input-group-addon{color:#c00;border-color:#c00;background-color:#f2dede}.has-error .form-control-feedback{color:#c00}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#767676}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:3px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:23px}.form-horizontal .form-group{margin-left:-20px;margin-right:-20px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:3px}}.form-horizontal .has-feedback .form-control-feedback{right:20px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:7px;font-size:14px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:3px;font-size:11px}}.btn{display:inline-block;margin-bottom:0;font-weight:600;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:2px 6px;font-size:12px;line-height:1.66666667;border-radius:1px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#4d5258;text-decoration:none}.btn.active,.btn:active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#4d5258;background-color:#f1f1f1;border-color:#bbb}.btn-default.focus,.btn-default:focus{color:#4d5258;background-color:#d8d8d8;border-color:#7b7b7b}.btn-default:hover{color:#4d5258;background-color:#d8d8d8;border-color:#9c9c9c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#4d5258;background-color:#d8d8d8;border-color:#9c9c9c}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#4d5258;background-color:#c6c6c6;border-color:#7b7b7b}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#f1f1f1;border-color:#bbb}.btn-default .badge{color:#f1f1f1;background-color:#4d5258}.btn-primary{color:#fff;background-color:#0088ce;border-color:#00659c}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#00669b;border-color:#00121d}.btn-primary:hover{color:#fff;background-color:#00669b;border-color:#003d5f}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#00669b;border-color:#003d5f}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#004f77;border-color:#00121d}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#0088ce;border-color:#00659c}.btn-primary .badge{color:#0088ce;background-color:#fff}.btn-success{color:#fff;background-color:#3f9c35;border-color:#37892f}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#307628;border-color:#112a0e}.btn-success:hover{color:#fff;background-color:#307628;border-color:#255b1f}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#307628;border-color:#255b1f}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#255b1f;border-color:#112a0e}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#3f9c35;border-color:#37892f}.btn-success .badge{color:#3f9c35;background-color:#fff}.btn-info{color:#fff;background-color:#00659c;border-color:#005483}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#004469;border-color:#000203}.btn-info:hover{color:#fff;background-color:#004469;border-color:#002d45}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#004469;border-color:#002d45}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#002d45;border-color:#000203}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#00659c;border-color:#005483}.btn-info .badge{color:#00659c;background-color:#fff}.btn-warning{color:#fff;background-color:#ec7a08;border-color:#d36d07}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#bb6106;border-color:#582e03}.btn-warning:hover{color:#fff;background-color:#bb6106;border-color:#984f05}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#bb6106;border-color:#984f05}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#984f05;border-color:#582e03}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#ec7a08;border-color:#d36d07}.btn-warning .badge{color:#ec7a08;background-color:#fff}.btn-danger{color:#fff;background-color:#a30000;border-color:#8b0000}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#700000;border-color:#0b0000}.btn-danger:hover{color:#fff;background-color:#700000;border-color:#4e0000}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#700000;border-color:#4e0000}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#4c0000;border-color:#0b0000}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#a30000;border-color:#8b0000}.btn-danger .badge{color:#a30000;background-color:#fff}.btn-link{color:#0088ce;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#00659c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#9c9c9c;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:6px 10px;font-size:14px;line-height:1.3333333;border-radius:1px}.btn-group-sm>.btn,.btn-sm{padding:2px 6px;font-size:11px;line-height:1.5;border-radius:1px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:11px;line-height:1.5;border-radius:1px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:0 dashed;border-right:0 solid transparent;border-left:0 solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:12px;text-align:left;background-color:#fff;border:1px solid #bbb;border-radius:1px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{margin:9px 0;background-color:#ededed;height:1px;margin:4px 1px;overflow:hidden}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.66666667;color:#363636;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#4d5258;background-color:#def3ff}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#0088ce}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#9c9c9c}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:11px;line-height:1.66666667;color:#9c9c9c;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:0 dashed;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:0 0 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 0 0}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:1px;border-top-left-radius:1px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:33px;padding:6px 10px;font-size:14px;line-height:1.3333333;border-radius:1px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:33px;line-height:33px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:22px;padding:2px 6px;font-size:11px;line-height:1.5;border-radius:1px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:22px;line-height:22px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:2px 6px;font-size:12px;font-weight:400;line-height:1;color:#363636;text-align:center;background-color:#f1f1f1;border:1px solid #bbb;border-radius:1px}.input-group-addon.input-sm{padding:2px 6px;font-size:11px;border-radius:1px}.input-group-addon.input-lg{padding:6px 10px;font-size:14px;border-radius:1px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#f1f1f1}.nav>li.disabled>a{color:#9c9c9c}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#9c9c9c;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#f1f1f1;border-color:#0088ce}.nav .nav-divider{margin:9px 0;background-color:#e5e5e5;background-color:#ededed;height:1px;margin:4px 1px;overflow:hidden}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ededed}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.66666667;border:1px solid transparent;border-radius:1px 1px 0 0}.nav-tabs>li>a:hover{border-color:transparent transparent #ededed}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#0088ce;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:1px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ededed}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ededed;border-radius:1px 1px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:1px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#39a5dc}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:1px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ededed}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ededed;border-radius:1px 1px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:1px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:20px;padding-left:20px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-20px;margin-left:-20px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 20px;font-size:14px;line-height:20px;height:50px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-20px}}.navbar-toggle{position:relative;float:right;margin-right:20px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:1px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -20px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-20px;margin-right:-20px;padding:10px 20px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin-top:12px;margin-bottom:12px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:1px;border-top-left-radius:1px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:12px;margin-bottom:12px}.navbar-btn.btn-sm{margin-top:14px;margin-bottom:14px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:20px;margin-right:20px}}@media (min-width:768px){.navbar-left{float:left!important;float:left}.navbar-right{float:right!important;float:right;margin-right:-20px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#c2c2c2}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#c2c2c2}.navbar-inverse .navbar-nav>li>a{color:#c2c2c2}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#c2c2c2}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#c2c2c2}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#c2c2c2}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:transparent;border-radius:1px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"\f105\00a0";padding:0 5px;color:#4d5258}.breadcrumb>.active{color:#4d5258}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:1px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:2px 6px;line-height:1.66666667;text-decoration:none;color:#0088ce;background-color:#f5f5f5;border:1px solid #bbb;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#00659c;background-color:#ededed;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#39a5dc;border-color:#39a5dc;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#9c9c9c;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:6px 10px;font-size:14px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pagination-sm>li>a,.pagination-sm>li>span{padding:2px 6px;font-size:11px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#f5f5f5;border:1px solid #bbb;border-radius:0}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#ededed}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#8b8d8f;background-color:#f5f5f5;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#9c9c9c}.label-default[href]:focus,.label-default[href]:hover{background-color:#838383}.label-primary{background-color:#39a5dc}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#228bc0}.label-success{background-color:#3f9c35}.label-success[href]:focus,.label-success[href]:hover{background-color:#307628}.label-info{background-color:#00659c}.label-info[href]:focus,.label-info[href]:hover{background-color:#004469}.label-warning{background-color:#ec7a08}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#bb6106}.label-danger{background-color:#c00}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#900}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:11px;font-weight:700;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#9c9c9c;border-radius:1px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#0088ce;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#f1f1f1}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:18px;font-weight:200}.jumbotron>hr{border-top-color:#d8d8d8}.container .jumbotron,.container-fluid .jumbotron{border-radius:1px;padding-left:20px;padding-right:20px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:54px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.66666667;background-color:#fff;border:1px solid #ddd;border-radius:1px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-left:auto;margin-right:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#0088ce}.thumbnail .caption{padding:9px;color:#363636}.alert{padding:11px;margin-bottom:20px;border:1px solid transparent;border-radius:1px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:500}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:31px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#e9f4e9;border-color:#3f9c35;color:#363636}.alert-success hr{border-top-color:#37892f}.alert-success .alert-link{color:#1d1d1d}.alert-info{background-color:#f5f5f5;border-color:#8b8d8f;color:#363636}.alert-info hr{border-top-color:#7e8082}.alert-info .alert-link{color:#1d1d1d}.alert-warning{background-color:#fdf2e5;border-color:#ec7a08;color:#363636}.alert-warning hr{border-top-color:#d36d07}.alert-warning .alert-link{color:#1d1d1d}.alert-danger{background-color:#ffe6e6;border-color:#c00;color:#363636}.alert-danger hr{border-top-color:#b30000}.alert-danger .alert-link{color:#1d1d1d}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#ededed;border-radius:1px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0%;height:100%;font-size:11px;line-height:20px;color:#fff;text-align:center;background-color:#39a5dc;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%);background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#3f9c35}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%)}.progress-bar-info{background-color:#00659c}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%)}.progress-bar-warning{background-color:#ec7a08}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%)}.progress-bar-danger{background-color:#c00}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #f5f5f5}.list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{text-decoration:none;color:#555;background-color:#def3ff}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#f1f1f1;color:#9c9c9c;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#9c9c9c}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#39a5dc;border-color:#39a5dc}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#e6f4fb}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#ec7a08;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#ec7a08}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#ec7a08;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#ec7a08;border-color:#ec7a08}.list-group-item-danger{color:#c00;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#c00}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#c00;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#c00;border-color:#c00}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:1px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:0;border-top-left-radius:0}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:14px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #d1d1d1;border-bottom-right-radius:0;border-bottom-left-radius:0}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:0;border-top-left-radius:0}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:0}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:0}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:0;border-bottom-left-radius:0}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:0;border-bottom-right-radius:0}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:0}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:0}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #d1d1d1}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:1px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #d1d1d1}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #d1d1d1}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#363636;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#363636}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#39a5dc}.panel-primary>.panel-heading{color:#fff;background-color:#39a5dc;border-color:#39a5dc}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#39a5dc}.panel-primary>.panel-heading .badge{color:#39a5dc;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#39a5dc}.panel-success{border-color:#3f9c35}.panel-success>.panel-heading{color:#fff;background-color:#3f9c35;border-color:#3f9c35}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#3f9c35}.panel-success>.panel-heading .badge{color:#3f9c35;background-color:#fff}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#3f9c35}.panel-info{border-color:#00659c}.panel-info>.panel-heading{color:#fff;background-color:#00659c;border-color:#00659c}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#00659c}.panel-info>.panel-heading .badge{color:#00659c;background-color:#fff}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#00659c}.panel-warning{border-color:#ec7a08}.panel-warning>.panel-heading{color:#fff;background-color:#ec7a08;border-color:#ec7a08}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ec7a08}.panel-warning>.panel-heading .badge{color:#ec7a08;background-color:#fff}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ec7a08}.panel-danger{border-color:#c00}.panel-danger>.panel-heading{color:#fff;background-color:#c00;border-color:#c00}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#c00}.panel-danger>.panel-heading .badge{color:#c00;background-color:#fff}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#c00}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:1px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:1px}.well-sm{padding:9px;border-radius:1px}.close{float:right;font-size:18px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:1px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.in{opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.66666667}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.66666667;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:11px;opacity:0}.tooltip.in{opacity:.9}.tooltip.top{margin-top:-3px;padding:8px 0}.tooltip.right{margin-left:3px;padding:0 8px}.tooltip.bottom{margin-top:3px;padding:8px 0}.tooltip.left{margin-left:-3px;padding:0 8px}.tooltip-inner{max-width:220px;padding:3px 8px;color:#fff;text-align:center;background-color:#393f44;border-radius:1px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-8px;border-width:8px 8px 0;border-top-color:#393f44}.tooltip.top-left .tooltip-arrow{bottom:0;right:8px;margin-bottom:-8px;border-width:8px 8px 0;border-top-color:#393f44}.tooltip.top-right .tooltip-arrow{bottom:0;left:8px;margin-bottom:-8px;border-width:8px 8px 0;border-top-color:#393f44}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-8px;border-width:8px 8px 8px 0;border-right-color:#393f44}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-8px;border-width:8px 0 8px 8px;border-left-color:#393f44}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-8px;border-width:0 8px 8px;border-bottom-color:#393f44}.tooltip.bottom-left .tooltip-arrow{top:0;right:8px;margin-top:-8px;border-width:0 8px 8px;border-bottom-color:#393f44}.tooltip.bottom-right .tooltip-arrow{top:0;left:8px;margin-top:-8px;border-width:0 8px 8px;border-bottom-color:#393f44}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:220px;padding:1px;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.66666667;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid #bbb;border-radius:1px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:12px;background-color:#f5f5f5;border-bottom:1px solid #e8e8e8;border-radius:0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:#bbb;bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:#bbb}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:#bbb;top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:#bbb}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-moz-transition:-moz-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{content:" ";display:table}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}/*!
+ *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
+ *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.7.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(../fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.text-overflow-pf{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.alert{border-width:1px;padding-left:47px;padding-right:14px;position:relative;word-wrap:break-word}.alert .alert-link{color:#0088ce}.alert .alert-link:hover{color:#00659c}.alert>.btn.pull-right{margin-top:-3px}.alert>.pficon{font-size:22px;position:absolute;left:13px;top:10px}.alert .close{opacity:.85}.alert .close:focus,.alert .close:hover{opacity:1}.alert .pficon-info{color:#4d5258}.alert-dismissable{padding-right:28px}.alert-dismissable .close{right:-13px;top:1px}.badge{margin-left:6px}.nav-pills>li>a>.badge{margin-left:6px}.breadcrumb{padding-left:0}.breadcrumb>.active strong{font-weight:600}.breadcrumb>li{display:inline}.breadcrumb>li+li:before{color:#9c9c9c;content:"\f105";font-family:FontAwesome;font-size:11px;padding:0 9px 0 7px}.btn{-webkit-box-shadow:0 2px 3px rgba(3,3,3,.1);box-shadow:0 2px 3px rgba(3,3,3,.1)}.btn:active{-webkit-box-shadow:inset 0 2px 8px rgba(3,3,3,.2);box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{background-color:#fafafa!important;background-image:none!important;border-color:#d1d1d1!important;color:#8b8d8f!important;opacity:1}.btn.disabled:active,.btn[disabled]:active,fieldset[disabled] .btn:active{-webkit-box-shadow:none;box-shadow:none}.btn.disabled.btn-link,.btn[disabled].btn-link,fieldset[disabled] .btn.btn-link{background-color:transparent!important;border:0}.btn-danger{background-color:#a30000;background-image:-webkit-linear-gradient(top,#c00 0,#a30000 100%);background-image:-o-linear-gradient(top,#c00 0,#a30000 100%);background-image:linear-gradient(to bottom,#c00 0,#a30000 100%);background-repeat:repeat-x;border-color:#8b0000;color:#fff}.btn-danger.active,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open .dropdown-toggle.btn-danger{background-color:#a30000;background-image:none;border-color:#8b0000;color:#fff}.btn-danger.active,.btn-danger:active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open .dropdown-toggle.btn-danger.focus,.open .dropdown-toggle.btn-danger:focus,.open .dropdown-toggle.btn-danger:hover{background-color:#8a0000;border-color:#670000}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#a30000;border-color:#8b0000}.btn-default{background-color:#f1f1f1;background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258}.btn-default.active,.btn-default:active,.btn-default:focus,.btn-default:hover,.open .dropdown-toggle.btn-default{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.btn-default.active,.btn-default:active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open .dropdown-toggle.btn-default.focus,.open .dropdown-toggle.btn-default:focus,.open .dropdown-toggle.btn-default:hover{background-color:#e5e5e5;border-color:#a9a9a9}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#f1f1f1;border-color:#bbb}.btn-link,.btn-link:active{-webkit-box-shadow:none;box-shadow:none}.btn-primary{background-color:#0088ce;background-image:-webkit-linear-gradient(top,#39a5dc 0,#0088ce 100%);background-image:-o-linear-gradient(top,#39a5dc 0,#0088ce 100%);background-image:linear-gradient(to bottom,#39a5dc 0,#0088ce 100%);background-repeat:repeat-x;border-color:#00659c;color:#fff}.btn-primary.active,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open .dropdown-toggle.btn-primary{background-color:#0088ce;background-image:none;border-color:#00659c;color:#fff}.btn-primary.active,.btn-primary:active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open .dropdown-toggle.btn-primary.focus,.open .dropdown-toggle.btn-primary:focus,.open .dropdown-toggle.btn-primary:hover{background-color:#0077b5;border-color:#004e78}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#0088ce;border-color:#00659c}.btn-group-xs .btn,.btn-group-xs>.btn,.btn-xs{font-weight:400}.caret{font-family:FontAwesome;font-weight:400;height:9px;position:relative;vertical-align:baseline;width:12px}.caret:before{bottom:0;content:"\f107";left:0;line-height:12px;position:absolute;text-align:center;top:-1px;right:0}.dropup .caret:before{content:"\f106"}.dropdown-toggle:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.dropdown-menu .divider{background-color:#ededed;height:1px;margin:4px 1px;overflow:hidden}.dropdown-menu>li>a{border-color:transparent;border-style:solid;border-width:1px 0;padding:1px 10px}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{border-color:#bee1f4}.dropdown-menu>li>a:active{background-color:#0088ce;border-color:#0088ce;color:#fff!important}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#0088ce!important;border-color:#0088ce!important}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{border-color:transparent}.dropdown-menu>.selected>a{background-color:#0088ce;border-color:#0088ce;color:#fff}.dropdown-menu>.selected>a small{color:rgba(255,255,255,.5)}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{border-color:transparent}.dropdown-header{padding-left:10px;padding-right:10px;text-transform:uppercase}.btn-group>.dropdown-menu,.dropdown>.dropdown-menu,.input-group-btn>.dropdown-menu{margin-top:-1px}.dropup .dropdown-menu{margin-bottom:-1px}.dropdown-submenu{position:relative}.dropdown-submenu:hover>a{background-color:#def3ff;border-color:#bee1f4}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropdown-submenu.pull-left{float:none!important}.dropdown-submenu.pull-left>.dropdown-menu{left:auto;margin-left:10px;right:100%}.dropdown-submenu>a{padding-right:20px!important}.dropdown-submenu>a:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:2px}.dropdown-submenu>.dropdown-menu{left:100%;margin-top:0;top:-6px}.dropup .dropdown-submenu>.dropdown-menu{bottom:-5px;top:auto}.open .dropdown-submenu.active>.dropdown-menu{display:block}.dropdown-kebab-pf .btn-link,.dropdown-kebab-pf.btn-group>.btn:first-child{color:#252525;font-size:16px;line-height:1;padding:4px 10px;margin-left:-10px;margin-right:-10px}.dropdown-kebab-pf .btn-link:active,.dropdown-kebab-pf .btn-link:focus,.dropdown-kebab-pf .btn-link:hover,.dropdown-kebab-pf.btn-group>.btn:first-child:active,.dropdown-kebab-pf.btn-group>.btn:first-child:focus,.dropdown-kebab-pf.btn-group>.btn:first-child:hover{color:#0088ce}.dropdown-kebab-pf.btn-group{margin-left:10px}.dropdown-kebab-pf .dropdown-menu{left:-15px;margin-top:11px}.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right{left:auto;right:-15px}.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:after,.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:before{left:auto;right:6px}.dropdown-kebab-pf .dropdown-menu:after,.dropdown-kebab-pf .dropdown-menu:before{border-bottom-color:#bbb;border-bottom-style:solid;border-bottom-width:10px;border-left:10px solid transparent;border-right:10px solid transparent;content:"";display:inline-block;left:6px;position:absolute;top:-11px}.dropdown-kebab-pf .dropdown-menu:after{border-bottom-color:#fff;top:-10px}.dropdown-kebab-pf.dropup .dropdown-menu{margin-bottom:11px;margin-top:0}.dropdown-kebab-pf.dropup .dropdown-menu:after,.dropdown-kebab-pf.dropup .dropdown-menu:before{border-bottom:none;border-top-color:#bbb;border-top-style:solid;border-top-width:10px;bottom:-11px;top:auto}.dropdown-kebab-pf.dropup .dropdown-menu:after{border-top-color:#fff;bottom:-10px}.chars-remaining-pf span{font-weight:600;padding-right:5px}.chars-warn-remaining-pf{color:#c00}.fields-status-pf{color:#8b8d8f;margin-bottom:15px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{-webkit-box-shadow:none;box-shadow:none;color:#8b8d8f}.form-control[disabled]:hover,.form-control[readonly]:hover,fieldset[disabled] .form-control:hover{border-color:#bbb}.form-control:hover{border-color:#7dc3e8}.has-error .form-control:hover{border-color:#900}.has-success .form-control:hover{border-color:#2b542c}.has-warning .form-control:hover{border-color:#bb6106}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label,.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label,.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#363636}.help-block{margin-bottom:0}.input-group .input-group-btn .btn{-webkit-box-shadow:none;box-shadow:none}label{font-weight:600}label.required-pf:after{color:#c00;content:"*";margin-left:3px}span.required-pf{color:#c00}.fields-section-pf{border-color:#ededed;border-style:solid;border-width:1px 0 0;margin-top:25px;padding:15px 0 0}.fields-section-header-pf{border:none;font-size:12px;margin:0;padding-right:10px;width:auto}.fields-section-header-pf .fa-angle-right{cursor:pointer;font-size:14px;width:14px}.label{border-radius:0;font-size:100%;font-weight:600}h1 .label,h2 .label,h3 .label,h4 .label,h5 .label,h6 .label{font-size:75%}.list-group{border-top:1px solid #ededed}.list-group .list-group-item:first-child{border-top:0}.list-group-item{border-left:0;border-right:0}.list-group-item-heading{font-weight:600}.modal-header{background-color:#f5f5f5;border-bottom:none;padding:10px 18px}.modal-header .close{margin-top:2px}.modal-title{font-size:13px;font-weight:700}.modal-footer{border-top:none;margin-top:15px;padding:14px 15px 15px}.modal-footer>.btn{padding-left:10px;padding-right:10px}.modal-footer>.btn>.fa-angle-left{margin-right:5px}.modal-footer>.btn>.fa-angle-right{margin-left:5px}.pager li>a,.pager li>span{background-color:#f1f1f1;background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;font-weight:600;line-height:22px;padding:2px 14px}.open .dropdown-toggle.pager li>a,.open .dropdown-toggle.pager li>span,.pager li>a.active,.pager li>a:active,.pager li>a:focus,.pager li>a:hover,.pager li>span.active,.pager li>span:active,.pager li>span:focus,.pager li>span:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.open .dropdown-toggle.pager li>a,.open .dropdown-toggle.pager li>span,.pager li>a.active,.pager li>a:active,.pager li>span.active,.pager li>span:active{background-image:none}.open .dropdown-toggle.pager li>a.focus,.open .dropdown-toggle.pager li>a:focus,.open .dropdown-toggle.pager li>a:hover,.open .dropdown-toggle.pager li>span.focus,.open .dropdown-toggle.pager li>span:focus,.open .dropdown-toggle.pager li>span:hover,.pager li>a.active.focus,.pager li>a.active:focus,.pager li>a.active:hover,.pager li>a:active.focus,.pager li>a:active:focus,.pager li>a:active:hover,.pager li>span.active.focus,.pager li>span.active:focus,.pager li>span.active:hover,.pager li>span:active.focus,.pager li>span:active:focus,.pager li>span:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.pager li>a.disabled,.pager li>a.disabled.active,.pager li>a.disabled:active,.pager li>a.disabled:focus,.pager li>a.disabled:hover,.pager li>a[disabled],.pager li>a[disabled].active,.pager li>a[disabled]:active,.pager li>a[disabled]:focus,.pager li>a[disabled]:hover,.pager li>span.disabled,.pager li>span.disabled.active,.pager li>span.disabled:active,.pager li>span.disabled:focus,.pager li>span.disabled:hover,.pager li>span[disabled],.pager li>span[disabled].active,.pager li>span[disabled]:active,.pager li>span[disabled]:focus,.pager li>span[disabled]:hover,fieldset[disabled] .pager li>a,fieldset[disabled] .pager li>a.active,fieldset[disabled] .pager li>a:active,fieldset[disabled] .pager li>a:focus,fieldset[disabled] .pager li>a:hover,fieldset[disabled] .pager li>span,fieldset[disabled] .pager li>span.active,fieldset[disabled] .pager li>span:active,fieldset[disabled] .pager li>span:focus,fieldset[disabled] .pager li>span:hover{background-color:#f1f1f1;border-color:#bbb}.pager li>a>.i,.pager li>span>.i{font-size:18px;vertical-align:top;margin:2px 0}.pager li a:active{background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(3,3,3,.125);box-shadow:inset 0 3px 5px rgba(3,3,3,.125);outline:0}.pager .disabled>a,.pager .disabled>a:active,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{background:#f5f5f5;-webkit-box-shadow:none;box-shadow:none;color:#8b8d8f;cursor:not-allowed}.pager .next>a>.i,.pager .next>span>.i{margin-left:5px}.pager .previous>a>.i,.pager .previous>span>.i{margin-right:5px}.pager-sm li>a,.pager-sm li>span{font-weight:400;line-height:16px;padding:1px 10px}.pager-sm li>a>.i,.pager-sm li>span>.i{font-size:12px}.pagination>li>a,.pagination>li>span{background-color:#f1f1f1;background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;cursor:default;font-weight:600;padding:2px 10px}.open .dropdown-toggle.pagination>li>a,.open .dropdown-toggle.pagination>li>span,.pagination>li>a.active,.pagination>li>a:active,.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span.active,.pagination>li>span:active,.pagination>li>span:focus,.pagination>li>span:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.open .dropdown-toggle.pagination>li>a,.open .dropdown-toggle.pagination>li>span,.pagination>li>a.active,.pagination>li>a:active,.pagination>li>span.active,.pagination>li>span:active{background-image:none}.open .dropdown-toggle.pagination>li>a.focus,.open .dropdown-toggle.pagination>li>a:focus,.open .dropdown-toggle.pagination>li>a:hover,.open .dropdown-toggle.pagination>li>span.focus,.open .dropdown-toggle.pagination>li>span:focus,.open .dropdown-toggle.pagination>li>span:hover,.pagination>li>a.active.focus,.pagination>li>a.active:focus,.pagination>li>a.active:hover,.pagination>li>a:active.focus,.pagination>li>a:active:focus,.pagination>li>a:active:hover,.pagination>li>span.active.focus,.pagination>li>span.active:focus,.pagination>li>span.active:hover,.pagination>li>span:active.focus,.pagination>li>span:active:focus,.pagination>li>span:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.pagination>li>a.disabled,.pagination>li>a.disabled.active,.pagination>li>a.disabled:active,.pagination>li>a.disabled:focus,.pagination>li>a.disabled:hover,.pagination>li>a[disabled],.pagination>li>a[disabled].active,.pagination>li>a[disabled]:active,.pagination>li>a[disabled]:focus,.pagination>li>a[disabled]:hover,.pagination>li>span.disabled,.pagination>li>span.disabled.active,.pagination>li>span.disabled:active,.pagination>li>span.disabled:focus,.pagination>li>span.disabled:hover,.pagination>li>span[disabled],.pagination>li>span[disabled].active,.pagination>li>span[disabled]:active,.pagination>li>span[disabled]:focus,.pagination>li>span[disabled]:hover,fieldset[disabled] .pagination>li>a,fieldset[disabled] .pagination>li>a.active,fieldset[disabled] .pagination>li>a:active,fieldset[disabled] .pagination>li>a:focus,fieldset[disabled] .pagination>li>a:hover,fieldset[disabled] .pagination>li>span,fieldset[disabled] .pagination>li>span.active,fieldset[disabled] .pagination>li>span:active,fieldset[disabled] .pagination>li>span:focus,fieldset[disabled] .pagination>li>span:hover{background-color:#f1f1f1;border-color:#bbb}.pagination>li>a>.i,.pagination>li>span>.i{font-size:15px;vertical-align:top;margin:2px 0}.pagination>li>a:active,.pagination>li>span:active{-webkit-box-shadow:inset 0 2px 8px rgba(3,3,3,.2);box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{background-color:#f1f1f1;border-color:#bbb;-webkit-box-shadow:inset 0 2px 8px rgba(3,3,3,.2);box-shadow:inset 0 2px 8px rgba(3,3,3,.2);color:#4d5258;background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{-webkit-box-shadow:none;box-shadow:none;cursor:not-allowed;background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.pagination-sm>li>a,.pagination-sm>li>span{padding:2px 6px;font-size:11px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pagination-sm>li>a,.pagination-sm>li>span{font-weight:400}.pagination-sm>li>a>.i,.pagination-sm>li>span>.i{font-size:12px;margin-top:2px}.content-view-pf-pagination{background-color:#f5f5f5;border:1px solid #d1d1d1;display:flex;flex-wrap:wrap;justify-content:space-between}.content-view-pf-pagination.table-view-pf-pagination{border-top:none}.content-view-pf-pagination .form-group{align-items:baseline;display:flex;flex-grow:1;float:left;margin:5px}@supports (display:flex){.content-view-pf-pagination .form-group{float:none}}.content-view-pf-pagination .form-group:last-child{justify-content:flex-end;float:right}@supports (display:flex){.content-view-pf-pagination .form-group:last-child{float:none}}.content-view-pf-pagination .form-group .pagination-pf-pagesize.bootstrap-select.btn-group,.content-view-pf-pagination .form-group .pagination-pf-pagesize.btn-group{display:flex;float:none;margin-bottom:0;margin-left:0;margin-right:5px;width:auto}.content-view-pf-pagination .form-group .dropdown-menu{min-width:auto}.content-view-pf-pagination .pagination-pf-page{margin-left:10px;margin-right:5px;padding:0 2px 2px;text-align:right;width:2.5em}.content-view-pf-pagination .pagination{display:flex;margin:0 0 0 10px}.content-view-pf-pagination .pagination a{float:none}@supports (display:flex){.content-view-pf-pagination .pagination a{display:block}}.panel-title{font-weight:700}.panel-group .panel{color:#4d5258}.panel-group .panel+.panel{margin-top:-1px}.panel-group .panel-default{border-color:#bbb;border-top-color:#bbb}.panel-group .panel-default .panel-heading{background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.panel-group .panel-default .panel-heading+.panel-collapse .panel-body{border-top:1px solid #d1d1d1}.panel-group .panel-info{border-color:#00659c}.panel-group .panel-info .panel-heading{background-color:#dae5f4}.panel-group .panel-info+.panel-default{border-top-color:#00659c}.panel-group .panel-primary{border-color:#39a5dc}.panel-group .panel-primary .panel-heading{background-color:#def0f9}.panel-group .panel-primary+.panel-default{border-top-color:#39a5dc}.panel-group .panel-primary+.panel-info{border-top-color:#39a5dc}.panel-group .panel-success{border-color:#3f9c35}.panel-group .panel-success .panel-heading{background-color:#e9f4e9}.panel-group .panel-success+.panel-default{border-top-color:#3f9c35}.panel-group .panel-success+.panel-info{border-top-color:#3f9c35}.panel-group .panel-success+.panel-primary{border-top-color:#3f9c35}.panel-group .panel-warning{border-color:#ec7a08}.panel-group .panel-warning .panel-heading{background-color:#fdf2e5}.panel-group .panel-warning+.panel-default{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-info{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-primary{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-success{border-top-color:#ec7a08}.panel-group .panel-danger{border-color:#c00}.panel-group .panel-danger .panel-heading{background-color:#ffe6e6}.panel-group .panel-danger+.panel-default{border-top-color:#c00}.panel-group .panel-danger+.panel-info{border-top-color:#c00}.panel-group .panel-danger+.panel-primary{border-top-color:#c00}.panel-group .panel-danger+.panel-success{border-top-color:#c00}.panel-group .panel-danger+.panel-warning{border-top-color:#c00}.panel-group .panel-title{font-weight:500;line-height:1}.panel-group .panel-title>a{color:#4d5258;font-weight:600}.panel-group .panel-title>a:before{content:"\f107";display:inline-block;font-family:FontAwesome;font-size:13px;margin-right:5px;text-align:center;vertical-align:0;width:8px}.panel-group .panel-title>a:focus{outline:0;text-decoration:none}.panel-group .panel-title>a:hover{text-decoration:none}.panel-group .panel-title>a.collapsed:before{content:"\f105"}.popover{-webkit-box-shadow:0 2px 2px rgba(3,3,3,.08);box-shadow:0 2px 2px rgba(3,3,3,.08);padding:0}.popover-content{color:#4d5258;line-height:18px;padding:10px 14px}.popover-title{border-bottom:none;border-radius:0;color:#4d5258;font-size:13px;font-weight:700;min-height:34px}.popover-title .close{height:22px;position:absolute;right:8px;top:6px}.popover-title.closable{padding-right:30px}@keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}.progress{-webkit-box-shadow:inset 0 0 1px rgba(3,3,3,.25);box-shadow:inset 0 0 1px rgba(3,3,3,.25)}.progress.progress-label-left,.progress.progress-label-top-right{overflow:visible;position:relative}.progress.progress-label-left{margin-left:40px}.progress.progress-sm{height:14px;margin-bottom:14px}.progress.progress-xs{height:6px;margin-bottom:6px}td>.progress:first-child:last-child{margin-bottom:0;margin-top:3px}.progress-bar{box-shadow:none}.progress-label-left .progress-bar span,.progress-label-right .progress-bar span,.progress-label-top-right .progress-bar span{color:#363636;position:absolute;text-align:right}.progress-label-left .progress-bar span{font-size:14px;left:-40px;top:0;width:35px}.progress-label-right .progress-bar span,.progress-label-top-right .progress-bar span{font-size:11px;overflow:hidden;right:0;text-overflow:ellipsis;white-space:nowrap}.progress-label-right .progress-bar span strong,.progress-label-top-right .progress-bar span strong{font-weight:600}.progress-label-right .progress-bar span{max-width:85px;top:0}.progress-label-top-right .progress-bar span{max-width:47%;top:-30px}.progress-label-left.progress-sm .progress-bar span,.progress-label-top-right.progress-sm .progress-bar span{font-size:12px}.progress-sm .progress-bar{line-height:14px}.progress-xs .progress-bar{line-height:6px}.progress-bar-remaining{background:0 0}.progress-container{position:relative}.progress-container.progress-description-left{padding-left:90px}.progress-container.progress-label-right{padding-right:90px}.progress-description{margin-bottom:10px;max-width:52%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.progress-description .count{font-size:20.004px;font-weight:300;line-height:1;margin-right:5px}.progress-description .fa,.progress-description .pficon{font-size:14px;margin-right:3px}.progress-description-left .progress-description{left:0;margin-bottom:0;max-width:85px;position:absolute;top:0}.progress-description .tooltip{white-space:normal}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:2px 10px 3px}.table>tbody>tr>td>a:hover,.table>tbody>tr>th>a:hover,.table>tfoot>tr>td>a:hover,.table>tfoot>tr>th>a:hover,.table>thead>tr>td>a:hover,.table>thead>tr>th>a:hover{text-decoration:none}.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>th{font-family:"Open Sans";font-style:normal;font-weight:600}.table>thead{background-clip:padding-box;background-color:#f5f5f5;background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.table-bordered{border:1px solid #d1d1d1}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #d1d1d1}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:1px}.table-striped>tbody>tr:nth-of-type(even){background-color:#f5f5f5}.table-striped>tbody>tr:nth-of-type(odd){background-color:transparent}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#def3ff;border-bottom-color:#7dc3e8}.table-treegrid span.indent{margin-left:10px;margin-right:10px}.table-treegrid span.icon{display:inline-block;font-size:13px;margin-right:5px;min-width:10px;text-align:center}.table-treegrid span.collapse-icon,.table-treegrid span.expand-icon{cursor:pointer}.table-treegrid>tbody>tr.odd{background-color:#f5f5f5}.nav-tabs{font-size:14px}.nav-tabs>li>a{color:#4d5258;margin-right:-1px;padding-bottom:5px;padding-top:5px}.nav-tabs>li>a:active,.nav-tabs>li>a:focus,.nav-tabs>li>a:hover{background:0 0;border-color:#ededed;color:#252525}.nav-tabs>li>.dropdown-menu{border-top:0;border-color:#ededed}.nav-tabs>li>.dropdown-menu.pull-right{right:-1px}.nav-tabs+.nav-tabs-pf,.nav-tabs.nav-tabs-pf-secondary{font-size:12px}.nav-tabs+.nav-tabs-pf>li:first-child>a,.nav-tabs.nav-tabs-pf-secondary>li:first-child>a{padding-left:15px}.nav-tabs+.nav-tabs-pf>li:first-child>a:before,.nav-tabs.nav-tabs-pf-secondary>li:first-child>a:before{left:15px!important}.nav-tabs .open>a,.nav-tabs .open>a:focus,.nav-tabs .open>a:hover{background-color:transparent;border-color:#ededed}@media (min-width:768px){.nav-tabs-pf.nav-justified{border-bottom:1px solid #ededed}}.nav-tabs-pf.nav-justified>li:first-child>a{padding-left:15px}.nav-tabs-pf.nav-justified>li>a{border-bottom:0}.nav-tabs-pf.nav-justified>li>a:before{left:0!important;right:0!important}.nav-tabs-pf>li{margin-bottom:0}.nav-tabs-pf>li.active>a:before{background:#0088ce;bottom:-1px;content:"";display:block;height:2px;left:15px;position:absolute;right:15px}.nav-tabs-pf>li.active>a,.nav-tabs-pf>li.active>a:active,.nav-tabs-pf>li.active>a:focus,.nav-tabs-pf>li.active>a:hover{background-color:transparent;border:0!important;color:#0088ce}.nav-tabs-pf>li.active>a:active:before,.nav-tabs-pf>li.active>a:before,.nav-tabs-pf>li.active>a:focus:before,.nav-tabs-pf>li.active>a:hover:before{background:#0088ce}.nav-tabs-pf>li:first-child>a{padding-left:0}.nav-tabs-pf>li:first-child>a:before{left:0!important}.nav-tabs-pf>li>a{border:0;line-height:1;margin-right:0;padding-bottom:10px;padding-top:10px}.nav-tabs-pf>li>a:active:before,.nav-tabs-pf>li>a:focus:before,.nav-tabs-pf>li>a:hover:before{background:#bbb;bottom:-1px;content:"";display:block;height:2px;left:15px;position:absolute;right:15px}.nav-tabs-pf>li>.dropdown-menu{left:15px;margin-top:1px}.nav-tabs-pf>li>.dropdown-menu.pull-right{left:auto;right:15px}.nav-tabs-pf .open>a,.nav-tabs-pf .open>a:focus,.nav-tabs-pf .open>a:hover{background-color:transparent}.tooltip{font-size:12px;line-height:1.4}.tooltip-inner{padding:7px 12px;text-align:left}.h1,.h2,h1,h2{font-weight:300}.page-header .actions{margin-top:8px}.page-header .actions a>.pficon{margin-right:4px}@media (min-width:767px){.page-header-bleed-left{margin-left:-20px}.page-header-bleed-right{margin-right:-20px}.page-header-bleed-right .actions{margin-right:20px}}
+/*# sourceMappingURL=rcue.min.css.map */
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/dist/css/rcue.min.css.map b/themes/src/main/node_modules/rcue/dist/css/rcue.min.css.map
new file mode 100644
index 0000000..2bfb224
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/css/rcue.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["node_modules/patternfly/dist/less/fonts.less","dist/css/rcue.css","node_modules/bootstrap/less/normalize.less","node_modules/bootstrap/less/print.less","node_modules/bootstrap/less/glyphicons.less","node_modules/bootstrap/less/scaffolding.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","node_modules/patternfly/dist/less/variables.less","node_modules/bootstrap/less/mixins/tab-focus.less","node_modules/bootstrap/less/carousel.less","node_modules/bootstrap/less/thumbnails.less","node_modules/bootstrap/less/mixins/image.less","node_modules/bootstrap/less/type.less","node_modules/bootstrap/less/mixins/text-emphasis.less","node_modules/bootstrap/less/mixins/background-variant.less","node_modules/bootstrap/less/mixins/text-overflow.less","node_modules/bootstrap/less/code.less","node_modules/bootstrap/less/grid.less","node_modules/bootstrap/less/mixins/grid.less","node_modules/bootstrap/less/mixins/grid-framework.less","node_modules/bootstrap/less/tables.less","node_modules/bootstrap/less/mixins/table-row.less","node_modules/bootstrap/less/forms.less","node_modules/bootstrap/less/mixins/forms.less","node_modules/patternfly/dist/less/bootstrap-mixin-overrides.less","node_modules/bootstrap/less/buttons.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap/less/button-groups.less","node_modules/bootstrap/less/component-animations.less","node_modules/bootstrap/less/dropdowns.less","node_modules/bootstrap/less/mixins/nav-divider.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/input-groups.less","node_modules/bootstrap/less/navs.less","node_modules/bootstrap/less/navbar.less","node_modules/bootstrap/less/mixins/nav-vertical-align.less","node_modules/bootstrap/less/utilities.less","node_modules/font-awesome/less/bordered-pulled.less","node_modules/bootstrap/less/breadcrumbs.less","node_modules/bootstrap/less/pagination.less","node_modules/bootstrap/less/mixins/pagination.less","node_modules/bootstrap/less/pager.less","node_modules/bootstrap/less/labels.less","node_modules/bootstrap/less/mixins/labels.less","node_modules/bootstrap/less/badges.less","node_modules/bootstrap/less/jumbotron.less","node_modules/bootstrap/less/alerts.less","node_modules/bootstrap/less/mixins/alerts.less","node_modules/bootstrap/less/progress-bars.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/progress-bar.less","node_modules/bootstrap/less/media.less","node_modules/bootstrap/less/list-group.less","node_modules/bootstrap/less/mixins/list-group.less","node_modules/bootstrap/less/panels.less","node_modules/bootstrap/less/mixins/panels.less","node_modules/bootstrap/less/responsive-embed.less","node_modules/bootstrap/less/wells.less","node_modules/bootstrap/less/close.less","node_modules/bootstrap/less/modals.less","node_modules/bootstrap/less/tooltip.less","node_modules/bootstrap/less/mixins/reset-text.less","node_modules/bootstrap/less/popovers.less","node_modules/bootstrap/less/mixins/clearfix.less","node_modules/bootstrap/less/mixins/center-block.less","node_modules/bootstrap/less/mixins/hide-text.less","node_modules/bootstrap/less/responsive-utilities.less","node_modules/bootstrap/less/mixins/responsive-visibility.less","node_modules/font-awesome/less/path.less","node_modules/font-awesome/less/core.less","node_modules/font-awesome/less/larger.less","node_modules/font-awesome/less/fixed-width.less","node_modules/font-awesome/less/list.less","node_modules/font-awesome/less/animated.less","node_modules/font-awesome/less/rotated-flipped.less","node_modules/font-awesome/less/mixins.less","node_modules/font-awesome/less/stacked.less","node_modules/font-awesome/less/icons.less","node_modules/font-awesome/less/variables.less","node_modules/font-awesome/less/screen-reader.less","node_modules/patternfly/dist/less/mixins.less","node_modules/patternfly/dist/less/alerts.less","node_modules/patternfly/dist/less/badges.less","node_modules/patternfly/dist/less/breadcrumbs.less","node_modules/patternfly/dist/less/buttons.less","node_modules/patternfly/dist/less/dropdowns.less","node_modules/patternfly/dist/less/forms.less","node_modules/patternfly/dist/less/labels.less","node_modules/patternfly/dist/less/list-group.less","node_modules/patternfly/dist/less/modals.less","node_modules/patternfly/dist/less/pager.less","node_modules/patternfly/dist/less/pagination.less","node_modules/patternfly/dist/less/panels.less","node_modules/patternfly/dist/less/popovers.less","node_modules/patternfly/dist/less/progress-bars.less","node_modules/patternfly/dist/less/tables.less","node_modules/patternfly/dist/less/tabs.less","node_modules/patternfly/dist/less/tooltip.less","node_modules/patternfly/dist/less/type.less"],"names":[],"mappings":"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A,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,EFT+B,yBEzB/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GFA+B,yBElC/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GFS+B,0BE3C/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GCnEJ,MACE,iBAAA,YAEF,QACE,YAAA,KACA,eAAA,KAC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lB,QDlhBY,oBAAU,QCgMlB,QD/LmB,+BAAU,QCYlB,QDXM,6BAAU,QCclB,QDbJ,iBAAU,QCqWlB,QDpWgB,yBAAU,QCwelB,QDteC,kBADM,wBACI,QCsgBlB,QDrgBS,mBAAU,QCggBlB,QD/fS,oBAAU,QCwYlB,QDvYI,gBAAU,QC2YlB,QD1YQ,gBAAU,QC4PlB,QD3Pc,sBAAU,QCoUlB,QDnUQ,sBAAU,QCitBlB,QDhtBS,uBAAU,QC+sBlB,QD9sBM,qBAAU,QCgtBlB,QD/sBK,kBAAU,QCyelB,QDxeS,mBAAU,QCwBlB,QDvBI,eAAU,QCymBlB,QDxmBS,gBAAU,QCymBlB,QDxmBQ,gBAAU,QCyDlB,QDxDY,oBAAU,QCyDlB,QDxDK,iBAAU,QC+dlB,QD9dS,kBAAU,QC2ElB,QD1EM,gBAAU,QC0PlB,QDzPQ,gBAAU,QCiDlB,QDhDU,kBAAU,QC0VlB,QDzVa,uBAAU,QCwmBlB,QDvmBO,sBAAU,QCwmBlB,QDvmBQ,sBAAU,QCpClB,QDqCU,wBAAU,QCvClB,QDwCO,uBAAU,QCrClB,QDsCU,yBAAU,QCxClB,QDyCD,gBAAU,QC+WlB,QD9WU,kBACC,mBAAU,QC2alB,QD1aO,kBAAU,QCsUlB,QDrUc,wBAAU,QCkrBlB,QDhrBC,iBADA,iBAEI,qBAAU,QC0blB,QDzbK,kBAAU,QCkblB,QDjbY,sBAAU,QCwXlB,QDvXI,kBAAU,QCtDlB,QDuDM,gBAAU,QCmnBlB,QDlnBQ,gBACW,2BAAU,QC+alB,QD9aO,0BAAU,QC8flB,QD7fQ,0BAAU,QC+ElB,QD9EA,kBAAU,QCzBlB,QD0Be,yBAAU,QCmjBlB,QDljBQ,yBAAU,QCqLlB,QDpLG,oBAAU,QClBlB,QDmBI,gBAAU,QCsblB,QDrbS,iBAAU,QCgalB,QD/ZO,gBAAU,QCmjBlB,QDljBW,mBAAU,QC+NlB,QD9Na,wBAAU,QCgLlB,QD/KQ,wBAAU,QC4iBlB,QD3iBC,iBAAU,QC+IlB,QD9Ie,wBAAU,QCyElB,QDxES,yBAAU,QCyElB,QDxEM,uBAAU,QCkblB,QDjbS,wBAAU,QCuXlB,QDtXQ,wBAAU,QC2lBlB,QD1lBQ,wBAAU,QC2DlB,QD1DW,2BAAU,QCyblB,QDxbI,uBAAU,QC0SlB,QDzSO,sBAAU,QC0GlB,QDzGY,0BAAU,QCulBlB,QDtlBQ,0BAAU,QCuDlB,QDtDH,eAAU,QCnClB,QDoCe,sBAAU,QCnDlB,QDoDS,uBAAU,QCnDlB,QDoDK,oBAAU,QCnDlB,QDoDU,sBAAU,QCvDlB,QDwDU,wBACP,iBAAU,QC4dlB,QD3dS,kBAAU,QC8IlB,QD7IU,oBAAU,QCsFlB,QDrFI,gBAAU,QC+ZlB,QD9ZS,iBAAU,QCoWlB,QDnWW,oBAAU,QCpDlB,QDqDkB,8BAAU,QCuIlB,QDtIN,gBAAU,QCkNlB,QDjNQ,gBAAU,QC0SlB,QDzSQ,gBAAU,QC6KlB,QD5KO,eAAU,QCyIlB,QDxIc,qBAAU,QCyIlB,QDvImB,gCADb,mBACuB,QCiIlB,QDhIP,iBAAU,QC+YlB,QD9YW,oBAAU,QCAlB,QDCM,kBAAU,QCoalB,QDnaS,mBAAU,QCgElB,QD/DO,kBAAU,QC6TlB,QD5TY,sBAAU,QCuClB,QDtCU,wBAAU,QCmClB,QDlCG,mBAAU,QC+alB,QD9ac,yBAAU,QCkdlB,QDjdC,kBAAU,QC0KlB,QDzKa,uBAAU,QC2KlB,QD1KK,oBAAU,QC3ElB,QD4EQ,oBAAU,QC7ElB,QD8EW,uBACF,qBAAU,QClElB,QDmEa,0BAAU,QC+kBlB,QD9kBS,2BAAU,QC4HlB,QD3HK,wBAAU,QCTlB,QDUD,eAAU,QC2QlB,QDzQS,gBADC,iBACS,QC6ClB,QD5CY,oBAAU,QCkDlB,QDjDW,uBAAU,QCsiBlB,QDriBU,yBAAU,QCoiBlB,QDniBI,qBAAU,QC2elB,QD1eM,mBAAU,QC8NlB,QD7NS,oBAAU,QCoclB,QDnce,2BAAU,QCuRlB,QDtRG,sBAAU,QC6hBlB,QD5hBW,yBAAU,QCsGlB,QDrGE,mBAAU,QC8blB,QD7bO,kBAAU,QCqjBlB,QDpjBe,yBAAU,QCgLlB,QD/KC,kBAAU,QCukBlB,QDtkBS,mBAAU,QCqQlB,QDpQM,iBAAU,QCiWlB,QDhWW,oBAAU,QC2dlB,QD1dU,sBAAU,QCjDlB,QDkDU,wBAAU,QC+VlB,QD9VG,mBAAU,QCsjBlB,QDrjBW,sBACF,oBAAU,QCgGlB,QD/FM,kBAAU,QCoKlB,QDnKQ,kBAAU,QC0jBlB,QDzjBa,uBAAU,QCoClB,QDnCC,gBACD,eAAU,QC+YlB,QD9YU,iBAAU,QCoMlB,QDnMW,oBAAU,QCrDlB,QDsDI,gBAAU,QChFlB,QDiFe,uBAAU,QCrBlB,QDsBS,wBAAU,QCoLlB,QDnLO,uBAAU,QCkLlB,QDjLM,qBAAU,QCmLlB,QDlLU,uBAAU,QC+KlB,QD9Kc,6BAAU,QCrIlB,QDsIS,8BAAU,QCjIlB,QDkIK,2BAAU,QCjIlB,QDkIU,6BAAU,QCzIlB,QD0IJ,iBAAU,QC2JlB,QD1JS,kBAAU,QC6lBlB,QD5lBO,iBAAU,QCqelB,QDpeS,kBAAU,QCyGlB,QDxGW,qBAAU,QCzElB,QD0ES,sBAAU,QClIlB,QDmIG,iBACA,iBAAU,QCijBlB,QDhjBQ,iBACD,gBAAU,QC4OlB,QD3OS,iBAAU,QCdlB,QDeQ,iBAAU,QC0GlB,QDzGM,eACK,oBAAU,QC6XlB,QD5XI,gBACG,mBAAU,QC2FlB,QD1FU,qBAAU,QC6SlB,QD3SO,oBADJ,gBACc,QCqGlB,QDpGM,kBAAU,QCgblB,QD7aM,gBAFG,mBACA,mBACO,QClIlB,QDmIW,mBAAU,QCsOlB,QDrOQ,mBAAU,QCoOlB,QDnOc,yBAAU,QC+blB,QD9bI,qBAAU,QC2gBlB,QD1gBI,iBAAU,QCuclB,QDtcQ,iBAAU,QCyOlB,QDxOQ,iBAAU,QC6flB,QD5fY,qBAAU,QCmTlB,QDlTe,4BAAU,QCoTlB,QDnTU,8BAAU,QCgIlB,QD/HC,uBAAU,QC4HlB,QD3HE,iBAAU,QCqQlB,QDpQa,sBAAU,QCpFlB,QDqFM,oBAAU,QC9ElB,QD+EU,sBAAU,QCrFlB,QDsFS,uBAAU,QCrFlB,QDsFI,mBAAU,QChClB,QDkCK,gBADI,oBACM,QC0YlB,QDxYa,qBADA,qBACU,QC8YlB,QD5YO,oBADD,mBACW,QC2YlB,QD1YQ,oBAAU,QCUlB,QDTQ,oBAAU,QCuMlB,QDtMW,uBACP,gBAAU,QCqflB,QDnfS,iBADA,iBACU,QCoFlB,QDnFY,qBACC,sBAAU,QC+alB,QD9aO,qBAAU,QC7ClB,QD8CS,sBAAU,QC1ClB,QD4CE,gBADC,iBACS,QCpIlB,QDqIW,mBAAU,QC6WlB,QD5WS,oBAAU,QCyelB,QDveS,qBADJ,iBACc,QCrElB,QDsEU,uBAAU,QCqLlB,QDpLK,oBAAU,QCGlB,QDFc,0BAAU,QCnElB,QDoEM,wBAAU,QCnElB,QDoEG,mBAAU,QCiflB,QDhfY,uBAAU,QC8YlB,QD7YK,oBAAU,QCyZlB,QDxZM,kBAAU,QC9JlB,QD+JQ,kBAAU,QClElB,QDmES,mBAAU,QC1ClB,QD2CY,uBAAU,QC8BlB,QD7BO,sBAAU,QC1IlB,QD2IQ,sBAAU,QCsHlB,QDrHO,qBAAU,QCrOlB,QDsOK,kBAAU,QC4MlB,QD3Ma,uBAAU,QCUlB,QDTC,gBAAU,QC3KlB,QD4KY,oBAAU,QCuFlB,QDtFW,uBAAU,QC2QlB,QD1Qc,6BAAU,QCrOlB,QDsOS,8BAAU,QCrOlB,QDsOK,2BAAU,QCrOlB,QDsOU,6BAAU,QCzOlB,QD0OC,sBAAU,QCrOlB,QDsOS,uBAAU,QCrOlB,QDsOK,oBAAU,QCrOlB,QDsOU,sBAAU,QCzOlB,QD0OK,mBAAU,QCpDlB,QDqDO,kBAAU,QC4IlB,QD3IQ,kBAAU,QCwYlB,QDvYc,wBACN,kBAAU,QCuMlB,QDtMU,oBAAU,QCzGlB,QD0GU,sBAAU,QCyQlB,QDxQS,uBAAU,QCyQlB,QDxQI,mBAAU,QC+VlB,QD9VO,kBAAU,QC9GlB,QD+GY,sBACL,iBAAU,QCoRlB,QDnRa,sBAAU,QC+ClB,QD9CM,oBAAU,QCmBlB,QDlBa,yBAAU,QCoBlB,QDnBE,mBAAU,QCqUlB,QDpUQ,mBAAU,QC2BlB,QD1BM,iBAAU,QCgLlB,QD/KU,mBAAU,QC2BlB,QD1BW,sBAAU,QCuHlB,QDtHI,kBAAU,QCMlB,QDLgB,0BAAU,QCIlB,QDHE,oBAAU,QC6XlB,QD5XI,gBAAU,QChHlB,QDiHkB,0BACL,qBAAU,QCuQlB,QDtQc,2BACD,0BACH,uBAAU,QCsVlB,QDrVW,0BAAU,QCwIlB,QDvIF,gBAAU,QChGlB,QDiGa,qBAAU,QCvHlB,QDyHW,wBADN,kBACgB,QCtJlB,QDuJI,oBAAU,QCyOlB,QDxOI,gBAAU,QC0FlB,QDzFe,uBAAU,QC1DlB,QD2DQ,uBAAU,QCkWlB,QDjWM,qBAAU,QC4VlB,QD3VK,kBAAU,QClElB,QDmEc,wBAAU,QCgOlB,QD/NM,sBAAU,QC2JlB,QD1Jc,4BAAU,QC2JlB,QD1JF,kBAAU,QCsRlB,QDrRY,sBAAU,QC5LlB,QD6Le,6BAAU,QCxBlB,QDyBH,kBAAU,QCuPlB,QDtPQ,kBAAU,QC6IlB,QD5IqB,+BAAU,QC9JlB,QD+JS,gCAAU,QC9JlB,QD+JK,6BAAU,QC9JlB,QD+JU,+BAAU,QClKlB,QDmKN,iBAAU,QC8DlB,QD7DO,gBAAU,QCrHlB,QDsHU,kBAAU,QCvSlB,QDwSY,sBAAU,QC2ZlB,QD1ZM,oBAAU,QChNlB,QDiNU,sBAAU,QC7FlB,QD8FQ,sBAAU,QC7FlB,QD8FQ,sBAAU,QC+OlB,QD9OS,uBAAU,QCiMlB,QDhMG,kBAAU,QC6WlB,QD5Wc,wBAAU,QC0IlB,QDzIU,0BAAU,QC0IlB,QDzIE,oBAAU,QCqFlB,QDpFU,sBAAU,QCmFlB,QDlFU,wBAAU,QCnLlB,QDoLS,yBAAU,QC0KlB,QDzKe,gCAAU,QCpFlB,QDqFA,wBAAU,QCwPlB,QDvPG,mBAAU,QCjJlB,QDmJoB,+BADR,uBACkB,QC/MlB,QDiNM,6BADR,qBACkB,QC9MlB,QDgNW,gCADR,wBACkB,QCjNlB,QDmNT,eADC,gBACS,QCvGlB,QDwGQ,eAAU,QChClB,QDiCW,kBACH,eAAU,QCqYlB,QDnYQ,eADE,iBACQ,QC4ClB,QD3CQ,eAGA,eAFA,eACA,eACU,QCgDlB,QD9CW,kBACH,eAFE,iBAEQ,QCiNlB,QD/MQ,eADA,eACU,QC+ClB,QD9CY,mBACJ,eAAU,QC3PlB,QD4PS,gBAAU,QChGlB,QDiGa,qBAAU,QCpFlB,QDqFa,0BAAU,QC0PlB,QDzPS,2BAAU,QC0PlB,QDzPQ,2BAAU,QC0PlB,QDzPS,4BAAU,QC0PlB,QDzPQ,4BAAU,QC6PlB,QD5PS,6BAAU,QC6PlB,QD5PA,qBAAU,QCkUlB,QDjUU,uBAAU,QC8TlB,QD7TW,0BAAU,QCyalB,QDxaC,mBAAU,QCsalB,QDraK,gBAAU,QC2ZlB,QD1Ze,uBAAU,QC2ZlB,QD1ZS,wBAAU,QCoalB,QDnaG,mBAAU,QCxJlB,QDyJe,0BAAU,QC8PlB,QD7PG,qBAAU,QCgBlB,QDfK,kBAAU,QCpFlB,QDqFK,eAAU,QC3WlB,QD4Wc,qBAAU,QC/RlB,QDgSe,4BAAU,QC/RlB,QDgSF,kBAAU,QC+UlB,QD9Ue,yBAAU,QC+UlB,QD9UU,2BAAU,QCgDlB,QD/CM,yBAAU,QCkDlB,QDjDU,2BAAU,QC+ClB,QD9CS,4BAAU,QC+ClB,QD9CH,iBAAU,QCjWlB,QDkWU,mBAAU,QCmYlB,QDlYQ,mBAAU,QC7WlB,QD8WM,iBAAU,QCkClB,QDjCW,oBAAU,QC5KlB,QD6KK,iBAAU,QCgNlB,QD/Ma,sBAAU,QCxFlB,QDyFI,kBAAU,QC4TlB,QD3TQ,kBAAU,QCtIlB,QDuIM,gBAAU,QC6ClB,QD5CU,kBACE,oBAAU,QC5DlB,QD6DK,iBAAU,QC8PlB,QD7PS,kBAAU,QCuElB,QDtES,mBAAU,QC9WlB,QD+WI,eAAU,QCtSlB,QDuSO,cAAU,QCiWlB,QDhWW,iBAAU,QCuWlB,QDtWS,kBAAU,QC+IlB,QD9IW,qBAAU,QCkFlB,QDjFa,0BAAU,QC6NlB,QD5Nc,gCAAU,QC/WlB,QDgXO,+BAAU,QCjXlB,QDmXQ,+BADR,uBACkB,QCzRlB,QD0RC,wBAAU,QCnMlB,QDoMM,sBAAU,QCiWlB,QDhWU,wBAAU,QCoVlB,QDlVD,eADS,wBACC,QC0SlB,QDzSkB,yBAAU,QC0GlB,QDzGQ,yBAAU,QC4MlB,QD3MA,iBAAU,QCsLlB,QDrLkB,2BAAU,QCzLlB,QD0LE,qBAAU,QCoWlB,QDnWK,kBAAU,QC8DlB,QD5DM,gBADO,uBAED,sBAAU,QC8SlB,QD5SY,0BADF,wBACY,QC1FlB,QD2FD,iBAAU,QCsWlB,QDrWS,kBAAU,QClGlB,QDmGQ,kBAAU,QCgHlB,QD/Ge,yBAAU,QCiHlB,QDhHa,8BAAU,QCyNlB,QDxNC,uBAAU,QCuNlB,QDtNM,qBAAU,QC/NlB,QDgOG,gBAAU,QC5NlB,QD6NiB,yBAAU,QC2ElB,QD1ES,0BAAU,QCyElB,QDxEA,kBAAU,QCvNlB,QDwNQ,kBAAU,QCzClB,QD0CU,oBAAU,QCpClB,QDqCG,eAAU,QCtLlB,QDuLa,oBAAU,QC7UlB,QD8UK,iBAAU,QC1RlB,QD2RM,eAAU,QCsDlB,QDrDU,iBAAU,QCmLlB,QDlLO,gBAAU,QCrPlB,QDsPS,iBAAU,QCrPlB,QDsPU,mBAAU,QC7WlB,QD8We,0BAAU,QC7WlB,QD8WD,iBAAU,QC0LlB,QDzLe,wBAAU,QC0LlB,QDzLG,mBAAU,QCyFlB,QDxFW,sBACP,eAAU,QCzUlB,QD0UQ,eACC,gBAAU,QC+MlB,QD9MQ,gBAAU,QC4PlB,QD3PW,mBAAU,QCuKlB,QDtKW,sBAAU,QCtPlB,QDuPQ,sBAAU,QCiKlB,QDhKM,oBAAU,QC9PlB,QD+PU,sBAAU,QC/LlB,QDgMS,uBAAU,QCxLlB,QDyLS,wBAAU,QCrMlB,QDsMa,6BAAU,QC/LlB,QDkMG,wBAFA,wBACE,0BACQ,QCxMlB,QD0MU,0BADJ,sBACc,QC9MlB,QDgNM,wBADA,wBACU,QC/MlB,QDgNQ,wBACA,wBAAU,QCpMlB,QDqMO,uBAAU,QCjNlB,QDkNC,gBAAU,QCuRlB,QDtRW,mBAAU,QC5SlB,QD6SS,oBAAU,QC9ElB,QD+ES,qBACA,qBAGA,qBAFC,sBACH,mBACY,QCnElB,QDoEa,0BAAU,QC/TlB,QDgUJ,cAEG,iBADK,sBACK,QCqDlB,QDnDS,kBADJ,cACc,QCnQlB,QDoQY,sBAAU,QCzKlB,QD0KC,eAAU,QC3KlB,QD8KgB,uBAFQ,+BACV,qBACY,QCxJlB,QDyJU,yBAAU,QC2KlB,QD1KH,cAAU,QCiClB,QDhCY,kBACA,kBAAU,QC0QlB,QDxQa,uBADP,gBACiB,QCVlB,QDYU,yBADP,kBACiB,QCXlB,QDYE,mBAAU,QC1IlB,QD2IY,uBAAU,QClVlB,QDmVG,kBAAU,QCjJlB,QDkJW,qBAAU,QCblB,QDcM,mBAAU,QC+FlB,QD9FU,qBAAU,QCuElB,QDtEe,4BAAU,QCuElB,QDtEJ,gBAAU,QCzZlB,QD2ZY,oBADK,yBACK,QC5MlB,QD6MG,eAAU,QC0MlB,QDzMe,sBAAU,QCxalB,QDyaE,gBAAU,QCIlB,QDHc,sBAAU,QCuFlB,QDtFI,kBAAU,QC2MlB,QD1MM,gBAAU,QC+QlB,QD9Qe,uBAAU,QCzClB,QD0CC,gBAAU,QCwPlB,QDvPc,sBAAU,QCrZlB,QDsZI,kBAAU,QCvBlB,QDwBe,yBAAU,QC3LlB,QD4LE,mBAAU,QC5XlB,QD6Xc,yBAAU,QChYlB,QDiYM,uBAAU,QCnYlB,QDoYI,mBAAU,QCtYlB,QDuYU,qBAAU,QClYlB,QDmYQ,qBAAU,QClYlB,QDmYS,sBAAU,QC3blB,QD4bU,wBAAU,QC3blB,QD4bC,iBAAU,QC+KlB,QD9KY,qBAAU,QCnVlB,QDoVC,cAAU,QC9dlB,QD+dgB,sBAAU,QC5RlB,QD6RS,uBAAU,QC/ClB,QDgDU,yBAAU,QC9blB,QD+bK,sBAAU,QCtflB,QDufO,qBAAU,QC/BlB,QDgCS,sBAAU,QCzHlB,QD0HI,kBAAU,QCvIlB,QDwIe,yBAAU,QCvIlB,QDwIK,sBAAU,QC4JlB,QD3JO,qBAAU,QC4JlB,QD3JM,mBAAU,QCxclB,QDycI,eAAU,QCjblB,QDkbY,mBAAU,QCvJlB,QDwJU,qBAAU,QC3gBlB,QD4gBC,cAAU,QC7ZlB,QDgaS,eAFG,kBACA,kBACO,QCzKlB,QD0Ka,oBAAU,QCpGlB,QDqGU,sBAAU,QCxblB,QDybY,0BAAU,QC5WlB,QD6WE,oBAAU,QC9VlB,QD+VQ,oBAAU,QC9PlB,QD+PO,mBAAU,QCrJlB,QDsJO,kBAAU,QCelB,QDdc,wBAAU,QC2BlB,QD1BO,uBAAU,QCoClB,QDnCK,oBAAU,QCqClB,QDpCS,qBAAU,QC5alB,QD6ac,2BAAU,QC9alB,QD+aA,mBAAU,QC/VlB,QDgWK,gBAAU,QCoBlB,QDnBe,uBAAU,QC8KlB,QD7KO,sBAAU,QC/FlB,QDgGS,uBAAU,QC6ElB,QD5EM,qBAAU,QC9MlB,QD+MI,iBAAU,QC+KlB,QD9KO,gBAAU,QC7HlB,QD8HW,mBAAU,QCnHlB,QDoHS,oBACG,uBAAU,QCkIlB,QDjIY,2BAAU,QCkIlB,QDjIK,wBAAU,QC0KlB,QDzKO,uBAAU,QClIlB,QDmIO,sBAAU,QCyKlB,QDxKS,uBAAU,QCnIlB,QDoIU,yBAAU,QClIlB,QDmIQ,yBAAU,QCpIlB,QDqIC,kBAAU,QC1GlB,QD2GY,sBAAU,QC7QlB,QD8Qe,6BAAU,QC1UlB,QD2UE,uBAAU,QCzElB,QD0EK,oBAAU,QCkLlB,QDjLM,kBAAU,QCXlB,QDYW,qBAAU,QCuJlB,QDtJS,sBAAU,QCwJlB,QDtJC,eADE,iBACQ,QC/flB,QDggBY,mBAAU,QC4JlB,QD3JM,iBAAU,QC8GlB,QD7GS,kBAAU,QCwDlB,QDvDQ,kBAAU,QC9IlB,QDgJc,wBADV,cACoB,QC0LlB,QDzLS,yBAAU,QCjHlB,QDkHG,oBAAU,QCrHlB,QDsHY,wBAAU,QCnWlB,QDoWK,qBAEG,wBADL,mBACe,QC/gBlB,QDghBK,qBACa,kCAAU,QC9gBlB,QD+gBL,qBACG,wBAAU,QClhBlB,QDmhBK,qBACM,2BAAU,QCnhBlB,QDohBE,qBACI,yBAAU,QCxhBlB,QDyhBQ,yBAAU,QC3IlB,QD4IG,oBAAU,QC3OlB,QD4OY,wBAAU,QCxIlB,QDyIU,0BAAU,QCxIlB,QDyIK,uBAAU,QCwBlB,QDvBU,yBAAU,QCwBlB,QDvBC,kBAAU,QC/dlB,QDgegB,0BAAU,QClelB,QDmeD,iBAAU,QCpclB,QDqcgB,yBAAU,QCljBlB,QDmjBM,uBAAU,QCxPlB,QDyPQ,uBACI,2BAAU,QCzPlB,QD0PI,uBACG,0BAAU,QC7PlB,QD8PK,uBACE,yBAAU,QChQlB,QDiQI,qBAAU,QCrQlB,QDsQU,uBACA,uBAAU,QCxRlB,QD0RS,wBADD,uBACW,QC7RlB,QD8RW,2BAAU,QC1RlB,QD2RM,yBAAU,QCpSlB,QDqSO,wBAAU,QC3RlB,QD4RU,0BAAU,QC/RlB,QDgSM,wBAAU,QCjSlB,QDkSK,qBAAU,QC+DlB,QD9DS,sBAAU,QC/FlB,QDgGc,4BAAU,QC/blB,QDgcN,cAAU,QCtUlB,QDuUe,qBAAU,QCtUlB,QDuUU,uBAAU,QCkElB,QDjEU,yBAAU,QCrKlB,QDsKe,gCAAU,QCrKlB,QDsKF,sBAAU,QC5UlB,QD6US,uBAAU,QCwHlB,QDvHG,kBAAU,QCnFlB,QDoFQ,kBAAU,QCzelB,QD0eS,mBAAU,QC9WlB,QD+WM,iBAAU,QCxKlB,QDyKoB,6BAAU,QCpQlB,QDsQC,sBADR,cACkB,QCSlB,QDRI,kBAAU,QCjdlB,QDkdO,iBAAU,QCzoBlB,QD0oBS,kBAAU,QC/nBlB,QDgoBiB,2BAAU,QC3hBlB,QD4hBS,4BAAU,QC9hBlB,QD+hBQ,4BAAU,QC5hBlB,QD6hBQ,4BAAU,QCjiBlB,QDkiBA,oBAAU,QCpRlB,QDqRO,mBAAU,QC5NlB,QD6NU,qBAAU,QC5NlB,QD6NI,iBAAU,QC/NlB,QDgOM,eAAU,QClOlB,QDmOe,sBAAU,QCpelB,QDqeU,wBAAU,QCpelB,QDqeC,iBAAU,QCtSlB,QDuSQ,iBAAU,QCiFlB,QDhFY,qBAAU,QClkBlB,QDmkBQ,qBAAU,QCrXlB,QDsXW,wBAAU,QCpIlB,QDqIA,gBAAU,QCpclB,QDqcmB,2BAAU,QChelB,QDieC,oBAAU,QCpflB,QDqfI,gBAAU,QClNlB,QDmNgB,wBAAU,QC1XlB,QD2XD,eAAU,QCoDlB,QDnDiB,wBAAU,QC3JlB,QD4JI,oBAAU,QCzNlB,QD0NM,kBAAU,QClHlB,QDmHc,wBAAU,QC7LlB,QD8LU,0BAAU,QC7LlB,QD8LK,uBAAU,QC3ClB,QD4CU,yBAAU,QC3ClB,QD4CO,wBAAU,QCrGlB,QDsGW,2BAAU,QCrGlB,QDsGA,mBAAU,QC7UlB,QD8UU,qBAAU,QCnlBlB,QDolBU,uBAAU,QCnlBlB,QDolBI,mBAAU,QC/LlB,QDgMO,kBAAU,QClXlB,QDmXY,sBAAU,QCkFlB,QDjFK,mBAAU,QCmFlB,QDlFO,kBAAU,QC9clB,QD+ckB,4BAAU,QC2BlB,QD1BM,0BAAU,QCmElB,QDlEW,6BAAU,QCxKlB,QDyKJ,iBAAU,QC9lBlB,QD+lBoB,6BAAU,QCtoBlB,QDuoBW,gCAAU,QCqDlB,QDpDL,mBAAU,QCxlBlB,QDylB4B,uCAAU,QC5oBlB,QD8oBgB,+CADnB,4BAC6B,QC9qBlB,QDirBvB,gBAFI,oBACO,2BACD,QCvflB,QDwfS,iBAAU,QChYlB,QDiYU,mBAAU,QChYlB,QDkYc,yBADN,mBACgB,QC1HlB,QD2HK,sBAAU,QCzRlB,QD0RI,kBAAU,QCiClB,QDhCe,yBAAU,QCiClB,QDhCG,oBAAU,QClHlB,QDmHc,0BAAU,QClHlB,QDmHS,2BAAU,QClHlB,QDmHG,sBAAU,QCrNlB,QDsNS,uBAAU,QCpblB,QDqbE,iBAAU,QCmElB,QDlEY,qBAAU,QCpDlB,QDqDiB,8BACE,gCAAU,QCzYlB,QD0YV,cACU,wBAAU,QC7alB,QD8aO,uBAAU,QCtXlB,QDuXU,yBAAU,QClflB,QDmfU,2BAAU,QClflB,QDmfD,kBAAU,QCtTlB,QDuTc,wBAAU,QCptBlB,QDqtBU,0BAAU,QCptBlB,QDstBM,wBADP,iBACiB,QCrtBlB,QDutBU,0BADP,mBACiB,QCttBlB,QDutBK,uBAAU,QCJlB,QDKU,yBAAU,QCJlB,QDKC,kBAAU,QCHlB,QDIU,oBAAU,QC3WlB,QD4We,2BACR,mBAAU,QC5WlB,QD6WkB,6BACR,qBAAU,QC7WlB,QD8WI,iBAAU,QCtNlB,QDuNiB,0BAAU,QC3blB,QD4bE,oBAAU,QCtFlB,QDuFa,yBAEG,4BADL,uBACe,QCxElB,QDyEK,yBACa,sCAAU,QCvElB,QDwEL,yBACG,4BAAU,QC3ElB,QD4EK,yBACM,+BAAU,QC5ElB,QD6EE,yBACI,6BAAU,QCjFlB,QDkFH,kBAAU,QC3KlB,QD8KM,gBAFG,mBACJ,eACW,QCzrBlB,QD0rBW,mBAAU,QClPlB,QDmPgB,2BAAU,QCKlB,QDJQ,2BAAU,QCKlB,QDJO,0BAAU,QCKlB,QDJS,2BACH,wBAAU,QCDlB,QDEa,6BACH,0BAAU,QCFlB,QDGE,oBAAU,QCxsBlB,QDysBI,gBAAU,QCpblB,QDqbQ,gBAAU,QC1hBlB,QD2hBQ,gBAAU,QCxYlB,QDyYW,mBAAU,QC/OlB,QDgPQ,mBAAU,QCziBlB,QD0iBU,qBAAU,QCjUlB,QDkUU,uBAAU,QC7KlB,QD8KQ,uBAAU,QChIlB,QDiIO,sBAAU,QCJlB,QDKI,kBAAU,QCxUlB,QCzchB,SJ8BE,SAAA,SACA,MAAA,IACA,OAAA,IACA,QAAA,EACA,OAAA,KACA,SAAA,OACA,KAAM,cACN,OAAA,EvEoGC,0BACA,yBACC,SAAA,OACA,MA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"}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/dist/css/rcue-additions.css b/themes/src/main/node_modules/rcue/dist/css/rcue-additions.css
new file mode 100644
index 0000000..3d227fb
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/css/rcue-additions.css
@@ -0,0 +1,8843 @@
+/* PatternFly additions to Bootstrap */
+.slider {
+  display: inline-block;
+  vertical-align: middle;
+  position: relative;
+}
+.slider.slider-horizontal {
+  width: 100%;
+  height: 16px;
+}
+.slider.slider-horizontal .slider-track {
+  height: 8px;
+  width: 100%;
+  margin-top: -4px;
+  top: 50%;
+  left: 0;
+}
+.slider.slider-horizontal .slider-selection,
+.slider.slider-horizontal .slider-track-low,
+.slider.slider-horizontal .slider-track-high {
+  height: 100%;
+  top: 0;
+  bottom: 0;
+}
+.slider.slider-horizontal .slider-tick,
+.slider.slider-horizontal .slider-handle {
+  margin-left: -8px;
+}
+.slider.slider-horizontal .slider-tick.triangle,
+.slider.slider-horizontal .slider-handle.triangle {
+  position: relative;
+  top: 50%;
+  transform: translateY(-50%);
+  border-width: 0 8px 8px 8px;
+  width: 0;
+  height: 0;
+  border-bottom-color: #ededed;
+  margin-top: 0;
+}
+.slider.slider-horizontal .slider-tick-container {
+  white-space: nowrap;
+  position: absolute;
+  top: 0;
+  left: 0;
+  width: 100%;
+}
+.slider.slider-horizontal .slider-tick-label-container {
+  white-space: nowrap;
+  margin-top: 16px;
+}
+.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
+  padding-top: 16px * 0.2;
+  display: inline-block;
+  text-align: center;
+}
+.slider.slider-horizontal.slider-rtl .slider-track {
+  left: initial;
+  right: 0;
+}
+.slider.slider-horizontal.slider-rtl .slider-tick,
+.slider.slider-horizontal.slider-rtl .slider-handle {
+  margin-left: initial;
+  margin-right: -8px;
+}
+.slider.slider-horizontal.slider-rtl .slider-tick-container {
+  left: initial;
+  right: 0;
+}
+.slider.slider-vertical {
+  height: 210px;
+  width: 16px;
+}
+.slider.slider-vertical .slider-track {
+  width: 8px;
+  height: 100%;
+  left: 25%;
+  top: 0;
+}
+.slider.slider-vertical .slider-selection {
+  width: 100%;
+  left: 0;
+  top: 0;
+  bottom: 0;
+}
+.slider.slider-vertical .slider-track-low,
+.slider.slider-vertical .slider-track-high {
+  width: 100%;
+  left: 0;
+  right: 0;
+}
+.slider.slider-vertical .slider-tick,
+.slider.slider-vertical .slider-handle {
+  margin-top: -8px;
+}
+.slider.slider-vertical .slider-tick.triangle,
+.slider.slider-vertical .slider-handle.triangle {
+  border-width: 8px 0 8px 8px;
+  width: 1px;
+  height: 1px;
+  border-left-color: #ededed;
+  border-right-color: #ededed;
+  margin-left: 0;
+  margin-right: 0;
+}
+.slider.slider-vertical .slider-tick-label-container {
+  white-space: nowrap;
+}
+.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
+  padding-left: 16px * 0.2;
+}
+.slider.slider-vertical.slider-rtl .slider-track {
+  left: initial;
+  right: 25%;
+}
+.slider.slider-vertical.slider-rtl .slider-selection {
+  left: initial;
+  right: 0;
+}
+.slider.slider-vertical.slider-rtl .slider-tick.triangle,
+.slider.slider-vertical.slider-rtl .slider-handle.triangle {
+  border-width: 8px 8px 8px 0;
+}
+.slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tick-label {
+  padding-left: initial;
+  padding-right: 16px * 0.2;
+}
+.slider.slider-disabled .slider-handle {
+  background-image: -webkit-linear-gradient(top, #DFDFDF 0%, #BEBEBE 100%);
+  background-image: -o-linear-gradient(top, #DFDFDF 0%, #BEBEBE 100%);
+  background-image: linear-gradient(to bottom, #DFDFDF 0%, #BEBEBE 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
+}
+.slider.slider-disabled .slider-track {
+  background-image: -webkit-linear-gradient(top, #E5E5E5 0%, #E9E9E9 100%);
+  background-image: -o-linear-gradient(top, #E5E5E5 0%, #E9E9E9 100%);
+  background-image: linear-gradient(to bottom, #E5E5E5 0%, #E9E9E9 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
+  cursor: not-allowed;
+}
+.slider input {
+  display: none;
+}
+.slider .tooltip.top {
+  margin-top: -36px;
+}
+.slider .tooltip-inner {
+  white-space: nowrap;
+  max-width: none;
+}
+.slider .hide {
+  display: none;
+}
+.slider-track {
+  position: absolute;
+  cursor: pointer;
+  background-image: -webkit-linear-gradient(top, #F5F5F5 0%, #F9F9F9 100%);
+  background-image: -o-linear-gradient(top, #F5F5F5 0%, #F9F9F9 100%);
+  background-image: linear-gradient(to bottom, #F5F5F5 0%, #F9F9F9 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
+  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+  border-radius: 1px;
+}
+.slider-selection {
+  position: absolute;
+  background-image: -webkit-linear-gradient(top, #F9F9F9 0%, #F5F5F5 100%);
+  background-image: -o-linear-gradient(top, #F9F9F9 0%, #F5F5F5 100%);
+  background-image: linear-gradient(to bottom, #F9F9F9 0%, #F5F5F5 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
+  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box;
+  border-radius: 1px;
+}
+.slider-selection.tick-slider-selection {
+  background-image: -webkit-linear-gradient(top, #0088ce 0%, #39a5dc 100%);
+  background-image: -o-linear-gradient(top, #0088ce 0%, #39a5dc 100%);
+  background-image: linear-gradient(to bottom, #0088ce 0%, #39a5dc 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088ce', endColorstr='#ff39a5dc', GradientType=0);
+}
+.slider-track-low,
+.slider-track-high {
+  position: absolute;
+  background: transparent;
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box;
+  border-radius: 1px;
+}
+.slider-handle {
+  position: absolute;
+  top: 0;
+  width: 16px;
+  height: 16px;
+  background-color: #39a5dc;
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+  filter: none;
+  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
+  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
+  border: 0px solid transparent;
+}
+.slider-handle.round {
+  border-radius: 50%;
+}
+.slider-handle.triangle {
+  background: transparent none;
+}
+.slider-handle.custom {
+  background: transparent none;
+}
+.slider-handle.custom::before {
+  line-height: 16px;
+  font-size: 20px;
+  content: '\2605';
+  color: #726204;
+}
+.slider-tick {
+  position: absolute;
+  width: 16px;
+  height: 16px;
+  background-image: -webkit-linear-gradient(top, #F9F9F9 0%, #F5F5F5 100%);
+  background-image: -o-linear-gradient(top, #F9F9F9 0%, #F5F5F5 100%);
+  background-image: linear-gradient(to bottom, #F9F9F9 0%, #F5F5F5 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
+  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box;
+  filter: none;
+  opacity: 0.8;
+  border: 0px solid transparent;
+}
+.slider-tick.round {
+  border-radius: 50%;
+}
+.slider-tick.triangle {
+  background: transparent none;
+}
+.slider-tick.custom {
+  background: transparent none;
+}
+.slider-tick.custom::before {
+  line-height: 16px;
+  font-size: 20px;
+  content: '\2605';
+  color: #726204;
+}
+.slider-tick.in-selection {
+  background-image: -webkit-linear-gradient(top, #0088ce 0%, #39a5dc 100%);
+  background-image: -o-linear-gradient(top, #0088ce 0%, #39a5dc 100%);
+  background-image: linear-gradient(to bottom, #0088ce 0%, #39a5dc 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088ce', endColorstr='#ff39a5dc', GradientType=0);
+  opacity: 1;
+}
+@media (min-width: 768px) {
+  .form-search .combobox-container,
+  .form-inline .combobox-container {
+    display: inline-block;
+    margin-bottom: 0;
+    vertical-align: top;
+  }
+  .form-search .combobox-container .input-group-addon,
+  .form-inline .combobox-container .input-group-addon {
+    width: auto;
+  }
+}
+.combobox-selected .caret {
+  display: none;
+}
+/* :not doesn't work in IE8 */
+.combobox-container:not(.combobox-selected) .glyphicon-remove {
+  display: none;
+}
+.typeahead-long {
+  max-height: 300px;
+  overflow-y: auto;
+}
+.control-group.error .combobox-container .add-on {
+  color: #B94A48;
+  border-color: #B94A48;
+}
+.control-group.error .combobox-container .caret {
+  border-top-color: #B94A48;
+}
+.control-group.warning .combobox-container .add-on {
+  color: #C09853;
+  border-color: #C09853;
+}
+.control-group.warning .combobox-container .caret {
+  border-top-color: #C09853;
+}
+.control-group.success .combobox-container .add-on {
+  color: #468847;
+  border-color: #468847;
+}
+.control-group.success .combobox-container .caret {
+  border-top-color: #468847;
+}
+.datepicker {
+  border-radius: 1px;
+  direction: ltr;
+}
+.datepicker-inline {
+  width: 220px;
+}
+.datepicker-rtl {
+  direction: rtl;
+}
+.datepicker-rtl.dropdown-menu {
+  left: auto;
+}
+.datepicker-rtl table tr td span {
+  float: right;
+}
+.datepicker-dropdown {
+  top: 0;
+  left: 0;
+  padding: 4px;
+}
+.datepicker-dropdown:before {
+  content: '';
+  display: inline-block;
+  border-left: 7px solid transparent;
+  border-right: 7px solid transparent;
+  border-bottom: 7px solid #bbb;
+  border-top: 0;
+  border-bottom-color: rgba(0, 0, 0, 0.2);
+  position: absolute;
+}
+.datepicker-dropdown:after {
+  content: '';
+  display: inline-block;
+  border-left: 6px solid transparent;
+  border-right: 6px solid transparent;
+  border-bottom: 6px solid #fff;
+  border-top: 0;
+  position: absolute;
+}
+.datepicker-dropdown.datepicker-orient-left:before {
+  left: 6px;
+}
+.datepicker-dropdown.datepicker-orient-left:after {
+  left: 7px;
+}
+.datepicker-dropdown.datepicker-orient-right:before {
+  right: 6px;
+}
+.datepicker-dropdown.datepicker-orient-right:after {
+  right: 7px;
+}
+.datepicker-dropdown.datepicker-orient-bottom:before {
+  top: -7px;
+}
+.datepicker-dropdown.datepicker-orient-bottom:after {
+  top: -6px;
+}
+.datepicker-dropdown.datepicker-orient-top:before {
+  bottom: -7px;
+  border-bottom: 0;
+  border-top: 7px solid #bbb;
+}
+.datepicker-dropdown.datepicker-orient-top:after {
+  bottom: -6px;
+  border-bottom: 0;
+  border-top: 6px solid #fff;
+}
+.datepicker table {
+  margin: 0;
+  -webkit-touch-callout: none;
+  -webkit-user-select: none;
+  -khtml-user-select: none;
+  -moz-user-select: none;
+  -ms-user-select: none;
+  user-select: none;
+}
+.datepicker table tr td,
+.datepicker table tr th {
+  text-align: center;
+  width: 30px;
+  height: 30px;
+  border-radius: 4px;
+  border: none;
+}
+.table-striped .datepicker table tr td,
+.table-striped .datepicker table tr th {
+  background-color: transparent;
+}
+.datepicker table tr td.old,
+.datepicker table tr td.new {
+  color: #9c9c9c;
+}
+.datepicker table tr td.day:hover,
+.datepicker table tr td.focused {
+  background: #f1f1f1;
+  cursor: pointer;
+}
+.datepicker table tr td.disabled,
+.datepicker table tr td.disabled:hover {
+  background: none;
+  color: #9c9c9c;
+  cursor: default;
+}
+.datepicker table tr td.highlighted {
+  color: #000;
+  background-color: #d9edf7;
+  border-color: #85c5e5;
+  border-radius: 0;
+}
+.datepicker table tr td.highlighted:focus,
+.datepicker table tr td.highlighted.focus {
+  color: #000;
+  background-color: #afd9ee;
+  border-color: #298fc2;
+}
+.datepicker table tr td.highlighted:hover {
+  color: #000;
+  background-color: #afd9ee;
+  border-color: #52addb;
+}
+.datepicker table tr td.highlighted:active,
+.datepicker table tr td.highlighted.active,
+.open > .dropdown-toggle.datepicker table tr td.highlighted {
+  color: #000;
+  background-color: #afd9ee;
+  border-color: #52addb;
+}
+.datepicker table tr td.highlighted:active:hover,
+.datepicker table tr td.highlighted.active:hover,
+.open > .dropdown-toggle.datepicker table tr td.highlighted:hover,
+.datepicker table tr td.highlighted:active:focus,
+.datepicker table tr td.highlighted.active:focus,
+.open > .dropdown-toggle.datepicker table tr td.highlighted:focus,
+.datepicker table tr td.highlighted:active.focus,
+.datepicker table tr td.highlighted.active.focus,
+.open > .dropdown-toggle.datepicker table tr td.highlighted.focus {
+  color: #000;
+  background-color: #91cbe8;
+  border-color: #298fc2;
+}
+.datepicker table tr td.highlighted:active,
+.datepicker table tr td.highlighted.active,
+.open > .dropdown-toggle.datepicker table tr td.highlighted {
+  background-image: none;
+}
+.datepicker table tr td.highlighted.disabled:hover,
+.datepicker table tr td.highlighted[disabled]:hover,
+fieldset[disabled] .datepicker table tr td.highlighted:hover,
+.datepicker table tr td.highlighted.disabled:focus,
+.datepicker table tr td.highlighted[disabled]:focus,
+fieldset[disabled] .datepicker table tr td.highlighted:focus,
+.datepicker table tr td.highlighted.disabled.focus,
+.datepicker table tr td.highlighted[disabled].focus,
+fieldset[disabled] .datepicker table tr td.highlighted.focus {
+  background-color: #d9edf7;
+  border-color: #85c5e5;
+}
+.datepicker table tr td.highlighted .badge {
+  color: #d9edf7;
+  background-color: #000;
+}
+.datepicker table tr td.highlighted.focused {
+  background: #afd9ee;
+}
+.datepicker table tr td.highlighted.disabled,
+.datepicker table tr td.highlighted.disabled:active {
+  background: #d9edf7;
+  color: #9c9c9c;
+}
+.datepicker table tr td.today {
+  color: #000;
+  background-color: #ffdb99;
+  border-color: #ffb733;
+}
+.datepicker table tr td.today:focus,
+.datepicker table tr td.today.focus {
+  color: #000;
+  background-color: #ffc966;
+  border-color: #b37400;
+}
+.datepicker table tr td.today:hover {
+  color: #000;
+  background-color: #ffc966;
+  border-color: #f59e00;
+}
+.datepicker table tr td.today:active,
+.datepicker table tr td.today.active,
+.open > .dropdown-toggle.datepicker table tr td.today {
+  color: #000;
+  background-color: #ffc966;
+  border-color: #f59e00;
+}
+.datepicker table tr td.today:active:hover,
+.datepicker table tr td.today.active:hover,
+.open > .dropdown-toggle.datepicker table tr td.today:hover,
+.datepicker table tr td.today:active:focus,
+.datepicker table tr td.today.active:focus,
+.open > .dropdown-toggle.datepicker table tr td.today:focus,
+.datepicker table tr td.today:active.focus,
+.datepicker table tr td.today.active.focus,
+.open > .dropdown-toggle.datepicker table tr td.today.focus {
+  color: #000;
+  background-color: #ffbc42;
+  border-color: #b37400;
+}
+.datepicker table tr td.today:active,
+.datepicker table tr td.today.active,
+.open > .dropdown-toggle.datepicker table tr td.today {
+  background-image: none;
+}
+.datepicker table tr td.today.disabled:hover,
+.datepicker table tr td.today[disabled]:hover,
+fieldset[disabled] .datepicker table tr td.today:hover,
+.datepicker table tr td.today.disabled:focus,
+.datepicker table tr td.today[disabled]:focus,
+fieldset[disabled] .datepicker table tr td.today:focus,
+.datepicker table tr td.today.disabled.focus,
+.datepicker table tr td.today[disabled].focus,
+fieldset[disabled] .datepicker table tr td.today.focus {
+  background-color: #ffdb99;
+  border-color: #ffb733;
+}
+.datepicker table tr td.today .badge {
+  color: #ffdb99;
+  background-color: #000;
+}
+.datepicker table tr td.today.focused {
+  background: #ffc966;
+}
+.datepicker table tr td.today.disabled,
+.datepicker table tr td.today.disabled:active {
+  background: #ffdb99;
+  color: #9c9c9c;
+}
+.datepicker table tr td.range {
+  color: #000;
+  background-color: #f1f1f1;
+  border-color: #bebebe;
+  border-radius: 0;
+}
+.datepicker table tr td.range:focus,
+.datepicker table tr td.range.focus {
+  color: #000;
+  background-color: #d8d8d8;
+  border-color: #7f7f7f;
+}
+.datepicker table tr td.range:hover {
+  color: #000;
+  background-color: #d8d8d8;
+  border-color: #a0a0a0;
+}
+.datepicker table tr td.range:active,
+.datepicker table tr td.range.active,
+.open > .dropdown-toggle.datepicker table tr td.range {
+  color: #000;
+  background-color: #d8d8d8;
+  border-color: #a0a0a0;
+}
+.datepicker table tr td.range:active:hover,
+.datepicker table tr td.range.active:hover,
+.open > .dropdown-toggle.datepicker table tr td.range:hover,
+.datepicker table tr td.range:active:focus,
+.datepicker table tr td.range.active:focus,
+.open > .dropdown-toggle.datepicker table tr td.range:focus,
+.datepicker table tr td.range:active.focus,
+.datepicker table tr td.range.active.focus,
+.open > .dropdown-toggle.datepicker table tr td.range.focus {
+  color: #000;
+  background-color: #c6c6c6;
+  border-color: #7f7f7f;
+}
+.datepicker table tr td.range:active,
+.datepicker table tr td.range.active,
+.open > .dropdown-toggle.datepicker table tr td.range {
+  background-image: none;
+}
+.datepicker table tr td.range.disabled:hover,
+.datepicker table tr td.range[disabled]:hover,
+fieldset[disabled] .datepicker table tr td.range:hover,
+.datepicker table tr td.range.disabled:focus,
+.datepicker table tr td.range[disabled]:focus,
+fieldset[disabled] .datepicker table tr td.range:focus,
+.datepicker table tr td.range.disabled.focus,
+.datepicker table tr td.range[disabled].focus,
+fieldset[disabled] .datepicker table tr td.range.focus {
+  background-color: #f1f1f1;
+  border-color: #bebebe;
+}
+.datepicker table tr td.range .badge {
+  color: #f1f1f1;
+  background-color: #000;
+}
+.datepicker table tr td.range.focused {
+  background: #d8d8d8;
+}
+.datepicker table tr td.range.disabled,
+.datepicker table tr td.range.disabled:active {
+  background: #f1f1f1;
+  color: #9c9c9c;
+}
+.datepicker table tr td.range.highlighted {
+  color: #000;
+  background-color: #e5eff4;
+  border-color: #9dc3d6;
+}
+.datepicker table tr td.range.highlighted:focus,
+.datepicker table tr td.range.highlighted.focus {
+  color: #000;
+  background-color: #c1d9e5;
+  border-color: #488bac;
+}
+.datepicker table tr td.range.highlighted:hover {
+  color: #000;
+  background-color: #c1d9e5;
+  border-color: #72a9c4;
+}
+.datepicker table tr td.range.highlighted:active,
+.datepicker table tr td.range.highlighted.active,
+.open > .dropdown-toggle.datepicker table tr td.range.highlighted {
+  color: #000;
+  background-color: #c1d9e5;
+  border-color: #72a9c4;
+}
+.datepicker table tr td.range.highlighted:active:hover,
+.datepicker table tr td.range.highlighted.active:hover,
+.open > .dropdown-toggle.datepicker table tr td.range.highlighted:hover,
+.datepicker table tr td.range.highlighted:active:focus,
+.datepicker table tr td.range.highlighted.active:focus,
+.open > .dropdown-toggle.datepicker table tr td.range.highlighted:focus,
+.datepicker table tr td.range.highlighted:active.focus,
+.datepicker table tr td.range.highlighted.active.focus,
+.open > .dropdown-toggle.datepicker table tr td.range.highlighted.focus {
+  color: #000;
+  background-color: #a8cadb;
+  border-color: #488bac;
+}
+.datepicker table tr td.range.highlighted:active,
+.datepicker table tr td.range.highlighted.active,
+.open > .dropdown-toggle.datepicker table tr td.range.highlighted {
+  background-image: none;
+}
+.datepicker table tr td.range.highlighted.disabled:hover,
+.datepicker table tr td.range.highlighted[disabled]:hover,
+fieldset[disabled] .datepicker table tr td.range.highlighted:hover,
+.datepicker table tr td.range.highlighted.disabled:focus,
+.datepicker table tr td.range.highlighted[disabled]:focus,
+fieldset[disabled] .datepicker table tr td.range.highlighted:focus,
+.datepicker table tr td.range.highlighted.disabled.focus,
+.datepicker table tr td.range.highlighted[disabled].focus,
+fieldset[disabled] .datepicker table tr td.range.highlighted.focus {
+  background-color: #e5eff4;
+  border-color: #9dc3d6;
+}
+.datepicker table tr td.range.highlighted .badge {
+  color: #e5eff4;
+  background-color: #000;
+}
+.datepicker table tr td.range.highlighted.focused {
+  background: #c1d9e5;
+}
+.datepicker table tr td.range.highlighted.disabled,
+.datepicker table tr td.range.highlighted.disabled:active {
+  background: #e5eff4;
+  color: #9c9c9c;
+}
+.datepicker table tr td.range.today {
+  color: #000;
+  background-color: #f8cb79;
+  border-color: #f3a618;
+}
+.datepicker table tr td.range.today:focus,
+.datepicker table tr td.range.today.focus {
+  color: #000;
+  background-color: #f6b848;
+  border-color: #855807;
+}
+.datepicker table tr td.range.today:hover {
+  color: #000;
+  background-color: #f6b848;
+  border-color: #c4820a;
+}
+.datepicker table tr td.range.today:active,
+.datepicker table tr td.range.today.active,
+.open > .dropdown-toggle.datepicker table tr td.range.today {
+  color: #000;
+  background-color: #f6b848;
+  border-color: #c4820a;
+}
+.datepicker table tr td.range.today:active:hover,
+.datepicker table tr td.range.today.active:hover,
+.open > .dropdown-toggle.datepicker table tr td.range.today:hover,
+.datepicker table tr td.range.today:active:focus,
+.datepicker table tr td.range.today.active:focus,
+.open > .dropdown-toggle.datepicker table tr td.range.today:focus,
+.datepicker table tr td.range.today:active.focus,
+.datepicker table tr td.range.today.active.focus,
+.open > .dropdown-toggle.datepicker table tr td.range.today.focus {
+  color: #000;
+  background-color: #f4ab26;
+  border-color: #855807;
+}
+.datepicker table tr td.range.today:active,
+.datepicker table tr td.range.today.active,
+.open > .dropdown-toggle.datepicker table tr td.range.today {
+  background-image: none;
+}
+.datepicker table tr td.range.today.disabled:hover,
+.datepicker table tr td.range.today[disabled]:hover,
+fieldset[disabled] .datepicker table tr td.range.today:hover,
+.datepicker table tr td.range.today.disabled:focus,
+.datepicker table tr td.range.today[disabled]:focus,
+fieldset[disabled] .datepicker table tr td.range.today:focus,
+.datepicker table tr td.range.today.disabled.focus,
+.datepicker table tr td.range.today[disabled].focus,
+fieldset[disabled] .datepicker table tr td.range.today.focus {
+  background-color: #f8cb79;
+  border-color: #f3a618;
+}
+.datepicker table tr td.range.today .badge {
+  color: #f8cb79;
+  background-color: #000;
+}
+.datepicker table tr td.range.today.disabled,
+.datepicker table tr td.range.today.disabled:active {
+  background: #f8cb79;
+  color: #9c9c9c;
+}
+.datepicker table tr td.selected,
+.datepicker table tr td.selected.highlighted {
+  color: #fff;
+  background-color: #9c9c9c;
+  border-color: #555555;
+  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+.datepicker table tr td.selected:focus,
+.datepicker table tr td.selected.highlighted:focus,
+.datepicker table tr td.selected.focus,
+.datepicker table tr td.selected.highlighted.focus {
+  color: #fff;
+  background-color: #838383;
+  border-color: #161616;
+}
+.datepicker table tr td.selected:hover,
+.datepicker table tr td.selected.highlighted:hover {
+  color: #fff;
+  background-color: #838383;
+  border-color: #373737;
+}
+.datepicker table tr td.selected:active,
+.datepicker table tr td.selected.highlighted:active,
+.datepicker table tr td.selected.active,
+.datepicker table tr td.selected.highlighted.active,
+.open > .dropdown-toggle.datepicker table tr td.selected,
+.open > .dropdown-toggle.datepicker table tr td.selected.highlighted {
+  color: #fff;
+  background-color: #838383;
+  border-color: #373737;
+}
+.datepicker table tr td.selected:active:hover,
+.datepicker table tr td.selected.highlighted:active:hover,
+.datepicker table tr td.selected.active:hover,
+.datepicker table tr td.selected.highlighted.active:hover,
+.open > .dropdown-toggle.datepicker table tr td.selected:hover,
+.open > .dropdown-toggle.datepicker table tr td.selected.highlighted:hover,
+.datepicker table tr td.selected:active:focus,
+.datepicker table tr td.selected.highlighted:active:focus,
+.datepicker table tr td.selected.active:focus,
+.datepicker table tr td.selected.highlighted.active:focus,
+.open > .dropdown-toggle.datepicker table tr td.selected:focus,
+.open > .dropdown-toggle.datepicker table tr td.selected.highlighted:focus,
+.datepicker table tr td.selected:active.focus,
+.datepicker table tr td.selected.highlighted:active.focus,
+.datepicker table tr td.selected.active.focus,
+.datepicker table tr td.selected.highlighted.active.focus,
+.open > .dropdown-toggle.datepicker table tr td.selected.focus,
+.open > .dropdown-toggle.datepicker table tr td.selected.highlighted.focus {
+  color: #fff;
+  background-color: #717171;
+  border-color: #161616;
+}
+.datepicker table tr td.selected:active,
+.datepicker table tr td.selected.highlighted:active,
+.datepicker table tr td.selected.active,
+.datepicker table tr td.selected.highlighted.active,
+.open > .dropdown-toggle.datepicker table tr td.selected,
+.open > .dropdown-toggle.datepicker table tr td.selected.highlighted {
+  background-image: none;
+}
+.datepicker table tr td.selected.disabled:hover,
+.datepicker table tr td.selected.highlighted.disabled:hover,
+.datepicker table tr td.selected[disabled]:hover,
+.datepicker table tr td.selected.highlighted[disabled]:hover,
+fieldset[disabled] .datepicker table tr td.selected:hover,
+fieldset[disabled] .datepicker table tr td.selected.highlighted:hover,
+.datepicker table tr td.selected.disabled:focus,
+.datepicker table tr td.selected.highlighted.disabled:focus,
+.datepicker table tr td.selected[disabled]:focus,
+.datepicker table tr td.selected.highlighted[disabled]:focus,
+fieldset[disabled] .datepicker table tr td.selected:focus,
+fieldset[disabled] .datepicker table tr td.selected.highlighted:focus,
+.datepicker table tr td.selected.disabled.focus,
+.datepicker table tr td.selected.highlighted.disabled.focus,
+.datepicker table tr td.selected[disabled].focus,
+.datepicker table tr td.selected.highlighted[disabled].focus,
+fieldset[disabled] .datepicker table tr td.selected.focus,
+fieldset[disabled] .datepicker table tr td.selected.highlighted.focus {
+  background-color: #9c9c9c;
+  border-color: #555555;
+}
+.datepicker table tr td.selected .badge,
+.datepicker table tr td.selected.highlighted .badge {
+  color: #9c9c9c;
+  background-color: #fff;
+}
+.datepicker table tr td.active,
+.datepicker table tr td.active.highlighted {
+  color: #fff;
+  background-color: #0088ce;
+  border-color: #00659c;
+  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+.datepicker table tr td.active:focus,
+.datepicker table tr td.active.highlighted:focus,
+.datepicker table tr td.active.focus,
+.datepicker table tr td.active.highlighted.focus {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #00121d;
+}
+.datepicker table tr td.active:hover,
+.datepicker table tr td.active.highlighted:hover {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #003d5f;
+}
+.datepicker table tr td.active:active,
+.datepicker table tr td.active.highlighted:active,
+.datepicker table tr td.active.active,
+.datepicker table tr td.active.highlighted.active,
+.open > .dropdown-toggle.datepicker table tr td.active,
+.open > .dropdown-toggle.datepicker table tr td.active.highlighted {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #003d5f;
+}
+.datepicker table tr td.active:active:hover,
+.datepicker table tr td.active.highlighted:active:hover,
+.datepicker table tr td.active.active:hover,
+.datepicker table tr td.active.highlighted.active:hover,
+.open > .dropdown-toggle.datepicker table tr td.active:hover,
+.open > .dropdown-toggle.datepicker table tr td.active.highlighted:hover,
+.datepicker table tr td.active:active:focus,
+.datepicker table tr td.active.highlighted:active:focus,
+.datepicker table tr td.active.active:focus,
+.datepicker table tr td.active.highlighted.active:focus,
+.open > .dropdown-toggle.datepicker table tr td.active:focus,
+.open > .dropdown-toggle.datepicker table tr td.active.highlighted:focus,
+.datepicker table tr td.active:active.focus,
+.datepicker table tr td.active.highlighted:active.focus,
+.datepicker table tr td.active.active.focus,
+.datepicker table tr td.active.highlighted.active.focus,
+.open > .dropdown-toggle.datepicker table tr td.active.focus,
+.open > .dropdown-toggle.datepicker table tr td.active.highlighted.focus {
+  color: #fff;
+  background-color: #004f77;
+  border-color: #00121d;
+}
+.datepicker table tr td.active:active,
+.datepicker table tr td.active.highlighted:active,
+.datepicker table tr td.active.active,
+.datepicker table tr td.active.highlighted.active,
+.open > .dropdown-toggle.datepicker table tr td.active,
+.open > .dropdown-toggle.datepicker table tr td.active.highlighted {
+  background-image: none;
+}
+.datepicker table tr td.active.disabled:hover,
+.datepicker table tr td.active.highlighted.disabled:hover,
+.datepicker table tr td.active[disabled]:hover,
+.datepicker table tr td.active.highlighted[disabled]:hover,
+fieldset[disabled] .datepicker table tr td.active:hover,
+fieldset[disabled] .datepicker table tr td.active.highlighted:hover,
+.datepicker table tr td.active.disabled:focus,
+.datepicker table tr td.active.highlighted.disabled:focus,
+.datepicker table tr td.active[disabled]:focus,
+.datepicker table tr td.active.highlighted[disabled]:focus,
+fieldset[disabled] .datepicker table tr td.active:focus,
+fieldset[disabled] .datepicker table tr td.active.highlighted:focus,
+.datepicker table tr td.active.disabled.focus,
+.datepicker table tr td.active.highlighted.disabled.focus,
+.datepicker table tr td.active[disabled].focus,
+.datepicker table tr td.active.highlighted[disabled].focus,
+fieldset[disabled] .datepicker table tr td.active.focus,
+fieldset[disabled] .datepicker table tr td.active.highlighted.focus {
+  background-color: #0088ce;
+  border-color: #00659c;
+}
+.datepicker table tr td.active .badge,
+.datepicker table tr td.active.highlighted .badge {
+  color: #0088ce;
+  background-color: #fff;
+}
+.datepicker table tr td span {
+  display: block;
+  width: 23%;
+  height: 54px;
+  line-height: 54px;
+  float: left;
+  margin: 1%;
+  cursor: pointer;
+  border-radius: 4px;
+}
+.datepicker table tr td span:hover,
+.datepicker table tr td span.focused {
+  background: #f1f1f1;
+}
+.datepicker table tr td span.disabled,
+.datepicker table tr td span.disabled:hover {
+  background: none;
+  color: #9c9c9c;
+  cursor: default;
+}
+.datepicker table tr td span.active,
+.datepicker table tr td span.active:hover,
+.datepicker table tr td span.active.disabled,
+.datepicker table tr td span.active.disabled:hover {
+  color: #fff;
+  background-color: #0088ce;
+  border-color: #00659c;
+  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+.datepicker table tr td span.active:focus,
+.datepicker table tr td span.active:hover:focus,
+.datepicker table tr td span.active.disabled:focus,
+.datepicker table tr td span.active.disabled:hover:focus,
+.datepicker table tr td span.active.focus,
+.datepicker table tr td span.active:hover.focus,
+.datepicker table tr td span.active.disabled.focus,
+.datepicker table tr td span.active.disabled:hover.focus {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #00121d;
+}
+.datepicker table tr td span.active:hover,
+.datepicker table tr td span.active:hover:hover,
+.datepicker table tr td span.active.disabled:hover,
+.datepicker table tr td span.active.disabled:hover:hover {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #003d5f;
+}
+.datepicker table tr td span.active:active,
+.datepicker table tr td span.active:hover:active,
+.datepicker table tr td span.active.disabled:active,
+.datepicker table tr td span.active.disabled:hover:active,
+.datepicker table tr td span.active.active,
+.datepicker table tr td span.active:hover.active,
+.datepicker table tr td span.active.disabled.active,
+.datepicker table tr td span.active.disabled:hover.active,
+.open > .dropdown-toggle.datepicker table tr td span.active,
+.open > .dropdown-toggle.datepicker table tr td span.active:hover,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #003d5f;
+}
+.datepicker table tr td span.active:active:hover,
+.datepicker table tr td span.active:hover:active:hover,
+.datepicker table tr td span.active.disabled:active:hover,
+.datepicker table tr td span.active.disabled:hover:active:hover,
+.datepicker table tr td span.active.active:hover,
+.datepicker table tr td span.active:hover.active:hover,
+.datepicker table tr td span.active.disabled.active:hover,
+.datepicker table tr td span.active.disabled:hover.active:hover,
+.open > .dropdown-toggle.datepicker table tr td span.active:hover,
+.open > .dropdown-toggle.datepicker table tr td span.active:hover:hover,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover:hover,
+.datepicker table tr td span.active:active:focus,
+.datepicker table tr td span.active:hover:active:focus,
+.datepicker table tr td span.active.disabled:active:focus,
+.datepicker table tr td span.active.disabled:hover:active:focus,
+.datepicker table tr td span.active.active:focus,
+.datepicker table tr td span.active:hover.active:focus,
+.datepicker table tr td span.active.disabled.active:focus,
+.datepicker table tr td span.active.disabled:hover.active:focus,
+.open > .dropdown-toggle.datepicker table tr td span.active:focus,
+.open > .dropdown-toggle.datepicker table tr td span.active:hover:focus,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled:focus,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover:focus,
+.datepicker table tr td span.active:active.focus,
+.datepicker table tr td span.active:hover:active.focus,
+.datepicker table tr td span.active.disabled:active.focus,
+.datepicker table tr td span.active.disabled:hover:active.focus,
+.datepicker table tr td span.active.active.focus,
+.datepicker table tr td span.active:hover.active.focus,
+.datepicker table tr td span.active.disabled.active.focus,
+.datepicker table tr td span.active.disabled:hover.active.focus,
+.open > .dropdown-toggle.datepicker table tr td span.active.focus,
+.open > .dropdown-toggle.datepicker table tr td span.active:hover.focus,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled.focus,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover.focus {
+  color: #fff;
+  background-color: #004f77;
+  border-color: #00121d;
+}
+.datepicker table tr td span.active:active,
+.datepicker table tr td span.active:hover:active,
+.datepicker table tr td span.active.disabled:active,
+.datepicker table tr td span.active.disabled:hover:active,
+.datepicker table tr td span.active.active,
+.datepicker table tr td span.active:hover.active,
+.datepicker table tr td span.active.disabled.active,
+.datepicker table tr td span.active.disabled:hover.active,
+.open > .dropdown-toggle.datepicker table tr td span.active,
+.open > .dropdown-toggle.datepicker table tr td span.active:hover,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
+  background-image: none;
+}
+.datepicker table tr td span.active.disabled:hover,
+.datepicker table tr td span.active:hover.disabled:hover,
+.datepicker table tr td span.active.disabled.disabled:hover,
+.datepicker table tr td span.active.disabled:hover.disabled:hover,
+.datepicker table tr td span.active[disabled]:hover,
+.datepicker table tr td span.active:hover[disabled]:hover,
+.datepicker table tr td span.active.disabled[disabled]:hover,
+.datepicker table tr td span.active.disabled:hover[disabled]:hover,
+fieldset[disabled] .datepicker table tr td span.active:hover,
+fieldset[disabled] .datepicker table tr td span.active:hover:hover,
+fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
+fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,
+.datepicker table tr td span.active.disabled:focus,
+.datepicker table tr td span.active:hover.disabled:focus,
+.datepicker table tr td span.active.disabled.disabled:focus,
+.datepicker table tr td span.active.disabled:hover.disabled:focus,
+.datepicker table tr td span.active[disabled]:focus,
+.datepicker table tr td span.active:hover[disabled]:focus,
+.datepicker table tr td span.active.disabled[disabled]:focus,
+.datepicker table tr td span.active.disabled:hover[disabled]:focus,
+fieldset[disabled] .datepicker table tr td span.active:focus,
+fieldset[disabled] .datepicker table tr td span.active:hover:focus,
+fieldset[disabled] .datepicker table tr td span.active.disabled:focus,
+fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,
+.datepicker table tr td span.active.disabled.focus,
+.datepicker table tr td span.active:hover.disabled.focus,
+.datepicker table tr td span.active.disabled.disabled.focus,
+.datepicker table tr td span.active.disabled:hover.disabled.focus,
+.datepicker table tr td span.active[disabled].focus,
+.datepicker table tr td span.active:hover[disabled].focus,
+.datepicker table tr td span.active.disabled[disabled].focus,
+.datepicker table tr td span.active.disabled:hover[disabled].focus,
+fieldset[disabled] .datepicker table tr td span.active.focus,
+fieldset[disabled] .datepicker table tr td span.active:hover.focus,
+fieldset[disabled] .datepicker table tr td span.active.disabled.focus,
+fieldset[disabled] .datepicker table tr td span.active.disabled:hover.focus {
+  background-color: #0088ce;
+  border-color: #00659c;
+}
+.datepicker table tr td span.active .badge,
+.datepicker table tr td span.active:hover .badge,
+.datepicker table tr td span.active.disabled .badge,
+.datepicker table tr td span.active.disabled:hover .badge {
+  color: #0088ce;
+  background-color: #fff;
+}
+.datepicker table tr td span.old,
+.datepicker table tr td span.new {
+  color: #9c9c9c;
+}
+.datepicker .datepicker-switch {
+  width: 145px;
+}
+.datepicker .datepicker-switch,
+.datepicker .prev,
+.datepicker .next,
+.datepicker tfoot tr th {
+  cursor: pointer;
+}
+.datepicker .datepicker-switch:hover,
+.datepicker .prev:hover,
+.datepicker .next:hover,
+.datepicker tfoot tr th:hover {
+  background: #f1f1f1;
+}
+.datepicker .prev.disabled,
+.datepicker .next.disabled {
+  visibility: hidden;
+}
+.datepicker .cw {
+  font-size: 10px;
+  width: 12px;
+  padding: 0 2px 0 5px;
+  vertical-align: middle;
+}
+.input-group.date .input-group-addon {
+  cursor: pointer;
+}
+.input-daterange {
+  width: 100%;
+}
+.input-daterange input {
+  text-align: center;
+}
+.input-daterange input:first-child {
+  border-radius: 3px 0 0 3px;
+}
+.input-daterange input:last-child {
+  border-radius: 0 3px 3px 0;
+}
+.input-daterange .input-group-addon {
+  width: auto;
+  min-width: 16px;
+  padding: 4px 5px;
+  line-height: 1.66666667;
+  text-shadow: 0 1px 0 #fff;
+  border-width: 1px 0;
+  margin-left: -5px;
+  margin-right: -5px;
+}
+select.bs-select-hidden,
+select.selectpicker {
+  display: none !important;
+}
+.bootstrap-select {
+  width: 220px \0;
+  /*IE9 and below*/
+}
+.bootstrap-select > .dropdown-toggle {
+  width: 100%;
+  padding-right: 25px;
+  z-index: 1;
+}
+.bootstrap-select > .dropdown-toggle.bs-placeholder,
+.bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
+.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
+.bootstrap-select > .dropdown-toggle.bs-placeholder:active {
+  color: #999;
+}
+.bootstrap-select > select {
+  position: absolute !important;
+  bottom: 0;
+  left: 50%;
+  display: block !important;
+  width: 0.5px !important;
+  height: 100% !important;
+  padding: 0 !important;
+  opacity: 0 !important;
+  border: none;
+}
+.bootstrap-select > select.mobile-device {
+  top: 0;
+  left: 0;
+  display: block !important;
+  width: 100% !important;
+  z-index: 2;
+}
+.has-error .bootstrap-select .dropdown-toggle,
+.error .bootstrap-select .dropdown-toggle {
+  border-color: #b94a48;
+}
+.bootstrap-select.fit-width {
+  width: auto !important;
+}
+.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
+  width: 220px;
+}
+.bootstrap-select .dropdown-toggle:focus {
+  outline: thin dotted #333333 !important;
+  outline: 5px auto -webkit-focus-ring-color !important;
+  outline-offset: -2px;
+}
+.bootstrap-select.form-control {
+  margin-bottom: 0;
+  padding: 0;
+  border: none;
+}
+.bootstrap-select.form-control:not([class*="col-"]) {
+  width: 100%;
+}
+.bootstrap-select.form-control.input-group-btn {
+  z-index: auto;
+}
+.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
+  border-radius: 0;
+}
+.bootstrap-select.btn-group:not(.input-group-btn),
+.bootstrap-select.btn-group[class*="col-"] {
+  float: none;
+  display: inline-block;
+  margin-left: 0;
+}
+.bootstrap-select.btn-group.dropdown-menu-right,
+.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
+.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
+  float: right;
+}
+.form-inline .bootstrap-select.btn-group,
+.form-horizontal .bootstrap-select.btn-group,
+.form-group .bootstrap-select.btn-group {
+  margin-bottom: 0;
+}
+.form-group-lg .bootstrap-select.btn-group.form-control,
+.form-group-sm .bootstrap-select.btn-group.form-control {
+  padding: 0;
+}
+.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,
+.form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
+  height: 100%;
+  font-size: inherit;
+  line-height: inherit;
+  border-radius: inherit;
+}
+.form-inline .bootstrap-select.btn-group .form-control {
+  width: 100%;
+}
+.bootstrap-select.btn-group.disabled,
+.bootstrap-select.btn-group > .disabled {
+  cursor: not-allowed;
+}
+.bootstrap-select.btn-group.disabled:focus,
+.bootstrap-select.btn-group > .disabled:focus {
+  outline: none !important;
+}
+.bootstrap-select.btn-group.bs-container {
+  position: absolute;
+  height: 0 !important;
+  padding: 0 !important;
+}
+.bootstrap-select.btn-group.bs-container .dropdown-menu {
+  z-index: 1060;
+}
+.bootstrap-select.btn-group .dropdown-toggle .filter-option {
+  display: inline-block;
+  overflow: hidden;
+  width: 100%;
+  text-align: left;
+}
+.bootstrap-select.btn-group .dropdown-toggle .caret {
+  position: absolute;
+  top: 50%;
+  right: 12px;
+  margin-top: -2px;
+  vertical-align: middle;
+}
+.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
+  width: 100%;
+}
+.bootstrap-select.btn-group .dropdown-menu {
+  min-width: 100%;
+  box-sizing: border-box;
+}
+.bootstrap-select.btn-group .dropdown-menu.inner {
+  position: static;
+  float: none;
+  border: 0;
+  padding: 0;
+  margin: 0;
+  border-radius: 0;
+  box-shadow: none;
+}
+.bootstrap-select.btn-group .dropdown-menu li {
+  position: relative;
+}
+.bootstrap-select.btn-group .dropdown-menu li.active small {
+  color: #fff;
+}
+.bootstrap-select.btn-group .dropdown-menu li.disabled a {
+  cursor: not-allowed;
+}
+.bootstrap-select.btn-group .dropdown-menu li a {
+  cursor: pointer;
+  user-select: none;
+}
+.bootstrap-select.btn-group .dropdown-menu li a.opt {
+  position: relative;
+  padding-left: 2.25em;
+}
+.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
+  display: none;
+}
+.bootstrap-select.btn-group .dropdown-menu li a span.text {
+  display: inline-block;
+}
+.bootstrap-select.btn-group .dropdown-menu li small {
+  padding-left: 0.5em;
+}
+.bootstrap-select.btn-group .dropdown-menu .notify {
+  position: absolute;
+  bottom: 5px;
+  width: 96%;
+  margin: 0 2%;
+  min-height: 26px;
+  padding: 3px 5px;
+  background: #f5f5f5;
+  border: 1px solid #e3e3e3;
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
+  pointer-events: none;
+  opacity: 0.9;
+  box-sizing: border-box;
+}
+.bootstrap-select.btn-group .no-results {
+  padding: 3px;
+  background: #f5f5f5;
+  margin: 0 5px;
+  white-space: nowrap;
+}
+.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
+  position: static;
+}
+.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
+  position: static;
+  top: auto;
+  margin-top: -1px;
+}
+.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
+  position: absolute;
+  display: inline-block;
+  right: 15px;
+  margin-top: 5px;
+}
+.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
+  margin-right: 34px;
+}
+.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
+  z-index: 1061;
+}
+.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
+  content: '';
+  border-left: 7px solid transparent;
+  border-right: 7px solid transparent;
+  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
+  position: absolute;
+  bottom: -4px;
+  left: 9px;
+  display: none;
+}
+.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
+  content: '';
+  border-left: 6px solid transparent;
+  border-right: 6px solid transparent;
+  border-bottom: 6px solid white;
+  position: absolute;
+  bottom: -4px;
+  left: 10px;
+  display: none;
+}
+.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
+  bottom: auto;
+  top: -3px;
+  border-top: 7px solid rgba(204, 204, 204, 0.2);
+  border-bottom: 0;
+}
+.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
+  bottom: auto;
+  top: -3px;
+  border-top: 6px solid white;
+  border-bottom: 0;
+}
+.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
+  right: 12px;
+  left: auto;
+}
+.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
+  right: 13px;
+  left: auto;
+}
+.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
+.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
+  display: block;
+}
+.bs-searchbox,
+.bs-actionsbox,
+.bs-donebutton {
+  padding: 4px 8px;
+}
+.bs-actionsbox {
+  width: 100%;
+  box-sizing: border-box;
+}
+.bs-actionsbox .btn-group button {
+  width: 50%;
+}
+.bs-donebutton {
+  float: left;
+  width: 100%;
+  box-sizing: border-box;
+}
+.bs-donebutton .btn-group button {
+  width: 100%;
+}
+.bs-searchbox + .bs-actionsbox {
+  padding: 0 8px 4px;
+}
+.bs-searchbox .form-control {
+  margin-bottom: 0;
+  width: 100%;
+  float: none;
+}
+.bootstrap-switch {
+  display: inline-block;
+  direction: ltr;
+  cursor: pointer;
+  border-radius: 1px;
+  border: 1px solid;
+  border-color: #bbb;
+  position: relative;
+  text-align: left;
+  overflow: hidden;
+  line-height: 8px;
+  z-index: 0;
+  -webkit-user-select: none;
+  -moz-user-select: none;
+  -ms-user-select: none;
+  user-select: none;
+  vertical-align: middle;
+  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+}
+.bootstrap-switch .bootstrap-switch-container {
+  display: inline-block;
+  top: 0;
+  border-radius: 1px;
+  -webkit-transform: translate3d(0, 0, 0);
+  transform: translate3d(0, 0, 0);
+}
+.bootstrap-switch .bootstrap-switch-handle-on,
+.bootstrap-switch .bootstrap-switch-handle-off,
+.bootstrap-switch .bootstrap-switch-label {
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box;
+  cursor: pointer;
+  display: table-cell;
+  vertical-align: middle;
+  padding: 2px 6px;
+  font-size: 12px;
+  line-height: 20px;
+}
+.bootstrap-switch .bootstrap-switch-handle-on,
+.bootstrap-switch .bootstrap-switch-handle-off {
+  text-align: center;
+  z-index: 1;
+}
+.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
+.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
+  color: #fff;
+  background: #0088ce;
+}
+.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
+.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
+  color: #fff;
+  background: #00659c;
+}
+.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
+.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
+  color: #fff;
+  background: #3f9c35;
+}
+.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
+.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
+  background: #ec7a08;
+  color: #fff;
+}
+.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
+.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
+  color: #fff;
+  background: #a30000;
+}
+.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
+.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
+  color: #000;
+  background: #f1f1f1;
+}
+.bootstrap-switch .bootstrap-switch-label {
+  text-align: center;
+  margin-top: -1px;
+  margin-bottom: -1px;
+  z-index: 100;
+  color: #4d5258;
+  background: #f1f1f1;
+}
+.bootstrap-switch span::before {
+  content: "\200b";
+}
+.bootstrap-switch .bootstrap-switch-handle-on {
+  border-bottom-left-radius: 1px - 1;
+  border-top-left-radius: 1px - 1;
+}
+.bootstrap-switch .bootstrap-switch-handle-off {
+  border-bottom-right-radius: 1px - 1;
+  border-top-right-radius: 1px - 1;
+}
+.bootstrap-switch input[type='radio'],
+.bootstrap-switch input[type='checkbox'] {
+  position: absolute !important;
+  top: 0;
+  left: 0;
+  margin: 0;
+  z-index: -1;
+  opacity: 0;
+  filter: alpha(opacity=0);
+  visibility: hidden;
+}
+.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
+.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
+.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
+  padding: 1px 5px;
+  font-size: 11px;
+  line-height: 1.5;
+}
+.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
+.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
+.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
+  padding: 2px 6px;
+  font-size: 11px;
+  line-height: 1.5;
+}
+.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
+.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
+.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
+  padding: 2px 10px;
+  font-size: 14px;
+  line-height: 1.3333333;
+}
+.bootstrap-switch.bootstrap-switch-disabled,
+.bootstrap-switch.bootstrap-switch-readonly,
+.bootstrap-switch.bootstrap-switch-indeterminate {
+  cursor: default !important;
+}
+.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
+.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
+.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
+.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
+.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
+.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
+.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,
+.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,
+.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label {
+  opacity: 0.5;
+  filter: alpha(opacity=50);
+  cursor: default !important;
+}
+.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
+  -webkit-transition: margin-left 0.5s;
+  -o-transition: margin-left 0.5s;
+  transition: margin-left 0.5s;
+}
+.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {
+  border-bottom-left-radius: 0;
+  border-top-left-radius: 0;
+  border-bottom-right-radius: 1px - 1;
+  border-top-right-radius: 1px - 1;
+}
+.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {
+  border-bottom-right-radius: 0;
+  border-top-right-radius: 0;
+  border-bottom-left-radius: 1px - 1;
+  border-top-left-radius: 1px - 1;
+}
+.bootstrap-switch.bootstrap-switch-focused {
+  border-color: #0088ce;
+  outline: 0;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 136, 206, 0.6);
+  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 136, 206, 0.6);
+}
+.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label,
+.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label {
+  border-bottom-right-radius: 1px - 1;
+  border-top-right-radius: 1px - 1;
+}
+.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label,
+.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label {
+  border-bottom-left-radius: 1px - 1;
+  border-top-left-radius: 1px - 1;
+}
+/*
+ *  Bootstrap TouchSpin - v3.1.1
+ *  A mobile and touch friendly input spinner component for Bootstrap 3.
+ *  http://www.virtuosoft.eu/code/bootstrap-touchspin/
+ *
+ *  Made by István Ujj-Mészáros
+ *  Under Apache License v2.0 License
+ */
+.bootstrap-touchspin .input-group-btn-vertical {
+  position: relative;
+  white-space: nowrap;
+  width: 1%;
+  vertical-align: middle;
+  display: table-cell;
+}
+.bootstrap-touchspin .input-group-btn-vertical > .btn {
+  display: block;
+  float: none;
+  width: 100%;
+  max-width: 100%;
+  padding: 8px 10px;
+  margin-left: -1px;
+  position: relative;
+}
+.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
+  border-radius: 0;
+  border-top-right-radius: 4px;
+}
+.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
+  margin-top: -2px;
+  border-radius: 0;
+  border-bottom-right-radius: 4px;
+}
+.bootstrap-touchspin .input-group-btn-vertical i {
+  position: absolute;
+  top: 3px;
+  left: 5px;
+  font-size: 9px;
+  font-weight: normal;
+}
+/*-- Chart --*/
+.c3 svg {
+  font: 10px sans-serif;
+  -webkit-tap-highlight-color: transparent;
+}
+.c3 path,
+.c3 line {
+  fill: none;
+  stroke: #000;
+}
+.c3 text {
+  -webkit-user-select: none;
+  -moz-user-select: none;
+  user-select: none;
+}
+.c3-legend-item-tile,
+.c3-xgrid-focus,
+.c3-ygrid,
+.c3-event-rect,
+.c3-bars path {
+  shape-rendering: crispEdges;
+}
+.c3-chart-arc path {
+  stroke: #fff;
+}
+.c3-chart-arc rect {
+  stroke: white;
+  stroke-width: 1;
+}
+.c3-chart-arc text {
+  fill: #fff;
+  font-size: 13px;
+}
+/*-- Axis --*/
+/*-- Grid --*/
+.c3-grid line {
+  stroke: #aaa;
+}
+.c3-grid text {
+  fill: #aaa;
+}
+.c3-xgrid,
+.c3-ygrid {
+  stroke-dasharray: 3 3;
+}
+/*-- Text on Chart --*/
+.c3-text.c3-empty {
+  fill: #808080;
+  font-size: 2em;
+}
+/*-- Line --*/
+.c3-line {
+  stroke-width: 1px;
+}
+/*-- Point --*/
+.c3-circle._expanded_ {
+  stroke-width: 1px;
+  stroke: white;
+}
+.c3-selected-circle {
+  fill: white;
+  stroke-width: 2px;
+}
+/*-- Bar --*/
+.c3-bar {
+  stroke-width: 0;
+}
+.c3-bar._expanded_ {
+  fill-opacity: 1;
+  fill-opacity: 0.75;
+}
+/*-- Focus --*/
+.c3-target.c3-focused {
+  opacity: 1;
+}
+.c3-target.c3-focused path.c3-line,
+.c3-target.c3-focused path.c3-step {
+  stroke-width: 2px;
+}
+.c3-target.c3-defocused {
+  opacity: 0.3 !important;
+}
+/*-- Region --*/
+.c3-region {
+  fill: steelblue;
+  fill-opacity: .1;
+}
+/*-- Brush --*/
+.c3-brush .extent {
+  fill-opacity: .1;
+}
+/*-- Select - Drag --*/
+/*-- Legend --*/
+.c3-legend-item {
+  font-size: 12px;
+}
+.c3-legend-item-hidden {
+  opacity: 0.15;
+}
+.c3-legend-background {
+  opacity: 0.75;
+  fill: white;
+  stroke: lightgray;
+  stroke-width: 1;
+}
+/*-- Title --*/
+.c3-title {
+  font: 14px sans-serif;
+}
+/*-- Tooltip --*/
+.c3-tooltip-container {
+  z-index: 10;
+}
+.c3-tooltip {
+  border-collapse: collapse;
+  border-spacing: 0;
+  background-color: #fff;
+  empty-cells: show;
+  -webkit-box-shadow: 7px 7px 12px -9px #777777;
+  -moz-box-shadow: 7px 7px 12px -9px #777777;
+  box-shadow: 7px 7px 12px -9px #777777;
+  opacity: 0.9;
+}
+.c3-tooltip tr {
+  border: 1px solid #CCC;
+}
+.c3-tooltip th {
+  background-color: #aaa;
+  font-size: 14px;
+  padding: 2px 5px;
+  text-align: left;
+  color: #FFF;
+}
+.c3-tooltip td {
+  font-size: 13px;
+  padding: 3px 6px;
+  background-color: #fff;
+  border-left: 1px dotted #999;
+}
+.c3-tooltip td > span {
+  display: inline-block;
+  width: 10px;
+  height: 10px;
+  margin-right: 6px;
+}
+.c3-tooltip td.value {
+  text-align: right;
+}
+/*-- Area --*/
+.c3-area {
+  stroke-width: 0;
+  opacity: 0.2;
+}
+/*-- Arc --*/
+.c3-chart-arcs-title {
+  dominant-baseline: middle;
+  font-size: 1.3em;
+}
+.c3-chart-arcs .c3-chart-arcs-background {
+  fill: #e0e0e0;
+  stroke: #FFF;
+}
+.c3-chart-arcs .c3-chart-arcs-gauge-unit {
+  fill: #000;
+  font-size: 16px;
+}
+.c3-chart-arcs .c3-chart-arcs-gauge-max {
+  fill: #777;
+}
+.c3-chart-arcs .c3-chart-arcs-gauge-min {
+  fill: #777;
+}
+.c3-chart-arc .c3-gauge-value {
+  fill: #000;
+  /*  font-size: 28px !important;*/
+}
+.c3-chart-arc.c3-target g path {
+  opacity: 1;
+}
+.c3-chart-arc.c3-target.c3-focused g path {
+  opacity: 1;
+}
+/*!
+ * Datetimepicker for Bootstrap 3
+ * version : 4.17.47
+ * https://github.com/Eonasdan/bootstrap-datetimepicker/
+ */
+.bootstrap-datetimepicker-widget {
+  list-style: none;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu {
+  display: block;
+  margin: 2px 0;
+  padding: 4px;
+  width: 19em;
+}
+@media (min-width: 768px) {
+  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
+    width: 38em;
+  }
+}
+@media (min-width: 992px) {
+  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
+    width: 38em;
+  }
+}
+@media (min-width: 1200px) {
+  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
+    width: 38em;
+  }
+}
+.bootstrap-datetimepicker-widget.dropdown-menu:before,
+.bootstrap-datetimepicker-widget.dropdown-menu:after {
+  content: '';
+  display: inline-block;
+  position: absolute;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
+  border-left: 7px solid transparent;
+  border-right: 7px solid transparent;
+  border-bottom: 7px solid #ccc;
+  border-bottom-color: rgba(0, 0, 0, 0.2);
+  top: -7px;
+  left: 7px;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
+  border-left: 6px solid transparent;
+  border-right: 6px solid transparent;
+  border-bottom: 6px solid white;
+  top: -6px;
+  left: 8px;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
+  border-left: 7px solid transparent;
+  border-right: 7px solid transparent;
+  border-top: 7px solid #ccc;
+  border-top-color: rgba(0, 0, 0, 0.2);
+  bottom: -7px;
+  left: 6px;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
+  border-left: 6px solid transparent;
+  border-right: 6px solid transparent;
+  border-top: 6px solid white;
+  bottom: -6px;
+  left: 7px;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
+  left: auto;
+  right: 6px;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
+  left: auto;
+  right: 7px;
+}
+.bootstrap-datetimepicker-widget .list-unstyled {
+  margin: 0;
+}
+.bootstrap-datetimepicker-widget a[data-action] {
+  padding: 6px 0;
+}
+.bootstrap-datetimepicker-widget a[data-action]:active {
+  box-shadow: none;
+}
+.bootstrap-datetimepicker-widget .timepicker-hour,
+.bootstrap-datetimepicker-widget .timepicker-minute,
+.bootstrap-datetimepicker-widget .timepicker-second {
+  width: 54px;
+  font-weight: bold;
+  font-size: 1em;
+  margin: 0;
+}
+.bootstrap-datetimepicker-widget button[data-action] {
+  padding: 6px;
+}
+.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Increment Hours";
+}
+.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Increment Minutes";
+}
+.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Decrement Hours";
+}
+.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Decrement Minutes";
+}
+.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Show Hours";
+}
+.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Show Minutes";
+}
+.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Toggle AM/PM";
+}
+.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Clear the picker";
+}
+.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Set the date to today";
+}
+.bootstrap-datetimepicker-widget .picker-switch {
+  text-align: center;
+}
+.bootstrap-datetimepicker-widget .picker-switch::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Toggle Date and Time Screens";
+}
+.bootstrap-datetimepicker-widget .picker-switch td {
+  padding: 0;
+  margin: 0;
+  height: auto;
+  width: auto;
+  line-height: inherit;
+}
+.bootstrap-datetimepicker-widget .picker-switch td span {
+  line-height: 2.5;
+  height: 2.5em;
+  width: 100%;
+}
+.bootstrap-datetimepicker-widget table {
+  width: 100%;
+  margin: 0;
+}
+.bootstrap-datetimepicker-widget table td,
+.bootstrap-datetimepicker-widget table th {
+  text-align: center;
+  border-radius: 1px;
+}
+.bootstrap-datetimepicker-widget table th {
+  height: 20px;
+  line-height: 20px;
+  width: 20px;
+}
+.bootstrap-datetimepicker-widget table th.picker-switch {
+  width: 145px;
+}
+.bootstrap-datetimepicker-widget table th.disabled,
+.bootstrap-datetimepicker-widget table th.disabled:hover {
+  background: none;
+  color: #9c9c9c;
+  cursor: not-allowed;
+}
+.bootstrap-datetimepicker-widget table th.prev::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Previous Month";
+}
+.bootstrap-datetimepicker-widget table th.next::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Next Month";
+}
+.bootstrap-datetimepicker-widget table thead tr:first-child th {
+  cursor: pointer;
+}
+.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
+  background: transparent;
+}
+.bootstrap-datetimepicker-widget table td {
+  height: 54px;
+  line-height: 54px;
+  width: 54px;
+}
+.bootstrap-datetimepicker-widget table td.cw {
+  font-size: .8em;
+  height: 20px;
+  line-height: 20px;
+  color: #9c9c9c;
+}
+.bootstrap-datetimepicker-widget table td.day {
+  height: 20px;
+  line-height: 20px;
+  width: 20px;
+}
+.bootstrap-datetimepicker-widget table td.day:hover,
+.bootstrap-datetimepicker-widget table td.hour:hover,
+.bootstrap-datetimepicker-widget table td.minute:hover,
+.bootstrap-datetimepicker-widget table td.second:hover {
+  background: transparent;
+  cursor: pointer;
+}
+.bootstrap-datetimepicker-widget table td.old,
+.bootstrap-datetimepicker-widget table td.new {
+  color: #9c9c9c;
+}
+.bootstrap-datetimepicker-widget table td.today {
+  position: relative;
+}
+.bootstrap-datetimepicker-widget table td.today:before {
+  content: '';
+  display: inline-block;
+  border: solid transparent;
+  border-width: 0 0 7px 7px;
+  border-bottom-color: #0088ce;
+  border-top-color: rgba(0, 0, 0, 0.2);
+  position: absolute;
+  bottom: 4px;
+  right: 4px;
+}
+.bootstrap-datetimepicker-widget table td.active,
+.bootstrap-datetimepicker-widget table td.active:hover {
+  background-color: #0088ce;
+  color: #fff;
+  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+.bootstrap-datetimepicker-widget table td.active.today:before {
+  border-bottom-color: #fff;
+}
+.bootstrap-datetimepicker-widget table td.disabled,
+.bootstrap-datetimepicker-widget table td.disabled:hover {
+  background: none;
+  color: #9c9c9c;
+  cursor: not-allowed;
+}
+.bootstrap-datetimepicker-widget table td span {
+  display: inline-block;
+  width: 54px;
+  height: 54px;
+  line-height: 54px;
+  margin: 2px 1.5px;
+  cursor: pointer;
+  border-radius: 1px;
+}
+.bootstrap-datetimepicker-widget table td span:hover {
+  background: transparent;
+}
+.bootstrap-datetimepicker-widget table td span.active {
+  background-color: #0088ce;
+  color: #fff;
+  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+.bootstrap-datetimepicker-widget table td span.old {
+  color: #9c9c9c;
+}
+.bootstrap-datetimepicker-widget table td span.disabled,
+.bootstrap-datetimepicker-widget table td span.disabled:hover {
+  background: none;
+  color: #9c9c9c;
+  cursor: not-allowed;
+}
+.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
+  height: 27px;
+  line-height: 27px;
+}
+.bootstrap-datetimepicker-widget.wider {
+  width: 21em;
+}
+.bootstrap-datetimepicker-widget .datepicker-decades .decade {
+  line-height: 1.8em !important;
+}
+.input-group.date .input-group-addon {
+  cursor: pointer;
+}
+.sr-only {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+}
+.text-overflow-pf {
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  word-wrap: normal;
+}
+.about-modal-pf {
+  background-color: #292e34;
+  background-image: url("../img/bg-modal-about-pf.png");
+  background-position: right bottom;
+  background-repeat: no-repeat;
+  background-size: 216px auto;
+}
+@media (min-width: 768px) {
+  .about-modal-pf {
+    background-size: auto;
+  }
+}
+.about-modal-pf .modal-body {
+  color: #fff;
+  padding-bottom: 16px;
+  padding-left: 40px;
+  padding-right: 40px;
+}
+@media (min-width: 768px) {
+  .about-modal-pf .modal-body {
+    padding-left: 80px;
+    padding-right: 80px;
+  }
+}
+.about-modal-pf .modal-header {
+  background-color: transparent;
+}
+.about-modal-pf .pficon-close {
+  color: #fff;
+}
+.product-versions-pf {
+  margin-bottom: 30px;
+  margin-top: 30px;
+}
+.product-versions-pf li strong {
+  margin-right: 10px;
+}
+.trademark-pf {
+  font-size: 11px;
+}
+.applauncher-pf {
+  display: inline-block;
+  overflow: visible;
+}
+.applauncher-pf .applauncher-pf-title {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+}
+.applauncher-pf .dropdown-toggle.disabled {
+  cursor: not-allowed;
+}
+.applauncher-pf.open > .dropdown-menu {
+  display: flex;
+  flex-wrap: wrap;
+}
+.applauncher-pf .applauncher-pf-item {
+  width: 100%;
+}
+.applauncher-pf .applauncher-pf-link {
+  display: flex;
+  white-space: initial;
+  align-items: center;
+}
+@media (min-width: 768px) {
+  .applauncher-pf-block-list .applauncher-pf-item {
+    flex: 0 0 50%;
+  }
+}
+.applauncher-pf-block-list .applauncher-pf-link {
+  flex-wrap: wrap;
+}
+@media (min-width: 768px) {
+  .applauncher-pf-block-list .applauncher-pf-link {
+    flex-direction: column;
+    text-align: center;
+    padding: 15px 0;
+    height: 100%;
+  }
+}
+.applauncher-pf-block-list .applauncher-pf-link-icon {
+  padding: 0;
+}
+.applauncher-pf-block-list .applauncher-pf-link-title {
+  margin-top: auto;
+}
+@media (min-width: 768px) {
+  .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link {
+    padding: 9px;
+  }
+  .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon {
+    flex: 1 0 0;
+    text-align: left;
+  }
+  .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title {
+    flex: 3;
+  }
+}
+.applauncher-pf .dropdown-menu {
+  padding: 9px;
+  min-width: 220px;
+}
+.applauncher-pf .applauncher-pf-link {
+  border-style: solid;
+  border-width: 1px;
+  border-color: transparent;
+}
+.applauncher-pf .applauncher-pf-link:hover {
+  background-color: #f5f5f5;
+  border-color: #bbb;
+  color: #0088ce;
+  text-decoration: none;
+  -webkit-box-shadow: 0 0 2px 0 #d1d1d1;
+  box-shadow: 0 0 2px 0 #d1d1d1;
+}
+.applauncher-pf .applauncher-pf-link-icon {
+  font-size: 1.2em;
+  text-align: center;
+  width: 1.28571429em;
+}
+@media (min-width: 768px) {
+  .applauncher-pf .applauncher-pf-link-icon {
+    font-size: 2em;
+  }
+}
+.navbar-utility .applauncher-pf .dropdown-menu {
+  border-width: 1px !important;
+}
+@media (min-width: 768px) {
+  .navbar-utility .applauncher-pf .dropdown-menu {
+    margin-top: 3px;
+    right: 0;
+  }
+}
+.navbar-pf .navbar-utility .applauncher-pf.open > a,
+.navbar-pf-alt .navbar-utility .applauncher-pf.open > a,
+.navbar-pf .applauncher-pf.open > a,
+.navbar-pf-alt .applauncher-pf.open > a,
+.navbar-pf .navbar-utility .applauncher-pf.open > a:focus,
+.navbar-pf-alt .navbar-utility .applauncher-pf.open > a:focus,
+.navbar-pf .applauncher-pf.open > a:focus,
+.navbar-pf-alt .applauncher-pf.open > a:focus {
+  background-color: #454C53;
+  color: #fff;
+}
+@media (min-width: 768px) {
+  .navbar-pf .navbar-utility .applauncher-pf.open > a,
+  .navbar-pf-alt .navbar-utility .applauncher-pf.open > a,
+  .navbar-pf .applauncher-pf.open > a,
+  .navbar-pf-alt .applauncher-pf.open > a,
+  .navbar-pf .navbar-utility .applauncher-pf.open > a:focus,
+  .navbar-pf-alt .navbar-utility .applauncher-pf.open > a:focus,
+  .navbar-pf .applauncher-pf.open > a:focus,
+  .navbar-pf-alt .applauncher-pf.open > a:focus {
+    background-color: #5b6165;
+    border-color: #53565b;
+    color: #fff;
+  }
+}
+@media (max-width: 767px) {
+  .navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu > li > a,
+  .navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu > li > a,
+  .navbar-pf .applauncher-pf.open .dropdown-menu > li > a,
+  .navbar-pf-alt .applauncher-pf.open .dropdown-menu > li > a {
+    padding-left: 20px;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu > li > a .applauncher-pf-link-icon,
+  .navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu > li > a .applauncher-pf-link-icon,
+  .navbar-pf .applauncher-pf.open .dropdown-menu > li > a .applauncher-pf-link-icon,
+  .navbar-pf-alt .applauncher-pf.open .dropdown-menu > li > a .applauncher-pf-link-icon {
+    padding-right: 20px;
+  }
+}
+.navbar-pf .navbar-utility .applauncher-pf.dropdown > .dropdown-toggle,
+.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown > .dropdown-toggle,
+.navbar-pf .applauncher-pf.dropdown > .dropdown-toggle,
+.navbar-pf-alt .applauncher-pf.dropdown > .dropdown-toggle,
+.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,
+.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,
+.navbar-pf .applauncher-pf .dropdown-toggle,
+.navbar-pf-alt .applauncher-pf .dropdown-toggle {
+  background-color: inherit;
+  color: #d1d1d1;
+  text-align: left;
+  text-decoration: none;
+  border-width: 0;
+  display: block;
+  padding-left: 20px;
+}
+.navbar-pf .navbar-utility .applauncher-pf.dropdown > .dropdown-toggle.disabled,
+.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown > .dropdown-toggle.disabled,
+.navbar-pf .applauncher-pf.dropdown > .dropdown-toggle.disabled,
+.navbar-pf-alt .applauncher-pf.dropdown > .dropdown-toggle.disabled,
+.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,
+.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled,
+.navbar-pf .applauncher-pf .dropdown-toggle.disabled,
+.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled {
+  color: #8b8d8f !important;
+}
+@media (min-width: 768px) {
+  .navbar-pf .navbar-utility .applauncher-pf.dropdown > .dropdown-toggle,
+  .navbar-pf-alt .navbar-utility .applauncher-pf.dropdown > .dropdown-toggle,
+  .navbar-pf .applauncher-pf.dropdown > .dropdown-toggle,
+  .navbar-pf-alt .applauncher-pf.dropdown > .dropdown-toggle,
+  .navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,
+  .navbar-pf .applauncher-pf .dropdown-toggle,
+  .navbar-pf-alt .applauncher-pf .dropdown-toggle {
+    border-left: 1px solid #53565b;
+    padding: 7px 10px;
+    line-height: 1;
+  }
+}
+.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,
+.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon,
+.navbar-pf .applauncher-pf .applauncher-pf-icon,
+.navbar-pf-alt .applauncher-pf .applauncher-pf-icon {
+  padding-right: 4px;
+}
+@media (min-width: 768px) {
+  .navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon,
+  .navbar-pf .applauncher-pf .applauncher-pf-icon,
+  .navbar-pf-alt .applauncher-pf .applauncher-pf-icon {
+    padding: 0;
+  }
+}
+.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,
+.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title,
+.navbar-pf .applauncher-pf .applauncher-pf-title,
+.navbar-pf-alt .applauncher-pf .applauncher-pf-title {
+  display: inline;
+  position: relative;
+}
+.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,
+.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link,
+.navbar-pf .applauncher-pf .applauncher-pf-link,
+.navbar-pf-alt .applauncher-pf .applauncher-pf-link {
+  overflow: hidden;
+  width: 100%;
+}
+.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,
+.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover,
+.navbar-pf .applauncher-pf .applauncher-pf-link:hover,
+.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover {
+  background-color: transparent;
+  border-color: transparent;
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-title,
+.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-title,
+.navbar-pf .applauncher-pf .applauncher-pf-link-title,
+.navbar-pf-alt .applauncher-pf .applauncher-pf-link-title {
+  overflow: hidden;
+}
+@media (min-width: 768px) {
+  .navbar-pf .navbar-utility .applauncher-pf,
+  .navbar-pf-alt .navbar-utility .applauncher-pf,
+  .navbar-pf .applauncher-pf,
+  .navbar-pf-alt .applauncher-pf {
+    display: inline-block;
+    overflow: visible;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title,
+  .navbar-pf .applauncher-pf .applauncher-pf-title,
+  .navbar-pf-alt .applauncher-pf .applauncher-pf-title {
+    position: absolute;
+    width: 1px;
+    height: 1px;
+    margin: -1px;
+    padding: 0;
+    overflow: hidden;
+    clip: rect(0, 0, 0, 0);
+    border: 0;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled,
+  .navbar-pf .applauncher-pf .dropdown-toggle.disabled,
+  .navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled {
+    cursor: not-allowed;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf.open > .dropdown-menu,
+  .navbar-pf-alt .navbar-utility .applauncher-pf.open > .dropdown-menu,
+  .navbar-pf .applauncher-pf.open > .dropdown-menu,
+  .navbar-pf-alt .applauncher-pf.open > .dropdown-menu {
+    display: flex;
+    flex-wrap: wrap;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-item,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-item,
+  .navbar-pf .applauncher-pf .applauncher-pf-item,
+  .navbar-pf-alt .applauncher-pf .applauncher-pf-item {
+    width: 100%;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link,
+  .navbar-pf .applauncher-pf .applauncher-pf-link,
+  .navbar-pf-alt .applauncher-pf .applauncher-pf-link {
+    display: flex;
+    white-space: initial;
+    align-items: center;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,
+  .navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,
+  .navbar-pf .applauncher-pf-block-list .applauncher-pf-link,
+  .navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link {
+    flex-wrap: wrap;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon,
+  .navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon,
+  .navbar-pf .applauncher-pf-block-list .applauncher-pf-link-icon,
+  .navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-icon {
+    padding: 0;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-title,
+  .navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-title,
+  .navbar-pf .applauncher-pf-block-list .applauncher-pf-link-title,
+  .navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-title {
+    margin-top: auto;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf .dropdown-menu,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-menu,
+  .navbar-pf .applauncher-pf .dropdown-menu,
+  .navbar-pf-alt .applauncher-pf .dropdown-menu {
+    padding: 9px;
+    min-width: 220px;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link,
+  .navbar-pf .applauncher-pf .applauncher-pf-link,
+  .navbar-pf-alt .applauncher-pf .applauncher-pf-link {
+    border-style: solid;
+    border-width: 1px;
+    border-color: transparent;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover,
+  .navbar-pf .applauncher-pf .applauncher-pf-link:hover,
+  .navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover {
+    background-color: #f5f5f5;
+    border-color: #bbb;
+    color: #0088ce;
+    text-decoration: none;
+    -webkit-box-shadow: 0 0 2px 0 #d1d1d1;
+    box-shadow: 0 0 2px 0 #d1d1d1;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon,
+  .navbar-pf .applauncher-pf .applauncher-pf-link-icon,
+  .navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon {
+    font-size: 1.2em;
+    text-align: center;
+    width: 1.28571429em;
+  }
+}
+@media (min-width: 768px) and (min-width: 768px) {
+  .navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-item,
+  .navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-item,
+  .navbar-pf .applauncher-pf-block-list .applauncher-pf-item,
+  .navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-item {
+    flex: 0 0 50%;
+  }
+}
+@media (min-width: 768px) and (min-width: 768px) {
+  .navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,
+  .navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,
+  .navbar-pf .applauncher-pf-block-list .applauncher-pf-link,
+  .navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link {
+    flex-direction: column;
+    text-align: center;
+    padding: 15px 0;
+    height: 100%;
+  }
+}
+@media (min-width: 768px) and (min-width: 768px) {
+  .navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,
+  .navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,
+  .navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,
+  .navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link {
+    padding: 9px;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,
+  .navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,
+  .navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,
+  .navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon {
+    flex: 1 0 0;
+    text-align: left;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,
+  .navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,
+  .navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,
+  .navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title {
+    flex: 3;
+  }
+}
+@media (min-width: 768px) and (min-width: 768px) {
+  .navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon,
+  .navbar-pf .applauncher-pf .applauncher-pf-link-icon,
+  .navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon {
+    font-size: 2em;
+  }
+}
+@media (min-width: 768px) {
+  .navbar-iconic .navbar-utility .applauncher-pf.dropdown > .dropdown-toggle,
+  .navbar-iconic .applauncher-pf.dropdown > .dropdown-toggle,
+  .navbar-iconic .navbar-utility .applauncher-pf .dropdown-toggle,
+  .navbar-iconic .applauncher-pf .dropdown-toggle {
+    padding: 22px 10px;
+    line-height: inherit;
+  }
+}
+.blank-slate-pf {
+  background-color: #f5f5f5;
+  border: 1px solid #e3e3e3;
+  border-radius: 1px;
+  margin-bottom: 20px;
+  padding: 30px;
+  text-align: center;
+}
+@media (min-width: 768px) {
+  .blank-slate-pf {
+    padding: 60px 60px;
+  }
+}
+@media (min-width: 992px) {
+  .blank-slate-pf {
+    padding: 90px 120px;
+  }
+}
+.blank-slate-pf .blank-slate-pf-icon {
+  color: #9c9c9c;
+  font-size: 57.6px;
+  line-height: 57.6px;
+}
+.blank-slate-pf .blank-slate-pf-main-action {
+  margin-top: 20px;
+}
+.blank-slate-pf .blank-slate-pf-secondary-action {
+  margin-top: 20px;
+}
+.blank-slate-pf button {
+  margin-right: 5px;
+}
+.blank-slate-pf button:last-of-type {
+  margin-right: 0;
+}
+.combobox-container.combobox-selected .glyphicon-remove {
+  display: inline-block;
+}
+.combobox-container .caret {
+  margin-left: 0;
+}
+.combobox-container .combobox::-ms-clear {
+  display: none;
+}
+.combobox-container .dropdown-menu {
+  margin-top: -1px;
+  width: 100%;
+}
+.combobox-container .glyphicon-remove {
+  display: none;
+  top: auto;
+  width: 12px;
+}
+.combobox-container .glyphicon-remove:before {
+  content: "\e60b";
+  font-family: "PatternFlyIcons-webfont";
+}
+.combobox-container .input-group-addon {
+  background-color: #f1f1f1;
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+  border-color: #bbb;
+  color: #4d5258;
+  position: relative;
+}
+.combobox-container .input-group-addon:hover,
+.combobox-container .input-group-addon:focus,
+.combobox-container .input-group-addon:active,
+.combobox-container .input-group-addon.active,
+.open .dropdown-toggle.combobox-container .input-group-addon {
+  background-color: #f1f1f1;
+  background-image: none;
+  border-color: #bbb;
+  color: #4d5258;
+}
+.combobox-container .input-group-addon:active,
+.combobox-container .input-group-addon.active,
+.open .dropdown-toggle.combobox-container .input-group-addon {
+  background-image: none;
+}
+.combobox-container .input-group-addon:active:hover,
+.combobox-container .input-group-addon.active:hover,
+.open .dropdown-toggle.combobox-container .input-group-addon:hover,
+.combobox-container .input-group-addon:active:focus,
+.combobox-container .input-group-addon.active:focus,
+.open .dropdown-toggle.combobox-container .input-group-addon:focus,
+.combobox-container .input-group-addon:active.focus,
+.combobox-container .input-group-addon.active.focus,
+.open .dropdown-toggle.combobox-container .input-group-addon.focus {
+  background-color: #e5e5e5;
+  border-color: #a9a9a9;
+}
+.combobox-container .input-group-addon.disabled,
+.combobox-container .input-group-addon[disabled],
+fieldset[disabled] .combobox-container .input-group-addon,
+.combobox-container .input-group-addon.disabled:hover,
+.combobox-container .input-group-addon[disabled]:hover,
+fieldset[disabled] .combobox-container .input-group-addon:hover,
+.combobox-container .input-group-addon.disabled:focus,
+.combobox-container .input-group-addon[disabled]:focus,
+fieldset[disabled] .combobox-container .input-group-addon:focus,
+.combobox-container .input-group-addon.disabled:active,
+.combobox-container .input-group-addon[disabled]:active,
+fieldset[disabled] .combobox-container .input-group-addon:active,
+.combobox-container .input-group-addon.disabled.active,
+.combobox-container .input-group-addon[disabled].active,
+fieldset[disabled] .combobox-container .input-group-addon.active {
+  background-color: #f1f1f1;
+  border-color: #bbb;
+}
+.combobox-container .input-group-addon:active {
+  -webkit-box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
+  box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
+}
+.bootstrap-datepicker.form-control[readonly] {
+  background-color: #fff;
+  border-color: #bbb !important;
+  color: #363636;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075);
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075);
+}
+.bootstrap-datepicker.form-control[readonly]:focus {
+  border-color: #0088ce;
+  outline: 0 !important;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px rgba(0, 136, 206, 0.6);
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px rgba(0, 136, 206, 0.6);
+}
+.bootstrap-datepicker.form-control[readonly]:focus {
+  border-color: #0088ce !important;
+}
+.has-error .bootstrap-datepicker.form-control[readonly]:focus {
+  border-color: #990000;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #ff3333;
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #ff3333;
+}
+.has-success .bootstrap-datepicker.form-control[readonly]:focus {
+  border-color: #2b542c;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #67b168;
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #67b168;
+}
+.has-warning .bootstrap-datepicker.form-control[readonly]:focus {
+  border-color: #bb6106;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #faad60;
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #faad60;
+}
+.bootstrap-datepicker.form-control[readonly]:hover {
+  border-color: #7dc3e8 !important;
+}
+.has-error .bootstrap-datepicker.form-control[readonly]:hover {
+  border-color: #990000 !important;
+}
+.has-success .bootstrap-datepicker.form-control[readonly]:hover {
+  border-color: #2b542c !important;
+}
+.has-warning .bootstrap-datepicker.form-control[readonly]:hover {
+  border-color: #bb6106 !important;
+}
+.has-error .bootstrap-datepicker.form-control[readonly] {
+  border-color: #cc0000 !important;
+}
+.has-success .bootstrap-datepicker.form-control[readonly] {
+  border-color: #3c763d !important;
+}
+.has-warning .bootstrap-datepicker.form-control[readonly] {
+  border-color: #ec7a08 !important;
+}
+.datepicker {
+  border-radius: 1px;
+}
+.datepicker .datepicker-switch,
+.datepicker tfoot .clear,
+.datepicker tfoot .today {
+  font-size: 14px;
+  font-weight: 500;
+}
+.datepicker .next,
+.datepicker .prev {
+  font-weight: 500;
+}
+.datepicker table tr td,
+.datepicker table tr th {
+  border-radius: 1px;
+}
+.datepicker table tr td.active,
+.datepicker table tr td.active:hover,
+.datepicker table tr td.active.disabled,
+.datepicker table tr td.active.disabled:hover {
+  background: #0088ce !important;
+  color: #fff !important;
+  text-shadow: none;
+}
+.datepicker table tr td.day:hover,
+.datepicker table tr td.day.focused {
+  background: #def3ff;
+}
+.datepicker table tr td.selected,
+.datepicker table tr td.selected:hover,
+.datepicker table tr td.selected.disabled,
+.datepicker table tr td.selected.disabled:hover {
+  text-shadow: none;
+}
+.datepicker table tr td span {
+  border-radius: 1px;
+}
+.datepicker table tr td span.active,
+.datepicker table tr td span.active:hover,
+.datepicker table tr td span.active.disabled,
+.datepicker table tr td span.active.disabled:hover {
+  background: #0088ce;
+  text-shadow: none;
+}
+.datepicker table tr td span:hover {
+  background: #def3ff;
+}
+.datepicker thead tr:first-child th:hover,
+.datepicker tfoot tr th:hover {
+  background: #def3ff;
+}
+.input-daterange input:first-child {
+  border-radius: 1px 0 0 1px;
+}
+.input-daterange input:last-child {
+  border-radius: 0 1px 1px 0;
+}
+.input-daterange .input-group-addon {
+  background-color: #f1f1f1;
+  border-color: #bbb;
+  line-height: 1.66666667;
+  padding: 2px 6px;
+}
+.bootstrap-select.btn-group.form-control {
+  margin-bottom: 0;
+}
+.bootstrap-select.btn-group .btn {
+  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+}
+.bootstrap-select.btn-group .btn:hover {
+  border-color: #7dc3e8;
+}
+.bootstrap-select.btn-group .btn .caret {
+  margin-top: -4px;
+}
+.bootstrap-select.btn-group .btn:focus {
+  border-color: #0088ce;
+  outline: 0 !important;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px rgba(0, 136, 206, 0.6);
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px rgba(0, 136, 206, 0.6);
+}
+.has-error .bootstrap-select.btn-group .btn {
+  border-color: #cc0000;
+}
+.has-error .bootstrap-select.btn-group .btn:focus {
+  border-color: #990000;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #ff3333;
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #ff3333;
+}
+.has-success .bootstrap-select.btn-group .btn {
+  border-color: #3c763d;
+}
+.has-success .bootstrap-select.btn-group .btn:focus {
+  border-color: #2b542c;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #67b168;
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #67b168;
+}
+.has-warning .bootstrap-select.btn-group .btn {
+  border-color: #ec7a08;
+}
+.has-warning .bootstrap-select.btn-group .btn:focus {
+  border-color: #bb6106;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #faad60;
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #faad60;
+}
+.bootstrap-select.btn-group .dropdown-menu > .active > a,
+.bootstrap-select.btn-group .dropdown-menu > .active > a:active {
+  background-color: #def3ff !important;
+  border-color: #bee1f4 !important;
+  color: #363636 !important;
+}
+.bootstrap-select.btn-group .dropdown-menu > .active > a small,
+.bootstrap-select.btn-group .dropdown-menu > .active > a:active small {
+  color: #9c9c9c !important;
+}
+.bootstrap-select.btn-group .dropdown-menu > .disabled > a {
+  color: #9c9c9c !important;
+}
+.bootstrap-select.btn-group .dropdown-menu > .selected > a {
+  background-color: #0088ce !important;
+  border-color: #0088ce !important;
+  color: #fff !important;
+}
+.bootstrap-select.btn-group .dropdown-menu > .selected > a small {
+  color: rgba(255, 255, 255, 0.5) !important;
+}
+.bootstrap-select.btn-group .dropdown-menu .divider {
+  background: #ededed !important;
+  margin: 4px 1px !important;
+}
+.bootstrap-select.btn-group .dropdown-menu dt {
+  color: #8b8d8f;
+  font-weight: normal;
+  padding: 1px 10px;
+}
+.bootstrap-select.btn-group .dropdown-menu li > a.opt {
+  padding: 1px 10px;
+}
+.bootstrap-select.btn-group .dropdown-menu li a:active small {
+  color: rgba(255, 255, 255, 0.5) !important;
+}
+.bootstrap-select.btn-group .dropdown-menu li a:hover small,
+.bootstrap-select.btn-group .dropdown-menu li a:focus small {
+  color: #9c9c9c;
+}
+.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:hover small,
+.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:focus small {
+  color: #9c9c9c;
+}
+.slider-tick-label-container {
+  display: flex;
+  justify-content: space-between;
+  margin-left: 0!important;
+}
+.slider-tick-label {
+  width: auto !important;
+}
+.slider .tooltip {
+  top: -10px;
+}
+.slider-track {
+  background-color: #ededed;
+  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.1), 0 0px 2px #ededed;
+  border: 1px solid #bbb;
+}
+.slider-selection {
+  background-image: -webkit-linear-gradient(top, #0088ce 0%, #39a5dc 100%);
+  background-image: -o-linear-gradient(top, #0088ce 0%, #39a5dc 100%);
+  background-image: linear-gradient(to bottom, #0088ce 0%, #39a5dc 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088ce', endColorstr='#ff39a5dc', GradientType=0);
+}
+.slider-handle {
+  width: 16px;
+  height: 16px;
+  border: 1px solid #bbb;
+}
+.slider-tick {
+  background-color: transparent !important;
+  background-image: radial-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 2px, transparent 2px) !important;
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+.slider-pf {
+  display: flex;
+  align-items: center;
+}
+.slider-pf * {
+  margin-right: 10px;
+}
+.slider-pf *:last-child {
+  margin: 0;
+}
+.slider-pf .slider {
+  width: auto;
+  flex: 1 1 100%;
+}
+.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,
+.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {
+  background: #fafafa;
+}
+.bootstrap-switch .bootstrap-switch-label {
+  background: #f1f1f1;
+  box-shadow: 0 0 2px rgba(3, 3, 3, 0.4);
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+  position: relative;
+  z-index: 9;
+}
+.bootstrap-touchspin .input-group-btn-vertical > .btn {
+  padding-bottom: 6px;
+  padding-top: 6px;
+}
+.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
+  border-bottom-right-radius: 1px;
+}
+.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
+  border-top-right-radius: 1px;
+}
+.bootstrap-touchspin .input-group-btn-vertical i {
+  font-size: 8px;
+  left: 6px;
+  top: 2px;
+}
+.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,
+.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up {
+  font-size: 12px;
+  line-height: 12px;
+  top: 0;
+}
+.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,
+.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up {
+  left: 7px;
+}
+.treeview .list-group {
+  border-top: 0;
+}
+.treeview .list-group-item {
+  background: transparent;
+  border-bottom: 1px solid transparent !important;
+  border-top: 1px solid transparent !important;
+  cursor: default !important;
+  margin-bottom: 0;
+  overflow: hidden;
+  padding: 0 10px;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+}
+.treeview .list-group-item:hover {
+  background: none !important;
+}
+.treeview .list-group-item.node-selected {
+  background: none !important;
+  border-color: transparent !important;
+  color: inherit !important;
+}
+.treeview .list-group-item.node-check-changed span.node-icon,
+.treeview .list-group-item.node-check-changed span.text {
+  color: #39a5dc;
+}
+.treeview span.icon {
+  display: inline-block;
+  font-size: 13px;
+  min-width: 10px;
+  text-align: center;
+}
+.treeview span.icon > [class*="fa-angle"] {
+  font-size: 15px;
+}
+.treeview span.icon.check-icon {
+  margin-right: 10px;
+}
+.treeview span.icon.expand-icon {
+  cursor: pointer !important;
+}
+.treeview span.image {
+  background-repeat: no-repeat;
+  background-size: contain;
+  display: inline-block;
+  height: 1.19em;
+  line-height: 1em;
+  margin-right: 5px;
+  vertical-align: middle;
+  width: 12px;
+}
+.treeview span.indent {
+  margin-right: 5px;
+}
+.treeview .node-disabled {
+  color: #d1d1d1;
+  cursor: not-allowed;
+}
+.treeview .node-disabled span.expand-icon {
+  cursor: default !important;
+}
+.treeview .node-hidden {
+  display: none;
+}
+.treeview-pf-hover .list-group-item {
+  cursor: pointer !important;
+}
+.treeview-pf-hover .list-group-item:hover {
+  background-color: #def3ff !important;
+  border-color: #bee1f4 !important;
+}
+.treeview-pf-select .list-group-item {
+  cursor: pointer !important;
+}
+.treeview-pf-select .list-group-item.node-selected {
+  background: #0088ce !important;
+  border-color: #0088ce !important;
+  color: #fff !important;
+}
+.card-pf {
+  background: #fff;
+  border-top: 2px solid transparent;
+  -webkit-box-shadow: 0 1px 1px rgba(3, 3, 3, 0.175);
+  box-shadow: 0 1px 1px rgba(3, 3, 3, 0.175);
+  margin: 0 -10px 20px;
+  padding: 0 20px;
+}
+.card-pf.card-pf-accented {
+  border-top-color: #39a5dc;
+}
+.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a,
+.card-pf.card-pf-aggregate-status .card-pf-title a {
+  color: #363636;
+}
+.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add,
+.card-pf.card-pf-aggregate-status .card-pf-title a.add {
+  color: #0088ce;
+}
+.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add:hover,
+.card-pf.card-pf-aggregate-status .card-pf-title a.add:hover {
+  color: #00659c;
+}
+.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a:hover,
+.card-pf.card-pf-aggregate-status .card-pf-title a:hover {
+  color: #00659c;
+}
+.card-pf.card-pf-aggregate-status {
+  padding: 0 10px;
+  text-align: center;
+}
+.card-pf.card-pf-aggregate-status-mini {
+  padding-bottom: 10px;
+  position: relative;
+}
+@media (min-width: 768px) {
+  .card-pf.card-pf-bleed-left {
+    margin-left: -20px;
+  }
+  .card-pf.card-pf-bleed-right {
+    border-right: 1px solid #d1d1d1;
+    margin-right: -20px;
+  }
+}
+.card-pf-aggregate-status-notifications {
+  font-size: 24px;
+  font-weight: 300;
+}
+.card-pf-aggregate-status-mini .card-pf-aggregate-status-notifications {
+  line-height: 1;
+}
+.card-pf-aggregate-status-notifications .card-pf-aggregate-status-notification + .card-pf-aggregate-status-notification {
+  border-left: 1px solid #d1d1d1;
+  margin-left: 3px;
+  padding-left: 10px;
+}
+.card-pf-aggregate-status-notifications .fa,
+.card-pf-aggregate-status-notifications .pficon {
+  font-size: 18px;
+  margin-right: 7px;
+}
+.card-pf-body {
+  margin: 20px 0 0;
+  padding: 0 0 20px;
+}
+.card-pf-aggregate-status .card-pf-body {
+  margin-top: 10px;
+  padding-bottom: 10px;
+}
+.card-pf-aggregate-status-mini .card-pf-body {
+  margin-bottom: 0;
+  margin-top: 0;
+  padding-bottom: 0;
+  position: absolute;
+  right: 20px;
+  top: 15px;
+}
+.card-pf-utilization .card-pf-title + .card-pf-body {
+  margin-top: -8px;
+}
+.card-pf-body > *:last-child {
+  margin-bottom: 0;
+}
+.card-pf-footer {
+  background-color: #fafafa;
+  border-top: 1px solid #d1d1d1;
+  margin: 0 -20px !important;
+  padding: 20px 20px 10px;
+}
+.card-pf-footer a .fa,
+.card-pf-footer a .pficon {
+  margin-right: 5px;
+}
+.card-pf-footer .card-pf-time-frame-filter {
+  margin-top: -2px;
+}
+.card-pf-link-with-icon {
+  padding-left: 21px;
+  position: relative;
+}
+.card-pf-link-with-icon .fa,
+.card-pf-link-with-icon .pficon {
+  font-size: 16px;
+  left: 0;
+  position: absolute;
+  top: 0;
+}
+.card-pf-heading .card-pf-time-frame-filter,
+.card-pf-footer .card-pf-time-frame-filter {
+  float: right;
+  margin-left: 20px;
+}
+.card-pf-heading {
+  border-bottom: 1px solid #d1d1d1;
+  margin: 0 -20px 20px;
+  padding: 0 20px 0;
+}
+.card-pf-heading .card-pf-time-frame-filter {
+  margin-top: -5px;
+}
+.card-pf-heading-details {
+  float: right;
+  font-size: 10px;
+}
+.card-pf-subtitle {
+  font-size: 16px;
+  margin-top: 20px;
+  margin-bottom: 10px;
+}
+[class^="col"] .card-pf-subtitle {
+  margin-top: 0;
+}
+@media (max-width: 767px) {
+  .card-pf-body [class^="col"] + [class^="col"] > .card-pf-subtitle {
+    margin-top: 40px;
+  }
+}
+.card-pf-title {
+  font-size: 16px;
+  font-weight: 400;
+  margin: 20px 0;
+  padding: 0;
+}
+.card-pf-aggregate-status .card-pf-title {
+  font-size: 14px;
+  margin: 10px 0 0;
+}
+.card-pf-aggregate-status .card-pf-title .fa,
+.card-pf-aggregate-status .card-pf-title .pficon {
+  color: #292e34;
+  font-size: 16px;
+  margin-right: 7px;
+}
+.card-pf-title .card-pf-aggregate-status-count {
+  font-size: 16px;
+}
+.card-pf-aggregate-status-mini .card-pf-title .card-pf-aggregate-status-count {
+  display: block;
+  font-size: 24px;
+  font-weight: 300;
+  margin-bottom: 3px;
+}
+.card-pf-aggregate-status-mini .card-pf-title {
+  font-size: 12px;
+  margin-top: 5px;
+}
+.card-pf-aggregate-status-mini .card-pf-title a {
+  display: inline-block;
+}
+.card-pf-aggregate-status-mini .card-pf-title .fa,
+.card-pf-aggregate-status-mini .card-pf-title .pficon {
+  font-size: 26px;
+  margin-right: 0;
+  min-width: 26px;
+  position: absolute;
+  left: 20px;
+  text-align: center;
+  top: 15px;
+}
+.card-pf-utilization-details {
+  border-bottom: 1px solid #d1d1d1;
+  display: table;
+  margin: 12px 0 15px;
+  padding: 0 0 15px;
+  width: 100%;
+}
+.card-pf-utilization-details .card-pf-utilization-card-details-count,
+.card-pf-utilization-details .card-pf-utilization-card-details-description {
+  float: left;
+  line-height: 1;
+}
+.card-pf-utilization-details .card-pf-utilization-card-details-count {
+  font-size: 26px;
+  font-weight: 300;
+  margin-right: 10px;
+}
+.card-pf-utilization-details .card-pf-utilization-card-details-line-1,
+.card-pf-utilization-details .card-pf-utilization-card-details-line-2 {
+  display: block;
+}
+.card-pf-utilization-details .card-pf-utilization-card-details-line-1 {
+  font-size: 10px;
+  margin-bottom: 2px;
+}
+.cards-pf {
+  background: #f5f5f5;
+}
+.cards-pf .row-cards-pf {
+  padding: 0 20px;
+}
+.cards-pf .row-cards-pf:first-child {
+  padding-top: 20px;
+}
+.container-cards-pf {
+  margin-top: 20px;
+}
+.row-cards-pf {
+  margin-left: -10px;
+  margin-right: -10px;
+}
+.card-pf-view {
+  border: 2px solid transparent;
+}
+.card-pf-view .card-pf-heading-kebab .dropdown-kebab-pf {
+  margin-top: -3px;
+}
+.card-pf-view .card-pf-heading-kebab + .progress-pf-legend p {
+  margin-bottom: 0;
+}
+.card-pf-view .card-pf-heading-kebab + .progress-pf-legend .progress {
+  margin-bottom: 7px;
+  margin-top: 16px;
+}
+.card-pf-view .card-pf-info {
+  margin-top: 15px;
+}
+.card-pf-view .card-pf-info strong {
+  font-size: 13px;
+  margin-right: 10px;
+}
+.card-pf-view .card-pf-item {
+  display: inline-block;
+  font-size: 16px;
+  padding: 0 13px 0 15px;
+}
+.card-pf-view .card-pf-item:first-child {
+  padding-left: 0;
+}
+.card-pf-view .card-pf-item:last-child {
+  padding-right: 0;
+}
+.card-pf-view .card-pf-item + .card-pf-item {
+  border-left: 1px solid #d1d1d1;
+}
+.card-pf-view .card-pf-item .fa-check {
+  color: #3f9c35;
+}
+.card-pf-view .card-pf-item .fa + .card-pf-item-text,
+.card-pf-view .card-pf-item .pficon + .card-pf-item-text {
+  margin-left: 10px;
+}
+.card-pf-view .card-pf-items {
+  margin-top: 15px;
+}
+.card-pf-view .card-pf-title {
+  font-size: 20px;
+  font-weight: 300;
+  margin-bottom: 0;
+  margin-top: 15px;
+}
+.card-pf-view .card-pf-title .fa,
+.card-pf-view .card-pf-title .pficon {
+  font-size: 18px;
+  margin-right: 2px;
+}
+.col-lg-2 .card-pf-view .card-pf-title {
+  font-size: 16px;
+}
+.card-pf-view .card-pf-top-element .card-pf-icon-circle {
+  border: 2px solid #39a5dc;
+  border-radius: 50%;
+  display: block;
+  font-size: 46px;
+  height: 106px;
+  line-height: 102px;
+  margin: 0 auto;
+  text-align: center;
+  width: 106px;
+}
+.col-lg-2 .card-pf-view .card-pf-top-element .card-pf-icon-circle {
+  font-size: 23px;
+  height: 54px;
+  line-height: 50px;
+  width: 54px;
+}
+.card-pf-view .card-pf-view-checkbox {
+  position: absolute;
+  top: 11px;
+  left: 15px;
+}
+.card-pf-view .card-pf-view-checkbox input[type=checkbox] {
+  display: none;
+}
+.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox] {
+  display: block;
+}
+@media (min-width: 768px) {
+  .card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox] {
+    visibility: hidden;
+  }
+  .card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]:checked {
+    visibility: visible;
+  }
+}
+.card-pf-view.card-pf-view-multi-select:hover .card-pf-view-checkbox input[type=checkbox] {
+  visibility: visible;
+}
+.card-pf-view.card-pf-view-select {
+  position: relative;
+}
+.card-pf-view.card-pf-view-select:hover {
+  -webkit-box-shadow: 0 1px 6px rgba(3, 3, 3, 0.35);
+  box-shadow: 0 1px 6px rgba(3, 3, 3, 0.35);
+}
+.card-pf-view.card-pf-view-select.active {
+  border: 2px solid #39a5dc;
+}
+.card-pf-view.card-pf-view-single-select {
+  cursor: pointer;
+}
+.card-pf-view.card-pf-view-xs .card-pf-title {
+  font-size: 16px;
+  font-weight: normal;
+  margin-bottom: 10px;
+}
+.card-pf-view.card-pf-view-xs .card-pf-title .fa,
+.card-pf-view.card-pf-view-xs .card-pf-title .pficon {
+  font-size: 14px;
+  margin-right: 5px;
+}
+.c3 path {
+  stroke: #d1d1d1;
+}
+.c3 svg {
+  font-family: "Open Sans", Helvetica, Arial, sans-serif;
+}
+.c3-axis-x .tick line {
+  stroke: #d1d1d1;
+}
+.c3-axis-y .tick line {
+  display: none;
+}
+.c3-chart-arc path {
+  stroke: #fff;
+}
+.c3-grid line {
+  stroke: #d1d1d1;
+}
+.c3-line {
+  stroke-width: 2px;
+}
+.c3-tooltip {
+  background: #393f44;
+  -webkit-box-shadow: none;
+  box-shadow: none;
+  opacity: 0.9;
+  filter: alpha(opacity=90);
+}
+.c3-tooltip td {
+  background: transparent;
+  border: 0;
+  color: #fff;
+  font-size: 12px;
+  padding: 5px 10px;
+}
+.c3-tooltip th {
+  background: transparent;
+  font-size: 12px;
+  padding: 5px 10px 0;
+  border-bottom: solid 2px #030303;
+}
+.c3-tooltip tr {
+  border: 0;
+}
+.c3-tooltip tr + tr > td {
+  padding-top: 0;
+}
+.c3-tooltip-sparkline,
+.donut-tooltip-pf {
+  background: #393f44;
+  color: #fff;
+  opacity: 0.9;
+  filter: alpha(opacity=90);
+  padding: 2px 6px;
+}
+.c3-xgrid,
+.c3-ygrid {
+  stroke-dasharray: 0 0;
+}
+.chart-pf-sparkline {
+  margin-left: -5px;
+  margin-right: -5px;
+}
+.donut-title-big-pf {
+  font-size: 30px;
+  font-weight: 300;
+}
+.donut-title-small-pf {
+  font-size: 12px;
+  font-weight: 400;
+}
+.line-chart-pf .c3-zoom-rect {
+  opacity: 1 !important;
+  fill: #fafafa;
+  stroke: #d1d1d1;
+  stroke-width: 1px;
+}
+.pct-donut-chart-pf .pct-donut-chart-pf-label {
+  display: block;
+}
+.pct-donut-chart-pf.pct-donut-chart-pf-left,
+.pct-donut-chart-pf.pct-donut-chart-pf-right,
+.pct-donut-chart-pf .pct-donut-chart-pf-left,
+.pct-donut-chart-pf .pct-donut-chart-pf-right {
+  display: flex;
+  flex-direction: row;
+  justify-content: center;
+  align-items: center;
+}
+.pct-donut-chart-pf.pct-donut-chart-pf-left,
+.pct-donut-chart-pf.pct-donut-chart-pf-right {
+  display: inline-flex;
+}
+.pct-donut-chart-pf.pct-donut-chart-pf-left,
+.pct-donut-chart-pf .pct-donut-chart-pf-left {
+  flex-direction: row-reverse;
+}
+.close {
+  text-shadow: none;
+  z-index: 1;
+  position: relative;
+  opacity: 0.6;
+  filter: alpha(opacity=60);
+}
+.close:hover,
+.close:focus {
+  opacity: 0.9;
+  filter: alpha(opacity=90);
+}
+.layout-pf-fixed .navbar-pf-vertical.navbar-pf-contextselector {
+  z-index: 1040;
+}
+.navbar-pf-vertical .nav.contextselector-pf {
+  border-left: 1px solid #4d5258;
+}
+@media (min-width: 768px) {
+  .navbar-pf-vertical .nav.contextselector-pf {
+    margin-left: 10px;
+  }
+}
+.navbar-pf-vertical .nav.contextselector-pf .nav-item-iconic {
+  padding: 23px 20px 18px 10px;
+  display: flex;
+  align-items: center;
+}
+.contextselector-pf {
+  float: left;
+}
+.contextselector-pf-title {
+  width: 170px;
+  white-space: nowrap;
+  display: inline-block;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  line-height: normal;
+}
+@media (min-width: 480px) {
+  .contextselector-pf-title {
+    width: 210px;
+  }
+}
+.contextselector-pf .dropdown.open,
+.contextselector-pf .dropdown:hover {
+  background-color: #64686c;
+}
+.contextselector-pf .dropdown-menu {
+  width: 100%;
+  margin-top: 0;
+}
+.contextselector-pf .form-group {
+  margin: 0 5px 5px 5px;
+}
+@media (min-width: 768px) {
+  .contextselector-pf .contextselector-pf-list {
+    max-height: 200px;
+    overflow-y: auto;
+  }
+}
+.contextselector-pf .contextselector-pf-list li {
+  padding: 1px 10px;
+  border-width: 1px 0;
+  border-style: solid;
+  border-color: transparent;
+}
+.contextselector-pf .contextselector-pf-list li:hover {
+  background: #def3ff;
+  border-color: #bee1f4;
+}
+.contextselector-pf .contextselector-pf-list li:hover a {
+  text-decoration: none;
+}
+.contextselector-pf .contextselector-pf-list a {
+  color: #393f44;
+  display: block;
+}
+.ColVis_Button:active:focus {
+  outline: none;
+}
+.ColVis_catcher {
+  position: absolute;
+  z-index: 999;
+}
+.ColVis_collection {
+  background-color: #fff;
+  border: 1px solid #bbb;
+  border-radius: 1px;
+  -webkit-box-shadow: 0 6px 12px rgba(3, 3, 3, 0.175);
+  box-shadow: 0 6px 12px rgba(3, 3, 3, 0.175);
+  background-clip: padding-box;
+  list-style: none;
+  margin: -1px 0 0 0;
+  padding: 5px 10px;
+  width: 150px;
+  z-index: 1000;
+}
+.ColVis_collection label {
+  font-weight: normal;
+  margin-bottom: 5px;
+  margin-top: 5px;
+  padding-left: 20px;
+}
+.ColVis_collectionBackground {
+  background-color: #fff;
+  height: 100%;
+  left: 0;
+  position: fixed;
+  top: 0;
+  width: 100%;
+  z-index: 998;
+}
+.dataTables_header {
+  background-color: #f5f5f5;
+  border: 1px solid #d1d1d1;
+  border-bottom: none;
+  padding: 5px;
+  position: relative;
+  text-align: center;
+}
+.dataTables_header .btn {
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+.dataTables_header .ColVis {
+  position: absolute;
+  right: 5px;
+  text-align: left;
+  top: 5px;
+}
+.dataTables_header .ColVis + .dataTables_info {
+  padding-right: 30px;
+}
+.dataTables_header .dataTables_filter {
+  position: absolute;
+}
+.dataTables_header .dataTables_filter input {
+  border: 1px solid #bbb;
+  height: 24px;
+}
+@media (max-width: 767px) {
+  .dataTables_header .dataTables_filter input {
+    width: 100px;
+  }
+}
+.dataTables_header .dataTables_info {
+  padding: 2px 0;
+}
+@media (max-width: 480px) {
+  .dataTables_header .dataTables_info {
+    text-align: right;
+  }
+}
+.dataTables_header .dataTables_info b {
+  font-weight: bold;
+}
+.dataTables_footer {
+  background-color: #fff;
+  border: 1px solid #d1d1d1;
+  border-top: none;
+  overflow: hidden;
+}
+.dataTables_paginate {
+  background: #fafafa;
+  float: right;
+  margin: 0;
+}
+.dataTables_paginate .pagination {
+  float: left;
+  margin: 0;
+}
+.dataTables_paginate .pagination > li > span {
+  border-color: #fff #d1d1d1 #f5f5f5;
+  border-width: 0 1px;
+  font-size: 16px;
+  font-weight: normal;
+  padding: 0;
+  text-align: center;
+  width: 31px;
+}
+.dataTables_paginate .pagination > li > span:hover,
+.dataTables_paginate .pagination > li > span:focus {
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+}
+.dataTables_paginate .pagination > li.last > span {
+  border-right: none;
+}
+.dataTables_paginate .pagination > li.disabled > span {
+  background: #f5f5f5;
+  border-left-color: #ededed;
+  border-right-color: #ededed;
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+}
+.dataTables_paginate .pagination-input {
+  float: left;
+  font-size: 12px;
+  line-height: 1em;
+  padding: 4px 15px 0;
+  text-align: right;
+}
+.dataTables_paginate .pagination-input .paginate_input {
+  border: 1px solid #d1d1d1;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075);
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075);
+  font-size: 12px;
+  font-weight: 600;
+  height: 19px;
+  margin-right: 8px;
+  padding-right: 3px;
+  text-align: right;
+  width: 30px;
+}
+.dataTables_paginate .pagination-input .paginate_of {
+  position: relative;
+}
+.dataTables_paginate .pagination-input .paginate_of b {
+  margin-left: 3px;
+}
+.dataTables_empty {
+  background: #f5f5f5;
+}
+/* Might need this for pagination?
+.dataTables_wrapper {
+  margin: @line-height-computed 0;
+  @media (max-width: @screen-xs-max) {
+    .table-responsive {
+      margin-bottom: 0;
+    }
+  }
+}
+*/
+.DTCR_clonedTable {
+  background-color: rgba(255, 255, 255, 0.7);
+  z-index: 202;
+}
+.DTCR_pointer {
+  background-color: #0088ce;
+  width: 1px;
+  z-index: 201;
+}
+.experimental-pf > * {
+  border: 2px solid #92d400;
+}
+.experimental-pf-bar {
+  background-color: #92d400;
+  border: none;
+  text-align: center;
+  position: relative;
+}
+.experimental-pf-more-info {
+  background-color: #92d400;
+  border: 0;
+  color: #030303;
+  display: block;
+  width: 100%;
+  padding-top: 10px;
+  padding-bottom: 10px;
+  position: static;
+}
+@media (min-width: 992px) {
+  .experimental-pf-more-info {
+    padding: 0 10px;
+    position: absolute;
+    right: 0;
+    top: 0;
+    width: auto;
+  }
+}
+@media (min-width: 992px) {
+  .experimental-pf-text {
+    padding-left: 150px;
+    padding-right: 150px;
+  }
+}
+.experimental-pf-text a {
+  color: #030303;
+  text-decoration: underline;
+}
+.experimental-pf-text a:hover {
+  color: #030303;
+  cursor: pointer;
+}
+.btn-experimental-pf {
+  background-color: #92d400;
+  background-image: -webkit-linear-gradient(top, #ace12e 0%, #92d400 100%);
+  background-image: -o-linear-gradient(top, #ace12e 0%, #92d400 100%);
+  background-image: linear-gradient(to bottom, #ace12e 0%, #92d400 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fface12e', endColorstr='#ff92d400', GradientType=0);
+  border-color: #92d400;
+  color: #4d5258;
+}
+.btn-experimental-pf:hover,
+.btn-experimental-pf:focus,
+.btn-experimental-pf:active,
+.btn-experimental-pf.active,
+.open .dropdown-toggle.btn-experimental-pf {
+  background-color: #92d400;
+  background-image: none;
+  border-color: #92d400;
+  color: #4d5258;
+}
+.btn-experimental-pf:active,
+.btn-experimental-pf.active,
+.open .dropdown-toggle.btn-experimental-pf {
+  background-image: none;
+}
+.btn-experimental-pf:active:hover,
+.btn-experimental-pf.active:hover,
+.open .dropdown-toggle.btn-experimental-pf:hover,
+.btn-experimental-pf:active:focus,
+.btn-experimental-pf.active:focus,
+.open .dropdown-toggle.btn-experimental-pf:focus,
+.btn-experimental-pf:active.focus,
+.btn-experimental-pf.active.focus,
+.open .dropdown-toggle.btn-experimental-pf.focus {
+  background-color: #80bb00;
+  border-color: #79b000;
+}
+.btn-experimental-pf.disabled,
+.btn-experimental-pf[disabled],
+fieldset[disabled] .btn-experimental-pf,
+.btn-experimental-pf.disabled:hover,
+.btn-experimental-pf[disabled]:hover,
+fieldset[disabled] .btn-experimental-pf:hover,
+.btn-experimental-pf.disabled:focus,
+.btn-experimental-pf[disabled]:focus,
+fieldset[disabled] .btn-experimental-pf:focus,
+.btn-experimental-pf.disabled:active,
+.btn-experimental-pf[disabled]:active,
+fieldset[disabled] .btn-experimental-pf:active,
+.btn-experimental-pf.disabled.active,
+.btn-experimental-pf[disabled].active,
+fieldset[disabled] .btn-experimental-pf.active {
+  background-color: #92d400;
+  border-color: #92d400;
+}
+.filter-pf-category-select {
+  display: flex;
+}
+.filter-pf-category-select-value {
+  border-left-width: 0;
+}
+.filter-pf-category-item {
+  margin-bottom: 5px;
+}
+.filter-pf-category-label {
+  font-weight: 700;
+  margin-right: 5px;
+  padding: 5px 0 6px 5px;
+}
+.filter-pf-select .caret {
+  position: absolute;
+  top: 50%;
+  right: 10px;
+  transform: translateY(-50%);
+}
+.filter-pf-select-dropdown {
+  background-color: #fff;
+  background-image: none;
+  color: #8b8d8f;
+  font-size: 12px;
+  font-style: italic;
+  font-weight: 400;
+  padding-right: 25px;
+  text-align: left;
+}
+.filter-pf-select-dropdown .caret {
+  font-style: normal;
+}
+.filter-pf-active-label {
+  margin-right: 5px;
+}
+.footer-pf-alt,
+.footer-pf {
+  background-color: #030303;
+  color: #9c9c9c;
+  font-size: 11px;
+  line-height: 17px;
+  padding-left: 25px;
+  padding-top: 10px;
+}
+.layout-pf-alt-fixed-with-footer .footer-pf-alt,
+.layout-pf-alt-fixed-with-footer .footer-pf,
+.layout-pf-fixed-with-footer .footer-pf-alt,
+.layout-pf-fixed-with-footer .footer-pf {
+  bottom: 0;
+  left: 0;
+  position: fixed;
+  right: 0;
+  z-index: 1030;
+}
+@font-face {
+  font-family: "PatternFlyIcons-webfont";
+  src: url("../fonts/PatternFlyIcons-webfont.eot");
+  src: url("../fonts/PatternFlyIcons-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/PatternFlyIcons-webfont.ttf") format("truetype"), url("../fonts/PatternFlyIcons-webfont.woff") format("woff"), url("../fonts/PatternFlyIcons-webfont.svg#PatternFlyIcons-webfont") format("svg");
+  font-weight: normal;
+  font-style: normal;
+}
+[class^="pficon-"],
+[class*=" pficon-"] {
+  display: inline-block;
+  font-family: "PatternFlyIcons-webfont";
+  font-style: normal;
+  font-variant: normal;
+  font-weight: normal;
+  line-height: 1;
+  speak: none;
+  text-transform: none;
+  /* Better Font Rendering =========== */
+  -moz-osx-font-smoothing: grayscale;
+  -webkit-font-smoothing: antialiased;
+}
+.pficon-add-circle-o:before {
+  content: "\e61b";
+}
+.pficon-applications:before {
+  content: "\e936";
+}
+.pficon-arrow:before {
+  content: "\e929";
+}
+.pficon-asleep:before {
+  content: "\e925";
+}
+.pficon-automation:before {
+  content: "\e937";
+}
+.pficon-build:before {
+  content: "\e902";
+}
+.pficon-builder-image:before {
+  content: "\e800";
+}
+.pficon-bundle:before {
+  content: "\e918";
+}
+.pficon-blueprint:before {
+  content: "\e915";
+}
+.pficon-catalog:before {
+  content: "\e939";
+}
+.pficon-chat:before {
+  content: "\e928";
+}
+.pficon-close:before {
+  content: "\e60b";
+}
+.pficon-cloud-security:before {
+  content: "\e903";
+}
+.pficon-cloud-tenant:before {
+  content: "\e904";
+}
+.pficon-cluster:before {
+  content: "\e620";
+}
+.pficon-connected:before {
+  content: "\e938";
+}
+.pficon-container-node:before {
+  content: "\e621";
+}
+.pficon-cpu:before {
+  content: "\e927";
+}
+.pficon-degraded:before {
+  content: "\e91b";
+}
+.pficon-delete:before {
+  content: "\e611";
+}
+.pficon-disconnected:before {
+  content: "\e93c";
+}
+.pficon-domain:before {
+  content: "\e919";
+}
+.pficon-edit:before {
+  content: "\e60a";
+}
+.pficon-enhancement:before {
+  content: "\e93a";
+}
+.pficon-enterprise:before {
+  content: "\e906";
+}
+.pficon-equalizer:before {
+  content: "\e610";
+}
+.pficon-error-circle-o:before {
+  color: #cc0000;
+  content: "\e926";
+}
+.pficon-export:before {
+  content: "\e616";
+}
+.pficon-flag:before,
+.pficon-messages:before {
+  content: "\e603";
+}
+.pficon-flavor:before {
+  content: "\e907";
+}
+.pficon-filter:before {
+  content: "\e943";
+}
+.pficon-folder-close:before {
+  content: "\e607";
+}
+.pficon-folder-open:before {
+  content: "\e606";
+}
+.pficon-help:before {
+  content: "\e605";
+}
+.pficon-history:before {
+  content: "\e93b";
+}
+.pficon-home:before {
+  content: "\e618";
+}
+.pficon-image:before {
+  content: "\e61f";
+}
+.pficon-import:before {
+  content: "\e615";
+}
+.pficon-in-progress:before {
+  content: "\e92c";
+}
+.pficon-info:before {
+  content: "\e92b";
+}
+.pficon-infrastructure:before {
+  content: "\e93d";
+}
+.pficon-integration:before {
+  content: "\e948";
+}
+.pficon-key:before {
+  content: "\e924";
+}
+.pficon-locked:before {
+  content: "\e923";
+}
+.pficon-maintenance:before {
+  content: "\e92d";
+}
+.pficon-memory:before {
+  content: "\e908";
+}
+.pficon-middleware:before {
+  content: "\e917";
+}
+.pficon-migration:before {
+  content: "\e92e";
+}
+.pficon-monitoring:before {
+  content: "\e944";
+}
+.pficon-network:before {
+  content: "\e909";
+}
+.pficon-network-range:before {
+  content: "\e94a";
+}
+.pficon-on:before {
+  content: "\e931";
+}
+.pficon-on-running:before {
+  content: "\e930";
+}
+.pficon-optimize:before {
+  content: "\e93e";
+}
+.pficon-orders:before {
+  content: "\e93f";
+}
+.pficon-off:before {
+  content: "\e92f";
+}
+.pficon-ok:before {
+  color: #3f9c35;
+  content: "\e602";
+}
+.pficon-paused:before {
+  content: "\e932";
+}
+.pficon-pending:before {
+  content: "\e933";
+}
+.pficon-plugged:before {
+  content: "\e940";
+}
+.pficon-port:before {
+  content: "\e945";
+}
+.pficon-print:before {
+  content: "\e612";
+}
+.pficon-process-automation:before {
+  content: "\e949";
+}
+.pficon-private:before {
+  content: "\e914";
+}
+.pficon-project:before {
+  content: "\e905";
+}
+.pficon-rebalance:before {
+  content: "\e91c";
+}
+.pficon-rebooting:before {
+  content: "\e934";
+}
+.pficon-refresh:before,
+.pficon-restart:before {
+  content: "\e617";
+}
+.pficon-regions:before {
+  content: "\e90a";
+}
+.pficon-registry:before {
+  content: "\e623";
+}
+.pficon-remove:before {
+  content: "\e611";
+}
+.pficon-replicator:before {
+  content: "\e624";
+}
+.pficon-repository:before {
+  content: "\e90b";
+}
+.pficon-resource-pool:before {
+  content: "\e90c";
+}
+.pficon-resources-almost-empty:before {
+  content: "\e91d";
+}
+.pficon-resources-almost-full:before {
+  content: "\e912";
+}
+.pficon-resources-full:before {
+  content: "\e92a";
+}
+.pficon-route:before {
+  content: "\e625";
+}
+.pficon-running:before {
+  content: "\e614";
+}
+.pficon-satellite:before {
+  content: "\e94b";
+}
+.pficon-save:before {
+  content: "\e601";
+}
+.pficon-screen:before {
+  content: "\e600";
+}
+.pficon-search:before {
+  content: "\e921";
+}
+.pficon-security:before {
+  content: "\e946";
+}
+.pficon-server:before {
+  content: "\e90d";
+}
+.pficon-server-group:before {
+  content: "\e91a";
+}
+.pficon-service:before {
+  content: "\e61e";
+}
+.pficon-services:before {
+  content: "\e947";
+}
+.pficon-service-catalog:before {
+  content: "\e941";
+}
+.pficon-settings:before {
+  content: "\e610";
+}
+.pficon-spinner:before {
+  content: "\e614";
+}
+.pficon-spinner2:before {
+  content: "\e613";
+}
+.pficon-storage-domain:before {
+  content: "\e90e";
+}
+.pficon-template:before {
+  content: "\e94c";
+}
+.pficon-tenant:before {
+  content: "\e916";
+}
+.pficon-thumb-tack-o:before {
+  content: "\e920";
+}
+.pficon-topology:before {
+  content: "\e608";
+}
+.pficon-trend-down:before {
+  content: "\e900";
+}
+.pficon-trend-up:before {
+  content: "\e901";
+}
+.pficon-unknown:before {
+  content: "\e935";
+}
+.pficon-user:before {
+  content: "\e91e";
+}
+.pficon-users:before {
+  content: "\e91f";
+}
+.pficon-unlocked:before {
+  content: "\e922";
+}
+.pficon-unplugged:before {
+  content: "\e942";
+}
+.pficon-vcenter:before {
+  content: "\e94d";
+}
+.pficon-virtual-machine:before {
+  content: "\e90f";
+}
+.pficon-volume:before {
+  content: "\e910";
+}
+.pficon-warning-triangle-o:before {
+  color: #ec7a08;
+  content: "\e913";
+}
+.pficon-zone:before {
+  content: "\e911";
+}
+.navbar-nav > li > .dropdown-menu.infotip {
+  border-top-width: 1px !important;
+  margin-top: 10px;
+}
+@media (max-width: 767px) {
+  .navbar-pf .navbar-nav .open .dropdown-menu.infotip {
+    background-color: #fff !important;
+    margin-top: 0;
+  }
+}
+.infotip {
+  min-width: 235px;
+  padding: 0;
+}
+.infotip .list-group {
+  border-top: 0;
+  margin: 0;
+  padding: 8px 0;
+}
+.infotip .list-group .list-group-item {
+  border: none;
+  margin: 0 15px 0 34px;
+  padding: 5px 0;
+}
+.infotip .list-group .list-group-item > .i {
+  color: #4d5258;
+  font-size: 13px;
+  left: -20px;
+  position: absolute;
+  top: 8px;
+}
+.infotip .list-group .list-group-item > a {
+  color: #4d5258;
+  line-height: 13px;
+}
+.infotip .list-group .list-group-item > .close {
+  float: right;
+}
+.infotip .footer {
+  background-color: #f5f5f5;
+  padding: 6px 15px;
+}
+.infotip .footer a:hover {
+  color: #0088ce;
+}
+.infotip .arrow,
+.infotip .arrow:after {
+  border-color: transparent;
+  border-style: solid;
+  display: block;
+  height: 0;
+  position: absolute;
+  width: 0;
+}
+.infotip .arrow {
+  border-width: 11px;
+}
+.infotip .arrow:after {
+  border-width: 10px;
+  content: "";
+}
+.infotip.bottom .arrow,
+.infotip.bottom-left .arrow,
+.infotip.bottom-right .arrow {
+  border-bottom-color: #bbb;
+  border-top-width: 0;
+  left: 50%;
+  margin-left: -11px;
+  top: -11px;
+}
+.infotip.bottom .arrow:after,
+.infotip.bottom-left .arrow:after,
+.infotip.bottom-right .arrow:after {
+  border-top-width: 0;
+  border-bottom-color: #fff;
+  content: " ";
+  margin-left: -10px;
+  top: 1px;
+}
+.infotip.bottom-left .arrow {
+  left: 20%;
+}
+.infotip.bottom-right .arrow {
+  left: 80%;
+}
+.infotip.top .arrow {
+  border-bottom-width: 0;
+  border-top-color: #bbb;
+  bottom: -11px;
+  left: 50%;
+  margin-left: -11px;
+}
+.infotip.top .arrow:after {
+  border-bottom-width: 0;
+  border-top-color: #f5f5f5;
+  bottom: 1px;
+  content: " ";
+  margin-left: -10px;
+}
+.infotip.right .arrow {
+  border-left-width: 0;
+  border-right-color: #bbb;
+  left: -11px;
+  margin-top: -11px;
+  top: 50%;
+}
+.infotip.right .arrow:after {
+  bottom: -10px;
+  border-left-width: 0;
+  border-right-color: #fff;
+  content: " ";
+  left: 1px;
+}
+.infotip.left .arrow {
+  border-left-color: #bbb;
+  border-right-width: 0;
+  margin-top: -11px;
+  right: -11px;
+  top: 50%;
+}
+.infotip.left .arrow:after {
+  border-left-color: #fff;
+  border-right-width: 0;
+  bottom: -10px;
+  content: " ";
+  right: 1px;
+}
+.layout-pf,
+.layout-pf body {
+  min-height: 100%;
+}
+.layout-pf.layout-pf-fixed.transitions .container-pf-nav-pf-vertical {
+  transition: all 200ms cubic-bezier(0.35, 0, 0.25, 1);
+}
+.layout-pf.layout-pf-fixed body {
+  padding-top: 60px;
+}
+.layout-pf.layout-pf-fixed .navbar-pf {
+  left: 0;
+  position: fixed;
+  top: 0;
+  right: 0;
+  z-index: 1030;
+}
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical {
+  margin-left: 200px;
+}
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-vertical-with-badges {
+  margin-left: 250px;
+}
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav {
+  margin-left: 75px;
+}
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav.hidden-icons-pf {
+  margin-left: 0;
+}
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hidden-nav {
+  margin-left: 0;
+}
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hide-nav-pf {
+  margin-left: 0 !important;
+}
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf,
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf {
+  margin-left: 200px;
+}
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges,
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges {
+  margin-left: 250px;
+}
+@media (min-width: 1200px) {
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf {
+    margin-left: 400px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges {
+    margin-left: 500px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hidden-nav {
+    margin-left: 0;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf {
+    margin-left: 200px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges {
+    margin-left: 250px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf {
+    margin-left: 200px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges {
+    margin-left: 250px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav {
+    margin-left: 275px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.nav-pf-vertical-with-badges {
+    margin-left: 325px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf {
+    margin-left: 200px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges {
+    margin-left: 250px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf {
+    margin-left: 200px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges {
+    margin-left: 250px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.hidden-icons-pf {
+    margin-left: 0;
+  }
+}
+.layout-pf.layout-pf-fixed-with-footer body {
+  padding-bottom: 37px;
+}
+.layout-pf-alt,
+.layout-pf-alt body {
+  min-height: 100%;
+}
+.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll,
+.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll body {
+  height: 100%;
+  min-height: 0;
+}
+.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt {
+  height: 100%;
+  overflow: auto;
+}
+.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt.container-cards-pf {
+  margin-top: 0;
+  padding-top: 20px;
+}
+.layout-pf-alt.layout-pf-alt-fixed.transitions .container-pf-alt-nav-pf-vertical-alt {
+  transition: all 200ms cubic-bezier(0.35, 0, 0.25, 1);
+}
+.layout-pf-alt.layout-pf-alt-fixed body {
+  padding-top: 60px;
+}
+.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt {
+  margin-left: 250px;
+}
+.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.collapsed-nav {
+  margin-left: 75px;
+}
+.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.hidden-nav {
+  margin-left: 0;
+}
+.layout-pf-alt.layout-pf-alt-fixed-with-footer body {
+  padding-bottom: 37px;
+}
+a.disabled {
+  color: #8b8d8f;
+  cursor: not-allowed;
+  text-decoration: none;
+}
+.list-pf {
+  border-bottom: 1px solid #ededed;
+}
+.list-pf-item {
+  border-color: #ededed;
+  border-left-color: #fff;
+  border-right-color: #fff;
+  border-style: solid;
+  border-width: 1px;
+  border-bottom: none;
+}
+.list-pf-item:hover {
+  background-color: #edf8ff;
+}
+.list-pf-item.active {
+  background-color: #ededed;
+  border-color: #bbb;
+  border-bottom-width: 1px;
+  border-bottom-style: solid;
+}
+.list-pf-expansion {
+  background-color: #fff;
+}
+.list-pf-container {
+  align-items: flex-start;
+  display: flex;
+  padding: 20px;
+}
+.list-pf-expansion .list-pf-container {
+  border-top: 1px solid #bbb;
+}
+@media (min-width: 992px) {
+  .list-pf:not(.list-pf-stacked) .list-pf-container {
+    align-items: center;
+  }
+}
+.list-pf-chevron {
+  min-width: 1.2em;
+}
+.list-pf-chevron,
+.list-pf-select {
+  margin-right: 10px;
+}
+.list-pf-chevron + .list-pf-content,
+.list-pf-select + .list-pf-content {
+  border-left: 1px solid #d1d1d1;
+  padding-left: 20px;
+}
+.list-pf-chevron .fa,
+.list-pf-select .fa {
+  font-size: 22px;
+}
+.list-pf-content-flex {
+  align-items: flex-start;
+  display: flex;
+  flex-grow: 1;
+  flex-wrap: nowrap;
+  justify-content: flex-start;
+  min-width: 0;
+}
+@media (min-width: 992px) {
+  .list-pf:not(.list-pf-stacked) .list-pf-content-flex {
+    align-items: center;
+  }
+}
+.list-pf-left {
+  flex-grow: 0;
+  margin-left: 0;
+  margin-right: 20px;
+}
+.list-pf-icon {
+  align-items: center;
+  display: flex;
+  justify-content: center;
+}
+.list-pf-icon-bordered {
+  border-radius: 50%;
+  border: 2px solid #39a5dc;
+}
+.list-pf-icon-small {
+  font-size: 1.4em;
+  height: 30px;
+  line-height: 30px;
+  width: 30px;
+}
+.list-pf-content-wrapper {
+  align-items: center;
+  display: flex;
+  flex-grow: 1;
+  flex-wrap: wrap;
+  min-width: 0;
+}
+@media (min-width: 992px) {
+  .list-pf-content-wrapper {
+    flex-wrap: nowrap;
+  }
+  .list-pf-content-wrapper > * + * {
+    margin-left: 40px;
+  }
+}
+.list-pf-stacked .list-pf-content-wrapper {
+  align-items: flex-start;
+}
+.list-pf-main-content {
+  align-items: center;
+  display: flex;
+  flex-basis: 70%;
+  flex-grow: 1;
+  flex-shrink: 1;
+  flex-wrap: wrap;
+  min-width: 0;
+}
+@media (min-width: 992px) {
+  .list-pf:not(.list-pf-stacked) .list-pf-main-content {
+    flex-wrap: nowrap;
+    width: auto;
+  }
+  .list-pf:not(.list-pf-stacked) .list-pf-main-content > * + * {
+    margin-left: 40px;
+  }
+}
+.list-pf-title {
+  flex-grow: 1;
+  flex-shrink: 1;
+  flex-basis: 100%;
+  font-weight: bold;
+  min-width: 0;
+  word-wrap: break-word;
+}
+.list-pf-description {
+  flex-grow: 1;
+  flex-shrink: 1;
+  flex-basis: 100%;
+  min-width: 0;
+  word-wrap: break-word;
+}
+.list-pf-additional-content {
+  display: flex;
+  flex-basis: 31%;
+  flex-grow: 1;
+  flex-shrink: 1;
+  flex-wrap: wrap;
+  justify-content: space-between;
+}
+.list-pf-actions {
+  display: flex;
+  align-items: flex-start;
+  flex-grow: 0;
+  margin-left: 40px;
+}
+.list-pf-actions > * + * {
+  margin-left: 10px;
+}
+.list-view-pf .list-group-item {
+  align-items: flex-start;
+  background-clip: padding-box;
+  border-color: transparent #fff;
+  border-style: solid;
+  border-width: 1px;
+  display: flex;
+  flex-wrap: wrap;
+  padding-bottom: 0;
+  padding-top: 0;
+}
+.list-view-pf .list-group-item:before,
+.list-view-pf .list-group-item:after {
+  content: " ";
+  display: table;
+}
+.list-view-pf .list-group-item:after {
+  clear: both;
+}
+.list-view-pf .list-group-item.list-view-pf-expand-active {
+  background-color: #edf8ff;
+  box-shadow: 0 2px 6px rgba(3, 3, 3, 0.2);
+  z-index: 1;
+}
+.list-view-pf .list-group-item.active {
+  color: #555;
+  background-color: #def3ff;
+  background-clip: border-box;
+  border-color: #bbb transparent transparent;
+  z-index: auto;
+}
+.list-view-pf .list-group-item:hover {
+  background-color: #edf8ff;
+  border-left-color: transparent;
+  border-right-color: transparent;
+}
+.list-view-pf .list-group-item.list-view-pf-expand-active {
+  border: solid 1px #bbb;
+}
+.list-view-pf .list-group-item.list-view-pf-expand-active:first-child {
+  border-top-color: #bbb;
+}
+.list-view-pf .list-group-item:first-child {
+  border-top: 1px solid transparent;
+}
+@media (min-width: 992px) {
+  .list-view-pf .list-group-item {
+    align-items: center;
+  }
+}
+.list-view-pf .list-group-item-heading {
+  font-size: 16px;
+}
+.list-view-pf .list-group-item-heading small {
+  display: block;
+  font-size: 9.6px;
+  font-weight: 400;
+}
+@media (min-width: 992px) {
+  .list-view-pf .list-group-item-heading {
+    flex: 1 0 calc(25% - 20px);
+    float: left;
+    font-size: 12px;
+    margin: 0 20px 0 0;
+    overflow: hidden;
+    text-overflow: ellipsis;
+    white-space: nowrap;
+    width: calc(25% - 20px);
+  }
+}
+.list-view-pf .list-group-item-text {
+  color: currentColor !important;
+  margin-bottom: 10px;
+}
+@media (min-width: 992px) {
+  .list-view-pf .list-group-item-text {
+    flex: 1 0 auto;
+    float: left;
+    margin: 0 40px 0 0;
+    width: calc(75% - 40px);
+  }
+}
+.list-view-pf .close {
+  float: none;
+  position: absolute;
+  right: 15px;
+}
+.list-view-pf-actions {
+  float: right;
+  margin-bottom: 20px;
+  margin-left: 20px;
+  margin-top: 20px;
+  order: 2;
+}
+.list-view-pf-actions button,
+.list-view-pf-actions > a,
+.list-view-pf-actions .dropdown-kebab-pf {
+  margin-left: 10px;
+}
+.list-view-pf-top-align .list-view-pf-actions {
+  align-self: flex-start;
+}
+.list-view-pf-additional-info {
+  align-items: center;
+  display: flex;
+  flex-wrap: wrap;
+}
+@media (min-width: 992px) {
+  .list-view-pf-additional-info {
+    flex: 1 0 auto;
+    float: left;
+    width: 50%;
+  }
+}
+.list-view-pf-additional-info-item {
+  align-items: center;
+  display: inline-block;
+  display: flex;
+  margin-right: 20px;
+  max-width: 100%;
+  text-align: center;
+}
+.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked {
+  text-align: center;
+  flex-direction: column;
+}
+.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked strong {
+  font-size: 13px;
+  line-height: 1em;
+}
+.list-view-pf-additional-info-item .pficon,
+.list-view-pf-additional-info-item .fa {
+  font-size: 16px;
+  margin-right: 10px;
+}
+.list-view-pf-additional-info-item strong {
+  font-size: 16px;
+  font-weight: 600;
+  margin-right: 5px;
+}
+.list-view-pf-additional-info-item:last-child {
+  margin-right: 0;
+}
+.list-view-pf-additional-info-item-donut-chart {
+  width: 60px;
+}
+.list-view-pf-body {
+  align-items: center;
+  display: table-cell;
+  flex: 1;
+  min-width: 0;
+  vertical-align: top;
+  width: 100%;
+}
+@media (min-width: 992px) {
+  .list-view-pf-body {
+    align-items: center;
+    display: flex;
+    flex-direction: row;
+  }
+}
+.list-view-pf-checkbox {
+  border-right: 1px solid #d1d1d1;
+  float: left;
+  margin-bottom: 20px;
+  margin-right: 15px;
+  margin-top: 20px;
+  padding: 3px 10px 3px 0;
+}
+.list-view-pf-top-align .list-view-pf-checkbox {
+  align-self: flex-start;
+}
+.list-view-pf-description {
+  flex: 1 0 50%;
+}
+.list-view-pf-stacked .list-view-pf-description {
+  display: block;
+  flex: none;
+}
+@media (min-width: 992px) {
+  .list-view-pf-description {
+    align-items: center;
+    display: flex;
+    float: left;
+    width: 50%;
+  }
+}
+.list-view-pf-left {
+  display: table-cell;
+  padding-right: 20px;
+  text-align: center;
+  vertical-align: top;
+}
+.list-view-pf-left .list-view-pf-calendar {
+  font-size: 11px;
+  line-height: 1em;
+}
+.list-view-pf-left .list-view-pf-calendar strong {
+  display: block;
+  font-size: 44px;
+  font-weight: 300;
+  line-height: 1em;
+}
+.list-view-pf-left .pficon,
+.list-view-pf-left .fa {
+  border-radius: 50%;
+  font-size: 2em;
+}
+.list-view-pf-left .pficon.list-view-pf-icon-md,
+.list-view-pf-left .fa.list-view-pf-icon-md {
+  background-color: #f5f5f5;
+  height: 50px;
+  line-height: 50px;
+  width: 50px;
+}
+.list-view-pf-left .pficon.list-view-pf-icon-danger,
+.list-view-pf-left .fa.list-view-pf-icon-danger {
+  background-color: #ffe6e6;
+  color: #cc0000;
+}
+.list-view-pf-left .pficon.list-view-pf-icon-info,
+.list-view-pf-left .fa.list-view-pf-icon-info {
+  color: #8b8d8f;
+}
+.list-view-pf-left .pficon.list-view-pf-icon-lg,
+.list-view-pf-left .fa.list-view-pf-icon-lg {
+  background-color: #f5f5f5;
+  height: 60px;
+  line-height: 60px;
+  width: 60px;
+}
+.list-view-pf-left .pficon.list-view-pf-icon-sm,
+.list-view-pf-left .fa.list-view-pf-icon-sm {
+  border: 2px solid #39a5dc;
+  font-size: 1.4em;
+  height: 30px;
+  line-height: 30px;
+  width: 30px;
+}
+.list-view-pf-left .pficon.list-view-pf-icon-sm:before,
+.list-view-pf-left .fa.list-view-pf-icon-sm:before {
+  display: block;
+  line-height: 26px;
+}
+.list-view-pf-left .pficon.list-view-pf-icon-success,
+.list-view-pf-left .fa.list-view-pf-icon-success {
+  background-color: #e9f4e9;
+  color: #3f9c35;
+}
+.list-view-pf-left .pficon.list-view-pf-icon-warning,
+.list-view-pf-left .fa.list-view-pf-icon-warning {
+  background-color: #fdf2e5;
+  color: #ec7a08;
+}
+.list-view-pf-main-info {
+  align-items: flex-start;
+  display: flex;
+  flex: 1;
+  min-width: 0;
+  padding-bottom: 20px;
+  padding-top: 20px;
+}
+@media (min-width: 992px) {
+  .list-view-pf-main-info {
+    align-items: center;
+  }
+  .list-view-pf-top-align .list-view-pf-main-info {
+    align-items: flex-start;
+  }
+}
+.list-view-pf-stacked .list-group-item-heading {
+  float: none;
+  font-size: 16px;
+  line-height: 1.2em;
+  margin-bottom: 5px;
+  margin-right: 40px;
+  width: auto;
+}
+.list-view-pf-stacked .list-group-item-text {
+  float: none;
+  width: auto;
+}
+.list-view-pf-view {
+  background: #ededed;
+  border: none;
+  margin-top: 30px;
+}
+.list-group-item-header {
+  box-sizing: content-box;
+  cursor: pointer;
+  margin: 0 -15px;
+  padding: 0 15px;
+  width: 100%;
+}
+.list-view-pf-expand {
+  cursor: pointer;
+  float: left;
+  margin-bottom: 20px;
+  margin-right: 2px;
+  margin-top: 20px;
+  padding: 3px 0;
+}
+.list-view-pf-expand.active,
+.list-view-pf-expand:hover {
+  color: #0088ce;
+}
+.list-view-pf-additional-info-item .list-view-pf-expand {
+  margin: 0;
+  padding: 0;
+}
+.list-view-pf-expand .fa-angle-right {
+  cursor: pointer;
+  font-size: 17px;
+  margin-right: 5px;
+  margin-top: 2px;
+  width: 10px;
+}
+.list-group-item-container {
+  background: #fff;
+  border-top: solid 1px #bbb;
+  box-sizing: content-box;
+  margin: -1px -15px 0;
+  order: 3;
+  padding: 15px;
+  position: relative;
+  width: 100%;
+}
+.list-view-pf-dnd .dndDragging.drag-original {
+  display: none;
+}
+.list-view-pf-dnd .dndDragging.drag-original .list-view-pf-dnd-original-items {
+  display: block;
+}
+.list-view-pf-dnd .dndDragging .list-view-pf-dnd-drag-items {
+  display: inline-block;
+}
+.list-view-pf-dnd .dndDragging .list-view-pf-dnd-original-items {
+  display: none;
+}
+.list-view-pf-dnd .dndPlaceholder {
+  background-color: #ededed;
+  padding: 20px 0;
+}
+.list-view-pf-dnd .list-group-item-header {
+  margin-left: -10px;
+}
+.list-view-pf-dnd .list-group-item-header:before {
+  background-image: linear-gradient(to bottom, #0088ce 60%, #fff 0%);
+  background-position: left;
+  background-repeat: repeat-y;
+  background-size: 2px 5px;
+  border: 4px solid #0088ce;
+  border-color: #00659c;
+  content: "";
+  height: 55px;
+  left: 4px;
+  position: absolute;
+  top: 5px;
+  width: 10px;
+}
+.list-view-pf-dnd-drag-items {
+  display: none;
+}
+.login-pf {
+  height: 100%;
+}
+.login-pf #brand {
+  position: relative;
+  top: -70px;
+}
+.login-pf #brand img {
+  display: block;
+  height: 18px;
+  margin: 0 auto;
+  max-width: 100%;
+}
+@media (min-width: 768px) {
+  .login-pf #brand img {
+    margin: 0;
+    text-align: left;
+  }
+}
+.login-pf #badge {
+  display: block;
+  margin: 20px auto 70px;
+  position: relative;
+  text-align: center;
+}
+@media (min-width: 768px) {
+  .login-pf #badge {
+    float: right;
+    margin-right: 64px;
+    margin-top: 50px;
+  }
+}
+.login-pf body {
+  background: #1a1a1a url("../img/bg-login.png") repeat-x 50% 0;
+  background-size: auto;
+}
+@media (min-width: 768px) {
+  .login-pf body {
+    background-size: 100% auto;
+  }
+}
+.login-pf .container {
+  background-color: transparent;
+  clear: right;
+  color: #fff;
+  padding-bottom: 40px;
+  padding-top: 20px;
+  width: auto;
+}
+@media (min-width: 768px) {
+  .login-pf .container {
+    bottom: 13%;
+    padding-left: 80px;
+    position: absolute;
+    width: 100%;
+  }
+}
+.login-pf .container .details p:first-child {
+  border-top: 1px solid rgba(255, 255, 255, 0.3);
+  padding-top: 25px;
+  margin-top: 25px;
+}
+@media (min-width: 768px) {
+  .login-pf .container .details {
+    border-left: 1px solid rgba(255, 255, 255, 0.3);
+    padding-left: 40px;
+  }
+  .login-pf .container .details p:first-child {
+    border-top: 0;
+    padding-top: 0;
+    margin-top: 0;
+  }
+}
+.login-pf .container .details p {
+  margin-bottom: 2px;
+}
+.login-pf .container .form-horizontal .control-label {
+  font-size: 13px;
+  font-weight: 400;
+  text-align: left;
+}
+.login-pf .container .form-horizontal .form-group:last-child,
+.login-pf .container .form-horizontal .form-group:last-child .help-block:last-child {
+  margin-bottom: 0;
+}
+.login-pf .container .help-block {
+  color: #fff;
+}
+@media (min-width: 768px) {
+  .login-pf .container .login {
+    padding-right: 40px;
+  }
+}
+.login-pf .container .submit {
+  text-align: right;
+}
+.login-pf-page .login-pf-brand {
+  margin-top: 20px;
+  max-width: 360px;
+  width: 70%;
+}
+@media (min-width: 768px) {
+  .login-pf-page .login-pf-brand {
+    margin-top: 62px;
+  }
+}
+.login-pf-page .login-pf-page-header {
+  margin-bottom: 20px;
+  text-align: center;
+}
+@media (min-width: 768px) {
+  .login-pf-page .login-pf-page-header {
+    margin-bottom: 40px;
+  }
+}
+.login-pf-page .login-pf-page-header p {
+  color: #fff;
+  font-size: 14px;
+  margin-left: auto;
+  margin-right: auto;
+  margin-top: 20px;
+}
+.login-pf-page .card-pf {
+  padding: 10px 20px 30px 20px;
+  margin-bottom: 0;
+}
+@media (min-width: 768px) {
+  .login-pf-page .card-pf {
+    padding: 20px 40px 30px 40px;
+  }
+}
+.login-pf-page .card-pf p {
+  color: #72767b;
+}
+.login-pf-page .form-control {
+  height: 36px;
+}
+.login-pf-page .checkbox-label {
+  color: #72767b;
+  font-weight: 300;
+  margin-bottom: 15px;
+}
+@media (min-width: 768px) {
+  .login-pf-page .checkbox-label {
+    margin: 0;
+  }
+}
+.login-pf-page .btn-primary {
+  margin-top: 40px;
+}
+.login-pf-page .login-pf-header {
+  margin-bottom: 20px;
+  display: flex;
+  flex-direction: column;
+}
+@media (min-width: 768px) {
+  .login-pf-page .login-pf-header {
+    margin-bottom: 30px;
+  }
+}
+.login-pf-page .login-pf-header h1,
+.login-pf-page .login-pf-header p {
+  text-align: center;
+}
+.login-pf-page .login-pf-header h1 {
+  font-size: 16px;
+}
+@media (min-width: 768px) {
+  .login-pf-page .login-pf-header h1 {
+    font-size: 24px;
+  }
+}
+.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
+  width: auto;
+  align-self: flex-end;
+}
+.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle {
+  color: #4d5258;
+  background: none;
+  padding: 0 15px 0 0;
+  font-weight: 300;
+}
+.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle:not(:focus) {
+  box-shadow: none;
+  border: 1px solid transparent;
+}
+.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle .caret {
+  right: 0;
+}
+.login-pf-page .login-pf-signup {
+  margin: 40px 0 0;
+  font-size: 15px;
+  text-align: center;
+}
+.login-pf-page .login-pf-signup a {
+  margin-left: 10px;
+}
+.login-pf-page .login-pf-settings {
+  display: flex;
+  justify-content: space-between;
+  flex-wrap: wrap;
+}
+.login-pf-page .login-pf-page-footer {
+  display: flex;
+  justify-content: center;
+  flex-wrap: wrap;
+}
+.login-pf-page .login-pf-page-footer-links {
+  display: flex;
+  margin: 60px 0 0 0;
+}
+.login-pf-page .login-pf-page-footer-links li:not(:last-of-type) {
+  position: relative;
+  margin: 0 20px 0 0;
+}
+.login-pf-page .login-pf-page-footer-links li:not(:last-of-type):after {
+  content: ".";
+  color: #fff;
+  position: absolute;
+  top: 0px;
+  right: -10px;
+}
+.login-pf-page .login-pf-page-footer-link {
+  color: #fff;
+  font-size: 14px;
+}
+.login-pf-page .login-pf-page-footer-sso-services {
+  flex: 1 0 100%;
+  margin-top: 40px;
+  text-align: center;
+  color: #fff;
+}
+.login-pf-page .login-pf-page-footer-sso-services-logos {
+  display: flex;
+  flex-wrap: wrap;
+  padding: 0;
+  margin: 0;
+  list-style: none;
+  justify-content: center;
+}
+.login-pf-page .login-pf-page-footer-sso-services-logos li {
+  margin: 0 5px 5px;
+}
+.login-pf-page.login-pf-page-accounts {
+  margin-left: 20px;
+  margin-right: 20px;
+}
+.login-pf-page .login-pf-accounts {
+  display: flex;
+  justify-content: space-between;
+  flex-wrap: wrap;
+  max-width: 840px;
+  margin-left: auto;
+  margin-right: auto;
+}
+.login-pf-page .login-pf-accounts .login-pf-header,
+.login-pf-page .login-pf-accounts .login-pf-signup {
+  flex-basis: 100%;
+}
+.login-pf-page .login-pf-social-section {
+  flex-basis: 100%;
+  padding: 0;
+}
+@media (min-width: 768px) {
+  .login-pf-page .login-pf-social-section {
+    flex: 0 1 50%;
+    max-width: 50%;
+  }
+}
+@media (min-width: 768px) {
+  .login-pf-page .login-pf-social-section:first-of-type {
+    padding-right: 40px;
+  }
+  .login-pf-page .login-pf-social-section:last-of-type {
+    padding-left: 39px;
+    border-left: 1px solid #d1d1d1;
+  }
+}
+.login-pf-page .login-pf-social {
+  margin: 40px 0 0 0;
+}
+@media (min-width: 768px) {
+  .login-pf-page .login-pf-social {
+    margin: 0;
+  }
+  .login-pf-page .login-pf-social-double-col {
+    flex-wrap: wrap;
+    display: flex;
+    justify-content: space-between;
+  }
+  .login-pf-page .login-pf-social-double-col .login-pf-social-link {
+    flex-basis: 48%;
+  }
+}
+.login-pf-page .login-pf-social:not(.login-pf-social-all) .login-pf-social-link-more {
+  display: none;
+}
+.login-pf-page .login-pf-social-link {
+  margin-bottom: 15px;
+}
+.login-pf-page .login-pf-social-link a {
+  display: block;
+  padding: 7px 0;
+  font-size: 14px;
+  background: #f5f5f5;
+  text-align: center;
+  color: #72767b;
+}
+.login-pf-page .login-pf-social-link a img {
+  margin: 0 10px 0 0;
+  width: 20px;
+  height: 20px;
+}
+.login-pf-page .login-pf-social-link a:hover {
+  text-decoration: none;
+  background: #ededed;
+}
+.login-pf-page .login-pf-social-toggle {
+  float: right;
+  padding: 0;
+}
+.login-pf-page .login-pf-social-toggle .caret {
+  margin-left: 5px;
+}
+.login-pf-page .login-pf-social-toggle-active .caret {
+  transform: rotate(-180deg);
+}
+.navbar-pf {
+  background: #393F45;
+  border: 0;
+  border-radius: 0;
+  border-top: 3px solid #cc0000;
+  margin-bottom: 0;
+  min-height: 0;
+}
+.navbar-pf .navbar-brand {
+  color: #fff;
+  height: auto;
+  padding: 12px 0;
+  margin: 0 0 0 20px;
+}
+.navbar-pf .navbar-brand img {
+  display: block;
+}
+.navbar-pf .navbar-collapse {
+  border-top: 0;
+  -webkit-box-shadow: none;
+  box-shadow: none;
+  padding: 0;
+}
+.navbar-pf .navbar-header {
+  border-bottom: 1px solid #53565b;
+  float: none;
+}
+.navbar-pf .navbar-nav {
+  margin: 0;
+}
+.navbar-pf .navbar-nav > .active > a,
+.navbar-pf .navbar-nav > .active > a:hover,
+.navbar-pf .navbar-nav > .active > a:focus {
+  background-color: #454C53;
+  color: #fff;
+}
+.navbar-pf .navbar-nav > li > a {
+  color: #dbdada;
+  line-height: 1;
+  padding: 10px 20px;
+  text-shadow: none;
+}
+.navbar-pf .navbar-nav > li > a:hover,
+.navbar-pf .navbar-nav > li > a:focus {
+  color: #fff;
+}
+.navbar-pf .navbar-nav > .open > a,
+.navbar-pf .navbar-nav > .open > a:hover,
+.navbar-pf .navbar-nav > .open > a:focus {
+  background-color: #454C53;
+  color: #fff;
+}
+.navbar-pf .navbar-nav .badge {
+  background-color: #0088ce;
+  border-radius: 20px;
+  color: #fff;
+  cursor: pointer;
+  font-size: 9px;
+  font-weight: 700;
+  left: 26px;
+  margin: 0;
+  padding: 2px 4px;
+  position: absolute;
+  min-width: 10px;
+  min-height: 10px;
+  top: 6px;
+}
+@media (min-width: 768px) {
+  .navbar-pf .navbar-nav .badge {
+    left: auto;
+    right: 6px;
+    top: 3px;
+  }
+}
+.navbar-pf .navbar-nav .badge.badge-pf-bordered {
+  border: 1px solid #393F45;
+}
+@media (max-width: 767px) {
+  .navbar-pf .navbar-nav .active .dropdown-menu,
+  .navbar-pf .navbar-nav .active .navbar-persistent,
+  .navbar-pf .navbar-nav .open .dropdown-menu {
+    background-color: #3c434a !important;
+    margin-left: 0;
+    padding-bottom: 0;
+    padding-top: 0;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu > .active > a,
+  .navbar-pf .navbar-nav .active .navbar-persistent > .active > a,
+  .navbar-pf .navbar-nav .open .dropdown-menu > .active > a,
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open > a,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open > a,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open > a,
+  .navbar-pf .navbar-nav .active .dropdown-menu > .active > a:hover,
+  .navbar-pf .navbar-nav .active .navbar-persistent > .active > a:hover,
+  .navbar-pf .navbar-nav .open .dropdown-menu > .active > a:hover,
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open > a:hover,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open > a:hover,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open > a:hover,
+  .navbar-pf .navbar-nav .active .dropdown-menu > .active > a:focus,
+  .navbar-pf .navbar-nav .active .navbar-persistent > .active > a:focus,
+  .navbar-pf .navbar-nav .open .dropdown-menu > .active > a:focus,
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open > a:focus,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open > a:focus,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open > a:focus {
+    background-color: #424950 !important;
+    color: #fff;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu > li > a,
+  .navbar-pf .navbar-nav .active .navbar-persistent > li > a,
+  .navbar-pf .navbar-nav .open .dropdown-menu > li > a {
+    background-color: transparent;
+    border: 0;
+    color: #dbdada;
+    outline: none;
+    padding-left: 30px;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu > li > a:hover,
+  .navbar-pf .navbar-nav .active .navbar-persistent > li > a:hover,
+  .navbar-pf .navbar-nav .open .dropdown-menu > li > a:hover {
+    color: #fff;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .divider,
+  .navbar-pf .navbar-nav .active .navbar-persistent .divider,
+  .navbar-pf .navbar-nav .open .dropdown-menu .divider {
+    background-color: #53565b;
+    margin: 0 1px;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-header,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-header,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-header {
+    padding-bottom: 0;
+    padding-left: 30px;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open .dropdown-toggle,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-toggle,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open .dropdown-toggle {
+    color: #fff;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.pull-left,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.pull-left,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.pull-left {
+    float: none !important;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu > a:after,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu > a:after,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu > a:after {
+    display: none;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-header,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-header,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-header {
+    padding-left: 45px;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu {
+    border: 0;
+    bottom: auto;
+    -webkit-box-shadow: none;
+    box-shadow: none;
+    display: block;
+    float: none;
+    margin: 0;
+    min-width: 0;
+    padding: 0;
+    position: relative;
+    left: auto;
+    right: auto;
+    top: auto;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu > li > a,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu > li > a,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu > li > a {
+    padding: 5px 15px 5px 45px;
+    line-height: 20px;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu > li > a,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu .dropdown-menu > li > a,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu > li > a {
+    padding-left: 60px;
+  }
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-menu {
+    display: block;
+  }
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu > a:after {
+    display: inline-block !important;
+    position: relative;
+    right: auto;
+    top: 1px;
+  }
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu {
+    display: none;
+  }
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-submenu > a:after {
+    display: none !important;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu {
+    background-color: #fff !important;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .active > a,
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .active > a:active {
+    background-color: #def3ff !important;
+    border-color: #bee1f4 !important;
+    color: #363636 !important;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .active > a small,
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .active > a:active small {
+    color: #9c9c9c !important;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .disabled > a {
+    color: #9c9c9c !important;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .selected > a,
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .selected > a:active {
+    background-color: #0088ce !important;
+    border-color: #0088ce !important;
+    color: #fff !important;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .selected > a small,
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .selected > a:active small {
+    color: rgba(255, 255, 255, 0.5) !important;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu li > a.opt {
+    border-bottom: 1px solid transparent;
+    border-top: 1px solid transparent;
+    color: #363636;
+    padding-left: 10px;
+    padding-right: 10px;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu li a:active small {
+    color: rgba(255, 255, 255, 0.5) !important;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu li a:hover small,
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu li a:focus small {
+    color: #9c9c9c;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select > .open > .dropdown-menu {
+    padding-bottom: 5px;
+    padding-top: 5px;
+  }
+}
+.navbar-pf .navbar-persistent {
+  display: none;
+}
+.navbar-pf .active > .navbar-persistent {
+  display: block;
+}
+.navbar-pf .navbar-primary {
+  float: none;
+}
+.navbar-pf .navbar-primary .context {
+  border-bottom: 1px solid #53565b;
+}
+.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group,
+.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group[class*="span"] {
+  margin: 8px 20px 9px;
+  width: auto;
+}
+.navbar-pf .navbar-primary > li > .navbar-persistent > .dropdown-submenu > a {
+  position: relative;
+}
+.navbar-pf .navbar-primary > li > .navbar-persistent > .dropdown-submenu > a:after {
+  content: "\f107";
+  display: inline-block;
+  font-family: "FontAwesome";
+  font-weight: normal;
+}
+@media (max-width: 767px) {
+  .navbar-pf .navbar-primary > li > .navbar-persistent > .dropdown-submenu > a:after {
+    height: 10px;
+    margin-left: 4px;
+    vertical-align: baseline;
+  }
+}
+.navbar-pf .navbar-toggle {
+  border: 0;
+  margin: 0;
+  padding: 10px 20px;
+}
+.navbar-pf .navbar-toggle:hover,
+.navbar-pf .navbar-toggle:focus {
+  background-color: transparent;
+  outline: none;
+}
+.navbar-pf .navbar-toggle:hover .icon-bar,
+.navbar-pf .navbar-toggle:focus .icon-bar {
+  -webkit-box-shadow: 0 0 3px #fff;
+  box-shadow: 0 0 3px #fff;
+}
+.navbar-pf .navbar-toggle .icon-bar {
+  background-color: #fff;
+}
+.navbar-pf .navbar-utility {
+  border-bottom: 1px solid #53565b;
+}
+.navbar-pf .navbar-utility li.dropdown > .dropdown-toggle {
+  padding-left: 36px;
+  position: relative;
+}
+.navbar-pf .navbar-utility li.dropdown > .dropdown-toggle .pficon-user {
+  left: 20px;
+  position: absolute;
+  top: 10px;
+}
+@media (max-width: 767px) {
+  .navbar-pf .navbar-utility > li + li {
+    border-top: 1px solid #53565b;
+  }
+}
+@media (min-width: 768px) {
+  .navbar-pf .navbar-brand {
+    padding: 7px 0 8px;
+  }
+  .navbar-pf .navbar-nav > li > a {
+    padding-bottom: 14px;
+    padding-top: 14px;
+  }
+  .navbar-pf .navbar-persistent {
+    font-size: 14px;
+  }
+  .navbar-pf .navbar-primary {
+    font-size: 14px;
+    background-image: -webkit-linear-gradient(top, #474c50 0%, #383f43 100%);
+    background-image: -o-linear-gradient(top, #474c50 0%, #383f43 100%);
+    background-image: linear-gradient(to bottom, #474c50 0%, #383f43 100%);
+    background-repeat: repeat-x;
+    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff474c50', endColorstr='#ff383f43', GradientType=0);
+  }
+  .navbar-pf .navbar-primary.persistent-secondary .context .dropdown-menu {
+    top: auto;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary .dropup .dropdown-menu {
+    bottom: -5px;
+    top: auto;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li {
+    position: static;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li.active {
+    margin-bottom: 32px;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li.active > .navbar-persistent {
+    display: block;
+    left: 0;
+    position: absolute;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent {
+    background: #f6f6f6;
+    border-bottom: 1px solid #cecdcd;
+    padding: 0;
+    width: 100%;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent a {
+    text-decoration: none !important;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active:before,
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active:hover:before {
+    background: #0088ce;
+    bottom: -1px;
+    content: "";
+    display: block;
+    height: 2px;
+    left: 20px;
+    position: absolute;
+    right: 20px;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active > a,
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active > a:hover,
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active:hover > a {
+    color: #0088ce !important;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active .active > a {
+    color: #fff;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.dropdown-submenu:hover > .dropdown-menu {
+    display: none;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.dropdown-submenu.open > .dropdown-menu {
+    display: block;
+    left: 20px;
+    margin-top: 1px;
+    top: 100%;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.dropdown-submenu.open > .dropdown-toggle {
+    color: #252525;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.dropdown-submenu.open > .dropdown-toggle:after {
+    border-top-color: #252525;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.dropdown-submenu > .dropdown-toggle {
+    padding-right: 35px !important;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.dropdown-submenu > .dropdown-toggle:after {
+    position: absolute;
+    right: 20px;
+    top: 10px;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li:hover:before,
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.open:before {
+    background: #bbb;
+    bottom: -1px;
+    content: "";
+    display: block;
+    height: 2px;
+    left: 20px;
+    position: absolute;
+    right: 20px;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li:hover > a,
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.open > a {
+    color: #252525;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li:hover > a:after,
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.open > a:after {
+    border-top-color: #252525;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li > a {
+    background-color: transparent;
+    display: block;
+    line-height: 1;
+    padding: 9px 20px;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li > a.dropdown-toggle {
+    padding-right: 35px;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li > a.dropdown-toggle:after {
+    font-size: 15px;
+    position: absolute;
+    right: 20px;
+    top: 9px;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li > a:hover {
+    color: #252525;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li a {
+    color: #4d5258;
+  }
+  .navbar-pf .navbar-primary > li > a {
+    border-bottom: 1px solid transparent;
+    border-top: 1px solid transparent;
+    position: relative;
+    margin: -1px 0 0;
+  }
+  .navbar-pf .navbar-primary > li > a:hover {
+    background-color: #4b5053;
+    border-top-color: #949699;
+    color: #dbdada;
+    background-image: -webkit-linear-gradient(top, #5c6165 0%, #4b5053 100%);
+    background-image: -o-linear-gradient(top, #5c6165 0%, #4b5053 100%);
+    background-image: linear-gradient(to bottom, #5c6165 0%, #4b5053 100%);
+    background-repeat: repeat-x;
+    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5c6165', endColorstr='#ff4b5053', GradientType=0);
+  }
+  .navbar-pf .navbar-primary > .active > a,
+  .navbar-pf .navbar-primary > .active > a:hover,
+  .navbar-pf .navbar-primary > .active > a:focus,
+  .navbar-pf .navbar-primary > .open > a,
+  .navbar-pf .navbar-primary > .open > a:hover,
+  .navbar-pf .navbar-primary > .open > a:focus {
+    background-color: #64686c;
+    border-bottom-color: #64686c;
+    border-top-color: #949699;
+    -webkit-box-shadow: none;
+    box-shadow: none;
+    color: #fff;
+    background-image: -webkit-linear-gradient(top, #72757a 0%, #64686c 100%);
+    background-image: -o-linear-gradient(top, #72757a 0%, #64686c 100%);
+    background-image: linear-gradient(to bottom, #72757a 0%, #64686c 100%);
+    background-repeat: repeat-x;
+    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff72757a', endColorstr='#ff64686c', GradientType=0);
+  }
+  .navbar-pf .navbar-primary li.context.context-bootstrap-select .filter-option {
+    max-width: 160px;
+    text-overflow: ellipsis;
+  }
+  .navbar-pf .navbar-primary li.context.dropdown {
+    border-bottom: 0;
+  }
+  .navbar-pf .navbar-primary li.context > a,
+  .navbar-pf .navbar-primary li.context.context-bootstrap-select {
+    background-color: #505458;
+    border-bottom-color: #65696d;
+    border-right: 1px solid #65696d;
+    border-top-color: #64696d;
+    font-weight: 600;
+    background-image: -webkit-linear-gradient(top, #585d61 0%, #505458 100%);
+    background-image: -o-linear-gradient(top, #585d61 0%, #505458 100%);
+    background-image: linear-gradient(to bottom, #585d61 0%, #505458 100%);
+    background-repeat: repeat-x;
+    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff585d61', endColorstr='#ff505458', GradientType=0);
+  }
+  .navbar-pf .navbar-primary li.context > a:hover,
+  .navbar-pf .navbar-primary li.context.context-bootstrap-select:hover {
+    background-color: #5a5e62;
+    border-bottom-color: #6e7276;
+    border-right-color: #6e7276;
+    border-top-color: #6c7276;
+    background-image: -webkit-linear-gradient(top, #62676b 0%, #5a5e62 100%);
+    background-image: -o-linear-gradient(top, #62676b 0%, #5a5e62 100%);
+    background-image: linear-gradient(to bottom, #62676b 0%, #5a5e62 100%);
+    background-repeat: repeat-x;
+    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62676b', endColorstr='#ff5a5e62', GradientType=0);
+  }
+  .navbar-pf .navbar-primary li.context.open > a {
+    background-color: #65696d;
+    border-bottom-color: #6e7276;
+    border-right-color: #777a7e;
+    border-top-color: #767a7e;
+    background-image: -webkit-linear-gradient(top, #6b7175 0%, #65696d 100%);
+    background-image: -o-linear-gradient(top, #6b7175 0%, #65696d 100%);
+    background-image: linear-gradient(to bottom, #6b7175 0%, #65696d 100%);
+    background-repeat: repeat-x;
+    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6b7175', endColorstr='#ff65696d', GradientType=0);
+  }
+  .navbar-pf .navbar-utility {
+    border-bottom: 0;
+    font-size: 11px;
+    position: absolute;
+    right: 0;
+    top: 0;
+  }
+  .navbar-pf .navbar-utility > .active > a,
+  .navbar-pf .navbar-utility > .active > a:hover,
+  .navbar-pf .navbar-utility > .active > a:focus,
+  .navbar-pf .navbar-utility > .open > a,
+  .navbar-pf .navbar-utility > .open > a:hover,
+  .navbar-pf .navbar-utility > .open > a:focus {
+    background: #5b6165;
+    color: #fff;
+  }
+  .navbar-pf .navbar-utility > li > a {
+    border-left: 1px solid #53565b;
+    color: #fff !important;
+    padding: 7px 10px;
+  }
+  .navbar-pf .navbar-utility > li > a:hover {
+    background: #4a5053;
+    border-left-color: #636466;
+  }
+  .navbar-pf .navbar-utility > li.open > a {
+    border-left-color: #6c6e70;
+    color: #fff !important;
+  }
+  .navbar-pf .navbar-utility li.dropdown > .dropdown-toggle {
+    padding-left: 26px;
+  }
+  .navbar-pf .navbar-utility li.dropdown > .dropdown-toggle .pficon-user {
+    left: 10px;
+    top: 7px;
+  }
+  .navbar-pf .navbar-utility .open .dropdown-menu {
+    left: auto;
+    right: 0;
+  }
+  .navbar-pf .navbar-utility .open .dropdown-menu .dropdown-menu {
+    left: auto;
+    right: 100%;
+  }
+  .navbar-pf .navbar-utility .open .dropdown-menu {
+    border-top-width: 0;
+  }
+  .navbar-pf .open.bootstrap-select .dropdown-menu,
+  .navbar-pf .open .dropdown-submenu > .dropdown-menu {
+    border-top-width: 1px !important;
+  }
+}
+@media (max-width: 360px) {
+  .navbar-pf .navbar-brand {
+    margin-left: 10px;
+    width: 75%;
+  }
+  .navbar-pf .navbar-brand img {
+    height: auto;
+    max-width: 100%;
+  }
+  .navbar-pf .navbar-toggle {
+    padding-left: 0;
+  }
+}
+.navbar-pf-alt {
+  background-color: #030303;
+  background-image: "bg-navbar-pf-alt.svg";
+  background-repeat: no-repeat;
+  background-size: auto 100%;
+  border: none;
+  border-radius: 0;
+  border-top: 0 solid #cc0000;
+  margin-bottom: 0;
+}
+.navbar-pf-alt .infotip.bottom-right .arrow {
+  left: 90%;
+}
+.layout-pf-alt-fixed .navbar-pf-alt {
+  left: 0;
+  position: fixed;
+  right: 0;
+  top: 0;
+  z-index: 1030;
+}
+.navbar-pf-alt .nav.navbar-nav > li > .dropdown-menu.infotip {
+  margin-top: 0;
+}
+.navbar-pf-alt .nav .nav-item-iconic {
+  cursor: pointer;
+  line-height: 1;
+  max-height: 60px;
+  padding: 22px 12px;
+  position: relative;
+}
+.navbar-pf-alt .nav .nav-item-iconic:hover,
+.navbar-pf-alt .nav .nav-item-iconic:focus {
+  background-color: transparent;
+}
+.navbar-pf-alt .nav .nav-item-iconic:hover .caret,
+.navbar-pf-alt .nav .nav-item-iconic:focus .caret,
+.navbar-pf-alt .nav .nav-item-iconic:hover .fa,
+.navbar-pf-alt .nav .nav-item-iconic:focus .fa,
+.navbar-pf-alt .nav .nav-item-iconic:hover .glyphicon,
+.navbar-pf-alt .nav .nav-item-iconic:focus .glyphicon,
+.navbar-pf-alt .nav .nav-item-iconic:hover .pficon,
+.navbar-pf-alt .nav .nav-item-iconic:focus .pficon {
+  color: #fff;
+}
+.navbar-pf-alt .nav .nav-item-iconic .badge {
+  background-color: #0088ce;
+  border-radius: 20px;
+  color: #fff;
+  cursor: pointer;
+  font-size: 9px;
+  font-weight: 700;
+  margin: 0 0 -11px -12px;
+  min-width: 0;
+  padding: 2px 4px;
+}
+.navbar-pf-alt .nav .nav-item-iconic .caret,
+.navbar-pf-alt .nav .nav-item-iconic .fa,
+.navbar-pf-alt .nav .nav-item-iconic .pficon {
+  color: #d1d1d1;
+  font-size: 16px;
+}
+.navbar-pf-alt .nav .nav-item-iconic .caret {
+  font-size: 12px;
+  width: auto;
+}
+.navbar-pf-alt .nav .open > .nav-item-iconic,
+.navbar-pf-alt .nav .open > .nav-item-iconic:hover,
+.navbar-pf-alt .nav .open > .nav-item-iconic:focus {
+  background: transparent;
+}
+.navbar-pf-alt .nav .open > .nav-item-iconic .caret,
+.navbar-pf-alt .nav .open > .nav-item-iconic:hover .caret,
+.navbar-pf-alt .nav .open > .nav-item-iconic:focus .caret,
+.navbar-pf-alt .nav .open > .nav-item-iconic .fa,
+.navbar-pf-alt .nav .open > .nav-item-iconic:hover .fa,
+.navbar-pf-alt .nav .open > .nav-item-iconic:focus .fa,
+.navbar-pf-alt .nav .open > .nav-item-iconic .pficon,
+.navbar-pf-alt .nav .open > .nav-item-iconic:hover .pficon,
+.navbar-pf-alt .nav .open > .nav-item-iconic:focus .pficon {
+  color: #fff;
+}
+.navbar-pf-alt .navbar-brand {
+  color: #fff;
+  height: auto;
+  margin: 0 0 0 25px;
+  min-height: 35px;
+  padding: 18px 0 22px;
+}
+.navbar-pf-alt .navbar-brand .navbar-brand-name {
+  display: inline;
+  margin-left: 0 15px 0 0;
+  margin-right: 0 15px 0 0;
+}
+@media (max-width: 355px) {
+  .navbar-pf-alt .navbar-brand .navbar-brand-name {
+    display: none;
+  }
+}
+.navbar-pf-alt .navbar-brand .navbar-brand-icon {
+  display: inline;
+  margin-left: 0 15px 0 0;
+  margin-right: 0 15px 0 0;
+}
+.navbar-pf-alt .navbar-iconic {
+  margin-right: 0;
+}
+.navbar-pf-alt .navbar-toggle {
+  border: 0;
+  display: block;
+  float: left;
+  margin: 14px 15px;
+}
+.navbar-pf-alt .navbar-toggle:hover .icon-bar,
+.navbar-pf-alt .navbar-toggle:focus .icon-bar {
+  background: #fff;
+}
+.navbar-pf-alt .navbar-toggle + .navbar-brand {
+  margin-left: 0;
+}
+.navbar-pf-alt .navbar-toggle .icon-bar {
+  background: #d1d1d1;
+}
+.navbar-pf-vertical {
+  background-color: #1d1d1d;
+  border: none;
+  border-radius: 0;
+  border-top: 2px solid #cc0000;
+  margin-bottom: 0;
+}
+.navbar-pf-vertical .infotip.bottom-right .arrow {
+  left: 90%;
+}
+.layout-pf-fixed .navbar-pf-vertical {
+  left: 0;
+  position: fixed;
+  right: 0;
+  top: 0;
+  z-index: 1030;
+}
+.navbar-pf-vertical .nav.navbar-nav > li > .dropdown-menu.infotip {
+  margin-top: 0;
+}
+.navbar-pf-vertical .nav .nav-item-iconic {
+  color: #d1d1d1;
+  cursor: pointer;
+  line-height: 1;
+  max-height: 58px;
+  padding: 21px 12px;
+  position: relative;
+}
+.navbar-pf-vertical .nav .nav-item-iconic:hover,
+.navbar-pf-vertical .nav .nav-item-iconic:focus {
+  color: #fff;
+  background-color: transparent;
+}
+.navbar-pf-vertical .nav .nav-item-iconic:hover .caret,
+.navbar-pf-vertical .nav .nav-item-iconic:focus .caret,
+.navbar-pf-vertical .nav .nav-item-iconic:hover .fa,
+.navbar-pf-vertical .nav .nav-item-iconic:focus .fa,
+.navbar-pf-vertical .nav .nav-item-iconic:hover .glyphicon,
+.navbar-pf-vertical .nav .nav-item-iconic:focus .glyphicon,
+.navbar-pf-vertical .nav .nav-item-iconic:hover .pficon,
+.navbar-pf-vertical .nav .nav-item-iconic:focus .pficon {
+  color: #fff;
+}
+.navbar-pf-vertical .nav .nav-item-iconic .badge {
+  background-color: #0088ce;
+  border-radius: 20px;
+  color: #fff;
+  cursor: pointer;
+  font-size: 9px;
+  font-weight: 700;
+  left: 20px;
+  margin: 0;
+  padding: 2px 4px;
+  position: absolute;
+  min-width: 10px;
+  min-height: 10px;
+  top: 18px;
+}
+.navbar-pf-vertical .nav .nav-item-iconic .badge.badge-pf-bordered {
+  border: 1px solid #1d1d1d;
+}
+.navbar-pf-vertical .nav .nav-item-iconic .caret,
+.navbar-pf-vertical .nav .nav-item-iconic .fa,
+.navbar-pf-vertical .nav .nav-item-iconic .pficon {
+  color: #d1d1d1;
+  font-size: 16px;
+}
+.navbar-pf-vertical .nav .nav-item-iconic .caret {
+  font-size: 12px;
+  width: auto;
+}
+.navbar-pf-vertical .nav .open > .nav-item-iconic,
+.navbar-pf-vertical .nav .open > .nav-item-iconic:hover,
+.navbar-pf-vertical .nav .open > .nav-item-iconic:focus {
+  background: transparent;
+}
+.navbar-pf-vertical .nav .open > .nav-item-iconic .caret,
+.navbar-pf-vertical .nav .open > .nav-item-iconic:hover .caret,
+.navbar-pf-vertical .nav .open > .nav-item-iconic:focus .caret,
+.navbar-pf-vertical .nav .open > .nav-item-iconic .fa,
+.navbar-pf-vertical .nav .open > .nav-item-iconic:hover .fa,
+.navbar-pf-vertical .nav .open > .nav-item-iconic:focus .fa,
+.navbar-pf-vertical .nav .open > .nav-item-iconic .pficon,
+.navbar-pf-vertical .nav .open > .nav-item-iconic:hover .pficon,
+.navbar-pf-vertical .nav .open > .nav-item-iconic:focus .pficon {
+  color: #fff;
+}
+.navbar-pf-vertical .navbar-brand {
+  color: #fff;
+  height: auto;
+  margin: 0 0 0 25px;
+  min-height: 35px;
+  padding: 11px 0 12px;
+}
+.navbar-pf-vertical .navbar-brand .navbar-brand-name {
+  display: inline-block;
+  margin: 0 15px 0 0;
+}
+@media (max-width: 480px) {
+  .navbar-pf-vertical .navbar-brand .navbar-brand-name {
+    display: none;
+  }
+}
+.navbar-pf-vertical .navbar-brand .navbar-brand-icon {
+  display: inline-block;
+  margin: 0 15px 0 0;
+  max-height: 35px;
+}
+.navbar-pf-vertical .navbar-brand .navbar-brand-txt {
+  line-height: 34px;
+}
+.navbar-pf-vertical .navbar-iconic {
+  margin-right: 0;
+}
+.navbar-pf-vertical .navbar-toggle {
+  border: 0;
+  display: block;
+  float: left;
+  margin: 13px 15px;
+}
+.navbar-pf-vertical .navbar-toggle:hover .icon-bar,
+.navbar-pf-vertical .navbar-toggle:focus .icon-bar {
+  background: #fff;
+}
+.navbar-pf-vertical .navbar-toggle + .navbar-brand {
+  margin-left: 0;
+}
+.navbar-pf-vertical .navbar-toggle .icon-bar {
+  background: #d1d1d1;
+}
+.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt {
+  transition: all 200ms cubic-bezier(0.35, 0, 0.25, 1);
+}
+.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value {
+  transition: opacity 0ms 100ms, opacity 100ms linear;
+}
+.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .badge {
+  transition: all 200ms cubic-bezier(0.35, 0, 0.25, 1);
+}
+.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .list-group-item-value {
+  transition: opacity 500ms ease-out;
+  transition-delay: 150ms;
+}
+.nav-pf-vertical-alt {
+  background: #fff;
+}
+.ie9.layout-pf-alt-fixed .nav-pf-vertical-alt {
+  box-sizing: content-box;
+}
+.layout-pf-alt-fixed .nav-pf-vertical-alt {
+  border-right: 1px solid #d1d1d1;
+  bottom: 0;
+  overflow-x: hidden;
+  overflow-y: auto;
+  left: 0;
+  position: fixed;
+  top: 60px;
+  width: 250px;
+  z-index: 1030;
+}
+.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed {
+  width: 75px !important;
+}
+.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .badge {
+  padding: 2px 3px;
+  right: 21px;
+  top: 36px;
+}
+.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value {
+  opacity: 0;
+}
+.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden {
+  display: none;
+}
+.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden.show-mobile-nav {
+  box-shadow: 0 0 3px rgba(3, 3, 3, 0.15);
+  display: block !important;
+}
+.layout-pf-alt-fixed-with-footer .nav-pf-vertical-alt {
+  bottom: 37px;
+}
+.nav-pf-vertical-alt .list-group {
+  border-top: 0;
+  margin-bottom: 0;
+}
+.nav-pf-vertical-alt .list-group-item {
+  padding: 0;
+}
+.nav-pf-vertical-alt .list-group-item a {
+  color: #363636;
+  display: block;
+  font-size: 14px;
+  height: 63px;
+  padding: 17px 20px 17px 25px;
+  position: relative;
+  white-space: nowrap;
+}
+.nav-pf-vertical-alt .list-group-item a:focus {
+  color: #363636;
+  text-decoration: none;
+}
+.nav-pf-vertical-alt .list-group-item a:hover {
+  color: #39a5dc;
+  text-decoration: none;
+}
+.nav-pf-vertical-alt .list-group-item.active {
+  background-color: #fff;
+  border-color: #f5f5f5;
+}
+.nav-pf-vertical-alt .list-group-item.active:before {
+  background: #39a5dc;
+  content: " ";
+  display: block;
+  height: 100%;
+  left: 0;
+  position: absolute;
+  top: 0;
+  width: 5px;
+}
+.nav-pf-vertical-alt .list-group-item.active a {
+  color: #39a5dc;
+}
+.nav-pf-vertical-alt .list-group-item .badge {
+  background: #363636;
+  border: 1px solid #fff;
+  border-radius: 3px;
+  color: #fff;
+  font-weight: 700;
+  font-size: 9px;
+  padding: 5px;
+  position: absolute;
+  right: 15px;
+  text-align: center;
+  top: 21px;
+}
+.nav-pf-vertical-alt .list-group-item .badge.notifications {
+  background: #0088ce;
+}
+.nav-pf-vertical-alt .list-group-item .fa,
+.nav-pf-vertical-alt .list-group-item .glyphicon,
+.nav-pf-vertical-alt .list-group-item .pficon {
+  float: left;
+  font-size: 18px;
+  line-height: 30px;
+  margin-right: 10px;
+  text-align: center;
+  width: 18px;
+}
+.nav-pf-vertical-alt .list-group-item .list-group-item-value {
+  display: inline-block;
+  line-height: 30px;
+  opacity: 1;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  width: 140px;
+}
+.nav-pf-vertical-alt .list-group-item-separator {
+  border-top-width: 5px;
+}
+.sidebar-pf .nav-pf-vertical-alt {
+  margin-left: -20px;
+  margin-right: -20px;
+}
+.drawer-pf {
+  background-color: #fafafa;
+  border: 1px solid #d1d1d1;
+  -webkit-box-shadow: 0 6px 12px rgba(3, 3, 3, 0.175);
+  box-shadow: 0 6px 12px rgba(3, 3, 3, 0.175);
+  overflow-y: auto;
+  position: absolute;
+  right: 0;
+  width: 320px;
+  z-index: 2;
+}
+.drawer-pf .panel {
+  border-bottom: none;
+  border-left: none;
+  border-right: none;
+}
+.drawer-pf .panel-group .panel-heading + .panel-collapse .panel-body {
+  border-top: none;
+  border-bottom: 1px solid #d1d1d1;
+  padding: 0;
+}
+.drawer-pf .panel-counter {
+  display: block;
+  font-style: italic;
+  line-height: 1.2;
+  padding-left: 18px;
+  padding-top: 5px;
+}
+.drawer-pf .panel-heading {
+  border-bottom: 1px solid #d1d1d1;
+}
+.drawer-pf .panel-group {
+  bottom: 0;
+  margin-bottom: 0;
+  position: absolute;
+  top: 25px;
+  width: 100%;
+}
+.drawer-pf .panel-title a {
+  cursor: pointer;
+  display: block;
+}
+.drawer-pf.drawer-pf-expanded {
+  width: inherit;
+}
+@media (max-width: 767px) {
+  .drawer-pf.drawer-pf-expanded {
+    left: 0;
+    width: 100%;
+  }
+}
+@media (min-width: 767px) {
+  .drawer-pf.drawer-pf-expanded {
+    left: 270px;
+  }
+}
+.drawer-pf.drawer-pf-expanded .drawer-pf-toggle-expand:before {
+  content: "\f101";
+}
+.drawer-pf .blank-slate-pf {
+  border: 0;
+  margin-bottom: 0;
+  padding: 30px;
+}
+.drawer-pf .blank-slate-pf .blank-slate-pf-icon {
+  font-size: 3em;
+  line-height: 1em;
+}
+.drawer-pf .blank-slate-pf h1 {
+  font-size: 1em;
+  margin-bottom: 0;
+  margin-top: 15px;
+}
+.drawer-pf-close,
+.drawer-pf-toggle-expand {
+  color: #252525;
+  cursor: pointer;
+  line-height: inherit;
+  padding: 2px 10px;
+  position: absolute;
+}
+.drawer-pf-close:hover,
+.drawer-pf-toggle-expand:hover,
+.drawer-pf-close:focus,
+.drawer-pf-toggle-expand:focus {
+  color: #0088ce;
+  text-decoration: none;
+}
+.drawer-pf-toggle-expand {
+  left: 0;
+}
+.drawer-pf-toggle-expand:before {
+  content: "\f100";
+  font-family: "FontAwesome";
+}
+.drawer-pf-toggle-expand:hover {
+  color: #0088ce;
+}
+.drawer-pf-close {
+  right: 0;
+}
+.drawer-pf-action {
+  display: flex;
+  border-bottom: 1px solid #d1d1d1;
+}
+.drawer-pf-action .btn-link {
+  color: #0088ce;
+  padding: 10px 0;
+}
+.drawer-pf-action .btn-link .pficon,
+.drawer-pf-action .btn-link .fa {
+  margin-right: 3px;
+}
+.drawer-pf-action .btn-link .pficon-close {
+  position: relative;
+  top: 1px;
+}
+.drawer-pf-action .btn-link:hover {
+  color: #00659c;
+}
+.drawer-pf-action-link {
+  border-left: solid 1px #d1d1d1;
+  flex: 1 1 0%;
+  margin: 10px 0;
+  text-align: center;
+}
+.drawer-pf-action-link:first-of-type {
+  border-left-width: 0;
+}
+.drawer-pf-action-link .btn-link {
+  padding: 0;
+}
+.drawer-pf-loading {
+  color: #4d5258;
+  font-size: 14px;
+  padding: 20px 15px;
+}
+.drawer-pf-notification {
+  border-bottom: 1px solid #d1d1d1;
+  padding: 15px;
+}
+.drawer-pf-notification .date {
+  border-right: 1px solid #aaa;
+  display: inline-block;
+  line-height: 1;
+  margin-right: 5px;
+  padding-right: 9px;
+}
+.drawer-pf-notification > .dropdown-kebab-pf {
+  margin-top: -3px;
+}
+.drawer-pf-notification .pficon {
+  font-size: 14px;
+  margin-top: 3px;
+}
+.drawer-pf-notification:last-of-type {
+  border-bottom: none;
+}
+.drawer-pf-notification:hover {
+  background-color: #def3ff;
+}
+.drawer-pf-notification.unread .drawer-pf-notification-message {
+  font-weight: bold;
+  cursor: pointer;
+}
+.drawer-pf-notification.expanded-notification .date {
+  border-right: none;
+  padding-right: 0;
+}
+.drawer-pf-notification-content {
+  cursor: default;
+}
+.drawer-pf-notification-info,
+.drawer-pf-notification-message {
+  display: block;
+  padding-left: 27px;
+  padding-right: 19px;
+}
+.expanded-notification .drawer-pf-notification-info,
+.expanded-notification .drawer-pf-notification-message {
+  display: inline-block;
+}
+.drawer-pf-title {
+  background-color: #fafafa;
+  border-bottom: 1px solid #d1d1d1;
+  position: absolute;
+  width: 100%;
+}
+.drawer-pf-title h3 {
+  font-size: 12px;
+  margin: 0;
+  padding: 6px 15px;
+}
+.drawer-pf-notification.expanded-notification .drawer-pf-notification-content {
+  display: flex;
+}
+@media (max-width: 991px) {
+  .drawer-pf-notification.expanded-notification .drawer-pf-notification-content {
+    flex-direction: column;
+  }
+}
+.drawer-pf-notification.expanded-notification .drawer-pf-notification-content .drawer-pf-notification-message {
+  flex: 1 1;
+}
+/* Exclusive styles to work with Vertical Navigation */
+.navbar-pf-vertical .drawer-pf {
+  height: calc(100vh - 58px - 20px);
+  top: 58px;
+}
+@media (max-width: 767px) {
+  .navbar-pf-vertical .drawer-pf {
+    width: 100%;
+    height: calc(100vh - 58px);
+  }
+}
+.navbar-pf-vertical .nav .drawer-pf-trigger .drawer-pf-trigger-icon {
+  border-left: 1px solid #53565b;
+  border-right: 1px solid #53565b;
+  padding-left: 15px;
+  padding-right: 15px;
+}
+.navbar-pf-vertical .nav .drawer-pf-trigger.open .drawer-pf-trigger-icon {
+  background-color: #4a5053;
+}
+/* Exclusive styles to work with Horizontal Navigation */
+.navbar-pf .drawer-pf {
+  height: calc(100vh - 26px - 20px);
+  top: 26px;
+}
+@media (max-width: 767px) {
+  .navbar-pf .drawer-pf {
+    width: 100%;
+    height: calc(100vh - 26px - 32px);
+    top: calc(26px + 8px);
+  }
+}
+.navbar-pf .drawer-pf-trigger-icon {
+  cursor: pointer;
+}
+.search-pf.has-button {
+  border-collapse: separate;
+  display: table;
+}
+.search-pf.has-button .form-group {
+  display: table-cell;
+  width: 100%;
+}
+.search-pf.has-button .form-group .btn {
+  -webkit-box-shadow: none;
+  box-shadow: none;
+  float: left;
+  margin-left: -1px;
+}
+.search-pf.has-button .form-group .btn.btn-lg {
+  font-size: 14.5px;
+}
+.search-pf.has-button .form-group .btn.btn-sm {
+  font-size: 10.7px;
+}
+.search-pf.has-button .form-group .form-control {
+  float: left;
+}
+.search-pf .has-clear .clear {
+  background: rgba(255, 255, 255, 0);
+  border: 0;
+  height: 25px;
+  line-height: 1;
+  padding: 0;
+  position: absolute;
+  right: 1px;
+  top: 1px;
+  width: 28px;
+}
+.search-pf .has-clear .clear:focus {
+  outline: none;
+}
+.search-pf .has-clear .form-control {
+  padding-right: 30px;
+}
+.search-pf .has-clear .form-control::-ms-clear {
+  display: none;
+}
+.search-pf .has-clear .input-lg + .clear {
+  height: 31px;
+  width: 28px;
+}
+.search-pf .has-clear .input-sm + .clear {
+  height: 20px;
+  width: 28px;
+}
+.search-pf .has-clear .input-sm + .clear span {
+  font-size: 10px;
+}
+.search-pf .has-clear .search-pf-input-group {
+  position: relative;
+}
+.sidebar-header {
+  border-bottom: 1px solid #ececec;
+  padding-bottom: 11px;
+  margin: 50px 0 20px;
+}
+.sidebar-header .actions {
+  margin-top: -2px;
+}
+.sidebar-pf .sidebar-header + .list-group {
+  border-top: 0;
+  margin-top: -10px;
+}
+.sidebar-pf .sidebar-header + .list-group .list-group-item {
+  background: transparent;
+  border-color: #ececec;
+  padding-left: 0;
+}
+.sidebar-pf .sidebar-header + .list-group .list-group-item-heading {
+  font-size: 12px;
+}
+.sidebar-pf .nav-category h2 {
+  color: #9c9c9c;
+  font-size: 12px;
+  font-weight: 400;
+  line-height: 21px;
+  margin: 0;
+  padding: 8px 0;
+}
+.sidebar-pf .nav-category + .nav-category {
+  margin-top: 10px;
+}
+.sidebar-pf .nav-pills > li.active > a {
+  background: #0088ce !important;
+  border-color: #0088ce !important;
+  color: #fff;
+}
+@media (min-width: 768px) {
+  .sidebar-pf .nav-pills > li.active > a:after {
+    content: "\f105";
+    font-family: "FontAwesome";
+    display: block;
+    position: absolute;
+    right: 10px;
+    top: 1px;
+  }
+}
+.sidebar-pf .nav-pills > li.active > a .fa {
+  color: #fff;
+}
+.sidebar-pf .nav-pills > li > a {
+  border-bottom: 1px solid transparent;
+  border-radius: 0;
+  border-top: 1px solid transparent;
+  color: #363636;
+  font-size: 13px;
+  line-height: 21px;
+  padding: 1px 20px;
+}
+.sidebar-pf .nav-pills > li > a:hover {
+  background: #def3ff;
+  border-color: #bee1f4;
+}
+.sidebar-pf .nav-pills > li > a .fa {
+  color: #6a7079;
+  font-size: 15px;
+  margin-right: 10px;
+  text-align: center;
+  vertical-align: middle;
+  width: 15px;
+}
+.sidebar-pf .nav-stacked {
+  margin-left: -20px;
+  margin-right: -20px;
+}
+.sidebar-pf .nav-stacked li + li {
+  margin-top: 0;
+}
+.sidebar-pf .panel {
+  background: transparent;
+}
+.sidebar-pf .panel-body {
+  padding: 6px 20px;
+}
+.sidebar-pf .panel-body .nav-pills > li > a {
+  padding-left: 37px;
+}
+.sidebar-pf .panel-heading {
+  padding: 9px 20px;
+}
+.sidebar-pf .panel-title {
+  font-size: 12px;
+}
+.sidebar-pf .panel-title > a:before {
+  display: inline-block;
+  margin-left: 1px;
+  margin-right: 4px;
+  width: 9px;
+}
+.sidebar-pf .panel-title > a.collapsed:before {
+  margin-left: 3px;
+  margin-right: 2px;
+}
+@media (min-width: 767px) {
+  .sidebar-header-bleed-left {
+    margin-left: -20px;
+  }
+  .sidebar-header-bleed-left > h2 {
+    margin-left: 20px;
+  }
+  .sidebar-header-bleed-right {
+    margin-right: -20px;
+  }
+  .sidebar-header-bleed-right .actions {
+    margin-right: 20px;
+  }
+  .sidebar-header-bleed-right > h2 {
+    margin-right: 20px;
+  }
+  .sidebar-header-bleed-right + .list-group {
+    margin-right: -20px;
+  }
+  .sidebar-pf .panel-group .panel-default,
+  .sidebar-pf .treeview {
+    border-left: 0;
+    border-right: 0;
+    margin-left: -20px;
+    margin-right: -20px;
+  }
+  .sidebar-pf .treeview {
+    margin-top: 5px;
+  }
+  .sidebar-pf .treeview .list-group-item {
+    padding-left: 20px;
+    padding-right: 20px;
+  }
+  .sidebar-pf .treeview .list-group-item.node-selected:after {
+    content: "\f105";
+    font-family: "FontAwesome";
+    display: block;
+    position: absolute;
+    right: 10px;
+    top: 1px;
+  }
+}
+@media (min-width: 768px) {
+  .sidebar-pf {
+    background: #fafafa;
+  }
+  .sidebar-pf.sidebar-pf-left {
+    border-right: 1px solid #d1d1d1;
+  }
+  .sidebar-pf.sidebar-pf-right {
+    border-left: 1px solid #d1d1d1;
+  }
+  .sidebar-pf > .nav-category,
+  .sidebar-pf > .nav-stacked {
+    margin-top: 5px;
+  }
+}
+.skiplink-pf {
+  position: absolute;
+  top: 12px;
+  left: -300%;
+  /* moves off screen */
+  z-index: 1050;
+}
+.skiplink-pf:focus {
+  left: 10px;
+}
+@keyframes rotation {
+  from {
+    transform: rotate(0deg);
+  }
+  to {
+    transform: rotate(359deg);
+  }
+}
+.spinner {
+  animation: rotation 600ms infinite linear;
+  border-bottom: 4px solid rgba(3, 3, 3, 0.25);
+  border-left: 4px solid rgba(3, 3, 3, 0.25);
+  border-right: 4px solid rgba(3, 3, 3, 0.25);
+  border-radius: 100%;
+  border-top: 4px solid rgba(3, 3, 3, 0.75);
+  height: 24px;
+  margin: 0 auto;
+  position: relative;
+  width: 24px;
+}
+.spinner.spinner-inline {
+  display: inline-block;
+  margin-right: 3px;
+}
+.spinner.spinner-lg {
+  border-width: 5px;
+  height: 30px;
+  width: 30px;
+}
+.spinner.spinner-sm {
+  border-width: 3px;
+  height: 18px;
+  width: 18px;
+}
+.spinner.spinner-xs {
+  border-width: 2px;
+  height: 12px;
+  width: 12px;
+}
+.spinner.spinner-inverse {
+  border-bottom-color: rgba(255, 255, 255, 0.25);
+  border-left-color: rgba(255, 255, 255, 0.25);
+  border-right-color: rgba(255, 255, 255, 0.25);
+  border-top-color: rgba(255, 255, 255, 0.75);
+}
+.ie9 .spinner {
+  background: url("../img/spinner.gif") no-repeat;
+  border: 0;
+}
+.ie9 .spinner.spinner-inverse {
+  background-image: url("../img/spinner-inverse.gif");
+}
+.ie9 .spinner.spinner-inverse-lg {
+  background-image: url("../img/spinner-inverse-lg.gif");
+}
+.ie9 .spinner.spinner-inverse-sm {
+  background-image: url("../img/spinner-inverse-sm.gif");
+}
+.ie9 .spinner.spinner-inverse-xs {
+  background-image: url("../img/spinner-inverse-xs.gif");
+}
+.ie9 .spinner.spinner-lg {
+  background-image: url("../img/spinner-lg.gif");
+}
+.ie9 .spinner.spinner-sm {
+  background-image: url("../img/spinner-sm.gif");
+}
+.ie9 .spinner.spinner-xs {
+  background-image: url("../img/spinner-xs.gif");
+}
+.prettyprint .atn,
+.prettyprint .com,
+.prettyprint .fun,
+.prettyprint .var {
+  color: #3f9c35;
+}
+.prettyprint .atv,
+.prettyprint .str {
+  color: #a30000;
+}
+.prettyprint .clo,
+.prettyprint .dec,
+.prettyprint .kwd,
+.prettyprint .opn,
+.prettyprint .pln,
+.prettyprint .pun {
+  color: #363636;
+}
+.prettyprint .lit,
+.prettyprint .tag,
+.prettyprint .typ {
+  color: #00659c;
+}
+.prettyprint ol.linenums {
+  margin-bottom: 0;
+}
+table.dataTable {
+  height: 100%;
+  margin-bottom: 0;
+  max-width: none !important;
+}
+table.dataTable tbody > tr > td.table-view-pf-actions {
+  padding: 0;
+  vertical-align: middle;
+}
+table.dataTable tbody > tr:hover > td.table-view-pf-actions {
+  background-color: #f5f5f5;
+  border-bottom-color: #d1d1d1;
+}
+table.dataTable tbody > tr.selected {
+  color: #fff;
+  background-color: #0088ce;
+}
+table.dataTable tbody > tr.selected > td {
+  border-bottom-color: #00659c;
+}
+table.dataTable tbody > tr.selected > td.table-view-pf-actions {
+  background-color: #f5f5f5;
+  border-bottom-color: #d1d1d1;
+}
+table.dataTable tbody > tr.selected:hover > td {
+  background-color: inherit;
+  border-bottom-color: #00659c;
+}
+table.dataTable tbody > tr.selected:hover > td.table-view-pf-actions {
+  background-color: #f5f5f5;
+  border-bottom-color: #d1d1d1;
+}
+table.dataTable thead .sorting,
+table.dataTable thead .sorting_asc,
+table.dataTable thead .sorting_desc,
+table.dataTable thead .sorting_asc_disabled,
+table.dataTable thead .sorting_desc_disabled {
+  cursor: pointer;
+}
+table.dataTable thead .sorting_asc,
+table.dataTable thead .sorting_desc {
+  color: #0088ce !important;
+  position: relative;
+}
+table.dataTable thead .sorting_asc:after,
+table.dataTable thead .sorting_desc:after {
+  content: "\f107";
+  font-family: "FontAwesome";
+  font-size: 10px;
+  font-weight: normal;
+  height: 9px;
+  left: 7px;
+  line-height: 12px;
+  position: relative;
+  top: 2px;
+  vertical-align: baseline;
+  width: 12px;
+}
+table.dataTable thead .sorting_asc:before,
+table.dataTable thead .sorting_desc:before {
+  background: #0088ce;
+  content: "";
+  height: 2px;
+  position: absolute;
+  left: 0;
+  top: 0;
+  width: 100%;
+}
+table.dataTable thead .sorting_asc:after {
+  content: "\f106";
+  top: -3px;
+}
+table.dataTable th:active {
+  outline: none;
+}
+.table-view-pf-empty.blank-slate-pf {
+  background-color: #f5f5f5;
+  border: 1px solid #d1d1d1;
+  border-radius: 0;
+  margin-top: -1px;
+}
+.table-view-pf-toolbar.toolbar-pf {
+  background-color: #f5f5f5;
+  border-bottom: none;
+  border-left: 1px solid #d1d1d1;
+  border-right: 1px solid #d1d1d1;
+  border-top: 1px solid #d1d1d1;
+  box-shadow: none;
+  margin-left: 0px;
+  margin-right: 0px;
+}
+.table-view-pf-toolbar.toolbar-pf .toolbar-pf-results {
+  border-top: 1px solid #d1d1d1;
+  min-height: 40px;
+  line-height: 40px;
+}
+.table-view-pf-toolbar-external.toolbar-pf {
+  border-bottom: none;
+  border-top: none;
+  box-shadow: none;
+}
+.table-view-pf-toolbar-external.toolbar-pf .toolbar-pf-results {
+  border-top: 1px solid #d1d1d1;
+  min-height: 40px;
+  line-height: 40px;
+}
+.table-view-pf-colvis-menu > li {
+  padding: 5px 10px;
+}
+.table-view-pf-colvis-menu > li:hover {
+  background-color: #def3ff;
+}
+.table-view-pf-colvis-menu > li > input {
+  margin-top: 0;
+  margin-right: 10px;
+  vertical-align: middle;
+}
+.table-view-pf-colvis-menu > li > label {
+  margin-bottom: 0;
+}
+.table-view-pf-actions {
+  background-color: #f1f1f1;
+  height: 100%;
+}
+.table-view-pf-actions .btn,
+.table-view-pf-actions .dropdown-toggle {
+  border: none;
+  box-shadow: none;
+  height: 100%;
+  width: 100%;
+}
+.table-view-pf-actions .dropdown,
+.table-view-pf-actions .table-view-pf-btn {
+  height: 100%;
+}
+.table-view-pf-actions .dropdown-menu.dropdown-menu-right {
+  right: -5px;
+}
+.table-view-pf-actions:last-child {
+  width: 24px;
+}
+.table-view-pf-select {
+  width: 33px;
+}
+.table-view-pf-select-results {
+  text-align: right;
+}
+.bootstrap-datetimepicker-widget a[data-action] {
+  border: 0;
+  box-shadow: none;
+  color: #363636;
+  display: block;
+  padding-bottom: 4px;
+  padding-top: 4px;
+}
+.bootstrap-datetimepicker-widget a[data-action]:hover {
+  color: #0088ce;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu {
+  left: 0!important;
+  padding: 0;
+  width: calc(100% - 25px);
+}
+.bootstrap-datetimepicker-widget.dropdown-menu:before,
+.bootstrap-datetimepicker-widget.dropdown-menu:after {
+  content: none;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu.top {
+  margin-bottom: -1px;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu.bottom {
+  margin-top: -1px;
+}
+.bootstrap-datetimepicker-widget .timepicker-hour {
+  width: 100%;
+}
+.bootstrap-datetimepicker-widget .timepicker-hour:after {
+  content: ":";
+  float: right;
+}
+.timepicker-hours table td,
+.timepicker-minutes table td {
+  font-weight: bold;
+  line-height: 30px;
+  height: 30px;
+}
+.timepicker-hours table td:hover,
+.timepicker-minutes table td:hover {
+  color: #0088ce;
+}
+.timepicker-hours .table-condensed > tbody > tr > td,
+.timepicker-minutes .table-condensed > tbody > tr > td {
+  padding: 0;
+}
+.time-picker-pf .input-group-addon .fa,
+.time-picker-pf .input-group-addon .pficon {
+  width: 12px;
+}
+.time-picker-pf .input-group-addon:not(.active) {
+  box-shadow: none;
+}
+.timepicker-picker table td span,
+.timepicker-picker table td a span {
+  height: 24px;
+  line-height: 24px;
+  margin: 0;
+  width: 100%;
+}
+.timepicker-picker .table-condensed > tbody > tr > td {
+  height: 25px;
+  line-height: 18px;
+  padding: 0;
+}
+.timepicker-picker button[data-action] {
+  padding-bottom: 0;
+  padding-top: 0;
+}
+.timepicker-picker .separator {
+  display: none;
+}
+.timepicker-picker tr:nth-child(2) td {
+  background-color: #def3ff;
+  border-color: #bee1f4;
+  border-style: solid;
+  border-width: 1px;
+  border-left: 0;
+  border-right: 0;
+}
+.toast-pf {
+  background-color: #fff;
+  border-color: #bbb;
+  box-shadow: 0 2px 6px rgba(3, 3, 3, 0.2);
+  padding-left: 68px;
+  margin-bottom: 5px;
+  /* Medium devices (desktops, 992px and up) */
+}
+.toast-pf.alert-danger > .pficon {
+  background-color: #cc0000;
+}
+.toast-pf.alert-info > .pficon {
+  background-color: #8b8d8f;
+}
+.toast-pf.alert-success > .pficon {
+  background-color: #3f9c35;
+}
+.toast-pf.alert-warning > .pficon {
+  background-color: #ec7a08;
+}
+.toast-pf .dropdown-kebab-pf {
+  margin-left: 10px;
+}
+.toast-pf > .pficon {
+  background-color: #4d5258;
+  bottom: -1px;
+  box-shadow: 2px 0 5px -2px rgba(3, 3, 3, 0.2);
+  left: -1px;
+  padding-top: 10px;
+  text-align: center;
+  top: -1px;
+  width: 53px;
+}
+.toast-pf > .pficon:before {
+  color: rgba(255, 255, 255, 0.74);
+}
+.toast-pf .toast-pf-action {
+  margin-left: 15px;
+}
+.toast-pf .dropdown-kebab-pf .btn-link {
+  padding-top: 0;
+  padding-bottom: 0;
+  vertical-align: text-bottom;
+}
+@media (min-width: 992px) {
+  .toast-pf {
+    display: inline-block;
+  }
+}
+@media (min-width: 992px) {
+  .toast-pf-max-width {
+    max-width: 31.1%;
+  }
+}
+.toast-pf-top-right {
+  left: 20px;
+  position: absolute;
+  right: 20px;
+  top: 12px;
+  z-index: 1055;
+  /* Medium devices (desktops, 992px and up) */
+}
+@media (min-width: 992px) {
+  .toast-pf-top-right {
+    left: auto;
+  }
+}
+.toast-notifications-list-pf {
+  margin-left: 20px;
+  position: fixed;
+  right: 20px;
+  top: 80px;
+  z-index: 1055;
+}
+.toast-notifications-list-pf .toast-pf {
+  clear: both;
+  float: right;
+}
+@media (min-width: 768px) {
+  .toast-notifications-list-pf {
+    max-width: calc(50%);
+  }
+}
+@media (min-width: 992px) {
+  .toast-notifications-list-pf {
+    max-width: calc(33.1%);
+  }
+}
+.toolbar-pf {
+  background: #fff;
+  border-bottom: 1px solid #d1d1d1;
+  box-shadow: 0 1px 0px rgba(3, 3, 3, 0.045);
+  padding-top: 10px;
+}
+.toolbar-pf .form-group {
+  margin-bottom: 10px;
+}
+@media (min-width: 768px) {
+  .toolbar-pf .form-group {
+    border-right: 1px solid #d1d1d1;
+    float: left;
+    margin-bottom: 0;
+    padding-left: 20px;
+    padding-right: 20px;
+  }
+}
+.toolbar-pf .form-group:last-child {
+  border-right: 0;
+  margin-bottom: 0;
+  padding-right: 0;
+}
+.toolbar-pf .form-group .btn + .btn,
+.toolbar-pf .form-group .btn-group + .btn,
+.toolbar-pf .form-group .btn + .btn-group,
+.toolbar-pf .form-group .btn-group + .btn-group {
+  margin-left: 5px;
+}
+.toolbar-pf .form-group .btn + .btn-link,
+.toolbar-pf .form-group .btn-group + .btn-link,
+.toolbar-pf .form-group .btn + .dropdown,
+.toolbar-pf .form-group .btn-group + .dropdown {
+  margin-left: 10px;
+}
+.toolbar-pf .form-group .btn-link {
+  color: #252525;
+  font-size: 16px;
+  line-height: 1;
+  padding: 4px 0;
+}
+.toolbar-pf .form-group .btn-link:active,
+.toolbar-pf .form-group .btn-link:focus,
+.toolbar-pf .form-group .btn-link:hover {
+  color: #0088ce;
+}
+.toolbar-pf .form-group .dropdown-kebab-pf .btn-link {
+  padding: 4px 10px;
+  margin-left: -10px;
+  margin-right: -10px;
+}
+.toolbar-pf-actions {
+  display: table;
+  margin-bottom: 10px;
+  width: 100%;
+}
+@media (min-width: 768px) {
+  .toolbar-pf-actions .toolbar-pf-filter {
+    padding-left: 0;
+  }
+}
+.toolbar-pf-view-selector {
+  font-size: 16px;
+}
+.toolbar-pf-view-selector .btn-link.active {
+  color: #0088ce;
+  cursor: default;
+}
+.toolbar-pf-action-right {
+  float: right;
+}
+@media (max-width: 768px) {
+  .toolbar-pf-action-right {
+    float: none;
+  }
+}
+.toolbar-pf-find {
+  font-size: 14px;
+  position: relative;
+}
+.find-pf-dropdown-container {
+  background: #fff;
+  border: solid 1px #bbb;
+  display: none;
+  right: -20px;
+  padding: 5px;
+  position: absolute;
+  top: 35px;
+  width: 300px;
+  z-index: 10000;
+}
+@media (max-width: 768px) {
+  .find-pf-dropdown-container {
+    left: 30px;
+    top: -5px;
+    width: calc(100% - 30px);
+  }
+}
+.find-pf-dropdown-container:before,
+.find-pf-dropdown-container:after {
+  content: "";
+  position: absolute;
+}
+.find-pf-dropdown-container:before {
+  border-bottom: 11px solid #bbb;
+  border-left: 11px solid transparent;
+  border-right: 11px solid transparent;
+  right: 35px;
+  top: -12px;
+}
+.toolbar-pf-find:last-child .find-pf-dropdown-container:before {
+  right: 15px;
+}
+@media (max-width: 768px) {
+  .find-pf-dropdown-container:before {
+    border-bottom: 11px solid transparent;
+    border-right: 11px solid #bbb;
+    border-top: 11px solid transparent;
+    left: -22px;
+    right: initial;
+    top: 8px;
+  }
+}
+.find-pf-dropdown-container:after {
+  border-bottom: 10px solid #fff;
+  border-left: 10px solid transparent;
+  border-right: 10px solid transparent;
+  right: 36px;
+  top: -10px;
+}
+.toolbar-pf-find:last-child .find-pf-dropdown-container:after {
+  right: 16px;
+}
+@media (max-width: 768px) {
+  .find-pf-dropdown-container:after {
+    border-bottom: 10px solid transparent;
+    border-right: 10px solid #fff;
+    border-top: 10px solid transparent;
+    left: -20px;
+    right: initial;
+    top: 9px;
+  }
+}
+.find-pf-dropdown-container input {
+  height: 30px;
+  padding: 5px 117px 5px 5px;
+  width: 100%;
+}
+.find-pf-dropdown-container .find-pf-buttons {
+  position: absolute;
+  right: 10px;
+  top: 5px;
+}
+.find-pf-dropdown-container .find-pf-buttons .btn {
+  border: none;
+  cursor: pointer;
+  margin-left: 0 !important;
+  padding: 0;
+  width: 18px;
+}
+.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-up,
+.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-down {
+  font-weight: bold;
+  font-size: 18px;
+}
+.find-pf-dropdown-container .find-pf-buttons .btn .pficon-close {
+  font-size: 14px;
+}
+.find-pf-dropdown-container .find-pf-buttons span {
+  height: 30px;
+  line-height: 30px;
+  vertical-align: middle;
+}
+.find-pf-dropdown-container .find-pf-buttons .find-pf-nums {
+  color: #8b8d8f;
+  margin-right: 3px;
+}
+.toolbar-pf-results {
+  border-top: 1px solid #d1d1d1;
+  margin-top: 10px;
+}
+.toolbar-pf-results h5,
+.toolbar-pf-results p,
+.toolbar-pf-results ul {
+  display: inline-block;
+  line-height: 26.66666667px;
+  margin-bottom: 0;
+  margin-top: 0;
+}
+@media (min-width: 768px) {
+  .toolbar-pf-results h5,
+  .toolbar-pf-results p,
+  .toolbar-pf-results ul {
+    line-height: 40px;
+  }
+}
+.toolbar-pf-results h5 {
+  font-weight: 700;
+  margin-right: 20px;
+}
+.toolbar-pf-results .label {
+  font-size: 11px;
+}
+.toolbar-pf-results .label a {
+  color: #fff;
+  display: inline-block;
+  margin-left: 5px;
+}
+.nav-pf-vertical {
+  background: #292e34;
+  border-right: 1px solid #292e34;
+  bottom: 0;
+  left: 0;
+  overflow-x: hidden;
+  overflow-y: auto;
+  position: fixed;
+  top: 60px;
+  width: 200px;
+  z-index: 1030;
+}
+.layout-pf-fixed-with-footer .nav-pf-vertical {
+  bottom: 37px;
+}
+.ie9.layout-pf-fixed .nav-pf-vertical {
+  box-sizing: content-box;
+}
+.nav-pf-vertical.hidden.show-mobile-nav {
+  box-shadow: 0 0 3px rgba(3, 3, 3, 0.15);
+  display: block !important;
+}
+.nav-pf-vertical.hide-nav-pf {
+  visibility: hidden !important;
+}
+.nav-pf-vertical .list-group {
+  border-top: 0;
+  margin-bottom: 0;
+}
+.nav-pf-vertical .list-group-item {
+  background-color: transparent;
+  border-color: #030303;
+  padding: 0;
+}
+.nav-pf-vertical .list-group-item > a {
+  background-color: transparent;
+  color: #d1d1d1;
+  cursor: pointer;
+  display: block;
+  font-size: 14px;
+  font-weight: 400;
+  height: 63px;
+  line-height: 26px;
+  padding: 17px 20px 17px 25px;
+  position: relative;
+  white-space: nowrap;
+  width: 200px;
+}
+@supports (display: flex) {
+  .nav-pf-vertical .list-group-item > a {
+    display: flex;
+    padding-right: 0;
+  }
+}
+.nav-pf-vertical .list-group-item > a .fa,
+.nav-pf-vertical .list-group-item > a .glyphicon,
+.nav-pf-vertical .list-group-item > a .pficon {
+  color: #72767b;
+  float: left;
+  font-size: 20px;
+  line-height: 26px;
+  margin-right: 10px;
+  text-align: center;
+  width: 24px;
+}
+.nav-pf-vertical .list-group-item > a:hover {
+  text-decoration: none;
+}
+.nav-pf-vertical .list-group-item.active > a,
+.nav-pf-vertical .list-group-item:hover > a {
+  background-color: #393f44;
+  color: #fff;
+  font-weight: 600;
+}
+.nav-pf-vertical .list-group-item.active > a .fa,
+.nav-pf-vertical .list-group-item:hover > a .fa,
+.nav-pf-vertical .list-group-item.active > a .glyphicon,
+.nav-pf-vertical .list-group-item:hover > a .glyphicon,
+.nav-pf-vertical .list-group-item.active > a .pficon,
+.nav-pf-vertical .list-group-item:hover > a .pficon {
+  color: #39a5dc;
+}
+.nav-pf-vertical .list-group-item.active > a:before {
+  background: #39a5dc;
+  content: " ";
+  height: 100%;
+  left: 0;
+  position: absolute;
+  top: 0;
+  width: 3px;
+}
+.nav-pf-vertical .list-group-item.active:hover {
+  background-color: transparent;
+  border-color: #030303;
+}
+.nav-pf-vertical .list-group-item .list-group-item-value {
+  display: block;
+  line-height: 25px;
+  max-width: 120px;
+  overflow: hidden;
+  text-overflow: ellipsis;
+}
+@supports (display: flex) {
+  .nav-pf-vertical .list-group-item .list-group-item-value {
+    flex: 1;
+    max-width: none;
+    padding-right: 15px;
+  }
+}
+.nav-pf-vertical .list-group-item-separator {
+  border-top-color: #030303;
+  border-top-width: 2px;
+}
+.nav-pf-vertical.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.nav-pf-vertical.nav-pf-vertical-with-badges .list-group-item > a {
+  width: 250px;
+}
+.nav-pf-vertical h5 {
+  color: #fff;
+  cursor: default;
+  font-size: 13px;
+  font-weight: 600;
+  margin: 30px 20px 10px 20px;
+}
+.nav-pf-vertical.hidden-icons-pf > .list-group > .list-group-item > a .fa,
+.nav-pf-vertical.hidden-icons-pf > .list-group > .list-group-item > a .glyphicon,
+.nav-pf-vertical.hidden-icons-pf > .list-group > .list-group-item > a .pficon {
+  display: none;
+}
+.nav-pf-vertical.hidden-icons-pf.collapsed {
+  display: none;
+}
+.nav-pf-vertical .badge-container-pf {
+  position: absolute;
+  right: 15px;
+  top: 20px;
+}
+@supports (display: flex) {
+  .nav-pf-vertical .badge-container-pf {
+    padding-left: 0;
+    padding-right: 15px;
+    position: relative;
+    right: 0;
+    margin-top: -3px;
+    top: 5px;
+  }
+}
+.nav-pf-vertical .badge-container-pf .badge {
+  background: #292e34;
+  color: #fff;
+  float: left;
+  font-size: 12px;
+  font-weight: 700;
+  line-height: 1.66666667;
+  margin: 0;
+  padding: 0 7px;
+  text-align: center;
+}
+.nav-pf-vertical .badge-container-pf .badge .pficon,
+.nav-pf-vertical .badge-container-pf .badge .fa {
+  font-size: 14px;
+  height: 20px;
+  line-height: 1.66666667;
+  margin-right: 3px;
+  margin-top: -1px;
+}
+.nav-pf-vertical-tooltip.tooltip {
+  margin-left: 15px;
+}
+.nav-pf-vertical-tooltip.tooltip .tooltip-inner {
+  background-color: #fff;
+  color: #292e34;
+}
+.nav-pf-vertical-tooltip.tooltip .tooltip-arrow {
+  border-bottom-color: #fff;
+  left: calc(50% - 15px) !important;
+}
+.hover-secondary-nav-pf {
+  width: calc(200px * 2);
+}
+.hover-secondary-nav-pf.nav-pf-vertical-with-badges {
+  width: calc(250px * 2);
+}
+.hover-tertiary-nav-pf {
+  width: calc(200px * 3);
+}
+.hover-tertiary-nav-pf.nav-pf-vertical-with-badges {
+  width: calc(250px * 3);
+}
+.hover-tertiary-nav-pf .nav-pf-secondary-nav {
+  width: calc(200px * 2);
+}
+.hover-tertiary-nav-pf .nav-pf-secondary-nav .collapsed-tertiary-nav-pf {
+  width: 200px;
+}
+.hover-tertiary-nav-pf .nav-pf-tertiary-nav {
+  left: calc(200px * 2);
+}
+.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav {
+  width: calc(250px * 2);
+}
+.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav .collapsed-tertiary-nav-pf {
+  width: 250px;
+}
+.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav {
+  left: calc(250px * 2);
+}
+.nav-pf-vertical.collapsed {
+  width: 75px;
+}
+.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf {
+  width: 200px;
+}
+.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf {
+  width: 200px;
+}
+.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.nav-pf-vertical.collapsed.hover-secondary-nav-pf {
+  width: calc(75px + 200px);
+}
+.nav-pf-vertical.collapsed.hover-secondary-nav-pf.nav-pf-vertical-with-badges {
+  width: calc(75px + 250px);
+}
+.nav-pf-vertical.collapsed.hover-tertiary-nav-pf {
+  width: calc(75px + (200px * 2));
+}
+.nav-pf-vertical.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges {
+  width: calc(75px + (250px * 2));
+}
+.show-mobile-nav.show-mobile-secondary {
+  width: 200px;
+}
+.show-mobile-nav.show-mobile-secondary.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.show-mobile-nav.show-mobile-tertiary {
+  width: 200px;
+}
+.show-mobile-nav.show-mobile-tertiary.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.show-mobile-nav .mobile-nav-item-pf .nav-pf-secondary-nav,
+.show-mobile-nav .mobile-secondary-item-pf .nav-pf-secondary-nav {
+  left: 0;
+  opacity: 1;
+  visibility: visible;
+  z-index: 1034;
+}
+.show-mobile-nav .mobile-nav-item-pf > .nav-pf-tertiary-nav,
+.show-mobile-nav .mobile-secondary-item-pf > .nav-pf-tertiary-nav {
+  left: 0;
+  opacity: 1;
+  visibility: visible;
+  z-index: 1038;
+}
+.show-mobile-nav .nav-pf-secondary-nav {
+  left: 0;
+}
+.secondary-nav-item-pf:hover .show-mobile-nav .nav-pf-secondary-nav {
+  opacity: 0;
+  visibility: hidden;
+}
+.show-mobile-nav .tertiary-nav-item-pf:hover .nav-pf-tertiary-nav {
+  opacity: 0;
+  visibility: hidden;
+}
+.show-mobile-nav .tertiary-nav-item-pf.mobile-nav-item-pf:hover .nav-pf-tertiary-nav {
+  opacity: 1;
+  visibility: visible;
+}
+.secondary-nav-item-pf > a {
+  cursor: default;
+}
+.secondary-nav-item-pf > a:after {
+  color: #72767b;
+  content: "\f105";
+  display: block;
+  font-family: "FontAwesome";
+  font-size: 24px;
+  line-height: 30px;
+  padding: 14px 0;
+  position: absolute;
+  right: 20px;
+  top: 0;
+}
+@supports (display: flex) {
+  .secondary-nav-item-pf > a .list-group-item-value {
+    padding-right: 35px;
+  }
+}
+.secondary-nav-item-pf.active > a,
+.secondary-nav-item-pf:hover > a {
+  width: calc(200px + 1px);
+  z-index: 1031;
+}
+.secondary-nav-item-pf.active > a:after,
+.secondary-nav-item-pf:hover > a:after {
+  right: 21px;
+}
+.collapsed-secondary-nav-pf .secondary-nav-item-pf.active > a,
+.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover > a {
+  z-index: 0;
+}
+.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active > a,
+.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover > a {
+  z-index: 0;
+}
+.nav-pf-vertical-with-badges .secondary-nav-item-pf.active > a,
+.nav-pf-vertical-with-badges .secondary-nav-item-pf:hover > a {
+  width: calc(250px + 1px);
+}
+.nav-pf-vertical.collapsed-secondary-nav-pf {
+  width: 200px;
+}
+.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.active > a,
+.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.hover > a {
+  z-index: 1030;
+}
+.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf {
+  width: 200px;
+}
+.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-secondary-nav {
+  left: 0;
+}
+.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-tertiary-nav {
+  left: 200px;
+}
+.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav {
+  left: 250px;
+}
+.nav-pf-vertical.collapsed-tertiary-nav-pf {
+  width: 200px;
+}
+.nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav {
+  width: 200px;
+}
+.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active > a,
+.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active > a,
+.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.hover > a,
+.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.hover > a {
+  z-index: 0;
+}
+@media (min-width: 1200px) {
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf {
+    width: calc(200px * 2);
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges {
+    width: calc(250px * 2);
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf {
+    width: 200px;
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges {
+    width: 250px;
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf {
+    width: calc(200px * 2);
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges {
+    width: calc(250px * 2);
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf {
+    width: 200px;
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges {
+    width: 250px;
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed {
+    width: calc(75px + 200px);
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf {
+    width: 200px;
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges {
+    width: 250px;
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf {
+    width: 200px;
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges {
+    width: 250px;
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf {
+    width: calc(75px + (200px * 2));
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges {
+    width: calc(75px + (250px * 2));
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf {
+    width: calc(200px * 3);
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges {
+    width: calc(250px * 3);
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav {
+    visibility: visible;
+    opacity: 1;
+  }
+}
+.nav-item-pf-header {
+  color: #fff;
+  font-size: 16px;
+  margin: 18px 20px 10px 20px;
+}
+.nav-item-pf-header > a {
+  cursor: pointer;
+  margin-right: 7px;
+}
+.nav-item-pf-header > a:hover,
+.nav-item-pf-header > a:focus {
+  color: #0088ce;
+  text-decoration: none;
+}
+.nav-pf-vertical.collapsed {
+  width: 75px;
+}
+.nav-pf-vertical.collapsed .list-group-item > a {
+  width: 75px;
+}
+.nav-pf-vertical.collapsed .list-group-item > a > .list-group-item-value {
+  display: none;
+}
+.nav-pf-vertical.collapsed .list-group-item > a > .badge-container-pf {
+  display: none;
+}
+.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active > a,
+.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf > a {
+  width: 75px;
+}
+.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active > a:after,
+.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf > a:after {
+  right: 10px;
+}
+.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active > a,
+.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover > a {
+  width: 77px;
+}
+.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active > a:after,
+.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover > a:after {
+  right: 11px;
+}
+.nav-pf-secondary-nav {
+  background: #393f44;
+  border: 1px solid #292e34;
+  border-bottom: none;
+  border-top: none;
+  bottom: 0;
+  display: block;
+  left: 200px;
+  opacity: 0;
+  overflow-x: hidden;
+  overflow-y: auto;
+  position: fixed;
+  top: 60px;
+  visibility: hidden;
+  width: 200px;
+  z-index: 1030;
+}
+.collapsed-secondary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav {
+  left: 0;
+  opacity: 1;
+  visibility: visible;
+  z-index: 1032;
+}
+.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav {
+  left: 0;
+  opacity: 1;
+  visibility: visible;
+}
+.hover-secondary-nav-pf .secondary-nav-item-pf.is-hover .nav-pf-secondary-nav {
+  opacity: 1;
+  visibility: visible;
+}
+.ie9.layout-pf-fixed .nav-pf-secondary-nav {
+  box-sizing: content-box;
+}
+.layout-pf-fixed-with-footer .nav-pf-secondary-nav {
+  bottom: 37px;
+}
+.nav-pf-secondary-nav .list-group-item {
+  border: none;
+  padding: 0 0 5px 0;
+  width: 200px;
+}
+.nav-pf-secondary-nav .list-group-item > a {
+  background-color: #393f44;
+  color: #d1d1d1;
+  font-size: 12px;
+  font-weight: inherit;
+  height: inherit;
+  padding: 4px 0 2px 0;
+  margin-left: 20px;
+  width: calc(200px - 20px);
+}
+.nav-pf-secondary-nav .list-group-item > a:hover .list-group-item-value {
+  text-decoration: underline;
+}
+.nav-pf-secondary-nav .list-group-item.active > a:before {
+  display: none;
+}
+.nav-pf-secondary-nav .list-group-item.active > a,
+.nav-pf-secondary-nav .list-group-item:hover > a {
+  background-color: #4d5258;
+  color: #fff;
+}
+.nav-pf-secondary-nav .list-group-item .badge-container-pf {
+  top: 5px;
+}
+.nav-pf-secondary-nav .list-group-item .badge-container-pf .badge {
+  background: #292e34;
+  color: #fff;
+}
+.nav-pf-secondary-nav .list-group-item .list-group-item-value {
+  padding-left: 5px;
+}
+.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf > a {
+  cursor: default;
+}
+.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf > a:after {
+  color: #72767b;
+  content: "\f105";
+  display: block;
+  font-family: "FontAwesome";
+  font-size: 20px;
+  line-height: 20px;
+  padding: 0;
+  position: absolute;
+  right: 20px;
+  top: 4px;
+}
+@supports (display: flex) {
+  .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf > a .list-group-item-value {
+    padding-right: 35px;
+  }
+}
+.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active > a,
+.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover > a {
+  width: calc(200px - 19px);
+  z-index: 1033;
+}
+.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active > a:after,
+.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover > a:after {
+  right: 21px;
+}
+.nav-pf-vertical-with-badges .nav-pf-secondary-nav {
+  left: 250px;
+  width: 250px;
+}
+.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item {
+  width: 250px;
+}
+.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item > a {
+  width: calc(250px - 20px);
+}
+.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active > a,
+.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover > a {
+  width: calc(250px - 19px);
+}
+.nav-pf-tertiary-nav {
+  background: #4d5258;
+  border: 1px solid #292e34;
+  border-bottom: none;
+  border-top: none;
+  bottom: 0;
+  display: block;
+  left: calc(200px * 2);
+  opacity: 0;
+  overflow-x: hidden;
+  overflow-y: auto;
+  position: fixed;
+  top: 60px;
+  visibility: hidden;
+  width: 200px;
+  z-index: 1030;
+}
+.nav-pf-vertical-with-badges .nav-pf-tertiary-nav {
+  left: 250px;
+  width: 250px;
+}
+.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .show-mobile-nav {
+  left: 0;
+}
+.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active .nav-pf-tertiary-nav {
+  left: 0;
+  opacity: 1;
+  visibility: visible;
+  z-index: 1033;
+}
+.hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav {
+  opacity: 1;
+  visibility: visible;
+}
+.collapsed.collapsed-tertiary-nav-pf .hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav {
+  left: 0;
+}
+.ie9.layout-pf-fixed .nav-pf-tertiary-nav {
+  box-sizing: content-box;
+}
+.layout-pf-fixed-with-footer .nav-pf-tertiary-nav {
+  bottom: 37px;
+}
+.nav-pf-tertiary-nav .nav-item-pf-header {
+  color: #fff;
+  margin: 18px 20px 10px 20px;
+}
+.nav-pf-tertiary-nav h5 {
+  color: #fff;
+  margin: 30px 20px 10px 20px;
+}
+.nav-pf-tertiary-nav .list-group-item {
+  border: none;
+  padding: 0 0 5px 0;
+}
+.nav-pf-tertiary-nav .list-group-item > a {
+  background-color: transparent;
+  color: #d1d1d1;
+  font-size: 12px;
+  font-weight: inherit;
+  height: inherit;
+  margin: 0 20px 0 20px;
+  padding: 4px 0 2px 0;
+}
+.nav-pf-tertiary-nav .list-group-item.active > a:before {
+  display: none;
+}
+.nav-pf-tertiary-nav .list-group-item.active > a,
+.nav-pf-tertiary-nav .list-group-item:hover > a {
+  background-color: #393f44;
+  color: #fff;
+}
+.nav-pf-tertiary-nav .list-group-item .badge-container-pf {
+  top: 5px;
+}
+.nav-pf-tertiary-nav .list-group-item .badge-container-pf .badge {
+  background: #292e34;
+  color: #fff;
+}
+.nav-pf-tertiary-nav .list-group-item .list-group-item-value {
+  padding-left: 5px;
+}
+.collapsed .nav-pf-secondary-nav {
+  left: 75px;
+}
+.collapsed .nav-pf-secondary-nav .list-group-item > a {
+  width: calc(200px - 20px);
+}
+.collapsed .nav-pf-secondary-nav .list-group-item > a > .list-group-item-value {
+  display: inline-block;
+}
+.collapsed .nav-pf-secondary-nav .list-group-item > a > .badge-container-pf {
+  display: inline-block;
+}
+.collapsed .nav-pf-tertiary-nav {
+  left: calc(75px + 200px);
+}
+.collapsed .nav-pf-tertiary-nav .list-group-item > a {
+  width: calc(200px - 20px);
+}
+.collapsed .nav-pf-tertiary-nav .list-group-item > a > .list-group-item-value {
+  display: inline-block;
+}
+.collapsed .nav-pf-tertiary-nav .list-group-item > a > .badge-container-pf {
+  display: inline-block;
+}
+.collapsed.collapsed-secondary-nav-pf,
+.collapsed.collapsed-tertiary-nav-pf {
+  width: 200px;
+}
+.collapsed.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover > a,
+.collapsed.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover > a {
+  z-index: 1030;
+}
+.collapsed.collapsed-secondary-nav-pf .nav-pf-secondary-nav,
+.collapsed.collapsed-tertiary-nav-pf .nav-pf-secondary-nav {
+  left: 0;
+}
+.collapsed.collapsed-secondary-nav-pf .nav-pf-tertiary-nav {
+  left: 200px;
+}
+.collapsed.collapsed-tertiary-nav-pf .nav-pf-tertiary-nav {
+  left: 0;
+}
+.collapsed.hover-secondary-nav-pf {
+  width: calc(75px + 200px);
+}
+.collapsed.hover-secondary-nav-pf.collapsed-secondary-nav-pf,
+.collapsed.hover-secondary-nav-pf.collapsed-tertiary-nav-pf {
+  width: 200px;
+}
+.collapsed.hover-tertiary-nav-pf {
+  width: calc(75px + (200px * 2));
+}
+.collapsed.hover-tertiary-nav-pf.collapsed-secondary-nav-pf {
+  width: calc(200px * 2);
+}
+.collapsed.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf {
+  width: 200px;
+}
+.collapsed.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item > a {
+  width: calc(250px - 20px);
+}
+.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav {
+  left: calc(75px + 250px);
+}
+.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .list-group-item > a {
+  width: calc(250px - 20px);
+}
+.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf,
+.collapsed.nav-pf-vertical-with-badges.collapsed-tertiary-nav-pf {
+  width: 250px;
+}
+.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf .nav-pf-tertiary-nav {
+  left: 250px;
+}
+.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf {
+  width: calc(75px + 250px);
+}
+.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-secondary-nav-pf,
+.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-tertiary-nav-pf {
+  width: 250px;
+}
+.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf {
+  width: calc(75px + (200px * 2));
+}
+.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-secondary-nav-pf {
+  width: calc(200px * 2);
+}
+.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf {
+  width: 200px;
+}
+.secondary-collapse-toggle-pf {
+  display: none;
+  font-family: "FontAwesome";
+  font-size: inherit;
+  opacity: 0;
+  pointer-events: none;
+  -webkit-font-smoothing: antialiased;
+}
+.secondary-collapse-toggle-pf:before {
+  content: "\f190";
+}
+.secondary-collapse-toggle-pf.collapsed:before {
+  content: "\f18e";
+}
+.tertiary-collapse-toggle-pf {
+  display: none;
+  font-family: "FontAwesome";
+  font-size: inherit;
+  opacity: 0;
+  pointer-events: none;
+  -webkit-font-smoothing: antialiased;
+}
+.tertiary-collapse-toggle-pf:before {
+  content: "\f190";
+}
+.tertiary-collapse-toggle-pf.collapsed:before {
+  content: "\f18e";
+}
+.nav-pf-vertical-collapsible-menus .secondary-collapse-toggle-pf {
+  display: inline-block;
+}
+.nav-pf-vertical-collapsible-menus .secondary-nav-item-pf.active .secondary-collapse-toggle-pf {
+  opacity: 1;
+  pointer-events: all;
+}
+.nav-pf-vertical-collapsible-menus .tertiary-collapse-toggle-pf {
+  display: inline-block;
+}
+.nav-pf-vertical-collapsible-menus .tertiary-nav-item-pf.active .tertiary-collapse-toggle-pf {
+  opacity: 1;
+  pointer-events: all;
+}
+.show-mobile-nav .secondary-collapse-toggle-pf {
+  display: inline-block;
+  opacity: 1;
+  pointer-events: all;
+}
+.show-mobile-nav .secondary-collapse-toggle-pf:before {
+  content: "\f190";
+}
+.show-mobile-nav .tertiary-collapse-toggle-pf {
+  display: inline-block;
+  opacity: 1;
+  pointer-events: all;
+}
+.show-mobile-nav .tertiary-collapse-toggle-pf:before {
+  content: "\f190";
+}
+.force-hide-secondary-nav-pf .nav-pf-secondary-nav {
+  display: none !important;
+}
+.force-hide-secondary-nav-pf .nav-pf-tertiary-nav {
+  display: none !important;
+}
+.nav-pf-vertical.transitions {
+  transition: width 100ms;
+}
+.nav-pf-vertical.transitions .nav-pf-secondary-nav {
+  transition: visibility 100ms, opacity 100ms linear;
+}
+.nav-pf-vertical.transitions .nav-pf-tertiary-nav {
+  transition: visibility 100ms, opacity 100ms linear;
+}
+.wizard-pf {
+  padding: 10px;
+  margin: 0 auto;
+  max-height: 900px;
+  width: auto;
+}
+.wizard-pf .modal-content {
+  min-height: 100%;
+}
+.wizard-pf-body {
+  background: #fff;
+  padding: 0;
+  position: static;
+}
+/* styles the sidebard containing the sub-steps */
+.wizard-pf-sidebar {
+  background: #fafafa;
+  border-right: 1px solid #d1d1d1;
+  display: none;
+}
+@media (min-width: 768px) {
+  .wizard-pf-sidebar {
+    display: inherit;
+    flex: 0 0 auto;
+    overflow-x: hidden;
+    overflow-y: auto;
+  }
+  .wizard-pf-sidebar .list-group {
+    border-top: 0;
+    margin-bottom: 0;
+  }
+  .wizard-pf-sidebar .list-group-item {
+    background-color: transparent;
+    border-color: #ededed;
+    padding: 0;
+  }
+  .wizard-pf-sidebar .list-group-item > a {
+    color: #030303;
+    cursor: pointer;
+    display: block;
+    font-size: 14px;
+    font-weight: 700;
+    height: 50px;
+    outline: 0;
+    padding-top: 11px;
+    padding-left: 20px;
+    position: relative;
+    white-space: nowrap;
+    width: 14em;
+  }
+  .wizard-pf-sidebar .list-group-item > a:hover {
+    text-decoration: none;
+    background-color: #ededed;
+  }
+  .wizard-pf-sidebar .list-group-item > a:focus {
+    text-decoration: none;
+  }
+  .wizard-pf-sidebar .list-group-item > a:focus span {
+    text-decoration: underline;
+  }
+  .wizard-pf-sidebar .list-group-item.active {
+    background-color: #ededed;
+  }
+  .wizard-pf-sidebar .list-group-item.active:hover {
+    border-color: #ededed;
+  }
+  .wizard-pf-sidebar .list-group-item.active > a {
+    color: #39a5dc;
+    cursor: default;
+  }
+  .wizard-pf-sidebar .list-group-item.active > a:before {
+    content: " ";
+    background: #39a5dc;
+    height: 100%;
+    left: 0;
+    position: absolute;
+    top: 0;
+    width: 3px;
+  }
+  .wizard-pf-sidebar .list-group-item.active > a:after {
+    color: #39a5dc;
+    content: "\f105";
+    display: block;
+    font-family: FontAwesome;
+    font-size: 24px;
+    font-weight: 500;
+    line-height: 30px;
+    padding-top: 10px;
+    position: absolute;
+    right: 23px;
+    top: 0;
+  }
+}
+.wizard-pf-substep-number {
+  display: inline-block;
+  margin-right: 5px;
+  vertical-align: middle;
+  width: 25px;
+}
+.wizard-pf-substep-title {
+  display: inline-block;
+  margin-right: 5px;
+  text-align: left;
+  vertical-align: middle;
+}
+/* styles the steps indicator across the top of the wizard */
+.wizard-pf-steps {
+  border-bottom: solid 1px #d1d1d1;
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps {
+    text-align: center;
+  }
+}
+.wizard-pf-steps-indicator {
+  background: #ededed;
+  border-top: 1px solid #d1d1d1;
+  display: inline-block;
+  display: flex;
+  font-size: 16px;
+  list-style: none;
+  margin-bottom: 0;
+  padding: 15px 0;
+  /* draw the step number in the circle */
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps-indicator {
+    background: #fff;
+    height: 120px;
+    padding: 38px 0 0;
+    justify-content: space-around;
+  }
+}
+.wizard-pf-steps-indicator li {
+  counter-increment: section;
+  float: left;
+  /* float for IE9 since it doesn't support flex. If items wrap, they overlap */
+  flex-grow: 1;
+  flex-basis: 0;
+  line-height: 15px;
+  margin: 0;
+  padding: 0;
+  position: relative;
+  text-align: center;
+  /* draw the line between the circles */
+}
+.wizard-pf-steps-indicator li:not(.active) {
+  display: none;
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps-indicator li:not(.active) {
+    display: block;
+  }
+}
+.wizard-pf-steps-indicator li a {
+  align-items: center;
+  display: flex;
+  flex-wrap: wrap;
+  font-weight: 700;
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps-indicator li a {
+    font-weight: normal;
+    justify-content: center;
+  }
+}
+.wizard-pf-steps-indicator li a .wizard-pf-step-title {
+  margin-left: 10px;
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps-indicator li a .wizard-pf-step-title {
+    margin-left: 0;
+  }
+}
+.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep {
+  font-weight: normal;
+  margin-left: 10px;
+  text-transform: capitalize;
+}
+.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:before {
+  content: "\00BB";
+  font-size: 20px;
+  margin-right: 10px;
+}
+.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:not(.active) {
+  display: none;
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps-indicator li {
+    /* don't draw the line between the circles on the ends */
+  }
+  .wizard-pf-steps-indicator li .wizard-pf-step-title-substep {
+    display: none;
+  }
+  .wizard-pf-steps-indicator li:before {
+    background-color: #bbb;
+    content: "";
+    height: 2px;
+    left: 0;
+    position: absolute;
+    right: 0;
+    top: 40px;
+  }
+  .wizard-pf-steps-indicator li:first-child:before {
+    left: 50%;
+    right: 0;
+  }
+  .wizard-pf-steps-indicator li:last-child:before {
+    left: 0;
+    right: 50%;
+  }
+  .wizard-pf-steps-indicator li:only-of-type:before {
+    background-color: transparent;
+  }
+}
+.wizard-pf-steps-indicator li a {
+  color: #030303;
+  cursor: pointer;
+  font-size: 16px;
+  margin-left: 1em;
+  margin-right: 1em;
+  text-decoration: none;
+}
+.wizard-pf-steps-indicator li a:hover .wizard-pf-step-number {
+  background-color: #bbb;
+  border-color: #bbb;
+  color: #fff;
+}
+.wizard-pf-steps-indicator .wizard-pf-step-number {
+  background-color: #fff;
+  border-radius: 50%;
+  border: solid 2px #bbb;
+  color: #bbb;
+  font-size: 12px;
+  font-weight: 700;
+  height: 25px;
+  line-height: 22px;
+  width: 25px;
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps-indicator .wizard-pf-step-number {
+    left: calc(50% - 13px);
+    position: absolute;
+    top: 27px;
+  }
+}
+.wizard-pf-steps-indicator .active .wizard-pf-step-number {
+  background-color: #39a5dc;
+  border-color: #39a5dc;
+  cursor: default;
+  color: #fff;
+}
+.wizard-pf-steps-indicator .viewed-pf .wizard-pf-step-number {
+  color: #030303;
+  background-color: #fff;
+  border-color: #39a5dc;
+}
+/* styles the main content portion of the wizard */
+.wizard-pf-main {
+  height: 100%;
+  padding: 1em;
+  vertical-align: top;
+  width: 100%;
+}
+@media (min-width: 768px) {
+  .wizard-pf-main {
+    overflow: auto;
+    padding: 3em;
+    flex: 1 1 auto;
+  }
+}
+.wizard-pf-main .blank-slate-pf {
+  background-color: transparent;
+  border: none;
+  left: 0;
+  right: 0;
+}
+.wizard-pf-contents textarea {
+  resize: vertical;
+}
+/* styles the content of a review page */
+.wizard-pf-review-steps {
+  list-style: none;
+}
+.wizard-pf-review-steps .list-group,
+.wizard-pf-review-steps .list-group-item {
+  border: none;
+  margin-bottom: 0;
+}
+.wizard-pf-review-steps > ul > li {
+  float: left;
+  line-height: 15px;
+  margin: 0;
+  padding-top: 0;
+  position: relative;
+  width: 100%;
+}
+.wizard-pf-review-steps > ul > li > a {
+  color: #030303;
+  cursor: pointer;
+  font-size: 16px;
+  padding-left: 30px;
+  padding-right: 5px;
+  text-decoration: none;
+  transition: 250ms;
+}
+.wizard-pf-review-steps > ul > li > a:before {
+  content: "\f107";
+  display: block;
+  font-family: FontAwesome;
+  font-size: 24px;
+  font-weight: 500;
+  left: 20px;
+  position: absolute;
+  top: 0;
+}
+.wizard-pf-review-steps > ul > li > a.collapsed:before {
+  content: "\f105";
+}
+.wizard-pf-review-substeps {
+  padding-left: 22px;
+}
+.wizard-pf-review-substeps > ul > li {
+  float: left;
+  line-height: 15px;
+  margin: 0;
+  position: relative;
+  width: 100%;
+}
+.wizard-pf-review-substeps > ul > li a {
+  color: #030303;
+  cursor: pointer;
+  font-size: 16px;
+  padding-left: 30px;
+  padding-right: 5px;
+  text-decoration: none;
+  transition: 250ms;
+}
+.wizard-pf-review-substeps > ul > li a:before {
+  content: "\f107";
+  display: block;
+  font-family: FontAwesome;
+  font-size: 24px;
+  font-weight: 500;
+  left: 20px;
+  position: absolute;
+  top: 10px;
+}
+.wizard-pf-review-substeps > ul > li a.collapsed:before {
+  content: "\f105";
+}
+.wizard-pf-review-content {
+  padding-top: 10px;
+  padding-left: 40px;
+}
+.wizard-pf-review-content .wizard-pf-review-item {
+  padding: 5px 0;
+}
+.wizard-pf-review-content .wizard-pf-review-item.sub-item {
+  margin-left: 10px;
+}
+.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-label {
+  font-weight: 700;
+  padding-right: 10px;
+}
+.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field {
+  font-weight: 700;
+  margin: 5px 0;
+  padding-right: 10px;
+}
+.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:first-of-type {
+  margin-top: 0;
+}
+.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:last-of-type {
+  margin-bottom: 0;
+}
+.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field.sub-field {
+  margin-left: 10px;
+}
+.wizard-pf-success-icon {
+  color: #3f9c35;
+  font-size: 67.2px;
+  line-height: 67.2px;
+}
+/* styles the footer */
+.wizard-pf-footer {
+  background: #fff;
+  border-top: 1px solid #d1d1d1;
+  margin-top: 0;
+  padding-bottom: 17px;
+}
+.wizard-pf-footer .btn-cancel {
+  margin-right: 25px;
+}
+@media (min-width: 768px) {
+  .wizard-pf-row {
+    display: flex;
+    width: 100%;
+    height: 900px;
+    max-height: 65vh;
+  }
+}
+@media (min-width: 992px) {
+  .wizard-pf {
+    padding: 30px 0;
+    width: 900px;
+  }
+  .wizard-pf-sidebar .list-group-item > a {
+    width: 18em;
+  }
+}
+.wizard-pf-steps-alt,
+.wizard-pf-steps-alt ul {
+  list-style: none;
+  margin: 0;
+  padding: 0;
+}
+.wizard-pf-steps-alt {
+  margin-left: 15px;
+  margin-top: 15px;
+  background-image: linear-gradient(to right, transparent 11px, #d1d1d1 11px, #d1d1d1 13px, transparent 13px);
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps-alt {
+    display: none;
+  }
+}
+.wizard-pf-steps-alt-indicator {
+  position: relative;
+}
+.wizard-pf-steps-alt-indicator:after {
+  color: #4d5258;
+  content: "\f107";
+  display: block;
+  font-family: FontAwesome;
+  font-size: 24px;
+  font-weight: 500;
+  position: absolute;
+  right: 17px;
+  top: 50%;
+  transform: translateY(-50%);
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps-alt-indicator:after {
+    display: none;
+  }
+}
+.wizard-pf-steps-alt-indicator.active:after {
+  content: "\f106";
+}
+.wizard-pf-step-alt {
+  margin-bottom: 10px;
+}
+.wizard-pf-step-alt a {
+  display: flex;
+  flex: 1;
+}
+.wizard-pf-step-alt a:hover {
+  text-decoration: none;
+}
+.wizard-pf-step-alt a:hover .wizard-pf-step-alt-title {
+  color: #39a5dc;
+}
+.wizard-pf-step-alt ul {
+  margin-left: 11px;
+}
+.wizard-pf-step-alt .wizard-pf-step-alt-title {
+  margin-left: 5px;
+  align-self: center;
+}
+.wizard-pf-step-alt .wizard-pf-step-alt-number {
+  flex: 0 0 auto;
+}
+.wizard-pf-step-alt.active .wizard-pf-step-alt-number {
+  background-color: #39a5dc;
+  border-color: #39a5dc;
+  cursor: default;
+  color: #fff;
+}
+.wizard-pf-step-alt.active .wizard-pf-step-alt-title {
+  color: #39a5dc;
+}
+.wizard-pf-step-alt.active .wizard-pf-step-alt-substep:first-of-type {
+  margin-top: 2px;
+}
+.wizard-pf-step-alt.viewed .wizard-pf-step-alt-number {
+  color: #030303;
+  background-color: #fff;
+  border-color: #39a5dc;
+}
+.wizard-pf-step-alt-number {
+  background-color: #fff;
+  border-radius: 50%;
+  border: solid 2px #bbb;
+  color: #bbb;
+  font-size: 12px;
+  font-weight: 700;
+  height: 24px;
+  width: 24px;
+  display: inline-block;
+  text-align: center;
+}
+.wizard-pf-step-alt-title {
+  color: #030303;
+  font-weight: 700;
+  text-transform: capitalize;
+  display: inline-block;
+}
+.wizard-pf-step-alt-substep {
+  display: flex;
+}
+.wizard-pf-step-alt-substep a {
+  padding: 5px 0 5px 18px;
+  color: #393f44;
+}
+.wizard-pf-step-alt-substep:not(.disabled).active,
+.wizard-pf-step-alt-substep:not(.disabled):hover {
+  background-color: #ededed;
+  background-image: linear-gradient(to right, #39a5dc 2px, transparent 2px);
+}
+.wizard-pf-step-alt-substep:not(.disabled).active a,
+.wizard-pf-step-alt-substep:not(.disabled):hover a {
+  color: #39a5dc;
+}
+.wizard-pf-step-alt-substep.active a {
+  font-weight: 700;
+}
+.wizard-pf-step-alt-substep.disabled {
+  cursor: not-allowed;
+}
+.wizard-pf-step-alt-substep.disabled a {
+  pointer-events: none;
+}
+/* RCUE-specific */
+.login-pf {
+  background-color: #1a1a1a;
+}
+@media (min-width: 768px) {
+  .login-pf {
+    background-image: url("../img/bg-login-2.png");
+    background-position: 100% 100%;
+    background-repeat: no-repeat;
+    background-size: 30%;
+  }
+}
+@media (min-width: 992px) {
+  .login-pf {
+    background-size: auto;
+  }
+}
+.login-pf #badge {
+  margin-bottom: 50px;
+}
+.login-pf body {
+  background: transparent;
+}
+@media (min-width: 768px) {
+  .login-pf body {
+    background-image: url("../img/bg-login.png");
+    background-repeat: no-repeat;
+    background-size: 30%;
+    height: 100%;
+  }
+}
+@media (min-width: 992px) {
+  .login-pf body {
+    background-size: auto;
+  }
+}
+.login-pf #brand {
+  top: -30px;
+}
+@media (min-width: 768px) {
+  .login-pf #brand {
+    top: -40px;
+  }
+  .login-pf #brand + .alert {
+    margin-top: -20px;
+  }
+}
+.login-pf .container {
+  padding-top: 0;
+}
+@media (min-width: 992px) {
+  .login-pf .container {
+    bottom: 20%;
+    padding-right: 120px;
+  }
+}
+/*# sourceMappingURL=rcue-additions.css.map */
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/dist/css/rcue-additions.css.map b/themes/src/main/node_modules/rcue/dist/css/rcue-additions.css.map
new file mode 100644
index 0000000..09e70b5
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/css/rcue-additions.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["node_modules/bootstrap-slider/src/less/rules.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","node_modules/patternfly-bootstrap-combobox/less/combobox.less","node_modules/bootstrap-datepicker/less/datepicker3.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap-select/less/bootstrap-select.less","node_modules/bootstrap-switch/src/less/bootstrap3/bootstrap-switch.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap-touchspin/dist/jquery.bootstrap-touchspin.css","node_modules/c3/c3.css","node_modules/eonasdan-bootstrap-datetimepicker/src/less/_bootstrap-datetimepicker.less","node_modules/eonasdan-bootstrap-datetimepicker/src/less/bootstrap-datetimepicker-build.less","node_modules/patternfly/dist/less/mixins.less","node_modules/patternfly/dist/less/about-modal.less","node_modules/patternfly/dist/less/application-launcher.less","node_modules/patternfly/dist/less/blank-slate.less","node_modules/patternfly/dist/less/bootstrap-combobox.less","node_modules/patternfly/dist/less/variables.less","node_modules/patternfly/dist/less/bootstrap-datepicker.less","node_modules/patternfly/dist/less/bootstrap-mixin-overrides.less","node_modules/patternfly/dist/less/bootstrap-select.less","node_modules/patternfly/dist/less/bootstrap-slider.less","node_modules/patternfly/dist/less/bootstrap-switch.less","node_modules/patternfly/dist/less/bootstrap-touchspin.less","node_modules/patternfly/dist/less/bootstrap-treeview.less","node_modules/patternfly/dist/less/cards.less","node_modules/patternfly/dist/less/card-view.less","node_modules/patternfly/dist/less/charts.less","node_modules/patternfly/dist/less/close.less","node_modules/patternfly/dist/less/context-selector.less","node_modules/patternfly/dist/less/datatables.less","node_modules/bootstrap/less/mixins/reset-filter.less","node_modules/patternfly/dist/less/experimental-features.less","node_modules/patternfly/dist/less/filter.less","node_modules/patternfly/dist/less/footer.less","node_modules/patternfly/dist/less/icons.less","node_modules/patternfly/dist/less/infotip.less","node_modules/patternfly/dist/less/layouts.less","node_modules/patternfly/dist/less/links.less","node_modules/patternfly/dist/less/list-pf.less","node_modules/patternfly/dist/less/list-view.less","node_modules/bootstrap/less/mixins/clearfix.less","node_modules/patternfly/dist/less/list-view-dnd.less","node_modules/patternfly/dist/less/login.less","node_modules/patternfly/dist/less/navbar.less","node_modules/font-awesome/less/variables.less","node_modules/patternfly/dist/less/navbar-alt.less","node_modules/patternfly/dist/less/navbar-vertical.less","node_modules/patternfly/dist/less/nav-vertical-alt.less","node_modules/patternfly/dist/less/notifications-drawer.less","node_modules/patternfly/dist/less/search.less","node_modules/patternfly/dist/less/sidebar.less","node_modules/patternfly/dist/less/skip-to-content.less","node_modules/patternfly/dist/less/spinner.less","node_modules/patternfly/dist/less/syntax-highlighting.less","node_modules/patternfly/dist/less/table-view.less","node_modules/patternfly/dist/less/time-picker.less","node_modules/patternfly/dist/less/toast.less","node_modules/patternfly/dist/less/toolbar.less","node_modules/patternfly/dist/less/vertical-nav.less","node_modules/patternfly/dist/less/wizard.less","less/login.less"],"names":[],"mappings":"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","sourcesContent":[".slider {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n\tposition: relative;\n\t&.slider-horizontal {\n\t\twidth: @slider-horizontal-width;\n\t\theight: @slider-line-height;\n\t\t.slider-track {\n\t\t\theight: (@slider-line-height/2);\n\t\t\twidth: 100%;\n\t\t\tmargin-top: (-@slider-line-height/4);\n\t\t\ttop: 50%;\n\t\t\tleft: 0;\n\t\t}\n\t\t.slider-selection, .slider-track-low, .slider-track-high {\n\t\t\theight: 100%;\n\t\t\ttop: 0;\n\t\t\tbottom: 0;\n\t\t}\n\t\t.slider-tick,\n\t\t.slider-handle {\n\t\t\tmargin-left: (-@slider-line-height/2);\n\t\t\t&.triangle {\n\t\t\t\tposition: relative;\n\t\t\t\ttop: 50%;\n\t\t\t\ttransform: translateY(-50%);\n\t\t\t\tborder-width: 0 (@slider-line-height/2) (@slider-line-height/2) (@slider-line-height/2);\n\t\t\t\twidth: 0;\n\t\t\t\theight: 0;\n\t\t\t\tborder-bottom-color: @slider-primary-bottom;\n\t\t\t\tmargin-top: 0;\n\t\t\t}\n\t\t}\n\t\t.slider-tick-container {\n\t\t\twhite-space: nowrap;\n\t\t\tposition: absolute;\n    \ttop: 0;\n    \tleft: 0;\n    \twidth: 100%;\n\t\t}\n\t\t.slider-tick-label-container {\n\t\t\twhite-space: nowrap;\n\t\t\tmargin-top: @slider-line-height;\n\n\t\t\t.slider-tick-label {\n\t\t\t\tpadding-top: @slider-line-height * .2;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\ttext-align: center;\n\t\t\t}\n\t\t}\n\t\t&.slider-rtl {\n\t\t\t.slider-track {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t\t.slider-tick,\n\t\t\t.slider-handle {\n\t\t\t\tmargin-left: initial;\n\t\t\t\tmargin-right: (-@slider-line-height/2);\n\t\t\t}\n\t\t\t.slider-tick-container {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t}\n\t}\n\t&.slider-vertical {\n\t\theight: @slider-vertical-height;\n\t\twidth: @slider-line-height;\n\t\t.slider-track {\n\t\t\twidth: (@slider-line-height/2);\n\t\t\theight: 100%;\n\t\t\tleft: 25%;\n\t\t\ttop: 0;\n\t\t}\n\t\t.slider-selection {\n\t\t\twidth: 100%;\n\t\t\tleft: 0;\n\t\t\ttop: 0;\n\t\t\tbottom: 0;\n\t\t}\n\t\t.slider-track-low, .slider-track-high {\n\t\t\twidth: 100%;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t}\n\t\t.slider-tick,\n\t\t.slider-handle {\n\t\t\tmargin-top: (-@slider-line-height/2);\n\t\t\t&.triangle {\n\t\t\t\tborder-width: (@slider-line-height/2) 0 (@slider-line-height/2) (@slider-line-height/2);\n\t\t\t\twidth: 1px;\n\t\t\t\theight: 1px;\n\t\t\t\tborder-left-color: @slider-primary-bottom;\n\t\t\t\tborder-right-color: @slider-primary-bottom;\n\t\t\t\tmargin-left: 0;\n\t\t\t\tmargin-right: 0;\n\t\t\t}\n\t\t}\n\t\t.slider-tick-label-container {\n\t\t\twhite-space: nowrap;\n\n\t\t\t.slider-tick-label {\n\t\t\t\tpadding-left: @slider-line-height * .2;\n\t\t\t}\n\t\t}\n\n\t\t&.slider-rtl {\n\t\t\t.slider-track {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 25%;\n\t\t\t}\n\t\t\t.slider-selection {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t\t.slider-tick,\n\t\t\t.slider-handle {\n\t\t\t\t&.triangle {\n\t\t\t\t\tborder-width: (@slider-line-height/2) (@slider-line-height/2) (@slider-line-height/2) 0;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.slider-tick-label-container {\n\t\t\t\t.slider-tick-label {\n\t\t\t\t\tpadding-left: initial;\n\t\t\t\t\tpadding-right: @slider-line-height * .2;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t&.slider-disabled {\n\t\t.slider-handle {\n\t\t\t#gradient > .vertical(@slider-gray-2, @slider-gray-1);\n\t\t}\n\t\t.slider-track {\n\t\t\t#gradient > .vertical(@slider-gray-3, @slider-gray-4);\n\t\t\tcursor: not-allowed;\n\t\t}\n\t}\n\tinput {\n\t\tdisplay: none;\n\t}\n\t.tooltip {\n\t\t&.top {\n\t\t\tmargin-top: -36px;\n\t\t}\n\t}\n\t.tooltip-inner {\n\t\twhite-space: nowrap;\n\t\tmax-width: none;\n\t}\n\t.hide {\n\t\tdisplay: none;\n\t}\n}\n.slider-track {\n\tposition: absolute;\n\tcursor: pointer;\n\t#gradient > .vertical(@slider-gray-5, @slider-gray-6);\n\t.box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n\tborder-radius: @border-radius-base;\n}\n.slider-selection {\n\tposition: absolute;\n\t#gradient > .vertical(@slider-gray-6, @slider-gray-5);\n\t.box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n\t.box-sizing(border-box);\n\tborder-radius: @border-radius-base;\n}\n.slider-selection.tick-slider-selection {\n\t#gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n}\n.slider-track-low, .slider-track-high {\n\tposition: absolute;\n\tbackground: transparent;\n\t.box-sizing(border-box);\n\tborder-radius: @border-radius-base;\n}\n.slider-handle {\n\tposition: absolute;\n\ttop: 0;\n\twidth: @slider-line-height;\n\theight: @slider-line-height;\n\tbackground-color: @slider-primary;\n\t#gradient > .vertical(@slider-primary-top, @slider-primary-bottom);\n\tfilter: none;\n\t.box-shadow(~\"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)\");\n\tborder: 0px solid transparent;\n\t&.round {\n\t\tborder-radius: 50%;\n\t}\n\t&.triangle {\n\t\tbackground: transparent none;\n\t}\n\t&.custom {\n\t\tbackground: transparent none;\n\t\t&::before{\n\t\t\tline-height: @slider-line-height;\n\t\t\tfont-size: 20px;\n\t\t\tcontent: '\\2605'; //unicode star character\n\t\t\tcolor: @slider-unicode-color;\n\t\t}\n\t}\n}\n.slider-tick {\n\tposition: absolute;\n\twidth: @slider-line-height;\n\theight: @slider-line-height;\n\t#gradient.vertical(@slider-gray-6, @slider-gray-5);\n\t.box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n\t.box-sizing(border-box);\n\tfilter: none;\n\topacity: 0.8;\n\tborder: 0px solid transparent;\n\t&.round {\n\t\tborder-radius: 50%;\n\t}\n\t&.triangle {\n\t\tbackground: transparent none;\n\t}\n\t&.custom {\n\t\tbackground: transparent none;\n\t\t&::before{\n\t\t\tline-height: @slider-line-height;\n\t\t\tfont-size: 20px;\n\t\t\tcontent: '\\2605'; //unicode star character\n\t\t\tcolor: @slider-unicode-color;\n\t\t}\n\t}\n\t&.in-selection {\n\t\t#gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n\t\topacity: 1;\n\t}\n}\n","// Gradients\n\n#gradient {\n\n  // Horizontal gradient, from left to right\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  // Vertical gradient, from top to bottom\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12\n    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n    background-repeat: repeat-x;\n    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n  }\n  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .radial(@inner-color: #555; @outer-color: #333) {\n    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n    background-image: radial-gradient(circle, @inner-color, @outer-color);\n    background-repeat: no-repeat;\n  }\n  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n  }\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n  -webkit-animation: @animation;\n       -o-animation: @animation;\n          animation: @animation;\n}\n.animation-name(@name) {\n  -webkit-animation-name: @name;\n          animation-name: @name;\n}\n.animation-duration(@duration) {\n  -webkit-animation-duration: @duration;\n          animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n  -webkit-animation-timing-function: @timing-function;\n          animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n  -webkit-animation-delay: @delay;\n          animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n  -webkit-animation-iteration-count: @iteration-count;\n          animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n  -webkit-animation-direction: @direction;\n          animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n  -webkit-animation-fill-mode: @fill-mode;\n          animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n  -webkit-backface-visibility: @visibility;\n     -moz-backface-visibility: @visibility;\n          backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n          box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n  -webkit-box-sizing: @boxmodel;\n     -moz-box-sizing: @boxmodel;\n          box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n  -webkit-column-count: @column-count;\n     -moz-column-count: @column-count;\n          column-count: @column-count;\n  -webkit-column-gap: @column-gap;\n     -moz-column-gap: @column-gap;\n          column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n  word-wrap: break-word;\n  -webkit-hyphens: @mode;\n     -moz-hyphens: @mode;\n      -ms-hyphens: @mode; // IE10+\n       -o-hyphens: @mode;\n          hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  // Firefox\n  &::-moz-placeholder {\n    color: @color;\n    opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n  }\n  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n  -webkit-transform: scale(@ratio);\n      -ms-transform: scale(@ratio); // IE9 only\n       -o-transform: scale(@ratio);\n          transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n  -webkit-transform: scale(@ratioX, @ratioY);\n      -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n       -o-transform: scale(@ratioX, @ratioY);\n          transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n  -webkit-transform: scaleX(@ratio);\n      -ms-transform: scaleX(@ratio); // IE9 only\n       -o-transform: scaleX(@ratio);\n          transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n  -webkit-transform: scaleY(@ratio);\n      -ms-transform: scaleY(@ratio); // IE9 only\n       -o-transform: scaleY(@ratio);\n          transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n  -webkit-transform: skewX(@x) skewY(@y);\n      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n       -o-transform: skewX(@x) skewY(@y);\n          transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n  -webkit-transform: translate(@x, @y);\n      -ms-transform: translate(@x, @y); // IE9 only\n       -o-transform: translate(@x, @y);\n          transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n  -webkit-transform: translate3d(@x, @y, @z);\n          transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees); // IE9 only\n       -o-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n  -webkit-transform: rotateX(@degrees);\n      -ms-transform: rotateX(@degrees); // IE9 only\n       -o-transform: rotateX(@degrees);\n          transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n  -webkit-transform: rotateY(@degrees);\n      -ms-transform: rotateY(@degrees); // IE9 only\n       -o-transform: rotateY(@degrees);\n          transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n  -webkit-perspective: @perspective;\n     -moz-perspective: @perspective;\n          perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n  -webkit-perspective-origin: @perspective;\n     -moz-perspective-origin: @perspective;\n          perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n  -webkit-transform-origin: @origin;\n     -moz-transform-origin: @origin;\n      -ms-transform-origin: @origin; // IE9 only\n          transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n  -webkit-transition: @transition;\n       -o-transition: @transition;\n          transition: @transition;\n}\n.transition-property(@transition-property) {\n  -webkit-transition-property: @transition-property;\n          transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n  -webkit-transition-delay: @transition-delay;\n          transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n  -webkit-transition-duration: @transition-duration;\n          transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n  -webkit-transition-timing-function: @timing-function;\n          transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n  -webkit-transition: -webkit-transform @transition;\n     -moz-transition: -moz-transform @transition;\n       -o-transition: -o-transform @transition;\n          transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n  -webkit-user-select: @select;\n     -moz-user-select: @select;\n      -ms-user-select: @select; // IE10+\n          user-select: @select;\n}\n","@media (min-width: 768px) {\n  .form-search,\n  .form-inline {\n    .combobox-container {\n      display: inline-block;\n      margin-bottom: 0;\n      vertical-align: top;\n      .input-group-addon {\n        width: auto;\n      }\n    }\n  }\n}\n\n.combobox-selected .caret {\n  display: none;\n}\n\n/* :not doesn't work in IE8 */\n.combobox-container:not(.combobox-selected) .glyphicon-remove {\n  display: none;\n}\n\n.typeahead-long {\n  max-height: 300px;\n  overflow-y: auto;\n}\n\n.control-group.error .combobox-container{\n  .add-on {\n    color: #B94A48;\n    border-color: #B94A48;\n  }\n  .caret {\n    border-top-color: #B94A48;\n  }\n}\n\n.control-group.warning .combobox-container {\n  .add-on {\n    color: #C09853;\n    border-color: #C09853;\n  }\n  .caret {\n    border-top-color: #C09853;\n  }\n}\n\n.control-group.success .combobox-container{\n  .add-on {\n    color: #468847;\n    border-color: #468847;\n  }\n  .caret {\n    border-top-color: #468847;\n  }\n}\n",".datepicker {\n\tborder-radius: @border-radius-base;\n\t&-inline {\n\t\twidth: 220px;\n\t}\n\tdirection: ltr;\n\t&-rtl {\n\t\tdirection: rtl;\n\t\t&.dropdown-menu { left: auto; }\n\t\ttable tr td span {\n\t\t\tfloat: right;\n\t\t}\n\t}\n\t&-dropdown {\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tpadding: 4px;\n\t\t&:before {\n\t\t\tcontent: '';\n\t\t\tdisplay: inline-block;\n\t\t\tborder-left:   7px solid transparent;\n\t\t\tborder-right:  7px solid transparent;\n\t\t\tborder-bottom: 7px solid @dropdown-border;\n\t\t\tborder-top:    0;\n\t\t\tborder-bottom-color: rgba(0,0,0,.2);\n\t\t\tposition: absolute;\n\t\t}\n\t\t&:after {\n\t\t\tcontent: '';\n\t\t\tdisplay: inline-block;\n\t\t\tborder-left:   6px solid transparent;\n\t\t\tborder-right:  6px solid transparent;\n\t\t\tborder-bottom: 6px solid @dropdown-bg;\n\t\t\tborder-top:    0;\n\t\t\tposition: absolute;\n\t\t}\n\t\t&.datepicker-orient-left:before   { left: 6px; }\n\t\t&.datepicker-orient-left:after    { left: 7px; }\n\t\t&.datepicker-orient-right:before  { right: 6px; }\n\t\t&.datepicker-orient-right:after   { right: 7px; }\n\t\t&.datepicker-orient-bottom:before { top: -7px; }\n\t\t&.datepicker-orient-bottom:after  { top: -6px; }\n\t\t&.datepicker-orient-top:before {\n\t\t\tbottom: -7px;\n\t\t\tborder-bottom: 0;\n\t\t\tborder-top:    7px solid @dropdown-border;\n\t\t}\n\t\t&.datepicker-orient-top:after {\n\t\t\tbottom: -6px;\n\t\t\tborder-bottom: 0;\n\t\t\tborder-top:    6px solid @dropdown-bg;\n\t\t}\n\t}\n\ttable {\n\t\tmargin: 0;\n\t\t-webkit-touch-callout: none;\n\t\t-webkit-user-select: none;\n\t\t-khtml-user-select: none;\n\t\t-moz-user-select: none;\n\t\t-ms-user-select: none;\n\t\tuser-select: none;\n\t\ttr {\n\t\t\ttd, th {\n\t\t\t\ttext-align: center;\n\t\t\t\twidth: 30px;\n\t\t\t\theight: 30px;\n\t\t\t\tborder-radius: 4px;\n\t\t\t\tborder: none;\n\t\t\t}\n\t\t}\n\t}\n\t// Inline display inside a table presents some problems with\n\t// border and background colors.\n\t.table-striped & table tr {\n\t\ttd, th {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\ttable tr td {\n\t\t&.old,\n\t\t&.new {\n\t\t\tcolor: @btn-link-disabled-color;\n\t\t}\n\t\t&.day:hover,\n\t\t&.focused {\n\t\t\tbackground: @gray-lighter;\n\t\t\tcursor: pointer;\n\t\t}\n\t\t&.disabled,\n\t\t&.disabled:hover {\n\t\t\tbackground: none;\n\t\t\tcolor: @btn-link-disabled-color;\n\t\t\tcursor: default;\n\t\t}\n\t\t&.highlighted {\n\t\t\t@highlighted-bg: @state-info-bg;\n\t\t\t.button-variant(#000, @highlighted-bg, darken(@highlighted-bg, 20%));\n\t\t\tborder-radius: 0;\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@highlighted-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @highlighted-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.today {\n\t\t\t@today-bg: lighten(orange, 30%);\n\t\t\t.button-variant(#000, @today-bg, darken(@today-bg, 20%));\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@today-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @today-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range {\n\t\t\t@range-bg: @gray-lighter;\n\t\t\t.button-variant(#000, @range-bg, darken(@range-bg, 20%));\n\t\t\tborder-radius: 0;\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@range-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range.highlighted {\n\t\t\t@range-highlighted-bg: mix(@state-info-bg, @gray-lighter, 50%);\n\t\t\t.button-variant(#000, @range-highlighted-bg, darken(@range-highlighted-bg, 20%));\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@range-highlighted-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-highlighted-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range.today {\n\t\t\t@range-today-bg: mix(orange, @gray-lighter, 50%);\n\t\t\t.button-variant(#000, @range-today-bg, darken(@range-today-bg, 20%));\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-today-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.selected,\n\t\t&.selected.highlighted {\n\t\t\t.button-variant(#fff, @gray-light, @gray);\n\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t}\n\t\t&.active,\n\t\t&.active.highlighted {\n\t\t\t.button-variant(@btn-primary-color, @btn-primary-bg, @btn-primary-border);\n\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t}\n\t\tspan {\n\t\t\tdisplay: block;\n\t\t\twidth: 23%;\n\t\t\theight: 54px;\n\t\t\tline-height: 54px;\n\t\t\tfloat: left;\n\t\t\tmargin: 1%;\n\t\t\tcursor: pointer;\n\t\t\tborder-radius: 4px;\n\t\t\t&:hover,\n\t\t\t&.focused {\n\t\t\t\tbackground: @gray-lighter;\n\t\t\t}\n\t\t\t&.disabled,\n\t\t\t&.disabled:hover {\n\t\t\t\tbackground: none;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t\tcursor: default;\n\t\t\t}\n\t\t\t&.active,\n\t\t\t&.active:hover,\n\t\t\t&.active.disabled,\n\t\t\t&.active.disabled:hover {\n\t\t\t\t.button-variant(@btn-primary-color, @btn-primary-bg, @btn-primary-border);\n\t\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t\t}\n\t\t\t&.old,\n\t\t\t&.new {\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t}\n\n\t.datepicker-switch {\n\t\twidth: 145px;\n\t}\n\n\t.datepicker-switch,\n\t.prev,\n\t.next,\n\ttfoot tr th {\n\t\tcursor: pointer;\n\t\t&:hover {\n\t\t\tbackground: @gray-lighter;\n\t\t}\n\t}\n\n\t.prev, .next {\n\t\t&.disabled {\n\t\t\tvisibility: hidden;\n\t\t}\n\t}\n\n\t// Basic styling for calendar-week cells\n\t.cw {\n\t\tfont-size: 10px;\n\t\twidth: 12px;\n\t\tpadding: 0 2px 0 5px;\n\t\tvertical-align: middle;\n\t}\n}\n.input-group.date .input-group-addon {\n\tcursor: pointer;\n}\n.input-daterange {\n\twidth: 100%;\n\tinput {\n\t\ttext-align: center;\n\t}\n\tinput:first-child {\n\t\tborder-radius: 3px 0 0 3px;\n\t}\n\tinput:last-child {\n\t\tborder-radius: 0 3px 3px 0;\n\t}\n\t.input-group-addon {\n\t\twidth: auto;\n\t\tmin-width: 16px;\n\t\tpadding: 4px 5px;\n\t\tline-height: @line-height-base;\n\t\ttext-shadow: 0 1px 0 #fff;\n\t\tborder-width: 1px 0;\n\t\tmargin-left: -5px;\n\t\tmargin-right: -5px;\n\t}\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n  color: @color;\n  background-color: @background;\n  border-color: @border;\n\n  &:focus,\n  &.focus {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 25%);\n  }\n  &:hover {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n\n    &:hover,\n    &:focus,\n    &.focus {\n      color: @color;\n      background-color: darken(@background, 17%);\n          border-color: darken(@border, 25%);\n    }\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    background-image: none;\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: @background;\n          border-color: @border;\n    }\n  }\n\n  .badge {\n    color: @background;\n    background-color: @color;\n  }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n}\n","@import \"variables\";\n\n// Mixins\n.cursor-disabled() {\n  cursor: not-allowed;\n}\n\n// Rules\nselect.bs-select-hidden,\nselect.selectpicker {\n  display: none !important;\n}\n\n.bootstrap-select {\n  width: 220px \\0; /*IE9 and below*/\n\n  // The selectpicker button\n  > .dropdown-toggle {\n    width: 100%;\n    padding-right: 25px;\n    z-index: 1;\n\n    &.bs-placeholder,\n    &.bs-placeholder:hover,\n    &.bs-placeholder:focus,\n    &.bs-placeholder:active { color: @input-color-placeholder; }\n  }\n\n  > select {\n    position: absolute !important;\n    bottom: 0;\n    left: 50%;\n    display: block !important;\n    width: 0.5px !important;\n    height: 100% !important;\n    padding: 0 !important;\n    opacity: 0 !important;\n    border: none;\n\n    &.mobile-device {\n      top: 0;\n      left: 0;\n      display: block !important;\n      width: 100% !important;\n      z-index: 2;\n    }\n  }\n\n  // Error display\n  .has-error & .dropdown-toggle,\n  .error & .dropdown-toggle {\n    border-color: @color-red-error;\n  }\n\n  &.fit-width {\n    width: auto !important;\n  }\n\n  &:not([class*=\"col-\"]):not([class*=\"form-control\"]):not(.input-group-btn) {\n    width: @width-default;\n  }\n\n  .dropdown-toggle:focus {\n    outline: thin dotted #333333 !important;\n    outline: 5px auto -webkit-focus-ring-color !important;\n    outline-offset: -2px;\n  }\n}\n\n.bootstrap-select.form-control {\n  margin-bottom: 0;\n  padding: 0;\n  border: none;\n\n  &:not([class*=\"col-\"]) {\n    width: 100%;\n  }\n\n  &.input-group-btn {\n    z-index: auto;\n\n    &:not(:first-child):not(:last-child) {\n      > .btn {\n        border-radius: 0;\n      }\n    }\n  }\n}\n\n// The selectpicker components\n.bootstrap-select.btn-group {\n  &:not(.input-group-btn),\n  &[class*=\"col-\"] {\n    float: none;\n    display: inline-block;\n    margin-left: 0;\n  }\n\n  // Forces the pull to the right, if necessary\n  &,\n  &[class*=\"col-\"],\n  .row &[class*=\"col-\"] {\n    &.dropdown-menu-right {\n      float: right;\n    }\n  }\n\n  .form-inline &,\n  .form-horizontal &,\n  .form-group & {\n    margin-bottom: 0;\n  }\n\n  .form-group-lg &.form-control,\n  .form-group-sm &.form-control {\n    padding: 0;\n\n    .dropdown-toggle {\n      height: 100%;\n      font-size: inherit;\n      line-height: inherit;\n      border-radius: inherit;\n    }\n  }\n\n  // Set the width of the live search (and any other form control within an inline form)\n  // see https://github.com/silviomoreto/bootstrap-select/issues/685\n  .form-inline & .form-control {\n    width: 100%;\n  }\n\n  &.disabled,\n  > .disabled {\n    .cursor-disabled();\n\n    &:focus {\n      outline: none !important;\n    }\n  }\n\n  &.bs-container {\n    position: absolute;\n    height: 0 !important;\n    padding: 0 !important;\n    \n    .dropdown-menu {\n      z-index: @zindex-select-dropdown;\n    }\n  }\n\n  // The selectpicker button\n  .dropdown-toggle {\n    .filter-option {\n      display: inline-block;\n      overflow: hidden;\n      width: 100%;\n      text-align: left;\n    }\n\n    .caret {\n      position: absolute;\n      top: 50%;\n      right: 12px;\n      margin-top: -2px;\n      vertical-align: middle;\n    }\n  }\n\n  &[class*=\"col-\"] .dropdown-toggle {\n    width: 100%;\n  }\n\n  // The selectpicker dropdown\n  .dropdown-menu {\n    min-width: 100%;\n    box-sizing: border-box;\n\n    &.inner {\n      position: static;\n      float: none;\n      border: 0;\n      padding: 0;\n      margin: 0;\n      border-radius: 0;\n      box-shadow: none;\n    }\n\n    li {\n      position: relative;\n\n      &.active small {\n        color: #fff;\n      }\n\n      &.disabled a {\n        .cursor-disabled();\n      }\n\n      a {\n        cursor: pointer;\n        user-select: none;\n\n        &.opt {\n          position: relative;\n          padding-left: 2.25em;\n        }\n\n        span.check-mark {\n          display: none;\n        }\n\n        span.text {\n          display: inline-block;\n        }\n      }\n\n      small {\n        padding-left: 0.5em;\n      }\n    }\n\n    .notify {\n      position: absolute;\n      bottom: 5px;\n      width: 96%;\n      margin: 0 2%;\n      min-height: 26px;\n      padding: 3px 5px;\n      background: rgb(245, 245, 245);\n      border: 1px solid rgb(227, 227, 227);\n      box-shadow: inset 0 1px 1px fade(rgb(0, 0, 0), 5%);\n      pointer-events: none;\n      opacity: 0.9;\n      box-sizing: border-box;\n    }\n  }\n\n  .no-results {\n    padding: 3px;\n    background: #f5f5f5;\n    margin: 0 5px;\n    white-space: nowrap;\n  }\n\n  &.fit-width .dropdown-toggle {\n    .filter-option {\n      position: static;\n    }\n\n    .caret {\n      position: static;\n      top: auto;\n      margin-top: -1px;\n    }\n  }\n\n  &.show-tick .dropdown-menu li {\n    &.selected a span.check-mark {\n      position: absolute;\n      display: inline-block;\n      right: 15px;\n      margin-top: 5px;\n    }\n\n    a span.text {\n      margin-right: 34px;\n    }\n  }\n}\n\n.bootstrap-select.show-menu-arrow {\n  &.open > .dropdown-toggle {\n    z-index: (@zindex-select-dropdown + 1);\n  }\n\n  .dropdown-toggle {\n    &:before {\n      content: '';\n      border-left: 7px solid transparent;\n      border-right: 7px solid transparent;\n      border-bottom: 7px solid @color-grey-arrow;\n      position: absolute;\n      bottom: -4px;\n      left: 9px;\n      display: none;\n    }\n\n    &:after {\n      content: '';\n      border-left: 6px solid transparent;\n      border-right: 6px solid transparent;\n      border-bottom: 6px solid white;\n      position: absolute;\n      bottom: -4px;\n      left: 10px;\n      display: none;\n    }\n  }\n\n  &.dropup .dropdown-toggle {\n    &:before {\n      bottom: auto;\n      top: -3px;\n      border-top: 7px solid @color-grey-arrow;\n      border-bottom: 0;\n    }\n\n    &:after {\n      bottom: auto;\n      top: -3px;\n      border-top: 6px solid white;\n      border-bottom: 0;\n    }\n  }\n\n  &.pull-right .dropdown-toggle {\n    &:before {\n      right: 12px;\n      left: auto;\n    }\n\n    &:after {\n      right: 13px;\n      left: auto;\n    }\n  }\n\n  &.open > .dropdown-toggle {\n    &:before,\n    &:after {\n      display: block;\n    }\n  }\n}\n\n.bs-searchbox,\n.bs-actionsbox,\n.bs-donebutton {\n  padding: 4px 8px;\n}\n\n.bs-actionsbox {\n  width: 100%;\n  box-sizing: border-box;\n\n  & .btn-group button {\n    width: 50%;\n  }\n}\n\n.bs-donebutton {\n  float: left;\n  width: 100%;\n  box-sizing: border-box;\n\n  & .btn-group button {\n    width: 100%;\n  }\n}\n\n.bs-searchbox {\n  & + .bs-actionsbox {\n    padding: 0 8px 4px;\n  }\n\n  & .form-control {\n    margin-bottom: 0;\n    width: 100%;\n    float: none;\n  }\n}\n","@bootstrap-switch-base: bootstrap-switch;\n\n.@{bootstrap-switch-base} {\n  display: inline-block;\n  direction: ltr;\n  cursor: pointer;\n  border-radius: @border-radius-base;\n  border: 1px solid;\n  border-color: @btn-default-border;\n  position: relative;\n  text-align: left;\n  overflow: hidden;\n  line-height: 8px;\n  z-index: 0;\n  .user-select(none);\n  vertical-align: middle;\n  .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n  .@{bootstrap-switch-base}-container {\n    display: inline-block;\n    top: 0;\n    border-radius: @border-radius-base;\n    .translate3d(0, 0, 0);\n  }\n\n  .@{bootstrap-switch-base}-handle-on,\n  .@{bootstrap-switch-base}-handle-off,\n  .@{bootstrap-switch-base}-label {\n    .box-sizing(border-box);\n    cursor: pointer;\n    display: table-cell;\n    vertical-align: middle;\n    padding: @padding-base-vertical @padding-base-horizontal;\n    font-size: @font-size-base;\n    line-height: @line-height-computed;\n  }\n\n  .@{bootstrap-switch-base}-handle-on,\n  .@{bootstrap-switch-base}-handle-off {\n    text-align: center;\n    z-index: 1;\n\n    &.@{bootstrap-switch-base}-primary {\n      color: #fff;\n      background: @btn-primary-bg;\n    }\n\n    &.@{bootstrap-switch-base}-info {\n      color: #fff;\n      background: @btn-info-bg;\n    }\n\n    &.@{bootstrap-switch-base}-success {\n      color: #fff;\n      background: @btn-success-bg;\n    }\n\n    &.@{bootstrap-switch-base}-warning {\n      background: @btn-warning-bg;\n      color: #fff;\n    }\n\n    &.@{bootstrap-switch-base}-danger {\n      color: #fff;\n      background: @btn-danger-bg;\n    }\n\n    &.@{bootstrap-switch-base}-default {\n      color: #000;\n      background: @gray-lighter;\n    }\n  }\n\n  .@{bootstrap-switch-base}-label {\n    text-align: center;\n    margin-top: -1px;\n    margin-bottom: -1px;\n    z-index: 100;\n    color: @btn-default-color;\n    background: @btn-default-bg;\n  }\n\n  span::before {\n    content: \"\\200b\";\n  }\n\n  .@{bootstrap-switch-base}-handle-on {\n    .border-left-radius(@border-radius-base - 1);\n  }\n\n  .@{bootstrap-switch-base}-handle-off {\n    .border-right-radius(@border-radius-base - 1);\n  }\n\n  input[type='radio'],\n  input[type='checkbox'] {\n    position: absolute !important;\n    top: 0;\n    left: 0;\n    margin: 0;\n    z-index: -1;\n    .opacity(0);\n    visibility: hidden;\n  }\n\n  &.@{bootstrap-switch-base}-mini {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-xs-vertical @padding-xs-horizontal;\n      font-size: @font-size-small;\n      line-height: @line-height-small;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-small {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-small-vertical @padding-small-horizontal;\n      font-size: @font-size-small;\n      line-height: @line-height-small;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-large {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-base-vertical @padding-large-horizontal;\n      font-size: @font-size-large;\n      line-height: @line-height-large;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-disabled,\n  &.@{bootstrap-switch-base}-readonly,\n  &.@{bootstrap-switch-base}-indeterminate {\n    cursor: default !important;\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      .opacity(.5);\n      cursor: default !important;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-animate {\n\n    .@{bootstrap-switch-base}-container {\n      .transition(margin-left .5s);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-inverse {\n\n    .@{bootstrap-switch-base}-handle-on {\n      .border-left-radius(0);\n      .border-right-radius(@border-radius-base - 1);\n    }\n\n    .@{bootstrap-switch-base}-handle-off {\n      .border-right-radius(0);\n      .border-left-radius(@border-radius-base - 1);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-focused {\n    @color-rgba: rgba(red(@input-border-focus), green(@input-border-focus), blue(@input-border-focus), .6);\n    border-color: @input-border-focus;\n    outline: 0;\n    .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n  }\n\n  &.@{bootstrap-switch-base}-on,\n  &.@{bootstrap-switch-base}-inverse.@{bootstrap-switch-base}-off {\n\n    .@{bootstrap-switch-base}-label {\n      .border-right-radius(@border-radius-base - 1);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-off,\n  &.@{bootstrap-switch-base}-inverse.@{bootstrap-switch-base}-on {\n\n\n    .@{bootstrap-switch-base}-label {\n      .border-left-radius(@border-radius-base - 1);\n    }\n  }\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n  border-top-right-radius: @radius;\n   border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n  border-bottom-right-radius: @radius;\n     border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n  border-bottom-right-radius: @radius;\n   border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n  border-bottom-left-radius: @radius;\n     border-top-left-radius: @radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n  opacity: @opacity;\n  // IE8 filter\n  @opacity-ie: (@opacity * 100);\n  filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","/*\n *  Bootstrap TouchSpin - v3.1.1\n *  A mobile and touch friendly input spinner component for Bootstrap 3.\n *  http://www.virtuosoft.eu/code/bootstrap-touchspin/\n *\n *  Made by István Ujj-Mészáros\n *  Under Apache License v2.0 License\n */\n\n.bootstrap-touchspin .input-group-btn-vertical {\n  position: relative;\n  white-space: nowrap;\n  width: 1%;\n  vertical-align: middle;\n  display: table-cell;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical > .btn {\n  display: block;\n  float: none;\n  width: 100%;\n  max-width: 100%;\n  padding: 8px 10px;\n  margin-left: -1px;\n  position: relative;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {\n  border-radius: 0;\n  border-top-right-radius: 4px;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {\n  margin-top: -2px;\n  border-radius: 0;\n  border-bottom-right-radius: 4px;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical i {\n  position: absolute;\n  top: 3px;\n  left: 5px;\n  font-size: 9px;\n  font-weight: normal;\n}\n","/*-- Chart --*/\n.c3 svg {\n  font: 10px sans-serif;\n  -webkit-tap-highlight-color: transparent; }\n\n.c3 path, .c3 line {\n  fill: none;\n  stroke: #000; }\n\n.c3 text {\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  user-select: none; }\n\n.c3-legend-item-tile,\n.c3-xgrid-focus,\n.c3-ygrid,\n.c3-event-rect,\n.c3-bars path {\n  shape-rendering: crispEdges; }\n\n.c3-chart-arc path {\n  stroke: #fff; }\n\n.c3-chart-arc rect {\n  stroke: white;\n  stroke-width: 1; }\n\n.c3-chart-arc text {\n  fill: #fff;\n  font-size: 13px; }\n\n/*-- Axis --*/\n/*-- Grid --*/\n.c3-grid line {\n  stroke: #aaa; }\n\n.c3-grid text {\n  fill: #aaa; }\n\n.c3-xgrid, .c3-ygrid {\n  stroke-dasharray: 3 3; }\n\n/*-- Text on Chart --*/\n.c3-text.c3-empty {\n  fill: #808080;\n  font-size: 2em; }\n\n/*-- Line --*/\n.c3-line {\n  stroke-width: 1px; }\n\n/*-- Point --*/\n.c3-circle._expanded_ {\n  stroke-width: 1px;\n  stroke: white; }\n\n.c3-selected-circle {\n  fill: white;\n  stroke-width: 2px; }\n\n/*-- Bar --*/\n.c3-bar {\n  stroke-width: 0; }\n\n.c3-bar._expanded_ {\n  fill-opacity: 1;\n  fill-opacity: 0.75; }\n\n/*-- Focus --*/\n.c3-target.c3-focused {\n  opacity: 1; }\n\n.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {\n  stroke-width: 2px; }\n\n.c3-target.c3-defocused {\n  opacity: 0.3 !important; }\n\n/*-- Region --*/\n.c3-region {\n  fill: steelblue;\n  fill-opacity: .1; }\n\n/*-- Brush --*/\n.c3-brush .extent {\n  fill-opacity: .1; }\n\n/*-- Select - Drag --*/\n/*-- Legend --*/\n.c3-legend-item {\n  font-size: 12px; }\n\n.c3-legend-item-hidden {\n  opacity: 0.15; }\n\n.c3-legend-background {\n  opacity: 0.75;\n  fill: white;\n  stroke: lightgray;\n  stroke-width: 1; }\n\n/*-- Title --*/\n.c3-title {\n  font: 14px sans-serif; }\n\n/*-- Tooltip --*/\n.c3-tooltip-container {\n  z-index: 10; }\n\n.c3-tooltip {\n  border-collapse: collapse;\n  border-spacing: 0;\n  background-color: #fff;\n  empty-cells: show;\n  -webkit-box-shadow: 7px 7px 12px -9px #777777;\n  -moz-box-shadow: 7px 7px 12px -9px #777777;\n  box-shadow: 7px 7px 12px -9px #777777;\n  opacity: 0.9; }\n\n.c3-tooltip tr {\n  border: 1px solid #CCC; }\n\n.c3-tooltip th {\n  background-color: #aaa;\n  font-size: 14px;\n  padding: 2px 5px;\n  text-align: left;\n  color: #FFF; }\n\n.c3-tooltip td {\n  font-size: 13px;\n  padding: 3px 6px;\n  background-color: #fff;\n  border-left: 1px dotted #999; }\n\n.c3-tooltip td > span {\n  display: inline-block;\n  width: 10px;\n  height: 10px;\n  margin-right: 6px; }\n\n.c3-tooltip td.value {\n  text-align: right; }\n\n/*-- Area --*/\n.c3-area {\n  stroke-width: 0;\n  opacity: 0.2; }\n\n/*-- Arc --*/\n.c3-chart-arcs-title {\n  dominant-baseline: middle;\n  font-size: 1.3em; }\n\n.c3-chart-arcs .c3-chart-arcs-background {\n  fill: #e0e0e0;\n  stroke: #FFF; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-unit {\n  fill: #000;\n  font-size: 16px; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-max {\n  fill: #777; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-min {\n  fill: #777; }\n\n.c3-chart-arc .c3-gauge-value {\n  fill: #000;\n  /*  font-size: 28px !important;*/ }\n\n.c3-chart-arc.c3-target g path {\n  opacity: 1; }\n\n.c3-chart-arc.c3-target.c3-focused g path {\n  opacity: 1; }\n","/*!\n * Datetimepicker for Bootstrap 3\n * version : 4.17.47\n * https://github.com/Eonasdan/bootstrap-datetimepicker/\n */\n@bs-datetimepicker-timepicker-font-size: 1.2em;\n@bs-datetimepicker-active-bg: @btn-primary-bg;\n@bs-datetimepicker-active-color: @btn-primary-color;\n@bs-datetimepicker-border-radius: @border-radius-base;\n@bs-datetimepicker-btn-hover-bg: @gray-lighter;\n@bs-datetimepicker-disabled-color: @gray-light;\n@bs-datetimepicker-alternate-color: @gray-light;\n@bs-datetimepicker-secondary-border-color: #ccc;\n@bs-datetimepicker-secondary-border-color-rgba: rgba(0, 0, 0, 0.2);\n@bs-datetimepicker-primary-border-color: white;\n@bs-datetimepicker-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n\n.bootstrap-datetimepicker-widget {\n    list-style: none;\n\n    &.dropdown-menu {\n        display: block;\n        margin: 2px 0;\n        padding: 4px;\n        width: 19em;\n\n        &.timepicker-sbs {\n            @media (min-width: @screen-sm-min) {\n                width: 38em;\n            }\n\n            @media (min-width: @screen-md-min) {\n                width: 38em;\n            }\n\n            @media (min-width: @screen-lg-min) {\n                width: 38em;\n            }\n        }\n\n        &:before, &:after {\n            content: '';\n            display: inline-block;\n            position: absolute;\n        }\n\n        &.bottom {\n            &:before {\n                border-left: 7px solid transparent;\n                border-right: 7px solid transparent;\n                border-bottom: 7px solid @bs-datetimepicker-secondary-border-color;\n                border-bottom-color: @bs-datetimepicker-secondary-border-color-rgba;\n                top: -7px;\n                left: 7px;\n            }\n\n            &:after {\n                border-left: 6px solid transparent;\n                border-right: 6px solid transparent;\n                border-bottom: 6px solid @bs-datetimepicker-primary-border-color;\n                top: -6px;\n                left: 8px;\n            }\n        }\n\n        &.top {\n            &:before {\n                border-left: 7px solid transparent;\n                border-right: 7px solid transparent;\n                border-top: 7px solid @bs-datetimepicker-secondary-border-color;\n                border-top-color: @bs-datetimepicker-secondary-border-color-rgba;\n                bottom: -7px;\n                left: 6px;\n            }\n\n            &:after {\n                border-left: 6px solid transparent;\n                border-right: 6px solid transparent;\n                border-top: 6px solid @bs-datetimepicker-primary-border-color;\n                bottom: -6px;\n                left: 7px;\n            }\n        }\n\n        &.pull-right {\n            &:before {\n                left: auto;\n                right: 6px;\n            }\n\n            &:after {\n                left: auto;\n                right: 7px;\n            }\n        }\n    }\n\n    .list-unstyled {\n        margin: 0;\n    }\n\n    a[data-action] {\n        padding: 6px 0;\n    }\n\n    a[data-action]:active {\n        box-shadow: none;\n    }\n\n    .timepicker-hour, .timepicker-minute, .timepicker-second {\n        width: 54px;\n        font-weight: bold;\n        font-size: @bs-datetimepicker-timepicker-font-size;\n        margin: 0;\n    }\n\n    button[data-action] {\n        padding: 6px;\n    }\n\n    .btn[data-action=\"incrementHours\"]::after {\n        .sr-only();\n        content: \"Increment Hours\";\n    }\n\n    .btn[data-action=\"incrementMinutes\"]::after {\n        .sr-only();\n        content: \"Increment Minutes\";\n    }\n\n    .btn[data-action=\"decrementHours\"]::after {\n        .sr-only();\n        content: \"Decrement Hours\";\n    }\n\n    .btn[data-action=\"decrementMinutes\"]::after {\n        .sr-only();\n        content: \"Decrement Minutes\";\n    }\n\n    .btn[data-action=\"showHours\"]::after {\n        .sr-only();\n        content: \"Show Hours\";\n    }\n\n    .btn[data-action=\"showMinutes\"]::after {\n        .sr-only();\n        content: \"Show Minutes\";\n    }\n\n    .btn[data-action=\"togglePeriod\"]::after {\n        .sr-only();\n        content: \"Toggle AM/PM\";\n    }\n\n    .btn[data-action=\"clear\"]::after {\n        .sr-only();\n        content: \"Clear the picker\";\n    }\n\n    .btn[data-action=\"today\"]::after {\n        .sr-only();\n        content: \"Set the date to today\";\n    }\n\n    .picker-switch {\n        text-align: center;\n\n        &::after {\n            .sr-only();\n            content: \"Toggle Date and Time Screens\";\n        }\n\n        td {\n            padding: 0;\n            margin: 0;\n            height: auto;\n            width: auto;\n            line-height: inherit;\n\n            span {\n                line-height: 2.5;\n                height: 2.5em;\n                width: 100%;\n            }\n        }\n    }\n\n    table {\n        width: 100%;\n        margin: 0;\n\n\n        & td,\n        & th {\n            text-align: center;\n            border-radius: @bs-datetimepicker-border-radius;\n        }\n\n        & th {\n            height: 20px;\n            line-height: 20px;\n            width: 20px;\n\n            &.picker-switch {\n                width: 145px;\n            }\n\n            &.disabled,\n            &.disabled:hover {\n                background: none;\n                color: @bs-datetimepicker-disabled-color;\n                cursor: not-allowed;\n            }\n\n            &.prev::after {\n                .sr-only();\n                content: \"Previous Month\";\n            }\n\n            &.next::after {\n                .sr-only();\n                content: \"Next Month\";\n            }\n        }\n\n        & thead tr:first-child th {\n            cursor: pointer;\n\n            &:hover {\n                background: @bs-datetimepicker-btn-hover-bg;\n            }\n        }\n\n        & td {\n            height: 54px;\n            line-height: 54px;\n            width: 54px;\n\n            &.cw {\n                font-size: .8em;\n                height: 20px;\n                line-height: 20px;\n                color: @bs-datetimepicker-alternate-color;\n            }\n\n            &.day {\n                height: 20px;\n                line-height: 20px;\n                width: 20px;\n            }\n\n            &.day:hover,\n            &.hour:hover,\n            &.minute:hover,\n            &.second:hover {\n                background: @bs-datetimepicker-btn-hover-bg;\n                cursor: pointer;\n            }\n\n            &.old,\n            &.new {\n                color: @bs-datetimepicker-alternate-color;\n            }\n\n            &.today {\n                position: relative;\n\n                &:before {\n                    content: '';\n                    display: inline-block;\n                    border: solid transparent;\n                    border-width: 0 0 7px 7px;\n                    border-bottom-color: @bs-datetimepicker-active-bg;\n                    border-top-color: @bs-datetimepicker-secondary-border-color-rgba;\n                    position: absolute;\n                    bottom: 4px;\n                    right: 4px;\n                }\n            }\n\n            &.active,\n            &.active:hover {\n                background-color: @bs-datetimepicker-active-bg;\n                color: @bs-datetimepicker-active-color;\n                text-shadow: @bs-datetimepicker-text-shadow;\n            }\n\n            &.active.today:before {\n                border-bottom-color: #fff;\n            }\n\n            &.disabled,\n            &.disabled:hover {\n                background: none;\n                color: @bs-datetimepicker-disabled-color;\n                cursor: not-allowed;\n            }\n\n            span {\n                display: inline-block;\n                width: 54px;\n                height: 54px;\n                line-height: 54px;\n                margin: 2px 1.5px;\n                cursor: pointer;\n                border-radius: @bs-datetimepicker-border-radius;\n\n                &:hover {\n                    background: @bs-datetimepicker-btn-hover-bg;\n                }\n\n                &.active {\n                    background-color: @bs-datetimepicker-active-bg;\n                    color: @bs-datetimepicker-active-color;\n                    text-shadow: @bs-datetimepicker-text-shadow;\n                }\n\n                &.old {\n                    color: @bs-datetimepicker-alternate-color;\n                }\n\n                &.disabled,\n                &.disabled:hover {\n                    background: none;\n                    color: @bs-datetimepicker-disabled-color;\n                    cursor: not-allowed;\n                }\n            }\n        }\n    }\n\n    &.usetwentyfour {\n        td.hour {\n            height: 27px;\n            line-height: 27px;\n        }\n    }\n\t\n\t&.wider {\n\t\twidth: 21em;\n\t}\n\n\t& .datepicker-decades .decade {\n        line-height: 1.8em !important;\n    }\n}\n\n.input-group.date {\n    & .input-group-addon {\n        cursor: pointer;\n    }\n}\n","// Import bootstrap variables including default color palette and fonts\n@import \"bootstrap/less/variables.less\";\n\n// Import datepicker component\n@import \"_bootstrap-datetimepicker.less\";\n\n//this is here so the compiler doesn't complain about a missing bootstrap mixin\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n","//\n// Patternfly Mixins\n// --------------------------------------------------\n// PatternFly-specific mixins\n\n// Patternfly button variants.\n.button-variant(@color; @background; @background-image-start; @background-image-stop; @border) {\n  background-color: @background;\n  #gradient > .vertical(@background-image-start, @background-image-stop);\n  border-color: @border;\n  color: @color;\n\n  &:hover,\n  &:focus,\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-color: @background;\n    background-image: none;\n    border-color: @border;\n    color: @color;\n  }\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-image: none;\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: darken(@background, 5%);\n          border-color: darken(@border, 7%);\n    }\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &,\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      background-color: @background;\n      border-color: @border;\n    }\n  }\n}\n\n// SASS CONVERSION FIX.\n// Allows inclusion of sr-only rules in nested media queries where @extends .sr-only\n// will not work.\n.sr-only-pf() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n\n.tab-indicator(@background: @gray-light-pf, @left: 15px, @right: 15px) {\n  &:before {\n    background: @background;\n    bottom: -1px;\n    content: \"\";\n    display: block;\n    height: 2px;\n    left: @left;\n    position: absolute;\n    right: @right;\n  }\n}\n\n// Ellipse overflow text\n.text-overflow-pf {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  word-wrap: normal;\n}\n","//\n// About Modal\n// --------------------------------------------------\n\n.about-modal-pf {\n  background-color: @color-pf-black-900;\n  background-image: url(\"@{img-path}/@{modal-about-pf-bg-img}\");\n  background-position: right bottom;\n  background-repeat: no-repeat;\n  background-size: 216px auto;\n  @media (min-width: @screen-sm-min) {\n    background-size: auto;\n  }\n  .modal-body {\n    color: @color-pf-white;\n    padding-bottom: 16px;\n    padding-left: @grid-gutter-width;\n    padding-right: @grid-gutter-width;\n    @media (min-width: @screen-sm-min) {\n      padding-left: (@grid-gutter-width * 2);\n      padding-right: (@grid-gutter-width * 2);\n    }\n  }\n  .modal-header {\n    background-color: transparent;\n  }\n  .pficon-close {\n    color: @color-pf-white;\n  }\n}\n\n.product-versions-pf {\n  margin-bottom: 30px;\n  margin-top: 30px;\n  li {\n    strong {\n      margin-right: (@grid-gutter-width / 4);\n    }\n  }\n}\n\n.trademark-pf {\n  font-size: ceil((@font-size-base - 1));\n}\n","//\n// Application Launcher\n// --------------------------------------------------\n.applauncher-pf {\n\n  display: inline-block;\n  overflow: visible;\n\n  .applauncher-pf-title {\n    .sr-only-pf();\n  }\n\n  .dropdown-toggle {\n    &.disabled {\n      cursor: not-allowed;\n    }\n  }\n\n  &.open > .dropdown-menu {\n    display:flex;\n    flex-wrap:wrap;\n  }\n\n  .applauncher-pf-item {\n    width: 100%;\n  }\n\n  .applauncher-pf-link {\n    display:flex;\n    white-space: initial;\n    align-items: center;\n  }\n\n  &-block-list {\n    .applauncher-pf-item {\n      @media (min-width: @screen-sm-min) {\n        flex:0 0 50%;\n      }\n    }\n\n    .applauncher-pf-link {\n        flex-wrap: wrap;\n      @media (min-width: @screen-sm-min) {\n          flex-direction:column;\n          text-align: center;\n          padding:15px 0;\n          height: 100%;\n      }\n    }\n\n    .applauncher-pf-link-icon {\n      padding: 0;\n    }\n\n    .applauncher-pf-link-title {\n      margin-top: auto;\n    }\n  }//block-list\n\n  &:not(.applauncher-pf-block-list) {\n\n    .applauncher-pf-link {\n      @media (min-width: @screen-sm-min) {\n        padding:@applauncher-pf-dropdown-menu-padding;\n        &-icon {\n          flex:1 0 0;\n          text-align: left;\n        }\n        &-title{flex:3;}\n      }\n    }\n  }\n\n  .dropdown-menu {\n    padding: @applauncher-pf-dropdown-menu-padding;\n    min-width: @applauncher-pf-dropdown-menu-width;\n  }\n\n  .applauncher-pf-link {\n    border-style: solid;\n    border-width: @applauncher-pf-menu-link-border-width;\n    border-color: transparent;\n\n    &:hover {\n      background-color: @applauncher-pf-menu-link-background-color-hover;\n      border-color: @applauncher-pf-menu-link-border-color-hover;\n      color: @applauncher-pf-menu-link-color-hover;\n      text-decoration: none;\n\n      .box-shadow(0 0 2px 0 @applauncher-pf-menu-link-shadow);\n    }\n  }\n\n  .applauncher-pf-link-icon {\n    font-size: 1.2em;\n    text-align: center;\n    width: @applauncher-pf-menu-link-icon-width;\n\n    @media (min-width: @screen-sm-min) {\n      font-size: @applauncher-pf-menu-link-icon-font-size;\n    }\n  }\n\n}//.applauncher-pf\n\n.navbar-utility .applauncher-pf {\n    .dropdown-menu {\n      border-width: @applauncher-pf-menu-link-border-width !important;\n      @media (min-width: @screen-sm-min) {\n              margin-top: 3px;\n              right:0;\n            }\n    }//.dropdown-menu\n}\n\n.navbar-pf, .navbar-pf-alt {\n\n  .navbar-utility .applauncher-pf, .applauncher-pf {\n\n    &.open > a,\n        &.open > a:focus {\n          background-color: @navbar-pf-navbar-nav-active-bg-color;\n          color: @navbar-pf-active-color;\n\n          @media (min-width: @screen-sm-min) {\n            background-color: @navbar-pf-navbar-utility-open-bg-color;\n            border-color: @navbar-pf-navbar-utility-border-color;\n            color: @navbar-pf-navbar-utility-color;\n          }\n        }\n\n        &.open {\n          .dropdown-menu > li > a {\n            @media (max-width: @grid-float-breakpoint-max) {\n              padding-left: 20px;\n              .applauncher-pf-link-icon {\n                padding-right: 20px;\n              }\n            }\n          }\n        }\n\n        &.dropdown > .dropdown-toggle,\n            .dropdown-toggle {\n              background-color: inherit;\n              color: @applauncher-pf-menu-link-color;\n              text-align: left;\n              text-decoration: none;\n              border-width: 0;\n              display: block;\n              padding-left: 20px;\n\n              &.disabled {\n                color: @applauncher-pf-menu-link-color-disabled !important;\n              }\n\n              @media (min-width: @screen-sm-min) {\n                border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n                padding: @applauncher-pf-dropdown-toggle-padding;\n                line-height: 1;\n              }\n        }\n\n        .applauncher-pf-icon {\n              padding-right:@applauncher-pf-icon-padding-right;\n\n              @media (min-width: @screen-sm-min) {\n                padding: 0;\n              }\n            }\n\n        .applauncher-pf-title {\n          display: inline;\n          position: relative;\n        }\n\n\n        .applauncher-pf-link {\n          overflow: hidden;\n          width: 100%;\n\n          &:hover {\n            background-color: transparent;\n            border-color: transparent;\n            .box-shadow(none);\n          }\n        }\n\n        .applauncher-pf-link-title {\n          overflow: hidden;\n        }\n\n        @media (min-width: @screen-sm-min) {\n          //Apply mixin\n          .applauncher-pf;\n        }\n    }\n}//.navbar-pf .navbar-pf-alt ovrerides\n\n.navbar-iconic {\n\n  .navbar-utility .applauncher-pf,\n  .applauncher-pf {\n\n    &.dropdown > .dropdown-toggle,\n    .dropdown-toggle {\n\n      @media (min-width: @screen-sm-min) {\n        padding: 22px 10px;\n        line-height: inherit;\n      }\n    }\n  }\n}\n","//\n// Blank Slate\n// --------------------------------------------------\n\n.blank-slate-pf {\n  @media (min-width: @screen-sm-min) {\n    padding: (@jumbotron-padding * 2) (@jumbotron-padding * 2);\n  }\n  @media (min-width: @screen-md-min) {\n    padding: (@jumbotron-padding * 3) (@jumbotron-padding * 4);\n  }\n  background-color: @well-bg;\n  border: 1px solid @well-border;\n  border-radius: @border-radius-base;\n  margin-bottom: 20px;\n  padding: @jumbotron-padding;\n  text-align: center;\n  .blank-slate-pf-icon {\n    color: @gray-light;\n    font-size: (@font-size-h1 * 2.4);\n    line-height: (@font-size-h1 * 2.4);\n  }\n  .blank-slate-pf-main-action {\n    margin-top: @line-height-computed;\n  }\n  .blank-slate-pf-secondary-action {\n    margin-top: @line-height-computed;\n  }\n  button {\n    margin-right: 5px;\n    &:last-of-type {\n      margin-right: 0;\n    }\n  }\n}\n","//\n// Bootstrap-Combobox\n// --------------------------------------------------\n\n.combobox-container {\n  &.combobox-selected .glyphicon-remove {\n    display: inline-block;\n  }\n  .caret {\n    margin-left: 0;\n  }\n  .combobox::-ms-clear {\n    display: none;\n  }\n  .dropdown-menu {\n    margin-top: -1px;\n    width: 100%;\n  }\n  .glyphicon-remove {\n    display: none;\n    top: auto;\n    width: 12px;\n    &:before {\n      content: \"\\e60b\";\n      font-family: @icon-font-name-pf;\n    }\n  }\n  .input-group-addon {\n    .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n    position: relative; // IE8\n    &:active {\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n    }\n  }\n}\n","//\n// Variables\n// --------------------------------------------------\n// Bootstrap overrides and PatternFly-specific variables\n\n// Sass compass/sprockets asset helper flag\n// ----------------------\n@pf-sass-asset-helper:                                              false;\n\n// PatternFly-specific\n// -------------------\n@import \"color-variables.less\";\n\n@applauncher-pf-dropdown-menu-border-width:                         1px;\n@applauncher-pf-dropdown-menu-padding:                              9px;\n@applauncher-pf-dropdown-menu-width:                                220px;\n@applauncher-pf-dropdown-toggle-padding:                            7px 10px;\n@applauncher-pf-icon-padding-right:                                 4px;\n@applauncher-pf-menu-link-border-color:                             @color-pf-white;\n@applauncher-pf-menu-link-border-color-hover:                       @color-pf-black-400;\n@applauncher-pf-menu-link-border-width:                             1px;\n@applauncher-pf-menu-link-color:                                    @color-pf-black-300;\n@applauncher-pf-menu-link-color-disabled:                           @color-pf-black-500;\n@applauncher-pf-menu-link-color-hover:                              @color-pf-blue-400;\n@applauncher-pf-menu-link-padding:                                  7px 10px;\n@applauncher-pf-menu-link-padding-block-list:                       15px 10px;\n@applauncher-pf-menu-link-background-color-hover:                   @color-pf-black-150;\n@applauncher-pf-menu-link-shadow:                                   @color-pf-black-300;\n@applauncher-pf-menu-link-icon-font-size:                           2em;\n@applauncher-pf-menu-link-icon-width:                               ((9 * @applauncher-pf-menu-link-icon-font-size) / 14); //Numbers to imitate fa-fw class\n@bootstrap-switch-handle-default-bg-color:                          @color-pf-black-100;\n@bootstrap-treeview-highlight-color:                                @color-pf-blue-300;\n@btn-default-bg-img-start:                                          @color-pf-black-100;\n@btn-default-bg-img-stop:                                           @color-pf-black-200;\n@btn-xs-font-weight:                                                400;\n@card-pf-accented-border-top-color:                                 @color-pf-blue-300;\n@card-pf-aggregate-status-title-icon-color:                         @color-pf-black-900;\n@card-pf-bg-color:                                                  @color-pf-white;\n@card-pf-border-color:                                              @color-pf-black-300;\n@card-pf-border-top-color:                                          transparent;\n@card-pf-container-bg-color:                                        @color-pf-black-150;\n@card-pf-footer-bg-color:                                           @color-pf-black-100;\n@card-pf-selected-border-color:                                     @color-pf-blue-300;\n@contextselector-pf-margin-left:                                    10px;\n@contextselector-pf-nav-item-iconic-padding:                        23px 20px 18px 10px;\n@contextselector-title-width-mobile:                                170px;\n@contextselector-title-width-desktop:                               210px;\n@contextselector-pf-form-group-margin:                              0 5px 5px 5px;\n@contextselector-pf-list-max-height:                                200px;\n@contextselector-pf-list-li-padding:                                1px 10px;\n@contextselector-pf-list-li-border-width:                           1px 0;\n@donut-font-size-big:                                               30px;\n@drawer-pf-top-vertical:                                            58px;\n@drawer-pf-top-horizontal:                                          26px;\n@dropdown-divider-margin:                                           4px 1px;\n@dropdown-link-active-border-color:                                 @color-pf-blue;\n@dropdown-link-hover-border-color:                                  @color-pf-blue-100;\n@dropdown-link-focus-color:                                         @color-pf-white;\n@flyout-transition-pf:                                              all 200ms cubic-bezier(.35, 0, .25, 1);\n@font-family-monospace:                                             Menlo, Monaco, Consolas, monospace;\n@font-path:                                                         \"../fonts\";\n@footer-pf-bg-color:                                                @color-pf-black;\n@footer-pf-padding-left:                                            25px;\n@footer-pf-padding-top:                                             10px;\n@footer-pf-height:                                                  37px;\n@gray-light-pf:                                                     @color-pf-black-400;\n@gray-pf:                                                           @color-pf-black-700;\n@icon-font-name-fa:                                                 \"FontAwesome\";\n@icon-font-name-pf:                                                 \"PatternFlyIcons-webfont\";\n@icon-prefix:                                                       pficon;\n@img-bg-login:                                                      \"bg-login.jpg\";\n@img-path:                                                          \"../img\";\n@img-spinner:                                                       \"spinner.gif\";\n@img-spinner-inverse:                                               \"spinner-inverse.gif\";\n@img-spinner-inverse-lg:                                            \"spinner-inverse-lg.gif\";\n@img-spinner-inverse-sm:                                            \"spinner-inverse-sm.gif\";\n@img-spinner-inverse-xs:                                            \"spinner-inverse-xs.gif\";\n@img-spinner-lg:                                                    \"spinner-lg.gif\";\n@img-spinner-sm:                                                    \"spinner-sm.gif\";\n@img-spinner-xs:                                                    \"spinner-xs.gif\";\n@input-border-hover:                                                @color-pf-blue-200;\n@input-border-focus:                                                @color-pf-blue-400;\n@list-pf-border-color:                                              @color-pf-black-200;\n@list-pf-active-border-color:                                       @color-pf-black-400;\n@list-pf-header-background-color:                                   @color-pf-black-200;\n@list-pf-hover-background-color:                                    @color-pf-blue-25;\n@list-pf-main-content-width:                                        70%; // sets the proportional width of the main content vs the additional content\n@list-pf-padding:                                                   20px;\n@list-view-accented-border:                                         @color-pf-blue-300;\n@list-view-active-bg:                                               @color-pf-blue-50;\n@list-view-active-border:                                           @color-pf-black-400;\n@list-view-divider:                                                 @color-pf-black-300;\n@list-view-hover-bg:                                                @color-pf-blue-25;\n@list-group-top-border:                                             @color-pf-black-200;\n@login-bg-color:                                                    @color-pf-black;\n@login-container-bg-color-rgba:                                     fade(@color-pf-white, 5.5%);\n@modal-about-pf-bg-img:                                             \"bg-modal-about-pf.png\";\n@modal-title-padding-horizontal:                                    18px;\n@modal-title-padding-vertical:                                      10px;\n@navbar-pf-active-color:                                            @color-pf-black-150;\n@navbar-pf-alt-active-color:                                        @color-pf-white;\n@navbar-pf-alt-bg-color:                                            @color-pf-black;\n@navbar-pf-alt-bg-img:                                              \"bg-navbar-pf-alt.svg\";\n@navbar-pf-bg-color:                                                @color-pf-black;\n@navbar-pf-border-color:                                            @color-pf-blue-300;\n@navbar-pf-color:                                                   @color-pf-black-300;\n@navbar-pf-height:                                                  60px;\n@navbar-pf-icon-bar-bg-color:                                       @color-pf-white;\n@navbar-pf-navbar-navbar-brand-min-width:                           270px;\n@navbar-pf-navbar-navbar-brand-padding:                             8px 0 7px;\n@navbar-pf-navbar-navbar-persistent-bg-color:                       @color-pf-black-150;\n@navbar-pf-navbar-navbar-persistent-border-color:                   @color-pf-black-300;\n@navbar-pf-vertical-active-color:                                   @color-pf-white;\n@navbar-pf-vertical-bg-color:                                       #1d1d1d;\n@navbar-pf-vertical-bg-repeat:                                      no-repeat;\n@navbar-pf-vertical-bg-size:                                        auto 100%;\n@navbar-pf-vertical-border-color:                                   @color-pf-blue-300;\n@navbar-pf-vertical-border-style:                                   solid;\n@navbar-pf-vertical-border-width:                                   2px;\n@navbar-pf-vertical-color:                                          @color-pf-black-300;\n@navbar-pf-vertical-height:                                         60px;\n@navbar-pf-vertical-icon-bar-bg-color:                              @color-pf-white;\n@navbar-pf-vertical-navbar-brand-color:                             @color-pf-white;\n@navbar-pf-vertical-navbar-brand-icon-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-margin:                            0 0 0 25px;\n@navbar-pf-vertical-navbar-brand-min-height:                        35px;\n@navbar-pf-vertical-navbar-brand-max-height:                        35px;\n@navbar-pf-vertical-navbar-brand-line-height:                       34px;\n@navbar-pf-vertical-navbar-brand-name-breakpoint:                   480px;\n@navbar-pf-vertical-navbar-brand-name-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-padding:                           11px 0 12px;\n@navbar-pf-vertical-navbar-toggle-margin:                           13px 15px;\n@navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg:                @color-pf-white;\n@navbar-pf-vertical-nav-item-iconic-padding:                        21px 12px;\n@nav-pf-container-transition-period:                                250ms;\n@nav-pf-menu-transition-period:                                     100ms;\n@nav-pf-vertical-active-color:                                      @color-pf-white;\n@nav-pf-vertical-active-before-color:                               @color-pf-blue-300;\n@nav-pf-vertical-active-bg-color:                                   @color-pf-black-800;\n@nav-pf-vertical-active-border-color:                               @color-pf-black-900;\n@nav-pf-vertical-active-font-weight:                                600;\n@nav-pf-vertical-active-icon-color:                                 @color-pf-blue-300;\n@nav-pf-vertical-badge-color:                                       @color-pf-white;\n@nav-pf-vertical-badge-bg-color:                                    @color-pf-black-900;\n@nav-pf-vertical-bg-color:                                          @color-pf-black-900;\n@nav-pf-vertical-border-color:                                      @color-pf-black-900;\n@nav-pf-vertical-collapsed-width:                                   75px;\n@nav-pf-vertical-color:                                             @color-pf-black-300;\n@nav-pf-vertical-font-weight:                                       400;\n@nav-pf-vertical-icon-color:                                        @color-pf-black-600;\n@nav-pf-vertical-icon-width:                                        24px;\n@nav-pf-vertical-item-border-color:                                 @color-pf-black;\n@nav-pf-vertical-link-height:                                       63px;\n@nav-pf-vertical-link-padding:                                      17px 20px 17px 25px;\n@nav-pf-vertical-secondary-active-color:                            @color-pf-white;\n@nav-pf-vertical-secondary-active-bg-color:                         @color-pf-black-700;\n@nav-pf-vertical-secondary-active-icon-color:                       @color-pf-blue-300;\n@nav-pf-vertical-secondary-badge-color:                             @color-pf-white;\n@nav-pf-vertical-secondary-badge-bg-color:                          @color-pf-black-900;\n@nav-pf-vertical-secondary-border-color:                            @color-pf-blue-300;\n@nav-pf-vertical-secondary-color:                                   @color-pf-white;\n@nav-pf-vertical-secondary-header-margin:                           18px 20px 10px 20px;\n@nav-pf-vertical-secondary-indicator-color:                         @color-pf-black-600;\n@nav-pf-vertical-secondary-indicator-padding:                       14px 0;\n@nav-pf-vertical-secondary-item-color:                              @color-pf-black-300;\n@nav-pf-vertical-secondary-item-padding:                            0 0 5px 0;\n@nav-pf-vertical-secondary-link-height:                             63px;\n@nav-pf-vertical-secondary-link-padding:                            4px 0 2px 0;\n@nav-pf-vertical-secondary-list-header-margin:                      30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-active-color:                             @color-pf-white;\n@nav-pf-vertical-tertiary-active-bg-color:                          @color-pf-black-800;\n@nav-pf-vertical-tertiary-indicator-padding:                        0;\n@nav-pf-vertical-tertiary-bg-color:                                 @color-pf-black-700;\n@nav-pf-vertical-tertiary-color:                                    #fff;\n@nav-pf-vertical-tertiary-header-margin:                            18px 20px 10px 20px;\n@nav-pf-vertical-tertiary-list-header-margin:                       30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-item-padding:                             0 0 5px 0;\n@nav-pf-vertical-tertiary-item-color:                               @color-pf-black-300;\n@nav-pf-vertical-tertiary-link-margin:                              0 20px 0 20px;\n@nav-pf-vertical-tertiary-link-padding:                             4px 0 2px 0;\n@nav-pf-vertical-tertiary-badge-color:                              @color-pf-white;\n@nav-pf-vertical-tertiary-badge-bg-color:                           @color-pf-black-900;\n@nav-pf-vertical-width:                                             200px;\n@toast-notification-top:                                            80px;\n@pagination-padding-small-vertical:                                 0;\n@panel-default-border-color:                                        @color-pf-black-400;\n@pficon-var-add-circle-o:                                           \"\\e61b\";\n@pficon-var-applications:                                           \"\\e936\";\n@pficon-var-arrow:                                                  \"\\e929\";\n@pficon-var-asleep:                                                 \"\\e925\";\n@pficon-var-automation:                                             \"\\e937\";\n@pficon-var-blueprint:                                              \"\\e915\";\n@pficon-var-build:                                                  \"\\e902\";\n@pficon-var-builder-image:                                          \"\\e800\";\n@pficon-var-bundle:                                                 \"\\e918\";\n@pficon-var-catalog:                                                \"\\e939\";\n@pficon-var-chat:                                                   \"\\e928\";\n@pficon-var-close:                                                  \"\\e60b\";\n@pficon-var-cloud-security:                                         \"\\e903\";\n@pficon-var-cloud-tenant:                                           \"\\e904\";\n@pficon-var-cluster:                                                \"\\e620\";\n@pficon-var-connected:                                              \"\\e938\";\n@pficon-var-container-node:                                         \"\\e621\";\n@pficon-var-cpu:                                                    \"\\e927\";\n@pficon-var-degraded:                                               \"\\e91b\";\n@pficon-var-delete:                                                 \"\\e611\";\n@pficon-var-disconnected:                                           \"\\e93c\";\n@pficon-var-domain:                                                 \"\\e919\";\n@pficon-var-edit:                                                   \"\\e60a\";\n@pficon-var-enhancement:                                            \"\\e93a\";\n@pficon-var-enterprise:                                             \"\\e906\";\n@pficon-var-equalizer:                                              \"\\e610\";\n@pficon-var-error-circle-o:                                         \"\\e926\";\n@pficon-var-export:                                                 \"\\e616\";\n@pficon-var-flag:                                                   \"\\e603\";\n@pficon-var-flavor:                                                 \"\\e907\";\n@pficon-var-filter:                                                 \"\\e943\";\n@pficon-var-folder-close:                                           \"\\e607\";\n@pficon-var-folder-open:                                            \"\\e606\";\n@pficon-var-help:                                                   \"\\e605\";\n@pficon-var-history:                                                \"\\e93b\";\n@pficon-var-home:                                                   \"\\e618\";\n@pficon-var-image:                                                  \"\\e61f\";\n@pficon-var-import:                                                 \"\\e615\";\n@pficon-var-info:                                                   \"\\e92b\";\n@pficon-var-infrastructure:                                         \"\\e93d\";\n@pficon-var-integration:                                            \"\\e948\";\n@pficon-var-in-progress:                                            \"\\e92c\";\n@pficon-var-key:                                                    \"\\e924\";\n@pficon-var-kubernetes:                                             \"\\e627\";\n@pficon-var-locked:                                                 \"\\e923\";\n@pficon-var-maintenance:                                            \"\\e92d\";\n@pficon-var-memory:                                                 \"\\e908\";\n@pficon-var-messages:                                               \"\\e603\";\n@pficon-var-middleware:                                             \"\\e917\";\n@pficon-var-migration:                                              \"\\e92e\";\n@pficon-var-monitoring:                                             \"\\e944\";\n@pficon-var-network:                                                \"\\e909\";\n@pficon-var-network-range:                                          \"\\e94a\";\n@pficon-var-off:                                                    \"\\e92f\";\n@pficon-var-ok:                                                     \"\\e602\";\n@pficon-var-on:                                                     \"\\e931\";\n@pficon-var-on-running:                                             \"\\e930\";\n@pficon-var-openshift:                                              \"\\e626\";\n@pficon-var-optimize:                                               \"\\e93e\";\n@pficon-var-orders:                                                 \"\\e93f\";\n@pficon-var-paused:                                                 \"\\e932\";\n@pficon-var-pending:                                                \"\\e933\";\n@pficon-var-plugged:                                                \"\\e940\";\n@pficon-var-port:                                                   \"\\e945\";\n@pficon-var-private:                                                \"\\e914\";\n@pficon-var-print:                                                  \"\\e612\";\n@pficon-var-process-automation:                                     \"\\e949\";\n@pficon-var-project:                                                \"\\e905\";\n@pficon-var-rebalance:                                              \"\\e91c\";\n@pficon-var-rebooting:                                              \"\\e934\";\n@pficon-var-regions:                                                \"\\e90a\";\n@pficon-var-registry:                                               \"\\e623\";\n@pficon-var-remove:                                                 \"\\e611\";\n@pficon-var-replicator:                                             \"\\e624\";\n@pficon-var-repository:                                             \"\\e90b\";\n@pficon-var-resource-pool:                                          \"\\e90c\";\n@pficon-var-resources-almost-empty:                                 \"\\e91d\";\n@pficon-var-resources-almost-full:                                  \"\\e912\";\n@pficon-var-resources-full:                                         \"\\e92a\";\n@pficon-var-restart:                                                \"\\e617\";\n@pficon-var-route:                                                  \"\\e625\";\n@pficon-var-running:                                                \"\\e614\";\n@pficon-var-save:                                                   \"\\e601\";\n@pficon-var-satellite:                                              \"\\e94b\";\n@pficon-var-screen:                                                 \"\\e600\";\n@pficon-var-search:                                                 \"\\e921\";\n@pficon-var-security:                                               \"\\e946\";\n@pficon-var-server:                                                 \"\\e90d\";\n@pficon-var-server-group:                                           \"\\e91a\";\n@pficon-var-service:                                                \"\\e61e\";\n@pficon-var-service-catalog:                                        \"\\e941\";\n@pficon-var-services:                                               \"\\e947\";\n@pficon-var-settings:                                               \"\\e610\";\n@pficon-var-spinner:                                                \"\\e614\";\n@pficon-var-spinner2:                                               \"\\e613\";\n@pficon-var-storage-domain:                                         \"\\e90e\";\n@pficon-var-template:                                               \"\\e94c\";\n@pficon-var-tenant:                                                 \"\\e916\";\n@pficon-var-thumb-tack-o:                                           \"\\e920\";\n@pficon-var-topology:                                               \"\\e608\";\n@pficon-var-trend-down:                                             \"\\e900\";\n@pficon-var-trend-up:                                               \"\\e901\";\n@pficon-var-unlocked:                                               \"\\e922\";\n@pficon-var-unplugged:                                              \"\\e942\";\n@pficon-var-unknown:                                                \"\\e935\";\n@pficon-var-user:                                                   \"\\e91e\";\n@pficon-var-users:                                                  \"\\e91f\";\n@pficon-var-vcenter:                                                \"\\e94d\";\n@pficon-var-virtual-machine:                                        \"\\e90f\";\n@pficon-var-volume:                                                 \"\\e910\";\n@pficon-var-warning-triangle-o:                                     \"\\e913\";\n@pficon-var-zone:                                                   \"\\e911\";\n@progress-description-label-width:                                  85px;\n@sidebar-pf-bg:                                                     @color-pf-black-100;\n@sidebar-pf-border-color:                                           @color-pf-black-300;\n@skiplink-pf-top:                                                   12px;\n@skiplink-pf-left:                                                  10px;\n@table-border-hover:                                                @color-pf-blue-200;\n@table-cell-padding-bottom:                                         3px;\n@table-cell-padding-top:                                            2px;\n// Reference variables declared in block above\n@bootstrap-switch-bg-color-start:                                   @btn-default-bg-img-start;\n@bootstrap-switch-bg-color-stop:                                    @btn-default-bg-img-stop;\n@fa-font-path:                                                      @font-path;\n@navbar-pf-navbar-header-border-color:                              lighten(@navbar-pf-bg-color, 15%);\n@navbar-pf-navbar-nav-active-active-bg-color:                       lighten(@navbar-pf-bg-color, 8%);\n@navbar-pf-navbar-nav-active-active-open-bg-color:                  lighten(@navbar-pf-bg-color, 11%);\n@navbar-pf-navbar-nav-active-bg-color:                              lighten(@navbar-pf-bg-color, 12.5%);\n@navbar-pf-navbar-primary-bg-color-start:                           lighten(@navbar-pf-bg-color, 10%); // #474C50\n@navbar-pf-navbar-primary-bg-color-stop:                            @navbar-pf-bg-color; // #383F43\n@navbar-pf-navbar-utility-border-color:                             lighten(@navbar-pf-bg-color, 15.5%);\n@navbar-pf-navbar-utility-color:                                    @navbar-pf-color;\n@navbar-pf-navbar-utility-hover-bg-color:                           lighten(@navbar-pf-bg-color, 12.5%);\n@nav-pf-vertical-secondary-bg-color:                                @nav-pf-vertical-active-bg-color;\n@nav-tabs-color:                                                    @gray-pf;\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-bg-color-start:                   lighten(@navbar-pf-navbar-primary-bg-color-start, 8.5%);\n@navbar-pf-navbar-primary-context-bg-color-stop:                    lighten(@navbar-pf-navbar-primary-bg-color-stop, 11%);\n@navbar-pf-navbar-primary-hover-bg-color-start:                     lighten(@navbar-pf-navbar-primary-bg-color-start, 10%);\n@navbar-pf-navbar-primary-hover-bg-color-stop:                      lighten(@navbar-pf-navbar-primary-bg-color-stop, 10%);\n@navbar-pf-navbar-primary-hover-border-color:                       lighten(@navbar-pf-navbar-header-border-color, 20%);\n@navbar-pf-navbar-primary-context-border-color:                     lighten(@navbar-pf-navbar-header-border-color, 8%);\n@navbar-pf-navbar-primary-context-border-top-color:                 lighten(@navbar-pf-navbar-header-border-color, 7%);\n@navbar-pf-navbar-utility-hover-border-color:                       lighten(@navbar-pf-navbar-utility-border-color, 5%);\n@navbar-pf-navbar-utility-open-bg-color:                            lighten(@navbar-pf-navbar-utility-hover-bg-color, 7.5%);\n@navbar-pf-navbar-utility-open-border-color:                        lighten(@navbar-pf-navbar-utility-hover-border-color, 5%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-active-bg-color-start:                    lighten(@navbar-pf-navbar-primary-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-active-bg-color-stop:                     lighten(@navbar-pf-navbar-primary-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-active-border-color:                      lighten(@navbar-pf-navbar-primary-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-start:             lighten(@navbar-pf-navbar-primary-context-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-stop:              lighten(@navbar-pf-navbar-primary-context-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-hover-border-color:               lighten(@navbar-pf-navbar-primary-context-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-border-top-color:           lighten(@navbar-pf-navbar-primary-context-border-top-color, 6%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-active-bg-color-start:            lighten(@navbar-pf-navbar-primary-context-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-active-bg-color-stop:             lighten(@navbar-pf-navbar-primary-context-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-active-border-color:              lighten(@navbar-pf-navbar-primary-context-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-active-border-top-color:          lighten(@navbar-pf-navbar-primary-context-hover-border-top-color, 6%);\n// References variable declared in block above\n@navbar-pf-navbar-primary-context-active-border-right-color:        @navbar-pf-navbar-primary-context-active-border-color;\n@slider-line-height:                                                16px;\n@slider-horizontal-width:                                           100%;\n@slider-primary-top:                                                @color-pf-black-100;\n@slider-primary-bottom:                                             @color-pf-black-200;\n@slider-secondary-top:                                              @color-pf-blue-400;\n@slider-secondary-bottom:                                           @color-pf-blue-300;\n\n// Alternate navigation layout - Kept for backwards compatibility\n// --------------------------------------------------------------\n@footer-pf-alt-bg-color:                                            @footer-pf-bg-color;\n@footer-pf-alt-padding-left:                                        @footer-pf-padding-left;\n@footer-pf-alt-padding-top:                                         @footer-pf-padding-top;\n@footer-pf-alt-height:                                              @footer-pf-height;\n@img-path-alt:                                                      @img-path;\n@nav-pf-vertical-alt-active-color:                                  @color-pf-blue-300;\n@nav-pf-vertical-alt-bg-color:                                      @color-pf-white;\n@nav-pf-vertical-alt-badge-color:                                   @color-pf-white;\n@nav-pf-vertical-alt-border-color:                                  @sidebar-pf-border-color;\n@nav-pf-vertical-alt-collapsed-width:                               75px;\n@nav-pf-vertical-alt-link-height:                                   63px;\n@nav-pf-vertical-alt-link-padding:                                  17px 20px 17px 25px;\n@nav-pf-vertical-alt-width:                                         250px;\n@navbar-pf-alt-bg-repeat:                                           @navbar-pf-vertical-bg-repeat;\n@navbar-pf-alt-bg-size:                                             @navbar-pf-vertical-bg-size;\n@navbar-pf-alt-border-color:                                        @navbar-pf-vertical-border-color;\n@navbar-pf-alt-border-style:                                        @navbar-pf-vertical-border-style;\n@navbar-pf-alt-border-width:                                        @navbar-pf-vertical-border-width;\n@navbar-pf-alt-color:                                               @navbar-pf-vertical-color;\n@navbar-pf-alt-height:                                              @navbar-pf-vertical-height;\n@navbar-pf-alt-nav-item-iconic-padding:                             @navbar-pf-vertical-nav-item-iconic-padding;\n@navbar-pf-alt-navbar-brand-color:                                  @navbar-pf-vertical-navbar-brand-color;\n@navbar-pf-alt-navbar-brand-icon-margin:                            @navbar-pf-vertical-navbar-brand-icon-margin;\n@navbar-pf-alt-navbar-brand-margin:                                 @navbar-pf-vertical-navbar-brand-margin;\n@navbar-pf-alt-navbar-brand-min-height:                             @navbar-pf-vertical-navbar-brand-min-height;\n@navbar-pf-alt-navbar-brand-name-breakpoint:                        @navbar-pf-vertical-navbar-brand-name-breakpoint;\n@navbar-pf-alt-navbar-brand-name-margin:                            @navbar-pf-vertical-navbar-brand-name-margin;\n@navbar-pf-alt-navbar-brand-padding:                                @navbar-pf-vertical-navbar-brand-padding;\n@navbar-pf-alt-navbar-toggle-margin:                                @navbar-pf-vertical-navbar-toggle-margin;\n@navbar-pf-alt-navbar-toggle-icon-bar-hover-bg:                     @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n\n// Login page\n// -------------------\n@login-pf-brand-margin-top:                                               20px;\n@login-pf-brand-desktop-margin-top:                                       62px;\n@login-pf-page-header-margin-bottom:                                      20px;\n@login-pf-page-header-desktop-margin-bottom:                              40px;\n@login-pf-page-header-paragraph-margin-top:                               20px;\n@login-pf-card-pf-padding:                                 10px 20px 30px 20px;\n@login-pf-card-pf-desktop-padding:                         20px 40px 30px 40px;\n@login-pf-card-pf-max-width:                                             840px;\n@login-pf-checkbox-label-margin-bottom:                                   15px;\n@login-pf-dropdown-toggle-padding-right:                                  15px;\n@login-pf-btn-primary-margin-top:                                         40px;\n@login-pf-header-margin-bottom:                                           20px;\n@login-pf-header-desktop-margin-bottom:                                   30px;\n@login-pf-signup-margin-top:                                              40px;\n@login-pf-signup-a-margin-left:                                           10px;\n@login-pf-page-footer-links-margin-top:                                   60px;\n@login-pf-page-footer-links-li-margin-right:                              20px;\n@login-pf-page-footer-sso-margin-top:                                     40px;\n@login-pf-page-footer-sso-logos-li-margin:                                5px;\n@login-pf-page-accounts-margin:                                           20px;\n@login-pf-accounts-section-heading-margin-top:                            30px;\n@login-pf-accounts-section-heading-margin-bottom:                         30px;\n@login-pf-accounts-section-heading-desktop-margin-bottom:                 15px;\n@login-pf-accounts-section-heading-desktop-padding-right:                 40px;\n@login-pf-accounts-section-heading-desktop-padding-left:                  40px;\n@login-pf-accounts-link-margin-bottom:                                    15px;\n@login-pf-accounts-link-img-margin-right:                                 10px;\n@login-pf-accounts-link-a-padding:                                        7px;\n@login-pf-accounts-more-caret-margin-left:                                5px;\n@login-pf-social-margin:                                           40px 0 0 0;\n\n\n// Bootstrap overrides\n// -------------------\n@alert-info-border:                                                 @color-pf-black-500;\n@alert-link-font-weight:                                            500;\n@alert-padding:                                                     11px;\n@body-bg:                                                           @color-pf-white;\n@border-radius-base:                                                1px;\n@brand-danger:                                                      @color-pf-red;\n@brand-info:                                                        @color-pf-blue-500;\n@brand-primary:                                                     @color-pf-blue-300;\n@brand-success:                                                     @color-pf-green;\n@brand-warning:                                                     @color-pf-orange;\n@breadcrumb-bg:                                                     transparent;\n@breadcrumb-separator:                                              \"\\f105\";\n@bs-datetimepicker-timepicker-font-size:                            1em;\n@bs-datetimepicker-btn-hover-bg:                                    transparent;\n@btn-danger-bg:                                                     @color-pf-red-200;\n@btn-danger-border:                                                 @color-pf-red-300;\n@btn-default-border:                                                @color-pf-black-400;\n@btn-font-weight:                                                   600;\n@btn-primary-bg:                                                    @color-pf-blue;\n@btn-primary-border:                                                @color-pf-blue-500;\n@caret-width-base:                                                  0;\n@code-bg:                                                           @color-pf-blue-50;\n@dropdown-border:                                                   @color-pf-black-400;\n@dropdown-divider-bg:                                               @color-pf-black-200;\n@dropdown-link-active-color:                                        @color-pf-white;\n@dropdown-link-hover-bg:                                            @color-pf-blue-50;\n@font-family-base:                                                  \"Open Sans\", Helvetica, Arial, sans-serif;\n@font-size-base:                                                    12px;\n@gray-dark:                                                         lighten(@color-pf-black, 20%);   // #333\n@gray-darker:                                                       lighten(@color-pf-black, 13.5%); // #222\n@gray-light:                                                        lighten(@color-pf-black, 60%);   // #999\n@gray-lighter:                                                      lighten(@color-pf-black, 93.5%); // #eee\n@grid-gutter-width:                                                 40px;\n@icon-font-path:                                                    \"../fonts/\";\n@input-bg-disabled:                                                 @color-pf-black-150;\n@input-border:                                                      @color-pf-black-400;\n@line-height-base:                                                  1.66666667; // 20/12\n@link-color:                                                        @color-pf-blue;\n@list-group-border:                                                 @color-pf-black-150;\n@list-group-border-radius:                                          0;\n@list-group-hover-bg:                                               @color-pf-blue-50;\n@link-hover-color:                                                  @color-pf-blue-500;\n@nav-tabs-border-color:                                             @color-pf-black-200;\n@nav-tabs-link-hover-border-color:                                  transparent;\n@padding-large-horizontal:                                          10px;\n@padding-base-horizontal:                                           6px;\n@padding-base-vertical:                                             2px;\n@padding-large-vertical:                                            6px;\n@pager-border-radius:                                               0;\n@pager-disabled-color:                                              @color-pf-black-500;\n@pagination-bg:                                                     @color-pf-black-150;\n@pagination-border:                                                 @color-pf-black-400;\n@pagination-hover-bg:                                               @color-pf-black-200;\n@panel-inner-border:                                                @color-pf-black-300;\n@popover-arrow-color:                                               @color-pf-white;\n@popover-arrow-outer-color:                                         @color-pf-black-400;\n@popover-border-color:                                              @color-pf-black-400;\n@popover-max-width:                                                 220px;\n@popover-title-bg:                                                  @color-pf-black-150;\n@pre-bg:                                                            @color-pf-black-100;\n@progress-bg:                                                       @color-pf-black-200;\n@table-bg-accent:                                                   @color-pf-black-150;\n@table-bg-hover:                                                    @color-pf-blue-50;\n@table-border-color:                                                @color-pf-black-300;\n@table-cell-padding:                                                10px;\n@tooltip-arrow-width:                                               8px;\n@tooltip-bg:                                                        @color-pf-black-800;\n@tooltip-max-width:                                                 220px;\n// Reference variables declared in block above\n@alert-danger-bg:                                                   lighten(@color-pf-red-100, 55%);\n@alert-danger-border:                                               @brand-danger;\n@alert-danger-text:                                                 @gray-dark;\n@alert-info-bg:                                                     @color-pf-black-150;\n@alert-info-text:                                                   @gray-dark;\n@alert-success-bg:                                                  lighten(@color-pf-green-100, 8%);\n@alert-success-border:                                              @brand-success;\n@alert-success-text:                                                @gray-dark;\n@alert-warning-bg:                                                  lighten(@color-pf-orange-100, 8%);\n@alert-warning-border:                                              @brand-warning;\n@alert-warning-text:                                                @gray-dark;\n@badge-border-radius:                                               @border-radius-base;\n@border-radius-large:                                               @border-radius-base;\n@border-radius-small:                                               @border-radius-base;\n@breadcrumb-active-color:                                           @gray-pf;\n@breadcrumb-color:                                                  @gray-pf;\n@btn-default-bg:                                                    @gray-lighter;\n@btn-default-color:                                                 @gray-pf;\n@caret-width-large:                                                 @caret-width-base;\n@code-color:                                                        @color-pf-blue-600;\n@dropdown-fallback-border:                                          @dropdown-border;\n@dropdown-link-active-bg:                                           @link-color;\n@dropdown-link-hover-color:                                         @gray-pf;\n@font-size-h1:                                                      ceil((@font-size-base * 2)); // ~24px\n@font-size-h2:                                                      ceil((@font-size-base * 1.8333)); // ~22px\n@font-size-h3:                                                      ceil((@font-size-base * 1.3333)); // ~16px\n@font-size-h5:                                                      ceil((@font-size-base * 1.0833)); // ~13px\n@font-size-large:                                                   ceil((@font-size-base * 1.1666)); // ~14px\n@font-size-small:                                                   ceil((@font-size-base * .9166)); // ~11px\n@input-color:                                                       @gray-dark;\n@nav-tabs-active-link-hover-color:                                  @link-color;\n@nav-tabs-justified-link-border-color:                              @nav-tabs-border-color;\n@nav-pf-vertical-badges-width:                                      (@nav-pf-vertical-width + 50px);\n@padding-small-horizontal:                                          @padding-base-horizontal;\n@padding-small-vertical:                                            @padding-base-vertical;\n@panel-group-pf-danger-heading-bg:                                  @alert-danger-bg;\n@panel-group-pf-primary-heading-bg:                                 lighten(@brand-primary, 38%);\n@panel-group-pf-success-heading-bg:                                 @alert-success-bg;\n@panel-group-pf-warning-heading-bg:                                 @alert-warning-bg;\n@panel-group-pf-info-heading-bg:                                    lighten(desaturate(spin(@brand-info, 13), 45), 60%);\n@panel-danger-border:                                               @brand-danger;\n@panel-danger-heading-bg:                                           @brand-danger;\n@panel-info-border:                                                 @brand-info;\n@panel-info-heading-bg:                                             @brand-info;\n@panel-primary-border:                                              @brand-primary;\n@panel-primary-text:                                                @body-bg;\n@panel-success-border:                                              @brand-success;\n@panel-success-heading-bg:                                          @brand-success;\n@panel-warning-border:                                              @brand-warning;\n@panel-warning-heading-bg:                                          @brand-warning;\n@state-warning-text:                                                @brand-warning;\n@state-danger-text:                                                 @brand-danger;\n// Reference variable declared in block above\n@panel-danger-text:                                                 @panel-primary-text;\n@panel-info-text:                                                   @panel-primary-text;\n@panel-success-text:                                                @panel-primary-text;\n@panel-warning-text:                                                @panel-primary-text;\n\n// PatternFly-specific variables based on Bootstrap overides\n// ---------------------------------------------------------\n@bootstrap-switch-bg-color:                                         @btn-default-bg;\n@btn-danger-bg-img-start:                                           @brand-danger;\n@btn-danger-bg-img-stop:                                            @btn-danger-bg;\n@btn-primary-bg-img-start:                                          @brand-primary;\n@btn-primary-bg-img-stop:                                           @btn-primary-bg;\n@dropdown-link-focus-bg:                                            @link-color;\n@line-height-computed:                                              floor((@font-size-base * @line-height-base));\n@nav-pf-vertical-icon-size:                                         (@font-size-base + 8);\n@notification-badge-color:                                          @color-pf-blue-400;\n@progress-sm:                                                       (@line-height-computed - 6);\n@progress-xs:                                                       (@line-height-computed - 14);\n@syntax-1:                                                          @btn-danger-bg;\n@syntax-2:                                                          @gray-dark;\n@syntax-3:                                                          @brand-success;\n@syntax-4:                                                          @brand-info;\n@tooltip-font-size:                                                 @font-size-base;\n","//\n// Bootstrap-Datepicker\n// --------------------------------------------------\n\n.bootstrap-datepicker.form-control[readonly] {\n  background-color: @input-bg;\n  border-color: @input-border !important;\n  color: @input-color;\n  .box-shadow(inset 0 1px 1px fade(@color-pf-black, 7.5%));\n  .form-control-outline();\n  &:focus {\n    // TODO Create global variables for validation box shadows?\n    @input-validation-focus-box-shadow: fade(@color-pf-black, 7.5%);\n    border-color: @input-border-focus !important;\n    .has-error & {\n      // TODO Create global variables for validation box shadows?\n      @state-danger-input-focus: lighten(@state-danger-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-danger-input-focus}\";\n      border-color: darken(@state-danger-text, 10%);\n      .box-shadow(@shadow);\n    }\n    .has-success & {\n      // TODO Create global variables for validation box shadows?\n      @state-success-input-focus: lighten(@state-success-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-success-input-focus}\";\n      border-color: darken(@state-success-text, 10%);\n      .box-shadow(@shadow);\n    }\n    .has-warning & {\n      // TODO Create global variables for validation box shadows?\n      @state-warning-input-focus: lighten(@state-warning-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-warning-input-focus}\";\n      border-color: darken(@state-warning-text, 10%);\n      .box-shadow(@shadow);\n    }\n  }\n  &:hover {\n    border-color: @input-border-hover !important;\n    .has-error & {\n      border-color: darken(@state-danger-text, 10%) !important;\n    }\n    .has-success & {\n      border-color: darken(@state-success-text, 10%) !important;\n    }\n    .has-warning & {\n      border-color: darken(@state-warning-text, 10%) !important;\n    }\n  }\n  .has-error & {\n    border-color: @state-danger-text !important;\n  }\n  .has-success & {\n    border-color: @state-success-text !important;\n  }\n  .has-warning & {\n    border-color: @state-warning-text !important;\n  }\n}\n\n.datepicker {\n  border-radius: @border-radius-base;\n  .datepicker-switch,\n  tfoot .clear,\n  tfoot .today {\n    font-size: @font-size-large;\n    font-weight: 500;\n  }\n  .next,\n  .prev {\n    font-weight: 500;\n  }\n  table tr {\n    td,\n    th {\n      border-radius: @border-radius-base;\n    }\n    td {\n      &.active,\n      &.active:hover,\n      &.active.disabled,\n      &.active.disabled:hover {\n        background: @dropdown-link-active-bg !important;\n        color: @color-pf-white !important;\n        text-shadow: none;\n      }\n      &.day:hover,\n      &.day.focused {\n        background: @dropdown-link-hover-bg;\n      }\n      &.selected,\n      &.selected:hover,\n      &.selected.disabled,\n      &.selected.disabled:hover {\n        text-shadow: none;\n      }\n      span {\n        border-radius: @border-radius-base;\n        &.active,\n        &.active:hover,\n        &.active.disabled,\n        &.active.disabled:hover {\n          background: @dropdown-link-active-bg;\n          text-shadow: none;\n        }\n        &:hover {\n          background: @dropdown-link-hover-bg;\n        }\n      }\n    }\n  }\n  thead tr:first-child th,\n  tfoot tr th {\n    &:hover {\n      background: @dropdown-link-hover-bg;\n    }\n  }\n}\n\n.input-daterange {\n  input:first-child {\n    border-radius: @border-radius-base 0 0 @border-radius-base;\n  }\n  input:last-child {\n    border-radius: 0 @border-radius-base @border-radius-base 0;\n  }\n  .input-group-addon {\n    background-color: @input-group-addon-bg;\n    border-color: @input-group-addon-border-color;\n    line-height: @line-height-base;\n    padding: @padding-base-vertical @padding-base-horizontal;\n  }\n}\n","// Mixins - Bootstrap overrides\n// -------------------\n\n// Form control outline\n.form-control-outline(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0 !important;\n    .box-shadow(~\"inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Gradients\n#gradient {\n  .striped(@color: fade(@color-pf-black, 15%); @angle: -45deg) {\n    background-image: linear-gradient(@angle, @color 25%, @color 26%, transparent 27%, transparent 49%, @color 50%, @color 51%, transparent 52%, transparent 74%, @color 75%, @color 76%, transparent 77%);\n  }\n}\n\n// Horizontal dividers\n.nav-divider(@color: @color-pf-black-200, @margin: 4px 1px) {\n  background-color: @color;\n  height: 1px;\n  margin: @margin;\n  overflow: hidden;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  &:-moz-placeholder            { color: @color; font-style: italic; } // Firefox 4-18\n  &::-moz-placeholder           { color: @color; font-style: italic; opacity: 1; } // Firefox 19+\n  &:-ms-input-placeholder       { color: @color; font-style: italic; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; font-style: italic; } // Safari and Chrome\n}\n","//\n// Bootstrap-select\n// --------------------------------------------------\n\n.bootstrap-select.btn-group {\n  &.form-control {\n    margin-bottom: 0;\n  }\n  .btn {\n    // TODO Create global variable for validation state box shadows?\n    @input-validation-focus-box-shadow: fade(@color-pf-black, 7.5%);\n    &:hover {\n      border-color: @input-border-hover;\n    }\n    .caret {\n      margin-top: -4px;\n    }\n    .form-control-outline();\n    .has-error & {\n      border-color: @state-danger-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-danger-input-focus: lighten(@state-danger-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-danger-input-focus}\";\n        border-color: darken(@state-danger-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .has-success & {\n      border-color: @state-success-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-success-input-focus: lighten(@state-success-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-success-input-focus}\";\n        border-color: darken(@state-success-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .has-warning & {\n      border-color: @state-warning-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-warning-input-focus: lighten(@state-warning-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-warning-input-focus}\";\n        border-color: darken(@state-warning-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n  }\n  .dropdown-menu { // Also see navbar.less\n    > .active > a {\n      &,\n      &:active {\n        background-color: @dropdown-link-hover-bg !important;\n        border-color: @dropdown-link-hover-border-color !important;\n        color: @gray-dark !important;\n        small {\n          color: @gray-light !important;\n        }\n      }\n    }\n    > .disabled > a {\n      color: @gray-light !important;\n    }\n    > .selected > a {\n      background-color: @dropdown-link-active-bg !important;\n      border-color: @dropdown-link-active-border-color !important;\n      color: @color-pf-white !important;\n      small {\n        color: fade(@color-pf-white, 50%) !important;\n      }\n    }\n    .divider {\n      background: @dropdown-divider-bg !important;\n      margin: @dropdown-divider-margin !important;\n    }\n    dt {\n      color: @color-pf-black-500;\n      font-weight:normal;\n      padding: 1px 10px;\n    }\n    li {\n      & > a.opt {\n        padding: 1px 10px;\n      }\n      & a {\n        &:active small {\n          color: fade(@color-pf-white, 50%) !important;\n        }\n        &:hover,\n        &:focus {\n          small {\n            color: @gray-light;\n          }\n        }\n      }\n      &:not(.disabled) {\n        a:hover,\n        a:focus {\n          small {\n            color: @gray-light;\n          }\n        }\n      }\n    }\n  }\n}\n","//\n// Bootstrap slider\n// --------------------------------------------------\n// https://github.com/seiyria/bootstrap-slider\n\n\n// Overwrites and fixes to Bootstrap slider\n\n// https //github.com/seiyria/bootstrap-slider/issues/797\n.slider-tick-label-container {\n  display: flex;\n  justify-content: space-between;\n  margin-left: 0!important;\n}\n\n.slider-tick-label {\n  width: auto !important;\n}\n\n.slider {\n  .tooltip {\n    top: -10px;\n  }\n}\n.slider-track {\n  background-color: @color-pf-black-200;\n  box-shadow: inset 0 2px 3px rgba(0, 0, 0, .1), 0 0px 2px @color-pf-black-200;\n  border: 1px solid @color-pf-black-400;\n}\n\n.slider-selection {\n  #gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n}\n\n.slider-handle {\n  width: @slider-line-height;\n  height: @slider-line-height;\n  border: 1px solid @color-pf-black-400; //THIS!\n}\n\n.slider-tick {\n  background-color: transparent !important;\n  background-image:\n    radial-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3) 2px, transparent 2px) !important;\n  .box-shadow(none);\n}\n\n\n// Styles to create the pf slider\n.slider-pf {\n  display: flex;\n  align-items: center;\n\n  * {\n    margin-right: 10px;\n\n    &:last-child {\n      margin: 0;\n    }\n  }\n\n  .slider {\n    width: auto;\n    flex: 1 1 100%;\n  }\n}\n","//\n// Bootstrap Switch\n// --------------------------------------------------\n\n.@{bootstrap-switch-base} {\n  .@{bootstrap-switch-base}-handle-off,\n  .@{bootstrap-switch-base}-handle-on {\n    &.@{bootstrap-switch-base}-default {\n      background: @bootstrap-switch-handle-default-bg-color;\n    }\n  }\n  .@{bootstrap-switch-base}-label {\n    background: @bootstrap-switch-bg-color;\n    box-shadow: 0 0 2px fade(@color-pf-black, 40%);\n    #gradient > .vertical(@bootstrap-switch-bg-color-start, @bootstrap-switch-bg-color-stop);\n    position: relative;\n    z-index: 9;\n  }\n}\n","//\n// Bootstrap Touchspin\n// --------------------------------------------------\n\n.bootstrap-touchspin .input-group-btn-vertical {\n  > .btn {\n    padding-bottom: 6px;\n    padding-top: 6px;\n  }\n  .bootstrap-touchspin-down {\n    border-bottom-right-radius: @border-radius-base;\n  }\n  .bootstrap-touchspin-up {\n    border-top-right-radius: @border-radius-base;\n  }\n  i {\n    font-size: (@font-size-base - 4);\n    left: 6px;\n    top: 2px;\n    &.fa-angle-down,\n    &.fa-angle-up {\n      font-size: @font-size-base;\n      line-height: @font-size-base;\n      top: 0;\n    }\n    &.fa-angle-down,\n    &.fa-angle-up {\n      left: 7px;\n    }\n  }\n}\n","//\n// Bootstrap Tree View\n// --------------------------------------------------\n\n.treeview {\n  .list-group {\n    border-top: 0;\n  }\n  .list-group-item {\n    background: transparent;\n    border-bottom: 1px solid transparent !important;\n    border-top: 1px solid transparent !important;\n    cursor: default !important;\n    margin-bottom: 0;\n    overflow: hidden;\n    padding: 0 10px;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    &:hover {\n      background: none !important;\n    }\n    &.node-selected {\n      background: none !important;\n      border-color: transparent !important;\n      color: inherit !important;\n    }\n    &.node-check-changed {\n      span.node-icon,\n      span.text {\n        color: @bootstrap-treeview-highlight-color;\n      }\n    }\n  }\n  span.icon {\n    display: inline-block;\n    font-size: (@font-size-base + 1);\n    min-width: 10px;\n    text-align: center;\n    > [class*=\"fa-angle\"] {\n      font-size: (@font-size-base + 3);\n    }\n    &.check-icon {\n      margin-right: 10px;\n    }\n    &.expand-icon {\n      cursor: pointer !important;\n    }\n  }\n  span.image {\n    background-repeat: no-repeat;\n    background-size: contain;\n    display: inline-block;\n    height: 1.19em;\n    line-height: 1em;\n    margin-right: 5px;\n    vertical-align: middle;\n    width: 12px;\n  }\n  span.indent {\n    margin-right: 5px;\n  }\n  .node-disabled {\n    color: @color-pf-black-300;\n    cursor: not-allowed;\n    span.expand-icon {\n      cursor: default !important;\n    }\n  }\n  .node-hidden {\n    display:none;\n  }\n}\n\n.treeview-pf-hover .list-group-item {\n  cursor: pointer !important;\n  &:hover {\n    background-color: @dropdown-link-hover-bg !important;\n    border-color: @dropdown-link-hover-border-color !important;\n  }\n}\n\n.treeview-pf-select .list-group-item {\n  cursor: pointer !important;\n  &.node-selected {\n    background: @dropdown-link-active-bg !important;\n    border-color: @dropdown-link-active-border-color !important;\n    color: @dropdown-link-active-color !important;\n  }\n}\n","//\n// Cards\n// --------------------------------------------------\n\n.card-pf {\n  background: @card-pf-bg-color;\n  border-top: 2px solid @card-pf-border-top-color;\n  .box-shadow(0 1px 1px fade(@color-pf-black, 17.5%));\n  margin: 0 (-(@grid-gutter-width / 4)) (@grid-gutter-width / 2);\n  padding: 0 (@grid-gutter-width / 2);\n  &.card-pf-accented {\n    border-top-color: @card-pf-accented-border-top-color;\n  }\n  &.card-pf-aggregate-status {\n    .card-pf-aggregate-status-notifications,\n    .card-pf-title {\n      a {\n        color: @text-color;\n        &.add {\n          color: @link-color;\n          &:hover {\n            color: @link-hover-color;\n          }\n        }\n        &:hover {\n          color: @link-hover-color;\n        }\n      }\n    }\n  }\n  &.card-pf-aggregate-status {\n    padding: 0 (@grid-gutter-width / 4);\n    text-align: center;\n  }\n  &.card-pf-aggregate-status-mini {\n    padding-bottom: (@grid-gutter-width / 4);\n    position: relative;\n  }\n  @media (min-width: @grid-float-breakpoint) {\n    &.card-pf-bleed-left {\n      margin-left: (-(@grid-gutter-width / 2));\n    }\n    &.card-pf-bleed-right {\n      border-right: 1px solid @card-pf-border-color;\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n  }\n}\n\n.card-pf-aggregate-status-notifications {\n  font-size: (@font-size-base * 2); // 24px\n  font-weight: 300;\n  .card-pf-aggregate-status-mini & {\n    line-height: 1;\n  }\n  .card-pf-aggregate-status-notification + .card-pf-aggregate-status-notification {\n    border-left: 1px solid @card-pf-border-color;\n    margin-left: (@grid-gutter-width / 8 - 2);\n    padding-left: (@grid-gutter-width / 4);\n  }\n  .fa, .pficon {\n    font-size: (@font-size-base * 1.5); // 18px\n    margin-right: 7px;\n  }\n}\n\n.card-pf-body {\n  margin: (@grid-gutter-width / 2) 0 0;\n  padding: 0 0 (@grid-gutter-width / 2);\n  .card-pf-aggregate-status & {\n    margin-top: (@grid-gutter-width / 4);\n    padding-bottom: (@grid-gutter-width / 4);\n  }\n  .card-pf-aggregate-status-mini & {\n    margin-bottom: 0;\n    margin-top: 0;\n    padding-bottom: 0;\n    position: absolute;\n    right: (@grid-gutter-width / 2);\n    top: 15px;\n  }\n  .card-pf-utilization .card-pf-title + & {\n    margin-top: -8px;\n  }\n  > *:last-child {\n    margin-bottom: 0;\n  }\n}\n\n.card-pf-footer {\n  background-color: @card-pf-footer-bg-color;\n  border-top: 1px solid @card-pf-border-color;\n  margin: 0 (-(@grid-gutter-width / 2)) !important;\n  padding: (@grid-gutter-width / 2) (@grid-gutter-width / 2) (@grid-gutter-width / 4);\n  a > {\n    .fa,\n    .pficon {\n      margin-right: 5px;\n    }\n  }\n  .card-pf-time-frame-filter {\n    margin-top: -2px;\n  }\n}\n\n.card-pf-link-with-icon {\n  padding-left: 21px;\n  position: relative;\n  .fa,\n  .pficon {\n    font-size: 16px;\n    left: 0;\n    position: absolute;\n    top: 0;\n  }\n}\n\n.card-pf-time-frame-filter {\n  .card-pf-heading &,\n  .card-pf-footer & {\n    float: right;\n    margin-left: 20px;\n  }\n}\n\n.card-pf-heading {\n  border-bottom: 1px solid @card-pf-border-color;\n  margin: 0 (-(@grid-gutter-width / 2)) (@grid-gutter-width / 2);\n  padding: 0 (@grid-gutter-width / 2) 0;\n  & .card-pf-time-frame-filter {\n    margin-top: -5px;\n  }\n}\n\n.card-pf-heading-details {\n  float: right;\n  font-size: (@font-size-small - 1);\n}\n\n.card-pf-subtitle {\n  font-size: @font-size-h3;\n  margin-top: @line-height-computed;\n  margin-bottom: (@line-height-computed / 2);\n  [class^=\"col\"] & {\n    margin-top: 0;\n  }\n  @media (max-width: @screen-xs-max) {\n    .card-pf-body [class^=\"col\"] + [class^=\"col\"] > & {\n      margin-top: (@grid-gutter-width);\n    }\n  }\n}\n\n.card-pf-title {\n  font-size: @font-size-h3;\n  font-weight: 400;\n  margin: (@grid-gutter-width / 2) 0;\n  padding: 0;\n  .card-pf-aggregate-status & {\n    font-size: @font-size-large;\n    margin: (@grid-gutter-width / 4) 0 0;\n    .fa,\n    .pficon {\n      color: @card-pf-aggregate-status-title-icon-color;\n      font-size: @font-size-h3;\n      margin-right: 7px;\n    }\n  }\n  .card-pf-aggregate-status-count {\n    font-size: @font-size-h3;\n    .card-pf-aggregate-status-mini & {\n      display: block;\n      font-size: (@font-size-base * 2); // 24px\n      font-weight: 300;\n      margin-bottom: 3px;\n    }\n  }\n  .card-pf-aggregate-status-mini & {\n    font-size: @font-size-base;\n    margin-top: (@grid-gutter-width / 8);\n    a {\n      display: inline-block;\n    }\n    .fa,\n    .pficon {\n      font-size: (@font-size-base * 2 + 2); // 26px\n      margin-right: 0;\n      min-width: (@font-size-base * 2 + 2); // 26px\n      position: absolute;\n      left: (@grid-gutter-width / 2);\n      text-align: center;\n      top: 15px;\n    }\n  }\n}\n\n.card-pf-utilization-details {\n  border-bottom: 1px solid @card-pf-border-color;\n  display: table;\n  margin: 12px 0 15px;\n  padding: 0 0 15px;\n  width: 100%;\n  .card-pf-utilization-card-details-count,\n  .card-pf-utilization-card-details-description {\n    float: left;\n    line-height: 1;\n  }\n  .card-pf-utilization-card-details-count {\n    font-size: (@font-size-base * 2 + 2); // 26px\n    font-weight: 300;\n    margin-right: 10px;\n  }\n  .card-pf-utilization-card-details-line-1,\n  .card-pf-utilization-card-details-line-2 {\n    display: block;\n  }\n  .card-pf-utilization-card-details-line-1 {\n    font-size: (@font-size-small - 1);\n    margin-bottom: 2px;\n  }\n}\n\n.cards-pf {\n  background: @card-pf-container-bg-color;\n  .row-cards-pf {\n    padding: 0 20px;\n    &:first-child { padding-top: 20px; }\n  }\n}\n\n.container-cards-pf {\n  margin-top: (@grid-gutter-width / 2);\n}\n\n.row-cards-pf {\n  margin-left: (-(@grid-gutter-width / 4));\n  margin-right: (-(@grid-gutter-width / 4));\n}\n","//\n// Card View\n// --------------------------------------------------\n\n.card-pf-view {\n  border: 2px solid transparent;\n  .card-pf-heading-kebab {\n    .dropdown-kebab-pf {\n      margin-top: -3px;\n    }\n    + .progress-pf-legend {\n      p { margin-bottom: 0; }\n      .progress {\n        margin-bottom: 7px;\n        margin-top: 16px;\n      }\n    }\n  }\n  .card-pf-info {\n    margin-top: 15px;\n    strong {\n      font-size: ceil((@font-size-base + 1));\n      margin-right: 10px;\n    }\n  }\n  .card-pf-item {\n    display: inline-block;\n    font-size: @font-size-h3;\n    padding: 0 13px 0 15px;\n    &:first-child { padding-left: 0; }\n    &:last-child { padding-right: 0; }\n    + .card-pf-item { border-left: 1px solid @card-pf-border-color; }\n    .fa-check { color: @brand-success; }\n    .fa,\n    .pficon {\n      + .card-pf-item-text { margin-left: 10px; }\n    }\n  }\n  .card-pf-items { margin-top: 15px; }\n  .card-pf-title {\n    font-size: ceil((@font-size-base * 1.6666));\n    font-weight: 300;\n    margin-bottom: 0;\n    margin-top: 15px;\n    .fa,\n    .pficon {\n      font-size: ceil((@font-size-base * 1.5));\n      margin-right: 2px;\n    }\n    .col-lg-2 & { font-size: @font-size-h3; }\n  }\n  .card-pf-top-element .card-pf-icon-circle {\n    border: 2px solid @color-pf-blue-300;\n    border-radius: 50%;\n    display: block;\n    font-size: 46px;\n    height: 106px;\n    line-height: 102px;\n    margin: 0 auto;\n    text-align: center;\n    width: 106px;\n    .col-lg-2 & {\n      font-size: 23px;\n      height: 54px;\n      line-height: 50px;\n      width: 54px;\n    }\n  }\n  .card-pf-view-checkbox {\n    position: absolute;\n    top: 11px;\n    left: 15px;\n    input[type=checkbox] { display: none; }\n  }\n  &.card-pf-view-multi-select {\n    .card-pf-view-checkbox {\n      input[type=checkbox] {\n        display: block;\n        @media(min-width:@screen-sm-min) {\n          visibility: hidden;\n          &:checked { visibility: visible; }\n        }\n      }\n    }\n    &:hover .card-pf-view-checkbox input[type=checkbox] { visibility: visible; }\n  }\n  &.card-pf-view-select {\n    position: relative;\n    &:hover { .box-shadow(0 1px 6px fade(@color-pf-black, 35%)); }\n    &.active { border: 2px solid @card-pf-selected-border-color; }\n  }\n  &.card-pf-view-single-select { cursor: pointer; }\n  &.card-pf-view-xs {\n    .card-pf-title {\n      font-size: 16px;\n      font-weight: normal;\n      margin-bottom: 10px;\n      .fa,\n      .pficon {\n        font-size: 14px;\n        margin-right: 5px;\n      }\n    }\n  }\n}\n","//\n// Charts\n// --------------------------------------------------\n\n.c3 {\n  path {\n    stroke: @table-border-color;\n  }\n  svg {\n    font-family: @font-family-base;\n  }\n}\n\n.c3-axis-x .tick line {\n  stroke: @table-border-color;\n}\n\n.c3-axis-y .tick line {\n  display: none;\n}\n\n.c3-chart-arc path {\n  stroke: @color-pf-white;\n}\n\n.c3-grid line {\n  stroke: @table-border-color;\n}\n\n.c3-line {\n  stroke-width: 2px;\n}\n\n.c3-tooltip {\n  background: @tooltip-bg;\n  .box-shadow(none);\n  .opacity(@tooltip-opacity);\n\n  td {\n    background: transparent;\n    border: 0;\n    color: @tooltip-color;\n    font-size: @font-size-base;\n    padding: 5px 10px;\n  }\n\n  th {\n    background: transparent;\n    font-size: @font-size-base;\n    padding: 5px 10px 0;\n    border-bottom: solid 2px @color-pf-black;\n  }\n\n  tr {\n    border: 0;\n    + tr > td {\n      padding-top: 0;\n    }\n  }\n}\n\n.c3-tooltip-sparkline,\n.donut-tooltip-pf {\n  background: @tooltip-bg;\n  color: @tooltip-color;\n  .opacity(@tooltip-opacity);\n  padding: 2px 6px;\n}\n\n.c3-xgrid,\n.c3-ygrid {\n  stroke-dasharray: 0 0;\n}\n\n.chart-pf-sparkline {\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.donut-title-big-pf {\n  font-size: @donut-font-size-big;\n  font-weight: 300;\n}\n\n.donut-title-small-pf {\n  font-size: @font-size-base;\n  font-weight: 400;\n}\n\n.line-chart-pf {\n  .c3-zoom-rect {\n    opacity: 1 !important;\n    fill: @color-pf-black-100;\n    stroke: @table-border-color;\n    stroke-width: 1px;\n  }\n}\n\n.pct-donut-chart-pf {\n\n  .pct-donut-chart-pf-label {\n    display: block;\n  }\n\n  &.pct-donut-chart-pf-left,\n  &.pct-donut-chart-pf-right,\n  .pct-donut-chart-pf-left,\n  .pct-donut-chart-pf-right {\n    display: flex;\n    flex-direction: row;\n    justify-content: center;\n    align-items: center;\n  }\n\n  &.pct-donut-chart-pf-left,\n  &.pct-donut-chart-pf-right {\n    display: inline-flex;\n  }\n\n  &.pct-donut-chart-pf-left,\n  .pct-donut-chart-pf-left {\n    flex-direction: row-reverse;\n  }\n}\n\n","//\n// Close icons\n// --------------------------------------------------\n\n//this should no longer be needed and be replaced with pficon-close. This is here for legacy. For further info see https://github.com/patternfly/patternfly/pull/781\n\n.close {\n  text-shadow: none;\n  z-index: 1;\n  position: relative;\n  .opacity(.6);\n  &:hover,\n  &:focus {\n    .opacity(.9);\n  }\n}\n","//\n// Context Selector\n// --------------------------------------------------\n.layout-pf-fixed .navbar-pf-vertical.navbar-pf-contextselector {\n  z-index: @zindex-modal-background;\n}\n.navbar-pf-vertical .nav.contextselector-pf {\n    @media (min-width: @screen-sm-min) {\n      margin-left:@contextselector-pf-margin-left;\n    }\n    border-left:1px solid @color-pf-black-700;\n      .nav-item-iconic {\n        padding:@contextselector-pf-nav-item-iconic-padding;\n        display: flex;\n        align-items: center;\n      }\n  }\n\n  .contextselector-pf {\n    float:left;\n    &-title {\n      width: @contextselector-title-width-mobile;\n      @media (min-width: @screen-xs-min) {\n        width: @contextselector-title-width-desktop;\n      }\n      white-space: nowrap;\n      display:inline-block;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      line-height: normal;\n    }\n    .dropdown {\n      &.open, &:hover {\n        background-color: @navbar-pf-navbar-primary-active-bg-color-stop;\n      }\n    }\n    .dropdown-menu {\n      width: 100%;\n      margin-top:0;\n    }\n    .form-group {\n      margin: @contextselector-pf-form-group-margin;\n    }\n    .contextselector-pf-list {\n      @media (min-width: @screen-sm-min) {\n        max-height: @contextselector-pf-list-max-height;\n        overflow-y: auto;\n      }\n      li {\n        padding: @contextselector-pf-list-li-padding;\n        border-width: @contextselector-pf-list-li-border-width;\n        border-style: solid;\n        border-color: transparent;\n        &:hover {\n          background: @color-pf-blue-50;\n          border-color: @dropdown-link-hover-border-color;\n          a {\n            text-decoration: none;\n          }\n        }\n      }\n      a {\n        color: @color-pf-black-800;\n        display: block;\n      }\n    }\n  }\n","//\n// DataTables\n// --------------------------------------------------\n\n// Deprecated\n.ColVis_Button {\n  &:active {\n    &:focus {\n      outline: none;\n    }\n  }\n}\n\n// Deprecated\n.ColVis_catcher {\n  position: absolute;\n  z-index: 999;\n}\n\n// Deprecated\n.ColVis_collection {\n  background-color: @dropdown-bg;\n  border: 1px solid @dropdown-border;\n  border-radius: @border-radius-base;\n  .box-shadow(0 6px 12px fade(@color-pf-black, 17.5%));\n  background-clip: padding-box;\n  list-style: none;\n  margin: -1px 0 0 0;\n  padding: 5px 10px;\n  width: 150px;\n  z-index: @zindex-dropdown;\n  label {\n    font-weight: normal;\n    margin-bottom: 5px;\n    margin-top: 5px;\n    padding-left: 20px;\n  }\n}\n\n// Deprecated\n.ColVis_collectionBackground {\n  background-color: @color-pf-white;\n  height: 100%;\n  left: 0;\n  position: fixed;\n  top: 0;\n  width: 100%;\n  z-index: 998;\n}\n\n// Note: We won't be using this class with the Patternfly toolbar\n.dataTables_header {\n  background-color: @color-pf-black-150;\n  border: 1px solid @table-border-color;\n  border-bottom: none;\n  padding: 5px;\n  position: relative;\n  text-align: center;\n  .btn {\n    .box-shadow(none);\n  }\n  // Deprecated\n  .ColVis {\n    position: absolute;\n    right: 5px;\n    text-align: left;\n    top: 5px;\n    + .dataTables_info {\n      padding-right: 30px;\n    }\n  }\n  .dataTables_filter {\n    position: absolute;\n    input {\n      border: 1px solid @color-pf-black-400;\n      height: 24px;\n      @media (max-width: @screen-xs-max) {\n        width: 100px;\n      }\n    }\n  }\n  .dataTables_info {\n    padding: 2px 0;\n    @media (max-width: @screen-xs) {\n     text-align: right;\n    }\n    b {\n      font-weight: bold;\n    }\n  }\n}\n\n// Note: We won't be using this class with the table view\n.dataTables_footer {\n  background-color: @color-pf-white;\n  border: 1px solid @table-border-color;\n  border-top: none;\n  overflow: hidden;\n}\n\n// Not in use with latest example: May be used with pagination?\n.dataTables_paginate {\n  background: @color-pf-black-100;\n  float: right;\n  margin: 0;\n  .pagination {\n    float: left;\n    margin: 0;\n    > li {\n      > span {\n        border-color: @color-pf-white @color-pf-black-300 @color-pf-black-150;\n        border-width: 0 1px;\n        font-size: (@font-size-base + 4);\n        font-weight: normal;\n        padding: 0;\n        text-align: center;\n        width: 31px;\n        &:hover,\n        &:focus {\n          .reset-filter();\n        }\n      }\n      &.last > span {\n        border-right: none;\n      }\n      &.disabled > span {\n        background: @color-pf-black-150;\n        border-left-color: @color-pf-black-200;\n        border-right-color: @color-pf-black-200;\n        .reset-filter();\n      }\n    }\n  }\n  .pagination-input {\n    float: left;\n    font-size: @font-size-base;\n    line-height: 1em;\n    padding: 4px 15px 0;\n    text-align: right;\n    .paginate_input {\n      border: 1px solid @color-pf-black-300;\n      .box-shadow(inset 0 1px 1px fade(@color-pf-black, 7.5%));\n      font-size: @font-size-base;\n      font-weight: 600;\n      height: 19px;\n      margin-right: 8px;\n      padding-right: 3px;\n      text-align: right;\n      width: 30px;\n    }\n    .paginate_of {\n      position: relative;\n      b {\n        margin-left: 3px;\n      }\n    }\n  }\n}\n\n.dataTables_empty {\n  background: @table-bg-accent;\n}\n\n/* Might need this for pagination?\n.dataTables_wrapper {\n  margin: @line-height-computed 0;\n  @media (max-width: @screen-xs-max) {\n    .table-responsive {\n      margin-bottom: 0;\n    }\n  }\n}\n*/\n\n// Not in use with latest example: May be used with column reordering?\n.DTCR_clonedTable {\n  background-color: fade(@color-pf-white, 70%);\n  z-index: 202;\n}\n\n// Not in use with latest example: May be used with column reordering?\n.DTCR_pointer {\n  background-color: @link-color;\n  width: 1px;\n  z-index: 201;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n  filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n",".experimental-pf > * {\n  border: 2px solid @color-pf-light-green-400;\n}\n\n.experimental-pf-bar {\n  background-color: @color-pf-light-green-400;\n  border: none;\n  text-align: center;\n  position: relative;\n}\n\n.experimental-pf-more-info {\n  background-color: @color-pf-light-green-400;\n  border: 0;\n  color: @color-pf-black;\n  display: block;\n  width: 100%;\n  padding-top: 10px;\n  padding-bottom: 10px;\n  position: static;\n  @media (min-width: @screen-md-min) {\n    padding: 0 10px;\n    position: absolute;\n    right: 0;\n    top: 0;\n    width: auto;\n  }\n}\n\n.experimental-pf-text {\n  @media (min-width: @screen-md-min) {\n    padding-left: 150px;\n    padding-right: 150px;\n  }\n\n  a {\n    color: @color-pf-black;\n    text-decoration: underline;\n    &:hover {\n      color: @color-pf-black;\n      cursor: pointer;\n    }\n  }\n}\n\n.btn-experimental-pf {\n  .button-variant(@btn-default-color; @color-pf-light-green-400; @color-pf-light-green-300; @color-pf-light-green-400; @color-pf-light-green-400);\n}\n",".filter-pf-category-select {\n  display: flex;\n}\n.filter-pf-category-select-value {\n  border-left-width: 0;\n}\n.filter-pf-category-item {\n  margin-bottom: 5px;\n}\n.filter-pf-category-label {\n  font-weight: 700;\n  margin-right: 5px;\n  padding: 5px 0 6px 5px;\n}\n.filter-pf-select {\n  .caret {\n    position: absolute;\n    top: 50%;\n    right: 10px;\n    transform: translateY(-50%);\n  }\n}\n.filter-pf-select-dropdown {\n  background-color: @color-pf-white;\n  background-image: none;\n  color: @color-pf-black-500;\n  font-size: 12px;\n  font-style: italic;\n  font-weight: 400;\n  padding-right: 25px;\n  text-align: left;\n  .caret {\n    font-style: normal;\n  }\n}\n.filter-pf-active-label {\n  margin-right: 5px;\n}\n","//\n// Footer\n// --------------------------------------------------\n\n.footer-pf-alt, .footer-pf {\n  background-color: @footer-pf-bg-color;\n  color: @gray-light;\n  font-size: @font-size-small;\n  line-height: 17px; // whole px unit to avoid height differences among browsers\n  padding-left: @footer-pf-padding-left;\n  padding-top: @footer-pf-padding-top;\n  .layout-pf-alt-fixed-with-footer &,  .layout-pf-fixed-with-footer & {\n    bottom: 0;\n    left: 0;\n    position: fixed;\n    right: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n}\n","//\n// Icons\n// --------------------------------------------------\n// Custom icons and selections from IcoMoon - Free (http://icomoon.io/#icons)\n\n@font-face {\n  font-family: \"@{icon-font-name-pf}\";\n  src:url(\"@{font-path}/@{icon-font-name-pf}.eot\");\n  src:url(\"@{font-path}/@{icon-font-name-pf}.eot?#iefix\") format(\"embedded-opentype\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.ttf\") format(\"truetype\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.woff\") format(\"woff\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.svg#@{icon-font-name-pf}\") format(\"svg\");\n  font-weight: normal;\n  font-style: normal;\n}\n\n[class^=\"@{icon-prefix}-\"],\n[class*=\" @{icon-prefix}-\"] {\n  display: inline-block;\n  font-family: \"@{icon-font-name-pf}\";\n  font-style: normal;\n  font-variant: normal;\n  font-weight: normal;\n  line-height: 1;\n  speak: none;\n  text-transform: none;\n  /* Better Font Rendering =========== */\n  -moz-osx-font-smoothing: grayscale;\n  -webkit-font-smoothing: antialiased;\n}\n.@{icon-prefix}-add-circle-o:before {\n  content: @pficon-var-add-circle-o;\n}\n.@{icon-prefix}-applications:before {\n  content: @pficon-var-applications;\n}\n.@{icon-prefix}-arrow:before {\n  content: @pficon-var-arrow;\n}\n.@{icon-prefix}-asleep:before {\n  content: @pficon-var-asleep;\n}\n.@{icon-prefix}-automation:before {\n  content: @pficon-var-automation;\n}\n.@{icon-prefix}-build:before {\n  content: @pficon-var-build;\n}\n.@{icon-prefix}-builder-image:before {\n  content: @pficon-var-builder-image;\n}\n.@{icon-prefix}-bundle:before {\n  content: @pficon-var-bundle;\n}\n.@{icon-prefix}-blueprint:before {\n  content: @pficon-var-blueprint;\n}\n.@{icon-prefix}-catalog:before {\n  content: @pficon-var-catalog;\n}\n.@{icon-prefix}-chat:before {\n  content: @pficon-var-chat;\n}\n.@{icon-prefix}-close:before {\n  content: @pficon-var-close;\n}\n.@{icon-prefix}-cloud-security:before {\n  content: @pficon-var-cloud-security;\n}\n.@{icon-prefix}-cloud-tenant:before {\n  content: @pficon-var-cloud-tenant;\n}\n.@{icon-prefix}-cluster:before {\n  content: @pficon-var-cluster;\n}\n.@{icon-prefix}-connected:before {\n  content: @pficon-var-connected;\n}\n.@{icon-prefix}-container-node:before {\n  content: @pficon-var-container-node;\n}\n.@{icon-prefix}-cpu:before {\n  content: @pficon-var-cpu;\n}\n.@{icon-prefix}-degraded:before {\n  content: @pficon-var-degraded;\n}\n.@{icon-prefix}-delete:before {\n  content: @pficon-var-delete;\n}\n.@{icon-prefix}-disconnected:before {\n  content: @pficon-var-disconnected;\n}\n.@{icon-prefix}-domain:before {\n  content: @pficon-var-domain;\n}\n.@{icon-prefix}-edit:before {\n  content: @pficon-var-edit;\n}\n.@{icon-prefix}-enhancement:before {\n  content: @pficon-var-enhancement;\n}\n.@{icon-prefix}-enterprise:before {\n  content: @pficon-var-enterprise;\n}\n.@{icon-prefix}-equalizer:before {\n  content: @pficon-var-equalizer;\n}\n.@{icon-prefix}-error-circle-o:before {\n  color: @brand-danger;\n  content: @pficon-var-error-circle-o;\n}\n.@{icon-prefix}-export:before {\n  content: @pficon-var-export;\n}\n.@{icon-prefix}-flag:before,\n.@{icon-prefix}-messages:before { // class name deprecated\n  content: @pficon-var-flag;\n}\n.@{icon-prefix}-flavor:before {\n  content: @pficon-var-flavor;\n}\n.@{icon-prefix}-filter:before {\n  content: @pficon-var-filter;\n}\n.@{icon-prefix}-folder-close:before {\n  content: @pficon-var-folder-close;\n}\n.@{icon-prefix}-folder-open:before {\n  content: @pficon-var-folder-open;\n}\n.@{icon-prefix}-help:before {\n  content: @pficon-var-help;\n}\n.@{icon-prefix}-history:before {\n  content: @pficon-var-history;\n}\n.@{icon-prefix}-home:before {\n  content: @pficon-var-home;\n}\n.@{icon-prefix}-image:before {\n  content: @pficon-var-image;\n}\n.@{icon-prefix}-import:before {\n  content: @pficon-var-import;\n}\n.@{icon-prefix}-in-progress:before {\n  content: @pficon-var-in-progress;\n}\n.@{icon-prefix}-info:before {\n  content: @pficon-var-info;\n}\n.@{icon-prefix}-infrastructure:before {\n  content: @pficon-var-infrastructure;\n}\n.@{icon-prefix}-integration:before {\n  content: @pficon-var-integration;\n}\n.@{icon-prefix}-key:before {\n  content: @pficon-var-key;\n}\n.@{icon-prefix}-locked:before {\n  content: @pficon-var-locked;\n}\n.@{icon-prefix}-maintenance:before {\n  content: @pficon-var-maintenance;\n}\n.@{icon-prefix}-memory:before {\n  content: @pficon-var-memory;\n}\n.@{icon-prefix}-middleware:before {\n  content: @pficon-var-middleware;\n}\n.@{icon-prefix}-migration:before {\n  content: @pficon-var-migration;\n}\n.@{icon-prefix}-monitoring:before {\n  content: @pficon-var-monitoring;\n}\n.@{icon-prefix}-network:before {\n  content: @pficon-var-network;\n}\n.@{icon-prefix}-network-range:before {\n  content: @pficon-var-network-range;\n}\n.@{icon-prefix}-on:before {\n  content: @pficon-var-on;\n}\n.@{icon-prefix}-on-running:before {\n  content: @pficon-var-on-running;\n}\n.@{icon-prefix}-optimize:before {\n  content: @pficon-var-optimize;\n}\n.@{icon-prefix}-orders:before {\n  content: @pficon-var-orders;\n}\n.@{icon-prefix}-off:before {\n  content: @pficon-var-off;\n}\n.@{icon-prefix}-ok:before {\n  color: @brand-success;\n  content: @pficon-var-ok;\n}\n.@{icon-prefix}-paused:before {\n  content: @pficon-var-paused;\n}\n.@{icon-prefix}-pending:before {\n  content: @pficon-var-pending;\n}\n.@{icon-prefix}-plugged:before {\n  content: @pficon-var-plugged;\n}\n.@{icon-prefix}-port:before {\n  content: @pficon-var-port;\n}\n.@{icon-prefix}-print:before {\n  content: @pficon-var-print;\n}\n.@{icon-prefix}-process-automation:before {\n  content: @pficon-var-process-automation;\n}\n.@{icon-prefix}-private:before {\n  content: @pficon-var-private;\n}\n.@{icon-prefix}-project:before {\n  content: @pficon-var-project;\n}\n.@{icon-prefix}-rebalance:before {\n  content: @pficon-var-rebalance;\n}\n.@{icon-prefix}-rebooting:before {\n  content: @pficon-var-rebooting;\n}\n.@{icon-prefix}-refresh:before, // class name deprecated\n.@{icon-prefix}-restart:before {\n  content: @pficon-var-restart;\n}\n.@{icon-prefix}-regions:before {\n  content: @pficon-var-regions;\n}\n.@{icon-prefix}-registry:before {\n  content: @pficon-var-registry;\n}\n.@{icon-prefix}-remove:before {\n  content: @pficon-var-remove;\n}\n.@{icon-prefix}-replicator:before {\n  content: @pficon-var-replicator;\n}\n.@{icon-prefix}-repository:before {\n  content: @pficon-var-repository;\n}\n.@{icon-prefix}-resource-pool:before {\n  content: @pficon-var-resource-pool;\n}\n.@{icon-prefix}-resources-almost-empty:before {\n  content: @pficon-var-resources-almost-empty;\n}\n.@{icon-prefix}-resources-almost-full:before {\n  content: @pficon-var-resources-almost-full;\n}\n.@{icon-prefix}-resources-full:before {\n  content: @pficon-var-resources-full;\n}\n.@{icon-prefix}-route:before {\n  content: @pficon-var-route;\n}\n.@{icon-prefix}-running:before {\n  content: @pficon-var-running;\n}\n.@{icon-prefix}-satellite:before {\n  content: @pficon-var-satellite;\n}\n.@{icon-prefix}-save:before {\n  content: @pficon-var-save;\n}\n.@{icon-prefix}-screen:before {\n  content: @pficon-var-screen;\n}\n.@{icon-prefix}-search:before {\n  content: @pficon-var-search;\n}\n.@{icon-prefix}-security:before {\n  content: @pficon-var-security;\n}\n.@{icon-prefix}-server:before {\n  content: @pficon-var-server;\n}\n.@{icon-prefix}-server-group:before {\n  content: @pficon-var-server-group;\n}\n.@{icon-prefix}-service:before {\n  content: @pficon-var-service;\n}\n.@{icon-prefix}-services:before {\n  content: @pficon-var-services;\n}\n.@{icon-prefix}-service-catalog:before {\n  content: @pficon-var-service-catalog;\n}\n.@{icon-prefix}-settings:before {\n  content: @pficon-var-settings;\n}\n.@{icon-prefix}-spinner:before {\n  content: @pficon-var-spinner;\n}\n.@{icon-prefix}-spinner2:before {\n  content: @pficon-var-spinner2;\n}\n.@{icon-prefix}-storage-domain:before {\n  content: @pficon-var-storage-domain;\n}\n.@{icon-prefix}-template:before {\n  content: @pficon-var-template;\n}\n.@{icon-prefix}-tenant:before {\n  content: @pficon-var-tenant;\n}\n.@{icon-prefix}-thumb-tack-o:before {\n  content: @pficon-var-thumb-tack-o;\n}\n.@{icon-prefix}-topology:before {\n  content: @pficon-var-topology;\n}\n.@{icon-prefix}-trend-down:before {\n  content: @pficon-var-trend-down;\n}\n.@{icon-prefix}-trend-up:before {\n  content: @pficon-var-trend-up;\n}\n.@{icon-prefix}-unknown:before {\n  content: @pficon-var-unknown;\n}\n.@{icon-prefix}-user:before {\n  content: @pficon-var-user;\n}\n.@{icon-prefix}-users:before {\n  content: @pficon-var-users;\n}\n.@{icon-prefix}-unlocked:before {\n  content: @pficon-var-unlocked;\n}\n.@{icon-prefix}-unplugged:before {\n  content: @pficon-var-unplugged;\n}\n.@{icon-prefix}-vcenter:before {\n  content: @pficon-var-vcenter;\n}\n.@{icon-prefix}-virtual-machine:before {\n  content: @pficon-var-virtual-machine;\n}\n.@{icon-prefix}-volume:before {\n  content: @pficon-var-volume;\n}\n.@{icon-prefix}-warning-triangle-o:before {\n  color: @brand-warning;\n  content: @pficon-var-warning-triangle-o;\n}\n.@{icon-prefix}-zone:before {\n  content: @pficon-var-zone;\n}\n","//\n// Info Tip\n// --------------------------------------------------\n\n// Overwrites for navbar.less\n.navbar-nav > li > .dropdown-menu.infotip {\n  border-top-width: 1px !important;\n  margin-top: @popover-arrow-width;\n}\n\n// Overwrites for PatternFly - navbar.less\n@media (max-width: @grid-float-breakpoint-max) {\n  .navbar-pf .navbar-nav .open .dropdown-menu.infotip {\n    background-color: @color-pf-white !important;\n    margin-top: 0;\n  }\n}\n\n// Extends \"dropdown-menu\"\n.infotip {\n  min-width: 235px;\n  padding: 0;\n  .list-group {\n    border-top: 0;\n    margin: 0;\n    padding: 8px 0;\n    .list-group-item {\n      border: none;\n      margin: 0 15px 0 34px;\n      padding: 5px 0;\n      > .i {\n        color: @gray-pf;\n        font-size: 13px;\n        left: -20px;\n        position: absolute;\n        top: 8px;\n      }\n      > a {\n        color: @gray-pf;\n        line-height: 13px;\n      }\n      > .close {\n        float: right;\n      }\n    }\n  }\n  .footer {\n    background-color: @color-pf-black-150;\n    padding: 6px 15px;\n    a:hover {\n      color: @link-color;\n    }\n  }\n}\n\n// Arrows (Copy from popovers.less)\n//\n// .arrow is outer, .arrow:after is inner\n\n.infotip .arrow {\n  &,\n  &:after {\n    border-color: transparent;\n    border-style: solid;\n    display: block;\n    height: 0;\n    position: absolute;\n    width: 0;\n  }\n}\n.infotip .arrow {\n  border-width: @popover-arrow-outer-width;\n}\n.infotip .arrow:after {\n  border-width: @popover-arrow-width;\n  content: \"\";\n}\n\n.infotip {\n  &.bottom .arrow,\n  &.bottom-left .arrow,\n  &.bottom-right .arrow {\n    border-bottom-color: @popover-arrow-outer-color;\n    border-top-width: 0;\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    top: -@popover-arrow-outer-width;\n    &:after {\n      border-top-width: 0;\n      border-bottom-color: @popover-arrow-color;\n      content: \" \";\n      margin-left: -@popover-arrow-width;\n      top: 1px;\n    }\n  }\n  &.bottom-left .arrow {\n    left: 20%;\n  }\n  // Default:\n  &.bottom-right .arrow {\n    left: 80%;\n  }\n  &.top .arrow {\n    border-bottom-width: 0;\n    border-top-color: @popover-arrow-outer-color;\n    bottom: -@popover-arrow-outer-width;\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    &:after {\n      border-bottom-width: 0;\n      border-top-color: @color-pf-black-150;\n      bottom: 1px;\n      content: \" \";\n      margin-left: -@popover-arrow-width;\n    }\n  }\n  &.right .arrow {\n    border-left-width: 0;\n    border-right-color: @popover-arrow-outer-color;\n    left: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    top: 50%;\n    &:after {\n      bottom: -@popover-arrow-width;\n      border-left-width: 0;\n      border-right-color: @popover-arrow-color;\n      content: \" \";\n      left: 1px;\n    }\n  }\n  &.left .arrow {\n    border-left-color: @popover-arrow-outer-color;\n    border-right-width: 0;\n    margin-top: -@popover-arrow-outer-width;\n    right: -@popover-arrow-outer-width;\n    top: 50%;\n    &:after {\n      border-left-color: @popover-arrow-color;\n      border-right-width: 0;\n      bottom: -@popover-arrow-width;\n      content: \" \";\n      right: 1px;\n    }\n  }\n}\n","//\n// Layouts\n// --------------------------------------------------\n.layout-pf {\n  &,\n  & body {\n    min-height: 100%;\n  }\n  &.layout-pf-fixed {\n    &.transitions .container-pf-nav-pf-vertical {\n      transition: @flyout-transition-pf;\n    }\n    body {\n      padding-top: @navbar-pf-height; // make space for the navbar\n    }\n    .navbar-pf {\n      left: 0;\n      position: fixed;\n      top:0;\n      right: 0;\n      z-index: 1030;\n    }\n    .container-pf-nav-pf-vertical {\n      margin-left: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        margin-left: @nav-pf-vertical-badges-width;\n      }\n      &.collapsed-nav {\n        margin-left: @nav-pf-vertical-collapsed-width;\n        &.hidden-icons-pf {\n          margin-left: 0;\n        }\n      }\n      &.hidden-nav {\n        margin-left: 0; // remove space as left nav is hidden\n      }\n      &.hide-nav-pf {\n        margin-left: 0 !important;\n      }\n      &.collapsed-secondary-nav-pf, &.collapsed-tertiary-nav-pf {\n        margin-left: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          margin-left: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.nav-pf-persistent-secondary.secondary-visible-pf {\n        @media (min-width: 1200px) {\n          margin-left: (@nav-pf-vertical-width + @nav-pf-vertical-width);\n          &.nav-pf-vertical-with-badges {\n            margin-left: (@nav-pf-vertical-badges-width + @nav-pf-vertical-badges-width);\n          }\n          &.hidden-nav {\n            margin-left: 0; // remove space as left nav is hidden\n          }\n          &.collapsed-secondary-nav-pf {\n            margin-left: @nav-pf-vertical-width;\n            &.nav-pf-vertical-with-badges {\n              margin-left: @nav-pf-vertical-badges-width;\n            }\n          }\n          &.collapsed-tertiary-nav-pf {\n            margin-left: @nav-pf-vertical-width;\n            &.nav-pf-vertical-with-badges {\n              margin-left: @nav-pf-vertical-badges-width;\n            }\n          }\n          &.collapsed-nav {\n            margin-left: (@nav-pf-vertical-collapsed-width + @nav-pf-vertical-width);\n            &.nav-pf-vertical-with-badges {\n              margin-left: (@nav-pf-vertical-collapsed-width + @nav-pf-vertical-badges-width);\n            }\n            &.collapsed-secondary-nav-pf {\n              margin-left: @nav-pf-vertical-width;\n              &.nav-pf-vertical-with-badges {\n                margin-left: @nav-pf-vertical-badges-width;\n              }\n            }\n            &.collapsed-tertiary-nav-pf {\n              margin-left: @nav-pf-vertical-width;\n              &.nav-pf-vertical-with-badges {\n                margin-left: @nav-pf-vertical-badges-width;\n              }\n            }\n            &.hidden-icons-pf {\n              margin-left: 0;\n            }\n          }\n        }\n      }\n    }\n  }\n  &.layout-pf-fixed-with-footer {\n    body {\n      padding-bottom: @footer-pf-height;\n    }\n  }\n}\n.layout-pf-alt {\n  &,\n  & body {\n    min-height: 100%;\n  }\n  &.layout-pf-alt-fixed {\n    &.layout-pf-alt-fixed-inner-scroll {\n      &,\n      & body {\n        height: 100%;\n        min-height: 0;\n      }\n      .container-pf-alt-nav-pf-vertical-alt {\n        height: 100%;\n        overflow: auto;\n        &.container-cards-pf {\n          margin-top: 0;\n          padding-top: (@grid-gutter-width/2);\n        }\n      }\n    }\n    &.transitions .container-pf-alt-nav-pf-vertical-alt {\n      transition: @flyout-transition-pf;\n    }\n    body {\n      padding-top: @navbar-pf-alt-height; // make space for the navbar\n    }\n    .container-pf-alt-nav-pf-vertical-alt {\n      margin-left: (@nav-pf-vertical-alt-width);\n      &.collapsed-nav {\n        margin-left: (@nav-pf-vertical-alt-collapsed-width); // adjust space for the collapsed left nav\n      }\n      &.hidden-nav {\n        margin-left: 0; // remove space as left nav is hidden\n      }\n    }\n  }\n  &.layout-pf-alt-fixed-with-footer {\n    body {\n      padding-bottom: @footer-pf-alt-height;\n    }\n  }\n}\n","a.disabled {\n  color: @color-pf-black-500;\n  cursor: @cursor-disabled;\n  text-decoration: none;\n}\n","//\n// PatternFly List\n// --------------------------------------------------\n\n.list-pf {\n  border-bottom: 1px solid @list-pf-border-color;\n}\n\n.list-pf-item {\n  border-color: @list-pf-border-color;\n  border-left-color: @color-pf-white;\n  border-right-color: @color-pf-white;\n  border-style: solid;\n  border-width: 1px;\n  border-bottom: none;\n  &:hover {\n    background-color: @list-pf-hover-background-color;\n  }\n  &.active {\n    background-color: @list-pf-header-background-color;\n    border-color: @list-pf-active-border-color;\n    border-bottom-width: 1px;\n    border-bottom-style: solid;\n  }\n}\n\n.list-pf-expansion {\n  background-color: @color-pf-white;\n}\n\n.list-pf-container {\n  align-items: flex-start;\n  display: flex;\n  padding: @list-pf-padding;\n  .list-pf-expansion & {\n    border-top: 1px solid @list-pf-active-border-color;\n  }\n  // when wide enough, if the list is not stacked, then center items vertically\n  @media (min-width: @screen-md-min) {\n    .list-pf:not(.list-pf-stacked) & {\n      align-items: center;\n    }\n  }\n}\n\n.list-pf-chevron {\n  min-width: 1.2em; // ensures that the width does not shift when the chevron is sideways\n}\n\n.list-pf-chevron,\n.list-pf-select {\n  margin-right: 10px;\n  //add the divider line if there is a chevron or a select\n  + .list-pf-content {\n    border-left: 1px solid @color-pf-black-300;\n    padding-left: (@grid-gutter-width/2);\n  }\n  .fa {\n    font-size: 22px;\n  }\n}\n\n// add this class to manage flexed contents in the list item content\n.list-pf-content-flex {\n  align-items: flex-start;\n  display:flex;\n  flex-grow: 1;\n  flex-wrap: nowrap;\n  justify-content: flex-start;\n  min-width: 0;\n  // when wide enough, if the list is not stacked, then center items vertically\n  @media (min-width: @screen-md-min) {\n    .list-pf:not(.list-pf-stacked) & {\n      align-items: center;\n    }\n  }\n}\n\n.list-pf-left {\n  flex-grow: 0;\n  margin-left: 0;\n  margin-right: (@grid-gutter-width/2);\n}\n.list-pf-icon {\n  align-items: center;\n  display:flex;\n  justify-content: center;\n}\n.list-pf-icon-bordered {\n  border-radius: 50%;\n  border: 2px solid @list-view-accented-border;\n}\n.list-pf-icon-small {\n  font-size: 1.4em;\n  height: 30px;\n  line-height: 30px;\n  width: 30px;\n}\n\n\n.list-pf-content-wrapper {\n  align-items: center;\n  display:flex;\n  flex-grow: 1;\n  flex-wrap: wrap;\n  min-width: 0;\n  // when at larger breakpoints, don't stack the contents and add some space between the children\n  @media (min-width: @screen-md-min) {\n    flex-wrap: nowrap;\n    & > * + * {\n      margin-left: @grid-gutter-width;\n    }\n  }\n  // if the list is stacked, then align the contents to the top\n  .list-pf-stacked & {\n    align-items: flex-start;\n  }\n\n}\n\n.list-pf-main-content {\n  align-items: center;\n  display: flex;\n  flex-basis: @list-pf-main-content-width;\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-wrap: wrap;\n  min-width: 0;\n}\n\n// at larger breakpoints, if the list is not stacked, then don't wrap the main contents and add some space between them\n.list-pf:not(.list-pf-stacked) .list-pf-main-content {\n  @media (min-width: @screen-md-min) {\n      flex-wrap: nowrap;\n      width: auto;\n      & > * + * {\n        margin-left: @grid-gutter-width;\n      }\n  }\n}\n\n// Title and description are break-word wrapped; add .text-overflow-pf to truncate and ellipse instead\n.list-pf-title {\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-basis: 100%;\n  font-weight: bold;\n  min-width: 0;\n  word-wrap: break-word;\n}\n.list-pf-description {\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-basis: 100%;\n  min-width: 0;\n  word-wrap: break-word;\n}\n\n.list-pf-additional-content {\n  display: flex;\n  flex-basis: ((100% - @list-pf-main-content-width) + 1%); // this adjusts the proportions but adding up to > 100% allows for proper wrapping\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-wrap: wrap;\n  justify-content: space-between;\n}\n.list-pf-actions {\n  display: flex;\n  align-items: flex-start;\n  flex-grow: 0;\n  margin-left: @grid-gutter-width;\n  //by default, space contents apart\n  & > * + * {\n    margin-left: (@grid-gutter-width / 4);\n  }\n\n}\n","//\n// List View\n// --------------------------------------------------\n\n\n.list-view-pf {\n  .list-group-item {\n    align-items: flex-start;\n    background-clip: padding-box;\n    border-color: transparent #fff;\n    border-style: solid;\n    border-width: 1px;\n    .clearfix(); //IE9 fallback\n    display: flex;\n    flex-wrap: wrap;\n    padding-bottom: 0;\n    padding-top: 0;\n    &.list-view-pf-expand-active {\n      background-color: @list-view-hover-bg;\n      box-shadow: 0 2px 6px rgba(3, 3, 3, .2);\n      z-index: 1;\n    }\n    &.active {\n      color: @list-group-link-color;\n      background-color: @list-view-active-bg;\n      background-clip: border-box;\n      border-color: @list-view-active-border transparent transparent;\n      z-index:auto;\n    }\n    &:hover {\n      background-color: @list-view-hover-bg;\n      border-left-color: transparent;\n      border-right-color: transparent;\n    }\n    &.list-view-pf-expand-active {\n      border: solid 1px @list-view-active-border;\n      &:first-child {\n        border-top-color: @list-view-active-border;\n      }\n    }\n    &:first-child {\n      border-top: 1px solid transparent;\n    }\n    @media (min-width: @screen-md-min) {\n      align-items: center;\n    }\n  }\n  .list-group-item-heading {\n    font-size: @font-size-h3;\n    small {\n      display: block;\n      font-size: (@font-size-base * .8);\n      font-weight: 400;\n    }\n    @media (min-width: @screen-md-min) {\n      flex:     1 0 ~\"calc(25% - 20px)\";\n      float: left; // IE9 fallback\n      font-size: @font-size-base;\n      margin: 0 (@grid-gutter-width/2) 0 0;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      white-space: nowrap;\n      width: ~\"calc(25% - 20px)\"; // IE9 fallback\n    }\n  }\n  .list-group-item-text {\n    color: currentColor !important; // to overwrite color change when active.\n    margin-bottom: 10px;\n    @media (min-width: @screen-md-min) {\n      flex:     1 0 auto; // it covers whats left from the title\n      float: left; // IE9 fallback\n      margin: 0 @grid-gutter-width 0 0;\n      width: ~\"calc(75% - 40px)\" // IE9 fallback\n    }\n  }\n  .close {\n    float: none;\n    position: absolute;\n    right: 15px;\n  }\n}\n.list-view-pf-actions {\n  float: right; // IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-left: (@grid-gutter-width/2);\n  margin-top: (@grid-gutter-width/2);\n  order: 2;\n  button,\n  > a,\n  .dropdown-kebab-pf {\n    margin-left: (@grid-gutter-width/4);\n  }\n  .list-view-pf-top-align & {\n    align-self: flex-start;\n  }\n}\n.list-view-pf-additional-info {\n  align-items: center;\n  display: flex;\n  flex-wrap: wrap;\n  @media (min-width: @screen-md-min) {\n    flex: 1 0 auto; // it covers whats left from summary\n    float: left; // IE9 fallback\n    width: 50%; // IE9 fallback\n  }\n}\n.list-view-pf-additional-info-item {\n  align-items: center;\n  display: inline-block;\n  display: flex;\n  margin-right: (@grid-gutter-width/2);\n  max-width:100%;\n  text-align: center;\n  &.list-view-pf-additional-info-item-stacked {\n    text-align: center;\n    flex-direction: column;\n    strong {\n      font-size: @font-size-h5;\n      line-height: 1em;\n    }\n  }\n  .pficon, .fa {\n    font-size: @font-size-h3;\n    margin-right: (@grid-gutter-width/4);\n  }\n  strong {\n    font-size: @font-size-h3;\n    font-weight: 600;\n    margin-right: 5px;\n  }\n  &:last-child {\n    margin-right: 0;\n  }\n}\n.list-view-pf-additional-info-item-donut-chart { width: 60px; }\n.list-view-pf-body {\n  align-items: center;\n  display: table-cell; //IE9 fallback\n  flex:     1;\n  min-width: 0;\n  vertical-align: top; //IE9 fallback\n  width: 100%; // IE9 fallback, it extends the cell to size of the container\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    display: flex;\n    flex-direction: row;\n  }\n}\n.list-view-pf-checkbox {\n  border-right: 1px solid @list-view-divider;\n  float: left; //IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-right: 15px;\n  margin-top: (@grid-gutter-width/2);\n  padding: 3px (@grid-gutter-width/4) 3px 0;\n  .list-view-pf-top-align & {\n    align-self: flex-start;\n  }\n}\n.list-view-pf-description {\n  flex:     1 0 50%;\n  .list-view-pf-stacked & {\n    display: block;\n    flex: none; // Fix FF\n  }\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    display: flex;\n    float: left; //IE9 fallback\n    width: 50%; //IE9 fallback\n  }\n}\n.list-view-pf-left {\n  display: table-cell; //IE9 fallback\n  padding-right: (@grid-gutter-width/2);\n  text-align: center;\n  vertical-align: top; //IE9 fallback\n  .list-view-pf-calendar {\n    font-size: @font-size-small;\n    line-height: 1em;\n    strong {\n      display: block;\n      font-size: (@font-size-h2 * 2);\n      font-weight: 300;\n      line-height: 1em;\n    }\n  }\n  .pficon, .fa {\n    border-radius: 50%;\n    font-size: 2em;\n    // -md is out of alpha order to get correct bg on -danger\n    &.list-view-pf-icon-md {\n      background-color: @alert-info-bg;\n      height: 50px;\n      line-height: 50px;\n      width: 50px;\n    }\n    &.list-view-pf-icon-danger {\n      background-color: @alert-danger-bg;\n      color: @alert-danger-border;\n    }\n    &.list-view-pf-icon-info {\n      color: @alert-info-border;\n    }\n    &.list-view-pf-icon-lg {\n      background-color: @alert-info-bg;\n      height: 60px;\n      line-height: 60px;\n      width: 60px;\n    }\n    &.list-view-pf-icon-sm {\n      border: 2px solid @list-view-accented-border;\n      font-size: 1.4em;\n      height: 30px;\n      line-height: 30px;\n      width: 30px;\n      &:before {\n        display: block;\n        line-height: 26px;\n      }\n    }\n    &.list-view-pf-icon-success {\n      background-color: @alert-success-bg;\n      color: @alert-success-border;\n    }\n    &.list-view-pf-icon-warning {\n      background-color: @alert-warning-bg;\n      color: @alert-warning-border;\n    }\n  }\n}\n.list-view-pf-main-info {\n  align-items: flex-start;\n  display: flex;\n  flex: 1;\n  min-width: 0;\n  padding-bottom: (@grid-gutter-width/2);\n  padding-top: (@grid-gutter-width/2);\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    .list-view-pf-top-align & {\n      align-items: flex-start;\n    }\n  }\n}\n.list-view-pf-stacked {\n  .list-group-item-heading {\n    float: none; // IE9 fallback\n    font-size: @font-size-h3;\n    line-height: 1.2em;\n    margin-bottom: 5px;\n    margin-right: @grid-gutter-width;\n    width: auto; // IE9 fallback\n  }\n  .list-group-item-text {\n    float: none;\n    width: auto;\n  }\n}\n.list-view-pf-view {\n  background: @list-group-top-border;\n  border: none;\n  margin-top: 30px;\n}\n.list-group-item-header {\n  box-sizing: content-box;\n  cursor: pointer;\n  margin: 0 -15px;\n  padding: 0 15px; //filling the width of the list item\n  width: 100%;\n}\n.list-view-pf-expand {\n  cursor: pointer;\n  float: left; //IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-right: 2px;\n  margin-top: (@grid-gutter-width/2);\n  padding: 3px 0;\n  &.active,\n  &:hover {\n    color: @link-color;\n  }\n  .list-view-pf-additional-info-item & {\n    margin: 0;\n    padding: 0;\n  }\n  .fa-angle-right {\n    cursor: pointer;\n    font-size: (@font-size-large+3);\n    margin-right: 5px;\n    margin-top: 2px;\n    width: 10px;\n  }\n}\n.list-group-item-container {\n  background: #fff;\n  border-top: solid 1px @list-view-active-border;\n  box-sizing: content-box;\n  margin: -1px -15px 0;\n  order: 3;\n  padding: 15px;\n  position: relative;\n  width: 100%;\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n//    contenteditable attribute is included anywhere else in the document.\n//    Otherwise it causes space to appear at the top and bottom of elements\n//    that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n//    `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n  &:before,\n  &:after {\n    content: \" \"; // 1\n    display: table; // 2\n  }\n  &:after {\n    clear: both;\n  }\n}\n","//\n// List View Drag and Drop\n// See: https://github.com/marceljuenemann/angular-drag-and-drop-lists\n// --------------------------------------------------\n\n.list-view-pf-dnd {\n  // Override dnd styles\n  .dndDragging {\n    &.drag-original {\n      display: none;\n      // Show when dragging original list items\n      .list-view-pf-dnd-original-items {\n        display: block;\n      }\n    }\n    // Show dragable list items during move operation\n    .list-view-pf-dnd-drag-items {\n      display: inline-block;\n    }\n    // Hide original list items during dnd move operation\n    .list-view-pf-dnd-original-items {\n      display: none;\n    }\n  }\n  // Override dnd placeholder element for dragging list items to\n  .dndPlaceholder {\n    background-color: @color-pf-black-200;\n    padding: 20px 0;\n  }\n  // A handle decoration shown to left of each list items row\n  .list-group-item-header {\n    margin-left: -10px;\n    &:before {\n      background-image: linear-gradient(to bottom, @color-pf-blue-400 60%, @color-pf-white 0%);\n      background-position: left;\n      background-repeat: repeat-y;\n      background-size: 2px 5px;\n      border: 4px solid @color-pf-blue-400;\n      border-color: @color-pf-blue-500;\n      content: \"\";\n      height: 55px;\n      left: 4px;\n      position: absolute;\n      top: 5px;\n      width: 10px;\n    }\n  }\n}\n\n// Always hide dragable list items until shown during dnd move operation\n.list-view-pf-dnd-drag-items {\n  display: none;\n}\n","//\n// Login\n// --------------------------------------------------\n\n.login-pf {\n  height: 100%;\n  #brand {\n    position: relative;\n    top: -70px;\n    img {\n      display: block;\n      height: 18px;\n      margin: 0 auto;\n      max-width: 100%;\n      @media (min-width: @screen-sm-min) {\n        margin: 0;\n        text-align: left;\n      }\n    }\n  }\n  #badge {\n    display: block;\n    margin: 20px auto 70px;\n    position: relative;\n    text-align: center;\n    @media (min-width: @screen-sm-min) {\n      float: right;\n      margin-right: 64px;\n      margin-top: 50px;\n    }\n  }\n  body {\n    background: @login-bg-color url(\"@{img-path}/@{img-bg-login}\") repeat-x 50% 0;\n    background-size: auto;\n    @media (min-width: @screen-sm-min) {\n      background-size: 100% auto;\n    }\n  }\n  .container {\n    background-color: @login-container-bg-color-rgba;\n    clear: right;\n    color: @color-pf-white;\n    padding-bottom: 40px;\n    padding-top: 20px;\n    width: auto;\n    @media (min-width: @screen-sm-min) {\n      bottom: 13%;\n      padding-left: 80px;\n      position: absolute;\n      width: 100%;\n    }\n    .details {\n      p:first-child {\n        border-top: 1px solid fade(@color-pf-white, 30%);\n        padding-top: 25px;\n        margin-top: 25px;\n      }\n      @media (min-width: @screen-sm-min) {\n        p:first-child {\n          border-top: 0;\n          padding-top: 0;\n          margin-top: 0;\n        }\n        border-left: 1px solid fade(@color-pf-white, 30%);\n        padding-left: 40px;\n      }\n      p {\n        margin-bottom: 2px;\n      }\n    }\n    .form-horizontal {\n      .control-label {\n        font-size: (@font-size-base + 1);\n        font-weight: 400;\n        text-align: left;\n      }\n      .form-group:last-child {\n        &,\n        .help-block:last-child {\n          margin-bottom: 0;\n        }\n      }\n    }\n    .help-block {\n      color: @color-pf-white;\n    }\n    .login {\n      @media (min-width: @screen-sm-min) {\n        padding-right: 40px;\n      }\n    }\n    .submit {\n      text-align: right;\n    }\n  }\n}\n\n//\n// Login\n// The following styles are for the new login\n// --------------------------------------------------\n.login-pf-page {\n  .login-pf-brand {\n    margin-top: @login-pf-brand-margin-top;\n    max-width:360px;\n    width: 70%;\n    @media (min-width: @screen-sm-min) {\n      margin-top: @login-pf-brand-desktop-margin-top;\n    }\n  }\n  .login-pf-page-header {\n    margin-bottom: @login-pf-page-header-margin-bottom;\n      @media (min-width: @screen-sm-min) {\n        margin-bottom: @login-pf-page-header-desktop-margin-bottom;\n      }\n    text-align: center;\n    p {\n      color: @color-pf-white;\n      font-size: @font-size-large;\n      margin-left: auto;\n      margin-right: auto;\n      margin-top: @login-pf-page-header-paragraph-margin-top;\n    }\n  }\n  .card-pf {\n    padding: @login-pf-card-pf-padding;\n    margin-bottom: 0;\n    @media (min-width: @screen-sm-min) {\n      padding: @login-pf-card-pf-desktop-padding;\n    }\n    p {\n      color: @color-pf-black-600;\n    }\n  }\n  .form-control {\n    height: ceil((@input-height-base + 10px ));\n  }\n  .checkbox-label {\n    color: @color-pf-black-600;\n    font-weight: 300;\n    margin-bottom: @login-pf-checkbox-label-margin-bottom;\n    @media (min-width: @screen-sm-min) {\n      margin: 0;\n    }\n  }\n  .btn-primary {\n    margin-top: @login-pf-btn-primary-margin-top;\n  }\n  .login-pf-header {\n    margin-bottom: @login-pf-header-margin-bottom;\n    @media (min-width: @screen-sm-min) {\n      margin-bottom:@login-pf-header-desktop-margin-bottom;\n    }\n    display:flex;\n    flex-direction: column;\n    h1, p {\n      text-align: center;\n    }\n    h1 {\n      font-size: @font-size-h3;\n      @media (min-width: @screen-sm-min) {\n        font-size: @font-size-h1;\n      }\n    }\n    //this is ugly but neccessary to get the desired style :(\n    .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {\n      width: auto;\n      align-self: flex-end;\n      .dropdown-toggle {\n        color: @color-pf-black-700;\n        background: none;\n        padding:0 @login-pf-dropdown-toggle-padding-right 0 0;\n        font-weight: 300;\n        &:not(:focus) {\n          box-shadow: none;\n          border: 1px solid transparent;\n        }\n          .caret {\n            right: 0;\n          }\n      }\n    }\n  }\n  .login-pf-signup {\n    margin: @login-pf-signup-margin-top 0 0;\n    font-size: ceil((@font-size-base * 1.25));\n    text-align: center;\n    a {\n      margin-left: @login-pf-signup-a-margin-left;\n    }\n  }\n  .login-pf-settings {\n    display: flex;\n    justify-content: space-between;\n    flex-wrap: wrap;\n  }\n  .login-pf-page-footer {\n    display: flex;\n    justify-content: center;\n    flex-wrap:wrap;\n    &-links {\n      display: flex;\n      margin: @login-pf-page-footer-links-margin-top 0 0 0;\n        li:not(:last-of-type) {\n          position: relative;\n          margin: 0 @login-pf-page-footer-links-li-margin-right 0 0;\n            &:after {\n              content:\".\";\n              color: @color-pf-white;\n              position: absolute;\n              top: 0px;\n              right: -10px;\n            }\n        }\n    }\n    &-link {\n      color: @color-pf-white;\n      font-size: @font-size-large;\n    }\n    &-sso-services {\n      flex: 1 0 100%;\n      margin-top: @login-pf-page-footer-sso-margin-top;\n      text-align: center;\n      color: @color-pf-white;\n      &-logos {\n        display: flex;\n        flex-wrap: wrap;\n        padding: 0;\n        margin: 0;\n        list-style: none;\n        justify-content: center;\n          li {\n            margin: 0 @login-pf-page-footer-sso-logos-li-margin @login-pf-page-footer-sso-logos-li-margin;\n          }\n      }\n    }\n  }//login-pf-footer\n\n\n  // The following styles are for the login page with different account options\n  // --------------------------------------------------------------------------\n\n  &.login-pf-page-accounts {\n    margin-left: @login-pf-page-accounts-margin;\n    margin-right: @login-pf-page-accounts-margin;\n  }\n  .login-pf-accounts {\n    display: flex;\n    justify-content: space-between;\n    flex-wrap: wrap;\n    .login-pf-header, .login-pf-signup {\n      flex-basis: 100%;\n    }\n    max-width: @login-pf-card-pf-max-width;\n    margin-left: auto;\n    margin-right: auto;\n  }\n  .login-pf-social-section {\n    flex-basis: 100%;\n    padding:0;\n    @media (min-width: @screen-sm-min) {\n    flex:0 1 50%;\n    max-width:50%;// this is for IE10/11 that doesn't consider padding with box-sizing on flex-children.\n    }\n    @media (min-width: @screen-sm-min) {\n      &:first-of-type {\n        padding-right: @login-pf-accounts-section-heading-desktop-padding-right;\n      }\n      &:last-of-type {\n        padding-left: ceil((@login-pf-accounts-section-heading-desktop-padding-left - 1px));\n        border-left: 1px solid @color-pf-black-300;\n      }\n    }\n  }//social-section\n  .login-pf-social {\n    margin: @login-pf-social-margin;\n    @media (min-width: @screen-sm-min) {\n      margin: 0;\n      &-double-col {\n        flex-wrap: wrap;\n        display: flex;\n        justify-content: space-between;\n        .login-pf-social-link {\n          flex-basis: 48%;\n        }\n      }\n    }\n\n    &:not(.login-pf-social-all) {\n      .login-pf-social-link-more {\n        display: none;\n      }\n    }\n\n    &-link {\n        margin-bottom: @login-pf-accounts-link-margin-bottom;\n      a {\n        display: block;\n        padding: @login-pf-accounts-link-a-padding 0;\n        font-size: @font-size-large;\n        background: @color-pf-black-150;\n        text-align: center;\n        color: @color-pf-black-600;\n          img {\n            margin: 0 @login-pf-accounts-link-img-margin-right 0 0;\n            width: 20px;\n            height: 20px;\n          }\n          &:hover {\n            text-decoration: none;\n            background: @color-pf-black-200;\n          }\n      }\n    }\n    &-toggle {\n      float: right;\n      padding: 0;\n      .caret {\n        margin-left: @login-pf-accounts-more-caret-margin-left;\n      }\n      &-active {\n        .caret {\n          transform: rotate(-180deg);\n        }\n      }\n    }\n  }\n\n}//login-pf-page\n","//\n// Navbar\n// --------------------------------------------------\n\n.navbar-pf {\n  background: @navbar-pf-bg-color;\n  border: 0;\n  border-radius: 0;\n  border-top: 3px solid @navbar-pf-border-color;\n  margin-bottom: 0;\n  min-height: 0;\n  .navbar-brand {\n    color: @navbar-pf-active-color;\n    height: auto;\n    padding: 12px 0;\n    margin: 0 0 0 20px;\n    img {\n      display: block;\n    }\n  }\n  .navbar-collapse {\n    border-top: 0;\n    .box-shadow(none);\n    padding: 0;\n  }\n  .navbar-header {\n    border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n    float: none;\n  }\n  .navbar-nav {\n    margin: 0;\n    > .active > a,\n    > .active > a:hover,\n    > .active > a:focus {\n      background-color: @navbar-pf-navbar-nav-active-bg-color;\n      color: @navbar-pf-active-color;\n    }\n    > li > a {\n      color: @navbar-pf-color;\n      line-height: 1;\n      padding: 10px 20px;\n      text-shadow: none;\n      &:hover,\n      &:focus {\n        color: @navbar-pf-active-color;\n      }\n    }\n    > .open {\n      > a {\n        &,\n        &:hover,\n        &:focus {\n          background-color: @navbar-pf-navbar-nav-active-bg-color;\n          color: @navbar-pf-active-color;\n        }\n      }\n    }\n .badge {\n    background-color: @notification-badge-color;\n    border-radius: 20px;\n    color: @navbar-pf-vertical-active-color;\n    cursor: pointer;\n    font-size: (@font-size-base - 3);\n    font-weight: 700;\n    left: 26px;\n    margin: 0;\n    padding: 2px 4px;\n    position: absolute;\n    min-width: 10px;\n    min-height: 10px;\n    top: 6px;\n    @media(min-width: @screen-sm-min) {\n      left: auto;\n      right: 6px;\n      top: 3px;\n    }\n    &.badge-pf-bordered {\n      border: 1px solid @navbar-pf-bg-color;\n    }\n}\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      .active .dropdown-menu,\n      .active .navbar-persistent,\n      .open .dropdown-menu {\n        background-color: @navbar-pf-navbar-nav-active-active-bg-color !important;\n        margin-left: 0;\n        padding-bottom: 0;\n        padding-top: 0;\n        > .active > a,\n        .dropdown-submenu.open > a {\n          &,\n          &:hover,\n          &:focus {\n            background-color: @navbar-pf-navbar-nav-active-active-open-bg-color !important;\n            color: @navbar-pf-active-color;\n          }\n        }\n        > li > a {\n          background-color: transparent;\n          border: 0;\n          color: @navbar-pf-color;\n          outline: none;\n          padding-left: 30px;\n          &:hover {\n            color: @navbar-pf-active-color;\n          }\n        }\n        .divider {\n          background-color: @navbar-pf-navbar-header-border-color;\n          margin: 0 1px;\n        }\n        .dropdown-header {\n          padding-bottom: 0;\n          padding-left: 30px;\n        }\n        .dropdown-submenu {\n          &.open .dropdown-toggle {\n            color: @navbar-pf-active-color;\n          }\n          &.pull-left {\n            float: none !important;\n          }\n          > a:after {\n            display: none;\n          }\n          .dropdown-header {\n            padding-left: 45px;\n          }\n          .dropdown-menu {\n            border: 0;\n            bottom: auto;\n            .box-shadow(none);\n            display: block;\n            float: none;\n            margin: 0;\n            min-width: 0;\n            padding: 0;\n            position: relative;\n            left: auto;\n            right: auto;\n            top: auto;\n            > li > a {\n              padding: 5px 15px 5px 45px;\n              line-height: 20px;\n            }\n            .dropdown-menu > li > a {\n              padding-left: 60px;\n            }\n          }\n        }\n      }\n      .active .navbar-persistent {\n        .dropdown-submenu {\n          &.open .dropdown-menu {\n            display: block;\n          }\n          > a:after {\n            display: inline-block !important;\n            position: relative;\n            right: auto;\n            top: 1px;\n          }\n          .dropdown-menu {\n            display: none;\n          }\n          .dropdown-submenu > a:after {\n            display: none !important;\n          }\n        }\n      }\n      .context-bootstrap-select { // Also see bootstrap-select.less\n        .open > .dropdown-menu {\n          background-color: @color-pf-white !important;\n          > .active > a {\n            &,\n            &:active {\n              background-color: @dropdown-link-hover-bg !important;\n              border-color: @dropdown-link-hover-border-color !important;\n              color: @gray-dark !important;\n              small {\n                color: @gray-light !important;\n              }\n            }\n          }\n          > .disabled > a {\n            color: @gray-light !important;\n          }\n          > .selected > a {\n            &,\n            &:active {\n              background-color: @dropdown-link-active-bg !important;\n              border-color: @dropdown-link-active-border-color !important;\n              color: @color-pf-white !important;\n              small {\n                color: fade(@color-pf-white, 50%) !important;\n              }\n            }\n          }\n          li {\n            > a.opt {\n              border-bottom: 1px solid transparent;\n              border-top: 1px solid transparent;\n              color: @gray-dark;\n              padding-left: 10px;\n              padding-right: 10px;\n            }\n            & a {\n              &:active small {\n                color: fade(@color-pf-white, 50%) !important;\n              }\n              &:hover,\n              &:focus {\n                small {\n                  color: @gray-light;\n                }\n              }\n            }\n          }\n        }\n        > .open > .dropdown-menu {\n          padding-bottom: 5px;\n          padding-top: 5px;\n        }\n      }\n    }\n  }\n  .navbar-persistent {\n    display: none;\n  }\n  .active > .navbar-persistent {\n    display: block;\n  }\n  .navbar-primary {\n    float: none;\n    .context {\n      border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n      &.context-bootstrap-select .bootstrap-select.btn-group {\n        &,\n        &[class*=\"span\"] {\n          margin: 8px 20px 9px;\n          width: auto; // known bug:  IE8 will make it as wide as the longest string\n        }\n      }\n    }\n    > li > .navbar-persistent > .dropdown-submenu > a {\n      position: relative;\n      &:after {\n        content: @fa-var-angle-down;\n        display: inline-block;\n        font-family: @icon-font-name-fa;\n        font-weight: normal;\n        @media (max-width: @grid-float-breakpoint-max) {\n          height: 10px;\n          margin-left: 4px;\n          vertical-align: baseline;\n        }\n      }\n    }\n  }\n  .navbar-toggle {\n    border: 0;\n    margin: 0;\n    padding: 10px 20px;\n    &:hover,\n    &:focus {\n      background-color: transparent;\n      outline: none;\n      .icon-bar {\n        .box-shadow(0 0 3px @color-pf-white);\n      }\n    }\n    .icon-bar {\n      background-color: @navbar-pf-icon-bar-bg-color;\n    }\n  }\n  .navbar-utility {\n    border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n    li.dropdown > .dropdown-toggle {\n      padding-left: 36px;\n      position: relative;\n      .pficon-user {\n        left: 20px;\n        position: absolute;\n        top: 10px;\n      }\n    }\n    @media (max-width: @grid-float-breakpoint-max) {\n      > li + li {\n        border-top: 1px solid @navbar-pf-navbar-header-border-color;\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-pf {\n    .navbar-brand {\n      padding: @navbar-pf-navbar-navbar-brand-padding;\n    }\n    .navbar-nav > li > a {\n      padding-bottom: 14px;\n      padding-top: 14px;\n    }\n    .navbar-persistent {\n      font-size: @font-size-large;\n    }\n    .navbar-primary {\n      font-size: @font-size-large;\n      #gradient > .vertical(@navbar-pf-navbar-primary-bg-color-start, @navbar-pf-navbar-primary-bg-color-stop);\n      &.persistent-secondary {\n        .context {\n          .dropdown-menu {\n            top: auto;\n          }\n        }\n        .dropup .dropdown-menu {\n          bottom: -5px;\n          top: auto;\n        }\n        > li {\n          position: static;\n          &.active {\n            margin-bottom: 32px;\n            > .navbar-persistent {\n              display: block;\n              left: 0;\n              position: absolute;\n            }\n          }\n          > .navbar-persistent {\n            background: @navbar-pf-navbar-navbar-persistent-bg-color;\n            border-bottom: 1px solid @navbar-pf-navbar-navbar-persistent-border-color;\n            padding: 0;\n            width: 100%;\n            a {\n              text-decoration: none !important;\n            }\n            > li {\n              &.active {\n                &,\n                &:hover {\n                  .tab-indicator(@background: @nav-tabs-active-link-hover-color, @left: 20px, @right: 20px);\n                }\n                > a,\n                > a:hover,\n                &:hover > a {\n                  color: @link-color !important;\n                }\n                .active > a {\n                  color: @navbar-pf-active-color;\n                }\n              }\n              &.dropdown-submenu {\n                &:hover > .dropdown-menu {\n                  display: none;\n                }\n                &.open {\n                  > .dropdown-menu {\n                    display: block;\n                    left: 20px;\n                    margin-top: 1px;\n                    top: 100%;\n                  }\n                  > .dropdown-toggle {\n                    color: @gray-darker;\n                    &:after {\n                      border-top-color: @gray-darker;\n                    }\n                  }\n                }\n                > .dropdown-toggle {\n                  padding-right: 35px !important;\n                  &:after {\n                    position: absolute;\n                    right: 20px;\n                    top: 10px;\n                  }\n                }\n              }\n              &:hover,\n              &.open {\n                .tab-indicator(@left: 20px, @right: 20px);\n                > a {\n                  color: @gray-darker;\n                  &:after {\n                    border-top-color: @gray-darker;\n                  }\n                }\n              }\n              > a {\n                background-color: transparent;\n                display: block;\n                line-height: 1;\n                padding: 9px 20px;\n                &.dropdown-toggle {\n                  padding-right: 35px;\n                  &:after {\n                    font-size: (@font-size-large + 1);\n                    position: absolute;\n                    right: 20px;\n                    top: 9px;\n                  }\n                }\n                &:hover {\n                  color: @gray-darker;\n                }\n              }\n              a {\n                color: @gray-pf;\n              }\n            }\n          }\n        }\n      }\n      > li > a {\n        border-bottom: 1px solid transparent;\n        border-top: 1px solid transparent;\n        position: relative;\n        margin: -1px 0 0;\n        &:hover {\n          background-color: @navbar-pf-navbar-primary-hover-bg-color-stop;\n          border-top-color: @navbar-pf-navbar-primary-hover-border-color;\n          color: @navbar-pf-color;\n          #gradient > .vertical(@navbar-pf-navbar-primary-hover-bg-color-start, @navbar-pf-navbar-primary-hover-bg-color-stop);\n        }\n      }\n      > .active > a,\n      > .active > a:hover,\n      > .active > a:focus,\n      > .open > a,\n      > .open > a:hover,\n      > .open > a:focus {\n        background-color: @navbar-pf-navbar-primary-active-bg-color-stop;\n        border-bottom-color: @navbar-pf-navbar-primary-active-bg-color-stop;\n        border-top-color: @navbar-pf-navbar-primary-active-border-color;\n        .box-shadow(none);\n        color: @navbar-pf-active-color;\n        #gradient > .vertical(@navbar-pf-navbar-primary-active-bg-color-start, @navbar-pf-navbar-primary-active-bg-color-stop);\n      }\n      li.context {\n        &.context-bootstrap-select .filter-option {\n          max-width: 160px;\n          text-overflow: ellipsis;\n        }\n        &.dropdown {\n          border-bottom: 0;\n        }\n        > a,\n        &.context-bootstrap-select {\n          background-color: @navbar-pf-navbar-primary-context-bg-color-stop;\n          border-bottom-color: @navbar-pf-navbar-primary-context-border-color;\n          border-right: 1px solid @navbar-pf-navbar-primary-context-border-color;\n          border-top-color: @navbar-pf-navbar-primary-context-border-top-color;\n          font-weight: 600;\n          #gradient > .vertical(@navbar-pf-navbar-primary-context-bg-color-start, @navbar-pf-navbar-primary-context-bg-color-stop);\n          &:hover {\n            background-color: @navbar-pf-navbar-primary-context-hover-bg-color-stop;\n            border-bottom-color: @navbar-pf-navbar-primary-context-hover-border-color;\n            border-right-color: @navbar-pf-navbar-primary-context-hover-border-color;\n            border-top-color: @navbar-pf-navbar-primary-context-hover-border-top-color;\n            #gradient > .vertical(@navbar-pf-navbar-primary-context-hover-bg-color-start, @navbar-pf-navbar-primary-context-hover-bg-color-stop);\n          }\n        }\n        &.open > a {\n          background-color: @navbar-pf-navbar-primary-context-active-bg-color-stop;\n          border-bottom-color: @navbar-pf-navbar-primary-context-active-border-color;\n          border-right-color: @navbar-pf-navbar-primary-context-active-border-right-color;\n          border-top-color: @navbar-pf-navbar-primary-context-active-border-top-color;\n          #gradient > .vertical(@navbar-pf-navbar-primary-context-active-bg-color-start, @navbar-pf-navbar-primary-context-active-bg-color-stop);\n        }\n      }\n    }\n    .navbar-utility {\n      border-bottom: 0;\n      font-size: @font-size-small;\n      position: absolute;\n      right: 0;\n      top: 0;\n      > .active > a,\n      > .active > a:hover,\n      > .active > a:focus,\n      > .open > a,\n      > .open > a:hover,\n      > .open > a:focus {\n        background: @navbar-pf-navbar-utility-open-bg-color;\n        color: @navbar-pf-navbar-utility-color;\n      }\n      > li > a {\n        border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n        color: @navbar-pf-navbar-utility-color !important;\n        padding: 7px 10px;\n        &:hover {\n          background: @navbar-pf-navbar-utility-hover-bg-color;\n          border-left-color: @navbar-pf-navbar-utility-hover-border-color;\n        }\n      }\n      > li.open > a {\n        border-left-color: @navbar-pf-navbar-utility-open-border-color;\n        color: @navbar-pf-active-color !important;\n      }\n      li.dropdown > .dropdown-toggle {\n        padding-left: 26px;\n        .pficon-user {\n          left: 10px;\n          top: 7px;\n        }\n      }\n      .open .dropdown-menu {\n        left: auto;\n        right: 0;\n        .dropdown-menu {\n          left: auto;\n          right: 100%;\n        }\n      }\n    }\n    .navbar-utility .open .dropdown-menu {\n        border-top-width: 0;\n    }\n    .open {\n      &.bootstrap-select .dropdown-menu,\n      .dropdown-submenu > .dropdown-menu {\n        border-top-width: 1px !important;\n      }\n    }\n  }\n}\n@media (max-width: 360px) {\n  .navbar-pf {\n    .navbar-brand {\n      margin-left: 10px;\n      width: 75%;\n      img {\n        height: auto;\n        max-width: 100%;\n      }\n    }\n    .navbar-toggle {\n      padding-left: 0;\n    }\n  }\n}\n","// Variables\n// --------------------------\n\n@fa-font-path:        \"../fonts\";\n@fa-font-size-base:   14px;\n@fa-line-height-base: 1;\n//@fa-font-path:        \"//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts\"; // for referencing Bootstrap CDN font files directly\n@fa-css-prefix:       fa;\n@fa-version:          \"4.7.0\";\n@fa-border-color:     #eee;\n@fa-inverse:          #fff;\n@fa-li-width:         (30em / 14);\n\n@fa-var-500px: \"\\f26e\";\n@fa-var-address-book: \"\\f2b9\";\n@fa-var-address-book-o: \"\\f2ba\";\n@fa-var-address-card: \"\\f2bb\";\n@fa-var-address-card-o: \"\\f2bc\";\n@fa-var-adjust: \"\\f042\";\n@fa-var-adn: \"\\f170\";\n@fa-var-align-center: \"\\f037\";\n@fa-var-align-justify: \"\\f039\";\n@fa-var-align-left: \"\\f036\";\n@fa-var-align-right: \"\\f038\";\n@fa-var-amazon: \"\\f270\";\n@fa-var-ambulance: \"\\f0f9\";\n@fa-var-american-sign-language-interpreting: \"\\f2a3\";\n@fa-var-anchor: \"\\f13d\";\n@fa-var-android: \"\\f17b\";\n@fa-var-angellist: \"\\f209\";\n@fa-var-angle-double-down: \"\\f103\";\n@fa-var-angle-double-left: \"\\f100\";\n@fa-var-angle-double-right: \"\\f101\";\n@fa-var-angle-double-up: \"\\f102\";\n@fa-var-angle-down: \"\\f107\";\n@fa-var-angle-left: \"\\f104\";\n@fa-var-angle-right: \"\\f105\";\n@fa-var-angle-up: \"\\f106\";\n@fa-var-apple: \"\\f179\";\n@fa-var-archive: \"\\f187\";\n@fa-var-area-chart: \"\\f1fe\";\n@fa-var-arrow-circle-down: \"\\f0ab\";\n@fa-var-arrow-circle-left: \"\\f0a8\";\n@fa-var-arrow-circle-o-down: \"\\f01a\";\n@fa-var-arrow-circle-o-left: \"\\f190\";\n@fa-var-arrow-circle-o-right: \"\\f18e\";\n@fa-var-arrow-circle-o-up: \"\\f01b\";\n@fa-var-arrow-circle-right: \"\\f0a9\";\n@fa-var-arrow-circle-up: \"\\f0aa\";\n@fa-var-arrow-down: \"\\f063\";\n@fa-var-arrow-left: \"\\f060\";\n@fa-var-arrow-right: \"\\f061\";\n@fa-var-arrow-up: \"\\f062\";\n@fa-var-arrows: \"\\f047\";\n@fa-var-arrows-alt: \"\\f0b2\";\n@fa-var-arrows-h: \"\\f07e\";\n@fa-var-arrows-v: \"\\f07d\";\n@fa-var-asl-interpreting: \"\\f2a3\";\n@fa-var-assistive-listening-systems: \"\\f2a2\";\n@fa-var-asterisk: \"\\f069\";\n@fa-var-at: \"\\f1fa\";\n@fa-var-audio-description: \"\\f29e\";\n@fa-var-automobile: \"\\f1b9\";\n@fa-var-backward: \"\\f04a\";\n@fa-var-balance-scale: \"\\f24e\";\n@fa-var-ban: \"\\f05e\";\n@fa-var-bandcamp: \"\\f2d5\";\n@fa-var-bank: \"\\f19c\";\n@fa-var-bar-chart: \"\\f080\";\n@fa-var-bar-chart-o: \"\\f080\";\n@fa-var-barcode: \"\\f02a\";\n@fa-var-bars: \"\\f0c9\";\n@fa-var-bath: \"\\f2cd\";\n@fa-var-bathtub: \"\\f2cd\";\n@fa-var-battery: \"\\f240\";\n@fa-var-battery-0: \"\\f244\";\n@fa-var-battery-1: \"\\f243\";\n@fa-var-battery-2: \"\\f242\";\n@fa-var-battery-3: \"\\f241\";\n@fa-var-battery-4: \"\\f240\";\n@fa-var-battery-empty: \"\\f244\";\n@fa-var-battery-full: \"\\f240\";\n@fa-var-battery-half: \"\\f242\";\n@fa-var-battery-quarter: \"\\f243\";\n@fa-var-battery-three-quarters: \"\\f241\";\n@fa-var-bed: \"\\f236\";\n@fa-var-beer: \"\\f0fc\";\n@fa-var-behance: \"\\f1b4\";\n@fa-var-behance-square: \"\\f1b5\";\n@fa-var-bell: \"\\f0f3\";\n@fa-var-bell-o: \"\\f0a2\";\n@fa-var-bell-slash: \"\\f1f6\";\n@fa-var-bell-slash-o: \"\\f1f7\";\n@fa-var-bicycle: \"\\f206\";\n@fa-var-binoculars: \"\\f1e5\";\n@fa-var-birthday-cake: \"\\f1fd\";\n@fa-var-bitbucket: \"\\f171\";\n@fa-var-bitbucket-square: \"\\f172\";\n@fa-var-bitcoin: \"\\f15a\";\n@fa-var-black-tie: \"\\f27e\";\n@fa-var-blind: \"\\f29d\";\n@fa-var-bluetooth: \"\\f293\";\n@fa-var-bluetooth-b: \"\\f294\";\n@fa-var-bold: \"\\f032\";\n@fa-var-bolt: \"\\f0e7\";\n@fa-var-bomb: \"\\f1e2\";\n@fa-var-book: \"\\f02d\";\n@fa-var-bookmark: \"\\f02e\";\n@fa-var-bookmark-o: \"\\f097\";\n@fa-var-braille: \"\\f2a1\";\n@fa-var-briefcase: \"\\f0b1\";\n@fa-var-btc: \"\\f15a\";\n@fa-var-bug: \"\\f188\";\n@fa-var-building: \"\\f1ad\";\n@fa-var-building-o: \"\\f0f7\";\n@fa-var-bullhorn: \"\\f0a1\";\n@fa-var-bullseye: \"\\f140\";\n@fa-var-bus: \"\\f207\";\n@fa-var-buysellads: \"\\f20d\";\n@fa-var-cab: \"\\f1ba\";\n@fa-var-calculator: \"\\f1ec\";\n@fa-var-calendar: \"\\f073\";\n@fa-var-calendar-check-o: \"\\f274\";\n@fa-var-calendar-minus-o: \"\\f272\";\n@fa-var-calendar-o: \"\\f133\";\n@fa-var-calendar-plus-o: \"\\f271\";\n@fa-var-calendar-times-o: \"\\f273\";\n@fa-var-camera: \"\\f030\";\n@fa-var-camera-retro: \"\\f083\";\n@fa-var-car: \"\\f1b9\";\n@fa-var-caret-down: \"\\f0d7\";\n@fa-var-caret-left: \"\\f0d9\";\n@fa-var-caret-right: \"\\f0da\";\n@fa-var-caret-square-o-down: \"\\f150\";\n@fa-var-caret-square-o-left: \"\\f191\";\n@fa-var-caret-square-o-right: \"\\f152\";\n@fa-var-caret-square-o-up: \"\\f151\";\n@fa-var-caret-up: \"\\f0d8\";\n@fa-var-cart-arrow-down: \"\\f218\";\n@fa-var-cart-plus: \"\\f217\";\n@fa-var-cc: \"\\f20a\";\n@fa-var-cc-amex: \"\\f1f3\";\n@fa-var-cc-diners-club: \"\\f24c\";\n@fa-var-cc-discover: \"\\f1f2\";\n@fa-var-cc-jcb: \"\\f24b\";\n@fa-var-cc-mastercard: \"\\f1f1\";\n@fa-var-cc-paypal: \"\\f1f4\";\n@fa-var-cc-stripe: \"\\f1f5\";\n@fa-var-cc-visa: \"\\f1f0\";\n@fa-var-certificate: \"\\f0a3\";\n@fa-var-chain: \"\\f0c1\";\n@fa-var-chain-broken: \"\\f127\";\n@fa-var-check: \"\\f00c\";\n@fa-var-check-circle: \"\\f058\";\n@fa-var-check-circle-o: \"\\f05d\";\n@fa-var-check-square: \"\\f14a\";\n@fa-var-check-square-o: \"\\f046\";\n@fa-var-chevron-circle-down: \"\\f13a\";\n@fa-var-chevron-circle-left: \"\\f137\";\n@fa-var-chevron-circle-right: \"\\f138\";\n@fa-var-chevron-circle-up: \"\\f139\";\n@fa-var-chevron-down: \"\\f078\";\n@fa-var-chevron-left: \"\\f053\";\n@fa-var-chevron-right: \"\\f054\";\n@fa-var-chevron-up: \"\\f077\";\n@fa-var-child: \"\\f1ae\";\n@fa-var-chrome: \"\\f268\";\n@fa-var-circle: \"\\f111\";\n@fa-var-circle-o: \"\\f10c\";\n@fa-var-circle-o-notch: \"\\f1ce\";\n@fa-var-circle-thin: \"\\f1db\";\n@fa-var-clipboard: \"\\f0ea\";\n@fa-var-clock-o: \"\\f017\";\n@fa-var-clone: \"\\f24d\";\n@fa-var-close: \"\\f00d\";\n@fa-var-cloud: \"\\f0c2\";\n@fa-var-cloud-download: \"\\f0ed\";\n@fa-var-cloud-upload: \"\\f0ee\";\n@fa-var-cny: \"\\f157\";\n@fa-var-code: \"\\f121\";\n@fa-var-code-fork: \"\\f126\";\n@fa-var-codepen: \"\\f1cb\";\n@fa-var-codiepie: \"\\f284\";\n@fa-var-coffee: \"\\f0f4\";\n@fa-var-cog: \"\\f013\";\n@fa-var-cogs: \"\\f085\";\n@fa-var-columns: \"\\f0db\";\n@fa-var-comment: \"\\f075\";\n@fa-var-comment-o: \"\\f0e5\";\n@fa-var-commenting: \"\\f27a\";\n@fa-var-commenting-o: \"\\f27b\";\n@fa-var-comments: \"\\f086\";\n@fa-var-comments-o: \"\\f0e6\";\n@fa-var-compass: \"\\f14e\";\n@fa-var-compress: \"\\f066\";\n@fa-var-connectdevelop: \"\\f20e\";\n@fa-var-contao: \"\\f26d\";\n@fa-var-copy: \"\\f0c5\";\n@fa-var-copyright: \"\\f1f9\";\n@fa-var-creative-commons: \"\\f25e\";\n@fa-var-credit-card: \"\\f09d\";\n@fa-var-credit-card-alt: \"\\f283\";\n@fa-var-crop: \"\\f125\";\n@fa-var-crosshairs: \"\\f05b\";\n@fa-var-css3: \"\\f13c\";\n@fa-var-cube: \"\\f1b2\";\n@fa-var-cubes: \"\\f1b3\";\n@fa-var-cut: \"\\f0c4\";\n@fa-var-cutlery: \"\\f0f5\";\n@fa-var-dashboard: \"\\f0e4\";\n@fa-var-dashcube: \"\\f210\";\n@fa-var-database: \"\\f1c0\";\n@fa-var-deaf: \"\\f2a4\";\n@fa-var-deafness: \"\\f2a4\";\n@fa-var-dedent: \"\\f03b\";\n@fa-var-delicious: \"\\f1a5\";\n@fa-var-desktop: \"\\f108\";\n@fa-var-deviantart: \"\\f1bd\";\n@fa-var-diamond: \"\\f219\";\n@fa-var-digg: \"\\f1a6\";\n@fa-var-dollar: \"\\f155\";\n@fa-var-dot-circle-o: \"\\f192\";\n@fa-var-download: \"\\f019\";\n@fa-var-dribbble: \"\\f17d\";\n@fa-var-drivers-license: \"\\f2c2\";\n@fa-var-drivers-license-o: \"\\f2c3\";\n@fa-var-dropbox: \"\\f16b\";\n@fa-var-drupal: \"\\f1a9\";\n@fa-var-edge: \"\\f282\";\n@fa-var-edit: \"\\f044\";\n@fa-var-eercast: \"\\f2da\";\n@fa-var-eject: \"\\f052\";\n@fa-var-ellipsis-h: \"\\f141\";\n@fa-var-ellipsis-v: \"\\f142\";\n@fa-var-empire: \"\\f1d1\";\n@fa-var-envelope: \"\\f0e0\";\n@fa-var-envelope-o: \"\\f003\";\n@fa-var-envelope-open: \"\\f2b6\";\n@fa-var-envelope-open-o: \"\\f2b7\";\n@fa-var-envelope-square: \"\\f199\";\n@fa-var-envira: \"\\f299\";\n@fa-var-eraser: \"\\f12d\";\n@fa-var-etsy: \"\\f2d7\";\n@fa-var-eur: \"\\f153\";\n@fa-var-euro: \"\\f153\";\n@fa-var-exchange: \"\\f0ec\";\n@fa-var-exclamation: \"\\f12a\";\n@fa-var-exclamation-circle: \"\\f06a\";\n@fa-var-exclamation-triangle: \"\\f071\";\n@fa-var-expand: \"\\f065\";\n@fa-var-expeditedssl: \"\\f23e\";\n@fa-var-external-link: \"\\f08e\";\n@fa-var-external-link-square: \"\\f14c\";\n@fa-var-eye: \"\\f06e\";\n@fa-var-eye-slash: \"\\f070\";\n@fa-var-eyedropper: \"\\f1fb\";\n@fa-var-fa: \"\\f2b4\";\n@fa-var-facebook: \"\\f09a\";\n@fa-var-facebook-f: \"\\f09a\";\n@fa-var-facebook-official: \"\\f230\";\n@fa-var-facebook-square: \"\\f082\";\n@fa-var-fast-backward: \"\\f049\";\n@fa-var-fast-forward: \"\\f050\";\n@fa-var-fax: \"\\f1ac\";\n@fa-var-feed: \"\\f09e\";\n@fa-var-female: \"\\f182\";\n@fa-var-fighter-jet: \"\\f0fb\";\n@fa-var-file: \"\\f15b\";\n@fa-var-file-archive-o: \"\\f1c6\";\n@fa-var-file-audio-o: \"\\f1c7\";\n@fa-var-file-code-o: \"\\f1c9\";\n@fa-var-file-excel-o: \"\\f1c3\";\n@fa-var-file-image-o: \"\\f1c5\";\n@fa-var-file-movie-o: \"\\f1c8\";\n@fa-var-file-o: \"\\f016\";\n@fa-var-file-pdf-o: \"\\f1c1\";\n@fa-var-file-photo-o: \"\\f1c5\";\n@fa-var-file-picture-o: \"\\f1c5\";\n@fa-var-file-powerpoint-o: \"\\f1c4\";\n@fa-var-file-sound-o: \"\\f1c7\";\n@fa-var-file-text: \"\\f15c\";\n@fa-var-file-text-o: \"\\f0f6\";\n@fa-var-file-video-o: \"\\f1c8\";\n@fa-var-file-word-o: \"\\f1c2\";\n@fa-var-file-zip-o: \"\\f1c6\";\n@fa-var-files-o: \"\\f0c5\";\n@fa-var-film: \"\\f008\";\n@fa-var-filter: \"\\f0b0\";\n@fa-var-fire: \"\\f06d\";\n@fa-var-fire-extinguisher: \"\\f134\";\n@fa-var-firefox: \"\\f269\";\n@fa-var-first-order: \"\\f2b0\";\n@fa-var-flag: \"\\f024\";\n@fa-var-flag-checkered: \"\\f11e\";\n@fa-var-flag-o: \"\\f11d\";\n@fa-var-flash: \"\\f0e7\";\n@fa-var-flask: \"\\f0c3\";\n@fa-var-flickr: \"\\f16e\";\n@fa-var-floppy-o: \"\\f0c7\";\n@fa-var-folder: \"\\f07b\";\n@fa-var-folder-o: \"\\f114\";\n@fa-var-folder-open: \"\\f07c\";\n@fa-var-folder-open-o: \"\\f115\";\n@fa-var-font: \"\\f031\";\n@fa-var-font-awesome: \"\\f2b4\";\n@fa-var-fonticons: \"\\f280\";\n@fa-var-fort-awesome: \"\\f286\";\n@fa-var-forumbee: \"\\f211\";\n@fa-var-forward: \"\\f04e\";\n@fa-var-foursquare: \"\\f180\";\n@fa-var-free-code-camp: \"\\f2c5\";\n@fa-var-frown-o: \"\\f119\";\n@fa-var-futbol-o: \"\\f1e3\";\n@fa-var-gamepad: \"\\f11b\";\n@fa-var-gavel: \"\\f0e3\";\n@fa-var-gbp: \"\\f154\";\n@fa-var-ge: \"\\f1d1\";\n@fa-var-gear: \"\\f013\";\n@fa-var-gears: \"\\f085\";\n@fa-var-genderless: \"\\f22d\";\n@fa-var-get-pocket: \"\\f265\";\n@fa-var-gg: \"\\f260\";\n@fa-var-gg-circle: \"\\f261\";\n@fa-var-gift: \"\\f06b\";\n@fa-var-git: \"\\f1d3\";\n@fa-var-git-square: \"\\f1d2\";\n@fa-var-github: \"\\f09b\";\n@fa-var-github-alt: \"\\f113\";\n@fa-var-github-square: \"\\f092\";\n@fa-var-gitlab: \"\\f296\";\n@fa-var-gittip: \"\\f184\";\n@fa-var-glass: \"\\f000\";\n@fa-var-glide: \"\\f2a5\";\n@fa-var-glide-g: \"\\f2a6\";\n@fa-var-globe: \"\\f0ac\";\n@fa-var-google: \"\\f1a0\";\n@fa-var-google-plus: \"\\f0d5\";\n@fa-var-google-plus-circle: \"\\f2b3\";\n@fa-var-google-plus-official: \"\\f2b3\";\n@fa-var-google-plus-square: \"\\f0d4\";\n@fa-var-google-wallet: \"\\f1ee\";\n@fa-var-graduation-cap: \"\\f19d\";\n@fa-var-gratipay: \"\\f184\";\n@fa-var-grav: \"\\f2d6\";\n@fa-var-group: \"\\f0c0\";\n@fa-var-h-square: \"\\f0fd\";\n@fa-var-hacker-news: \"\\f1d4\";\n@fa-var-hand-grab-o: \"\\f255\";\n@fa-var-hand-lizard-o: \"\\f258\";\n@fa-var-hand-o-down: \"\\f0a7\";\n@fa-var-hand-o-left: \"\\f0a5\";\n@fa-var-hand-o-right: \"\\f0a4\";\n@fa-var-hand-o-up: \"\\f0a6\";\n@fa-var-hand-paper-o: \"\\f256\";\n@fa-var-hand-peace-o: \"\\f25b\";\n@fa-var-hand-pointer-o: \"\\f25a\";\n@fa-var-hand-rock-o: \"\\f255\";\n@fa-var-hand-scissors-o: \"\\f257\";\n@fa-var-hand-spock-o: \"\\f259\";\n@fa-var-hand-stop-o: \"\\f256\";\n@fa-var-handshake-o: \"\\f2b5\";\n@fa-var-hard-of-hearing: \"\\f2a4\";\n@fa-var-hashtag: \"\\f292\";\n@fa-var-hdd-o: \"\\f0a0\";\n@fa-var-header: \"\\f1dc\";\n@fa-var-headphones: \"\\f025\";\n@fa-var-heart: \"\\f004\";\n@fa-var-heart-o: \"\\f08a\";\n@fa-var-heartbeat: \"\\f21e\";\n@fa-var-history: \"\\f1da\";\n@fa-var-home: \"\\f015\";\n@fa-var-hospital-o: \"\\f0f8\";\n@fa-var-hotel: \"\\f236\";\n@fa-var-hourglass: \"\\f254\";\n@fa-var-hourglass-1: \"\\f251\";\n@fa-var-hourglass-2: \"\\f252\";\n@fa-var-hourglass-3: \"\\f253\";\n@fa-var-hourglass-end: \"\\f253\";\n@fa-var-hourglass-half: \"\\f252\";\n@fa-var-hourglass-o: \"\\f250\";\n@fa-var-hourglass-start: \"\\f251\";\n@fa-var-houzz: \"\\f27c\";\n@fa-var-html5: \"\\f13b\";\n@fa-var-i-cursor: \"\\f246\";\n@fa-var-id-badge: \"\\f2c1\";\n@fa-var-id-card: \"\\f2c2\";\n@fa-var-id-card-o: \"\\f2c3\";\n@fa-var-ils: \"\\f20b\";\n@fa-var-image: \"\\f03e\";\n@fa-var-imdb: \"\\f2d8\";\n@fa-var-inbox: \"\\f01c\";\n@fa-var-indent: \"\\f03c\";\n@fa-var-industry: \"\\f275\";\n@fa-var-info: \"\\f129\";\n@fa-var-info-circle: \"\\f05a\";\n@fa-var-inr: \"\\f156\";\n@fa-var-instagram: \"\\f16d\";\n@fa-var-institution: \"\\f19c\";\n@fa-var-internet-explorer: \"\\f26b\";\n@fa-var-intersex: \"\\f224\";\n@fa-var-ioxhost: \"\\f208\";\n@fa-var-italic: \"\\f033\";\n@fa-var-joomla: \"\\f1aa\";\n@fa-var-jpy: \"\\f157\";\n@fa-var-jsfiddle: \"\\f1cc\";\n@fa-var-key: \"\\f084\";\n@fa-var-keyboard-o: \"\\f11c\";\n@fa-var-krw: \"\\f159\";\n@fa-var-language: \"\\f1ab\";\n@fa-var-laptop: \"\\f109\";\n@fa-var-lastfm: \"\\f202\";\n@fa-var-lastfm-square: \"\\f203\";\n@fa-var-leaf: \"\\f06c\";\n@fa-var-leanpub: \"\\f212\";\n@fa-var-legal: \"\\f0e3\";\n@fa-var-lemon-o: \"\\f094\";\n@fa-var-level-down: \"\\f149\";\n@fa-var-level-up: \"\\f148\";\n@fa-var-life-bouy: \"\\f1cd\";\n@fa-var-life-buoy: \"\\f1cd\";\n@fa-var-life-ring: \"\\f1cd\";\n@fa-var-life-saver: \"\\f1cd\";\n@fa-var-lightbulb-o: \"\\f0eb\";\n@fa-var-line-chart: \"\\f201\";\n@fa-var-link: \"\\f0c1\";\n@fa-var-linkedin: \"\\f0e1\";\n@fa-var-linkedin-square: \"\\f08c\";\n@fa-var-linode: \"\\f2b8\";\n@fa-var-linux: \"\\f17c\";\n@fa-var-list: \"\\f03a\";\n@fa-var-list-alt: \"\\f022\";\n@fa-var-list-ol: \"\\f0cb\";\n@fa-var-list-ul: \"\\f0ca\";\n@fa-var-location-arrow: \"\\f124\";\n@fa-var-lock: \"\\f023\";\n@fa-var-long-arrow-down: \"\\f175\";\n@fa-var-long-arrow-left: \"\\f177\";\n@fa-var-long-arrow-right: \"\\f178\";\n@fa-var-long-arrow-up: \"\\f176\";\n@fa-var-low-vision: \"\\f2a8\";\n@fa-var-magic: \"\\f0d0\";\n@fa-var-magnet: \"\\f076\";\n@fa-var-mail-forward: \"\\f064\";\n@fa-var-mail-reply: \"\\f112\";\n@fa-var-mail-reply-all: \"\\f122\";\n@fa-var-male: \"\\f183\";\n@fa-var-map: \"\\f279\";\n@fa-var-map-marker: \"\\f041\";\n@fa-var-map-o: \"\\f278\";\n@fa-var-map-pin: \"\\f276\";\n@fa-var-map-signs: \"\\f277\";\n@fa-var-mars: \"\\f222\";\n@fa-var-mars-double: \"\\f227\";\n@fa-var-mars-stroke: \"\\f229\";\n@fa-var-mars-stroke-h: \"\\f22b\";\n@fa-var-mars-stroke-v: \"\\f22a\";\n@fa-var-maxcdn: \"\\f136\";\n@fa-var-meanpath: \"\\f20c\";\n@fa-var-medium: \"\\f23a\";\n@fa-var-medkit: \"\\f0fa\";\n@fa-var-meetup: \"\\f2e0\";\n@fa-var-meh-o: \"\\f11a\";\n@fa-var-mercury: \"\\f223\";\n@fa-var-microchip: \"\\f2db\";\n@fa-var-microphone: \"\\f130\";\n@fa-var-microphone-slash: \"\\f131\";\n@fa-var-minus: \"\\f068\";\n@fa-var-minus-circle: \"\\f056\";\n@fa-var-minus-square: \"\\f146\";\n@fa-var-minus-square-o: \"\\f147\";\n@fa-var-mixcloud: \"\\f289\";\n@fa-var-mobile: \"\\f10b\";\n@fa-var-mobile-phone: \"\\f10b\";\n@fa-var-modx: \"\\f285\";\n@fa-var-money: \"\\f0d6\";\n@fa-var-moon-o: \"\\f186\";\n@fa-var-mortar-board: \"\\f19d\";\n@fa-var-motorcycle: \"\\f21c\";\n@fa-var-mouse-pointer: \"\\f245\";\n@fa-var-music: \"\\f001\";\n@fa-var-navicon: \"\\f0c9\";\n@fa-var-neuter: \"\\f22c\";\n@fa-var-newspaper-o: \"\\f1ea\";\n@fa-var-object-group: \"\\f247\";\n@fa-var-object-ungroup: \"\\f248\";\n@fa-var-odnoklassniki: \"\\f263\";\n@fa-var-odnoklassniki-square: \"\\f264\";\n@fa-var-opencart: \"\\f23d\";\n@fa-var-openid: \"\\f19b\";\n@fa-var-opera: \"\\f26a\";\n@fa-var-optin-monster: \"\\f23c\";\n@fa-var-outdent: \"\\f03b\";\n@fa-var-pagelines: \"\\f18c\";\n@fa-var-paint-brush: \"\\f1fc\";\n@fa-var-paper-plane: \"\\f1d8\";\n@fa-var-paper-plane-o: \"\\f1d9\";\n@fa-var-paperclip: \"\\f0c6\";\n@fa-var-paragraph: \"\\f1dd\";\n@fa-var-paste: \"\\f0ea\";\n@fa-var-pause: \"\\f04c\";\n@fa-var-pause-circle: \"\\f28b\";\n@fa-var-pause-circle-o: \"\\f28c\";\n@fa-var-paw: \"\\f1b0\";\n@fa-var-paypal: \"\\f1ed\";\n@fa-var-pencil: \"\\f040\";\n@fa-var-pencil-square: \"\\f14b\";\n@fa-var-pencil-square-o: \"\\f044\";\n@fa-var-percent: \"\\f295\";\n@fa-var-phone: \"\\f095\";\n@fa-var-phone-square: \"\\f098\";\n@fa-var-photo: \"\\f03e\";\n@fa-var-picture-o: \"\\f03e\";\n@fa-var-pie-chart: \"\\f200\";\n@fa-var-pied-piper: \"\\f2ae\";\n@fa-var-pied-piper-alt: \"\\f1a8\";\n@fa-var-pied-piper-pp: \"\\f1a7\";\n@fa-var-pinterest: \"\\f0d2\";\n@fa-var-pinterest-p: \"\\f231\";\n@fa-var-pinterest-square: \"\\f0d3\";\n@fa-var-plane: \"\\f072\";\n@fa-var-play: \"\\f04b\";\n@fa-var-play-circle: \"\\f144\";\n@fa-var-play-circle-o: \"\\f01d\";\n@fa-var-plug: \"\\f1e6\";\n@fa-var-plus: \"\\f067\";\n@fa-var-plus-circle: \"\\f055\";\n@fa-var-plus-square: \"\\f0fe\";\n@fa-var-plus-square-o: \"\\f196\";\n@fa-var-podcast: \"\\f2ce\";\n@fa-var-power-off: \"\\f011\";\n@fa-var-print: \"\\f02f\";\n@fa-var-product-hunt: \"\\f288\";\n@fa-var-puzzle-piece: \"\\f12e\";\n@fa-var-qq: \"\\f1d6\";\n@fa-var-qrcode: \"\\f029\";\n@fa-var-question: \"\\f128\";\n@fa-var-question-circle: \"\\f059\";\n@fa-var-question-circle-o: \"\\f29c\";\n@fa-var-quora: \"\\f2c4\";\n@fa-var-quote-left: \"\\f10d\";\n@fa-var-quote-right: \"\\f10e\";\n@fa-var-ra: \"\\f1d0\";\n@fa-var-random: \"\\f074\";\n@fa-var-ravelry: \"\\f2d9\";\n@fa-var-rebel: \"\\f1d0\";\n@fa-var-recycle: \"\\f1b8\";\n@fa-var-reddit: \"\\f1a1\";\n@fa-var-reddit-alien: \"\\f281\";\n@fa-var-reddit-square: \"\\f1a2\";\n@fa-var-refresh: \"\\f021\";\n@fa-var-registered: \"\\f25d\";\n@fa-var-remove: \"\\f00d\";\n@fa-var-renren: \"\\f18b\";\n@fa-var-reorder: \"\\f0c9\";\n@fa-var-repeat: \"\\f01e\";\n@fa-var-reply: \"\\f112\";\n@fa-var-reply-all: \"\\f122\";\n@fa-var-resistance: \"\\f1d0\";\n@fa-var-retweet: \"\\f079\";\n@fa-var-rmb: \"\\f157\";\n@fa-var-road: \"\\f018\";\n@fa-var-rocket: \"\\f135\";\n@fa-var-rotate-left: \"\\f0e2\";\n@fa-var-rotate-right: \"\\f01e\";\n@fa-var-rouble: \"\\f158\";\n@fa-var-rss: \"\\f09e\";\n@fa-var-rss-square: \"\\f143\";\n@fa-var-rub: \"\\f158\";\n@fa-var-ruble: \"\\f158\";\n@fa-var-rupee: \"\\f156\";\n@fa-var-s15: \"\\f2cd\";\n@fa-var-safari: \"\\f267\";\n@fa-var-save: \"\\f0c7\";\n@fa-var-scissors: \"\\f0c4\";\n@fa-var-scribd: \"\\f28a\";\n@fa-var-search: \"\\f002\";\n@fa-var-search-minus: \"\\f010\";\n@fa-var-search-plus: \"\\f00e\";\n@fa-var-sellsy: \"\\f213\";\n@fa-var-send: \"\\f1d8\";\n@fa-var-send-o: \"\\f1d9\";\n@fa-var-server: \"\\f233\";\n@fa-var-share: \"\\f064\";\n@fa-var-share-alt: \"\\f1e0\";\n@fa-var-share-alt-square: \"\\f1e1\";\n@fa-var-share-square: \"\\f14d\";\n@fa-var-share-square-o: \"\\f045\";\n@fa-var-shekel: \"\\f20b\";\n@fa-var-sheqel: \"\\f20b\";\n@fa-var-shield: \"\\f132\";\n@fa-var-ship: \"\\f21a\";\n@fa-var-shirtsinbulk: \"\\f214\";\n@fa-var-shopping-bag: \"\\f290\";\n@fa-var-shopping-basket: \"\\f291\";\n@fa-var-shopping-cart: \"\\f07a\";\n@fa-var-shower: \"\\f2cc\";\n@fa-var-sign-in: \"\\f090\";\n@fa-var-sign-language: \"\\f2a7\";\n@fa-var-sign-out: \"\\f08b\";\n@fa-var-signal: \"\\f012\";\n@fa-var-signing: \"\\f2a7\";\n@fa-var-simplybuilt: \"\\f215\";\n@fa-var-sitemap: \"\\f0e8\";\n@fa-var-skyatlas: \"\\f216\";\n@fa-var-skype: \"\\f17e\";\n@fa-var-slack: \"\\f198\";\n@fa-var-sliders: \"\\f1de\";\n@fa-var-slideshare: \"\\f1e7\";\n@fa-var-smile-o: \"\\f118\";\n@fa-var-snapchat: \"\\f2ab\";\n@fa-var-snapchat-ghost: \"\\f2ac\";\n@fa-var-snapchat-square: \"\\f2ad\";\n@fa-var-snowflake-o: \"\\f2dc\";\n@fa-var-soccer-ball-o: \"\\f1e3\";\n@fa-var-sort: \"\\f0dc\";\n@fa-var-sort-alpha-asc: \"\\f15d\";\n@fa-var-sort-alpha-desc: \"\\f15e\";\n@fa-var-sort-amount-asc: \"\\f160\";\n@fa-var-sort-amount-desc: \"\\f161\";\n@fa-var-sort-asc: \"\\f0de\";\n@fa-var-sort-desc: \"\\f0dd\";\n@fa-var-sort-down: \"\\f0dd\";\n@fa-var-sort-numeric-asc: \"\\f162\";\n@fa-var-sort-numeric-desc: \"\\f163\";\n@fa-var-sort-up: \"\\f0de\";\n@fa-var-soundcloud: \"\\f1be\";\n@fa-var-space-shuttle: \"\\f197\";\n@fa-var-spinner: \"\\f110\";\n@fa-var-spoon: \"\\f1b1\";\n@fa-var-spotify: \"\\f1bc\";\n@fa-var-square: \"\\f0c8\";\n@fa-var-square-o: \"\\f096\";\n@fa-var-stack-exchange: \"\\f18d\";\n@fa-var-stack-overflow: \"\\f16c\";\n@fa-var-star: \"\\f005\";\n@fa-var-star-half: \"\\f089\";\n@fa-var-star-half-empty: \"\\f123\";\n@fa-var-star-half-full: \"\\f123\";\n@fa-var-star-half-o: \"\\f123\";\n@fa-var-star-o: \"\\f006\";\n@fa-var-steam: \"\\f1b6\";\n@fa-var-steam-square: \"\\f1b7\";\n@fa-var-step-backward: \"\\f048\";\n@fa-var-step-forward: \"\\f051\";\n@fa-var-stethoscope: \"\\f0f1\";\n@fa-var-sticky-note: \"\\f249\";\n@fa-var-sticky-note-o: \"\\f24a\";\n@fa-var-stop: \"\\f04d\";\n@fa-var-stop-circle: \"\\f28d\";\n@fa-var-stop-circle-o: \"\\f28e\";\n@fa-var-street-view: \"\\f21d\";\n@fa-var-strikethrough: \"\\f0cc\";\n@fa-var-stumbleupon: \"\\f1a4\";\n@fa-var-stumbleupon-circle: \"\\f1a3\";\n@fa-var-subscript: \"\\f12c\";\n@fa-var-subway: \"\\f239\";\n@fa-var-suitcase: \"\\f0f2\";\n@fa-var-sun-o: \"\\f185\";\n@fa-var-superpowers: \"\\f2dd\";\n@fa-var-superscript: \"\\f12b\";\n@fa-var-support: \"\\f1cd\";\n@fa-var-table: \"\\f0ce\";\n@fa-var-tablet: \"\\f10a\";\n@fa-var-tachometer: \"\\f0e4\";\n@fa-var-tag: \"\\f02b\";\n@fa-var-tags: \"\\f02c\";\n@fa-var-tasks: \"\\f0ae\";\n@fa-var-taxi: \"\\f1ba\";\n@fa-var-telegram: \"\\f2c6\";\n@fa-var-television: \"\\f26c\";\n@fa-var-tencent-weibo: \"\\f1d5\";\n@fa-var-terminal: \"\\f120\";\n@fa-var-text-height: \"\\f034\";\n@fa-var-text-width: \"\\f035\";\n@fa-var-th: \"\\f00a\";\n@fa-var-th-large: \"\\f009\";\n@fa-var-th-list: \"\\f00b\";\n@fa-var-themeisle: \"\\f2b2\";\n@fa-var-thermometer: \"\\f2c7\";\n@fa-var-thermometer-0: \"\\f2cb\";\n@fa-var-thermometer-1: \"\\f2ca\";\n@fa-var-thermometer-2: \"\\f2c9\";\n@fa-var-thermometer-3: \"\\f2c8\";\n@fa-var-thermometer-4: \"\\f2c7\";\n@fa-var-thermometer-empty: \"\\f2cb\";\n@fa-var-thermometer-full: \"\\f2c7\";\n@fa-var-thermometer-half: \"\\f2c9\";\n@fa-var-thermometer-quarter: \"\\f2ca\";\n@fa-var-thermometer-three-quarters: \"\\f2c8\";\n@fa-var-thumb-tack: \"\\f08d\";\n@fa-var-thumbs-down: \"\\f165\";\n@fa-var-thumbs-o-down: \"\\f088\";\n@fa-var-thumbs-o-up: \"\\f087\";\n@fa-var-thumbs-up: \"\\f164\";\n@fa-var-ticket: \"\\f145\";\n@fa-var-times: \"\\f00d\";\n@fa-var-times-circle: \"\\f057\";\n@fa-var-times-circle-o: \"\\f05c\";\n@fa-var-times-rectangle: \"\\f2d3\";\n@fa-var-times-rectangle-o: \"\\f2d4\";\n@fa-var-tint: \"\\f043\";\n@fa-var-toggle-down: \"\\f150\";\n@fa-var-toggle-left: \"\\f191\";\n@fa-var-toggle-off: \"\\f204\";\n@fa-var-toggle-on: \"\\f205\";\n@fa-var-toggle-right: \"\\f152\";\n@fa-var-toggle-up: \"\\f151\";\n@fa-var-trademark: \"\\f25c\";\n@fa-var-train: \"\\f238\";\n@fa-var-transgender: \"\\f224\";\n@fa-var-transgender-alt: \"\\f225\";\n@fa-var-trash: \"\\f1f8\";\n@fa-var-trash-o: \"\\f014\";\n@fa-var-tree: \"\\f1bb\";\n@fa-var-trello: \"\\f181\";\n@fa-var-tripadvisor: \"\\f262\";\n@fa-var-trophy: \"\\f091\";\n@fa-var-truck: \"\\f0d1\";\n@fa-var-try: \"\\f195\";\n@fa-var-tty: \"\\f1e4\";\n@fa-var-tumblr: \"\\f173\";\n@fa-var-tumblr-square: \"\\f174\";\n@fa-var-turkish-lira: \"\\f195\";\n@fa-var-tv: \"\\f26c\";\n@fa-var-twitch: \"\\f1e8\";\n@fa-var-twitter: \"\\f099\";\n@fa-var-twitter-square: \"\\f081\";\n@fa-var-umbrella: \"\\f0e9\";\n@fa-var-underline: \"\\f0cd\";\n@fa-var-undo: \"\\f0e2\";\n@fa-var-universal-access: \"\\f29a\";\n@fa-var-university: \"\\f19c\";\n@fa-var-unlink: \"\\f127\";\n@fa-var-unlock: \"\\f09c\";\n@fa-var-unlock-alt: \"\\f13e\";\n@fa-var-unsorted: \"\\f0dc\";\n@fa-var-upload: \"\\f093\";\n@fa-var-usb: \"\\f287\";\n@fa-var-usd: \"\\f155\";\n@fa-var-user: \"\\f007\";\n@fa-var-user-circle: \"\\f2bd\";\n@fa-var-user-circle-o: \"\\f2be\";\n@fa-var-user-md: \"\\f0f0\";\n@fa-var-user-o: \"\\f2c0\";\n@fa-var-user-plus: \"\\f234\";\n@fa-var-user-secret: \"\\f21b\";\n@fa-var-user-times: \"\\f235\";\n@fa-var-users: \"\\f0c0\";\n@fa-var-vcard: \"\\f2bb\";\n@fa-var-vcard-o: \"\\f2bc\";\n@fa-var-venus: \"\\f221\";\n@fa-var-venus-double: \"\\f226\";\n@fa-var-venus-mars: \"\\f228\";\n@fa-var-viacoin: \"\\f237\";\n@fa-var-viadeo: \"\\f2a9\";\n@fa-var-viadeo-square: \"\\f2aa\";\n@fa-var-video-camera: \"\\f03d\";\n@fa-var-vimeo: \"\\f27d\";\n@fa-var-vimeo-square: \"\\f194\";\n@fa-var-vine: \"\\f1ca\";\n@fa-var-vk: \"\\f189\";\n@fa-var-volume-control-phone: \"\\f2a0\";\n@fa-var-volume-down: \"\\f027\";\n@fa-var-volume-off: \"\\f026\";\n@fa-var-volume-up: \"\\f028\";\n@fa-var-warning: \"\\f071\";\n@fa-var-wechat: \"\\f1d7\";\n@fa-var-weibo: \"\\f18a\";\n@fa-var-weixin: \"\\f1d7\";\n@fa-var-whatsapp: \"\\f232\";\n@fa-var-wheelchair: \"\\f193\";\n@fa-var-wheelchair-alt: \"\\f29b\";\n@fa-var-wifi: \"\\f1eb\";\n@fa-var-wikipedia-w: \"\\f266\";\n@fa-var-window-close: \"\\f2d3\";\n@fa-var-window-close-o: \"\\f2d4\";\n@fa-var-window-maximize: \"\\f2d0\";\n@fa-var-window-minimize: \"\\f2d1\";\n@fa-var-window-restore: \"\\f2d2\";\n@fa-var-windows: \"\\f17a\";\n@fa-var-won: \"\\f159\";\n@fa-var-wordpress: \"\\f19a\";\n@fa-var-wpbeginner: \"\\f297\";\n@fa-var-wpexplorer: \"\\f2de\";\n@fa-var-wpforms: \"\\f298\";\n@fa-var-wrench: \"\\f0ad\";\n@fa-var-xing: \"\\f168\";\n@fa-var-xing-square: \"\\f169\";\n@fa-var-y-combinator: \"\\f23b\";\n@fa-var-y-combinator-square: \"\\f1d4\";\n@fa-var-yahoo: \"\\f19e\";\n@fa-var-yc: \"\\f23b\";\n@fa-var-yc-square: \"\\f1d4\";\n@fa-var-yelp: \"\\f1e9\";\n@fa-var-yen: \"\\f157\";\n@fa-var-yoast: \"\\f2b1\";\n@fa-var-youtube: \"\\f167\";\n@fa-var-youtube-play: \"\\f16a\";\n@fa-var-youtube-square: \"\\f166\";\n\n","//\n// Navbar Alt\n// --------------------------------------------------\n\n.navbar-pf-alt {\n  background-color: @navbar-pf-alt-bg-color;\n  background-image: @navbar-pf-alt-bg-img;\n  background-repeat: @navbar-pf-alt-bg-repeat;\n  background-size: @navbar-pf-alt-bg-size;\n  border: none;\n  border-radius: 0;\n  border-top: @navbar-pf-alt-border-width @navbar-pf-alt-border-style @navbar-pf-alt-border-color;\n  margin-bottom: 0;\n\n  .infotip.bottom-right .arrow {\n    left: 90%;\n  }\n\n  .layout-pf-alt-fixed & {\n    left: 0;\n    position: fixed;\n    right: 0;\n    top: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n\n  .nav {\n    &.navbar-nav > li > .dropdown-menu.infotip {\n      margin-top: 0;\n    }\n\n    .nav-item-iconic {\n      cursor: pointer;\n      line-height: 1;\n      max-height: (@navbar-pf-alt-height - @navbar-pf-alt-border-width); // to keep Firefox from oversizing icons\n      padding: @navbar-pf-alt-nav-item-iconic-padding;\n      position: relative;\n\n      &:hover,\n      &:focus {\n        background-color: transparent;\n\n        .caret,\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @navbar-pf-alt-active-color;\n        }\n      }\n\n      .badge {\n        background-color: @notification-badge-color;\n        border-radius: 20px;\n        color: @navbar-pf-alt-active-color;\n        cursor: pointer;\n        font-size: (@font-size-base - 3);\n        font-weight: 700;\n        margin: 0 0 -11px -12px;\n        min-width: 0;\n        padding: 2px 4px;\n      }\n\n      .caret,\n      .fa,\n      .pficon {\n        color: @navbar-pf-alt-color;\n        font-size: (@font-size-base + 4);\n      }\n\n      .caret {\n        font-size: @font-size-base;\n        width: auto;\n      }\n\n    }\n\n    .open > .nav-item-iconic {\n      &,\n      &:hover,\n      &:focus {\n        background: transparent;\n\n        .caret,\n        .fa,\n        .pficon {\n          color: @navbar-pf-alt-active-color;\n        }\n      }\n    }\n  }\n\n  .navbar-brand {\n    color: @navbar-pf-alt-navbar-brand-color;\n    height: auto;\n    margin: @navbar-pf-alt-navbar-brand-margin;\n    min-height: @navbar-pf-alt-navbar-brand-min-height;\n    padding: @navbar-pf-alt-navbar-brand-padding;\n\n    .navbar-brand-name {\n      display: inline;\n      margin-left: @navbar-pf-alt-navbar-brand-name-margin;\n      margin-right: @navbar-pf-alt-navbar-brand-name-margin;\n      // hide once screen gets too small\n      @media (max-width: @navbar-pf-alt-navbar-brand-name-breakpoint) {\n        display: none;\n      }\n    }\n\n    .navbar-brand-icon {\n      display: inline;\n      margin-left: @navbar-pf-alt-navbar-brand-icon-margin;\n      margin-right: @navbar-pf-alt-navbar-brand-icon-margin;\n    }\n  }\n\n  .navbar-iconic {\n    margin-right: 0;\n  }\n\n  .navbar-toggle {\n    border: 0;\n    display: block;\n    float: left;\n    margin: @navbar-pf-alt-navbar-toggle-margin;\n\n    &:hover,\n    &:focus {\n      .icon-bar {\n        background: @navbar-pf-alt-navbar-toggle-icon-bar-hover-bg;\n      }\n    }\n\n    + .navbar-brand {\n      margin-left: 0;\n    }\n\n    .icon-bar {\n      background: @navbar-pf-alt-color;\n    }\n  }\n}\n","//\n//  Navigation Bar for use with vertical navigation\n// --------------------------------------------------\n\n.navbar-pf-vertical {\n  background-color: @navbar-pf-vertical-bg-color;\n  border: none;\n  border-radius: 0;\n  border-top: @navbar-pf-vertical-border-width @navbar-pf-vertical-border-style @navbar-pf-vertical-border-color;\n  margin-bottom: 0;\n\n  .infotip.bottom-right .arrow {\n    left: 90%;\n  }\n\n  .layout-pf-fixed & {\n    left: 0;\n    position: fixed;\n    right: 0;\n    top: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n\n  .nav {\n    &.navbar-nav > li > .dropdown-menu.infotip {\n      margin-top: 0;\n    }\n\n    .nav-item-iconic {\n      color: @navbar-pf-vertical-color;\n      cursor: pointer;\n      line-height: 1;\n      max-height: (@navbar-pf-vertical-height - @navbar-pf-vertical-border-width); // to keep Firefox from oversizing icons\n      padding: @navbar-pf-vertical-nav-item-iconic-padding;\n      position: relative;\n\n      &:hover,\n      &:focus {\n        color: @navbar-pf-vertical-active-color;\n        background-color: transparent;\n\n        .caret,\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @navbar-pf-vertical-active-color;\n        }\n      }\n\n      .badge {\n        background-color: @notification-badge-color;\n        border-radius: 20px;\n        color: @navbar-pf-vertical-active-color;\n        cursor: pointer;\n        font-size: (@font-size-base - 3);\n        font-weight: 700;\n        left: 20px;\n        margin: 0;\n        padding: 2px 4px;\n        position: absolute;\n        min-width: 10px;\n        min-height: 10px;\n        top: 18px;\n        &.badge-pf-bordered {\n          border: 1px solid @navbar-pf-vertical-bg-color;\n        }\n      }\n\n      .caret,\n      .fa,\n      .pficon {\n        color: @navbar-pf-vertical-color;\n        font-size: (@font-size-base + 4);\n      }\n\n      .caret {\n        font-size: @font-size-base;\n        width: auto;\n      }\n\n    }\n\n    .open > .nav-item-iconic {\n      &,\n      &:hover,\n      &:focus {\n        background: transparent;\n\n        .caret,\n        .fa,\n        .pficon {\n          color: @navbar-pf-vertical-active-color;\n        }\n      }\n    }\n  }\n\n  .navbar-brand {\n    color: @navbar-pf-vertical-navbar-brand-color;\n    height: auto;\n    margin: @navbar-pf-vertical-navbar-brand-margin;\n    min-height: @navbar-pf-vertical-navbar-brand-min-height;\n    padding: @navbar-pf-vertical-navbar-brand-padding;\n\n    .navbar-brand-name {\n      display: inline-block;\n      margin: @navbar-pf-vertical-navbar-brand-name-margin;\n      // hide once screen gets too small\n      @media (max-width: @navbar-pf-vertical-navbar-brand-name-breakpoint) {\n        display: none;\n      }\n    }\n\n    .navbar-brand-icon {\n      display: inline-block;\n      margin: @navbar-pf-vertical-navbar-brand-icon-margin;\n      max-height: @navbar-pf-vertical-navbar-brand-max-height;\n    }\n\n    .navbar-brand-txt {\n      line-height: @navbar-pf-vertical-navbar-brand-line-height;\n    }\n  }\n\n  .navbar-iconic {\n    margin-right: 0;\n  }\n\n  .navbar-toggle {\n    border: 0;\n    display: block;\n    float: left;\n    margin: @navbar-pf-vertical-navbar-toggle-margin;\n\n    &:hover,\n    &:focus {\n      .icon-bar {\n        background: @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n      }\n    }\n\n    + .navbar-brand {\n      margin-left: 0;\n    }\n\n    .icon-bar {\n      background: @navbar-pf-vertical-color;\n    }\n  }\n}\n","//\n// Nav Vertical Alt\n// --------------------------------------------------\n\n.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt {\n  transition: @flyout-transition-pf;\n\n  &.collapsed .list-group-item .list-group-item-value {\n    transition: opacity 0ms 100ms, opacity 100ms linear;\n  }\n\n  .list-group-item {\n    .badge {\n      transition: @flyout-transition-pf;\n    }\n\n    .list-group-item-value {\n      transition: opacity 500ms ease-out;\n      transition-delay: 150ms;\n    }\n  }\n}\n\n.nav-pf-vertical-alt {\n  background: @nav-pf-vertical-alt-bg-color;\n\n  .ie9.layout-pf-alt-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n\n  .layout-pf-alt-fixed & {\n    border-right: 1px solid @nav-pf-vertical-alt-border-color;\n    bottom: 0;\n    overflow-x: hidden;\n    overflow-y: auto;\n    left: 0;\n    position: fixed;\n    top: @navbar-pf-alt-height; // move out of way of navbar-pf-alt\n    width: @nav-pf-vertical-alt-width;\n    z-index: @zindex-navbar-fixed;\n\n    &.collapsed {\n      width: @nav-pf-vertical-alt-collapsed-width !important;\n\n      .list-group-item {\n        .badge {\n          padding: 2px 3px;\n          right: 21px;\n          top: 36px;\n        }\n\n        .list-group-item-value {\n          opacity: 0;\n        }\n      }\n    }\n\n    &.hidden {\n      display: none;\n\n      &.show-mobile-nav {\n        box-shadow: 0 0 3px fade(@color-pf-black, 15%);\n        display: block !important;\n      }\n    }\n  }\n\n  .layout-pf-alt-fixed-with-footer & {\n    bottom: @footer-pf-alt-height;\n  }\n\n  .list-group {\n    border-top: 0;\n    margin-bottom: 0;\n  }\n\n  .list-group-item {\n    padding: 0;\n\n    a {\n      color: @gray-dark;\n      display: block;\n      font-size: (@font-size-base + 2);\n      height: @nav-pf-vertical-alt-link-height;\n      padding: @nav-pf-vertical-alt-link-padding;\n      position: relative;\n      white-space: nowrap;\n\n      &:focus {\n        color: @gray-dark;\n        text-decoration: none;\n      }\n\n      &:hover {\n        color: @nav-pf-vertical-alt-active-color;\n        text-decoration: none;\n      }\n    }\n\n    &.active {\n      background-color: @nav-pf-vertical-alt-bg-color;\n      border-color: @list-group-border;\n\n      &:before {\n        background: @nav-pf-vertical-alt-active-color;\n        content: \" \";\n        display: block;\n        height: 100%;\n        left: 0;\n        position: absolute;\n        top: 0;\n        width: 5px;\n      }\n\n      a {\n        color: @nav-pf-vertical-alt-active-color;\n      }\n    }\n\n    .badge {\n      background: @gray-dark;\n      border: 1px solid @nav-pf-vertical-alt-bg-color;\n      border-radius: 3px;\n      color: @nav-pf-vertical-alt-badge-color;\n      font-weight: 700;\n      font-size: (@font-size-base - 3);\n      padding: 5px;\n      position: absolute;\n      right: 15px;\n      text-align: center;\n      top: 21px;\n\n      &.notifications {\n        background: @notification-badge-color;\n      }\n    }\n\n    .fa,\n    .glyphicon,\n    .pficon {\n      float: left;\n      font-size: 18px;\n      line-height: 30px;\n      margin-right: 10px;\n      text-align: center;\n      width: 18px;\n    }\n\n    .list-group-item-value {\n      display: inline-block;\n      line-height: 30px;\n      opacity: 1;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      width: 140px;\n    }\n\n  }\n\n  .list-group-item-separator {\n    border-top-width: 5px;\n  }\n\n  .sidebar-pf & {\n    margin-left: (-(@grid-gutter-width / 2));\n    margin-right: (-(@grid-gutter-width / 2));\n  }\n}\n","//\n// Notifications Drawer\n// --------------------------------------------------\n\n\n.drawer-pf {\n  background-color: @color-pf-black-100;\n  border: 1px solid @card-pf-border-color;\n  .box-shadow(0 6px 12px fade(@color-pf-black, 17.5%));\n  overflow-y: auto;\n  position: absolute;\n  right: 0;\n  width: 320px;\n  z-index: 2;\n  .panel {\n    border-bottom: none;\n    border-left: none;\n    border-right: none;\n  }\n  .panel-group .panel-heading + .panel-collapse .panel-body {\n    border-top: none;\n    border-bottom: 1px solid @card-pf-border-color;\n    padding: 0;\n  }\n  .panel-counter {\n    display: block;\n    font-style: italic;\n    line-height: 1.2;\n    padding-left: 18px;\n    padding-top: 5px;\n  }\n  .panel-heading { border-bottom: 1px solid @card-pf-border-color; }\n  .panel-group {\n    bottom: 0;\n    margin-bottom: 0;\n    position: absolute;\n    top: 25px; // Height of Notifications Drawer box.\n    width: 100%;\n  }\n  .panel-title a {\n    cursor: pointer;\n    display: block;\n  }\n  &.drawer-pf-expanded {\n    @media (max-width: @screen-xs-max) {\n      left:0;\n      width: 100%;\n    }\n    @media (min-width: @screen-xs-max) {\n      left: 270px;\n    } // if the drawer is expanded and the screen is reduced this ensures it switches to full width on smaller screens.\n    width: inherit;\n    .drawer-pf-toggle-expand:before {\n      content: \"\\f101\";\n    }\n  }\n  .blank-slate-pf {\n    border: 0;\n    margin-bottom: 0;\n    padding: 30px;\n\n    .blank-slate-pf-icon {\n      font-size: 3em;\n      line-height: 1em;\n    }\n\n    h1 {\n      font-size: 1em;\n      margin-bottom: 0;\n      margin-top: 15px;\n    }\n  }\n}\n.drawer-pf-close, .drawer-pf-toggle-expand {\n  color: @gray-darker;\n  cursor: pointer;\n  line-height: inherit;\n  padding: 2px 10px;\n  position: absolute;\n  &:hover,\n  &:focus {\n    color: @color-pf-blue-400;\n    text-decoration: none;\n  }\n}\n.drawer-pf-toggle-expand {\n  left: 0;\n  &:before {\n    content: \"\\f100\";\n    font-family: \"FontAwesome\";\n  }\n  &:hover {\n    color: @link-color;\n  }\n}\n.drawer-pf-close {\n  right: 0;\n}\n\n\n.drawer-pf-action {\n  display: flex;\n  border-bottom: 1px solid @card-pf-border-color;\n\n  .btn-link {\n    color: @link-color;\n    padding: 10px 0;\n    .pficon, .fa {\n      margin-right: 3px;\n    }\n    .pficon-close {\n      position: relative;\n      top: 1px;\n    }\n\n    &:hover { color: @link-hover-color; }\n  }\n}\n\n.drawer-pf-action-link {\n  border-left: solid 1px @color-pf-black-300;\n  flex: 1 1 0%;\n  margin: 10px 0;\n  text-align: center;\n\n  &:first-of-type {\n    border-left-width: 0;\n  }\n\n  .btn-link {\n    padding: 0;\n  }\n}\n\n.drawer-pf-loading {\n  color: @gray-pf;\n  font-size: (@font-size-base + 2);\n  padding: 20px 15px;\n}\n\n.drawer-pf-notification {\n  border-bottom: 1px solid @card-pf-border-color;\n  padding: 15px;\n  .date {\n    border-right: 1px solid #aaa;\n    display: inline-block;\n    line-height: 1;\n    margin-right: 5px;\n    padding-right: 9px;\n  }\n  > .dropdown-kebab-pf {\n    margin-top: -3px;\n  }\n\n  .pficon {\n    font-size: @font-size-large;\n    margin-top: 3px;\n  }\n  &:last-of-type {\n    border-bottom: none;\n  }\n  &:hover { background-color: @color-pf-blue-50; }\n  &.unread .drawer-pf-notification-message {\n    font-weight: bold;\n    cursor: pointer;\n  }\n  &.expanded-notification {\n    .date {\n      border-right: none;\n      padding-right: 0;\n    }\n  }\n}\n\n.drawer-pf-notification-content {\n  cursor: default;\n}\n\n.drawer-pf-notification-info,\n.drawer-pf-notification-message {\n  display: block;\n  padding-left: 27px;\n  padding-right: 19px;\n  .expanded-notification & {\n    display: inline-block;\n  }\n}\n\n.drawer-pf-title {\n  background-color: @color-pf-black-100;\n  border-bottom: 1px solid @card-pf-border-color;\n  position: absolute;\n  width: 100%;\n  h3 {\n    font-size: @font-size-base;\n    margin: 0;\n    padding: 6px 15px;\n  }\n}\n\n.drawer-pf-notification.expanded-notification {\n  .drawer-pf-notification-content {\n    display: flex;\n    @media (max-width: @screen-sm-max) {\n      flex-direction: column;\n    }\n    .drawer-pf-notification-message {\n      flex: 1 1;\n    }\n  }\n}\n\n/* Exclusive styles to work with Vertical Navigation */\n.navbar-pf-vertical {\n  .drawer-pf {\n    height: ~\"calc(100vh - @{drawer-pf-top-vertical} - 20px)\";//to create a 20px offset bottom\n    top: @drawer-pf-top-vertical; //menu height;\n      @media (max-width: @screen-xs-max) {\n        width:100%;\n        height: calc(~\"100vh - @{drawer-pf-top-vertical}\");\n      }\n\n  }\n  .nav .drawer-pf-trigger {\n    .drawer-pf-trigger-icon {\n      border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n      border-right: 1px solid @navbar-pf-navbar-utility-border-color;\n      padding-left: 15px;\n      padding-right: 15px;\n    }\n    &.open .drawer-pf-trigger-icon {\n      background-color: @navbar-pf-navbar-utility-hover-bg-color;\n    }\n  }\n}\n\n/* Exclusive styles to work with Horizontal Navigation */\n.navbar-pf {\n  .drawer-pf {\n    height: ~\"calc(100vh - @{drawer-pf-top-horizontal} - 20px)\";\n    top: @drawer-pf-top-horizontal;\n    @media (max-width: @screen-xs-max) {\n      width:100%;\n      height: calc(~\"100vh - @{drawer-pf-top-horizontal} - 32px\");\n      top:calc(~\"@{drawer-pf-top-horizontal} + 8px\");\n    }\n  }\n  .drawer-pf-trigger-icon { cursor: pointer; }\n}\n","//\n// Search\n// --------------------------------------------------\n\n.search-pf {\n  &.has-button {\n    border-collapse: separate;\n    display: table;\n    .form-group {\n      display: table-cell;\n      width: 100%;\n      .btn {\n        .box-shadow(none);\n        float: left;\n        margin-left: -1px;\n        &.btn-lg {\n          font-size: (@font-size-large + .5); // to make button height consistent across browsers!\n        }\n        &.btn-sm {\n          font-size: (@font-size-small - .3); // to make button height consistent across browsers!\n        }\n      }\n      .form-control {\n        float: left;\n      }\n    }\n  }\n  .has-clear {\n    .clear {\n      background: fade(@color-pf-white, 0%); // to make the whole button clickable in IE9+\n      border: 0;\n      height: (@input-height-base - 1);\n      line-height: 1;\n      padding: 0;\n      position: absolute;\n      right: 1px;\n      top: 1px;\n      width: 28px;\n      &:focus {\n        outline: none;\n      }\n    }\n    .form-control {\n      padding-right: 30px;\n      &::-ms-clear {\n        display: none;\n      }\n    }\n    .input-lg + .clear {\n      height: (@input-height-large - 2);\n      width: 28px;\n    }\n    .input-sm + .clear {\n      height: (@input-height-small - 2);\n      width: 28px;\n      span {\n        font-size: (@font-size-base - 2);\n      }\n    }\n    .search-pf-input-group {\n      position: relative;\n    }\n  }\n}\n","//\n// Sidebar\n// --------------------------------------------------\n\n.sidebar-header {\n  border-bottom: 1px solid darken(@page-header-border-color, 2%);\n  padding-bottom: ((@line-height-computed / 2) + 1);\n  margin: ((@line-height-computed * 2) + 10) 0 @line-height-computed;\n  .actions {\n    margin-top: -2px;\n  }\n}\n\n.sidebar-pf {\n  .sidebar-header + .list-group {\n    border-top: 0;\n    margin-top: (-@grid-gutter-width / 2 / 2);\n    .list-group-item {\n      background: transparent;\n      border-color: darken(@page-header-border-color, 2%);\n      padding-left: 0;\n    }\n    .list-group-item-heading {\n      font-size: @font-size-base;\n    }\n  }\n  .nav-category {\n    h2 {\n      color: @dropdown-header-color;\n      font-size: @font-size-base;\n      font-weight: 400;\n      line-height: (@line-height-computed + 1);\n      margin: 0;\n      padding: 8px 0;\n    }\n    + .nav-category {\n      margin-top: (@grid-gutter-width / 4);\n    }\n  }\n  .nav-pills > li {\n    &.active > a {\n      background: @dropdown-link-active-bg !important;\n      border-color: @dropdown-link-active-border-color !important;\n      color: @color-pf-white;\n      @media (min-width: @grid-float-breakpoint) {\n        &:after {\n          content: @fa-var-angle-right;\n          font-family: @icon-font-name-fa;\n          display: block;\n          position: absolute;\n          right: (@grid-gutter-width / 2 / 2);\n          top: 1px;\n        }\n      }\n      .fa {\n        color: @color-pf-white;\n      }\n    }\n    > a {\n      border-bottom: 1px solid transparent;\n      border-radius: 0;\n      border-top: 1px solid transparent;\n      color: @text-color;\n      font-size: (@font-size-base + 1);\n      line-height: (@line-height-computed + 1);\n      padding: 1px (@grid-gutter-width / 2);\n      &:hover {\n        background: @dropdown-link-hover-bg;\n        border-color: @dropdown-link-hover-border-color;\n      }\n      .fa {\n        color: lighten(@gray-pf, 12%);\n        font-size: (@font-size-base + 3);\n        margin-right: (@grid-gutter-width / 4);\n        text-align: center;\n        vertical-align: middle;\n        width: (@font-size-base + 3);\n      }\n    }\n  }\n  .nav-stacked {\n    margin-left: (-(@grid-gutter-width / 2));\n    margin-right: (-(@grid-gutter-width / 2));\n    li + li {\n      margin-top: 0;\n    }\n  }\n  .panel {\n    background: transparent;\n  }\n  .panel-body {\n    padding: 6px (@grid-gutter-width / 2);\n    .nav-pills > li > a {\n      padding-left: (@grid-gutter-width / 2 + 17);\n    }\n  }\n  .panel-heading {\n    padding: 9px (@grid-gutter-width / 2);\n  }\n  .panel-title {\n    font-size: @font-size-base;\n    > a {\n      &:before {\n        display: inline-block;\n        margin-left: 1px;\n        margin-right: 4px;\n        width: 9px;\n      }\n      &.collapsed:before {\n        margin-left: 3px;\n        margin-right: 2px;\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint-max) {\n  .sidebar-header-bleed-left {\n    margin-left: (-(@grid-gutter-width / 2));\n    > h2 {\n      margin-left: (@grid-gutter-width / 2);\n    }\n  }\n  .sidebar-header-bleed-right {\n    margin-right: (-(@grid-gutter-width / 2));\n    .actions {\n      margin-right: (@grid-gutter-width / 2);\n    }\n    > h2 {\n      margin-right: (@grid-gutter-width / 2);\n    }\n    + .list-group {\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n  }\n  .sidebar-pf {\n    .panel-group .panel-default,\n    .treeview {\n      border-left: 0;\n      border-right: 0;\n      margin-left: (-(@grid-gutter-width / 2));\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n    .treeview {\n      margin-top: 5px;\n      .list-group-item {\n        padding-left: (@grid-gutter-width / 2);\n        padding-right: (@grid-gutter-width / 2);\n        &.node-selected:after {\n          content: @fa-var-angle-right;\n          font-family: @icon-font-name-fa;\n          display: block;\n          position: absolute;\n          right: (@grid-gutter-width/2 / 2);\n          top: 1px;\n        }\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint) {\n  .sidebar-pf {\n    background: @sidebar-pf-bg;\n    &.sidebar-pf-left {\n      border-right: 1px solid @sidebar-pf-border-color;\n    }\n    &.sidebar-pf-right {\n      border-left: 1px solid @sidebar-pf-border-color;\n    }\n    > .nav-category,\n    > .nav-stacked {\n      margin-top: 5px;\n    }\n  }\n}\n","//\n// Skip to content\n// --------------------------------------------------\n.skiplink-pf {\n  position: absolute;\n  top: @skiplink-pf-top;\n  left: -300%; /* moves off screen */\n  z-index: @zindex-modal;\n}\n.skiplink-pf:focus {\n  left: @skiplink-pf-left;\n}\n","//\n// Spinner\n// --------------------------------------------------\n\n@keyframes rotation {\n  from {transform: rotate(0deg);}\n  to {transform: rotate(359deg);}\n}\n\n.spinner {\n  animation: rotation 600ms infinite linear;\n  border-bottom: 4px solid fade(@color-pf-black, 25%);\n  border-left: 4px solid fade(@color-pf-black, 25%);\n  border-right: 4px solid fade(@color-pf-black, 25%);\n  border-radius: 100%;\n  border-top: 4px solid fade(@color-pf-black, 75%);\n  height: (@font-size-base * 2);\n  margin: 0 auto;\n  position: relative;\n  width: (@font-size-base * 2);\n  &.spinner-inline {\n    display: inline-block;\n    margin-right: 3px;\n  }\n  &.spinner-lg {\n    border-width: 5px;\n    height: (@font-size-base * 2.5);\n    width: (@font-size-base * 2.5);\n  }\n  &.spinner-sm {\n    border-width: 3px;\n    height: (@font-size-base * 1.5);\n    width: (@font-size-base * 1.5);\n  }\n  &.spinner-xs {\n    border-width: 2px;\n    height: @font-size-base;\n    width: @font-size-base;\n  }\n  &.spinner-inverse {\n    border-bottom-color: fade(@color-pf-white, 25%);\n    border-left-color: fade(@color-pf-white, 25%);\n    border-right-color: fade(@color-pf-white, 25%);\n    border-top-color: fade(@color-pf-white, 75%);\n  }\n}\n\n.ie9 .spinner {\n  background: url(\"@{img-path}/@{img-spinner}\") no-repeat;\n  border: 0;\n  &.spinner-inverse {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse}\");\n  }\n  &.spinner-inverse-lg {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-lg}\");\n  }\n  &.spinner-inverse-sm {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-sm}\");\n  }\n  &.spinner-inverse-xs {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-xs}\");\n  }\n  &.spinner-lg {\n    background-image: url(\"@{img-path}/@{img-spinner-lg}\");\n  }\n  &.spinner-sm {\n    background-image: url(\"@{img-path}/@{img-spinner-sm}\");\n  }\n  &.spinner-xs {\n    background-image: url(\"@{img-path}/@{img-spinner-xs}\");\n  }\n}\n","//\n// Syntax Highlighting for google-code-prettify\n// --------------------------------------------------\n\n.prettyprint {\n  .atn,\n  .com,\n  .fun,\n  .var {\n    color: @syntax-3;\n  }\n\n  .atv,\n  .str {\n    color: @syntax-1;\n  }\n\n  .clo,\n  .dec,\n  .kwd,\n  .opn,\n  .pln,\n  .pun {\n    color: @syntax-2;\n  }\n\n  .lit,\n  .tag,\n  .typ {\n    color: @syntax-4;\n  }\n\n  ol.linenums {\n    margin-bottom: 0;\n  }\n}\n","//\n// Table View\n// --------------------------------------------------\n\n// Keep dataTable class for legacy apps\ntable.dataTable {\n  height: 100%;\n  margin-bottom: 0;\n  max-width: none !important;\n  tbody {\n    > tr {\n      > td {\n        // Styling for inline actions\n        &.table-view-pf-actions {\n          padding: 0;\n          vertical-align: middle;\n        }\n      }\n      &:hover {\n        // Styling when hovering anywhere else on a row\n        > td.table-view-pf-actions {\n          background-color: @table-bg-accent;\n          border-bottom-color: @table-border-color;\n        }\n      }\n    }\n    > tr.selected {\n      color: @color-pf-white;\n      background-color: @color-pf-blue-400;\n      > td {\n        border-bottom-color: @color-pf-blue-500;\n        &.table-view-pf-actions {\n          background-color: @table-bg-accent;\n          border-bottom-color: @table-border-color;\n        }\n      }\n      &:hover {\n        > td {\n          background-color: inherit;\n          border-bottom-color: @color-pf-blue-500;\n          &.table-view-pf-actions {\n            background-color: @table-bg-accent;\n            border-bottom-color: @table-border-color;\n          }\n        }\n      }\n    }\n  }\n  thead {\n    .sorting,\n    .sorting_asc,\n    .sorting_desc,\n    .sorting_asc_disabled,\n    .sorting_desc_disabled {\n      cursor: pointer;\n    }\n    .sorting_asc,\n    .sorting_desc {\n      color: @link-color !important;\n      position: relative;\n      &:after {\n        content: @fa-var-angle-down;\n        font-family: @icon-font-name-fa;\n        font-size: (@font-size-base - 2);\n        font-weight: normal;\n        height: (@font-size-base - 3);\n        left: 7px;\n        line-height: @font-size-base;\n        position: relative;\n        top: 2px;\n        vertical-align: baseline;\n        width: @font-size-base;\n      }\n      &:before {\n        background: @link-color;\n        content: \"\";\n        height: 2px;\n        position: absolute;\n        left: 0;\n        top: 0;\n        width: 100%;\n      }\n    }\n    .sorting_asc:after {\n      content: @fa-var-angle-up;\n      top: -3px;\n    }\n  }\n  th:active {\n    outline: none;\n  }\n}\n\n// Empty table\n.table-view-pf-empty {\n  &.blank-slate-pf {\n    background-color: @table-bg-accent;\n    border: 1px solid @table-border-color;\n    border-radius: 0;\n    margin-top: -1px;\n  }\n}\n\n// Embedded toolbar\n.table-view-pf-toolbar {\n  &.toolbar-pf {\n    background-color: @table-bg-accent;\n    border-bottom: none;\n    border-left: 1px solid @table-border-color;\n    border-right: 1px solid @table-border-color;\n    border-top: 1px solid @table-border-color;\n    box-shadow: none;\n    margin-left: 0px;\n    margin-right: 0px;\n    .toolbar-pf-results {\n      border-top: 1px solid @table-border-color;\n      min-height: 40px;\n      line-height: 40px;\n    }\n  }\n}\n\n// External Toolbar\n.table-view-pf-toolbar-external {\n  &.toolbar-pf {\n    border-bottom: none;\n    border-top: none;\n    box-shadow: none;\n    .toolbar-pf-results {\n      border-top: 1px solid @table-border-color;\n      min-height: 40px;\n      line-height: 40px;\n    }\n  }\n}\n\n.table-view-pf-colvis-menu {\n  > li {\n    padding: 5px 10px;\n    &:hover {\n      background-color: #def3ff;\n    }\n    > input {\n      margin-top: 0;\n      margin-right: 10px;\n      vertical-align: middle;\n    }\n    > label {\n      margin-bottom: 0;\n    }\n  }\n\n}\n\n// Inline action button and kebab\n// Sets button height to 100% of td height in firefox and chrome, but not in IE when wrapping occurs.\n// Button height must be set dynamically in IE to be equal to td height.\n.table-view-pf-actions {\n  background-color: @btn-default-bg; // included just in case there are gaps between the edges of the buttons and the table cell\n  height: 100%;\n  .btn,\n  .dropdown-toggle {\n    border: none;\n    box-shadow: none;\n    height: 100%;\n    width: 100%;\n  }\n  .dropdown,\n  .table-view-pf-btn {\n    height: 100%;\n  }\n  .dropdown-menu.dropdown-menu-right {\n    right: -5px;\n  }\n  &:last-child {\n    width: 24px;\n  }\n}\n\n// Selection column\n.table-view-pf-select {\n  width: 33px;\n}\n\n// Results area containing selected row text\n.table-view-pf-select-results {\n  text-align: right;\n}\n","//\n// Time Picker\n// --------------------------------------------------\n.bootstrap-datetimepicker-widget {\n  a[data-action] {\n    border: 0;\n    box-shadow: none;\n    color: @gray-dark;\n    display: block;\n    padding-bottom: 4px;\n    padding-top: 4px;\n    &:hover { color: @link-color; }\n  }\n  &.dropdown-menu {\n    left: 0!important;\n    padding: 0;\n    width: ~\"calc(100% - 25px)\";\n    &:before, &:after {\n      content: none;\n    }\n    &.top {\n      margin-bottom: -1px;\n    }\n    &.bottom {\n      margin-top: -1px;\n    }\n  }\n  .timepicker-hour {\n    width: 100%;\n    &:after {\n      content: \":\";\n      float: right;\n    }\n  }\n}\n.timepicker-hours,\n.timepicker-minutes {\n  table td {\n    font-weight: bold;\n    line-height: 30px;\n    height: 30px;\n    &:hover { color: @link-color; }\n  }\n  .table-condensed > tbody > tr > td { padding: 0; }\n}\n.time-picker-pf {\n  .input-group-addon {\n    .fa,\n    .pficon { width: 12px; }\n    &:not(.active) { box-shadow: none; }\n  }\n}\n.timepicker-picker {\n  table td {\n    span,\n    a span {\n      height: 24px;\n      line-height: 24px;\n      margin: 0;\n      width: 100%;\n    }\n  }\n  .table-condensed > tbody > tr > td {\n    height: 25px;\n    line-height: 18px;\n    padding: 0;\n  }\n  button[data-action] { // provisional until the button is removed\n    padding-bottom: 0;\n    padding-top: 0;\n  }\n  .separator { display: none; }\n  tr:nth-child(2) td {\n    background-color: @dropdown-link-hover-bg;\n    border-color: @dropdown-link-hover-border-color;\n    border-style: solid;\n    border-width: 1px;\n    border-left: 0;\n    border-right: 0;\n  }\n}\n","//\n// Toast notifications\n// --------------------------------------------------\n\n.toast-pf {\n  background-color: @color-pf-white;\n  border-color: @color-pf-black-400;\n  box-shadow: 0 2px 6px fade(@color-pf-black, 20%);\n  padding-left: 68px; //15px space between the icon and the text\n  margin-bottom: 5px;\n  &.alert-danger > .pficon  { background-color: @alert-danger-border; }\n  &.alert-info > .pficon    { background-color: @alert-info-border; }\n  &.alert-success > .pficon { background-color: @alert-success-border; }\n  &.alert-warning > .pficon { background-color: @alert-warning-border; }\n  .dropdown-kebab-pf { margin-left: 10px; }\n  > .pficon {\n    background-color: @gray-pf;\n    bottom:  -1px;\n    box-shadow: 2px 0 5px -2px fade(@color-pf-black, 20%);\n    left: -1px;\n    padding-top: 10px;\n    text-align: center;\n    top: -1px;\n    width: 53px;\n    &:before { color: fade(@color-pf-white, 74%); }\n  }\n  .toast-pf-action {\n    margin-left: 15px;\n  }\n  .dropdown-kebab-pf .btn-link {\n    padding-top: 0;\n    padding-bottom: 0;\n    vertical-align: text-bottom;\n  }\n  /* Medium devices (desktops, 992px and up) */\n  @media (min-width: @screen-md-min) {\n    display: inline-block;\n  }\n}\n// Sets max width on toast notifications\n.toast-pf-max-width {\n @media (min-width: @screen-md-min) {\n    max-width: 31.1%; // sets the size to 4 cols;\n  }\n}\n// To position the notification on the top right corner, used in context on cards layout\n.toast-pf-top-right {\n  left: (@grid-gutter-width / 2);\n  position: absolute;\n  right: (@grid-gutter-width / 2);\n  top: 12px;\n  z-index: 1055; // More than @zindex-modal\n  /* Medium devices (desktops, 992px and up) */\n  @media (min-width: @screen-md-min) {\n    left: auto;\n  }\n}\n\n.toast-notifications-list-pf {\n  margin-left: (@grid-gutter-width / 2);\n  position: fixed;\n  right: (@grid-gutter-width / 2);\n  top: @toast-notification-top;\n  z-index: 1055;\n  .toast-pf {\n    clear: both;\n    float: right;\n  }\n  @media (min-width: @screen-sm-min) {\n    max-width: calc(50%);\n  }\n  @media (min-width: @screen-md-min) {\n    max-width: calc(33.1% ); // sets the size to 4 cols;\n  }\n}\n","//\n// Toolbar (Filter and view options)\n// --------------------------------------------------\n\n.toolbar-pf {\n  background: @color-pf-white;\n  border-bottom: 1px solid @sidebar-pf-border-color;\n  box-shadow: 0 1px 0px fade(@color-pf-black, 4.5%);\n  padding-top: (@grid-gutter-width/4);\n  .form-group {\n    margin-bottom: (@grid-gutter-width/4);\n    @media (min-width: @grid-float-breakpoint) {\n      border-right: 1px solid @sidebar-pf-border-color;\n      float: left;\n      margin-bottom: 0;\n      padding-left: (@grid-gutter-width/2);\n      padding-right: (@grid-gutter-width/2);\n    }\n    &:last-child {\n      border-right: 0;\n      margin-bottom: 0;\n      padding-right: 0;\n    }\n    .btn,\n    .btn-group {\n      + .btn,\n      + .btn-group { margin-left: 5px; }\n      + .btn-link,\n      + .dropdown { margin-left: 10px; }\n    }\n    .btn-link {\n      color: @gray-darker;\n      font-size: (@font-size-base + 4);\n      line-height: 1;\n      padding: 4px 0;\n      &:active,\n      &:focus,\n      &:hover { color: @link-color; }\n    }\n    .dropdown-kebab-pf .btn-link {\n      padding: 4px (@grid-gutter-width/4);\n      margin-left: (@grid-gutter-width/(-4));\n      margin-right: (@grid-gutter-width/(-4));\n    }\n  }\n}\n.toolbar-pf-actions {\n  display: table;\n  margin-bottom: 10px;\n  width: 100%;\n  @media (min-width: @grid-float-breakpoint) {\n    .toolbar-pf-filter {\n      padding-left: 0;\n    }\n  }\n}\n.toolbar-pf-view-selector {\n  font-size: (@font-size-base + 4);\n  .btn-link.active {\n    color: @link-color;\n    cursor: default;\n  }\n}\n.toolbar-pf-action-right {\n  float: right;\n  @media (max-width: @grid-float-breakpoint) {\n    float: none;\n  }\n}\n.toolbar-pf-find {\n  font-size: (@font-size-base + 2);\n  position: relative;\n}\n.find-pf-dropdown-container {\n  background: @color-pf-white;\n  border: solid 1px @color-pf-black-400;\n  display: none;\n  right: -20px;\n  padding: 5px;\n  position: absolute;\n  top: 35px;\n  width: 300px;\n  z-index: 10000;\n  @media (max-width: @grid-float-breakpoint) {\n    left: 30px;\n    top: -5px;\n    width: calc(100% - 30px);\n  }\n  &:before,\n  &:after {\n    content: \"\";\n    position: absolute;\n  }\n  &:before {\n    border-bottom:11px solid @color-pf-black-400;\n    border-left:11px solid transparent;\n    border-right:11px solid transparent;\n    right: 35px;\n    .toolbar-pf-find:last-child & {\n      right: 15px;\n    }\n    top: -12px;\n    @media (max-width: @grid-float-breakpoint) {\n      border-bottom:11px solid transparent;\n      border-right:11px solid @color-pf-black-400;\n      border-top:11px solid transparent;\n      left: -22px;\n      right: initial;\n      top: 8px;\n    }\n  }\n  &:after {\n    border-bottom:10px solid @color-pf-white;\n    border-left:10px solid transparent;\n    border-right:10px solid transparent;\n    right: 36px;\n    .toolbar-pf-find:last-child & {\n      right: 16px;\n    }\n    top: -10px;\n    @media (max-width: @grid-float-breakpoint) {\n      border-bottom:10px solid transparent;\n      border-right:10px solid @color-pf-white;\n      border-top:10px solid transparent;\n      left: -20px;\n      right: initial;\n      top: 9px;\n    }\n  }\n  input {\n    height: 30px;\n    padding: 5px 117px 5px 5px; // 112px (components) + 5px (offset)\n    width: 100%;\n  }\n  .find-pf-buttons {\n    position: absolute;\n    right: 10px;\n    top: 5px;\n    .btn {\n      border: none;\n      cursor: pointer;\n      margin-left: 0 !important;\n      padding: 0;\n      width: 18px;\n      .fa-angle-up,\n      .fa-angle-down {\n        font-weight: bold;\n        font-size: (@font-size-base + 6);\n      }\n      .pficon-close { font-size: (@font-size-base + 2); }\n    }\n    span {\n      height: 30px;\n      line-height: 30px;\n      vertical-align: middle;\n    }\n    .find-pf-nums {\n      color: @color-pf-black-500;\n      margin-right: 3px;\n    }\n  }\n}\n\n.toolbar-pf-results {\n  border-top: 1px solid @sidebar-pf-border-color;\n  margin-top: (@grid-gutter-width/4);\n  h5,\n  p,\n  ul {\n    display: inline-block;\n    line-height: (@grid-gutter-width/1.5);\n    margin-bottom: 0;\n    margin-top: 0;\n    @media (min-width: @screen-sm-min) {\n      line-height: @grid-gutter-width;\n    }\n  }\n  h5 {\n    font-weight: 700;\n    margin-right: 20px;\n  }\n  .label {\n    font-size: (@font-size-base - 1);\n    a {\n      color: @color-pf-white;\n      display: inline-block;\n      margin-left: 5px;\n    }\n  }\n}\n","//\n//  Vertical navigation\n// --------------------------------------------------\n//\n// Basic Required Layout for Vertical Navigation\n//\n// .navbar navbar-pf-vertical\n//   .navbar-header\n//   .collapse navbar-collapse   <-- necessary for collapsing vertical nav and mobile\n// .nav-pf-vertical [.nav-pf-vertical-callapsible-menus] [.nav-pf-persistent-secondary] [.hidden-icons-pf]\n//   .list-group\n//     .list-group-item [.active] [.secondary-nav-item-pf]\n//       a\n//         [primary icon] <-- Not shown if .hidden-icons-pf above\n//         .list-group-item-value\n//       .nav-pf-secondary-nav  <-- if .secondary-nav-item-pf above\n//         .nav-item-pf-header\n//           .secondary-collapse-toggle-pf data-toggle=\"collapse-secondary-nav\"\n//         .list-group\n//           .list-group-item [.active] [tertiary-nav-item-pf]\n//             a\n//              .list-group-item-value\n//            .nav-pf-tertiary-nav  <-- if .tertiary-nav-item-pf above\n//              .nav-item-pf-header\n//                .tertiary-collapse-toggle-pf data-toggle=\"collapse-tertiary-nav\"\n//              .list-group\n//                .list-group-item [.active] [tertiary-nav-item-pf]\n//                  a\n//                    .list-group-item-value\n//\n// .container-pf-nav-pf-vertical [.nav-pf-persistent-secondary] [.hidden-icons-pf]\n//\n\n.nav-pf-vertical {\n  background: @nav-pf-vertical-bg-color;\n  border-right: 1px solid @nav-pf-vertical-border-color;\n  bottom: 0;\n  left: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n   &.hidden.show-mobile-nav {  // Mobile mode open\n    box-shadow: 0 0 3px fade(@color-pf-black, 15%);\n    display: block !important;\n  }\n  &.hide-nav-pf {  // Used to hide navigation initially to avoid startup flicker\n    visibility: hidden !important;\n  }\n  .list-group {\n    border-top: 0;\n    margin-bottom: 0;\n  }\n  .list-group-item {\n    background-color: transparent;\n    border-color: @nav-pf-vertical-item-border-color;\n    padding: 0;\n    > a {\n      background-color: transparent;\n      color: @nav-pf-vertical-color;\n      cursor: pointer;\n      display: block;\n      font-size: (@font-size-base + 2);\n      font-weight: @nav-pf-vertical-font-weight;\n      height: @nav-pf-vertical-link-height;\n      line-height: 26px;\n      padding: @nav-pf-vertical-link-padding;\n      position: relative;\n      white-space: nowrap;\n      width: @nav-pf-vertical-width;\n      // When flexbox is supported nav item names take up all available space\n      @supports (display: flex) {\n        display: flex;\n        padding-right: 0;\n      }\n      .fa,\n      .glyphicon,\n      .pficon {\n        color: @nav-pf-vertical-icon-color;\n        float: left;\n        font-size: (@font-size-base + 8);\n        line-height: 26px;\n        margin-right: 10px;\n        text-align: center;\n        width: @nav-pf-vertical-icon-width;\n      }\n      &:hover {\n        text-decoration: none;\n      }\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-active-bg-color;\n        color: @nav-pf-vertical-active-color;\n        font-weight: @nav-pf-vertical-active-font-weight;\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @nav-pf-vertical-active-icon-color;\n        }\n      }\n    }\n    &.active {\n      > a:before {\n        background: @nav-pf-vertical-active-before-color;\n        content: \" \";\n        height: 100%;\n        left: 0;\n        position: absolute;\n        top: 0;\n        width: 3px;\n      }\n      &:hover { // to over-ride default list group setting\n        background-color: transparent;\n        border-color: @nav-pf-vertical-item-border-color;\n      }\n    }\n    .list-group-item-value {\n      display: block;\n      line-height: 25px;\n      max-width: 120px;\n      // If flexbox is supported, do not set max-width, take all space with just some right padding\n      @supports (display: flex) {\n        flex: 1;\n        max-width: none;\n        padding-right: 15px;\n      }\n      overflow: hidden;\n      text-overflow: ellipsis;\n    }\n  }\n  .list-group-item-separator {\n    border-top-color: @nav-pf-vertical-item-border-color;\n    border-top-width: 2px;\n  }\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n    .list-group-item > a {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  h5 {\n    color: @nav-pf-vertical-secondary-color;\n    cursor: default;\n    font-size: (@font-size-base + 1);\n    font-weight: 600;\n    margin: @nav-pf-vertical-secondary-list-header-margin;\n  }\n  &.hidden-icons-pf {\n    > .list-group > .list-group-item { // only the primary menu hides icons\n      > a {\n        .fa,\n        .glyphicon,\n        .pficon {\n          display: none;\n        }\n      }\n    }\n    &.collapsed {\n      display: none;\n    }\n  }\n  .badge-container-pf {\n    position: absolute;\n    right: 15px;\n    top: 20px;\n    // If flexbox is supported, use relative positioning to place to the right of the label\n    // and adjust the top position so that the secondary and tertiary nav items don't need to change\n    @supports (display: flex) {\n      padding-left: 0;\n      padding-right: 15px;\n      position: relative;\n      right: 0;\n      margin-top: -3px;\n      top: 5px;\n    }\n    .badge {\n      background: @nav-pf-vertical-badge-bg-color;\n      color: @nav-pf-vertical-badge-color;\n      float: left;\n      font-size: @font-size-base;\n      font-weight: 700;\n      line-height: @line-height-base;\n      margin: 0;\n      padding: 0 7px;\n      text-align: center;\n      .pficon,\n      .fa {\n        font-size: (@font-size-base + 2);\n        height: 20px;\n        line-height: @line-height-base;\n        margin-right: 3px;\n        margin-top: -1px;\n      }\n    }\n  }\n}\n.nav-pf-vertical-tooltip.tooltip {\n  margin-left: 15px;\n  .tooltip-inner {\n    background-color: @color-pf-white;\n    color: @color-pf-black-900;\n  }\n  .tooltip-arrow {\n    border-bottom-color: @color-pf-white;\n    left: calc(50% - 15px) !important;\n  }\n}\n.hover-secondary-nav-pf {\n  width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  &.nav-pf-vertical-with-badges {\n    width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n  }\n}\n.hover-tertiary-nav-pf {\n  width: ~\"calc(@{nav-pf-vertical-width} * 3)\";\n  &.nav-pf-vertical-with-badges {\n    width: ~\"calc(@{nav-pf-vertical-badges-width} * 3)\";\n  }\n  .nav-pf-secondary-nav {\n    width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    .collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  .nav-pf-tertiary-nav {\n    left: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-secondary-nav {\n      width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n      .collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    .nav-pf-tertiary-nav {\n      left: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n    }\n  }\n}\n.nav-pf-vertical.collapsed {\n  width: @nav-pf-vertical-collapsed-width;\n  &.collapsed-secondary-nav-pf { // collapsed state with secondary menu pinned\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.collapsed-tertiary-nav-pf { // collapsed state with tertiary menu pinned\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.hover-secondary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-badges-width} * 2))\";\n    }\n  }\n}\n.show-mobile-nav {\n  &.show-mobile-secondary {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.show-mobile-tertiary {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .mobile-nav-item-pf,\n  .mobile-secondary-item-pf {\n    .nav-pf-secondary-nav {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 4);\n    }\n    > .nav-pf-tertiary-nav {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 8);\n    }\n  }\n  .nav-pf-secondary-nav {\n    left: 0;\n    .secondary-nav-item-pf:hover & {\n      opacity: 0;\n      visibility: hidden;\n    }\n  }\n  .tertiary-nav-item-pf:hover {\n    .nav-pf-tertiary-nav {\n      opacity: 0;\n      visibility: hidden;\n    }\n  }\n  .tertiary-nav-item-pf.mobile-nav-item-pf:hover {\n    .nav-pf-tertiary-nav {\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n}\n.secondary-nav-item-pf {\n  > a {\n    cursor: default;\n    &:after {\n      color: @nav-pf-vertical-secondary-indicator-color;\n      content: @fa-var-angle-right;\n      display: block;\n      font-family: \"FontAwesome\";\n      font-size: (@font-size-base * 2);\n      line-height: 30px;\n      padding: @nav-pf-vertical-secondary-indicator-padding;\n      position: absolute;\n      right: 20px;\n      top: 0;\n    }\n    .list-group-item-value {\n      // If flex box is supported add some padding to account for the submenu indicator\n      @supports (display: flex) {\n        padding-right: 35px;\n      }\n    }\n  }\n  &.active,\n  &:hover {\n    > a {\n      width: ~\"calc(@{nav-pf-vertical-width} + 1px)\";\n      z-index: (@zindex-navbar-fixed + 1);\n      &:after {\n        right: 21px;\n      }\n      .collapsed-secondary-nav-pf & {\n        z-index: 0;\n      }\n      .collapsed-tertiary-nav-pf & {\n        z-index: 0;\n      }\n    }\n  }\n  .nav-pf-vertical-with-badges & {\n    &.active,\n    &:hover {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} + 1px)\";\n      }\n    }\n  }\n}\n.nav-pf-vertical.collapsed-secondary-nav-pf {\n  width: @nav-pf-vertical-width;\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n  }\n  .secondary-nav-item-pf {  // Keep sub-menu indicators below collapsed menu\n    &.active,\n    &.hover {\n      > a {\n        z-index: @zindex-navbar-fixed;\n      }\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .nav-pf-secondary-nav {\n    left: 0;\n  }\n  .nav-pf-tertiary-nav {\n    left: @nav-pf-vertical-width;\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-tertiary-nav {\n      left: @nav-pf-vertical-badges-width;\n    }\n  }\n}\n.nav-pf-vertical.collapsed-tertiary-nav-pf {\n  width: @nav-pf-vertical-width;\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n  }\n  .nav-pf-secondary-nav {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .secondary-nav-item-pf,    // Keep sub-menu indicators below collapsed menu\n  .tertiary-nav-item-pf {\n    &.active,\n    &.hover {\n      > a {\n        z-index: 0;\n      }\n    }\n  }\n}\n.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf {  // Persistent secondary nav settings\n  @media (min-width: @screen-lg-min) { // secondary menu only persistent at lg screen\n    width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n    }\n    &.collapsed-secondary-nav-pf {\n      width: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        width: @nav-pf-vertical-badges-width;\n      }\n      &.hover-tertiary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n        &.nav-pf-vertical-with-badges {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n        }\n      }\n    }\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.collapsed {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n      &.collapsed-secondary-nav-pf {\n        width: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          width: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          width: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.hover-tertiary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n        &.nav-pf-vertical-with-badges {\n          width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-badges-width} * 2))\";\n        }\n      }\n    }\n    &.hover-tertiary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-width} * 3)\";\n      &.nav-pf-vertical-with-badges {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} * 3)\";\n      }\n    }\n    .secondary-nav-item-pf.active {\n      .nav-pf-secondary-nav {\n        visibility: visible;\n        opacity: 1;\n      }\n    }\n  }\n}\n.nav-item-pf-header {\n  color: @nav-pf-vertical-secondary-color;\n  font-size: (@font-size-base + 4);\n  margin: @nav-pf-vertical-secondary-header-margin;\n  > a {\n    cursor: pointer;\n    margin-right: 7px;\n    &:hover,\n    &:focus {\n      color: @link-color;\n      text-decoration: none;\n    }\n  }\n}\n.nav-pf-vertical.collapsed { // Collapsed Primary Menu state\n  width: @nav-pf-vertical-collapsed-width;\n  .list-group-item { // Show only the icons\n    > a {\n      width: @nav-pf-vertical-collapsed-width;\n      > .list-group-item-value {\n        display: none;\n      }\n      > .badge-container-pf {\n        display: none;\n      }\n    }\n    &.secondary-nav-item-pf { // Adjust widths\n      &.active > a,\n      > a {\n        width: @nav-pf-vertical-collapsed-width;\n        &:after {\n          right: 10px;\n        }\n      }\n      &.active,\n      &:hover {\n        > a {\n          width: (@nav-pf-vertical-collapsed-width + 2);\n          &:after {\n            right: 11px;\n          }\n        }\n      }\n    }\n  }\n}\n.nav-pf-secondary-nav {\n  background: @nav-pf-vertical-secondary-bg-color;\n  border: 1px solid @nav-pf-vertical-border-color;\n  border-bottom: none;\n  border-top: none;\n  bottom: 0;\n  display: block;\n  left: @nav-pf-vertical-width;\n  opacity: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  visibility: hidden;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .secondary-nav-item-pf.active & {  // Show secondary menu if active and either is collapsed\n    .collapsed-secondary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 2);\n    }\n    .collapsed-tertiary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n  .secondary-nav-item-pf.is-hover & { // Show secondary menu if hovering\n    .hover-secondary-nav-pf & {\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .list-group-item {\n    border: none;\n    padding: @nav-pf-vertical-secondary-item-padding;\n    width: @nav-pf-vertical-width;\n    > a {\n      background-color: @nav-pf-vertical-secondary-bg-color;\n      color: @nav-pf-vertical-secondary-item-color;\n      font-size: @font-size-base;\n      font-weight: inherit;\n      height: inherit;\n      padding: @nav-pf-vertical-secondary-link-padding;\n      margin-left: 20px;\n      width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n\n      &:hover {\n        .list-group-item-value {\n          text-decoration: underline;\n        }\n      }\n    }\n    &.active > a:before {\n      display: none;\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-secondary-active-bg-color;\n        color: @nav-pf-vertical-secondary-active-color;\n      }\n    }\n    .badge-container-pf {\n      top: 5px;\n      .badge {\n        background: @nav-pf-vertical-secondary-badge-bg-color;\n        color: @nav-pf-vertical-badge-color;\n      }\n    }\n    .list-group-item-value {\n      padding-left: 5px;\n    }\n    &.tertiary-nav-item-pf { // Secondary menu items with tertiary sub menus\n      > a {\n        cursor: default;\n        &:after {\n          color: @nav-pf-vertical-secondary-indicator-color;\n          content: @fa-var-angle-right;\n          display: block;\n          font-family: \"FontAwesome\";\n          font-size: 20px;\n          line-height: 20px;\n          padding: @nav-pf-vertical-tertiary-indicator-padding;\n          position: absolute;\n          right: 20px;\n          top: 4px;\n        }\n        // If flex box is supported add some padding to account for the submenu indicator\n        .list-group-item-value {\n          @supports (display: flex) {\n            padding-right: 35px;\n          }\n        }\n      }\n      &.active,\n      &:hover {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-width} - 19px)\";\n          z-index: (@zindex-navbar-fixed + 3);\n          &:after {\n            right: 21px;\n          }\n        }\n      }\n    }\n  }\n  .nav-pf-vertical-with-badges & {\n    left: @nav-pf-vertical-badges-width;\n    width: @nav-pf-vertical-badges-width;\n    .list-group-item {\n      width: @nav-pf-vertical-badges-width;\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n      }\n      &.tertiary-nav-item-pf { // Secondary menu items with tertiary sub menus\n        &.active,\n        &:hover {\n          > a {\n            width: ~\"calc(@{nav-pf-vertical-badges-width} - 19px)\";\n          }\n        }\n      }\n    }\n  }\n}\n.nav-pf-tertiary-nav {\n  background: @nav-pf-vertical-tertiary-bg-color;\n  border: 1px solid @nav-pf-vertical-border-color;\n  border-bottom: none;\n  border-top: none;\n  bottom: 0;\n  display: block;\n  left: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  opacity: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  visibility: hidden;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .nav-pf-vertical-with-badges & {\n    left: @nav-pf-vertical-badges-width;\n    width: @nav-pf-vertical-badges-width;\n    .show-mobile-nav {\n      left: 0;\n    }\n  }\n  .tertiary-nav-item-pf.active & {  // Show tertiary menu if active and collapsed\n    .collapsed-tertiary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 3);\n    }\n  }\n  .tertiary-nav-item-pf.is-hover & { // Show tertiary menu if hovering\n    .hover-tertiary-nav-pf & {\n      opacity: 1;\n      visibility: visible;\n      .collapsed.collapsed-tertiary-nav-pf & {\n        left: 0;\n      }\n    }\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .nav-item-pf-header {\n    color: @nav-pf-vertical-tertiary-color;\n    margin: @nav-pf-vertical-tertiary-header-margin;\n  }\n  h5 {\n    color: @nav-pf-vertical-tertiary-color;\n    margin: @nav-pf-vertical-tertiary-list-header-margin;\n  }\n  .list-group-item {\n    border: none;\n    padding: @nav-pf-vertical-tertiary-item-padding;\n    > a {\n      background-color: transparent;\n      color: @nav-pf-vertical-tertiary-item-color;\n      font-size: @font-size-base;\n      font-weight: inherit;\n      height: inherit;\n      margin: @nav-pf-vertical-tertiary-link-margin;\n      padding: @nav-pf-vertical-tertiary-link-padding;\n    }\n    &.active > a:before {\n      display: none;\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-tertiary-active-bg-color;\n        color: @nav-pf-vertical-tertiary-active-color;\n      }\n    }\n    .badge-container-pf {\n      top: 5px;\n      .badge {\n        background: @nav-pf-vertical-tertiary-badge-bg-color;\n        color: @nav-pf-vertical-tertiary-badge-color;\n      }\n    }\n    .list-group-item-value {\n      padding-left: 5px;\n    }\n  }\n}\n.collapsed {\n  .nav-pf-secondary-nav { // Adjust left placement\n    left: @nav-pf-vertical-collapsed-width;\n    .list-group-item {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n        > .list-group-item-value { // Continue to show labels for secondary menu items\n          display: inline-block;\n        }\n        > .badge-container-pf {\n          display: inline-block;\n        }\n      }\n    }\n  }\n  .nav-pf-tertiary-nav { // Adjust left placement\n    left: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n    .list-group-item {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n        > .list-group-item-value { // Continue to show labels for tertiary menu items\n          display: inline-block;\n        }\n        > .badge-container-pf {\n          display: inline-block;\n        }\n      }\n    }\n  }\n  &.collapsed-secondary-nav-pf,\n  &.collapsed-tertiary-nav-pf {\n    width: @nav-pf-vertical-width;\n    .secondary-nav-item-pf {\n      &:hover {\n        > a {\n          z-index: @zindex-navbar-fixed;\n        }\n      }\n    }\n    .nav-pf-secondary-nav {\n      left: 0;\n    }\n  }\n  &.collapsed-secondary-nav-pf {\n    .nav-pf-tertiary-nav {\n      left: @nav-pf-vertical-width;\n    }\n  }\n  &.collapsed-tertiary-nav-pf {\n    .nav-pf-tertiary-nav {\n      left: 0;\n    }\n  }\n  &.hover-secondary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n\n    &.collapsed-secondary-nav-pf,\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n    &.collapsed-secondary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    }\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-secondary-nav {\n      .list-group-item {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n        }\n      }\n    }\n    .nav-pf-tertiary-nav {\n      left: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n      .list-group-item {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n        }\n      }\n    }\n    &.collapsed-secondary-nav-pf,\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-badges-width;\n    }\n    &.collapsed-secondary-nav-pf {\n      .nav-pf-tertiary-nav {\n        left: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.hover-secondary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n      &.collapsed-secondary-nav-pf,\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.hover-tertiary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n      &.collapsed-secondary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n      }\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-width;\n      }\n    }\n  }\n}\n.secondary-collapse-toggle-pf {\n  display: none;\n  font-family: @icon-font-name-fa;\n  font-size: inherit;\n  opacity: 0;\n  pointer-events: none;\n  -webkit-font-smoothing: antialiased;\n  &:before {\n    content: @fa-var-arrow-circle-o-left;\n  }\n  &.collapsed {\n    &:before {\n      content: @fa-var-arrow-circle-o-right;\n    }\n  }\n}\n.tertiary-collapse-toggle-pf {\n  display: none;\n  font-family: @icon-font-name-fa;\n  font-size: inherit;\n  opacity: 0;\n  pointer-events: none;\n  -webkit-font-smoothing: antialiased;\n  &:before {\n    content: @fa-var-arrow-circle-o-left;\n  }\n  &.collapsed {\n    &:before {\n      content: @fa-var-arrow-circle-o-right;\n    }\n  }\n}\n.nav-pf-vertical-collapsible-menus {\n  .secondary-collapse-toggle-pf {\n    display: inline-block;\n  }\n  .secondary-nav-item-pf.active {\n    .secondary-collapse-toggle-pf {\n      opacity: 1;\n      pointer-events: all;\n    }\n  }\n  .tertiary-collapse-toggle-pf {\n    display: inline-block;\n  }\n  .tertiary-nav-item-pf.active {\n    .tertiary-collapse-toggle-pf {\n      opacity: 1;\n      pointer-events: all;\n    }\n  }\n}\n.show-mobile-nav {\n  .secondary-collapse-toggle-pf {\n    display: inline-block;\n    opacity: 1;\n    pointer-events: all;\n    &:before {\n      content: @fa-var-arrow-circle-o-left;\n    }\n  }\n  .tertiary-collapse-toggle-pf {\n    display: inline-block;\n    opacity: 1;\n    pointer-events: all;\n    &:before {\n      content: @fa-var-arrow-circle-o-left;\n    }\n  }\n}\n.force-hide-secondary-nav-pf { // Used to temporarily hide sub-menus on an unpin event\n  .nav-pf-secondary-nav {\n    display: none !important;\n  }\n  .nav-pf-tertiary-nav {\n    display: none !important;\n  }\n}\n.nav-pf-vertical.transitions {\n  transition: width @nav-pf-menu-transition-period;\n  .nav-pf-secondary-nav {\n    transition: visibility @nav-pf-menu-transition-period, opacity @nav-pf-menu-transition-period linear;\n  }\n  .nav-pf-tertiary-nav {\n    transition: visibility @nav-pf-menu-transition-period, opacity @nav-pf-menu-transition-period linear;\n  }\n}\n","//\n// Wizard\n// --------------------------------------------------\n.wizard-pf {\n  padding: 10px;\n  margin: 0 auto;\n  max-height: 900px;\n  width: auto;\n  .modal-content {\n    min-height:100%;\n  }\n}\n\n// Wizard header\n// Top section of the wizard w/ title and dismiss\n\n.wizard-pf-body {\n    background:@color-pf-white;\n    padding: 0;\n    position: static;\n}\n/* styles the sidebard containing the sub-steps */\n.wizard-pf-sidebar {\n    background: @color-pf-black-100;\n    border-right: 1px solid @color-pf-black-300;\n    display:none;\n  @media (min-width: @screen-sm-min) {\n    display:inherit;\n    flex:0 0 auto;\n    overflow-x: hidden;\n    overflow-y: auto;\n    .list-group {\n      border-top: 0;\n      margin-bottom: 0;\n    }\n      .list-group-item {\n        background-color: transparent;\n        border-color: @color-pf-black-200;\n        padding: 0;\n        > a {\n          color: @color-pf-black;\n          cursor: pointer;\n          display: block;\n          font-size: 14px;\n          font-weight: 700;\n          height: 50px;\n          outline: 0;\n          padding-top: 11px;\n          padding-left: 20px;\n          position: relative;\n          white-space: nowrap;\n          width: 14em;\n          &:hover {\n            text-decoration: none;\n            background-color: @color-pf-black-200;\n          }\n          &:focus {\n            //corrects odd behavior when hover and focus are combined.\n            text-decoration: none;\n            span {\n              text-decoration: underline;\n            }\n          }\n        }\n        &.active {\n          background-color: @color-pf-black-200;\n\n          //override default behavior\n          &:hover {\n            border-color: @color-pf-black-200;\n          }\n          > a {\n            color: @color-pf-blue-300;\n            cursor: default;\n          }\n          // line to left side showing active substep\n          > a:before {\n            content: \" \";\n            background: @color-pf-blue-300;\n            height: 100%;\n            left: 0;\n            position: absolute;\n            top: 0;\n            width: 3px;\n          }\n          // caret to right showing active substep\n          > a:after {\n            color: @color-pf-blue-300;\n            content: \"\\f105\"; // right caret\n            display: block;\n            font-family: FontAwesome;\n            font-size: 24px;\n            font-weight: 500;\n            line-height: 30px;\n            padding-top: 10px;\n            position: absolute;\n            right: 23px;\n            top: 0;\n          }\n        }\n      }\n    }\n}\n.wizard-pf-substep-number {\n  display:inline-block;\n  margin-right: 5px;\n  vertical-align: middle;\n  width: 25px;\n}\n.wizard-pf-substep-title {\n  display:inline-block;\n  margin-right: 5px;\n  text-align: left;\n  vertical-align: middle;\n}\n/* styles the steps indicator across the top of the wizard */\n.wizard-pf-steps {\n  border-bottom: solid 1px @color-pf-black-300;\n    @media (min-width: @screen-sm-min) {\n      text-align: center;\n    }\n}\n\n.wizard-pf-steps-indicator {\n  background: @color-pf-black-200;\n  border-top: 1px solid @color-pf-black-300;\n  display: inline-block;\n  display: flex;\n  font-size: ceil((@font-size-base * 1.3333));\n  list-style: none;\n  margin-bottom: 0;\n  padding: 15px 0;\n    @media (min-width: @screen-sm-min) {\n      background: @color-pf-white;\n      height: 120px;\n      padding: 38px 0 0;\n      justify-content: space-around;\n    }\n\n  li {\n    counter-increment: section;\n    float:left; /* float for IE9 since it doesn't support flex. If items wrap, they overlap */\n    flex-grow: 1;\n    flex-basis: 0;\n    line-height: 15px;\n    margin: 0;\n    padding: 0;\n    position: relative;\n    text-align: center;\n    &:not(.active) {\n      display: none;\n      @media (min-width: @screen-sm-min) {\n        display: block;\n      }\n    }\n    a {\n        align-items: center;\n        display: flex;\n        flex-wrap:wrap;\n        font-weight: 700;\n        @media (min-width: @screen-sm-min) {\n          font-weight: normal;\n          justify-content: center;\n        }\n          .wizard-pf-step-title {\n            margin-left: 10px;\n            @media(min-width: @screen-sm-min) {\n              margin-left: 0;\n            }\n\n            &-substep {\n              font-weight: normal;\n              margin-left: 10px;\n              text-transform: capitalize;\n              &:before {\n                content:\"\\00BB\";\n                font-size: 20px;\n                margin-right: 10px;\n              }\n              &:not(.active) {\n                display: none;\n              }\n            }\n          }\n    }\n    /* draw the line between the circles */\n    @media (min-width: @screen-sm-min) {\n      .wizard-pf-step-title-substep {\n        display: none;\n      }\n      &:before {\n        background-color: @color-pf-black-400;\n        content: \"\";\n        height: 2px;\n        left: 0;\n        position: absolute;\n        right: 0;\n        top: 40px; // needed for IE9/10 calculate 50% of just the li, others calc 50% of the entire thing including the a:before\n        //otherwise, use top: calc(50% - 1px);\n      }\n      /* don't draw the line between the circles on the ends */\n      &:first-child:before {\n        left: 50%;\n        right: 0;\n      }\n      &:last-child:before {\n        left: 0;\n        right: 50%;\n      }\n      &:only-of-type:before {\n        background-color: transparent;\n      }\n    }\n    a {\n      color: @color-pf-black;\n      cursor: pointer;\n      font-size: 16px;\n      margin-left:1em;\n      margin-right:1em;\n      text-decoration: none;\n      &:hover {\n        .wizard-pf-step-number {\n          background-color: @color-pf-black-400;\n          border-color: @color-pf-black-400;\n          color: @color-pf-white;\n        }\n      }\n    }\n}\n  /* draw the step number in the circle */\n\n  .wizard-pf-step-number {\n    background-color: @color-pf-white;\n    border-radius: 50%;\n    border: solid 2px @color-pf-black-400;\n    color: @color-pf-black-400;\n    font-size: @font-size-base;\n    font-weight: 700;\n    height: 25px;\n    line-height: 22px;\n      @media (min-width: @screen-sm-min) {\n        left: ~\"calc(50% - 13px)\";\n        position: absolute;\n        top: 27px;\n      }\n    width: 25px;\n  }\n  .active .wizard-pf-step-number {\n    background-color: @color-pf-blue-300;\n    border-color: @color-pf-blue-300;\n    cursor: default;\n    color: @color-pf-white;\n  }\n\n  .viewed-pf .wizard-pf-step-number {\n    color: @color-pf-black;\n    background-color: @color-pf-white;\n    border-color: @color-pf-blue-300;\n  }\n\n}\n\n/* styles the main content portion of the wizard */\n.wizard-pf-main {\n  height: 100%;\n  padding:1em;\n  vertical-align: top;\n  width:100%;\n  @media (min-width: @screen-sm-min) {\n    overflow: auto;\n    padding:3em;\n    flex:1 1 auto;\n  }\n  .blank-slate-pf {\n    background-color: transparent;\n    border: none;\n    left: 0;\n    right: 0;\n  }\n}\n\n.wizard-pf-contents textarea {\n  resize: vertical;\n}\n\n/* styles the content of a review page */\n.wizard-pf-review-steps {\n  list-style: none;\n  .list-group, .list-group-item {\n    border: none;\n    margin-bottom: 0;\n  }\n  > ul {\n    > li {\n      float: left;\n      line-height: 15px;\n      margin: 0;\n      padding-top: 0;\n      position: relative;\n      width: 100%;\n      > a {\n        color: #030303;\n        cursor: pointer;\n        font-size: 16px;\n        padding-left: 30px;\n        padding-right: 5px;\n        text-decoration: none;\n        transition: 250ms;\n        &:before {\n          content: \"\\f107\";\n          display: block;\n          font-family: FontAwesome;\n          font-size: 24px;\n          font-weight: 500;\n          left: 20px;\n          position: absolute;\n          top: 0;\n        }\n        &.collapsed {\n          &:before {\n            content: \"\\f105\";\n          }\n        }\n      }\n    }\n  }\n}\n\n.wizard-pf-review-substeps {\n  padding-left: 22px;\n  > ul {\n    > li {\n      float: left;\n      line-height: 15px;\n      margin: 0;\n      position: relative;\n      width: 100%;\n      a {\n        color: #030303;\n        cursor: pointer;\n        font-size: 16px;\n        padding-left: 30px;\n        padding-right: 5px;\n        text-decoration: none;\n        transition: 250ms;\n        &:before {\n          content: \"\\f107\";\n          display: block;\n          font-family: FontAwesome;\n          font-size: 24px;\n          font-weight: 500;\n          left: 20px;\n          position: absolute;\n          top: 10px;\n        }\n        &.collapsed {\n          &:before {\n            content: \"\\f105\";\n          }\n        }\n      }\n    }\n  }\n}\n\n.wizard-pf-review-content {\n  padding-top: 10px;\n  padding-left: 40px;\n  .wizard-pf-review-item {\n    padding: 5px 0;\n    &.sub-item {\n      margin-left: 10px;\n    }\n    .wizard-pf-review-item-label {\n      font-weight: 700;\n      padding-right: 10px;\n    }\n    .wizard-pf-review-item-field {\n      font-weight: 700;\n      margin: 5px 0;\n      padding-right: 10px;\n      &:first-of-type {\n        margin-top: 0;\n      }\n      &:last-of-type {\n        margin-bottom: 0;\n      }\n      &.sub-field {\n        margin-left: 10px;\n      }\n    }\n  }\n}\n\n.wizard-pf-success-icon {\n  color: @color-pf-green-400;\n  font-size: (@font-size-base * 5.6);\n  line-height: (@font-size-base * 5.6);\n}\n\n/* styles the footer */\n.wizard-pf-footer {\n  background:@color-pf-white;\n  border-top: 1px solid @color-pf-black-300;\n  margin-top: 0;\n  padding-bottom: 17px;\n  .btn-cancel {\n    margin-right:25px;\n  }\n}\n\n.wizard-pf-row {\n    @media (min-width: @screen-sm-min) {\n      display: flex;\n      width:100%;\n      height: 900px;\n      max-height: 65vh;\n    }\n}\n\n// Scale up the modal\n@media (min-width: @screen-md-min) {\n  // increasing space around modal for larger viewports\n  .wizard-pf {\n    padding: 30px 0;\n    width: 900px;\n  }\n  // increasing width of sidebar for larger viewports\n  .wizard-pf-sidebar .list-group-item > a {\n    width: 18em;\n  }\n}\n\n//\n//\n// This is for the new wizard that is more robust on mobile.\n// --------------------------------------------------\n\n.wizard-pf-steps-alt, .wizard-pf-steps-alt ul {\n  list-style: none;\n  margin: 0;\n  padding: 0;\n}\n\n.wizard-pf-steps-alt {\n  margin-left: 15px;\n  margin-top: 15px;\n  background-image: linear-gradient(to right, transparent 11px, @color-pf-black-300 11px, @color-pf-black-300 13px, transparent 13px);\n  @media (min-width: @screen-sm-min) {\n    display:none;\n  }\n  &-indicator {\n    position: relative;\n    // caret to top showing active substep\n    &:after {\n      color: @color-pf-black-700;\n      content: \"\\f107\"; // top caret\n      display: block;\n      font-family: FontAwesome;\n      font-size: 24px;\n      font-weight: 500;\n      position: absolute;\n      right: 17px;\n      top: 50%;\n      transform:translateY(-50%);\n      @media (min-width: @screen-sm-min) {\n        display:none;\n      }\n    }\n    &.active {\n      &:after {\n        content: \"\\f106\";\n      }\n    }\n  }//indicator\n}//.wizard-pf-steps-alt\n\n.wizard-pf-step-alt {\n  margin-bottom: 10px;\n  a {\n    display:flex;\n    flex:1;\n    &:hover {\n      text-decoration: none;\n      .wizard-pf-step-alt-title {\n        color: @color-pf-blue-300;\n      }\n    }\n  }\n  ul {\n    margin-left: 11px;\n  }\n  .wizard-pf-step-alt-title {\n    margin-left: 5px;\n    align-self:center;\n  }\n  .wizard-pf-step-alt-number {\n    flex:0 0 auto;\n  }\n\n  &.active {\n    .wizard-pf-step-alt-number {\n      background-color: @color-pf-blue-300;\n      border-color: @color-pf-blue-300;\n      cursor: default;\n      color: @color-pf-white;\n    }\n    .wizard-pf-step-alt-title {\n      color: @color-pf-blue-300;\n    }\n    .wizard-pf-step-alt-substep:first-of-type {\n      margin-top: 2px; // gives proper spacing below number in circle active state\n    }\n\n\n  }\n  &.viewed {\n    .wizard-pf-step-alt-number {\n      color: @color-pf-black;\n      background-color: @color-pf-white;\n      border-color: @color-pf-blue-300;\n    }\n  }\n\n}//.wizard-pf-step-alt\n\n.wizard-pf-step-alt-number {\n  background-color: @color-pf-white;\n  border-radius: 50%;\n  border: solid 2px @color-pf-black-400;\n  color: @color-pf-black-400;\n  font-size: @font-size-base;\n  font-weight: 700;\n  height: 24px;\n  width: 24px;\n  display: inline-block;\n  text-align: center;\n}\n\n\n.wizard-pf-step-alt-title {\n  color: @color-pf-black;\n  font-weight: 700;\n  text-transform: capitalize;\n  display:inline-block;\n\n}//.wizard-pf-steps-alt-title\n\n.wizard-pf-step-alt-substep {\n    display:flex;\n  a {\n    padding:5px 0 5px 18px;\n    color: @color-pf-black-800;\n  }\n\n&:not(.disabled) {\n  &.active, &:hover {\n    background-color: @color-pf-black-200;\n    background-image: linear-gradient(to right, @color-pf-blue-300 2px, transparent 2px);\n    a {\n      color:@color-pf-blue-300;\n    }\n  }\n}\n  &.active {\n    a {\n      font-weight:700;\n    }\n  }\n  &.disabled {\n    cursor: not-allowed;\n    a {\n      pointer-events: none;\n    }\n  }\n}\n","//\n// Login\n// --------------------------------------------------\n\n.login-pf {\n  background-color:  @login-bg-color;\n  @media (min-width: @screen-sm-min) {\n    background-image: url(\"@{img-path}/@{img-bg-login-2}\");\n    background-position: 100% 100%;\n    background-repeat: no-repeat;\n    background-size: 30%;\n  }\n  @media (min-width: @screen-md-min) {\n    background-size: auto;\n  }\n  #badge {\n    margin-bottom: 50px;\n  }\n  body {\n    background: transparent;\n    @media (min-width: @screen-sm-min) {\n      background-image: url(\"@{img-path}/@{img-bg-login}\");\n      background-repeat: no-repeat;\n      background-size: 30%;\n      height: 100%;\n    }\n    @media (min-width: @screen-md-min) {\n      background-size: auto;\n    }\n  }\n  #brand {\n    top: -30px;\n    @media (min-width: @screen-sm-min) {\n      top: -40px;\n      + .alert {\n        margin-top: -20px;\n      }\n    }\n  }\n  .container {\n    padding-top: 0;\n    @media (min-width: @screen-md-min) {\n      bottom: 20%;\n      padding-right: 120px;\n    }\n  }\n}\n"]}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/dist/css/rcue-additions.min.css b/themes/src/main/node_modules/rcue/dist/css/rcue-additions.min.css
new file mode 100644
index 0000000..3987b5e
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/css/rcue-additions.min.css
@@ -0,0 +1,6 @@
+.slider{display:inline-block;vertical-align:middle;position:relative}.slider.slider-horizontal{width:100%;height:16px}.slider.slider-horizontal .slider-track{height:8px;width:100%;margin-top:-4px;top:50%;left:0}.slider.slider-horizontal .slider-selection,.slider.slider-horizontal .slider-track-high,.slider.slider-horizontal .slider-track-low{height:100%;top:0;bottom:0}.slider.slider-horizontal .slider-handle,.slider.slider-horizontal .slider-tick{margin-left:-8px}.slider.slider-horizontal .slider-handle.triangle,.slider.slider-horizontal .slider-tick.triangle{position:relative;top:50%;transform:translateY(-50%);border-width:0 8px 8px 8px;width:0;height:0;border-bottom-color:#ededed;margin-top:0}.slider.slider-horizontal .slider-tick-container{white-space:nowrap;position:absolute;top:0;left:0;width:100%}.slider.slider-horizontal .slider-tick-label-container{white-space:nowrap;margin-top:16px}.slider.slider-horizontal .slider-tick-label-container .slider-tick-label{padding-top:16px * .2;display:inline-block;text-align:center}.slider.slider-horizontal.slider-rtl .slider-track{left:initial;right:0}.slider.slider-horizontal.slider-rtl .slider-handle,.slider.slider-horizontal.slider-rtl .slider-tick{margin-left:initial;margin-right:-8px}.slider.slider-horizontal.slider-rtl .slider-tick-container{left:initial;right:0}.slider.slider-vertical{height:210px;width:16px}.slider.slider-vertical .slider-track{width:8px;height:100%;left:25%;top:0}.slider.slider-vertical .slider-selection{width:100%;left:0;top:0;bottom:0}.slider.slider-vertical .slider-track-high,.slider.slider-vertical .slider-track-low{width:100%;left:0;right:0}.slider.slider-vertical .slider-handle,.slider.slider-vertical .slider-tick{margin-top:-8px}.slider.slider-vertical .slider-handle.triangle,.slider.slider-vertical .slider-tick.triangle{border-width:8px 0 8px 8px;width:1px;height:1px;border-left-color:#ededed;border-right-color:#ededed;margin-left:0;margin-right:0}.slider.slider-vertical .slider-tick-label-container{white-space:nowrap}.slider.slider-vertical .slider-tick-label-container .slider-tick-label{padding-left:16px * .2}.slider.slider-vertical.slider-rtl .slider-track{left:initial;right:25%}.slider.slider-vertical.slider-rtl .slider-selection{left:initial;right:0}.slider.slider-vertical.slider-rtl .slider-handle.triangle,.slider.slider-vertical.slider-rtl .slider-tick.triangle{border-width:8px 8px 8px 0}.slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tick-label{padding-left:initial;padding-right:16px * .2}.slider.slider-disabled .slider-handle{background-image:-webkit-linear-gradient(top,#dfdfdf 0,#bebebe 100%);background-image:-o-linear-gradient(top,#dfdfdf 0,#bebebe 100%);background-image:linear-gradient(to bottom,#dfdfdf 0,#bebebe 100%);background-repeat:repeat-x}.slider.slider-disabled .slider-track{background-image:-webkit-linear-gradient(top,#e5e5e5 0,#e9e9e9 100%);background-image:-o-linear-gradient(top,#e5e5e5 0,#e9e9e9 100%);background-image:linear-gradient(to bottom,#e5e5e5 0,#e9e9e9 100%);background-repeat:repeat-x;cursor:not-allowed}.slider input{display:none}.slider .tooltip.top{margin-top:-36px}.slider .tooltip-inner{white-space:nowrap;max-width:none}.slider .hide{display:none}.slider-track{position:absolute;cursor:pointer;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#f9f9f9 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#f9f9f9 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#f9f9f9 100%);background-repeat:repeat-x;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);border-radius:1px}.slider-selection{position:absolute;background-image:-webkit-linear-gradient(top,#f9f9f9 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#f9f9f9 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#f9f9f9 0,#f5f5f5 100%);background-repeat:repeat-x;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-radius:1px}.slider-selection.tick-slider-selection{background-image:-webkit-linear-gradient(top,#0088ce 0,#39a5dc 100%);background-image:-o-linear-gradient(top,#0088ce 0,#39a5dc 100%);background-image:linear-gradient(to bottom,#0088ce 0,#39a5dc 100%);background-repeat:repeat-x}.slider-track-high,.slider-track-low{position:absolute;background:0 0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-radius:1px}.slider-handle{position:absolute;top:0;width:16px;height:16px;background-color:#39a5dc;background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;filter:none;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);border:0 solid transparent}.slider-handle.round{border-radius:50%}.slider-handle.triangle{background:transparent none}.slider-handle.custom{background:transparent none}.slider-handle.custom::before{line-height:16px;font-size:20px;content:'\2605';color:#726204}.slider-tick{position:absolute;width:16px;height:16px;background-image:-webkit-linear-gradient(top,#f9f9f9 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#f9f9f9 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#f9f9f9 0,#f5f5f5 100%);background-repeat:repeat-x;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;filter:none;opacity:.8;border:0 solid transparent}.slider-tick.round{border-radius:50%}.slider-tick.triangle{background:transparent none}.slider-tick.custom{background:transparent none}.slider-tick.custom::before{line-height:16px;font-size:20px;content:'\2605';color:#726204}.slider-tick.in-selection{background-image:-webkit-linear-gradient(top,#0088ce 0,#39a5dc 100%);background-image:-o-linear-gradient(top,#0088ce 0,#39a5dc 100%);background-image:linear-gradient(to bottom,#0088ce 0,#39a5dc 100%);background-repeat:repeat-x;opacity:1}@media (min-width:768px){.form-inline .combobox-container,.form-search .combobox-container{display:inline-block;margin-bottom:0;vertical-align:top}.form-inline .combobox-container .input-group-addon,.form-search .combobox-container .input-group-addon{width:auto}}.combobox-selected .caret{display:none}.combobox-container:not(.combobox-selected) .glyphicon-remove{display:none}.typeahead-long{max-height:300px;overflow-y:auto}.control-group.error .combobox-container .add-on{color:#b94a48;border-color:#b94a48}.control-group.error .combobox-container .caret{border-top-color:#b94a48}.control-group.warning .combobox-container .add-on{color:#c09853;border-color:#c09853}.control-group.warning .combobox-container .caret{border-top-color:#c09853}.control-group.success .combobox-container .add-on{color:#468847;border-color:#468847}.control-group.success .combobox-container .caret{border-top-color:#468847}.datepicker{border-radius:1px;direction:ltr}.datepicker-inline{width:220px}.datepicker-rtl{direction:rtl}.datepicker-rtl.dropdown-menu{left:auto}.datepicker-rtl table tr td span{float:right}.datepicker-dropdown{top:0;left:0;padding:4px}.datepicker-dropdown:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #bbb;border-top:0;border-bottom-color:rgba(0,0,0,.2);position:absolute}.datepicker-dropdown:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;border-top:0;position:absolute}.datepicker-dropdown.datepicker-orient-left:before{left:6px}.datepicker-dropdown.datepicker-orient-left:after{left:7px}.datepicker-dropdown.datepicker-orient-right:before{right:6px}.datepicker-dropdown.datepicker-orient-right:after{right:7px}.datepicker-dropdown.datepicker-orient-bottom:before{top:-7px}.datepicker-dropdown.datepicker-orient-bottom:after{top:-6px}.datepicker-dropdown.datepicker-orient-top:before{bottom:-7px;border-bottom:0;border-top:7px solid #bbb}.datepicker-dropdown.datepicker-orient-top:after{bottom:-6px;border-bottom:0;border-top:6px solid #fff}.datepicker table{margin:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.datepicker table tr td,.datepicker table tr th{text-align:center;width:30px;height:30px;border-radius:4px;border:none}.table-striped .datepicker table tr td,.table-striped .datepicker table tr th{background-color:transparent}.datepicker table tr td.new,.datepicker table tr td.old{color:#9c9c9c}.datepicker table tr td.day:hover,.datepicker table tr td.focused{background:#f1f1f1;cursor:pointer}.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover{background:0 0;color:#9c9c9c;cursor:default}.datepicker table tr td.highlighted{color:#000;background-color:#d9edf7;border-color:#85c5e5;border-radius:0}.datepicker table tr td.highlighted.focus,.datepicker table tr td.highlighted:focus{color:#000;background-color:#afd9ee;border-color:#298fc2}.datepicker table tr td.highlighted:hover{color:#000;background-color:#afd9ee;border-color:#52addb}.datepicker table tr td.highlighted.active,.datepicker table tr td.highlighted:active,.open>.dropdown-toggle.datepicker table tr td.highlighted{color:#000;background-color:#afd9ee;border-color:#52addb}.datepicker table tr td.highlighted.active.focus,.datepicker table tr td.highlighted.active:focus,.datepicker table tr td.highlighted.active:hover,.datepicker table tr td.highlighted:active.focus,.datepicker table tr td.highlighted:active:focus,.datepicker table tr td.highlighted:active:hover,.open>.dropdown-toggle.datepicker table tr td.highlighted.focus,.open>.dropdown-toggle.datepicker table tr td.highlighted:focus,.open>.dropdown-toggle.datepicker table tr td.highlighted:hover{color:#000;background-color:#91cbe8;border-color:#298fc2}.datepicker table tr td.highlighted.active,.datepicker table tr td.highlighted:active,.open>.dropdown-toggle.datepicker table tr td.highlighted{background-image:none}.datepicker table tr td.highlighted.disabled.focus,.datepicker table tr td.highlighted.disabled:focus,.datepicker table tr td.highlighted.disabled:hover,.datepicker table tr td.highlighted[disabled].focus,.datepicker table tr td.highlighted[disabled]:focus,.datepicker table tr td.highlighted[disabled]:hover,fieldset[disabled] .datepicker table tr td.highlighted.focus,fieldset[disabled] .datepicker table tr td.highlighted:focus,fieldset[disabled] .datepicker table tr td.highlighted:hover{background-color:#d9edf7;border-color:#85c5e5}.datepicker table tr td.highlighted .badge{color:#d9edf7;background-color:#000}.datepicker table tr td.highlighted.focused{background:#afd9ee}.datepicker table tr td.highlighted.disabled,.datepicker table tr td.highlighted.disabled:active{background:#d9edf7;color:#9c9c9c}.datepicker table tr td.today{color:#000;background-color:#ffdb99;border-color:#ffb733}.datepicker table tr td.today.focus,.datepicker table tr td.today:focus{color:#000;background-color:#ffc966;border-color:#b37400}.datepicker table tr td.today:hover{color:#000;background-color:#ffc966;border-color:#f59e00}.datepicker table tr td.today.active,.datepicker table tr td.today:active,.open>.dropdown-toggle.datepicker table tr td.today{color:#000;background-color:#ffc966;border-color:#f59e00}.datepicker table tr td.today.active.focus,.datepicker table tr td.today.active:focus,.datepicker table tr td.today.active:hover,.datepicker table tr td.today:active.focus,.datepicker table tr td.today:active:focus,.datepicker table tr td.today:active:hover,.open>.dropdown-toggle.datepicker table tr td.today.focus,.open>.dropdown-toggle.datepicker table tr td.today:focus,.open>.dropdown-toggle.datepicker table tr td.today:hover{color:#000;background-color:#ffbc42;border-color:#b37400}.datepicker table tr td.today.active,.datepicker table tr td.today:active,.open>.dropdown-toggle.datepicker table tr td.today{background-image:none}.datepicker table tr td.today.disabled.focus,.datepicker table tr td.today.disabled:focus,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today[disabled].focus,.datepicker table tr td.today[disabled]:focus,.datepicker table tr td.today[disabled]:hover,fieldset[disabled] .datepicker table tr td.today.focus,fieldset[disabled] .datepicker table tr td.today:focus,fieldset[disabled] .datepicker table tr td.today:hover{background-color:#ffdb99;border-color:#ffb733}.datepicker table tr td.today .badge{color:#ffdb99;background-color:#000}.datepicker table tr td.today.focused{background:#ffc966}.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled:active{background:#ffdb99;color:#9c9c9c}.datepicker table tr td.range{color:#000;background-color:#f1f1f1;border-color:#bebebe;border-radius:0}.datepicker table tr td.range.focus,.datepicker table tr td.range:focus{color:#000;background-color:#d8d8d8;border-color:#7f7f7f}.datepicker table tr td.range:hover{color:#000;background-color:#d8d8d8;border-color:#a0a0a0}.datepicker table tr td.range.active,.datepicker table tr td.range:active,.open>.dropdown-toggle.datepicker table tr td.range{color:#000;background-color:#d8d8d8;border-color:#a0a0a0}.datepicker table tr td.range.active.focus,.datepicker table tr td.range.active:focus,.datepicker table tr td.range.active:hover,.datepicker table tr td.range:active.focus,.datepicker table tr td.range:active:focus,.datepicker table tr td.range:active:hover,.open>.dropdown-toggle.datepicker table tr td.range.focus,.open>.dropdown-toggle.datepicker table tr td.range:focus,.open>.dropdown-toggle.datepicker table tr td.range:hover{color:#000;background-color:#c6c6c6;border-color:#7f7f7f}.datepicker table tr td.range.active,.datepicker table tr td.range:active,.open>.dropdown-toggle.datepicker table tr td.range{background-image:none}.datepicker table tr td.range.disabled.focus,.datepicker table tr td.range.disabled:focus,.datepicker table tr td.range.disabled:hover,.datepicker table tr td.range[disabled].focus,.datepicker table tr td.range[disabled]:focus,.datepicker table tr td.range[disabled]:hover,fieldset[disabled] .datepicker table tr td.range.focus,fieldset[disabled] .datepicker table tr td.range:focus,fieldset[disabled] .datepicker table tr td.range:hover{background-color:#f1f1f1;border-color:#bebebe}.datepicker table tr td.range .badge{color:#f1f1f1;background-color:#000}.datepicker table tr td.range.focused{background:#d8d8d8}.datepicker table tr td.range.disabled,.datepicker table tr td.range.disabled:active{background:#f1f1f1;color:#9c9c9c}.datepicker table tr td.range.highlighted{color:#000;background-color:#e5eff4;border-color:#9dc3d6}.datepicker table tr td.range.highlighted.focus,.datepicker table tr td.range.highlighted:focus{color:#000;background-color:#c1d9e5;border-color:#488bac}.datepicker table tr td.range.highlighted:hover{color:#000;background-color:#c1d9e5;border-color:#72a9c4}.datepicker table tr td.range.highlighted.active,.datepicker table tr td.range.highlighted:active,.open>.dropdown-toggle.datepicker table tr td.range.highlighted{color:#000;background-color:#c1d9e5;border-color:#72a9c4}.datepicker table tr td.range.highlighted.active.focus,.datepicker table tr td.range.highlighted.active:focus,.datepicker table tr td.range.highlighted.active:hover,.datepicker table tr td.range.highlighted:active.focus,.datepicker table tr td.range.highlighted:active:focus,.datepicker table tr td.range.highlighted:active:hover,.open>.dropdown-toggle.datepicker table tr td.range.highlighted.focus,.open>.dropdown-toggle.datepicker table tr td.range.highlighted:focus,.open>.dropdown-toggle.datepicker table tr td.range.highlighted:hover{color:#000;background-color:#a8cadb;border-color:#488bac}.datepicker table tr td.range.highlighted.active,.datepicker table tr td.range.highlighted:active,.open>.dropdown-toggle.datepicker table tr td.range.highlighted{background-image:none}.datepicker table tr td.range.highlighted.disabled.focus,.datepicker table tr td.range.highlighted.disabled:focus,.datepicker table tr td.range.highlighted.disabled:hover,.datepicker table tr td.range.highlighted[disabled].focus,.datepicker table tr td.range.highlighted[disabled]:focus,.datepicker table tr td.range.highlighted[disabled]:hover,fieldset[disabled] .datepicker table tr td.range.highlighted.focus,fieldset[disabled] .datepicker table tr td.range.highlighted:focus,fieldset[disabled] .datepicker table tr td.range.highlighted:hover{background-color:#e5eff4;border-color:#9dc3d6}.datepicker table tr td.range.highlighted .badge{color:#e5eff4;background-color:#000}.datepicker table tr td.range.highlighted.focused{background:#c1d9e5}.datepicker table tr td.range.highlighted.disabled,.datepicker table tr td.range.highlighted.disabled:active{background:#e5eff4;color:#9c9c9c}.datepicker table tr td.range.today{color:#000;background-color:#f8cb79;border-color:#f3a618}.datepicker table tr td.range.today.focus,.datepicker table tr td.range.today:focus{color:#000;background-color:#f6b848;border-color:#855807}.datepicker table tr td.range.today:hover{color:#000;background-color:#f6b848;border-color:#c4820a}.datepicker table tr td.range.today.active,.datepicker table tr td.range.today:active,.open>.dropdown-toggle.datepicker table tr td.range.today{color:#000;background-color:#f6b848;border-color:#c4820a}.datepicker table tr td.range.today.active.focus,.datepicker table tr td.range.today.active:focus,.datepicker table tr td.range.today.active:hover,.datepicker table tr td.range.today:active.focus,.datepicker table tr td.range.today:active:focus,.datepicker table tr td.range.today:active:hover,.open>.dropdown-toggle.datepicker table tr td.range.today.focus,.open>.dropdown-toggle.datepicker table tr td.range.today:focus,.open>.dropdown-toggle.datepicker table tr td.range.today:hover{color:#000;background-color:#f4ab26;border-color:#855807}.datepicker table tr td.range.today.active,.datepicker table tr td.range.today:active,.open>.dropdown-toggle.datepicker table tr td.range.today{background-image:none}.datepicker table tr td.range.today.disabled.focus,.datepicker table tr td.range.today.disabled:focus,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today[disabled].focus,.datepicker table tr td.range.today[disabled]:focus,.datepicker table tr td.range.today[disabled]:hover,fieldset[disabled] .datepicker table tr td.range.today.focus,fieldset[disabled] .datepicker table tr td.range.today:focus,fieldset[disabled] .datepicker table tr td.range.today:hover{background-color:#f8cb79;border-color:#f3a618}.datepicker table tr td.range.today .badge{color:#f8cb79;background-color:#000}.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today.disabled:active{background:#f8cb79;color:#9c9c9c}.datepicker table tr td.selected,.datepicker table tr td.selected.highlighted{color:#fff;background-color:#9c9c9c;border-color:#555;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td.selected.focus,.datepicker table tr td.selected.highlighted.focus,.datepicker table tr td.selected.highlighted:focus,.datepicker table tr td.selected:focus{color:#fff;background-color:#838383;border-color:#161616}.datepicker table tr td.selected.highlighted:hover,.datepicker table tr td.selected:hover{color:#fff;background-color:#838383;border-color:#373737}.datepicker table tr td.selected.active,.datepicker table tr td.selected.highlighted.active,.datepicker table tr td.selected.highlighted:active,.datepicker table tr td.selected:active,.open>.dropdown-toggle.datepicker table tr td.selected,.open>.dropdown-toggle.datepicker table tr td.selected.highlighted{color:#fff;background-color:#838383;border-color:#373737}.datepicker table tr td.selected.active.focus,.datepicker table tr td.selected.active:focus,.datepicker table tr td.selected.active:hover,.datepicker table tr td.selected.highlighted.active.focus,.datepicker table tr td.selected.highlighted.active:focus,.datepicker table tr td.selected.highlighted.active:hover,.datepicker table tr td.selected.highlighted:active.focus,.datepicker table tr td.selected.highlighted:active:focus,.datepicker table tr td.selected.highlighted:active:hover,.datepicker table tr td.selected:active.focus,.datepicker table tr td.selected:active:focus,.datepicker table tr td.selected:active:hover,.open>.dropdown-toggle.datepicker table tr td.selected.focus,.open>.dropdown-toggle.datepicker table tr td.selected.highlighted.focus,.open>.dropdown-toggle.datepicker table tr td.selected.highlighted:focus,.open>.dropdown-toggle.datepicker table tr td.selected.highlighted:hover,.open>.dropdown-toggle.datepicker table tr td.selected:focus,.open>.dropdown-toggle.datepicker table tr td.selected:hover{color:#fff;background-color:#717171;border-color:#161616}.datepicker table tr td.selected.active,.datepicker table tr td.selected.highlighted.active,.datepicker table tr td.selected.highlighted:active,.datepicker table tr td.selected:active,.open>.dropdown-toggle.datepicker table tr td.selected,.open>.dropdown-toggle.datepicker table tr td.selected.highlighted{background-image:none}.datepicker table tr td.selected.disabled.focus,.datepicker table tr td.selected.disabled:focus,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected.highlighted.disabled.focus,.datepicker table tr td.selected.highlighted.disabled:focus,.datepicker table tr td.selected.highlighted.disabled:hover,.datepicker table tr td.selected.highlighted[disabled].focus,.datepicker table tr td.selected.highlighted[disabled]:focus,.datepicker table tr td.selected.highlighted[disabled]:hover,.datepicker table tr td.selected[disabled].focus,.datepicker table tr td.selected[disabled]:focus,.datepicker table tr td.selected[disabled]:hover,fieldset[disabled] .datepicker table tr td.selected.focus,fieldset[disabled] .datepicker table tr td.selected.highlighted.focus,fieldset[disabled] .datepicker table tr td.selected.highlighted:focus,fieldset[disabled] .datepicker table tr td.selected.highlighted:hover,fieldset[disabled] .datepicker table tr td.selected:focus,fieldset[disabled] .datepicker table tr td.selected:hover{background-color:#9c9c9c;border-color:#555}.datepicker table tr td.selected .badge,.datepicker table tr td.selected.highlighted .badge{color:#9c9c9c;background-color:#fff}.datepicker table tr td.active,.datepicker table tr td.active.highlighted{color:#fff;background-color:#0088ce;border-color:#00659c;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td.active.focus,.datepicker table tr td.active.highlighted.focus,.datepicker table tr td.active.highlighted:focus,.datepicker table tr td.active:focus{color:#fff;background-color:#00669b;border-color:#00121d}.datepicker table tr td.active.highlighted:hover,.datepicker table tr td.active:hover{color:#fff;background-color:#00669b;border-color:#003d5f}.datepicker table tr td.active.active,.datepicker table tr td.active.highlighted.active,.datepicker table tr td.active.highlighted:active,.datepicker table tr td.active:active,.open>.dropdown-toggle.datepicker table tr td.active,.open>.dropdown-toggle.datepicker table tr td.active.highlighted{color:#fff;background-color:#00669b;border-color:#003d5f}.datepicker table tr td.active.active.focus,.datepicker table tr td.active.active:focus,.datepicker table tr td.active.active:hover,.datepicker table tr td.active.highlighted.active.focus,.datepicker table tr td.active.highlighted.active:focus,.datepicker table tr td.active.highlighted.active:hover,.datepicker table tr td.active.highlighted:active.focus,.datepicker table tr td.active.highlighted:active:focus,.datepicker table tr td.active.highlighted:active:hover,.datepicker table tr td.active:active.focus,.datepicker table tr td.active:active:focus,.datepicker table tr td.active:active:hover,.open>.dropdown-toggle.datepicker table tr td.active.focus,.open>.dropdown-toggle.datepicker table tr td.active.highlighted.focus,.open>.dropdown-toggle.datepicker table tr td.active.highlighted:focus,.open>.dropdown-toggle.datepicker table tr td.active.highlighted:hover,.open>.dropdown-toggle.datepicker table tr td.active:focus,.open>.dropdown-toggle.datepicker table tr td.active:hover{color:#fff;background-color:#004f77;border-color:#00121d}.datepicker table tr td.active.active,.datepicker table tr td.active.highlighted.active,.datepicker table tr td.active.highlighted:active,.datepicker table tr td.active:active,.open>.dropdown-toggle.datepicker table tr td.active,.open>.dropdown-toggle.datepicker table tr td.active.highlighted{background-image:none}.datepicker table tr td.active.disabled.focus,.datepicker table tr td.active.disabled:focus,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active.highlighted.disabled.focus,.datepicker table tr td.active.highlighted.disabled:focus,.datepicker table tr td.active.highlighted.disabled:hover,.datepicker table tr td.active.highlighted[disabled].focus,.datepicker table tr td.active.highlighted[disabled]:focus,.datepicker table tr td.active.highlighted[disabled]:hover,.datepicker table tr td.active[disabled].focus,.datepicker table tr td.active[disabled]:focus,.datepicker table tr td.active[disabled]:hover,fieldset[disabled] .datepicker table tr td.active.focus,fieldset[disabled] .datepicker table tr td.active.highlighted.focus,fieldset[disabled] .datepicker table tr td.active.highlighted:focus,fieldset[disabled] .datepicker table tr td.active.highlighted:hover,fieldset[disabled] .datepicker table tr td.active:focus,fieldset[disabled] .datepicker table tr td.active:hover{background-color:#0088ce;border-color:#00659c}.datepicker table tr td.active .badge,.datepicker table tr td.active.highlighted .badge{color:#0088ce;background-color:#fff}.datepicker table tr td span{display:block;width:23%;height:54px;line-height:54px;float:left;margin:1%;cursor:pointer;border-radius:4px}.datepicker table tr td span.focused,.datepicker table tr td span:hover{background:#f1f1f1}.datepicker table tr td span.disabled,.datepicker table tr td span.disabled:hover{background:0 0;color:#9c9c9c;cursor:default}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover{color:#fff;background-color:#0088ce;border-color:#00659c;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td span.active.disabled.focus,.datepicker table tr td span.active.disabled:focus,.datepicker table tr td span.active.disabled:hover.focus,.datepicker table tr td span.active.disabled:hover:focus,.datepicker table tr td span.active.focus,.datepicker table tr td span.active:focus,.datepicker table tr td span.active:hover.focus,.datepicker table tr td span.active:hover:focus{color:#fff;background-color:#00669b;border-color:#00121d}.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover:hover,.datepicker table tr td span.active:hover,.datepicker table tr td span.active:hover:hover{color:#fff;background-color:#00669b;border-color:#003d5f}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover:active,.open>.dropdown-toggle.datepicker table tr td span.active,.open>.dropdown-toggle.datepicker table tr td span.active.disabled,.open>.dropdown-toggle.datepicker table tr td span.active.disabled:hover,.open>.dropdown-toggle.datepicker table tr td span.active:hover{color:#fff;background-color:#00669b;border-color:#003d5f}.datepicker table tr td span.active.active.focus,.datepicker table tr td span.active.active:focus,.datepicker table tr td span.active.active:hover,.datepicker table tr td span.active.disabled.active.focus,.datepicker table tr td span.active.disabled.active:focus,.datepicker table tr td span.active.disabled.active:hover,.datepicker table tr td span.active.disabled:active.focus,.datepicker table tr td span.active.disabled:active:focus,.datepicker table tr td span.active.disabled:active:hover,.datepicker table tr td span.active.disabled:hover.active.focus,.datepicker table tr td span.active.disabled:hover.active:focus,.datepicker table tr td span.active.disabled:hover.active:hover,.datepicker table tr td span.active.disabled:hover:active.focus,.datepicker table tr td span.active.disabled:hover:active:focus,.datepicker table tr td span.active.disabled:hover:active:hover,.datepicker table tr td span.active:active.focus,.datepicker table tr td span.active:active:focus,.datepicker table tr td span.active:active:hover,.datepicker table tr td span.active:hover.active.focus,.datepicker table tr td span.active:hover.active:focus,.datepicker table tr td span.active:hover.active:hover,.datepicker table tr td span.active:hover:active.focus,.datepicker table tr td span.active:hover:active:focus,.datepicker table tr td span.active:hover:active:hover,.open>.dropdown-toggle.datepicker table tr td span.active.disabled.focus,.open>.dropdown-toggle.datepicker table tr td span.active.disabled:focus,.open>.dropdown-toggle.datepicker table tr td span.active.disabled:hover,.open>.dropdown-toggle.datepicker table tr td span.active.disabled:hover.focus,.open>.dropdown-toggle.datepicker table tr td span.active.disabled:hover:focus,.open>.dropdown-toggle.datepicker table tr td span.active.disabled:hover:hover,.open>.dropdown-toggle.datepicker table tr td span.active.focus,.open>.dropdown-toggle.datepicker table tr td span.active:focus,.open>.dropdown-toggle.datepicker table tr td span.active:hover,.open>.dropdown-toggle.datepicker table tr td span.active:hover.focus,.open>.dropdown-toggle.datepicker table tr td span.active:hover:focus,.open>.dropdown-toggle.datepicker table tr td span.active:hover:hover{color:#fff;background-color:#004f77;border-color:#00121d}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover:active,.open>.dropdown-toggle.datepicker table tr td span.active,.open>.dropdown-toggle.datepicker table tr td span.active.disabled,.open>.dropdown-toggle.datepicker table tr td span.active.disabled:hover,.open>.dropdown-toggle.datepicker table tr td span.active:hover{background-image:none}.datepicker table tr td span.active.disabled.disabled.focus,.datepicker table tr td span.active.disabled.disabled:focus,.datepicker table tr td span.active.disabled.disabled:hover,.datepicker table tr td span.active.disabled.focus,.datepicker table tr td span.active.disabled:focus,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover.disabled.focus,.datepicker table tr td span.active.disabled:hover.disabled:focus,.datepicker table tr td span.active.disabled:hover.disabled:hover,.datepicker table tr td span.active.disabled:hover[disabled].focus,.datepicker table tr td span.active.disabled:hover[disabled]:focus,.datepicker table tr td span.active.disabled:hover[disabled]:hover,.datepicker table tr td span.active.disabled[disabled].focus,.datepicker table tr td span.active.disabled[disabled]:focus,.datepicker table tr td span.active.disabled[disabled]:hover,.datepicker table tr td span.active:hover.disabled.focus,.datepicker table tr td span.active:hover.disabled:focus,.datepicker table tr td span.active:hover.disabled:hover,.datepicker table tr td span.active:hover[disabled].focus,.datepicker table tr td span.active:hover[disabled]:focus,.datepicker table tr td span.active:hover[disabled]:hover,.datepicker table tr td span.active[disabled].focus,.datepicker table tr td span.active[disabled]:focus,.datepicker table tr td span.active[disabled]:hover,fieldset[disabled] .datepicker table tr td span.active.disabled.focus,fieldset[disabled] .datepicker table tr td span.active.disabled:focus,fieldset[disabled] .datepicker table tr td span.active.disabled:hover,fieldset[disabled] .datepicker table tr td span.active.disabled:hover.focus,fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,fieldset[disabled] .datepicker table tr td span.active.focus,fieldset[disabled] .datepicker table tr td span.active:focus,fieldset[disabled] .datepicker table tr td span.active:hover,fieldset[disabled] .datepicker table tr td span.active:hover.focus,fieldset[disabled] .datepicker table tr td span.active:hover:focus,fieldset[disabled] .datepicker table tr td span.active:hover:hover{background-color:#0088ce;border-color:#00659c}.datepicker table tr td span.active .badge,.datepicker table tr td span.active.disabled .badge,.datepicker table tr td span.active.disabled:hover .badge,.datepicker table tr td span.active:hover .badge{color:#0088ce;background-color:#fff}.datepicker table tr td span.new,.datepicker table tr td span.old{color:#9c9c9c}.datepicker .datepicker-switch{width:145px}.datepicker .datepicker-switch,.datepicker .next,.datepicker .prev,.datepicker tfoot tr th{cursor:pointer}.datepicker .datepicker-switch:hover,.datepicker .next:hover,.datepicker .prev:hover,.datepicker tfoot tr th:hover{background:#f1f1f1}.datepicker .next.disabled,.datepicker .prev.disabled{visibility:hidden}.datepicker .cw{font-size:10px;width:12px;padding:0 2px 0 5px;vertical-align:middle}.input-group.date .input-group-addon{cursor:pointer}.input-daterange{width:100%}.input-daterange input{text-align:center}.input-daterange input:first-child{border-radius:3px 0 0 3px}.input-daterange input:last-child{border-radius:0 3px 3px 0}.input-daterange .input-group-addon{width:auto;min-width:16px;padding:4px 5px;line-height:1.66666667;text-shadow:0 1px 0 #fff;border-width:1px 0;margin-left:-5px;margin-right:-5px}select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select>.dropdown-toggle{width:100%;padding-right:25px;z-index:1}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2}.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle{border-color:#b94a48}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none}.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{z-index:auto}.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child)>.btn{border-radius:0}.bootstrap-select.btn-group:not(.input-group-btn),.bootstrap-select.btn-group[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.btn-group.dropdown-menu-right,.bootstrap-select.btn-group[class*=col-].dropdown-menu-right,.row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select.btn-group,.form-horizontal .bootstrap-select.btn-group,.form-inline .bootstrap-select.btn-group{margin-bottom:0}.form-group-lg .bootstrap-select.btn-group.form-control,.form-group-sm .bootstrap-select.btn-group.form-control{padding:0}.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,.form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle{height:100%;font-size:inherit;line-height:inherit;border-radius:inherit}.form-inline .bootstrap-select.btn-group .form-control{width:100%}.bootstrap-select.btn-group.disabled,.bootstrap-select.btn-group>.disabled{cursor:not-allowed}.bootstrap-select.btn-group.disabled:focus,.bootstrap-select.btn-group>.disabled:focus{outline:0!important}.bootstrap-select.btn-group.bs-container{position:absolute;height:0!important;padding:0!important}.bootstrap-select.btn-group.bs-container .dropdown-menu{z-index:1060}.bootstrap-select.btn-group .dropdown-toggle .filter-option{display:inline-block;overflow:hidden;width:100%;text-align:left}.bootstrap-select.btn-group .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select.btn-group[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select.btn-group .dropdown-menu{min-width:100%;box-sizing:border-box}.bootstrap-select.btn-group .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;box-shadow:none}.bootstrap-select.btn-group .dropdown-menu li{position:relative}.bootstrap-select.btn-group .dropdown-menu li.active small{color:#fff}.bootstrap-select.btn-group .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select.btn-group .dropdown-menu li a{cursor:pointer;user-select:none}.bootstrap-select.btn-group .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select.btn-group .dropdown-menu li a span.check-mark{display:none}.bootstrap-select.btn-group .dropdown-menu li a span.text{display:inline-block}.bootstrap-select.btn-group .dropdown-menu li small{padding-left:.5em}.bootstrap-select.btn-group .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;box-sizing:border-box}.bootstrap-select.btn-group .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option{position:static}.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark{position:absolute;display:inline-block;right:15px;margin-top:5px}.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before{bottom:auto;top:-3px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after{bottom:auto;top:-3px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;box-sizing:border-box}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none}.bootstrap-switch{display:inline-block;direction:ltr;cursor:pointer;border-radius:1px;border:1px solid;border-color:#bbb;position:relative;text-align:left;overflow:hidden;line-height:8px;z-index:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.bootstrap-switch .bootstrap-switch-container{display:inline-block;top:0;border-radius:1px;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.bootstrap-switch .bootstrap-switch-handle-off,.bootstrap-switch .bootstrap-switch-handle-on,.bootstrap-switch .bootstrap-switch-label{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:table-cell;vertical-align:middle;padding:2px 6px;font-size:12px;line-height:20px}.bootstrap-switch .bootstrap-switch-handle-off,.bootstrap-switch .bootstrap-switch-handle-on{text-align:center;z-index:1}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary{color:#fff;background:#0088ce}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info{color:#fff;background:#00659c}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success{color:#fff;background:#3f9c35}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning{background:#ec7a08;color:#fff}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger{color:#fff;background:#a30000}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default{color:#000;background:#f1f1f1}.bootstrap-switch .bootstrap-switch-label{text-align:center;margin-top:-1px;margin-bottom:-1px;z-index:100;color:#4d5258;background:#f1f1f1}.bootstrap-switch span::before{content:"\200b"}.bootstrap-switch .bootstrap-switch-handle-on{border-bottom-left-radius:1px - 1;border-top-left-radius:1px - 1}.bootstrap-switch .bootstrap-switch-handle-off{border-bottom-right-radius:1px - 1;border-top-right-radius:1px - 1}.bootstrap-switch input[type=checkbox],.bootstrap-switch input[type=radio]{position:absolute!important;top:0;left:0;margin:0;z-index:-1;opacity:0;visibility:hidden}.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label{padding:1px 5px;font-size:11px;line-height:1.5}.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label{padding:2px 6px;font-size:11px;line-height:1.5}.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label{padding:2px 10px;font-size:14px;line-height:1.3333333}.bootstrap-switch.bootstrap-switch-disabled,.bootstrap-switch.bootstrap-switch-indeterminate,.bootstrap-switch.bootstrap-switch-readonly{cursor:default!important}.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label{opacity:.5;cursor:default!important}.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container{-webkit-transition:margin-left .5s;-o-transition:margin-left .5s;transition:margin-left .5s}.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on{border-bottom-left-radius:0;border-top-left-radius:0;border-bottom-right-radius:1px - 1;border-top-right-radius:1px - 1}.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off{border-bottom-right-radius:0;border-top-right-radius:0;border-bottom-left-radius:1px - 1;border-top-left-radius:1px - 1}.bootstrap-switch.bootstrap-switch-focused{border-color:#0088ce;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,136,206,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,136,206,.6)}.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label{border-bottom-right-radius:1px - 1;border-top-right-radius:1px - 1}.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label{border-bottom-left-radius:1px - 1;border-top-left-radius:1px - 1}.bootstrap-touchspin .input-group-btn-vertical{position:relative;white-space:nowrap;width:1%;vertical-align:middle;display:table-cell}.bootstrap-touchspin .input-group-btn-vertical>.btn{display:block;float:none;width:100%;max-width:100%;padding:8px 10px;margin-left:-1px;position:relative}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-radius:0;border-top-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{margin-top:-2px;border-radius:0;border-bottom-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical i{position:absolute;top:3px;left:5px;font-size:9px;font-weight:400}.c3 svg{font:10px sans-serif;-webkit-tap-highlight-color:transparent}.c3 line,.c3 path{fill:none;stroke:#000}.c3 text{-webkit-user-select:none;-moz-user-select:none;user-select:none}.c3-bars path,.c3-event-rect,.c3-legend-item-tile,.c3-xgrid-focus,.c3-ygrid{shape-rendering:crispEdges}.c3-chart-arc path{stroke:#fff}.c3-chart-arc rect{stroke:#fff;stroke-width:1}.c3-chart-arc text{fill:#fff;font-size:13px}.c3-grid line{stroke:#aaa}.c3-grid text{fill:#aaa}.c3-xgrid,.c3-ygrid{stroke-dasharray:3 3}.c3-text.c3-empty{fill:grey;font-size:2em}.c3-line{stroke-width:1px}.c3-circle._expanded_{stroke-width:1px;stroke:#fff}.c3-selected-circle{fill:#fff;stroke-width:2px}.c3-bar{stroke-width:0}.c3-bar._expanded_{fill-opacity:1;fill-opacity:.75}.c3-target.c3-focused{opacity:1}.c3-target.c3-focused path.c3-line,.c3-target.c3-focused path.c3-step{stroke-width:2px}.c3-target.c3-defocused{opacity:.3!important}.c3-region{fill:#4682b4;fill-opacity:.1}.c3-brush .extent{fill-opacity:.1}.c3-legend-item{font-size:12px}.c3-legend-item-hidden{opacity:.15}.c3-legend-background{opacity:.75;fill:#fff;stroke:#d3d3d3;stroke-width:1}.c3-title{font:14px sans-serif}.c3-tooltip-container{z-index:10}.c3-tooltip{border-collapse:collapse;border-spacing:0;background-color:#fff;empty-cells:show;-webkit-box-shadow:7px 7px 12px -9px #777;-moz-box-shadow:7px 7px 12px -9px #777;box-shadow:7px 7px 12px -9px #777;opacity:.9}.c3-tooltip tr{border:1px solid #ccc}.c3-tooltip th{background-color:#aaa;font-size:14px;padding:2px 5px;text-align:left;color:#fff}.c3-tooltip td{font-size:13px;padding:3px 6px;background-color:#fff;border-left:1px dotted #999}.c3-tooltip td>span{display:inline-block;width:10px;height:10px;margin-right:6px}.c3-tooltip td.value{text-align:right}.c3-area{stroke-width:0;opacity:.2}.c3-chart-arcs-title{dominant-baseline:middle;font-size:1.3em}.c3-chart-arcs .c3-chart-arcs-background{fill:#e0e0e0;stroke:#fff}.c3-chart-arcs .c3-chart-arcs-gauge-unit{fill:#000;font-size:16px}.c3-chart-arcs .c3-chart-arcs-gauge-max{fill:#777}.c3-chart-arcs .c3-chart-arcs-gauge-min{fill:#777}.c3-chart-arc .c3-gauge-value{fill:#000}.c3-chart-arc.c3-target g path{opacity:1}.c3-chart-arc.c3-target.c3-focused g path{opacity:1}/*!
+ * Datetimepicker for Bootstrap 3
+ * version : 4.17.47
+ * https://github.com/Eonasdan/bootstrap-datetimepicker/
+ */.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{display:block;margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:700;font-size:1em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action=clear]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action=today]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:1px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:0 0}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#9c9c9c}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:0 0;cursor:pointer}.bootstrap-datetimepicker-widget table td.new,.bootstrap-datetimepicker-widget table td.old{color:#9c9c9c}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#0088ce;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#0088ce;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:1px}.bootstrap-datetimepicker-widget table td span:hover{background:0 0}.bootstrap-datetimepicker-widget table td span.active{background-color:#0088ce;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td span.old{color:#9c9c9c}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget.wider{width:21em}.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em!important}.input-group.date .input-group-addon{cursor:pointer}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.text-overflow-pf{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.about-modal-pf{background-color:#292e34;background-image:url(../img/bg-modal-about-pf.png);background-position:right bottom;background-repeat:no-repeat;background-size:216px auto}@media (min-width:768px){.about-modal-pf{background-size:auto}}.about-modal-pf .modal-body{color:#fff;padding-bottom:16px;padding-left:40px;padding-right:40px}@media (min-width:768px){.about-modal-pf .modal-body{padding-left:80px;padding-right:80px}}.about-modal-pf .modal-header{background-color:transparent}.about-modal-pf .pficon-close{color:#fff}.product-versions-pf{margin-bottom:30px;margin-top:30px}.product-versions-pf li strong{margin-right:10px}.trademark-pf{font-size:11px}.applauncher-pf{display:inline-block;overflow:visible}.applauncher-pf .applauncher-pf-title{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.applauncher-pf .dropdown-toggle.disabled{cursor:not-allowed}.applauncher-pf.open>.dropdown-menu{display:flex;flex-wrap:wrap}.applauncher-pf .applauncher-pf-item{width:100%}.applauncher-pf .applauncher-pf-link{display:flex;white-space:initial;align-items:center}@media (min-width:768px){.applauncher-pf-block-list .applauncher-pf-item{flex:0 0 50%}}.applauncher-pf-block-list .applauncher-pf-link{flex-wrap:wrap}@media (min-width:768px){.applauncher-pf-block-list .applauncher-pf-link{flex-direction:column;text-align:center;padding:15px 0;height:100%}}.applauncher-pf-block-list .applauncher-pf-link-icon{padding:0}.applauncher-pf-block-list .applauncher-pf-link-title{margin-top:auto}@media (min-width:768px){.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link{padding:9px}.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon{flex:1 0 0;text-align:left}.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title{flex:3}}.applauncher-pf .dropdown-menu{padding:9px;min-width:220px}.applauncher-pf .applauncher-pf-link{border-style:solid;border-width:1px;border-color:transparent}.applauncher-pf .applauncher-pf-link:hover{background-color:#f5f5f5;border-color:#bbb;color:#0088ce;text-decoration:none;-webkit-box-shadow:0 0 2px 0 #d1d1d1;box-shadow:0 0 2px 0 #d1d1d1}.applauncher-pf .applauncher-pf-link-icon{font-size:1.2em;text-align:center;width:1.28571429em}@media (min-width:768px){.applauncher-pf .applauncher-pf-link-icon{font-size:2em}}.navbar-utility .applauncher-pf .dropdown-menu{border-width:1px!important}@media (min-width:768px){.navbar-utility .applauncher-pf .dropdown-menu{margin-top:3px;right:0}}.navbar-pf .applauncher-pf.open>a,.navbar-pf .applauncher-pf.open>a:focus,.navbar-pf .navbar-utility .applauncher-pf.open>a,.navbar-pf .navbar-utility .applauncher-pf.open>a:focus,.navbar-pf-alt .applauncher-pf.open>a,.navbar-pf-alt .applauncher-pf.open>a:focus,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a:focus{background-color:#454c53;color:#fff}@media (min-width:768px){.navbar-pf .applauncher-pf.open>a,.navbar-pf .applauncher-pf.open>a:focus,.navbar-pf .navbar-utility .applauncher-pf.open>a,.navbar-pf .navbar-utility .applauncher-pf.open>a:focus,.navbar-pf-alt .applauncher-pf.open>a,.navbar-pf-alt .applauncher-pf.open>a:focus,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a:focus{background-color:#5b6165;border-color:#53565b;color:#fff}}@media (max-width:767px){.navbar-pf .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf-alt .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu>li>a{padding-left:20px}.navbar-pf .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon{padding-right:20px}}.navbar-pf .applauncher-pf .dropdown-toggle,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .applauncher-pf .dropdown-toggle,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{background-color:inherit;color:#d1d1d1;text-align:left;text-decoration:none;border-width:0;display:block;padding-left:20px}.navbar-pf .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle.disabled{color:#8b8d8f!important}@media (min-width:768px){.navbar-pf .applauncher-pf .dropdown-toggle,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .applauncher-pf .dropdown-toggle,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{border-left:1px solid #53565b;padding:7px 10px;line-height:1}}.navbar-pf .applauncher-pf .applauncher-pf-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon{padding-right:4px}@media (min-width:768px){.navbar-pf .applauncher-pf .applauncher-pf-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon{padding:0}}.navbar-pf .applauncher-pf .applauncher-pf-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title{display:inline;position:relative}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{overflow:hidden;width:100%}.navbar-pf .applauncher-pf .applauncher-pf-link:hover,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover{background-color:transparent;border-color:transparent;-webkit-box-shadow:none;box-shadow:none}.navbar-pf .applauncher-pf .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-title{overflow:hidden}@media (min-width:768px){.navbar-pf .applauncher-pf,.navbar-pf .navbar-utility .applauncher-pf,.navbar-pf-alt .applauncher-pf,.navbar-pf-alt .navbar-utility .applauncher-pf{display:inline-block;overflow:visible}.navbar-pf .applauncher-pf .applauncher-pf-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.navbar-pf .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled{cursor:not-allowed}.navbar-pf .applauncher-pf.open>.dropdown-menu,.navbar-pf .navbar-utility .applauncher-pf.open>.dropdown-menu,.navbar-pf-alt .applauncher-pf.open>.dropdown-menu,.navbar-pf-alt .navbar-utility .applauncher-pf.open>.dropdown-menu{display:flex;flex-wrap:wrap}.navbar-pf .applauncher-pf .applauncher-pf-item,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-item,.navbar-pf-alt .applauncher-pf .applauncher-pf-item,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-item{width:100%}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{display:flex;white-space:initial;align-items:center}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link{flex-wrap:wrap}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon{padding:0}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-title{margin-top:auto}.navbar-pf .applauncher-pf .dropdown-menu,.navbar-pf .navbar-utility .applauncher-pf .dropdown-menu,.navbar-pf-alt .applauncher-pf .dropdown-menu,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-menu{padding:9px;min-width:220px}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{border-style:solid;border-width:1px;border-color:transparent}.navbar-pf .applauncher-pf .applauncher-pf-link:hover,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover{background-color:#f5f5f5;border-color:#bbb;color:#0088ce;text-decoration:none;-webkit-box-shadow:0 0 2px 0 #d1d1d1;box-shadow:0 0 2px 0 #d1d1d1}.navbar-pf .applauncher-pf .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon{font-size:1.2em;text-align:center;width:1.28571429em}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-item{flex:0 0 50%}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link{flex-direction:column;text-align:center;padding:15px 0;height:100%}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link{padding:9px}.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon{flex:1 0 0;text-align:left}.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title{flex:3}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon{font-size:2em}}@media (min-width:768px){.navbar-iconic .applauncher-pf .dropdown-toggle,.navbar-iconic .applauncher-pf.dropdown>.dropdown-toggle,.navbar-iconic .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-iconic .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{padding:22px 10px;line-height:inherit}}.blank-slate-pf{background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:1px;margin-bottom:20px;padding:30px;text-align:center}@media (min-width:768px){.blank-slate-pf{padding:60px 60px}}@media (min-width:992px){.blank-slate-pf{padding:90px 120px}}.blank-slate-pf .blank-slate-pf-icon{color:#9c9c9c;font-size:57.6px;line-height:57.6px}.blank-slate-pf .blank-slate-pf-main-action{margin-top:20px}.blank-slate-pf .blank-slate-pf-secondary-action{margin-top:20px}.blank-slate-pf button{margin-right:5px}.blank-slate-pf button:last-of-type{margin-right:0}.combobox-container.combobox-selected .glyphicon-remove{display:inline-block}.combobox-container .caret{margin-left:0}.combobox-container .combobox::-ms-clear{display:none}.combobox-container .dropdown-menu{margin-top:-1px;width:100%}.combobox-container .glyphicon-remove{display:none;top:auto;width:12px}.combobox-container .glyphicon-remove:before{content:"\e60b";font-family:PatternFlyIcons-webfont}.combobox-container .input-group-addon{background-color:#f1f1f1;background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;position:relative}.combobox-container .input-group-addon.active,.combobox-container .input-group-addon:active,.combobox-container .input-group-addon:focus,.combobox-container .input-group-addon:hover,.open .dropdown-toggle.combobox-container .input-group-addon{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.combobox-container .input-group-addon.active,.combobox-container .input-group-addon:active,.open .dropdown-toggle.combobox-container .input-group-addon{background-image:none}.combobox-container .input-group-addon.active.focus,.combobox-container .input-group-addon.active:focus,.combobox-container .input-group-addon.active:hover,.combobox-container .input-group-addon:active.focus,.combobox-container .input-group-addon:active:focus,.combobox-container .input-group-addon:active:hover,.open .dropdown-toggle.combobox-container .input-group-addon.focus,.open .dropdown-toggle.combobox-container .input-group-addon:focus,.open .dropdown-toggle.combobox-container .input-group-addon:hover{background-color:#e5e5e5;border-color:#a9a9a9}.combobox-container .input-group-addon.disabled,.combobox-container .input-group-addon.disabled.active,.combobox-container .input-group-addon.disabled:active,.combobox-container .input-group-addon.disabled:focus,.combobox-container .input-group-addon.disabled:hover,.combobox-container .input-group-addon[disabled],.combobox-container .input-group-addon[disabled].active,.combobox-container .input-group-addon[disabled]:active,.combobox-container .input-group-addon[disabled]:focus,.combobox-container .input-group-addon[disabled]:hover,fieldset[disabled] .combobox-container .input-group-addon,fieldset[disabled] .combobox-container .input-group-addon.active,fieldset[disabled] .combobox-container .input-group-addon:active,fieldset[disabled] .combobox-container .input-group-addon:focus,fieldset[disabled] .combobox-container .input-group-addon:hover{background-color:#f1f1f1;border-color:#bbb}.combobox-container .input-group-addon:active{-webkit-box-shadow:inset 0 2px 8px rgba(3,3,3,.2);box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.bootstrap-datepicker.form-control[readonly]{background-color:#fff;border-color:#bbb!important;color:#363636;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075);box-shadow:inset 0 1px 1px rgba(3,3,3,.075)}.bootstrap-datepicker.form-control[readonly]:focus{border-color:#0088ce;outline:0!important;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6);box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6)}.bootstrap-datepicker.form-control[readonly]:focus{border-color:#0088ce!important}.has-error .bootstrap-datepicker.form-control[readonly]:focus{border-color:#900;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33}.has-success .bootstrap-datepicker.form-control[readonly]:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168}.has-warning .bootstrap-datepicker.form-control[readonly]:focus{border-color:#bb6106;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60}.bootstrap-datepicker.form-control[readonly]:hover{border-color:#7dc3e8!important}.has-error .bootstrap-datepicker.form-control[readonly]:hover{border-color:#900!important}.has-success .bootstrap-datepicker.form-control[readonly]:hover{border-color:#2b542c!important}.has-warning .bootstrap-datepicker.form-control[readonly]:hover{border-color:#bb6106!important}.has-error .bootstrap-datepicker.form-control[readonly]{border-color:#c00!important}.has-success .bootstrap-datepicker.form-control[readonly]{border-color:#3c763d!important}.has-warning .bootstrap-datepicker.form-control[readonly]{border-color:#ec7a08!important}.datepicker{border-radius:1px}.datepicker .datepicker-switch,.datepicker tfoot .clear,.datepicker tfoot .today{font-size:14px;font-weight:500}.datepicker .next,.datepicker .prev{font-weight:500}.datepicker table tr td,.datepicker table tr th{border-radius:1px}.datepicker table tr td.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active:hover{background:#0088ce!important;color:#fff!important;text-shadow:none}.datepicker table tr td.day.focused,.datepicker table tr td.day:hover{background:#def3ff}.datepicker table tr td.selected,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected:hover{text-shadow:none}.datepicker table tr td span{border-radius:1px}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover{background:#0088ce;text-shadow:none}.datepicker table tr td span:hover{background:#def3ff}.datepicker tfoot tr th:hover,.datepicker thead tr:first-child th:hover{background:#def3ff}.input-daterange input:first-child{border-radius:1px 0 0 1px}.input-daterange input:last-child{border-radius:0 1px 1px 0}.input-daterange .input-group-addon{background-color:#f1f1f1;border-color:#bbb;line-height:1.66666667;padding:2px 6px}.bootstrap-select.btn-group.form-control{margin-bottom:0}.bootstrap-select.btn-group .btn{-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.bootstrap-select.btn-group .btn:hover{border-color:#7dc3e8}.bootstrap-select.btn-group .btn .caret{margin-top:-4px}.bootstrap-select.btn-group .btn:focus{border-color:#0088ce;outline:0!important;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6);box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6)}.has-error .bootstrap-select.btn-group .btn{border-color:#c00}.has-error .bootstrap-select.btn-group .btn:focus{border-color:#900;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33}.has-success .bootstrap-select.btn-group .btn{border-color:#3c763d}.has-success .bootstrap-select.btn-group .btn:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168}.has-warning .bootstrap-select.btn-group .btn{border-color:#ec7a08}.has-warning .bootstrap-select.btn-group .btn:focus{border-color:#bb6106;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60}.bootstrap-select.btn-group .dropdown-menu>.active>a,.bootstrap-select.btn-group .dropdown-menu>.active>a:active{background-color:#def3ff!important;border-color:#bee1f4!important;color:#363636!important}.bootstrap-select.btn-group .dropdown-menu>.active>a small,.bootstrap-select.btn-group .dropdown-menu>.active>a:active small{color:#9c9c9c!important}.bootstrap-select.btn-group .dropdown-menu>.disabled>a{color:#9c9c9c!important}.bootstrap-select.btn-group .dropdown-menu>.selected>a{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.bootstrap-select.btn-group .dropdown-menu>.selected>a small{color:rgba(255,255,255,.5)!important}.bootstrap-select.btn-group .dropdown-menu .divider{background:#ededed!important;margin:4px 1px!important}.bootstrap-select.btn-group .dropdown-menu dt{color:#8b8d8f;font-weight:400;padding:1px 10px}.bootstrap-select.btn-group .dropdown-menu li>a.opt{padding:1px 10px}.bootstrap-select.btn-group .dropdown-menu li a:active small{color:rgba(255,255,255,.5)!important}.bootstrap-select.btn-group .dropdown-menu li a:focus small,.bootstrap-select.btn-group .dropdown-menu li a:hover small{color:#9c9c9c}.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:focus small,.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:hover small{color:#9c9c9c}.slider-tick-label-container{display:flex;justify-content:space-between;margin-left:0!important}.slider-tick-label{width:auto!important}.slider .tooltip{top:-10px}.slider-track{background-color:#ededed;box-shadow:inset 0 2px 3px rgba(0,0,0,.1),0 0 2px #ededed;border:1px solid #bbb}.slider-selection{background-image:-webkit-linear-gradient(top,#0088ce 0,#39a5dc 100%);background-image:-o-linear-gradient(top,#0088ce 0,#39a5dc 100%);background-image:linear-gradient(to bottom,#0088ce 0,#39a5dc 100%);background-repeat:repeat-x}.slider-handle{width:16px;height:16px;border:1px solid #bbb}.slider-tick{background-color:transparent!important;background-image:radial-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3) 2px,transparent 2px)!important;-webkit-box-shadow:none;box-shadow:none}.slider-pf{display:flex;align-items:center}.slider-pf *{margin-right:10px}.slider-pf :last-child{margin:0}.slider-pf .slider{width:auto;flex:1 1 100%}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default{background:#fafafa}.bootstrap-switch .bootstrap-switch-label{background:#f1f1f1;box-shadow:0 0 2px rgba(3,3,3,.4);background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;position:relative;z-index:9}.bootstrap-touchspin .input-group-btn-vertical>.btn{padding-bottom:6px;padding-top:6px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{border-bottom-right-radius:1px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-top-right-radius:1px}.bootstrap-touchspin .input-group-btn-vertical i{font-size:8px;left:6px;top:2px}.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up{font-size:12px;line-height:12px;top:0}.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up{left:7px}.treeview .list-group{border-top:0}.treeview .list-group-item{background:0 0;border-bottom:1px solid transparent!important;border-top:1px solid transparent!important;cursor:default!important;margin-bottom:0;overflow:hidden;padding:0 10px;text-overflow:ellipsis;white-space:nowrap}.treeview .list-group-item:hover{background:0 0!important}.treeview .list-group-item.node-selected{background:0 0!important;border-color:transparent!important;color:inherit!important}.treeview .list-group-item.node-check-changed span.node-icon,.treeview .list-group-item.node-check-changed span.text{color:#39a5dc}.treeview span.icon{display:inline-block;font-size:13px;min-width:10px;text-align:center}.treeview span.icon>[class*=fa-angle]{font-size:15px}.treeview span.icon.check-icon{margin-right:10px}.treeview span.icon.expand-icon{cursor:pointer!important}.treeview span.image{background-repeat:no-repeat;background-size:contain;display:inline-block;height:1.19em;line-height:1em;margin-right:5px;vertical-align:middle;width:12px}.treeview span.indent{margin-right:5px}.treeview .node-disabled{color:#d1d1d1;cursor:not-allowed}.treeview .node-disabled span.expand-icon{cursor:default!important}.treeview .node-hidden{display:none}.treeview-pf-hover .list-group-item{cursor:pointer!important}.treeview-pf-hover .list-group-item:hover{background-color:#def3ff!important;border-color:#bee1f4!important}.treeview-pf-select .list-group-item{cursor:pointer!important}.treeview-pf-select .list-group-item.node-selected{background:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.card-pf{background:#fff;border-top:2px solid transparent;-webkit-box-shadow:0 1px 1px rgba(3,3,3,.175);box-shadow:0 1px 1px rgba(3,3,3,.175);margin:0 -10px 20px;padding:0 20px}.card-pf.card-pf-accented{border-top-color:#39a5dc}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a,.card-pf.card-pf-aggregate-status .card-pf-title a{color:#363636}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add,.card-pf.card-pf-aggregate-status .card-pf-title a.add{color:#0088ce}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add:hover,.card-pf.card-pf-aggregate-status .card-pf-title a.add:hover{color:#00659c}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a:hover,.card-pf.card-pf-aggregate-status .card-pf-title a:hover{color:#00659c}.card-pf.card-pf-aggregate-status{padding:0 10px;text-align:center}.card-pf.card-pf-aggregate-status-mini{padding-bottom:10px;position:relative}@media (min-width:768px){.card-pf.card-pf-bleed-left{margin-left:-20px}.card-pf.card-pf-bleed-right{border-right:1px solid #d1d1d1;margin-right:-20px}}.card-pf-aggregate-status-notifications{font-size:24px;font-weight:300}.card-pf-aggregate-status-mini .card-pf-aggregate-status-notifications{line-height:1}.card-pf-aggregate-status-notifications .card-pf-aggregate-status-notification+.card-pf-aggregate-status-notification{border-left:1px solid #d1d1d1;margin-left:3px;padding-left:10px}.card-pf-aggregate-status-notifications .fa,.card-pf-aggregate-status-notifications .pficon{font-size:18px;margin-right:7px}.card-pf-body{margin:20px 0 0;padding:0 0 20px}.card-pf-aggregate-status .card-pf-body{margin-top:10px;padding-bottom:10px}.card-pf-aggregate-status-mini .card-pf-body{margin-bottom:0;margin-top:0;padding-bottom:0;position:absolute;right:20px;top:15px}.card-pf-utilization .card-pf-title+.card-pf-body{margin-top:-8px}.card-pf-body>:last-child{margin-bottom:0}.card-pf-footer{background-color:#fafafa;border-top:1px solid #d1d1d1;margin:0 -20px!important;padding:20px 20px 10px}.card-pf-footer a .fa,.card-pf-footer a .pficon{margin-right:5px}.card-pf-footer .card-pf-time-frame-filter{margin-top:-2px}.card-pf-link-with-icon{padding-left:21px;position:relative}.card-pf-link-with-icon .fa,.card-pf-link-with-icon .pficon{font-size:16px;left:0;position:absolute;top:0}.card-pf-footer .card-pf-time-frame-filter,.card-pf-heading .card-pf-time-frame-filter{float:right;margin-left:20px}.card-pf-heading{border-bottom:1px solid #d1d1d1;margin:0 -20px 20px;padding:0 20px 0}.card-pf-heading .card-pf-time-frame-filter{margin-top:-5px}.card-pf-heading-details{float:right;font-size:10px}.card-pf-subtitle{font-size:16px;margin-top:20px;margin-bottom:10px}[class^=col] .card-pf-subtitle{margin-top:0}@media (max-width:767px){.card-pf-body [class^=col]+[class^=col]>.card-pf-subtitle{margin-top:40px}}.card-pf-title{font-size:16px;font-weight:400;margin:20px 0;padding:0}.card-pf-aggregate-status .card-pf-title{font-size:14px;margin:10px 0 0}.card-pf-aggregate-status .card-pf-title .fa,.card-pf-aggregate-status .card-pf-title .pficon{color:#292e34;font-size:16px;margin-right:7px}.card-pf-title .card-pf-aggregate-status-count{font-size:16px}.card-pf-aggregate-status-mini .card-pf-title .card-pf-aggregate-status-count{display:block;font-size:24px;font-weight:300;margin-bottom:3px}.card-pf-aggregate-status-mini .card-pf-title{font-size:12px;margin-top:5px}.card-pf-aggregate-status-mini .card-pf-title a{display:inline-block}.card-pf-aggregate-status-mini .card-pf-title .fa,.card-pf-aggregate-status-mini .card-pf-title .pficon{font-size:26px;margin-right:0;min-width:26px;position:absolute;left:20px;text-align:center;top:15px}.card-pf-utilization-details{border-bottom:1px solid #d1d1d1;display:table;margin:12px 0 15px;padding:0 0 15px;width:100%}.card-pf-utilization-details .card-pf-utilization-card-details-count,.card-pf-utilization-details .card-pf-utilization-card-details-description{float:left;line-height:1}.card-pf-utilization-details .card-pf-utilization-card-details-count{font-size:26px;font-weight:300;margin-right:10px}.card-pf-utilization-details .card-pf-utilization-card-details-line-1,.card-pf-utilization-details .card-pf-utilization-card-details-line-2{display:block}.card-pf-utilization-details .card-pf-utilization-card-details-line-1{font-size:10px;margin-bottom:2px}.cards-pf{background:#f5f5f5}.cards-pf .row-cards-pf{padding:0 20px}.cards-pf .row-cards-pf:first-child{padding-top:20px}.container-cards-pf{margin-top:20px}.row-cards-pf{margin-left:-10px;margin-right:-10px}.card-pf-view{border:2px solid transparent}.card-pf-view .card-pf-heading-kebab .dropdown-kebab-pf{margin-top:-3px}.card-pf-view .card-pf-heading-kebab+.progress-pf-legend p{margin-bottom:0}.card-pf-view .card-pf-heading-kebab+.progress-pf-legend .progress{margin-bottom:7px;margin-top:16px}.card-pf-view .card-pf-info{margin-top:15px}.card-pf-view .card-pf-info strong{font-size:13px;margin-right:10px}.card-pf-view .card-pf-item{display:inline-block;font-size:16px;padding:0 13px 0 15px}.card-pf-view .card-pf-item:first-child{padding-left:0}.card-pf-view .card-pf-item:last-child{padding-right:0}.card-pf-view .card-pf-item+.card-pf-item{border-left:1px solid #d1d1d1}.card-pf-view .card-pf-item .fa-check{color:#3f9c35}.card-pf-view .card-pf-item .fa+.card-pf-item-text,.card-pf-view .card-pf-item .pficon+.card-pf-item-text{margin-left:10px}.card-pf-view .card-pf-items{margin-top:15px}.card-pf-view .card-pf-title{font-size:20px;font-weight:300;margin-bottom:0;margin-top:15px}.card-pf-view .card-pf-title .fa,.card-pf-view .card-pf-title .pficon{font-size:18px;margin-right:2px}.col-lg-2 .card-pf-view .card-pf-title{font-size:16px}.card-pf-view .card-pf-top-element .card-pf-icon-circle{border:2px solid #39a5dc;border-radius:50%;display:block;font-size:46px;height:106px;line-height:102px;margin:0 auto;text-align:center;width:106px}.col-lg-2 .card-pf-view .card-pf-top-element .card-pf-icon-circle{font-size:23px;height:54px;line-height:50px;width:54px}.card-pf-view .card-pf-view-checkbox{position:absolute;top:11px;left:15px}.card-pf-view .card-pf-view-checkbox input[type=checkbox]{display:none}.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]{display:block}@media (min-width:768px){.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]{visibility:hidden}.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]:checked{visibility:visible}}.card-pf-view.card-pf-view-multi-select:hover .card-pf-view-checkbox input[type=checkbox]{visibility:visible}.card-pf-view.card-pf-view-select{position:relative}.card-pf-view.card-pf-view-select:hover{-webkit-box-shadow:0 1px 6px rgba(3,3,3,.35);box-shadow:0 1px 6px rgba(3,3,3,.35)}.card-pf-view.card-pf-view-select.active{border:2px solid #39a5dc}.card-pf-view.card-pf-view-single-select{cursor:pointer}.card-pf-view.card-pf-view-xs .card-pf-title{font-size:16px;font-weight:400;margin-bottom:10px}.card-pf-view.card-pf-view-xs .card-pf-title .fa,.card-pf-view.card-pf-view-xs .card-pf-title .pficon{font-size:14px;margin-right:5px}.c3 path{stroke:#d1d1d1}.c3 svg{font-family:"Open Sans",Helvetica,Arial,sans-serif}.c3-axis-x .tick line{stroke:#d1d1d1}.c3-axis-y .tick line{display:none}.c3-chart-arc path{stroke:#fff}.c3-grid line{stroke:#d1d1d1}.c3-line{stroke-width:2px}.c3-tooltip{background:#393f44;-webkit-box-shadow:none;box-shadow:none;opacity:.9}.c3-tooltip td{background:0 0;border:0;color:#fff;font-size:12px;padding:5px 10px}.c3-tooltip th{background:0 0;font-size:12px;padding:5px 10px 0;border-bottom:solid 2px #030303}.c3-tooltip tr{border:0}.c3-tooltip tr+tr>td{padding-top:0}.c3-tooltip-sparkline,.donut-tooltip-pf{background:#393f44;color:#fff;opacity:.9;padding:2px 6px}.c3-xgrid,.c3-ygrid{stroke-dasharray:0 0}.chart-pf-sparkline{margin-left:-5px;margin-right:-5px}.donut-title-big-pf{font-size:30px;font-weight:300}.donut-title-small-pf{font-size:12px;font-weight:400}.line-chart-pf .c3-zoom-rect{opacity:1!important;fill:#fafafa;stroke:#d1d1d1;stroke-width:1px}.pct-donut-chart-pf .pct-donut-chart-pf-label{display:block}.pct-donut-chart-pf .pct-donut-chart-pf-left,.pct-donut-chart-pf .pct-donut-chart-pf-right,.pct-donut-chart-pf.pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-right{display:flex;flex-direction:row;justify-content:center;align-items:center}.pct-donut-chart-pf.pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-right{display:inline-flex}.pct-donut-chart-pf .pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-left{flex-direction:row-reverse}.close{text-shadow:none;z-index:1;position:relative;opacity:.6}.close:focus,.close:hover{opacity:.9}.layout-pf-fixed .navbar-pf-vertical.navbar-pf-contextselector{z-index:1040}.navbar-pf-vertical .nav.contextselector-pf{border-left:1px solid #4d5258}@media (min-width:768px){.navbar-pf-vertical .nav.contextselector-pf{margin-left:10px}}.navbar-pf-vertical .nav.contextselector-pf .nav-item-iconic{padding:23px 20px 18px 10px;display:flex;align-items:center}.contextselector-pf{float:left}.contextselector-pf-title{width:170px;white-space:nowrap;display:inline-block;overflow:hidden;text-overflow:ellipsis;line-height:normal}@media (min-width:480px){.contextselector-pf-title{width:210px}}.contextselector-pf .dropdown.open,.contextselector-pf .dropdown:hover{background-color:#64686c}.contextselector-pf .dropdown-menu{width:100%;margin-top:0}.contextselector-pf .form-group{margin:0 5px 5px 5px}@media (min-width:768px){.contextselector-pf .contextselector-pf-list{max-height:200px;overflow-y:auto}}.contextselector-pf .contextselector-pf-list li{padding:1px 10px;border-width:1px 0;border-style:solid;border-color:transparent}.contextselector-pf .contextselector-pf-list li:hover{background:#def3ff;border-color:#bee1f4}.contextselector-pf .contextselector-pf-list li:hover a{text-decoration:none}.contextselector-pf .contextselector-pf-list a{color:#393f44;display:block}.ColVis_Button:active:focus{outline:0}.ColVis_catcher{position:absolute;z-index:999}.ColVis_collection{background-color:#fff;border:1px solid #bbb;border-radius:1px;-webkit-box-shadow:0 6px 12px rgba(3,3,3,.175);box-shadow:0 6px 12px rgba(3,3,3,.175);background-clip:padding-box;list-style:none;margin:-1px 0 0 0;padding:5px 10px;width:150px;z-index:1000}.ColVis_collection label{font-weight:400;margin-bottom:5px;margin-top:5px;padding-left:20px}.ColVis_collectionBackground{background-color:#fff;height:100%;left:0;position:fixed;top:0;width:100%;z-index:998}.dataTables_header{background-color:#f5f5f5;border:1px solid #d1d1d1;border-bottom:none;padding:5px;position:relative;text-align:center}.dataTables_header .btn{-webkit-box-shadow:none;box-shadow:none}.dataTables_header .ColVis{position:absolute;right:5px;text-align:left;top:5px}.dataTables_header .ColVis+.dataTables_info{padding-right:30px}.dataTables_header .dataTables_filter{position:absolute}.dataTables_header .dataTables_filter input{border:1px solid #bbb;height:24px}@media (max-width:767px){.dataTables_header .dataTables_filter input{width:100px}}.dataTables_header .dataTables_info{padding:2px 0}@media (max-width:480px){.dataTables_header .dataTables_info{text-align:right}}.dataTables_header .dataTables_info b{font-weight:700}.dataTables_footer{background-color:#fff;border:1px solid #d1d1d1;border-top:none;overflow:hidden}.dataTables_paginate{background:#fafafa;float:right;margin:0}.dataTables_paginate .pagination{float:left;margin:0}.dataTables_paginate .pagination>li>span{border-color:#fff #d1d1d1 #f5f5f5;border-width:0 1px;font-size:16px;font-weight:400;padding:0;text-align:center;width:31px}.dataTables_paginate .pagination>li.last>span{border-right:none}.dataTables_paginate .pagination>li.disabled>span{background:#f5f5f5;border-left-color:#ededed;border-right-color:#ededed}.dataTables_paginate .pagination-input{float:left;font-size:12px;line-height:1em;padding:4px 15px 0;text-align:right}.dataTables_paginate .pagination-input .paginate_input{border:1px solid #d1d1d1;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075);box-shadow:inset 0 1px 1px rgba(3,3,3,.075);font-size:12px;font-weight:600;height:19px;margin-right:8px;padding-right:3px;text-align:right;width:30px}.dataTables_paginate .pagination-input .paginate_of{position:relative}.dataTables_paginate .pagination-input .paginate_of b{margin-left:3px}.dataTables_empty{background:#f5f5f5}.DTCR_clonedTable{background-color:rgba(255,255,255,.7);z-index:202}.DTCR_pointer{background-color:#0088ce;width:1px;z-index:201}.experimental-pf>*{border:2px solid #92d400}.experimental-pf-bar{background-color:#92d400;border:none;text-align:center;position:relative}.experimental-pf-more-info{background-color:#92d400;border:0;color:#030303;display:block;width:100%;padding-top:10px;padding-bottom:10px;position:static}@media (min-width:992px){.experimental-pf-more-info{padding:0 10px;position:absolute;right:0;top:0;width:auto}}@media (min-width:992px){.experimental-pf-text{padding-left:150px;padding-right:150px}}.experimental-pf-text a{color:#030303;text-decoration:underline}.experimental-pf-text a:hover{color:#030303;cursor:pointer}.btn-experimental-pf{background-color:#92d400;background-image:-webkit-linear-gradient(top,#ace12e 0,#92d400 100%);background-image:-o-linear-gradient(top,#ace12e 0,#92d400 100%);background-image:linear-gradient(to bottom,#ace12e 0,#92d400 100%);background-repeat:repeat-x;border-color:#92d400;color:#4d5258}.btn-experimental-pf.active,.btn-experimental-pf:active,.btn-experimental-pf:focus,.btn-experimental-pf:hover,.open .dropdown-toggle.btn-experimental-pf{background-color:#92d400;background-image:none;border-color:#92d400;color:#4d5258}.btn-experimental-pf.active,.btn-experimental-pf:active,.open .dropdown-toggle.btn-experimental-pf{background-image:none}.btn-experimental-pf.active.focus,.btn-experimental-pf.active:focus,.btn-experimental-pf.active:hover,.btn-experimental-pf:active.focus,.btn-experimental-pf:active:focus,.btn-experimental-pf:active:hover,.open .dropdown-toggle.btn-experimental-pf.focus,.open .dropdown-toggle.btn-experimental-pf:focus,.open .dropdown-toggle.btn-experimental-pf:hover{background-color:#80bb00;border-color:#79b000}.btn-experimental-pf.disabled,.btn-experimental-pf.disabled.active,.btn-experimental-pf.disabled:active,.btn-experimental-pf.disabled:focus,.btn-experimental-pf.disabled:hover,.btn-experimental-pf[disabled],.btn-experimental-pf[disabled].active,.btn-experimental-pf[disabled]:active,.btn-experimental-pf[disabled]:focus,.btn-experimental-pf[disabled]:hover,fieldset[disabled] .btn-experimental-pf,fieldset[disabled] .btn-experimental-pf.active,fieldset[disabled] .btn-experimental-pf:active,fieldset[disabled] .btn-experimental-pf:focus,fieldset[disabled] .btn-experimental-pf:hover{background-color:#92d400;border-color:#92d400}.filter-pf-category-select{display:flex}.filter-pf-category-select-value{border-left-width:0}.filter-pf-category-item{margin-bottom:5px}.filter-pf-category-label{font-weight:700;margin-right:5px;padding:5px 0 6px 5px}.filter-pf-select .caret{position:absolute;top:50%;right:10px;transform:translateY(-50%)}.filter-pf-select-dropdown{background-color:#fff;background-image:none;color:#8b8d8f;font-size:12px;font-style:italic;font-weight:400;padding-right:25px;text-align:left}.filter-pf-select-dropdown .caret{font-style:normal}.filter-pf-active-label{margin-right:5px}.footer-pf,.footer-pf-alt{background-color:#030303;color:#9c9c9c;font-size:11px;line-height:17px;padding-left:25px;padding-top:10px}.layout-pf-alt-fixed-with-footer .footer-pf,.layout-pf-alt-fixed-with-footer .footer-pf-alt,.layout-pf-fixed-with-footer .footer-pf,.layout-pf-fixed-with-footer .footer-pf-alt{bottom:0;left:0;position:fixed;right:0;z-index:1030}@font-face{font-family:PatternFlyIcons-webfont;src:url(../fonts/PatternFlyIcons-webfont.eot);src:url(../fonts/PatternFlyIcons-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/PatternFlyIcons-webfont.ttf) format("truetype"),url(../fonts/PatternFlyIcons-webfont.woff) format("woff"),url(../fonts/PatternFlyIcons-webfont.svg#PatternFlyIcons-webfont) format("svg");font-weight:400;font-style:normal}[class*=" pficon-"],[class^=pficon-]{display:inline-block;font-family:PatternFlyIcons-webfont;font-style:normal;font-variant:normal;font-weight:400;line-height:1;speak:none;text-transform:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.pficon-add-circle-o:before{content:"\e61b"}.pficon-applications:before{content:"\e936"}.pficon-arrow:before{content:"\e929"}.pficon-asleep:before{content:"\e925"}.pficon-automation:before{content:"\e937"}.pficon-build:before{content:"\e902"}.pficon-builder-image:before{content:"\e800"}.pficon-bundle:before{content:"\e918"}.pficon-blueprint:before{content:"\e915"}.pficon-catalog:before{content:"\e939"}.pficon-chat:before{content:"\e928"}.pficon-close:before{content:"\e60b"}.pficon-cloud-security:before{content:"\e903"}.pficon-cloud-tenant:before{content:"\e904"}.pficon-cluster:before{content:"\e620"}.pficon-connected:before{content:"\e938"}.pficon-container-node:before{content:"\e621"}.pficon-cpu:before{content:"\e927"}.pficon-degraded:before{content:"\e91b"}.pficon-delete:before{content:"\e611"}.pficon-disconnected:before{content:"\e93c"}.pficon-domain:before{content:"\e919"}.pficon-edit:before{content:"\e60a"}.pficon-enhancement:before{content:"\e93a"}.pficon-enterprise:before{content:"\e906"}.pficon-equalizer:before{content:"\e610"}.pficon-error-circle-o:before{color:#c00;content:"\e926"}.pficon-export:before{content:"\e616"}.pficon-flag:before,.pficon-messages:before{content:"\e603"}.pficon-flavor:before{content:"\e907"}.pficon-filter:before{content:"\e943"}.pficon-folder-close:before{content:"\e607"}.pficon-folder-open:before{content:"\e606"}.pficon-help:before{content:"\e605"}.pficon-history:before{content:"\e93b"}.pficon-home:before{content:"\e618"}.pficon-image:before{content:"\e61f"}.pficon-import:before{content:"\e615"}.pficon-in-progress:before{content:"\e92c"}.pficon-info:before{content:"\e92b"}.pficon-infrastructure:before{content:"\e93d"}.pficon-integration:before{content:"\e948"}.pficon-key:before{content:"\e924"}.pficon-locked:before{content:"\e923"}.pficon-maintenance:before{content:"\e92d"}.pficon-memory:before{content:"\e908"}.pficon-middleware:before{content:"\e917"}.pficon-migration:before{content:"\e92e"}.pficon-monitoring:before{content:"\e944"}.pficon-network:before{content:"\e909"}.pficon-network-range:before{content:"\e94a"}.pficon-on:before{content:"\e931"}.pficon-on-running:before{content:"\e930"}.pficon-optimize:before{content:"\e93e"}.pficon-orders:before{content:"\e93f"}.pficon-off:before{content:"\e92f"}.pficon-ok:before{color:#3f9c35;content:"\e602"}.pficon-paused:before{content:"\e932"}.pficon-pending:before{content:"\e933"}.pficon-plugged:before{content:"\e940"}.pficon-port:before{content:"\e945"}.pficon-print:before{content:"\e612"}.pficon-process-automation:before{content:"\e949"}.pficon-private:before{content:"\e914"}.pficon-project:before{content:"\e905"}.pficon-rebalance:before{content:"\e91c"}.pficon-rebooting:before{content:"\e934"}.pficon-refresh:before,.pficon-restart:before{content:"\e617"}.pficon-regions:before{content:"\e90a"}.pficon-registry:before{content:"\e623"}.pficon-remove:before{content:"\e611"}.pficon-replicator:before{content:"\e624"}.pficon-repository:before{content:"\e90b"}.pficon-resource-pool:before{content:"\e90c"}.pficon-resources-almost-empty:before{content:"\e91d"}.pficon-resources-almost-full:before{content:"\e912"}.pficon-resources-full:before{content:"\e92a"}.pficon-route:before{content:"\e625"}.pficon-running:before{content:"\e614"}.pficon-satellite:before{content:"\e94b"}.pficon-save:before{content:"\e601"}.pficon-screen:before{content:"\e600"}.pficon-search:before{content:"\e921"}.pficon-security:before{content:"\e946"}.pficon-server:before{content:"\e90d"}.pficon-server-group:before{content:"\e91a"}.pficon-service:before{content:"\e61e"}.pficon-services:before{content:"\e947"}.pficon-service-catalog:before{content:"\e941"}.pficon-settings:before{content:"\e610"}.pficon-spinner:before{content:"\e614"}.pficon-spinner2:before{content:"\e613"}.pficon-storage-domain:before{content:"\e90e"}.pficon-template:before{content:"\e94c"}.pficon-tenant:before{content:"\e916"}.pficon-thumb-tack-o:before{content:"\e920"}.pficon-topology:before{content:"\e608"}.pficon-trend-down:before{content:"\e900"}.pficon-trend-up:before{content:"\e901"}.pficon-unknown:before{content:"\e935"}.pficon-user:before{content:"\e91e"}.pficon-users:before{content:"\e91f"}.pficon-unlocked:before{content:"\e922"}.pficon-unplugged:before{content:"\e942"}.pficon-vcenter:before{content:"\e94d"}.pficon-virtual-machine:before{content:"\e90f"}.pficon-volume:before{content:"\e910"}.pficon-warning-triangle-o:before{color:#ec7a08;content:"\e913"}.pficon-zone:before{content:"\e911"}.navbar-nav>li>.dropdown-menu.infotip{border-top-width:1px!important;margin-top:10px}@media (max-width:767px){.navbar-pf .navbar-nav .open .dropdown-menu.infotip{background-color:#fff!important;margin-top:0}}.infotip{min-width:235px;padding:0}.infotip .list-group{border-top:0;margin:0;padding:8px 0}.infotip .list-group .list-group-item{border:none;margin:0 15px 0 34px;padding:5px 0}.infotip .list-group .list-group-item>.i{color:#4d5258;font-size:13px;left:-20px;position:absolute;top:8px}.infotip .list-group .list-group-item>a{color:#4d5258;line-height:13px}.infotip .list-group .list-group-item>.close{float:right}.infotip .footer{background-color:#f5f5f5;padding:6px 15px}.infotip .footer a:hover{color:#0088ce}.infotip .arrow,.infotip .arrow:after{border-color:transparent;border-style:solid;display:block;height:0;position:absolute;width:0}.infotip .arrow{border-width:11px}.infotip .arrow:after{border-width:10px;content:""}.infotip.bottom .arrow,.infotip.bottom-left .arrow,.infotip.bottom-right .arrow{border-bottom-color:#bbb;border-top-width:0;left:50%;margin-left:-11px;top:-11px}.infotip.bottom .arrow:after,.infotip.bottom-left .arrow:after,.infotip.bottom-right .arrow:after{border-top-width:0;border-bottom-color:#fff;content:" ";margin-left:-10px;top:1px}.infotip.bottom-left .arrow{left:20%}.infotip.bottom-right .arrow{left:80%}.infotip.top .arrow{border-bottom-width:0;border-top-color:#bbb;bottom:-11px;left:50%;margin-left:-11px}.infotip.top .arrow:after{border-bottom-width:0;border-top-color:#f5f5f5;bottom:1px;content:" ";margin-left:-10px}.infotip.right .arrow{border-left-width:0;border-right-color:#bbb;left:-11px;margin-top:-11px;top:50%}.infotip.right .arrow:after{bottom:-10px;border-left-width:0;border-right-color:#fff;content:" ";left:1px}.infotip.left .arrow{border-left-color:#bbb;border-right-width:0;margin-top:-11px;right:-11px;top:50%}.infotip.left .arrow:after{border-left-color:#fff;border-right-width:0;bottom:-10px;content:" ";right:1px}.layout-pf,.layout-pf body{min-height:100%}.layout-pf.layout-pf-fixed.transitions .container-pf-nav-pf-vertical{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf.layout-pf-fixed body{padding-top:60px}.layout-pf.layout-pf-fixed .navbar-pf{left:0;position:fixed;top:0;right:0;z-index:1030}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav{margin-left:75px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav.hidden-icons-pf{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hidden-nav{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hide-nav-pf{margin-left:0!important}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf,.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges,.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}@media (min-width:1200px){.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf{margin-left:400px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges{margin-left:500px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hidden-nav{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav{margin-left:275px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.nav-pf-vertical-with-badges{margin-left:325px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.hidden-icons-pf{margin-left:0}}.layout-pf.layout-pf-fixed-with-footer body{padding-bottom:37px}.layout-pf-alt,.layout-pf-alt body{min-height:100%}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll,.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll body{height:100%;min-height:0}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt{height:100%;overflow:auto}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt.container-cards-pf{margin-top:0;padding-top:20px}.layout-pf-alt.layout-pf-alt-fixed.transitions .container-pf-alt-nav-pf-vertical-alt{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt.layout-pf-alt-fixed body{padding-top:60px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt{margin-left:250px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.collapsed-nav{margin-left:75px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.hidden-nav{margin-left:0}.layout-pf-alt.layout-pf-alt-fixed-with-footer body{padding-bottom:37px}a.disabled{color:#8b8d8f;cursor:not-allowed;text-decoration:none}.list-pf{border-bottom:1px solid #ededed}.list-pf-item{border-color:#ededed;border-left-color:#fff;border-right-color:#fff;border-style:solid;border-width:1px;border-bottom:none}.list-pf-item:hover{background-color:#edf8ff}.list-pf-item.active{background-color:#ededed;border-color:#bbb;border-bottom-width:1px;border-bottom-style:solid}.list-pf-expansion{background-color:#fff}.list-pf-container{align-items:flex-start;display:flex;padding:20px}.list-pf-expansion .list-pf-container{border-top:1px solid #bbb}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-container{align-items:center}}.list-pf-chevron{min-width:1.2em}.list-pf-chevron,.list-pf-select{margin-right:10px}.list-pf-chevron+.list-pf-content,.list-pf-select+.list-pf-content{border-left:1px solid #d1d1d1;padding-left:20px}.list-pf-chevron .fa,.list-pf-select .fa{font-size:22px}.list-pf-content-flex{align-items:flex-start;display:flex;flex-grow:1;flex-wrap:nowrap;justify-content:flex-start;min-width:0}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-content-flex{align-items:center}}.list-pf-left{flex-grow:0;margin-left:0;margin-right:20px}.list-pf-icon{align-items:center;display:flex;justify-content:center}.list-pf-icon-bordered{border-radius:50%;border:2px solid #39a5dc}.list-pf-icon-small{font-size:1.4em;height:30px;line-height:30px;width:30px}.list-pf-content-wrapper{align-items:center;display:flex;flex-grow:1;flex-wrap:wrap;min-width:0}@media (min-width:992px){.list-pf-content-wrapper{flex-wrap:nowrap}.list-pf-content-wrapper>*+*{margin-left:40px}}.list-pf-stacked .list-pf-content-wrapper{align-items:flex-start}.list-pf-main-content{align-items:center;display:flex;flex-basis:70%;flex-grow:1;flex-shrink:1;flex-wrap:wrap;min-width:0}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-main-content{flex-wrap:nowrap;width:auto}.list-pf:not(.list-pf-stacked) .list-pf-main-content>*+*{margin-left:40px}}.list-pf-title{flex-grow:1;flex-shrink:1;flex-basis:100%;font-weight:700;min-width:0;word-wrap:break-word}.list-pf-description{flex-grow:1;flex-shrink:1;flex-basis:100%;min-width:0;word-wrap:break-word}.list-pf-additional-content{display:flex;flex-basis:31%;flex-grow:1;flex-shrink:1;flex-wrap:wrap;justify-content:space-between}.list-pf-actions{display:flex;align-items:flex-start;flex-grow:0;margin-left:40px}.list-pf-actions>*+*{margin-left:10px}.list-view-pf .list-group-item{align-items:flex-start;background-clip:padding-box;border-color:transparent #fff;border-style:solid;border-width:1px;display:flex;flex-wrap:wrap;padding-bottom:0;padding-top:0}.list-view-pf .list-group-item:after,.list-view-pf .list-group-item:before{content:" ";display:table}.list-view-pf .list-group-item:after{clear:both}.list-view-pf .list-group-item.list-view-pf-expand-active{background-color:#edf8ff;box-shadow:0 2px 6px rgba(3,3,3,.2);z-index:1}.list-view-pf .list-group-item.active{color:#555;background-color:#def3ff;background-clip:border-box;border-color:#bbb transparent transparent;z-index:auto}.list-view-pf .list-group-item:hover{background-color:#edf8ff;border-left-color:transparent;border-right-color:transparent}.list-view-pf .list-group-item.list-view-pf-expand-active{border:solid 1px #bbb}.list-view-pf .list-group-item.list-view-pf-expand-active:first-child{border-top-color:#bbb}.list-view-pf .list-group-item:first-child{border-top:1px solid transparent}@media (min-width:992px){.list-view-pf .list-group-item{align-items:center}}.list-view-pf .list-group-item-heading{font-size:16px}.list-view-pf .list-group-item-heading small{display:block;font-size:9.6px;font-weight:400}@media (min-width:992px){.list-view-pf .list-group-item-heading{flex:1 0 calc(25% - 20px);float:left;font-size:12px;margin:0 20px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:calc(25% - 20px)}}.list-view-pf .list-group-item-text{color:currentColor!important;margin-bottom:10px}@media (min-width:992px){.list-view-pf .list-group-item-text{flex:1 0 auto;float:left;margin:0 40px 0 0;width:calc(75% - 40px)}}.list-view-pf .close{float:none;position:absolute;right:15px}.list-view-pf-actions{float:right;margin-bottom:20px;margin-left:20px;margin-top:20px;order:2}.list-view-pf-actions .dropdown-kebab-pf,.list-view-pf-actions button,.list-view-pf-actions>a{margin-left:10px}.list-view-pf-top-align .list-view-pf-actions{align-self:flex-start}.list-view-pf-additional-info{align-items:center;display:flex;flex-wrap:wrap}@media (min-width:992px){.list-view-pf-additional-info{flex:1 0 auto;float:left;width:50%}}.list-view-pf-additional-info-item{align-items:center;display:inline-block;display:flex;margin-right:20px;max-width:100%;text-align:center}.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked{text-align:center;flex-direction:column}.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked strong{font-size:13px;line-height:1em}.list-view-pf-additional-info-item .fa,.list-view-pf-additional-info-item .pficon{font-size:16px;margin-right:10px}.list-view-pf-additional-info-item strong{font-size:16px;font-weight:600;margin-right:5px}.list-view-pf-additional-info-item:last-child{margin-right:0}.list-view-pf-additional-info-item-donut-chart{width:60px}.list-view-pf-body{align-items:center;display:table-cell;flex:1;min-width:0;vertical-align:top;width:100%}@media (min-width:992px){.list-view-pf-body{align-items:center;display:flex;flex-direction:row}}.list-view-pf-checkbox{border-right:1px solid #d1d1d1;float:left;margin-bottom:20px;margin-right:15px;margin-top:20px;padding:3px 10px 3px 0}.list-view-pf-top-align .list-view-pf-checkbox{align-self:flex-start}.list-view-pf-description{flex:1 0 50%}.list-view-pf-stacked .list-view-pf-description{display:block;flex:none}@media (min-width:992px){.list-view-pf-description{align-items:center;display:flex;float:left;width:50%}}.list-view-pf-left{display:table-cell;padding-right:20px;text-align:center;vertical-align:top}.list-view-pf-left .list-view-pf-calendar{font-size:11px;line-height:1em}.list-view-pf-left .list-view-pf-calendar strong{display:block;font-size:44px;font-weight:300;line-height:1em}.list-view-pf-left .fa,.list-view-pf-left .pficon{border-radius:50%;font-size:2em}.list-view-pf-left .fa.list-view-pf-icon-md,.list-view-pf-left .pficon.list-view-pf-icon-md{background-color:#f5f5f5;height:50px;line-height:50px;width:50px}.list-view-pf-left .fa.list-view-pf-icon-danger,.list-view-pf-left .pficon.list-view-pf-icon-danger{background-color:#ffe6e6;color:#c00}.list-view-pf-left .fa.list-view-pf-icon-info,.list-view-pf-left .pficon.list-view-pf-icon-info{color:#8b8d8f}.list-view-pf-left .fa.list-view-pf-icon-lg,.list-view-pf-left .pficon.list-view-pf-icon-lg{background-color:#f5f5f5;height:60px;line-height:60px;width:60px}.list-view-pf-left .fa.list-view-pf-icon-sm,.list-view-pf-left .pficon.list-view-pf-icon-sm{border:2px solid #39a5dc;font-size:1.4em;height:30px;line-height:30px;width:30px}.list-view-pf-left .fa.list-view-pf-icon-sm:before,.list-view-pf-left .pficon.list-view-pf-icon-sm:before{display:block;line-height:26px}.list-view-pf-left .fa.list-view-pf-icon-success,.list-view-pf-left .pficon.list-view-pf-icon-success{background-color:#e9f4e9;color:#3f9c35}.list-view-pf-left .fa.list-view-pf-icon-warning,.list-view-pf-left .pficon.list-view-pf-icon-warning{background-color:#fdf2e5;color:#ec7a08}.list-view-pf-main-info{align-items:flex-start;display:flex;flex:1;min-width:0;padding-bottom:20px;padding-top:20px}@media (min-width:992px){.list-view-pf-main-info{align-items:center}.list-view-pf-top-align .list-view-pf-main-info{align-items:flex-start}}.list-view-pf-stacked .list-group-item-heading{float:none;font-size:16px;line-height:1.2em;margin-bottom:5px;margin-right:40px;width:auto}.list-view-pf-stacked .list-group-item-text{float:none;width:auto}.list-view-pf-view{background:#ededed;border:none;margin-top:30px}.list-group-item-header{box-sizing:content-box;cursor:pointer;margin:0 -15px;padding:0 15px;width:100%}.list-view-pf-expand{cursor:pointer;float:left;margin-bottom:20px;margin-right:2px;margin-top:20px;padding:3px 0}.list-view-pf-expand.active,.list-view-pf-expand:hover{color:#0088ce}.list-view-pf-additional-info-item .list-view-pf-expand{margin:0;padding:0}.list-view-pf-expand .fa-angle-right{cursor:pointer;font-size:17px;margin-right:5px;margin-top:2px;width:10px}.list-group-item-container{background:#fff;border-top:solid 1px #bbb;box-sizing:content-box;margin:-1px -15px 0;order:3;padding:15px;position:relative;width:100%}.list-view-pf-dnd .dndDragging.drag-original{display:none}.list-view-pf-dnd .dndDragging.drag-original .list-view-pf-dnd-original-items{display:block}.list-view-pf-dnd .dndDragging .list-view-pf-dnd-drag-items{display:inline-block}.list-view-pf-dnd .dndDragging .list-view-pf-dnd-original-items{display:none}.list-view-pf-dnd .dndPlaceholder{background-color:#ededed;padding:20px 0}.list-view-pf-dnd .list-group-item-header{margin-left:-10px}.list-view-pf-dnd .list-group-item-header:before{background-image:linear-gradient(to bottom,#0088ce 60%,#fff 0);background-position:left;background-repeat:repeat-y;background-size:2px 5px;border:4px solid #0088ce;border-color:#00659c;content:"";height:55px;left:4px;position:absolute;top:5px;width:10px}.list-view-pf-dnd-drag-items{display:none}.login-pf{height:100%}.login-pf #brand{position:relative;top:-70px}.login-pf #brand img{display:block;height:18px;margin:0 auto;max-width:100%}@media (min-width:768px){.login-pf #brand img{margin:0;text-align:left}}.login-pf #badge{display:block;margin:20px auto 70px;position:relative;text-align:center}@media (min-width:768px){.login-pf #badge{float:right;margin-right:64px;margin-top:50px}}.login-pf body{background:#1a1a1a url(../img/bg-login.png) repeat-x 50% 0;background-size:auto}@media (min-width:768px){.login-pf body{background-size:100% auto}}.login-pf .container{background-color:transparent;clear:right;color:#fff;padding-bottom:40px;padding-top:20px;width:auto}@media (min-width:768px){.login-pf .container{bottom:13%;padding-left:80px;position:absolute;width:100%}}.login-pf .container .details p:first-child{border-top:1px solid rgba(255,255,255,.3);padding-top:25px;margin-top:25px}@media (min-width:768px){.login-pf .container .details{border-left:1px solid rgba(255,255,255,.3);padding-left:40px}.login-pf .container .details p:first-child{border-top:0;padding-top:0;margin-top:0}}.login-pf .container .details p{margin-bottom:2px}.login-pf .container .form-horizontal .control-label{font-size:13px;font-weight:400;text-align:left}.login-pf .container .form-horizontal .form-group:last-child,.login-pf .container .form-horizontal .form-group:last-child .help-block:last-child{margin-bottom:0}.login-pf .container .help-block{color:#fff}@media (min-width:768px){.login-pf .container .login{padding-right:40px}}.login-pf .container .submit{text-align:right}.login-pf-page .login-pf-brand{margin-top:20px;max-width:360px;width:70%}@media (min-width:768px){.login-pf-page .login-pf-brand{margin-top:62px}}.login-pf-page .login-pf-page-header{margin-bottom:20px;text-align:center}@media (min-width:768px){.login-pf-page .login-pf-page-header{margin-bottom:40px}}.login-pf-page .login-pf-page-header p{color:#fff;font-size:14px;margin-left:auto;margin-right:auto;margin-top:20px}.login-pf-page .card-pf{padding:10px 20px 30px 20px;margin-bottom:0}@media (min-width:768px){.login-pf-page .card-pf{padding:20px 40px 30px 40px}}.login-pf-page .card-pf p{color:#72767b}.login-pf-page .form-control{height:36px}.login-pf-page .checkbox-label{color:#72767b;font-weight:300;margin-bottom:15px}@media (min-width:768px){.login-pf-page .checkbox-label{margin:0}}.login-pf-page .btn-primary{margin-top:40px}.login-pf-page .login-pf-header{margin-bottom:20px;display:flex;flex-direction:column}@media (min-width:768px){.login-pf-page .login-pf-header{margin-bottom:30px}}.login-pf-page .login-pf-header h1,.login-pf-page .login-pf-header p{text-align:center}.login-pf-page .login-pf-header h1{font-size:16px}@media (min-width:768px){.login-pf-page .login-pf-header h1{font-size:24px}}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:auto;align-self:flex-end}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle{color:#4d5258;background:0 0;padding:0 15px 0 0;font-weight:300}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle:not(:focus){box-shadow:none;border:1px solid transparent}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle .caret{right:0}.login-pf-page .login-pf-signup{margin:40px 0 0;font-size:15px;text-align:center}.login-pf-page .login-pf-signup a{margin-left:10px}.login-pf-page .login-pf-settings{display:flex;justify-content:space-between;flex-wrap:wrap}.login-pf-page .login-pf-page-footer{display:flex;justify-content:center;flex-wrap:wrap}.login-pf-page .login-pf-page-footer-links{display:flex;margin:60px 0 0 0}.login-pf-page .login-pf-page-footer-links li:not(:last-of-type){position:relative;margin:0 20px 0 0}.login-pf-page .login-pf-page-footer-links li:not(:last-of-type):after{content:".";color:#fff;position:absolute;top:0;right:-10px}.login-pf-page .login-pf-page-footer-link{color:#fff;font-size:14px}.login-pf-page .login-pf-page-footer-sso-services{flex:1 0 100%;margin-top:40px;text-align:center;color:#fff}.login-pf-page .login-pf-page-footer-sso-services-logos{display:flex;flex-wrap:wrap;padding:0;margin:0;list-style:none;justify-content:center}.login-pf-page .login-pf-page-footer-sso-services-logos li{margin:0 5px 5px}.login-pf-page.login-pf-page-accounts{margin-left:20px;margin-right:20px}.login-pf-page .login-pf-accounts{display:flex;justify-content:space-between;flex-wrap:wrap;max-width:840px;margin-left:auto;margin-right:auto}.login-pf-page .login-pf-accounts .login-pf-header,.login-pf-page .login-pf-accounts .login-pf-signup{flex-basis:100%}.login-pf-page .login-pf-social-section{flex-basis:100%;padding:0}@media (min-width:768px){.login-pf-page .login-pf-social-section{flex:0 1 50%;max-width:50%}}@media (min-width:768px){.login-pf-page .login-pf-social-section:first-of-type{padding-right:40px}.login-pf-page .login-pf-social-section:last-of-type{padding-left:39px;border-left:1px solid #d1d1d1}}.login-pf-page .login-pf-social{margin:40px 0 0 0}@media (min-width:768px){.login-pf-page .login-pf-social{margin:0}.login-pf-page .login-pf-social-double-col{flex-wrap:wrap;display:flex;justify-content:space-between}.login-pf-page .login-pf-social-double-col .login-pf-social-link{flex-basis:48%}}.login-pf-page .login-pf-social:not(.login-pf-social-all) .login-pf-social-link-more{display:none}.login-pf-page .login-pf-social-link{margin-bottom:15px}.login-pf-page .login-pf-social-link a{display:block;padding:7px 0;font-size:14px;background:#f5f5f5;text-align:center;color:#72767b}.login-pf-page .login-pf-social-link a img{margin:0 10px 0 0;width:20px;height:20px}.login-pf-page .login-pf-social-link a:hover{text-decoration:none;background:#ededed}.login-pf-page .login-pf-social-toggle{float:right;padding:0}.login-pf-page .login-pf-social-toggle .caret{margin-left:5px}.login-pf-page .login-pf-social-toggle-active .caret{transform:rotate(-180deg)}.navbar-pf{background:#393f45;border:0;border-radius:0;border-top:3px solid #c00;margin-bottom:0;min-height:0}.navbar-pf .navbar-brand{color:#fff;height:auto;padding:12px 0;margin:0 0 0 20px}.navbar-pf .navbar-brand img{display:block}.navbar-pf .navbar-collapse{border-top:0;-webkit-box-shadow:none;box-shadow:none;padding:0}.navbar-pf .navbar-header{border-bottom:1px solid #53565b;float:none}.navbar-pf .navbar-nav{margin:0}.navbar-pf .navbar-nav>.active>a,.navbar-pf .navbar-nav>.active>a:focus,.navbar-pf .navbar-nav>.active>a:hover{background-color:#454c53;color:#fff}.navbar-pf .navbar-nav>li>a{color:#dbdada;line-height:1;padding:10px 20px;text-shadow:none}.navbar-pf .navbar-nav>li>a:focus,.navbar-pf .navbar-nav>li>a:hover{color:#fff}.navbar-pf .navbar-nav>.open>a,.navbar-pf .navbar-nav>.open>a:focus,.navbar-pf .navbar-nav>.open>a:hover{background-color:#454c53;color:#fff}.navbar-pf .navbar-nav .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;left:26px;margin:0;padding:2px 4px;position:absolute;min-width:10px;min-height:10px;top:6px}@media (min-width:768px){.navbar-pf .navbar-nav .badge{left:auto;right:6px;top:3px}}.navbar-pf .navbar-nav .badge.badge-pf-bordered{border:1px solid #393f45}@media (max-width:767px){.navbar-pf .navbar-nav .active .dropdown-menu,.navbar-pf .navbar-nav .active .navbar-persistent,.navbar-pf .navbar-nav .open .dropdown-menu{background-color:#3c434a!important;margin-left:0;padding-bottom:0;padding-top:0}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a,.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a:focus,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a:focus,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a:hover{background-color:#424950!important;color:#fff}.navbar-pf .navbar-nav .active .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent>li>a,.navbar-pf .navbar-nav .open .dropdown-menu>li>a{background-color:transparent;border:0;color:#dbdada;outline:0;padding-left:30px}.navbar-pf .navbar-nav .active .dropdown-menu>li>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent>li>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff}.navbar-pf .navbar-nav .active .dropdown-menu .divider,.navbar-pf .navbar-nav .active .navbar-persistent .divider,.navbar-pf .navbar-nav .open .dropdown-menu .divider{background-color:#53565b;margin:0 1px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-header,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-header,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-header{padding-bottom:0;padding-left:30px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open .dropdown-toggle,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-toggle,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open .dropdown-toggle{color:#fff}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.pull-left,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.pull-left,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.pull-left{float:none!important}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu>a:after,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu>a:after,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu>a:after{display:none}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-header,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-header,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-header{padding-left:45px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu{border:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;display:block;float:none;margin:0;min-width:0;padding:0;position:relative;left:auto;right:auto;top:auto}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu>li>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu>li>a{padding:5px 15px 5px 45px;line-height:20px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu .dropdown-menu>li>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu>li>a{padding-left:60px}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-menu{display:block}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu>a:after{display:inline-block!important;position:relative;right:auto;top:1px}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu{display:none}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-submenu>a:after{display:none!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu{background-color:#fff!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a:active{background-color:#def3ff!important;border-color:#bee1f4!important;color:#363636!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a:active small{color:#9c9c9c!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.disabled>a{color:#9c9c9c!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a:active{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a:active small{color:rgba(255,255,255,.5)!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li>a.opt{border-bottom:1px solid transparent;border-top:1px solid transparent;color:#363636;padding-left:10px;padding-right:10px}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:active small{color:rgba(255,255,255,.5)!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:focus small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:hover small{color:#9c9c9c}.navbar-pf .navbar-nav .context-bootstrap-select>.open>.dropdown-menu{padding-bottom:5px;padding-top:5px}}.navbar-pf .navbar-persistent{display:none}.navbar-pf .active>.navbar-persistent{display:block}.navbar-pf .navbar-primary{float:none}.navbar-pf .navbar-primary .context{border-bottom:1px solid #53565b}.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group,.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group[class*=span]{margin:8px 20px 9px;width:auto}.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a{position:relative}.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a:after{content:"\f107";display:inline-block;font-family:FontAwesome;font-weight:400}@media (max-width:767px){.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a:after{height:10px;margin-left:4px;vertical-align:baseline}}.navbar-pf .navbar-toggle{border:0;margin:0;padding:10px 20px}.navbar-pf .navbar-toggle:focus,.navbar-pf .navbar-toggle:hover{background-color:transparent;outline:0}.navbar-pf .navbar-toggle:focus .icon-bar,.navbar-pf .navbar-toggle:hover .icon-bar{-webkit-box-shadow:0 0 3px #fff;box-shadow:0 0 3px #fff}.navbar-pf .navbar-toggle .icon-bar{background-color:#fff}.navbar-pf .navbar-utility{border-bottom:1px solid #53565b}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle{padding-left:36px;position:relative}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle .pficon-user{left:20px;position:absolute;top:10px}@media (max-width:767px){.navbar-pf .navbar-utility>li+li{border-top:1px solid #53565b}}@media (min-width:768px){.navbar-pf .navbar-brand{padding:7px 0 8px}.navbar-pf .navbar-nav>li>a{padding-bottom:14px;padding-top:14px}.navbar-pf .navbar-persistent{font-size:14px}.navbar-pf .navbar-primary{font-size:14px;background-image:-webkit-linear-gradient(top,#474c50 0,#383f43 100%);background-image:-o-linear-gradient(top,#474c50 0,#383f43 100%);background-image:linear-gradient(to bottom,#474c50 0,#383f43 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary.persistent-secondary .context .dropdown-menu{top:auto}.navbar-pf .navbar-primary.persistent-secondary .dropup .dropdown-menu{bottom:-5px;top:auto}.navbar-pf .navbar-primary.persistent-secondary>li{position:static}.navbar-pf .navbar-primary.persistent-secondary>li.active{margin-bottom:32px}.navbar-pf .navbar-primary.persistent-secondary>li.active>.navbar-persistent{display:block;left:0;position:absolute}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent{background:#f6f6f6;border-bottom:1px solid #cecdcd;padding:0;width:100%}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent a{text-decoration:none!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:before,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:hover:before{background:#0088ce;bottom:-1px;content:"";display:block;height:2px;left:20px;position:absolute;right:20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:hover>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active>a:hover{color:#0088ce!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active .active>a{color:#fff}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu:hover>.dropdown-menu{display:none}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-menu{display:block;left:20px;margin-top:1px;top:100%}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-toggle{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-toggle:after{border-top-color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu>.dropdown-toggle{padding-right:35px!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu>.dropdown-toggle:after{position:absolute;right:20px;top:10px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open:before,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover:before{background:#bbb;bottom:-1px;content:"";display:block;height:2px;left:20px;position:absolute;right:20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover>a{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open>a:after,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover>a:after{border-top-color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a{background-color:transparent;display:block;line-height:1;padding:9px 20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a.dropdown-toggle{padding-right:35px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a.dropdown-toggle:after{font-size:15px;position:absolute;right:20px;top:9px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a:hover{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li a{color:#4d5258}.navbar-pf .navbar-primary>li>a{border-bottom:1px solid transparent;border-top:1px solid transparent;position:relative;margin:-1px 0 0}.navbar-pf .navbar-primary>li>a:hover{background-color:#4b5053;border-top-color:#949699;color:#dbdada;background-image:-webkit-linear-gradient(top,#5c6165 0,#4b5053 100%);background-image:-o-linear-gradient(top,#5c6165 0,#4b5053 100%);background-image:linear-gradient(to bottom,#5c6165 0,#4b5053 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary>.active>a,.navbar-pf .navbar-primary>.active>a:focus,.navbar-pf .navbar-primary>.active>a:hover,.navbar-pf .navbar-primary>.open>a,.navbar-pf .navbar-primary>.open>a:focus,.navbar-pf .navbar-primary>.open>a:hover{background-color:#64686c;border-bottom-color:#64686c;border-top-color:#949699;-webkit-box-shadow:none;box-shadow:none;color:#fff;background-image:-webkit-linear-gradient(top,#72757a 0,#64686c 100%);background-image:-o-linear-gradient(top,#72757a 0,#64686c 100%);background-image:linear-gradient(to bottom,#72757a 0,#64686c 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.context-bootstrap-select .filter-option{max-width:160px;text-overflow:ellipsis}.navbar-pf .navbar-primary li.context.dropdown{border-bottom:0}.navbar-pf .navbar-primary li.context.context-bootstrap-select,.navbar-pf .navbar-primary li.context>a{background-color:#505458;border-bottom-color:#65696d;border-right:1px solid #65696d;border-top-color:#64696d;font-weight:600;background-image:-webkit-linear-gradient(top,#585d61 0,#505458 100%);background-image:-o-linear-gradient(top,#585d61 0,#505458 100%);background-image:linear-gradient(to bottom,#585d61 0,#505458 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.context-bootstrap-select:hover,.navbar-pf .navbar-primary li.context>a:hover{background-color:#5a5e62;border-bottom-color:#6e7276;border-right-color:#6e7276;border-top-color:#6c7276;background-image:-webkit-linear-gradient(top,#62676b 0,#5a5e62 100%);background-image:-o-linear-gradient(top,#62676b 0,#5a5e62 100%);background-image:linear-gradient(to bottom,#62676b 0,#5a5e62 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.open>a{background-color:#65696d;border-bottom-color:#6e7276;border-right-color:#777a7e;border-top-color:#767a7e;background-image:-webkit-linear-gradient(top,#6b7175 0,#65696d 100%);background-image:-o-linear-gradient(top,#6b7175 0,#65696d 100%);background-image:linear-gradient(to bottom,#6b7175 0,#65696d 100%);background-repeat:repeat-x}.navbar-pf .navbar-utility{border-bottom:0;font-size:11px;position:absolute;right:0;top:0}.navbar-pf .navbar-utility>.active>a,.navbar-pf .navbar-utility>.active>a:focus,.navbar-pf .navbar-utility>.active>a:hover,.navbar-pf .navbar-utility>.open>a,.navbar-pf .navbar-utility>.open>a:focus,.navbar-pf .navbar-utility>.open>a:hover{background:#5b6165;color:#fff}.navbar-pf .navbar-utility>li>a{border-left:1px solid #53565b;color:#fff!important;padding:7px 10px}.navbar-pf .navbar-utility>li>a:hover{background:#4a5053;border-left-color:#636466}.navbar-pf .navbar-utility>li.open>a{border-left-color:#6c6e70;color:#fff!important}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle{padding-left:26px}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle .pficon-user{left:10px;top:7px}.navbar-pf .navbar-utility .open .dropdown-menu{left:auto;right:0}.navbar-pf .navbar-utility .open .dropdown-menu .dropdown-menu{left:auto;right:100%}.navbar-pf .navbar-utility .open .dropdown-menu{border-top-width:0}.navbar-pf .open .dropdown-submenu>.dropdown-menu,.navbar-pf .open.bootstrap-select .dropdown-menu{border-top-width:1px!important}}@media (max-width:360px){.navbar-pf .navbar-brand{margin-left:10px;width:75%}.navbar-pf .navbar-brand img{height:auto;max-width:100%}.navbar-pf .navbar-toggle{padding-left:0}}.navbar-pf-alt{background-color:#030303;background-image:"bg-navbar-pf-alt.svg";background-repeat:no-repeat;background-size:auto 100%;border:none;border-radius:0;border-top:0 solid #c00;margin-bottom:0}.navbar-pf-alt .infotip.bottom-right .arrow{left:90%}.layout-pf-alt-fixed .navbar-pf-alt{left:0;position:fixed;right:0;top:0;z-index:1030}.navbar-pf-alt .nav.navbar-nav>li>.dropdown-menu.infotip{margin-top:0}.navbar-pf-alt .nav .nav-item-iconic{cursor:pointer;line-height:1;max-height:60px;padding:22px 12px;position:relative}.navbar-pf-alt .nav .nav-item-iconic:focus,.navbar-pf-alt .nav .nav-item-iconic:hover{background-color:transparent}.navbar-pf-alt .nav .nav-item-iconic:focus .caret,.navbar-pf-alt .nav .nav-item-iconic:focus .fa,.navbar-pf-alt .nav .nav-item-iconic:focus .glyphicon,.navbar-pf-alt .nav .nav-item-iconic:focus .pficon,.navbar-pf-alt .nav .nav-item-iconic:hover .caret,.navbar-pf-alt .nav .nav-item-iconic:hover .fa,.navbar-pf-alt .nav .nav-item-iconic:hover .glyphicon,.navbar-pf-alt .nav .nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-alt .nav .nav-item-iconic .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;margin:0 0 -11px -12px;min-width:0;padding:2px 4px}.navbar-pf-alt .nav .nav-item-iconic .caret,.navbar-pf-alt .nav .nav-item-iconic .fa,.navbar-pf-alt .nav .nav-item-iconic .pficon{color:#d1d1d1;font-size:16px}.navbar-pf-alt .nav .nav-item-iconic .caret{font-size:12px;width:auto}.navbar-pf-alt .nav .open>.nav-item-iconic,.navbar-pf-alt .nav .open>.nav-item-iconic:focus,.navbar-pf-alt .nav .open>.nav-item-iconic:hover{background:0 0}.navbar-pf-alt .nav .open>.nav-item-iconic .caret,.navbar-pf-alt .nav .open>.nav-item-iconic .fa,.navbar-pf-alt .nav .open>.nav-item-iconic .pficon,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .caret,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .fa,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .pficon,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .caret,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .fa,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-alt .navbar-brand{color:#fff;height:auto;margin:0 0 0 25px;min-height:35px;padding:18px 0 22px}.navbar-pf-alt .navbar-brand .navbar-brand-name{display:inline;margin-left:0 15px 0 0;margin-right:0 15px 0 0}@media (max-width:355px){.navbar-pf-alt .navbar-brand .navbar-brand-name{display:none}}.navbar-pf-alt .navbar-brand .navbar-brand-icon{display:inline;margin-left:0 15px 0 0;margin-right:0 15px 0 0}.navbar-pf-alt .navbar-iconic{margin-right:0}.navbar-pf-alt .navbar-toggle{border:0;display:block;float:left;margin:14px 15px}.navbar-pf-alt .navbar-toggle:focus .icon-bar,.navbar-pf-alt .navbar-toggle:hover .icon-bar{background:#fff}.navbar-pf-alt .navbar-toggle+.navbar-brand{margin-left:0}.navbar-pf-alt .navbar-toggle .icon-bar{background:#d1d1d1}.navbar-pf-vertical{background-color:#1d1d1d;border:none;border-radius:0;border-top:2px solid #c00;margin-bottom:0}.navbar-pf-vertical .infotip.bottom-right .arrow{left:90%}.layout-pf-fixed .navbar-pf-vertical{left:0;position:fixed;right:0;top:0;z-index:1030}.navbar-pf-vertical .nav.navbar-nav>li>.dropdown-menu.infotip{margin-top:0}.navbar-pf-vertical .nav .nav-item-iconic{color:#d1d1d1;cursor:pointer;line-height:1;max-height:58px;padding:21px 12px;position:relative}.navbar-pf-vertical .nav .nav-item-iconic:focus,.navbar-pf-vertical .nav .nav-item-iconic:hover{color:#fff;background-color:transparent}.navbar-pf-vertical .nav .nav-item-iconic:focus .caret,.navbar-pf-vertical .nav .nav-item-iconic:focus .fa,.navbar-pf-vertical .nav .nav-item-iconic:focus .glyphicon,.navbar-pf-vertical .nav .nav-item-iconic:focus .pficon,.navbar-pf-vertical .nav .nav-item-iconic:hover .caret,.navbar-pf-vertical .nav .nav-item-iconic:hover .fa,.navbar-pf-vertical .nav .nav-item-iconic:hover .glyphicon,.navbar-pf-vertical .nav .nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-vertical .nav .nav-item-iconic .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;left:20px;margin:0;padding:2px 4px;position:absolute;min-width:10px;min-height:10px;top:18px}.navbar-pf-vertical .nav .nav-item-iconic .badge.badge-pf-bordered{border:1px solid #1d1d1d}.navbar-pf-vertical .nav .nav-item-iconic .caret,.navbar-pf-vertical .nav .nav-item-iconic .fa,.navbar-pf-vertical .nav .nav-item-iconic .pficon{color:#d1d1d1;font-size:16px}.navbar-pf-vertical .nav .nav-item-iconic .caret{font-size:12px;width:auto}.navbar-pf-vertical .nav .open>.nav-item-iconic,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover{background:0 0}.navbar-pf-vertical .nav .open>.nav-item-iconic .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic .pficon,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .pficon,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-vertical .navbar-brand{color:#fff;height:auto;margin:0 0 0 25px;min-height:35px;padding:11px 0 12px}.navbar-pf-vertical .navbar-brand .navbar-brand-name{display:inline-block;margin:0 15px 0 0}@media (max-width:480px){.navbar-pf-vertical .navbar-brand .navbar-brand-name{display:none}}.navbar-pf-vertical .navbar-brand .navbar-brand-icon{display:inline-block;margin:0 15px 0 0;max-height:35px}.navbar-pf-vertical .navbar-brand .navbar-brand-txt{line-height:34px}.navbar-pf-vertical .navbar-iconic{margin-right:0}.navbar-pf-vertical .navbar-toggle{border:0;display:block;float:left;margin:13px 15px}.navbar-pf-vertical .navbar-toggle:focus .icon-bar,.navbar-pf-vertical .navbar-toggle:hover .icon-bar{background:#fff}.navbar-pf-vertical .navbar-toggle+.navbar-brand{margin-left:0}.navbar-pf-vertical .navbar-toggle .icon-bar{background:#d1d1d1}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value{transition:opacity 0s .1s,opacity .1s linear}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .badge{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .list-group-item-value{transition:opacity .5s ease-out;transition-delay:150ms}.nav-pf-vertical-alt{background:#fff}.ie9.layout-pf-alt-fixed .nav-pf-vertical-alt{box-sizing:content-box}.layout-pf-alt-fixed .nav-pf-vertical-alt{border-right:1px solid #d1d1d1;bottom:0;overflow-x:hidden;overflow-y:auto;left:0;position:fixed;top:60px;width:250px;z-index:1030}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed{width:75px!important}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .badge{padding:2px 3px;right:21px;top:36px}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value{opacity:0}.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden{display:none}.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden.show-mobile-nav{box-shadow:0 0 3px rgba(3,3,3,.15);display:block!important}.layout-pf-alt-fixed-with-footer .nav-pf-vertical-alt{bottom:37px}.nav-pf-vertical-alt .list-group{border-top:0;margin-bottom:0}.nav-pf-vertical-alt .list-group-item{padding:0}.nav-pf-vertical-alt .list-group-item a{color:#363636;display:block;font-size:14px;height:63px;padding:17px 20px 17px 25px;position:relative;white-space:nowrap}.nav-pf-vertical-alt .list-group-item a:focus{color:#363636;text-decoration:none}.nav-pf-vertical-alt .list-group-item a:hover{color:#39a5dc;text-decoration:none}.nav-pf-vertical-alt .list-group-item.active{background-color:#fff;border-color:#f5f5f5}.nav-pf-vertical-alt .list-group-item.active:before{background:#39a5dc;content:" ";display:block;height:100%;left:0;position:absolute;top:0;width:5px}.nav-pf-vertical-alt .list-group-item.active a{color:#39a5dc}.nav-pf-vertical-alt .list-group-item .badge{background:#363636;border:1px solid #fff;border-radius:3px;color:#fff;font-weight:700;font-size:9px;padding:5px;position:absolute;right:15px;text-align:center;top:21px}.nav-pf-vertical-alt .list-group-item .badge.notifications{background:#0088ce}.nav-pf-vertical-alt .list-group-item .fa,.nav-pf-vertical-alt .list-group-item .glyphicon,.nav-pf-vertical-alt .list-group-item .pficon{float:left;font-size:18px;line-height:30px;margin-right:10px;text-align:center;width:18px}.nav-pf-vertical-alt .list-group-item .list-group-item-value{display:inline-block;line-height:30px;opacity:1;overflow:hidden;text-overflow:ellipsis;width:140px}.nav-pf-vertical-alt .list-group-item-separator{border-top-width:5px}.sidebar-pf .nav-pf-vertical-alt{margin-left:-20px;margin-right:-20px}.drawer-pf{background-color:#fafafa;border:1px solid #d1d1d1;-webkit-box-shadow:0 6px 12px rgba(3,3,3,.175);box-shadow:0 6px 12px rgba(3,3,3,.175);overflow-y:auto;position:absolute;right:0;width:320px;z-index:2}.drawer-pf .panel{border-bottom:none;border-left:none;border-right:none}.drawer-pf .panel-group .panel-heading+.panel-collapse .panel-body{border-top:none;border-bottom:1px solid #d1d1d1;padding:0}.drawer-pf .panel-counter{display:block;font-style:italic;line-height:1.2;padding-left:18px;padding-top:5px}.drawer-pf .panel-heading{border-bottom:1px solid #d1d1d1}.drawer-pf .panel-group{bottom:0;margin-bottom:0;position:absolute;top:25px;width:100%}.drawer-pf .panel-title a{cursor:pointer;display:block}.drawer-pf.drawer-pf-expanded{width:inherit}@media (max-width:767px){.drawer-pf.drawer-pf-expanded{left:0;width:100%}}@media (min-width:767px){.drawer-pf.drawer-pf-expanded{left:270px}}.drawer-pf.drawer-pf-expanded .drawer-pf-toggle-expand:before{content:"\f101"}.drawer-pf .blank-slate-pf{border:0;margin-bottom:0;padding:30px}.drawer-pf .blank-slate-pf .blank-slate-pf-icon{font-size:3em;line-height:1em}.drawer-pf .blank-slate-pf h1{font-size:1em;margin-bottom:0;margin-top:15px}.drawer-pf-close,.drawer-pf-toggle-expand{color:#252525;cursor:pointer;line-height:inherit;padding:2px 10px;position:absolute}.drawer-pf-close:focus,.drawer-pf-close:hover,.drawer-pf-toggle-expand:focus,.drawer-pf-toggle-expand:hover{color:#0088ce;text-decoration:none}.drawer-pf-toggle-expand{left:0}.drawer-pf-toggle-expand:before{content:"\f100";font-family:FontAwesome}.drawer-pf-toggle-expand:hover{color:#0088ce}.drawer-pf-close{right:0}.drawer-pf-action{display:flex;border-bottom:1px solid #d1d1d1}.drawer-pf-action .btn-link{color:#0088ce;padding:10px 0}.drawer-pf-action .btn-link .fa,.drawer-pf-action .btn-link .pficon{margin-right:3px}.drawer-pf-action .btn-link .pficon-close{position:relative;top:1px}.drawer-pf-action .btn-link:hover{color:#00659c}.drawer-pf-action-link{border-left:solid 1px #d1d1d1;flex:1 1 0%;margin:10px 0;text-align:center}.drawer-pf-action-link:first-of-type{border-left-width:0}.drawer-pf-action-link .btn-link{padding:0}.drawer-pf-loading{color:#4d5258;font-size:14px;padding:20px 15px}.drawer-pf-notification{border-bottom:1px solid #d1d1d1;padding:15px}.drawer-pf-notification .date{border-right:1px solid #aaa;display:inline-block;line-height:1;margin-right:5px;padding-right:9px}.drawer-pf-notification>.dropdown-kebab-pf{margin-top:-3px}.drawer-pf-notification .pficon{font-size:14px;margin-top:3px}.drawer-pf-notification:last-of-type{border-bottom:none}.drawer-pf-notification:hover{background-color:#def3ff}.drawer-pf-notification.unread .drawer-pf-notification-message{font-weight:700;cursor:pointer}.drawer-pf-notification.expanded-notification .date{border-right:none;padding-right:0}.drawer-pf-notification-content{cursor:default}.drawer-pf-notification-info,.drawer-pf-notification-message{display:block;padding-left:27px;padding-right:19px}.expanded-notification .drawer-pf-notification-info,.expanded-notification .drawer-pf-notification-message{display:inline-block}.drawer-pf-title{background-color:#fafafa;border-bottom:1px solid #d1d1d1;position:absolute;width:100%}.drawer-pf-title h3{font-size:12px;margin:0;padding:6px 15px}.drawer-pf-notification.expanded-notification .drawer-pf-notification-content{display:flex}@media (max-width:991px){.drawer-pf-notification.expanded-notification .drawer-pf-notification-content{flex-direction:column}}.drawer-pf-notification.expanded-notification .drawer-pf-notification-content .drawer-pf-notification-message{flex:1 1}.navbar-pf-vertical .drawer-pf{height:calc(100vh - 58px - 20px);top:58px}@media (max-width:767px){.navbar-pf-vertical .drawer-pf{width:100%;height:calc(100vh - 58px)}}.navbar-pf-vertical .nav .drawer-pf-trigger .drawer-pf-trigger-icon{border-left:1px solid #53565b;border-right:1px solid #53565b;padding-left:15px;padding-right:15px}.navbar-pf-vertical .nav .drawer-pf-trigger.open .drawer-pf-trigger-icon{background-color:#4a5053}.navbar-pf .drawer-pf{height:calc(100vh - 26px - 20px);top:26px}@media (max-width:767px){.navbar-pf .drawer-pf{width:100%;height:calc(100vh - 26px - 32px);top:calc(26px + 8px)}}.navbar-pf .drawer-pf-trigger-icon{cursor:pointer}.search-pf.has-button{border-collapse:separate;display:table}.search-pf.has-button .form-group{display:table-cell;width:100%}.search-pf.has-button .form-group .btn{-webkit-box-shadow:none;box-shadow:none;float:left;margin-left:-1px}.search-pf.has-button .form-group .btn.btn-lg{font-size:14.5px}.search-pf.has-button .form-group .btn.btn-sm{font-size:10.7px}.search-pf.has-button .form-group .form-control{float:left}.search-pf .has-clear .clear{background:rgba(255,255,255,0);border:0;height:25px;line-height:1;padding:0;position:absolute;right:1px;top:1px;width:28px}.search-pf .has-clear .clear:focus{outline:0}.search-pf .has-clear .form-control{padding-right:30px}.search-pf .has-clear .form-control::-ms-clear{display:none}.search-pf .has-clear .input-lg+.clear{height:31px;width:28px}.search-pf .has-clear .input-sm+.clear{height:20px;width:28px}.search-pf .has-clear .input-sm+.clear span{font-size:10px}.search-pf .has-clear .search-pf-input-group{position:relative}.sidebar-header{border-bottom:1px solid #ececec;padding-bottom:11px;margin:50px 0 20px}.sidebar-header .actions{margin-top:-2px}.sidebar-pf .sidebar-header+.list-group{border-top:0;margin-top:-10px}.sidebar-pf .sidebar-header+.list-group .list-group-item{background:0 0;border-color:#ececec;padding-left:0}.sidebar-pf .sidebar-header+.list-group .list-group-item-heading{font-size:12px}.sidebar-pf .nav-category h2{color:#9c9c9c;font-size:12px;font-weight:400;line-height:21px;margin:0;padding:8px 0}.sidebar-pf .nav-category+.nav-category{margin-top:10px}.sidebar-pf .nav-pills>li.active>a{background:#0088ce!important;border-color:#0088ce!important;color:#fff}@media (min-width:768px){.sidebar-pf .nav-pills>li.active>a:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:1px}}.sidebar-pf .nav-pills>li.active>a .fa{color:#fff}.sidebar-pf .nav-pills>li>a{border-bottom:1px solid transparent;border-radius:0;border-top:1px solid transparent;color:#363636;font-size:13px;line-height:21px;padding:1px 20px}.sidebar-pf .nav-pills>li>a:hover{background:#def3ff;border-color:#bee1f4}.sidebar-pf .nav-pills>li>a .fa{color:#6a7079;font-size:15px;margin-right:10px;text-align:center;vertical-align:middle;width:15px}.sidebar-pf .nav-stacked{margin-left:-20px;margin-right:-20px}.sidebar-pf .nav-stacked li+li{margin-top:0}.sidebar-pf .panel{background:0 0}.sidebar-pf .panel-body{padding:6px 20px}.sidebar-pf .panel-body .nav-pills>li>a{padding-left:37px}.sidebar-pf .panel-heading{padding:9px 20px}.sidebar-pf .panel-title{font-size:12px}.sidebar-pf .panel-title>a:before{display:inline-block;margin-left:1px;margin-right:4px;width:9px}.sidebar-pf .panel-title>a.collapsed:before{margin-left:3px;margin-right:2px}@media (min-width:767px){.sidebar-header-bleed-left{margin-left:-20px}.sidebar-header-bleed-left>h2{margin-left:20px}.sidebar-header-bleed-right{margin-right:-20px}.sidebar-header-bleed-right .actions{margin-right:20px}.sidebar-header-bleed-right>h2{margin-right:20px}.sidebar-header-bleed-right+.list-group{margin-right:-20px}.sidebar-pf .panel-group .panel-default,.sidebar-pf .treeview{border-left:0;border-right:0;margin-left:-20px;margin-right:-20px}.sidebar-pf .treeview{margin-top:5px}.sidebar-pf .treeview .list-group-item{padding-left:20px;padding-right:20px}.sidebar-pf .treeview .list-group-item.node-selected:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:1px}}@media (min-width:768px){.sidebar-pf{background:#fafafa}.sidebar-pf.sidebar-pf-left{border-right:1px solid #d1d1d1}.sidebar-pf.sidebar-pf-right{border-left:1px solid #d1d1d1}.sidebar-pf>.nav-category,.sidebar-pf>.nav-stacked{margin-top:5px}}.skiplink-pf{position:absolute;top:12px;left:-300%;z-index:1050}.skiplink-pf:focus{left:10px}@keyframes rotation{from{transform:rotate(0)}to{transform:rotate(359deg)}}.spinner{animation:rotation .6s infinite linear;border-bottom:4px solid rgba(3,3,3,.25);border-left:4px solid rgba(3,3,3,.25);border-right:4px solid rgba(3,3,3,.25);border-radius:100%;border-top:4px solid rgba(3,3,3,.75);height:24px;margin:0 auto;position:relative;width:24px}.spinner.spinner-inline{display:inline-block;margin-right:3px}.spinner.spinner-lg{border-width:5px;height:30px;width:30px}.spinner.spinner-sm{border-width:3px;height:18px;width:18px}.spinner.spinner-xs{border-width:2px;height:12px;width:12px}.spinner.spinner-inverse{border-bottom-color:rgba(255,255,255,.25);border-left-color:rgba(255,255,255,.25);border-right-color:rgba(255,255,255,.25);border-top-color:rgba(255,255,255,.75)}.ie9 .spinner{background:url(../img/spinner.gif) no-repeat;border:0}.ie9 .spinner.spinner-inverse{background-image:url(../img/spinner-inverse.gif)}.ie9 .spinner.spinner-inverse-lg{background-image:url(../img/spinner-inverse-lg.gif)}.ie9 .spinner.spinner-inverse-sm{background-image:url(../img/spinner-inverse-sm.gif)}.ie9 .spinner.spinner-inverse-xs{background-image:url(../img/spinner-inverse-xs.gif)}.ie9 .spinner.spinner-lg{background-image:url(../img/spinner-lg.gif)}.ie9 .spinner.spinner-sm{background-image:url(../img/spinner-sm.gif)}.ie9 .spinner.spinner-xs{background-image:url(../img/spinner-xs.gif)}.prettyprint .atn,.prettyprint .com,.prettyprint .fun,.prettyprint .var{color:#3f9c35}.prettyprint .atv,.prettyprint .str{color:#a30000}.prettyprint .clo,.prettyprint .dec,.prettyprint .kwd,.prettyprint .opn,.prettyprint .pln,.prettyprint .pun{color:#363636}.prettyprint .lit,.prettyprint .tag,.prettyprint .typ{color:#00659c}.prettyprint ol.linenums{margin-bottom:0}table.dataTable{height:100%;margin-bottom:0;max-width:none!important}table.dataTable tbody>tr>td.table-view-pf-actions{padding:0;vertical-align:middle}table.dataTable tbody>tr:hover>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable tbody>tr.selected{color:#fff;background-color:#0088ce}table.dataTable tbody>tr.selected>td{border-bottom-color:#00659c}table.dataTable tbody>tr.selected>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable tbody>tr.selected:hover>td{background-color:inherit;border-bottom-color:#00659c}table.dataTable tbody>tr.selected:hover>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_desc_disabled{cursor:pointer}table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc{color:#0088ce!important;position:relative}table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after{content:"\f107";font-family:FontAwesome;font-size:10px;font-weight:400;height:9px;left:7px;line-height:12px;position:relative;top:2px;vertical-align:baseline;width:12px}table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_desc:before{background:#0088ce;content:"";height:2px;position:absolute;left:0;top:0;width:100%}table.dataTable thead .sorting_asc:after{content:"\f106";top:-3px}table.dataTable th:active{outline:0}.table-view-pf-empty.blank-slate-pf{background-color:#f5f5f5;border:1px solid #d1d1d1;border-radius:0;margin-top:-1px}.table-view-pf-toolbar.toolbar-pf{background-color:#f5f5f5;border-bottom:none;border-left:1px solid #d1d1d1;border-right:1px solid #d1d1d1;border-top:1px solid #d1d1d1;box-shadow:none;margin-left:0;margin-right:0}.table-view-pf-toolbar.toolbar-pf .toolbar-pf-results{border-top:1px solid #d1d1d1;min-height:40px;line-height:40px}.table-view-pf-toolbar-external.toolbar-pf{border-bottom:none;border-top:none;box-shadow:none}.table-view-pf-toolbar-external.toolbar-pf .toolbar-pf-results{border-top:1px solid #d1d1d1;min-height:40px;line-height:40px}.table-view-pf-colvis-menu>li{padding:5px 10px}.table-view-pf-colvis-menu>li:hover{background-color:#def3ff}.table-view-pf-colvis-menu>li>input{margin-top:0;margin-right:10px;vertical-align:middle}.table-view-pf-colvis-menu>li>label{margin-bottom:0}.table-view-pf-actions{background-color:#f1f1f1;height:100%}.table-view-pf-actions .btn,.table-view-pf-actions .dropdown-toggle{border:none;box-shadow:none;height:100%;width:100%}.table-view-pf-actions .dropdown,.table-view-pf-actions .table-view-pf-btn{height:100%}.table-view-pf-actions .dropdown-menu.dropdown-menu-right{right:-5px}.table-view-pf-actions:last-child{width:24px}.table-view-pf-select{width:33px}.table-view-pf-select-results{text-align:right}.bootstrap-datetimepicker-widget a[data-action]{border:0;box-shadow:none;color:#363636;display:block;padding-bottom:4px;padding-top:4px}.bootstrap-datetimepicker-widget a[data-action]:hover{color:#0088ce}.bootstrap-datetimepicker-widget.dropdown-menu{left:0!important;padding:0;width:calc(100% - 25px)}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:none}.bootstrap-datetimepicker-widget.dropdown-menu.top{margin-bottom:-1px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom{margin-top:-1px}.bootstrap-datetimepicker-widget .timepicker-hour{width:100%}.bootstrap-datetimepicker-widget .timepicker-hour:after{content:":";float:right}.timepicker-hours table td,.timepicker-minutes table td{font-weight:700;line-height:30px;height:30px}.timepicker-hours table td:hover,.timepicker-minutes table td:hover{color:#0088ce}.timepicker-hours .table-condensed>tbody>tr>td,.timepicker-minutes .table-condensed>tbody>tr>td{padding:0}.time-picker-pf .input-group-addon .fa,.time-picker-pf .input-group-addon .pficon{width:12px}.time-picker-pf .input-group-addon:not(.active){box-shadow:none}.timepicker-picker table td a span,.timepicker-picker table td span{height:24px;line-height:24px;margin:0;width:100%}.timepicker-picker .table-condensed>tbody>tr>td{height:25px;line-height:18px;padding:0}.timepicker-picker button[data-action]{padding-bottom:0;padding-top:0}.timepicker-picker .separator{display:none}.timepicker-picker tr:nth-child(2) td{background-color:#def3ff;border-color:#bee1f4;border-style:solid;border-width:1px;border-left:0;border-right:0}.toast-pf{background-color:#fff;border-color:#bbb;box-shadow:0 2px 6px rgba(3,3,3,.2);padding-left:68px;margin-bottom:5px}.toast-pf.alert-danger>.pficon{background-color:#c00}.toast-pf.alert-info>.pficon{background-color:#8b8d8f}.toast-pf.alert-success>.pficon{background-color:#3f9c35}.toast-pf.alert-warning>.pficon{background-color:#ec7a08}.toast-pf .dropdown-kebab-pf{margin-left:10px}.toast-pf>.pficon{background-color:#4d5258;bottom:-1px;box-shadow:2px 0 5px -2px rgba(3,3,3,.2);left:-1px;padding-top:10px;text-align:center;top:-1px;width:53px}.toast-pf>.pficon:before{color:rgba(255,255,255,.74)}.toast-pf .toast-pf-action{margin-left:15px}.toast-pf .dropdown-kebab-pf .btn-link{padding-top:0;padding-bottom:0;vertical-align:text-bottom}@media (min-width:992px){.toast-pf{display:inline-block}}@media (min-width:992px){.toast-pf-max-width{max-width:31.1%}}.toast-pf-top-right{left:20px;position:absolute;right:20px;top:12px;z-index:1055}@media (min-width:992px){.toast-pf-top-right{left:auto}}.toast-notifications-list-pf{margin-left:20px;position:fixed;right:20px;top:80px;z-index:1055}.toast-notifications-list-pf .toast-pf{clear:both;float:right}@media (min-width:768px){.toast-notifications-list-pf{max-width:calc(50%)}}@media (min-width:992px){.toast-notifications-list-pf{max-width:calc(33.1%)}}.toolbar-pf{background:#fff;border-bottom:1px solid #d1d1d1;box-shadow:0 1px 0 rgba(3,3,3,.045);padding-top:10px}.toolbar-pf .form-group{margin-bottom:10px}@media (min-width:768px){.toolbar-pf .form-group{border-right:1px solid #d1d1d1;float:left;margin-bottom:0;padding-left:20px;padding-right:20px}}.toolbar-pf .form-group:last-child{border-right:0;margin-bottom:0;padding-right:0}.toolbar-pf .form-group .btn+.btn,.toolbar-pf .form-group .btn+.btn-group,.toolbar-pf .form-group .btn-group+.btn,.toolbar-pf .form-group .btn-group+.btn-group{margin-left:5px}.toolbar-pf .form-group .btn+.btn-link,.toolbar-pf .form-group .btn+.dropdown,.toolbar-pf .form-group .btn-group+.btn-link,.toolbar-pf .form-group .btn-group+.dropdown{margin-left:10px}.toolbar-pf .form-group .btn-link{color:#252525;font-size:16px;line-height:1;padding:4px 0}.toolbar-pf .form-group .btn-link:active,.toolbar-pf .form-group .btn-link:focus,.toolbar-pf .form-group .btn-link:hover{color:#0088ce}.toolbar-pf .form-group .dropdown-kebab-pf .btn-link{padding:4px 10px;margin-left:-10px;margin-right:-10px}.toolbar-pf-actions{display:table;margin-bottom:10px;width:100%}@media (min-width:768px){.toolbar-pf-actions .toolbar-pf-filter{padding-left:0}}.toolbar-pf-view-selector{font-size:16px}.toolbar-pf-view-selector .btn-link.active{color:#0088ce;cursor:default}.toolbar-pf-action-right{float:right}@media (max-width:768px){.toolbar-pf-action-right{float:none}}.toolbar-pf-find{font-size:14px;position:relative}.find-pf-dropdown-container{background:#fff;border:solid 1px #bbb;display:none;right:-20px;padding:5px;position:absolute;top:35px;width:300px;z-index:10000}@media (max-width:768px){.find-pf-dropdown-container{left:30px;top:-5px;width:calc(100% - 30px)}}.find-pf-dropdown-container:after,.find-pf-dropdown-container:before{content:"";position:absolute}.find-pf-dropdown-container:before{border-bottom:11px solid #bbb;border-left:11px solid transparent;border-right:11px solid transparent;right:35px;top:-12px}.toolbar-pf-find:last-child .find-pf-dropdown-container:before{right:15px}@media (max-width:768px){.find-pf-dropdown-container:before{border-bottom:11px solid transparent;border-right:11px solid #bbb;border-top:11px solid transparent;left:-22px;right:initial;top:8px}}.find-pf-dropdown-container:after{border-bottom:10px solid #fff;border-left:10px solid transparent;border-right:10px solid transparent;right:36px;top:-10px}.toolbar-pf-find:last-child .find-pf-dropdown-container:after{right:16px}@media (max-width:768px){.find-pf-dropdown-container:after{border-bottom:10px solid transparent;border-right:10px solid #fff;border-top:10px solid transparent;left:-20px;right:initial;top:9px}}.find-pf-dropdown-container input{height:30px;padding:5px 117px 5px 5px;width:100%}.find-pf-dropdown-container .find-pf-buttons{position:absolute;right:10px;top:5px}.find-pf-dropdown-container .find-pf-buttons .btn{border:none;cursor:pointer;margin-left:0!important;padding:0;width:18px}.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-down,.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-up{font-weight:700;font-size:18px}.find-pf-dropdown-container .find-pf-buttons .btn .pficon-close{font-size:14px}.find-pf-dropdown-container .find-pf-buttons span{height:30px;line-height:30px;vertical-align:middle}.find-pf-dropdown-container .find-pf-buttons .find-pf-nums{color:#8b8d8f;margin-right:3px}.toolbar-pf-results{border-top:1px solid #d1d1d1;margin-top:10px}.toolbar-pf-results h5,.toolbar-pf-results p,.toolbar-pf-results ul{display:inline-block;line-height:26.66666667px;margin-bottom:0;margin-top:0}@media (min-width:768px){.toolbar-pf-results h5,.toolbar-pf-results p,.toolbar-pf-results ul{line-height:40px}}.toolbar-pf-results h5{font-weight:700;margin-right:20px}.toolbar-pf-results .label{font-size:11px}.toolbar-pf-results .label a{color:#fff;display:inline-block;margin-left:5px}.nav-pf-vertical{background:#292e34;border-right:1px solid #292e34;bottom:0;left:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;width:200px;z-index:1030}.layout-pf-fixed-with-footer .nav-pf-vertical{bottom:37px}.ie9.layout-pf-fixed .nav-pf-vertical{box-sizing:content-box}.nav-pf-vertical.hidden.show-mobile-nav{box-shadow:0 0 3px rgba(3,3,3,.15);display:block!important}.nav-pf-vertical.hide-nav-pf{visibility:hidden!important}.nav-pf-vertical .list-group{border-top:0;margin-bottom:0}.nav-pf-vertical .list-group-item{background-color:transparent;border-color:#030303;padding:0}.nav-pf-vertical .list-group-item>a{background-color:transparent;color:#d1d1d1;cursor:pointer;display:block;font-size:14px;font-weight:400;height:63px;line-height:26px;padding:17px 20px 17px 25px;position:relative;white-space:nowrap;width:200px}@supports (display:flex){.nav-pf-vertical .list-group-item>a{display:flex;padding-right:0}}.nav-pf-vertical .list-group-item>a .fa,.nav-pf-vertical .list-group-item>a .glyphicon,.nav-pf-vertical .list-group-item>a .pficon{color:#72767b;float:left;font-size:20px;line-height:26px;margin-right:10px;text-align:center;width:24px}.nav-pf-vertical .list-group-item>a:hover{text-decoration:none}.nav-pf-vertical .list-group-item.active>a,.nav-pf-vertical .list-group-item:hover>a{background-color:#393f44;color:#fff;font-weight:600}.nav-pf-vertical .list-group-item.active>a .fa,.nav-pf-vertical .list-group-item.active>a .glyphicon,.nav-pf-vertical .list-group-item.active>a .pficon,.nav-pf-vertical .list-group-item:hover>a .fa,.nav-pf-vertical .list-group-item:hover>a .glyphicon,.nav-pf-vertical .list-group-item:hover>a .pficon{color:#39a5dc}.nav-pf-vertical .list-group-item.active>a:before{background:#39a5dc;content:" ";height:100%;left:0;position:absolute;top:0;width:3px}.nav-pf-vertical .list-group-item.active:hover{background-color:transparent;border-color:#030303}.nav-pf-vertical .list-group-item .list-group-item-value{display:block;line-height:25px;max-width:120px;overflow:hidden;text-overflow:ellipsis}@supports (display:flex){.nav-pf-vertical .list-group-item .list-group-item-value{flex:1;max-width:none;padding-right:15px}}.nav-pf-vertical .list-group-item-separator{border-top-color:#030303;border-top-width:2px}.nav-pf-vertical.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-vertical-with-badges .list-group-item>a{width:250px}.nav-pf-vertical h5{color:#fff;cursor:default;font-size:13px;font-weight:600;margin:30px 20px 10px 20px}.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .fa,.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .glyphicon,.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .pficon{display:none}.nav-pf-vertical.hidden-icons-pf.collapsed{display:none}.nav-pf-vertical .badge-container-pf{position:absolute;right:15px;top:20px}@supports (display:flex){.nav-pf-vertical .badge-container-pf{padding-left:0;padding-right:15px;position:relative;right:0;margin-top:-3px;top:5px}}.nav-pf-vertical .badge-container-pf .badge{background:#292e34;color:#fff;float:left;font-size:12px;font-weight:700;line-height:1.66666667;margin:0;padding:0 7px;text-align:center}.nav-pf-vertical .badge-container-pf .badge .fa,.nav-pf-vertical .badge-container-pf .badge .pficon{font-size:14px;height:20px;line-height:1.66666667;margin-right:3px;margin-top:-1px}.nav-pf-vertical-tooltip.tooltip{margin-left:15px}.nav-pf-vertical-tooltip.tooltip .tooltip-inner{background-color:#fff;color:#292e34}.nav-pf-vertical-tooltip.tooltip .tooltip-arrow{border-bottom-color:#fff;left:calc(50% - 15px)!important}.hover-secondary-nav-pf{width:calc(200px * 2)}.hover-secondary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.hover-tertiary-nav-pf{width:calc(200px * 3)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 3)}.hover-tertiary-nav-pf .nav-pf-secondary-nav{width:calc(200px * 2)}.hover-tertiary-nav-pf .nav-pf-secondary-nav .collapsed-tertiary-nav-pf{width:200px}.hover-tertiary-nav-pf .nav-pf-tertiary-nav{left:calc(200px * 2)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav{width:calc(250px * 2)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav .collapsed-tertiary-nav-pf{width:250px}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:calc(250px * 2)}.nav-pf-vertical.collapsed{width:75px}.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed.hover-secondary-nav-pf{width:calc(75px + 200px)}.nav-pf-vertical.collapsed.hover-secondary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + 250px)}.nav-pf-vertical.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.nav-pf-vertical.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + (250px * 2))}.show-mobile-nav.show-mobile-secondary{width:200px}.show-mobile-nav.show-mobile-secondary.nav-pf-vertical-with-badges{width:250px}.show-mobile-nav.show-mobile-tertiary{width:200px}.show-mobile-nav.show-mobile-tertiary.nav-pf-vertical-with-badges{width:250px}.show-mobile-nav .mobile-nav-item-pf .nav-pf-secondary-nav,.show-mobile-nav .mobile-secondary-item-pf .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible;z-index:1034}.show-mobile-nav .mobile-nav-item-pf>.nav-pf-tertiary-nav,.show-mobile-nav .mobile-secondary-item-pf>.nav-pf-tertiary-nav{left:0;opacity:1;visibility:visible;z-index:1038}.show-mobile-nav .nav-pf-secondary-nav{left:0}.secondary-nav-item-pf:hover .show-mobile-nav .nav-pf-secondary-nav{opacity:0;visibility:hidden}.show-mobile-nav .tertiary-nav-item-pf:hover .nav-pf-tertiary-nav{opacity:0;visibility:hidden}.show-mobile-nav .tertiary-nav-item-pf.mobile-nav-item-pf:hover .nav-pf-tertiary-nav{opacity:1;visibility:visible}.secondary-nav-item-pf>a{cursor:default}.secondary-nav-item-pf>a:after{color:#72767b;content:"\f105";display:block;font-family:FontAwesome;font-size:24px;line-height:30px;padding:14px 0;position:absolute;right:20px;top:0}@supports (display:flex){.secondary-nav-item-pf>a .list-group-item-value{padding-right:35px}}.secondary-nav-item-pf.active>a,.secondary-nav-item-pf:hover>a{width:calc(200px + 1px);z-index:1031}.secondary-nav-item-pf.active>a:after,.secondary-nav-item-pf:hover>a:after{right:21px}.collapsed-secondary-nav-pf .secondary-nav-item-pf.active>a,.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover>a{z-index:0}.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active>a,.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover>a{z-index:0}.nav-pf-vertical-with-badges .secondary-nav-item-pf.active>a,.nav-pf-vertical-with-badges .secondary-nav-item-pf:hover>a{width:calc(250px + 1px)}.nav-pf-vertical.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.hover>a{z-index:1030}.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-secondary-nav{left:0}.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav{width:200px}.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.hover>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.hover>a{z-index:0}@media (min-width:1200px){.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf{width:calc(200px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf{width:calc(200px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed{width:calc(75px + 200px)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + (250px * 2))}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf{width:calc(200px * 3)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 3)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{visibility:visible;opacity:1}}.nav-item-pf-header{color:#fff;font-size:16px;margin:18px 20px 10px 20px}.nav-item-pf-header>a{cursor:pointer;margin-right:7px}.nav-item-pf-header>a:focus,.nav-item-pf-header>a:hover{color:#0088ce;text-decoration:none}.nav-pf-vertical.collapsed{width:75px}.nav-pf-vertical.collapsed .list-group-item>a{width:75px}.nav-pf-vertical.collapsed .list-group-item>a>.list-group-item-value{display:none}.nav-pf-vertical.collapsed .list-group-item>a>.badge-container-pf{display:none}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf>a{width:75px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a:after,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf>a:after{right:10px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover>a{width:77px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a:after,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover>a:after{right:11px}.nav-pf-secondary-nav{background:#393f44;border:1px solid #292e34;border-bottom:none;border-top:none;bottom:0;display:block;left:200px;opacity:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;visibility:hidden;width:200px;z-index:1030}.collapsed-secondary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible;z-index:1032}.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible}.hover-secondary-nav-pf .secondary-nav-item-pf.is-hover .nav-pf-secondary-nav{opacity:1;visibility:visible}.ie9.layout-pf-fixed .nav-pf-secondary-nav{box-sizing:content-box}.layout-pf-fixed-with-footer .nav-pf-secondary-nav{bottom:37px}.nav-pf-secondary-nav .list-group-item{border:none;padding:0 0 5px 0;width:200px}.nav-pf-secondary-nav .list-group-item>a{background-color:#393f44;color:#d1d1d1;font-size:12px;font-weight:inherit;height:inherit;padding:4px 0 2px 0;margin-left:20px;width:calc(200px - 20px)}.nav-pf-secondary-nav .list-group-item>a:hover .list-group-item-value{text-decoration:underline}.nav-pf-secondary-nav .list-group-item.active>a:before{display:none}.nav-pf-secondary-nav .list-group-item.active>a,.nav-pf-secondary-nav .list-group-item:hover>a{background-color:#4d5258;color:#fff}.nav-pf-secondary-nav .list-group-item .badge-container-pf{top:5px}.nav-pf-secondary-nav .list-group-item .badge-container-pf .badge{background:#292e34;color:#fff}.nav-pf-secondary-nav .list-group-item .list-group-item-value{padding-left:5px}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a{cursor:default}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a:after{color:#72767b;content:"\f105";display:block;font-family:FontAwesome;font-size:20px;line-height:20px;padding:0;position:absolute;right:20px;top:4px}@supports (display:flex){.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a .list-group-item-value{padding-right:35px}}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a,.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a{width:calc(200px - 19px);z-index:1033}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a:after,.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a:after{right:21px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav{left:250px;width:250px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item{width:250px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item>a{width:calc(250px - 20px)}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a,.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a{width:calc(250px - 19px)}.nav-pf-tertiary-nav{background:#4d5258;border:1px solid #292e34;border-bottom:none;border-top:none;bottom:0;display:block;left:calc(200px * 2);opacity:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;visibility:hidden;width:200px;z-index:1030}.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:250px;width:250px}.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .show-mobile-nav{left:0}.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active .nav-pf-tertiary-nav{left:0;opacity:1;visibility:visible;z-index:1033}.hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav{opacity:1;visibility:visible}.collapsed.collapsed-tertiary-nav-pf .hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav{left:0}.ie9.layout-pf-fixed .nav-pf-tertiary-nav{box-sizing:content-box}.layout-pf-fixed-with-footer .nav-pf-tertiary-nav{bottom:37px}.nav-pf-tertiary-nav .nav-item-pf-header{color:#fff;margin:18px 20px 10px 20px}.nav-pf-tertiary-nav h5{color:#fff;margin:30px 20px 10px 20px}.nav-pf-tertiary-nav .list-group-item{border:none;padding:0 0 5px 0}.nav-pf-tertiary-nav .list-group-item>a{background-color:transparent;color:#d1d1d1;font-size:12px;font-weight:inherit;height:inherit;margin:0 20px 0 20px;padding:4px 0 2px 0}.nav-pf-tertiary-nav .list-group-item.active>a:before{display:none}.nav-pf-tertiary-nav .list-group-item.active>a,.nav-pf-tertiary-nav .list-group-item:hover>a{background-color:#393f44;color:#fff}.nav-pf-tertiary-nav .list-group-item .badge-container-pf{top:5px}.nav-pf-tertiary-nav .list-group-item .badge-container-pf .badge{background:#292e34;color:#fff}.nav-pf-tertiary-nav .list-group-item .list-group-item-value{padding-left:5px}.collapsed .nav-pf-secondary-nav{left:75px}.collapsed .nav-pf-secondary-nav .list-group-item>a{width:calc(200px - 20px)}.collapsed .nav-pf-secondary-nav .list-group-item>a>.list-group-item-value{display:inline-block}.collapsed .nav-pf-secondary-nav .list-group-item>a>.badge-container-pf{display:inline-block}.collapsed .nav-pf-tertiary-nav{left:calc(75px + 200px)}.collapsed .nav-pf-tertiary-nav .list-group-item>a{width:calc(200px - 20px)}.collapsed .nav-pf-tertiary-nav .list-group-item>a>.list-group-item-value{display:inline-block}.collapsed .nav-pf-tertiary-nav .list-group-item>a>.badge-container-pf{display:inline-block}.collapsed.collapsed-secondary-nav-pf,.collapsed.collapsed-tertiary-nav-pf{width:200px}.collapsed.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover>a,.collapsed.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover>a{z-index:1030}.collapsed.collapsed-secondary-nav-pf .nav-pf-secondary-nav,.collapsed.collapsed-tertiary-nav-pf .nav-pf-secondary-nav{left:0}.collapsed.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:200px}.collapsed.collapsed-tertiary-nav-pf .nav-pf-tertiary-nav{left:0}.collapsed.hover-secondary-nav-pf{width:calc(75px + 200px)}.collapsed.hover-secondary-nav-pf.collapsed-secondary-nav-pf,.collapsed.hover-secondary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.collapsed.hover-tertiary-nav-pf.collapsed-secondary-nav-pf{width:calc(200px * 2)}.collapsed.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.collapsed.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item>a{width:calc(250px - 20px)}.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:calc(75px + 250px)}.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .list-group-item>a{width:calc(250px - 20px)}.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf,.collapsed.nav-pf-vertical-with-badges.collapsed-tertiary-nav-pf{width:250px}.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:250px}.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf{width:calc(75px + 250px)}.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-secondary-nav-pf,.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-tertiary-nav-pf{width:250px}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-secondary-nav-pf{width:calc(200px * 2)}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.secondary-collapse-toggle-pf{display:none;font-family:FontAwesome;font-size:inherit;opacity:0;pointer-events:none;-webkit-font-smoothing:antialiased}.secondary-collapse-toggle-pf:before{content:"\f190"}.secondary-collapse-toggle-pf.collapsed:before{content:"\f18e"}.tertiary-collapse-toggle-pf{display:none;font-family:FontAwesome;font-size:inherit;opacity:0;pointer-events:none;-webkit-font-smoothing:antialiased}.tertiary-collapse-toggle-pf:before{content:"\f190"}.tertiary-collapse-toggle-pf.collapsed:before{content:"\f18e"}.nav-pf-vertical-collapsible-menus .secondary-collapse-toggle-pf{display:inline-block}.nav-pf-vertical-collapsible-menus .secondary-nav-item-pf.active .secondary-collapse-toggle-pf{opacity:1;pointer-events:all}.nav-pf-vertical-collapsible-menus .tertiary-collapse-toggle-pf{display:inline-block}.nav-pf-vertical-collapsible-menus .tertiary-nav-item-pf.active .tertiary-collapse-toggle-pf{opacity:1;pointer-events:all}.show-mobile-nav .secondary-collapse-toggle-pf{display:inline-block;opacity:1;pointer-events:all}.show-mobile-nav .secondary-collapse-toggle-pf:before{content:"\f190"}.show-mobile-nav .tertiary-collapse-toggle-pf{display:inline-block;opacity:1;pointer-events:all}.show-mobile-nav .tertiary-collapse-toggle-pf:before{content:"\f190"}.force-hide-secondary-nav-pf .nav-pf-secondary-nav{display:none!important}.force-hide-secondary-nav-pf .nav-pf-tertiary-nav{display:none!important}.nav-pf-vertical.transitions{transition:width .1s}.nav-pf-vertical.transitions .nav-pf-secondary-nav{transition:visibility .1s,opacity .1s linear}.nav-pf-vertical.transitions .nav-pf-tertiary-nav{transition:visibility .1s,opacity .1s linear}.wizard-pf{padding:10px;margin:0 auto;max-height:900px;width:auto}.wizard-pf .modal-content{min-height:100%}.wizard-pf-body{background:#fff;padding:0;position:static}.wizard-pf-sidebar{background:#fafafa;border-right:1px solid #d1d1d1;display:none}@media (min-width:768px){.wizard-pf-sidebar{display:inherit;flex:0 0 auto;overflow-x:hidden;overflow-y:auto}.wizard-pf-sidebar .list-group{border-top:0;margin-bottom:0}.wizard-pf-sidebar .list-group-item{background-color:transparent;border-color:#ededed;padding:0}.wizard-pf-sidebar .list-group-item>a{color:#030303;cursor:pointer;display:block;font-size:14px;font-weight:700;height:50px;outline:0;padding-top:11px;padding-left:20px;position:relative;white-space:nowrap;width:14em}.wizard-pf-sidebar .list-group-item>a:hover{text-decoration:none;background-color:#ededed}.wizard-pf-sidebar .list-group-item>a:focus{text-decoration:none}.wizard-pf-sidebar .list-group-item>a:focus span{text-decoration:underline}.wizard-pf-sidebar .list-group-item.active{background-color:#ededed}.wizard-pf-sidebar .list-group-item.active:hover{border-color:#ededed}.wizard-pf-sidebar .list-group-item.active>a{color:#39a5dc;cursor:default}.wizard-pf-sidebar .list-group-item.active>a:before{content:" ";background:#39a5dc;height:100%;left:0;position:absolute;top:0;width:3px}.wizard-pf-sidebar .list-group-item.active>a:after{color:#39a5dc;content:"\f105";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;line-height:30px;padding-top:10px;position:absolute;right:23px;top:0}}.wizard-pf-substep-number{display:inline-block;margin-right:5px;vertical-align:middle;width:25px}.wizard-pf-substep-title{display:inline-block;margin-right:5px;text-align:left;vertical-align:middle}.wizard-pf-steps{border-bottom:solid 1px #d1d1d1}@media (min-width:768px){.wizard-pf-steps{text-align:center}}.wizard-pf-steps-indicator{background:#ededed;border-top:1px solid #d1d1d1;display:inline-block;display:flex;font-size:16px;list-style:none;margin-bottom:0;padding:15px 0}@media (min-width:768px){.wizard-pf-steps-indicator{background:#fff;height:120px;padding:38px 0 0;justify-content:space-around}}.wizard-pf-steps-indicator li{counter-increment:section;float:left;flex-grow:1;flex-basis:0;line-height:15px;margin:0;padding:0;position:relative;text-align:center}.wizard-pf-steps-indicator li:not(.active){display:none}@media (min-width:768px){.wizard-pf-steps-indicator li:not(.active){display:block}}.wizard-pf-steps-indicator li a{align-items:center;display:flex;flex-wrap:wrap;font-weight:700}@media (min-width:768px){.wizard-pf-steps-indicator li a{font-weight:400;justify-content:center}}.wizard-pf-steps-indicator li a .wizard-pf-step-title{margin-left:10px}@media (min-width:768px){.wizard-pf-steps-indicator li a .wizard-pf-step-title{margin-left:0}}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep{font-weight:400;margin-left:10px;text-transform:capitalize}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:before{content:"\00BB";font-size:20px;margin-right:10px}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:not(.active){display:none}@media (min-width:768px){.wizard-pf-steps-indicator li .wizard-pf-step-title-substep{display:none}.wizard-pf-steps-indicator li:before{background-color:#bbb;content:"";height:2px;left:0;position:absolute;right:0;top:40px}.wizard-pf-steps-indicator li:first-child:before{left:50%;right:0}.wizard-pf-steps-indicator li:last-child:before{left:0;right:50%}.wizard-pf-steps-indicator li:only-of-type:before{background-color:transparent}}.wizard-pf-steps-indicator li a{color:#030303;cursor:pointer;font-size:16px;margin-left:1em;margin-right:1em;text-decoration:none}.wizard-pf-steps-indicator li a:hover .wizard-pf-step-number{background-color:#bbb;border-color:#bbb;color:#fff}.wizard-pf-steps-indicator .wizard-pf-step-number{background-color:#fff;border-radius:50%;border:solid 2px #bbb;color:#bbb;font-size:12px;font-weight:700;height:25px;line-height:22px;width:25px}@media (min-width:768px){.wizard-pf-steps-indicator .wizard-pf-step-number{left:calc(50% - 13px);position:absolute;top:27px}}.wizard-pf-steps-indicator .active .wizard-pf-step-number{background-color:#39a5dc;border-color:#39a5dc;cursor:default;color:#fff}.wizard-pf-steps-indicator .viewed-pf .wizard-pf-step-number{color:#030303;background-color:#fff;border-color:#39a5dc}.wizard-pf-main{height:100%;padding:1em;vertical-align:top;width:100%}@media (min-width:768px){.wizard-pf-main{overflow:auto;padding:3em;flex:1 1 auto}}.wizard-pf-main .blank-slate-pf{background-color:transparent;border:none;left:0;right:0}.wizard-pf-contents textarea{resize:vertical}.wizard-pf-review-steps{list-style:none}.wizard-pf-review-steps .list-group,.wizard-pf-review-steps .list-group-item{border:none;margin-bottom:0}.wizard-pf-review-steps>ul>li{float:left;line-height:15px;margin:0;padding-top:0;position:relative;width:100%}.wizard-pf-review-steps>ul>li>a{color:#030303;cursor:pointer;font-size:16px;padding-left:30px;padding-right:5px;text-decoration:none;transition:250ms}.wizard-pf-review-steps>ul>li>a:before{content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;left:20px;position:absolute;top:0}.wizard-pf-review-steps>ul>li>a.collapsed:before{content:"\f105"}.wizard-pf-review-substeps{padding-left:22px}.wizard-pf-review-substeps>ul>li{float:left;line-height:15px;margin:0;position:relative;width:100%}.wizard-pf-review-substeps>ul>li a{color:#030303;cursor:pointer;font-size:16px;padding-left:30px;padding-right:5px;text-decoration:none;transition:250ms}.wizard-pf-review-substeps>ul>li a:before{content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;left:20px;position:absolute;top:10px}.wizard-pf-review-substeps>ul>li a.collapsed:before{content:"\f105"}.wizard-pf-review-content{padding-top:10px;padding-left:40px}.wizard-pf-review-content .wizard-pf-review-item{padding:5px 0}.wizard-pf-review-content .wizard-pf-review-item.sub-item{margin-left:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-label{font-weight:700;padding-right:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field{font-weight:700;margin:5px 0;padding-right:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:first-of-type{margin-top:0}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:last-of-type{margin-bottom:0}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field.sub-field{margin-left:10px}.wizard-pf-success-icon{color:#3f9c35;font-size:67.2px;line-height:67.2px}.wizard-pf-footer{background:#fff;border-top:1px solid #d1d1d1;margin-top:0;padding-bottom:17px}.wizard-pf-footer .btn-cancel{margin-right:25px}@media (min-width:768px){.wizard-pf-row{display:flex;width:100%;height:900px;max-height:65vh}}@media (min-width:992px){.wizard-pf{padding:30px 0;width:900px}.wizard-pf-sidebar .list-group-item>a{width:18em}}.wizard-pf-steps-alt,.wizard-pf-steps-alt ul{list-style:none;margin:0;padding:0}.wizard-pf-steps-alt{margin-left:15px;margin-top:15px;background-image:linear-gradient(to right,transparent 11px,#d1d1d1 11px,#d1d1d1 13px,transparent 13px)}@media (min-width:768px){.wizard-pf-steps-alt{display:none}}.wizard-pf-steps-alt-indicator{position:relative}.wizard-pf-steps-alt-indicator:after{color:#4d5258;content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;position:absolute;right:17px;top:50%;transform:translateY(-50%)}@media (min-width:768px){.wizard-pf-steps-alt-indicator:after{display:none}}.wizard-pf-steps-alt-indicator.active:after{content:"\f106"}.wizard-pf-step-alt{margin-bottom:10px}.wizard-pf-step-alt a{display:flex;flex:1}.wizard-pf-step-alt a:hover{text-decoration:none}.wizard-pf-step-alt a:hover .wizard-pf-step-alt-title{color:#39a5dc}.wizard-pf-step-alt ul{margin-left:11px}.wizard-pf-step-alt .wizard-pf-step-alt-title{margin-left:5px;align-self:center}.wizard-pf-step-alt .wizard-pf-step-alt-number{flex:0 0 auto}.wizard-pf-step-alt.active .wizard-pf-step-alt-number{background-color:#39a5dc;border-color:#39a5dc;cursor:default;color:#fff}.wizard-pf-step-alt.active .wizard-pf-step-alt-title{color:#39a5dc}.wizard-pf-step-alt.active .wizard-pf-step-alt-substep:first-of-type{margin-top:2px}.wizard-pf-step-alt.viewed .wizard-pf-step-alt-number{color:#030303;background-color:#fff;border-color:#39a5dc}.wizard-pf-step-alt-number{background-color:#fff;border-radius:50%;border:solid 2px #bbb;color:#bbb;font-size:12px;font-weight:700;height:24px;width:24px;display:inline-block;text-align:center}.wizard-pf-step-alt-title{color:#030303;font-weight:700;text-transform:capitalize;display:inline-block}.wizard-pf-step-alt-substep{display:flex}.wizard-pf-step-alt-substep a{padding:5px 0 5px 18px;color:#393f44}.wizard-pf-step-alt-substep:not(.disabled).active,.wizard-pf-step-alt-substep:not(.disabled):hover{background-color:#ededed;background-image:linear-gradient(to right,#39a5dc 2px,transparent 2px)}.wizard-pf-step-alt-substep:not(.disabled).active a,.wizard-pf-step-alt-substep:not(.disabled):hover a{color:#39a5dc}.wizard-pf-step-alt-substep.active a{font-weight:700}.wizard-pf-step-alt-substep.disabled{cursor:not-allowed}.wizard-pf-step-alt-substep.disabled a{pointer-events:none}.login-pf{background-color:#1a1a1a}@media (min-width:768px){.login-pf{background-image:url(../img/bg-login-2.png);background-position:100% 100%;background-repeat:no-repeat;background-size:30%}}@media (min-width:992px){.login-pf{background-size:auto}}.login-pf #badge{margin-bottom:50px}.login-pf body{background:0 0}@media (min-width:768px){.login-pf body{background-image:url(../img/bg-login.png);background-repeat:no-repeat;background-size:30%;height:100%}}@media (min-width:992px){.login-pf body{background-size:auto}}.login-pf #brand{top:-30px}@media (min-width:768px){.login-pf #brand{top:-40px}.login-pf #brand+.alert{margin-top:-20px}}.login-pf .container{padding-top:0}@media (min-width:992px){.login-pf .container{bottom:20%;padding-right:120px}}
+/*# sourceMappingURL=rcue-additions.min.css.map */
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/dist/css/rcue-additions.min.css.map b/themes/src/main/node_modules/rcue/dist/css/rcue-additions.min.css.map
new file mode 100644
index 0000000..f5f8548
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/css/rcue-additions.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["node_modules/bootstrap-slider/src/less/rules.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","node_modules/patternfly-bootstrap-combobox/less/combobox.less","node_modules/bootstrap-datepicker/less/datepicker3.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap-select/less/bootstrap-select.less","node_modules/bootstrap-switch/src/less/bootstrap3/bootstrap-switch.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap-touchspin/dist/jquery.bootstrap-touchspin.css","node_modules/c3/c3.css","dist/css/rcue-additions.css","node_modules/eonasdan-bootstrap-datetimepicker/src/less/_bootstrap-datetimepicker.less","node_modules/eonasdan-bootstrap-datetimepicker/src/less/bootstrap-datetimepicker-build.less","node_modules/patternfly/dist/less/mixins.less","node_modules/patternfly/dist/less/about-modal.less","node_modules/patternfly/dist/less/application-launcher.less","node_modules/patternfly/dist/less/blank-slate.less","node_modules/patternfly/dist/less/bootstrap-combobox.less","node_modules/patternfly/dist/less/variables.less","node_modules/patternfly/dist/less/bootstrap-datepicker.less","node_modules/patternfly/dist/less/bootstrap-mixin-overrides.less","node_modules/patternfly/dist/less/bootstrap-select.less","node_modules/patternfly/dist/less/bootstrap-slider.less","node_modules/patternfly/dist/less/bootstrap-switch.less","node_modules/patternfly/dist/less/bootstrap-touchspin.less","node_modules/patternfly/dist/less/bootstrap-treeview.less","node_modules/patternfly/dist/less/cards.less","node_modules/patternfly/dist/less/card-view.less","node_modules/patternfly/dist/less/charts.less","node_modules/patternfly/dist/less/close.less","node_modules/patternfly/dist/less/context-selector.less","node_modules/patternfly/dist/less/datatables.less","node_modules/patternfly/dist/less/experimental-features.less","node_modules/patternfly/dist/less/filter.less","node_modules/patternfly/dist/less/footer.less","node_modules/patternfly/dist/less/icons.less","node_modules/patternfly/dist/less/infotip.less","node_modules/patternfly/dist/less/layouts.less","node_modules/patternfly/dist/less/links.less","node_modules/patternfly/dist/less/list-pf.less","node_modules/patternfly/dist/less/list-view.less","node_modules/bootstrap/less/mixins/clearfix.less","node_modules/patternfly/dist/less/list-view-dnd.less","node_modules/patternfly/dist/less/login.less","node_modules/patternfly/dist/less/navbar.less","node_modules/font-awesome/less/variables.less","node_modules/patternfly/dist/less/navbar-alt.less","node_modules/patternfly/dist/less/navbar-vertical.less","node_modules/patternfly/dist/less/nav-vertical-alt.less","node_modules/patternfly/dist/less/notifications-drawer.less","node_modules/patternfly/dist/less/search.less","node_modules/patternfly/dist/less/sidebar.less","node_modules/patternfly/dist/less/skip-to-content.less","node_modules/patternfly/dist/less/spinner.less","node_modules/patternfly/dist/less/syntax-highlighting.less","node_modules/patternfly/dist/less/table-view.less","node_modules/patternfly/dist/less/time-picker.less","node_modules/patternfly/dist/less/toast.less","node_modules/patternfly/dist/less/toolbar.less","node_modules/patternfly/dist/less/vertical-nav.less","node_modules/patternfly/dist/less/wizard.less","less/login.less"],"names":[],"mappings":"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EkE,QiBxEtC,8BAC5B,QjBwEkE,QiBtEzC,2BACzB,QjBsEkE,QiBpEjD,mBACjB,QjBqEkE,QiBnE9C,sBACpB,QjBoEkE,QiBlEzC,2BACzB,QjBkEkE,QiBhE9C,sBACpB,QjBgEkE,QiB9D1C,0BACxB,QjB+DkE,QiB7D3C,yBACvB,QjB6DkE,QiB3D1C,0BACxB,QjB2DkE,QiBzD7C,uBACrB,QjByDkE,QiBvDvC,6BAC3B,QjBuDkE,QiBrDlD,kBAChB,QjBuDkE,QiBrD1C,0BACxB,QjBqDkE,QiBnD5C,wBACtB,QjBoDkE,QiBlD9C,sBACpB,QjBkDkE,QiBhDjD,mBACjB,QjByCkE,QiBvClD,kBAChB,MAAA,QACA,QjBsCkE,QiBpC9C,sBACpB,QjByCkE,QiBvC7C,uBACrB,QjBuCkE,QiBrC7C,uBACrB,QjBqCkE,QiBnChD,oBAClB,QjBmCkE,QiBjC/C,qBACnB,QjBkCkE,QiBhClC,kCAChC,QjBgCkE,QiB9B7C,uBACrB,QjB2BkE,QiBzB7C,uBACrB,QjB2BkE,QiBzB3C,yBACvB,QjByBkE,QiBvB3C,yBACvB,QjBuBkE,QiBrB7C,uBACA,uBACrB,QjB6BkE,QiB3B7C,uBACrB,QjBiBkE,QiBf5C,wBACtB,QjBekE,QiBb9C,sBACpB,QjBakE,QiBX1C,0BACxB,QjBWkE,QiBT1C,0BACxB,QjBSkE,QiBPvC,6BAC3B,QjBOkE,QiBL9B,sCACpC,QjBKkE,QiBH/B,qCACnC,QjBGkE,QiBDtC,8BAC5B,QjBCkE,QiBC/C,qBACnB,QjBAkE,QiBE7C,uBACrB,QjBFkE,QiBI3C,yBACvB,QjBHkE,QiBKhD,oBAClB,QjBPkE,QiBS9C,sBACpB,QjBRkE,QiBU9C,sBACpB,QjBVkE,QiBY5C,wBACtB,QjBZkE,QiBc9C,sBACpB,QjBdkE,QiBgBxC,4BAC1B,QjBhBkE,QiBkB7C,uBACrB,QjBlBkE,QiBoB5C,wBACtB,QjBnBkE,QiBqBrC,+BAC7B,QjBvBkE,QiByB5C,wBACtB,QjBxBkE,QiB0B7C,uBACrB,QjB1BkE,QiB4B5C,wBACtB,QjB5BkE,QiB8BtC,8BAC5B,Q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"}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/FontAwesome.otf b/themes/src/main/node_modules/rcue/dist/fonts/FontAwesome.otf
new file mode 100644
index 0000000..401ec0f
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/FontAwesome.otf differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/fontawesome-webfont.eot b/themes/src/main/node_modules/rcue/dist/fonts/fontawesome-webfont.eot
new file mode 100644
index 0000000..e9f60ca
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/fontawesome-webfont.eot differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/fontawesome-webfont.svg b/themes/src/main/node_modules/rcue/dist/fonts/fontawesome-webfont.svg
new file mode 100644
index 0000000..855c845
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/fonts/fontawesome-webfont.svg
@@ -0,0 +1,2671 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg>
+<metadata>
+Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016
+ By ,,,
+Copyright Dave Gandy 2016. All rights reserved.
+</metadata>
+<defs>
+<font id="FontAwesome" horiz-adv-x="1536" >
+  <font-face 
+    font-family="FontAwesome"
+    font-weight="400"
+    font-stretch="normal"
+    units-per-em="1792"
+    panose-1="0 0 0 0 0 0 0 0 0 0"
+    ascent="1536"
+    descent="-256"
+    bbox="-1.02083 -256.962 2304.6 1537.02"
+    underline-thickness="0"
+    underline-position="0"
+    unicode-range="U+0020-F500"
+  />
+<missing-glyph horiz-adv-x="896" 
+d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" />
+    <glyph glyph-name=".notdef" horiz-adv-x="896" 
+d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" />
+    <glyph glyph-name=".null" horiz-adv-x="0" 
+ />
+    <glyph glyph-name="nonmarkingreturn" horiz-adv-x="597" 
+ />
+    <glyph glyph-name="space" unicode=" " horiz-adv-x="448" 
+ />
+    <glyph glyph-name="dieresis" unicode="&#xa8;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="acute" unicode="&#xb4;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="infinity" unicode="&#x221e;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="notequal" unicode="&#x2260;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="glass" unicode="&#xf000;" horiz-adv-x="1792" 
+d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
+    <glyph glyph-name="music" unicode="&#xf001;" 
+d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89
+t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="search" unicode="&#xf002;" horiz-adv-x="1664" 
+d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5
+t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
+    <glyph glyph-name="envelope" unicode="&#xf003;" horiz-adv-x="1792" 
+d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13
+t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z
+M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="heart" unicode="&#xf004;" horiz-adv-x="1792" 
+d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600
+q-18 -18 -44 -18z" />
+    <glyph glyph-name="star" unicode="&#xf005;" horiz-adv-x="1664" 
+d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455
+l502 -73q56 -9 56 -46z" />
+    <glyph glyph-name="star_empty" unicode="&#xf006;" horiz-adv-x="1664" 
+d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500
+l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
+    <glyph glyph-name="user" unicode="&#xf007;" horiz-adv-x="1280" 
+d="M1280 137q0 -109 -62.5 -187t-150.5 -78h-854q-88 0 -150.5 78t-62.5 187q0 85 8.5 160.5t31.5 152t58.5 131t94 89t134.5 34.5q131 -128 313 -128t313 128q76 0 134.5 -34.5t94 -89t58.5 -131t31.5 -152t8.5 -160.5zM1024 1024q0 -159 -112.5 -271.5t-271.5 -112.5
+t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="film" unicode="&#xf008;" horiz-adv-x="1920" 
+d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128
+q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45
+t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128
+q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19
+t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="th_large" unicode="&#xf009;" horiz-adv-x="1664" 
+d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38
+h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="th" unicode="&#xf00a;" horiz-adv-x="1792" 
+d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320
+q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28
+h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192
+q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="th_list" unicode="&#xf00b;" horiz-adv-x="1792" 
+d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960
+q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28
+h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="ok" unicode="&#xf00c;" horiz-adv-x="1792" 
+d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
+    <glyph glyph-name="remove" unicode="&#xf00d;" horiz-adv-x="1408" 
+d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68
+t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
+    <glyph glyph-name="zoom_in" unicode="&#xf00e;" horiz-adv-x="1664" 
+d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224
+q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5
+t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
+    <glyph glyph-name="zoom_out" unicode="&#xf010;" horiz-adv-x="1664" 
+d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z
+M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z
+" />
+    <glyph glyph-name="off" unicode="&#xf011;" 
+d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5
+t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
+    <glyph glyph-name="signal" unicode="&#xf012;" horiz-adv-x="1792" 
+d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23
+v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="cog" unicode="&#xf013;" 
+d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38
+q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13
+l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22
+q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
+    <glyph glyph-name="trash" unicode="&#xf014;" horiz-adv-x="1408" 
+d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576
+q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832
+q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="home" unicode="&#xf015;" horiz-adv-x="1664" 
+d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5
+l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
+    <glyph glyph-name="file_alt" unicode="&#xf016;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+" />
+    <glyph glyph-name="time" unicode="&#xf017;" 
+d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="road" unicode="&#xf018;" horiz-adv-x="1920" 
+d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256
+q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
+    <glyph glyph-name="download_alt" unicode="&#xf019;" horiz-adv-x="1664" 
+d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136
+q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
+    <glyph glyph-name="download" unicode="&#xf01a;" 
+d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273
+t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="upload" unicode="&#xf01b;" 
+d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198
+t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="inbox" unicode="&#xf01c;" 
+d="M1023 576h316q-1 3 -2.5 8.5t-2.5 7.5l-212 496h-708l-212 -496q-1 -3 -2.5 -8.5t-2.5 -7.5h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552
+q25 -61 25 -123z" />
+    <glyph glyph-name="play_circle" unicode="&#xf01d;" 
+d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="repeat" unicode="&#xf01e;" 
+d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q15 0 25 -9
+l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
+    <glyph glyph-name="refresh" unicode="&#xf021;" 
+d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117
+q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5
+q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
+    <glyph glyph-name="list_alt" unicode="&#xf022;" horiz-adv-x="1792" 
+d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z
+M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5
+t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47
+t47 -113z" />
+    <glyph glyph-name="lock" unicode="&#xf023;" horiz-adv-x="1152" 
+d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="flag" unicode="&#xf024;" horiz-adv-x="1792" 
+d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48
+t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="headphones" unicode="&#xf025;" horiz-adv-x="1664" 
+d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78
+t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5
+t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
+    <glyph glyph-name="volume_off" unicode="&#xf026;" horiz-adv-x="768" 
+d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
+    <glyph glyph-name="volume_down" unicode="&#xf027;" horiz-adv-x="1152" 
+d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36
+t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
+    <glyph glyph-name="volume_up" unicode="&#xf028;" horiz-adv-x="1664" 
+d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36
+t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5
+t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289
+t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
+    <glyph glyph-name="qrcode" unicode="&#xf029;" horiz-adv-x="1408" 
+d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z
+M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
+    <glyph glyph-name="barcode" unicode="&#xf02a;" horiz-adv-x="1792" 
+d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z
+M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
+    <glyph glyph-name="tag" unicode="&#xf02b;" 
+d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5
+l715 -714q37 -39 37 -91z" />
+    <glyph glyph-name="tags" unicode="&#xf02c;" horiz-adv-x="1920" 
+d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5
+l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
+    <glyph glyph-name="book" unicode="&#xf02d;" horiz-adv-x="1664" 
+d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23
+q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906
+q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5
+t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
+    <glyph glyph-name="bookmark" unicode="&#xf02e;" horiz-adv-x="1280" 
+d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
+    <glyph glyph-name="print" unicode="&#xf02f;" horiz-adv-x="1664" 
+d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68
+v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
+    <glyph glyph-name="camera" unicode="&#xf030;" horiz-adv-x="1920" 
+d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136
+q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="font" unicode="&#xf031;" horiz-adv-x="1664" 
+d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57
+q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -5 -0.5 -13.5t-0.5 -12.5q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5
+q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" />
+    <glyph glyph-name="bold" unicode="&#xf032;" horiz-adv-x="1408" 
+d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142
+q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5
+t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68 -0.5t68 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5
+t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" />
+    <glyph glyph-name="italic" unicode="&#xf033;" horiz-adv-x="1024" 
+d="M0 -126l17 85q22 7 61.5 16.5t72 19t59.5 23.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5
+q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" />
+    <glyph glyph-name="text_height" unicode="&#xf034;" horiz-adv-x="1792" 
+d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2
+t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5
+q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27
+q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" />
+    <glyph glyph-name="text_width" unicode="&#xf035;" 
+d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1
+t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27
+q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5
+t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49
+t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" />
+    <glyph glyph-name="align_left" unicode="&#xf036;" horiz-adv-x="1792" 
+d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45
+t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="align_center" unicode="&#xf037;" horiz-adv-x="1792" 
+d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19
+h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="align_right" unicode="&#xf038;" horiz-adv-x="1792" 
+d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45
+t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="align_justify" unicode="&#xf039;" horiz-adv-x="1792" 
+d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45
+t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="list" unicode="&#xf03a;" horiz-adv-x="1792" 
+d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5
+t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344
+q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5
+t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192
+q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="indent_left" unicode="&#xf03b;" horiz-adv-x="1792" 
+d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5
+t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088
+q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="indent_right" unicode="&#xf03c;" horiz-adv-x="1792" 
+d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5
+t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088
+q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="facetime_video" unicode="&#xf03d;" horiz-adv-x="1792" 
+d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5
+q39 -17 39 -59z" />
+    <glyph glyph-name="picture" unicode="&#xf03e;" horiz-adv-x="1920" 
+d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216
+q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="pencil" unicode="&#xf040;" 
+d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38
+q53 0 91 -38l235 -234q37 -39 37 -91z" />
+    <glyph glyph-name="map_marker" unicode="&#xf041;" horiz-adv-x="1024" 
+d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
+    <glyph glyph-name="adjust" unicode="&#xf042;" 
+d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="tint" unicode="&#xf043;" horiz-adv-x="1024" 
+d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362
+q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
+    <glyph glyph-name="edit" unicode="&#xf044;" horiz-adv-x="1792" 
+d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832
+q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92
+l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
+    <glyph glyph-name="share" unicode="&#xf045;" horiz-adv-x="1664" 
+d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832
+q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5
+t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
+    <glyph glyph-name="check" unicode="&#xf046;" horiz-adv-x="1664" 
+d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832
+q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110
+q24 -24 24 -57t-24 -57z" />
+    <glyph glyph-name="move" unicode="&#xf047;" horiz-adv-x="1792" 
+d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45
+t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
+    <glyph glyph-name="step_backward" unicode="&#xf048;" horiz-adv-x="1024" 
+d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19z" />
+    <glyph glyph-name="fast_backward" unicode="&#xf049;" horiz-adv-x="1792" 
+d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19l710 710
+q19 19 32 13t13 -32v-710q4 10 13 19z" />
+    <glyph glyph-name="backward" unicode="&#xf04a;" horiz-adv-x="1664" 
+d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q4 10 13 19z" />
+    <glyph glyph-name="play" unicode="&#xf04b;" horiz-adv-x="1408" 
+d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
+    <glyph glyph-name="pause" unicode="&#xf04c;" 
+d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="stop" unicode="&#xf04d;" 
+d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="forward" unicode="&#xf04e;" horiz-adv-x="1664" 
+d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" />
+    <glyph glyph-name="fast_forward" unicode="&#xf050;" horiz-adv-x="1792" 
+d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19l-710 -710
+q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" />
+    <glyph glyph-name="step_forward" unicode="&#xf051;" horiz-adv-x="1024" 
+d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19z" />
+    <glyph glyph-name="eject" unicode="&#xf052;" horiz-adv-x="1538" 
+d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
+    <glyph glyph-name="chevron_left" unicode="&#xf053;" horiz-adv-x="1280" 
+d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" />
+    <glyph glyph-name="chevron_right" unicode="&#xf054;" horiz-adv-x="1280" 
+d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" />
+    <glyph glyph-name="plus_sign" unicode="&#xf055;" 
+d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5
+t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="minus_sign" unicode="&#xf056;" 
+d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
+t103 -385.5z" />
+    <glyph glyph-name="remove_sign" unicode="&#xf057;" 
+d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19
+q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="ok_sign" unicode="&#xf058;" 
+d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
+t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="question_sign" unicode="&#xf059;" 
+d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59
+q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="info_sign" unicode="&#xf05a;" 
+d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23
+t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="screenshot" unicode="&#xf05b;" 
+d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109
+q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143
+q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="remove_circle" unicode="&#xf05c;" 
+d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23
+l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5
+t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="ok_circle" unicode="&#xf05d;" 
+d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198
+t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="ban_circle" unicode="&#xf05e;" 
+d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61
+t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
+    <glyph glyph-name="arrow_left" unicode="&#xf060;" 
+d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5
+t32.5 -90.5z" />
+    <glyph glyph-name="arrow_right" unicode="&#xf061;" 
+d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
+    <glyph glyph-name="arrow_up" unicode="&#xf062;" horiz-adv-x="1664" 
+d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651
+q37 -39 37 -91z" />
+    <glyph glyph-name="arrow_down" unicode="&#xf063;" horiz-adv-x="1664" 
+d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
+    <glyph glyph-name="share_alt" unicode="&#xf064;" horiz-adv-x="1792" 
+d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22
+t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
+    <glyph glyph-name="resize_full" unicode="&#xf065;" 
+d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332
+q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="resize_small" unicode="&#xf066;" 
+d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45
+t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
+    <glyph glyph-name="plus" unicode="&#xf067;" horiz-adv-x="1408" 
+d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="minus" unicode="&#xf068;" horiz-adv-x="1408" 
+d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="asterisk" unicode="&#xf069;" horiz-adv-x="1664" 
+d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154
+q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
+    <glyph glyph-name="exclamation_sign" unicode="&#xf06a;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192
+q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
+    <glyph glyph-name="gift" unicode="&#xf06b;" 
+d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320
+q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5
+t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="leaf" unicode="&#xf06c;" horiz-adv-x="1792" 
+d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268
+q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-43 0 -63.5 17.5t-45.5 59.5q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5
+t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
+    <glyph glyph-name="fire" unicode="&#xf06d;" horiz-adv-x="1408" 
+d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1
+q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
+    <glyph glyph-name="eye_open" unicode="&#xf06e;" horiz-adv-x="1792" 
+d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5
+t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
+    <glyph glyph-name="eye_close" unicode="&#xf070;" horiz-adv-x="1792" 
+d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9
+q-106 -189 -316 -567t-315 -566l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5
+q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z
+" />
+    <glyph glyph-name="warning_sign" unicode="&#xf071;" horiz-adv-x="1792" 
+d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185
+q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
+    <glyph glyph-name="plane" unicode="&#xf072;" horiz-adv-x="1408" 
+d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9
+q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
+    <glyph glyph-name="calendar" unicode="&#xf073;" horiz-adv-x="1664" 
+d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z
+M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64
+q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47
+h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="random" unicode="&#xf074;" horiz-adv-x="1792" 
+d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1
+t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5
+v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111
+t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
+    <glyph glyph-name="comment" unicode="&#xf075;" horiz-adv-x="1792" 
+d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281
+q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
+    <glyph glyph-name="magnet" unicode="&#xf076;" 
+d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384
+q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="chevron_up" unicode="&#xf077;" horiz-adv-x="1792" 
+d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" />
+    <glyph glyph-name="chevron_down" unicode="&#xf078;" horiz-adv-x="1792" 
+d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" />
+    <glyph glyph-name="retweet" unicode="&#xf079;" horiz-adv-x="1920" 
+d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -10 7 -21
+zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z
+" />
+    <glyph glyph-name="shopping_cart" unicode="&#xf07a;" horiz-adv-x="1664" 
+d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45
+t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="folder_close" unicode="&#xf07b;" horiz-adv-x="1664" 
+d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="folder_open" unicode="&#xf07c;" horiz-adv-x="1920" 
+d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5
+t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="resize_vertical" unicode="&#xf07d;" horiz-adv-x="768" 
+d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
+    <glyph glyph-name="resize_horizontal" unicode="&#xf07e;" horiz-adv-x="1792" 
+d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
+    <glyph glyph-name="bar_chart" unicode="&#xf080;" horiz-adv-x="2048" 
+d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" />
+    <glyph glyph-name="twitter_sign" unicode="&#xf081;" 
+d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4
+q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5
+t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="facebook_sign" unicode="&#xf082;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960
+q0 119 84.5 203.5t203.5 84.5h960z" />
+    <glyph glyph-name="camera_retro" unicode="&#xf083;" horiz-adv-x="1792" 
+d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5
+t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280
+q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
+    <glyph glyph-name="key" unicode="&#xf084;" horiz-adv-x="1792" 
+d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26
+l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5
+t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
+    <glyph glyph-name="cogs" unicode="&#xf085;" horiz-adv-x="1920" 
+d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5
+t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -11 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5
+l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7
+l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -8 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31
+q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20
+t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68
+q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70
+q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
+    <glyph glyph-name="comments" unicode="&#xf086;" horiz-adv-x="1792" 
+d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224
+q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7
+q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
+    <glyph glyph-name="thumbs_up_alt" unicode="&#xf087;" 
+d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5
+t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769
+q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128
+q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
+    <glyph glyph-name="thumbs_down_alt" unicode="&#xf088;" 
+d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 31 18 69q0 37 -17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5
+t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z
+M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5
+h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -73 49 -163z" />
+    <glyph glyph-name="star_half" unicode="&#xf089;" horiz-adv-x="896" 
+d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
+    <glyph glyph-name="heart_empty" unicode="&#xf08a;" horiz-adv-x="1792" 
+d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559
+q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5
+q224 0 351 -124t127 -344z" />
+    <glyph glyph-name="signout" unicode="&#xf08b;" horiz-adv-x="1664" 
+d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704
+q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
+    <glyph glyph-name="linkedin_sign" unicode="&#xf08c;" 
+d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5
+q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="pushpin" unicode="&#xf08d;" horiz-adv-x="1152" 
+d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38
+t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
+    <glyph glyph-name="external_link" unicode="&#xf08e;" horiz-adv-x="1792" 
+d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320
+q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="signin" unicode="&#xf090;" 
+d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5
+q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="trophy" unicode="&#xf091;" horiz-adv-x="1664" 
+d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91
+t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96
+q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="github_sign" unicode="&#xf092;" 
+d="M519 336q4 6 -3 13q-9 7 -14 2q-4 -6 3 -13q9 -7 14 -2zM491 377q-5 7 -12 4q-6 -4 0 -12q7 -8 12 -5q6 4 0 13zM450 417q2 4 -5 8q-7 2 -8 -2q-3 -5 4 -8q8 -2 9 2zM471 394q2 1 1.5 4.5t-3.5 5.5q-6 7 -10 3t1 -11q6 -6 11 -2zM557 319q2 7 -9 11q-9 3 -13 -4
+q-2 -7 9 -11q9 -3 13 4zM599 316q0 8 -12 8q-10 0 -10 -8t11 -8t11 8zM638 323q-2 7 -13 5t-9 -9q2 -8 12 -6t10 10zM1280 640q0 212 -150 362t-362 150t-362 -150t-150 -362q0 -167 98 -300.5t252 -185.5q18 -3 26.5 5t8.5 20q0 52 -1 95q-6 -1 -15.5 -2.5t-35.5 -2t-48 4
+t-43.5 20t-29.5 41.5q-23 59 -57 74q-2 1 -4.5 3.5l-8 8t-7 9.5t4 7.5t19.5 3.5q6 0 15 -2t30 -15.5t33 -35.5q16 -28 37.5 -42t43.5 -14t38 3.5t30 9.5q7 47 33 69q-49 6 -86 18.5t-73 39t-55.5 76t-19.5 119.5q0 79 53 137q-24 62 5 136q19 6 54.5 -7.5t60.5 -29.5l26 -16
+q58 17 128 17t128 -17q11 7 28.5 18t55.5 26t57 9q29 -74 5 -136q53 -58 53 -137q0 -57 -14 -100.5t-35.5 -70t-53.5 -44.5t-62.5 -26t-68.5 -12q35 -31 35 -95q0 -40 -0.5 -89t-0.5 -51q0 -12 8.5 -20t26.5 -5q154 52 252 185.5t98 300.5zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="upload_alt" unicode="&#xf093;" horiz-adv-x="1664" 
+d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92
+t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
+    <glyph glyph-name="lemon" unicode="&#xf094;" 
+d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5
+q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44
+q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5
+q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -13 2 -25t3.5 -16.5t7.5 -20.5t8 -20q16 -40 25 -118.5t9 -136.5z" />
+    <glyph glyph-name="phone" unicode="&#xf095;" horiz-adv-x="1408" 
+d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -53 3.5t-57.5 12.5t-47 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-127 79 -264 216t-216 264q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47t-12.5 57.5t-3.5 53q0 92 51 186
+q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174q2 -1 19 -11.5t24 -14
+t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
+    <glyph glyph-name="check_empty" unicode="&#xf096;" horiz-adv-x="1408" 
+d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832
+q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="bookmark_empty" unicode="&#xf097;" horiz-adv-x="1280" 
+d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289
+q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
+    <glyph glyph-name="phone_sign" unicode="&#xf098;" 
+d="M1280 343q0 11 -2 16t-18 16.5t-40.5 25t-47.5 26.5t-45.5 25t-28.5 15q-5 3 -19 13t-25 15t-21 5q-15 0 -36.5 -20.5t-39.5 -45t-38.5 -45t-33.5 -20.5q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170 126.5t-127 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5
+t-3.5 16.5q0 13 20.5 33.5t45 38.5t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5
+t320.5 -216.5q6 -2 30 -11t33 -12.5t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z
+" />
+    <glyph glyph-name="twitter" unicode="&#xf099;" horiz-adv-x="1664" 
+d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41
+q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
+    <glyph glyph-name="facebook" unicode="&#xf09a;" horiz-adv-x="1024" 
+d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
+    <glyph glyph-name="github" unicode="&#xf09b;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -40 7t-13 30q0 3 0.5 76.5t0.5 134.5q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 119 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24
+q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-85 13.5q-45 -113 -8 -204q-79 -87 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-39 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5
+t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -88.5t0.5 -54.5q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103zM291 305q3 7 -7 12
+q-10 3 -13 -2q-3 -7 7 -12q9 -6 13 2zM322 271q7 5 -2 16q-10 9 -16 3q-7 -5 2 -16q10 -10 16 -3zM352 226q9 7 0 19q-8 13 -17 6q-9 -5 0 -18t17 -7zM394 184q8 8 -4 19q-12 12 -20 3q-9 -8 4 -19q12 -12 20 -3zM451 159q3 11 -13 16q-15 4 -19 -7t13 -15q15 -6 19 6z
+M514 154q0 13 -17 11q-16 0 -16 -11q0 -13 17 -11q16 0 16 11zM572 164q-2 11 -18 9q-16 -3 -14 -15t18 -8t14 14z" />
+    <glyph glyph-name="unlock" unicode="&#xf09c;" horiz-adv-x="1664" 
+d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5
+t316.5 -131.5t131.5 -316.5z" />
+    <glyph glyph-name="credit_card" unicode="&#xf09d;" horiz-adv-x="1920" 
+d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608
+q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
+    <glyph glyph-name="rss" unicode="&#xf09e;" horiz-adv-x="1408" 
+d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5
+t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294
+q187 -186 294 -425.5t120 -501.5z" />
+    <glyph glyph-name="hdd" unicode="&#xf0a0;" 
+d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5
+h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75
+l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
+    <glyph glyph-name="bullhorn" unicode="&#xf0a1;" horiz-adv-x="1792" 
+d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5
+t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
+    <glyph glyph-name="bell" unicode="&#xf0a2;" horiz-adv-x="1792" 
+d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z
+M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5
+t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
+    <glyph glyph-name="certificate" unicode="&#xf0a3;" 
+d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70
+l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70
+l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
+    <glyph glyph-name="hand_right" unicode="&#xf0a4;" horiz-adv-x="1792" 
+d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106
+q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43
+q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5
+t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
+    <glyph glyph-name="hand_left" unicode="&#xf0a5;" horiz-adv-x="1792" 
+d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-8 9 -12 14q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576q-50 0 -89 -38.5
+t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45z
+M1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128q0 122 81.5 189t206.5 67
+q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
+    <glyph glyph-name="hand_up" unicode="&#xf0a6;" 
+d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576
+q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5
+t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76
+q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
+    <glyph glyph-name="hand_down" unicode="&#xf0a7;" 
+d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33
+t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580
+q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100
+q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
+    <glyph glyph-name="circle_arrow_left" unicode="&#xf0a8;" 
+d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="circle_arrow_right" unicode="&#xf0a9;" 
+d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="circle_arrow_up" unicode="&#xf0aa;" 
+d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="circle_arrow_down" unicode="&#xf0ab;" 
+d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="globe" unicode="&#xf0ac;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11
+q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 11t-9.5 10q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5
+q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5
+q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5
+t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-4 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3
+q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25
+q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5
+t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5
+t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10.5t17 -19.5q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21
+q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5
+q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3
+q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5
+t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q8 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5
+q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7
+q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
+    <glyph glyph-name="wrench" unicode="&#xf0ad;" horiz-adv-x="1664" 
+d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5
+t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
+    <glyph glyph-name="tasks" unicode="&#xf0ae;" horiz-adv-x="1792" 
+d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19
+t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="filter" unicode="&#xf0b0;" horiz-adv-x="1408" 
+d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
+    <glyph glyph-name="briefcase" unicode="&#xf0b1;" horiz-adv-x="1792" 
+d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68
+t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="fullscreen" unicode="&#xf0b2;" 
+d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144
+l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z
+" />
+    <glyph glyph-name="group" unicode="&#xf0c0;" horiz-adv-x="1920" 
+d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5
+t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75
+t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5
+t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
+    <glyph glyph-name="link" unicode="&#xf0c1;" horiz-adv-x="1664" 
+d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26
+l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15
+t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207
+q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
+    <glyph glyph-name="cloud" unicode="&#xf0c2;" horiz-adv-x="1920" 
+d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z
+" />
+    <glyph glyph-name="beaker" unicode="&#xf0c3;" horiz-adv-x="1664" 
+d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
+    <glyph glyph-name="cut" unicode="&#xf0c4;" horiz-adv-x="1792" 
+d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84
+q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148
+q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108
+q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6
+q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
+    <glyph glyph-name="copy" unicode="&#xf0c5;" horiz-adv-x="1792" 
+d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299
+h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
+    <glyph glyph-name="paper_clip" unicode="&#xf0c6;" horiz-adv-x="1408" 
+d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181
+l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235
+z" />
+    <glyph glyph-name="save" unicode="&#xf0c7;" 
+d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5
+h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
+    <glyph glyph-name="sign_blank" unicode="&#xf0c8;" 
+d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="reorder" unicode="&#xf0c9;" 
+d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45
+t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="ul" unicode="&#xf0ca;" horiz-adv-x="1792" 
+d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5
+t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z
+M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="ol" unicode="&#xf0cb;" horiz-adv-x="1792" 
+d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362
+q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5
+t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 121.5t0.5 121.5v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216
+q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="strikethrough" unicode="&#xf0cc;" horiz-adv-x="1792" 
+d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 98 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6
+l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -56 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23
+l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
+    <glyph glyph-name="underline" unicode="&#xf0cd;" 
+d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47
+q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41
+q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472
+q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
+    <glyph glyph-name="table" unicode="&#xf0ce;" horiz-adv-x="1664" 
+d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23
+v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192
+q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192
+q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113
+z" />
+    <glyph glyph-name="magic" unicode="&#xf0d0;" horiz-adv-x="1664" 
+d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276
+l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
+    <glyph glyph-name="truck" unicode="&#xf0d1;" horiz-adv-x="1792" 
+d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5
+t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38
+t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="pinterest" unicode="&#xf0d2;" 
+d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134
+q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33
+q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="pinterest_sign" unicode="&#xf0d3;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5
+t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5
+t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
+    <glyph glyph-name="google_plus_sign" unicode="&#xf0d4;" 
+d="M917 631q0 26 -6 64h-362v-132h217q-3 -24 -16.5 -50t-37.5 -53t-66.5 -44.5t-96.5 -17.5q-99 0 -169 71t-70 171t70 171t169 71q92 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585
+h109v110h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="google_plus" unicode="&#xf0d5;" horiz-adv-x="2304" 
+d="M1437 623q0 -208 -87 -370.5t-248 -254t-369 -91.5q-149 0 -285 58t-234 156t-156 234t-58 285t58 285t156 234t234 156t285 58q286 0 491 -192l-199 -191q-117 113 -292 113q-123 0 -227.5 -62t-165.5 -168.5t-61 -232.5t61 -232.5t165.5 -168.5t227.5 -62
+q83 0 152.5 23t114.5 57.5t78.5 78.5t49 83t21.5 74h-416v252h692q12 -63 12 -122zM2304 745v-210h-209v-209h-210v209h-209v210h209v209h210v-209h209z" />
+    <glyph glyph-name="money" unicode="&#xf0d6;" horiz-adv-x="1920" 
+d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384
+v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="caret_down" unicode="&#xf0d7;" horiz-adv-x="1024" 
+d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="caret_up" unicode="&#xf0d8;" horiz-adv-x="1024" 
+d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+    <glyph glyph-name="caret_left" unicode="&#xf0d9;" horiz-adv-x="640" 
+d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
+    <glyph glyph-name="caret_right" unicode="&#xf0da;" horiz-adv-x="640" 
+d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
+    <glyph glyph-name="columns" unicode="&#xf0db;" horiz-adv-x="1664" 
+d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="sort" unicode="&#xf0dc;" horiz-adv-x="1024" 
+d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+    <glyph glyph-name="sort_down" unicode="&#xf0dd;" horiz-adv-x="1024" 
+d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="sort_up" unicode="&#xf0de;" horiz-adv-x="1024" 
+d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+    <glyph glyph-name="envelope_alt" unicode="&#xf0e0;" horiz-adv-x="1792" 
+d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123
+q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
+    <glyph glyph-name="linkedin" unicode="&#xf0e1;" 
+d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329
+q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
+    <glyph glyph-name="undo" unicode="&#xf0e2;" 
+d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5
+t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
+    <glyph glyph-name="legal" unicode="&#xf0e3;" horiz-adv-x="1792" 
+d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5
+t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14
+q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28
+q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
+    <glyph glyph-name="dashboard" unicode="&#xf0e4;" horiz-adv-x="1792" 
+d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5
+t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5
+t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29
+q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="comment_alt" unicode="&#xf0e5;" horiz-adv-x="1792" 
+d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640
+q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5
+t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
+    <glyph glyph-name="comments_alt" unicode="&#xf0e6;" horiz-adv-x="1792" 
+d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257
+t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5
+t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129
+q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
+    <glyph glyph-name="bolt" unicode="&#xf0e7;" horiz-adv-x="896" 
+d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
+    <glyph glyph-name="sitemap" unicode="&#xf0e8;" horiz-adv-x="1792" 
+d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320
+q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68
+z" />
+    <glyph glyph-name="umbrella" unicode="&#xf0e9;" horiz-adv-x="1664" 
+d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97
+q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69
+q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
+    <glyph glyph-name="paste" unicode="&#xf0ea;" horiz-adv-x="1792" 
+d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28
+h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
+    <glyph glyph-name="light_bulb" unicode="&#xf0eb;" horiz-adv-x="1024" 
+d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134
+q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47
+q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5
+t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
+    <glyph glyph-name="exchange" unicode="&#xf0ec;" horiz-adv-x="1792" 
+d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9
+q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
+    <glyph glyph-name="cloud_download" unicode="&#xf0ed;" horiz-adv-x="1920" 
+d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088
+q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
+    <glyph glyph-name="cloud_upload" unicode="&#xf0ee;" horiz-adv-x="1920" 
+d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088
+q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
+    <glyph glyph-name="user_md" unicode="&#xf0f0;" horiz-adv-x="1408" 
+d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56
+t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68
+t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5
+t271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="stethoscope" unicode="&#xf0f1;" horiz-adv-x="1408" 
+d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48
+t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252
+t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
+    <glyph glyph-name="suitcase" unicode="&#xf0f2;" horiz-adv-x="1792" 
+d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66
+t66 -158z" />
+    <glyph glyph-name="bell_alt" unicode="&#xf0f3;" horiz-adv-x="1792" 
+d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5
+t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
+    <glyph glyph-name="coffee" unicode="&#xf0f4;" horiz-adv-x="1920" 
+d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45
+t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="food" unicode="&#xf0f5;" horiz-adv-x="1408" 
+d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45
+t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="file_text_alt" unicode="&#xf0f6;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704
+q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" />
+    <glyph glyph-name="building" unicode="&#xf0f7;" horiz-adv-x="1408" 
+d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="hospital" unicode="&#xf0f8;" horiz-adv-x="1408" 
+d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5
+t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320
+v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="ambulance" unicode="&#xf0f9;" horiz-adv-x="1920" 
+d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5
+t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152
+q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="medkit" unicode="&#xf0fa;" horiz-adv-x="1792" 
+d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32
+q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="fighter_jet" unicode="&#xf0fb;" horiz-adv-x="1920" 
+d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96
+q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q128 -28 200 -52t80 -34z" />
+    <glyph glyph-name="beer" unicode="&#xf0fc;" horiz-adv-x="1664" 
+d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
+    <glyph glyph-name="h_sign" unicode="&#xf0fd;" 
+d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="f0fe" unicode="&#xf0fe;" 
+d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="double_angle_left" unicode="&#xf100;" horiz-adv-x="1024" 
+d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23
+t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
+    <glyph glyph-name="double_angle_right" unicode="&#xf101;" horiz-adv-x="1024" 
+d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23
+l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+    <glyph glyph-name="double_angle_up" unicode="&#xf102;" horiz-adv-x="1152" 
+d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393
+q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+    <glyph glyph-name="double_angle_down" unicode="&#xf103;" horiz-adv-x="1152" 
+d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23
+t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+    <glyph glyph-name="angle_left" unicode="&#xf104;" horiz-adv-x="640" 
+d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+    <glyph glyph-name="angle_right" unicode="&#xf105;" horiz-adv-x="640" 
+d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+    <glyph glyph-name="angle_up" unicode="&#xf106;" horiz-adv-x="1152" 
+d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+    <glyph glyph-name="angle_down" unicode="&#xf107;" horiz-adv-x="1152" 
+d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+    <glyph glyph-name="desktop" unicode="&#xf108;" horiz-adv-x="1920" 
+d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19
+t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="laptop" unicode="&#xf109;" horiz-adv-x="1920" 
+d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z
+M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
+    <glyph glyph-name="tablet" unicode="&#xf10a;" horiz-adv-x="1152" 
+d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832
+q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="mobile_phone" unicode="&#xf10b;" horiz-adv-x="768" 
+d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136
+q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="circle_blank" unicode="&#xf10c;" 
+d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103
+t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="quote_left" unicode="&#xf10d;" horiz-adv-x="1664" 
+d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z
+M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
+    <glyph glyph-name="quote_right" unicode="&#xf10e;" horiz-adv-x="1664" 
+d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216
+v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
+    <glyph glyph-name="spinner" unicode="&#xf110;" horiz-adv-x="1792" 
+d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5
+t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z
+M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5
+q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="circle" unicode="&#xf111;" 
+d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="reply" unicode="&#xf112;" horiz-adv-x="1792" 
+d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19
+l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
+    <glyph glyph-name="github_alt" unicode="&#xf113;" horiz-adv-x="1664" 
+d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320
+q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86
+t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218
+q0 -87 -27 -168q136 -160 136 -398z" />
+    <glyph glyph-name="folder_close_alt" unicode="&#xf114;" horiz-adv-x="1664" 
+d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320
+q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="folder_open_alt" unicode="&#xf115;" horiz-adv-x="1920" 
+d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68
+v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z
+" />
+    <glyph glyph-name="expand_alt" unicode="&#xf116;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="collapse_alt" unicode="&#xf117;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="smile" unicode="&#xf118;" 
+d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
+t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5
+t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="frown" unicode="&#xf119;" 
+d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
+t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204
+t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="meh" unicode="&#xf11a;" 
+d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
+t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="gamepad" unicode="&#xf11b;" horiz-adv-x="1920" 
+d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5
+t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150
+t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
+    <glyph glyph-name="keyboard" unicode="&#xf11c;" horiz-adv-x="1920" 
+d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16
+h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16
+h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96
+q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896
+h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
+    <glyph glyph-name="flag_alt" unicode="&#xf11d;" horiz-adv-x="1792" 
+d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9
+h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102
+q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
+    <glyph glyph-name="flag_checkered" unicode="&#xf11e;" horiz-adv-x="1792" 
+d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2
+q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266
+q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8
+q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
+    <glyph glyph-name="terminal" unicode="&#xf120;" horiz-adv-x="1664" 
+d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9
+t9 -23z" />
+    <glyph glyph-name="code" unicode="&#xf121;" horiz-adv-x="1920" 
+d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5
+l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
+    <glyph glyph-name="reply_all" unicode="&#xf122;" horiz-adv-x="1792" 
+d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1
+q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
+    <glyph glyph-name="star_half_empty" unicode="&#xf123;" horiz-adv-x="1664" 
+d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5
+l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
+    <glyph glyph-name="location_arrow" unicode="&#xf124;" horiz-adv-x="1408" 
+d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
+    <glyph glyph-name="crop" unicode="&#xf125;" horiz-adv-x="1664" 
+d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23
+v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="code_fork" unicode="&#xf126;" horiz-adv-x="1024" 
+d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5
+q-2 -287 -226 -414q-67 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497
+q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
+    <glyph glyph-name="unlink" unicode="&#xf127;" horiz-adv-x="1664" 
+d="M439 265l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320
+q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18
+l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9
+t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
+    <glyph glyph-name="question" unicode="&#xf128;" horiz-adv-x="1024" 
+d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5
+t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
+    <glyph glyph-name="_279" unicode="&#xf129;" horiz-adv-x="640" 
+d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192
+q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="exclamation" unicode="&#xf12a;" horiz-adv-x="640" 
+d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
+    <glyph glyph-name="superscript" unicode="&#xf12b;" 
+d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z
+M1534 846v-206h-514l-3 27q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5
+t-65.5 -51.5t-30.5 -63h232v80h126z" />
+    <glyph glyph-name="subscript" unicode="&#xf12c;" 
+d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z
+M1536 -50v-206h-514l-4 27q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73
+h232v80h126z" />
+    <glyph glyph-name="_283" unicode="&#xf12d;" horiz-adv-x="1920" 
+d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
+    <glyph glyph-name="puzzle_piece" unicode="&#xf12e;" horiz-adv-x="1664" 
+d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5
+t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89
+q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117
+q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
+    <glyph glyph-name="microphone" unicode="&#xf130;" horiz-adv-x="1152" 
+d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5
+t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
+    <glyph glyph-name="microphone_off" unicode="&#xf131;" horiz-adv-x="1408" 
+d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128
+q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23
+t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
+    <glyph glyph-name="shield" unicode="&#xf132;" horiz-adv-x="1280" 
+d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150
+t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="calendar_empty" unicode="&#xf133;" horiz-adv-x="1664" 
+d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280
+q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="fire_extinguisher" unicode="&#xf134;" horiz-adv-x="1408" 
+d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800
+q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113
+q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
+    <glyph glyph-name="rocket" unicode="&#xf135;" horiz-adv-x="1664" 
+d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1
+q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
+    <glyph glyph-name="maxcdn" unicode="&#xf136;" horiz-adv-x="1792" 
+d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
+    <glyph glyph-name="chevron_sign_left" unicode="&#xf137;" 
+d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="chevron_sign_right" unicode="&#xf138;" 
+d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="chevron_sign_up" unicode="&#xf139;" 
+d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="chevron_sign_down" unicode="&#xf13a;" 
+d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="html5" unicode="&#xf13b;" horiz-adv-x="1408" 
+d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
+    <glyph glyph-name="css3" unicode="&#xf13c;" horiz-adv-x="1792" 
+d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
+    <glyph glyph-name="anchor" unicode="&#xf13d;" horiz-adv-x="1792" 
+d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352
+q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19
+t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="unlock_alt" unicode="&#xf13e;" horiz-adv-x="1152" 
+d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181
+v-320h736z" />
+    <glyph glyph-name="bullseye" unicode="&#xf140;" 
+d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150
+t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="ellipsis_horizontal" unicode="&#xf141;" horiz-adv-x="1408" 
+d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192
+q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="ellipsis_vertical" unicode="&#xf142;" horiz-adv-x="384" 
+d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192
+q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="_303" unicode="&#xf143;" 
+d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 233 -176.5 396.5t-396.5 176.5q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128
+q13 0 23 10t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="play_sign" unicode="&#xf144;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56
+q16 -8 32 -8q17 0 32 9z" />
+    <glyph glyph-name="ticket" unicode="&#xf145;" horiz-adv-x="1792" 
+d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136
+t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
+    <glyph glyph-name="minus_sign_alt" unicode="&#xf146;" 
+d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
+t84.5 -203.5z" />
+    <glyph glyph-name="check_minus" unicode="&#xf147;" horiz-adv-x="1408" 
+d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5
+t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="level_up" unicode="&#xf148;" horiz-adv-x="1024" 
+d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
+    <glyph glyph-name="level_down" unicode="&#xf149;" horiz-adv-x="1024" 
+d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
+    <glyph glyph-name="check_sign" unicode="&#xf14a;" 
+d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5
+t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="edit_sign" unicode="&#xf14b;" 
+d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120
+v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_312" unicode="&#xf14c;" 
+d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960
+q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="share_sign" unicode="&#xf14d;" 
+d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q11 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5
+t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="compass" unicode="&#xf14e;" 
+d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
+t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="collapse" unicode="&#xf150;" 
+d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120
+v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="collapse_top" unicode="&#xf151;" 
+d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_317" unicode="&#xf152;" 
+d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5
+t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="eur" unicode="&#xf153;" horiz-adv-x="1024" 
+d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9
+t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26
+l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
+    <glyph glyph-name="gbp" unicode="&#xf154;" horiz-adv-x="1024" 
+d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7
+q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
+    <glyph glyph-name="usd" unicode="&#xf155;" horiz-adv-x="1024" 
+d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43
+t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5
+t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50
+t53 -63.5t31.5 -76.5t13 -94z" />
+    <glyph glyph-name="inr" unicode="&#xf156;" horiz-adv-x="898" 
+d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102
+q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="jpy" unicode="&#xf157;" horiz-adv-x="1027" 
+d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61
+l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
+    <glyph glyph-name="rub" unicode="&#xf158;" horiz-adv-x="1280" 
+d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128
+q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
+    <glyph glyph-name="krw" unicode="&#xf159;" horiz-adv-x="1792" 
+d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23
+t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28
+q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="btc" unicode="&#xf15a;" horiz-adv-x="1280" 
+d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164
+l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30
+t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
+    <glyph glyph-name="file" unicode="&#xf15b;" 
+d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" />
+    <glyph glyph-name="file_text" unicode="&#xf15c;" 
+d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704
+q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" />
+    <glyph glyph-name="sort_by_alphabet" unicode="&#xf15d;" horiz-adv-x="1664" 
+d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23
+v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162
+l230 -662h70z" />
+    <glyph glyph-name="_329" unicode="&#xf15e;" horiz-adv-x="1664" 
+d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150
+v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248
+v119h121z" />
+    <glyph glyph-name="sort_by_attributes" unicode="&#xf160;" horiz-adv-x="1792" 
+d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832
+q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256
+q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="sort_by_attributes_alt" unicode="&#xf161;" horiz-adv-x="1792" 
+d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192
+q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832
+q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="sort_by_order" unicode="&#xf162;" 
+d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23
+zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5
+t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
+    <glyph glyph-name="sort_by_order_alt" unicode="&#xf163;" 
+d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9
+t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13
+q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
+    <glyph glyph-name="_334" unicode="&#xf164;" horiz-adv-x="1664" 
+d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76
+q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5
+t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
+    <glyph glyph-name="_335" unicode="&#xf165;" horiz-adv-x="1664" 
+d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135
+t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121
+t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
+    <glyph glyph-name="youtube_sign" unicode="&#xf166;" 
+d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 17 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15
+q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38
+q21 -29 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5
+q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78q7 -23 23 -69l24 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38
+q-51 0 -78 -38q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5
+h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="youtube" unicode="&#xf167;" 
+d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73
+q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51
+q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99
+q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-38 -51 -106 -51q-67 0 -105 51
+q-28 38 -28 118v175q0 80 28 117q38 51 105 51q68 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
+    <glyph glyph-name="xing" unicode="&#xf168;" horiz-adv-x="1408" 
+d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942
+q25 45 64 45h241q22 0 31 -15z" />
+    <glyph glyph-name="xing_sign" unicode="&#xf169;" 
+d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1
+l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="youtube_play" unicode="&#xf16a;" horiz-adv-x="1792" 
+d="M711 408l484 250l-484 253v-503zM896 1270q168 0 324.5 -4.5t229.5 -9.5l73 -4q1 0 17 -1.5t23 -3t23.5 -4.5t28.5 -8t28 -13t31 -19.5t29 -26.5q6 -6 15.5 -18.5t29 -58.5t26.5 -101q8 -64 12.5 -136.5t5.5 -113.5v-40v-136q1 -145 -18 -290q-7 -55 -25 -99.5t-32 -61.5
+l-14 -17q-14 -15 -29 -26.5t-31 -19t-28 -12.5t-28.5 -8t-24 -4.5t-23 -3t-16.5 -1.5q-251 -19 -627 -19q-207 2 -359.5 6.5t-200.5 7.5l-49 4l-36 4q-36 5 -54.5 10t-51 21t-56.5 41q-6 6 -15.5 18.5t-29 58.5t-26.5 101q-8 64 -12.5 136.5t-5.5 113.5v40v136
+q-1 145 18 290q7 55 25 99.5t32 61.5l14 17q14 15 29 26.5t31 19.5t28 13t28.5 8t23.5 4.5t23 3t17 1.5q251 18 627 18z" />
+    <glyph glyph-name="dropbox" unicode="&#xf16b;" horiz-adv-x="1792" 
+d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
+    <glyph glyph-name="stackexchange" unicode="&#xf16c;" 
+d="M1289 -96h-1118v480h-160v-640h1438v640h-160v-480zM347 428l33 157l783 -165l-33 -156zM450 802l67 146l725 -339l-67 -145zM651 1158l102 123l614 -513l-102 -123zM1048 1536l477 -641l-128 -96l-477 641zM330 65v159h800v-159h-800z" />
+    <glyph glyph-name="instagram" unicode="&#xf16d;" 
+d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1162 640q0 -164 -115 -279t-279 -115t-279 115t-115 279t115 279t279 115t279 -115t115 -279zM1270 1050q0 -38 -27 -65t-65 -27t-65 27t-27 65t27 65t65 27t65 -27t27 -65zM768 1270
+q-7 0 -76.5 0.5t-105.5 0t-96.5 -3t-103 -10t-71.5 -18.5q-50 -20 -88 -58t-58 -88q-11 -29 -18.5 -71.5t-10 -103t-3 -96.5t0 -105.5t0.5 -76.5t-0.5 -76.5t0 -105.5t3 -96.5t10 -103t18.5 -71.5q20 -50 58 -88t88 -58q29 -11 71.5 -18.5t103 -10t96.5 -3t105.5 0t76.5 0.5
+t76.5 -0.5t105.5 0t96.5 3t103 10t71.5 18.5q50 20 88 58t58 88q11 29 18.5 71.5t10 103t3 96.5t0 105.5t-0.5 76.5t0.5 76.5t0 105.5t-3 96.5t-10 103t-18.5 71.5q-20 50 -58 88t-88 58q-29 11 -71.5 18.5t-103 10t-96.5 3t-105.5 0t-76.5 -0.5zM1536 640q0 -229 -5 -317
+q-10 -208 -124 -322t-322 -124q-88 -5 -317 -5t-317 5q-208 10 -322 124t-124 322q-5 88 -5 317t5 317q10 208 124 322t322 124q88 5 317 5t317 -5q208 -10 322 -124t124 -322q5 -88 5 -317z" />
+    <glyph glyph-name="flickr" unicode="&#xf16e;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150
+t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
+    <glyph glyph-name="adn" unicode="&#xf170;" 
+d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="f171" unicode="&#xf171;" horiz-adv-x="1408" 
+d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22
+t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18
+t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5
+t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
+    <glyph glyph-name="bitbucket_sign" unicode="&#xf172;" 
+d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5
+t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z
+M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120
+v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="tumblr" unicode="&#xf173;" horiz-adv-x="1024" 
+d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14
+q78 2 134 29z" />
+    <glyph glyph-name="tumblr_sign" unicode="&#xf174;" 
+d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z
+M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="long_arrow_down" unicode="&#xf175;" horiz-adv-x="768" 
+d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
+    <glyph glyph-name="long_arrow_up" unicode="&#xf176;" horiz-adv-x="768" 
+d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
+    <glyph glyph-name="long_arrow_left" unicode="&#xf177;" horiz-adv-x="1792" 
+d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="long_arrow_right" unicode="&#xf178;" horiz-adv-x="1792" 
+d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
+    <glyph glyph-name="apple" unicode="&#xf179;" horiz-adv-x="1408" 
+d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q113 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65
+q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
+    <glyph glyph-name="windows" unicode="&#xf17a;" horiz-adv-x="1664" 
+d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
+    <glyph glyph-name="android" unicode="&#xf17b;" horiz-adv-x="1408" 
+d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30
+t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5
+h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
+    <glyph glyph-name="linux" unicode="&#xf17c;" 
+d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-10 -11 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z
+M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7
+q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15
+q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5
+t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19
+q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63
+q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18q-2 -1 -4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92
+q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152
+q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-6 0 -8 -2t0 -4
+t5 -3q14 -4 18 -31q0 -3 8 2q2 2 2 3zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5
+t-30 -18.5t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43
+q-19 4 -51 9.5t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49
+t-14 -48q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54
+q110 143 124 195q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5
+t-40.5 -33.5t-61 -14q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5
+t15.5 47.5q1 -31 8 -56.5t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
+    <glyph glyph-name="dribble" unicode="&#xf17d;" 
+d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81
+t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19
+q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -5 6.5 -17t7.5 -17q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6
+t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="skype" unicode="&#xf17e;" 
+d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5
+t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5
+q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80
+q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
+    <glyph glyph-name="foursquare" unicode="&#xf180;" horiz-adv-x="1280" 
+d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z
+M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324
+l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" />
+    <glyph glyph-name="trello" unicode="&#xf181;" 
+d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408
+q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="female" unicode="&#xf182;" horiz-adv-x="1280" 
+d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43
+q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="male" unicode="&#xf183;" horiz-adv-x="1024" 
+d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z
+M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="gittip" unicode="&#xf184;" 
+d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
+t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="sun" unicode="&#xf185;" horiz-adv-x="1792" 
+d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4
+l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94
+q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
+    <glyph glyph-name="_366" unicode="&#xf186;" 
+d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61
+t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
+    <glyph glyph-name="archive" unicode="&#xf187;" horiz-adv-x="1792" 
+d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536
+q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="bug" unicode="&#xf188;" horiz-adv-x="1664" 
+d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207
+q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19
+t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
+    <glyph glyph-name="vk" unicode="&#xf189;" horiz-adv-x="1920" 
+d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-40 -51 -55 -72t-30.5 -49.5t-12 -42t13 -34.5t32.5 -43t57 -53q4 -2 5 -4q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58
+t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6
+q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q16 19 38 30q53 26 239 24
+q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2
+q39 5 64 -2.5t31 -16.5z" />
+    <glyph glyph-name="weibo" unicode="&#xf18a;" horiz-adv-x="1792" 
+d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12
+q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422
+q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178
+q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z
+M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
+    <glyph glyph-name="renren" unicode="&#xf18b;" 
+d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495
+q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
+    <glyph glyph-name="_372" unicode="&#xf18c;" horiz-adv-x="1408" 
+d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5
+t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56
+t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -4 1 -50t-1 -72q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5
+t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
+    <glyph glyph-name="stack_exchange" unicode="&#xf18d;" horiz-adv-x="1280" 
+d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z
+" />
+    <glyph glyph-name="_374" unicode="&#xf18e;" 
+d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198
+t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="arrow_circle_alt_left" unicode="&#xf190;" 
+d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198
+t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_376" unicode="&#xf191;" 
+d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z
+M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="dot_circle_alt" unicode="&#xf192;" 
+d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5
+t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_378" unicode="&#xf193;" horiz-adv-x="1664" 
+d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128
+q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 17 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
+    <glyph glyph-name="vimeo_square" unicode="&#xf194;" 
+d="M1292 898q10 216 -161 222q-231 8 -312 -261q44 19 82 19q85 0 74 -96q-4 -57 -74 -167t-105 -110q-43 0 -82 169q-13 54 -45 255q-30 189 -160 177q-59 -7 -164 -100l-81 -72l-81 -72l52 -67q76 52 87 52q57 0 107 -179q15 -55 45 -164.5t45 -164.5q68 -179 164 -179
+q157 0 383 294q220 283 226 444zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_380" unicode="&#xf195;" horiz-adv-x="1152" 
+d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160
+q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="plus_square_o" unicode="&#xf196;" horiz-adv-x="1408" 
+d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832
+q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_382" unicode="&#xf197;" horiz-adv-x="2176" 
+d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40
+t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29
+q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" />
+    <glyph glyph-name="_383" unicode="&#xf198;" horiz-adv-x="1664" 
+d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9
+q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102
+t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" />
+    <glyph glyph-name="_384" unicode="&#xf199;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69
+q-47 32 -142 92.5t-142 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13
+t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" />
+    <glyph glyph-name="_385" unicode="&#xf19a;" horiz-adv-x="1792" 
+d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5
+t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21
+t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286
+t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273
+t273 -182.5t331.5 -68z" />
+    <glyph glyph-name="_386" unicode="&#xf19b;" horiz-adv-x="1792" 
+d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" />
+    <glyph glyph-name="_387" unicode="&#xf19c;" horiz-adv-x="2048" 
+d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64
+q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
+    <glyph glyph-name="_388" unicode="&#xf19d;" horiz-adv-x="2304" 
+d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433
+q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
+    <glyph glyph-name="_389" unicode="&#xf19e;" 
+d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q44 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0
+q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
+    <glyph glyph-name="uniF1A0" unicode="&#xf1a0;" 
+d="M768 750h725q12 -67 12 -128q0 -217 -91 -387.5t-259.5 -266.5t-386.5 -96q-157 0 -299 60.5t-245 163.5t-163.5 245t-60.5 299t60.5 299t163.5 245t245 163.5t299 60.5q300 0 515 -201l-209 -201q-123 119 -306 119q-129 0 -238.5 -65t-173.5 -176.5t-64 -243.5
+t64 -243.5t173.5 -176.5t238.5 -65q87 0 160 24t120 60t82 82t51.5 87t22.5 78h-436v264z" />
+    <glyph glyph-name="f1a1" unicode="&#xf1a1;" horiz-adv-x="1792" 
+d="M1095 369q16 -16 0 -31q-62 -62 -199 -62t-199 62q-16 15 0 31q6 6 15 6t15 -6q48 -49 169 -49q120 0 169 49q6 6 15 6t15 -6zM788 550q0 -37 -26 -63t-63 -26t-63.5 26t-26.5 63q0 38 26.5 64t63.5 26t63 -26.5t26 -63.5zM1183 550q0 -37 -26.5 -63t-63.5 -26t-63 26
+t-26 63t26 63.5t63 26.5t63.5 -26t26.5 -64zM1434 670q0 49 -35 84t-85 35t-86 -36q-130 90 -311 96l63 283l200 -45q0 -37 26 -63t63 -26t63.5 26.5t26.5 63.5t-26.5 63.5t-63.5 26.5q-54 0 -80 -50l-221 49q-19 5 -25 -16l-69 -312q-180 -7 -309 -97q-35 37 -87 37
+q-50 0 -85 -35t-35 -84q0 -35 18.5 -64t49.5 -44q-6 -27 -6 -56q0 -142 140 -243t337 -101q198 0 338 101t140 243q0 32 -7 57q30 15 48 43.5t18 63.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191
+t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_392" unicode="&#xf1a2;" 
+d="M939 407q13 -13 0 -26q-53 -53 -171 -53t-171 53q-13 13 0 26q5 6 13 6t13 -6q42 -42 145 -42t145 42q5 6 13 6t13 -6zM676 563q0 -31 -23 -54t-54 -23t-54 23t-23 54q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1014 563q0 -31 -23 -54t-54 -23t-54 23t-23 54
+q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1229 666q0 42 -30 72t-73 30q-42 0 -73 -31q-113 78 -267 82l54 243l171 -39q1 -32 23.5 -54t53.5 -22q32 0 54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5q-48 0 -69 -43l-189 42q-17 5 -21 -13l-60 -268q-154 -6 -265 -83
+q-30 32 -74 32q-43 0 -73 -30t-30 -72q0 -30 16 -55t42 -38q-5 -25 -5 -48q0 -122 120 -208.5t289 -86.5q170 0 290 86.5t120 208.5q0 25 -6 49q25 13 40.5 37.5t15.5 54.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960
+q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_393" unicode="&#xf1a3;" 
+d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150
+v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103
+t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="f1a4" unicode="&#xf1a4;" horiz-adv-x="1920" 
+d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328
+v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" />
+    <glyph glyph-name="_395" unicode="&#xf1a5;" 
+d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
+t84.5 -203.5z" />
+    <glyph glyph-name="_396" unicode="&#xf1a6;" horiz-adv-x="2048" 
+d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123
+v-369h123z" />
+    <glyph glyph-name="_397" unicode="&#xf1a7;" 
+d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101
+v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960
+q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_398" unicode="&#xf1a8;" horiz-adv-x="2038" 
+d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14
+q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24
+q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33
+q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5
+t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43
+q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5
+t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13
+t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" />
+    <glyph glyph-name="_399" unicode="&#xf1a9;" 
+d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10
+q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14
+q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14
+t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44
+q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" />
+    <glyph glyph-name="_400" unicode="&#xf1aa;" 
+d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z
+M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5
+t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5
+q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126
+t135.5 51q85 0 145 -60.5t60 -145.5z" />
+    <glyph glyph-name="f1ab" unicode="&#xf1ab;" 
+d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5
+q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28
+q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z
+M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11
+q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q107 36 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5
+q20 0 20 -21v-418z" />
+    <glyph glyph-name="_402" unicode="&#xf1ac;" horiz-adv-x="1792" 
+d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48
+l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23
+t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128
+q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128
+q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" />
+    <glyph glyph-name="_403" unicode="&#xf1ad;" 
+d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9
+t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64
+q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64
+q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9
+t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64
+q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64
+q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9
+t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" />
+    <glyph glyph-name="_404" unicode="&#xf1ae;" horiz-adv-x="1280" 
+d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68q29 28 68.5 28t67.5 -28l228 -228h368l228 228q28 28 68 28t68 -28q28 -29 28 -68.5t-28 -67.5zM864 1152
+q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="uniF1B1" unicode="&#xf1b0;" horiz-adv-x="1664" 
+d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5
+q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819
+q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5
+t100.5 134t141.5 55.5z" />
+    <glyph glyph-name="_406" unicode="&#xf1b1;" horiz-adv-x="768" 
+d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" />
+    <glyph glyph-name="_407" unicode="&#xf1b2;" horiz-adv-x="1792" 
+d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z
+" />
+    <glyph glyph-name="_408" unicode="&#xf1b3;" horiz-adv-x="2304" 
+d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67
+t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-4 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70
+v-400l434 -186q36 -16 57 -48t21 -70z" />
+    <glyph glyph-name="_409" unicode="&#xf1b4;" horiz-adv-x="2048" 
+d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658
+q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204
+q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" />
+    <glyph glyph-name="_410" unicode="&#xf1b5;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5
+t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217
+t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" />
+    <glyph glyph-name="_411" unicode="&#xf1b6;" horiz-adv-x="1792" 
+d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5
+q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89
+q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" />
+    <glyph glyph-name="_412" unicode="&#xf1b7;" 
+d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5
+q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5
+q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z
+" />
+    <glyph glyph-name="_413" unicode="&#xf1b8;" horiz-adv-x="1792" 
+d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188
+l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5
+t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1
+q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" />
+    <glyph glyph-name="_414" unicode="&#xf1b9;" horiz-adv-x="2048" 
+d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384
+q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5
+l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="_415" unicode="&#xf1ba;" horiz-adv-x="2048" 
+d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5
+t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z
+M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" />
+    <glyph glyph-name="_416" unicode="&#xf1bb;" 
+d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384
+q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" />
+    <glyph glyph-name="_417" unicode="&#xf1bc;" 
+d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64
+q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37
+q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_418" unicode="&#xf1bd;" horiz-adv-x="1024" 
+d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" />
+    <glyph glyph-name="_419" unicode="&#xf1be;" horiz-adv-x="2304" 
+d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11
+q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245
+q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785
+l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242
+q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236
+q0 -11 -8 -19t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786
+q-13 2 -22 11t-9 22v899q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" />
+    <glyph glyph-name="uniF1C0" unicode="&#xf1c0;" 
+d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127
+t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5
+t-103 128v128q0 69 103 128t280 93.5t385 34.5z" />
+    <glyph glyph-name="uniF1C1" unicode="&#xf1c1;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197
+q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8
+q-1 1 -1 2q-1 2 -1 3q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" />
+    <glyph glyph-name="_422" unicode="&#xf1c2;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4q0 3 -0.5 6.5t-1.5 8t-1 6.5q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5
+t-3.5 -21.5l-4 -21h-4l-2 21q-2 26 -7 46l-99 438h90v107h-300z" />
+    <glyph glyph-name="_423" unicode="&#xf1c3;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107
+h-290v-107h68l189 -272l-194 -283h-68z" />
+    <glyph glyph-name="_424" unicode="&#xf1c4;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" />
+    <glyph glyph-name="_425" unicode="&#xf1c5;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" />
+    <glyph glyph-name="_426" unicode="&#xf1c6;" 
+d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400
+v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79
+q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" />
+    <glyph glyph-name="_427" unicode="&#xf1c7;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5
+q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" />
+    <glyph glyph-name="_428" unicode="&#xf1c8;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" />
+    <glyph glyph-name="_429" unicode="&#xf1c9;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243
+l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" />
+    <glyph glyph-name="_430" unicode="&#xf1ca;" 
+d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406
+q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" />
+    <glyph glyph-name="_431" unicode="&#xf1cb;" horiz-adv-x="1792" 
+d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546
+q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
+    <glyph glyph-name="_432" unicode="&#xf1cc;" horiz-adv-x="2048" 
+d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94
+q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55
+t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97l93 -108q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5t-85 -189.5z" />
+    <glyph glyph-name="_433" unicode="&#xf1cd;" horiz-adv-x="1792" 
+d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194
+q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5
+t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
+    <glyph glyph-name="_434" unicode="&#xf1ce;" horiz-adv-x="1792" 
+d="M1760 640q0 -176 -68.5 -336t-184 -275.5t-275.5 -184t-336 -68.5t-336 68.5t-275.5 184t-184 275.5t-68.5 336q0 213 97 398.5t265 305.5t374 151v-228q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5
+t136.5 204t51 248.5q0 230 -145.5 406t-366.5 221v228q206 -31 374 -151t265 -305.5t97 -398.5z" />
+    <glyph glyph-name="uniF1D0" unicode="&#xf1d0;" horiz-adv-x="1792" 
+d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41
+t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170
+t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136
+q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
+    <glyph glyph-name="uniF1D1" unicode="&#xf1d1;" horiz-adv-x="1792" 
+d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251
+l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162
+q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33
+q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5
+t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71
+t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF1D2" unicode="&#xf1d2;" 
+d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85
+q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392
+q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072
+q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_438" unicode="&#xf1d3;" horiz-adv-x="1792" 
+d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58
+q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47
+q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171
+v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" />
+    <glyph glyph-name="_439" unicode="&#xf1d4;" 
+d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="uniF1D5" unicode="&#xf1d5;" horiz-adv-x="1280" 
+d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5
+t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153
+t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" />
+    <glyph glyph-name="uniF1D6" unicode="&#xf1d6;" horiz-adv-x="1792" 
+d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5
+q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20
+t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5
+t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" />
+    <glyph glyph-name="uniF1D7" unicode="&#xf1d7;" horiz-adv-x="2048" 
+d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25
+q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5
+q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109
+q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" />
+    <glyph glyph-name="_443" unicode="&#xf1d8;" horiz-adv-x="1792" 
+d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" />
+    <glyph glyph-name="_444" unicode="&#xf1d9;" horiz-adv-x="1792" 
+d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137
+l863 639l-478 -797z" />
+    <glyph glyph-name="_445" unicode="&#xf1da;" 
+d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5
+t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23
+t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="_446" unicode="&#xf1db;" 
+d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
+t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_447" unicode="&#xf1dc;" horiz-adv-x="1792" 
+d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15
+t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2
+t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160
+q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5
+q0 -26 -12 -48t-36 -22z" />
+    <glyph glyph-name="_448" unicode="&#xf1dd;" horiz-adv-x="1280" 
+d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179
+q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" />
+    <glyph glyph-name="_449" unicode="&#xf1de;" 
+d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256
+q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" />
+    <glyph glyph-name="uniF1E0" unicode="&#xf1e0;" 
+d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5
+t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" />
+    <glyph glyph-name="_451" unicode="&#xf1e1;" 
+d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5
+t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_452" unicode="&#xf1e2;" horiz-adv-x="1792" 
+d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5
+t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91
+q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9
+t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
+    <glyph glyph-name="_453" unicode="&#xf1e3;" horiz-adv-x="1792" 
+d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323
+l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" />
+    <glyph glyph-name="_454" unicode="&#xf1e4;" horiz-adv-x="1792" 
+d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23
+v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192
+q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23
+zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5
+t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" />
+    <glyph glyph-name="_455" unicode="&#xf1e5;" horiz-adv-x="1792" 
+d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z
+M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="_456" unicode="&#xf1e6;" horiz-adv-x="1792" 
+d="M1755 1083q37 -38 37 -90.5t-37 -90.5l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234
+l401 400q38 37 91 37t90 -37z" />
+    <glyph glyph-name="_457" unicode="&#xf1e7;" horiz-adv-x="1792" 
+d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5
+t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z
+M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q4 -2 11.5 -7
+t10.5 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" />
+    <glyph glyph-name="_458" unicode="&#xf1e8;" horiz-adv-x="1792" 
+d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" />
+    <glyph glyph-name="_459" unicode="&#xf1e9;" 
+d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36
+q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q71 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5
+t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87
+q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" />
+    <glyph glyph-name="_460" unicode="&#xf1ea;" horiz-adv-x="2048" 
+d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19
+t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" />
+    <glyph glyph-name="_461" unicode="&#xf1eb;" horiz-adv-x="2048" 
+d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121
+q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z
+M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
+    <glyph glyph-name="_462" unicode="&#xf1ec;" horiz-adv-x="1792" 
+d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5
+t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5
+t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5
+t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z
+M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38
+h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_463" unicode="&#xf1ed;" 
+d="M1519 890q18 -84 -4 -204q-87 -444 -565 -444h-44q-25 0 -44 -16.5t-24 -42.5l-4 -19l-55 -346l-2 -15q-5 -26 -24.5 -42.5t-44.5 -16.5h-251q-21 0 -33 15t-9 36q9 56 26.5 168t26.5 168t27 167.5t27 167.5q5 37 43 37h131q133 -2 236 21q175 39 287 144q102 95 155 246
+q24 70 35 133q1 6 2.5 7.5t3.5 1t6 -3.5q79 -59 98 -162zM1347 1172q0 -107 -46 -236q-80 -233 -302 -315q-113 -40 -252 -42q0 -1 -90 -1l-90 1q-100 0 -118 -96q-2 -8 -85 -530q-1 -10 -12 -10h-295q-22 0 -36.5 16.5t-11.5 38.5l232 1471q5 29 27.5 48t51.5 19h598
+q34 0 97.5 -13t111.5 -32q107 -41 163.5 -123t56.5 -196z" />
+    <glyph glyph-name="_464" unicode="&#xf1ee;" horiz-adv-x="1792" 
+d="M441 864q33 0 52 -26q266 -364 362 -774h-446q-127 441 -367 749q-12 16 -3 33.5t29 17.5h373zM1000 507q-49 -199 -125 -393q-79 310 -256 594q40 221 44 449q211 -340 337 -650zM1099 1216q235 -324 384.5 -698.5t184.5 -773.5h-451q-41 665 -553 1472h435zM1792 640
+q0 -424 -101 -812q-67 560 -359 1083q-25 301 -106 584q-4 16 5.5 28.5t25.5 12.5h359q21 0 38.5 -13t22.5 -33q115 -409 115 -850z" />
+    <glyph glyph-name="uniF1F0" unicode="&#xf1f0;" horiz-adv-x="2304" 
+d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27
+q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128
+q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_466" unicode="&#xf1f1;" horiz-adv-x="2304" 
+d="M1119 1195q-128 85 -281 85q-103 0 -197.5 -40.5t-162.5 -108.5t-108.5 -162t-40.5 -197q0 -104 40.5 -198t108.5 -162t162 -108.5t198 -40.5q153 0 281 85q-131 107 -178 265.5t0.5 316.5t177.5 265zM1152 1171q-126 -99 -172 -249.5t-0.5 -300.5t172.5 -249
+q127 99 172.5 249t-0.5 300.5t-172 249.5zM1185 1195q130 -107 177.5 -265.5t0.5 -317t-178 -264.5q128 -85 281 -85q104 0 198 40.5t162 108.5t108.5 162t40.5 198q0 103 -40.5 197t-108.5 162t-162.5 108.5t-197.5 40.5q-153 0 -281 -85zM1926 473h7v3h-17v-3h7v-17h3v17z
+M1955 456h4v20h-5l-6 -13l-6 13h-5v-20h3v15l6 -13h4l5 13v-15zM1947 16v-2h-2h-3v3h3h2v-1zM1947 7h3l-4 5h2l1 1q1 1 1 3t-1 3l-1 1h-3h-6v-13h3v5h1zM685 75q0 19 11 31t30 12q18 0 29 -12.5t11 -30.5q0 -19 -11 -31t-29 -12q-19 0 -30 12t-11 31zM1158 119q30 0 35 -32
+h-70q5 32 35 32zM1514 75q0 19 11 31t29 12t29.5 -12.5t11.5 -30.5q0 -19 -11 -31t-30 -12q-18 0 -29 12t-11 31zM1786 75q0 18 11.5 30.5t29.5 12.5t29.5 -12.5t11.5 -30.5q0 -19 -11.5 -31t-29.5 -12t-29.5 12.5t-11.5 30.5zM1944 3q-2 0 -4 1q-1 0 -3 2t-2 3q-1 2 -1 4
+q0 3 1 4q0 2 2 4l1 1q2 0 2 1q2 1 4 1q3 0 4 -1l4 -2l2 -4v-1q1 -2 1 -3l-1 -1v-3t-1 -1l-1 -2q-2 -2 -4 -2q-1 -1 -4 -1zM599 7h30v85q0 24 -14.5 38.5t-39.5 15.5q-32 0 -47 -24q-14 24 -45 24q-24 0 -39 -20v16h-30v-135h30v75q0 36 33 36q30 0 30 -36v-75h29v75
+q0 36 33 36q30 0 30 -36v-75zM765 7h29v68v67h-29v-16q-17 20 -43 20q-29 0 -48 -20t-19 -51t19 -51t48 -20q28 0 43 20v-17zM943 48q0 34 -47 40l-14 2q-23 4 -23 14q0 15 25 15q23 0 43 -11l12 24q-22 14 -55 14q-26 0 -41 -12t-15 -32q0 -33 47 -39l13 -2q24 -4 24 -14
+q0 -17 -31 -17q-25 0 -45 14l-13 -23q25 -17 58 -17q29 0 45.5 12t16.5 32zM1073 14l-8 25q-13 -7 -26 -7q-19 0 -19 22v61h48v27h-48v41h-30v-41h-28v-27h28v-61q0 -50 47 -50q21 0 36 10zM1159 146q-29 0 -48 -20t-19 -51q0 -32 19.5 -51.5t49.5 -19.5q33 0 55 19l-14 22
+q-18 -15 -39 -15q-34 0 -41 33h101v12q0 32 -18 51.5t-46 19.5zM1318 146q-23 0 -35 -20v16h-30v-135h30v76q0 35 29 35q10 0 18 -4l9 28q-9 4 -21 4zM1348 75q0 -31 19.5 -51t52.5 -20q29 0 48 16l-14 24q-18 -13 -35 -12q-18 0 -29.5 12t-11.5 31t11.5 31t29.5 12
+q19 0 35 -12l14 24q-20 16 -48 16q-33 0 -52.5 -20t-19.5 -51zM1593 7h30v68v67h-30v-16q-15 20 -42 20q-29 0 -48.5 -20t-19.5 -51t19.5 -51t48.5 -20q28 0 42 20v-17zM1726 146q-23 0 -35 -20v16h-29v-135h29v76q0 35 29 35q10 0 18 -4l9 28q-8 4 -21 4zM1866 7h29v68v122
+h-29v-71q-15 20 -43 20t-47.5 -20.5t-19.5 -50.5t19.5 -50.5t47.5 -20.5q29 0 43 20v-17zM1944 27l-2 -1h-3q-2 -1 -4 -3q-3 -1 -3 -4q-1 -2 -1 -6q0 -3 1 -5q0 -2 3 -4q2 -2 4 -3t5 -1q4 0 6 1q0 1 2 2l2 1q1 1 3 4q1 2 1 5q0 4 -1 6q-1 1 -3 4q0 1 -2 2l-2 1q-1 0 -3 0.5
+t-3 0.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_467" unicode="&#xf1f2;" horiz-adv-x="2304" 
+d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42
+q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604
+v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569
+q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73
+t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
+    <glyph glyph-name="f1f3" unicode="&#xf1f3;" horiz-adv-x="2304" 
+d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z
+M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260
+l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279
+v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040
+q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168
+q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5
+t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21
+h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5
+t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" />
+    <glyph glyph-name="_469" unicode="&#xf1f4;" horiz-adv-x="2304" 
+d="M745 630q0 -37 -25.5 -61.5t-62.5 -24.5q-29 0 -46.5 16t-17.5 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM1530 779q0 -42 -22 -57t-66 -15l-32 -1l17 107q2 11 13 11h18q22 0 35 -2t25 -12.5t12 -30.5zM1881 630q0 -36 -25.5 -61t-61.5 -25q-29 0 -47 16
+t-18 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM513 801q0 59 -38.5 85.5t-100.5 26.5h-160q-19 0 -21 -19l-65 -408q-1 -6 3 -11t10 -5h76q20 0 22 19l18 110q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM822 489l41 261q1 6 -3 11t-10 5h-76
+q-14 0 -17 -33q-27 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q28 0 58 12t48 32q-4 -12 -4 -21q0 -16 13 -16h69q19 0 22 19zM1269 752q0 5 -4 9.5t-9 4.5h-77q-11 0 -18 -10l-106 -156l-44 150q-5 16 -22 16h-75q-5 0 -9 -4.5t-4 -9.5q0 -2 19.5 -59
+t42 -123t23.5 -70q-82 -112 -82 -120q0 -13 13 -13h77q11 0 18 10l255 368q2 2 2 7zM1649 801q0 59 -38.5 85.5t-100.5 26.5h-159q-20 0 -22 -19l-65 -408q-1 -6 3 -11t10 -5h82q12 0 16 13l18 116q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM1958 489
+l41 261q1 6 -3 11t-10 5h-76q-14 0 -17 -33q-26 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q29 0 59 12t47 32q0 -1 -2 -9t-2 -12q0 -16 13 -16h69q19 0 22 19zM2176 898v1q0 14 -13 14h-74q-11 0 -13 -11l-65 -416l-1 -2q0 -5 4 -9.5t10 -4.5h66
+q19 0 21 19zM392 764q-5 -35 -26 -46t-60 -11l-33 -1l17 107q2 11 13 11h19q40 0 58 -11.5t12 -48.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_470" unicode="&#xf1f5;" horiz-adv-x="2304" 
+d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109
+q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118
+q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151
+q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31
+q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_471" unicode="&#xf1f6;" horiz-adv-x="2048" 
+d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5
+l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5
+l418 363q10 8 23.5 7t21.5 -11z" />
+    <glyph glyph-name="_472" unicode="&#xf1f7;" horiz-adv-x="2048" 
+d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128
+q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161
+q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" />
+    <glyph glyph-name="_473" unicode="&#xf1f8;" horiz-adv-x="1408" 
+d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704
+q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167
+q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="_474" unicode="&#xf1f9;" 
+d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5
+t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5
+t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_475" unicode="&#xf1fa;" 
+d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53
+q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24
+t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61
+t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" />
+    <glyph glyph-name="_476" unicode="&#xf1fb;" horiz-adv-x="1792" 
+d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10
+t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" />
+    <glyph glyph-name="f1fc" unicode="&#xf1fc;" horiz-adv-x="1792" 
+d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5
+t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" />
+    <glyph glyph-name="_478" unicode="&#xf1fd;" horiz-adv-x="1792" 
+d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11q24 0 44 -7t31 -15t33 -27q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5
+t47 37.5q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-24 0 -44 7t-31 15t-33 27q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38
+t-58 27t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448
+h256v448h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5
+q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" />
+    <glyph glyph-name="_479" unicode="&#xf1fe;" horiz-adv-x="2048" 
+d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" />
+    <glyph glyph-name="_480" unicode="&#xf200;" horiz-adv-x="1792" 
+d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_481" unicode="&#xf201;" horiz-adv-x="2048" 
+d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9
+t9 -23z" />
+    <glyph glyph-name="_482" unicode="&#xf202;" horiz-adv-x="1792" 
+d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20
+q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50
+t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1
+q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" />
+    <glyph glyph-name="_483" unicode="&#xf203;" 
+d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73
+q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110
+q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_484" unicode="&#xf204;" horiz-adv-x="2048" 
+d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5
+t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5
+t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" />
+    <glyph glyph-name="_485" unicode="&#xf205;" horiz-adv-x="2048" 
+d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5
+t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
+    <glyph glyph-name="_486" unicode="&#xf206;" horiz-adv-x="2304" 
+d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94
+q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469
+q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400
+q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" />
+    <glyph glyph-name="_487" unicode="&#xf207;" 
+d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5
+h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
+t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" />
+    <glyph glyph-name="_488" unicode="&#xf208;" horiz-adv-x="2048" 
+d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327
+q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5
+q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" />
+    <glyph glyph-name="_489" unicode="&#xf209;" horiz-adv-x="1280" 
+d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q17 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119
+t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5
+t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14
+q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88
+q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5
+t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" />
+    <glyph glyph-name="_490" unicode="&#xf20a;" horiz-adv-x="2048" 
+d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206
+q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307
+t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14
+t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" />
+    <glyph glyph-name="_491" unicode="&#xf20b;" 
+d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5
+t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="_492" unicode="&#xf20c;" 
+d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55
+q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410
+q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" />
+    <glyph glyph-name="_493" unicode="&#xf20d;" 
+d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" />
+    <glyph glyph-name="_494" unicode="&#xf20e;" horiz-adv-x="2048" 
+d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335
+q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5
+q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360l15 -6l188 199v347l-187 194q-13 -8 -29 -10zM986 1438
+h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13zM552 226h402l64 66
+l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224l213 -225zM1023 946
+l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196l-48 -227l130 227h-82
+zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" />
+    <glyph glyph-name="f210" unicode="&#xf210;" 
+d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" />
+    <glyph glyph-name="_496" unicode="&#xf211;" 
+d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384
+q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" />
+    <glyph glyph-name="f212" unicode="&#xf212;" horiz-adv-x="2048" 
+d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021
+q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25
+q209 0 374 -102q172 107 374 102z" />
+    <glyph glyph-name="_498" unicode="&#xf213;" horiz-adv-x="2048" 
+d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101
+q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284
+q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" />
+    <glyph glyph-name="_499" unicode="&#xf214;" 
+d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34
+l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114
+v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z
+M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378
+v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51
+h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5
+t-43 -34t-16.5 -53.5z" />
+    <glyph glyph-name="_500" unicode="&#xf215;" horiz-adv-x="2048" 
+d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832
+q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" />
+    <glyph glyph-name="_501" unicode="&#xf216;" horiz-adv-x="2048" 
+d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126t-103.5 132.5t-108.5 126.5t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5
+t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113
+t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5
+q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" />
+    <glyph glyph-name="_502" unicode="&#xf217;" horiz-adv-x="1664" 
+d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
+t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920
+q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="_503" unicode="&#xf218;" horiz-adv-x="1664" 
+d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
+t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920
+q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="_504" unicode="&#xf219;" horiz-adv-x="2048" 
+d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20
+l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" />
+    <glyph glyph-name="_505" unicode="&#xf21a;" horiz-adv-x="2048" 
+d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83
+q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83
+q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314
+v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83
+q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" />
+    <glyph glyph-name="_506" unicode="&#xf21b;" 
+d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14
+t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5
+q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31
+t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" />
+    <glyph glyph-name="_507" unicode="&#xf21c;" horiz-adv-x="2304" 
+d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5
+t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105
+l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226
+t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" />
+    <glyph glyph-name="_508" unicode="&#xf21d;" 
+d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12
+q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384
+q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5
+t158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="_509" unicode="&#xf21e;" horiz-adv-x="1792" 
+d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221
+q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124
+t127 -344z" />
+    <glyph glyph-name="venus" unicode="&#xf221;" horiz-adv-x="1280" 
+d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292
+q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" />
+    <glyph glyph-name="_511" unicode="&#xf222;" 
+d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-382 -383q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5
+q203 0 359 -126l382 382h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_512" unicode="&#xf223;" horiz-adv-x="1280" 
+d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5
+t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
+t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_513" unicode="&#xf224;" 
+d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64
+q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
+t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_514" unicode="&#xf225;" horiz-adv-x="1792" 
+d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64
+q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9
+t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5
+t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_515" unicode="&#xf226;" horiz-adv-x="1792" 
+d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23
+t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391
+q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391
+q0 -226 -154 -391q103 -57 218 -57z" />
+    <glyph glyph-name="_516" unicode="&#xf227;" horiz-adv-x="1920" 
+d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230
+q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9
+t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128
+q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -28 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" />
+    <glyph glyph-name="_517" unicode="&#xf228;" horiz-adv-x="2048" 
+d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23
+t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9
+t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5
+t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" />
+    <glyph glyph-name="_518" unicode="&#xf229;" 
+d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-213 -214l140 -140q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-140 141l-78 -79q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5
+t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5q203 0 359 -126l78 78l-172 172q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l172 -172l213 213h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
+t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_519" unicode="&#xf22a;" horiz-adv-x="1280" 
+d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22
+t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5
+t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_520" unicode="&#xf22b;" horiz-adv-x="2048" 
+d="M1901 621q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-132q-24 -217 -187.5 -364.5t-384.5 -147.5q-167 0 -306 87t-212 236t-54 319q15 133 88 245.5
+t188 182t249 80.5q155 12 292 -52.5t224 -186t103 -271.5h132v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM576 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5
+t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_521" unicode="&#xf22c;" horiz-adv-x="1280" 
+d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5
+t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_522" unicode="&#xf22d;" horiz-adv-x="1280" 
+d="M1024 576q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1152 576q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123
+t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5z" />
+    <glyph glyph-name="_523" unicode="&#xf22e;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="_524" unicode="&#xf22f;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="_525" unicode="&#xf230;" 
+d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" />
+    <glyph glyph-name="_526" unicode="&#xf231;" horiz-adv-x="1280" 
+d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5
+l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5
+q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" />
+    <glyph glyph-name="_527" unicode="&#xf232;" 
+d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5
+t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233
+l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" />
+    <glyph glyph-name="_528" unicode="&#xf233;" horiz-adv-x="1792" 
+d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216
+q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" />
+    <glyph glyph-name="_529" unicode="&#xf234;" horiz-adv-x="2048" 
+d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5
+t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5
+t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" />
+    <glyph glyph-name="_530" unicode="&#xf235;" horiz-adv-x="2048" 
+d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136
+q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69
+t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" />
+    <glyph glyph-name="_531" unicode="&#xf236;" horiz-adv-x="2048" 
+d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704
+q-26 0 -45 -19t-19 -45v-384h1152z" />
+    <glyph glyph-name="_532" unicode="&#xf237;" 
+d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" />
+    <glyph glyph-name="_533" unicode="&#xf238;" 
+d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56
+t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" />
+    <glyph glyph-name="_534" unicode="&#xf239;" 
+d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47
+t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" />
+    <glyph glyph-name="_535" unicode="&#xf23a;" horiz-adv-x="1792" 
+d="M597 1115v-1173q0 -25 -12.5 -42.5t-36.5 -17.5q-17 0 -33 8l-465 233q-21 10 -35.5 33.5t-14.5 46.5v1140q0 20 10 34t29 14q14 0 44 -15l511 -256q3 -3 3 -5zM661 1014l534 -866l-534 266v600zM1792 996v-1054q0 -25 -14 -40.5t-38 -15.5t-47 13l-441 220zM1789 1116
+q0 -3 -256.5 -419.5t-300.5 -487.5l-390 634l324 527q17 28 52 28q14 0 26 -6l541 -270q4 -2 4 -6z" />
+    <glyph glyph-name="_536" unicode="&#xf23b;" 
+d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1408v-1536h-1536v1536h1536z" />
+    <glyph glyph-name="_537" unicode="&#xf23c;" horiz-adv-x="2296" 
+d="M478 -139q-8 -16 -27 -34.5t-37 -25.5q-25 -9 -51.5 3.5t-28.5 31.5q-1 22 40 55t68 38q23 4 34 -21.5t2 -46.5zM1819 -139q7 -16 26 -34.5t38 -25.5q25 -9 51.5 3.5t27.5 31.5q2 22 -39.5 55t-68.5 38q-22 4 -33 -21.5t-2 -46.5zM1867 -30q13 -27 56.5 -59.5t77.5 -41.5
+q45 -13 82 4.5t37 50.5q0 46 -67.5 100.5t-115.5 59.5q-40 5 -63.5 -37.5t-6.5 -76.5zM428 -30q-13 -27 -56 -59.5t-77 -41.5q-45 -13 -82 4.5t-37 50.5q0 46 67.5 100.5t115.5 59.5q40 5 63 -37.5t6 -76.5zM1158 1094h1q-41 0 -76 -15q27 -8 44 -30.5t17 -49.5
+q0 -35 -27 -60t-65 -25q-52 0 -80 43q-5 -23 -5 -42q0 -74 56 -126.5t135 -52.5q80 0 136 52.5t56 126.5t-56 126.5t-136 52.5zM1462 1312q-99 109 -220.5 131.5t-245.5 -44.5q27 60 82.5 96.5t118 39.5t121.5 -17t99.5 -74.5t44.5 -131.5zM2212 73q8 -11 -11 -42
+q7 -23 7 -40q1 -56 -44.5 -112.5t-109.5 -91.5t-118 -37q-48 -2 -92 21.5t-66 65.5q-687 -25 -1259 0q-23 -41 -66.5 -65t-92.5 -22q-86 3 -179.5 80.5t-92.5 160.5q2 22 7 40q-19 31 -11 42q6 10 31 1q14 22 41 51q-7 29 2 38q11 10 39 -4q29 20 59 34q0 29 13 37
+q23 12 51 -16q35 5 61 -2q18 -4 38 -19v73q-11 0 -18 2q-53 10 -97 44.5t-55 87.5q-9 38 0 81q15 62 93 95q2 17 19 35.5t36 23.5t33 -7.5t19 -30.5h13q46 -5 60 -23q3 -3 5 -7q10 1 30.5 3.5t30.5 3.5q-15 11 -30 17q-23 40 -91 43q0 6 1 10q-62 2 -118.5 18.5t-84.5 47.5
+q-32 36 -42.5 92t-2.5 112q16 126 90 179q23 16 52 4.5t32 -40.5q0 -1 1.5 -14t2.5 -21t3 -20t5.5 -19t8.5 -10q27 -14 76 -12q48 46 98 74q-40 4 -162 -14l47 46q61 58 163 111q145 73 282 86q-20 8 -41 15.5t-47 14t-42.5 10.5t-47.5 11t-43 10q595 126 904 -139
+q98 -84 158 -222q85 -10 121 9h1q5 3 8.5 10t5.5 19t3 19.5t3 21.5l1 14q3 28 32 40t52 -5q73 -52 91 -178q7 -57 -3.5 -113t-42.5 -91q-28 -32 -83.5 -48.5t-115.5 -18.5v-10q-71 -2 -95 -43q-14 -5 -31 -17q11 -1 32 -3.5t30 -3.5q1 5 5 8q16 18 60 23h13q5 18 19 30t33 8
+t36 -23t19 -36q79 -32 93 -95q9 -40 1 -81q-12 -53 -56 -88t-97 -44q-10 -2 -17 -2q0 -49 -1 -73q20 15 38 19q26 7 61 2q28 28 51 16q14 -9 14 -37q33 -16 59 -34q27 13 38 4q10 -10 2 -38q28 -30 41 -51q23 8 31 -1zM1937 1025q0 -29 -9 -54q82 -32 112 -132
+q4 37 -9.5 98.5t-41.5 90.5q-20 19 -36 17t-16 -20zM1859 925q35 -42 47.5 -108.5t-0.5 -124.5q67 13 97 45q13 14 18 28q-3 64 -31 114.5t-79 66.5q-15 -15 -52 -21zM1822 921q-30 0 -44 1q42 -115 53 -239q21 0 43 3q16 68 1 135t-53 100zM258 839q30 100 112 132
+q-9 25 -9 54q0 18 -16.5 20t-35.5 -17q-28 -29 -41.5 -90.5t-9.5 -98.5zM294 737q29 -31 97 -45q-13 58 -0.5 124.5t47.5 108.5v0q-37 6 -52 21q-51 -16 -78.5 -66t-31.5 -115q9 -17 18 -28zM471 683q14 124 73 235q-19 -4 -55 -18l-45 -19v1q-46 -89 -20 -196q25 -3 47 -3z
+M1434 644q8 -38 16.5 -108.5t11.5 -89.5q3 -18 9.5 -21.5t23.5 4.5q40 20 62 85.5t23 125.5q-24 2 -146 4zM1152 1285q-116 0 -199 -82.5t-83 -198.5q0 -117 83 -199.5t199 -82.5t199 82.5t83 199.5q0 116 -83 198.5t-199 82.5zM1380 646q-105 2 -211 0v1q-1 -27 2.5 -86
+t13.5 -66q29 -14 93.5 -14.5t95.5 10.5q9 3 11 39t-0.5 69.5t-4.5 46.5zM1112 447q8 4 9.5 48t-0.5 88t-4 63v1q-212 -3 -214 -3q-4 -20 -7 -62t0 -83t14 -46q34 -15 101 -16t101 10zM718 636q-16 -59 4.5 -118.5t77.5 -84.5q15 -8 24 -5t12 21q3 16 8 90t10 103
+q-69 -2 -136 -6zM591 510q3 -23 -34 -36q132 -141 271.5 -240t305.5 -154q172 49 310.5 146t293.5 250q-33 13 -30 34q0 2 0.5 3.5t1.5 3t1 2.5v1v-1q-17 2 -50 5.5t-48 4.5q-26 -90 -82 -132q-51 -38 -82 1q-5 6 -9 14q-7 13 -17 62q-2 -5 -5 -9t-7.5 -7t-8 -5.5t-9.5 -4
+l-10 -2.5t-12 -2l-12 -1.5t-13.5 -1t-13.5 -0.5q-106 -9 -163 11q-4 -17 -10 -26.5t-21 -15t-23 -7t-36 -3.5q-6 -1 -9 -1q-179 -17 -203 40q-2 -63 -56 -54q-47 8 -91 54q-12 13 -20 26q-17 29 -26 65q-58 -6 -87 -10q1 -2 4 -10zM507 -118q3 14 3 30q-17 71 -51 130
+t-73 70q-41 12 -101.5 -14.5t-104.5 -80t-39 -107.5q35 -53 100 -93t119 -42q51 -2 94 28t53 79zM510 53q23 -63 27 -119q195 113 392 174q-98 52 -180.5 120t-179.5 165q-6 -4 -29 -13q0 -1 -1 -4t-1 -5q31 -18 22 -37q-12 -23 -56 -34q-10 -13 -29 -24h-1q-2 -83 1 -150
+q19 -34 35 -73zM579 -113q532 -21 1145 0q-254 147 -428 196q-76 -35 -156 -57q-8 -3 -16 0q-65 21 -129 49q-208 -60 -416 -188h-1v-1q1 0 1 1zM1763 -67q4 54 28 120q14 38 33 71l-1 -1q3 77 3 153q-15 8 -30 25q-42 9 -56 33q-9 20 22 38q-2 4 -2 9q-16 4 -28 12
+q-204 -190 -383 -284q198 -59 414 -176zM2155 -90q5 54 -39 107.5t-104 80t-102 14.5q-38 -11 -72.5 -70.5t-51.5 -129.5q0 -16 3 -30q10 -49 53 -79t94 -28q54 2 119 42t100 93z" />
+    <glyph glyph-name="_538" unicode="&#xf23d;" horiz-adv-x="2304" 
+d="M1524 -25q0 -68 -48 -116t-116 -48t-116.5 48t-48.5 116t48.5 116.5t116.5 48.5t116 -48.5t48 -116.5zM775 -25q0 -68 -48.5 -116t-116.5 -48t-116 48t-48 116t48 116.5t116 48.5t116.5 -48.5t48.5 -116.5zM0 1469q57 -60 110.5 -104.5t121 -82t136 -63t166 -45.5
+t200 -31.5t250 -18.5t304 -9.5t372.5 -2.5q139 0 244.5 -5t181 -16.5t124 -27.5t71 -39.5t24 -51.5t-19.5 -64t-56.5 -76.5t-89.5 -91t-116 -104.5t-139 -119q-185 -157 -286 -247q29 51 76.5 109t94 105.5t94.5 98.5t83 91.5t54 80.5t13 70t-45.5 55.5t-116.5 41t-204 23.5
+t-304 5q-168 -2 -314 6t-256 23t-204.5 41t-159.5 51.5t-122.5 62.5t-91.5 66.5t-68 71.5t-50.5 69.5t-40 68t-36.5 59.5z" />
+    <glyph glyph-name="_539" unicode="&#xf23e;" horiz-adv-x="1792" 
+d="M896 1472q-169 0 -323 -66t-265.5 -177.5t-177.5 -265.5t-66 -323t66 -323t177.5 -265.5t265.5 -177.5t323 -66t323 66t265.5 177.5t177.5 265.5t66 323t-66 323t-177.5 265.5t-265.5 177.5t-323 66zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348
+t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM496 704q16 0 16 -16v-480q0 -16 -16 -16h-32q-16 0 -16 16v480q0 16 16 16h32zM896 640q53 0 90.5 -37.5t37.5 -90.5q0 -35 -17.5 -64t-46.5 -46v-114q0 -14 -9 -23
+t-23 -9h-64q-14 0 -23 9t-9 23v114q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5zM896 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM544 928v-96
+q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 93 65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5v-96q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 146 -103 249t-249 103t-249 -103t-103 -249zM1408 192v512q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-512
+q0 -26 19 -45t45 -19h896q26 0 45 19t19 45z" />
+    <glyph glyph-name="_540" unicode="&#xf240;" horiz-adv-x="2304" 
+d="M1920 1024v-768h-1664v768h1664zM2048 448h128v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288zM2304 832v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113
+v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160q53 0 90.5 -37.5t37.5 -90.5z" />
+    <glyph glyph-name="_541" unicode="&#xf241;" horiz-adv-x="2304" 
+d="M256 256v768h1280v-768h-1280zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
+h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
+    <glyph glyph-name="_542" unicode="&#xf242;" horiz-adv-x="2304" 
+d="M256 256v768h896v-768h-896zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
+h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
+    <glyph glyph-name="_543" unicode="&#xf243;" horiz-adv-x="2304" 
+d="M256 256v768h512v-768h-512zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
+h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
+    <glyph glyph-name="_544" unicode="&#xf244;" horiz-adv-x="2304" 
+d="M2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23
+v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
+    <glyph glyph-name="_545" unicode="&#xf245;" horiz-adv-x="1280" 
+d="M1133 493q31 -30 14 -69q-17 -40 -59 -40h-382l201 -476q10 -25 0 -49t-34 -35l-177 -75q-25 -10 -49 0t-35 34l-191 452l-312 -312q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v1504q0 42 40 59q12 5 24 5q27 0 45 -19z" />
+    <glyph glyph-name="_546" unicode="&#xf246;" horiz-adv-x="1024" 
+d="M832 1408q-320 0 -320 -224v-416h128v-128h-128v-544q0 -224 320 -224h64v-128h-64q-272 0 -384 146q-112 -146 -384 -146h-64v128h64q320 0 320 224v544h-128v128h128v416q0 224 -320 224h-64v128h64q272 0 384 -146q112 146 384 146h64v-128h-64z" />
+    <glyph glyph-name="_547" unicode="&#xf247;" horiz-adv-x="2048" 
+d="M2048 1152h-128v-1024h128v-384h-384v128h-1280v-128h-384v384h128v1024h-128v384h384v-128h1280v128h384v-384zM1792 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 -128v128h-128v-128h128zM1664 0v128h128v1024h-128v128h-1280v-128h-128v-1024h128v-128
+h1280zM1920 -128v128h-128v-128h128zM1280 896h384v-768h-896v256h-384v768h896v-256zM512 512h640v512h-640v-512zM1536 256v512h-256v-384h-384v-128h640z" />
+    <glyph glyph-name="_548" unicode="&#xf248;" horiz-adv-x="2304" 
+d="M2304 768h-128v-640h128v-384h-384v128h-896v-128h-384v384h128v128h-384v-128h-384v384h128v640h-128v384h384v-128h896v128h384v-384h-128v-128h384v128h384v-384zM2048 1024v-128h128v128h-128zM1408 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 256
+v128h-128v-128h128zM1536 384h-128v-128h128v128zM384 384h896v128h128v640h-128v128h-896v-128h-128v-640h128v-128zM896 -128v128h-128v-128h128zM2176 -128v128h-128v-128h128zM2048 128v640h-128v128h-384v-384h128v-384h-384v128h-384v-128h128v-128h896v128h128z" />
+    <glyph glyph-name="_549" unicode="&#xf249;" 
+d="M1024 288v-416h-928q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68v-928h-416q-40 0 -68 -28t-28 -68zM1152 256h381q-15 -82 -65 -132l-184 -184q-50 -50 -132 -65v381z" />
+    <glyph glyph-name="_550" unicode="&#xf24a;" 
+d="M1400 256h-248v-248q29 10 41 22l185 185q12 12 22 41zM1120 384h288v896h-1280v-1280h896v288q0 40 28 68t68 28zM1536 1312v-1024q0 -40 -20 -88t-48 -76l-184 -184q-28 -28 -76 -48t-88 -20h-1024q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68
+z" />
+    <glyph glyph-name="_551" unicode="&#xf24b;" horiz-adv-x="2304" 
+d="M1951 538q0 -26 -15.5 -44.5t-38.5 -23.5q-8 -2 -18 -2h-153v140h153q10 0 18 -2q23 -5 38.5 -23.5t15.5 -44.5zM1933 751q0 -25 -15 -42t-38 -21q-3 -1 -15 -1h-139v129h139q3 0 8.5 -0.5t6.5 -0.5q23 -4 38 -21.5t15 -42.5zM728 587v308h-228v-308q0 -58 -38 -94.5
+t-105 -36.5q-108 0 -229 59v-112q53 -15 121 -23t109 -9l42 -1q328 0 328 217zM1442 403v113q-99 -52 -200 -59q-108 -8 -169 41t-61 142t61 142t169 41q101 -7 200 -58v112q-48 12 -100 19.5t-80 9.5l-28 2q-127 6 -218.5 -14t-140.5 -60t-71 -88t-22 -106t22 -106t71 -88
+t140.5 -60t218.5 -14q101 4 208 31zM2176 518q0 54 -43 88.5t-109 39.5v3q57 8 89 41.5t32 79.5q0 55 -41 88t-107 36q-3 0 -12 0.5t-14 0.5h-455v-510h491q74 0 121.5 36.5t47.5 96.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90
+t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_552" unicode="&#xf24c;" horiz-adv-x="2304" 
+d="M858 295v693q-106 -41 -172 -135.5t-66 -211.5t66 -211.5t172 -134.5zM1362 641q0 117 -66 211.5t-172 135.5v-694q106 41 172 135.5t66 211.5zM1577 641q0 -159 -78.5 -294t-213.5 -213.5t-294 -78.5q-119 0 -227.5 46.5t-187 125t-125 187t-46.5 227.5q0 159 78.5 294
+t213.5 213.5t294 78.5t294 -78.5t213.5 -213.5t78.5 -294zM1960 634q0 139 -55.5 261.5t-147.5 205.5t-213.5 131t-252.5 48h-301q-176 0 -323.5 -81t-235 -230t-87.5 -335q0 -171 87 -317.5t236 -231.5t323 -85h301q129 0 251.5 50.5t214.5 135t147.5 202.5t55.5 246z
+M2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_553" unicode="&#xf24d;" horiz-adv-x="1792" 
+d="M1664 -96v1088q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 992v-1088q0 -66 -47 -113t-113 -47h-1088q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113
+zM1408 1376v-160h-128v160q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h160v-128h-160q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="_554" unicode="&#xf24e;" horiz-adv-x="2304" 
+d="M1728 1088l-384 -704h768zM448 1088l-384 -704h768zM1269 1280q-14 -40 -45.5 -71.5t-71.5 -45.5v-1291h608q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1344q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h608v1291q-40 14 -71.5 45.5t-45.5 71.5h-491q-14 0 -23 9t-9 23v64
+q0 14 9 23t23 9h491q21 57 70 92.5t111 35.5t111 -35.5t70 -92.5h491q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-491zM1088 1264q33 0 56.5 23.5t23.5 56.5t-23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5zM2176 384q0 -73 -46.5 -131t-117.5 -91
+t-144.5 -49.5t-139.5 -16.5t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81zM896 384q0 -73 -46.5 -131t-117.5 -91t-144.5 -49.5t-139.5 -16.5
+t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81z" />
+    <glyph glyph-name="_555" unicode="&#xf250;" 
+d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
+t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-77 -29 -149 -92.5
+t-129.5 -152.5t-92.5 -210t-35 -253h1024q0 132 -35 253t-92.5 210t-129.5 152.5t-149 92.5q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
+    <glyph glyph-name="_556" unicode="&#xf251;" 
+d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
+t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -66 9 -128h1006q9 61 9 128zM1280 -128q0 130 -34 249.5t-90.5 208t-126.5 152t-146 94.5h-230q-76 -31 -146 -94.5t-126.5 -152t-90.5 -208t-34 -249.5h1024z" />
+    <glyph glyph-name="_557" unicode="&#xf252;" 
+d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
+t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -206 85 -384h854q85 178 85 384zM1223 192q-54 141 -145.5 241.5t-194.5 142.5h-230q-103 -42 -194.5 -142.5t-145.5 -241.5h910z" />
+    <glyph glyph-name="_558" unicode="&#xf253;" 
+d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
+t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-137 -51 -244 -196
+h700q-107 145 -244 196q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
+    <glyph glyph-name="_559" unicode="&#xf254;" 
+d="M1504 -64q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472zM130 0q3 55 16 107t30 95t46 87t53.5 76t64.5 69.5t66 60t70.5 55t66.5 47.5t65 43q-43 28 -65 43t-66.5 47.5t-70.5 55t-66 60t-64.5 69.5t-53.5 76t-46 87
+t-30 95t-16 107h1276q-3 -55 -16 -107t-30 -95t-46 -87t-53.5 -76t-64.5 -69.5t-66 -60t-70.5 -55t-66.5 -47.5t-65 -43q43 -28 65 -43t66.5 -47.5t70.5 -55t66 -60t64.5 -69.5t53.5 -76t46 -87t30 -95t16 -107h-1276zM1504 1536q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9
+h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472z" />
+    <glyph glyph-name="_560" unicode="&#xf255;" 
+d="M768 1152q-53 0 -90.5 -37.5t-37.5 -90.5v-128h-32v93q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-429l-32 30v172q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-224q0 -47 35 -82l310 -296q39 -39 39 -102q0 -26 19 -45t45 -19h640q26 0 45 19t19 45v25
+q0 41 10 77l108 436q10 36 10 77v246q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-32h-32v125q0 40 -25 72.5t-64 40.5q-14 2 -23 2q-46 0 -79 -33t-33 -79v-128h-32v122q0 51 -32.5 89.5t-82.5 43.5q-5 1 -13 1zM768 1280q84 0 149 -50q57 34 123 34q59 0 111 -27
+t86 -76q27 7 59 7q100 0 170 -71.5t70 -171.5v-246q0 -51 -13 -108l-109 -436q-6 -24 -6 -71q0 -80 -56 -136t-136 -56h-640q-84 0 -138 58.5t-54 142.5l-308 296q-76 73 -76 175v224q0 99 70.5 169.5t169.5 70.5q11 0 16 -1q6 95 75.5 160t164.5 65q52 0 98 -21
+q72 69 174 69z" />
+    <glyph glyph-name="_561" unicode="&#xf256;" horiz-adv-x="1792" 
+d="M880 1408q-46 0 -79 -33t-33 -79v-656h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528v-256l-154 205q-38 51 -102 51q-53 0 -90.5 -37.5t-37.5 -90.5q0 -43 26 -77l384 -512q38 -51 102 -51h688q34 0 61 22t34 56l76 405q5 32 5 59v498q0 46 -33 79t-79 33t-79 -33
+t-33 -79v-272h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528h-32v656q0 46 -33 79t-79 33zM880 1536q68 0 125.5 -35.5t88.5 -96.5q19 4 42 4q99 0 169.5 -70.5t70.5 -169.5v-17q105 6 180.5 -64t75.5 -175v-498q0 -40 -8 -83l-76 -404q-14 -79 -76.5 -131t-143.5 -52
+h-688q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 106 75 181t181 75q78 0 128 -34v434q0 99 70.5 169.5t169.5 70.5q23 0 42 -4q31 61 88.5 96.5t125.5 35.5z" />
+    <glyph glyph-name="_562" unicode="&#xf257;" horiz-adv-x="1792" 
+d="M1073 -128h-177q-163 0 -226 141q-23 49 -23 102v5q-62 30 -98.5 88.5t-36.5 127.5q0 38 5 48h-261q-106 0 -181 75t-75 181t75 181t181 75h113l-44 17q-74 28 -119.5 93.5t-45.5 145.5q0 106 75 181t181 75q46 0 91 -17l628 -239h401q106 0 181 -75t75 -181v-668
+q0 -88 -54 -157.5t-140 -90.5l-339 -85q-92 -23 -186 -23zM1024 583l-155 -71l-163 -74q-30 -14 -48 -41.5t-18 -60.5q0 -46 33 -79t79 -33q26 0 46 10l338 154q-49 10 -80.5 50t-31.5 90v55zM1344 272q0 46 -33 79t-79 33q-26 0 -46 -10l-290 -132q-28 -13 -37 -17
+t-30.5 -17t-29.5 -23.5t-16 -29t-8 -40.5q0 -50 31.5 -82t81.5 -32q20 0 38 9l352 160q30 14 48 41.5t18 60.5zM1112 1024l-650 248q-24 8 -46 8q-53 0 -90.5 -37.5t-37.5 -90.5q0 -40 22.5 -73t59.5 -47l526 -200v-64h-640q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5
+t90.5 -37.5h535l233 106v198q0 63 46 106l111 102h-69zM1073 0q82 0 155 19l339 85q43 11 70 45.5t27 78.5v668q0 53 -37.5 90.5t-90.5 37.5h-308l-136 -126q-36 -33 -36 -82v-296q0 -46 33 -77t79 -31t79 35t33 81v208h32v-208q0 -70 -57 -114q52 -8 86.5 -48.5t34.5 -93.5
+q0 -42 -23 -78t-61 -53l-310 -141h91z" />
+    <glyph glyph-name="_563" unicode="&#xf258;" horiz-adv-x="2048" 
+d="M1151 1536q61 0 116 -28t91 -77l572 -781q118 -159 118 -359v-355q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v177l-286 143h-546q-80 0 -136 56t-56 136v32q0 119 84.5 203.5t203.5 84.5h420l42 128h-686q-100 0 -173.5 67.5t-81.5 166.5q-65 79 -65 182v32
+q0 80 56 136t136 56h959zM1920 -64v355q0 157 -93 284l-573 781q-39 52 -103 52h-959q-26 0 -45 -19t-19 -45q0 -32 1.5 -49.5t9.5 -40.5t25 -43q10 31 35.5 50t56.5 19h832v-32h-832q-26 0 -45 -19t-19 -45q0 -44 3 -58q8 -44 44 -73t81 -29h640h91q40 0 68 -28t28 -68
+q0 -15 -5 -30l-64 -192q-10 -29 -35 -47.5t-56 -18.5h-443q-66 0 -113 -47t-47 -113v-32q0 -26 19 -45t45 -19h561q16 0 29 -7l317 -158q24 -13 38.5 -36t14.5 -50v-197q0 -26 19 -45t45 -19h384q26 0 45 19t19 45z" />
+    <glyph glyph-name="_564" unicode="&#xf259;" horiz-adv-x="2048" 
+d="M459 -256q-77 0 -137.5 47.5t-79.5 122.5l-101 401q-13 57 -13 108q0 45 -5 67l-116 477q-7 27 -7 57q0 93 62 161t155 78q17 85 82.5 139t152.5 54q83 0 148 -51.5t85 -132.5l83 -348l103 428q20 81 85 132.5t148 51.5q89 0 155.5 -57.5t80.5 -144.5q92 -10 152 -79
+t60 -162q0 -24 -7 -59l-123 -512q10 7 37.5 28.5t38.5 29.5t35 23t41 20.5t41.5 11t49.5 5.5q105 0 180 -74t75 -179q0 -62 -28.5 -118t-78.5 -94l-507 -380q-68 -51 -153 -51h-694zM1104 1408q-38 0 -68.5 -24t-39.5 -62l-164 -682h-127l-145 602q-9 38 -39.5 62t-68.5 24
+q-48 0 -80 -33t-32 -80q0 -15 3 -28l132 -547h-26l-99 408q-9 37 -40 62.5t-69 25.5q-47 0 -80 -33t-33 -79q0 -14 3 -26l116 -478q7 -28 9 -86t10 -88l100 -401q8 -32 34 -52.5t59 -20.5h694q42 0 76 26l507 379q56 43 56 110q0 52 -37.5 88.5t-89.5 36.5q-43 0 -77 -26
+l-307 -230v227q0 4 32 138t68 282t39 161q4 18 4 29q0 47 -32 81t-79 34q-39 0 -69.5 -24t-39.5 -62l-116 -482h-26l150 624q3 14 3 28q0 48 -31.5 82t-79.5 34z" />
+    <glyph glyph-name="_565" unicode="&#xf25a;" horiz-adv-x="1792" 
+d="M640 1408q-53 0 -90.5 -37.5t-37.5 -90.5v-512v-384l-151 202q-41 54 -107 54q-52 0 -89 -38t-37 -90q0 -43 26 -77l384 -512q38 -51 102 -51h718q22 0 39.5 13.5t22.5 34.5l92 368q24 96 24 194v217q0 41 -28 71t-68 30t-68 -28t-28 -68h-32v61q0 48 -32 81.5t-80 33.5
+q-46 0 -79 -33t-33 -79v-64h-32v90q0 55 -37 94.5t-91 39.5q-53 0 -90.5 -37.5t-37.5 -90.5v-96h-32v570q0 55 -37 94.5t-91 39.5zM640 1536q107 0 181.5 -77.5t74.5 -184.5v-220q22 2 32 2q99 0 173 -69q47 21 99 21q113 0 184 -87q27 7 56 7q94 0 159 -67.5t65 -161.5
+v-217q0 -116 -28 -225l-92 -368q-16 -64 -68 -104.5t-118 -40.5h-718q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 105 74.5 180.5t179.5 75.5q71 0 130 -35v547q0 106 75 181t181 75zM768 128v384h-32v-384h32zM1024 128v384h-32v-384h32zM1280 128v384h-32
+v-384h32z" />
+    <glyph glyph-name="_566" unicode="&#xf25b;" 
+d="M1288 889q60 0 107 -23q141 -63 141 -226v-177q0 -94 -23 -186l-85 -339q-21 -86 -90.5 -140t-157.5 -54h-668q-106 0 -181 75t-75 181v401l-239 628q-17 45 -17 91q0 106 75 181t181 75q80 0 145.5 -45.5t93.5 -119.5l17 -44v113q0 106 75 181t181 75t181 -75t75 -181
+v-261q27 5 48 5q69 0 127.5 -36.5t88.5 -98.5zM1072 896q-33 0 -60.5 -18t-41.5 -48l-74 -163l-71 -155h55q50 0 90 -31.5t50 -80.5l154 338q10 20 10 46q0 46 -33 79t-79 33zM1293 761q-22 0 -40.5 -8t-29 -16t-23.5 -29.5t-17 -30.5t-17 -37l-132 -290q-10 -20 -10 -46
+q0 -46 33 -79t79 -33q33 0 60.5 18t41.5 48l160 352q9 18 9 38q0 50 -32 81.5t-82 31.5zM128 1120q0 -22 8 -46l248 -650v-69l102 111q43 46 106 46h198l106 233v535q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5v-640h-64l-200 526q-14 37 -47 59.5t-73 22.5
+q-53 0 -90.5 -37.5t-37.5 -90.5zM1180 -128q44 0 78.5 27t45.5 70l85 339q19 73 19 155v91l-141 -310q-17 -38 -53 -61t-78 -23q-53 0 -93.5 34.5t-48.5 86.5q-44 -57 -114 -57h-208v32h208q46 0 81 33t35 79t-31 79t-77 33h-296q-49 0 -82 -36l-126 -136v-308
+q0 -53 37.5 -90.5t90.5 -37.5h668z" />
+    <glyph glyph-name="_567" unicode="&#xf25c;" horiz-adv-x="1973" 
+d="M857 992v-117q0 -13 -9.5 -22t-22.5 -9h-298v-812q0 -13 -9 -22.5t-22 -9.5h-135q-13 0 -22.5 9t-9.5 23v812h-297q-13 0 -22.5 9t-9.5 22v117q0 14 9 23t23 9h793q13 0 22.5 -9.5t9.5 -22.5zM1895 995l77 -961q1 -13 -8 -24q-10 -10 -23 -10h-134q-12 0 -21 8.5
+t-10 20.5l-46 588l-189 -425q-8 -19 -29 -19h-120q-20 0 -29 19l-188 427l-45 -590q-1 -12 -10 -20.5t-21 -8.5h-135q-13 0 -23 10q-9 10 -9 24l78 961q1 12 10 20.5t21 8.5h142q20 0 29 -19l220 -520q10 -24 20 -51q3 7 9.5 24.5t10.5 26.5l221 520q9 19 29 19h141
+q13 0 22 -8.5t10 -20.5z" />
+    <glyph glyph-name="_568" unicode="&#xf25d;" horiz-adv-x="1792" 
+d="M1042 833q0 88 -60 121q-33 18 -117 18h-123v-281h162q66 0 102 37t36 105zM1094 548l205 -373q8 -17 -1 -31q-8 -16 -27 -16h-152q-20 0 -28 17l-194 365h-155v-350q0 -14 -9 -23t-23 -9h-134q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h294q128 0 190 -24q85 -31 134 -109
+t49 -180q0 -92 -42.5 -165.5t-115.5 -109.5q6 -10 9 -16zM896 1376q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM1792 640
+q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_569" unicode="&#xf25e;" horiz-adv-x="1792" 
+d="M605 303q153 0 257 104q14 18 3 36l-45 82q-6 13 -24 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13.5t-23.5 -14.5t-28.5 -13t-33.5 -9.5t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78
+q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-148 0 -246 -96.5t-98 -240.5q0 -146 97 -241.5t247 -95.5zM1235 303q153 0 257 104q14 18 4 36l-45 82q-8 14 -25 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13.5t-23.5 -14.5t-28.5 -13t-33.5 -9.5
+t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-147 0 -245.5 -96.5t-98.5 -240.5q0 -146 97 -241.5t247 -95.5zM896 1376
+q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191
+t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71z" />
+    <glyph glyph-name="f260" unicode="&#xf260;" horiz-adv-x="2048" 
+d="M736 736l384 -384l-384 -384l-672 672l672 672l168 -168l-96 -96l-72 72l-480 -480l480 -480l193 193l-289 287zM1312 1312l672 -672l-672 -672l-168 168l96 96l72 -72l480 480l-480 480l-193 -193l289 -287l-96 -96l-384 384z" />
+    <glyph glyph-name="f261" unicode="&#xf261;" horiz-adv-x="1792" 
+d="M717 182l271 271l-279 279l-88 -88l192 -191l-96 -96l-279 279l279 279l40 -40l87 87l-127 128l-454 -454zM1075 190l454 454l-454 454l-271 -271l279 -279l88 88l-192 191l96 96l279 -279l-279 -279l-40 40l-87 -88zM1792 640q0 -182 -71 -348t-191 -286t-286 -191
+t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_572" unicode="&#xf262;" horiz-adv-x="2304" 
+d="M651 539q0 -39 -27.5 -66.5t-65.5 -27.5q-39 0 -66.5 27.5t-27.5 66.5q0 38 27.5 65.5t66.5 27.5q38 0 65.5 -27.5t27.5 -65.5zM1805 540q0 -39 -27.5 -66.5t-66.5 -27.5t-66.5 27.5t-27.5 66.5t27.5 66t66.5 27t66.5 -27t27.5 -66zM765 539q0 79 -56.5 136t-136.5 57
+t-136.5 -56.5t-56.5 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM1918 540q0 80 -56.5 136.5t-136.5 56.5q-79 0 -136 -56.5t-57 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM850 539q0 -116 -81.5 -197.5t-196.5 -81.5q-116 0 -197.5 82t-81.5 197
+t82 196.5t197 81.5t196.5 -81.5t81.5 -196.5zM2004 540q0 -115 -81.5 -196.5t-197.5 -81.5q-115 0 -196.5 81.5t-81.5 196.5t81.5 196.5t196.5 81.5q116 0 197.5 -81.5t81.5 -196.5zM1040 537q0 191 -135.5 326.5t-326.5 135.5q-125 0 -231 -62t-168 -168.5t-62 -231.5
+t62 -231.5t168 -168.5t231 -62q191 0 326.5 135.5t135.5 326.5zM1708 1110q-254 111 -556 111q-319 0 -573 -110q117 0 223 -45.5t182.5 -122.5t122 -183t45.5 -223q0 115 43.5 219.5t118 180.5t177.5 123t217 50zM2187 537q0 191 -135 326.5t-326 135.5t-326.5 -135.5
+t-135.5 -326.5t135.5 -326.5t326.5 -135.5t326 135.5t135 326.5zM1921 1103h383q-44 -51 -75 -114.5t-40 -114.5q110 -151 110 -337q0 -156 -77 -288t-209 -208.5t-287 -76.5q-133 0 -249 56t-196 155q-47 -56 -129 -179q-11 22 -53.5 82.5t-74.5 97.5
+q-80 -99 -196.5 -155.5t-249.5 -56.5q-155 0 -287 76.5t-209 208.5t-77 288q0 186 110 337q-9 51 -40 114.5t-75 114.5h365q149 100 355 156.5t432 56.5q224 0 421 -56t348 -157z" />
+    <glyph glyph-name="f263" unicode="&#xf263;" horiz-adv-x="1280" 
+d="M640 629q-188 0 -321 133t-133 320q0 188 133 321t321 133t321 -133t133 -321q0 -187 -133 -320t-321 -133zM640 1306q-92 0 -157.5 -65.5t-65.5 -158.5q0 -92 65.5 -157.5t157.5 -65.5t157.5 65.5t65.5 157.5q0 93 -65.5 158.5t-157.5 65.5zM1163 574q13 -27 15 -49.5
+t-4.5 -40.5t-26.5 -38.5t-42.5 -37t-61.5 -41.5q-115 -73 -315 -94l73 -72l267 -267q30 -31 30 -74t-30 -73l-12 -13q-31 -30 -74 -30t-74 30q-67 68 -267 268l-267 -268q-31 -30 -74 -30t-73 30l-12 13q-31 30 -31 73t31 74l267 267l72 72q-203 21 -317 94
+q-39 25 -61.5 41.5t-42.5 37t-26.5 38.5t-4.5 40.5t15 49.5q10 20 28 35t42 22t56 -2t65 -35q5 -4 15 -11t43 -24.5t69 -30.5t92 -24t113 -11q91 0 174 25.5t120 50.5l38 25q33 26 65 35t56 2t42 -22t28 -35z" />
+    <glyph glyph-name="_574" unicode="&#xf264;" 
+d="M927 956q0 -66 -46.5 -112.5t-112.5 -46.5t-112.5 46.5t-46.5 112.5t46.5 112.5t112.5 46.5t112.5 -46.5t46.5 -112.5zM1141 593q-10 20 -28 32t-47.5 9.5t-60.5 -27.5q-10 -8 -29 -20t-81 -32t-127 -20t-124 18t-86 36l-27 18q-31 25 -60.5 27.5t-47.5 -9.5t-28 -32
+q-22 -45 -2 -74.5t87 -73.5q83 -53 226 -67l-51 -52q-142 -142 -191 -190q-22 -22 -22 -52.5t22 -52.5l9 -9q22 -22 52.5 -22t52.5 22l191 191q114 -115 191 -191q22 -22 52.5 -22t52.5 22l9 9q22 22 22 52.5t-22 52.5l-191 190l-52 52q141 14 225 67q67 44 87 73.5t-2 74.5
+zM1092 956q0 134 -95 229t-229 95t-229 -95t-95 -229t95 -229t229 -95t229 95t95 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_575" unicode="&#xf265;" horiz-adv-x="1720" 
+d="M1565 1408q65 0 110 -45.5t45 -110.5v-519q0 -176 -68 -336t-182.5 -275t-274 -182.5t-334.5 -67.5q-176 0 -335.5 67.5t-274.5 182.5t-183 275t-68 336v519q0 64 46 110t110 46h1409zM861 344q47 0 82 33l404 388q37 35 37 85q0 49 -34.5 83.5t-83.5 34.5q-47 0 -82 -33
+l-323 -310l-323 310q-35 33 -81 33q-49 0 -83.5 -34.5t-34.5 -83.5q0 -51 36 -85l405 -388q33 -33 81 -33z" />
+    <glyph glyph-name="_576" unicode="&#xf266;" horiz-adv-x="2304" 
+d="M1494 -103l-295 695q-25 -49 -158.5 -305.5t-198.5 -389.5q-1 -1 -27.5 -0.5t-26.5 1.5q-82 193 -255.5 587t-259.5 596q-21 50 -66.5 107.5t-103.5 100.5t-102 43q0 5 -0.5 24t-0.5 27h583v-50q-39 -2 -79.5 -16t-66.5 -43t-10 -64q26 -59 216.5 -499t235.5 -540
+q31 61 140 266.5t131 247.5q-19 39 -126 281t-136 295q-38 69 -201 71v50l513 -1v-47q-60 -2 -93.5 -25t-12.5 -69q33 -70 87 -189.5t86 -187.5q110 214 173 363q24 55 -10 79.5t-129 26.5q1 7 1 25v24q64 0 170.5 0.5t180 1t92.5 0.5v-49q-62 -2 -119 -33t-90 -81
+l-213 -442q13 -33 127.5 -290t121.5 -274l441 1017q-14 38 -49.5 62.5t-65 31.5t-55.5 8v50l460 -4l1 -2l-1 -44q-139 -4 -201 -145q-526 -1216 -559 -1291h-49z" />
+    <glyph glyph-name="_577" unicode="&#xf267;" horiz-adv-x="1792" 
+d="M949 643q0 -26 -16.5 -45t-41.5 -19q-26 0 -45 16.5t-19 41.5q0 26 17 45t42 19t44 -16.5t19 -41.5zM964 585l350 581q-9 -8 -67.5 -62.5t-125.5 -116.5t-136.5 -127t-117 -110.5t-50.5 -51.5l-349 -580q7 7 67 62t126 116.5t136 127t117 111t50 50.5zM1611 640
+q0 -201 -104 -371q-3 2 -17 11t-26.5 16.5t-16.5 7.5q-13 0 -13 -13q0 -10 59 -44q-74 -112 -184.5 -190.5t-241.5 -110.5l-16 67q-1 10 -15 10q-5 0 -8 -5.5t-2 -9.5l16 -68q-72 -15 -146 -15q-199 0 -372 105q1 2 13 20.5t21.5 33.5t9.5 19q0 13 -13 13q-6 0 -17 -14.5
+t-22.5 -34.5t-13.5 -23q-113 75 -192 187.5t-110 244.5l69 15q10 3 10 15q0 5 -5.5 8t-10.5 2l-68 -15q-14 72 -14 139q0 206 109 379q2 -1 18.5 -12t30 -19t17.5 -8q13 0 13 12q0 6 -12.5 15.5t-32.5 21.5l-20 12q77 112 189 189t244 107l15 -67q2 -10 15 -10q5 0 8 5.5
+t2 10.5l-15 66q71 13 134 13q204 0 379 -109q-39 -56 -39 -65q0 -13 12 -13q11 0 48 64q111 -75 187.5 -186t107.5 -241l-56 -12q-10 -2 -10 -16q0 -5 5.5 -8t9.5 -2l57 13q14 -72 14 -140zM1696 640q0 163 -63.5 311t-170.5 255t-255 170.5t-311 63.5t-311 -63.5
+t-255 -170.5t-170.5 -255t-63.5 -311t63.5 -311t170.5 -255t255 -170.5t311 -63.5t311 63.5t255 170.5t170.5 255t63.5 311zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191
+t191 -286t71 -348z" />
+    <glyph glyph-name="_578" unicode="&#xf268;" horiz-adv-x="1792" 
+d="M893 1536q240 2 451 -120q232 -134 352 -372l-742 39q-160 9 -294 -74.5t-185 -229.5l-276 424q128 159 311 245.5t383 87.5zM146 1131l337 -663q72 -143 211 -217t293 -45l-230 -451q-212 33 -385 157.5t-272.5 316t-99.5 411.5q0 267 146 491zM1732 962
+q58 -150 59.5 -310.5t-48.5 -306t-153 -272t-246 -209.5q-230 -133 -498 -119l405 623q88 131 82.5 290.5t-106.5 277.5zM896 942q125 0 213.5 -88.5t88.5 -213.5t-88.5 -213.5t-213.5 -88.5t-213.5 88.5t-88.5 213.5t88.5 213.5t213.5 88.5z" />
+    <glyph glyph-name="_579" unicode="&#xf269;" horiz-adv-x="1792" 
+d="M903 -256q-283 0 -504.5 150.5t-329.5 398.5q-58 131 -67 301t26 332.5t111 312t179 242.5l-11 -281q11 14 68 15.5t70 -15.5q42 81 160.5 138t234.5 59q-54 -45 -119.5 -148.5t-58.5 -163.5q25 -8 62.5 -13.5t63 -7.5t68 -4t50.5 -3q15 -5 9.5 -45.5t-30.5 -75.5
+q-5 -7 -16.5 -18.5t-56.5 -35.5t-101 -34l15 -189l-139 67q-18 -43 -7.5 -81.5t36 -66.5t65.5 -41.5t81 -6.5q51 9 98 34.5t83.5 45t73.5 17.5q61 -4 89.5 -33t19.5 -65q-1 -2 -2.5 -5.5t-8.5 -12.5t-18 -15.5t-31.5 -10.5t-46.5 -1q-60 -95 -144.5 -135.5t-209.5 -29.5
+q74 -61 162.5 -82.5t168.5 -6t154.5 52t128 87.5t80.5 104q43 91 39 192.5t-37.5 188.5t-78.5 125q87 -38 137 -79.5t77 -112.5q15 170 -57.5 343t-209.5 284q265 -77 412 -279.5t151 -517.5q2 -127 -40.5 -255t-123.5 -238t-189 -196t-247.5 -135.5t-288.5 -49.5z" />
+    <glyph glyph-name="_580" unicode="&#xf26a;" horiz-adv-x="1792" 
+d="M1493 1308q-165 110 -359 110q-155 0 -293 -73t-240 -200q-75 -93 -119.5 -218t-48.5 -266v-42q4 -141 48.5 -266t119.5 -218q102 -127 240 -200t293 -73q194 0 359 110q-121 -108 -274.5 -168t-322.5 -60q-29 0 -43 1q-175 8 -333 82t-272 193t-181 281t-67 339
+q0 182 71 348t191 286t286 191t348 71h3q168 -1 320.5 -60.5t273.5 -167.5zM1792 640q0 -192 -77 -362.5t-213 -296.5q-104 -63 -222 -63q-137 0 -255 84q154 56 253.5 233t99.5 405q0 227 -99 404t-253 234q119 83 254 83q119 0 226 -65q135 -125 210.5 -295t75.5 -361z
+" />
+    <glyph glyph-name="_581" unicode="&#xf26b;" horiz-adv-x="1792" 
+d="M1792 599q0 -56 -7 -104h-1151q0 -146 109.5 -244.5t257.5 -98.5q99 0 185.5 46.5t136.5 130.5h423q-56 -159 -170.5 -281t-267.5 -188.5t-321 -66.5q-187 0 -356 83q-228 -116 -394 -116q-237 0 -237 263q0 115 45 275q17 60 109 229q199 360 475 606
+q-184 -79 -427 -354q63 274 283.5 449.5t501.5 175.5q30 0 45 -1q255 117 433 117q64 0 116 -13t94.5 -40.5t66.5 -76.5t24 -115q0 -116 -75 -286q101 -182 101 -390zM1722 1239q0 83 -53 132t-137 49q-108 0 -254 -70q121 -47 222.5 -131.5t170.5 -195.5q51 135 51 216z
+M128 2q0 -86 48.5 -132.5t134.5 -46.5q115 0 266 83q-122 72 -213.5 183t-137.5 245q-98 -205 -98 -332zM632 715h728q-5 142 -113 237t-251 95q-144 0 -251.5 -95t-112.5 -237z" />
+    <glyph glyph-name="_582" unicode="&#xf26c;" horiz-adv-x="2048" 
+d="M1792 288v960q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1248v-960q0 -66 -47 -113t-113 -47h-736v-128h352q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23
+v64q0 14 9 23t23 9h352v128h-736q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="_583" unicode="&#xf26d;" horiz-adv-x="1792" 
+d="M138 1408h197q-70 -64 -126 -149q-36 -56 -59 -115t-30 -125.5t-8.5 -120t10.5 -132t21 -126t28 -136.5q4 -19 6 -28q51 -238 81 -329q57 -171 152 -275h-272q-48 0 -82 34t-34 82v1304q0 48 34 82t82 34zM1346 1408h308q48 0 82 -34t34 -82v-1304q0 -48 -34 -82t-82 -34
+h-178q212 210 196 565l-469 -101q-2 -45 -12 -82t-31 -72t-59.5 -59.5t-93.5 -36.5q-123 -26 -199 40q-32 27 -53 61t-51.5 129t-64.5 258q-35 163 -45.5 263t-5.5 139t23 77q20 41 62.5 73t102.5 45q45 12 83.5 6.5t67 -17t54 -35t43 -48t34.5 -56.5l468 100
+q-68 175 -180 287z" />
+    <glyph glyph-name="_584" unicode="&#xf26e;" 
+d="M1401 -11l-6 -6q-113 -113 -259 -175q-154 -64 -317 -64q-165 0 -317 64q-148 63 -259 175q-113 112 -175 258q-42 103 -54 189q-4 28 48 36q51 8 56 -20q1 -1 1 -4q18 -90 46 -159q50 -124 152 -226q98 -98 226 -152q132 -56 276 -56q143 0 276 56q128 55 225 152l6 6
+q10 10 25 6q12 -3 33 -22q36 -37 17 -58zM929 604l-66 -66l63 -63q21 -21 -7 -49q-17 -17 -32 -17q-10 0 -19 10l-62 61l-66 -66q-5 -5 -15 -5q-15 0 -31 16l-2 2q-18 15 -18 29q0 7 8 17l66 65l-66 66q-16 16 14 45q18 18 31 18q6 0 13 -5l65 -66l65 65q18 17 48 -13
+q27 -27 11 -44zM1400 547q0 -118 -46 -228q-45 -105 -126 -186q-80 -80 -187 -126t-228 -46t-228 46t-187 126q-82 82 -125 186q-15 33 -15 40h-1q-9 27 43 44q50 16 60 -12q37 -99 97 -167h1v339v2q3 136 102 232q105 103 253 103q147 0 251 -103t104 -249
+q0 -147 -104.5 -251t-250.5 -104q-58 0 -112 16q-28 11 -13 61q16 51 44 43l14 -3q14 -3 33 -6t30 -3q104 0 176 71.5t72 174.5q0 101 -72 171q-71 71 -175 71q-107 0 -178 -80q-64 -72 -64 -160v-413q110 -67 242 -67q96 0 185 36.5t156 103.5t103.5 155t36.5 183
+q0 198 -141 339q-140 140 -339 140q-200 0 -340 -140q-53 -53 -77 -87l-2 -2q-8 -11 -13 -15.5t-21.5 -9.5t-38.5 3q-21 5 -36.5 16.5t-15.5 26.5v680q0 15 10.5 26.5t27.5 11.5h877q30 0 30 -55t-30 -55h-811v-483h1q40 42 102 84t108 61q109 46 231 46q121 0 228 -46
+t187 -126q81 -81 126 -186q46 -112 46 -229zM1369 1128q9 -8 9 -18t-5.5 -18t-16.5 -21q-26 -26 -39 -26q-9 0 -16 7q-106 91 -207 133q-128 56 -276 56q-133 0 -262 -49q-27 -10 -45 37q-9 25 -8 38q3 16 16 20q130 57 299 57q164 0 316 -64q137 -58 235 -152z" />
+    <glyph glyph-name="_585" unicode="&#xf270;" horiz-adv-x="1792" 
+d="M1551 60q15 6 26 3t11 -17.5t-15 -33.5q-13 -16 -44 -43.5t-95.5 -68t-141 -74t-188 -58t-229.5 -24.5q-119 0 -238 31t-209 76.5t-172.5 104t-132.5 105t-84 87.5q-8 9 -10 16.5t1 12t8 7t11.5 2t11.5 -4.5q192 -117 300 -166q389 -176 799 -90q190 40 391 135z
+M1758 175q11 -16 2.5 -69.5t-28.5 -102.5q-34 -83 -85 -124q-17 -14 -26 -9t0 24q21 45 44.5 121.5t6.5 98.5q-5 7 -15.5 11.5t-27 6t-29.5 2.5t-35 0t-31.5 -2t-31 -3t-22.5 -2q-6 -1 -13 -1.5t-11 -1t-8.5 -1t-7 -0.5h-5.5h-4.5t-3 0.5t-2 1.5l-1.5 3q-6 16 47 40t103 30
+q46 7 108 1t76 -24zM1364 618q0 -31 13.5 -64t32 -58t37.5 -46t33 -32l13 -11l-227 -224q-40 37 -79 75.5t-58 58.5l-19 20q-11 11 -25 33q-38 -59 -97.5 -102.5t-127.5 -63.5t-140 -23t-137.5 21t-117.5 65.5t-83 113t-31 162.5q0 84 28 154t72 116.5t106.5 83t122.5 57
+t130 34.5t119.5 18.5t99.5 6.5v127q0 65 -21 97q-34 53 -121 53q-6 0 -16.5 -1t-40.5 -12t-56 -29.5t-56 -59.5t-48 -96l-294 27q0 60 22 119t67 113t108 95t151.5 65.5t190.5 24.5q100 0 181 -25t129.5 -61.5t81 -83t45 -86t12.5 -73.5v-589zM692 597q0 -86 70 -133
+q66 -44 139 -22q84 25 114 123q14 45 14 101v162q-59 -2 -111 -12t-106.5 -33.5t-87 -71t-32.5 -114.5z" />
+    <glyph glyph-name="_586" unicode="&#xf271;" horiz-adv-x="1792" 
+d="M1536 1280q52 0 90 -38t38 -90v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128zM1152 1376v-288q0 -14 9 -23t23 -9
+h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 1376v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM1536 -128v1024h-1408v-1024h1408zM896 448h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224
+v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224z" />
+    <glyph glyph-name="_587" unicode="&#xf272;" horiz-adv-x="1792" 
+d="M1152 416v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23
+t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47
+t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_588" unicode="&#xf273;" horiz-adv-x="1792" 
+d="M1111 151l-46 -46q-9 -9 -22 -9t-23 9l-188 189l-188 -189q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22t9 23l189 188l-189 188q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l188 -188l188 188q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23l-188 -188l188 -188q9 -10 9 -23t-9 -22z
+M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280
+q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_589" unicode="&#xf274;" horiz-adv-x="1792" 
+d="M1303 572l-512 -512q-10 -9 -23 -9t-23 9l-288 288q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l220 -220l444 444q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23
+t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47
+t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_590" unicode="&#xf275;" horiz-adv-x="1792" 
+d="M448 1536q26 0 45 -19t19 -45v-891l536 429q17 14 40 14q26 0 45 -19t19 -45v-379l536 429q17 14 40 14q26 0 45 -19t19 -45v-1152q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h384z" />
+    <glyph glyph-name="_591" unicode="&#xf276;" horiz-adv-x="1024" 
+d="M512 448q66 0 128 15v-655q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v655q62 -15 128 -15zM512 1536q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150t-150 362t150 362t362 150zM512 1312q14 0 23 9t9 23t-9 23t-23 9q-146 0 -249 -103t-103 -249
+q0 -14 9 -23t23 -9t23 9t9 23q0 119 84.5 203.5t203.5 84.5z" />
+    <glyph glyph-name="_592" unicode="&#xf277;" horiz-adv-x="1792" 
+d="M1745 1239q10 -10 10 -23t-10 -23l-141 -141q-28 -28 -68 -28h-1344q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h576v64q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-64h512q40 0 68 -28zM768 320h256v-512q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v512zM1600 768
+q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-1344q-40 0 -68 28l-141 141q-10 10 -10 23t10 23l141 141q28 28 68 28h512v192h256v-192h576z" />
+    <glyph glyph-name="_593" unicode="&#xf278;" horiz-adv-x="2048" 
+d="M2020 1525q28 -20 28 -53v-1408q0 -20 -11 -36t-29 -23l-640 -256q-24 -11 -48 0l-616 246l-616 -246q-10 -5 -24 -5q-19 0 -36 11q-28 20 -28 53v1408q0 20 11 36t29 23l640 256q24 11 48 0l616 -246l616 246q32 13 60 -6zM736 1390v-1270l576 -230v1270zM128 1173
+v-1270l544 217v1270zM1920 107v1270l-544 -217v-1270z" />
+    <glyph glyph-name="_594" unicode="&#xf279;" horiz-adv-x="1792" 
+d="M512 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472q0 20 17 28l480 256q7 4 15 4zM1760 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472
+q0 20 17 28l480 256q7 4 15 4zM640 1536q8 0 14 -3l512 -256q18 -10 18 -29v-1472q0 -13 -9.5 -22.5t-22.5 -9.5q-8 0 -14 3l-512 256q-18 10 -18 29v1472q0 13 9.5 22.5t22.5 9.5z" />
+    <glyph glyph-name="_595" unicode="&#xf27a;" horiz-adv-x="1792" 
+d="M640 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 640q0 53 -37.5 90.5t-90.5 37.5
+t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-110 0 -211 18q-173 -173 -435 -229q-52 -10 -86 -13q-12 -1 -22 6t-13 18q-4 15 20 37q5 5 23.5 21.5t25.5 23.5t23.5 25.5t24 31.5t20.5 37
+t20 48t14.5 57.5t12.5 72.5q-146 90 -229.5 216.5t-83.5 269.5q0 174 120 321.5t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
+    <glyph glyph-name="_596" unicode="&#xf27b;" horiz-adv-x="1792" 
+d="M640 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 -53 -37.5 -90.5t-90.5 -37.5
+t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5
+t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51
+t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 130 71 248.5t191 204.5t286 136.5t348 50.5t348 -50.5t286 -136.5t191 -204.5t71 -248.5z" />
+    <glyph glyph-name="_597" unicode="&#xf27c;" horiz-adv-x="1024" 
+d="M512 345l512 295v-591l-512 -296v592zM0 640v-591l512 296zM512 1527v-591l-512 -296v591zM512 936l512 295v-591z" />
+    <glyph glyph-name="_598" unicode="&#xf27d;" horiz-adv-x="1792" 
+d="M1709 1018q-10 -236 -332 -651q-333 -431 -562 -431q-142 0 -240 263q-44 160 -132 482q-72 262 -157 262q-18 0 -127 -76l-77 98q24 21 108 96.5t130 115.5q156 138 241 146q95 9 153 -55.5t81 -203.5q44 -287 66 -373q55 -249 120 -249q51 0 154 161q101 161 109 246
+q13 139 -109 139q-57 0 -121 -26q120 393 459 382q251 -8 236 -326z" />
+    <glyph glyph-name="f27e" unicode="&#xf27e;" 
+d="M0 1408h1536v-1536h-1536v1536zM1085 293l-221 631l221 297h-634l221 -297l-221 -631l317 -304z" />
+    <glyph glyph-name="uniF280" unicode="&#xf280;" 
+d="M0 1408h1536v-1536h-1536v1536zM908 1088l-12 -33l75 -83l-31 -114l25 -25l107 57l107 -57l25 25l-31 114l75 83l-12 33h-95l-53 96h-32l-53 -96h-95zM641 925q32 0 44.5 -16t11.5 -63l174 21q0 55 -17.5 92.5t-50.5 56t-69 25.5t-85 7q-133 0 -199 -57.5t-66 -182.5v-72
+h-96v-128h76q20 0 20 -8v-382q0 -14 -5 -20t-18 -7l-73 -7v-88h448v86l-149 14q-6 1 -8.5 1.5t-3.5 2.5t-0.5 4t1 7t0.5 10v387h191l38 128h-231q-6 0 -2 6t4 9v80q0 27 1.5 40.5t7.5 28t19.5 20t36.5 5.5zM1248 96v86l-54 9q-7 1 -9.5 2.5t-2.5 3t1 7.5t1 12v520h-275
+l-23 -101l83 -22q23 -7 23 -27v-370q0 -14 -6 -18.5t-20 -6.5l-70 -9v-86h352z" />
+    <glyph glyph-name="uniF281" unicode="&#xf281;" horiz-adv-x="1792" 
+d="M1792 690q0 -58 -29.5 -105.5t-79.5 -72.5q12 -46 12 -96q0 -155 -106.5 -287t-290.5 -208.5t-400 -76.5t-399.5 76.5t-290 208.5t-106.5 287q0 47 11 94q-51 25 -82 73.5t-31 106.5q0 82 58 140.5t141 58.5q85 0 145 -63q218 152 515 162l116 521q3 13 15 21t26 5
+l369 -81q18 37 54 59.5t79 22.5q62 0 106 -43.5t44 -105.5t-44 -106t-106 -44t-105.5 43.5t-43.5 105.5l-334 74l-104 -472q300 -9 519 -160q58 61 143 61q83 0 141 -58.5t58 -140.5zM418 491q0 -62 43.5 -106t105.5 -44t106 44t44 106t-44 105.5t-106 43.5q-61 0 -105 -44
+t-44 -105zM1228 136q11 11 11 26t-11 26q-10 10 -25 10t-26 -10q-41 -42 -121 -62t-160 -20t-160 20t-121 62q-11 10 -26 10t-25 -10q-11 -10 -11 -25.5t11 -26.5q43 -43 118.5 -68t122.5 -29.5t91 -4.5t91 4.5t122.5 29.5t118.5 68zM1225 341q62 0 105.5 44t43.5 106
+q0 61 -44 105t-105 44q-62 0 -106 -43.5t-44 -105.5t44 -106t106 -44z" />
+    <glyph glyph-name="_602" unicode="&#xf282;" horiz-adv-x="1792" 
+d="M69 741h1q16 126 58.5 241.5t115 217t167.5 176t223.5 117.5t276.5 43q231 0 414 -105.5t294 -303.5q104 -187 104 -442v-188h-1125q1 -111 53.5 -192.5t136.5 -122.5t189.5 -57t213 -3t208 46.5t173.5 84.5v-377q-92 -55 -229.5 -92t-312.5 -38t-316 53
+q-189 73 -311.5 249t-124.5 372q-3 242 111 412t325 268q-48 -60 -78 -125.5t-46 -159.5h635q8 77 -8 140t-47 101.5t-70.5 66.5t-80.5 41t-75 20.5t-56 8.5l-22 1q-135 -5 -259.5 -44.5t-223.5 -104.5t-176 -140.5t-138 -163.5z" />
+    <glyph glyph-name="_603" unicode="&#xf283;" horiz-adv-x="2304" 
+d="M0 32v608h2304v-608q0 -66 -47 -113t-113 -47h-1984q-66 0 -113 47t-47 113zM640 256v-128h384v128h-384zM256 256v-128h256v128h-256zM2144 1408q66 0 113 -47t47 -113v-224h-2304v224q0 66 47 113t113 47h1984z" />
+    <glyph glyph-name="_604" unicode="&#xf284;" horiz-adv-x="1792" 
+d="M1584 246l-218 111q-74 -120 -196.5 -189t-263.5 -69q-147 0 -271 72t-196 196t-72 270q0 110 42.5 209.5t115 172t172 115t209.5 42.5q131 0 247.5 -60.5t192.5 -168.5l215 125q-110 169 -286.5 265t-378.5 96q-161 0 -308 -63t-253 -169t-169 -253t-63 -308t63 -308
+t169 -253t253 -169t308 -63q213 0 397.5 107t290.5 292zM1030 643l693 -352q-116 -253 -334.5 -400t-492.5 -147q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71q260 0 470.5 -133.5t335.5 -366.5zM1543 640h-39v-160h-96v352h136q32 0 54.5 -20
+t28.5 -48t1 -56t-27.5 -48t-57.5 -20z" />
+    <glyph glyph-name="uniF285" unicode="&#xf285;" horiz-adv-x="1792" 
+d="M1427 827l-614 386l92 151h855zM405 562l-184 116v858l1183 -743zM1424 697l147 -95v-858l-532 335zM1387 718l-500 -802h-855l356 571z" />
+    <glyph glyph-name="uniF286" unicode="&#xf286;" horiz-adv-x="1792" 
+d="M640 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1152 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1664 496v-752h-640v320q0 80 -56 136t-136 56t-136 -56t-56 -136v-320h-640v752q0 16 16 16h96
+q16 0 16 -16v-112h128v624q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 6 2.5 9.5t8.5 5t9.5 2t11.5 0t9 -0.5v391q-32 15 -32 50q0 23 16.5 39t38.5 16t38.5 -16t16.5 -39q0 -35 -32 -50v-17q45 10 83 10q21 0 59.5 -7.5t54.5 -7.5
+q17 0 47 7.5t37 7.5q16 0 16 -16v-210q0 -15 -35 -21.5t-62 -6.5q-18 0 -54.5 7.5t-55.5 7.5q-40 0 -90 -12v-133q1 0 9 0.5t11.5 0t9.5 -2t8.5 -5t2.5 -9.5v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-624h128v112q0 16 16 16h96
+q16 0 16 -16z" />
+    <glyph glyph-name="_607" unicode="&#xf287;" horiz-adv-x="2304" 
+d="M2288 731q16 -8 16 -27t-16 -27l-320 -192q-8 -5 -16 -5q-9 0 -16 4q-16 10 -16 28v128h-858q37 -58 83 -165q16 -37 24.5 -55t24 -49t27 -47t27 -34t31.5 -26t33 -8h96v96q0 14 9 23t23 9h320q14 0 23 -9t9 -23v-320q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v96h-96
+q-32 0 -61 10t-51 23.5t-45 40.5t-37 46t-33.5 57t-28.5 57.5t-28 60.5q-23 53 -37 81.5t-36 65t-44.5 53.5t-46.5 17h-360q-22 -84 -91 -138t-157 -54q-106 0 -181 75t-75 181t75 181t181 75q88 0 157 -54t91 -138h104q24 0 46.5 17t44.5 53.5t36 65t37 81.5q19 41 28 60.5
+t28.5 57.5t33.5 57t37 46t45 40.5t51 23.5t61 10h107q21 57 70 92.5t111 35.5q80 0 136 -56t56 -136t-56 -136t-136 -56q-62 0 -111 35.5t-70 92.5h-107q-17 0 -33 -8t-31.5 -26t-27 -34t-27 -47t-24 -49t-24.5 -55q-46 -107 -83 -165h1114v128q0 18 16 28t32 -1z" />
+    <glyph glyph-name="_608" unicode="&#xf288;" horiz-adv-x="1792" 
+d="M1150 774q0 -56 -39.5 -95t-95.5 -39h-253v269h253q56 0 95.5 -39.5t39.5 -95.5zM1329 774q0 130 -91.5 222t-222.5 92h-433v-896h180v269h253q130 0 222 91.5t92 221.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348
+t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_609" unicode="&#xf289;" horiz-adv-x="2304" 
+d="M1645 438q0 59 -34 106.5t-87 68.5q-7 -45 -23 -92q-7 -24 -27.5 -38t-44.5 -14q-12 0 -24 3q-31 10 -45 38.5t-4 58.5q23 71 23 143q0 123 -61 227.5t-166 165.5t-228 61q-134 0 -247 -73t-167 -194q108 -28 188 -106q22 -23 22 -55t-22 -54t-54 -22t-55 22
+q-75 75 -180 75q-106 0 -181 -74.5t-75 -180.5t75 -180.5t181 -74.5h1046q79 0 134.5 55.5t55.5 133.5zM1798 438q0 -142 -100.5 -242t-242.5 -100h-1046q-169 0 -289 119.5t-120 288.5q0 153 100 267t249 136q62 184 221 298t354 114q235 0 408.5 -158.5t196.5 -389.5
+q116 -25 192.5 -118.5t76.5 -214.5zM2048 438q0 -175 -97 -319q-23 -33 -64 -33q-24 0 -43 13q-26 17 -32 48.5t12 57.5q71 104 71 233t-71 233q-18 26 -12 57t32 49t57.5 11.5t49.5 -32.5q97 -142 97 -318zM2304 438q0 -244 -134 -443q-23 -34 -64 -34q-23 0 -42 13
+q-26 18 -32.5 49t11.5 57q108 164 108 358q0 195 -108 357q-18 26 -11.5 57.5t32.5 48.5q26 18 57 12t49 -33q134 -198 134 -442z" />
+    <glyph glyph-name="_610" unicode="&#xf28a;" 
+d="M1500 -13q0 -89 -63 -152.5t-153 -63.5t-153.5 63.5t-63.5 152.5q0 90 63.5 153.5t153.5 63.5t153 -63.5t63 -153.5zM1267 268q-115 -15 -192.5 -102.5t-77.5 -205.5q0 -74 33 -138q-146 -78 -379 -78q-109 0 -201 21t-153.5 54.5t-110.5 76.5t-76 85t-44.5 83
+t-23.5 66.5t-6 39.5q0 19 4.5 42.5t18.5 56t36.5 58t64 43.5t94.5 18t94 -17.5t63 -41t35.5 -53t17.5 -49t4 -33.5q0 -34 -23 -81q28 -27 82 -42t93 -17l40 -1q115 0 190 51t75 133q0 26 -9 48.5t-31.5 44.5t-49.5 41t-74 44t-93.5 47.5t-119.5 56.5q-28 13 -43 20
+q-116 55 -187 100t-122.5 102t-72 125.5t-20.5 162.5q0 78 20.5 150t66 137.5t112.5 114t166.5 77t221.5 28.5q120 0 220 -26t164.5 -67t109.5 -94t64 -105.5t19 -103.5q0 -46 -15 -82.5t-36.5 -58t-48.5 -36t-49 -19.5t-39 -5h-8h-32t-39 5t-44 14t-41 28t-37 46t-24 70.5
+t-10 97.5q-15 16 -59 25.5t-81 10.5l-37 1q-68 0 -117.5 -31t-70.5 -70t-21 -76q0 -24 5 -43t24 -46t53 -51t97 -53.5t150 -58.5q76 -25 138.5 -53.5t109 -55.5t83 -59t60.5 -59.5t41 -62.5t26.5 -62t14.5 -63.5t6 -62t1 -62.5z" />
+    <glyph glyph-name="_611" unicode="&#xf28b;" 
+d="M704 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1152 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103
+t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_612" unicode="&#xf28c;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273
+t73 -273t198 -198t273 -73zM864 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192z" />
+    <glyph glyph-name="_613" unicode="&#xf28d;" 
+d="M1088 352v576q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
+t103 -385.5z" />
+    <glyph glyph-name="_614" unicode="&#xf28e;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273
+t73 -273t198 -198t273 -73zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h576q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-576z" />
+    <glyph glyph-name="_615" unicode="&#xf290;" horiz-adv-x="1792" 
+d="M1757 128l35 -313q3 -28 -16 -50q-19 -21 -48 -21h-1664q-29 0 -48 21q-19 22 -16 50l35 313h1722zM1664 967l86 -775h-1708l86 775q3 24 21 40.5t43 16.5h256v-128q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v128h384v-128q0 -53 37.5 -90.5t90.5 -37.5
+t90.5 37.5t37.5 90.5v128h256q25 0 43 -16.5t21 -40.5zM1280 1152v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 159 112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="_616" unicode="&#xf291;" horiz-adv-x="2048" 
+d="M1920 768q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-15l-115 -662q-8 -46 -44 -76t-82 -30h-1280q-46 0 -82 30t-44 76l-115 662h-15q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h1792zM485 -32q26 2 43.5 22.5t15.5 46.5l-32 416q-2 26 -22.5 43.5
+t-46.5 15.5t-43.5 -22.5t-15.5 -46.5l32 -416q2 -25 20.5 -42t43.5 -17h5zM896 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1280 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1632 27l32 416
+q2 26 -15.5 46.5t-43.5 22.5t-46.5 -15.5t-22.5 -43.5l-32 -416q-2 -26 15.5 -46.5t43.5 -22.5h5q25 0 43.5 17t20.5 42zM476 1244l-93 -412h-132l101 441q19 88 89 143.5t160 55.5h167q0 26 19 45t45 19h384q26 0 45 -19t19 -45h167q90 0 160 -55.5t89 -143.5l101 -441
+h-132l-93 412q-11 44 -45.5 72t-79.5 28h-167q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45h-167q-45 0 -79.5 -28t-45.5 -72z" />
+    <glyph glyph-name="_617" unicode="&#xf292;" horiz-adv-x="1792" 
+d="M991 512l64 256h-254l-64 -256h254zM1759 1016l-56 -224q-7 -24 -31 -24h-327l-64 -256h311q15 0 25 -12q10 -14 6 -28l-56 -224q-5 -24 -31 -24h-327l-81 -328q-7 -24 -31 -24h-224q-16 0 -26 12q-9 12 -6 28l78 312h-254l-81 -328q-7 -24 -31 -24h-225q-15 0 -25 12
+q-9 12 -6 28l78 312h-311q-15 0 -25 12q-9 12 -6 28l56 224q7 24 31 24h327l64 256h-311q-15 0 -25 12q-10 14 -6 28l56 224q5 24 31 24h327l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h254l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h311
+q15 0 25 -12q9 -12 6 -28z" />
+    <glyph glyph-name="_618" unicode="&#xf293;" 
+d="M841 483l148 -148l-149 -149zM840 1094l149 -149l-148 -148zM710 -130l464 464l-306 306l306 306l-464 464v-611l-255 255l-93 -93l320 -321l-320 -321l93 -93l255 255v-611zM1429 640q0 -209 -32 -365.5t-87.5 -257t-140.5 -162.5t-181.5 -86.5t-219.5 -24.5
+t-219.5 24.5t-181.5 86.5t-140.5 162.5t-87.5 257t-32 365.5t32 365.5t87.5 257t140.5 162.5t181.5 86.5t219.5 24.5t219.5 -24.5t181.5 -86.5t140.5 -162.5t87.5 -257t32 -365.5z" />
+    <glyph glyph-name="_619" unicode="&#xf294;" horiz-adv-x="1024" 
+d="M596 113l173 172l-173 172v-344zM596 823l173 172l-173 172v-344zM628 640l356 -356l-539 -540v711l-297 -296l-108 108l372 373l-372 373l108 108l297 -296v711l539 -540z" />
+    <glyph glyph-name="_620" unicode="&#xf295;" 
+d="M1280 256q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM512 1024q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5
+t112.5 -271.5zM1440 1344q0 -20 -13 -38l-1056 -1408q-19 -26 -51 -26h-160q-26 0 -45 19t-19 45q0 20 13 38l1056 1408q19 26 51 26h160q26 0 45 -19t19 -45zM768 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5
+t271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="_621" unicode="&#xf296;" horiz-adv-x="1792" 
+d="M104 830l792 -1015l-868 630q-18 13 -25 34.5t0 42.5l101 308v0zM566 830h660l-330 -1015v0zM368 1442l198 -612h-462l198 612q8 23 33 23t33 -23zM1688 830l101 -308q7 -21 0 -42.5t-25 -34.5l-868 -630l792 1015v0zM1688 830h-462l198 612q8 23 33 23t33 -23z" />
+    <glyph glyph-name="_622" unicode="&#xf297;" horiz-adv-x="1792" 
+d="M384 704h160v224h-160v-224zM1221 372v92q-104 -36 -243 -38q-135 -1 -259.5 46.5t-220.5 122.5l1 -96q88 -80 212 -128.5t272 -47.5q129 0 238 49zM640 704h640v224h-640v-224zM1792 736q0 -187 -99 -352q89 -102 89 -229q0 -157 -129.5 -268t-313.5 -111
+q-122 0 -225 52.5t-161 140.5q-19 -1 -57 -1t-57 1q-58 -88 -161 -140.5t-225 -52.5q-184 0 -313.5 111t-129.5 268q0 127 89 229q-99 165 -99 352q0 209 120 385.5t326.5 279.5t449.5 103t449.5 -103t326.5 -279.5t120 -385.5z" />
+    <glyph glyph-name="_623" unicode="&#xf298;" 
+d="M515 625v-128h-252v128h252zM515 880v-127h-252v127h252zM1273 369v-128h-341v128h341zM1273 625v-128h-672v128h672zM1273 880v-127h-672v127h672zM1408 20v1240q0 8 -6 14t-14 6h-32l-378 -256l-210 171l-210 -171l-378 256h-32q-8 0 -14 -6t-6 -14v-1240q0 -8 6 -14
+t14 -6h1240q8 0 14 6t6 14zM553 1130l185 150h-406zM983 1130l221 150h-406zM1536 1260v-1240q0 -62 -43 -105t-105 -43h-1240q-62 0 -105 43t-43 105v1240q0 62 43 105t105 43h1240q62 0 105 -43t43 -105z" />
+    <glyph glyph-name="_624" unicode="&#xf299;" horiz-adv-x="1792" 
+d="M896 720q-104 196 -160 278q-139 202 -347 318q-34 19 -70 36q-89 40 -94 32t34 -38l39 -31q62 -43 112.5 -93.5t94.5 -116.5t70.5 -113t70.5 -131q9 -17 13 -25q44 -84 84 -153t98 -154t115.5 -150t131 -123.5t148.5 -90.5q153 -66 154 -60q1 3 -49 37q-53 36 -81 57
+q-77 58 -179 211t-185 310zM549 177q-76 60 -132.5 125t-98 143.5t-71 154.5t-58.5 186t-52 209t-60.5 252t-76.5 289q273 0 497.5 -36t379 -92t271 -144.5t185.5 -172.5t110 -198.5t56 -199.5t12.5 -198.5t-9.5 -173t-20 -143.5t-13 -107l323 -327h-104l-281 285
+q-22 -2 -91.5 -14t-121.5 -19t-138 -6t-160.5 17t-167.5 59t-179 111z" />
+    <glyph glyph-name="_625" unicode="&#xf29a;" horiz-adv-x="1792" 
+d="M1374 879q-6 26 -28.5 39.5t-48.5 7.5q-261 -62 -401 -62t-401 62q-26 6 -48.5 -7.5t-28.5 -39.5t7.5 -48.5t39.5 -28.5q194 -46 303 -58q-2 -158 -15.5 -269t-26.5 -155.5t-41 -115.5l-9 -21q-10 -25 1 -49t36 -34q9 -4 23 -4q44 0 60 41l8 20q54 139 71 259h42
+q17 -120 71 -259l8 -20q16 -41 60 -41q14 0 23 4q25 10 36 34t1 49l-9 21q-28 71 -41 115.5t-26.5 155.5t-15.5 269q109 12 303 58q26 6 39.5 28.5t7.5 48.5zM1024 1024q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z
+M1600 640q0 -143 -55.5 -273.5t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5zM896 1408q-156 0 -298 -61t-245 -164t-164 -245t-61 -298t61 -298
+t164 -245t245 -164t298 -61t298 61t245 164t164 245t61 298t-61 298t-164 245t-245 164t-298 61zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_626" unicode="&#xf29b;" 
+d="M1438 723q34 -35 29 -82l-44 -551q-4 -42 -34.5 -70t-71.5 -28q-6 0 -9 1q-44 3 -72.5 36.5t-25.5 77.5l35 429l-143 -8q55 -113 55 -240q0 -216 -148 -372l-137 137q91 101 91 235q0 145 -102.5 248t-247.5 103q-134 0 -236 -92l-137 138q120 114 284 141l264 300
+l-149 87l-181 -161q-33 -30 -77 -27.5t-73 35.5t-26.5 77t34.5 73l239 213q26 23 60 26.5t64 -14.5l488 -283q36 -21 48 -68q17 -67 -26 -117l-205 -232l371 20q49 3 83 -32zM1240 1180q-74 0 -126 52t-52 126t52 126t126 52t126.5 -52t52.5 -126t-52.5 -126t-126.5 -52z
+M613 -62q106 0 196 61l139 -139q-146 -116 -335 -116q-148 0 -273.5 73t-198.5 198t-73 273q0 188 116 336l139 -139q-60 -88 -60 -197q0 -145 102.5 -247.5t247.5 -102.5z" />
+    <glyph glyph-name="_627" unicode="&#xf29c;" 
+d="M880 336v-160q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v160q0 14 9 23t23 9h160q14 0 23 -9t9 -23zM1136 832q0 -50 -15 -90t-45.5 -69t-52 -44t-59.5 -36q-32 -18 -46.5 -28t-26 -24t-11.5 -29v-32q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v68q0 35 10.5 64.5
+t24 47.5t39 35.5t41 25.5t44.5 21q53 25 75 43t22 49q0 42 -43.5 71.5t-95.5 29.5q-56 0 -95 -27q-29 -20 -80 -83q-9 -12 -25 -12q-11 0 -19 6l-108 82q-10 7 -12 20t5 23q122 192 349 192q129 0 238.5 -89.5t109.5 -214.5zM768 1280q-130 0 -248.5 -51t-204 -136.5
+t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5
+t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_628" unicode="&#xf29d;" horiz-adv-x="1408" 
+d="M366 1225q-64 0 -110 45.5t-46 110.5q0 64 46 109.5t110 45.5t109.5 -45.5t45.5 -109.5q0 -65 -45.5 -110.5t-109.5 -45.5zM917 583q0 -50 -30 -67.5t-63.5 -6.5t-47.5 34l-367 438q-7 12 -14 15.5t-11 1.5l-3 -3q-7 -8 4 -21l122 -139l1 -354l-161 -457
+q-67 -192 -92 -234q-15 -26 -28 -32q-50 -26 -103 -1q-29 13 -41.5 43t-9.5 57q2 17 197 618l5 416l-85 -164l35 -222q4 -24 -1 -42t-14 -27.5t-19 -16t-17 -7.5l-7 -2q-19 -3 -34.5 3t-24 16t-14 22t-7.5 19.5t-2 9.5l-46 299l211 381q23 34 113 34q75 0 107 -40l424 -521
+q7 -5 14 -17l3 -3l-1 -1q7 -13 7 -29zM514 433q43 -113 88.5 -225t69.5 -168l24 -55q36 -93 42 -125q11 -70 -36 -97q-35 -22 -66 -16t-51 22t-29 35h-1q-6 16 -8 25l-124 351zM1338 -159q31 -49 31 -57q0 -5 -3 -7q-9 -5 -14.5 0.5t-15.5 26t-16 30.5q-114 172 -423 661
+q3 -1 7 1t7 4l3 2q11 9 11 17z" />
+    <glyph glyph-name="_629" unicode="&#xf29e;" horiz-adv-x="2304" 
+d="M504 542h171l-1 265zM1530 641q0 87 -50.5 140t-146.5 53h-54v-388h52q91 0 145 57t54 138zM956 1018l1 -756q0 -14 -9.5 -24t-23.5 -10h-216q-14 0 -23.5 10t-9.5 24v62h-291l-55 -81q-10 -15 -28 -15h-267q-21 0 -30.5 18t3.5 35l556 757q9 14 27 14h332q14 0 24 -10
+t10 -24zM1783 641q0 -193 -125.5 -303t-324.5 -110h-270q-14 0 -24 10t-10 24v756q0 14 10 24t24 10h268q200 0 326 -109t126 -302zM1939 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5
+t-7.5 60t-20 91.5t-41 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2123 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-45 -108t-74 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5
+h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2304 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66 104.5t41 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96
+t9.5 -70.5z" />
+    <glyph glyph-name="uniF2A0" unicode="&#xf2a0;" horiz-adv-x="1408" 
+d="M617 -153q0 11 -13 58t-31 107t-20 69q-1 4 -5 26.5t-8.5 36t-13.5 21.5q-15 14 -51 14q-23 0 -70 -5.5t-71 -5.5q-34 0 -47 11q-6 5 -11 15.5t-7.5 20t-6.5 24t-5 18.5q-37 128 -37 255t37 255q1 4 5 18.5t6.5 24t7.5 20t11 15.5q13 11 47 11q24 0 71 -5.5t70 -5.5
+q36 0 51 14q9 8 13.5 21.5t8.5 36t5 26.5q2 9 20 69t31 107t13 58q0 22 -43.5 52.5t-75.5 42.5q-20 8 -45 8q-34 0 -98 -18q-57 -17 -96.5 -40.5t-71 -66t-46 -70t-45.5 -94.5q-6 -12 -9 -19q-49 -107 -68 -216t-19 -244t19 -244t68 -216q56 -122 83 -161q63 -91 179 -127
+l6 -2q64 -18 98 -18q25 0 45 8q32 12 75.5 42.5t43.5 52.5zM776 760q-26 0 -45 19t-19 45.5t19 45.5q37 37 37 90q0 52 -37 91q-19 19 -19 45t19 45t45 19t45 -19q75 -75 75 -181t-75 -181q-21 -19 -45 -19zM957 579q-27 0 -45 19q-19 19 -19 45t19 45q112 114 112 272
+t-112 272q-19 19 -19 45t19 45t45 19t45 -19q150 -150 150 -362t-150 -362q-18 -19 -45 -19zM1138 398q-27 0 -45 19q-19 19 -19 45t19 45q90 91 138.5 208t48.5 245t-48.5 245t-138.5 208q-19 19 -19 45t19 45t45 19t45 -19q109 -109 167 -249t58 -294t-58 -294t-167 -249
+q-18 -19 -45 -19z" />
+    <glyph glyph-name="uniF2A1" unicode="&#xf2a1;" horiz-adv-x="2176" 
+d="M192 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 352
+q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 864
+q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 1376q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 192q0 -80 -56 -136
+t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 1216q0 -80 -56 -136t-136 -56
+t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 192q0 -80 -56 -136t-136 -56t-136 56
+t-56 136t56 136t136 56t136 -56t56 -136zM1664 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136
+t56 136t136 56t136 -56t56 -136zM2176 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136z" />
+    <glyph glyph-name="uniF2A2" unicode="&#xf2a2;" horiz-adv-x="1792" 
+d="M128 -192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM320 0q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM365 365l256 -256l-90 -90l-256 256zM704 384q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45z
+M1411 704q0 -59 -11.5 -108.5t-37.5 -93.5t-44 -67.5t-53 -64.5q-31 -35 -45.5 -54t-33.5 -50t-26.5 -64t-7.5 -74q0 -159 -112.5 -271.5t-271.5 -112.5q-26 0 -45 19t-19 45t19 45t45 19q106 0 181 75t75 181q0 57 11.5 105.5t37 91t43.5 66.5t52 63q40 46 59.5 72
+t37.5 74.5t18 103.5q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM896 576q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45
+t45 19t45 -19t19 -45zM1184 704q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 93 -65.5 158.5t-158.5 65.5q-92 0 -158 -65.5t-66 -158.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 146 103 249t249 103t249 -103t103 -249zM1578 993q10 -25 -1 -49t-36 -34q-9 -4 -23 -4
+q-19 0 -35.5 11t-23.5 30q-68 178 -224 295q-21 16 -25 42t12 47q17 21 43 25t47 -12q183 -137 266 -351zM1788 1074q9 -25 -1.5 -49t-35.5 -34q-11 -4 -23 -4q-44 0 -60 41q-92 238 -297 393q-22 16 -25.5 42t12.5 47q16 22 42 25.5t47 -12.5q235 -175 341 -449z" />
+    <glyph glyph-name="uniF2A3" unicode="&#xf2a3;" horiz-adv-x="2304" 
+d="M1032 576q-59 2 -84 55q-17 34 -48 53.5t-68 19.5q-53 0 -90.5 -37.5t-37.5 -90.5q0 -56 36 -89l10 -8q34 -31 82 -31q37 0 68 19.5t48 53.5q25 53 84 55zM1600 704q0 56 -36 89l-10 8q-34 31 -82 31q-37 0 -68 -19.5t-48 -53.5q-25 -53 -84 -55q59 -2 84 -55
+q17 -34 48 -53.5t68 -19.5q53 0 90.5 37.5t37.5 90.5zM1174 925q-17 -35 -55 -48t-73 4q-62 31 -134 31q-51 0 -99 -17q3 0 9.5 0.5t9.5 0.5q92 0 170.5 -50t118.5 -133q17 -36 3.5 -73.5t-49.5 -54.5q-18 -9 -39 -9q21 0 39 -9q36 -17 49.5 -54.5t-3.5 -73.5
+q-40 -83 -118.5 -133t-170.5 -50h-6q-16 2 -44 4l-290 27l-239 -120q-14 -7 -29 -7q-40 0 -57 35l-160 320q-11 23 -4 47.5t29 37.5l209 119l148 267q17 155 91.5 291.5t195.5 236.5q31 25 70.5 21.5t64.5 -34.5t21.5 -70t-34.5 -65q-70 -59 -117 -128q123 84 267 101
+q40 5 71.5 -19t35.5 -64q5 -40 -19 -71.5t-64 -35.5q-84 -10 -159 -55q46 10 99 10q115 0 218 -50q36 -18 49 -55.5t-5 -73.5zM2137 1085l160 -320q11 -23 4 -47.5t-29 -37.5l-209 -119l-148 -267q-17 -155 -91.5 -291.5t-195.5 -236.5q-26 -22 -61 -22q-45 0 -74 35
+q-25 31 -21.5 70t34.5 65q70 59 117 128q-123 -84 -267 -101q-4 -1 -12 -1q-36 0 -63.5 24t-31.5 60q-5 40 19 71.5t64 35.5q84 10 159 55q-46 -10 -99 -10q-115 0 -218 50q-36 18 -49 55.5t5 73.5q17 35 55 48t73 -4q62 -31 134 -31q51 0 99 17q-3 0 -9.5 -0.5t-9.5 -0.5
+q-92 0 -170.5 50t-118.5 133q-17 36 -3.5 73.5t49.5 54.5q18 9 39 9q-21 0 -39 9q-36 17 -49.5 54.5t3.5 73.5q40 83 118.5 133t170.5 50h6h1q14 -2 42 -4l291 -27l239 120q14 7 29 7q40 0 57 -35z" />
+    <glyph glyph-name="uniF2A4" unicode="&#xf2a4;" horiz-adv-x="1792" 
+d="M1056 704q0 -26 19 -45t45 -19t45 19t19 45q0 146 -103 249t-249 103t-249 -103t-103 -249q0 -26 19 -45t45 -19t45 19t19 45q0 93 66 158.5t158 65.5t158 -65.5t66 -158.5zM835 1280q-117 0 -223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5q0 -26 19 -45t45 -19t45 19
+t19 45q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -55 -18 -103.5t-37.5 -74.5t-59.5 -72q-34 -39 -52 -63t-43.5 -66.5t-37 -91t-11.5 -105.5q0 -106 -75 -181t-181 -75q-26 0 -45 -19t-19 -45t19 -45t45 -19q159 0 271.5 112.5t112.5 271.5q0 41 7.5 74
+t26.5 64t33.5 50t45.5 54q35 41 53 64.5t44 67.5t37.5 93.5t11.5 108.5q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5zM591 561l226 -226l-579 -579q-12 -12 -29 -12t-29 12l-168 168q-12 12 -12 29t12 29zM1612 1524l168 -168q12 -12 12 -29t-12 -30l-233 -233
+l-26 -25l-71 -71q-66 153 -195 258l91 91l207 207q13 12 30 12t29 -12z" />
+    <glyph glyph-name="uniF2A5" unicode="&#xf2a5;" 
+d="M866 1021q0 -27 -13 -94q-11 -50 -31.5 -150t-30.5 -150q-2 -11 -4.5 -12.5t-13.5 -2.5q-20 -2 -31 -2q-58 0 -84 49.5t-26 113.5q0 88 35 174t103 124q28 14 51 14q28 0 36.5 -16.5t8.5 -47.5zM1352 597q0 14 -39 75.5t-52 66.5q-21 8 -34 8q-91 0 -226 -77l-2 2
+q3 22 27.5 135t24.5 178q0 233 -242 233q-24 0 -68 -6q-94 -17 -168.5 -89.5t-111.5 -166.5t-37 -189q0 -146 80.5 -225t227.5 -79q25 0 25 -3t-1 -5q-4 -34 -26 -117q-14 -52 -51.5 -101t-82.5 -49q-42 0 -42 47q0 24 10.5 47.5t25 39.5t29.5 28.5t26 20t11 8.5q0 3 -7 10
+q-24 22 -58.5 36.5t-65.5 14.5q-35 0 -63.5 -34t-41 -75t-12.5 -75q0 -88 51.5 -142t138.5 -54q82 0 155 53t117.5 126t65.5 153q6 22 15.5 66.5t14.5 66.5q3 12 14 18q118 60 227 60q48 0 127 -18q1 -1 4 -1q5 0 9.5 4.5t4.5 8.5zM1536 1120v-960q0 -119 -84.5 -203.5
+t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="uniF2A6" unicode="&#xf2a6;" horiz-adv-x="1535" 
+d="M744 1231q0 24 -2 38.5t-8.5 30t-21 23t-37.5 7.5q-39 0 -78 -23q-105 -58 -159 -190.5t-54 -269.5q0 -44 8.5 -85.5t26.5 -80.5t52.5 -62.5t81.5 -23.5q4 0 18 -0.5t20 0t16 3t15 8.5t7 16q16 77 48 231.5t48 231.5q19 91 19 146zM1498 575q0 -7 -7.5 -13.5t-15.5 -6.5
+l-6 1q-22 3 -62 11t-72 12.5t-63 4.5q-167 0 -351 -93q-15 -8 -21 -27q-10 -36 -24.5 -105.5t-22.5 -100.5q-23 -91 -70 -179.5t-112.5 -164.5t-154.5 -123t-185 -47q-135 0 -214.5 83.5t-79.5 219.5q0 53 19.5 117t63 116.5t97.5 52.5q38 0 120 -33.5t83 -61.5
+q0 -1 -16.5 -12.5t-39.5 -31t-46 -44.5t-39 -61t-16 -74q0 -33 16.5 -53t48.5 -20q45 0 85 31.5t66.5 78t48 105.5t32.5 107t16 90v9q0 2 -3.5 3.5t-8.5 1.5h-10t-10 -0.5t-6 -0.5q-227 0 -352 122.5t-125 348.5q0 108 34.5 221t96 210t156 167.5t204.5 89.5q52 9 106 9
+q374 0 374 -360q0 -98 -38 -273t-43 -211l3 -3q101 57 182.5 88t167.5 31q22 0 53 -13q19 -7 80 -102.5t61 -116.5z" />
+    <glyph glyph-name="uniF2A7" unicode="&#xf2a7;" horiz-adv-x="1664" 
+d="M831 863q32 0 59 -18l222 -148q61 -40 110 -97l146 -170q40 -46 29 -106l-72 -413q-6 -32 -29.5 -53.5t-55.5 -25.5l-527 -56l-352 -32h-9q-39 0 -67.5 28t-28.5 68q0 37 27 64t65 32l260 32h-448q-41 0 -69.5 30t-26.5 71q2 39 32 65t69 26l442 1l-521 64q-41 5 -66 37
+t-19 73q6 35 34.5 57.5t65.5 22.5h10l481 -60l-351 94q-38 10 -62 41.5t-18 68.5q6 36 33 58.5t62 22.5q6 0 20 -2l448 -96l217 -37q1 0 3 -0.5t3 -0.5q23 0 30.5 23t-12.5 36l-186 125q-35 23 -42 63.5t18 73.5q27 38 76 38zM761 661l186 -125l-218 37l-5 2l-36 38
+l-238 262q-1 1 -2.5 3.5t-2.5 3.5q-24 31 -18.5 70t37.5 64q31 23 68 17.5t64 -33.5l142 -147q-2 -1 -5 -3.5t-4 -4.5q-32 -45 -23 -99t55 -85zM1648 1115l15 -266q4 -73 -11 -147l-48 -219q-12 -59 -67 -87l-106 -54q2 62 -39 109l-146 170q-53 61 -117 103l-222 148
+q-34 23 -76 23q-51 0 -88 -37l-235 312q-25 33 -18 73.5t41 63.5q33 22 71.5 14t62.5 -40l266 -352l-262 455q-21 35 -10.5 75t47.5 59q35 18 72.5 6t57.5 -46l241 -420l-136 337q-15 35 -4.5 74t44.5 56q37 19 76 6t56 -51l193 -415l101 -196q8 -15 23 -17.5t27 7.5t11 26
+l-12 224q-2 41 26 71t69 31q39 0 67 -28.5t30 -67.5z" />
+    <glyph glyph-name="uniF2A8" unicode="&#xf2a8;" horiz-adv-x="1792" 
+d="M335 180q-2 0 -6 2q-86 57 -168.5 145t-139.5 180q-21 30 -21 69q0 9 2 19t4 18t7 18t8.5 16t10.5 17t10 15t12 15.5t11 14.5q184 251 452 365q-110 198 -110 211q0 19 17 29q116 64 128 64q18 0 28 -16l124 -229q92 19 192 19q266 0 497.5 -137.5t378.5 -369.5
+q20 -31 20 -69t-20 -69q-91 -142 -218.5 -253.5t-278.5 -175.5q110 -198 110 -211q0 -20 -17 -29q-116 -64 -127 -64q-19 0 -29 16l-124 229l-64 119l-444 820l7 7q-58 -24 -99 -47q3 -5 127 -234t243 -449t119 -223q0 -7 -9 -9q-13 -3 -72 -3q-57 0 -60 7l-456 841
+q-39 -28 -82 -68q24 -43 214 -393.5t190 -354.5q0 -10 -11 -10q-14 0 -82.5 22t-72.5 28l-106 197l-224 413q-44 -53 -78 -106q2 -3 18 -25t23 -34l176 -327q0 -10 -10 -10zM1165 282l49 -91q273 111 450 385q-180 277 -459 389q67 -64 103 -148.5t36 -176.5
+q0 -106 -47 -200.5t-132 -157.5zM848 896q0 -20 14 -34t34 -14q86 0 147 -61t61 -147q0 -20 14 -34t34 -14t34 14t14 34q0 126 -89 215t-215 89q-20 0 -34 -14t-14 -34zM1214 961l-9 4l7 -7z" />
+    <glyph glyph-name="uniF2A9" unicode="&#xf2a9;" horiz-adv-x="1280" 
+d="M1050 430q0 -215 -147 -374q-148 -161 -378 -161q-232 0 -378 161q-147 159 -147 374q0 147 68 270.5t189 196.5t268 73q96 0 182 -31q-32 -62 -39 -126q-66 28 -143 28q-167 0 -280.5 -123t-113.5 -291q0 -170 112.5 -288.5t281.5 -118.5t281 118.5t112 288.5
+q0 89 -32 166q66 13 123 49q41 -98 41 -212zM846 619q0 -192 -79.5 -345t-238.5 -253l-14 -1q-29 0 -62 5q83 32 146.5 102.5t99.5 154.5t58.5 189t30 192.5t7.5 178.5q0 69 -3 103q55 -160 55 -326zM791 947v-2q-73 214 -206 440q88 -59 142.5 -186.5t63.5 -251.5z
+M1035 744q-83 0 -160 75q218 120 290 247q19 37 21 56q-42 -94 -139.5 -166.5t-204.5 -97.5q-35 54 -35 113q0 37 17 79t43 68q46 44 157 74q59 16 106 58.5t74 100.5q74 -105 74 -253q0 -109 -24 -170q-32 -77 -88.5 -130.5t-130.5 -53.5z" />
+    <glyph glyph-name="uniF2AA" unicode="&#xf2aa;" 
+d="M1050 495q0 78 -28 147q-41 -25 -85 -34q22 -50 22 -114q0 -117 -77 -198.5t-193 -81.5t-193.5 81.5t-77.5 198.5q0 115 78 199.5t193 84.5q53 0 98 -19q4 43 27 87q-60 21 -125 21q-154 0 -257.5 -108.5t-103.5 -263.5t103.5 -261t257.5 -106t257.5 106.5t103.5 260.5z
+M872 850q2 -24 2 -71q0 -63 -5 -123t-20.5 -132.5t-40.5 -130t-68.5 -106t-100.5 -70.5q21 -3 42 -3h10q219 139 219 411q0 116 -38 225zM872 850q-4 80 -44 171.5t-98 130.5q92 -156 142 -302zM1207 955q0 102 -51 174q-41 -86 -124 -109q-69 -19 -109 -53.5t-40 -99.5
+q0 -40 24 -77q74 17 140.5 67t95.5 115q-4 -52 -74.5 -111.5t-138.5 -97.5q52 -52 110 -52q51 0 90 37t60 90q17 42 17 117zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
+t84.5 -203.5z" />
+    <glyph glyph-name="uniF2AB" unicode="&#xf2ab;" 
+d="M1279 388q0 22 -22 27q-67 15 -118 59t-80 108q-7 19 -7 25q0 15 19.5 26t43 17t43 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-12 0 -32 -8t-31 -8q-4 0 -12 2q5 95 5 114q0 79 -17 114q-36 78 -103 121.5t-152 43.5q-199 0 -275 -165q-17 -35 -17 -114q0 -19 5 -114
+q-4 -2 -14 -2q-12 0 -32 7.5t-30 7.5q-21 0 -38.5 -12t-17.5 -32q0 -21 19.5 -35.5t43 -20.5t43 -17t19.5 -26q0 -6 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -46 137 -68q2 -5 6 -26t11.5 -30.5t23.5 -9.5q12 0 37.5 4.5t39.5 4.5q35 0 67 -15t54 -32.5t57.5 -32.5
+t76.5 -15q43 0 79 15t57.5 32.5t53.5 32.5t67 15q14 0 39.5 -4t38.5 -4q16 0 23 10t11 30t6 25q137 22 137 68zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
+t103 -385.5z" />
+    <glyph glyph-name="uniF2AC" unicode="&#xf2ac;" horiz-adv-x="1664" 
+d="M848 1408q134 1 240.5 -68.5t163.5 -192.5q27 -58 27 -179q0 -47 -9 -191q14 -7 28 -7q18 0 51 13.5t51 13.5q29 0 56 -18t27 -46q0 -32 -31.5 -54t-69 -31.5t-69 -29t-31.5 -47.5q0 -15 12 -43q37 -82 102.5 -150t144.5 -101q28 -12 80 -23q28 -6 28 -35
+q0 -70 -219 -103q-7 -11 -11 -39t-14 -46.5t-33 -18.5q-20 0 -62 6.5t-64 6.5q-37 0 -62 -5q-32 -5 -63 -22.5t-58 -38t-58 -40.5t-76 -33.5t-99 -13.5q-52 0 -96.5 13.5t-75 33.5t-57.5 40.5t-58 38t-62 22.5q-26 5 -63 5q-24 0 -65.5 -7.5t-58.5 -7.5q-25 0 -35 18.5
+t-14 47.5t-11 40q-219 33 -219 103q0 29 28 35q52 11 80 23q78 32 144.5 101t102.5 150q12 28 12 43q0 28 -31.5 47.5t-69.5 29.5t-69.5 31.5t-31.5 52.5q0 27 26 45.5t55 18.5q15 0 48 -13t53 -13q18 0 32 7q-9 142 -9 190q0 122 27 180q64 137 172 198t264 63z" />
+    <glyph glyph-name="uniF2AD" unicode="&#xf2ad;" 
+d="M1280 388q0 22 -22 27q-67 14 -118 58t-80 109q-7 14 -7 25q0 15 19.5 26t42.5 17t42.5 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-11 0 -31 -8t-32 -8q-4 0 -12 2q5 63 5 115q0 78 -17 114q-36 78 -102.5 121.5t-152.5 43.5q-198 0 -275 -165q-18 -38 -18 -115
+q0 -38 6 -114q-10 -2 -15 -2q-11 0 -31.5 8t-30.5 8q-20 0 -37.5 -12.5t-17.5 -32.5q0 -21 19.5 -35.5t42.5 -20.5t42.5 -17t19.5 -26q0 -11 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -47 138 -69q2 -5 6 -26t11 -30.5t23 -9.5q13 0 38.5 5t38.5 5q35 0 67.5 -15
+t54.5 -32.5t57.5 -32.5t76.5 -15q43 0 79 15t57.5 32.5t54 32.5t67.5 15q13 0 39 -4.5t39 -4.5q15 0 22.5 9.5t11.5 31t5 24.5q138 22 138 69zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960
+q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="uniF2AE" unicode="&#xf2ae;" horiz-adv-x="2304" 
+d="M2304 1536q-69 -46 -125 -92t-89 -81t-59.5 -71.5t-37.5 -57.5t-22 -44.5t-14 -29.5q-10 -18 -35.5 -136.5t-48.5 -164.5q-15 -29 -50 -60.5t-67.5 -50.5t-72.5 -41t-48 -28q-47 -31 -151 -231q-341 14 -630 -158q-92 -53 -303 -179q47 16 86 31t55 22l15 7
+q71 27 163 64.5t133.5 53.5t108 34.5t142.5 31.5q186 31 465 -7q1 0 10 -3q11 -6 14 -17t-3 -22l-194 -345q-15 -29 -47 -22q-128 24 -354 24q-146 0 -402 -44.5t-392 -46.5q-82 -1 -149 13t-107 37t-61 40t-33 34l-1 1v2q0 6 6 6q138 0 371 55q192 366 374.5 524t383.5 158
+q5 0 14.5 -0.5t38 -5t55 -12t61.5 -24.5t63 -39.5t54 -59t40 -82.5l102 177q2 4 21 42.5t44.5 86.5t61 109.5t84 133.5t100.5 137q66 82 128 141.5t121.5 96.5t92.5 53.5t88 39.5z" />
+    <glyph glyph-name="uniF2B0" unicode="&#xf2b0;" 
+d="M1322 640q0 -45 -5 -76l-236 14l224 -78q-19 -73 -58 -141l-214 103l177 -158q-44 -61 -107 -108l-157 178l103 -215q-61 -37 -140 -59l-79 228l14 -240q-38 -6 -76 -6t-76 6l14 238l-78 -226q-74 19 -140 59l103 215l-157 -178q-59 43 -108 108l178 158l-214 -104
+q-39 69 -58 141l224 79l-237 -14q-5 42 -5 76q0 35 5 77l238 -14l-225 79q19 73 58 140l214 -104l-177 159q46 61 107 108l158 -178l-103 215q67 39 140 58l77 -224l-13 236q36 6 75 6q38 0 76 -6l-14 -237l78 225q74 -19 140 -59l-103 -214l158 178q61 -47 107 -108
+l-177 -159l213 104q37 -62 58 -141l-224 -78l237 14q5 -31 5 -77zM1352 640q0 160 -78.5 295.5t-213 214t-292.5 78.5q-119 0 -227 -46.5t-186.5 -125t-124.5 -187.5t-46 -229q0 -119 46 -228t124.5 -187.5t186.5 -125t227 -46.5q158 0 292.5 78.5t213 214t78.5 294.5z
+M1425 1023v-766l-657 -383l-657 383v766l657 383zM768 -183l708 412v823l-708 411l-708 -411v-823zM1536 1088v-896l-768 -448l-768 448v896l768 448z" />
+    <glyph glyph-name="uniF2B1" unicode="&#xf2b1;" horiz-adv-x="1664" 
+d="M339 1318h691l-26 -72h-665q-110 0 -188.5 -79t-78.5 -189v-771q0 -95 60.5 -169.5t153.5 -93.5q23 -5 98 -5v-72h-45q-140 0 -239.5 100t-99.5 240v771q0 140 99.5 240t239.5 100zM1190 1536h247l-482 -1294q-23 -61 -40.5 -103.5t-45 -98t-54 -93.5t-64.5 -78.5
+t-79.5 -65t-95.5 -41t-116 -18.5v195q163 26 220 182q20 52 20 105q0 54 -20 106l-285 733h228l187 -585zM1664 978v-1111h-795q37 55 45 73h678v1038q0 85 -49.5 155t-129.5 99l25 67q101 -34 163.5 -123.5t62.5 -197.5z" />
+    <glyph glyph-name="uniF2B2" unicode="&#xf2b2;" horiz-adv-x="1792" 
+d="M852 1227q0 -29 -17 -52.5t-45 -23.5t-45 23.5t-17 52.5t17 52.5t45 23.5t45 -23.5t17 -52.5zM688 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50 -21.5t-20 -51.5v-114q0 -30 20.5 -52t49.5 -22q30 0 50.5 22t20.5 52zM860 -149v114q0 30 -20 51.5t-50 21.5t-50.5 -21.5
+t-20.5 -51.5v-114q0 -30 20.5 -52t50.5 -22q29 0 49.5 22t20.5 52zM1034 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50.5 -21.5t-20.5 -51.5v-114q0 -30 20.5 -52t50.5 -22t50.5 22t20.5 52zM1208 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50.5 -21.5t-20.5 -51.5v-114
+q0 -30 20.5 -52t50.5 -22t50.5 22t20.5 52zM1476 535q-84 -160 -232 -259.5t-323 -99.5q-123 0 -229.5 51.5t-178.5 137t-113 197.5t-41 232q0 88 21 174q-104 -175 -104 -390q0 -162 65 -312t185 -251q30 57 91 57q56 0 86 -50q32 50 87 50q56 0 86 -50q32 50 87 50t87 -50
+q30 50 86 50q28 0 52.5 -15.5t37.5 -40.5q112 94 177 231.5t73 287.5zM1326 564q0 75 -72 75q-17 0 -47 -6q-95 -19 -149 -19q-226 0 -226 243q0 86 30 204q-83 -127 -83 -275q0 -150 89 -260.5t235 -110.5q111 0 210 70q13 48 13 79zM884 1223q0 50 -32 89.5t-81 39.5
+t-81 -39.5t-32 -89.5q0 -51 31.5 -90.5t81.5 -39.5t81.5 39.5t31.5 90.5zM1513 884q0 96 -37.5 179t-113 137t-173.5 54q-77 0 -149 -35t-127 -94q-48 -159 -48 -268q0 -104 45.5 -157t147.5 -53q53 0 142 19q36 6 53 6q51 0 77.5 -28t26.5 -80q0 -26 -4 -46
+q75 68 117.5 165.5t42.5 200.5zM1792 667q0 -111 -33.5 -249.5t-93.5 -204.5q-58 -64 -195 -142.5t-228 -104.5l-4 -1v-114q0 -43 -29.5 -75t-72.5 -32q-56 0 -86 50q-32 -50 -87 -50t-87 50q-30 -50 -86 -50q-55 0 -87 50q-30 -50 -86 -50q-47 0 -75 33.5t-28 81.5
+q-90 -68 -198 -68q-118 0 -211 80q54 1 106 20q-113 31 -182 127q32 -7 71 -7q89 0 164 46q-192 192 -240 306q-24 56 -24 160q0 57 9 125.5t31.5 146.5t55 141t86.5 105t120 42q59 0 81 -52q19 29 42 54q2 3 12 13t13 16q10 15 23 38t25 42t28 39q87 111 211.5 177
+t260.5 66q35 0 62 -4q59 64 146 64q83 0 140 -57q5 -5 5 -12q0 -5 -6 -13.5t-12.5 -16t-16 -17l-10.5 -10.5q17 -6 36 -18t19 -24q0 -6 -16 -25q157 -138 197 -378q25 30 60 30q45 0 100 -49q90 -80 90 -279z" />
+    <glyph glyph-name="uniF2B3" unicode="&#xf2b3;" 
+d="M917 631q0 33 -6 64h-362v-132h217q-12 -76 -74.5 -120.5t-142.5 -44.5q-99 0 -169 71.5t-70 170.5t70 170.5t169 71.5q93 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585h109v110
+h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="uniF2B4" unicode="&#xf2b4;" 
+d="M1536 1024v-839q0 -48 -49 -62q-174 -52 -338 -52q-73 0 -215.5 29.5t-227.5 29.5q-164 0 -370 -48v-338h-160v1368q-63 25 -101 81t-38 124q0 91 64 155t155 64t155 -64t64 -155q0 -68 -38 -124t-101 -81v-68q190 44 343 44q99 0 198 -15q14 -2 111.5 -22.5t149.5 -20.5
+q77 0 165 18q11 2 80 21t89 19q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="uniF2B5" unicode="&#xf2b5;" horiz-adv-x="2304" 
+d="M192 384q40 0 56 32t0 64t-56 32t-56 -32t0 -64t56 -32zM1665 442q-10 13 -38.5 50t-41.5 54t-38 49t-42.5 53t-40.5 47t-45 49l-125 -140q-83 -94 -208.5 -92t-205.5 98q-57 69 -56.5 158t58.5 157l177 206q-22 11 -51 16.5t-47.5 6t-56.5 -0.5t-49 -1q-92 0 -158 -66
+l-158 -158h-155v-544q5 0 21 0.5t22 0t19.5 -2t20.5 -4.5t17.5 -8.5t18.5 -13.5l297 -292q115 -111 227 -111q78 0 125 47q57 -20 112.5 8t72.5 85q74 -6 127 44q20 18 36 45.5t14 50.5q10 -10 43 -10q43 0 77 21t49.5 53t12 71.5t-30.5 73.5zM1824 384h96v512h-93l-157 180
+q-66 76 -169 76h-167q-89 0 -146 -67l-209 -243q-28 -33 -28 -75t27 -75q43 -51 110 -52t111 49l193 218q25 23 53.5 21.5t47 -27t8.5 -56.5q16 -19 56 -63t60 -68q29 -36 82.5 -105.5t64.5 -84.5q52 -66 60 -140zM2112 384q40 0 56 32t0 64t-56 32t-56 -32t0 -64t56 -32z
+M2304 960v-640q0 -26 -19 -45t-45 -19h-434q-27 -65 -82 -106.5t-125 -51.5q-33 -48 -80.5 -81.5t-102.5 -45.5q-42 -53 -104.5 -81.5t-128.5 -24.5q-60 -34 -126 -39.5t-127.5 14t-117 53.5t-103.5 81l-287 282h-358q-26 0 -45 19t-19 45v672q0 26 19 45t45 19h421
+q14 14 47 48t47.5 48t44 40t50.5 37.5t51 25.5t62 19.5t68 5.5h117q99 0 181 -56q82 56 181 56h167q35 0 67 -6t56.5 -14.5t51.5 -26.5t44.5 -31t43 -39.5t39 -42t41 -48t41.5 -48.5h355q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="uniF2B6" unicode="&#xf2b6;" horiz-adv-x="1792" 
+d="M1792 882v-978q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v978q0 15 11 24q8 7 39 34.5t41.5 36t45.5 37.5t70 55.5t96 73t143.5 107t192.5 140.5q5 4 52.5 40t71.5 52.5t64 35t69 18.5t69 -18.5t65 -35.5t71 -52t52 -40q110 -80 192.5 -140.5t143.5 -107
+t96 -73t70 -55.5t45.5 -37.5t41.5 -36t39 -34.5q11 -9 11 -24zM1228 297q263 191 345 252q11 8 12.5 20.5t-6.5 23.5l-38 52q-8 11 -21 12.5t-24 -6.5q-231 -169 -343 -250q-5 -3 -52 -39t-71.5 -52.5t-64.5 -35t-69 -18.5t-69 18.5t-64.5 35t-71.5 52.5t-52 39
+q-186 134 -343 250q-11 8 -24 6.5t-21 -12.5l-38 -52q-8 -11 -6.5 -23.5t12.5 -20.5q82 -61 345 -252q10 -8 50 -38t65 -47t64 -39.5t77.5 -33.5t75.5 -11t75.5 11t79 34.5t64.5 39.5t65 47.5t48 36.5z" />
+    <glyph glyph-name="uniF2B7" unicode="&#xf2b7;" horiz-adv-x="1792" 
+d="M1474 623l39 -51q8 -11 6.5 -23.5t-11.5 -20.5q-43 -34 -126.5 -98.5t-146.5 -113t-67 -51.5q-39 -32 -60 -48t-60.5 -41t-76.5 -36.5t-74 -11.5h-1h-1q-37 0 -74 11.5t-76 36.5t-61 41.5t-60 47.5q-5 4 -65 50.5t-143.5 111t-122.5 94.5q-11 8 -12.5 20.5t6.5 23.5
+l37 52q8 11 21.5 13t24.5 -7q94 -73 306 -236q5 -4 43.5 -35t60.5 -46.5t56.5 -32.5t58.5 -17h1h1q24 0 58.5 17t56.5 32.5t60.5 46.5t43.5 35q258 198 313 242q11 8 24 6.5t21 -12.5zM1664 -96v928q-90 83 -159 139q-91 74 -389 304q-3 2 -43 35t-61 48t-56 32.5t-59 17.5
+h-1h-1q-24 0 -59 -17.5t-56 -32.5t-61 -48t-43 -35q-215 -166 -315.5 -245.5t-129.5 -104t-82 -74.5q-14 -12 -21 -19v-928q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 832v-928q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v928q0 56 41 94
+q123 114 350 290.5t233 181.5q36 30 59 47.5t61.5 42t76 36.5t74.5 12h1h1q37 0 74.5 -12t76 -36.5t61.5 -42t59 -47.5q43 -36 156 -122t226 -177t201 -173q41 -38 41 -94z" />
+    <glyph glyph-name="uniF2B8" unicode="&#xf2b8;" 
+d="M330 1l202 -214l-34 236l-216 213zM556 -225l274 218l-11 245l-300 -215zM245 413l227 -213l-48 327l-245 204zM495 189l317 214l-14 324l-352 -200zM843 178l95 -80l-2 239l-103 79q0 -1 1 -8.5t0 -12t-5 -7.5l-78 -52l85 -70q7 -6 7 -88zM138 930l256 -200l-68 465
+l-279 173zM1173 267l15 234l-230 -164l2 -240zM417 722l373 194l-19 441l-423 -163zM1270 357l20 233l-226 142l-2 -105l144 -95q6 -4 4 -9l-7 -119zM1461 496l30 222l-179 -128l-20 -228zM1273 329l-71 49l-8 -117q0 -5 -4 -8l-234 -187q-7 -5 -14 0l-98 83l7 -161
+q0 -5 -4 -8l-293 -234q-4 -2 -6 -2q-8 2 -8 3l-228 242q-4 4 -59 277q-2 7 5 11l61 37q-94 86 -95 92l-72 351q-2 7 6 12l94 45q-133 100 -135 108l-96 466q-2 10 7 13l433 135q5 0 8 -1l317 -153q6 -4 6 -9l20 -463q0 -7 -6 -10l-118 -61l126 -85q5 -2 5 -8l5 -123l121 74
+q5 4 11 0l84 -56l3 110q0 6 5 9l206 126q6 3 11 0l245 -135q4 -4 5 -7t-6.5 -60t-17.5 -124.5t-10 -70.5q0 -5 -4 -7l-191 -153q-6 -5 -13 0z" />
+    <glyph glyph-name="uniF2B9" unicode="&#xf2b9;" horiz-adv-x="1664" 
+d="M1201 298q0 57 -5.5 107t-21 100.5t-39.5 86t-64 58t-91 22.5q-6 -4 -33.5 -20.5t-42.5 -24.5t-40.5 -20t-49 -17t-46.5 -5t-46.5 5t-49 17t-40.5 20t-42.5 24.5t-33.5 20.5q-51 0 -91 -22.5t-64 -58t-39.5 -86t-21 -100.5t-5.5 -107q0 -73 42 -121.5t103 -48.5h576
+q61 0 103 48.5t42 121.5zM1028 892q0 108 -76.5 184t-183.5 76t-183.5 -76t-76.5 -184q0 -107 76.5 -183t183.5 -76t183.5 76t76.5 183zM1664 352v-192q0 -14 -9 -23t-23 -9h-96v-224q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h1216
+q66 0 113 -47t47 -113v-224h96q14 0 23 -9t9 -23v-192q0 -14 -9 -23t-23 -9h-96v-128h96q14 0 23 -9t9 -23v-192q0 -14 -9 -23t-23 -9h-96v-128h96q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="uniF2BA" unicode="&#xf2ba;" horiz-adv-x="1664" 
+d="M1028 892q0 -107 -76.5 -183t-183.5 -76t-183.5 76t-76.5 183q0 108 76.5 184t183.5 76t183.5 -76t76.5 -184zM980 672q46 0 82.5 -17t60 -47.5t39.5 -67t24 -81t11.5 -82.5t3.5 -79q0 -67 -39.5 -118.5t-105.5 -51.5h-576q-66 0 -105.5 51.5t-39.5 118.5q0 48 4.5 93.5
+t18.5 98.5t36.5 91.5t63 64.5t93.5 26h5q7 -4 32 -19.5t35.5 -21t33 -17t37 -16t35 -9t39.5 -4.5t39.5 4.5t35 9t37 16t33 17t35.5 21t32 19.5zM1664 928q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-128h96q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-128h96
+q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-224q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h1216q66 0 113 -47t47 -113v-224h96q13 0 22.5 -9.5t9.5 -22.5v-192zM1408 -96v1472q0 13 -9.5 22.5t-22.5 9.5h-1216
+q-13 0 -22.5 -9.5t-9.5 -22.5v-1472q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5z" />
+    <glyph glyph-name="uniF2BB" unicode="&#xf2bb;" horiz-adv-x="2048" 
+d="M1024 405q0 64 -9 117.5t-29.5 103t-60.5 78t-97 28.5q-6 -4 -30 -18t-37.5 -21.5t-35.5 -17.5t-43 -14.5t-42 -4.5t-42 4.5t-43 14.5t-35.5 17.5t-37.5 21.5t-30 18q-57 0 -97 -28.5t-60.5 -78t-29.5 -103t-9 -117.5t37 -106.5t91 -42.5h512q54 0 91 42.5t37 106.5z
+M867 925q0 94 -66.5 160.5t-160.5 66.5t-160.5 -66.5t-66.5 -160.5t66.5 -160.5t160.5 -66.5t160.5 66.5t66.5 160.5zM1792 416v64q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1792 676v56q0 15 -10.5 25.5t-25.5 10.5h-568
+q-15 0 -25.5 -10.5t-10.5 -25.5v-56q0 -15 10.5 -25.5t25.5 -10.5h568q15 0 25.5 10.5t10.5 25.5zM1792 928v64q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-352v96q0 14 -9 23t-23 9
+h-64q-14 0 -23 -9t-9 -23v-96h-768v96q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-96h-352q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2BC" unicode="&#xf2bc;" horiz-adv-x="2048" 
+d="M1024 405q0 -64 -37 -106.5t-91 -42.5h-512q-54 0 -91 42.5t-37 106.5t9 117.5t29.5 103t60.5 78t97 28.5q6 -4 30 -18t37.5 -21.5t35.5 -17.5t43 -14.5t42 -4.5t42 4.5t43 14.5t35.5 17.5t37.5 21.5t30 18q57 0 97 -28.5t60.5 -78t29.5 -103t9 -117.5zM867 925
+q0 -94 -66.5 -160.5t-160.5 -66.5t-160.5 66.5t-66.5 160.5t66.5 160.5t160.5 66.5t160.5 -66.5t66.5 -160.5zM1792 480v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM1792 732v-56q0 -15 -10.5 -25.5t-25.5 -10.5h-568
+q-15 0 -25.5 10.5t-10.5 25.5v56q0 15 10.5 25.5t25.5 10.5h568q15 0 25.5 -10.5t10.5 -25.5zM1792 992v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM1920 32v1216q0 13 -9.5 22.5t-22.5 9.5h-1728q-13 0 -22.5 -9.5
+t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h352v96q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-96h768v96q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-96h352q13 0 22.5 9.5t9.5 22.5zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-1728q-66 0 -113 47t-47 113v1216q0 66 47 113
+t113 47h1728q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2BD" unicode="&#xf2bd;" horiz-adv-x="1792" 
+d="M1523 197q-22 155 -87.5 257.5t-184.5 118.5q-67 -74 -159.5 -115.5t-195.5 -41.5t-195.5 41.5t-159.5 115.5q-119 -16 -184.5 -118.5t-87.5 -257.5q106 -150 271 -237.5t356 -87.5t356 87.5t271 237.5zM1280 896q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5
+t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1792 640q0 -182 -71 -347.5t-190.5 -286t-285.5 -191.5t-349 -71q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2BE" unicode="&#xf2be;" horiz-adv-x="1792" 
+d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348q0 -181 -70.5 -347t-190.5 -286t-286 -191.5t-349 -71.5t-349 71t-285.5 191.5t-190.5 286t-71 347.5t71 348t191 286t286 191t348 71zM1515 185q149 205 149 455q0 156 -61 298t-164 245t-245 164t-298 61t-298 -61
+t-245 -164t-164 -245t-61 -298q0 -250 149 -455q66 327 306 327q131 -128 313 -128t313 128q240 0 306 -327zM1280 832q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5z" />
+    <glyph glyph-name="uniF2C0" unicode="&#xf2c0;" 
+d="M1201 752q47 -14 89.5 -38t89 -73t79.5 -115.5t55 -172t22 -236.5q0 -154 -100 -263.5t-241 -109.5h-854q-141 0 -241 109.5t-100 263.5q0 131 22 236.5t55 172t79.5 115.5t89 73t89.5 38q-79 125 -79 272q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5
+t198.5 -40.5t163.5 -109.5t109.5 -163.5t40.5 -198.5q0 -147 -79 -272zM768 1408q-159 0 -271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5zM1195 -128q88 0 150.5 71.5t62.5 173.5q0 239 -78.5 377t-225.5 145
+q-145 -127 -336 -127t-336 127q-147 -7 -225.5 -145t-78.5 -377q0 -102 62.5 -173.5t150.5 -71.5h854z" />
+    <glyph glyph-name="uniF2C1" unicode="&#xf2c1;" horiz-adv-x="1280" 
+d="M1024 278q0 -64 -37 -107t-91 -43h-512q-54 0 -91 43t-37 107t9 118t29.5 104t61 78.5t96.5 28.5q80 -75 188 -75t188 75q56 0 96.5 -28.5t61 -78.5t29.5 -104t9 -118zM870 797q0 -94 -67.5 -160.5t-162.5 -66.5t-162.5 66.5t-67.5 160.5t67.5 160.5t162.5 66.5
+t162.5 -66.5t67.5 -160.5zM1152 -96v1376h-1024v-1376q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1280 1376v-1472q0 -66 -47 -113t-113 -47h-960q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h352v-96q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v96h352
+q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2C2" unicode="&#xf2c2;" horiz-adv-x="2048" 
+d="M896 324q0 54 -7.5 100.5t-24.5 90t-51 68.5t-81 25q-64 -64 -156 -64t-156 64q-47 0 -81 -25t-51 -68.5t-24.5 -90t-7.5 -100.5q0 -55 31.5 -93.5t75.5 -38.5h426q44 0 75.5 38.5t31.5 93.5zM768 768q0 80 -56 136t-136 56t-136 -56t-56 -136t56 -136t136 -56t136 56
+t56 136zM1792 288v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1408 544v64q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1792 544v64q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23
+v-64q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1792 800v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM128 1152h1792v96q0 14 -9 23t-23 9h-1728q-14 0 -23 -9t-9 -23v-96zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-1728
+q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2C3" unicode="&#xf2c3;" horiz-adv-x="2048" 
+d="M896 324q0 -55 -31.5 -93.5t-75.5 -38.5h-426q-44 0 -75.5 38.5t-31.5 93.5q0 54 7.5 100.5t24.5 90t51 68.5t81 25q64 -64 156 -64t156 64q47 0 81 -25t51 -68.5t24.5 -90t7.5 -100.5zM768 768q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136z
+M1792 352v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1408 608v-64q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h320q14 0 23 -9t9 -23zM1792 608v-64q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v64
+q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 864v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1920 32v1120h-1792v-1120q0 -13 9.5 -22.5t22.5 -9.5h1728q13 0 22.5 9.5t9.5 22.5zM2048 1248v-1216q0 -66 -47 -113t-113 -47
+h-1728q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2C4" unicode="&#xf2c4;" horiz-adv-x="1792" 
+d="M1255 749q0 318 -105 474.5t-330 156.5q-222 0 -326 -157t-104 -474q0 -316 104 -471.5t326 -155.5q74 0 131 17q-22 43 -39 73t-44 65t-53.5 56.5t-63 36t-77.5 14.5q-46 0 -79 -16l-49 97q105 91 276 91q132 0 215.5 -54t150.5 -155q67 149 67 402zM1645 117h117
+q3 -27 -2 -67t-26.5 -95t-58 -100.5t-107 -78t-162.5 -32.5q-71 0 -130.5 19t-105.5 56t-79 78t-66 96q-97 -27 -205 -27q-150 0 -292.5 58t-253 158.5t-178 249t-67.5 317.5q0 170 67.5 319.5t178.5 250.5t253.5 159t291.5 58q121 0 238.5 -36t217 -106t176 -164.5
+t119.5 -219t43 -261.5q0 -190 -80.5 -347.5t-218.5 -264.5q47 -70 93.5 -106.5t104.5 -36.5q61 0 94 37.5t38 85.5z" />
+    <glyph glyph-name="uniF2C5" unicode="&#xf2c5;" horiz-adv-x="2304" 
+d="M453 -101q0 -21 -16 -37.5t-37 -16.5q-1 0 -13 3q-63 15 -162 140q-225 284 -225 676q0 341 213 614q39 51 95 103.5t94 52.5q19 0 35 -13.5t16 -32.5q0 -27 -63 -90q-98 -102 -147 -184q-119 -199 -119 -449q0 -281 123 -491q50 -85 136 -173q2 -3 14.5 -16t19.5 -21
+t17 -20.5t14.5 -23.5t4.5 -21zM1796 33q0 -29 -17.5 -48.5t-46.5 -19.5h-1081q-26 0 -45 19t-19 45q0 29 17.5 48.5t46.5 19.5h1081q26 0 45 -19t19 -45zM1581 644q0 -134 -67 -233q-25 -38 -69.5 -78.5t-83.5 -60.5q-16 -10 -27 -10q-7 0 -15 6t-8 12q0 9 19 30t42 46
+t42 67.5t19 88.5q0 76 -35 130q-29 42 -46 42q-3 0 -3 -5q0 -12 7.5 -35.5t7.5 -36.5q0 -22 -21.5 -35t-44.5 -13q-66 0 -66 76q0 15 1.5 44t1.5 44q0 25 -10 46q-13 25 -42 53.5t-51 28.5q-5 0 -7 -0.5t-3.5 -2.5t-1.5 -6q0 -2 16 -26t16 -54q0 -37 -19 -68t-46 -54
+t-53.5 -46t-45.5 -54t-19 -68q0 -98 42 -160q29 -43 79 -63q16 -5 17 -10q1 -2 1 -5q0 -16 -18 -16q-6 0 -33 11q-119 43 -195 139.5t-76 218.5q0 55 24.5 115.5t60 115t70.5 108.5t59.5 113.5t24.5 111.5q0 53 -25 94q-29 48 -56 64q-19 9 -19 21q0 20 41 20q50 0 110 -29
+q41 -19 71 -44.5t49.5 -51t33.5 -62.5t22 -69t16 -80q0 -1 3 -17.5t4.5 -25t5.5 -25t9 -27t11 -21.5t14.5 -16.5t18.5 -5.5q23 0 37 14t14 37q0 25 -20 67t-20 52t10 10q27 0 93 -70q72 -76 102.5 -156t30.5 -186zM2304 615q0 -274 -138 -503q-19 -32 -48 -72t-68 -86.5
+t-81 -77t-74 -30.5q-16 0 -31 15.5t-15 31.5q0 15 29 50.5t68.5 77t48.5 52.5q183 230 183 531q0 131 -20.5 235t-72.5 211q-58 119 -163 228q-2 3 -13 13.5t-16.5 16.5t-15 17.5t-15 20t-9.5 18.5t-4 19q0 19 16 35.5t35 16.5q70 0 196 -169q98 -131 146 -273t60 -314
+q2 -42 2 -64z" />
+    <glyph glyph-name="uniF2C6" unicode="&#xf2c6;" horiz-adv-x="1792" 
+d="M1189 229l147 693q9 44 -10.5 63t-51.5 7l-864 -333q-29 -11 -39.5 -25t-2.5 -26.5t32 -19.5l221 -69l513 323q21 14 32 6q7 -5 -4 -15l-415 -375v0v0l-16 -228q23 0 45 22l108 104l224 -165q64 -36 81 38zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71
+t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2C7" unicode="&#xf2c7;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v907h128v-907q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
+t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
+v128h192z" />
+    <glyph glyph-name="uniF2C8" unicode="&#xf2c8;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v651h128v-651q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
+t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
+v128h192z" />
+    <glyph glyph-name="uniF2C9" unicode="&#xf2c9;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v395h128v-395q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
+t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
+v128h192z" />
+    <glyph glyph-name="uniF2CA" unicode="&#xf2ca;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v139h128v-139q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
+t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
+v128h192z" />
+    <glyph glyph-name="uniF2CB" unicode="&#xf2cb;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 79 56 135.5t136 56.5t136 -56.5t56 -135.5zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5t93.5 226.5z
+M896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192v128h192z" />
+    <glyph glyph-name="uniF2CC" unicode="&#xf2cc;" horiz-adv-x="1920" 
+d="M1433 1287q10 -10 10 -23t-10 -23l-626 -626q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l44 44q-72 91 -81.5 207t46.5 215q-74 71 -176 71q-106 0 -181 -75t-75 -181v-1280h-256v1280q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5q106 0 201 -41
+t166 -115q94 39 197 24.5t185 -79.5l44 44q10 10 23 10t23 -10zM1344 1024q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1600 896q-26 0 -45 19t-19 45t19 45t45 19t45 -19t19 -45t-19 -45t-45 -19zM1856 1024q26 0 45 -19t19 -45t-19 -45t-45 -19
+t-45 19t-19 45t19 45t45 19zM1216 896q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1408 832q0 26 19 45t45 19t45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45zM1728 896q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 768
+q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1344 640q-26 0 -45 19t-19 45t19 45t45 19t45 -19t19 -45t-19 -45t-45 -19zM1600 768q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1216 512q-26 0 -45 19t-19 45t19 45t45 19t45 -19
+t19 -45t-19 -45t-45 -19zM1472 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 512q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1344 512q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1216 384
+q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 256q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19z" />
+    <glyph glyph-name="uniF2CD" unicode="&#xf2cd;" horiz-adv-x="1792" 
+d="M1664 448v-192q0 -169 -128 -286v-194q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v118q-63 -22 -128 -22h-768q-65 0 -128 22v-110q0 -17 -9.5 -28.5t-22.5 -11.5h-64q-13 0 -22.5 11.5t-9.5 28.5v186q-128 117 -128 286v192h1536zM704 864q0 -14 -9 -23t-23 -9t-23 9
+t-9 23t9 23t23 9t23 -9t9 -23zM768 928q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM704 992q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 992q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM768 1056q0 -14 -9 -23t-23 -9t-23 9
+t-9 23t9 23t23 9t23 -9t9 -23zM704 1120q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1792 608v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v640q0 106 75 181t181 75q108 0 184 -78q46 19 98 12t93 -39l22 22q11 11 22 0l42 -42
+q11 -11 0 -22l-314 -314q-11 -11 -22 0l-42 42q-11 11 0 22l22 22q-36 46 -40.5 104t23.5 108q-37 35 -88 35q-53 0 -90.5 -37.5t-37.5 -90.5v-640h1504q14 0 23 -9t9 -23zM896 1056q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 1120q0 -14 -9 -23t-23 -9
+t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM768 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM960 1120q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM896 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 1248q0 -14 -9 -23
+t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1024 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM960 1248q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1088 1248q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23z" />
+    <glyph glyph-name="uniF2CE" unicode="&#xf2ce;" 
+d="M994 344q0 -86 -17 -197q-31 -215 -55 -313q-22 -90 -152 -90t-152 90q-24 98 -55 313q-17 110 -17 197q0 168 224 168t224 -168zM1536 768q0 -240 -134 -434t-350 -280q-8 -3 -15 3t-6 15q7 48 10 66q4 32 6 47q1 9 9 12q159 81 255.5 234t96.5 337q0 180 -91 330.5
+t-247 234.5t-337 74q-124 -7 -237 -61t-193.5 -140.5t-128 -202t-46.5 -240.5q1 -184 99 -336.5t257 -231.5q7 -3 9 -12q3 -21 6 -45q1 -9 5 -32.5t6 -35.5q1 -9 -6.5 -15t-15.5 -2q-148 58 -261 169.5t-173.5 264t-52.5 319.5q7 143 66 273.5t154.5 227t225 157.5t272.5 70
+q164 10 315.5 -46.5t261 -160.5t175 -250.5t65.5 -308.5zM994 800q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5zM1282 768q0 -122 -53.5 -228.5t-146.5 -177.5q-8 -6 -16 -2t-10 14q-6 52 -29 92q-7 10 3 20
+q58 54 91 127t33 155q0 111 -58.5 204t-157.5 141.5t-212 36.5q-133 -15 -229 -113t-109 -231q-10 -92 23.5 -176t98.5 -144q10 -10 3 -20q-24 -41 -29 -93q-2 -9 -10 -13t-16 2q-95 74 -148.5 183t-51.5 234q3 131 69 244t177 181.5t241 74.5q144 7 268 -60t196.5 -187.5
+t72.5 -263.5z" />
+    <glyph glyph-name="uniF2D0" unicode="&#xf2d0;" horiz-adv-x="1792" 
+d="M256 128h1280v768h-1280v-768zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D1" unicode="&#xf2d1;" horiz-adv-x="1792" 
+d="M1792 224v-192q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D2" unicode="&#xf2d2;" horiz-adv-x="2048" 
+d="M256 0h768v512h-768v-512zM1280 512h512v768h-768v-256h96q66 0 113 -47t47 -113v-352zM2048 1376v-960q0 -66 -47 -113t-113 -47h-608v-352q0 -66 -47 -113t-113 -47h-960q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h608v352q0 66 47 113t113 47h960q66 0 113 -47
+t47 -113z" />
+    <glyph glyph-name="uniF2D3" unicode="&#xf2d3;" horiz-adv-x="1792" 
+d="M1175 215l146 146q10 10 10 23t-10 23l-233 233l233 233q10 10 10 23t-10 23l-146 146q-10 10 -23 10t-23 -10l-233 -233l-233 233q-10 10 -23 10t-23 -10l-146 -146q-10 -10 -10 -23t10 -23l233 -233l-233 -233q-10 -10 -10 -23t10 -23l146 -146q10 -10 23 -10t23 10
+l233 233l233 -233q10 -10 23 -10t23 10zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D4" unicode="&#xf2d4;" horiz-adv-x="1792" 
+d="M1257 425l-146 -146q-10 -10 -23 -10t-23 10l-169 169l-169 -169q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l169 169l-169 169q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l169 -169l169 169q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23
+l-169 -169l169 -169q10 -10 10 -23t-10 -23zM256 128h1280v1024h-1280v-1024zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D5" unicode="&#xf2d5;" horiz-adv-x="1792" 
+d="M1070 358l306 564h-654l-306 -564h654zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2D6" unicode="&#xf2d6;" horiz-adv-x="1794" 
+d="M1291 1060q-15 17 -35 8.5t-26 -28.5t5 -38q14 -17 40 -14.5t34 20.5t-18 52zM895 814q-8 -8 -19.5 -8t-18.5 8q-8 8 -8 19t8 18q7 8 18.5 8t19.5 -8q7 -7 7 -18t-7 -19zM1060 740l-35 -35q-12 -13 -29.5 -13t-30.5 13l-38 38q-12 13 -12 30t12 30l35 35q12 12 29.5 12
+t30.5 -12l38 -39q12 -12 12 -29.5t-12 -29.5zM951 870q-7 -8 -18.5 -8t-19.5 8q-7 8 -7 19t7 19q8 8 19 8t19 -8t8 -19t-8 -19zM1354 968q-34 -64 -107.5 -85.5t-127.5 16.5q-38 28 -61 66.5t-21 87.5t39 92t75.5 53t70.5 -5t70 -51q2 -2 13 -12.5t14.5 -13.5t13 -13.5
+t12.5 -15.5t10 -15.5t8.5 -18t4 -18.5t1 -21t-5 -22t-9.5 -24zM1555 486q3 20 -8.5 34.5t-27.5 21.5t-33 17t-23 20q-40 71 -84 98.5t-113 11.5q19 13 40 18.5t33 4.5l12 -1q2 45 -34 90q6 20 6.5 40.5t-2.5 30.5l-3 10q43 24 71 65t34 91q10 84 -43 150.5t-137 76.5
+q-60 7 -114 -18.5t-82 -74.5q-30 -51 -33.5 -101t14.5 -87t43.5 -64t56.5 -42q-45 4 -88 36t-57 88q-28 108 32 222q-16 21 -29 32q-50 0 -89 -19q19 24 42 37t36 14l13 1q0 50 -13 78q-10 21 -32.5 28.5t-47 -3.5t-37.5 -40q2 4 4 7q-7 -28 -6.5 -75.5t19 -117t48.5 -122.5
+q-25 -14 -47 -36q-35 -16 -85.5 -70.5t-84.5 -101.5l-33 -46q-90 -34 -181 -125.5t-75 -162.5q1 -16 11 -27q-15 -12 -30 -30q-21 -25 -21 -54t21.5 -40t63.5 6q41 19 77 49.5t55 60.5q-2 2 -6.5 5t-20.5 7.5t-33 3.5q23 5 51 12.5t40 10t27.5 6t26 4t23.5 0.5q14 -7 22 34
+q7 37 7 90q0 102 -40 150q106 -103 101 -219q-1 -29 -15 -50t-27 -27l-13 -6q-4 -7 -19 -32t-26 -45.5t-26.5 -52t-25 -61t-17 -63t-6.5 -66.5t10 -63q-35 54 -37 80q-22 -24 -34.5 -39t-33.5 -42t-30.5 -46t-16.5 -41t-0.5 -38t25.5 -27q45 -25 144 64t190.5 221.5
+t122.5 228.5q86 52 145 115.5t86 119.5q47 -93 154 -178q104 -83 167 -80q39 2 46 43zM1794 640q0 -182 -71 -348t-191 -286t-286.5 -191t-348.5 -71t-348.5 71t-286.5 191t-191 286t-71 348t71 348t191 286t286.5 191t348.5 71t348.5 -71t286.5 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2D7" unicode="&#xf2d7;" 
+d="M518 1353v-655q103 -1 191.5 1.5t125.5 5.5l37 3q68 2 90.5 24.5t39.5 94.5l33 142h103l-14 -322l7 -319h-103l-29 127q-15 68 -45 93t-84 26q-87 8 -352 8v-556q0 -78 43.5 -115.5t133.5 -37.5h357q35 0 59.5 2t55 7.5t54 18t48.5 32t46 50.5t39 73l93 216h89
+q-6 -37 -31.5 -252t-30.5 -276q-146 5 -263.5 8t-162.5 4h-44h-628l-376 -12v102l127 25q67 13 91.5 37t25.5 79l8 643q3 402 -8 645q-2 61 -25.5 84t-91.5 36l-127 24v102l376 -12h702q139 0 374 27q-6 -68 -14 -194.5t-12 -219.5l-5 -92h-93l-32 124q-31 121 -74 179.5
+t-113 58.5h-548q-28 0 -35.5 -8.5t-7.5 -30.5z" />
+    <glyph glyph-name="uniF2D8" unicode="&#xf2d8;" 
+d="M922 739v-182q0 -4 0.5 -15t0 -15l-1.5 -12t-3.5 -11.5t-6.5 -7.5t-11 -5.5t-16 -1.5v309q9 0 16 -1t11 -5t6.5 -5.5t3.5 -9.5t1 -10.5v-13.5v-14zM1238 643v-121q0 -1 0.5 -12.5t0 -15.5t-2.5 -11.5t-7.5 -10.5t-13.5 -3q-9 0 -14 9q-4 10 -4 165v7v8.5v9t1.5 8.5l3.5 7
+t5 5.5t8 1.5q6 0 10 -1.5t6.5 -4.5t4 -6t2 -8.5t0.5 -8v-9.5v-9zM180 407h122v472h-122v-472zM614 407h106v472h-159l-28 -221q-20 148 -32 221h-158v-472h107v312l45 -312h76l43 319v-319zM1039 712q0 67 -5 90q-3 16 -11 28.5t-17 20.5t-25 14t-26.5 8.5t-31 4t-29 1.5
+h-29.5h-12h-91v-472h56q169 -1 197 24.5t25 180.5q-1 62 -1 100zM1356 515v133q0 29 -2 45t-9.5 33.5t-24.5 25t-46 7.5q-46 0 -77 -34v154h-117v-472h110l7 30q30 -36 77 -36q50 0 66 30.5t16 83.5zM1536 1248v-1216q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113
+v1216q0 66 47 113t113 47h1216q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D9" unicode="&#xf2d9;" horiz-adv-x="2176" 
+d="M1143 -197q-6 1 -11 4q-13 8 -36 23t-86 65t-116.5 104.5t-112 140t-89.5 172.5q-17 3 -175 37q66 -213 235 -362t391 -184zM502 409l168 -28q-25 76 -41 167.5t-19 145.5l-4 53q-84 -82 -121 -224q5 -65 17 -114zM612 1018q-43 -64 -77 -148q44 46 74 68zM2049 584
+q0 161 -62 307t-167.5 252t-250.5 168.5t-304 62.5q-147 0 -281 -52.5t-240 -148.5q-30 -58 -45 -160q60 51 143 83.5t158.5 43t143 13.5t108.5 -1l40 -3q33 -1 53 -15.5t24.5 -33t6.5 -37t-1 -28.5q-126 11 -227.5 0.5t-183 -43.5t-142.5 -71.5t-131 -98.5
+q4 -36 11.5 -92.5t35.5 -178t62 -179.5q123 -6 247.5 14.5t214.5 53.5t162.5 67t109.5 59l37 24q22 16 39.5 20.5t30.5 -5t17 -34.5q14 -97 -39 -121q-208 -97 -467 -134q-135 -20 -317 -16q41 -96 110 -176.5t137 -127t130.5 -79t101.5 -43.5l39 -12q143 -23 263 15
+q195 99 314 289t119 418zM2123 621q-14 -135 -40 -212q-70 -208 -181.5 -346.5t-318.5 -253.5q-48 -33 -82 -44q-72 -26 -163 -16q-36 -3 -73 -3q-283 0 -504.5 173t-295.5 442q-1 0 -4 0.5t-5 0.5q-6 -50 2.5 -112.5t26 -115t36 -98t31.5 -71.5l14 -26q8 -12 54 -82
+q-71 38 -124.5 106.5t-78.5 140t-39.5 137t-17.5 107.5l-2 42q-5 2 -33.5 12.5t-48.5 18t-53 20.5t-57.5 25t-50 25.5t-42.5 27t-25 25.5q19 -10 50.5 -25.5t113 -45.5t145.5 -38l2 32q11 149 94 290q41 202 176 365q28 115 81 214q15 28 32 45t49 32q158 74 303.5 104
+t302 11t306.5 -97q220 -115 333 -336t87 -474z" />
+    <glyph glyph-name="uniF2DA" unicode="&#xf2da;" horiz-adv-x="1792" 
+d="M1341 752q29 44 -6.5 129.5t-121.5 142.5q-58 39 -125.5 53.5t-118 4.5t-68.5 -37q-12 -23 -4.5 -28t42.5 -10q23 -3 38.5 -5t44.5 -9.5t56 -17.5q36 -13 67.5 -31.5t53 -37t40 -38.5t30.5 -38t22 -34.5t16.5 -28.5t12 -18.5t10.5 -6t11 9.5zM1704 178
+q-52 -127 -148.5 -220t-214.5 -141.5t-253 -60.5t-266 13.5t-251 91t-210 161.5t-141.5 235.5t-46.5 303.5q1 41 8.5 84.5t12.5 64t24 80.5t23 73q-51 -208 1 -397t173 -318t291 -206t346 -83t349 74.5t289 244.5q20 27 18 14q0 -4 -4 -14zM1465 627q0 -104 -40.5 -199
+t-108.5 -164t-162 -109.5t-198 -40.5t-198 40.5t-162 109.5t-108.5 164t-40.5 199t40.5 199t108.5 164t162 109.5t198 40.5t198 -40.5t162 -109.5t108.5 -164t40.5 -199zM1752 915q-65 147 -180.5 251t-253 153.5t-292 53.5t-301 -36.5t-275.5 -129t-220 -211.5t-131 -297
+t-10 -373q-49 161 -51.5 311.5t35.5 272.5t109 227t165.5 180.5t207 126t232 71t242.5 9t236 -54t216 -124.5t178 -197q33 -50 62 -121t31 -112zM1690 573q12 244 -136.5 416t-396.5 240q-8 0 -10 5t24 8q125 -4 230 -50t173 -120t116 -168.5t58.5 -199t-1 -208
+t-61.5 -197.5t-122.5 -167t-185 -117.5t-248.5 -46.5q108 30 201.5 80t174 123t129.5 176.5t55 225.5z" />
+    <glyph glyph-name="uniF2DB" unicode="&#xf2db;" 
+d="M192 256v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 512v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 768v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16
+q0 16 16 16h112zM192 1024v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 1280v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM1280 1440v-1472q0 -40 -28 -68t-68 -28h-832q-40 0 -68 28
+t-28 68v1472q0 40 28 68t68 28h832q40 0 68 -28t28 -68zM1536 208v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 464v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 720v-32
+q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 976v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 1232v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16
+h48q16 0 16 -16z" />
+    <glyph glyph-name="uniF2DC" unicode="&#xf2dc;" horiz-adv-x="1664" 
+d="M1566 419l-167 -33l186 -107q23 -13 29.5 -38.5t-6.5 -48.5q-14 -23 -39 -29.5t-48 6.5l-186 106l55 -160q13 -38 -12 -63.5t-60.5 -20.5t-48.5 42l-102 300l-271 156v-313l208 -238q16 -18 17 -39t-11 -36.5t-28.5 -25t-37 -5.5t-36.5 22l-112 128v-214q0 -26 -19 -45
+t-45 -19t-45 19t-19 45v214l-112 -128q-16 -18 -36.5 -22t-37 5.5t-28.5 25t-11 36.5t17 39l208 238v313l-271 -156l-102 -300q-13 -37 -48.5 -42t-60.5 20.5t-12 63.5l55 160l-186 -106q-23 -13 -48 -6.5t-39 29.5q-13 23 -6.5 48.5t29.5 38.5l186 107l-167 33
+q-29 6 -42 29t-8.5 46.5t25.5 40t50 10.5l310 -62l271 157l-271 157l-310 -62q-4 -1 -13 -1q-27 0 -44 18t-19 40t11 43t40 26l167 33l-186 107q-23 13 -29.5 38.5t6.5 48.5t39 30t48 -7l186 -106l-55 160q-13 38 12 63.5t60.5 20.5t48.5 -42l102 -300l271 -156v313
+l-208 238q-16 18 -17 39t11 36.5t28.5 25t37 5.5t36.5 -22l112 -128v214q0 26 19 45t45 19t45 -19t19 -45v-214l112 128q16 18 36.5 22t37 -5.5t28.5 -25t11 -36.5t-17 -39l-208 -238v-313l271 156l102 300q13 37 48.5 42t60.5 -20.5t12 -63.5l-55 -160l186 106
+q23 13 48 6.5t39 -29.5q13 -23 6.5 -48.5t-29.5 -38.5l-186 -107l167 -33q27 -5 40 -26t11 -43t-19 -40t-44 -18q-9 0 -13 1l-310 62l-271 -157l271 -157l310 62q29 6 50 -10.5t25.5 -40t-8.5 -46.5t-42 -29z" />
+    <glyph glyph-name="uniF2DD" unicode="&#xf2dd;" horiz-adv-x="1792" 
+d="M1473 607q7 118 -33 226.5t-113 189t-177 131t-221 57.5q-116 7 -225.5 -32t-192 -110.5t-135 -175t-59.5 -220.5q-7 -118 33 -226.5t113 -189t177.5 -131t221.5 -57.5q155 -9 293 59t224 195.5t94 283.5zM1792 1536l-349 -348q120 -117 180.5 -272t50.5 -321
+q-11 -183 -102 -339t-241 -255.5t-332 -124.5l-999 -132l347 347q-120 116 -180.5 271.5t-50.5 321.5q11 184 102 340t241.5 255.5t332.5 124.5q167 22 500 66t500 66z" />
+    <glyph glyph-name="uniF2DE" unicode="&#xf2de;" horiz-adv-x="1792" 
+d="M948 508l163 -329h-51l-175 350l-171 -350h-49l179 374l-78 33l21 49l240 -102l-21 -50zM563 1100l304 -130l-130 -304l-304 130zM907 915l240 -103l-103 -239l-239 102zM1188 765l191 -81l-82 -190l-190 81zM1680 640q0 159 -62 304t-167.5 250.5t-250.5 167.5t-304 62
+t-304 -62t-250.5 -167.5t-167.5 -250.5t-62 -304t62 -304t167.5 -250.5t250.5 -167.5t304 -62t304 62t250.5 167.5t167.5 250.5t62 304zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71
+t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2E0" unicode="&#xf2e0;" horiz-adv-x="1920" 
+d="M1334 302q-4 24 -27.5 34t-49.5 10.5t-48.5 12.5t-25.5 38q-5 47 33 139.5t75 181t32 127.5q-14 101 -117 103q-45 1 -75 -16l-3 -2l-5 -2.5t-4.5 -2t-5 -2t-5 -0.5t-6 1.5t-6 3.5t-6.5 5q-3 2 -9 8.5t-9 9t-8.5 7.5t-9.5 7.5t-9.5 5.5t-11 4.5t-11.5 2.5q-30 5 -48 -3
+t-45 -31q-1 -1 -9 -8.5t-12.5 -11t-15 -10t-16.5 -5.5t-17 3q-54 27 -84 40q-41 18 -94 -5t-76 -65q-16 -28 -41 -98.5t-43.5 -132.5t-40 -134t-21.5 -73q-22 -69 18.5 -119t110.5 -46q30 2 50.5 15t38.5 46q7 13 79 199.5t77 194.5q6 11 21.5 18t29.5 0q27 -15 21 -53
+q-2 -18 -51 -139.5t-50 -132.5q-6 -38 19.5 -56.5t60.5 -7t55 49.5q4 8 45.5 92t81.5 163.5t46 88.5q20 29 41 28q29 0 25 -38q-2 -16 -65.5 -147.5t-70.5 -159.5q-12 -53 13 -103t74 -74q17 -9 51 -15.5t71.5 -8t62.5 14t20 48.5zM383 86q3 -15 -5 -27.5t-23 -15.5
+q-14 -3 -26.5 5t-15.5 23q-3 14 5 27t22 16t27 -5t16 -23zM953 -177q12 -17 8.5 -37.5t-20.5 -32.5t-37.5 -8t-32.5 21q-11 17 -7.5 37.5t20.5 32.5t37.5 8t31.5 -21zM177 635q-18 -27 -49.5 -33t-57.5 13q-26 18 -32 50t12 58q18 27 49.5 33t57.5 -12q26 -19 32 -50.5
+t-12 -58.5zM1467 -42q19 -28 13 -61.5t-34 -52.5t-60.5 -13t-51.5 34t-13 61t33 53q28 19 60.5 13t52.5 -34zM1579 562q69 -113 42.5 -244.5t-134.5 -207.5q-90 -63 -199 -60q-20 -80 -84.5 -127t-143.5 -44.5t-140 57.5q-12 -9 -13 -10q-103 -71 -225 -48.5t-193 126.5
+q-50 73 -53 164q-83 14 -142.5 70.5t-80.5 128t-2 152t81 138.5q-36 60 -38 128t24.5 125t79.5 98.5t121 50.5q32 85 99 148t146.5 91.5t168 17t159.5 -66.5q72 21 140 17.5t128.5 -36t104.5 -80t67.5 -115t17.5 -140.5q52 -16 87 -57t45.5 -89t-5.5 -99.5t-58 -87.5z
+M455 1222q14 -20 9.5 -44.5t-24.5 -38.5q-19 -14 -43.5 -9.5t-37.5 24.5q-14 20 -9.5 44.5t24.5 38.5q19 14 43.5 9.5t37.5 -24.5zM614 1503q4 -16 -5 -30.5t-26 -18.5t-31 5.5t-18 26.5q-3 17 6.5 31t25.5 18q17 4 31 -5.5t17 -26.5zM1800 555q4 -20 -6.5 -37t-30.5 -21
+q-19 -4 -36 6.5t-21 30.5t6.5 37t30.5 22q20 4 36.5 -7.5t20.5 -30.5zM1136 1448q16 -27 8.5 -58.5t-35.5 -47.5q-27 -16 -57.5 -8.5t-46.5 34.5q-16 28 -8.5 59t34.5 48t58 9t47 -36zM1882 792q4 -15 -4 -27.5t-23 -16.5q-15 -3 -27.5 5.5t-15.5 22.5q-3 15 5 28t23 16
+q14 3 26.5 -5t15.5 -23zM1691 1033q15 -22 10.5 -49t-26.5 -43q-22 -15 -49 -10t-42 27t-10 49t27 43t48.5 11t41.5 -28z" />
+    <glyph glyph-name="uniF2E1" unicode="&#xf2e1;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E2" unicode="&#xf2e2;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E3" unicode="&#xf2e3;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E4" unicode="&#xf2e4;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E5" unicode="&#xf2e5;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E6" unicode="&#xf2e6;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E7" unicode="&#xf2e7;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="_698" unicode="&#xf2e8;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E9" unicode="&#xf2e9;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2EA" unicode="&#xf2ea;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2EB" unicode="&#xf2eb;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2EC" unicode="&#xf2ec;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2ED" unicode="&#xf2ed;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2EE" unicode="&#xf2ee;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="lessequal" unicode="&#xf500;" horiz-adv-x="1792" 
+ />
+  </font>
+</defs></svg>
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/fontawesome-webfont.ttf b/themes/src/main/node_modules/rcue/dist/fonts/fontawesome-webfont.ttf
new file mode 100644
index 0000000..35acda2
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/fontawesome-webfont.ttf differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/fontawesome-webfont.woff b/themes/src/main/node_modules/rcue/dist/fonts/fontawesome-webfont.woff
new file mode 100644
index 0000000..400014a
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/fontawesome-webfont.woff differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/fontawesome-webfont.woff2 b/themes/src/main/node_modules/rcue/dist/fonts/fontawesome-webfont.woff2
new file mode 100644
index 0000000..4d13fc6
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/fontawesome-webfont.woff2 differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.eot b/themes/src/main/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.eot
new file mode 100644
index 0000000..b93a495
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.eot differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.svg b/themes/src/main/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.svg
new file mode 100644
index 0000000..94fb549
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.svg
@@ -0,0 +1,288 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="glyphicons_halflingsregular" horiz-adv-x="1200" >
+<font-face units-per-em="1200" ascent="960" descent="-240" />
+<missing-glyph horiz-adv-x="500" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="400" />
+<glyph unicode=" " />
+<glyph unicode="*" d="M600 1100q15 0 34 -1.5t30 -3.5l11 -1q10 -2 17.5 -10.5t7.5 -18.5v-224l158 158q7 7 18 8t19 -6l106 -106q7 -8 6 -19t-8 -18l-158 -158h224q10 0 18.5 -7.5t10.5 -17.5q6 -41 6 -75q0 -15 -1.5 -34t-3.5 -30l-1 -11q-2 -10 -10.5 -17.5t-18.5 -7.5h-224l158 -158 q7 -7 8 -18t-6 -19l-106 -106q-8 -7 -19 -6t-18 8l-158 158v-224q0 -10 -7.5 -18.5t-17.5 -10.5q-41 -6 -75 -6q-15 0 -34 1.5t-30 3.5l-11 1q-10 2 -17.5 10.5t-7.5 18.5v224l-158 -158q-7 -7 -18 -8t-19 6l-106 106q-7 8 -6 19t8 18l158 158h-224q-10 0 -18.5 7.5 t-10.5 17.5q-6 41 -6 75q0 15 1.5 34t3.5 30l1 11q2 10 10.5 17.5t18.5 7.5h224l-158 158q-7 7 -8 18t6 19l106 106q8 7 19 6t18 -8l158 -158v224q0 10 7.5 18.5t17.5 10.5q41 6 75 6z" />
+<glyph unicode="+" d="M450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-350h350q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-350v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v350h-350q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5 h350v350q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xa0;" />
+<glyph unicode="&#xa5;" d="M825 1100h250q10 0 12.5 -5t-5.5 -13l-364 -364q-6 -6 -11 -18h268q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-100h275q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-174q0 -11 -7.5 -18.5t-18.5 -7.5h-148q-11 0 -18.5 7.5t-7.5 18.5v174 h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h125v100h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h118q-5 12 -11 18l-364 364q-8 8 -5.5 13t12.5 5h250q25 0 43 -18l164 -164q8 -8 18 -8t18 8l164 164q18 18 43 18z" />
+<glyph unicode="&#x2000;" horiz-adv-x="650" />
+<glyph unicode="&#x2001;" horiz-adv-x="1300" />
+<glyph unicode="&#x2002;" horiz-adv-x="650" />
+<glyph unicode="&#x2003;" horiz-adv-x="1300" />
+<glyph unicode="&#x2004;" horiz-adv-x="433" />
+<glyph unicode="&#x2005;" horiz-adv-x="325" />
+<glyph unicode="&#x2006;" horiz-adv-x="216" />
+<glyph unicode="&#x2007;" horiz-adv-x="216" />
+<glyph unicode="&#x2008;" horiz-adv-x="162" />
+<glyph unicode="&#x2009;" horiz-adv-x="260" />
+<glyph unicode="&#x200a;" horiz-adv-x="72" />
+<glyph unicode="&#x202f;" horiz-adv-x="260" />
+<glyph unicode="&#x205f;" horiz-adv-x="325" />
+<glyph unicode="&#x20ac;" d="M744 1198q242 0 354 -189q60 -104 66 -209h-181q0 45 -17.5 82.5t-43.5 61.5t-58 40.5t-60.5 24t-51.5 7.5q-19 0 -40.5 -5.5t-49.5 -20.5t-53 -38t-49 -62.5t-39 -89.5h379l-100 -100h-300q-6 -50 -6 -100h406l-100 -100h-300q9 -74 33 -132t52.5 -91t61.5 -54.5t59 -29 t47 -7.5q22 0 50.5 7.5t60.5 24.5t58 41t43.5 61t17.5 80h174q-30 -171 -128 -278q-107 -117 -274 -117q-206 0 -324 158q-36 48 -69 133t-45 204h-217l100 100h112q1 47 6 100h-218l100 100h134q20 87 51 153.5t62 103.5q117 141 297 141z" />
+<glyph unicode="&#x20bd;" d="M428 1200h350q67 0 120 -13t86 -31t57 -49.5t35 -56.5t17 -64.5t6.5 -60.5t0.5 -57v-16.5v-16.5q0 -36 -0.5 -57t-6.5 -61t-17 -65t-35 -57t-57 -50.5t-86 -31.5t-120 -13h-178l-2 -100h288q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-138v-175q0 -11 -5.5 -18 t-15.5 -7h-149q-10 0 -17.5 7.5t-7.5 17.5v175h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v100h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v475q0 10 7.5 17.5t17.5 7.5zM600 1000v-300h203q64 0 86.5 33t22.5 119q0 84 -22.5 116t-86.5 32h-203z" />
+<glyph unicode="&#x2212;" d="M250 700h800q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#x231b;" d="M1000 1200v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-50v-100q0 -91 -49.5 -165.5t-130.5 -109.5q81 -35 130.5 -109.5t49.5 -165.5v-150h50q21 0 35.5 -14.5t14.5 -35.5v-150h-800v150q0 21 14.5 35.5t35.5 14.5h50v150q0 91 49.5 165.5t130.5 109.5q-81 35 -130.5 109.5 t-49.5 165.5v100h-50q-21 0 -35.5 14.5t-14.5 35.5v150h800zM400 1000v-100q0 -60 32.5 -109.5t87.5 -73.5q28 -12 44 -37t16 -55t-16 -55t-44 -37q-55 -24 -87.5 -73.5t-32.5 -109.5v-150h400v150q0 60 -32.5 109.5t-87.5 73.5q-28 12 -44 37t-16 55t16 55t44 37 q55 24 87.5 73.5t32.5 109.5v100h-400z" />
+<glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
+<glyph unicode="&#x2601;" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -206.5q0 -121 -85 -207.5t-205 -86.5h-750q-79 0 -135.5 57t-56.5 137q0 69 42.5 122.5t108.5 67.5q-2 12 -2 37q0 153 108 260.5t260 107.5z" />
+<glyph unicode="&#x26fa;" d="M774 1193.5q16 -9.5 20.5 -27t-5.5 -33.5l-136 -187l467 -746h30q20 0 35 -18.5t15 -39.5v-42h-1200v42q0 21 15 39.5t35 18.5h30l468 746l-135 183q-10 16 -5.5 34t20.5 28t34 5.5t28 -20.5l111 -148l112 150q9 16 27 20.5t34 -5zM600 200h377l-182 112l-195 534v-646z " />
+<glyph unicode="&#x2709;" d="M25 1100h1150q10 0 12.5 -5t-5.5 -13l-564 -567q-8 -8 -18 -8t-18 8l-564 567q-8 8 -5.5 13t12.5 5zM18 882l264 -264q8 -8 8 -18t-8 -18l-264 -264q-8 -8 -13 -5.5t-5 12.5v550q0 10 5 12.5t13 -5.5zM918 618l264 264q8 8 13 5.5t5 -12.5v-550q0 -10 -5 -12.5t-13 5.5 l-264 264q-8 8 -8 18t8 18zM818 482l364 -364q8 -8 5.5 -13t-12.5 -5h-1150q-10 0 -12.5 5t5.5 13l364 364q8 8 18 8t18 -8l164 -164q8 -8 18 -8t18 8l164 164q8 8 18 8t18 -8z" />
+<glyph unicode="&#x270f;" d="M1011 1210q19 0 33 -13l153 -153q13 -14 13 -33t-13 -33l-99 -92l-214 214l95 96q13 14 32 14zM1013 800l-615 -614l-214 214l614 614zM317 96l-333 -112l110 335z" />
+<glyph unicode="&#xe001;" d="M700 650v-550h250q21 0 35.5 -14.5t14.5 -35.5v-50h-800v50q0 21 14.5 35.5t35.5 14.5h250v550l-500 550h1200z" />
+<glyph unicode="&#xe002;" d="M368 1017l645 163q39 15 63 0t24 -49v-831q0 -55 -41.5 -95.5t-111.5 -63.5q-79 -25 -147 -4.5t-86 75t25.5 111.5t122.5 82q72 24 138 8v521l-600 -155v-606q0 -42 -44 -90t-109 -69q-79 -26 -147 -5.5t-86 75.5t25.5 111.5t122.5 82.5q72 24 138 7v639q0 38 14.5 59 t53.5 34z" />
+<glyph unicode="&#xe003;" d="M500 1191q100 0 191 -39t156.5 -104.5t104.5 -156.5t39 -191l-1 -2l1 -5q0 -141 -78 -262l275 -274q23 -26 22.5 -44.5t-22.5 -42.5l-59 -58q-26 -20 -46.5 -20t-39.5 20l-275 274q-119 -77 -261 -77l-5 1l-2 -1q-100 0 -191 39t-156.5 104.5t-104.5 156.5t-39 191 t39 191t104.5 156.5t156.5 104.5t191 39zM500 1022q-88 0 -162 -43t-117 -117t-43 -162t43 -162t117 -117t162 -43t162 43t117 117t43 162t-43 162t-117 117t-162 43z" />
+<glyph unicode="&#xe005;" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104z" />
+<glyph unicode="&#xe006;" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429z" />
+<glyph unicode="&#xe007;" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429zM477 700h-240l197 -142l-74 -226 l193 139l195 -140l-74 229l192 140h-234l-78 211z" />
+<glyph unicode="&#xe008;" d="M600 1200q124 0 212 -88t88 -212v-250q0 -46 -31 -98t-69 -52v-75q0 -10 6 -21.5t15 -17.5l358 -230q9 -5 15 -16.5t6 -21.5v-93q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v93q0 10 6 21.5t15 16.5l358 230q9 6 15 17.5t6 21.5v75q-38 0 -69 52 t-31 98v250q0 124 88 212t212 88z" />
+<glyph unicode="&#xe009;" d="M25 1100h1150q10 0 17.5 -7.5t7.5 -17.5v-1050q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v1050q0 10 7.5 17.5t17.5 7.5zM100 1000v-100h100v100h-100zM875 1000h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5t17.5 -7.5h550 q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM1000 1000v-100h100v100h-100zM100 800v-100h100v100h-100zM1000 800v-100h100v100h-100zM100 600v-100h100v100h-100zM1000 600v-100h100v100h-100zM875 500h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5 t17.5 -7.5h550q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM100 400v-100h100v100h-100zM1000 400v-100h100v100h-100zM100 200v-100h100v100h-100zM1000 200v-100h100v100h-100z" />
+<glyph unicode="&#xe010;" d="M50 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM50 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe011;" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM850 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 700h200q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5 t35.5 14.5z" />
+<glyph unicode="&#xe012;" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h700q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe013;" d="M465 477l571 571q8 8 18 8t17 -8l177 -177q8 -7 8 -17t-8 -18l-783 -784q-7 -8 -17.5 -8t-17.5 8l-384 384q-8 8 -8 18t8 17l177 177q7 8 17 8t18 -8l171 -171q7 -7 18 -7t18 7z" />
+<glyph unicode="&#xe014;" d="M904 1083l178 -179q8 -8 8 -18.5t-8 -17.5l-267 -268l267 -268q8 -7 8 -17.5t-8 -18.5l-178 -178q-8 -8 -18.5 -8t-17.5 8l-268 267l-268 -267q-7 -8 -17.5 -8t-18.5 8l-178 178q-8 8 -8 18.5t8 17.5l267 268l-267 268q-8 7 -8 17.5t8 18.5l178 178q8 8 18.5 8t17.5 -8 l268 -267l268 268q7 7 17.5 7t18.5 -7z" />
+<glyph unicode="&#xe015;" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM425 900h150q10 0 17.5 -7.5t7.5 -17.5v-75h75q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5 t-17.5 -7.5h-75v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-75q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v75q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe016;" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM325 800h350q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-350q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe017;" d="M550 1200h100q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM800 975v166q167 -62 272 -209.5t105 -331.5q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5 t-184.5 123t-123 184.5t-45.5 224q0 184 105 331.5t272 209.5v-166q-103 -55 -165 -155t-62 -220q0 -116 57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5q0 120 -62 220t-165 155z" />
+<glyph unicode="&#xe018;" d="M1025 1200h150q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM725 800h150q10 0 17.5 -7.5t7.5 -17.5v-750q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v750 q0 10 7.5 17.5t17.5 7.5zM425 500h150q10 0 17.5 -7.5t7.5 -17.5v-450q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v450q0 10 7.5 17.5t17.5 7.5zM125 300h150q10 0 17.5 -7.5t7.5 -17.5v-250q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5 v250q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe019;" d="M600 1174q33 0 74 -5l38 -152l5 -1q49 -14 94 -39l5 -2l134 80q61 -48 104 -105l-80 -134l3 -5q25 -44 39 -93l1 -6l152 -38q5 -43 5 -73q0 -34 -5 -74l-152 -38l-1 -6q-15 -49 -39 -93l-3 -5l80 -134q-48 -61 -104 -105l-134 81l-5 -3q-44 -25 -94 -39l-5 -2l-38 -151 q-43 -5 -74 -5q-33 0 -74 5l-38 151l-5 2q-49 14 -94 39l-5 3l-134 -81q-60 48 -104 105l80 134l-3 5q-25 45 -38 93l-2 6l-151 38q-6 42 -6 74q0 33 6 73l151 38l2 6q13 48 38 93l3 5l-80 134q47 61 105 105l133 -80l5 2q45 25 94 39l5 1l38 152q43 5 74 5zM600 815 q-89 0 -152 -63t-63 -151.5t63 -151.5t152 -63t152 63t63 151.5t-63 151.5t-152 63z" />
+<glyph unicode="&#xe020;" d="M500 1300h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-75h-1100v75q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5zM500 1200v-100h300v100h-300zM1100 900v-800q0 -41 -29.5 -70.5t-70.5 -29.5h-700q-41 0 -70.5 29.5t-29.5 70.5 v800h900zM300 800v-700h100v700h-100zM500 800v-700h100v700h-100zM700 800v-700h100v700h-100zM900 800v-700h100v700h-100z" />
+<glyph unicode="&#xe021;" d="M18 618l620 608q8 7 18.5 7t17.5 -7l608 -608q8 -8 5.5 -13t-12.5 -5h-175v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v375h-300v-375q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v575h-175q-10 0 -12.5 5t5.5 13z" />
+<glyph unicode="&#xe022;" d="M600 1200v-400q0 -41 29.5 -70.5t70.5 -29.5h300v-650q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5h450zM1000 800h-250q-21 0 -35.5 14.5t-14.5 35.5v250z" />
+<glyph unicode="&#xe023;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h50q10 0 17.5 -7.5t7.5 -17.5v-275h175q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe024;" d="M1300 0h-538l-41 400h-242l-41 -400h-538l431 1200h209l-21 -300h162l-20 300h208zM515 800l-27 -300h224l-27 300h-170z" />
+<glyph unicode="&#xe025;" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-450h191q20 0 25.5 -11.5t-7.5 -27.5l-327 -400q-13 -16 -32 -16t-32 16l-327 400q-13 16 -7.5 27.5t25.5 11.5h191v450q0 21 14.5 35.5t35.5 14.5zM1125 400h50q10 0 17.5 -7.5t7.5 -17.5v-350q0 -10 -7.5 -17.5t-17.5 -7.5 h-1050q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h50q10 0 17.5 -7.5t7.5 -17.5v-175h900v175q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe026;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -275q-13 -16 -32 -16t-32 16l-223 275q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z " />
+<glyph unicode="&#xe027;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM632 914l223 -275q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5l223 275q13 16 32 16 t32 -16z" />
+<glyph unicode="&#xe028;" d="M225 1200h750q10 0 19.5 -7t12.5 -17l186 -652q7 -24 7 -49v-425q0 -12 -4 -27t-9 -17q-12 -6 -37 -6h-1100q-12 0 -27 4t-17 8q-6 13 -6 38l1 425q0 25 7 49l185 652q3 10 12.5 17t19.5 7zM878 1000h-556q-10 0 -19 -7t-11 -18l-87 -450q-2 -11 4 -18t16 -7h150 q10 0 19.5 -7t11.5 -17l38 -152q2 -10 11.5 -17t19.5 -7h250q10 0 19.5 7t11.5 17l38 152q2 10 11.5 17t19.5 7h150q10 0 16 7t4 18l-87 450q-2 11 -11 18t-19 7z" />
+<glyph unicode="&#xe029;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM540 820l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
+<glyph unicode="&#xe030;" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-362q0 -10 -7.5 -17.5t-17.5 -7.5h-362q-11 0 -13 5.5t5 12.5l133 133q-109 76 -238 76q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5h150q0 -117 -45.5 -224 t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117z" />
+<glyph unicode="&#xe031;" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-361q0 -11 -7.5 -18.5t-18.5 -7.5h-361q-11 0 -13 5.5t5 12.5l134 134q-110 75 -239 75q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5h-150q0 117 45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117zM1027 600h150 q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5q-192 0 -348 118l-134 -134q-7 -8 -12.5 -5.5t-5.5 12.5v360q0 11 7.5 18.5t18.5 7.5h360q10 0 12.5 -5.5t-5.5 -12.5l-133 -133q110 -76 240 -76q116 0 214.5 57t155.5 155.5t57 214.5z" />
+<glyph unicode="&#xe032;" d="M125 1200h1050q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-1050q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM1075 1000h-850q-10 0 -17.5 -7.5t-7.5 -17.5v-850q0 -10 7.5 -17.5t17.5 -7.5h850q10 0 17.5 7.5t7.5 17.5v850 q0 10 -7.5 17.5t-17.5 7.5zM325 900h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 900h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 700h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 700h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 500h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 500h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 300h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 300h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe033;" d="M900 800v200q0 83 -58.5 141.5t-141.5 58.5h-300q-82 0 -141 -59t-59 -141v-200h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h900q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-100zM400 800v150q0 21 15 35.5t35 14.5h200 q20 0 35 -14.5t15 -35.5v-150h-300z" />
+<glyph unicode="&#xe034;" d="M125 1100h50q10 0 17.5 -7.5t7.5 -17.5v-1075h-100v1075q0 10 7.5 17.5t17.5 7.5zM1075 1052q4 0 9 -2q16 -6 16 -23v-421q0 -6 -3 -12q-33 -59 -66.5 -99t-65.5 -58t-56.5 -24.5t-52.5 -6.5q-26 0 -57.5 6.5t-52.5 13.5t-60 21q-41 15 -63 22.5t-57.5 15t-65.5 7.5 q-85 0 -160 -57q-7 -5 -15 -5q-6 0 -11 3q-14 7 -14 22v438q22 55 82 98.5t119 46.5q23 2 43 0.5t43 -7t32.5 -8.5t38 -13t32.5 -11q41 -14 63.5 -21t57 -14t63.5 -7q103 0 183 87q7 8 18 8z" />
+<glyph unicode="&#xe035;" d="M600 1175q116 0 227 -49.5t192.5 -131t131 -192.5t49.5 -227v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v300q0 127 -70.5 231.5t-184.5 161.5t-245 57t-245 -57t-184.5 -161.5t-70.5 -231.5v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50 q-10 0 -17.5 7.5t-7.5 17.5v300q0 116 49.5 227t131 192.5t192.5 131t227 49.5zM220 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460q0 8 6 14t14 6zM820 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460 q0 8 6 14t14 6z" />
+<glyph unicode="&#xe036;" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM900 668l120 120q7 7 17 7t17 -7l34 -34q7 -7 7 -17t-7 -17l-120 -120l120 -120q7 -7 7 -17 t-7 -17l-34 -34q-7 -7 -17 -7t-17 7l-120 119l-120 -119q-7 -7 -17 -7t-17 7l-34 34q-7 7 -7 17t7 17l119 120l-119 120q-7 7 -7 17t7 17l34 34q7 8 17 8t17 -8z" />
+<glyph unicode="&#xe037;" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6 l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238q-6 8 -4.5 18t9.5 17l29 22q7 5 15 5z" />
+<glyph unicode="&#xe038;" d="M967 1004h3q11 -1 17 -10q135 -179 135 -396q0 -105 -34 -206.5t-98 -185.5q-7 -9 -17 -10h-3q-9 0 -16 6l-42 34q-8 6 -9 16t5 18q111 150 111 328q0 90 -29.5 176t-84.5 157q-6 9 -5 19t10 16l42 33q7 5 15 5zM321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5 t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238 q-6 8 -4.5 18.5t9.5 16.5l29 22q7 5 15 5z" />
+<glyph unicode="&#xe039;" d="M500 900h100v-100h-100v-100h-400v-100h-100v600h500v-300zM1200 700h-200v-100h200v-200h-300v300h-200v300h-100v200h600v-500zM100 1100v-300h300v300h-300zM800 1100v-300h300v300h-300zM300 900h-100v100h100v-100zM1000 900h-100v100h100v-100zM300 500h200v-500 h-500v500h200v100h100v-100zM800 300h200v-100h-100v-100h-200v100h-100v100h100v200h-200v100h300v-300zM100 400v-300h300v300h-300zM300 200h-100v100h100v-100zM1200 200h-100v100h100v-100zM700 0h-100v100h100v-100zM1200 0h-300v100h300v-100z" />
+<glyph unicode="&#xe040;" d="M100 200h-100v1000h100v-1000zM300 200h-100v1000h100v-1000zM700 200h-200v1000h200v-1000zM900 200h-100v1000h100v-1000zM1200 200h-200v1000h200v-1000zM400 0h-300v100h300v-100zM600 0h-100v91h100v-91zM800 0h-100v91h100v-91zM1100 0h-200v91h200v-91z" />
+<glyph unicode="&#xe041;" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
+<glyph unicode="&#xe042;" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM800 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-56 56l424 426l-700 700h150zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5 t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
+<glyph unicode="&#xe043;" d="M300 1200h825q75 0 75 -75v-900q0 -25 -18 -43l-64 -64q-8 -8 -13 -5.5t-5 12.5v950q0 10 -7.5 17.5t-17.5 7.5h-700q-25 0 -43 -18l-64 -64q-8 -8 -5.5 -13t12.5 -5h700q10 0 17.5 -7.5t7.5 -17.5v-950q0 -10 -7.5 -17.5t-17.5 -7.5h-850q-10 0 -17.5 7.5t-7.5 17.5v975 q0 25 18 43l139 139q18 18 43 18z" />
+<glyph unicode="&#xe044;" d="M250 1200h800q21 0 35.5 -14.5t14.5 -35.5v-1150l-450 444l-450 -445v1151q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe045;" d="M822 1200h-444q-11 0 -19 -7.5t-9 -17.5l-78 -301q-7 -24 7 -45l57 -108q6 -9 17.5 -15t21.5 -6h450q10 0 21.5 6t17.5 15l62 108q14 21 7 45l-83 301q-1 10 -9 17.5t-19 7.5zM1175 800h-150q-10 0 -21 -6.5t-15 -15.5l-78 -156q-4 -9 -15 -15.5t-21 -6.5h-550 q-10 0 -21 6.5t-15 15.5l-78 156q-4 9 -15 15.5t-21 6.5h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-650q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h750q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5 t7.5 17.5v650q0 10 -7.5 17.5t-17.5 7.5zM850 200h-500q-10 0 -19.5 -7t-11.5 -17l-38 -152q-2 -10 3.5 -17t15.5 -7h600q10 0 15.5 7t3.5 17l-38 152q-2 10 -11.5 17t-19.5 7z" />
+<glyph unicode="&#xe046;" d="M500 1100h200q56 0 102.5 -20.5t72.5 -50t44 -59t25 -50.5l6 -20h150q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5h150q2 8 6.5 21.5t24 48t45 61t72 48t102.5 21.5zM900 800v-100 h100v100h-100zM600 730q-95 0 -162.5 -67.5t-67.5 -162.5t67.5 -162.5t162.5 -67.5t162.5 67.5t67.5 162.5t-67.5 162.5t-162.5 67.5zM600 603q43 0 73 -30t30 -73t-30 -73t-73 -30t-73 30t-30 73t30 73t73 30z" />
+<glyph unicode="&#xe047;" d="M681 1199l385 -998q20 -50 60 -92q18 -19 36.5 -29.5t27.5 -11.5l10 -2v-66h-417v66q53 0 75 43.5t5 88.5l-82 222h-391q-58 -145 -92 -234q-11 -34 -6.5 -57t25.5 -37t46 -20t55 -6v-66h-365v66q56 24 84 52q12 12 25 30.5t20 31.5l7 13l399 1006h93zM416 521h340 l-162 457z" />
+<glyph unicode="&#xe048;" d="M753 641q5 -1 14.5 -4.5t36 -15.5t50.5 -26.5t53.5 -40t50.5 -54.5t35.5 -70t14.5 -87q0 -67 -27.5 -125.5t-71.5 -97.5t-98.5 -66.5t-108.5 -40.5t-102 -13h-500v89q41 7 70.5 32.5t29.5 65.5v827q0 24 -0.5 34t-3.5 24t-8.5 19.5t-17 13.5t-28 12.5t-42.5 11.5v71 l471 -1q57 0 115.5 -20.5t108 -57t80.5 -94t31 -124.5q0 -51 -15.5 -96.5t-38 -74.5t-45 -50.5t-38.5 -30.5zM400 700h139q78 0 130.5 48.5t52.5 122.5q0 41 -8.5 70.5t-29.5 55.5t-62.5 39.5t-103.5 13.5h-118v-350zM400 200h216q80 0 121 50.5t41 130.5q0 90 -62.5 154.5 t-156.5 64.5h-159v-400z" />
+<glyph unicode="&#xe049;" d="M877 1200l2 -57q-83 -19 -116 -45.5t-40 -66.5l-132 -839q-9 -49 13 -69t96 -26v-97h-500v97q186 16 200 98l173 832q3 17 3 30t-1.5 22.5t-9 17.5t-13.5 12.5t-21.5 10t-26 8.5t-33.5 10q-13 3 -19 5v57h425z" />
+<glyph unicode="&#xe050;" d="M1300 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM175 1000h-75v-800h75l-125 -167l-125 167h75v800h-75l125 167z" />
+<glyph unicode="&#xe051;" d="M1100 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-650q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v650h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM1167 50l-167 -125v75h-800v-75l-167 125l167 125v-75h800v75z" />
+<glyph unicode="&#xe052;" d="M50 1100h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe053;" d="M250 1100h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM250 500h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe054;" d="M500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000 q-21 0 -35.5 14.5t-14.5 35.5zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5zM0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5z" />
+<glyph unicode="&#xe055;" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe056;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 1100h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 800h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 500h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 500h800q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 200h800 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe057;" d="M400 0h-100v1100h100v-1100zM550 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM267 550l-167 -125v75h-200v100h200v75zM550 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe058;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM900 0h-100v1100h100v-1100zM50 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM1100 600h200v-100h-200v-75l-167 125l167 125v-75zM50 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe059;" d="M75 1000h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53v650q0 31 22 53t53 22zM1200 300l-300 300l300 300v-600z" />
+<glyph unicode="&#xe060;" d="M44 1100h1112q18 0 31 -13t13 -31v-1012q0 -18 -13 -31t-31 -13h-1112q-18 0 -31 13t-13 31v1012q0 18 13 31t31 13zM100 1000v-737l247 182l298 -131l-74 156l293 318l236 -288v500h-1000zM342 884q56 0 95 -39t39 -94.5t-39 -95t-95 -39.5t-95 39.5t-39 95t39 94.5 t95 39z" />
+<glyph unicode="&#xe062;" d="M648 1169q117 0 216 -60t156.5 -161t57.5 -218q0 -115 -70 -258q-69 -109 -158 -225.5t-143 -179.5l-54 -62q-9 8 -25.5 24.5t-63.5 67.5t-91 103t-98.5 128t-95.5 148q-60 132 -60 249q0 88 34 169.5t91.5 142t137 96.5t166.5 36zM652.5 974q-91.5 0 -156.5 -65 t-65 -157t65 -156.5t156.5 -64.5t156.5 64.5t65 156.5t-65 157t-156.5 65z" />
+<glyph unicode="&#xe063;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 173v854q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57z" />
+<glyph unicode="&#xe064;" d="M554 1295q21 -72 57.5 -143.5t76 -130t83 -118t82.5 -117t70 -116t49.5 -126t18.5 -136.5q0 -71 -25.5 -135t-68.5 -111t-99 -82t-118.5 -54t-125.5 -23q-84 5 -161.5 34t-139.5 78.5t-99 125t-37 164.5q0 69 18 136.5t49.5 126.5t69.5 116.5t81.5 117.5t83.5 119 t76.5 131t58.5 143zM344 710q-23 -33 -43.5 -70.5t-40.5 -102.5t-17 -123q1 -37 14.5 -69.5t30 -52t41 -37t38.5 -24.5t33 -15q21 -7 32 -1t13 22l6 34q2 10 -2.5 22t-13.5 19q-5 4 -14 12t-29.5 40.5t-32.5 73.5q-26 89 6 271q2 11 -6 11q-8 1 -15 -10z" />
+<glyph unicode="&#xe065;" d="M1000 1013l108 115q2 1 5 2t13 2t20.5 -1t25 -9.5t28.5 -21.5q22 -22 27 -43t0 -32l-6 -10l-108 -115zM350 1100h400q50 0 105 -13l-187 -187h-368q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v182l200 200v-332 q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM1009 803l-362 -362l-161 -50l55 170l355 355z" />
+<glyph unicode="&#xe066;" d="M350 1100h361q-164 -146 -216 -200h-195q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-103q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M824 1073l339 -301q8 -7 8 -17.5t-8 -17.5l-340 -306q-7 -6 -12.5 -4t-6.5 11v203q-26 1 -54.5 0t-78.5 -7.5t-92 -17.5t-86 -35t-70 -57q10 59 33 108t51.5 81.5t65 58.5t68.5 40.5t67 24.5t56 13.5t40 4.5v210q1 10 6.5 12.5t13.5 -4.5z" />
+<glyph unicode="&#xe067;" d="M350 1100h350q60 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-219q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M643 639l395 395q7 7 17.5 7t17.5 -7l101 -101q7 -7 7 -17.5t-7 -17.5l-531 -532q-7 -7 -17.5 -7t-17.5 7l-248 248q-7 7 -7 17.5t7 17.5l101 101q7 7 17.5 7t17.5 -7l111 -111q8 -7 18 -7t18 7z" />
+<glyph unicode="&#xe068;" d="M318 918l264 264q8 8 18 8t18 -8l260 -264q7 -8 4.5 -13t-12.5 -5h-170v-200h200v173q0 10 5 12t13 -5l264 -260q8 -7 8 -17.5t-8 -17.5l-264 -265q-8 -7 -13 -5t-5 12v173h-200v-200h170q10 0 12.5 -5t-4.5 -13l-260 -264q-8 -8 -18 -8t-18 8l-264 264q-8 8 -5.5 13 t12.5 5h175v200h-200v-173q0 -10 -5 -12t-13 5l-264 265q-8 7 -8 17.5t8 17.5l264 260q8 7 13 5t5 -12v-173h200v200h-175q-10 0 -12.5 5t5.5 13z" />
+<glyph unicode="&#xe069;" d="M250 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe070;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5 t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe071;" d="M1200 1050v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-492 480q-15 14 -15 35t15 35l492 480q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25z" />
+<glyph unicode="&#xe072;" d="M243 1074l814 -498q18 -11 18 -26t-18 -26l-814 -498q-18 -11 -30.5 -4t-12.5 28v1000q0 21 12.5 28t30.5 -4z" />
+<glyph unicode="&#xe073;" d="M250 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM650 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800 q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe074;" d="M1100 950v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5z" />
+<glyph unicode="&#xe075;" d="M500 612v438q0 21 10.5 25t25.5 -10l492 -480q15 -14 15 -35t-15 -35l-492 -480q-15 -14 -25.5 -10t-10.5 25v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10z" />
+<glyph unicode="&#xe076;" d="M1048 1102l100 1q20 0 35 -14.5t15 -35.5l5 -1000q0 -21 -14.5 -35.5t-35.5 -14.5l-100 -1q-21 0 -35.5 14.5t-14.5 35.5l-2 437l-463 -454q-14 -15 -24.5 -10.5t-10.5 25.5l-2 437l-462 -455q-15 -14 -25.5 -9.5t-10.5 24.5l-5 1000q0 21 10.5 25.5t25.5 -10.5l466 -450 l-2 438q0 20 10.5 24.5t25.5 -9.5l466 -451l-2 438q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe077;" d="M850 1100h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10l464 -453v438q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe078;" d="M686 1081l501 -540q15 -15 10.5 -26t-26.5 -11h-1042q-22 0 -26.5 11t10.5 26l501 540q15 15 36 15t36 -15zM150 400h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe079;" d="M885 900l-352 -353l352 -353l-197 -198l-552 552l552 550z" />
+<glyph unicode="&#xe080;" d="M1064 547l-551 -551l-198 198l353 353l-353 353l198 198z" />
+<glyph unicode="&#xe081;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM650 900h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-150 q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5h150v-150q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v150h150q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-150v150q0 21 -14.5 35.5t-35.5 14.5z" />
+<glyph unicode="&#xe082;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM850 700h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5 t35.5 -14.5h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5z" />
+<glyph unicode="&#xe083;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM741.5 913q-12.5 0 -21.5 -9l-120 -120l-120 120q-9 9 -21.5 9 t-21.5 -9l-141 -141q-9 -9 -9 -21.5t9 -21.5l120 -120l-120 -120q-9 -9 -9 -21.5t9 -21.5l141 -141q9 -9 21.5 -9t21.5 9l120 120l120 -120q9 -9 21.5 -9t21.5 9l141 141q9 9 9 21.5t-9 21.5l-120 120l120 120q9 9 9 21.5t-9 21.5l-141 141q-9 9 -21.5 9z" />
+<glyph unicode="&#xe084;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM546 623l-84 85q-7 7 -17.5 7t-18.5 -7l-139 -139q-7 -8 -7 -18t7 -18 l242 -241q7 -8 17.5 -8t17.5 8l375 375q7 7 7 17.5t-7 18.5l-139 139q-7 7 -17.5 7t-17.5 -7z" />
+<glyph unicode="&#xe085;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM588 941q-29 0 -59 -5.5t-63 -20.5t-58 -38.5t-41.5 -63t-16.5 -89.5 q0 -25 20 -25h131q30 -5 35 11q6 20 20.5 28t45.5 8q20 0 31.5 -10.5t11.5 -28.5q0 -23 -7 -34t-26 -18q-1 0 -13.5 -4t-19.5 -7.5t-20 -10.5t-22 -17t-18.5 -24t-15.5 -35t-8 -46q-1 -8 5.5 -16.5t20.5 -8.5h173q7 0 22 8t35 28t37.5 48t29.5 74t12 100q0 47 -17 83 t-42.5 57t-59.5 34.5t-64 18t-59 4.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe086;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM675 1000h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5 t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5zM675 700h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h75v-200h-75q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h350q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5 t-17.5 7.5h-75v275q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe087;" d="M525 1200h150q10 0 17.5 -7.5t7.5 -17.5v-194q103 -27 178.5 -102.5t102.5 -178.5h194q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-194q-27 -103 -102.5 -178.5t-178.5 -102.5v-194q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v194 q-103 27 -178.5 102.5t-102.5 178.5h-194q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h194q27 103 102.5 178.5t178.5 102.5v194q0 10 7.5 17.5t17.5 7.5zM700 893v-168q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v168q-68 -23 -119 -74 t-74 -119h168q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-168q23 -68 74 -119t119 -74v168q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-168q68 23 119 74t74 119h-168q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h168 q-23 68 -74 119t-119 74z" />
+<glyph unicode="&#xe088;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM759 823l64 -64q7 -7 7 -17.5t-7 -17.5l-124 -124l124 -124q7 -7 7 -17.5t-7 -17.5l-64 -64q-7 -7 -17.5 -7t-17.5 7l-124 124l-124 -124q-7 -7 -17.5 -7t-17.5 7l-64 64 q-7 7 -7 17.5t7 17.5l124 124l-124 124q-7 7 -7 17.5t7 17.5l64 64q7 7 17.5 7t17.5 -7l124 -124l124 124q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe089;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM782 788l106 -106q7 -7 7 -17.5t-7 -17.5l-320 -321q-8 -7 -18 -7t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l197 197q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe090;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5q0 -120 65 -225 l587 587q-105 65 -225 65zM965 819l-584 -584q104 -62 219 -62q116 0 214.5 57t155.5 155.5t57 214.5q0 115 -62 219z" />
+<glyph unicode="&#xe091;" d="M39 582l522 427q16 13 27.5 8t11.5 -26v-291h550q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-550v-291q0 -21 -11.5 -26t-27.5 8l-522 427q-16 13 -16 32t16 32z" />
+<glyph unicode="&#xe092;" d="M639 1009l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291h-550q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h550v291q0 21 11.5 26t27.5 -8z" />
+<glyph unicode="&#xe093;" d="M682 1161l427 -522q13 -16 8 -27.5t-26 -11.5h-291v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v550h-291q-21 0 -26 11.5t8 27.5l427 522q13 16 32 16t32 -16z" />
+<glyph unicode="&#xe094;" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-550h291q21 0 26 -11.5t-8 -27.5l-427 -522q-13 -16 -32 -16t-32 16l-427 522q-13 16 -8 27.5t26 11.5h291v550q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe095;" d="M639 1109l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291q-94 -2 -182 -20t-170.5 -52t-147 -92.5t-100.5 -135.5q5 105 27 193.5t67.5 167t113 135t167 91.5t225.5 42v262q0 21 11.5 26t27.5 -8z" />
+<glyph unicode="&#xe096;" d="M850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5zM350 0h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249 q8 7 18 7t18 -7l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5z" />
+<glyph unicode="&#xe097;" d="M1014 1120l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249q8 7 18 7t18 -7zM250 600h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5z" />
+<glyph unicode="&#xe101;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM704 900h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5 t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe102;" d="M260 1200q9 0 19 -2t15 -4l5 -2q22 -10 44 -23l196 -118q21 -13 36 -24q29 -21 37 -12q11 13 49 35l196 118q22 13 45 23q17 7 38 7q23 0 47 -16.5t37 -33.5l13 -16q14 -21 18 -45l25 -123l8 -44q1 -9 8.5 -14.5t17.5 -5.5h61q10 0 17.5 -7.5t7.5 -17.5v-50 q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 -7.5t-7.5 -17.5v-175h-400v300h-200v-300h-400v175q0 10 -7.5 17.5t-17.5 7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5h61q11 0 18 3t7 8q0 4 9 52l25 128q5 25 19 45q2 3 5 7t13.5 15t21.5 19.5t26.5 15.5 t29.5 7zM915 1079l-166 -162q-7 -7 -5 -12t12 -5h219q10 0 15 7t2 17l-51 149q-3 10 -11 12t-15 -6zM463 917l-177 157q-8 7 -16 5t-11 -12l-51 -143q-3 -10 2 -17t15 -7h231q11 0 12.5 5t-5.5 12zM500 0h-375q-10 0 -17.5 7.5t-7.5 17.5v375h400v-400zM1100 400v-375 q0 -10 -7.5 -17.5t-17.5 -7.5h-375v400h400z" />
+<glyph unicode="&#xe103;" d="M1165 1190q8 3 21 -6.5t13 -17.5q-2 -178 -24.5 -323.5t-55.5 -245.5t-87 -174.5t-102.5 -118.5t-118 -68.5t-118.5 -33t-120 -4.5t-105 9.5t-90 16.5q-61 12 -78 11q-4 1 -12.5 0t-34 -14.5t-52.5 -40.5l-153 -153q-26 -24 -37 -14.5t-11 43.5q0 64 42 102q8 8 50.5 45 t66.5 58q19 17 35 47t13 61q-9 55 -10 102.5t7 111t37 130t78 129.5q39 51 80 88t89.5 63.5t94.5 45t113.5 36t129 31t157.5 37t182 47.5zM1116 1098q-8 9 -22.5 -3t-45.5 -50q-38 -47 -119 -103.5t-142 -89.5l-62 -33q-56 -30 -102 -57t-104 -68t-102.5 -80.5t-85.5 -91 t-64 -104.5q-24 -56 -31 -86t2 -32t31.5 17.5t55.5 59.5q25 30 94 75.5t125.5 77.5t147.5 81q70 37 118.5 69t102 79.5t99 111t86.5 148.5q22 50 24 60t-6 19z" />
+<glyph unicode="&#xe104;" d="M653 1231q-39 -67 -54.5 -131t-10.5 -114.5t24.5 -96.5t47.5 -80t63.5 -62.5t68.5 -46.5t65 -30q-4 7 -17.5 35t-18.5 39.5t-17 39.5t-17 43t-13 42t-9.5 44.5t-2 42t4 43t13.5 39t23 38.5q96 -42 165 -107.5t105 -138t52 -156t13 -159t-19 -149.5q-13 -55 -44 -106.5 t-68 -87t-78.5 -64.5t-72.5 -45t-53 -22q-72 -22 -127 -11q-31 6 -13 19q6 3 17 7q13 5 32.5 21t41 44t38.5 63.5t21.5 81.5t-6.5 94.5t-50 107t-104 115.5q10 -104 -0.5 -189t-37 -140.5t-65 -93t-84 -52t-93.5 -11t-95 24.5q-80 36 -131.5 114t-53.5 171q-2 23 0 49.5 t4.5 52.5t13.5 56t27.5 60t46 64.5t69.5 68.5q-8 -53 -5 -102.5t17.5 -90t34 -68.5t44.5 -39t49 -2q31 13 38.5 36t-4.5 55t-29 64.5t-36 75t-26 75.5q-15 85 2 161.5t53.5 128.5t85.5 92.5t93.5 61t81.5 25.5z" />
+<glyph unicode="&#xe105;" d="M600 1094q82 0 160.5 -22.5t140 -59t116.5 -82.5t94.5 -95t68 -95t42.5 -82.5t14 -57.5t-14 -57.5t-43 -82.5t-68.5 -95t-94.5 -95t-116.5 -82.5t-140 -59t-159.5 -22.5t-159.5 22.5t-140 59t-116.5 82.5t-94.5 95t-68.5 95t-43 82.5t-14 57.5t14 57.5t42.5 82.5t68 95 t94.5 95t116.5 82.5t140 59t160.5 22.5zM888 829q-15 15 -18 12t5 -22q25 -57 25 -119q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 59 23 114q8 19 4.5 22t-17.5 -12q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q22 -36 47 -71t70 -82t92.5 -81t113 -58.5t133.5 -24.5 t133.5 24t113 58.5t92.5 81.5t70 81.5t47 70.5q11 18 9 42.5t-14 41.5q-90 117 -163 189zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l35 34q14 15 12.5 33.5t-16.5 33.5q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
+<glyph unicode="&#xe106;" d="M592 0h-148l31 120q-91 20 -175.5 68.5t-143.5 106.5t-103.5 119t-66.5 110t-22 76q0 21 14 57.5t42.5 82.5t68 95t94.5 95t116.5 82.5t140 59t160.5 22.5q61 0 126 -15l32 121h148zM944 770l47 181q108 -85 176.5 -192t68.5 -159q0 -26 -19.5 -71t-59.5 -102t-93 -112 t-129 -104.5t-158 -75.5l46 173q77 49 136 117t97 131q11 18 9 42.5t-14 41.5q-54 70 -107 130zM310 824q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q18 -30 39 -60t57 -70.5t74 -73t90 -61t105 -41.5l41 154q-107 18 -178.5 101.5t-71.5 193.5q0 59 23 114q8 19 4.5 22 t-17.5 -12zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l12 11l22 86l-3 4q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
+<glyph unicode="&#xe107;" d="M-90 100l642 1066q20 31 48 28.5t48 -35.5l642 -1056q21 -32 7.5 -67.5t-50.5 -35.5h-1294q-37 0 -50.5 34t7.5 66zM155 200h345v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h345l-445 723zM496 700h208q20 0 32 -14.5t8 -34.5l-58 -252 q-4 -20 -21.5 -34.5t-37.5 -14.5h-54q-20 0 -37.5 14.5t-21.5 34.5l-58 252q-4 20 8 34.5t32 14.5z" />
+<glyph unicode="&#xe108;" d="M650 1200q62 0 106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -93 100 -113v-64q0 -21 -13 -29t-32 1l-205 128l-205 -128q-19 -9 -32 -1t-13 29v64q0 20 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5v41 q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44z" />
+<glyph unicode="&#xe109;" d="M850 1200h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-150h-1100v150q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-50h500v50q0 21 14.5 35.5t35.5 14.5zM1100 800v-750q0 -21 -14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v750h1100zM100 600v-100h100v100h-100zM300 600v-100h100v100h-100zM500 600v-100h100v100h-100zM700 600v-100h100v100h-100zM900 600v-100h100v100h-100zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400 v-100h100v100h-100zM700 400v-100h100v100h-100zM900 400v-100h100v100h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100zM500 200v-100h100v100h-100zM700 200v-100h100v100h-100zM900 200v-100h100v100h-100z" />
+<glyph unicode="&#xe110;" d="M1135 1165l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-159l-600 -600h-291q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h209l600 600h241v150q0 21 10.5 25t24.5 -10zM522 819l-141 -141l-122 122h-209q-21 0 -35.5 14.5 t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h291zM1135 565l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-241l-181 181l141 141l122 -122h159v150q0 21 10.5 25t24.5 -10z" />
+<glyph unicode="&#xe111;" d="M100 1100h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5z" />
+<glyph unicode="&#xe112;" d="M150 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM850 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM1100 800v-300q0 -41 -3 -77.5t-15 -89.5t-32 -96t-58 -89t-89 -77t-129 -51t-174 -20t-174 20 t-129 51t-89 77t-58 89t-32 96t-15 89.5t-3 77.5v300h300v-250v-27v-42.5t1.5 -41t5 -38t10 -35t16.5 -30t25.5 -24.5t35 -19t46.5 -12t60 -4t60 4.5t46.5 12.5t35 19.5t25 25.5t17 30.5t10 35t5 38t2 40.5t-0.5 42v25v250h300z" />
+<glyph unicode="&#xe113;" d="M1100 411l-198 -199l-353 353l-353 -353l-197 199l551 551z" />
+<glyph unicode="&#xe114;" d="M1101 789l-550 -551l-551 551l198 199l353 -353l353 353z" />
+<glyph unicode="&#xe115;" d="M404 1000h746q21 0 35.5 -14.5t14.5 -35.5v-551h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v401h-381zM135 984l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-400h385l215 -200h-750q-21 0 -35.5 14.5 t-14.5 35.5v550h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe116;" d="M56 1200h94q17 0 31 -11t18 -27l38 -162h896q24 0 39 -18.5t10 -42.5l-100 -475q-5 -21 -27 -42.5t-55 -21.5h-633l48 -200h535q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-50q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-300v-50 q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-31q-18 0 -32.5 10t-20.5 19l-5 10l-201 961h-54q-20 0 -35 14.5t-15 35.5t15 35.5t35 14.5z" />
+<glyph unicode="&#xe117;" d="M1200 1000v-100h-1200v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500zM0 800h1200v-800h-1200v800z" />
+<glyph unicode="&#xe118;" d="M200 800l-200 -400v600h200q0 41 29.5 70.5t70.5 29.5h300q42 0 71 -29.5t29 -70.5h500v-200h-1000zM1500 700l-300 -700h-1200l300 700h1200z" />
+<glyph unicode="&#xe119;" d="M635 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-601h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v601h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe120;" d="M936 864l249 -229q14 -15 14 -35.5t-14 -35.5l-249 -229q-15 -15 -25.5 -10.5t-10.5 24.5v151h-600v-151q0 -20 -10.5 -24.5t-25.5 10.5l-249 229q-14 15 -14 35.5t14 35.5l249 229q15 15 25.5 10.5t10.5 -25.5v-149h600v149q0 21 10.5 25.5t25.5 -10.5z" />
+<glyph unicode="&#xe121;" d="M1169 400l-172 732q-5 23 -23 45.5t-38 22.5h-672q-20 0 -38 -20t-23 -41l-172 -739h1138zM1100 300h-1000q-41 0 -70.5 -29.5t-29.5 -70.5v-100q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v100q0 41 -29.5 70.5t-70.5 29.5zM800 100v100h100v-100h-100 zM1000 100v100h100v-100h-100z" />
+<glyph unicode="&#xe122;" d="M1150 1100q21 0 35.5 -14.5t14.5 -35.5v-850q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v850q0 21 14.5 35.5t35.5 14.5zM1000 200l-675 200h-38l47 -276q3 -16 -5.5 -20t-29.5 -4h-7h-84q-20 0 -34.5 14t-18.5 35q-55 337 -55 351v250v6q0 16 1 23.5t6.5 14 t17.5 6.5h200l675 250v-850zM0 750v-250q-4 0 -11 0.5t-24 6t-30 15t-24 30t-11 48.5v50q0 26 10.5 46t25 30t29 16t25.5 7z" />
+<glyph unicode="&#xe123;" d="M553 1200h94q20 0 29 -10.5t3 -29.5l-18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q19 0 33 -14.5t14 -35t-13 -40.5t-31 -27q-8 -4 -23 -9.5t-65 -19.5t-103 -25t-132.5 -20t-158.5 -9q-57 0 -115 5t-104 12t-88.5 15.5t-73.5 17.5t-54.5 16t-35.5 12l-11 4 q-18 8 -31 28t-13 40.5t14 35t33 14.5h17l118 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3.5 32t28.5 13zM498 110q50 -6 102 -6q53 0 102 6q-12 -49 -39.5 -79.5t-62.5 -30.5t-63 30.5t-39 79.5z" />
+<glyph unicode="&#xe124;" d="M800 946l224 78l-78 -224l234 -45l-180 -155l180 -155l-234 -45l78 -224l-224 78l-45 -234l-155 180l-155 -180l-45 234l-224 -78l78 224l-234 45l180 155l-180 155l234 45l-78 224l224 -78l45 234l155 -180l155 180z" />
+<glyph unicode="&#xe125;" d="M650 1200h50q40 0 70 -40.5t30 -84.5v-150l-28 -125h328q40 0 70 -40.5t30 -84.5v-100q0 -45 -29 -74l-238 -344q-16 -24 -38 -40.5t-45 -16.5h-250q-7 0 -42 25t-66 50l-31 25h-61q-45 0 -72.5 18t-27.5 57v400q0 36 20 63l145 196l96 198q13 28 37.5 48t51.5 20z M650 1100l-100 -212l-150 -213v-375h100l136 -100h214l250 375v125h-450l50 225v175h-50zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe126;" d="M600 1100h250q23 0 45 -16.5t38 -40.5l238 -344q29 -29 29 -74v-100q0 -44 -30 -84.5t-70 -40.5h-328q28 -118 28 -125v-150q0 -44 -30 -84.5t-70 -40.5h-50q-27 0 -51.5 20t-37.5 48l-96 198l-145 196q-20 27 -20 63v400q0 39 27.5 57t72.5 18h61q124 100 139 100z M50 1000h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM636 1000l-136 -100h-100v-375l150 -213l100 -212h50v175l-50 225h450v125l-250 375h-214z" />
+<glyph unicode="&#xe127;" d="M356 873l363 230q31 16 53 -6l110 -112q13 -13 13.5 -32t-11.5 -34l-84 -121h302q84 0 138 -38t54 -110t-55 -111t-139 -39h-106l-131 -339q-6 -21 -19.5 -41t-28.5 -20h-342q-7 0 -90 81t-83 94v525q0 17 14 35.5t28 28.5zM400 792v-503l100 -89h293l131 339 q6 21 19.5 41t28.5 20h203q21 0 30.5 25t0.5 50t-31 25h-456h-7h-6h-5.5t-6 0.5t-5 1.5t-5 2t-4 2.5t-4 4t-2.5 4.5q-12 25 5 47l146 183l-86 83zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500 q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe128;" d="M475 1103l366 -230q2 -1 6 -3.5t14 -10.5t18 -16.5t14.5 -20t6.5 -22.5v-525q0 -13 -86 -94t-93 -81h-342q-15 0 -28.5 20t-19.5 41l-131 339h-106q-85 0 -139.5 39t-54.5 111t54 110t138 38h302l-85 121q-11 15 -10.5 34t13.5 32l110 112q22 22 53 6zM370 945l146 -183 q17 -22 5 -47q-2 -2 -3.5 -4.5t-4 -4t-4 -2.5t-5 -2t-5 -1.5t-6 -0.5h-6h-6.5h-6h-475v-100h221q15 0 29 -20t20 -41l130 -339h294l106 89v503l-342 236zM1050 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5 v500q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe129;" d="M550 1294q72 0 111 -55t39 -139v-106l339 -131q21 -6 41 -19.5t20 -28.5v-342q0 -7 -81 -90t-94 -83h-525q-17 0 -35.5 14t-28.5 28l-9 14l-230 363q-16 31 6 53l112 110q13 13 32 13.5t34 -11.5l121 -84v302q0 84 38 138t110 54zM600 972v203q0 21 -25 30.5t-50 0.5 t-25 -31v-456v-7v-6v-5.5t-0.5 -6t-1.5 -5t-2 -5t-2.5 -4t-4 -4t-4.5 -2.5q-25 -12 -47 5l-183 146l-83 -86l236 -339h503l89 100v293l-339 131q-21 6 -41 19.5t-20 28.5zM450 200h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe130;" d="M350 1100h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5zM600 306v-106q0 -84 -39 -139t-111 -55t-110 54t-38 138v302l-121 -84q-15 -12 -34 -11.5t-32 13.5l-112 110 q-22 22 -6 53l230 363q1 2 3.5 6t10.5 13.5t16.5 17t20 13.5t22.5 6h525q13 0 94 -83t81 -90v-342q0 -15 -20 -28.5t-41 -19.5zM308 900l-236 -339l83 -86l183 146q22 17 47 5q2 -1 4.5 -2.5t4 -4t2.5 -4t2 -5t1.5 -5t0.5 -6v-5.5v-6v-7v-456q0 -22 25 -31t50 0.5t25 30.5 v203q0 15 20 28.5t41 19.5l339 131v293l-89 100h-503z" />
+<glyph unicode="&#xe131;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM914 632l-275 223q-16 13 -27.5 8t-11.5 -26v-137h-275 q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h275v-137q0 -21 11.5 -26t27.5 8l275 223q16 13 16 32t-16 32z" />
+<glyph unicode="&#xe132;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM561 855l-275 -223q-16 -13 -16 -32t16 -32l275 -223q16 -13 27.5 -8 t11.5 26v137h275q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5h-275v137q0 21 -11.5 26t-27.5 -8z" />
+<glyph unicode="&#xe133;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM855 639l-223 275q-13 16 -32 16t-32 -16l-223 -275q-13 -16 -8 -27.5 t26 -11.5h137v-275q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v275h137q21 0 26 11.5t-8 27.5z" />
+<glyph unicode="&#xe134;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM675 900h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-275h-137q-21 0 -26 -11.5 t8 -27.5l223 -275q13 -16 32 -16t32 16l223 275q13 16 8 27.5t-26 11.5h-137v275q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe135;" d="M600 1176q116 0 222.5 -46t184 -123.5t123.5 -184t46 -222.5t-46 -222.5t-123.5 -184t-184 -123.5t-222.5 -46t-222.5 46t-184 123.5t-123.5 184t-46 222.5t46 222.5t123.5 184t184 123.5t222.5 46zM627 1101q-15 -12 -36.5 -20.5t-35.5 -12t-43 -8t-39 -6.5 q-15 -3 -45.5 0t-45.5 -2q-20 -7 -51.5 -26.5t-34.5 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -91t-29.5 -79q-9 -34 5 -93t8 -87q0 -9 17 -44.5t16 -59.5q12 0 23 -5t23.5 -15t19.5 -14q16 -8 33 -15t40.5 -15t34.5 -12q21 -9 52.5 -32t60 -38t57.5 -11 q7 -15 -3 -34t-22.5 -40t-9.5 -38q13 -21 23 -34.5t27.5 -27.5t36.5 -18q0 -7 -3.5 -16t-3.5 -14t5 -17q104 -2 221 112q30 29 46.5 47t34.5 49t21 63q-13 8 -37 8.5t-36 7.5q-15 7 -49.5 15t-51.5 19q-18 0 -41 -0.5t-43 -1.5t-42 -6.5t-38 -16.5q-51 -35 -66 -12 q-4 1 -3.5 25.5t0.5 25.5q-6 13 -26.5 17.5t-24.5 6.5q1 15 -0.5 30.5t-7 28t-18.5 11.5t-31 -21q-23 -25 -42 4q-19 28 -8 58q6 16 22 22q6 -1 26 -1.5t33.5 -4t19.5 -13.5q7 -12 18 -24t21.5 -20.5t20 -15t15.5 -10.5l5 -3q2 12 7.5 30.5t8 34.5t-0.5 32q-3 18 3.5 29 t18 22.5t15.5 24.5q6 14 10.5 35t8 31t15.5 22.5t34 22.5q-6 18 10 36q8 0 24 -1.5t24.5 -1.5t20 4.5t20.5 15.5q-10 23 -31 42.5t-37.5 29.5t-49 27t-43.5 23q0 1 2 8t3 11.5t1.5 10.5t-1 9.5t-4.5 4.5q31 -13 58.5 -14.5t38.5 2.5l12 5q5 28 -9.5 46t-36.5 24t-50 15 t-41 20q-18 -4 -37 0zM613 994q0 -17 8 -42t17 -45t9 -23q-8 1 -39.5 5.5t-52.5 10t-37 16.5q3 11 16 29.5t16 25.5q10 -10 19 -10t14 6t13.5 14.5t16.5 12.5z" />
+<glyph unicode="&#xe136;" d="M756 1157q164 92 306 -9l-259 -138l145 -232l251 126q6 -89 -34 -156.5t-117 -110.5q-60 -34 -127 -39.5t-126 16.5l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5t15 37.5l600 599q-34 101 5.5 201.5t135.5 154.5z" />
+<glyph unicode="&#xe137;" horiz-adv-x="1220" d="M100 1196h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 1096h-200v-100h200v100zM100 796h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 696h-500v-100h500v100zM100 396h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 296h-300v-100h300v100z " />
+<glyph unicode="&#xe138;" d="M150 1200h900q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM700 500v-300l-200 -200v500l-350 500h900z" />
+<glyph unicode="&#xe139;" d="M500 1200h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5zM500 1100v-100h200v100h-200zM1200 400v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v200h1200z" />
+<glyph unicode="&#xe140;" d="M50 1200h300q21 0 25 -10.5t-10 -24.5l-94 -94l199 -199q7 -8 7 -18t-7 -18l-106 -106q-8 -7 -18 -7t-18 7l-199 199l-94 -94q-14 -14 -24.5 -10t-10.5 25v300q0 21 14.5 35.5t35.5 14.5zM850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-199 -199q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l199 199l-94 94q-14 14 -10 24.5t25 10.5zM364 470l106 -106q7 -8 7 -18t-7 -18l-199 -199l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l199 199 q8 7 18 7t18 -7zM1071 271l94 94q14 14 24.5 10t10.5 -25v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -25 10.5t10 24.5l94 94l-199 199q-7 8 -7 18t7 18l106 106q8 7 18 7t18 -7z" />
+<glyph unicode="&#xe141;" d="M596 1192q121 0 231.5 -47.5t190 -127t127 -190t47.5 -231.5t-47.5 -231.5t-127 -190.5t-190 -127t-231.5 -47t-231.5 47t-190.5 127t-127 190.5t-47 231.5t47 231.5t127 190t190.5 127t231.5 47.5zM596 1010q-112 0 -207.5 -55.5t-151 -151t-55.5 -207.5t55.5 -207.5 t151 -151t207.5 -55.5t207.5 55.5t151 151t55.5 207.5t-55.5 207.5t-151 151t-207.5 55.5zM454.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38.5 -16.5t-38.5 16.5t-16 39t16 38.5t38.5 16zM754.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38 -16.5q-14 0 -29 10l-55 -145 q17 -23 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5t-61.5 25.5t-25.5 61.5q0 32 20.5 56.5t51.5 29.5l122 126l1 1q-9 14 -9 28q0 23 16 39t38.5 16zM345.5 709q22.5 0 38.5 -16t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16zM854.5 709q22.5 0 38.5 -16 t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16z" />
+<glyph unicode="&#xe142;" d="M546 173l469 470q91 91 99 192q7 98 -52 175.5t-154 94.5q-22 4 -47 4q-34 0 -66.5 -10t-56.5 -23t-55.5 -38t-48 -41.5t-48.5 -47.5q-376 -375 -391 -390q-30 -27 -45 -41.5t-37.5 -41t-32 -46.5t-16 -47.5t-1.5 -56.5q9 -62 53.5 -95t99.5 -33q74 0 125 51l548 548 q36 36 20 75q-7 16 -21.5 26t-32.5 10q-26 0 -50 -23q-13 -12 -39 -38l-341 -338q-15 -15 -35.5 -15.5t-34.5 13.5t-14 34.5t14 34.5q327 333 361 367q35 35 67.5 51.5t78.5 16.5q14 0 29 -1q44 -8 74.5 -35.5t43.5 -68.5q14 -47 2 -96.5t-47 -84.5q-12 -11 -32 -32 t-79.5 -81t-114.5 -115t-124.5 -123.5t-123 -119.5t-96.5 -89t-57 -45q-56 -27 -120 -27q-70 0 -129 32t-93 89q-48 78 -35 173t81 163l511 511q71 72 111 96q91 55 198 55q80 0 152 -33q78 -36 129.5 -103t66.5 -154q17 -93 -11 -183.5t-94 -156.5l-482 -476 q-15 -15 -36 -16t-37 14t-17.5 34t14.5 35z" />
+<glyph unicode="&#xe143;" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104zM896 972q-33 0 -64.5 -19t-56.5 -46t-47.5 -53.5t-43.5 -45.5t-37.5 -19t-36 19t-40 45.5t-43 53.5t-54 46t-65.5 19q-67 0 -122.5 -55.5t-55.5 -132.5q0 -23 13.5 -51t46 -65t57.5 -63t76 -75l22 -22q15 -14 44 -44t50.5 -51t46 -44t41 -35t23 -12 t23.5 12t42.5 36t46 44t52.5 52t44 43q4 4 12 13q43 41 63.5 62t52 55t46 55t26 46t11.5 44q0 79 -53 133.5t-120 54.5z" />
+<glyph unicode="&#xe144;" d="M776.5 1214q93.5 0 159.5 -66l141 -141q66 -66 66 -160q0 -42 -28 -95.5t-62 -87.5l-29 -29q-31 53 -77 99l-18 18l95 95l-247 248l-389 -389l212 -212l-105 -106l-19 18l-141 141q-66 66 -66 159t66 159l283 283q65 66 158.5 66zM600 706l105 105q10 -8 19 -17l141 -141 q66 -66 66 -159t-66 -159l-283 -283q-66 -66 -159 -66t-159 66l-141 141q-66 66 -66 159.5t66 159.5l55 55q29 -55 75 -102l18 -17l-95 -95l247 -248l389 389z" />
+<glyph unicode="&#xe145;" d="M603 1200q85 0 162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5v953q0 21 30 46.5t81 48t129 37.5t163 15zM300 1000v-700h600v700h-600zM600 254q-43 0 -73.5 -30.5t-30.5 -73.5t30.5 -73.5t73.5 -30.5t73.5 30.5 t30.5 73.5t-30.5 73.5t-73.5 30.5z" />
+<glyph unicode="&#xe146;" d="M902 1185l283 -282q15 -15 15 -36t-14.5 -35.5t-35.5 -14.5t-35 15l-36 35l-279 -267v-300l-212 210l-308 -307l-280 -203l203 280l307 308l-210 212h300l267 279l-35 36q-15 14 -15 35t14.5 35.5t35.5 14.5t35 -15z" />
+<glyph unicode="&#xe148;" d="M700 1248v-78q38 -5 72.5 -14.5t75.5 -31.5t71 -53.5t52 -84t24 -118.5h-159q-4 36 -10.5 59t-21 45t-40 35.5t-64.5 20.5v-307l64 -13q34 -7 64 -16.5t70 -32t67.5 -52.5t47.5 -80t20 -112q0 -139 -89 -224t-244 -97v-77h-100v79q-150 16 -237 103q-40 40 -52.5 93.5 t-15.5 139.5h139q5 -77 48.5 -126t117.5 -65v335l-27 8q-46 14 -79 26.5t-72 36t-63 52t-40 72.5t-16 98q0 70 25 126t67.5 92t94.5 57t110 27v77h100zM600 754v274q-29 -4 -50 -11t-42 -21.5t-31.5 -41.5t-10.5 -65q0 -29 7 -50.5t16.5 -34t28.5 -22.5t31.5 -14t37.5 -10 q9 -3 13 -4zM700 547v-310q22 2 42.5 6.5t45 15.5t41.5 27t29 42t12 59.5t-12.5 59.5t-38 44.5t-53 31t-66.5 24.5z" />
+<glyph unicode="&#xe149;" d="M561 1197q84 0 160.5 -40t123.5 -109.5t47 -147.5h-153q0 40 -19.5 71.5t-49.5 48.5t-59.5 26t-55.5 9q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -26 13.5 -63t26.5 -61t37 -66q6 -9 9 -14h241v-100h-197q8 -50 -2.5 -115t-31.5 -95q-45 -62 -99 -112 q34 10 83 17.5t71 7.5q32 1 102 -16t104 -17q83 0 136 30l50 -147q-31 -19 -58 -30.5t-55 -15.5t-42 -4.5t-46 -0.5q-23 0 -76 17t-111 32.5t-96 11.5q-39 -3 -82 -16t-67 -25l-23 -11l-55 145q4 3 16 11t15.5 10.5t13 9t15.5 12t14.5 14t17.5 18.5q48 55 54 126.5 t-30 142.5h-221v100h166q-23 47 -44 104q-7 20 -12 41.5t-6 55.5t6 66.5t29.5 70.5t58.5 71q97 88 263 88z" />
+<glyph unicode="&#xe150;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM935 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-900h-200v900h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe151;" d="M1000 700h-100v100h-100v-100h-100v500h300v-500zM400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM801 1100v-200h100v200h-100zM1000 350l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150z " />
+<glyph unicode="&#xe152;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 1050l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150zM1000 0h-100v100h-100v-100h-100v500h300v-500zM801 400v-200h100v200h-100z " />
+<glyph unicode="&#xe153;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 700h-100v400h-100v100h200v-500zM1100 0h-100v100h-200v400h300v-500zM901 400v-200h100v200h-100z" />
+<glyph unicode="&#xe154;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1100 700h-100v100h-200v400h300v-500zM901 1100v-200h100v200h-100zM1000 0h-100v400h-100v100h200v-500z" />
+<glyph unicode="&#xe155;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM900 1000h-200v200h200v-200zM1000 700h-300v200h300v-200zM1100 400h-400v200h400v-200zM1200 100h-500v200h500v-200z" />
+<glyph unicode="&#xe156;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1200 1000h-500v200h500v-200zM1100 700h-400v200h400v-200zM1000 400h-300v200h300v-200zM900 100h-200v200h200v-200z" />
+<glyph unicode="&#xe157;" d="M350 1100h400q162 0 256 -93.5t94 -256.5v-400q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5z" />
+<glyph unicode="&#xe158;" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-163 0 -256.5 92.5t-93.5 257.5v400q0 163 94 256.5t256 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM440 770l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
+<glyph unicode="&#xe159;" d="M350 1100h400q163 0 256.5 -94t93.5 -256v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 163 92.5 256.5t257.5 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM350 700h400q21 0 26.5 -12t-6.5 -28l-190 -253q-12 -17 -30 -17t-30 17l-190 253q-12 16 -6.5 28t26.5 12z" />
+<glyph unicode="&#xe160;" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -163 -92.5 -256.5t-257.5 -93.5h-400q-163 0 -256.5 94t-93.5 256v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM580 693l190 -253q12 -16 6.5 -28t-26.5 -12h-400q-21 0 -26.5 12t6.5 28l190 253q12 17 30 17t30 -17z" />
+<glyph unicode="&#xe161;" d="M550 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h450q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-450q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM338 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
+<glyph unicode="&#xe162;" d="M793 1182l9 -9q8 -10 5 -27q-3 -11 -79 -225.5t-78 -221.5l300 1q24 0 32.5 -17.5t-5.5 -35.5q-1 0 -133.5 -155t-267 -312.5t-138.5 -162.5q-12 -15 -26 -15h-9l-9 8q-9 11 -4 32q2 9 42 123.5t79 224.5l39 110h-302q-23 0 -31 19q-10 21 6 41q75 86 209.5 237.5 t228 257t98.5 111.5q9 16 25 16h9z" />
+<glyph unicode="&#xe163;" d="M350 1100h400q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-450q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h450q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400 q0 165 92.5 257.5t257.5 92.5zM938 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
+<glyph unicode="&#xe164;" d="M750 1200h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -10.5 -25t-24.5 10l-109 109l-312 -312q-15 -15 -35.5 -15t-35.5 15l-141 141q-15 15 -15 35.5t15 35.5l312 312l-109 109q-14 14 -10 24.5t25 10.5zM456 900h-156q-41 0 -70.5 -29.5t-29.5 -70.5v-500 q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v148l200 200v-298q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5h300z" />
+<glyph unicode="&#xe165;" d="M600 1186q119 0 227.5 -46.5t187 -125t125 -187t46.5 -227.5t-46.5 -227.5t-125 -187t-187 -125t-227.5 -46.5t-227.5 46.5t-187 125t-125 187t-46.5 227.5t46.5 227.5t125 187t187 125t227.5 46.5zM600 1022q-115 0 -212 -56.5t-153.5 -153.5t-56.5 -212t56.5 -212 t153.5 -153.5t212 -56.5t212 56.5t153.5 153.5t56.5 212t-56.5 212t-153.5 153.5t-212 56.5zM600 794q80 0 137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137t57 137t137 57z" />
+<glyph unicode="&#xe166;" d="M450 1200h200q21 0 35.5 -14.5t14.5 -35.5v-350h245q20 0 25 -11t-9 -26l-383 -426q-14 -15 -33.5 -15t-32.5 15l-379 426q-13 15 -8.5 26t25.5 11h250v350q0 21 14.5 35.5t35.5 14.5zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe167;" d="M583 1182l378 -435q14 -15 9 -31t-26 -16h-244v-250q0 -20 -17 -35t-39 -15h-200q-20 0 -32 14.5t-12 35.5v250h-250q-20 0 -25.5 16.5t8.5 31.5l383 431q14 16 33.5 17t33.5 -14zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe168;" d="M396 723l369 369q7 7 17.5 7t17.5 -7l139 -139q7 -8 7 -18.5t-7 -17.5l-525 -525q-7 -8 -17.5 -8t-17.5 8l-292 291q-7 8 -7 18t7 18l139 139q8 7 18.5 7t17.5 -7zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50 h-100z" />
+<glyph unicode="&#xe169;" d="M135 1023l142 142q14 14 35 14t35 -14l77 -77l-212 -212l-77 76q-14 15 -14 36t14 35zM655 855l210 210q14 14 24.5 10t10.5 -25l-2 -599q-1 -20 -15.5 -35t-35.5 -15l-597 -1q-21 0 -25 10.5t10 24.5l208 208l-154 155l212 212zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5 v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe170;" d="M350 1200l599 -2q20 -1 35 -15.5t15 -35.5l1 -597q0 -21 -10.5 -25t-24.5 10l-208 208l-155 -154l-212 212l155 154l-210 210q-14 14 -10 24.5t25 10.5zM524 512l-76 -77q-15 -14 -36 -14t-35 14l-142 142q-14 14 -14 35t14 35l77 77zM50 300h1000q21 0 35.5 -14.5 t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe171;" d="M1200 103l-483 276l-314 -399v423h-399l1196 796v-1096zM483 424v-230l683 953z" />
+<glyph unicode="&#xe172;" d="M1100 1000v-850q0 -21 -14.5 -35.5t-35.5 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200z" />
+<glyph unicode="&#xe173;" d="M1100 1000l-2 -149l-299 -299l-95 95q-9 9 -21.5 9t-21.5 -9l-149 -147h-312v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1132 638l106 -106q7 -7 7 -17.5t-7 -17.5l-420 -421q-8 -7 -18 -7 t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l297 297q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe174;" d="M1100 1000v-269l-103 -103l-134 134q-15 15 -33.5 16.5t-34.5 -12.5l-266 -266h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1202 572l70 -70q15 -15 15 -35.5t-15 -35.5l-131 -131 l131 -131q15 -15 15 -35.5t-15 -35.5l-70 -70q-15 -15 -35.5 -15t-35.5 15l-131 131l-131 -131q-15 -15 -35.5 -15t-35.5 15l-70 70q-15 15 -15 35.5t15 35.5l131 131l-131 131q-15 15 -15 35.5t15 35.5l70 70q15 15 35.5 15t35.5 -15l131 -131l131 131q15 15 35.5 15 t35.5 -15z" />
+<glyph unicode="&#xe175;" d="M1100 1000v-300h-350q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM850 600h100q21 0 35.5 -14.5t14.5 -35.5v-250h150q21 0 25 -10.5t-10 -24.5 l-230 -230q-14 -14 -35 -14t-35 14l-230 230q-14 14 -10 24.5t25 10.5h150v250q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe176;" d="M1100 1000v-400l-165 165q-14 15 -35 15t-35 -15l-263 -265h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM935 565l230 -229q14 -15 10 -25.5t-25 -10.5h-150v-250q0 -20 -14.5 -35 t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35v250h-150q-21 0 -25 10.5t10 25.5l230 229q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe177;" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-150h-1200v150q0 21 14.5 35.5t35.5 14.5zM1200 800v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v550h1200zM100 500v-200h400v200h-400z" />
+<glyph unicode="&#xe178;" d="M935 1165l248 -230q14 -14 14 -35t-14 -35l-248 -230q-14 -14 -24.5 -10t-10.5 25v150h-400v200h400v150q0 21 10.5 25t24.5 -10zM200 800h-50q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v-200zM400 800h-100v200h100v-200zM18 435l247 230 q14 14 24.5 10t10.5 -25v-150h400v-200h-400v-150q0 -21 -10.5 -25t-24.5 10l-247 230q-15 14 -15 35t15 35zM900 300h-100v200h100v-200zM1000 500h51q20 0 34.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-34.5 -14.5h-51v200z" />
+<glyph unicode="&#xe179;" d="M862 1073l276 116q25 18 43.5 8t18.5 -41v-1106q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v397q-4 1 -11 5t-24 17.5t-30 29t-24 42t-11 56.5v359q0 31 18.5 65t43.5 52zM550 1200q22 0 34.5 -12.5t14.5 -24.5l1 -13v-450q0 -28 -10.5 -59.5 t-25 -56t-29 -45t-25.5 -31.5l-10 -11v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447q-4 4 -11 11.5t-24 30.5t-30 46t-24 55t-11 60v450q0 2 0.5 5.5t4 12t8.5 15t14.5 12t22.5 5.5q20 0 32.5 -12.5t14.5 -24.5l3 -13v-350h100v350v5.5t2.5 12 t7 15t15 12t25.5 5.5q23 0 35.5 -12.5t13.5 -24.5l1 -13v-350h100v350q0 2 0.5 5.5t3 12t7 15t15 12t24.5 5.5z" />
+<glyph unicode="&#xe180;" d="M1200 1100v-56q-4 0 -11 -0.5t-24 -3t-30 -7.5t-24 -15t-11 -24v-888q0 -22 25 -34.5t50 -13.5l25 -2v-56h-400v56q75 0 87.5 6.5t12.5 43.5v394h-500v-394q0 -37 12.5 -43.5t87.5 -6.5v-56h-400v56q4 0 11 0.5t24 3t30 7.5t24 15t11 24v888q0 22 -25 34.5t-50 13.5 l-25 2v56h400v-56q-75 0 -87.5 -6.5t-12.5 -43.5v-394h500v394q0 37 -12.5 43.5t-87.5 6.5v56h400z" />
+<glyph unicode="&#xe181;" d="M675 1000h375q21 0 35.5 -14.5t14.5 -35.5v-150h-105l-295 -98v98l-200 200h-400l100 100h375zM100 900h300q41 0 70.5 -29.5t29.5 -70.5v-500q0 -41 -29.5 -70.5t-70.5 -29.5h-300q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5zM100 800v-200h300v200 h-300zM1100 535l-400 -133v163l400 133v-163zM100 500v-200h300v200h-300zM1100 398v-248q0 -21 -14.5 -35.5t-35.5 -14.5h-375l-100 -100h-375l-100 100h400l200 200h105z" />
+<glyph unicode="&#xe182;" d="M17 1007l162 162q17 17 40 14t37 -22l139 -194q14 -20 11 -44.5t-20 -41.5l-119 -118q102 -142 228 -268t267 -227l119 118q17 17 42.5 19t44.5 -12l192 -136q19 -14 22.5 -37.5t-13.5 -40.5l-163 -162q-3 -1 -9.5 -1t-29.5 2t-47.5 6t-62.5 14.5t-77.5 26.5t-90 42.5 t-101.5 60t-111 83t-119 108.5q-74 74 -133.5 150.5t-94.5 138.5t-60 119.5t-34.5 100t-15 74.5t-4.5 48z" />
+<glyph unicode="&#xe183;" d="M600 1100q92 0 175 -10.5t141.5 -27t108.5 -36.5t81.5 -40t53.5 -37t31 -27l9 -10v-200q0 -21 -14.5 -33t-34.5 -9l-202 34q-20 3 -34.5 20t-14.5 38v146q-141 24 -300 24t-300 -24v-146q0 -21 -14.5 -38t-34.5 -20l-202 -34q-20 -3 -34.5 9t-14.5 33v200q3 4 9.5 10.5 t31 26t54 37.5t80.5 39.5t109 37.5t141 26.5t175 10.5zM600 795q56 0 97 -9.5t60 -23.5t30 -28t12 -24l1 -10v-50l365 -303q14 -15 24.5 -40t10.5 -45v-212q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v212q0 20 10.5 45t24.5 40l365 303v50 q0 4 1 10.5t12 23t30 29t60 22.5t97 10z" />
+<glyph unicode="&#xe184;" d="M1100 700l-200 -200h-600l-200 200v500h200v-200h200v200h200v-200h200v200h200v-500zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5 t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe185;" d="M700 1100h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-1000h300v1000q0 41 -29.5 70.5t-70.5 29.5zM1100 800h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-700h300v700q0 41 -29.5 70.5t-70.5 29.5zM400 0h-300v400q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-400z " />
+<glyph unicode="&#xe186;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
+<glyph unicode="&#xe187;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 300h-100v200h-100v-200h-100v500h100v-200h100v200h100v-500zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
+<glyph unicode="&#xe188;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-300h200v-100h-300v500h300v-100zM900 700h-200v-300h200v-100h-300v500h300v-100z" />
+<glyph unicode="&#xe189;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 400l-300 150l300 150v-300zM900 550l-300 -150v300z" />
+<glyph unicode="&#xe190;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM900 300h-700v500h700v-500zM800 700h-130q-38 0 -66.5 -43t-28.5 -108t27 -107t68 -42h130v300zM300 700v-300 h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130z" />
+<glyph unicode="&#xe191;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 300h-100v400h-100v100h200v-500z M700 300h-100v100h100v-100z" />
+<glyph unicode="&#xe192;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM300 700h200v-400h-300v500h100v-100zM900 300h-100v400h-100v100h200v-500zM300 600v-200h100v200h-100z M700 300h-100v100h100v-100z" />
+<glyph unicode="&#xe193;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 500l-199 -200h-100v50l199 200v150h-200v100h300v-300zM900 300h-100v400h-100v100h200v-500zM701 300h-100 v100h100v-100z" />
+<glyph unicode="&#xe194;" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700h-300v-200h300v-100h-300l-100 100v200l100 100h300v-100z" />
+<glyph unicode="&#xe195;" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700v-100l-50 -50l100 -100v-50h-100l-100 100h-150v-100h-100v400h300zM500 700v-100h200v100h-200z" />
+<glyph unicode="&#xe197;" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -207t-85 -207t-205 -86.5h-128v250q0 21 -14.5 35.5t-35.5 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-250h-222q-80 0 -136 57.5t-56 136.5q0 69 43 122.5t108 67.5q-2 19 -2 37q0 100 49 185 t134 134t185 49zM525 500h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -244q-13 -16 -32 -16t-32 16l-223 244q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe198;" d="M502 1089q110 0 201 -59.5t135 -156.5q43 15 89 15q121 0 206 -86.5t86 -206.5q0 -99 -60 -181t-150 -110l-378 360q-13 16 -31.5 16t-31.5 -16l-381 -365h-9q-79 0 -135.5 57.5t-56.5 136.5q0 69 43 122.5t108 67.5q-2 19 -2 38q0 100 49 184.5t133.5 134t184.5 49.5z M632 467l223 -228q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5q199 204 223 228q19 19 31.5 19t32.5 -19z" />
+<glyph unicode="&#xe199;" d="M700 100v100h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170l-270 -300h400v-100h-50q-21 0 -35.5 -14.5t-14.5 -35.5v-50h400v50q0 21 -14.5 35.5t-35.5 14.5h-50z" />
+<glyph unicode="&#xe200;" d="M600 1179q94 0 167.5 -56.5t99.5 -145.5q89 -6 150.5 -71.5t61.5 -155.5q0 -61 -29.5 -112.5t-79.5 -82.5q9 -29 9 -55q0 -74 -52.5 -126.5t-126.5 -52.5q-55 0 -100 30v-251q21 0 35.5 -14.5t14.5 -35.5v-50h-300v50q0 21 14.5 35.5t35.5 14.5v251q-45 -30 -100 -30 q-74 0 -126.5 52.5t-52.5 126.5q0 18 4 38q-47 21 -75.5 65t-28.5 97q0 74 52.5 126.5t126.5 52.5q5 0 23 -2q0 2 -1 10t-1 13q0 116 81.5 197.5t197.5 81.5z" />
+<glyph unicode="&#xe201;" d="M1010 1010q111 -111 150.5 -260.5t0 -299t-150.5 -260.5q-83 -83 -191.5 -126.5t-218.5 -43.5t-218.5 43.5t-191.5 126.5q-111 111 -150.5 260.5t0 299t150.5 260.5q83 83 191.5 126.5t218.5 43.5t218.5 -43.5t191.5 -126.5zM476 1065q-4 0 -8 -1q-121 -34 -209.5 -122.5 t-122.5 -209.5q-4 -12 2.5 -23t18.5 -14l36 -9q3 -1 7 -1q23 0 29 22q27 96 98 166q70 71 166 98q11 3 17.5 13.5t3.5 22.5l-9 35q-3 13 -14 19q-7 4 -15 4zM512 920q-4 0 -9 -2q-80 -24 -138.5 -82.5t-82.5 -138.5q-4 -13 2 -24t19 -14l34 -9q4 -1 8 -1q22 0 28 21 q18 58 58.5 98.5t97.5 58.5q12 3 18 13.5t3 21.5l-9 35q-3 12 -14 19q-7 4 -15 4zM719.5 719.5q-49.5 49.5 -119.5 49.5t-119.5 -49.5t-49.5 -119.5t49.5 -119.5t119.5 -49.5t119.5 49.5t49.5 119.5t-49.5 119.5zM855 551q-22 0 -28 -21q-18 -58 -58.5 -98.5t-98.5 -57.5 q-11 -4 -17 -14.5t-3 -21.5l9 -35q3 -12 14 -19q7 -4 15 -4q4 0 9 2q80 24 138.5 82.5t82.5 138.5q4 13 -2.5 24t-18.5 14l-34 9q-4 1 -8 1zM1000 515q-23 0 -29 -22q-27 -96 -98 -166q-70 -71 -166 -98q-11 -3 -17.5 -13.5t-3.5 -22.5l9 -35q3 -13 14 -19q7 -4 15 -4 q4 0 8 1q121 34 209.5 122.5t122.5 209.5q4 12 -2.5 23t-18.5 14l-36 9q-3 1 -7 1z" />
+<glyph unicode="&#xe202;" d="M700 800h300v-380h-180v200h-340v-200h-380v755q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM700 300h162l-212 -212l-212 212h162v200h100v-200zM520 0h-395q-10 0 -17.5 7.5t-7.5 17.5v395zM1000 220v-195q0 -10 -7.5 -17.5t-17.5 -7.5h-195z" />
+<glyph unicode="&#xe203;" d="M700 800h300v-520l-350 350l-550 -550v1095q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM862 200h-162v-200h-100v200h-162l212 212zM480 0h-355q-10 0 -17.5 7.5t-7.5 17.5v55h380v-80zM1000 80v-55q0 -10 -7.5 -17.5t-17.5 -7.5h-155v80h180z" />
+<glyph unicode="&#xe204;" d="M1162 800h-162v-200h100l100 -100h-300v300h-162l212 212zM200 800h200q27 0 40 -2t29.5 -10.5t23.5 -30t7 -57.5h300v-100h-600l-200 -350v450h100q0 36 7 57.5t23.5 30t29.5 10.5t40 2zM800 400h240l-240 -400h-800l300 500h500v-100z" />
+<glyph unicode="&#xe205;" d="M650 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM1000 850v150q41 0 70.5 -29.5t29.5 -70.5v-800 q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-1 0 -20 4l246 246l-326 326v324q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM412 250l-212 -212v162h-200v100h200v162z" />
+<glyph unicode="&#xe206;" d="M450 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM800 850v150q41 0 70.5 -29.5t29.5 -70.5v-500 h-200v-300h200q0 -36 -7 -57.5t-23.5 -30t-29.5 -10.5t-40 -2h-600q-41 0 -70.5 29.5t-29.5 70.5v800q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM1212 250l-212 -212v162h-200v100h200v162z" />
+<glyph unicode="&#xe209;" d="M658 1197l637 -1104q23 -38 7 -65.5t-60 -27.5h-1276q-44 0 -60 27.5t7 65.5l637 1104q22 39 54 39t54 -39zM704 800h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM500 300v-100h200 v100h-200z" />
+<glyph unicode="&#xe210;" d="M425 1100h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM825 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM25 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5zM425 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5 v150q0 10 7.5 17.5t17.5 7.5zM25 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe211;" d="M700 1200h100v-200h-100v-100h350q62 0 86.5 -39.5t-3.5 -94.5l-66 -132q-41 -83 -81 -134h-772q-40 51 -81 134l-66 132q-28 55 -3.5 94.5t86.5 39.5h350v100h-100v200h100v100h200v-100zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100 h-950l138 100h-13q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe212;" d="M600 1300q40 0 68.5 -29.5t28.5 -70.5h-194q0 41 28.5 70.5t68.5 29.5zM443 1100h314q18 -37 18 -75q0 -8 -3 -25h328q41 0 44.5 -16.5t-30.5 -38.5l-175 -145h-678l-178 145q-34 22 -29 38.5t46 16.5h328q-3 17 -3 25q0 38 18 75zM250 700h700q21 0 35.5 -14.5 t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-150v-200l275 -200h-950l275 200v200h-150q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe213;" d="M600 1181q75 0 128 -53t53 -128t-53 -128t-128 -53t-128 53t-53 128t53 128t128 53zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13 l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe214;" d="M600 1300q47 0 92.5 -53.5t71 -123t25.5 -123.5q0 -78 -55.5 -133.5t-133.5 -55.5t-133.5 55.5t-55.5 133.5q0 62 34 143l144 -143l111 111l-163 163q34 26 63 26zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45 zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe215;" d="M600 1200l300 -161v-139h-300q0 -57 18.5 -108t50 -91.5t63 -72t70 -67.5t57.5 -61h-530q-60 83 -90.5 177.5t-30.5 178.5t33 164.5t87.5 139.5t126 96.5t145.5 41.5v-98zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100 h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe216;" d="M600 1300q41 0 70.5 -29.5t29.5 -70.5v-78q46 -26 73 -72t27 -100v-50h-400v50q0 54 27 100t73 72v78q0 41 29.5 70.5t70.5 29.5zM400 800h400q54 0 100 -27t72 -73h-172v-100h200v-100h-200v-100h200v-100h-200v-100h200q0 -83 -58.5 -141.5t-141.5 -58.5h-400 q-83 0 -141.5 58.5t-58.5 141.5v400q0 83 58.5 141.5t141.5 58.5z" />
+<glyph unicode="&#xe218;" d="M150 1100h900q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM125 400h950q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-283l224 -224q13 -13 13 -31.5t-13 -32 t-31.5 -13.5t-31.5 13l-88 88h-524l-87 -88q-13 -13 -32 -13t-32 13.5t-13 32t13 31.5l224 224h-289q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM541 300l-100 -100h324l-100 100h-124z" />
+<glyph unicode="&#xe219;" d="M200 1100h800q83 0 141.5 -58.5t58.5 -141.5v-200h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100v200q0 83 58.5 141.5t141.5 58.5zM100 600h1000q41 0 70.5 -29.5 t29.5 -70.5v-300h-1200v300q0 41 29.5 70.5t70.5 29.5zM300 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200zM1100 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200z" />
+<glyph unicode="&#xe221;" d="M480 1165l682 -683q31 -31 31 -75.5t-31 -75.5l-131 -131h-481l-517 518q-32 31 -32 75.5t32 75.5l295 296q31 31 75.5 31t76.5 -31zM108 794l342 -342l303 304l-341 341zM250 100h800q21 0 35.5 -14.5t14.5 -35.5v-50h-900v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe223;" d="M1057 647l-189 506q-8 19 -27.5 33t-40.5 14h-400q-21 0 -40.5 -14t-27.5 -33l-189 -506q-8 -19 1.5 -33t30.5 -14h625v-150q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5t14.5 35.5v150h125q21 0 30.5 14t1.5 33zM897 0h-595v50q0 21 14.5 35.5t35.5 14.5h50v50 q0 21 14.5 35.5t35.5 14.5h48v300h200v-300h47q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-50z" />
+<glyph unicode="&#xe224;" d="M900 800h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-375v591l-300 300v84q0 10 7.5 17.5t17.5 7.5h375v-400zM1200 900h-200v200zM400 600h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-650q-10 0 -17.5 7.5t-7.5 17.5v950q0 10 7.5 17.5t17.5 7.5h375v-400zM700 700h-200v200z " />
+<glyph unicode="&#xe225;" d="M484 1095h195q75 0 146 -32.5t124 -86t89.5 -122.5t48.5 -142q18 -14 35 -20q31 -10 64.5 6.5t43.5 48.5q10 34 -15 71q-19 27 -9 43q5 8 12.5 11t19 -1t23.5 -16q41 -44 39 -105q-3 -63 -46 -106.5t-104 -43.5h-62q-7 -55 -35 -117t-56 -100l-39 -234q-3 -20 -20 -34.5 t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l12 70q-49 -14 -91 -14h-195q-24 0 -65 8l-11 -64q-3 -20 -20 -34.5t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l26 157q-84 74 -128 175l-159 53q-19 7 -33 26t-14 40v50q0 21 14.5 35.5t35.5 14.5h124q11 87 56 166l-111 95 q-16 14 -12.5 23.5t24.5 9.5h203q116 101 250 101zM675 1000h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h250q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe226;" d="M641 900l423 247q19 8 42 2.5t37 -21.5l32 -38q14 -15 12.5 -36t-17.5 -34l-139 -120h-390zM50 1100h106q67 0 103 -17t66 -71l102 -212h823q21 0 35.5 -14.5t14.5 -35.5v-50q0 -21 -14 -40t-33 -26l-737 -132q-23 -4 -40 6t-26 25q-42 67 -100 67h-300q-62 0 -106 44 t-44 106v200q0 62 44 106t106 44zM173 928h-80q-19 0 -28 -14t-9 -35v-56q0 -51 42 -51h134q16 0 21.5 8t5.5 24q0 11 -16 45t-27 51q-18 28 -43 28zM550 727q-32 0 -54.5 -22.5t-22.5 -54.5t22.5 -54.5t54.5 -22.5t54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5zM130 389 l152 130q18 19 34 24t31 -3.5t24.5 -17.5t25.5 -28q28 -35 50.5 -51t48.5 -13l63 5l48 -179q13 -61 -3.5 -97.5t-67.5 -79.5l-80 -69q-47 -40 -109 -35.5t-103 51.5l-130 151q-40 47 -35.5 109.5t51.5 102.5zM380 377l-102 -88q-31 -27 2 -65l37 -43q13 -15 27.5 -19.5 t31.5 6.5l61 53q19 16 14 49q-2 20 -12 56t-17 45q-11 12 -19 14t-23 -8z" />
+<glyph unicode="&#xe227;" d="M625 1200h150q10 0 17.5 -7.5t7.5 -17.5v-109q79 -33 131 -87.5t53 -128.5q1 -46 -15 -84.5t-39 -61t-46 -38t-39 -21.5l-17 -6q6 0 15 -1.5t35 -9t50 -17.5t53 -30t50 -45t35.5 -64t14.5 -84q0 -59 -11.5 -105.5t-28.5 -76.5t-44 -51t-49.5 -31.5t-54.5 -16t-49.5 -6.5 t-43.5 -1v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-100v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-175q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v600h-75q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5h175v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h100v75q0 10 7.5 17.5t17.5 7.5zM400 900v-200h263q28 0 48.5 10.5t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-263zM400 500v-200h363q28 0 48.5 10.5 t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-363z" />
+<glyph unicode="&#xe230;" d="M212 1198h780q86 0 147 -61t61 -147v-416q0 -51 -18 -142.5t-36 -157.5l-18 -66q-29 -87 -93.5 -146.5t-146.5 -59.5h-572q-82 0 -147 59t-93 147q-8 28 -20 73t-32 143.5t-20 149.5v416q0 86 61 147t147 61zM600 1045q-70 0 -132.5 -11.5t-105.5 -30.5t-78.5 -41.5 t-57 -45t-36 -41t-20.5 -30.5l-6 -12l156 -243h560l156 243q-2 5 -6 12.5t-20 29.5t-36.5 42t-57 44.5t-79 42t-105 29.5t-132.5 12zM762 703h-157l195 261z" />
+<glyph unicode="&#xe231;" d="M475 1300h150q103 0 189 -86t86 -189v-500q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
+<glyph unicode="&#xe232;" d="M475 1300h96q0 -150 89.5 -239.5t239.5 -89.5v-446q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
+<glyph unicode="&#xe233;" d="M1294 767l-638 -283l-378 170l-78 -60v-224l100 -150v-199l-150 148l-150 -149v200l100 150v250q0 4 -0.5 10.5t0 9.5t1 8t3 8t6.5 6l47 40l-147 65l642 283zM1000 380l-350 -166l-350 166v147l350 -165l350 165v-147z" />
+<glyph unicode="&#xe234;" d="M250 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM650 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM1050 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
+<glyph unicode="&#xe235;" d="M550 1100q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 700q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 300q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
+<glyph unicode="&#xe236;" d="M125 1100h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM125 700h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM125 300h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe237;" d="M350 1200h500q162 0 256 -93.5t94 -256.5v-500q0 -165 -93.5 -257.5t-256.5 -92.5h-500q-165 0 -257.5 92.5t-92.5 257.5v500q0 165 92.5 257.5t257.5 92.5zM900 1000h-600q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h600q41 0 70.5 29.5 t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5zM350 900h500q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-500q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 14.5 35.5t35.5 14.5zM400 800v-200h400v200h-400z" />
+<glyph unicode="&#xe238;" d="M150 1100h1000q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe239;" d="M650 1187q87 -67 118.5 -156t0 -178t-118.5 -155q-87 66 -118.5 155t0 178t118.5 156zM300 800q124 0 212 -88t88 -212q-124 0 -212 88t-88 212zM1000 800q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM300 500q124 0 212 -88t88 -212q-124 0 -212 88t-88 212z M1000 500q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM700 199v-144q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v142q40 -4 43 -4q17 0 57 6z" />
+<glyph unicode="&#xe240;" d="M745 878l69 19q25 6 45 -12l298 -295q11 -11 15 -26.5t-2 -30.5q-5 -14 -18 -23.5t-28 -9.5h-8q1 0 1 -13q0 -29 -2 -56t-8.5 -62t-20 -63t-33 -53t-51 -39t-72.5 -14h-146q-184 0 -184 288q0 24 10 47q-20 4 -62 4t-63 -4q11 -24 11 -47q0 -288 -184 -288h-142 q-48 0 -84.5 21t-56 51t-32 71.5t-16 75t-3.5 68.5q0 13 2 13h-7q-15 0 -27.5 9.5t-18.5 23.5q-6 15 -2 30.5t15 25.5l298 296q20 18 46 11l76 -19q20 -5 30.5 -22.5t5.5 -37.5t-22.5 -31t-37.5 -5l-51 12l-182 -193h891l-182 193l-44 -12q-20 -5 -37.5 6t-22.5 31t6 37.5 t31 22.5z" />
+<glyph unicode="&#xe241;" d="M1200 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM500 450h-25q0 15 -4 24.5t-9 14.5t-17 7.5t-20 3t-25 0.5h-100v-425q0 -11 12.5 -17.5t25.5 -7.5h12v-50h-200v50q50 0 50 25v425h-100q-17 0 -25 -0.5t-20 -3t-17 -7.5t-9 -14.5t-4 -24.5h-25v150h500v-150z" />
+<glyph unicode="&#xe242;" d="M1000 300v50q-25 0 -55 32q-14 14 -25 31t-16 27l-4 11l-289 747h-69l-300 -754q-18 -35 -39 -56q-9 -9 -24.5 -18.5t-26.5 -14.5l-11 -5v-50h273v50q-49 0 -78.5 21.5t-11.5 67.5l69 176h293l61 -166q13 -34 -3.5 -66.5t-55.5 -32.5v-50h312zM412 691l134 342l121 -342 h-255zM1100 150v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5z" />
+<glyph unicode="&#xe243;" d="M50 1200h1100q21 0 35.5 -14.5t14.5 -35.5v-1100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5zM611 1118h-70q-13 0 -18 -12l-299 -753q-17 -32 -35 -51q-18 -18 -56 -34q-12 -5 -12 -18v-50q0 -8 5.5 -14t14.5 -6 h273q8 0 14 6t6 14v50q0 8 -6 14t-14 6q-55 0 -71 23q-10 14 0 39l63 163h266l57 -153q11 -31 -6 -55q-12 -17 -36 -17q-8 0 -14 -6t-6 -14v-50q0 -8 6 -14t14 -6h313q8 0 14 6t6 14v50q0 7 -5.5 13t-13.5 7q-17 0 -42 25q-25 27 -40 63h-1l-288 748q-5 12 -19 12zM639 611 h-197l103 264z" />
+<glyph unicode="&#xe244;" d="M1200 1100h-1200v100h1200v-100zM50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 1000h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM700 900v-300h300v300h-300z" />
+<glyph unicode="&#xe245;" d="M50 1200h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 700h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM700 600v-300h300v300h-300zM1200 0h-1200v100h1200v-100z" />
+<glyph unicode="&#xe246;" d="M50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-350h100v150q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-150h100v-100h-100v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v150h-100v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM700 700v-300h300v300h-300z" />
+<glyph unicode="&#xe247;" d="M100 0h-100v1200h100v-1200zM250 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM300 1000v-300h300v300h-300zM250 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe248;" d="M600 1100h150q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-100h450q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h350v100h-150q-21 0 -35.5 14.5 t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h150v100h100v-100zM400 1000v-300h300v300h-300z" />
+<glyph unicode="&#xe249;" d="M1200 0h-100v1200h100v-1200zM550 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM600 1000v-300h300v300h-300zM50 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe250;" d="M865 565l-494 -494q-23 -23 -41 -23q-14 0 -22 13.5t-8 38.5v1000q0 25 8 38.5t22 13.5q18 0 41 -23l494 -494q14 -14 14 -35t-14 -35z" />
+<glyph unicode="&#xe251;" d="M335 635l494 494q29 29 50 20.5t21 -49.5v-1000q0 -41 -21 -49.5t-50 20.5l-494 494q-14 14 -14 35t14 35z" />
+<glyph unicode="&#xe252;" d="M100 900h1000q41 0 49.5 -21t-20.5 -50l-494 -494q-14 -14 -35 -14t-35 14l-494 494q-29 29 -20.5 50t49.5 21z" />
+<glyph unicode="&#xe253;" d="M635 865l494 -494q29 -29 20.5 -50t-49.5 -21h-1000q-41 0 -49.5 21t20.5 50l494 494q14 14 35 14t35 -14z" />
+<glyph unicode="&#xe254;" d="M700 741v-182l-692 -323v221l413 193l-413 193v221zM1200 0h-800v200h800v-200z" />
+<glyph unicode="&#xe255;" d="M1200 900h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300zM0 700h50q0 21 4 37t9.5 26.5t18 17.5t22 11t28.5 5.5t31 2t37 0.5h100v-550q0 -22 -25 -34.5t-50 -13.5l-25 -2v-100h400v100q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v550h100q25 0 37 -0.5t31 -2 t28.5 -5.5t22 -11t18 -17.5t9.5 -26.5t4 -37h50v300h-800v-300z" />
+<glyph unicode="&#xe256;" d="M800 700h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-100v-550q0 -22 25 -34.5t50 -14.5l25 -1v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v550h-100q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h800v-300zM1100 200h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300z" />
+<glyph unicode="&#xe257;" d="M701 1098h160q16 0 21 -11t-7 -23l-464 -464l464 -464q12 -12 7 -23t-21 -11h-160q-13 0 -23 9l-471 471q-7 8 -7 18t7 18l471 471q10 9 23 9z" />
+<glyph unicode="&#xe258;" d="M339 1098h160q13 0 23 -9l471 -471q7 -8 7 -18t-7 -18l-471 -471q-10 -9 -23 -9h-160q-16 0 -21 11t7 23l464 464l-464 464q-12 12 -7 23t21 11z" />
+<glyph unicode="&#xe259;" d="M1087 882q11 -5 11 -21v-160q0 -13 -9 -23l-471 -471q-8 -7 -18 -7t-18 7l-471 471q-9 10 -9 23v160q0 16 11 21t23 -7l464 -464l464 464q12 12 23 7z" />
+<glyph unicode="&#xe260;" d="M618 993l471 -471q9 -10 9 -23v-160q0 -16 -11 -21t-23 7l-464 464l-464 -464q-12 -12 -23 -7t-11 21v160q0 13 9 23l471 471q8 7 18 7t18 -7z" />
+<glyph unicode="&#xf8ff;" d="M1000 1200q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM450 1000h100q21 0 40 -14t26 -33l79 -194q5 1 16 3q34 6 54 9.5t60 7t65.5 1t61 -10t56.5 -23t42.5 -42t29 -64t5 -92t-19.5 -121.5q-1 -7 -3 -19.5t-11 -50t-20.5 -73t-32.5 -81.5t-46.5 -83t-64 -70 t-82.5 -50q-13 -5 -42 -5t-65.5 2.5t-47.5 2.5q-14 0 -49.5 -3.5t-63 -3.5t-43.5 7q-57 25 -104.5 78.5t-75 111.5t-46.5 112t-26 90l-7 35q-15 63 -18 115t4.5 88.5t26 64t39.5 43.5t52 25.5t58.5 13t62.5 2t59.5 -4.5t55.5 -8l-147 192q-12 18 -5.5 30t27.5 12z" />
+<glyph unicode="&#x1f511;" d="M250 1200h600q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-500l-255 -178q-19 -9 -32 -1t-13 29v650h-150q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM400 1100v-100h300v100h-300z" />
+<glyph unicode="&#x1f6aa;" d="M250 1200h750q39 0 69.5 -40.5t30.5 -84.5v-933l-700 -117v950l600 125h-700v-1000h-100v1025q0 23 15.5 49t34.5 26zM500 525v-100l100 20v100z" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.ttf b/themes/src/main/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.ttf
new file mode 100644
index 0000000..1413fc6
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.ttf differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.woff b/themes/src/main/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.woff
new file mode 100644
index 0000000..9e61285
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.woff differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.woff2 b/themes/src/main/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.woff2
new file mode 100644
index 0000000..64539b5
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.woff2 differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.eot b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.eot
new file mode 100644
index 0000000..63f5786
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.eot differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.svg b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.svg
new file mode 100644
index 0000000..f49e45d
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.svg
@@ -0,0 +1,19036 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1219" ><font-face
+    font-family="Open Sans"
+    units-per-em="2048"
+    panose-1="2 11 8 6 3 5 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="586" d="M391 485H150L307 1462H647L391 485ZM25 115Q25 205 78 259T229 313Q297 313 338 275T379 168Q379 81 324 27T180 -27Q107 -27 66 10T25 115Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="928" d="M549 1462L397 934H201L272 1462H549ZM954 1462L803 934H604L678 1462H954Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M1036 846L967 614H1225L1206 408H909L793 0H573L690 408H496L381 0H166L279 408H41L59 614H336L406 846H154L172 1055H461L580 1462H797L680 1055H879L995 1462H1210L1094 1055H1333L1315 846H1036ZM553
+614H750L819 846H623L553 614Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1128" d="M1034 496Q1034 312 909 205T541 80L502 -119H362L406 82Q197 94 51 168V434Q249 327 455 317L526 639Q363 700 285 790T207 1004Q207 1177 334 1283T684 1405L719 1556H858L825 1405Q991 1383 1120
+1315L1014 1083Q882 1148 772 1157L709 858Q840 807 904 759T1001 646T1034 496ZM594 322Q657 331 696 367T735 465Q735 511 711 540T651 584L594 322ZM633 1157Q571 1150 537 1116T502 1022Q502 943 582 911L633 1157Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1753" d="M518 1274Q455 1274 408 1146T360 868Q360 772 416 772Q481 772 528 903T575 1178Q575 1274 518 1274ZM821 1165Q821 999 765 855T614 638T397 565Q258 565 187 648T115 885Q115 1054 170 1196T319
+1411T535 1483Q672 1483 746 1403T821 1165ZM1554 1462L471 0H231L1319 1462H1554ZM1376 690Q1337 690 1301 634T1242 480T1219 285Q1219 188 1274 188Q1315 188 1351 243T1410 397T1434 594Q1434 690 1376 690ZM1679 590Q1679 423 1625 277T1477 56T1262 -18Q1118
+-18 1046 60T973 283Q973 460 1026 605T1174 825T1393 899Q1530 899 1604 821T1679 590Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1450" d="M1325 0H975L903 98Q728 -20 500 -20Q291 -20 180 77T68 358Q68 503 146 606T420 807Q344 937 344 1065Q344 1260 461 1372T778 1485Q947 1485 1044 1403T1141 1178Q1141 898 776 752L971
+489Q1015 546 1051 610T1130 784H1430Q1297 471 1120 287L1325 0ZM541 623Q453 572 418 519T383 387Q383 322 428 279T545 236Q660 236 766 295L541 623ZM662 920Q775 979 817 1031T860 1143Q860 1200 830 1225T760 1251Q694 1251 658 1205T621 1085Q621 1039 633
+993T662 920Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="522" d="M549 1462L397 934H201L272 1462H549Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="694" d="M74 281Q74 620 196 907T578 1462H840Q585 1184 463 889T340 270Q340 -38 457 -324H223Q74 -58 74 281Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="694" d="M618 858Q618 516 494 228T115 -324H-147Q352 221 352 868Q352 1175 236 1462H469Q618 1198 618 858Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1116" d="M885 1522L772 1169L1159 1198L1141 944L803 987L963 651L717 578L627 915L430 637L223 801L498 1049L172 1141L258 1378L596 1204L629 1573L885 1522Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1128" d="M475 612H109V831H475V1200H694V831H1061V612H694V248H475V612Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="569" d="M377 238L385 215Q267 -40 123 -264H-102Q-28 -97 92 238H377Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="659" d="M41 424L94 674H618L565 424H41Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="584" d="M25 115Q25 205 78 259T229 313Q297 313 338 275T379 168Q379 81 324 27T180 -27Q107 -27 66 10T25 115Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="862" d="M1014 1462L205 0H-90L719 1462H1014Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1128" d="M1110 1012Q1110 542 942 261T469 -20Q271 -20 169 102T66 467Q66 764 150 1004T378 1364T711 1485Q1110 1485 1110 1012ZM684 1235Q604 1235 535 1131T417 829T369 461Q369 346 396 288T494 229Q575
+229 644 335T760 636T807 1022Q807 1133 777 1184T684 1235Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1128" d="M688 0H383L563 829Q598 981 639 1116Q630 1108 578 1069T315 899L182 1114L748 1462H997L688 0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1128" d="M913 0H-49L-6 213L471 637Q651 796 719 891T788 1071Q788 1146 747 1185T637 1225Q571 1225 502 1192T330 1073L184 1276Q316 1388 436 1435T686 1483Q876 1483 987 1385T1098 1126Q1098 1019 1057
+925T935 737T668 492L399 270V260H967L913 0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1128" d="M1104 1149Q1104 993 1010 887T748 752V748Q879 722 946 642T1014 440Q1014 307 940 202T728 39T401 -20Q162 -20 14 59V326Q98 276 196 251T387 225Q545 225 630 288T715 465Q715 637 457 637H319L365
+858H438Q605 858 701 920T797 1092Q797 1159 754 1196T633 1233Q499 1233 346 1133L219 1337Q343 1418 451 1450T698 1483Q888 1483 996 1393T1104 1149Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1128" d="M1028 303H858L795 0H502L565 303H-25L23 537L793 1462H1104L909 543H1079L1028 303ZM616 543L674 791Q686 849 714 955T756 1096H750Q715 1033 618 915L305 543H616Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1128" d="M623 922Q806 922 912 819T1018 532Q1018 365 947 240T738 48T408 -20Q291 -20 190 3T27 61V330Q201 231 379 231Q533 231 620 302T707 496Q707 590 650 637T483 684Q381 684 270 651L166 729L373
+1462H1128L1073 1200H584L496 907Q568 922 623 922Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1128" d="M88 469Q88 671 149 864T316 1199T573 1413T930 1485Q1055 1485 1153 1458L1102 1212Q1018 1237 911 1237Q717 1237 598 1129T412 784H416Q531 950 727 950Q884 950 969 853T1055 580Q1055 411 984
+267T794 51T516 -20Q304 -20 196 107T88 469ZM530 227Q629 227 691 321T754 557Q754 628 721 670T618 713Q558 713 504 678T416 582T383 422Q383 331 423 279T530 227Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1128" d="M78 0L815 1202H186L242 1462H1217L1176 1268L424 0H78Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1128" d="M721 1485Q844 1485 936 1443T1077 1325T1126 1151Q1126 1017 1046 918T815 766Q1032 625 1032 401Q1032 279 969 183T788 33T514 -20Q300 -20 178 80T55 350Q55 648 403 776Q238 908 238 1075Q238
+1194 296 1287T464 1433T721 1485ZM582 643Q466 598 409 536T352 383Q352 302 402 255T537 207Q630 207 684 260T739 399Q739 472 703 530T582 643ZM694 1260Q618 1260 573 1214T528 1094Q528 962 651 893Q836 965 836 1114Q836 1182 797 1221T694 1260Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1128" d="M1092 1001Q1092 721 993 468T729 98T326 -20Q198 -20 86 12V268Q197 227 313 227Q434 227 520 276T664 414T764 672H760Q649 514 465 514Q302 514 213 617T123 903Q123 1069 196 1208T392 1416T678
+1485Q881 1485 986 1362T1092 1001ZM645 1237Q580 1237 530 1195T452 1081T424 928Q424 841 461 797T567 752Q627 752 678 788T760 888T791 1047Q791 1131 756 1184T645 1237Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="584" d="M207 940Q207 1032 262 1085T412 1139Q480 1139 520 1101T561 993Q561 907 507 853T362 799Q290 799 249 835T207 940ZM25 115Q25 205 78 259T229 313Q297 313 338 275T379 168Q379 81 324 27T180
+-27Q107 -27 66 10T25 115Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="584" d="M385 215Q267 -40 123 -264H-102Q-28 -97 92 238H377L385 215ZM207 940Q207 1032 262 1085T412 1139Q480 1139 520 1101T561 993Q561 907 507 853T362 799Q290 799 249 835T207 940Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1128" d="M1061 203L109 641V784L1061 1280V1040L418 723L1061 442V203Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1128" d="M109 807V1024H1061V807H109ZM109 418V637H1061V418H109Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1128" d="M109 442L752 723L109 1040V1280L1061 784V641L109 203V442Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="940" d="M260 485L274 563Q293 666 347 740T520 895Q644 979 677 1022T711 1118Q711 1237 578 1237Q528 1237 472 1221T270 1137L178 1358Q408 1483 623 1483Q800 1483 903 1396T1006 1151Q1006 1068 978
+1002T895 879T705 731Q641 688 609 658T556 594T518 485H260ZM166 115Q166 206 221 259T371 313Q439 313 479 275T520 168Q520 81 465 27T322 -27Q248 -27 207 11T166 115Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1753" d="M1733 840Q1733 667 1669 519T1492 288T1237 205Q1149 205 1093 243T1020 352H1014Q964 275 901 240T754 205Q627 205 556 284T485 514Q485 661 552 790T740 995T1008 1071Q1193 1071 1335 1016L1229
+596Q1218 552 1210 520T1202 455Q1202 387 1260 387Q1326 387 1384 451T1476 622T1511 836Q1511 1049 1388 1161T1028 1274Q825 1274 662 1180T407 914T315 522Q315 279 449 142T825 4Q942 4 1044 24T1266 90V-96Q1036 -186 801 -186Q584 -186 423 -101T177 141T92
+500Q92 779 212 997T555 1338T1053 1462Q1371 1462 1552 1299T1733 840ZM995 889Q913 889 850 838T750 701T713 526Q713 461 737 424T807 387Q948 387 1020 657L1077 879Q1041 889 995 889Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1286" d="M842 348H369L197 0H-123L643 1468H1016L1163 0H866L842 348ZM827 608L801 958Q791 1089 791 1211V1247Q747 1127 682 993L494 608H827Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1270" d="M788 1462Q1017 1462 1134 1381T1251 1137Q1251 987 1168 890T932 760V754Q1032 728 1091 658T1151 477Q1151 248 998 124T575 0H53L362 1462H788ZM545 883H694Q815 883 875 931T936 1071Q936 1208 766
+1208H614L545 883ZM412 256H592Q709 256 775 314T842 475Q842 637 659 637H494L412 256Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1253" d="M905 1227Q773 1227 668 1146T498 908T434 569Q434 402 502 321T721 240Q867 240 1059 317V57Q860 -20 659 -20Q405 -20 264 129T123 553Q123 815 227 1035T505 1370T905 1485Q1030 1485 1127 1463T1335
+1380L1217 1130Q1111 1189 1042 1208T905 1227Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1386" d="M1323 909Q1323 629 1225 423T942 108T504 0H53L362 1462H758Q1028 1462 1175 1319T1323 909ZM518 256Q666 256 776 332T948 555T1010 893Q1010 1047 938 1127T729 1208H614L412 256H518Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1110" d="M870 0H53L362 1462H1180L1126 1208H614L547 887H1024L969 633H492L412 256H924L870 0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1087" d="M358 0H53L362 1462H1176L1122 1208H614L535 831H1008L952 578H479L358 0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1413" d="M754 821H1317L1155 59Q1021 13 907 -3T664 -20Q405 -20 264 127T123 549Q123 817 230 1033T531 1367T979 1485Q1197 1485 1389 1386L1274 1135Q1200 1175 1126 1199T965 1223Q812 1223 692 1140T503
+904T434 573Q434 401 506 321T729 240Q805 240 899 264L965 563H698L754 821Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1434" d="M1135 0H829L963 631H492L358 0H53L362 1462H668L547 889H1018L1139 1462H1444L1135 0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="659" d="M53 0L365 1462H670L358 0H53Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="678" d="M-135 -430Q-229 -430 -322 -403V-150Q-234 -170 -158 -170Q-59 -170 2 -110T92 82L385 1462H690L387 39Q335 -206 212 -318T-135 -430Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1255" d="M1141 0H803L592 592L467 522L358 0H53L362 1462H668L516 760L674 965L1083 1462H1444L850 762L1141 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1061" d="M53 0L362 1462H668L412 256H924L870 0H53Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1802" d="M838 369L1389 1462H1812L1503 0H1223L1368 692Q1421 939 1473 1133H1468L899 0H618L557 1133H553Q542 1045 515 902T328 0H53L362 1462H766L834 369H838Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1546" d="M1247 0H905L549 1106H543L539 1074Q507 858 473 688L328 0H53L362 1462H719L1059 385H1063Q1075 461 1102 602T1282 1462H1556L1247 0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1495" d="M1432 938Q1432 655 1333 432T1062 94T666 -20Q410 -20 267 127T123 537Q123 802 222 1024T495 1366T897 1485Q1152 1485 1292 1341T1432 938ZM872 1227Q751 1227 650 1136T492 884T434 537Q434 390 500
+315T688 240Q809 240 908 327T1064 573T1120 930Q1120 1072 1055 1149T872 1227Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1188" d="M522 774H578Q720 774 801 843T883 1028Q883 1208 688 1208H614L522 774ZM1190 1036Q1190 795 1021 658T553 520H467L358 0H53L362 1462H700Q942 1462 1066 1356T1190 1036Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1495" d="M1432 938Q1432 622 1310 383T975 45L1229 -348H870L692 -20H666Q410 -20 267 127T123 537Q123 802 222 1024T495 1366T897 1485Q1152 1485 1292 1341T1432 938ZM872 1227Q751 1227 650 1136T492 884T434
+537Q434 390 500 315T688 240Q809 240 908 327T1064 573T1120 930Q1120 1072 1055 1149T872 1227Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1247" d="M530 813H608Q739 813 812 870T885 1044Q885 1126 838 1167T688 1208H614L530 813ZM477 561L358 0H53L362 1462H721Q958 1462 1077 1360T1196 1061Q1196 903 1113 790T874 621L1135 0H803L596 561H477Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1085" d="M946 432Q946 223 798 102T397 -20Q176 -20 41 70V344Q234 236 399 236Q511 236 574 278T637 395Q637 438 624 470T585 531T461 633Q323 732 267 829T211 1038Q211 1167 273 1268T449 1426T713 1483Q930
+1483 1110 1384L1001 1151Q845 1225 713 1225Q630 1225 577 1180T524 1061Q524 1000 557 955T705 834Q826 754 886 658T946 432Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1087" d="M571 0H266L520 1204H168L223 1462H1233L1178 1204H825L571 0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1415" d="M1434 1462L1233 516Q1176 250 1015 115T596 -20Q384 -20 263 93T141 401Q141 473 156 539L352 1462H657L463 543Q446 469 446 418Q446 240 635 240Q758 240 830 316T934 545L1128 1462H1434Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1208" d="M535 299Q613 520 645 582L1077 1462H1393L645 0H311L184 1462H479L530 582Q534 537 534 449Q532 346 528 299H535Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1831" d="M1006 1018Q960 872 891 719L567 0H229L184 1462H471L477 664Q477 612 473 491T463 317H469Q491 381 536 497T596 643L965 1462H1235L1256 589Q1256 443 1247 317H1253Q1296 446 1384 666L1714 1462H2023L1376
+0H1030L1008 721L1006 860Q1006 948 1010 1018H1006Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1241" d="M1124 0H793L621 543L225 0H-117L459 764L221 1462H541L694 944L1057 1462H1401L856 737L1124 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1155" d="M627 870L1001 1462H1343L725 559L606 0H303L422 559L186 1462H498L627 870Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1098" d="M920 0H-61L-23 201L754 1206H211L264 1462H1200L1159 1260L377 256H973L920 0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="678" d="M436 -324H-37L344 1462H817L772 1251H557L266 -113H481L436 -324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="862" d="M481 1462L705 0H438L221 1462H481Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="678" d="M-92 -113H121L412 1251H197L242 1462H715L334 -324H-137L-92 -113Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1081" d="M20 520L639 1470H786L1063 520H840L666 1153L264 520H20Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="819" d="M635 -324H-186L-156 -184H666L635 -324Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1135" d="M934 1241H750Q679 1310 612 1394T508 1548V1569H819Q855 1421 934 1266V1241Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1217" d="M406 -20Q259 -20 175 86T90 385Q90 583 162 762T351 1040T608 1139Q705 1139 775 1097T885 975H893L950 1118H1182L944 0H715L729 145H725Q591 -20 406 -20ZM524 223Q593 223 657 290T760 471T799 731Q799
+802 761 848T659 895Q591 895 530 823T432 633T395 399Q395 311 428 267T524 223Z" />
+<glyph unicode="b" glyph-name="b" d="M813 1139Q959 1139 1043 1031T1128 733Q1128 543 1060 366T873 84T610 -20Q416 -20 334 143H326L268 0H37L367 1556H668L606 1268Q565 1086 522 969H530Q608 1067 672 1103T813 1139ZM692 895Q624 895 562 830T460 650T420
+399Q420 319 457 271T559 223Q626 223 687 292T785 481T823 719Q823 895 692 895Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="989" d="M506 -20Q305 -20 198 87T90 391Q90 603 164 776T374 1044T682 1139Q864 1139 1010 1067L918 838Q864 861 812 878T694 895Q609 895 541 831T434 656T395 416Q395 320 440 272T567 223Q643 223 708 246T842
+305V59Q690 -20 506 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1217" d="M406 -20Q259 -20 175 87T90 387Q90 583 161 761T350 1039T608 1139Q690 1139 749 1102T862 975H870L872 1003Q878 1113 897 1198L973 1556H1274L944 0H715L729 145H725Q654 58 577 19T406 -20ZM532 223Q598
+223 660 291T761 474T799 719Q799 799 762 847T659 895Q591 895 530 823T432 633T395 399Q395 223 532 223Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1141" d="M696 922Q608 922 530 842T428 647H473Q628 647 714 695T801 827Q801 922 696 922ZM532 -20Q322 -20 206 93T90 412Q90 619 172 789T396 1049T715 1139Q892 1139 991 1058T1090 834Q1090 647 923 546T446
+444H395L393 423V403Q393 312 444 260T592 207Q679 207 750 226T922 293V66Q750 -20 532 -20Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="764" d="M-45 -492Q-149 -492 -219 -467V-225Q-158 -246 -104 -246Q-43 -246 3 -206T68 -76L272 889H109L139 1034L322 1118L340 1202Q381 1392 478 1479T752 1567Q883 1567 987 1518L907 1294Q838 1325 774 1325Q717
+1325 682 1285T635 1180L623 1118H842L793 889H573L358 -121Q281 -492 -45 -492Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1108" d="M1186 1116L1151 950L977 909Q993 857 993 791Q993 596 872 483T543 369Q484 369 444 379Q360 352 360 301Q360 267 390 252T479 229L616 211Q779 190 853 127T928 -57Q928 -268 772 -380T326 -492Q118
+-492 2 -417T-115 -209Q-115 -107 -47 -34T168 88Q94 135 94 221Q94 292 138 343T285 442Q220 491 189 554T158 707Q158 906 283 1022T625 1139Q708 1139 791 1116H1186ZM365 -6Q259 -20 205 -63T150 -172Q150 -287 344 -287Q495 -287 572 -242T649 -115Q649 -76
+617 -55T479 -20L365 -6ZM614 948Q537 948 490 872T442 680Q442 561 545 561Q620 561 666 637T713 831Q713 948 614 948Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1237" d="M977 0H676L813 653Q829 721 829 772Q829 895 721 895Q629 895 554 781T436 463L338 0H37L367 1556H668Q629 1375 608 1278T522 969H530Q592 1046 668 1092T844 1139Q982 1139 1057 1056T1133 817Q1133
+744 1110 637L977 0Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="608" d="M322 1380Q322 1467 369 1511T504 1556Q577 1556 615 1525T653 1436Q653 1356 609 1307T473 1257Q322 1257 322 1380ZM338 0H37L274 1118H575L338 0Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="608" d="M-90 -492Q-194 -492 -264 -467V-225Q-203 -246 -150 -246Q-13 -246 23 -76L276 1118H578L313 -121Q236 -492 -90 -492ZM324 1380Q324 1467 371 1511T506 1556Q579 1556 617 1525T655 1436Q655 1356 611
+1307T475 1257Q324 1257 324 1380Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1163" d="M920 1118H1264L766 614L1051 0H715L532 420L412 348L338 0H37L367 1556H668L520 862Q512 821 491 745L463 643H467L920 1118Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="608" d="M338 0H37L367 1556H668L338 0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1853" d="M844 1139Q1063 1139 1106 911H1112Q1180 1021 1272 1080T1470 1139Q1606 1139 1677 1054T1749 817Q1749 741 1726 637L1593 0H1292L1430 653Q1446 721 1446 772Q1446 895 1348 895Q1256 895 1182 783T1063
+465L967 0H666L803 653Q819 721 819 772Q819 895 721 895Q629 895 554 781T436 463L338 0H37L274 1118H504L483 911H489Q635 1139 844 1139Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1237" d="M977 0H676L813 653Q829 721 829 772Q829 895 721 895Q629 895 554 781T436 463L338 0H37L274 1118H504L483 911H489Q635 1139 844 1139Q982 1139 1057 1056T1133 817Q1133 744 1110 637L977 0Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1198" d="M805 696Q805 893 662 893Q587 893 528 832T431 653T393 410Q393 225 543 225Q618 225 678 286T771 457T805 696ZM1108 696Q1108 485 1038 322T834 70T518 -20Q323 -20 207 97T90 410Q90 623 161 789T368
+1047T684 1139Q880 1139 994 1021T1108 696Z" />
+<glyph unicode="p" glyph-name="p" d="M813 1139Q959 1139 1043 1032T1128 731Q1128 540 1060 364T872 84T610 -20Q527 -20 467 17T356 143H348Q336 -16 305 -152L233 -492H-68L274 1118H504L487 948H496Q634 1139 813 1139ZM692 895Q624 895 561 828T459 648T420
+399Q420 319 457 271T559 223Q626 223 687 292T785 481T823 719Q823 895 692 895Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1217" d="M391 -20Q303 -20 235 27T129 166T90 385Q90 583 162 762T351 1040T608 1139Q694 1139 760 1102T885 975H893L950 1118H1182L840 -492H539Q586 -274 612 -155T696 150H688Q616 56 545 18T391 -20ZM535
+223Q599 223 662 293T762 474T799 719Q799 799 762 847T659 895Q591 895 530 823T432 633T395 399Q395 311 431 267T535 223Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="862" d="M842 1139Q901 1139 938 1128L872 838Q827 854 772 854Q656 854 569 763T444 500L338 0H37L274 1118H504L483 911H489Q636 1139 842 1139Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="969" d="M829 369Q829 181 705 81T358 -20Q251 -20 172 -5T23 45V293Q180 203 342 203Q422 203 473 235T524 324Q524 367 487 401T356 487Q235 555 187 622T139 782Q139 952 249 1045T565 1139Q766 1139 928 1044L829
+829Q689 913 571 913Q514 913 479 888T444 819Q444 780 476 751T596 676Q719 613 774 539T829 369Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="840" d="M514 223Q579 223 676 258V33Q565 -20 410 -20Q260 -20 190 43T119 238Q119 288 131 350L246 889H94L123 1036L319 1120L451 1356H645L596 1118H879L829 889H547L432 350Q426 320 426 297Q426 223 514 223Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1237" d="M262 1118H563L426 465Q410 397 410 346Q410 223 518 223Q610 223 685 337T803 655L901 1118H1202L965 0H735L756 207H750Q605 -20 395 -20Q257 -20 184 62T111 301Q111 394 135 514L262 1118Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="1049" d="M455 301Q510 454 547 524L844 1118H1167L563 0H240L102 1118H397L442 532Q449 399 449 301H455Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1614" d="M856 860Q794 682 733 541L500 0H176L125 1118H406L410 623L406 456L399 285H403Q409 305 417 326T468 463T514 582L745 1118H1073V582Q1073 440 1063 285H1069L1097 365Q1170 573 1192 623L1411 1118H1718L1188
+0H858L852 520Q852 675 862 860H856Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1087" d="M379 573L154 1118H475L590 784L834 1118H1188L721 557L965 0H639L514 342L250 0H-100L379 573Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1063" d="M102 1118H397L453 600Q467 478 467 307H473Q493 358 517 426T582 580L842 1118H1169L489 -160Q312 -492 6 -492Q-84 -492 -141 -473V-233Q-73 -246 -25 -246Q59 -246 122 -198T240 -49L266 0L102 1118Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="932" d="M748 0H-47L-12 180L563 885H166L217 1118H967L924 918L358 233H797L748 0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="727" d="M201 319Q201 459 -8 459L37 688Q159 688 229 729T322 868L383 1153Q421 1323 514 1392T784 1462H868L819 1237Q729 1235 689 1203T633 1096L567 799Q522 592 291 563V555Q376 529 417 473T459
+338Q459 294 444 225L408 47Q401 19 401 -4Q401 -58 434 -78T526 -98V-324H473Q306 -324 220 -261T133 -76Q133 -19 147 49L186 233Q201 302 201 319Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M455 1550H674V-465H455V1550Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="727" d="M256 1462Q596 1462 596 1214Q596 1158 582 1090L543 905Q528 836 528 819Q528 680 737 680L692 451Q570 451 500 409T408 270L346 -14Q309 -184 216 -254T-55 -324H-100V-98Q-7 -95 37 -63T96
+43L162 340Q187 451 257 506T438 575V584Q270 635 270 801Q270 844 285 913L322 1092Q328 1122 328 1143Q328 1197 292 1217T182 1237L223 1462H256Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1128" d="M342 672Q288 672 226 639T109 551V782Q210 891 365 891Q429 891 482 877T621 827Q685 800 732 786T827 772Q878 772 939 802T1061 893V662Q958 553 805 553Q746 553 696 564T549 616Q460 654
+422 663T342 672Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="586" d="M182 606H424L266 -371H-74L182 606ZM549 977Q549 885 494 832T344 778Q276 778 236 816T195 924Q195 1009 249 1063T393 1118Q466 1118 507 1081T549 977Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1128" d="M575 -20H387L436 190Q302 226 233 326T164 584Q164 777 226 939T404 1201T672 1325L705 1483H893L858 1325Q976 1311 1083 1260L991 1030Q938 1053 886 1070T768 1087Q635 1087 552 944T469
+608Q469 512 514 464T641 416Q716 416 781 439T915 498V252Q779 181 616 172L575 -20Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1128" d="M872 1485Q1067 1485 1241 1399L1128 1167Q987 1235 891 1235Q816 1235 768 1196T700 1063L653 834H952L907 614H608L590 530Q548 335 381 260H1036L981 0H-12L37 246Q233 294 281 510L303
+614H111L156 834H348L397 1081Q438 1278 559 1381T872 1485Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1128" d="M190 723Q190 825 244 920L115 1047L262 1194L389 1067Q480 1120 586 1120Q691 1120 782 1065L909 1194L1059 1051L930 922Q983 833 983 723Q983 616 930 524L1055 399L909 254L782 379Q687
+328 586 328Q471 328 387 379L262 256L117 401L244 526Q190 619 190 723ZM397 723Q397 646 451 591T586 535Q667 535 722 590T778 723Q778 803 722 858T586 913Q508 913 453 857T397 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1128" d="M608 872L979 1462H1290L784 715H987L948 537H696L668 399H920L883 221H631L584 0H293L340 221H88L125 399H377L406 537H154L193 715H389L197 1462H494L608 872Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M455 1550H674V735H455V1550ZM455 350H674V-465H455V350Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="995" d="M150 760Q150 849 197 923T352 1065Q310 1099 282 1149T254 1257Q254 1406 371 1491T684 1577Q856 1577 1028 1489L946 1296Q799 1380 664 1380Q520 1380 520 1274Q520 1231 560 1198T688 1126Q930
+1020 930 823Q930 635 737 520Q775 485 801 435T827 326Q827 165 701 73T356 -20Q152 -20 20 55V279Q192 174 365 174Q464 174 509 209T555 301Q555 340 522 373T395 453Q278 510 214 584T150 760ZM506 967Q455 942 424 897T393 797Q393 743 436 701T580 612Q629
+643 655 690T682 786Q682 895 506 967Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1135" d="M397 1382Q397 1460 439 1500T559 1540Q692 1540 692 1432Q692 1359 653 1316T532 1272Q397 1272 397 1382ZM799 1382Q799 1460 841 1500T961 1540Q1026 1540 1060 1512T1094 1432Q1094 1359
+1055 1316T934 1272Q799 1272 799 1382Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M932 1010Q821 1010 769 937T717 723Q717 589 772 520T932 451Q975 451 1040 466T1165 510V319Q1034 262 903 262Q707 262 596 384T485 721Q485 946 602 1072T928 1198Q1070 1198 1212 1126L1137
+952Q1023 1010 932 1010ZM125 731Q125 931 225 1106T500 1382T877 1483Q1076 1483 1250 1384T1526 1109T1628 731Q1628 532 1530 358T1257 82T877 -20Q670 -20 495 83T223 360T125 731ZM266 731Q266 567 347 426T571 203T877 121Q1044 121 1185 204T1406 427T1487
+731Q1487 894 1407 1034T1185 1258T877 1341Q713 1341 571 1259T347 1035T266 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="772" d="M369 752Q266 752 209 822T152 1020Q152 1137 198 1248T321 1419T498 1479Q618 1479 678 1376H684L723 1466H877L719 764H565L573 856H571Q491 752 369 752ZM442 903Q487 903 526 944T591
+1064T618 1219Q618 1325 530 1325Q457 1325 407 1229T356 1014Q356 903 442 903Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1151" d="M72 569L473 1032L664 877L385 543L520 193L274 90L72 551V569ZM559 569L961 1032L1151 877L872 543L1008 193L762 90L559 551V569Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1128" d="M1061 248H842V612H109V831H1061V248Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="659" d="M41 424L94 674H618L565 424H41Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M1237 899Q1237 813 1193 750T1063 653L1260 293H1006L868 590H801V293H571V1167H879Q1052 1167 1144 1100T1237 899ZM801 758H852Q924 758 965 789T1006 881Q1006 940 971 969T854 999H801V758ZM125
+731Q125 931 225 1106T500 1382T877 1483Q1076 1483 1250 1384T1526 1109T1628 731Q1628 532 1530 358T1257 82T877 -20Q670 -20 495 83T223 360T125 731ZM266 731Q266 567 347 426T571 203T877 121Q1044 121 1185 204T1406 427T1487 731Q1487 894 1407 1034T1185
+1258T877 1341Q713 1341 571 1259T347 1035T266 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6L39 1757H1075L1030 1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M164 1137Q164 1230 210 1310T338 1437T510 1483Q603 1483 683 1436T810 1309T856 1137Q856 1044 810 964T684 839T510 793Q417 793 337 838T211 963T164 1137ZM354 1137Q354 1074 399 1029T510
+983Q576 983 621 1029T666 1137Q666 1200 621 1247T510 1294Q445 1294 400 1247T354 1137Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1128" d="M475 674H109V893H475V1262H694V893H1061V674H694V309H475V674ZM109 0V219H1061V0H109Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="776" d="M707 586H59L94 752L367 971Q478 1062 508 1093T552 1152T567 1208Q567 1250 542 1270T481 1290Q395 1290 293 1208L193 1366Q267 1423 349 1453T541 1483Q664 1483 737 1420T811 1260Q811
+1190 789 1137T719 1034T530 881L401 786H748L707 586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="776" d="M813 1270Q813 1183 762 1125T596 1036V1032Q750 999 750 856Q750 725 643 647T358 569Q283 569 213 584T92 625V817Q217 745 346 745Q422 745 471 775T520 864Q520 901 494 926T406
+952H279L313 1112H403Q487 1112 535 1140T584 1225Q584 1265 558 1285T487 1305Q401 1305 299 1239L217 1389Q359 1481 530 1481Q660 1481 736 1426T813 1270Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1135" d="M483 1266Q562 1354 705 1569H1040V1552Q994 1496 886 1400T692 1241H483V1266Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1249" d="M424 348Q424 288 455 256T535 223Q625 223 697 329T815 649L913 1118H1214L977 0H748L766 176H760Q643 -20 494 -20Q443 -20 405 -1T346 47H340Q332 -19 319 -92T236 -492H-68L274 1118H575L440
+473Q424 403 424 348Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1202 -260H1040V1356H874V-260H713V559Q651 541 567 541Q351 541 249 666T147 1042Q147 1298 254 1427T598 1556H1202V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="584" d="M131 695Q131 785 184 839T335 893Q403 893 444 855T485 748Q485 661 430 607T286 553Q213 553 172 590T131 695Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="420" d="M262 -250Q262 -366 179 -429T-55 -492Q-141 -492 -207 -469V-301Q-144 -324 -82 -324Q20 -324 20 -242Q20 -208 -11 -186T-121 -154L-25 0H160L121 -72Q262 -121 262 -250Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="776" d="M528 1462H735L549 586H303L387 983Q411 1092 442 1190Q426 1175 362 1130L231 1049L129 1214L528 1462Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="754" d="M809 1194Q809 1066 761 962T628 805T432 752Q298 752 230 827T162 1038Q162 1235 266 1357T543 1479Q672 1479 740 1406T809 1194ZM522 1315Q458 1315 415 1226T371 1026Q371 915 451
+915Q514 915 556 1000T598 1208Q598 1315 522 1315Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1151" d="M1079 535L678 72L487 227L766 561L631 911L877 1014L1079 553V535ZM592 535L190 72L0 227L279 561L143 911L389 1014L592 553V535Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1804" d="M1500 1462L416 0H177L1264 1462H1500ZM752 1462H959L773 586H527L611 983Q635 1092 666 1190Q650 1175 586 1130L455 1049L353 1214L752 1462ZM1573 152H1454L1422 1H1184L1217 152H844L875
+326L1350 883H1610L1489 320H1608L1573 152ZM1252 320L1310 551L1332 625Q1319 605 1289 567T1078 320H1252Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1804" d="M1588 1H940L975 167L1248 386Q1359 477 1389 508T1433 567T1448 623Q1448 665 1423 685T1362 705Q1276 705 1174 623L1074 781Q1148 838 1230 868T1422 898Q1545 898 1618 835T1692 675Q1692
+605 1670 552T1600 449T1411 296L1282 201H1629L1588 1ZM752 1462H959L773 586H527L611 983Q635 1092 666 1190Q650 1175 586 1130L455 1049L353 1214L752 1462ZM1500 1462L416 0H177L1264 1462H1500Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1804" d="M1633 1462L549 0H310L1397 1462H1633ZM1634 152H1515L1483 1H1245L1278 152H905L936 326L1411 883H1671L1550 320H1669L1634 152ZM1313 320L1371 551L1393 625Q1380 605 1350 567T1139
+320H1313ZM854 1270Q854 1183 803 1125T637 1036V1032Q791 999 791 856Q791 725 684 647T399 569Q324 569 254 584T133 625V817Q258 745 387 745Q463 745 512 775T561 864Q561 901 535 926T447 952H320L354 1112H444Q528 1112 576 1140T625 1225Q625 1265 599 1285T528
+1305Q442 1305 340 1239L258 1389Q400 1481 571 1481Q701 1481 777 1426T854 1270Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="940" d="M678 606L664 528Q645 423 588 348T418 197Q296 114 262 71T227 -27Q227 -145 360 -145Q410 -145 466 -129T668 -45L760 -266Q539 -391 315 -391Q138 -391 35 -304T-68 -59Q-68 23 -40
+89T44 213T233 360Q326 422 361 466T412 573L420 606H678ZM772 977Q772 885 717 832T567 778Q499 778 459 816T418 924Q418 1010 472 1064T616 1118Q689 1118 730 1081T772 977Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1286" d="M842 348H369L197 0H-123L643 1468H1016L1163 0H866L842 348ZM827 608L801 958Q791 1089 791 1211V1247Q747 1127 682 993L494 608H827ZM965 1579H781Q710 1648 643 1732T539 1886V1907H850Q886
+1759 965 1604V1579Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1286" d="M842 348H369L197 0H-123L643 1468H1016L1163 0H866L842 348ZM827 608L801 958Q791 1089 791 1211V1247Q747 1127 682 993L494 608H827ZM735 1604Q814 1692 957 1907H1292V1890Q1246 1834 1138
+1738T944 1579H735V1604Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1286" d="M842 348H369L197 0H-123L643 1468H1016L1163 0H866L842 348ZM827 608L801 958Q791 1089 791 1211V1247Q747 1127 682 993L494 608H827ZM1235 1579H1037Q974 1632 875 1747Q770 1659 643
+1579H426V1604Q489 1661 579 1751T721 1907H1059Q1081 1853 1133 1765T1235 1604V1579Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1286" d="M842 348H369L197 0H-123L643 1468H1016L1163 0H866L842 348ZM827 608L801 958Q791 1089 791 1211V1247Q747 1127 682 993L494 608H827ZM999 1579Q950 1579 913 1595T843 1631T782 1667T719
+1684Q688 1684 664 1656T625 1577H448Q507 1886 729 1886Q778 1886 816 1870T888 1834T950 1798T1010 1782Q1044 1782 1068 1807T1114 1888H1286Q1220 1579 999 1579Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1286" d="M842 348H369L197 0H-123L643 1468H1016L1163 0H866L842 348ZM827 608L801 958Q791 1089 791 1211V1247Q747 1127 682 993L494 608H827ZM516 1720Q516 1798 558 1838T678 1878Q811 1878
+811 1770Q811 1697 772 1654T651 1610Q516 1610 516 1720ZM918 1720Q918 1798 960 1838T1080 1878Q1145 1878 1179 1850T1213 1770Q1213 1697 1174 1654T1053 1610Q918 1610 918 1720Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1286" d="M842 348H369L197 0H-123L643 1468H1016L1163 0H866L842 348ZM827 608L801 958Q791 1089 791 1211V1247Q747 1127 682 993L494 608H827ZM1087 1567Q1087 1460 1017 1394T833 1327Q723 1327 654
+1390T585 1565Q585 1674 653 1738T833 1802Q943 1802 1015 1737T1087 1567ZM930 1565Q930 1610 903 1635T833 1661Q791 1661 764 1636T737 1565Q737 1520 761 1494T833 1468Q875 1468 902 1494T930 1565Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1833" d="M1593 0H776L850 348H424L205 0H-123L799 1462H1903L1849 1208H1337L1270 887H1747L1692 633H1214L1135 256H1647L1593 0ZM905 608L1032 1208H952L588 608H905Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1253" d="M905 1227Q773 1227 668 1146T498 908T434 569Q434 402 502 321T721 240Q867 240 1059 317V57Q860 -20 659 -20Q405 -20 264 129T123 553Q123 815 227 1035T505 1370T905 1485Q1030 1485
+1127 1463T1335 1380L1217 1130Q1111 1189 1042 1208T905 1227ZM825 -250Q825 -366 742 -429T508 -492Q422 -492 356 -469V-301Q419 -324 481 -324Q583 -324 583 -242Q583 -208 552 -186T442 -154L538 0H723L684 -72Q825 -121 825 -250Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1110" d="M870 0H53L362 1462H1180L1126 1208H614L547 887H1024L969 633H492L412 256H924L870 0ZM906 1579H722Q651 1648 584 1732T480 1886V1907H791Q827 1759 906 1604V1579Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1110" d="M870 0H53L362 1462H1180L1126 1208H614L547 887H1024L969 633H492L412 256H924L870 0ZM608 1604Q687 1692 830 1907H1165V1890Q1119 1834 1011 1738T817 1579H608V1604Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1110" d="M870 0H53L362 1462H1180L1126 1208H614L547 887H1024L969 633H492L412 256H924L870 0ZM1177 1579H979Q916 1632 817 1747Q712 1659 585 1579H368V1604Q431 1661 521 1751T663 1907H1001Q1023
+1853 1075 1765T1177 1604V1579Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1110" d="M870 0H53L362 1462H1180L1126 1208H614L547 887H1024L969 633H492L412 256H924L870 0ZM438 1720Q438 1798 480 1838T600 1878Q733 1878 733 1770Q733 1697 694 1654T573 1610Q438 1610
+438 1720ZM840 1720Q840 1798 882 1838T1002 1878Q1067 1878 1101 1850T1135 1770Q1135 1697 1096 1654T975 1610Q840 1610 840 1720Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="659" d="M53 0L365 1462H670L358 0H53ZM667 1579H483Q412 1648 345 1732T241 1886V1907H552Q588 1759 667 1604V1579Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="659" d="M53 0L365 1462H670L358 0H53ZM414 1604Q493 1692 636 1907H971V1890Q925 1834 817 1738T623 1579H414V1604Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="659" d="M53 0L365 1462H670L358 0H53ZM937 1579H739Q676 1632 577 1747Q472 1659 345 1579H128V1604Q191 1661 281 1751T423 1907H761Q783 1853 835 1765T937 1604V1579Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="659" d="M53 0L365 1462H670L358 0H53ZM222 1720Q222 1798 264 1838T384 1878Q517 1878 517 1770Q517 1697 478 1654T357 1610Q222 1610 222 1720ZM624 1720Q624 1798 666 1838T786 1878Q851 1878
+885 1850T919 1770Q919 1697 880 1654T759 1610Q624 1610 624 1720Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1386" d="M1323 909Q1323 629 1225 423T942 108T504 0H53L178 596H37L92 850H231L362 1462H758Q1028 1462 1175 1319T1323 909ZM518 256Q666 256 776 332T948 555T1010 893Q1010 1047 938 1127T729 1208H614L539
+850H776L721 596H483L412 256H518Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1546" d="M1247 0H905L549 1106H543L539 1074Q507 858 473 688L328 0H53L362 1462H719L1059 385H1063Q1075 461 1102 602T1282 1462H1556L1247 0ZM1114 1579Q1065 1579 1028 1595T958 1631T897 1667T834
+1684Q803 1684 779 1656T740 1577H563Q622 1886 844 1886Q893 1886 931 1870T1003 1834T1065 1798T1125 1782Q1159 1782 1183 1807T1229 1888H1401Q1335 1579 1114 1579Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1495" d="M1432 938Q1432 655 1333 432T1062 94T666 -20Q410 -20 267 127T123 537Q123 802 222 1024T495 1366T897 1485Q1152 1485 1292 1341T1432 938ZM872 1227Q751 1227 650 1136T492 884T434 537Q434
+390 500 315T688 240Q809 240 908 327T1064 573T1120 930Q1120 1072 1055 1149T872 1227ZM1053 1579H869Q798 1648 731 1732T627 1886V1907H938Q974 1759 1053 1604V1579Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1495" d="M1432 938Q1432 655 1333 432T1062 94T666 -20Q410 -20 267 127T123 537Q123 802 222 1024T495 1366T897 1485Q1152 1485 1292 1341T1432 938ZM872 1227Q751 1227 650 1136T492 884T434 537Q434
+390 500 315T688 240Q809 240 908 327T1064 573T1120 930Q1120 1072 1055 1149T872 1227ZM753 1604Q832 1692 975 1907H1310V1890Q1264 1834 1156 1738T962 1579H753V1604Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1495" d="M1432 938Q1432 655 1333 432T1062 94T666 -20Q410 -20 267 127T123 537Q123 802 222 1024T495 1366T897 1485Q1152 1485 1292 1341T1432 938ZM872 1227Q751 1227 650 1136T492 884T434
+537Q434 390 500 315T688 240Q809 240 908 327T1064 573T1120 930Q1120 1072 1055 1149T872 1227ZM1308 1579H1110Q1047 1632 948 1747Q843 1659 716 1579H499V1604Q562 1661 652 1751T794 1907H1132Q1154 1853 1206 1765T1308 1604V1579Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1495" d="M1432 938Q1432 655 1333 432T1062 94T666 -20Q410 -20 267 127T123 537Q123 802 222 1024T495 1366T897 1485Q1152 1485 1292 1341T1432 938ZM872 1227Q751 1227 650 1136T492 884T434 537Q434
+390 500 315T688 240Q809 240 908 327T1064 573T1120 930Q1120 1072 1055 1149T872 1227ZM1071 1579Q1022 1579 985 1595T915 1631T854 1667T791 1684Q760 1684 736 1656T697 1577H520Q579 1886 801 1886Q850 1886 888 1870T960 1834T1022 1798T1082 1782Q1116
+1782 1140 1807T1186 1888H1358Q1292 1579 1071 1579Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1495" d="M1432 938Q1432 655 1333 432T1062 94T666 -20Q410 -20 267 127T123 537Q123 802 222 1024T495 1366T897 1485Q1152 1485 1292 1341T1432 938ZM872 1227Q751 1227 650 1136T492 884T434
+537Q434 390 500 315T688 240Q809 240 908 327T1064 573T1120 930Q1120 1072 1055 1149T872 1227ZM585 1720Q585 1798 627 1838T747 1878Q880 1878 880 1770Q880 1697 841 1654T720 1610Q585 1610 585 1720ZM987 1720Q987 1798 1029 1838T1149 1878Q1214 1878 1248
+1850T1282 1770Q1282 1697 1243 1654T1122 1610Q987 1610 987 1720Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1128" d="M428 723L129 1024L281 1178L582 879L887 1178L1040 1028L735 723L1036 420L887 268L582 569L281 270L131 422L428 723Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1495" d="M1432 938Q1432 655 1333 432T1062 94T666 -20Q486 -20 362 51L254 -86L100 29L221 180Q123 318 123 537Q123 802 222 1024T495 1366T897 1485Q1079 1485 1202 1409L1307 1540L1458 1423L1341
+1278Q1432 1144 1432 938ZM870 1233Q744 1233 641 1142T481 889T424 537Q424 505 432 436L1028 1190Q959 1233 870 1233ZM1133 930L1128 1010L539 270Q598 233 692 233Q816 233 918 322T1076 569T1133 930Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1415" d="M1434 1462L1233 516Q1176 250 1015 115T596 -20Q384 -20 263 93T141 401Q141 473 156 539L352 1462H657L463 543Q446 469 446 418Q446 240 635 240Q758 240 830 316T934 545L1128 1462H1434ZM1002
+1579H818Q747 1648 680 1732T576 1886V1907H887Q923 1759 1002 1604V1579Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1415" d="M1434 1462L1233 516Q1176 250 1015 115T596 -20Q384 -20 263 93T141 401Q141 473 156 539L352 1462H657L463 543Q446 469 446 418Q446 240 635 240Q758 240 830 316T934 545L1128 1462H1434ZM757
+1604Q836 1692 979 1907H1314V1890Q1268 1834 1160 1738T966 1579H757V1604Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1415" d="M1434 1462L1233 516Q1176 250 1015 115T596 -20Q384 -20 263 93T141 401Q141 473 156 539L352 1462H657L463 543Q446 469 446 418Q446 240 635 240Q758 240 830 316T934 545L1128 1462H1434ZM1284
+1579H1086Q1023 1632 924 1747Q819 1659 692 1579H475V1604Q538 1661 628 1751T770 1907H1108Q1130 1853 1182 1765T1284 1604V1579Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1415" d="M1434 1462L1233 516Q1176 250 1015 115T596 -20Q384 -20 263 93T141 401Q141 473 156 539L352 1462H657L463 543Q446 469 446 418Q446 240 635 240Q758 240 830 316T934 545L1128 1462H1434ZM565
+1720Q565 1798 607 1838T727 1878Q860 1878 860 1770Q860 1697 821 1654T700 1610Q565 1610 565 1720ZM967 1720Q967 1798 1009 1838T1129 1878Q1194 1878 1228 1850T1262 1770Q1262 1697 1223 1654T1102 1610Q967 1610 967 1720Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1155" d="M627 870L1001 1462H1343L725 559L606 0H303L422 559L186 1462H498L627 870ZM606 1604Q685 1692 828 1907H1163V1890Q1117 1834 1009 1738T815 1579H606V1604Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1188" d="M1143 807Q1143 564 973 429T506 293H420L358 0H53L362 1462H668L618 1233H653Q895 1233 1019 1127T1143 807ZM475 547H530Q669 547 752 613T836 799Q836 979 641 979H567L475 547Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1350" d="M846 1567Q1054 1567 1177 1477T1300 1237Q1300 1123 1251 1045T1073 893Q1000 851 977 825T954 770Q954 747 976 721T1055 651Q1162 568 1199 501T1237 350Q1237 180 1114 80T776 -20Q589
+-20 479 41V281Q607 203 737 203Q838 203 885 236T932 322Q932 362 906 397T797 494Q703 566 668 624T633 750Q633 834 678 895T840 1022Q906 1059 944 1098T983 1194Q983 1256 944 1292T819 1329Q723 1329 663 1278T578 1106L324 -113Q281 -311 177 -401T-100
+-492Q-190 -492 -260 -467V-225Q-199 -246 -145 -246Q-12 -246 25 -68L279 1139Q326 1363 461 1465T846 1567Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1217" d="M406 -20Q259 -20 175 86T90 385Q90 583 162 762T351 1040T608 1139Q705 1139 775 1097T885 975H893L950 1118H1182L944 0H715L729 145H725Q591 -20 406 -20ZM524 223Q593 223 657 290T760
+471T799 731Q799 802 761 848T659 895Q591 895 530 823T432 633T395 399Q395 311 428 267T524 223ZM1125 1241H941Q870 1310 803 1394T699 1548V1569H1010Q1046 1421 1125 1266V1241Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1217" d="M406 -20Q259 -20 175 86T90 385Q90 583 162 762T351 1040T608 1139Q705 1139 775 1097T885 975H893L950 1118H1182L944 0H715L729 145H725Q591 -20 406 -20ZM524 223Q593 223 657 290T760
+471T799 731Q799 802 761 848T659 895Q591 895 530 823T432 633T395 399Q395 311 428 267T524 223ZM598 1266Q677 1354 820 1569H1155V1552Q1109 1496 1001 1400T807 1241H598V1266Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1217" d="M406 -20Q259 -20 175 86T90 385Q90 583 162 762T351 1040T608 1139Q705 1139 775 1097T885 975H893L950 1118H1182L944 0H715L729 145H725Q591 -20 406 -20ZM524 223Q593 223 657 290T760
+471T799 731Q799 802 761 848T659 895Q591 895 530 823T432 633T395 399Q395 311 428 267T524 223ZM1120 1496H922Q859 1549 760 1664Q655 1576 528 1496H311V1521Q374 1578 464 1668T606 1824H944Q966 1770 1018 1682T1120 1521V1496Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1217" d="M406 -20Q259 -20 175 86T90 385Q90 583 162 762T351 1040T608 1139Q705 1139 775 1097T885 975H893L950 1118H1182L944 0H715L729 145H725Q591 -20 406 -20ZM524 223Q593 223 657 290T760
+471T799 731Q799 802 761 848T659 895Q591 895 530 823T432 633T395 399Q395 311 428 267T524 223ZM884 1241Q835 1241 798 1257T728 1293T667 1329T604 1346Q573 1346 549 1318T510 1239H333Q392 1548 614 1548Q663 1548 701 1532T773 1496T835 1460T895 1444Q929
+1444 953 1469T999 1550H1171Q1105 1241 884 1241Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1217" d="M406 -20Q259 -20 175 86T90 385Q90 583 162 762T351 1040T608 1139Q705 1139 775 1097T885 975H893L950 1118H1182L944 0H715L729 145H725Q591 -20 406 -20ZM524 223Q593 223 657 290T760
+471T799 731Q799 802 761 848T659 895Q591 895 530 823T432 633T395 399Q395 311 428 267T524 223ZM397 1382Q397 1460 439 1500T559 1540Q692 1540 692 1432Q692 1359 653 1316T532 1272Q397 1272 397 1382ZM799 1382Q799 1460 841 1500T961 1540Q1026 1540 1060
+1512T1094 1432Q1094 1359 1055 1316T934 1272Q799 1272 799 1382Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1217" d="M406 -20Q259 -20 175 86T90 385Q90 583 162 762T351 1040T608 1139Q705 1139 775 1097T885 975H893L950 1118H1182L944 0H715L729 145H725Q591 -20 406 -20ZM524 223Q593 223 657 290T760 471T799
+731Q799 802 761 848T659 895Q591 895 530 823T432 633T395 399Q395 311 428 267T524 223ZM1279 1479Q1279 1372 1209 1306T1025 1239Q915 1239 846 1302T777 1477Q777 1586 845 1650T1025 1714Q1135 1714 1207 1649T1279 1479ZM1122 1477Q1122 1522 1095 1547T1025
+1573Q983 1573 956 1548T929 1477Q929 1432 953 1406T1025 1380Q1067 1380 1094 1406T1122 1477Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1786" d="M1206 -20Q1097 -20 1027 7T909 94L893 0H705L719 145H713Q642 57 567 19T399 -20Q253 -20 172 89T90 385Q90 585 158 760T343 1037T602 1139Q698 1139 762 1101T877 975H883L940 1118H1128L1110
+1028Q1154 1077 1230 1108T1399 1139Q1556 1139 1645 1056T1735 834Q1735 647 1568 546T1092 444H1040L1038 425V406Q1038 310 1093 259T1253 207Q1319 207 1405 230T1567 293V66Q1388 -20 1206 -20ZM518 223Q590 223 652 291T751 475T788 719Q788 799 755 847T653
+895Q585 895 525 826T430 641T395 399Q395 315 427 269T518 223ZM1341 922Q1253 922 1175 842T1073 647H1118Q1273 647 1359 695T1446 827Q1446 922 1341 922Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="989" d="M506 -20Q305 -20 198 87T90 391Q90 603 164 776T374 1044T682 1139Q864 1139 1010 1067L918 838Q864 861 812 878T694 895Q609 895 541 831T434 656T395 416Q395 320 440 272T567 223Q643
+223 708 246T842 305V59Q690 -20 506 -20ZM653 -250Q653 -366 570 -429T336 -492Q250 -492 184 -469V-301Q247 -324 309 -324Q411 -324 411 -242Q411 -208 380 -186T270 -154L366 0H551L512 -72Q653 -121 653 -250Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1141" d="M696 922Q608 922 530 842T428 647H473Q628 647 714 695T801 827Q801 922 696 922ZM532 -20Q322 -20 206 93T90 412Q90 619 172 789T396 1049T715 1139Q892 1139 991 1058T1090 834Q1090 647
+923 546T446 444H395L393 423V403Q393 312 444 260T592 207Q679 207 750 226T922 293V66Q750 -20 532 -20ZM1105 1241H921Q850 1310 783 1394T679 1548V1569H990Q1026 1421 1105 1266V1241Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1141" d="M696 922Q608 922 530 842T428 647H473Q628 647 714 695T801 827Q801 922 696 922ZM532 -20Q322 -20 206 93T90 412Q90 619 172 789T396 1049T715 1139Q892 1139 991 1058T1090 834Q1090 647
+923 546T446 444H395L393 423V403Q393 312 444 260T592 207Q679 207 750 226T922 293V66Q750 -20 532 -20ZM528 1266Q607 1354 750 1569H1085V1552Q1039 1496 931 1400T737 1241H528V1266Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1141" d="M696 922Q608 922 530 842T428 647H473Q628 647 714 695T801 827Q801 922 696 922ZM532 -20Q322 -20 206 93T90 412Q90 619 172 789T396 1049T715 1139Q892 1139 991 1058T1090 834Q1090
+647 923 546T446 444H395L393 423V403Q393 312 444 260T592 207Q679 207 750 226T922 293V66Q750 -20 532 -20ZM1357 1241H1159Q1096 1294 997 1409Q892 1321 765 1241H548V1266Q611 1323 701 1413T843 1569H1181Q1203 1515 1255 1427T1357 1266V1241Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1141" d="M696 922Q608 922 530 842T428 647H473Q628 647 714 695T801 827Q801 922 696 922ZM532 -20Q322 -20 206 93T90 412Q90 619 172 789T396 1049T715 1139Q892 1139 991 1058T1090 834Q1090
+647 923 546T446 444H395L393 423V403Q393 312 444 260T592 207Q679 207 750 226T922 293V66Q750 -20 532 -20ZM621 1382Q621 1460 663 1500T783 1540Q916 1540 916 1432Q916 1359 877 1316T756 1272Q621 1272 621 1382ZM1023 1382Q1023 1460 1065 1500T1185 1540Q1250
+1540 1284 1512T1318 1432Q1318 1359 1279 1316T1158 1272Q1023 1272 1023 1382Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="608" d="M338 0H37L274 1118H575L338 0ZM579 1241H395Q324 1310 257 1394T153 1548V1569H464Q500 1421 579 1266V1241Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="608" d="M338 0H37L274 1118H575L338 0ZM291 1266Q370 1354 513 1569H848V1552Q802 1496 694 1400T500 1241H291V1266Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="608" d="M338 0H37L274 1118H575L338 0ZM845 1241H647Q584 1294 485 1409Q380 1321 253 1241H36V1266Q99 1323 189 1413T331 1569H669Q691 1515 743 1427T845 1266V1241Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="608" d="M338 0H37L274 1118H575L338 0ZM126 1382Q126 1460 168 1500T288 1540Q421 1540 421 1432Q421 1359 382 1316T261 1272Q126 1272 126 1382ZM528 1382Q528 1460 570 1500T690 1540Q755 1540
+789 1512T823 1432Q823 1359 784 1316T663 1272Q528 1272 528 1382Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1182" d="M618 1309Q584 1343 494 1389L612 1575Q746 1514 844 1436L1081 1567L1157 1415L965 1309Q1046 1202 1078 1074T1110 795Q1110 546 1041 363T837 80T514 -20Q298 -20 185 90T72 406Q72 571 136
+707T317 919T582 995Q665 995 733 964T848 870H854Q834 1083 737 1180L506 1049L418 1196L618 1309ZM528 205Q594 205 650 260T739 409T772 602Q772 679 734 724T625 770Q552 770 495 717T407 574T375 377Q375 296 414 251T528 205Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1237" d="M977 0H676L813 653Q829 721 829 772Q829 895 721 895Q629 895 554 781T436 463L338 0H37L274 1118H504L483 911H489Q635 1139 844 1139Q982 1139 1057 1056T1133 817Q1133 744 1110 637L977
+0ZM909 1241Q860 1241 823 1257T753 1293T692 1329T629 1346Q598 1346 574 1318T535 1239H358Q417 1548 639 1548Q688 1548 726 1532T798 1496T860 1460T920 1444Q954 1444 978 1469T1024 1550H1196Q1130 1241 909 1241Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1198" d="M805 696Q805 893 662 893Q587 893 528 832T431 653T393 410Q393 225 543 225Q618 225 678 286T771 457T805 696ZM1108 696Q1108 485 1038 322T834 70T518 -20Q323 -20 207 97T90 410Q90 623
+161 789T368 1047T684 1139Q880 1139 994 1021T1108 696ZM1101 1241H917Q846 1310 779 1394T675 1548V1569H986Q1022 1421 1101 1266V1241Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1198" d="M805 696Q805 893 662 893Q587 893 528 832T431 653T393 410Q393 225 543 225Q618 225 678 286T771 457T805 696ZM1108 696Q1108 485 1038 322T834 70T518 -20Q323 -20 207 97T90 410Q90 623
+161 789T368 1047T684 1139Q880 1139 994 1021T1108 696ZM571 1266Q650 1354 793 1569H1128V1552Q1082 1496 974 1400T780 1241H571V1266Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1198" d="M805 696Q805 893 662 893Q587 893 528 832T431 653T393 410Q393 225 543 225Q618 225 678 286T771 457T805 696ZM1108 696Q1108 485 1038 322T834 70T518 -20Q323 -20 207 97T90 410Q90
+623 161 789T368 1047T684 1139Q880 1139 994 1021T1108 696ZM1365 1241H1167Q1104 1294 1005 1409Q900 1321 773 1241H556V1266Q619 1323 709 1413T851 1569H1189Q1211 1515 1263 1427T1365 1266V1241Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1198" d="M805 696Q805 893 662 893Q587 893 528 832T431 653T393 410Q393 225 543 225Q618 225 678 286T771 457T805 696ZM1108 696Q1108 485 1038 322T834 70T518 -20Q323 -20 207 97T90 410Q90 623
+161 789T368 1047T684 1139Q880 1139 994 1021T1108 696ZM1121 1241Q1072 1241 1035 1257T965 1293T904 1329T841 1346Q810 1346 786 1318T747 1239H570Q629 1548 851 1548Q900 1548 938 1532T1010 1496T1072 1460T1132 1444Q1166 1444 1190 1469T1236 1550H1408Q1342
+1241 1121 1241Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1198" d="M805 696Q805 893 662 893Q587 893 528 832T431 653T393 410Q393 225 543 225Q618 225 678 286T771 457T805 696ZM1108 696Q1108 485 1038 322T834 70T518 -20Q323 -20 207 97T90 410Q90
+623 161 789T368 1047T684 1139Q880 1139 994 1021T1108 696ZM642 1382Q642 1460 684 1500T804 1540Q937 1540 937 1432Q937 1359 898 1316T777 1272Q642 1272 642 1382ZM1044 1382Q1044 1460 1086 1500T1206 1540Q1271 1540 1305 1512T1339 1432Q1339 1359 1300
+1316T1179 1272Q1044 1272 1044 1382Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1128" d="M109 612V831H1061V612H109ZM444 373Q444 449 481 486T584 524Q650 524 686 485T723 373Q723 303 686 262T584 221Q519 221 482 260T444 373ZM444 1071Q444 1146 481 1184T584 1223Q651 1223
+687 1183T723 1071Q723 1001 686 961T584 920Q519 920 482 959T444 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1198" d="M1108 696Q1108 485 1038 322T834 70T518 -20Q395 -20 293 33L184 -102L43 6L162 154Q90 261 90 410Q90 623 161 789T368 1047T684 1139Q815 1139 911 1083L981 1171L1126 1061L1042 956Q1108
+849 1108 696ZM662 903Q581 903 518 841T420 671T385 438V426L750 879Q715 903 662 903ZM543 215Q657 215 736 348T815 666V682L457 238Q468 230 492 223T543 215Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1237" d="M262 1118H563L426 465Q410 397 410 346Q410 223 518 223Q610 223 685 337T803 655L901 1118H1202L965 0H735L756 207H750Q605 -20 395 -20Q257 -20 184 62T111 301Q111 394 135 514L262 1118ZM1101
+1241H917Q846 1310 779 1394T675 1548V1569H986Q1022 1421 1101 1266V1241Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1237" d="M262 1118H563L426 465Q410 397 410 346Q410 223 518 223Q610 223 685 337T803 655L901 1118H1202L965 0H735L756 207H750Q605 -20 395 -20Q257 -20 184 62T111 301Q111 394 135 514L262 1118ZM610
+1266Q689 1354 832 1569H1167V1552Q1121 1496 1013 1400T819 1241H610V1266Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1237" d="M262 1118H563L426 465Q410 397 410 346Q410 223 518 223Q610 223 685 337T803 655L901 1118H1202L965 0H735L756 207H750Q605 -20 395 -20Q257 -20 184 62T111 301Q111 394 135 514L262
+1118ZM1143 1241H945Q882 1294 783 1409Q678 1321 551 1241H334V1266Q397 1323 487 1413T629 1569H967Q989 1515 1041 1427T1143 1266V1241Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1237" d="M262 1118H563L426 465Q410 397 410 346Q410 223 518 223Q610 223 685 337T803 655L901 1118H1202L965 0H735L756 207H750Q605 -20 395 -20Q257 -20 184 62T111 301Q111 394 135 514L262
+1118ZM411 1382Q411 1460 453 1500T573 1540Q706 1540 706 1432Q706 1359 667 1316T546 1272Q411 1272 411 1382ZM813 1382Q813 1460 855 1500T975 1540Q1040 1540 1074 1512T1108 1432Q1108 1359 1069 1316T948 1272Q813 1272 813 1382Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1063" d="M102 1118H397L453 600Q467 478 467 307H473Q493 358 517 426T582 580L842 1118H1169L489 -160Q312 -492 6 -492Q-84 -492 -141 -473V-233Q-73 -246 -25 -246Q59 -246 122 -198T240 -49L266
+0L102 1118ZM497 1266Q576 1354 719 1569H1054V1552Q1008 1496 900 1400T706 1241H497V1266Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" d="M813 1139Q963 1139 1045 1033T1128 731Q1128 532 1059 350T877 74T627 -20Q449 -20 356 143H348Q336 -16 305 -152L233 -492H-68L367 1556H668L602 1249Q573 1118 522 969H530Q661 1139 813 1139ZM682 895Q611
+895 552 830T457 646T420 399Q420 319 453 271T559 223Q628 223 688 288T785 471T823 719Q823 807 786 851T682 895Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1063" d="M102 1118H397L453 600Q467 478 467 307H473Q493 358 517 426T582 580L842 1118H1169L489 -160Q312 -492 6 -492Q-84 -492 -141 -473V-233Q-73 -246 -25 -246Q59 -246 122 -198T240 -49L266
+0L102 1118ZM566 1382Q566 1460 608 1500T728 1540Q861 1540 861 1432Q861 1359 822 1316T701 1272Q566 1272 566 1382ZM968 1382Q968 1460 1010 1500T1130 1540Q1195 1540 1229 1512T1263 1432Q1263 1359 1224 1316T1103 1272Q968 1272 968 1382Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="983" d="M41 436L90 666H942L893 436H41Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="1966" d="M41 436L90 666H1925L1876 436H41Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="440" d="M123 961L115 983Q218 1210 377 1462H602Q511 1249 408 961H123Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="440" d="M586 1462L594 1440Q491 1213 332 961H106Q195 1167 301 1462H586Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="569" d="M377 238L385 215Q282 -12 123 -264H-102Q-14 -57 92 238H377Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="887" d="M569 961L561 983Q664 1210 823 1462H1049Q952 1235 854 961H569ZM123 961L115 983Q218 1210 377 1462H602Q511 1249 408 961H123Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="887" d="M586 1462L594 1440Q491 1213 332 961H106Q195 1167 301 1462H586ZM1032 1462L1040 1440Q937 1213 778 961H553Q576 1014 599 1072T748 1462H1032Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="1018" d="M377 238L385 215Q282 -12 123 -264H-102Q-14 -57 92 238H377ZM825 238L834 215Q734 -6 571 -264H346Q370 -207 395 -146T541 238H825Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="739" d="M104 686Q104 792 146 880T266 1016T449 1065Q569 1065 631 998T694 807Q694 630 603 530T354 430Q237 430 171 497T104 686Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="664" d="M72 569L473 1032L664 877L385 543L520 193L274 90L72 551V569Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="664" d="M592 535L190 72L0 227L279 561L143 911L389 1014L592 553V535Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.ttf b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.ttf
new file mode 100644
index 0000000..9bc8009
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.ttf differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.woff b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.woff
new file mode 100644
index 0000000..80fd8a9
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.woff differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.woff2 b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.woff2
new file mode 100644
index 0000000..cc8d731
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.woff2 differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.eot b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.eot
new file mode 100644
index 0000000..ee4ba1e
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.eot differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.svg b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.svg
new file mode 100644
index 0000000..4774d8c
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.svg
@@ -0,0 +1,19028 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1295" ><font-face
+    font-family="Open Sans"
+    units-per-em="2048"
+    panose-1="2 11 8 6 3 5 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="586" d="M416 485H172L121 1462H467L416 485ZM117 143Q117 227 162 270T293 313Q376 313 421 269T467 143Q467 64 421 19T293 -27Q209 -27 163 17T117 143Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="967" d="M412 1462L371 934H174L133 1462H412ZM834 1462L793 934H596L555 1462H834Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M999 844L952 612H1210V406H913L836 0H616L694 406H500L424 0H209L283 406H45V612H322L369 844H117V1053H406L483 1460H702L625 1053H823L901 1460H1116L1038 1053H1278V844H999ZM539 612H735L782
+844H586L539 612Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1169" d="M1092 457Q1092 298 977 202T655 86V-119H518V82Q274 87 90 168V432Q177 389 299 356T518 317V627L451 653Q253 731 171 822T88 1049Q88 1194 201 1287T518 1401V1554H655V1405Q884 1395 1069 1313L975
+1079Q819 1143 655 1157V862Q850 787 932 732T1053 611T1092 457ZM791 442Q791 484 757 513T655 573V324Q791 347 791 442ZM389 1049Q389 1005 419 977T518 918V1153Q389 1134 389 1049Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1845" d="M315 1024Q315 897 337 835T410 772Q506 772 506 1024Q506 1274 410 1274Q360 1274 338 1213T315 1024ZM758 1026Q758 796 669 681T408 565Q243 565 153 683T63 1026Q63 1483 408 1483Q577 1483
+667 1365T758 1026ZM1446 1462L635 0H395L1206 1462H1446ZM1339 440Q1339 313 1361 251T1434 188Q1530 188 1530 440Q1530 690 1434 690Q1384 690 1362 629T1339 440ZM1782 442Q1782 213 1693 98T1432 -18Q1267 -18 1177 100T1087 442Q1087 899 1432 899Q1601 899
+1691 781T1782 442Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1536" d="M1536 0H1159L1044 113Q853 -20 612 -20Q368 -20 225 92T82 395Q82 532 142 628T350 809Q275 895 241 973T207 1145Q207 1297 323 1390T635 1483Q821 1483 932 1397T1044 1165Q1044 1046
+975 948T752 760L1036 483Q1107 600 1159 784H1477Q1441 649 1378 521T1235 293L1536 0ZM403 424Q403 338 467 287T633 236Q759 236 860 297L528 627Q470 583 437 535T403 424ZM762 1133Q762 1186 726 1216T633 1247Q566 1247 528 1215T489 1124Q489 1036 584 930Q670
+978 716 1024T762 1133Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="545" d="M412 1462L371 934H174L133 1462H412Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="694" d="M82 561Q82 826 159 1057T383 1462H633Q492 1269 420 1038T348 563Q348 318 421 90T631 -324H383Q236 -154 159 73T82 561Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="694" d="M612 561Q612 298 535 71T311 -324H63Q198 -140 272 88T346 563Q346 807 274 1038T61 1462H311Q458 1287 535 1056T612 561Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1116" d="M688 1556L647 1188L1020 1292L1053 1040L713 1016L936 719L709 598L553 911L416 600L180 719L401 1016L63 1042L102 1292L467 1188L426 1556H688Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1169" d="M475 612H88V831H475V1221H694V831H1081V612H694V227H475V612Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="594" d="M459 215Q407 13 283 -264H63Q128 2 164 238H444L459 215Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="659" d="M61 424V674H598V424H61Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="584" d="M117 143Q117 227 162 270T293 313Q376 313 421 269T467 143Q467 64 421 19T293 -27Q209 -27 163 17T117 143Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="846" d="M836 1462L291 0H14L559 1462H836Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1169" d="M1096 731Q1096 348 971 164T584 -20Q331 -20 203 170T74 731Q74 1118 199 1301T584 1485Q837 1485 966 1293T1096 731ZM381 731Q381 462 427 346T584 229Q692 229 740 347T788 731Q788 1000 740 1117T584
+1235Q475 1235 428 1118T381 731Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1169" d="M846 0H537V846L540 985L545 1137Q468 1060 438 1036L270 901L121 1087L592 1462H846V0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1169" d="M1104 0H82V215L449 586Q612 753 662 817T734 937T756 1051Q756 1139 708 1182T578 1225Q493 1225 413 1186T246 1075L78 1274Q186 1366 257 1404T412 1462T600 1483Q737 1483 842 1433T1005 1293T1063
+1087Q1063 986 1028 898T918 716T655 451L467 274V260H1104V0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1169" d="M1047 1135Q1047 998 964 902T731 770V764Q908 742 999 657T1090 426Q1090 215 937 98T500 -20Q262 -20 78 59V322Q163 279 265 252T467 225Q620 225 693 277T766 444Q766 547 682 590T414 633H303V870H416Q586
+870 664 914T743 1067Q743 1233 535 1233Q463 1233 389 1209T223 1126L80 1339Q280 1483 557 1483Q784 1483 915 1391T1047 1135Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1169" d="M1137 303H961V0H659V303H35V518L676 1462H961V543H1137V303ZM659 543V791Q659 853 664 971T672 1108H664Q627 1026 575 948L307 543H659Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1169" d="M614 934Q826 934 951 815T1077 489Q1077 244 926 112T494 -20Q250 -20 100 59V326Q179 284 284 258T483 231Q766 231 766 463Q766 684 473 684Q420 684 356 674T252 651L129 717L184 1462H977V1200H455L428
+913L463 920Q524 934 614 934Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1169" d="M72 621Q72 1055 255 1267T805 1479Q930 1479 1001 1464V1217Q912 1237 825 1237Q666 1237 566 1189T415 1047T356 780H369Q468 950 686 950Q882 950 993 827T1104 487Q1104 253 972 117T606 -20Q444
+-20 324 55T138 274T72 621ZM600 227Q699 227 752 293T805 483Q805 590 756 651T606 713Q512 713 446 652T379 510Q379 391 441 309T600 227Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1169" d="M227 0L776 1200H55V1460H1104V1266L551 0H227Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1169" d="M586 1481Q796 1481 924 1386T1053 1128Q1053 1016 991 929T791 772Q955 684 1026 589T1098 379Q1098 199 957 90T586 -20Q346 -20 209 82T72 371Q72 496 138 593T352 764Q227 843 172 933T117 1130Q117
+1287 247 1384T586 1481ZM358 389Q358 303 418 255T582 207Q697 207 754 256T811 387Q811 454 755 512T571 637Q358 539 358 389ZM584 1255Q505 1255 457 1215T408 1106Q408 1046 446 999T586 901Q684 947 723 995T762 1106Q762 1175 712 1215T584 1255Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1169" d="M1098 838Q1098 406 916 193T365 -20Q235 -20 168 -6V242Q252 221 344 221Q499 221 599 266T752 409T813 678H801Q743 584 667 546T477 508Q286 508 176 630T66 971Q66 1206 199 1342T563 1479Q725
+1479 846 1403T1033 1183T1098 838ZM569 1231Q473 1231 419 1165T365 975Q365 869 414 807T563 745Q657 745 724 806T791 948Q791 1067 729 1149T569 1231Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="584" d="M117 143Q117 227 162 270T293 313Q376 313 421 269T467 143Q467 64 421 19T293 -27Q209 -27 163 17T117 143ZM117 969Q117 1053 162 1096T293 1139Q376 1139 421 1095T467 969Q467 888 421 844T293
+799Q209 799 163 843T117 969Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="594" d="M444 238L459 215Q407 13 283 -264H63Q128 2 164 238H444ZM117 969Q117 1053 162 1096T293 1139Q376 1139 421 1095T467 969Q467 888 421 844T293 799Q209 799 163 843T117 969Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1169" d="M1081 203L88 641V784L1081 1280V1040L397 723L1081 442V203Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1169" d="M88 805V1024H1081V805H88ZM88 418V637H1081V418H88Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1169" d="M88 442L772 723L88 1040V1280L1081 784V641L88 203V442Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="977" d="M276 485V559Q276 655 317 726T467 877Q572 952 605 999T639 1104Q639 1169 591 1203T457 1237Q307 1237 115 1139L6 1358Q229 1483 479 1483Q685 1483 806 1384T928 1120Q928 1010 878 930T688
+750Q592 679 567 642T541 545V485H276ZM244 143Q244 227 289 270T420 313Q503 313 548 269T594 143Q594 64 548 19T420 -27Q336 -27 290 17T244 143Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1837" d="M1735 752Q1735 608 1689 489T1559 301T1364 233Q1290 233 1233 268T1151 362H1135Q1027 233 860 233Q683 233 581 339T479 631Q479 842 613 971T963 1100Q1049 1100 1152 1084T1323 1044L1300 555Q1300
+416 1376 416Q1440 416 1478 509T1516 754Q1516 915 1449 1038T1261 1227T983 1292Q781 1292 632 1209T404 970T324 608Q324 332 471 185T899 37Q1005 37 1132 60T1382 129V-63Q1168 -154 907 -154Q527 -154 315 46T102 602Q102 849 210 1050T519 1366T981 1481Q1201
+1481 1374 1391T1641 1135T1735 752ZM711 627Q711 416 883 416Q973 416 1020 479T1077 686L1090 907Q1039 918 975 918Q850 918 781 840T711 627Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1376" d="M184 1462H639Q950 1462 1090 1374T1231 1092Q1231 961 1170 877T1006 776V766Q1145 735 1206 650T1268 424Q1268 224 1124 112T731 0H184V1462ZM494 883H674Q800 883 856 922T913 1051Q913 1135 852
+1171T657 1208H494V883ZM494 637V256H696Q824 256 885 305T946 455Q946 637 686 637H494Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1305" d="M805 1225Q630 1225 534 1094T438 727Q438 238 805 238Q959 238 1178 315V55Q998 -20 776 -20Q457 -20 288 173T119 729Q119 957 202 1128T440 1391T805 1483Q1018 1483 1233 1380L1133 1128Q1051 1167
+968 1196T805 1225Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1516" d="M1397 745Q1397 384 1192 192T598 0H184V1462H643Q1001 1462 1199 1273T1397 745ZM1075 737Q1075 1208 659 1208H494V256H627Q1075 256 1075 737Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1124" d="M489 0H184V1462H1022V1208H489V831H985V578H489V0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1483" d="M739 821H1319V63Q1178 17 1054 -1T799 -20Q468 -20 294 174T119 733Q119 1087 321 1285T883 1483Q1108 1483 1317 1393L1214 1145Q1054 1225 881 1225Q680 1225 559 1090T438 727Q438 489 535 364T819
+238Q916 238 1016 258V563H739V821Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1567" d="M1382 0H1073V631H494V0H184V1462H494V889H1073V1462H1382V0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="678" d="M184 0V1462H494V0H184Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="678" d="M31 -430Q-74 -430 -152 -408V-150Q-72 -170 -6 -170Q96 -170 140 -107T184 92V1462H494V94Q494 -162 377 -296T31 -430Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1360" d="M1360 0H1008L625 616L494 522V0H184V1462H494V793L616 965L1012 1462H1356L846 815L1360 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1157" d="M184 0V1462H494V256H1087V0H184Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1931" d="M803 0L451 1147H442Q461 797 461 680V0H184V1462H606L952 344H958L1325 1462H1747V0H1458V692Q1458 741 1459 805T1473 1145H1464L1087 0H803Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1665" d="M1481 0H1087L451 1106H442Q461 813 461 688V0H184V1462H575L1210 367H1217Q1202 652 1202 770V1462H1481V0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227 817 1227Q632
+1227 538 1103T444 733Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1286" d="M494 774H596Q739 774 810 830T881 995Q881 1104 822 1156T635 1208H494V774ZM1194 1006Q1194 770 1047 645T627 520H494V0H184V1462H651Q917 1462 1055 1348T1194 1006Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1630" d="M1511 733Q1511 475 1420 301T1151 45L1503 -348H1106L838 -20H815Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240
+1186 733Q1186 1227 817 1227Q632 1227 538 1103T444 733Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1352" d="M494 813H594Q741 813 811 862T881 1016Q881 1120 810 1164T588 1208H494V813ZM494 561V0H184V1462H610Q908 1462 1051 1354T1194 1024Q1194 895 1123 795T922 637Q1252 144 1352 0H1008L659 561H494Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1128" d="M1047 406Q1047 208 905 94T508 -20Q274 -20 94 68V356Q242 290 344 263T532 236Q634 236 688 275T743 391Q743 434 719 467T649 532T459 631Q325 694 258 752T151 887T111 1067Q111 1261 242 1372T606
+1483Q720 1483 823 1456T1040 1380L940 1139Q823 1187 747 1206T596 1225Q508 1225 461 1184T414 1077Q414 1036 433 1006T493 947T690 844Q895 746 971 648T1047 406Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1186" d="M748 0H438V1204H41V1462H1145V1204H748V0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1331" d="M1018 1462H1331L834 0H496L0 1462H313L588 592Q611 515 635 413T666 270Q677 362 741 592L1018 1462Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1980" d="M1608 0H1255L1057 768Q1046 809 1020 937T989 1110Q983 1056 959 937T922 766L725 0H373L0 1462H305L492 664Q541 443 563 281Q569 338 590 457T631 643L844 1462H1137L1350 643Q1364 588 1385 475T1417
+281Q1427 359 1449 475T1489 664L1675 1462H1980L1608 0Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1366" d="M1366 0H1012L672 553L332 0H0L485 754L31 1462H373L688 936L997 1462H1331L872 737L1366 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1278" d="M639 860L944 1462H1278L793 569V0H485V559L0 1462H336L639 860Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1186" d="M1137 0H49V201L750 1206H68V1462H1118V1262L418 256H1137V0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="678" d="M627 -324H143V1462H627V1251H403V-113H627V-324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="846" d="M289 1462L834 0H557L12 1462H289Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="678" d="M51 -113H274V1251H51V1462H535V-324H51V-113Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1090" d="M8 520L446 1470H590L1085 520H846L524 1163L244 520H8Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="842" d="M846 -324H-4V-184H846V-324Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1243" d="M707 1241Q644 1285 522 1383T332 1548V1569H674Q737 1468 909 1268V1241H707Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083 745V0H870ZM780
+518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1296" d="M782 1139Q980 1139 1092 985T1204 561Q1204 284 1089 132T774 -20Q577 -20 465 123H444L393 0H160V1556H465V1194Q465 1125 453 973H465Q572 1139 782 1139ZM684 895Q571 895 519 826T465 596V563Q465
+383 518 305T688 227Q782 227 837 313T893 565Q893 730 837 812T684 895Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="1053" d="M614 -20Q92 -20 92 553Q92 838 234 988T641 1139Q835 1139 989 1063L899 827Q827 856 765 874T641 893Q403 893 403 555Q403 227 641 227Q729 227 804 250T954 324V63Q880 16 805 -2T614 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1296" d="M514 -20Q317 -20 205 133T92 557Q92 832 206 985T522 1139Q733 1139 844 975H854Q831 1100 831 1198V1556H1137V0H903L844 145H831Q727 -20 514 -20ZM621 223Q738 223 792 291T852 522V555Q852 735 797
+813T616 891Q514 891 458 805T401 553Q401 388 458 306T621 223Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680 207Q781 207 871
+228T1059 295V59Q979 19 888 0T666 -20Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="793" d="M778 889H514V0H209V889H41V1036L209 1118V1200Q209 1391 303 1479T604 1567Q762 1567 885 1520L807 1296Q715 1325 637 1325Q572 1325 543 1287T514 1188V1118H778V889Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1157" d="M1133 1118V963L958 918Q1006 843 1006 750Q1006 570 881 470T532 369L477 372L432 377Q385 341 385 297Q385 231 553 231H743Q927 231 1023 152T1120 -80Q1120 -276 957 -384T487 -492Q253 -492 130
+-411T6 -182Q6 -81 69 -13T254 84Q207 104 172 149T137 246Q137 310 174 352T281 436Q193 474 142 558T90 756Q90 939 209 1039T549 1139Q596 1139 660 1131T743 1118H1133ZM270 -158Q270 -221 330 -257T500 -293Q664 -293 757 -248T850 -125Q850 -62 795 -38T625
+-14H467Q383 -14 327 -53T270 -158ZM381 752Q381 661 422 608T549 555Q635 555 675 608T715 752Q715 954 549 954Q381 954 381 752Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1346" d="M1192 0H887V653Q887 895 707 895Q579 895 522 808T465 526V0H160V1556H465V1239Q465 1202 458 1065L451 975H467Q569 1139 791 1139Q988 1139 1090 1033T1192 729V0Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="625" d="M147 1407Q147 1556 313 1556Q479 1556 479 1407Q479 1336 438 1297T313 1257Q147 1257 147 1407ZM465 0H160V1118H465V0Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="625" d="M70 -492Q-47 -492 -131 -467V-227Q-61 -246 12 -246Q89 -246 124 -203T160 -76V1118H465V-121Q465 -299 362 -395T70 -492ZM147 1407Q147 1556 313 1556Q479 1556 479 1407Q479 1336 438 1297T313 1257Q147
+1257 147 1407Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1270" d="M453 608L586 778L899 1118H1243L799 633L1270 0H918L596 453L465 348V0H160V1556H465V862L449 608H453Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="625" d="M465 0H160V1556H465V0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="2011" d="M1161 0H856V653Q856 774 816 834T688 895Q571 895 518 809T465 526V0H160V1118H393L434 975H451Q496 1052 581 1095T776 1139Q1027 1139 1116 975H1143Q1188 1053 1275 1096T1473 1139Q1663 1139 1760
+1042T1858 729V0H1552V653Q1552 774 1512 834T1384 895Q1272 895 1217 815T1161 561V0Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1346" d="M1192 0H887V653Q887 774 844 834T707 895Q579 895 522 810T465 526V0H160V1118H393L434 975H451Q502 1056 591 1097T795 1139Q990 1139 1091 1034T1192 729V0Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92 835 235 987T637
+1139Q798 1139 921 1069T1110 868T1176 561Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1296" d="M774 -20Q577 -20 465 123H449Q465 -17 465 -39V-492H160V1118H408L451 973H465Q572 1139 782 1139Q980 1139 1092 986T1204 561Q1204 382 1152 250T1002 49T774 -20ZM684 895Q571 895 519 826T465 596V563Q465
+383 518 305T688 227Q893 227 893 565Q893 730 843 812T684 895Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1296" d="M623 219Q739 219 793 285T852 518V555Q852 735 797 813T618 891Q403 891 403 553Q403 385 456 302T623 219ZM514 -20Q316 -20 204 132T92 557Q92 831 206 985T520 1139Q626 1139 705 1099T844 975H852L879
+1118H1137V-492H831V-23Q831 38 844 145H831Q782 64 701 22T514 -20Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="930" d="M784 1139Q846 1139 887 1130L864 844Q827 854 774 854Q628 854 547 779T465 569V0H160V1118H391L436 930H451Q503 1024 591 1081T784 1139Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="1018" d="M940 332Q940 160 821 70T463 -20Q341 -20 255 -4T94 45V297Q179 257 285 230T473 203Q639 203 639 299Q639 335 617 357T541 408T397 475Q268 529 208 575T120 680T92 827Q92 976 207 1057T535 1139Q737
+1139 928 1051L836 831Q752 867 679 890T530 913Q395 913 395 840Q395 799 438 769T629 680Q760 627 821 581T911 475T940 332Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="889" d="M631 223Q711 223 823 258V31Q709 -20 543 -20Q360 -20 277 72T193 350V889H47V1018L215 1120L303 1356H498V1118H811V889H498V350Q498 285 534 254T631 223Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="1165" d="M426 0L0 1118H319L535 481Q571 360 580 252H586Q591 348 631 481L846 1118H1165L739 0H426Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1753" d="M1079 0L993 391L877 885H870L666 0H338L20 1118H324L453 623Q484 490 516 256H522Q526 332 557 497L573 582L711 1118H1047L1178 582Q1182 560 1190 517T1207 426T1221 331T1229 256H1235Q1244 328 1267
+453T1300 623L1434 1118H1733L1411 0H1079Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1184" d="M389 571L29 1118H375L592 762L811 1118H1157L793 571L1174 0H827L592 383L356 0H10L389 571Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1165" d="M0 1118H334L545 489Q572 407 582 295H588Q599 398 631 489L838 1118H1165L692 -143Q627 -318 507 -405T225 -492Q146 -492 70 -475V-233Q125 -246 190 -246Q271 -246 331 -197T426 -47L444 8L0 1118Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="999" d="M938 0H55V180L573 885H86V1118H920V920L416 233H938V0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="807" d="M287 270Q287 357 222 403T31 449V688Q157 688 222 732T287 858V866V1184Q287 1337 384 1399T725 1462V1237Q626 1234 589 1199T551 1096V797Q545 609 317 575V563Q551 528 551 351V342V43Q551
+-25 588 -60T725 -98V-324Q481 -324 384 -262T287 -45V270Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M455 1550H674V-465H455V1550Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="807" d="M520 -45Q520 -157 479 -214T344 -297T82 -324V-98Q181 -96 218 -62T256 43V342V353Q256 439 315 492T489 563V575Q262 609 256 797V1096Q256 1166 219 1200T82 1237V1462Q249 1462 344 1436T479
+1352T520 1184V866V856Q520 772 581 730T776 688V449Q651 449 586 408T520 270V-45Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1169" d="M322 672Q267 672 205 639T88 551V782Q191 891 344 891Q417 891 481 875T621 827Q750 772 848 772Q901 772 964 804T1081 893V662Q980 553 825 553Q759 553 699 566T549 616Q418 672 322 672Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="586" d="M168 606H412L463 -369H117L168 606ZM467 948Q467 864 422 821T291 778Q208 778 163 822T117 948Q117 1029 163 1073T291 1118Q375 1118 421 1074T467 948Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1169" d="M563 176Q143 235 143 741Q143 1002 247 1144T563 1317V1483H741V1325Q907 1316 1040 1251L950 1016Q878 1045 816 1063T692 1081Q571 1081 513 998T455 743Q455 416 692 416Q774 416 840 431T1006
+492V238Q879 177 741 168V-20H563V176Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1169" d="M700 1483Q895 1483 1090 1401L997 1171Q840 1235 725 1235Q647 1235 605 1191T563 1063V870H938V651H563V508Q563 338 412 260H1130V0H82V248Q185 292 223 349T262 506V651H84V870H262V1065Q262
+1266 376 1374T700 1483Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1169" d="M188 723Q188 825 242 920L113 1047L260 1194L387 1067Q478 1120 584 1120Q689 1120 780 1065L907 1194L1057 1051L928 922Q981 833 981 723Q981 616 928 524L1053 399L907 254L780 379Q685
+328 584 328Q469 328 385 379L260 256L115 401L242 526Q188 619 188 723ZM395 723Q395 646 449 591T584 535Q665 535 720 590T776 723Q776 803 720 858T584 913Q506 913 451 857T395 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1169" d="M584 860L848 1462H1161L778 715H973V537H727V399H973V221H727V0H440V221H193V399H440V537H193V715H383L6 1462H322L584 860Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M455 1550H674V735H455V1550ZM455 350H674V-465H455V350Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="995" d="M121 805Q121 884 157 949T254 1055Q121 1139 121 1288Q121 1419 232 1498T526 1577Q696 1577 889 1493L807 1303Q739 1335 669 1360T520 1386Q439 1386 402 1363T365 1292Q365 1243 414 1206T578
+1124Q741 1060 818 976T895 782Q895 605 770 522Q832 482 863 430T895 303Q895 155 776 68T455 -20Q252 -20 106 59V266Q187 225 286 197T455 168Q649 168 649 285Q649 324 631 348T567 397T442 457Q259 531 190 609T121 805ZM344 827Q344 760 409 708T590 610Q668
+667 668 756Q668 824 618 871T434 967Q397 953 371 914T344 827Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1243" d="M279 1405Q279 1470 316 1505T418 1540Q484 1540 521 1503T559 1405Q559 1345 521 1309T418 1272Q354 1272 317 1307T279 1405ZM682 1405Q682 1475 722 1507T823 1540Q888 1540 926 1504T965
+1405Q965 1344 926 1308T823 1272Q763 1272 723 1304T682 1405Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M895 1010Q798 1010 745 936T692 731Q692 451 895 451Q952 451 1018 466T1141 510V319Q1021 262 889 262Q685 262 573 387T461 733Q461 953 571 1075T881 1198Q1030 1198 1186 1120L1112
+952Q999 1010 895 1010ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM242 731Q242 567 324 426T548 203T852 121Q1016 121 1157 203T1380 427T1462
+731Q1462 895 1380 1036T1156 1259T852 1341Q688 1341 547 1259T324 1035T242 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="784" d="M561 764L530 874Q487 816 425 784T289 752Q172 752 110 810T47 975Q47 1084 129 1138T397 1202L496 1206Q496 1323 369 1323Q288 1323 152 1262L86 1397Q152 1429 231 1454T410 1479Q547
+1479 621 1408T696 1206V764H561ZM252 977Q252 939 275 921T330 903Q407 903 451 944T496 1051V1087L397 1081Q252 1071 252 977Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1260" d="M82 573L453 1028L672 909L393 561L672 213L453 94L82 547V573ZM588 573L958 1028L1178 909L899 561L1178 213L958 94L588 547V573Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1169" d="M1081 248H862V612H88V831H1081V248Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="659" d="M61 424V674H598V424H61Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M1157 905Q1157 735 1014 672L1251 272H997L819 610H772V272H543V1188H807Q988 1188 1072 1118T1157 905ZM772 778H803Q869 778 897 806T926 901Q926 966 898 993T801 1020H772V778ZM100
+731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM242 731Q242 567 324 426T548 203T852 121Q1016 121 1157 203T1380 427T1462 731Q1462 895 1380 1036T1156
+1259T852 1341Q688 1341 547 1259T324 1035T242 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6V1757H1030V1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M92 1137Q92 1229 138 1309T264 1436T438 1483Q530 1483 610 1437T737 1310T784 1137Q784 1044 738 964T611 838T438 793Q293 793 193 892T92 1137ZM283 1137Q283 1073 327 1028T438 983Q504
+983 549 1029T594 1137Q594 1200 549 1247T438 1294Q374 1294 329 1248T283 1137Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1169" d="M475 674H88V893H475V1282H694V893H1081V674H694V289H475V674ZM88 0V219H1081V0H88Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="776" d="M702 586H55V754L279 973Q381 1073 409 1117T438 1212Q438 1250 414 1270T350 1290Q269 1290 170 1202L47 1354Q194 1483 383 1483Q520 1483 599 1417T678 1233Q678 1148 631 1073T455
+881L350 786H702V586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="776" d="M666 1249Q666 1106 496 1051V1038Q590 1018 642 963T694 829Q694 708 606 639T332 569Q189 569 59 639V829Q207 739 330 739Q473 739 473 846Q473 899 429 925T307 952H195V1112H287Q370
+1112 410 1138T451 1221Q451 1259 426 1284T350 1309Q303 1309 261 1290T162 1231L61 1372Q123 1419 198 1450T377 1481Q504 1481 585 1417T666 1249Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1243" d="M332 1241V1268Q504 1468 567 1569H909V1548Q857 1496 732 1394T535 1241H332Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1352" d="M465 465Q465 344 509 284T647 223Q773 223 830 309T887 592V1118H1192V0H961L918 150H903Q861 65 801 23T653 -20Q591 -20 539 3T455 70L460 -15L465 -172V-492H160V1118H465V465Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1167 -260H1006V1356H840V-260H678V559Q616 541 532 541Q316 541 215 666T113 1042Q113 1302 222 1429T563 1556H1167V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="584" d="M117 723Q117 807 162 850T293 893Q376 893 421 849T467 723Q467 642 421 598T293 553Q209 553 163 597T117 723Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="420" d="M418 -250Q418 -378 343 -435T109 -492Q31 -492 -37 -471V-303Q-10 -310 35 -317T106 -324Q178 -324 178 -262Q178 -179 12 -154L90 0H283L256 -61Q330 -85 374 -135T418 -250Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="776" d="M584 586H346V1032L349 1144L354 1239Q327 1203 279 1161L201 1100L92 1227L393 1462H584V586Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="795" d="M737 1116Q737 945 646 849T395 752Q242 752 150 850T57 1116Q57 1285 146 1382T399 1479Q551 1479 644 1381T737 1116ZM260 1116Q260 1016 292 966T397 915Q469 915 500 965T532 1116Q532
+1216 501 1265T397 1315Q325 1315 293 1266T260 1116Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1260" d="M1178 547L807 94L588 213L866 561L588 909L807 1028L1178 573V547ZM672 547L301 94L82 213L360 561L82 909L301 1028L672 573V547Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1804" d="M794 586H556V1032L559 1144L564 1239Q537 1203 489 1161L411 1100L302 1227L603 1462H794V586ZM1370 1462L559 0H320L1131 1462H1370ZM1682 152H1557V1H1319V152H936V306L1321 883H1557V320H1682V152ZM1319
+320V484Q1319 570 1325 668Q1316 642 1290 588T1248 511L1121 320H1319Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1804" d="M794 586H556V1032L559 1144L564 1239Q537 1203 489 1161L411 1100L302 1227L603 1462H794V586ZM1370 1462L559 0H320L1131 1462H1370ZM1716 1H1069V169L1293 388Q1395 488 1423 532T1452
+627Q1452 665 1428 685T1364 705Q1283 705 1184 617L1061 769Q1208 898 1397 898Q1534 898 1613 832T1692 648Q1692 563 1645 488T1469 296L1364 201H1716V1Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1804" d="M697 1249Q697 1106 527 1051V1038Q621 1018 673 963T725 829Q725 708 637 639T363 569Q220 569 90 639V829Q238 739 361 739Q504 739 504 846Q504 899 460 925T338 952H226V1112H318Q401
+1112 441 1138T482 1221Q482 1259 457 1284T381 1309Q334 1309 292 1290T193 1231L92 1372Q154 1419 229 1450T408 1481Q535 1481 616 1417T697 1249ZM1441 1462L630 0H391L1202 1462H1441ZM1712 152H1587V1H1349V152H966V306L1351 883H1587V320H1712V152ZM1349
+320V484Q1349 570 1355 668Q1346 642 1320 588T1278 511L1151 320H1349Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="977" d="M713 606V532Q713 434 669 363T516 215Q407 137 379 93T350 -14Q350 -71 393 -108T526 -145Q605 -145 695 -116T881 -45L983 -266Q885 -322 762 -356T532 -391Q312 -391 187 -295T61 -29Q61
+79 109 158T301 342Q396 412 422 449T449 547V606H713ZM745 948Q745 864 700 821T569 778Q486 778 441 822T395 948Q395 1029 441 1073T569 1118Q653 1118 699 1074T745 948Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM713 1579Q650 1623 528 1721T338 1886V1907H680Q743 1806 915 1606V1579H713Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM541 1579V1606Q713 1806 776 1907H1118V1886Q1066 1834 941 1732T744 1579H541Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM938 1579Q781 1672 704 1755Q626 1674 475 1579H272V1606Q461 1795
+528 1907H885Q916 1855 992 1766T1141 1606V1579H938Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM543 1684Q512 1684 484 1658T442 1577H293Q304 1722 375 1804T565 1886Q606
+1886 645 1870T723 1834T799 1798T872 1782Q903 1782 931 1808T973 1888H1122Q1111 1743 1039 1661T850 1579Q809 1579 770 1595T692 1631T616 1667T543 1684Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM365 1743Q365 1808 402 1843T504 1878Q570 1878 607 1841T645 1743Q645
+1683 607 1647T504 1610Q440 1610 403 1645T365 1743ZM768 1743Q768 1813 808 1845T909 1878Q974 1878 1012 1842T1051 1743Q1051 1682 1012 1646T909 1610Q849 1610 809 1642T768 1743Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM959 1567Q959 1459 888 1393T705 1327Q593 1327 525 1391T457 1565Q457
+1673 524 1737T705 1802Q815 1802 887 1736T959 1567ZM801 1565Q801 1610 774 1635T705 1661Q663 1661 636 1636T609 1565Q609 1520 633 1494T705 1468Q747 1468 774 1494T801 1565Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1950" d="M1829 0H956V348H465L315 0H0L655 1462H1829V1208H1266V887H1792V633H1266V256H1829V0ZM578 608H956V1198H829L578 608Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1305" d="M805 1225Q630 1225 534 1094T438 727Q438 238 805 238Q959 238 1178 315V55Q998 -20 776 -20Q457 -20 288 173T119 729Q119 957 202 1128T440 1391T805 1483Q1018 1483 1233 1380L1133 1128Q1051
+1167 968 1196T805 1225ZM959 -250Q959 -378 884 -435T650 -492Q572 -492 504 -471V-303Q531 -310 576 -317T647 -324Q719 -324 719 -262Q719 -179 553 -154L631 0H824L797 -61Q871 -85 915 -135T959 -250Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0ZM634 1579Q571 1623 449 1721T259 1886V1907H601Q664 1806 836 1606V1579H634Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0ZM424 1579V1606Q596 1806 659 1907H1001V1886Q949 1834 824 1732T627 1579H424Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0ZM841 1579Q684 1672 607 1755Q529 1674 378 1579H175V1606Q364 1795 431 1907H788Q819 1855 895 1766T1044 1606V1579H841Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0ZM272 1743Q272 1808 309 1843T411 1878Q477 1878 514 1841T552 1743Q552 1683 514 1647T411 1610Q347 1610 310 1645T272 1743ZM675
+1743Q675 1813 715 1845T816 1878Q881 1878 919 1842T958 1743Q958 1682 919 1646T816 1610Q756 1610 716 1642T675 1743Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="678" d="M184 0V1462H494V0H184ZM317 1579Q254 1623 132 1721T-58 1886V1907H284Q347 1806 519 1606V1579H317Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="678" d="M184 0V1462H494V0H184ZM167 1579V1606Q339 1806 402 1907H744V1886Q692 1834 567 1732T370 1579H167Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="678" d="M184 0V1462H494V0H184ZM570 1579Q413 1672 336 1755Q258 1674 107 1579H-96V1606Q93 1795 160 1907H517Q548 1855 624 1766T773 1606V1579H570Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="678" d="M184 0V1462H494V0H184ZM-3 1743Q-3 1808 34 1843T136 1878Q202 1878 239 1841T277 1743Q277 1683 239 1647T136 1610Q72 1610 35 1645T-3 1743ZM400 1743Q400 1813 440 1845T541 1878Q606
+1878 644 1842T683 1743Q683 1682 644 1646T541 1610Q481 1610 441 1642T400 1743Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1516" d="M47 850H184V1462H643Q1001 1462 1199 1273T1397 745Q1397 384 1192 192T598 0H184V596H47V850ZM1075 737Q1075 969 971 1088T657 1208H494V850H731V596H494V256H625Q1075 256 1075 737Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1665" d="M1481 0H1087L451 1106H442Q461 813 461 688V0H184V1462H575L1210 367H1217Q1202 652 1202 770V1462H1481V0ZM668 1684Q637 1684 609 1658T567 1577H418Q429 1722 500 1804T690 1886Q731 1886
+770 1870T848 1834T924 1798T997 1782Q1028 1782 1056 1808T1098 1888H1247Q1236 1743 1164 1661T975 1579Q934 1579 895 1595T817 1631T741 1667T668 1684Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227
+817 1227Q632 1227 538 1103T444 733ZM824 1579Q761 1623 639 1721T449 1886V1907H791Q854 1806 1026 1606V1579H824Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227
+817 1227Q632 1227 538 1103T444 733ZM658 1579V1606Q830 1806 893 1907H1235V1886Q1183 1834 1058 1732T861 1579H658Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186
+1227 817 1227Q632 1227 538 1103T444 733ZM1047 1579Q890 1672 813 1755Q735 1674 584 1579H381V1606Q570 1795 637 1907H994Q1025 1855 1101 1766T1250 1606V1579H1047Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227
+817 1227Q632 1227 538 1103T444 733ZM652 1684Q621 1684 593 1658T551 1577H402Q413 1722 484 1804T674 1886Q715 1886 754 1870T832 1834T908 1798T981 1782Q1012 1782 1040 1808T1082 1888H1231Q1220 1743 1148 1661T959 1579Q918 1579 879 1595T801 1631T725
+1667T652 1684Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186
+1227 817 1227Q632 1227 538 1103T444 733ZM474 1743Q474 1808 511 1843T613 1878Q679 1878 716 1841T754 1743Q754 1683 716 1647T613 1610Q549 1610 512 1645T474 1743ZM877 1743Q877 1813 917 1845T1018 1878Q1083 1878 1121 1842T1160 1743Q1160 1682 1121
+1646T1018 1610Q958 1610 918 1642T877 1743Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1169" d="M428 723L129 1024L281 1178L582 879L887 1178L1040 1028L735 723L1036 420L887 268L582 569L281 270L131 422L428 723Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q618 -20 479 45L389 -90L227 18L317 154Q119 348 119 735Q119 1100 299 1292T817 1485Q1015 1485 1161 1415L1245 1540L1405 1436L1317 1305Q1511 1111
+1511 733ZM444 733Q444 542 500 426L1006 1182Q922 1227 817 1227Q632 1227 538 1103T444 733ZM1186 733Q1186 913 1135 1030L635 279Q711 240 815 240Q1186 240 1186 733Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374ZM750 1579Q687 1623 565 1721T375
+1886V1907H717Q780 1806 952 1606V1579H750Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374ZM602 1579V1606Q774 1806 837 1907H1179V1886Q1127
+1834 1002 1732T805 1579H602Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374ZM1006 1579Q849 1672 772 1755Q694
+1674 543 1579H340V1606Q529 1795 596 1907H953Q984 1855 1060 1766T1209 1606V1579H1006Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374ZM433 1743Q433 1808 470 1843T572
+1878Q638 1878 675 1841T713 1743Q713 1683 675 1647T572 1610Q508 1610 471 1645T433 1743ZM836 1743Q836 1813 876 1845T977 1878Q1042 1878 1080 1842T1119 1743Q1119 1682 1080 1646T977 1610Q917 1610 877 1642T836 1743Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1278" d="M639 860L944 1462H1278L793 569V0H485V559L0 1462H336L639 860ZM461 1579V1606Q633 1806 696 1907H1038V1886Q986 1834 861 1732T664 1579H461Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1286" d="M1194 770Q1194 541 1052 417T647 293H494V0H184V1462H494V1233H672Q926 1233 1060 1114T1194 770ZM494 543H594Q739 543 810 595T881 770Q881 877 818 929T618 981H494V543Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1456" d="M1249 1241Q1249 1177 1228 1129T1175 1042T1106 975T1037 922T984 877T963 834Q963 807 989 781T1082 715Q1228 624 1280 575T1358 465T1384 326Q1384 154 1268 67T924 -20Q825 -20 753
+-6T621 43V285Q674 249 756 224T903 199Q1071 199 1071 322Q1071 363 1055 388T998 444T883 516Q757 588 708 647T659 788Q659 852 694 905T799 1007Q876 1062 907 1102T938 1188Q938 1248 875 1288T711 1329Q595 1329 530 1277T465 1128V0H160V1139Q160 1340 306
+1453T711 1567Q955 1567 1102 1479T1249 1241Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
+745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM870 1241Q807 1285 685 1383T495 1548V1569H837Q900 1468 1072 1268V1241H870Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
+745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM441 1241V1268Q613 1468 676 1569H1018V1548Q966 1496 841 1394T644 1241H441Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963
+1043T1083 745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM1099 1496Q942 1589 865 1672Q787 1591 636 1496H433V1523Q622 1712 689 1824H1046Q1077 1772 1153 1683T1302 1523V1496H1099Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
+745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM467 1346Q436 1346 408 1320T366 1239H217Q228 1384 299 1466T489 1548Q530 1548 569 1532T647 1496T723 1460T796 1444Q827 1444 855 1470T897 1550H1046Q1035
+1405 963 1323T774 1241Q733 1241 694 1257T616 1293T540 1329T467 1346Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
+745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM285 1405Q285 1470 322 1505T424 1540Q490 1540 527 1503T565 1405Q565 1345 527 1309T424 1272Q360 1272 323 1307T285 1405ZM688 1405Q688 1475 728 1507T829
+1540Q894 1540 932 1504T971 1405Q971 1344 932 1308T829 1272Q769 1272 729 1304T688 1405Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
+745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM883 1479Q883 1371 812 1305T629 1239Q517 1239 449 1303T381 1477Q381 1585 448 1649T629 1714Q739 1714 811 1648T883 1479ZM725 1477Q725 1522 698 1547T629
+1573Q587 1573 560 1548T533 1477Q533 1432 557 1406T629 1380Q671 1380 698 1406T725 1477Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1878" d="M1329 -20Q1192 -20 1080 30T895 186Q797 69 699 25T442 -20Q281 -20 184 74T86 334Q86 512 207 596T569 690L760 696V780Q760 849 716 882T594 915Q454 915 289 838L190 1040Q379 1141 612 1141Q839
+1141 954 1010Q1020 1074 1106 1106T1313 1139Q1534 1139 1662 1002T1790 631V483H1067Q1072 353 1144 280T1346 207Q1542 207 1726 295V59Q1647 20 1555 0T1329 -20ZM760 518L647 514Q523 510 461 467T399 332Q399 203 539 203Q640 203 700 264T760 426V518ZM1307
+922Q1090 922 1073 686H1503Q1501 798 1448 860T1307 922Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="1053" d="M614 -20Q92 -20 92 553Q92 838 234 988T641 1139Q835 1139 989 1063L899 827Q827 856 765 874T641 893Q403 893 403 555Q403 227 641 227Q729 227 804 250T954 324V63Q880 16 805 -2T614
+-20ZM805 -250Q805 -378 730 -435T496 -492Q418 -492 350 -471V-303Q377 -310 422 -317T493 -324Q565 -324 565 -262Q565 -179 399 -154L477 0H670L643 -61Q717 -85 761 -135T805 -250Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680 207Q781
+207 871 228T1059 295V59Q979 19 888 0T666 -20ZM876 1241Q813 1285 691 1383T501 1548V1569H843Q906 1468 1078 1268V1241H876Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680 207Q781
+207 871 228T1059 295V59Q979 19 888 0T666 -20ZM447 1241V1268Q619 1468 682 1569H1024V1548Q972 1496 847 1394T650 1241H447Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680
+207Q781 207 871 228T1059 295V59Q979 19 888 0T666 -20ZM860 1241Q703 1334 626 1417Q548 1336 397 1241H194V1268Q383 1457 450 1569H807Q838 1517 914 1428T1063 1268V1241H860Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680
+207Q781 207 871 228T1059 295V59Q979 19 888 0T666 -20ZM297 1405Q297 1470 334 1505T436 1540Q502 1540 539 1503T577 1405Q577 1345 539 1309T436 1272Q372 1272 335 1307T297 1405ZM700 1405Q700 1475 740 1507T841 1540Q906 1540 944 1504T983 1405Q983 1344
+944 1308T841 1272Q781 1272 741 1304T700 1405Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="625" d="M465 0H160V1118H465V0ZM274 1241Q211 1285 89 1383T-101 1548V1569H241Q304 1468 476 1268V1241H274Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="625" d="M465 0H160V1118H465V0ZM145 1241V1268Q317 1468 380 1569H722V1548Q670 1496 545 1394T348 1241H145Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="625" d="M465 0H160V1118H465V0ZM544 1241Q387 1334 310 1417Q232 1336 81 1241H-122V1268Q67 1457 134 1569H491Q522 1517 598 1428T747 1268V1241H544Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="625" d="M465 0H160V1118H465V0ZM-29 1405Q-29 1470 8 1505T110 1540Q176 1540 213 1503T251 1405Q251 1345 213 1309T110 1272Q46 1272 9 1307T-29 1405ZM374 1405Q374 1475 414 1507T515 1540Q580
+1540 618 1504T657 1405Q657 1344 618 1308T515 1272Q455 1272 415 1304T374 1405Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1268" d="M510 1303Q430 1356 358 1395L459 1571Q603 1506 717 1430L942 1569L1042 1415L872 1311Q1028 1168 1102 987T1176 573Q1176 293 1031 137T631 -20Q386 -20 239 117T92 489Q92 722 222 858T573
+995Q778 995 848 897L856 901Q789 1063 664 1182L434 1040L334 1196L510 1303ZM864 532Q864 640 803 705T635 770Q514 770 459 702T403 487Q403 347 463 276T635 205Q758 205 811 287T864 532Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1346" d="M1192 0H887V653Q887 774 844 834T707 895Q579 895 522 810T465 526V0H160V1118H393L434 975H451Q502 1056 591 1097T795 1139Q990 1139 1091 1034T1192 729V0ZM508 1346Q477 1346 449 1320T407
+1239H258Q269 1384 340 1466T530 1548Q571 1548 610 1532T688 1496T764 1460T837 1444Q868 1444 896 1470T938 1550H1087Q1076 1405 1004 1323T815 1241Q774 1241 735 1257T657 1293T581 1329T508 1346Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92 835
+235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM868 1241Q805 1285 683 1383T493 1548V1569H835Q898 1468 1070 1268V1241H868Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92 835
+235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM467 1241V1268Q639 1468 702 1569H1044V1548Q992 1496 867 1394T670 1241H467Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92
+835 235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM864 1241Q707 1334 630 1417Q552 1336 401 1241H198V1268Q387 1457 454 1569H811Q842 1517 918 1428T1067 1268V1241H864Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92 835
+235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM469 1346Q438 1346 410 1320T368 1239H219Q230 1384 301 1466T491 1548Q532 1548 571 1532T649 1496T725 1460T798 1444Q829 1444 857 1470T899 1550H1048Q1037 1405 965 1323T776 1241Q735 1241 696 1257T618
+1293T542 1329T469 1346Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92
+835 235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM291 1405Q291 1470 328 1505T430 1540Q496 1540 533 1503T571 1405Q571 1345 533 1309T430 1272Q366 1272 329 1307T291 1405ZM694 1405Q694 1475 734 1507T835 1540Q900 1540 938 1504T977 1405Q977
+1344 938 1308T835 1272Q775 1272 735 1304T694 1405Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1169" d="M88 612V831H1081V612H88ZM444 373Q444 449 481 486T584 524Q650 524 686 485T723 373Q723 303 686 262T584 221Q519 221 482 260T444 373ZM444 1071Q444 1146 481 1184T584 1223Q651 1223
+687 1183T723 1071Q723 1001 686 961T584 920Q519 920 482 959T444 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1268" d="M1176 561Q1176 288 1032 134T631 -20Q505 -20 397 25L330 -76L176 29L244 129Q92 285 92 561Q92 835 235 987T637 1139Q769 1139 885 1087L940 1169L1092 1061L1034 977Q1176 822 1176 561ZM403
+561Q403 467 422 395L739 870Q696 893 633 893Q511 893 457 811T403 561ZM864 561Q864 642 852 702L543 240Q581 225 635 225Q757 225 810 309T864 561Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952ZM876 1241Q813 1285 691 1383T501 1548V1569H843Q906
+1468 1078 1268V1241H876Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952ZM498 1241V1268Q670 1468 733 1569H1075V1548Q1023
+1496 898 1394T701 1241H498Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952ZM901 1241Q744 1334 667 1417Q589
+1336 438 1241H235V1268Q424 1457 491 1569H848Q879 1517 955 1428T1104 1268V1241H901Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952ZM326 1405Q326 1470 363 1505T465
+1540Q531 1540 568 1503T606 1405Q606 1345 568 1309T465 1272Q401 1272 364 1307T326 1405ZM729 1405Q729 1475 769 1507T870 1540Q935 1540 973 1504T1012 1405Q1012 1344 973 1308T870 1272Q810 1272 770 1304T729 1405Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1165" d="M0 1118H334L545 489Q572 407 582 295H588Q599 398 631 489L838 1118H1165L692 -143Q627 -318 507 -405T225 -492Q146 -492 70 -475V-233Q125 -246 190 -246Q271 -246 331 -197T426 -47L444
+8L0 1118ZM393 1241V1268Q565 1468 628 1569H970V1548Q918 1496 793 1394T596 1241H393Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1296" d="M465 973Q515 1054 596 1096T782 1139Q980 1139 1092 985T1204 561Q1204 288 1093 134T782 -20Q569 -20 465 117H451L458 55L465 -39V-492H160V1556H465V1165L458 1045L451 973H465ZM684 895Q571
+895 519 826T465 596V563Q465 383 518 305T688 227Q893 227 893 565Q893 730 843 812T684 895Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1165" d="M0 1118H334L545 489Q572 407 582 295H588Q599 398 631 489L838 1118H1165L692 -143Q627 -318 507 -405T225 -492Q146 -492 70 -475V-233Q125 -246 190 -246Q271 -246 331 -197T426 -47L444
+8L0 1118ZM499 1405Q499 1470 536 1505T638 1540Q704 1540 741 1503T779 1405Q779 1345 741 1309T638 1272Q574 1272 537 1307T499 1405ZM902 1405Q902 1475 942 1507T1043 1540Q1108 1540 1146 1504T1185 1405Q1185 1344 1146 1308T1043 1272Q983 1272 943 1304T902
+1405Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1024" d="M82 436V666H942V436H82Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="2048" d="M82 436V666H1966V436H82Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="444" d="M39 961L25 983Q47 1074 97 1211T201 1462H420Q354 1195 319 961H39Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="444" d="M406 1462L420 1440Q370 1243 244 961H25Q94 1257 125 1462H406Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="596" d="M459 215Q407 13 283 -264H63Q128 2 164 238H444L459 215Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="911" d="M492 983Q514 1074 564 1211T668 1462H887Q821 1195 786 961H506L492 983ZM25 983Q47 1074 97 1211T201 1462H420Q354 1195 319 961H39L25 983Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="911" d="M420 1440Q370 1243 244 961H25Q94 1257 125 1462H406L420 1440ZM887 1440Q837 1243 711 961H492Q561 1257 592 1462H872L887 1440Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="1061" d="M459 215Q407 13 283 -264H63Q128 2 164 238H444L459 215ZM926 215Q874 13 750 -264H530Q595 2 631 238H911L926 215Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="770" d="M98 748Q98 902 172 983T385 1065Q522 1065 597 983T672 748Q672 596 597 513T385 430Q247 430 173 513T98 748Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="754" d="M82 573L453 1028L672 909L393 561L672 213L453 94L82 547V573Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="754" d="M672 547L301 94L82 213L360 561L82 909L301 1028L672 573V547Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.ttf b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.ttf
new file mode 100644
index 0000000..fd79d43
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.ttf differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.woff b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.woff
new file mode 100644
index 0000000..f501db0
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.woff differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.woff2 b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.woff2
new file mode 100644
index 0000000..34aac6f
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.woff2 differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.eot b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.eot
new file mode 100644
index 0000000..70335d8
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.eot differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.svg b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.svg
new file mode 100644
index 0000000..591a19c
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.svg
@@ -0,0 +1,19036 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1279" ><font-face
+    font-family="Open Sans Extrabold"
+    units-per-em="2048"
+    panose-1="2 11 9 6 3 8 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="623" d="M453 516H125L281 1462H707L453 516ZM12 127Q12 234 77 297T256 360Q343 360 389 320T436 205Q436 95 373 35T199 -25Q111 -25 62 13T12 127Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="930" d="M596 1462L438 934H182L254 1462H596ZM1038 1462L881 934H623L696 1462H1038Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M1067 831L1010 631H1253L1233 393H940L829 0H559L672 393H504L391 0H121L233 393H14L35 631H301L358 831H123L143 1073H428L539 1462H809L698 1073H866L977 1462H1247L1137 1073H1358L1337
+831H1067ZM571 631H739L797 831H629L571 631Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1188" d="M1067 481Q1067 303 934 191T573 66L535 -121H367L408 70Q187 86 61 162V473Q187 414 289 387T492 360Q666 360 666 465Q666 505 634 537T494 621Q355 683 280 781T205 1008Q205 1184 338 1296T696
+1423L725 1556H893L862 1419Q1023 1404 1176 1329L1036 1059Q878 1130 741 1130Q675 1130 638 1102T600 1034Q600 981 639 945T797 850Q937 782 1002 695T1067 481Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1878" d="M1630 1462L549 0H252L1341 1462H1630ZM498 1241Q448 1241 410 1131T371 891Q371 807 424 807Q476 807 513 917T551 1157Q551 1200 539 1220T498 1241ZM842 1161Q842 996 786 858T628 643T397 565Q238
+565 159 648T80 887Q80 1060 134 1196T288 1408T526 1483Q673 1483 757 1398T842 1161ZM1475 655Q1425 655 1387 545T1348 305Q1348 221 1401 221Q1453 221 1490 331T1528 571Q1528 615 1516 635T1475 655ZM1819 575Q1819 411 1763 273T1605 58T1374 -20Q1215 -20
+1136 63T1057 301Q1057 474 1111 610T1265 822T1503 897Q1650 897 1734 812T1819 575Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1501" d="M8 385Q8 544 95 649T367 815Q330 861 307 933T283 1065Q283 1262 409 1373T764 1485Q953 1485 1066 1397T1180 1161Q1180 1031 1100 928T838 731L967 545Q1003 581 1042 659T1106 821H1489Q1443
+660 1361 516T1171 262L1362 0H920L877 61Q722 -20 528 -20Q284 -20 146 86T8 385ZM745 1221Q696 1221 666 1187T635 1092Q635 1016 686 948Q758 979 792 1027T827 1135Q827 1170 805 1195T745 1221ZM571 287Q648 287 709 313L516 592Q399 540 399 424Q399 362
+446 325T571 287Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="487" d="M596 1462L438 934H182L254 1462H596Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="766" d="M68 326Q68 656 192 945T580 1503H903Q643 1222 519 927T395 309Q395 159 427 -17T512 -324H219Q152 -204 110 -25T68 326Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="766" d="M694 854Q694 513 571 226T193 -324H-133Q123 -47 245 247T367 870Q367 1020 335 1192T248 1503H543Q614 1379 654 1205T694 854Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1110" d="M909 1509L793 1178L1161 1208L1139 907L829 948L977 637L692 551L612 854L446 610L197 795L451 1024L152 1108L252 1386L571 1221L602 1571L909 1509Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1159" d="M455 586H102V858H455V1210H725V858H1077V586H725V238H455V586Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="627" d="M432 238L440 215Q324 -47 184 -264H-104Q-51 -143 43 123L84 238H432Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="674" d="M23 393L86 705H639L575 393H23Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="627" d="M0 127Q0 236 65 298T244 360Q328 360 376 320T424 205Q424 87 364 31T174 -25Q96 -25 48 12T0 127Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="956" d="M1092 1483L254 -20H-90L748 1483H1092Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1188" d="M1157 983Q1157 685 1072 454T837 101T489 -20Q279 -20 171 106T63 465Q63 760 148 998T383 1361T731 1485Q866 1485 961 1423T1107 1248T1157 983ZM686 1169Q631 1169 576 1058T487 776T453 457Q453
+373 468 334T528 295Q586 295 639 389T730 655T768 991Q768 1076 750 1122T686 1169Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1188" d="M774 0H385L559 799Q587 931 635 1055Q557 987 504 952L301 827L150 1079L770 1462H1081L774 0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1188" d="M948 0H-57L-4 256L479 692Q727 913 727 1053Q727 1102 701 1126T635 1151Q515 1151 354 1004L168 1262Q402 1483 709 1483Q892 1483 1004 1384T1116 1114Q1116 962 1029 829T731 514L526 338V326H1016L948 0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1188" d="M1126 1137Q1126 989 1037 892T784 762V754Q913 729 986 643T1059 430Q1059 214 881 97T399 -20Q283 -20 182 0T14 59V391Q181 291 391 291Q529 291 597 337T666 471Q666 525 639 552T553 591T387
+604H303L356 895H434Q581 895 663 941T745 1069Q745 1115 709 1143T610 1171Q493 1171 340 1087L182 1335Q308 1416 425 1449T684 1483Q885 1483 1005 1390T1126 1137Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1188" d="M1065 283H915L856 0H479L539 283H-10L41 539L803 1462H1163L977 578H1126L1065 283ZM600 578L649 772Q678 879 709 983H700Q649 886 586 811L391 578H600Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1188" d="M655 958Q836 958 948 841T1061 524Q1061 263 900 122T434 -20Q305 -20 190 2T20 63V387Q99 342 201 317T385 291Q662 291 662 483Q662 559 612 606T475 653Q422 653 364 643T272 621L150 713L365
+1462H1178L1110 1139H639L580 954Q615 958 655 958Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1188" d="M971 1483Q1073 1483 1204 1452L1141 1149Q1046 1174 958 1174Q813 1174 721 1140T570 1032T463 807H471Q577 977 778 977Q938 977 1022 874T1106 575Q1106 400 1038 264T841 54T543 -20Q318 -20 198
+104T78 471Q78 576 104 725Q189 1117 402 1300T971 1483ZM561 287Q627 287 670 363T713 545Q713 674 621 674Q553 674 508 601T463 420Q463 354 489 321T561 287Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1188" d="M35 0L752 1135H178L248 1462H1278L1227 1231L483 0H35Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1188" d="M725 1485Q925 1485 1041 1393T1157 1151Q1157 1023 1080 923T877 782Q969 711 1017 624T1065 420Q1065 214 924 97T537 -20Q312 -20 181 79T49 338Q49 639 381 756Q225 877 225 1065Q225 1186 285
+1281T459 1431T725 1485ZM584 608Q414 518 414 385Q414 331 450 297T547 262Q617 262 659 304T702 414Q702 529 584 608ZM707 1202Q659 1202 624 1163T588 1065Q588 1027 611 988T674 930Q732 952 766 1001T801 1104Q801 1153 773 1177T707 1202Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1188" d="M1137 952Q1137 659 1034 433T749 93T317 -20Q202 -20 106 10V324Q198 287 309 287Q496 287 600 374T745 655H737Q678 560 605 521T436 481Q285 481 197 591T109 887Q109 1063 174 1197T364 1407T662
+1483Q892 1483 1014 1346T1137 952ZM672 1176Q599 1176 551 1105T502 932Q502 788 594 788Q668 788 719 858T770 1030Q770 1096 743 1136T672 1176Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="627" d="M0 127Q0 236 65 298T244 360Q328 360 376 320T424 205Q424 87 364 31T174 -25Q96 -25 48 12T0 127ZM195 915Q195 1025 260 1086T436 1147Q518 1147 568 1110T618 993Q618 874 559 818T369 762Q290
+762 243 799T195 915Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="627" d="M420 238L428 215Q312 -47 172 -264H-117Q-52 -117 31 123L72 238H420ZM195 915Q195 1025 260 1086T436 1147Q518 1147 568 1110T618 993Q618 874 559 818T369 762Q290 762 243 799T195 915Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1159" d="M1061 176L88 627V799L1061 1307V1008L485 725L1061 473V176Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1159" d="M102 774V1040H1077V774H102ZM102 399V670H1077V399H102Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1159" d="M109 473L684 725L109 1008V1307L1081 799V627L109 176V473Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="999" d="M256 516L268 580Q283 660 310 718T381 822T522 932Q611 990 647 1027T684 1104Q684 1174 594 1174Q468 1174 281 1065L162 1348Q393 1483 623 1483Q824 1483 942 1393T1061 1145Q1061 1056 1034
+989T955 869T784 743Q684 683 642 643T586 559L571 516H256ZM176 127Q176 234 241 297T420 360Q507 360 553 320T600 205Q600 95 537 35T362 -25Q275 -25 226 14T176 127Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1837" d="M1774 827Q1774 657 1705 513T1514 288T1247 207Q1077 207 1028 336H1018Q970 271 907 239T750 207Q633 207 559 290T485 512Q485 668 559 806T755 1017T1032 1090Q1187 1090 1368 1020L1268 606Q1245
+512 1245 469Q1245 428 1284 428Q1348 428 1400 476T1481 615T1511 821Q1511 1034 1378 1143T995 1253Q808 1253 659 1162T427 904T344 524Q344 379 399 270T552 102T776 43Q879 43 1010 67T1255 137V-88Q1165 -131 1032 -158T780 -186Q571 -186 413 -103T168 137T82
+500Q82 788 199 1011T534 1358T1020 1483Q1375 1483 1574 1309T1774 827ZM1012 868Q939 868 884 821T796 694T764 532Q764 428 842 428Q903 428 941 479T1016 668L1063 858Q1040 868 1012 868Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1384" d="M858 274H410L285 0H-121L623 1462H1126L1249 0H868L858 274ZM553 586H846L829 1010L827 1096Q827 1171 831 1227Q807 1141 770 1061L553 586Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1298" d="M342 1462H829Q1046 1462 1158 1380T1270 1143Q1270 855 973 766V758Q1061 729 1113 657T1165 479Q1165 250 1013 125T580 0H33L342 1462ZM614 901H686Q774 901 819 939T864 1061Q864 1163 737 1163H674L614
+901ZM555 612L489 305H571Q657 305 714 353T772 475Q772 544 739 578T623 612H555Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1290" d="M881 1159Q773 1159 686 1081T550 866T500 569Q500 435 556 369T717 303Q800 303 885 323T1085 393V70Q882 -20 645 -20Q385 -20 245 128T104 549Q104 815 205 1037T481 1372T881 1485Q1146 1485 1362
+1354L1214 1049Q1121 1104 1043 1131T881 1159Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1401" d="M1337 909Q1337 629 1238 424T951 109T504 0H33L342 1462H758Q1034 1462 1185 1318T1337 909ZM563 324Q673 324 759 394T894 593T942 889Q942 1014 888 1078T737 1143H666L494 324H563Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1151" d="M901 0H33L342 1462H1210L1145 1145H668L621 915H1065L993 598H549L492 322H969L901 0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1165" d="M424 0H33L342 1462H1204L1137 1145H666L608 866H1044L975 547H537L424 0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1430" d="M731 856H1341L1174 61Q924 -20 653 -20Q392 -20 248 132T104 563Q104 830 214 1045T515 1372T961 1485Q1227 1485 1409 1378L1262 1069Q1109 1159 956 1159Q824 1159 723 1087T561 872T500 569Q500 305
+709 305Q772 305 842 319L893 551H664L731 856Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1462" d="M1163 0H772L897 596H551L424 0H33L342 1462H733L621 920H969L1081 1462H1473L1163 0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="727" d="M31 0L340 1462H737L428 0H31Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="764" d="M-115 -461Q-221 -461 -328 -432V-113Q-229 -137 -154 -137Q-47 -137 8 -78T92 117L381 1462H772L473 68Q430 -132 360 -244T178 -409T-115 -461Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1370" d="M1241 0H803L629 578L532 522L424 0H33L342 1462H733L598 838L636 897Q724 1040 766 1092L1063 1462H1522L971 788L1241 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1079" d="M33 0L342 1462H733L492 319H969L901 0H33Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1862" d="M588 0V1049H580Q513 632 494 537L381 0H33L342 1462H860V424H868L1346 1462H1872L1559 0H1208L1325 549Q1375 777 1433 985L1448 1049H1440L958 0H588Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1618" d="M1319 0H864L575 1028H567Q538 737 510 610L381 0H33L342 1462H797L1083 479H1092Q1121 715 1149 850L1280 1462H1628L1319 0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1509" d="M897 1485Q1157 1485 1301 1337T1446 922Q1446 656 1347 436T1072 98T666 -20Q397 -20 251 129T104 543Q104 808 207 1030T487 1368T897 1485ZM1051 918Q1051 1032 1003 1096T864 1161Q765 1161 682 1077T550
+846T500 545Q500 303 700 303Q795 303 876 386T1004 610T1051 918Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1276" d="M1251 1024Q1251 772 1080 629T610 485H524L424 0H33L342 1462H715Q974 1462 1112 1349T1251 1024ZM594 805H657Q748 805 804 863T860 1012Q860 1071 824 1107T725 1143H666L594 805Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1509" d="M903 1485Q1161 1485 1303 1336T1446 922Q1446 642 1332 413T1022 74L1260 -348H821L659 -20H647Q389 -20 247 129T104 543Q104 808 206 1029T488 1367T903 1485ZM870 1157Q767 1157 682 1074T548 848T500
+539Q500 424 547 367T682 309Q784 309 868 390T1002 614T1051 926Q1051 1040 1004 1098T870 1157Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1331" d="M537 532L424 0H33L342 1462H729Q981 1462 1115 1362T1249 1061Q1249 905 1178 789T967 612L1191 96L1231 0H805L610 532H537ZM600 829H651Q746 829 802 883T858 1036Q858 1098 824 1130T723 1163H670L600 829Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1122" d="M977 449Q977 227 830 104T420 -20Q310 -20 212 4T43 76V426Q127 373 235 337T432 301Q506 301 544 332T582 420Q582 447 570 470T536 517T418 621Q301 715 248 813T195 1028Q195 1159 260 1263T445 1425T713
+1483Q952 1483 1143 1376L1008 1079Q837 1167 717 1167Q653 1167 619 1139T584 1057Q584 1008 617 966T745 852Q863 765 920 669T977 449Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1130" d="M627 0H236L473 1139H156L225 1462H1253L1182 1139H864L627 0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1436" d="M1450 1462L1251 530Q1192 249 1026 115T575 -20Q441 -20 339 35T181 189T125 410Q125 474 137 539L336 1462H727L532 549Q518 481 518 434Q518 307 639 307Q733 307 786 371T868 569L1059 1462H1450Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1264" d="M1001 1462H1415L690 0H254L150 1462H532L559 661V610Q559 466 543 354H551Q565 418 595 511T651 657L1001 1462Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1915" d="M487 354L527 458L621 690L956 1462H1292V670Q1292 514 1266 354Q1276 382 1399 700L1702 1462H2089L1454 0H993V620Q993 775 1006 944Q973 811 888 595L635 0H201L152 1462H522L512 729Q506 462 487 354Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1358" d="M1235 0H803L657 498L319 0H-125L438 776L215 1462H631L754 993L1063 1462H1511L973 737L1235 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1237" d="M657 920L969 1462H1405L793 567L672 0H281L401 567L164 1462H567L657 920Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1104" d="M942 0H-92L-45 242L645 1143H166L233 1462H1219L1167 1217L467 319H1010L942 0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="737" d="M477 -344H-53L340 1503H870L815 1249H600L315 -90H530L477 -344Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="956" d="M530 1483L778 -20H459L221 1483H530Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="737" d="M-80 -90H133L418 1249H203L258 1503H786L393 -344H-133L-80 -90Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1096" d="M-6 502L625 1462H797L1081 502H807L651 1071L291 502H-6Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="922" d="M745 -379H-184L-127 -133H803L745 -379Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1135" d="M975 1241H739Q657 1316 587 1400T485 1548V1569H881Q910 1412 975 1266V1241Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1243" d="M565 291Q615 291 660 349T733 506T760 698Q760 763 740 802T678 842Q602 842 541 716T479 434Q479 291 565 291ZM981 0H672L682 123H674Q618 45 553 13T406 -20Q248 -20 166 91T84 412Q84 591 157 777T341
+1058T588 1153Q672 1153 736 1116T850 993H858L911 1133H1221L981 0Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1243" d="M657 -20Q574 -20 512 12T387 125H379L330 0H23L352 1556H739L690 1325Q652 1150 600 1024H608Q656 1083 685 1105T752 1140T838 1153Q993 1153 1076 1042T1159 721Q1159 543 1089 359T906 78T657 -20ZM678
+842Q628 842 583 785T512 631T485 434Q485 369 504 330T563 291Q612 291 659 350T735 506T764 698Q764 842 678 842Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="1032" d="M506 -20Q307 -20 196 100T84 442Q84 643 160 806T375 1061T690 1153Q885 1153 1057 1073L934 786Q801 846 709 846Q647 846 594 798T507 655T473 467Q473 376 503 334T598 291Q670 291 737 314T881 377V70Q801
+26 713 3T506 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1237" d="M586 1153Q661 1153 712 1123T823 1001H831L833 1038Q840 1176 858 1255L920 1556H1311L981 0H672L682 123H674Q617 44 554 12T406 -20Q248 -20 166 91T84 412Q84 590 155 775T339 1056T586 1153ZM565
+291Q615 291 660 349T733 506T760 698Q760 842 680 842Q631 842 584 783T508 628T479 434Q479 291 565 291Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1186" d="M532 -20Q320 -20 202 98T84 428Q84 639 167 808T396 1065T733 1153Q923 1153 1032 1067T1141 838Q1141 637 985 530T532 422H473V406Q473 258 637 258Q716 258 792 281T965 356V82Q853 25 756 3T532
+-20ZM690 891Q629 891 576 822T512 664H541Q650 664 712 705T774 815Q774 847 754 869T690 891Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="840" d="M-2 -492Q-112 -492 -209 -465V-162Q-146 -180 -92 -180Q-18 -180 20 -150T72 -55L262 842H96L139 1032L328 1128L344 1202Q387 1394 490 1480T766 1567Q846 1567 921 1551T1049 1509L950 1245Q886 1276
+821 1276Q786 1276 762 1258T729 1204L713 1133H924L858 842H649L444 -117Q401 -309 291 -400T-2 -492Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1145" d="M1235 1133L1194 926L1034 874Q1044 834 1044 780Q1044 589 914 472T575 354Q499 354 451 367Q431 356 417 345T403 315Q403 272 514 256L651 238Q825 213 901 147T977 -43Q977 -258 809 -375T330 -492Q118
+-492 -7 -417T-133 -207Q-133 -109 -65 -38T147 80Q110 103 87 140T63 219Q63 290 114 345T266 446Q135 549 135 727Q135 923 271 1038T639 1153Q690 1153 746 1147T836 1133H1235ZM197 -152Q197 -238 367 -238Q492 -238 557 -209T623 -127Q623 -91 590 -73T475
+-45L360 -33Q282 -44 240 -74T197 -152ZM500 692Q500 598 567 598Q619 598 652 666T686 825Q686 920 625 920Q587 920 559 887T516 799T500 692Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1274" d="M639 0L768 618Q786 696 786 760Q786 803 764 824T711 846Q586 846 526 553L410 0H23L352 1556H739L686 1307Q651 1149 598 1024H606Q707 1153 879 1153Q1020 1153 1099 1068T1178 831Q1178 725 1153
+602L1026 0H639Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="666" d="M410 0H23L262 1133H651L410 0ZM309 1382Q309 1485 368 1538T535 1591Q626 1591 675 1555T725 1450Q725 1350 667 1296T500 1241Q309 1241 309 1382Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="666" d="M-57 -492Q-167 -492 -264 -465V-162Q-208 -180 -152 -180Q-10 -180 23 -33L270 1133H657L397 -94Q357 -287 240 -389T-57 -492ZM317 1382Q317 1485 376 1538T543 1591Q634 1591 683 1555T733 1450Q733
+1356 678 1299T508 1241Q317 1241 317 1382Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1264" d="M348 1556H735L596 893Q579 816 528 670H537Q621 797 690 870L932 1133H1374L883 621L1157 0H719L580 391L479 338L410 0H23L348 1556Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="666" d="M410 0H23L352 1556H739L410 0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1896" d="M645 0L776 631Q791 721 791 752Q791 846 719 846Q651 846 606 772T528 551L410 0H23L262 1133H571L555 946H563Q624 1060 700 1106T891 1153Q1008 1153 1071 1100T1161 946H1169Q1234 1052 1318 1102T1513
+1153Q1654 1153 1727 1069T1800 819Q1800 722 1778 614L1653 0H1266L1395 631Q1409 687 1409 764Q1409 804 1390 825T1339 846Q1265 846 1220 770T1143 543L1032 0H645Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1274" d="M786 760Q786 803 764 824T711 846Q654 846 606 775T526 553L410 0H23L262 1133H571L559 975H567Q622 1070 696 1111T879 1153Q1020 1153 1099 1068T1178 831Q1178 725 1153 602L1026 0H639L768 618Q786
+696 786 760Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1243" d="M520 -20Q311 -20 198 93T84 416Q84 626 163 795T387 1059T723 1153Q932 1153 1045 1040T1159 717Q1159 507 1080 338T856 74T520 -20ZM678 862Q596 862 538 723T479 403Q479 270 563 270Q644 270 704
+409T764 729Q764 795 741 828T678 862Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1243" d="M651 -20Q508 -20 420 125H412Q400 -41 356 -246L305 -492H-82L262 1133H571L559 1006H567Q663 1153 825 1153Q981 1153 1070 1042T1159 735Q1159 532 1089 353T904 77T651 -20ZM678 842Q628 842 583
+785T512 631T485 434Q485 369 508 330T573 291Q621 291 665 348T736 501T764 698Q764 842 678 842Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1243" d="M586 1153Q675 1153 731 1120T850 993H858L911 1133H1221L877 -492H485L553 -199Q578 -83 643 111H635Q580 37 521 9T387 -20Q298 -20 229 30T122 178T84 408Q84 589 155 774T338 1056T586 1153ZM565
+291Q615 291 660 349T733 506T760 698Q760 842 680 842Q631 842 584 783T508 628T479 434Q479 291 565 291Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="895" d="M901 1153Q957 1153 981 1145L897 762Q843 784 774 784Q671 784 610 714T516 498L410 0H23L262 1133H571L553 944H561Q626 1056 702 1104T901 1153Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="1028" d="M891 393Q891 194 761 87T387 -20Q165 -20 31 43V354Q123 304 202 284T362 264Q430 264 464 282T498 334Q498 369 472 394T342 479Q236 537 188 612T139 795Q139 967 260 1060T604 1153Q716 1153 808
+1127T987 1047L866 795Q800 838 730 863T608 889Q532 889 532 821Q532 792 563 770T666 713Q891 601 891 393Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="936" d="M567 291Q633 291 750 338V47Q614 -20 410 -20Q262 -20 186 43T109 252Q109 328 133 440L217 842H63L104 1032L322 1120L459 1360H717L668 1133H956L893 842H604L520 459Q504 382 504 354Q504 291 567 291Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1274" d="M487 375Q487 331 509 310T563 289Q622 289 670 367T748 582L864 1133H1251L1012 0H702L715 158H707Q653 65 579 23T395 -20Q254 -20 175 65T96 301Q96 407 121 530L248 1133H635L506 516Q487 434 487 375Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="1114" d="M233 0L88 1133H473L500 530Q500 457 492 412H500Q501 426 518 475T554 565T819 1133H1233L621 0H233Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1686" d="M840 0L860 449Q862 522 871 658T893 877H885Q825 644 764 487L575 0H168L102 1133H467V621Q467 439 459 362H467Q513 539 555 657L727 1133H1155L1135 657Q1126 528 1102 362H1110Q1117 384 1125 409T1174
+549T1415 1133H1800L1262 0H840Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1159" d="M545 328L334 0H-119L354 578L147 1133H569L645 819L831 1133H1290L825 557L1053 0H625L545 328Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1114" d="M82 1133H471L514 571L516 509V422H524Q561 554 574 587T813 1133H1229L559 -143Q463 -328 336 -410T25 -492Q-67 -492 -129 -475V-168Q-83 -180 -20 -180Q67 -180 122 -144T221 -29L244 12L82 1133Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="993" d="M803 0H-41L2 221L504 834H156L223 1133H1034L981 891L485 299H868L803 0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="735" d="M432 45Q432 -43 545 -43V-324H463Q280 -324 191 -256T102 -47Q102 16 117 80L154 254Q160 278 160 297Q160 372 118 403T-16 434L37 721Q156 721 212 759T289 893L344 1139Q372 1263 420 1329T550
+1428T754 1462H883L821 1182Q740 1180 701 1153T645 1053L592 795Q572 699 507 644T313 573V565Q403 536 443 478T483 332Q483 315 473 258L438 94Q432 64 432 45Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1159" d="M442 1548H713V-465H442V1548Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="735" d="M-49 -324H-123V-43Q-50 -40 -14 -30T40 4T70 86L123 344Q144 443 211 498T401 565V573Q231 628 231 807Q231 819 242 881L276 1044Q283 1073 283 1094Q283 1182 147 1182L201 1462H262Q430 1462
+521 1392T612 1188Q612 1119 598 1059L561 885Q555 859 555 842Q555 776 599 742T748 707L690 420Q569 420 508 380T426 246L371 0Q334 -171 234 -247T-49 -324Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1159" d="M336 645Q284 645 222 615T96 524V809Q203 918 358 918Q419 918 468 907T621 854Q688 826 735 813T834 799Q885 799 949 831T1071 920V635Q964 526 809 526Q747 526 696 538T547 590Q472 621
+429 633T336 645Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="623" d="M145 608H473L317 -338H-109L145 608ZM586 1001Q586 894 521 831T342 768Q255 768 209 808T162 924Q162 1033 226 1093T399 1153Q488 1153 537 1114T586 1001Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1188" d="M602 -20H373L424 188Q154 262 154 586Q154 892 294 1096T666 1335L698 1483H928L895 1333Q1017 1314 1126 1257L1004 971Q925 1008 876 1019T778 1030Q715 1030 663 981T579 834T547 627Q547
+548 578 514T668 479Q740 479 808 504T950 569V258Q805 180 643 168L602 -20Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1188" d="M850 1483Q939 1483 1027 1464T1223 1397L1079 1098Q1013 1129 965 1145T866 1161Q831 1161 810 1137T774 1044L750 930H1001L944 651H692L672 557Q656 483 603 424T469 330H1073L1001 0H-18L45
+313Q121 334 165 362T234 431T276 555L297 651H109L166 930H354L377 1059Q403 1208 462 1302T612 1439T850 1483Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1188" d="M190 723Q190 815 236 907L106 1032L291 1217L418 1092Q514 1135 600 1135Q696 1135 784 1087L909 1217L1098 1038L969 909Q1012 827 1012 723Q1012 629 969 537L1092 414L909 231L784 354Q688
+313 600 313Q492 313 414 352L291 233L109 416L236 539Q190 629 190 723ZM451 723Q451 659 494 615T600 571Q665 571 710 615T756 723Q756 784 712 829T600 874Q536 874 494 830T451 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1188" d="M639 975L932 1462H1325L836 729H1020L975 524H752L725 395H948L905 190H682L641 0H262L303 190H76L119 395H346L371 524H145L190 729H369L182 1462H567L639 975Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1159" d="M444 1546H715V705H444V1546ZM444 395H715V-444H444V395Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="1036" d="M158 776Q158 860 204 932T336 1057Q298 1095 277 1146T256 1249Q256 1409 372 1493T711 1577Q895 1577 1071 1475L971 1251Q880 1309 812 1330T678 1352Q618 1352 593 1330T567 1278Q567
+1245 581 1225T627 1182T717 1133Q961 1020 961 821Q961 722 923 650T793 526Q825 488 843 436T862 326Q862 156 735 66T377 -25Q267 -25 180 0T37 70V319Q122 267 210 233T395 199Q464 199 504 227T545 303Q545 341 514 373T410 446Q280 517 219 598T158 776ZM524
+940Q487 921 465 886T442 817Q442 774 479 733T604 643Q678 694 678 770Q678 824 642 865T524 940Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1135" d="M336 1384Q336 1571 537 1571Q707 1571 707 1446Q707 1257 506 1257Q418 1257 377 1288T336 1384ZM823 1384Q823 1571 1024 1571Q1192 1571 1192 1446Q1192 1349 1143 1303T993 1257Q905
+1257 864 1288T823 1384Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1688" d="M913 971Q833 971 787 910T741 731Q741 603 785 546T920 489Q1058 489 1178 557V326Q1052 262 905 262Q692 262 577 387T461 735Q461 955 574 1076T895 1198Q1061 1198 1227 1116L1135 911Q1021
+971 913 971ZM113 731Q113 933 214 1109T490 1384T864 1483Q1064 1483 1239 1383T1515 1108T1616 731Q1616 534 1519 361T1247 84T864 -20Q658 -20 484 82T212 359T113 731ZM276 731Q276 573 354 437T569 222T864 143Q1021 143 1157 220T1372 434T1452 731Q1452
+889 1374 1025T1159 1240T864 1319Q706 1319 569 1240T354 1024T276 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="827" d="M483 1475Q547 1475 594 1455T696 1376H705L741 1462H940L770 741H575L584 827H575Q486 729 352 729Q292 729 244 760T168 852T139 1001Q139 1121 184 1233T307 1410T483 1475ZM481 911Q527
+911 560 949T611 1049T629 1178Q629 1231 610 1261T557 1292Q518 1292 485 1252T432 1144T412 1012Q412 964 431 938T481 911Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1276" d="M61 563L469 1081L733 877L467 543L578 213L244 76L61 553V563ZM608 592L1032 1087L1292 877L1014 571L1137 213L803 76L608 582V592Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1159" d="M1057 858V238H786V586H82V858H1057Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="674" d="M23 393L86 705H639L575 393H23Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1688" d="M1245 918Q1245 827 1201 765T1061 668L1272 313H987L827 633H815V313H535V1188H825Q1039 1188 1142 1118T1245 918ZM815 809H825Q903 809 933 831T963 907Q963 961 928 977T823 993H815V809ZM113
+731Q113 933 214 1109T490 1384T864 1483Q1064 1483 1239 1383T1515 1108T1616 731Q1616 534 1519 361T1247 84T864 -20Q658 -20 484 82T212 359T113 731ZM276 731Q276 573 354 437T569 222T864 143Q1021 143 1157 220T1372 434T1452 731Q1452 889 1374 1025T1159
+1240T864 1319Q706 1319 569 1240T354 1024T276 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="922" d="M1112 1554H183L240 1800H1170L1112 1554Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="864" d="M166 1114Q166 1211 215 1296T350 1432T535 1483Q633 1483 719 1433T854 1297T903 1114Q903 1016 854 931T718 798T535 750Q436 750 350 799T215 932T166 1114ZM403 1114Q403 1063 442 1025T535
+987Q587 987 626 1025T666 1114Q666 1167 628 1207T535 1247Q480 1247 442 1208T403 1114Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1159" d="M455 694H102V965H455V1317H725V965H1077V694H725V344H455V694ZM102 0V270H1077V0H102Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="848" d="M727 584H23L66 788L342 999Q450 1082 486 1123T522 1198Q522 1249 459 1249Q424 1249 374 1231T270 1169L152 1360Q236 1425 324 1454T541 1483Q675 1483 759 1422T844 1266Q844 1196
+813 1137T711 1016T459 840H778L727 584Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="848" d="M821 1272Q821 1181 766 1126T590 1042V1034Q682 1011 719 965T756 852Q756 725 652 647T377 569Q271 569 200 585T66 639V864Q129 821 197 802T322 782Q473 782 473 862Q473 930 360
+930H240L283 1124H379Q450 1124 493 1145T537 1212Q537 1240 515 1255T461 1270Q382 1270 276 1204L176 1386Q259 1438 337 1459T518 1481Q655 1481 738 1424T821 1272Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1135" d="M453 1264Q576 1366 735 1569H1174V1554Q1129 1500 983 1397T737 1241H453V1264Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1288" d="M545 -20Q443 -20 414 57H406Q396 -77 358 -246L305 -492H-82L262 1133H649L520 516Q502 438 502 375Q502 331 524 310T578 289Q630 289 660 315T714 402T762 582L879 1133H1266L1026 0H737L743
+123H735Q667 -20 545 -20Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1317" d="M1186 -260H995V1327H838V-260H647V559Q593 541 522 541Q306 541 204 666T102 1042Q102 1298 209 1427T553 1556H1186V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="627" d="M115 684Q115 790 180 852T358 915Q440 915 489 875T539 760Q539 643 474 587T295 530Q209 530 162 570T115 684Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="383" d="M287 -236Q287 -357 205 -424T-29 -492Q-144 -492 -221 -463V-258Q-191 -267 -143 -276T-70 -285Q-2 -285 -2 -236Q-2 -163 -147 -135L-72 0H133L109 -41Q287 -78 287 -236Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="848" d="M541 1462H793L606 584H289L371 948Q392 1050 426 1155L352 1096L233 1018L115 1202L541 1462Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="817" d="M602 1182Q602 1227 591 1250T547 1274Q487 1274 450 1201T412 1016Q412 932 467 932Q526 932 564 1002T602 1182ZM874 1182Q874 1048 823 945T674 785T442 727Q298 727 219 802T139 1004Q139
+1217 255 1348T573 1479Q716 1479 795 1400T874 1182Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1276" d="M1214 561L807 43L543 248L809 582L698 911L1032 1049L1214 571V561ZM668 532L244 35L-14 248L262 553L141 911L473 1049L668 543V532Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1991" d="M1720 122H1607L1581 -1H1292L1319 122H921L952 300L1442 877H1767L1648 320H1761L1720 122ZM1360 320Q1422 559 1433 594T1448 638Q1435 620 1413 590T1198 320H1360ZM1575 1462L492 0H195L1284
+1462H1575ZM761 1462H1013L826 584H509L591 948Q612 1050 646 1155L572 1096L453 1018L335 1202L761 1462Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1991" d="M1706 -1H1002L1045 203L1321 414Q1429 497 1465 538T1501 613Q1501 664 1438 664Q1403 664 1353 646T1249 584L1131 775Q1215 840 1303 869T1520 898Q1654 898 1738 837T1823 681Q1823 611
+1792 552T1690 431T1438 255H1757L1706 -1ZM786 1462H1038L851 584H534L616 948Q637 1050 671 1155L597 1096L478 1018L360 1202L786 1462ZM1599 1462L516 0H219L1308 1462H1599Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1991" d="M1767 122H1654L1628 -1H1339L1366 122H968L999 300L1489 877H1814L1695 320H1808L1767 122ZM1407 320Q1469 559 1480 594T1495 638Q1482 620 1460 590T1245 320H1407ZM950 1272Q950
+1181 895 1126T719 1042V1034Q811 1011 848 965T885 852Q885 725 781 647T506 569Q400 569 329 585T195 639V864Q258 821 326 802T451 782Q602 782 602 862Q602 930 489 930H369L412 1124H508Q579 1124 622 1145T666 1212Q666 1240 644 1255T590 1270Q511 1270
+405 1204L305 1386Q388 1438 466 1459T647 1481Q784 1481 867 1424T950 1272ZM1743 1462L660 0H363L1452 1462H1743Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="999" d="M721 612L709 549Q694 467 666 409T594 305T455 197Q366 139 330 102T293 25Q293 -12 315 -28T383 -45Q507 -45 696 63L815 -219Q588 -354 354 -354Q153 -354 35 -264T-84 -16Q-84 73
+-57 139T21 258T193 385Q293 445 335 486T391 569L406 612H721ZM801 1001Q801 894 736 831T557 768Q470 768 424 808T377 924Q377 1033 441 1093T614 1153Q703 1153 752 1114T801 1001Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1384" d="M858 274H410L285 0H-121L623 1462H1126L1249 0H868L858 274ZM553 586H846L829 1010L827 1096Q827 1171 831 1227Q807 1141 770 1061L553 586ZM1041 1579H805Q723 1654 653 1738T551 1886V1907H947Q976
+1750 1041 1604V1579Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1384" d="M858 274H410L285 0H-121L623 1462H1126L1249 0H868L858 274ZM553 586H846L829 1010L827 1096Q827 1171 831 1227Q807 1141 770 1061L553 586ZM709 1602Q832 1704 991 1907H1430V1892Q1385
+1838 1239 1735T993 1579H709V1602Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1384" d="M858 274H410L285 0H-121L623 1462H1126L1249 0H868L858 274ZM553 586H846L829 1010L827 1096Q827 1171 831 1227Q807 1141 770 1061L553 586ZM1335 1579H1069Q1023 1620 913 1753Q773
+1643 673 1579H399V1602Q478 1674 569 1764T708 1907H1155Q1181 1848 1233 1758T1335 1602V1579Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1384" d="M858 274H410L285 0H-121L623 1462H1126L1249 0H868L858 274ZM553 586H846L829 1010L827 1096Q827 1171 831 1227Q807 1141 770 1061L553 586ZM1043 1577Q1010 1577 978 1585T917 1607T871
+1630Q798 1675 744 1675Q713 1675 684 1648T647 1575H459Q491 1747 567 1832T772 1917Q806 1917 831 1911T926 1868Q957 1851 992 1835T1059 1819Q1137 1819 1174 1919H1364Q1330 1747 1252 1662T1043 1577Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1384" d="M858 274H410L285 0H-121L623 1462H1126L1249 0H868L858 274ZM553 586H846L829 1010L827 1096Q827 1171 831 1227Q807 1141 770 1061L553 586ZM502 1722Q502 1909 703 1909Q873 1909 873
+1784Q873 1595 672 1595Q584 1595 543 1626T502 1722ZM989 1722Q989 1909 1190 1909Q1358 1909 1358 1784Q1358 1687 1309 1641T1159 1595Q1071 1595 1030 1626T989 1722Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1384" d="M858 274H410L285 0H-121L623 1462H1126L1249 0H868L858 274ZM553 586H846L829 1010L827 1096Q827 1171 831 1227Q807 1141 770 1061L553 586ZM1145 1552Q1145 1439 1071 1369T877 1298Q756
+1298 682 1366T608 1550Q608 1664 681 1734T877 1804Q995 1804 1070 1734T1145 1552ZM965 1550Q965 1588 939 1612T877 1636Q841 1636 815 1612T788 1550Q788 1513 811 1490T877 1466Q916 1466 940 1491T965 1550Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1937" d="M1688 0H819L877 274H459L289 0H-125L784 1462H1997L1931 1145H1454L1407 915H1851L1780 598H1335L1278 322H1755L1688 0ZM948 602L1061 1145H993L662 602H948Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1290" d="M881 1159Q773 1159 686 1081T550 866T500 569Q500 435 556 369T717 303Q800 303 885 323T1085 393V70Q882 -20 645 -20Q385 -20 245 128T104 549Q104 815 205 1037T481 1372T881 1485Q1146
+1485 1362 1354L1214 1049Q1121 1104 1043 1131T881 1159ZM813 -236Q813 -357 731 -424T497 -492Q382 -492 305 -463V-258Q335 -267 383 -276T456 -285Q524 -285 524 -236Q524 -163 379 -135L454 0H659L635 -41Q813 -78 813 -236Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1151" d="M901 0H33L342 1462H1210L1145 1145H668L621 915H1065L993 598H549L492 322H969L901 0ZM933 1579H697Q615 1654 545 1738T443 1886V1907H839Q868 1750 933 1604V1579Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1151" d="M901 0H33L342 1462H1210L1145 1145H668L621 915H1065L993 598H549L492 322H969L901 0ZM578 1602Q701 1704 860 1907H1299V1892Q1254 1838 1108 1735T862 1579H578V1602Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1151" d="M901 0H33L342 1462H1210L1145 1145H668L621 915H1065L993 598H549L492 322H969L901 0ZM1239 1579H973Q927 1620 817 1753Q677 1643 577 1579H303V1602Q382 1674 473 1764T612 1907H1059Q1085
+1848 1137 1758T1239 1602V1579Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1151" d="M901 0H33L342 1462H1210L1145 1145H668L621 915H1065L993 598H549L492 322H969L901 0ZM383 1722Q383 1909 584 1909Q754 1909 754 1784Q754 1595 553 1595Q465 1595 424 1626T383 1722ZM870
+1722Q870 1909 1071 1909Q1239 1909 1239 1784Q1239 1687 1190 1641T1040 1595Q952 1595 911 1626T870 1722Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="727" d="M31 0L340 1462H737L428 0H31ZM749 1579H513Q431 1654 361 1738T259 1886V1907H655Q684 1750 749 1604V1579Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="727" d="M31 0L340 1462H737L428 0H31ZM345 1602Q468 1704 627 1907H1066V1892Q1021 1838 875 1735T629 1579H345V1602Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="727" d="M31 0L340 1462H737L428 0H31ZM1015 1579H749Q703 1620 593 1753Q453 1643 353 1579H79V1602Q158 1674 249 1764T388 1907H835Q861 1848 913 1758T1015 1602V1579Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="727" d="M31 0L340 1462H737L428 0H31ZM159 1722Q159 1909 360 1909Q530 1909 530 1784Q530 1595 329 1595Q241 1595 200 1626T159 1722ZM646 1722Q646 1909 847 1909Q1015 1909 1015 1784Q1015 1687
+966 1641T816 1595Q728 1595 687 1626T646 1722Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1401" d="M80 883H219L342 1462H772Q1043 1462 1190 1319T1337 909Q1337 475 1124 238T526 0H33L152 563H10L80 883ZM563 324Q674 324 761 395T895 599T942 901Q942 1017 888 1080T737 1143H666L610 883H788L719
+563H543L494 324H563Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1618" d="M1319 0H864L575 1028H567Q538 737 510 610L381 0H33L342 1462H797L1083 479H1092Q1121 715 1149 850L1280 1462H1628L1319 0ZM1137 1577Q1104 1577 1072 1585T1011 1607T965 1630Q892 1675
+838 1675Q807 1675 778 1648T741 1575H553Q585 1747 661 1832T866 1917Q900 1917 925 1911T1020 1868Q1051 1851 1086 1835T1153 1819Q1231 1819 1268 1919H1458Q1424 1747 1346 1662T1137 1577Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1509" d="M897 1485Q1157 1485 1301 1337T1446 922Q1446 656 1347 436T1072 98T666 -20Q397 -20 251 129T104 543Q104 808 207 1030T487 1368T897 1485ZM1051 918Q1051 1032 1003 1096T864 1161Q765
+1161 682 1077T550 846T500 545Q500 303 700 303Q795 303 876 386T1004 610T1051 918ZM1102 1579H866Q784 1654 714 1738T612 1886V1907H1008Q1037 1750 1102 1604V1579Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1509" d="M897 1485Q1157 1485 1301 1337T1446 922Q1446 656 1347 436T1072 98T666 -20Q397 -20 251 129T104 543Q104 808 207 1030T487 1368T897 1485ZM1051 918Q1051 1032 1003 1096T864 1161Q765
+1161 682 1077T550 846T500 545Q500 303 700 303Q795 303 876 386T1004 610T1051 918ZM717 1602Q840 1704 999 1907H1438V1892Q1393 1838 1247 1735T1001 1579H717V1602Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1509" d="M897 1485Q1157 1485 1301 1337T1446 922Q1446 656 1347 436T1072 98T666 -20Q397 -20 251 129T104 543Q104 808 207 1030T487 1368T897 1485ZM1051 918Q1051 1032 1003 1096T864 1161Q765
+1161 682 1077T550 846T500 545Q500 303 700 303Q795 303 876 386T1004 610T1051 918ZM1368 1579H1102Q1056 1620 946 1753Q806 1643 706 1579H432V1602Q511 1674 602 1764T741 1907H1188Q1214 1848 1266 1758T1368 1602V1579Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1509" d="M897 1485Q1157 1485 1301 1337T1446 922Q1446 656 1347 436T1072 98T666 -20Q397 -20 251 129T104 543Q104 808 207 1030T487 1368T897 1485ZM1051 918Q1051 1032 1003 1096T864 1161Q765
+1161 682 1077T550 846T500 545Q500 303 700 303Q795 303 876 386T1004 610T1051 918ZM1073 1577Q1040 1577 1008 1585T947 1607T901 1630Q828 1675 774 1675Q743 1675 714 1648T677 1575H489Q521 1747 597 1832T802 1917Q836 1917 861 1911T956 1868Q987 1851
+1022 1835T1089 1819Q1167 1819 1204 1919H1394Q1360 1747 1282 1662T1073 1577Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1509" d="M897 1485Q1157 1485 1301 1337T1446 922Q1446 656 1347 436T1072 98T666 -20Q397 -20 251 129T104 543Q104 808 207 1030T487 1368T897 1485ZM1051 918Q1051 1032 1003 1096T864 1161Q765
+1161 682 1077T550 846T500 545Q500 303 700 303Q795 303 876 386T1004 610T1051 918ZM512 1722Q512 1909 713 1909Q883 1909 883 1784Q883 1595 682 1595Q594 1595 553 1626T512 1722ZM999 1722Q999 1909 1200 1909Q1368 1909 1368 1784Q1368 1687 1319 1641T1169
+1595Q1081 1595 1040 1626T999 1722Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1159" d="M387 723L102 1010L289 1200L578 915L870 1200L1061 1016L768 723L1055 432L870 244L578 532L289 246L104 434L387 723Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1509" d="M879 1485Q1061 1485 1194 1413L1286 1528L1442 1409L1343 1284Q1446 1141 1446 922Q1446 664 1348 442T1077 100T684 -20Q492 -20 360 49L254 -86L94 31L211 176Q104 317 104 543Q104 805
+205 1027T480 1367T879 1485ZM500 539L967 1128Q922 1161 852 1161Q758 1161 677 1079T548 855T500 549V539ZM700 303Q795 303 876 384T1004 607T1051 915L586 332Q632 303 700 303Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1436" d="M1450 1462L1251 530Q1192 249 1026 115T575 -20Q441 -20 339 35T181 189T125 410Q125 474 137 539L336 1462H727L532 549Q518 481 518 434Q518 307 639 307Q733 307 786 371T868 569L1059
+1462H1450ZM1045 1579H809Q727 1654 657 1738T555 1886V1907H951Q980 1750 1045 1604V1579Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1436" d="M1450 1462L1251 530Q1192 249 1026 115T575 -20Q441 -20 339 35T181 189T125 410Q125 474 137 539L336 1462H727L532 549Q518 481 518 434Q518 307 639 307Q733 307 786 371T868 569L1059
+1462H1450ZM725 1602Q848 1704 1007 1907H1446V1892Q1401 1838 1255 1735T1009 1579H725V1602Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1436" d="M1450 1462L1251 530Q1192 249 1026 115T575 -20Q441 -20 339 35T181 189T125 410Q125 474 137 539L336 1462H727L532 549Q518 481 518 434Q518 307 639 307Q733 307 786 371T868 569L1059
+1462H1450ZM1376 1579H1110Q1064 1620 954 1753Q814 1643 714 1579H440V1602Q519 1674 610 1764T749 1907H1196Q1222 1848 1274 1758T1376 1602V1579Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1436" d="M1450 1462L1251 530Q1192 249 1026 115T575 -20Q441 -20 339 35T181 189T125 410Q125 474 137 539L336 1462H727L532 549Q518 481 518 434Q518 307 639 307Q733 307 786 371T868 569L1059
+1462H1450ZM533 1722Q533 1909 734 1909Q904 1909 904 1784Q904 1595 703 1595Q615 1595 574 1626T533 1722ZM1020 1722Q1020 1909 1221 1909Q1389 1909 1389 1784Q1389 1687 1340 1641T1190 1595Q1102 1595 1061 1626T1020 1722Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1237" d="M657 920L969 1462H1405L793 567L672 0H281L401 567L164 1462H567L657 920ZM615 1602Q738 1704 897 1907H1336V1892Q1291 1838 1145 1735T899 1579H615V1602Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1276" d="M342 1462H733L688 1251Q939 1251 1073 1137T1208 811Q1208 561 1038 418T567 274H481L424 0H33L342 1462ZM551 594H614Q708 594 762 643T817 799Q817 857 776 894T668 932H623L551 594Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1460" d="M-53 -492Q-163 -492 -260 -465V-162Q-197 -180 -143 -180Q-69 -180 -32 -150T20 -55L264 1096Q317 1345 465 1456T883 1567Q1126 1567 1262 1468T1399 1194Q1399 1076 1348 996T1186 864Q1069
+808 1069 762Q1069 733 1089 712T1177 655Q1272 604 1317 537T1362 373Q1362 256 1304 168T1134 30T862 -20Q701 -20 588 25V324Q647 295 724 279T858 262Q917 262 945 284T973 334Q973 366 954 387T840 471Q752 527 713 582T674 713Q674 805 716 863T881 989Q952
+1029 981 1065T1010 1145Q1010 1203 969 1233T852 1264Q774 1264 720 1214T645 1067L393 -117Q350 -309 240 -400T-53 -492Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1243" d="M565 291Q615 291 660 349T733 506T760 698Q760 763 740 802T678 842Q602 842 541 716T479 434Q479 291 565 291ZM981 0H672L682 123H674Q618 45 553 13T406 -20Q248 -20 166 91T84 412Q84
+591 157 777T341 1058T588 1153Q672 1153 736 1116T850 993H858L911 1133H1221L981 0ZM1146 1241H910Q828 1316 758 1400T656 1548V1569H1052Q1081 1412 1146 1266V1241Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1243" d="M565 291Q615 291 660 349T733 506T760 698Q760 763 740 802T678 842Q602 842 541 716T479 434Q479 291 565 291ZM981 0H672L682 123H674Q618 45 553 13T406 -20Q248 -20 166 91T84 412Q84
+591 157 777T341 1058T588 1153Q672 1153 736 1116T850 993H858L911 1133H1221L981 0ZM531 1264Q654 1366 813 1569H1252V1554Q1207 1500 1061 1397T815 1241H531V1264Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1243" d="M565 291Q615 291 660 349T733 506T760 698Q760 763 740 802T678 842Q602 842 541 716T479 434Q479 291 565 291ZM981 0H672L682 123H674Q618 45 553 13T406 -20Q248 -20 166 91T84 412Q84
+591 157 777T341 1058T588 1153Q672 1153 736 1116T850 993H858L911 1133H1221L981 0ZM1198 1494H932Q886 1535 776 1668Q636 1558 536 1494H262V1517Q341 1589 432 1679T571 1822H1018Q1044 1763 1096 1673T1198 1517V1494Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1243" d="M565 291Q615 291 660 349T733 506T760 698Q760 763 740 802T678 842Q602 842 541 716T479 434Q479 291 565 291ZM981 0H672L682 123H674Q618 45 553 13T406 -20Q248 -20 166 91T84 412Q84
+591 157 777T341 1058T588 1153Q672 1153 736 1116T850 993H858L911 1133H1221L981 0ZM885 1239Q852 1239 820 1247T759 1269T713 1292Q640 1337 586 1337Q555 1337 526 1310T489 1237H301Q333 1409 409 1494T614 1579Q648 1579 673 1573T768 1530Q799 1513 834
+1497T901 1481Q979 1481 1016 1581H1206Q1172 1409 1094 1324T885 1239Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1243" d="M565 291Q615 291 660 349T733 506T760 698Q760 763 740 802T678 842Q602 842 541 716T479 434Q479 291 565 291ZM981 0H672L682 123H674Q618 45 553 13T406 -20Q248 -20 166 91T84 412Q84
+591 157 777T341 1058T588 1153Q672 1153 736 1116T850 993H858L911 1133H1221L981 0ZM587 1384Q587 1571 788 1571Q958 1571 958 1446Q958 1257 757 1257Q669 1257 628 1288T587 1384ZM1074 1384Q1074 1571 1275 1571Q1443 1571 1443 1446Q1443 1349 1394 1303T1244
+1257Q1156 1257 1115 1288T1074 1384Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1243" d="M565 291Q615 291 660 349T733 506T760 698Q760 763 740 802T678 842Q602 842 541 716T479 434Q479 291 565 291ZM981 0H672L682 123H674Q618 45 553 13T406 -20Q248 -20 166 91T84 412Q84 591
+157 777T341 1058T588 1153Q672 1153 736 1116T850 993H858L911 1133H1221L981 0ZM1281 1491Q1281 1378 1207 1308T1013 1237Q892 1237 818 1305T744 1489Q744 1603 817 1673T1013 1743Q1131 1743 1206 1673T1281 1491ZM1101 1489Q1101 1527 1075 1551T1013 1575Q977
+1575 951 1551T924 1489Q924 1452 947 1429T1013 1405Q1052 1405 1076 1430T1101 1489Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1788" d="M1192 -20Q1013 -20 930 92L899 0H672L682 123H674Q618 45 553 13T406 -20Q248 -20 166 91T84 412Q84 591 157 777T341 1058T588 1153Q680 1153 740 1115T850 993H858L911 1133H1118V1038Q1176
+1094 1250 1123T1397 1153Q1554 1153 1648 1067T1743 838Q1743 637 1586 530T1135 422H1075V406Q1075 258 1239 258Q1318 258 1394 281T1567 356V82Q1468 24 1385 2T1192 -20ZM565 291Q641 291 699 414T758 698Q758 763 735 802T670 842Q621 842 577 785T506 630T479
+434Q479 291 565 291ZM1292 891Q1231 891 1178 822T1114 664H1143Q1252 664 1314 705T1376 815Q1376 847 1356 869T1292 891Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="1032" d="M506 -20Q307 -20 196 100T84 442Q84 643 160 806T375 1061T690 1153Q885 1153 1057 1073L934 786Q801 846 709 846Q647 846 594 798T507 655T473 467Q473 376 503 334T598 291Q670 291 737
+314T881 377V70Q801 26 713 3T506 -20ZM684 -236Q684 -357 602 -424T368 -492Q253 -492 176 -463V-258Q206 -267 254 -276T327 -285Q395 -285 395 -236Q395 -163 250 -135L325 0H530L506 -41Q684 -78 684 -236Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1186" d="M532 -20Q320 -20 202 98T84 428Q84 639 167 808T396 1065T733 1153Q923 1153 1032 1067T1141 838Q1141 637 985 530T532 422H473V406Q473 258 637 258Q716 258 792 281T965 356V82Q853 25
+756 3T532 -20ZM690 891Q629 891 576 822T512 664H541Q650 664 712 705T774 815Q774 847 754 869T690 891ZM1175 1241H939Q857 1316 787 1400T685 1548V1569H1081Q1110 1412 1175 1266V1241Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1186" d="M532 -20Q320 -20 202 98T84 428Q84 639 167 808T396 1065T733 1153Q923 1153 1032 1067T1141 838Q1141 637 985 530T532 422H473V406Q473 258 637 258Q716 258 792 281T965 356V82Q853 25
+756 3T532 -20ZM690 891Q629 891 576 822T512 664H541Q650 664 712 705T774 815Q774 847 754 869T690 891ZM523 1264Q646 1366 805 1569H1244V1554Q1199 1500 1053 1397T807 1241H523V1264Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1186" d="M532 -20Q320 -20 202 98T84 428Q84 639 167 808T396 1065T733 1153Q923 1153 1032 1067T1141 838Q1141 637 985 530T532 422H473V406Q473 258 637 258Q716 258 792 281T965 356V82Q853
+25 756 3T532 -20ZM690 891Q629 891 576 822T512 664H541Q650 664 712 705T774 815Q774 847 754 869T690 891ZM1213 1241H947Q901 1282 791 1415Q651 1305 551 1241H277V1264Q356 1336 447 1426T586 1569H1033Q1059 1510 1111 1420T1213 1264V1241Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1186" d="M532 -20Q320 -20 202 98T84 428Q84 639 167 808T396 1065T733 1153Q923 1153 1032 1067T1141 838Q1141 637 985 530T532 422H473V406Q473 258 637 258Q716 258 792 281T965 356V82Q853
+25 756 3T532 -20ZM690 891Q629 891 576 822T512 664H541Q650 664 712 705T774 815Q774 847 754 869T690 891ZM336 1384Q336 1571 537 1571Q707 1571 707 1446Q707 1257 506 1257Q418 1257 377 1288T336 1384ZM823 1384Q823 1571 1024 1571Q1192 1571 1192 1446Q1192
+1349 1143 1303T993 1257Q905 1257 864 1288T823 1384Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="666" d="M410 0H23L262 1133H651L410 0ZM657 1241H421Q339 1316 269 1400T167 1548V1569H563Q592 1412 657 1266V1241Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="666" d="M410 0H23L262 1133H651L410 0ZM294 1264Q417 1366 576 1569H1015V1554Q970 1500 824 1397T578 1241H294V1264Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="666" d="M410 0H23L262 1133H651L410 0ZM929 1241H663Q617 1282 507 1415Q367 1305 267 1241H-7V1264Q72 1336 163 1426T302 1569H749Q775 1510 827 1420T929 1264V1241Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="666" d="M410 0H23L262 1133H651L410 0ZM91 1384Q91 1571 292 1571Q462 1571 462 1446Q462 1257 261 1257Q173 1257 132 1288T91 1384ZM578 1384Q578 1571 779 1571Q947 1571 947 1446Q947 1349 898
+1303T748 1257Q660 1257 619 1288T578 1384Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1155" d="M580 1319Q551 1344 485 1393L600 1573Q736 1512 831 1436L1069 1546L1151 1380L967 1290Q1038 1202 1081 1041T1124 717Q1124 357 970 169T520 -20Q319 -20 202 99T84 426Q84 596 146 731T325
+940T592 1014Q722 1014 795 926L805 930Q786 1072 715 1176L442 1049L360 1217L580 1319ZM555 260Q608 260 648 304T711 423T735 571Q735 647 717 690T651 733Q570 733 521 632T471 408Q471 260 555 260Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1274" d="M786 760Q786 803 764 824T711 846Q654 846 606 775T526 553L410 0H23L262 1133H571L559 975H567Q622 1070 696 1111T879 1153Q1020 1153 1099 1068T1178 831Q1178 725 1153 602L1026 0H639L768
+618Q786 696 786 760ZM903 1239Q870 1239 838 1247T777 1269T731 1292Q658 1337 604 1337Q573 1337 544 1310T507 1237H319Q351 1409 427 1494T632 1579Q666 1579 691 1573T786 1530Q817 1513 852 1497T919 1481Q997 1481 1034 1581H1224Q1190 1409 1112 1324T903
+1239Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1243" d="M520 -20Q311 -20 198 93T84 416Q84 626 163 795T387 1059T723 1153Q932 1153 1045 1040T1159 717Q1159 507 1080 338T856 74T520 -20ZM678 862Q596 862 538 723T479 403Q479 270 563 270Q644
+270 704 409T764 729Q764 795 741 828T678 862ZM1150 1241H914Q832 1316 762 1400T660 1548V1569H1056Q1085 1412 1150 1266V1241Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1243" d="M520 -20Q311 -20 198 93T84 416Q84 626 163 795T387 1059T723 1153Q932 1153 1045 1040T1159 717Q1159 507 1080 338T856 74T520 -20ZM678 862Q596 862 538 723T479 403Q479 270 563 270Q644
+270 704 409T764 729Q764 795 741 828T678 862ZM533 1264Q656 1366 815 1569H1254V1554Q1209 1500 1063 1397T817 1241H533V1264Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1243" d="M520 -20Q311 -20 198 93T84 416Q84 626 163 795T387 1059T723 1153Q932 1153 1045 1040T1159 717Q1159 507 1080 338T856 74T520 -20ZM678 862Q596 862 538 723T479 403Q479 270 563
+270Q644 270 704 409T764 729Q764 795 741 828T678 862ZM1439 1241H1173Q1127 1282 1017 1415Q877 1305 777 1241H503V1264Q582 1336 673 1426T812 1569H1259Q1285 1510 1337 1420T1439 1264V1241Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1243" d="M520 -20Q311 -20 198 93T84 416Q84 626 163 795T387 1059T723 1153Q932 1153 1045 1040T1159 717Q1159 507 1080 338T856 74T520 -20ZM678 862Q596 862 538 723T479 403Q479 270 563 270Q644
+270 704 409T764 729Q764 795 741 828T678 862ZM1117 1239Q1084 1239 1052 1247T991 1269T945 1292Q872 1337 818 1337Q787 1337 758 1310T721 1237H533Q565 1409 641 1494T846 1579Q880 1579 905 1573T1000 1530Q1031 1513 1066 1497T1133 1481Q1211 1481 1248
+1581H1438Q1404 1409 1326 1324T1117 1239Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1243" d="M520 -20Q311 -20 198 93T84 416Q84 626 163 795T387 1059T723 1153Q932 1153 1045 1040T1159 717Q1159 507 1080 338T856 74T520 -20ZM678 862Q596 862 538 723T479 403Q479 270 563 270Q644
+270 704 409T764 729Q764 795 741 828T678 862ZM573 1384Q573 1571 774 1571Q944 1571 944 1446Q944 1257 743 1257Q655 1257 614 1288T573 1384ZM1060 1384Q1060 1571 1261 1571Q1429 1571 1429 1446Q1429 1349 1380 1303T1230 1257Q1142 1257 1101 1288T1060
+1384Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1159" d="M102 586V858H1077V586H102ZM432 373Q432 456 473 500T590 545Q664 545 704 501T745 373Q745 292 704 247T590 201Q516 201 474 247T432 373ZM432 1071Q432 1154 473 1198T590 1243Q664 1243
+704 1199T745 1071Q745 990 704 945T590 899Q516 899 474 945T432 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1286" d="M549 -20Q422 -20 311 29L193 -111L66 -2L178 129Q84 246 84 416Q84 623 165 793T396 1058T743 1153Q879 1153 993 1096L1098 1217L1225 1108L1120 985Q1202 871 1202 717Q1202 509 1121 340T892
+75T549 -20ZM702 877Q635 877 577 822T485 669T449 451L784 848Q749 877 702 877ZM590 260Q697 260 762 361T836 649L518 274Q547 260 590 260Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1274" d="M487 375Q487 331 509 310T563 289Q622 289 670 367T748 582L864 1133H1251L1012 0H702L715 158H707Q653 65 579 23T395 -20Q254 -20 175 65T96 301Q96 407 121 530L248 1133H635L506 516Q487
+434 487 375ZM1158 1241H922Q840 1316 770 1400T668 1548V1569H1064Q1093 1412 1158 1266V1241Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1274" d="M487 375Q487 331 509 310T563 289Q622 289 670 367T748 582L864 1133H1251L1012 0H702L715 158H707Q653 65 579 23T395 -20Q254 -20 175 65T96 301Q96 407 121 530L248 1133H635L506 516Q487
+434 487 375ZM584 1264Q707 1366 866 1569H1305V1554Q1260 1500 1114 1397T868 1241H584V1264Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1274" d="M487 375Q487 331 509 310T563 289Q622 289 670 367T748 582L864 1133H1251L1012 0H702L715 158H707Q653 65 579 23T395 -20Q254 -20 175 65T96 301Q96 407 121 530L248 1133H635L506
+516Q487 434 487 375ZM1221 1241H955Q909 1282 799 1415Q659 1305 559 1241H285V1264Q364 1336 455 1426T594 1569H1041Q1067 1510 1119 1420T1221 1264V1241Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1274" d="M487 375Q487 331 509 310T563 289Q622 289 670 367T748 582L864 1133H1251L1012 0H702L715 158H707Q653 65 579 23T395 -20Q254 -20 175 65T96 301Q96 407 121 530L248 1133H635L506 516Q487
+434 487 375ZM371 1384Q371 1571 572 1571Q742 1571 742 1446Q742 1257 541 1257Q453 1257 412 1288T371 1384ZM858 1384Q858 1571 1059 1571Q1227 1571 1227 1446Q1227 1349 1178 1303T1028 1257Q940 1257 899 1288T858 1384Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1114" d="M82 1133H471L514 571L516 509V422H524Q561 554 574 587T813 1133H1229L559 -143Q463 -328 336 -410T25 -492Q-67 -492 -129 -475V-168Q-83 -180 -20 -180Q67 -180 122 -144T221 -29L244 12L82
+1133ZM492 1264Q615 1366 774 1569H1213V1554Q1168 1500 1022 1397T776 1241H492V1264Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1243" d="M678 842Q628 842 583 785T512 631T485 434Q485 369 508 330T573 291Q621 291 665 348T736 501T764 698Q764 842 678 842ZM836 1153Q987 1153 1073 1041T1159 735Q1159 532 1089 353T904 77T651
+-20Q508 -20 420 125H412Q400 -41 356 -246L305 -492H-82L352 1556H739L690 1325Q652 1150 600 1024H608Q652 1083 704 1118T836 1153Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1114" d="M82 1133H471L514 571L516 509V422H524Q561 554 574 587T813 1133H1229L559 -143Q463 -328 336 -410T25 -492Q-67 -492 -129 -475V-168Q-83 -180 -20 -180Q67 -180 122 -144T221 -29L244
+12L82 1133ZM515 1384Q515 1571 716 1571Q886 1571 886 1446Q886 1257 685 1257Q597 1257 556 1288T515 1384ZM1002 1384Q1002 1571 1203 1571Q1371 1571 1371 1446Q1371 1349 1322 1303T1172 1257Q1084 1257 1043 1288T1002 1384Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="983" d="M33 416L90 690H961L901 416H33Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="1966" d="M33 416L90 690H1944L1884 416H33Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="500" d="M119 961L109 983Q213 1218 367 1462H655Q629 1400 602 1331T467 961H119Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="500" d="M631 1462L639 1440Q547 1228 383 961H94Q128 1042 161 1128T283 1462H631Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="621" d="M432 238L440 215Q346 -8 184 -264H-104Q-79 -205 -54 -141T84 238H432Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="997" d="M614 961L606 983Q715 1229 862 1462H1151Q1102 1347 1051 1204L963 961H614ZM119 961L109 983Q213 1218 367 1462H655Q629 1400 602 1331T467 961H119Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="997" d="M631 1462L639 1440Q547 1228 383 961H94Q143 1078 194 1219L283 1462H631ZM1128 1462L1135 1440Q1096 1349 1025 1214T881 961H592Q633 1059 691 1219L780 1462H1128Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="1122" d="M432 238L440 215Q346 -8 184 -264H-104Q-79 -205 -54 -141T84 238H432ZM934 238L942 215Q891 99 818 -36T684 -264H397Q458 -116 544 123L586 238H934Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="803" d="M86 688Q86 806 133 902T266 1052T467 1106Q615 1106 688 1029T762 805Q762 611 661 500T379 389Q242 389 164 469T86 688Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="719" d="M61 563L469 1081L733 877L467 543L578 213L244 76L61 553V563Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="719" d="M657 561L250 43L-14 248L252 582L141 911L473 1049L657 571V561Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.ttf b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.ttf
new file mode 100644
index 0000000..31cb688
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.ttf differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.woff b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.woff
new file mode 100644
index 0000000..3b8b071
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.woff differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.woff2 b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.woff2
new file mode 100644
index 0000000..ff51f4f
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.woff2 differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.eot b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.eot
new file mode 100644
index 0000000..b7ffbdb
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.eot differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.svg b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.svg
new file mode 100644
index 0000000..c3d41a7
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.svg
@@ -0,0 +1,19030 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1342" ><font-face
+    font-family="Open Sans Extrabold"
+    units-per-em="2048"
+    panose-1="2 11 9 6 3 8 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="594" d="M463 516H133L82 1462H514L463 516ZM86 166Q86 257 140 307T297 358Q399 358 451 308T504 166Q504 76 450 26T297 -25Q198 -25 142 25T86 166Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="1073" d="M477 1462L436 934H162L121 1462H477ZM952 1462L911 934H637L596 1462H952Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1356" d="M1042 813L1012 645H1255V391H965L891 0H623L696 391H528L457 0H190L262 391H37V645H311L342 813H104V1073H391L463 1462H731L657 1073H823L895 1462H1163L1090 1073H1319V813H1042ZM578 645H743L774
+813H608L578 645Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1200" d="M504 68Q285 78 82 166V498Q198 439 334 400T573 360Q658 360 697 380T737 449Q737 482 709 505T614 557T434 627Q307 674 229 732T116 863T80 1044Q80 1209 186 1302T504 1417V1554H711V1419Q910
+1408 1112 1321L993 1036Q784 1130 616 1130Q536 1130 504 1111T471 1053Q471 1020 494 999T576 951T737 889Q946 815 1037 721T1128 477Q1128 309 1022 204T711 74V-119H504V68Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1942" d="M338 1022Q338 907 357 856T414 805Q452 805 470 855T489 1022Q489 1137 471 1188T414 1239Q375 1239 357 1187T338 1022ZM791 1026Q791 806 692 686T410 565Q238 565 138 689T37 1026Q37 1246
+135 1364T410 1483Q585 1483 688 1360T791 1026ZM1520 1462L709 0H412L1223 1462H1520ZM1450 440Q1450 325 1469 274T1526 223Q1569 223 1585 281T1602 440Q1602 540 1586 598T1526 657Q1487 657 1469 605T1450 440ZM1903 444Q1903 225 1804 105T1522 -16Q1350
+-16 1250 108T1149 444Q1149 664 1247 782T1522 901Q1697 901 1800 778T1903 444Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1636" d="M1141 0L1042 102Q952 45 895 24T766 -9T602 -20Q444 -20 323 34T137 185T72 406Q72 668 344 807Q282 877 248 955T213 1133Q213 1293 336 1387T676 1481Q887 1481 1004 1388T1122 1133Q1122
+1022 1059 928T858 750L1057 561Q1132 676 1161 821H1567Q1537 683 1473 545T1327 307L1647 0H1141ZM475 434Q475 371 520 331T639 291Q696 291 739 306T805 340L557 592Q475 531 475 434ZM770 1133Q770 1182 742 1203T670 1225Q628 1225 597 1200T565 1120Q565
+1045 653 965Q710 997 740 1041T770 1133Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="598" d="M477 1462L436 934H162L121 1462H477Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="735" d="M74 582Q74 872 145 1105T354 1503H680Q554 1328 486 1091T418 584Q418 323 484 89T678 -324H354Q217 -166 146 64T74 582Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="735" d="M662 582Q662 299 591 68T381 -324H57Q183 -152 250 84T317 584Q317 849 251 1085T55 1503H381Q520 1337 591 1101T662 582Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1100" d="M702 1556L664 1204L1020 1305L1057 1010L743 989L950 711L690 573L547 856L424 575L152 711L358 989L45 1014L90 1305L438 1204L399 1556H702Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1159" d="M444 588H72V856H444V1223H713V856H1085V588H713V227H444V588Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="633" d="M498 299L512 276Q415 -105 336 -285H57Q86 -147 115 24T156 299H498Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="651" d="M43 393V705H608V393H43Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="592" d="M86 166Q86 258 140 308T299 358Q398 358 451 308T504 166Q504 76 450 26T299 -25Q200 -25 143 25T86 166Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="905" d="M901 1483L356 -20H10L555 1483H901Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1200" d="M1128 729Q1128 341 998 161T600 -20Q338 -20 205 168T72 729Q72 1119 202 1301T600 1483Q861 1483 994 1294T1128 729ZM465 729Q465 481 496 388T600 295Q674 295 704 391T735 729Q735 972 704 1069T600
+1167Q527 1167 496 1073T465 729Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1200" d="M942 0H541V774Q541 915 547 1032Q510 987 455 938L289 801L84 1053L586 1462H942V0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1200" d="M1122 0H61V260L418 621Q571 781 618 839T683 940T702 1028Q702 1085 665 1118T561 1151Q492 1151 422 1112T262 995L45 1249Q158 1350 235 1393T402 1460T606 1483Q748 1483 859 1433T1032 1291T1094
+1083Q1094 997 1073 924T1006 781T887 632T569 336V326H1122V0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1200" d="M1073 1145Q1073 1009 990 912T750 770V764Q1116 718 1116 418Q1116 214 955 97T506 -20Q388 -20 288 -3T70 59V387Q166 338 265 315T449 291Q579 291 638 327T698 442Q698 502 667 534T567 583T387
+600H297V897H389Q690 897 690 1051Q690 1109 646 1137T526 1165Q386 1165 236 1071L72 1335Q188 1415 309 1449T588 1483Q815 1483 944 1393T1073 1145Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1200" d="M1169 283H1008V0H618V283H35V573L643 1462H1008V578H1169V283ZM618 578V748Q618 796 621 877T627 963H616Q582 886 539 819L377 578H618Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1200" d="M664 958Q790 958 891 900T1049 734T1106 487Q1106 242 959 111T512 -20Q256 -20 94 59V383Q181 343 290 317T479 291Q589 291 648 337T707 475Q707 559 647 606T465 653Q372 653 264 618L119 690L174
+1462H1008V1133H510L492 940Q570 955 603 956T664 958Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1200" d="M70 618Q70 924 157 1113T415 1393T836 1483Q925 1483 1044 1466V1157Q944 1176 827 1176Q629 1176 532 1089T426 805H438Q528 975 727 975Q922 975 1029 850T1137 500Q1137 259 1001 120T621 -20Q362
+-20 216 148T70 618ZM612 293Q675 293 714 340T754 492Q754 670 616 670Q548 670 506 624T463 512Q463 416 504 355T612 293Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1200" d="M209 0L711 1133H78V1460H1133V1227L618 0H209Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1200" d="M604 1483Q835 1483 963 1390T1092 1126Q1092 1010 1032 923T840 770Q1002 678 1068 587T1135 389Q1135 194 994 87T600 -20Q342 -20 205 84T68 385Q68 512 129 601T334 764Q218 842 165 931T111
+1128Q111 1296 242 1389T604 1483ZM430 401Q430 339 474 302T596 264Q772 264 772 393Q772 442 734 489T596 596Q507 549 469 502T430 401ZM602 1198Q551 1198 516 1169T481 1092Q481 1006 598 940Q669 981 695 1015T721 1092Q721 1140 686 1169T602 1198Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1200" d="M1133 793Q1133 364 948 172T356 -20Q222 -20 152 -10V303Q238 287 324 287Q536 287 651 374T776 651H764Q725 579 687 547T594 498T457 481Q267 481 160 608T53 958Q53 1201 191 1339T571 1477Q839
+1477 986 1299T1133 793ZM582 1161Q517 1161 477 1114T436 963Q436 881 471 833T578 784Q643 784 691 831T739 944Q739 1033 695 1097T582 1161Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="592" d="M86 166Q86 258 140 308T299 358Q398 358 451 308T504 166Q504 76 450 26T299 -25Q200 -25 143 25T86 166ZM86 956Q86 1047 141 1097T299 1147Q398 1147 451 1097T504 956Q504 866 450 815T299 764Q197
+764 142 815T86 956Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="608" d="M498 299L512 276Q415 -105 336 -285H57Q86 -147 115 24T156 299H498ZM92 956Q92 1047 145 1097T303 1147Q403 1147 456 1097T510 956Q510 866 456 815T303 764Q201 764 147 814T92 956Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1159" d="M1083 178L72 627V799L1083 1305V1008L463 725L1083 473V178Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1159" d="M72 815V1083H1087V815H72ZM72 358V629H1087V358H72Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1159" d="M72 473L692 725L72 1008V1305L1083 799V627L72 178V473Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="1034" d="M295 516V602Q295 700 335 767T477 899Q558 950 593 991T629 1085Q629 1127 591 1151T492 1176Q341 1176 139 1069L0 1341Q249 1483 520 1483Q743 1483 870 1385T997 1118Q997 997 941 909T760
+741Q655 673 629 642T602 567V516H295ZM252 166Q252 258 305 308T463 358Q563 358 616 308T670 166Q670 75 615 25T463 -25Q364 -25 308 24T252 166Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1837" d="M1755 756Q1755 615 1707 493T1572 302T1376 233Q1297 233 1233 264T1133 352H1118Q1011 233 858 233Q675 233 577 340T479 639Q479 780 541 888T720 1055T991 1114Q1072 1114 1169 1098T1348 1053L1327
+631L1325 537Q1325 451 1374 451Q1426 451 1458 538T1491 758Q1491 997 1356 1127T973 1257Q783 1257 643 1178T428 952T354 606Q354 351 496 213T899 74Q1015 74 1149 99T1413 170V-59Q1189 -154 913 -154Q525 -154 304 48T82 610Q82 863 196 1063T512 1372T969
+1481Q1203 1481 1382 1392T1658 1139T1755 756ZM760 641Q760 541 796 496T893 451Q970 451 1006 513T1053 733L1063 889Q1023 895 995 895Q887 895 824 828T760 641Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1487" d="M1055 0L983 274H508L434 0H0L477 1468H1004L1487 0H1055ZM901 598L838 838Q816 918 785 1045T743 1227Q734 1176 708 1059T590 598H901Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1380" d="M158 1462H668Q966 1462 1110 1374T1255 1098Q1255 975 1192 888T1026 776V766Q1162 730 1223 646T1284 428Q1284 229 1135 115T727 0H158V1462ZM553 901H672Q757 901 803 936T850 1040Q850 1163 664
+1163H553V901ZM553 612V305H692Q877 305 877 461Q877 534 828 573T684 612H553Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1329" d="M809 1159Q668 1159 589 1044T510 725Q510 303 831 303Q928 303 1019 330T1202 395V61Q1019 -20 788 -20Q457 -20 281 172T104 727Q104 954 189 1126T435 1390T813 1483Q1050 1483 1266 1380L1145 1069Q1064
+1107 983 1133T809 1159Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1503" d="M1399 762Q1399 396 1198 198T631 0H158V1462H664Q1016 1462 1207 1282T1399 762ZM989 748Q989 949 910 1046T668 1143H553V324H641Q821 324 905 428T989 748Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1124" d="M1026 0H158V1462H1026V1145H553V915H991V598H553V322H1026V0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1104" d="M547 0H158V1462H1022V1145H547V866H985V549H547V0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1516" d="M745 856H1376V68Q1119 -20 811 -20Q473 -20 289 176T104 735Q104 1089 306 1286T872 1483Q1010 1483 1132 1457T1346 1391L1221 1081Q1063 1159 874 1159Q701 1159 607 1047T512 725Q512 520 597 413T844
+305Q932 305 1006 322V551H745V856Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1569" d="M1411 0H1014V596H555V0H158V1462H555V920H1014V1462H1411V0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="713" d="M158 0V1462H555V0H158Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="721" d="M43 -459Q-65 -459 -162 -438V-131Q-130 -137 -94 -144T-16 -152Q82 -152 124 -93T166 109V1462H563V143Q563 -154 433 -306T43 -459Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1407" d="M1407 0H961L672 559L555 489V0H158V1462H555V827Q585 886 676 1014L983 1462H1415L954 807L1407 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1192" d="M158 0V1462H553V319H1116V0H158Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1980" d="M795 0L496 1053H487Q508 784 508 635V0H158V1462H684L989 424H997L1296 1462H1823V0H1460V641Q1460 691 1461 752T1475 1051H1466L1171 0H795Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1708" d="M1550 0H1032L498 1030H489Q508 787 508 659V0H158V1462H674L1206 446H1212Q1198 667 1198 801V1462H1550V0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1632" d="M1526 733Q1526 364 1345 172T815 -20Q471 -20 288 173T104 735Q104 1100 286 1292T817 1485Q1166 1485 1346 1294T1526 733ZM520 733Q520 309 815 309Q965 309 1037 412T1110 733Q1110 952 1037 1056T817
+1161Q520 1161 520 733Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1294" d="M1219 997Q1219 752 1075 619T664 485H553V0H158V1462H664Q941 1462 1080 1341T1219 997ZM553 807H625Q714 807 766 857T819 995Q819 1143 655 1143H553V807Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1632" d="M1526 733Q1526 236 1210 63L1567 -348H1075L817 -23L816 -22V-21L815 -20Q471 -20 288 173T104 735Q104 1100 286 1292T817 1485Q1166 1485 1346 1294T1526 733ZM520 733Q520 309 815 309Q965 309 1037
+412T1110 733Q1110 952 1037 1056T817 1161Q520 1161 520 733Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1386" d="M553 532V0H158V1462H637Q1233 1462 1233 1030Q1233 776 985 637L1411 0H963L653 532H553ZM553 829H627Q834 829 834 1012Q834 1163 631 1163H553V829Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1182" d="M1114 444Q1114 308 1045 203T846 39T541 -20Q395 -20 296 0T90 72V424Q203 366 325 334T549 301Q637 301 678 331T719 410Q719 440 703 462T650 508T455 602Q312 667 241 728T135 868T100 1055Q100 1257
+247 1370T651 1483Q878 1483 1114 1378L993 1073Q788 1167 639 1167Q562 1167 527 1140T492 1073Q492 1030 536 996T778 872Q967 787 1040 690T1114 444Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1210" d="M803 0H408V1139H51V1462H1159V1139H803V0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1550" d="M1401 1462V582Q1401 295 1239 138T770 -20Q471 -20 311 133T150 573V1462H547V604Q547 449 605 379T776 309Q897 309 951 378T1006 606V1462H1401Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1421" d="M979 1462H1421L942 0H477L0 1462H444L643 721Q705 474 711 377Q718 447 739 552T776 717L979 1462Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="2128" d="M1737 0H1270L1130 637Q1120 677 1099 796T1067 995Q1059 930 1041 834T1006 656T860 0H393L31 1462H412L571 729Q625 486 645 342Q658 444 691 619T754 909L883 1462H1249L1374 909Q1406 776 1439 602T1483
+342Q1496 453 1554 727L1716 1462H2097L1737 0Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1481" d="M1475 0H1018L733 457L451 0H4L489 748L33 1462H471L735 1010L989 1462H1440L977 717L1475 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1360" d="M680 920L932 1462H1360L879 571V0H481V559L0 1462H430L680 920Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1251" d="M1200 0H61V244L694 1143H76V1462H1184V1219L551 319H1200V0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="664" d="M616 -344H117V1503H616V1249H434V-90H616V-344Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="905" d="M352 1483L897 -20H551L6 1483H352Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="664" d="M47 -90H229V1249H47V1503H547V-344H47V-90Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1075" d="M-16 502L424 1468H594L1102 502H807L518 1079L394 788L270 502H-16Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="1024" d="M1028 -379H-4V-133H1028V-379Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1225" d="M696 1241Q627 1285 493 1379T264 1548V1569H694Q746 1499 897 1336L956 1270V1241H696Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1276" d="M874 0L799 150H791Q712 52 630 16T418 -20Q258 -20 166 76T74 346Q74 527 200 615T565 715L754 721V737Q754 877 616 877Q492 877 301 793L188 1051Q386 1153 688 1153Q906 1153 1025 1045T1145 743V0H874ZM584
+256Q655 256 705 301T756 418V506L666 502Q473 495 473 360Q473 256 584 256Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1317" d="M827 1153Q1012 1153 1120 998T1229 569Q1229 293 1120 137T815 -20Q752 -20 703 -7T616 31T526 111H502L440 0H135V1556H526V1204Q526 1141 512 987H526Q583 1075 657 1114T827 1153ZM684 846Q602 846
+564 789T526 610V555Q526 416 564 356T688 295Q757 295 794 365T831 573Q831 846 684 846Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="1104" d="M651 -20Q373 -20 230 130T86 561Q86 843 241 998T682 1153Q879 1153 1053 1067L938 778Q867 809 807 827T682 846Q587 846 535 772T483 563Q483 291 684 291Q856 291 1014 391V80Q863 -20 651 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1317" d="M487 -20Q366 -20 276 49T136 252T86 565Q86 841 197 997T502 1153Q597 1153 668 1115T799 987H807Q788 1120 788 1253V1556H1182V0H887L803 143H788Q687 -20 487 -20ZM647 289Q741 289 779 348T821 530V561Q821
+711 778 774T643 838Q566 838 524 766T481 559Q481 427 524 358T647 289Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1266" d="M682 -20Q399 -20 243 130T86 559Q86 846 231 999T645 1153Q901 1153 1040 1020T1180 635V461H481Q485 366 550 312T729 258Q832 258 918 277T1106 344V63Q1014 16 916 -2T682 -20ZM659 887Q590 887 544
+844T489 707H825Q823 789 779 838T659 887Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="846" d="M827 840H586V0H195V840H45V1032L203 1128V1147Q203 1371 294 1469T588 1567Q666 1567 735 1555T897 1513L813 1260Q741 1280 672 1280Q627 1280 607 1253T586 1163V1133H827V840Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1241" d="M1204 1133V944L1049 887Q1081 829 1081 752Q1081 569 953 468T569 367Q506 367 469 375Q455 349 455 326Q455 297 502 282T625 266H813Q1194 266 1194 -55Q1194 -262 1018 -377T522 -492Q281 -492 151
+-412T20 -180Q20 23 272 82Q220 104 182 153T143 250Q143 303 172 343T293 440Q205 479 155 562T104 764Q104 949 230 1051T590 1153Q621 1153 697 1146T809 1133H1204ZM350 -141Q350 -189 402 -218T541 -248Q683 -248 768 -213T854 -121Q854 -76 802 -58T653 -39H500Q437
+-39 394 -68T350 -141ZM473 762Q473 588 594 588Q650 588 680 631T711 760Q711 936 594 936Q473 936 473 762Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1372" d="M848 0V618Q848 846 713 846Q617 846 572 766T526 498V0H135V1556H526V1335Q526 1185 510 993H528Q584 1081 661 1117T840 1153Q1030 1153 1135 1044T1241 737V0H848Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="666" d="M528 0H137V1133H528V0ZM127 1415Q127 1503 176 1546T334 1589Q443 1589 493 1545T543 1415Q543 1243 334 1243Q127 1243 127 1415Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="664" d="M106 -492Q58 -492 -4 -485T-104 -467V-162Q-40 -180 16 -180Q135 -180 135 -10V1133H526V-92Q526 -279 417 -385T106 -492ZM125 1415Q125 1503 174 1546T332 1589Q441 1589 491 1545T541 1415Q541 1243
+332 1243Q125 1243 125 1415Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1350" d="M514 637Q585 750 635 813L889 1133H1325L932 651L1350 0H903L655 406L528 309V0H135V1556H528V944Q528 787 506 637H514Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="662" d="M526 0H135V1556H526V0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="2048" d="M1526 0V616Q1526 731 1495 788T1395 846Q1305 846 1263 769T1221 528V0H829V616Q829 731 799 788T702 846Q610 846 568 764T526 496V0H135V1133H430L479 993H502Q547 1071 632 1112T827 1153Q1072 1153
+1171 1004H1202Q1250 1074 1335 1113T1524 1153Q1725 1153 1821 1050T1917 737V0H1526Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1372" d="M850 0V618Q850 731 818 788T713 846Q614 846 570 767T526 496V0H135V1133H430L479 993H502Q552 1073 640 1113T844 1153Q1032 1153 1136 1044T1241 737V0H850Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1305" d="M1217 569Q1217 291 1068 136T649 -20Q391 -20 239 139T86 569Q86 846 235 999T655 1153Q822 1153 950 1082T1147 879T1217 569ZM483 569Q483 423 522 347T653 270Q744 270 781 346T819 569Q819 714 781
+788T651 862Q561 862 522 789T483 569Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1317" d="M815 -20Q729 -20 661 8T526 111H508Q526 -8 526 -37V-492H135V1133H453L508 989H526Q635 1153 827 1153Q1015 1153 1122 997T1229 569Q1229 295 1118 138T815 -20ZM684 846Q598 846 564 785T526 602V571Q526
+425 565 360T688 295Q763 295 797 359T831 573Q831 719 797 782T684 846Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1317" d="M492 -20Q302 -20 194 136T86 565Q86 841 196 997T498 1153Q703 1153 807 993H815L844 1133H1182V-492H791V-23Q791 11 803 143H791Q695 -20 492 -20ZM651 283Q740 283 780 338T821 524V571Q821 721 780
+785T645 850Q483 850 483 559Q483 411 524 347T651 283Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="961" d="M819 1153Q870 1153 916 1145L938 1141L903 772Q855 784 770 784Q642 784 584 726T526 557V0H135V1133H426L487 952H506Q555 1042 642 1097T819 1153Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="1092" d="M1010 348Q1010 166 886 73T530 -20Q404 -20 311 -7T121 43V356Q212 316 320 290T514 264Q641 264 641 322Q641 352 606 375T399 467Q243 531 181 612T119 819Q119 977 241 1065T586 1153Q698 1153 796
+1129T1001 1057L895 805Q817 840 730 864T588 889Q492 889 492 842Q492 813 525 793T719 709Q838 660 896 613T982 503T1010 348Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="942" d="M690 289Q769 289 879 328V43Q800 9 729 -5T561 -20Q364 -20 277 76T190 373V840H53V999L227 1122L328 1360H584V1133H862V840H584V399Q584 289 690 289Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1372" d="M942 0L893 141H870Q821 63 734 22T528 -20Q341 -20 237 88T133 395V1133H524V514Q524 403 555 346T659 289Q760 289 803 368T846 637V1133H1237V0H942Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="1251" d="M432 0L0 1133H408L600 463Q601 458 604 446T610 418T615 383T618 348H625Q625 400 643 461L844 1133H1251L819 0H432Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1864" d="M1110 0L982 540L952 703L932 834H926Q877 554 860 481L745 0H334L25 1133H410L502 698Q546 474 553 326H559Q562 418 614 676L719 1133H1151L1247 670Q1293 449 1305 326H1311Q1317 402 1331 515T1362
+698L1462 1133H1839L1528 0H1110Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1290" d="M375 578L29 1133H473L645 815L821 1133H1266L911 578L1280 0H836L645 344L455 0H10L375 578Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1249" d="M-2 1133H410L602 483Q616 432 621 360H629Q637 429 653 481L850 1133H1249L801 -72Q715 -302 590 -397T262 -492Q184 -492 102 -475V-168Q155 -180 223 -180Q275 -180 314 -160T382 -104T444 16L-2 1133Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="1038" d="M987 0H49V223L518 834H76V1133H965V891L516 299H987V0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="887" d="M61 719Q176 719 241 763T307 889V1143Q307 1282 356 1351T515 1451T821 1483V1204Q732 1201 701 1191T650 1158T631 1098V827Q631 714 575 654T391 575V563Q519 543 575 484T631 317V41Q631 2
+652 -20T708 -52T821 -66V-344Q624 -344 514 -312T356 -211T307 0V248Q307 328 240 373T61 418V719Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1042" d="M387 1556H655V-446H387V1556Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="887" d="M825 418Q714 418 647 373T580 248V0Q580 -140 531 -210T372 -312T66 -344V-66Q174 -62 215 -37T256 41V317Q256 425 312 484T496 563V575Q369 593 313 653T256 827V1098Q256 1137 237 1158T187
+1190T66 1204V1483Q262 1483 372 1452T531 1351T580 1143V889Q580 808 645 764T825 719V418Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1159" d="M305 647Q195 647 72 526V807Q176 915 336 915Q405 915 466 902T616 852Q747 797 854 797Q904 797 966 829T1085 918V637Q980 528 821 528Q750 528 688 543T541 592Q410 647 305 647Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="594" d="M133 612H463L514 -334H82L133 612ZM510 963Q510 872 457 821T299 770Q197 770 145 820T92 963Q92 1053 146 1103T299 1153Q400 1153 455 1103T510 963Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1200" d="M565 1483H772V1329Q943 1320 1096 1245L981 956Q910 987 850 1005T725 1024Q630 1024 578 950T526 741Q526 469 727 469Q899 469 1057 569V258Q930 176 772 160V-20H565V166Q353 197 241 342T129
+739Q129 979 242 1127T565 1317V1483Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1200" d="M723 1485Q933 1485 1128 1403L1018 1114Q870 1169 766 1169Q708 1169 681 1136T653 1032V926H997V649H653V553Q653 403 494 326H1165V0H104V313Q185 360 213 389T255 457T268 551V649H102V926H268V1044Q268
+1259 385 1372T723 1485Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1159" d="M180 723Q180 812 221 899L96 1018L276 1200L399 1077Q483 1118 571 1118Q662 1118 748 1073L868 1200L1053 1026L926 901Q967 825 967 723Q967 629 926 547L1047 428L868 250L748 369Q659
+330 571 330Q471 330 395 367L276 252L98 430L221 549Q180 631 180 723ZM436 723Q436 667 476 628T571 588Q629 588 671 626T713 723Q713 781 671 820T571 860Q515 860 476 820T436 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1200" d="M600 958L793 1462H1192L829 750H1024V539H782V422H1024V213H782V0H418V213H172V422H418V539H172V750H362L8 1462H408L600 958Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1042" d="M387 1556H655V717H387V1556ZM387 393H655V-446H387V393Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="1024" d="M106 803Q106 867 149 928T270 1036Q129 1138 129 1282Q129 1419 240 1498T535 1577Q726 1577 905 1491L807 1270Q734 1310 661 1333T532 1356Q424 1356 424 1282Q424 1239 469 1203T598 1133Q773
+1062 850 981T928 803Q928 726 896 666T780 545Q905 451 905 301Q905 152 789 64T469 -25Q265 -25 117 61V305Q196 261 299 229T471 197Q610 197 610 293Q610 335 579 365T440 444Q299 507 235 556T138 664T106 803ZM397 834Q397 783 441 743T596 645Q637 692 637
+752Q637 809 595 852T455 936Q397 904 397 834Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1233" d="M223 1413Q223 1488 269 1529T393 1571Q472 1571 518 1529T565 1413Q565 1342 519 1300T393 1257Q315 1257 269 1298T223 1413ZM702 1413Q702 1488 748 1529T874 1571Q954 1571 1000 1528T1047
+1413Q1047 1342 1001 1300T874 1257Q793 1257 748 1298T702 1413Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1688" d="M887 971Q806 971 761 910T715 731Q715 603 758 546T893 489Q1031 489 1151 557V326Q1025 262 879 262Q667 262 551 386T434 735Q434 952 547 1075T868 1198Q1034 1198 1190 1120L1098 915Q992
+971 887 971ZM92 731Q92 931 192 1106T467 1382T844 1483Q1041 1483 1214 1386T1491 1114T1595 731Q1595 527 1495 355T1222 81T844 -20Q637 -20 462 83T190 360T92 731ZM256 731Q256 573 335 436T551 221T844 143Q1002 143 1138 221T1353 436T1432 731Q1432 888
+1355 1024T1141 1239T844 1319Q686 1319 550 1241T335 1026T256 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="813" d="M571 741L526 868Q478 792 422 761T283 729Q174 729 112 792T49 967Q49 1083 126 1138T393 1202L481 1206V1212Q481 1253 456 1270T379 1288Q322 1288 272 1273T168 1233L92 1399Q200 1450
+272 1464T436 1479Q575 1479 654 1404T733 1190V741H571ZM301 979Q301 947 319 929T371 911Q421 911 451 949T481 1047V1069L397 1063Q301 1057 301 979Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1395" d="M74 588L463 1071L743 922L471 575L743 227L463 80L74 561V588ZM649 588L1036 1071L1319 922L1044 575L1319 227L1036 80L649 561V588Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1159" d="M1085 238H815V588H72V856H1085V238Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="651" d="M43 393V705H608V393H43Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1688" d="M1204 918Q1204 831 1171 772T1063 676L1257 313H967L821 633H786V313H506V1188H797Q1204 1188 1204 918ZM786 809H797Q855 809 888 830T922 907Q922 954 895 973T799 993H786V809ZM92
+731Q92 931 192 1106T467 1382T844 1483Q1041 1483 1214 1386T1491 1114T1595 731Q1595 527 1495 355T1222 81T844 -20Q637 -20 462 83T190 360T92 731ZM256 731Q256 573 335 436T551 221T844 143Q1002 143 1138 221T1353 436T1432 731Q1432 888 1355 1024T1141
+1239T844 1319Q686 1319 550 1241T335 1026T256 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6V1802H1030V1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="864" d="M63 1114Q63 1211 112 1296T247 1432T432 1483Q531 1483 617 1433T752 1297T801 1114Q801 1017 753 933T619 800T432 750Q333 750 247 799T112 932T63 1114ZM301 1114Q301 1064 339 1026T432
+987Q486 987 524 1026T563 1114Q563 1166 526 1206T432 1247Q376 1247 339 1207T301 1114Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1159" d="M444 684H72V952H444V1319H713V952H1085V684H713V324H444V684ZM72 0V268H1085V0H72Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="817" d="M750 586H76V793L291 1006Q375 1090 407 1135T440 1214Q440 1272 375 1272Q294 1272 203 1184L61 1350Q141 1423 228 1454T432 1485Q574 1485 651 1422T729 1247Q729 1201 716 1160T676
+1076T601 985T403 811H750V586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="817" d="M725 1266Q725 1188 688 1134T563 1047V1038Q660 1014 707 962T754 823Q754 703 656 636T379 569Q194 569 70 639V872Q187 791 367 791Q483 791 483 858Q483 899 451 914T348 930H244V1124H324Q395
+1124 429 1142T463 1202Q463 1227 442 1248T371 1270Q321 1270 277 1253T180 1196L63 1366Q212 1481 406 1481Q552 1481 638 1424T725 1266Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1225" d="M264 1241V1270Q418 1435 459 1483T528 1569H956V1548Q876 1484 736 1385T524 1241H264Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1376" d="M526 518Q526 403 559 346T672 289Q765 289 806 372T848 637V1133H1241V0H948L895 152H879Q845 64 789 22T666 -20Q610 -20 576 0T514 63Q526 -27 526 -172V-492H135V1133H526V518Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1317" d="M1186 -260H995V1327H838V-260H647V559Q593 541 522 541Q306 541 204 666T102 1042Q102 1298 209 1427T553 1556H1186V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="592" d="M86 723Q86 815 140 865T299 915Q398 915 451 865T504 723Q504 633 450 582T299 530Q199 530 143 581T86 723Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="383" d="M397 -252Q397 -361 322 -426T123 -492Q-13 -492 -90 -463V-258Q-7 -285 57 -285Q109 -285 109 -238Q109 -205 68 -180T-39 -139L33 0H236L227 -29Q323 -68 360 -121T397 -252Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="817" d="M616 586H334V942Q334 977 337 1060T344 1159Q335 1140 313 1116T203 1018L57 1188L397 1462H616V586Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="803" d="M756 1104Q756 930 661 830T399 729Q240 729 145 831T49 1104Q49 1281 143 1380T403 1479Q560 1479 658 1376T756 1104ZM301 1104Q301 1017 325 975T401 932Q500 932 500 1104Q500 1278
+401 1278Q301 1278 301 1104Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1395" d="M1321 561L934 80L649 227L924 575L649 922L934 1071L1321 588V561ZM745 561L358 80L76 227L348 575L76 922L358 1071L745 588V561Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1919" d="M1798 140H1673V1H1398V140H1028V328L1378 883H1673V341H1798V140ZM1398 341V507Q1398 576 1405 642Q1365 542 1343 509L1241 341H1398ZM1412 1462L658 0H357L1110 1462H1412ZM803 586H521V942Q521
+977 524 1060T531 1159Q522 1140 500 1116T390 1018L244 1188L584 1462H803V586Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1921" d="M1829 1H1155V208L1370 421Q1454 505 1486 550T1519 629Q1519 687 1454 687Q1373 687 1282 599L1140 765Q1220 838 1307 869T1511 900Q1653 900 1730 837T1808 662Q1808 616 1795 575T1755
+491T1680 400T1482 226H1829V1ZM1436 1462L682 0H381L1134 1462H1436ZM803 586H521V942Q521 977 524 1060T531 1159Q522 1140 500 1116T390 1018L244 1188L584 1462H803V586Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1921" d="M1870 140H1745V1H1470V140H1100V328L1450 883H1745V341H1870V140ZM1470 341V507Q1470 576 1477 642Q1437 542 1415 509L1313 341H1470ZM745 1266Q745 1188 708 1134T583 1047V1038Q680
+1014 727 962T774 823Q774 703 676 636T399 569Q214 569 90 639V872Q207 791 387 791Q503 791 503 858Q503 899 471 914T368 930H264V1124H344Q415 1124 449 1142T483 1202Q483 1227 462 1248T391 1270Q341 1270 297 1253T200 1196L83 1366Q232 1481 426 1481Q572
+1481 658 1424T745 1266ZM1520 1462L766 0H465L1218 1462H1520Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="1034" d="M739 612V526Q739 428 699 361T557 229Q500 193 467 163T420 108T406 43Q406 1 443 -23T543 -47Q691 -47 895 59L1034 -213Q791 -354 514 -354Q291 -354 164 -256T37 10Q37 130 92 218T274
+387Q374 451 403 484T432 561V612H739ZM782 963Q782 870 729 820T571 770Q470 770 418 820T365 963Q365 1053 419 1103T571 1153Q672 1153 727 1104T782 963Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1487" d="M1055 0L983 274H508L434 0H0L477 1468H1004L1487 0H1055ZM901 598L838 838Q816 918 785 1045T743 1227Q734 1176 708 1059T590 598H901ZM704 1579Q635 1623 501 1717T272 1886V1907H702Q754
+1837 905 1674L964 1608V1579H704Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1487" d="M1055 0L983 274H508L434 0H0L477 1468H1004L1487 0H1055ZM901 598L838 838Q816 918 785 1045T743 1227Q734 1176 708 1059T590 598H901ZM532 1579V1608Q686 1773 727 1821T796 1907H1224V1886Q1144
+1822 1004 1723T792 1579H532Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1487" d="M1055 0L983 274H508L434 0H0L477 1468H1004L1487 0H1055ZM901 598L838 838Q816 918 785 1045T743 1227Q734 1176 708 1059T590 598H901ZM948 1579Q864 1627 747 1729Q622 1622 553 1579H295V1608Q364
+1673 439 1761T553 1907H946Q1040 1770 1202 1608V1579H948Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1487" d="M1055 0L983 274H508L434 0H0L477 1468H1004L1487 0H1055ZM901 598L838 838Q816 918 785 1045T743 1227Q734 1176 708 1059T590 598H901ZM926 1577Q881 1577 836 1592T746 1625T661 1658T582
+1673Q528 1673 510 1575H330Q341 1750 402 1833T582 1917Q620 1917 663 1902T750 1869T837 1836T918 1821Q947 1821 964 1846T990 1919H1172Q1161 1752 1098 1665T926 1577Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1487" d="M1055 0L983 274H508L434 0H0L477 1468H1004L1487 0H1055ZM901 598L838 838Q816 918 785 1045T743 1227Q734 1176 708 1059T590 598H901ZM352 1751Q352 1826 398 1867T522 1909Q601 1909
+647 1867T694 1751Q694 1680 648 1638T522 1595Q444 1595 398 1636T352 1751ZM831 1751Q831 1826 877 1867T1003 1909Q1083 1909 1129 1866T1176 1751Q1176 1680 1130 1638T1003 1595Q922 1595 877 1636T831 1751Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1487" d="M1055 0L983 274H508L434 0H0L477 1468H1004L1487 0H1055ZM901 598L838 838Q816 918 785 1045T743 1227Q734 1176 708 1059T590 598H901ZM1011 1616Q1011 1503 935 1433T739 1362Q618 1362 547
+1430T475 1614Q475 1730 546 1799T739 1868Q857 1868 934 1798T1011 1616ZM823 1614Q823 1652 799 1675T739 1698Q704 1698 680 1675T655 1614Q655 1577 676 1554T739 1530Q774 1530 798 1553T823 1614Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1937" d="M1839 0H969V274H532L432 0H-10L618 1462H1839V1145H1366V915H1804V598H1366V322H1839V0ZM653 602H969V1128H858L653 602Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1329" d="M809 1159Q668 1159 589 1044T510 725Q510 303 831 303Q928 303 1019 330T1202 395V61Q1019 -20 788 -20Q457 -20 281 172T104 727Q104 954 189 1126T435 1390T813 1483Q1050 1483 1266 1380L1145
+1069Q1064 1107 983 1133T809 1159ZM964 -252Q964 -361 889 -426T690 -492Q554 -492 477 -463V-258Q560 -285 624 -285Q676 -285 676 -238Q676 -205 635 -180T528 -139L600 0H803L794 -29Q890 -68 927 -121T964 -252Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1124" d="M1026 0H158V1462H1026V1145H553V915H991V598H553V322H1026V0ZM586 1579Q517 1623 383 1717T154 1886V1907H584Q636 1837 787 1674L846 1608V1579H586Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1124" d="M1026 0H158V1462H1026V1145H553V915H991V598H553V322H1026V0ZM362 1579V1608Q516 1773 557 1821T626 1907H1054V1886Q974 1822 834 1723T622 1579H362Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1124" d="M1026 0H158V1462H1026V1145H553V915H991V598H553V322H1026V0ZM804 1579Q720 1627 603 1729Q478 1622 409 1579H151V1608Q220 1673 295 1761T409 1907H802Q896 1770 1058 1608V1579H804Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1124" d="M1026 0H158V1462H1026V1145H553V915H991V598H553V322H1026V0ZM187 1751Q187 1826 233 1867T357 1909Q436 1909 482 1867T529 1751Q529 1680 483 1638T357 1595Q279 1595 233 1636T187 1751ZM666
+1751Q666 1826 712 1867T838 1909Q918 1909 964 1866T1011 1751Q1011 1680 965 1638T838 1595Q757 1595 712 1636T666 1751Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="713" d="M158 0V1462H555V0H158ZM316 1579Q247 1623 113 1717T-116 1886V1907H314Q366 1837 517 1674L576 1608V1579H316Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="713" d="M158 0V1462H555V0H158ZM156 1579V1608Q310 1773 351 1821T420 1907H848V1886Q768 1822 628 1723T416 1579H156Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="713" d="M158 0V1462H555V0H158ZM558 1579Q474 1627 357 1729Q232 1622 163 1579H-95V1608Q-26 1673 49 1761T163 1907H556Q650 1770 812 1608V1579H558Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="713" d="M158 0V1462H555V0H158ZM-55 1751Q-55 1826 -9 1867T115 1909Q194 1909 240 1867T287 1751Q287 1680 241 1638T115 1595Q37 1595 -9 1636T-55 1751ZM424 1751Q424 1826 470 1867T596 1909Q676
+1909 722 1866T769 1751Q769 1680 723 1638T596 1595Q515 1595 470 1636T424 1751Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1503" d="M1399 762Q1399 396 1198 198T631 0H158V563H31V883H158V1462H664Q1016 1462 1207 1282T1399 762ZM989 748Q989 949 910 1046T668 1143H553V883H764V563H553V324H641Q821 324 905 428T989 748Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1708" d="M1550 0H1032L498 1030H489Q508 787 508 659V0H158V1462H674L1206 446H1212Q1198 667 1198 801V1462H1550V0ZM1030 1577Q985 1577 940 1592T850 1625T765 1658T686 1673Q632 1673 614 1575H434Q445
+1750 506 1833T686 1917Q724 1917 767 1902T854 1869T941 1836T1022 1821Q1051 1821 1068 1846T1094 1919H1276Q1265 1752 1202 1665T1030 1577Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1632" d="M1526 733Q1526 364 1345 172T815 -20Q471 -20 288 173T104 735Q104 1100 286 1292T817 1485Q1166 1485 1346 1294T1526 733ZM520 733Q520 309 815 309Q965 309 1037 412T1110 733Q1110 952
+1037 1056T817 1161Q520 1161 520 733ZM829 1579Q760 1623 626 1717T397 1886V1907H827Q879 1837 1030 1674L1089 1608V1579H829Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1632" d="M1526 733Q1526 364 1345 172T815 -20Q471 -20 288 173T104 735Q104 1100 286 1292T817 1485Q1166 1485 1346 1294T1526 733ZM520 733Q520 309 815 309Q965 309 1037 412T1110 733Q1110 952
+1037 1056T817 1161Q520 1161 520 733ZM583 1579V1608Q737 1773 778 1821T847 1907H1275V1886Q1195 1822 1055 1723T843 1579H583Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1632" d="M1526 733Q1526 364 1345 172T815 -20Q471 -20 288 173T104 735Q104 1100 286 1292T817 1485Q1166 1485 1346 1294T1526 733ZM520 733Q520 309 815 309Q965 309 1037 412T1110 733Q1110
+952 1037 1056T817 1161Q520 1161 520 733ZM1016 1579Q932 1627 815 1729Q690 1622 621 1579H363V1608Q432 1673 507 1761T621 1907H1014Q1108 1770 1270 1608V1579H1016Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1632" d="M1526 733Q1526 364 1345 172T815 -20Q471 -20 288 173T104 735Q104 1100 286 1292T817 1485Q1166 1485 1346 1294T1526 733ZM520 733Q520 309 815 309Q965 309 1037 412T1110 733Q1110 952
+1037 1056T817 1161Q520 1161 520 733ZM997 1577Q952 1577 907 1592T817 1625T732 1658T653 1673Q599 1673 581 1575H401Q412 1750 473 1833T653 1917Q691 1917 734 1902T821 1869T908 1836T989 1821Q1018 1821 1035 1846T1061 1919H1243Q1232 1752 1169 1665T997
+1577Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1632" d="M1526 733Q1526 364 1345 172T815 -20Q471 -20 288 173T104 735Q104 1100 286 1292T817 1485Q1166 1485 1346 1294T1526 733ZM520 733Q520 309 815 309Q965 309 1037 412T1110 733Q1110
+952 1037 1056T817 1161Q520 1161 520 733ZM403 1751Q403 1826 449 1867T573 1909Q652 1909 698 1867T745 1751Q745 1680 699 1638T573 1595Q495 1595 449 1636T403 1751ZM882 1751Q882 1826 928 1867T1054 1909Q1134 1909 1180 1866T1227 1751Q1227 1680 1181
+1638T1054 1595Q973 1595 928 1636T882 1751Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1159" d="M387 723L121 991L303 1180L573 913L848 1180L1036 997L762 723L1032 451L848 266L573 537L303 268L123 455L387 723Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1632" d="M1526 733Q1526 364 1345 172T815 -20Q638 -20 508 23L424 -109L231 16L315 141Q104 335 104 735Q104 1100 286 1292T817 1485Q1008 1485 1147 1430L1223 1548L1413 1434L1331 1309Q1526 1120
+1526 733ZM1110 733Q1110 858 1092 944L698 324Q752 309 815 309Q965 309 1037 412T1110 733ZM520 733Q520 578 549 494L952 1133Q884 1161 817 1161Q520 1161 520 733Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1550" d="M1401 1462V582Q1401 295 1239 138T770 -20Q471 -20 311 133T150 573V1462H547V604Q547 449 605 379T776 309Q897 309 951 378T1006 606V1462H1401ZM712 1579Q643 1623 509 1717T280 1886V1907H710Q762
+1837 913 1674L972 1608V1579H712Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1550" d="M1401 1462V582Q1401 295 1239 138T770 -20Q471 -20 311 133T150 573V1462H547V604Q547 449 605 379T776 309Q897 309 951 378T1006 606V1462H1401ZM561 1579V1608Q715 1773 756 1821T825 1907H1253V1886Q1173
+1822 1033 1723T821 1579H561Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1550" d="M1401 1462V582Q1401 295 1239 138T770 -20Q471 -20 311 133T150 573V1462H547V604Q547 449 605 379T776 309Q897 309 951 378T1006 606V1462H1401ZM975 1579Q891 1627 774 1729Q649 1622
+580 1579H322V1608Q391 1673 466 1761T580 1907H973Q1067 1770 1229 1608V1579H975Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1550" d="M1401 1462V582Q1401 295 1239 138T770 -20Q471 -20 311 133T150 573V1462H547V604Q547 449 605 379T776 309Q897 309 951 378T1006 606V1462H1401ZM362 1751Q362 1826 408 1867T532 1909Q611
+1909 657 1867T704 1751Q704 1680 658 1638T532 1595Q454 1595 408 1636T362 1751ZM841 1751Q841 1826 887 1867T1013 1909Q1093 1909 1139 1866T1186 1751Q1186 1680 1140 1638T1013 1595Q932 1595 887 1636T841 1751Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1360" d="M680 920L932 1462H1360L879 571V0H481V559L0 1462H430L680 920ZM471 1579V1608Q625 1773 666 1821T735 1907H1163V1886Q1083 1822 943 1723T731 1579H471Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1284" d="M1219 784Q1219 539 1075 406T664 272H553V0H158V1462H553V1249H664Q941 1249 1080 1128T1219 784ZM553 594H625Q714 594 766 644T819 782Q819 930 655 930H553V594Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1536" d="M1339 1190Q1339 1133 1319 1087T1270 1003T1205 936T1141 884T1091 843T1071 811Q1071 788 1095 767T1189 709Q1358 614 1417 536T1477 334Q1477 160 1362 70T1024 -20Q888 -20 803 -8T653
+39V330Q702 300 784 275T932 250Q993 250 1031 273T1069 336Q1069 364 1055 383T1004 425T883 494Q757 561 708 618T659 756Q659 878 799 974Q874 1026 906 1065T938 1149Q938 1200 889 1234T748 1268Q526 1268 526 1059V0H135V1100Q135 1315 302 1441T748 1567Q1024
+1567 1181 1468T1339 1190Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1276" d="M874 0L799 150H791Q712 52 630 16T418 -20Q258 -20 166 76T74 346Q74 527 200 615T565 715L754 721V737Q754 877 616 877Q492 877 301 793L188 1051Q386 1153 688 1153Q906 1153 1025 1045T1145
+743V0H874ZM584 256Q655 256 705 301T756 418V506L666 502Q473 495 473 360Q473 256 584 256ZM892 1241Q823 1285 689 1379T460 1548V1569H890Q942 1499 1093 1336L1152 1270V1241H892Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1276" d="M874 0L799 150H791Q712 52 630 16T418 -20Q258 -20 166 76T74 346Q74 527 200 615T565 715L754 721V737Q754 877 616 877Q492 877 301 793L188 1051Q386 1153 688 1153Q906 1153 1025 1045T1145
+743V0H874ZM584 256Q655 256 705 301T756 418V506L666 502Q473 495 473 360Q473 256 584 256ZM434 1241V1270Q588 1435 629 1483T698 1569H1126V1548Q1046 1484 906 1385T694 1241H434Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1276" d="M874 0L799 150H791Q712 52 630 16T418 -20Q258 -20 166 76T74 346Q74 527 200 615T565 715L754 721V737Q754 877 616 877Q492 877 301 793L188 1051Q386 1153 688 1153Q906 1153 1025
+1045T1145 743V0H874ZM584 256Q655 256 705 301T756 418V506L666 502Q473 495 473 360Q473 256 584 256ZM850 1494Q766 1542 649 1644Q524 1537 455 1494H197V1523Q266 1588 341 1676T455 1822H848Q942 1685 1104 1523V1494H850Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1276" d="M874 0L799 150H791Q712 52 630 16T418 -20Q258 -20 166 76T74 346Q74 527 200 615T565 715L754 721V737Q754 877 616 877Q492 877 301 793L188 1051Q386 1153 688 1153Q906 1153 1025 1045T1145
+743V0H874ZM584 256Q655 256 705 301T756 418V506L666 502Q473 495 473 360Q473 256 584 256ZM840 1239Q795 1239 750 1254T660 1287T575 1320T496 1335Q442 1335 424 1237H244Q255 1412 316 1495T496 1579Q534 1579 577 1564T664 1531T751 1498T832 1483Q861 1483
+878 1508T904 1581H1086Q1075 1414 1012 1327T840 1239Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1276" d="M874 0L799 150H791Q712 52 630 16T418 -20Q258 -20 166 76T74 346Q74 527 200 615T565 715L754 721V737Q754 877 616 877Q492 877 301 793L188 1051Q386 1153 688 1153Q906 1153 1025 1045T1145
+743V0H874ZM584 256Q655 256 705 301T756 418V506L666 502Q473 495 473 360Q473 256 584 256ZM268 1413Q268 1488 314 1529T438 1571Q517 1571 563 1529T610 1413Q610 1342 564 1300T438 1257Q360 1257 314 1298T268 1413ZM747 1413Q747 1488 793 1529T919 1571Q999
+1571 1045 1528T1092 1413Q1092 1342 1046 1300T919 1257Q838 1257 793 1298T747 1413Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1276" d="M874 0L799 150H791Q712 52 630 16T418 -20Q258 -20 166 76T74 346Q74 527 200 615T565 715L754 721V737Q754 877 616 877Q492 877 301 793L188 1051Q386 1153 688 1153Q906 1153 1025 1045T1145
+743V0H874ZM584 256Q655 256 705 301T756 418V506L666 502Q473 495 473 360Q473 256 584 256ZM925 1491Q925 1378 849 1308T653 1237Q532 1237 461 1305T389 1489Q389 1605 460 1674T653 1743Q771 1743 848 1673T925 1491ZM737 1489Q737 1527 713 1550T653 1573Q618
+1573 594 1550T569 1489Q569 1452 590 1429T653 1405Q688 1405 712 1428T737 1489Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1915" d="M1341 -20Q1061 -20 911 170Q831 87 770 50T631 -4T434 -20Q272 -20 173 81T74 352Q74 697 571 715L754 721V739Q754 877 618 877Q480 877 305 797L195 1053Q385 1153 649 1153Q850 1153 985 1059Q1055
+1108 1138 1130T1337 1153Q1566 1153 1697 1017T1829 633V461H1133Q1137 371 1207 315T1393 258Q1587 258 1757 344V63Q1663 15 1566 -2T1341 -20ZM756 506L672 502Q566 498 520 464T473 356Q473 256 586 256Q655 256 705 301T756 418V506ZM1315 887Q1153 887 1139
+707H1479Q1477 789 1431 838T1315 887Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="1104" d="M651 -20Q373 -20 230 130T86 561Q86 843 241 998T682 1153Q879 1153 1053 1067L938 778Q867 809 807 827T682 846Q587 846 535 772T483 563Q483 291 684 291Q856 291 1014 391V80Q863 -20
+651 -20ZM848 -252Q848 -361 773 -426T574 -492Q438 -492 361 -463V-258Q444 -285 508 -285Q560 -285 560 -238Q560 -205 519 -180T412 -139L484 0H687L678 -29Q774 -68 811 -121T848 -252Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1266" d="M682 -20Q399 -20 243 130T86 559Q86 846 231 999T645 1153Q901 1153 1040 1020T1180 635V461H481Q485 366 550 312T729 258Q832 258 918 277T1106 344V63Q1014 16 916 -2T682 -20ZM659 887Q590
+887 544 844T489 707H825Q823 789 779 838T659 887ZM877 1241Q808 1285 674 1379T445 1548V1569H875Q927 1499 1078 1336L1137 1270V1241H877Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1266" d="M682 -20Q399 -20 243 130T86 559Q86 846 231 999T645 1153Q901 1153 1040 1020T1180 635V461H481Q485 366 550 312T729 258Q832 258 918 277T1106 344V63Q1014 16 916 -2T682 -20ZM659 887Q590
+887 544 844T489 707H825Q823 789 779 838T659 887ZM471 1241V1270Q625 1435 666 1483T735 1569H1163V1548Q1083 1484 943 1385T731 1241H471Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1266" d="M682 -20Q399 -20 243 130T86 559Q86 846 231 999T645 1153Q901 1153 1040 1020T1180 635V461H481Q485 366 550 312T729 258Q832 258 918 277T1106 344V63Q1014 16 916 -2T682 -20ZM659
+887Q590 887 544 844T489 707H825Q823 789 779 838T659 887ZM858 1241Q774 1289 657 1391Q532 1284 463 1241H205V1270Q274 1335 349 1423T463 1569H856Q950 1432 1112 1270V1241H858Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1266" d="M682 -20Q399 -20 243 130T86 559Q86 846 231 999T645 1153Q901 1153 1040 1020T1180 635V461H481Q485 366 550 312T729 258Q832 258 918 277T1106 344V63Q1014 16 916 -2T682 -20ZM659
+887Q590 887 544 844T489 707H825Q823 789 779 838T659 887ZM252 1413Q252 1488 298 1529T422 1571Q501 1571 547 1529T594 1413Q594 1342 548 1300T422 1257Q344 1257 298 1298T252 1413ZM731 1413Q731 1488 777 1529T903 1571Q983 1571 1029 1528T1076 1413Q1076
+1342 1030 1300T903 1257Q822 1257 777 1298T731 1413Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="666" d="M528 0H137V1133H528V0ZM302 1241Q233 1285 99 1379T-130 1548V1569H300Q352 1499 503 1336L562 1270V1241H302Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="666" d="M528 0H137V1133H528V0ZM107 1241V1270Q261 1435 302 1483T371 1569H799V1548Q719 1484 579 1385T367 1241H107Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="666" d="M528 0H137V1133H528V0ZM533 1241Q449 1289 332 1391Q207 1284 138 1241H-120V1270Q-51 1335 24 1423T138 1569H531Q625 1432 787 1270V1241H533Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="666" d="M528 0H137V1133H528V0ZM-61 1413Q-61 1488 -15 1529T109 1571Q188 1571 234 1529T281 1413Q281 1342 235 1300T109 1257Q31 1257 -15 1298T-61 1413ZM418 1413Q418 1488 464 1529T590 1571Q670
+1571 716 1528T763 1413Q763 1342 717 1300T590 1257Q509 1257 464 1298T418 1413Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1313" d="M1217 580Q1217 305 1065 143T649 -20Q390 -20 239 119T88 498Q88 737 218 875T567 1014Q759 1014 811 930L819 934Q752 1064 676 1141L494 1022L377 1206L520 1298L371 1391L479 1573Q653 1500
+745 1438L954 1575L1069 1393L924 1296Q1083 1139 1150 969T1217 580ZM817 545Q817 629 772 681T653 733Q561 733 525 677T489 500Q489 258 653 258Q744 258 780 329T817 545Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1372" d="M850 0V618Q850 731 818 788T713 846Q614 846 570 767T526 496V0H135V1133H430L479 993H502Q552 1073 640 1113T844 1153Q1032 1153 1136 1044T1241 737V0H850ZM870 1239Q825 1239 780 1254T690
+1287T605 1320T526 1335Q472 1335 454 1237H274Q285 1412 346 1495T526 1579Q564 1579 607 1564T694 1531T781 1498T862 1483Q891 1483 908 1508T934 1581H1116Q1105 1414 1042 1327T870 1239Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1305" d="M1217 569Q1217 291 1068 136T649 -20Q391 -20 239 139T86 569Q86 846 235 999T655 1153Q822 1153 950 1082T1147 879T1217 569ZM483 569Q483 423 522 347T653 270Q744 270 781 346T819 569Q819
+714 781 788T651 862Q561 862 522 789T483 569ZM863 1241Q794 1285 660 1379T431 1548V1569H861Q913 1499 1064 1336L1123 1270V1241H863Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1305" d="M1217 569Q1217 291 1068 136T649 -20Q391 -20 239 139T86 569Q86 846 235 999T655 1153Q822 1153 950 1082T1147 879T1217 569ZM483 569Q483 423 522 347T653 270Q744 270 781 346T819 569Q819
+714 781 788T651 862Q561 862 522 789T483 569ZM416 1241V1270Q570 1435 611 1483T680 1569H1108V1548Q1028 1484 888 1385T676 1241H416Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1305" d="M1217 569Q1217 291 1068 136T649 -20Q391 -20 239 139T86 569Q86 846 235 999T655 1153Q822 1153 950 1082T1147 879T1217 569ZM483 569Q483 423 522 347T653 270Q744 270 781 346T819
+569Q819 714 781 788T651 862Q561 862 522 789T483 569ZM852 1241Q768 1289 651 1391Q526 1284 457 1241H199V1270Q268 1335 343 1423T457 1569H850Q944 1432 1106 1270V1241H852Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1305" d="M1217 569Q1217 291 1068 136T649 -20Q391 -20 239 139T86 569Q86 846 235 999T655 1153Q822 1153 950 1082T1147 879T1217 569ZM483 569Q483 423 522 347T653 270Q744 270 781 346T819 569Q819
+714 781 788T651 862Q561 862 522 789T483 569ZM827 1239Q782 1239 737 1254T647 1287T562 1320T483 1335Q429 1335 411 1237H231Q242 1412 303 1495T483 1579Q521 1579 564 1564T651 1531T738 1498T819 1483Q848 1483 865 1508T891 1581H1073Q1062 1414 999 1327T827
+1239Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1305" d="M1217 569Q1217 291 1068 136T649 -20Q391 -20 239 139T86 569Q86 846 235 999T655 1153Q822 1153 950 1082T1147 879T1217 569ZM483 569Q483 423 522 347T653 270Q744 270 781 346T819
+569Q819 714 781 788T651 862Q561 862 522 789T483 569ZM239 1413Q239 1488 285 1529T409 1571Q488 1571 534 1529T581 1413Q581 1342 535 1300T409 1257Q331 1257 285 1298T239 1413ZM718 1413Q718 1488 764 1529T890 1571Q970 1571 1016 1528T1063 1413Q1063
+1342 1017 1300T890 1257Q809 1257 764 1298T718 1413Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1159" d="M72 588V856H1085V588H72ZM422 332Q422 414 461 458T578 502Q653 502 694 459T735 332Q735 252 692 207T578 162Q507 162 465 206T422 332ZM422 1112Q422 1194 461 1238T578 1282Q653 1282
+694 1239T735 1112Q735 1032 692 987T578 942Q507 942 465 986T422 1112Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1362" d="M274 113Q86 271 86 569Q86 846 243 999T684 1153Q809 1153 918 1114L989 1225L1157 1120L1090 1016Q1274 858 1274 569Q1274 289 1118 135T678 -20Q553 -20 449 14L365 -117L195 -10L274 113ZM461
+569Q461 470 473 422L762 870Q726 883 680 883Q566 883 514 809T461 569ZM899 569Q899 655 889 700L606 258Q633 250 682 250Q796 250 847 323T899 569Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1372" d="M942 0L893 141H870Q821 63 734 22T528 -20Q341 -20 237 88T133 395V1133H524V514Q524 403 555 346T659 289Q760 289 803 368T846 637V1133H1237V0H942ZM863 1241Q794 1285 660 1379T431 1548V1569H861Q913
+1499 1064 1336L1123 1270V1241H863Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1372" d="M942 0L893 141H870Q821 63 734 22T528 -20Q341 -20 237 88T133 395V1133H524V514Q524 403 555 346T659 289Q760 289 803 368T846 637V1133H1237V0H942ZM471 1241V1270Q625 1435 666 1483T735
+1569H1163V1548Q1083 1484 943 1385T731 1241H471Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1372" d="M942 0L893 141H870Q821 63 734 22T528 -20Q341 -20 237 88T133 395V1133H524V514Q524 403 555 346T659 289Q760 289 803 368T846 637V1133H1237V0H942ZM883 1241Q799 1289 682 1391Q557
+1284 488 1241H230V1270Q299 1335 374 1423T488 1569H881Q975 1432 1137 1270V1241H883Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1372" d="M942 0L893 141H870Q821 63 734 22T528 -20Q341 -20 237 88T133 395V1133H524V514Q524 403 555 346T659 289Q760 289 803 368T846 637V1133H1237V0H942ZM272 1413Q272 1488 318 1529T442
+1571Q521 1571 567 1529T614 1413Q614 1342 568 1300T442 1257Q364 1257 318 1298T272 1413ZM751 1413Q751 1488 797 1529T923 1571Q1003 1571 1049 1528T1096 1413Q1096 1342 1050 1300T923 1257Q842 1257 797 1298T751 1413Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1249" d="M-2 1133H410L602 483Q616 432 621 360H629Q637 429 653 481L850 1133H1249L801 -72Q715 -302 590 -397T262 -492Q184 -492 102 -475V-168Q155 -180 223 -180Q275 -180 314 -160T382 -104T444
+16L-2 1133ZM401 1241V1270Q555 1435 596 1483T665 1569H1093V1548Q1013 1484 873 1385T661 1241H401Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1317" d="M526 987Q569 1065 648 1109T827 1153Q1012 1153 1120 999T1229 569Q1229 298 1118 139T813 -20Q640 -20 526 109H512L519 49L526 -43V-492H135V1556H526V1212Q526 1106 508 987H526ZM682 846Q597
+846 563 785T526 600V571Q526 425 565 360T688 295Q768 295 799 365T831 573Q831 707 798 776T682 846Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1249" d="M-2 1133H410L602 483Q616 432 621 360H629Q637 429 653 481L850 1133H1249L801 -72Q715 -302 590 -397T262 -492Q184 -492 102 -475V-168Q155 -180 223 -180Q275 -180 314 -160T382 -104T444
+16L-2 1133ZM472 1413Q472 1488 518 1529T642 1571Q721 1571 767 1529T814 1413Q814 1342 768 1300T642 1257Q564 1257 518 1298T472 1413ZM951 1413Q951 1488 997 1529T1123 1571Q1203 1571 1249 1528T1296 1413Q1296 1342 1250 1300T1123 1257Q1042 1257 997
+1298T951 1413Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1024" d="M74 414V690H950V414H74Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="2048" d="M74 414V690H1970V414H74Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="512" d="M35 877L20 899Q120 1290 197 1460H475Q408 1148 377 877H35Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="512" d="M477 1460L492 1438Q400 1072 315 877H37Q105 1194 135 1460H477Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="633" d="M498 299L512 276Q415 -105 336 -285H57Q86 -147 115 24T156 299H498Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="1022" d="M545 877L530 899Q630 1290 707 1460H985Q918 1148 887 877H545ZM35 877L20 899Q120 1290 197 1460H475Q408 1148 377 877H35Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="1022" d="M477 1460L492 1438Q400 1072 315 877H37Q105 1194 135 1460H477ZM987 1460L1001 1438Q908 1067 825 877H547Q615 1194 645 1460H987Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="1143" d="M498 299L512 276Q415 -105 336 -285H57Q86 -147 115 24T156 299H498ZM1008 299L1022 276Q925 -105 846 -285H567Q596 -147 625 24T666 299H1008Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="803" d="M74 748Q74 922 158 1015T401 1108Q559 1108 644 1014T729 748Q729 576 642 482T401 387Q246 387 160 480T74 748Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="819" d="M74 588L463 1071L743 922L471 575L743 227L463 80L74 561V588Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="819" d="M745 561L358 80L76 227L348 575L76 922L358 1071L745 588V561Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.ttf b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.ttf
new file mode 100644
index 0000000..21f6f84
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.ttf differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.woff b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.woff
new file mode 100644
index 0000000..af67f18
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.woff differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.woff2 b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.woff2
new file mode 100644
index 0000000..473b2b4
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.woff2 differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.eot b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.eot
new file mode 100644
index 0000000..6e56f5f
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.eot differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.svg b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.svg
new file mode 100644
index 0000000..c2f16d1
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.svg
@@ -0,0 +1,19043 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1131" ><font-face
+    font-family="Open Sans"
+    units-per-em="2048"
+    panose-1="2 11 6 6 3 5 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="530" d="M555 1462L281 403H172Q221 710 348 1462H555ZM43 78Q43 154 82 198T190 242Q235 242 263 215T291 133Q291 65 252 18T147 -29Q98 -29 71 -1T43 78Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="791" d="M485 1462L332 934H225L297 1462H485ZM834 1462L680 934H573L645 1462H834Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M1036 899L938 559H1223L1210 430H901L776 0H637L766 430H463L336 0H203L324 430H63L76 559H360L461 899H184L197 1026H498L621 1462H760L635 1026H940L1067 1462H1200L1075 1026H1339L1327
+899H1036ZM500 559H803L899 899H596L500 559Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1128" d="M942 492Q942 330 830 229T520 106L471 -119H338L387 104Q192 118 72 176V330Q154 289 247 267T414 244L512 696Q373 745 311 819T248 1008Q248 1167 356 1263T655 1376L694 1552H827L788 1374Q947
+1362 1071 1298L1008 1163Q887 1226 760 1235L666 795Q815 740 878 670T942 492ZM549 250Q656 263 719 325T782 479Q782 533 749 575T635 649L549 250ZM627 1235Q519 1224 460 1166T401 1010Q401 957 435 913T543 842L627 1235Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1624" d="M1468 1462L383 0H231L1317 1462H1468ZM1284 772Q1217 772 1165 708T1081 519T1049 279Q1049 106 1155 106Q1220 106 1272 171T1358 369T1393 606Q1393 772 1284 772ZM1532 621Q1532 514 1501 385T1419
+168T1298 30T1141 -20Q1031 -20 970 54T909 274Q909 440 959 592T1096 821T1296 897Q1412 897 1472 826T1532 621ZM543 1358Q477 1358 424 1295T339 1108T307 864Q307 692 414 692Q466 692 508 731T581 845T632 1020T651 1192Q651 1358 543 1358ZM791 1206Q791
+1098 759 969T677 751T556 614T399 565Q290 565 229 640T168 860Q168 1026 218 1178T355 1407T555 1483Q671 1483 731 1411T791 1206Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1372" d="M737 1348Q632 1348 574 1288T516 1118Q516 998 598 883Q737 954 789 993T872 1078T903 1182Q903 1259 861 1303T737 1348ZM471 119Q558 119 639 152T834 276L528 709Q400 642 344 593T259
+486T229 354Q229 248 295 184T471 119ZM66 342Q66 490 156 599T459 811Q356 976 356 1120Q356 1284 462 1384T743 1485Q892 1485 979 1406T1067 1194Q1067 1116 1035 1057T947 949T820 859T666 776L944 387Q1071 497 1143 682H1311Q1210 446 1028 270L1231 0H1030L913
+166Q793 66 683 23T436 -20Q268 -20 167 76T66 342Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="444" d="M485 1462L332 934H225L297 1462H485Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="584" d="M82 272Q82 611 202 899T586 1462H743Q497 1192 372 892T246 274Q246 -65 360 -324H229Q82 -58 82 272Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="584" d="M500 864Q500 523 379 235T-4 -324H-160Q336 227 336 864Q336 1205 223 1462H354Q500 1193 500 864Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1130" d="M854 1528L731 1145L1153 1163L1145 1006L752 1053L932 670L766 618L653 1024L395 680L279 801L588 1085L215 1194L270 1348L641 1163L682 1563L854 1528Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1128" d="M516 651H127V793H516V1184H657V793H1047V651H657V264H516V651Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="492" d="M291 238L299 215Q186 -20 29 -264H-100Q26 22 104 238H291Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="639" d="M55 469L90 627H569L535 469H55Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="518" d="M43 74Q43 151 83 196T195 242Q238 242 264 216T291 137Q291 66 251 19T143 -29Q97 -29 70 -3T43 74Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="717" d="M893 1462L80 0H-94L719 1462H893Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1128" d="M1092 1014Q1092 719 1014 475T800 106T485 -20Q309 -20 215 107T121 477Q121 747 203 991T419 1360T727 1485Q1092 1485 1092 1014ZM717 1341Q604 1341 508 1226T353 903T293 479Q293 307 343 215T504
+123Q619 123 713 237T863 565T920 1018Q920 1341 717 1341Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1128" d="M588 0H416L612 913Q671 1174 700 1272Q650 1219 561 1161L383 1051L303 1178L752 1462H901L588 0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1128" d="M911 0H12L43 147L508 567Q610 660 684 730T807 863T879 987T903 1124Q903 1223 843 1281T680 1339Q603 1339 530 1311T367 1214L285 1329Q476 1483 698 1483Q874 1483 976 1395T1079 1151Q1079 1040
+1040 947T909 750T614 469L262 162V154H940L911 0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1128" d="M1073 1159Q1073 1003 972 895T692 754V745Q816 722 887 639T958 430Q958 297 896 196T715 37T432 -20Q222 -20 47 59V223Q141 174 246 148T436 121Q598 121 688 200T778 418Q778 549 699 616T479
+684H348L379 827H518Q683 827 792 914T901 1141Q901 1233 843 1287T686 1341Q606 1341 529 1314T354 1221L274 1339Q469 1483 698 1483Q877 1483 975 1396T1073 1159Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1128" d="M1067 334H834L762 0H598L672 334H16L45 492L879 1470H1075L868 487H1100L1067 334ZM705 487Q751 707 783 860T899 1305H891Q874 1276 825 1209T752 1112L219 487H705Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1128" d="M598 893Q780 893 887 789T995 506Q995 345 922 223T718 41T410 -20Q217 -20 80 59V223Q244 121 414 121Q605 121 712 217T819 485Q819 611 746 684T541 758Q493 758 444 752T305 721L231 778L428
+1462H1096L1063 1309H541L414 870Q501 893 598 893Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1128" d="M133 424Q133 633 193 839T357 1190T603 1409T930 1483Q1041 1483 1114 1460L1079 1315Q1011 1337 909 1337Q697 1337 553 1188T340 745H348Q407 824 494 871T688 918Q842 918 932 820T1022 549Q1022
+388 956 255T775 51T514 -20Q332 -20 233 95T133 424ZM532 121Q626 121 699 175T813 324T854 532Q854 780 633 780Q567 780 505 752T395 676T323 571T299 416Q299 279 359 200T532 121Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1128" d="M174 0L942 1313H223L254 1462H1145L1118 1323L354 0H174Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1128" d="M741 1485Q915 1485 1012 1399T1110 1163Q1110 1034 1032 938T766 762Q893 684 946 597T999 395Q999 273 939 178T767 31T502 -20Q312 -20 204 78T96 346Q96 494 191 602T487 786Q392 855 352 930T311
+1102Q311 1213 365 1300T519 1436T741 1485ZM608 700Q423 640 347 557T270 354Q270 247 339 184T520 121Q659 121 742 195T825 391Q825 490 773 565T608 700ZM729 1341Q615 1341 547 1276T479 1100Q479 1018 518 956T645 840Q806 900 873 971T940 1145Q940 1235
+883 1288T729 1341Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1128" d="M1067 1034Q1067 840 1011 628T864 268T642 50T340 -20Q204 -20 98 14V172Q232 125 344 125Q546 125 671 266T860 707H850Q799 632 718 589T537 545Q368 545 276 643T184 932Q184 1085 248 1212T428
+1411T688 1483Q868 1483 967 1369T1067 1034ZM682 1341Q532 1341 441 1228T350 938Q350 814 404 748T567 682Q643 682 707 710T815 792T880 906T901 1057Q901 1188 842 1264T682 1341Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="518" d="M43 74Q43 151 83 196T195 242Q238 242 264 216T291 137Q291 66 251 19T143 -29Q97 -29 70 -3T43 74ZM203 956Q203 1033 243 1078T354 1124Q451 1124 451 1020Q451 947 410 901T303 854Q257 854 230
+880T203 956Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="518" d="M291 238L299 215Q186 -20 29 -264H-100Q26 22 104 238H291ZM203 956Q203 1033 243 1078T354 1124Q451 1124 451 1020Q451 947 410 901T303 854Q257 854 230 880T203 956Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1128" d="M1040 242L121 664V762L1040 1241V1092L293 721L1040 393V242Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1128" d="M127 858V997H1047V858H127ZM127 444V586H1047V444H127Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1128" d="M121 393L866 721L121 1092V1241L1040 762V664L121 242V393Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="874" d="M260 403Q282 533 332 616T498 791Q626 891 666 935T729 1029T752 1141Q752 1234 701 1284T553 1335Q472 1335 398 1310T258 1253L197 1382Q289 1433 389 1458T571 1483Q738 1483 830 1399T922
+1161Q922 1038 857 935T631 711Q506 620 462 564T395 403H260ZM158 74Q158 151 198 196T309 242Q353 242 379 216T406 137Q406 64 365 18T258 -29Q212 -29 185 -3T158 74Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1735" d="M1679 852Q1679 673 1624 528T1469 301T1247 219Q1050 219 1034 403H1026Q915 219 735 219Q620 219 555 294T489 504Q489 661 557 788T745 987T1006 1059Q1071 1059 1133 1047T1284 999Q1220 757 1186
+631T1155 459Q1155 342 1257 342Q1335 342 1398 409T1499 592T1536 836Q1536 1075 1408 1203T1038 1331Q810 1331 632 1224T355 929T256 512Q256 242 399 94T809 -55Q1006 -55 1229 31V-96Q1010 -186 786 -186Q472 -186 292 -2T111 504Q111 765 237 989T581 1337T1067
+1460Q1258 1460 1396 1385T1606 1171T1679 852ZM985 938Q891 938 811 883T685 730T639 518Q639 425 672 384T770 342Q957 342 1042 657L1112 915Q1049 938 985 938Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1137" d="M813 465H317L72 0H-117L682 1462H856L1040 0H870L813 465ZM795 621L760 920Q736 1099 731 1270Q694 1182 651 1095T401 621H795Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1225" d="M770 1462Q1202 1462 1202 1126Q1202 985 1115 888T870 762V752Q985 720 1046 642T1108 453Q1108 241 956 121T549 0H86L395 1462H770ZM434 836H682Q838 836 931 909T1024 1108Q1024 1212 958 1263T748
+1315H537L434 836ZM287 145H553Q734 145 831 225T928 453Q928 569 854 630T639 692H403L287 145Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1198" d="M942 1331Q768 1331 631 1234T413 950T332 541Q332 354 429 243T698 131Q837 131 1020 188V39Q934 8 856 -6T668 -20Q426 -20 288 129T150 537Q150 798 255 1022T539 1365T942 1483Q1139 1483 1290 1403L1221
+1262Q1083 1331 942 1331Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1364" d="M1300 877Q1300 616 1195 416T895 108T438 0H86L395 1462H737Q1013 1462 1156 1313T1300 877ZM449 147Q651 147 804 238T1038 497T1120 879Q1120 1094 1017 1204T715 1315H537L287 147H449Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1047" d="M821 0H86L395 1462H1130L1098 1309H532L434 840H961L932 688H403L289 152H854L821 0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="967" d="M258 0H86L395 1462H1130L1100 1309H532L422 776H950L918 623H389L258 0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1386" d="M821 766H1280L1126 55Q910 -20 707 -20Q443 -20 297 124T150 528Q150 797 251 1017T533 1360T932 1483Q1049 1483 1151 1463T1358 1399L1292 1247Q1215 1281 1127 1306T932 1331Q763 1331 625 1230T409
+946T332 539Q332 349 434 240T721 131Q875 131 981 170L1077 614H788L821 766Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1389" d="M1085 0H918L1061 688H401L256 0H86L395 1462H565L434 840H1094L1227 1462H1395L1085 0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="559" d="M86 0L397 1462H565L254 0H86Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="547" d="M-166 -385Q-271 -385 -319 -360L-313 -213Q-244 -233 -168 -233Q-68 -233 -3 -171T88 12L395 1462H565L256 -6Q177 -385 -166 -385Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1141" d="M1034 0H848Q776 181 702 359T555 721L381 590L256 0H86L395 1462H565L414 752L1114 1462H1323L684 825L1034 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="971" d="M86 0L395 1462H565L289 154H854L821 0H86Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1714" d="M676 0L510 1296H502Q495 1224 474 1099T436 899L246 0H84L393 1462H637L786 258H795L1454 1462H1720L1417 0H1243Q1369 590 1436 905T1530 1298H1524L807 0H676Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1438" d="M1139 0H958L498 1223H492Q460 1002 418 805L246 0H84L393 1462H573L1032 242H1038Q1068 466 1110 647L1284 1462H1448L1139 0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1475" d="M1411 907Q1411 638 1323 426T1071 97T692 -20Q436 -20 293 129T150 549Q150 813 246 1031T509 1367T887 1485Q1131 1485 1271 1331T1411 907ZM874 1333Q717 1333 593 1232T401 951T332 553Q332 354 430
+243T696 131Q848 131 968 228T1159 508T1229 911Q1229 1110 1135 1221T874 1333Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1159" d="M1159 1085Q1159 837 995 706T514 575H379L256 0H86L395 1462H725Q939 1462 1049 1368T1159 1085ZM410 721H543Q759 721 871 812T983 1079Q983 1204 914 1259T700 1315H537L410 721Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1475" d="M874 1333Q717 1333 593 1232T401 951T332 553Q332 354 430 243T696 131Q854 131 975 231T1162 511T1229 911Q1229 1110 1135 1221T874 1333ZM725 -18L708 -20H692Q436 -20 293 129T150 549Q150 813 246
+1031T509 1367T887 1485Q1131 1485 1271 1331T1411 907Q1411 574 1272 331T897 10L1171 -348H952L725 -18Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1165" d="M385 608L256 0H86L395 1462H715Q1161 1462 1161 1096Q1161 748 793 647L1032 0H846L637 608H385ZM532 1313Q430 819 416 754H584Q777 754 881 839T985 1083Q985 1204 918 1258T698 1313H532Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1028" d="M913 424Q913 213 773 97T377 -20Q271 -20 191 -6T39 43V213Q201 129 379 129Q541 129 636 204T731 412Q731 490 679 549T483 690Q332 775 274 860T215 1061Q215 1248 347 1365T694 1483Q793 1483 878
+1464T1059 1399L993 1249Q927 1287 845 1309T694 1331Q560 1331 479 1262T397 1073Q397 1019 414 981T468 908T610 813Q757 725 808 675T886 565T913 424Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1020" d="M487 0H315L592 1311H186L219 1462H1204L1174 1311H766L487 0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1384" d="M1407 1462L1202 496Q1147 233 1005 107T616 -20Q386 -20 275 84T164 383Q164 464 188 584L377 1462H547L356 571Q334 465 334 383Q334 266 407 199T625 131Q797 131 892 218T1032 508L1237 1462H1407Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1122" d="M479 197Q540 341 641 535L1120 1462H1311L530 0H350L188 1462H358L455 532Q475 336 475 197H479Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1745" d="M1257 0H1087L1038 965Q1030 1101 1030 1247H1024Q999 1175 963 1093T459 0H285L223 1462H393L424 561L426 473Q426 375 416 215H422Q511 458 578 598L983 1462H1161L1204 602Q1213 449 1213 298L1212
+215H1221Q1296 439 1352 569L1739 1462H1921L1257 0Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1063" d="M956 0H776L563 641L82 0H-104L492 776L229 1462H401L604 899L1047 1462H1233L678 768L956 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1030" d="M537 715L1026 1462H1219L592 541L479 0H307L426 549L188 1462H358L537 715Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1087" d="M885 0H-16L12 137L936 1307H281L313 1462H1171L1145 1323L221 154H918L885 0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="586" d="M371 -324H-16L365 1462H752L721 1321H494L176 -182H403L371 -324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="717" d="M375 1462L592 0H438L221 1462H375Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="586" d="M-119 -182H106L426 1321H199L229 1462H618L238 -324H-150L-119 -182Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1059" d="M53 553L651 1473H760L1026 553H881L680 1300L213 553H53Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="807" d="M623 -324H-188L-158 -184H653L623 -324Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1135" d="M903 1241H799Q738 1302 671 1395T575 1548V1569H756Q799 1433 903 1266V1241Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1157" d="M639 1116Q731 1116 803 1067T915 924H926L993 1096H1120L887 0H754L780 209H772Q593 -20 395 -20Q256 -20 177 79T98 350Q98 558 169 736T365 1015T639 1116ZM449 119Q546 119 642 211T798 452T858 750Q858
+853 802 914T655 975Q551 975 462 889T321 656T270 346Q270 232 317 176T449 119Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1182" d="M545 -20Q448 -20 375 31T264 170H254L184 0H59L389 1556H557Q506 1314 479 1186T403 885H412Q505 1003 595 1058T782 1114Q923 1114 1002 1015T1081 743Q1081 534 1013 357T822 80T545 -20ZM731 975Q635
+975 536 880T378 641T319 346Q319 236 374 178T535 119Q634 119 719 200T857 430T909 748Q909 975 731 975Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="922" d="M506 -20Q312 -20 205 87T98 389Q98 589 172 758T376 1021T670 1116Q807 1116 938 1065L891 924Q771 975 672 975Q560 975 468 899T323 686T270 389Q270 261 336 190T520 119Q592 119 656 139T782 186V43Q658
+-20 506 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1182" d="M639 1114Q833 1114 920 924H930Q947 1079 975 1198L1053 1556H1219L889 0H750L772 209H764Q663 84 575 32T393 -20Q254 -20 176 78T98 350Q98 564 170 742T364 1017T639 1114ZM449 119Q543 119 643 212T801
+451T860 748Q860 859 806 917T649 975Q548 975 462 893T323 661T270 346Q270 119 449 119Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1010" d="M492 -20Q308 -20 203 89T98 391Q98 579 172 751T370 1020T641 1116Q794 1116 871 1050T948 864Q948 684 782 582T307 479H274L270 399Q270 268 331 195T522 121Q585 121 651 139T817 205V59Q723 15 651
+-2T492 -20ZM631 973Q528 973 438 879T299 618H311Q539 618 660 677T782 850Q782 903 746 938T631 973Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="641" d="M-104 -492Q-173 -492 -229 -471V-330Q-165 -352 -117 -352Q-41 -352 0 -290T66 -113L293 969H100L113 1036L319 1102L342 1202Q388 1402 469 1484T711 1567Q751 1567 809 1556T899 1530L856 1401Q780
+1430 719 1430Q632 1430 586 1382T510 1204L485 1096H723L698 969H461L229 -129Q190 -318 109 -405T-104 -492Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1026" d="M1100 1096L1075 989L864 965Q905 903 905 807Q905 616 789 503T477 389Q422 389 393 397Q254 344 254 266Q254 225 287 212T383 190L500 176Q681 154 762 88T844 -106Q844 -290 698 -391T287 -492Q93
+-492 -17 -419T-127 -211Q-127 -106 -55 -29T178 102Q100 143 100 223Q100 292 151 341T293 434Q230 466 190 528T150 674Q150 868 269 992T575 1116Q653 1116 729 1096H1100ZM35 -195Q35 -272 100 -317T293 -362Q475 -362 577 -299T680 -119Q680 -57 626 -21T442
+29L283 45Q163 20 99 -43T35 -195ZM313 680Q313 595 358 551T483 506Q562 506 621 548T711 663T743 823Q743 905 699 948T573 991Q495 991 437 951T346 838T313 680Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1182" d="M729 0L877 692Q895 786 895 827Q895 975 748 975Q659 975 575 916T426 745T328 473L227 0H59L389 1556H557Q539 1474 523 1397T489 1241T451 1074T403 885H414Q508 1008 599 1061T791 1114Q922 1114
+993 1042T1065 838Q1065 776 1042 672Q1003 479 897 0H729Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="520" d="M227 0H59L293 1096H461L227 0ZM340 1376Q340 1432 372 1467T455 1503Q543 1503 543 1413Q543 1358 510 1320T432 1282Q392 1282 366 1306T340 1376Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="520" d="M-135 -492Q-204 -492 -258 -471V-330Q-197 -352 -139 -352Q-14 -352 29 -147L293 1096H459L193 -162Q157 -333 79 -412T-135 -492ZM340 1376Q340 1432 372 1467T455 1503Q541 1503 541 1413Q541 1358
+508 1320T430 1282Q392 1282 366 1306T340 1376Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="999" d="M330 559L856 1096H1057L588 629L883 0H696L461 524L309 401L227 0H57L387 1556H557Q485 1220 428 954T326 559H330Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="520" d="M225 0H57L389 1556H557L225 0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1786" d="M696 0L844 692Q862 786 862 827Q862 897 831 936T725 975Q641 975 562 915T422 744T328 475L227 0H59L293 1096H432L410 893H420Q507 1012 593 1064T772 1116Q885 1116 946 1051T1018 870H1026Q1112
+995 1209 1055T1405 1116Q1532 1116 1601 1048T1671 850Q1671 782 1649 672L1505 0H1335L1483 692Q1503 796 1503 838Q1503 900 1469 937T1360 975Q1279 975 1200 917T1062 753T971 500L864 0H696Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1182" d="M729 0L877 692Q897 796 897 836Q897 899 862 937T748 975Q659 975 575 915T426 744T328 475L227 0H59L293 1096H432L410 893H420Q516 1015 605 1065T791 1116Q918 1116 991 1047T1065 852Q1065 773 1042
+672L899 0H729Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1149" d="M643 1110Q833 1110 943 998T1053 688Q1053 500 981 333T786 75T508 -16Q316 -16 207 97T98 406Q98 596 171 763T368 1020T643 1110ZM879 711Q879 826 817 897T647 969Q538 969 452 895T318 690T270 397Q270
+266 333 195T516 123Q620 123 703 196T832 403T879 711Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1182" d="M545 -20Q448 -20 375 30T262 170H252L248 132Q245 107 238 62T123 -492H-43L293 1096H432L406 887H414Q593 1114 786 1114Q923 1114 1002 1017T1081 743Q1081 531 1012 354T821 79T545 -20ZM731 975Q635
+975 536 880T378 641T319 346Q319 236 374 178T535 119Q634 119 719 200T857 430T909 748Q909 975 731 975Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1182" d="M641 1116Q735 1116 806 1066T915 924H928L995 1096H1120L784 -492H618L719 -12Q728 33 776 209H768Q673 88 583 34T397 -20Q257 -20 178 77T98 350Q98 562 170 742T366 1019T641 1116ZM449 119Q541 119
+639 211T797 448T858 748Q858 853 804 914T651 975Q550 975 462 891T322 658T270 346Q270 119 449 119Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="811" d="M752 1116Q821 1116 872 1102L836 952Q783 965 731 965Q640 965 561 905T422 739T334 502L227 0H59L293 1096H432L410 893H420Q492 988 539 1029T637 1093T752 1116Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="877" d="M735 311Q735 155 625 68T313 -20Q144 -20 8 49V207Q78 165 159 142T309 119Q435 119 499 169T563 297Q563 354 528 393T377 500Q247 573 193 643T139 809Q139 947 240 1031T506 1116Q677 1116 836 1042L782
+905L726 930Q625 973 506 973Q413 973 360 930T307 817Q307 761 342 721T489 618Q596 558 642 515T712 423T735 311Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="664" d="M395 117Q450 117 539 143V14Q505 0 455 -10T375 -20Q250 -20 184 39T117 217Q117 283 135 367L262 969H90L104 1042L289 1120L414 1348H512L457 1096H731L705 969H432L303 365Q285 278 285 233Q285 177
+314 147T395 117Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1182" d="M451 1096L301 401Q283 312 283 262Q283 119 430 119Q518 119 603 179T753 351T852 621L952 1096H1118L887 0H748L770 203H758Q660 78 571 29T387 -20Q259 -20 186 49T113 248Q113 310 135 420L281 1096H451Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="946" d="M223 0L98 1096H266L330 483Q354 225 354 121H360Q487 396 539 492L864 1096H1042L451 0H223Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1468" d="M831 0L799 602Q795 696 795 774V930H786L736 812L653 623L362 0H160L117 1096H281L299 502V414Q299 267 291 145H297Q344 269 434 467L729 1096H911L948 502Q954 334 954 240V187L952 145H958Q986 231
+1041 363T1364 1096H1542L1036 0H831Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="979" d="M467 434L121 0H-74L401 565L162 1096H332L506 684L836 1096H1030L575 557L827 0H659L467 434Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="946" d="M98 1096H266L340 551Q350 482 359 348T369 131H375Q410 218 462 331T539 487L864 1096H1042L346 -186Q253 -358 162 -425T-57 -492Q-129 -492 -197 -471V-336Q-134 -354 -66 -354Q16 -354 74 -304T188
+-154L264 -18L98 1096Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="909" d="M690 0H-29L-6 117L688 971H209L236 1096H893L864 956L184 125H715L690 0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="715" d="M442 -324Q301 -324 226 -272T150 -100Q150 -48 170 41Q203 187 221 268T236 371Q236 514 27 514L59 657Q177 657 248 700T342 848L410 1174Q444 1334 527 1398T782 1462H815L784 1321Q679 1321
+633 1285T567 1161L496 840Q468 717 405 656T238 578V573Q389 532 389 360Q389 301 371 229L324 18Q309 -40 309 -80Q309 -133 345 -157T465 -182V-324H442Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M541 1556H680V-496H541V1556Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="715" d="M285 1462Q429 1462 505 1410T582 1239Q582 1191 561 1098L512 879Q496 811 496 768Q496 625 705 625L672 481Q553 481 482 438T389 291L322 -35Q286 -199 203 -261T-61 -324H-74V-182Q41 -182
+93 -146T164 -23L236 299Q261 416 324 478T494 559V565Q344 607 344 776Q344 835 362 907L412 1120Q426 1185 426 1219Q426 1272 386 1296T246 1321L274 1462H285Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1128" d="M348 713Q294 713 230 679T115 592V743Q213 852 358 852Q427 852 485 838T629 786Q693 759 741 745T840 731Q895 731 959 764T1075 852V702Q975 592 831 592Q759 592 696 608T561 657Q486 689
+441 701T348 713Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="530" d="M260 684H369L193 -373H-14L260 684ZM250 950Q250 1026 290 1072T401 1118Q445 1118 471 1092T498 1012Q498 941 458 895T352 848Q304 848 277 873T250 950Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1128" d="M582 -20H457L500 195Q368 229 297 332T225 590Q225 775 288 934T467 1192T727 1313L762 1483H885L848 1315Q967 1306 1065 1266L1018 1124Q909 1176 799 1176Q687 1176 595 1100T450 887T397
+590Q397 465 463 392T647 319Q719 319 783 339T909 387V244Q786 182 623 178L582 -20Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1128" d="M842 1481Q1026 1481 1178 1395L1112 1262Q966 1341 834 1341Q621 1341 571 1104L502 778H872L846 651H475L428 432Q406 334 362 266T238 154H963L930 0H-23L4 141Q209 187 262 430L309 651H109L135
+778H336L412 1128Q487 1481 842 1481Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1128" d="M229 723Q229 840 297 938L168 1067L260 1159L387 1030Q490 1100 604 1100Q718 1100 819 1030L948 1159L1040 1069L911 940Q981 836 981 723Q981 604 911 506L1038 379L948 289L819 416Q721
+348 604 348Q485 348 387 418L260 291L170 381L297 508Q229 604 229 723ZM358 723Q358 620 429 549T604 477Q708 477 781 548T854 723Q854 827 781 900T604 973Q502 973 430 901T358 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1128" d="M582 715L1073 1462H1260L727 692H958L930 559H633L600 399H897L868 266H573L516 0H362L418 266H127L156 399H446L479 559H188L217 692H442L240 1462H403L582 715Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M541 1556H680V780H541V1556ZM541 281H680V-496H541V281Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="995" d="M174 770Q174 971 412 1077Q293 1147 293 1280Q293 1407 396 1486T676 1565Q865 1565 997 1497L944 1374Q796 1434 678 1434Q576 1434 516 1394T455 1284Q455 1235 493 1201T655 1110Q755 1066
+804 1027T879 937T905 823Q905 726 844 643T672 504Q786 433 786 315Q786 163 672 78T354 -8Q178 -8 59 53V201Q115 167 195 145T352 123Q485 123 556 167T627 297Q627 345 577 386T424 473Q286 534 230 603T174 770ZM514 1010Q432 984 379 923T326 791Q326 721
+376 674T575 563Q655 607 702 670T750 801Q750 861 701 906T514 1010Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1135" d="M457 1378Q457 1424 485 1457T559 1491Q637 1491 637 1411Q637 1362 608 1328T539 1294Q504 1294 481 1316T457 1378ZM821 1378Q821 1424 849 1457T924 1491Q1001 1491 1001 1411Q1001 1362
+972 1328T903 1294Q868 1294 845 1316T821 1378Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M928 1059Q803 1059 737 972T670 731Q670 562 735 482T928 401Q1010 401 1139 444V322Q1073 294 1026 284T922 274Q730 274 625 393T520 733Q520 941 630 1063T930 1186Q1060 1186 1178
+1126L1118 1006Q1012 1059 928 1059ZM139 731Q139 931 239 1106T514 1382T891 1483Q1088 1483 1261 1386T1538 1114T1642 731Q1642 527 1542 355T1269 81T891 -20Q684 -20 509 83T237 360T139 731ZM244 731Q244 558 331 408T568 171T891 84Q1065 84 1214 171T1450
+406T1538 731Q1538 905 1451 1054T1216 1290T891 1378Q717 1378 568 1291T332 1056T244 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="686" d="M498 1479Q612 1479 651 1376H657L694 1466H780L641 801H549L563 918H559Q519 862 469 825T346 788Q269 788 220 848T170 1014Q170 1141 211 1248T328 1417T498 1479ZM381 891Q442 891
+493 940T579 1077T614 1245Q614 1307 586 1341T500 1376Q408 1376 346 1273T283 1030Q283 891 381 891Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="958" d="M88 584L479 958L557 877L260 549L432 162L319 113L88 555V584ZM483 541L850 946L936 877L653 512L811 162L698 113L483 510V541Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1128" d="M1047 793V264H907V651H127V793H1047Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="639" d="M55 469L90 627H569L535 469H55Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M139 731Q139 931 239 1106T514 1382T891 1483Q1088 1483 1261 1386T1538 1114T1642 731Q1642 527 1542 355T1269 81T891 -20Q684 -20 509 83T237 360T139 731ZM244 731Q244 558 331 408T568
+171T891 84Q1065 84 1214 171T1450 406T1538 731Q1538 905 1451 1054T1216 1290T891 1378Q717 1378 568 1291T332 1056T244 731ZM1194 915Q1194 837 1147 774T1014 676L1241 291H1092L885 643H772V291H645V1171H874Q1037 1171 1115 1108T1194 915ZM772 762H864Q1059
+762 1059 911Q1059 987 1012 1018T862 1049H772V762Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="782" d="M1012 1556H227L260 1688H1047L1012 1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M215 1171Q215 1299 305 1391T526 1483Q609 1483 681 1442T796 1328T838 1171Q838 1043 748 953T526 862Q395 862 305 952T215 1171ZM328 1171Q328 1091 386 1033T526 975Q609 975 666 1033T723
+1171Q723 1253 666 1311T526 1370Q446 1370 387 1312T328 1171Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1128" d="M516 643H127V784H516V1176H657V784H1047V643H657V256H516V643ZM127 0V141H1047V0H127Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="717" d="M657 586H96L119 692L383 920Q498 1020 541 1069T605 1162T625 1253Q625 1306 594 1338T504 1370Q414 1370 309 1290L250 1380Q375 1481 524 1481Q633 1481 695 1425T758 1274Q758 1175
+706 1095T508 889L287 702H682L657 586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="717" d="M549 1036Q618 1019 657 968T696 848Q696 716 605 643T352 569Q227 569 119 625V752Q244 680 358 680Q563 680 563 850Q563 987 385 987H295L317 1094H412Q509 1094 567 1135T625 1247Q625
+1307 591 1337T497 1368Q395 1368 301 1300L246 1393Q355 1481 514 1481Q628 1481 692 1425T756 1274Q756 1094 549 1040V1036Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1135" d="M532 1268Q588 1328 657 1419T764 1569H954V1548Q916 1499 814 1397T637 1241H532V1268Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1194" d="M295 266Q295 119 442 119Q531 119 614 178T762 349T862 618L967 1096H1130L897 0H758L782 205H770Q677 84 587 32T399 -20Q287 -20 236 76H227Q216 -2 205 -72T121 -492H-43L293 1096H461L313
+401Q295 309 295 266Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1206 -260H1092V1401H879V-260H764V559Q702 541 618 541Q402 541 301 666T199 1042Q199 1302 308 1429T649 1556H1206V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="518" d="M170 690Q170 767 210 812T322 858Q365 858 391 832T418 753Q418 682 378 635T270 587Q224 587 197 613T170 690Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="420" d="M211 -276Q211 -374 130 -433T-84 -492Q-125 -492 -170 -483V-383Q-132 -389 -102 -389Q72 -389 72 -279Q72 -233 33 -212T-66 -182L35 0H141L80 -121Q211 -159 211 -276Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="717" d="M537 1462H655L469 586H334L446 1112Q471 1215 504 1337Q479 1312 454 1291T309 1190L258 1280L537 1462Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="688" d="M745 1219Q745 1028 657 908T416 788Q303 788 236 859T168 1055Q168 1172 210 1270T327 1424T502 1479Q619 1479 682 1412T745 1219ZM500 1376Q398 1376 340 1289T281 1059Q281 974 319
+932T426 889Q520 889 578 977T637 1210Q637 1376 500 1376Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="958" d="M872 485L479 115L401 197L698 520L526 911L639 961L872 514V485ZM477 528L109 127L23 197L305 557L147 911L260 961L477 559V528Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1518" d="M1362 1462L276 0H123L1208 1462H1362ZM739 1462H857L671 586H536L648 1112Q673 1215 706 1337Q681 1312 656 1291T511 1190L460 1280L739 1462ZM1327 203H1198L1155 1H1028L1071 203H706L729
+304L1210 883H1343L1222 320H1349L1327 203ZM1095 320Q1164 642 1185 715Q1165 679 1075 566L870 320H1095Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1518" d="M683 1462H801L615 586H480L592 1112Q617 1215 650 1337Q625 1312 600 1291T455 1190L404 1280L683 1462ZM1305 1462L219 0H66L1151 1462H1305ZM1343 1H782L805 107L1069 335Q1184 435 1227
+484T1291 577T1311 668Q1311 721 1280 753T1190 785Q1100 785 995 705L936 795Q1061 896 1210 896Q1319 896 1381 840T1444 689Q1444 590 1392 510T1194 304L973 117H1368L1343 1Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1565" d="M773 1036Q842 1019 881 968T920 848Q920 716 829 643T576 569Q451 569 343 625V752Q468 680 582 680Q787 680 787 850Q787 987 609 987H519L541 1094H636Q733 1094 791 1135T849 1247Q849
+1307 815 1337T721 1368Q619 1368 525 1300L470 1393Q579 1481 738 1481Q852 1481 916 1425T980 1274Q980 1094 773 1040V1036ZM1512 1462L426 0H273L1358 1462H1512ZM1477 203H1348L1305 1H1178L1221 203H856L879 304L1360 883H1493L1372 320H1499L1477 203ZM1245
+320Q1314 642 1335 715Q1315 679 1225 566L1020 320H1245Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="874" d="M657 680Q635 550 585 468T420 293L325 218Q166 91 166 -57Q166 -150 217 -201T365 -252Q445 -252 519 -227T659 -170L721 -299Q631 -347 532 -373T346 -399Q178 -399 87 -316T-4 -78Q-4
+46 62 150T287 373Q419 471 459 525T522 680H657ZM760 1010Q760 933 720 888T608 842Q565 842 539 868T512 946Q512 1017 552 1064T659 1112Q706 1112 733 1087T760 1010Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1137" d="M813 465H317L72 0H-117L682 1462H856L1040 0H870L813 465ZM795 621L760 920Q736 1099 731 1270Q694 1182 651 1095T401 621H795ZM863 1579H759Q698 1640 631 1733T535 1886V1907H716Q759 1771
+863 1604V1579Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1137" d="M813 465H317L72 0H-117L682 1462H856L1040 0H870L813 465ZM795 621L760 920Q736 1099 731 1270Q694 1182 651 1095T401 621H795ZM679 1606Q735 1666 804 1757T911 1907H1101V1886Q1063 1837
+961 1735T784 1579H679V1606Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1137" d="M813 465H317L72 0H-117L682 1462H856L1040 0H870L813 465ZM795 621L760 920Q736 1099 731 1270Q694 1182 651 1095T401 621H795ZM1080 1579H977Q920 1627 816 1768Q682 1649 574 1579H465V1606Q610
+1739 669 1803T752 1907H910Q947 1808 1038 1672L1080 1606V1579Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1137" d="M813 465H317L72 0H-117L682 1462H856L1040 0H870L813 465ZM795 621L760 920Q736 1099 731 1270Q694 1182 651 1095T401 621H795ZM934 1581Q894 1581 857 1598T784 1637T715 1676T649 1694Q605
+1694 580 1666T532 1579H432Q490 1837 663 1837Q707 1837 746 1819T821 1780T888 1740T946 1722Q990 1722 1015 1749T1067 1839H1167Q1101 1581 934 1581Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1137" d="M813 465H317L72 0H-117L682 1462H856L1040 0H870L813 465ZM795 621L760 920Q736 1099 731 1270Q694 1182 651 1095T401 621H795ZM523 1716Q523 1762 551 1795T625 1829Q703 1829 703 1749Q703
+1700 674 1666T605 1632Q570 1632 547 1654T523 1716ZM887 1716Q887 1762 915 1795T990 1829Q1067 1829 1067 1749Q1067 1700 1038 1666T969 1632Q934 1632 911 1654T887 1716Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1137" d="M813 465H317L72 0H-117L682 1462H856L1040 0H870L813 465ZM795 621L760 920Q736 1099 731 1270Q694 1182 651 1095T401 621H795ZM991 1585Q991 1486 931 1428T772 1370Q671 1370 612 1427T553
+1583Q553 1677 615 1735T772 1794Q873 1794 932 1737T991 1585ZM887 1583Q887 1636 855 1667T772 1698Q723 1698 690 1667T657 1583Q657 1529 686 1499T772 1468Q823 1468 855 1498T887 1583Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1673" d="M1448 0H711L809 465H371L78 0H-119L819 1462H1757L1724 1309H1159L1059 840H1587L1559 690H1030L915 152H1481L1448 0ZM840 621L987 1309H903L469 621H840Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1198" d="M942 1331Q768 1331 631 1234T413 950T332 541Q332 354 429 243T698 131Q837 131 1020 188V39Q934 8 856 -6T668 -20Q426 -20 288 129T150 537Q150 798 255 1022T539 1365T942 1483Q1139
+1483 1290 1403L1221 1262Q1083 1331 942 1331ZM758 -276Q758 -374 677 -433T463 -492Q422 -492 377 -483V-383Q415 -389 445 -389Q619 -389 619 -279Q619 -233 580 -212T481 -182L582 0H688L627 -121Q758 -159 758 -276Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1047" d="M821 0H86L395 1462H1130L1098 1309H532L434 840H961L932 688H403L289 152H854L821 0ZM898 1579H794Q733 1640 666 1733T570 1886V1907H751Q794 1771 898 1604V1579Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1047" d="M821 0H86L395 1462H1130L1098 1309H532L434 840H961L932 688H403L289 152H854L821 0ZM657 1606Q713 1666 782 1757T889 1907H1079V1886Q1041 1837 939 1735T762 1579H657V1606Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1047" d="M821 0H86L395 1462H1130L1098 1309H532L434 840H961L932 688H403L289 152H854L821 0ZM1084 1579H981Q924 1627 820 1768Q686 1649 578 1579H469V1606Q614 1739 673 1803T756 1907H914Q951
+1808 1042 1672L1084 1606V1579Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1047" d="M821 0H86L395 1462H1130L1098 1309H532L434 840H961L932 688H403L289 152H854L821 0ZM523 1716Q523 1762 551 1795T625 1829Q703 1829 703 1749Q703 1700 674 1666T605 1632Q570 1632 547
+1654T523 1716ZM887 1716Q887 1762 915 1795T990 1829Q1067 1829 1067 1749Q1067 1700 1038 1666T969 1632Q934 1632 911 1654T887 1716Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="559" d="M86 0L397 1462H565L254 0H86ZM593 1579H489Q428 1640 361 1733T265 1886V1907H446Q489 1771 593 1604V1579Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="559" d="M86 0L397 1462H565L254 0H86ZM412 1606Q468 1666 537 1757T644 1907H834V1886Q796 1837 694 1735T517 1579H412V1606Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="559" d="M86 0L397 1462H565L254 0H86ZM808 1579H705Q648 1627 544 1768Q410 1649 302 1579H193V1606Q338 1739 397 1803T480 1907H638Q675 1808 766 1672L808 1606V1579Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="559" d="M86 0L397 1462H565L254 0H86ZM265 1716Q265 1762 293 1795T367 1829Q445 1829 445 1749Q445 1700 416 1666T347 1632Q312 1632 289 1654T265 1716ZM629 1716Q629 1762 657 1795T732 1829Q809
+1829 809 1749Q809 1700 780 1666T711 1632Q676 1632 653 1654T629 1716Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1364" d="M1300 877Q1300 616 1195 416T895 108T438 0H86L221 649H72L104 799H254L395 1462H737Q1013 1462 1156 1313T1300 877ZM449 147Q651 147 804 238T1038 497T1120 879Q1120 1094 1017 1204T715 1315H537L426
+799H756L723 649H393L287 147H449Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1438" d="M1139 0H958L498 1223H492Q460 1002 418 805L246 0H84L393 1462H573L1032 242H1038Q1068 466 1110 647L1284 1462H1448L1139 0ZM1102 1581Q1062 1581 1025 1598T952 1637T883 1676T817 1694Q773
+1694 748 1666T700 1579H600Q658 1837 831 1837Q875 1837 914 1819T989 1780T1056 1740T1114 1722Q1158 1722 1183 1749T1235 1839H1335Q1269 1581 1102 1581Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1475" d="M1411 907Q1411 638 1323 426T1071 97T692 -20Q436 -20 293 129T150 549Q150 813 246 1031T509 1367T887 1485Q1131 1485 1271 1331T1411 907ZM874 1333Q717 1333 593 1232T401 951T332 553Q332
+354 430 243T696 131Q848 131 968 228T1159 508T1229 911Q1229 1110 1135 1221T874 1333ZM1007 1579H903Q842 1640 775 1733T679 1886V1907H860Q903 1771 1007 1604V1579Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1475" d="M1411 907Q1411 638 1323 426T1071 97T692 -20Q436 -20 293 129T150 549Q150 813 246 1031T509 1367T887 1485Q1131 1485 1271 1331T1411 907ZM874 1333Q717 1333 593 1232T401 951T332 553Q332
+354 430 243T696 131Q848 131 968 228T1159 508T1229 911Q1229 1110 1135 1221T874 1333ZM821 1606Q877 1666 946 1757T1053 1907H1243V1886Q1205 1837 1103 1735T926 1579H821V1606Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1475" d="M1411 907Q1411 638 1323 426T1071 97T692 -20Q436 -20 293 129T150 549Q150 813 246 1031T509 1367T887 1485Q1131 1485 1271 1331T1411 907ZM874 1333Q717 1333 593 1232T401 951T332
+553Q332 354 430 243T696 131Q848 131 968 228T1159 508T1229 911Q1229 1110 1135 1221T874 1333ZM1227 1579H1124Q1067 1627 963 1768Q829 1649 721 1579H612V1606Q757 1739 816 1803T899 1907H1057Q1094 1808 1185 1672L1227 1606V1579Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1475" d="M1411 907Q1411 638 1323 426T1071 97T692 -20Q436 -20 293 129T150 549Q150 813 246 1031T509 1367T887 1485Q1131 1485 1271 1331T1411 907ZM874 1333Q717 1333 593 1232T401 951T332 553Q332
+354 430 243T696 131Q848 131 968 228T1159 508T1229 911Q1229 1110 1135 1221T874 1333ZM1067 1581Q1027 1581 990 1598T917 1637T848 1676T782 1694Q738 1694 713 1666T665 1579H565Q623 1837 796 1837Q840 1837 879 1819T954 1780T1021 1740T1079 1722Q1123
+1722 1148 1749T1200 1839H1300Q1234 1581 1067 1581Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1475" d="M1411 907Q1411 638 1323 426T1071 97T692 -20Q436 -20 293 129T150 549Q150 813 246 1031T509 1367T887 1485Q1131 1485 1271 1331T1411 907ZM874 1333Q717 1333 593 1232T401 951T332
+553Q332 354 430 243T696 131Q848 131 968 228T1159 508T1229 911Q1229 1110 1135 1221T874 1333ZM664 1716Q664 1762 692 1795T766 1829Q844 1829 844 1749Q844 1700 815 1666T746 1632Q711 1632 688 1654T664 1716ZM1028 1716Q1028 1762 1056 1795T1131 1829Q1208
+1829 1208 1749Q1208 1700 1179 1666T1110 1632Q1075 1632 1052 1654T1028 1716Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1128" d="M487 723L168 1044L266 1143L586 823L909 1143L1008 1047L684 723L1006 401L909 305L586 625L266 307L170 403L487 723Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1475" d="M1411 907Q1411 638 1323 426T1071 97T692 -20Q492 -20 360 76L231 -84L119 8L256 178Q150 314 150 549Q150 813 246 1031T509 1367T887 1485Q986 1485 1065 1458T1217 1374L1348 1540L1462
+1448L1313 1264Q1361 1202 1386 1108T1411 907ZM874 1333Q717 1333 593 1232T401 951T332 553Q332 418 373 326L1110 1245Q1020 1333 874 1333ZM1229 911Q1229 1029 1196 1116L463 205Q554 131 696 131Q848 131 968 228T1159 508T1229 911Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1384" d="M1407 1462L1202 496Q1147 233 1005 107T616 -20Q386 -20 275 84T164 383Q164 464 188 584L377 1462H547L356 571Q334 465 334 383Q334 266 407 199T625 131Q797 131 892 218T1032 508L1237
+1462H1407ZM991 1579H887Q826 1640 759 1733T663 1886V1907H844Q887 1771 991 1604V1579Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1384" d="M1407 1462L1202 496Q1147 233 1005 107T616 -20Q386 -20 275 84T164 383Q164 464 188 584L377 1462H547L356 571Q334 465 334 383Q334 266 407 199T625 131Q797 131 892 218T1032 508L1237
+1462H1407ZM823 1606Q879 1666 948 1757T1055 1907H1245V1886Q1207 1837 1105 1735T928 1579H823V1606Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1384" d="M1407 1462L1202 496Q1147 233 1005 107T616 -20Q386 -20 275 84T164 383Q164 464 188 584L377 1462H547L356 571Q334 465 334 383Q334 266 407 199T625 131Q797 131 892 218T1032 508L1237
+1462H1407ZM1217 1579H1114Q1057 1627 953 1768Q819 1649 711 1579H602V1606Q747 1739 806 1803T889 1907H1047Q1084 1808 1175 1672L1217 1606V1579Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1384" d="M1407 1462L1202 496Q1147 233 1005 107T616 -20Q386 -20 275 84T164 383Q164 464 188 584L377 1462H547L356 571Q334 465 334 383Q334 266 407 199T625 131Q797 131 892 218T1032 508L1237
+1462H1407ZM643 1716Q643 1762 671 1795T745 1829Q823 1829 823 1749Q823 1700 794 1666T725 1632Q690 1632 667 1654T643 1716ZM1007 1716Q1007 1762 1035 1795T1110 1829Q1187 1829 1187 1749Q1187 1700 1158 1666T1089 1632Q1054 1632 1031 1654T1007 1716Z"
+/>
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1030" d="M537 715L1026 1462H1219L592 541L479 0H307L426 549L188 1462H358L537 715ZM616 1606Q672 1666 741 1757T848 1907H1038V1886Q1000 1837 898 1735T721 1579H616V1606Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1159" d="M1106 829Q1106 581 942 450T459 319H326L256 0H86L395 1462H565L512 1206H672Q885 1206 995 1111T1106 829ZM354 465H489Q704 465 817 556T930 823Q930 949 860 1004T645 1059H479L354 465Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1182" d="M-133 -492Q-202 -492 -256 -471V-328Q-195 -350 -145 -350Q-80 -350 -38 -303T27 -145L307 1169Q350 1369 463 1468T770 1567Q932 1567 1022 1496T1112 1300Q1112 1243 1091 1194T1030
+1099T851 948Q741 865 741 797Q741 741 836 675Q883 641 937 588T1016 478T1042 354Q1042 179 934 80T641 -20Q466 -20 373 51V211Q424 170 491 145T621 119Q734 119 802 177T870 336Q870 376 860 407T826 466T737 549Q649 618 615 673T580 788Q580 841 598 884T648
+962T772 1067Q852 1123 883 1154T931 1219T948 1290Q948 1354 896 1390T754 1427Q635 1427 568 1365T473 1174L199 -129Q159 -318 78 -405T-133 -492Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1157" d="M639 1116Q731 1116 803 1067T915 924H926L993 1096H1120L887 0H754L780 209H772Q593 -20 395 -20Q256 -20 177 79T98 350Q98 558 169 736T365 1015T639 1116ZM449 119Q546 119 642 211T798
+452T858 750Q858 853 802 914T655 975Q551 975 462 889T321 656T270 346Q270 232 317 176T449 119ZM1080 1241H976Q915 1302 848 1395T752 1548V1569H933Q976 1433 1080 1266V1241Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1157" d="M639 1116Q731 1116 803 1067T915 924H926L993 1096H1120L887 0H754L780 209H772Q593 -20 395 -20Q256 -20 177 79T98 350Q98 558 169 736T365 1015T639 1116ZM449 119Q546 119 642 211T798
+452T858 750Q858 853 802 914T655 975Q551 975 462 889T321 656T270 346Q270 232 317 176T449 119ZM600 1268Q656 1328 725 1419T832 1569H1022V1548Q984 1499 882 1397T705 1241H600V1268Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1157" d="M639 1116Q731 1116 803 1067T915 924H926L993 1096H1120L887 0H754L780 209H772Q593 -20 395 -20Q256 -20 177 79T98 350Q98 558 169 736T365 1015T639 1116ZM449 119Q546 119 642 211T798
+452T858 750Q858 853 802 914T655 975Q551 975 462 889T321 656T270 346Q270 232 317 176T449 119ZM1261 1241H1158Q1101 1289 997 1430Q863 1311 755 1241H646V1268Q791 1401 850 1465T933 1569H1091Q1128 1470 1219 1334L1261 1268V1241Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1157" d="M639 1116Q731 1116 803 1067T915 924H926L993 1096H1120L887 0H754L780 209H772Q593 -20 395 -20Q256 -20 177 79T98 350Q98 558 169 736T365 1015T639 1116ZM449 119Q546 119 642 211T798
+452T858 750Q858 853 802 914T655 975Q551 975 462 889T321 656T270 346Q270 232 317 176T449 119ZM856 1243Q816 1243 779 1260T706 1299T637 1338T571 1356Q527 1356 502 1328T454 1241H354Q412 1499 585 1499Q629 1499 668 1481T743 1442T810 1402T868 1384Q912
+1384 937 1411T989 1501H1089Q1023 1243 856 1243Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1157" d="M639 1116Q731 1116 803 1067T915 924H926L993 1096H1120L887 0H754L780 209H772Q593 -20 395 -20Q256 -20 177 79T98 350Q98 558 169 736T365 1015T639 1116ZM449 119Q546 119 642 211T798
+452T858 750Q858 853 802 914T655 975Q551 975 462 889T321 656T270 346Q270 232 317 176T449 119ZM710 1378Q710 1424 738 1457T812 1491Q890 1491 890 1411Q890 1362 861 1328T792 1294Q757 1294 734 1316T710 1378ZM1074 1378Q1074 1424 1102 1457T1177 1491Q1254
+1491 1254 1411Q1254 1362 1225 1328T1156 1294Q1121 1294 1098 1316T1074 1378Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1157" d="M639 1116Q731 1116 803 1067T915 924H926L993 1096H1120L887 0H754L780 209H772Q593 -20 395 -20Q256 -20 177 79T98 350Q98 558 169 736T365 1015T639 1116ZM449 119Q546 119 642 211T798
+452T858 750Q858 853 802 914T655 975Q551 975 462 889T321 656T270 346Q270 232 317 176T449 119ZM1207 1456Q1207 1357 1147 1299T988 1241Q887 1241 828 1298T769 1454Q769 1548 831 1606T988 1665Q1089 1665 1148 1608T1207 1456ZM1103 1454Q1103 1507 1071
+1538T988 1569Q939 1569 906 1538T873 1454Q873 1400 902 1370T988 1339Q1039 1339 1071 1369T1103 1454Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1669" d="M1165 -20Q1057 -20 976 19T854 139L823 0H709L735 209H727Q618 77 536 29T358 -20Q236 -20 167 79T98 348Q98 554 168 733T360 1014T623 1116Q705 1116 768 1068T870 924H881L948 1096H1057L1026
+950Q1149 1116 1358 1116Q1477 1116 1550 1048T1624 864Q1624 682 1458 581T985 479H946L942 399Q942 268 1004 195T1198 121Q1253 121 1314 137T1493 205V55Q1329 -20 1165 -20ZM412 119Q507 119 600 210T753 451T813 750Q813 853 768 914T645 975Q546 975 458
+889T320 657T270 348Q270 234 307 177T412 119ZM1325 973Q1208 973 1114 879T973 618H987Q1213 618 1335 676T1458 846Q1458 907 1423 940T1325 973Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="922" d="M506 -20Q312 -20 205 87T98 389Q98 589 172 758T376 1021T670 1116Q807 1116 938 1065L891 924Q771 975 672 975Q560 975 468 899T323 686T270 389Q270 261 336 190T520 119Q592 119 656
+139T782 186V43Q658 -20 506 -20ZM592 -276Q592 -374 511 -433T297 -492Q256 -492 211 -483V-383Q249 -389 279 -389Q453 -389 453 -279Q453 -233 414 -212T315 -182L416 0H522L461 -121Q592 -159 592 -276Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1010" d="M492 -20Q308 -20 203 89T98 391Q98 579 172 751T370 1020T641 1116Q794 1116 871 1050T948 864Q948 684 782 582T307 479H274L270 399Q270 268 331 195T522 121Q585 121 651 139T817 205V59Q723
+15 651 -2T492 -20ZM631 973Q528 973 438 879T299 618H311Q539 618 660 677T782 850Q782 903 746 938T631 973ZM1033 1241H929Q868 1302 801 1395T705 1548V1569H886Q929 1433 1033 1266V1241Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1010" d="M492 -20Q308 -20 203 89T98 391Q98 579 172 751T370 1020T641 1116Q794 1116 871 1050T948 864Q948 684 782 582T307 479H274L270 399Q270 268 331 195T522 121Q585 121 651 139T817 205V59Q723
+15 651 -2T492 -20ZM631 973Q528 973 438 879T299 618H311Q539 618 660 677T782 850Q782 903 746 938T631 973ZM585 1268Q641 1328 710 1419T817 1569H1007V1548Q969 1499 867 1397T690 1241H585V1268Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1010" d="M492 -20Q308 -20 203 89T98 391Q98 579 172 751T370 1020T641 1116Q794 1116 871 1050T948 864Q948 684 782 582T307 479H274L270 399Q270 268 331 195T522 121Q585 121 651 139T817
+205V59Q723 15 651 -2T492 -20ZM631 973Q528 973 438 879T299 618H311Q539 618 660 677T782 850Q782 903 746 938T631 973ZM1222 1241H1119Q1062 1289 958 1430Q824 1311 716 1241H607V1268Q752 1401 811 1465T894 1569H1052Q1089 1470 1180 1334L1222 1268V1241Z"
+/>
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1010" d="M492 -20Q308 -20 203 89T98 391Q98 579 172 751T370 1020T641 1116Q794 1116 871 1050T948 864Q948 684 782 582T307 479H274L270 399Q270 268 331 195T522 121Q585 121 651 139T817 205V59Q723
+15 651 -2T492 -20ZM631 973Q528 973 438 879T299 618H311Q539 618 660 677T782 850Q782 903 746 938T631 973ZM669 1378Q669 1424 697 1457T771 1491Q849 1491 849 1411Q849 1362 820 1328T751 1294Q716 1294 693 1316T669 1378ZM1033 1378Q1033 1424 1061 1457T1136
+1491Q1213 1491 1213 1411Q1213 1362 1184 1328T1115 1294Q1080 1294 1057 1316T1033 1378Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="520" d="M227 0H59L293 1096H461L227 0ZM492 1241H388Q327 1302 260 1395T164 1548V1569H345Q388 1433 492 1266V1241Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="520" d="M227 0H59L293 1096H461L227 0ZM324 1268Q380 1328 449 1419T556 1569H746V1548Q708 1499 606 1397T429 1241H324V1268Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="520" d="M227 0H59L293 1096H461L227 0ZM708 1241H605Q548 1289 444 1430Q310 1311 202 1241H93V1268Q238 1401 297 1465T380 1569H538Q575 1470 666 1334L708 1268V1241Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="520" d="M227 0H59L293 1096H461L227 0ZM161 1378Q161 1424 189 1457T263 1491Q341 1491 341 1411Q341 1362 312 1328T243 1294Q208 1294 185 1316T161 1378ZM525 1378Q525 1424 553 1457T628 1491Q705
+1491 705 1411Q705 1362 676 1328T607 1294Q572 1294 549 1316T525 1378Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1165" d="M676 1343Q610 1401 530 1456L625 1573Q743 1489 813 1419L1073 1565L1137 1460L897 1327Q984 1212 1023 1087T1063 817Q1063 564 992 370T789 78T477 -20Q295 -20 193 84T90 373Q90 533 157 671T344
+888T612 967Q717 967 793 922T905 797L911 799V816Q911 952 875 1056T764 1253L494 1104L438 1212L676 1343ZM487 121Q594 121 677 177T811 345T862 571Q862 689 797 758T618 827Q509 827 429 770T306 609T262 377Q262 251 319 186T487 121Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1182" d="M729 0L877 692Q897 796 897 836Q897 899 862 937T748 975Q659 975 575 915T426 744T328 475L227 0H59L293 1096H432L410 893H420Q516 1015 605 1065T791 1116Q918 1116 991 1047T1065 852Q1065
+773 1042 672L899 0H729ZM871 1243Q831 1243 794 1260T721 1299T652 1338T586 1356Q542 1356 517 1328T469 1241H369Q427 1499 600 1499Q644 1499 683 1481T758 1442T825 1402T883 1384Q927 1384 952 1411T1004 1501H1104Q1038 1243 871 1243Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1149" d="M643 1110Q833 1110 943 998T1053 688Q1053 500 981 333T786 75T508 -16Q316 -16 207 97T98 406Q98 596 171 763T368 1020T643 1110ZM879 711Q879 826 817 897T647 969Q538 969 452 895T318
+690T270 397Q270 266 333 195T516 123Q620 123 703 196T832 403T879 711ZM1054 1241H950Q889 1302 822 1395T726 1548V1569H907Q950 1433 1054 1266V1241Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1149" d="M643 1110Q833 1110 943 998T1053 688Q1053 500 981 333T786 75T508 -16Q316 -16 207 97T98 406Q98 596 171 763T368 1020T643 1110ZM879 711Q879 826 817 897T647 969Q538 969 452 895T318
+690T270 397Q270 266 333 195T516 123Q620 123 703 196T832 403T879 711ZM589 1268Q645 1328 714 1419T821 1569H1011V1548Q973 1499 871 1397T694 1241H589V1268Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1149" d="M643 1110Q833 1110 943 998T1053 688Q1053 500 981 333T786 75T508 -16Q316 -16 207 97T98 406Q98 596 171 763T368 1020T643 1110ZM879 711Q879 826 817 897T647 969Q538 969 452 895T318
+690T270 397Q270 266 333 195T516 123Q620 123 703 196T832 403T879 711ZM1253 1241H1150Q1093 1289 989 1430Q855 1311 747 1241H638V1268Q783 1401 842 1465T925 1569H1083Q1120 1470 1211 1334L1253 1268V1241Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1149" d="M643 1110Q833 1110 943 998T1053 688Q1053 500 981 333T786 75T508 -16Q316 -16 207 97T98 406Q98 596 171 763T368 1020T643 1110ZM879 711Q879 826 817 897T647 969Q538 969 452 895T318
+690T270 397Q270 266 333 195T516 123Q620 123 703 196T832 403T879 711ZM844 1243Q804 1243 767 1260T694 1299T625 1338T559 1356Q515 1356 490 1328T442 1241H342Q400 1499 573 1499Q617 1499 656 1481T731 1442T798 1402T856 1384Q900 1384 925 1411T977 1501H1077Q1011
+1243 844 1243Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1149" d="M643 1110Q833 1110 943 998T1053 688Q1053 500 981 333T786 75T508 -16Q316 -16 207 97T98 406Q98 596 171 763T368 1020T643 1110ZM879 711Q879 826 817 897T647 969Q538 969 452 895T318
+690T270 397Q270 266 333 195T516 123Q620 123 703 196T832 403T879 711ZM689 1378Q689 1424 717 1457T791 1491Q869 1491 869 1411Q869 1362 840 1328T771 1294Q736 1294 713 1316T689 1378ZM1053 1378Q1053 1424 1081 1457T1156 1491Q1233 1491 1233 1411Q1233
+1362 1204 1328T1135 1294Q1100 1294 1077 1316T1053 1378Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1128" d="M127 651V793H1047V651H127ZM475 373Q475 494 586 494Q639 494 668 464T698 373Q698 315 668 284T586 252Q534 252 505 283T475 373ZM475 1071Q475 1192 586 1192Q639 1192 668 1162T698 1071Q698
+1013 668 982T586 950Q534 950 505 981T475 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1149" d="M1047 705Q1047 516 978 345T786 79T510 -16Q364 -16 264 49L166 -76L61 6L170 141Q102 244 102 406Q102 600 175 767T371 1022T643 1110Q789 1110 895 1042L999 1171L1104 1092L985 963Q1047
+866 1047 705ZM647 971Q539 971 452 898T314 696T264 416Q264 324 281 279L799 924Q745 971 647 971ZM885 688Q885 772 872 807L358 166Q415 121 516 121Q619 121 704 192T837 393T885 688Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1182" d="M451 1096L301 401Q283 312 283 262Q283 119 430 119Q518 119 603 179T753 351T852 621L952 1096H1118L887 0H748L770 203H758Q660 78 571 29T387 -20Q259 -20 186 49T113 248Q113 310 135
+420L281 1096H451ZM1056 1241H952Q891 1302 824 1395T728 1548V1569H909Q952 1433 1056 1266V1241Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1182" d="M451 1096L301 401Q283 312 283 262Q283 119 430 119Q518 119 603 179T753 351T852 621L952 1096H1118L887 0H748L770 203H758Q660 78 571 29T387 -20Q259 -20 186 49T113 248Q113 310 135
+420L281 1096H451ZM636 1268Q692 1328 761 1419T868 1569H1058V1548Q1020 1499 918 1397T741 1241H636V1268Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1182" d="M451 1096L301 401Q283 312 283 262Q283 119 430 119Q518 119 603 179T753 351T852 621L952 1096H1118L887 0H748L770 203H758Q660 78 571 29T387 -20Q259 -20 186 49T113 248Q113 310
+135 420L281 1096H451ZM1024 1241H921Q864 1289 760 1430Q626 1311 518 1241H409V1268Q554 1401 613 1465T696 1569H854Q891 1470 982 1334L1024 1268V1241Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1182" d="M451 1096L301 401Q283 312 283 262Q283 119 430 119Q518 119 603 179T753 351T852 621L952 1096H1118L887 0H748L770 203H758Q660 78 571 29T387 -20Q259 -20 186 49T113 248Q113 310 135
+420L281 1096H451ZM457 1378Q457 1424 485 1457T559 1491Q637 1491 637 1411Q637 1362 608 1328T539 1294Q504 1294 481 1316T457 1378ZM821 1378Q821 1424 849 1457T924 1491Q1001 1491 1001 1411Q1001 1362 972 1328T903 1294Q868 1294 845 1316T821 1378Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="946" d="M98 1096H266L340 551Q350 482 359 348T369 131H375Q410 218 462 331T539 487L864 1096H1042L346 -186Q253 -358 162 -425T-57 -492Q-129 -492 -197 -471V-336Q-134 -354 -66 -354Q16 -354 74
+-304T188 -154L264 -18L98 1096ZM756 1268Q812 1328 881 1419T988 1569H1178V1548Q1140 1499 1038 1397T861 1241H756V1268Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1182" d="M545 -20Q447 -20 373 31T260 170H250Q242 66 225 -6L123 -492H-43L389 1556H557Q462 1115 442 1034T403 885H412Q513 1010 601 1062T784 1114Q923 1114 1002 1017T1081 743Q1081 531 1012 354T821
+79T545 -20ZM731 975Q635 975 536 880T378 641T319 346Q319 236 374 178T535 119Q634 119 719 200T857 430T909 748Q909 975 731 975Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="946" d="M98 1096H266L340 551Q350 482 359 348T369 131H375Q410 218 462 331T539 487L864 1096H1042L346 -186Q253 -358 162 -425T-57 -492Q-129 -492 -197 -471V-336Q-134 -354 -66 -354Q16 -354
+74 -304T188 -154L264 -18L98 1096ZM591 1378Q591 1424 619 1457T693 1491Q771 1491 771 1411Q771 1362 742 1328T673 1294Q638 1294 615 1316T591 1378ZM955 1378Q955 1424 983 1457T1058 1491Q1135 1491 1135 1411Q1135 1362 1106 1328T1037 1294Q1002 1294 979
+1316T955 1378Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="983" d="M55 469L90 629H913L879 469H55Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="1966" d="M55 469L90 629H1896L1862 469H55Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="348" d="M129 961L123 983Q221 1194 393 1462H520Q373 1117 317 961H129Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="348" d="M516 1462L524 1440Q484 1349 413 1222T254 961H125Q259 1259 328 1462H516Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="492" d="M291 238L299 215Q186 -20 29 -264H-100Q26 22 104 238H291Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="719" d="M500 961L492 983Q572 1164 764 1462H891Q729 1083 688 961H500ZM129 961L123 983Q221 1194 393 1462H520Q373 1117 317 961H129Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="719" d="M516 1462L524 1440Q484 1349 413 1222T254 961H125Q259 1259 328 1462H516ZM885 1462L895 1440Q801 1234 621 961H494Q551 1087 609 1233T696 1462H885Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="858" d="M291 238L299 215Q186 -20 29 -264H-100Q26 22 104 238H291ZM659 238L668 215Q573 10 397 -264H268Q408 52 471 238H659Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="774" d="M199 684Q199 829 272 915T471 1001Q563 1001 610 952T657 811Q657 670 583 581T381 492Q292 492 246 541T199 684Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="580" d="M88 578L479 958L557 877L260 543L432 162L319 113L88 549V578Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="580" d="M492 496L100 115L23 197L319 530L147 911L260 961L492 524V496Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.ttf b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.ttf
new file mode 100644
index 0000000..c90da48
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.ttf differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.woff b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.woff
new file mode 100644
index 0000000..9e17567
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.woff differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.woff2 b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.woff2
new file mode 100644
index 0000000..9a96c63
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.woff2 differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.eot b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.eot
new file mode 100644
index 0000000..cf3a6ff
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.eot differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.svg b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.svg
new file mode 100644
index 0000000..0461c39
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.svg
@@ -0,0 +1,19039 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1092" ><font-face
+    font-family="Open Sans Light"
+    units-per-em="2048"
+    panose-1="2 11 3 6 3 5 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="502" d="M248 377H186L389 1462H508L248 377ZM80 57Q80 113 105 145T174 178Q240 178 240 106Q240 53 215 19T147 -16Q80 -16 80 57Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="721" d="M455 1462L309 934H248L328 1462H455ZM784 1462L639 934H578L657 1462H784Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M389 530L508 928H211L219 1008H530L664 1462H754L618 1008H983L1118 1462H1204L1069 1008H1354L1346 928H1044L926 530H1229L1221 451H901L768 0H678L813 451H453L319 0H231L365 451H82L90
+530H389ZM475 530H838L958 928H596L475 530Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1128" d="M928 467Q928 316 818 224T520 121L467 -119H385L436 121Q357 123 278 139T141 182V276Q206 242 294 223T455 203L565 715Q455 768 412 806T346 893T322 1010Q322 1165 427 1260T700 1360L741 1552H821L780
+1360Q929 1355 1057 1292L1022 1214Q912 1275 766 1284L657 770Q781 710 829 671T903 582T928 467ZM537 203Q679 210 760 277T842 461Q842 537 794 590T637 688L537 203ZM686 1284Q552 1275 481 1204T410 1018Q410 940 447 890T584 793L686 1284Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1556" d="M1458 1462L319 0H213L1348 1462H1458ZM1520 612Q1520 437 1470 285T1334 55T1137 -23Q1025 -23 965 52T905 276Q905 436 957 588T1095 817T1288 895Q1409 895 1464 824T1520 612ZM1284 821Q1204
+821 1138 749T1031 546T991 283Q991 167 1032 109T1145 51Q1275 51 1354 217T1434 604Q1434 713 1398 767T1284 821ZM760 1198Q760 1023 710 871T574 641T377 563Q265 563 205 638T145 862Q145 1022 197 1174T335 1403T528 1481Q760 1481 760 1198ZM524 1407Q445
+1407 379 1336T272 1133T231 868Q231 753 272 695T385 637Q469 637 533 709T636 913T674 1190Q674 1299 638 1353T524 1407Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1331" d="M748 1395Q623 1395 554 1327T485 1135Q485 1003 594 854Q797 943 873 1017T950 1200Q950 1291 894 1343T748 1395ZM465 63Q573 63 676 105T899 252L547 745Q383 666 315 611T212 487T176
+328Q176 209 254 136T465 63ZM78 324Q78 486 177 601T502 817L461 884Q383 1012 383 1135Q383 1292 484 1388T748 1485Q893 1485 975 1409T1057 1202Q1057 1117 1016 1048T895 920T639 782L969 319Q1042 394 1104 495T1196 682H1307Q1205 435 1022 246L1206 0H1083L952
+184Q831 76 710 28T444 -20Q277 -20 178 74T78 324Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="403" d="M461 1462L315 934H254L334 1462H461Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="526" d="M104 270Q104 613 226 903T608 1462H713Q454 1186 329 894T203 276Q203 -41 330 -324H250Q104 -62 104 270Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="526" d="M453 868Q453 523 330 232T-51 -324H-156Q101 -50 227 242T354 862Q354 1010 326 1156T227 1462H307Q453 1200 453 868Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1137" d="M834 1540L725 1135L1163 1143L1155 1036L739 1065L920 664L805 627L670 1044L385 696L307 774L625 1092L233 1217L272 1319L666 1151L713 1559L834 1540Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1128" d="M563 672H162V772H563V1176H664V772H1065V672H664V272H563V672Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="451" d="M250 238L258 215Q224 123 144 -18T-16 -264H-90Q-11 -132 51 7T139 238H250Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="629" d="M82 502L100 592H557L541 502H82Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="485" d="M82 55Q82 111 107 143T176 176Q242 176 242 104Q242 51 217 17T150 -18Q82 -18 82 55Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="641" d="M827 1462L10 0H-100L715 1462H827Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1128" d="M1075 1016Q1075 815 1034 611T918 265T734 52T492 -20Q316 -20 228 106T139 494Q139 680 183 875T307 1209T494 1416T735 1485Q1075 1485 1075 1016ZM723 1397Q589 1397 482 1284T308 955T242 504Q242
+282 304 175T502 68Q641 68 746 180T912 517T973 1006Q973 1205 914 1301T723 1397Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1128" d="M537 0H432L657 1055Q676 1147 731 1348Q689 1312 656 1287T406 1126L354 1204L760 1462H850L537 0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1128" d="M909 0H39L61 104L510 506Q708 683 794 782T920 969T961 1149Q961 1261 895 1327T698 1393Q522 1393 365 1264L311 1337Q491 1483 705 1483Q878 1483 973 1398T1069 1161Q1069 1051 1026 953T884 741T573
+438L190 100V96H926L909 0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1128" d="M1049 1174Q1049 1012 943 899T657 756V752Q774 728 842 637T911 410Q911 276 847 177T668 29T393 -20Q297 -20 209 0T55 53V154Q227 68 399 68Q596 68 702 157T809 410Q809 555 720 633T473 711H356L377
+807H487Q696 807 820 902T944 1161Q944 1275 881 1336T692 1397Q525 1397 348 1266L299 1341Q383 1408 487 1445T705 1483Q866 1483 957 1401T1049 1174Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1128" d="M1071 371H807L727 0H631L711 371H23L43 467L924 1477H1042L827 459H1092L1071 371ZM729 459Q808 828 848 1017T934 1372H930Q864 1281 801 1206L150 459H729Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1128" d="M582 879Q770 879 874 777T979 498Q979 261 831 121T424 -20Q340 -20 247 0T88 51V158Q258 68 428 68Q636 68 756 182T877 496Q877 636 792 715T567 795Q434 795 324 754L258 803L451 1462H1075L1057
+1366H516L367 850Q465 879 582 879Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1128" d="M170 428Q170 711 275 972T544 1357T928 1481Q1051 1481 1110 1460L1092 1370Q1006 1393 922 1393Q689 1393 529 1219T295 717H303Q371 811 467 860T678 909Q839 909 928 809T1018 526Q1018 370 958
+245T787 50T530 -20Q359 -20 265 99T170 428ZM543 68Q655 68 739 126T869 288T915 518Q915 664 848 742T653 821Q572 821 499 790T370 703T292 588T270 414Q270 250 342 159T543 68Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1128" d="M244 0L1040 1366H274L297 1462H1155L1135 1352L356 0H244Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1128" d="M737 1485Q900 1485 995 1400T1090 1171Q1090 1033 1006 937T721 764Q851 686 911 594T971 385Q971 269 913 177T748 33T487 -20Q309 -20 204 72T98 326Q98 485 198 594T520 782Q420 854 376 934T332
+1114Q332 1273 446 1379T737 1485ZM610 733Q392 660 297 566T201 340Q201 204 278 134T498 63Q666 63 768 154T870 387Q870 491 808 576T610 733ZM727 1399Q597 1399 513 1317T428 1114Q428 1023 469 955T627 813Q819 875 906 957T993 1163Q993 1272 923 1335T727
+1399Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1128" d="M1059 1032Q1059 744 958 484T694 102T301 -20Q187 -20 115 2V92Q202 63 307 63Q781 63 934 737H926Q786 545 559 545Q397 545 304 650T211 934Q211 1089 270 1215T441 1411T698 1481Q872 1481 965
+1366T1059 1032ZM686 1393Q574 1393 489 1335T358 1172T313 942Q313 797 380 717T573 637Q656 637 730 669T859 757T936 871T958 1047Q958 1213 887 1303T686 1393Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="485" d="M260 989Q260 1046 285 1078T354 1110Q420 1110 420 1038Q420 983 395 949T328 915Q260 915 260 989ZM102 55Q102 111 127 143T197 176Q262 176 262 104Q262 49 237 16T170 -18Q102 -18 102 55Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="485" d="M287 238L295 215Q260 119 177 -27T20 -264H-53Q26 -132 88 7T176 238H287ZM266 989Q266 1046 291 1078T360 1110Q426 1110 426 1038Q426 983 401 949T334 915Q266 915 266 989Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1128" d="M1051 262L137 676V750L1051 1221V1118L250 719L1051 369V262Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1128" d="M168 885V985H1071V885H168ZM168 461V559H1071V461H168Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1128" d="M170 369L971 719L170 1118V1221L1085 750V676L170 262V369Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="799" d="M242 362L248 391Q277 523 330 597T487 745Q605 829 662 890T748 1018T778 1159Q778 1267 711 1329T528 1391Q389 1391 221 1290L182 1376Q267 1425 353 1454T541 1483Q700 1483 791 1399T883 1169Q883
+1042 817 935T586 709Q501 648 454 601T381 506T334 362H242ZM170 59Q170 115 195 147T264 180Q330 180 330 109Q330 55 306 21T238 -14Q170 -14 170 59Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1724" d="M1688 858Q1688 679 1632 535T1478 308T1266 225Q1168 225 1112 280T1055 424H1051Q997 327 919 276T750 225Q638 225 572 298T506 500Q506 656 569 783T747 981T1008 1053Q1130 1053 1260 1001L1176
+686Q1137 546 1137 465Q1137 394 1171 354T1272 313Q1358 313 1432 386T1549 584T1593 836Q1593 992 1528 1113T1341 1301T1049 1368Q814 1368 625 1260T329 956T223 516Q223 228 378 67T813 -94Q1020 -94 1233 -12V-102Q1023 -184 805 -184Q602 -184 448 -102T209
+137T125 508Q125 784 246 1001T583 1338T1057 1458Q1246 1458 1387 1386T1608 1173T1688 858ZM1008 969Q895 969 804 910T661 745T610 506Q610 414 650 364T764 313Q865 313 944 402T1069 657L1147 946Q1081 969 1008 969Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1059" d="M805 520H293L6 0H-111L711 1468H778L979 0H874L805 520ZM793 612L754 903Q723 1145 715 1305Q685 1242 651 1175T344 612H793Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1202" d="M412 1462H791Q981 1462 1081 1378T1182 1137Q1182 984 1092 888T838 764V760Q963 729 1026 647T1090 442Q1090 237 950 119T559 0H102L412 1462ZM377 811H655Q861 811 968 892T1075 1130Q1075 1249 997
+1310T768 1372H496L377 811ZM358 721L223 90H565Q766 90 874 177T983 434Q983 579 893 650T618 721H358Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1169" d="M961 1389Q764 1389 610 1285T365 980T274 539Q274 314 384 193T702 72Q842 72 1006 123V29Q850 -20 690 -20Q438 -20 304 125T170 535Q170 801 274 1023T559 1364T961 1483Q1138 1483 1268 1415L1223
+1325Q1168 1355 1099 1372T961 1389Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1350" d="M1288 879Q1288 626 1179 418T878 105T432 0H102L412 1462H717Q999 1462 1143 1315T1288 879ZM430 90Q656 90 824 184T1085 460T1178 872Q1178 1370 702 1370H496L221 90H430Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1067" d="M829 0H102L412 1462H1139L1118 1368H494L377 815H967L946 721H358L223 94H850L829 0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="981" d="M205 0H102L412 1462H1120L1100 1368H496L362 748H932L911 653H342L205 0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1374" d="M856 735H1262L1112 53Q901 -20 707 -20Q450 -20 310 126T170 547Q170 812 275 1030T558 1366T954 1483Q1067 1483 1157 1464T1341 1405L1303 1311Q1193 1357 1114 1373T946 1389Q762 1389 607 1282T363
+980T274 547Q274 318 388 195T715 72Q870 72 1024 119L1141 645H838L856 735Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1366" d="M1063 0H963L1114 719H354L205 0H102L412 1462H514L375 813H1135L1272 1462H1372L1063 0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="504" d="M102 0L412 1462H510L201 0H102Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="477" d="M-180 -360Q-228 -360 -268 -352T-324 -336L-313 -244Q-256 -264 -176 -264Q37 -264 86 -23L395 1462H500L186 -29Q151 -199 61 -279T-180 -360Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1122" d="M979 0H868L526 788L336 635L205 0H102L412 1462H514L356 739L489 860L1169 1462H1307L608 852L979 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="938" d="M102 0L412 1462H514L225 96H846L823 0H102Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1669" d="M772 205L1505 1462H1655L1354 0H1253L1444 901Q1523 1270 1544 1348H1538L758 0H707L485 1348H479Q459 1194 401 922L205 0H109L418 1462H561L766 205H772Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1372" d="M1069 0H983L467 1284H459Q436 1135 411 1011T197 0H102L412 1462H492L1014 168H1022Q1045 344 1096 584L1284 1462H1378L1069 0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1464" d="M1403 911Q1403 656 1309 430T1057 92T692 -20Q442 -20 307 129T172 559Q172 821 265 1036T520 1367T893 1483Q1140 1483 1271 1335T1403 911ZM879 1389Q705 1389 571 1288T356 990T276 573Q276 328 385
+200T705 72Q874 72 1005 170T1215 470T1294 901Q1294 1141 1190 1265T879 1389Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1145" d="M1145 1102Q1145 602 535 602H334L205 0H102L412 1462H727Q929 1462 1037 1370T1145 1102ZM350 694H541Q793 694 914 790T1036 1096Q1036 1370 707 1370H496L350 694Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1464" d="M1403 911Q1403 695 1333 493T1147 169T872 2L1139 -348H997L766 -16L692 -20Q442 -20 307 129T172 559Q172 821 265 1036T520 1367T893 1483Q1140 1483 1271 1335T1403 911ZM879 1389Q705 1389 571 1288T356
+990T276 573Q276 328 385 200T705 72Q874 72 1005 170T1215 470T1294 901Q1294 1141 1190 1265T879 1389Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1145" d="M336 633L205 0H102L412 1462H715Q1145 1462 1145 1102Q1145 920 1042 799T760 647Q961 56 981 0H870L659 633H336ZM358 725H610Q818 725 927 820T1036 1102Q1036 1370 707 1370H496L358 725Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1020" d="M895 403Q895 277 830 179T650 30T381 -20Q293 -20 209 -3T37 55V164Q200 72 385 72Q573 72 680 158T788 391Q788 452 771 495T719 574T628 642T496 717Q346 793 287 881T227 1087Q227 1205 286 1294T451
+1433T688 1483Q787 1483 868 1466T1036 1405L1004 1311Q938 1351 853 1374T688 1397Q525 1397 429 1315T332 1096Q332 993 381 926T563 793Q717 714 776 663T865 550T895 403Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="985" d="M438 0H336L625 1368H193L213 1462H1186L1167 1368H727L438 0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1370" d="M1395 1462L1188 485Q1130 215 991 98T616 -20Q176 -20 176 381Q176 464 203 582L389 1462H492L299 563Q279 474 279 379Q279 70 621 70Q816 70 928 166T1087 485L1294 1462H1395Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1079" d="M457 147Q508 258 581 394L1153 1462H1270L471 0H383L201 1462H301L418 512Q444 295 453 147H457Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1702" d="M1018 1341Q991 1265 956 1188T393 0H311L238 1462H338L385 431L389 266L387 180H393Q478 406 563 578L997 1462H1102L1163 584Q1182 318 1182 174H1188Q1218 260 1249 337T1743 1462H1851Q1682 1097
+1521 731T1192 0H1114L1036 1075Q1025 1217 1025 1294L1026 1341H1018Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="971" d="M879 0H772L518 678L-8 0H-135L473 766L201 1462H307L547 836L1030 1462H1149L594 743L879 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="965" d="M494 645L1038 1462H1155L524 530L416 0H311L430 545L193 1462H293L494 645Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1128" d="M913 0H-12L10 92L1079 1368H315L338 1462H1225L1206 1374L137 94H936L913 0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="537" d="M369 -324H-57L319 1462H748L729 1372H399L59 -233H389L369 -324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="641" d="M295 1462L537 0H455L209 1462H295Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="537" d="M203 1462H629L252 -324H-176L-158 -233H172L512 1372H182L203 1462Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1047" d="M70 569L657 1475H748L1008 569H903L686 1378L186 569H70Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="801" d="M625 -291H-182L-164 -205H643L625 -291Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1135" d="M766 1241H700Q650 1293 586 1385T487 1548V1569H602Q648 1440 766 1266V1241Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1133" d="M655 1104Q887 1104 934 885H940L999 1087H1079L850 0H768L813 274H807Q723 132 620 56T383 -20Q102 -20 102 354Q102 551 177 730T377 1006T655 1104ZM406 70Q495 70 583 132T742 298T850 528T887 741Q887
+820 861 882T784 981T657 1018Q533 1018 433 936T269 691T205 365Q205 213 255 142T406 70Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1151" d="M500 -16Q387 -16 314 43T217 209H211L156 0H76L403 1556H498Q367 928 336 805H342Q435 961 541 1034T772 1108Q1053 1108 1053 733Q1053 530 977 353T776 80T500 -16ZM750 1018Q659 1018 570 957T410
+787T303 552T268 346Q268 217 332 144T498 70Q622 70 722 153T886 398T950 723Q950 875 901 946T750 1018Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="887" d="M477 -20Q303 -20 203 90T102 397Q102 590 175 758T374 1015T664 1104Q798 1104 905 1061L877 971Q770 1018 659 1018Q530 1018 427 941T264 719T205 399Q205 241 278 156T487 70Q558 70 618 83T750 129V37Q634
+-20 477 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1133" d="M655 1104Q885 1104 934 885H938Q950 951 1081 1556H1180L850 0H768L813 274H807Q634 -20 383 -20Q102 -20 102 354Q102 547 173 724T371 1002T655 1104ZM406 70Q495 70 584 132T744 300T851 531T887
+741Q887 867 826 942T657 1018Q533 1018 433 935T269 693T205 365Q205 70 406 70Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="928" d="M469 -20Q296 -20 199 89T102 395Q102 576 173 742T368 1006T643 1104Q757 1104 825 1043T893 877Q893 696 730 601T244 506H211Q205 462 205 408Q205 243 279 157T492 70Q624 70 768 143V49Q628 -20 469
+-20ZM631 1018Q500 1018 388 903T225 594H274Q791 594 791 864Q791 931 748 974T631 1018Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="578" d="M-131 -492Q-179 -492 -233 -473V-383Q-180 -399 -133 -399Q-45 -399 1 -346T76 -160L322 1006H117L131 1073L336 1087L371 1247Q406 1415 487 1491T715 1567Q788 1567 881 1536L856 1456Q769 1483 709
+1483Q613 1483 556 1430T471 1251L436 1087H684L668 1006H420L168 -184Q135 -345 64 -418T-131 -492Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1040" d="M1100 1087L1083 1008L840 997Q866 969 883 913T901 799Q901 690 847 593T699 447T485 399Q422 399 408 408Q328 375 284 335T240 254Q240 213 271 190T385 158L506 147Q852 116 852 -117Q852 -229 787
+-314T600 -446T309 -492Q123 -492 18 -420T-88 -217Q-88 19 221 117Q143 159 143 240Q143 363 334 442Q263 478 224 547T184 705Q184 816 237 909T385 1055T592 1108Q661 1108 739 1087H1100ZM14 -207Q14 -308 95 -357T319 -406Q522 -406 636 -332T750 -127Q750
+-42 688 3T469 61L309 76Q152 31 83 -38T14 -207ZM285 711Q285 599 343 541T508 483Q596 483 662 520T764 634T801 803Q801 907 745 964T588 1022Q495 1022 427 979T322 863T285 711Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1143" d="M764 0L913 692Q934 784 934 848Q934 928 891 973T756 1018Q644 1018 546 951T380 763T276 477L174 0H76L408 1556H504L418 1145Q374 945 352 866H358Q436 979 544 1041T774 1104Q898 1104 966 1039T1034
+856Q1034 786 1010 674L862 0H764Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="475" d="M174 0H76L307 1087H403L174 0ZM350 1366Q350 1421 372 1454T432 1487Q489 1487 489 1415Q489 1358 467 1325T410 1292Q381 1292 366 1311T350 1366Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="475" d="M-166 -492Q-228 -492 -279 -473V-381Q-232 -403 -166 -403Q-84 -403 -38 -352T35 -174L301 1087H397L129 -184Q94 -349 23 -420T-166 -492ZM350 1366Q350 1421 372 1454T432 1487Q489 1487 489 1415Q489
+1358 467 1325T410 1292Q381 1292 366 1311T350 1366Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="944" d="M270 477L879 1087H1004L530 618L827 0H721L457 559L252 371L172 0H76L406 1556H502L336 776L266 477H270Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="475" d="M170 0H76L410 1556H504L170 0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1751" d="M711 0L858 674Q883 799 883 836Q883 1018 729 1018Q623 1018 529 951T370 762T270 475L170 0H72L303 1087H383L350 877H356Q436 990 537 1047T750 1104Q856 1104 913 1037T973 842H979Q1056 971 1160
+1037T1382 1104Q1499 1104 1564 1043T1630 866Q1630 837 1628 810T1608 690L1456 0H1356L1505 680Q1530 800 1530 856Q1530 933 1487 975T1368 1018Q1211 1018 1091 881T922 518L813 0H711Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1143" d="M764 0L913 692Q934 784 934 848Q934 928 891 973T756 1018Q644 1018 546 951T380 764T276 477L174 0H76L307 1087H389L352 866H358Q522 1104 774 1104Q904 1104 969 1040T1034 856Q1034 786 1010 674L862
+0H764Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1124" d="M649 1108Q829 1108 927 1000T1026 700Q1026 503 955 332T759 70T473 -20Q289 -20 194 89T98 403Q98 594 171 761T368 1018T649 1108ZM641 1022Q517 1022 418 944T260 719T201 408Q201 66 483 66Q610
+66 708 143T865 371T924 702Q924 856 851 939T641 1022Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1149" d="M498 -16Q268 -16 219 203H215Q202 131 66 -492H-33L303 1087H385L340 813H346Q437 966 541 1037T770 1108Q905 1108 978 1016T1051 733Q1051 538 979 362T782 85T498 -16ZM748 1018Q661 1018 574 960T413
+792T302 555T266 346Q266 221 327 146T496 70Q620 70 721 154T885 397T948 723Q948 1018 748 1018Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1157" d="M651 1104Q760 1104 834 1046T934 879H940L995 1087H1075L748 -469H653L751 1L815 283H809Q716 127 610 54T379 -20Q98 -20 98 354Q98 555 173 733T374 1007T651 1104ZM401 70Q493 70 583 132T743 304T848
+540T883 741Q883 871 820 944T653 1018Q529 1018 429 935T265 690T201 365Q201 222 246 146T401 70Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="752" d="M713 1106Q782 1106 836 1092L815 999Q768 1014 702 1014Q608 1014 523 950T370 758T270 481L170 0H72L303 1087H383L354 883H360Q433 977 483 1018T589 1083T713 1106Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="827" d="M713 295Q713 151 610 66T330 -20Q157 -20 25 55V162Q99 116 178 91T326 66Q464 66 537 123T610 287Q610 329 595 361T545 422T412 508Q264 588 212 653T160 813Q160 941 258 1022T518 1104Q593 1104 676
+1087T817 1040L782 952Q646 1016 518 1016Q402 1016 332 963T262 825Q262 770 279 737T339 669T459 592Q573 529 620 489T690 402T713 295Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="616" d="M694 1087L676 1006H393L258 371Q236 272 236 207Q236 68 362 68Q430 68 514 94V8Q413 -20 344 -20Q245 -20 191 34T137 193Q137 266 166 399L295 1006H113L127 1073L311 1090L408 1343H463L408 1087H694Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1143" d="M381 1087L229 389Q207 283 207 231Q207 157 254 114T393 70Q503 70 600 135T764 322T864 602L969 1087H1067L836 0H756L784 205H778Q611 -16 375 -16Q244 -16 177 46T109 227Q109 287 131 397L281 1087H381Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="895" d="M276 0L104 1087H205L313 352Q339 187 346 98H352Q403 213 481 354L887 1087H989L389 0H276Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1393" d="M838 0L778 686Q764 910 764 952H758Q724 860 614 662L258 0H141L121 1087H213L226 266L223 109H229Q290 243 379 406L752 1087H829L893 406Q907 259 907 109H913L937 170L1038 406L1358 1087H1454L946 0H838Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="922" d="M442 483L49 0H-72L399 559L154 1087H254L461 625L834 1087H954L506 553L764 0H666L442 483Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="920" d="M123 1087H223L305 539Q356 188 360 90H371Q414 195 557 457L905 1087H1008L295 -203Q223 -330 173 -381T59 -462T-88 -492Q-156 -492 -217 -471V-379Q-146 -406 -80 -406Q0 -406 67 -357T197 -192T297
+-8L123 1087Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="887" d="M700 0H-29L-14 72L762 1004H219L236 1087H895L877 1004L115 84H717L700 0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="709" d="M424 -324Q168 -324 168 -125Q168 -80 184 -10L240 242Q258 332 258 369Q258 528 59 528L80 606Q206 606 271 655T360 813L449 1206Q479 1341 555 1401T770 1462H799L782 1376Q696 1374 653 1356T584
+1294T539 1174L465 836Q435 702 374 642T209 563V559Q277 541 314 491T352 369Q352 317 328 205L281 -20Q268 -78 268 -121Q268 -182 305 -210T444 -238V-324H424Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M584 1561H684V-510H584V1561Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="709" d="M332 1462Q463 1462 521 1411T580 1264Q580 1223 563 1149L508 897Q489 802 489 770Q489 693 538 652T688 610L668 532Q543 532 477 484T387 326L299 -68Q267 -207 191 -265T-23 -324H-41V-238Q55
+-236 97 -217T165 -156T209 -35L283 303Q310 429 370 492T539 575V580Q464 600 430 652T395 770Q395 825 413 901L467 1159Q479 1220 479 1260Q479 1304 461 1329T407 1365T291 1376L311 1462H332Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1128" d="M350 745Q301 745 242 715T127 625V719Q235 829 360 829Q421 829 475 816T631 758Q757 700 850 700Q904 700 957 729T1075 825V729Q964 616 842 616Q725 616 571 688Q509 717 459 731T350 745Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="502" d="M264 711H326L123 -375H4L264 711ZM432 1030Q432 974 407 942T338 909Q272 909 272 981Q272 1036 297 1070T365 1104Q432 1104 432 1030Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1128" d="M578 -20H485L530 195Q398 220 324 327T250 600Q250 784 313 941T491 1194T748 1305L784 1483H874L836 1307Q952 1303 1053 1264L1024 1174Q917 1221 807 1221Q677 1221 574 1145T412 924T352
+602Q352 438 426 355T635 272Q762 272 899 332V240Q781 182 618 182L578 -20Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1128" d="M879 1479Q1049 1479 1192 1401L1153 1317L1099 1343Q991 1393 868 1393Q734 1393 648 1319T530 1098L457 758H866L848 676H440L383 408Q333 183 195 94H954L934 0H-4L12 84Q105 95 177 179T285
+416L342 676H143L160 758H358L434 1108Q475 1295 589 1387T879 1479Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1128" d="M262 723Q262 841 336 948L207 1077L270 1141L397 1012Q502 1090 627 1090Q745 1090 850 1012L981 1141L1042 1079L913 950Q991 844 991 723Q991 588 913 496L1042 369L981 307L850 434Q746
+358 627 358Q501 358 399 438L270 309L209 371L336 498Q262 596 262 723ZM350 723Q350 607 430 527T627 446Q744 446 825 527T907 723Q907 798 871 863T768 967T627 1006Q513 1006 432 924T350 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1128" d="M584 645L1128 1462H1245L686 639H952L936 563H621L582 373H899L881 289H565L506 0H401L465 289H166L184 373H483L524 563H223L240 639H498L283 1462H383L584 645Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M578 1561H678V805H578V1561ZM578 246H678V-510H578V246Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="995" d="M211 778Q211 879 280 960T479 1090Q415 1121 376 1175T336 1296Q336 1370 382 1430T514 1525T717 1559Q880 1559 1006 1501L975 1421Q837 1475 711 1475Q587 1475 509 1429T430 1305Q430 1246
+476 1201T659 1094Q771 1042 817 1005T888 920T913 809Q913 612 664 492Q786 428 786 295Q786 209 738 142T599 36T377 -2Q220 -2 102 51V150Q149 123 228 104T381 84Q530 84 609 136T688 287Q688 349 646 393T479 489Q324 554 268 619T211 778ZM559 1038Q440 1008
+372 941T303 786Q303 729 327 690T408 617T596 535Q699 584 758 648T817 805Q817 877 760 931T559 1038Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1135" d="M836 1366Q836 1415 856 1444T913 1473Q967 1473 967 1409Q967 1361 946 1332T891 1303Q836 1303 836 1366ZM492 1366Q492 1415 512 1444T569 1473Q623 1473 623 1409Q623 1361 602 1332T547
+1303Q492 1303 492 1366Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M944 1092Q802 1092 722 998T641 733Q641 547 715 458T936 369Q1021 369 1135 412V324Q1031 279 926 279Q739 279 638 395T537 725Q537 932 647 1057T944 1182Q1063 1182 1171 1130L1135
+1047Q1036 1092 944 1092ZM147 731Q147 931 247 1106T522 1382T899 1483Q1099 1483 1274 1383T1550 1108T1651 731Q1651 534 1554 361T1282 84T899 -20Q692 -20 517 83T245 360T147 731ZM240 731Q240 553 328 402T569 161T899 72Q1073 72 1224 157T1467 396T1559
+731Q1559 909 1470 1061T1230 1302T899 1391Q717 1391 564 1299T326 1056T240 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="643" d="M487 1485Q542 1485 584 1456T651 1370H657L692 1473H758L621 823H549L571 948H567Q471 811 344 811Q264 811 217 867T170 1032Q170 1221 260 1353T487 1485ZM369 885Q435 885 502 960T600
+1145Q616 1196 616 1268Q616 1326 580 1368T487 1411Q393 1411 326 1300T258 1028Q258 885 369 885Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="860" d="M426 932L483 883L166 547L379 162L315 123L61 541L63 567L426 932ZM786 932L844 883L530 547L739 162L676 123L422 541L424 567L786 932Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1128" d="M1028 772V272H928V672H125V772H1028Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="629" d="M333 502L351 592H808L792 502H333Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M758 731H870Q963 731 1014 777T1065 913Q1065 1085 868 1085H758V731ZM1169 918Q1169 838 1130 777T1020 684L1257 291H1137L926 651H758V291H657V1171H868Q1011 1171 1090 1109T1169
+918ZM150 731Q150 938 253 1113T530 1385T901 1483Q1101 1483 1276 1383T1552 1108T1653 731Q1653 534 1556 361T1284 84T901 -20Q697 -20 525 80T251 353T150 731ZM242 731Q242 553 330 402T571 161T901 72Q1075 72 1226 157T1469 396T1561 731Q1561 909 1472
+1061T1232 1302T901 1391Q719 1391 566 1299T328 1056T242 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="655" d="M1001 1556H348L401 1653H1055L1001 1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M242 1190Q242 1310 327 1396T535 1483Q657 1483 742 1397T827 1190Q827 1068 742 983T535 897Q413 897 328 982T242 1190ZM315 1190Q315 1101 379 1037T535 973Q627 973 690 1037T754 1190Q754
+1280 690 1345T535 1411Q445 1411 380 1346T315 1190Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1128" d="M528 629H127V727H528V1133H629V727H1030V629H629V229H528V629ZM127 0V100H1030V0H127Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="643" d="M604 586H82L98 666L395 924Q532 1042 577 1114T623 1268Q623 1327 585 1365T479 1403Q384 1403 285 1327L244 1389Q352 1479 483 1479Q556 1479 608 1452T686 1380T713 1280Q713 1174
+654 1082T471 887L205 664H621L604 586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="643" d="M705 1276Q705 1191 657 1128T502 1040V1036Q568 1020 607 968T647 844Q647 767 608 703T499 604T338 569Q279 569 215 584T109 625V715Q155 687 217 667T342 647Q441 647 501 699T561
+842Q561 1004 365 1004H281L297 1083H383Q485 1083 551 1132T618 1262Q618 1330 581 1364T475 1399Q375 1399 276 1331L236 1395Q345 1481 487 1481Q587 1481 646 1425T705 1276Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1135" d="M580 1262Q646 1313 730 1404T860 1569H997V1546Q946 1480 840 1388T647 1241H580V1262Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1171" d="M238 242Q238 160 286 115T422 70Q532 70 629 134T791 317T893 602L997 1087H1096L862 0H784L813 205H807Q643 -16 403 -16Q318 -16 264 16T188 106H182Q164 -26 131 -178L68 -492H-29L309 1087H410L258
+389Q238 293 238 242Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1208 -260H1108V1462H881V-260H780V559Q716 541 635 541Q419 541 317 666T215 1042Q215 1302 324 1429T666 1556H1208V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="485" d="M207 698Q207 754 232 786T301 819Q367 819 367 747Q367 694 342 660T275 625Q207 625 207 698Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="420" d="M197 -289Q197 -383 122 -437T-96 -492Q-142 -492 -174 -485V-406Q-144 -412 -102 -412Q96 -412 96 -297Q96 -200 -55 -190L55 0H135L57 -137Q197 -167 197 -289Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="643" d="M512 1462H592L406 586H322L440 1155Q445 1176 451 1205T465 1265T481 1324T496 1374Q462 1343 436 1323T293 1229L254 1288L512 1462Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="655" d="M518 1479Q623 1479 683 1415T743 1235Q743 1120 703 1021T589 865T414 807Q300 807 245 874T190 1059Q190 1171 231 1268T347 1422T518 1479ZM508 1405Q438 1405 384 1359T300 1234T270
+1067Q270 881 426 881Q499 881 551 927T633 1055T662 1231Q662 1314 623 1359T508 1405Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="860" d="M451 123L393 172L707 508L498 893L561 932L815 514L813 487L451 123ZM90 123L33 172L346 508L137 893L201 932L455 514L453 487L90 123Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1481" d="M1319 230H1188L1139 1H1057L1106 230H715L736 306L1242 883H1328L1203 302H1336L1319 230ZM1121 302Q1182 596 1200 667T1229 773Q1219 757 1168 694T830 302H1121ZM1323 1462L236 0H129L1215
+1462H1323ZM765 1462H845L659 586H575L693 1155Q698 1176 704 1205T718 1265T734 1324T749 1374Q715 1343 689 1323T546 1229L507 1288L765 1462Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1458" d="M1278 1H756L772 81L1069 339Q1206 457 1251 529T1297 683Q1297 742 1259 780T1153 818Q1058 818 959 742L918 804Q1026 894 1157 894Q1230 894 1282 867T1360 795T1387 695Q1387 589 1328
+497T1145 302L879 79H1295L1278 1ZM687 1462H767L581 586H497L615 1155Q620 1176 626 1205T640 1265T656 1324T671 1374Q637 1343 611 1323T468 1229L429 1288L687 1462ZM1247 1462L160 0H53L1139 1462H1247Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1458" d="M1380 230H1249L1200 1H1118L1167 230H776L797 306L1303 883H1389L1264 302H1397L1380 230ZM1182 302Q1243 596 1261 667T1290 773Q1280 757 1229 694T891 302H1182ZM923 1276Q923 1191
+875 1128T720 1040V1036Q786 1020 825 968T865 844Q865 767 826 703T717 604T556 569Q497 569 433 584T327 625V715Q373 687 435 667T560 647Q659 647 719 699T779 842Q779 1004 583 1004H499L515 1083H601Q703 1083 769 1132T836 1262Q836 1330 799 1364T693 1399Q593
+1399 494 1331L454 1395Q563 1481 705 1481Q805 1481 864 1425T923 1276ZM1407 1462L320 0H213L1299 1462H1407Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="799" d="M641 717L635 688Q607 561 556 488T395 334Q277 250 220 189T134 61T104 -80Q104 -186 169 -248T354 -311Q495 -311 662 -211L700 -297Q615 -346 530 -374T342 -403Q183 -403 92 -319T0
+-90Q0 43 70 150T297 371Q382 432 430 480T503 575T549 717H641ZM713 1020Q713 964 688 932T618 899Q553 899 553 971Q553 1027 578 1060T645 1094Q713 1094 713 1020Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1059" d="M805 520H293L6 0H-111L711 1468H778L979 0H874L805 520ZM793 612L754 903Q723 1145 715 1305Q685 1242 651 1175T344 612H793ZM815 1579H749Q699 1631 635 1723T536 1886V1907H651Q697 1778
+815 1604V1579Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1059" d="M805 520H293L6 0H-111L711 1468H778L979 0H874L805 520ZM793 612L754 903Q723 1145 715 1305Q685 1242 651 1175T344 612H793ZM668 1600Q734 1651 818 1742T948 1907H1085V1884Q1034 1818
+928 1726T735 1579H668V1600Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1059" d="M805 520H293L6 0H-111L711 1468H778L979 0H874L805 520ZM793 612L754 903Q723 1145 715 1305Q685 1242 651 1175T344 612H793ZM1007 1579H958Q888 1639 797 1786Q742 1729 672 1672T547
+1579H493V1608Q561 1664 650 1756T778 1907H842Q865 1843 914 1755T1007 1608V1579Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1059" d="M805 520H293L6 0H-111L711 1468H778L979 0H874L805 520ZM793 612L754 903Q723 1145 715 1305Q685 1242 651 1175T344 612H793ZM911 1587Q871 1587 834 1606T758 1651Q724 1674 694 1692T625
+1710Q580 1710 551 1682T500 1581H426Q445 1689 497 1747T631 1806Q672 1806 704 1792T822 1720Q874 1684 916 1684Q959 1684 987 1714T1034 1815H1110Q1084 1697 1036 1642T911 1587Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1059" d="M805 520H293L6 0H-111L711 1468H778L979 0H874L805 520ZM793 612L754 903Q723 1145 715 1305Q685 1242 651 1175T344 612H793ZM879 1704Q879 1753 899 1782T956 1811Q1010 1811 1010 1747Q1010
+1699 989 1670T934 1641Q879 1641 879 1704ZM535 1704Q535 1753 555 1782T612 1811Q666 1811 666 1747Q666 1699 645 1670T590 1641Q535 1641 535 1704Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1059" d="M805 520H293L6 0H-111L711 1468H778L979 0H874L805 520ZM793 612L754 903Q723 1145 715 1305Q685 1242 651 1175T344 612H793ZM945 1600Q945 1508 888 1452T742 1395Q649 1395 594 1447T539
+1592Q539 1680 598 1736T748 1792Q836 1792 890 1742T945 1600ZM867 1598Q867 1655 834 1688T746 1721Q686 1721 653 1685T619 1592Q619 1535 652 1502T742 1469Q798 1469 832 1505T867 1598Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1640" d="M1403 0H676L786 522H342L14 0H-117L829 1462H1712L1692 1368H1067L950 815H1540L1520 721H932L797 94H1423L1403 0ZM408 627H809L965 1368H877L408 627Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1169" d="M961 1389Q764 1389 610 1285T365 980T274 539Q274 314 384 193T702 72Q842 72 1006 123V29Q850 -20 690 -20Q438 -20 304 125T170 535Q170 801 274 1023T559 1364T961 1483Q1138 1483 1268
+1415L1223 1325Q1168 1355 1099 1372T961 1389ZM752 -289Q752 -383 677 -437T459 -492Q413 -492 381 -485V-406Q411 -412 453 -412Q651 -412 651 -297Q651 -200 500 -190L610 0H690L612 -137Q752 -167 752 -289Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1067" d="M829 0H102L412 1462H1139L1118 1368H494L377 815H967L946 721H358L223 94H850L829 0ZM891 1579H825Q775 1631 711 1723T612 1886V1907H727Q773 1778 891 1604V1579Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1067" d="M829 0H102L412 1462H1139L1118 1368H494L377 815H967L946 721H358L223 94H850L829 0ZM654 1600Q720 1651 804 1742T934 1907H1071V1884Q1020 1818 914 1726T721 1579H654V1600Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1067" d="M829 0H102L412 1462H1139L1118 1368H494L377 815H967L946 721H358L223 94H850L829 0ZM1036 1579H987Q917 1639 826 1786Q771 1729 701 1672T576 1579H522V1608Q590 1664 679 1756T807
+1907H871Q894 1843 943 1755T1036 1608V1579Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1067" d="M829 0H102L412 1462H1139L1118 1368H494L377 815H967L946 721H358L223 94H850L829 0ZM902 1704Q902 1753 922 1782T979 1811Q1033 1811 1033 1747Q1033 1699 1012 1670T957 1641Q902 1641
+902 1704ZM558 1704Q558 1753 578 1782T635 1811Q689 1811 689 1747Q689 1699 668 1670T613 1641Q558 1641 558 1704Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="504" d="M102 0L412 1462H510L201 0H102ZM525 1579H459Q409 1631 345 1723T246 1886V1907H361Q407 1778 525 1604V1579Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="504" d="M102 0L412 1462H510L201 0H102ZM419 1600Q485 1651 569 1742T699 1907H836V1884Q785 1818 679 1726T486 1579H419V1600Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="504" d="M102 0L412 1462H510L201 0H102ZM738 1579H689Q619 1639 528 1786Q473 1729 403 1672T278 1579H224V1608Q292 1664 381 1756T509 1907H573Q596 1843 645 1755T738 1608V1579Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="504" d="M102 0L412 1462H510L201 0H102ZM604 1704Q604 1753 624 1782T681 1811Q735 1811 735 1747Q735 1699 714 1670T659 1641Q604 1641 604 1704ZM260 1704Q260 1753 280 1782T337 1811Q391 1811
+391 1747Q391 1699 370 1670T315 1641Q260 1641 260 1704Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1352" d="M1288 879Q1288 626 1179 418T878 105T432 0H102L246 676H90L111 772H266L412 1462H717Q999 1462 1143 1315T1288 879ZM430 90Q656 90 824 184T1085 460T1178 872Q1178 1370 702 1370H496L367
+772H745L725 676H346L221 90H430Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1372" d="M1069 0H983L467 1284H459Q436 1135 411 1011T197 0H102L412 1462H492L1014 168H1022Q1045 344 1096 584L1284 1462H1378L1069 0ZM1062 1587Q1022 1587 985 1606T909 1651Q875 1674 845 1692T776
+1710Q731 1710 702 1682T651 1581H577Q596 1689 648 1747T782 1806Q823 1806 855 1792T973 1720Q1025 1684 1067 1684Q1110 1684 1138 1714T1185 1815H1261Q1235 1697 1187 1642T1062 1587Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1464" d="M1403 911Q1403 656 1309 430T1057 92T692 -20Q442 -20 307 129T172 559Q172 821 265 1036T520 1367T893 1483Q1140 1483 1271 1335T1403 911ZM879 1389Q705 1389 571 1288T356 990T276 573Q276
+328 385 200T705 72Q874 72 1005 170T1215 470T1294 901Q1294 1141 1190 1265T879 1389ZM989 1579H923Q873 1631 809 1723T710 1886V1907H825Q871 1778 989 1604V1579Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1464" d="M1403 911Q1403 656 1309 430T1057 92T692 -20Q442 -20 307 129T172 559Q172 821 265 1036T520 1367T893 1483Q1140 1483 1271 1335T1403 911ZM879 1389Q705 1389 571 1288T356 990T276 573Q276
+328 385 200T705 72Q874 72 1005 170T1215 470T1294 901Q1294 1141 1190 1265T879 1389ZM844 1600Q910 1651 994 1742T1124 1907H1261V1884Q1210 1818 1104 1726T911 1579H844V1600Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1464" d="M1403 911Q1403 656 1309 430T1057 92T692 -20Q442 -20 307 129T172 559Q172 821 265 1036T520 1367T893 1483Q1140 1483 1271 1335T1403 911ZM879 1389Q705 1389 571 1288T356 990T276
+573Q276 328 385 200T705 72Q874 72 1005 170T1215 470T1294 901Q1294 1141 1190 1265T879 1389ZM1171 1579H1122Q1052 1639 961 1786Q906 1729 836 1672T711 1579H657V1608Q725 1664 814 1756T942 1907H1006Q1029 1843 1078 1755T1171 1608V1579Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1464" d="M1403 911Q1403 656 1309 430T1057 92T692 -20Q442 -20 307 129T172 559Q172 821 265 1036T520 1367T893 1483Q1140 1483 1271 1335T1403 911ZM879 1389Q705 1389 571 1288T356 990T276 573Q276
+328 385 200T705 72Q874 72 1005 170T1215 470T1294 901Q1294 1141 1190 1265T879 1389ZM1077 1587Q1037 1587 1000 1606T924 1651Q890 1674 860 1692T791 1710Q746 1710 717 1682T666 1581H592Q611 1689 663 1747T797 1806Q838 1806 870 1792T988 1720Q1040 1684
+1082 1684Q1125 1684 1153 1714T1200 1815H1276Q1250 1697 1202 1642T1077 1587Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1464" d="M1403 911Q1403 656 1309 430T1057 92T692 -20Q442 -20 307 129T172 559Q172 821 265 1036T520 1367T893 1483Q1140 1483 1271 1335T1403 911ZM879 1389Q705 1389 571 1288T356 990T276
+573Q276 328 385 200T705 72Q874 72 1005 170T1215 470T1294 901Q1294 1141 1190 1265T879 1389ZM1031 1704Q1031 1753 1051 1782T1108 1811Q1162 1811 1162 1747Q1162 1699 1141 1670T1086 1641Q1031 1641 1031 1704ZM687 1704Q687 1753 707 1782T764 1811Q818
+1811 818 1747Q818 1699 797 1670T742 1641Q687 1641 687 1704Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1128" d="M551 723L221 1055L291 1124L621 795L954 1124L1022 1057L690 723L1022 391L954 324L621 653L291 326L223 393L551 723Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1464" d="M1403 911Q1403 724 1351 546T1207 241T984 48T692 -20Q477 -20 344 92L205 -78L139 -14L285 158Q172 307 172 559Q172 822 266 1038T522 1369T893 1483Q1112 1483 1245 1362L1378 1530L1448
+1477L1303 1294Q1348 1243 1375 1133T1403 911ZM879 1389Q745 1389 635 1330T447 1160T322 892T276 573Q276 468 297 382T354 244L1180 1276Q1073 1389 879 1389ZM1294 901Q1294 986 1277 1073T1233 1202L412 172Q519 72 705 72Q875 72 1006 172T1215 468T1294
+901Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1370" d="M1395 1462L1188 485Q1130 215 991 98T616 -20Q176 -20 176 381Q176 464 203 582L389 1462H492L299 563Q279 474 279 379Q279 70 621 70Q816 70 928 166T1087 485L1294 1462H1395ZM946 1579H880Q830
+1631 766 1723T667 1886V1907H782Q828 1778 946 1604V1579Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1370" d="M1395 1462L1188 485Q1130 215 991 98T616 -20Q176 -20 176 381Q176 464 203 582L389 1462H492L299 563Q279 474 279 379Q279 70 621 70Q816 70 928 166T1087 485L1294 1462H1395ZM838 1600Q904
+1651 988 1742T1118 1907H1255V1884Q1204 1818 1098 1726T905 1579H838V1600Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1370" d="M1395 1462L1188 485Q1130 215 991 98T616 -20Q176 -20 176 381Q176 464 203 582L389 1462H492L299 563Q279 474 279 379Q279 70 621 70Q816 70 928 166T1087 485L1294 1462H1395ZM1148
+1579H1099Q1029 1639 938 1786Q883 1729 813 1672T688 1579H634V1608Q702 1664 791 1756T919 1907H983Q1006 1843 1055 1755T1148 1608V1579Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1370" d="M1395 1462L1188 485Q1130 215 991 98T616 -20Q176 -20 176 381Q176 464 203 582L389 1462H492L299 563Q279 474 279 379Q279 70 621 70Q816 70 928 166T1087 485L1294 1462H1395ZM1022
+1704Q1022 1753 1042 1782T1099 1811Q1153 1811 1153 1747Q1153 1699 1132 1670T1077 1641Q1022 1641 1022 1704ZM678 1704Q678 1753 698 1782T755 1811Q809 1811 809 1747Q809 1699 788 1670T733 1641Q678 1641 678 1704Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="965" d="M494 645L1038 1462H1155L524 530L416 0H311L430 545L193 1462H293L494 645ZM563 1600Q629 1651 713 1742T843 1907H980V1884Q929 1818 823 1726T630 1579H563V1600Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1145" d="M1087 836Q1087 589 934 463T477 336H276L205 0H102L412 1462H514L457 1196H670Q870 1196 978 1104T1087 836ZM293 428H483Q739 428 859 526T979 829Q979 1104 649 1104H438L293 428Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1094" d="M-162 -492Q-235 -492 -281 -469V-379Q-228 -403 -166 -403Q-87 -403 -43 -353T23 -199L328 1210Q408 1567 733 1567Q870 1567 948 1506T1026 1331Q1026 1256 982 1191T815 1042Q708 966
+674 918T639 811Q639 760 673 723T766 647Q862 584 904 514T946 348Q946 178 840 79T553 -20Q410 -20 319 45V154Q364 118 431 95T561 72Q693 72 769 143T846 338Q846 413 815 467T705 575Q623 633 586 685T549 807Q549 864 570 910T630 998T768 1112Q869 1182
+899 1228T930 1329Q930 1399 875 1439T725 1479Q596 1479 520 1403T412 1174L121 -203Q88 -355 18 -423T-162 -492Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1133" d="M655 1104Q887 1104 934 885H940L999 1087H1079L850 0H768L813 274H807Q723 132 620 56T383 -20Q102 -20 102 354Q102 551 177 730T377 1006T655 1104ZM406 70Q495 70 583 132T742 298T850
+528T887 741Q887 820 861 882T784 981T657 1018Q533 1018 433 936T269 691T205 365Q205 213 255 142T406 70ZM809 1241H743Q693 1293 629 1385T530 1548V1569H645Q691 1440 809 1266V1241Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1133" d="M655 1104Q887 1104 934 885H940L999 1087H1079L850 0H768L813 274H807Q723 132 620 56T383 -20Q102 -20 102 354Q102 551 177 730T377 1006T655 1104ZM406 70Q495 70 583 132T742 298T850
+528T887 741Q887 820 861 882T784 981T657 1018Q533 1018 433 936T269 691T205 365Q205 213 255 142T406 70ZM586 1262Q652 1313 736 1404T866 1569H1003V1546Q952 1480 846 1388T653 1241H586V1262Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1133" d="M655 1104Q887 1104 934 885H940L999 1087H1079L850 0H768L813 274H807Q723 132 620 56T383 -20Q102 -20 102 354Q102 551 177 730T377 1006T655 1104ZM406 70Q495 70 583 132T742 298T850
+528T887 741Q887 820 861 882T784 981T657 1018Q533 1018 433 936T269 691T205 365Q205 213 255 142T406 70ZM1211 1243H1162Q1092 1303 1001 1450Q946 1393 876 1336T751 1243H697V1272Q765 1328 854 1420T982 1571H1046Q1069 1507 1118 1419T1211 1272V1243Z"
+/>
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1133" d="M655 1104Q887 1104 934 885H940L999 1087H1079L850 0H768L813 274H807Q723 132 620 56T383 -20Q102 -20 102 354Q102 551 177 730T377 1006T655 1104ZM406 70Q495 70 583 132T742 298T850
+528T887 741Q887 820 861 882T784 981T657 1018Q533 1018 433 936T269 691T205 365Q205 213 255 142T406 70ZM858 1249Q818 1249 781 1268T705 1313Q671 1336 641 1354T572 1372Q527 1372 498 1344T447 1243H373Q392 1351 444 1409T578 1468Q619 1468 651 1454T769
+1382Q821 1346 863 1346Q906 1346 934 1376T981 1477H1057Q1031 1359 983 1304T858 1249Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1133" d="M655 1104Q887 1104 934 885H940L999 1087H1079L850 0H768L813 274H807Q723 132 620 56T383 -20Q102 -20 102 354Q102 551 177 730T377 1006T655 1104ZM406 70Q495 70 583 132T742 298T850
+528T887 741Q887 820 861 882T784 981T657 1018Q533 1018 433 936T269 691T205 365Q205 213 255 142T406 70ZM1091 1366Q1091 1415 1111 1444T1168 1473Q1222 1473 1222 1409Q1222 1361 1201 1332T1146 1303Q1091 1303 1091 1366ZM747 1366Q747 1415 767 1444T824
+1473Q878 1473 878 1409Q878 1361 857 1332T802 1303Q747 1303 747 1366Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1133" d="M655 1104Q887 1104 934 885H940L999 1087H1079L850 0H768L813 274H807Q723 132 620 56T383 -20Q102 -20 102 354Q102 551 177 730T377 1006T655 1104ZM406 70Q495 70 583 132T742 298T850 528T887
+741Q887 820 861 882T784 981T657 1018Q533 1018 433 936T269 691T205 365Q205 213 255 142T406 70ZM1183 1448Q1183 1356 1126 1300T980 1243Q887 1243 832 1295T777 1440Q777 1528 836 1584T986 1640Q1074 1640 1128 1590T1183 1448ZM1105 1446Q1105 1503 1072
+1536T984 1569Q924 1569 891 1533T857 1440Q857 1383 890 1350T980 1317Q1036 1317 1070 1353T1105 1446Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1602" d="M1155 -20Q1032 -20 944 40T827 205L788 0H711L752 254H743Q649 112 554 46T346 -20Q226 -20 164 74T102 344Q102 550 172 728T365 1005T639 1104Q745 1104 805 1048T879 891H889L948 1083H1014L979
+897Q1118 1104 1329 1104Q1441 1104 1504 1043T1567 870Q1567 691 1409 599T938 506H899Q891 455 891 410Q891 249 960 160T1178 70Q1247 70 1311 91T1442 143V49Q1362 12 1295 -4T1155 -20ZM369 70Q436 70 507 112T641 229T747 400T811 599T831 764Q831 882 782
+950T641 1018Q518 1018 418 932T262 692T205 352Q205 202 247 136T369 70ZM1317 1018Q1198 1018 1085 903T913 594H961Q1224 594 1344 661T1464 864Q1464 935 1426 976T1317 1018Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="887" d="M477 -20Q303 -20 203 90T102 397Q102 590 175 758T374 1015T664 1104Q798 1104 905 1061L877 971Q770 1018 659 1018Q530 1018 427 941T264 719T205 399Q205 241 278 156T487 70Q558 70 618
+83T750 129V37Q634 -20 477 -20ZM574 -289Q574 -383 499 -437T281 -492Q235 -492 203 -485V-406Q233 -412 275 -412Q473 -412 473 -297Q473 -200 322 -190L432 0H512L434 -137Q574 -167 574 -289Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="928" d="M469 -20Q296 -20 199 89T102 395Q102 576 173 742T368 1006T643 1104Q757 1104 825 1043T893 877Q893 696 730 601T244 506H211Q205 462 205 408Q205 243 279 157T492 70Q624 70 768 143V49Q628
+-20 469 -20ZM631 1018Q500 1018 388 903T225 594H274Q791 594 791 864Q791 931 748 974T631 1018ZM1007 1241H941Q891 1293 827 1385T728 1548V1569H843Q889 1440 1007 1266V1241Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="928" d="M469 -20Q296 -20 199 89T102 395Q102 576 173 742T368 1006T643 1104Q757 1104 825 1043T893 877Q893 696 730 601T244 506H211Q205 462 205 408Q205 243 279 157T492 70Q624 70 768 143V49Q628
+-20 469 -20ZM631 1018Q500 1018 388 903T225 594H274Q791 594 791 864Q791 931 748 974T631 1018ZM788 1262Q854 1313 938 1404T1068 1569H1205V1546Q1154 1480 1048 1388T855 1241H788V1262Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="928" d="M469 -20Q296 -20 199 89T102 395Q102 576 173 742T368 1006T643 1104Q757 1104 825 1043T893 877Q893 696 730 601T244 506H211Q205 462 205 408Q205 243 279 157T492 70Q624 70 768 143V49Q628
+-20 469 -20ZM631 1018Q500 1018 388 903T225 594H274Q791 594 791 864Q791 931 748 974T631 1018ZM1160 1241H1111Q1041 1301 950 1448Q895 1391 825 1334T700 1241H646V1270Q714 1326 803 1418T931 1569H995Q1018 1505 1067 1417T1160 1270V1241Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="928" d="M469 -20Q296 -20 199 89T102 395Q102 576 173 742T368 1006T643 1104Q757 1104 825 1043T893 877Q893 696 730 601T244 506H211Q205 462 205 408Q205 243 279 157T492 70Q624 70 768 143V49Q628
+-20 469 -20ZM631 1018Q500 1018 388 903T225 594H274Q791 594 791 864Q791 931 748 974T631 1018ZM1036 1366Q1036 1415 1056 1444T1113 1473Q1167 1473 1167 1409Q1167 1361 1146 1332T1091 1303Q1036 1303 1036 1366ZM692 1366Q692 1415 712 1444T769 1473Q823
+1473 823 1409Q823 1361 802 1332T747 1303Q692 1303 692 1366Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="475" d="M174 0H76L307 1087H403L174 0ZM454 1241H388Q338 1293 274 1385T175 1548V1569H290Q336 1440 454 1266V1241Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="475" d="M174 0H76L307 1087H403L174 0ZM284 1262Q350 1313 434 1404T564 1569H701V1546Q650 1480 544 1388T351 1241H284V1262Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="475" d="M174 0H76L307 1087H403L174 0ZM642 1241H593Q523 1301 432 1448Q377 1391 307 1334T182 1241H128V1270Q196 1326 285 1418T413 1569H477Q500 1505 549 1417T642 1270V1241Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="475" d="M174 0H76L307 1087H403L174 0ZM515 1366Q515 1415 535 1444T592 1473Q646 1473 646 1409Q646 1361 625 1332T570 1303Q515 1303 515 1366ZM171 1366Q171 1415 191 1444T248 1473Q302 1473
+302 1409Q302 1361 281 1332T226 1303Q171 1303 171 1366Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1124" d="M713 1364Q659 1424 555 1503L614 1571Q646 1545 695 1505T795 1411L1061 1561L1100 1487L844 1346Q931 1230 975 1070T1020 735Q1020 380 879 180T479 -20Q302 -20 202 86T102 381Q102 551 165
+682T343 886T606 958Q713 958 794 909T915 766H920Q920 905 877 1055T762 1298L467 1135L428 1208L713 1364ZM489 70Q607 70 697 131T841 317T895 588Q895 665 860 730T760 831T604 868Q480 868 391 807T253 637T205 389Q205 236 278 153T489 70Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1143" d="M764 0L913 692Q934 784 934 848Q934 928 891 973T756 1018Q644 1018 546 951T380 764T276 477L174 0H76L307 1087H389L352 866H358Q522 1104 774 1104Q904 1104 969 1040T1034 856Q1034 786
+1010 674L862 0H764ZM874 1249Q834 1249 797 1268T721 1313Q687 1336 657 1354T588 1372Q543 1372 514 1344T463 1243H389Q408 1351 460 1409T594 1468Q635 1468 667 1454T785 1382Q837 1346 879 1346Q922 1346 950 1376T997 1477H1073Q1047 1359 999 1304T874
+1249Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1124" d="M649 1108Q829 1108 927 1000T1026 700Q1026 503 955 332T759 70T473 -20Q289 -20 194 89T98 403Q98 594 171 761T368 1018T649 1108ZM641 1022Q517 1022 418 944T260 719T201 408Q201 66 483
+66Q610 66 708 143T865 371T924 702Q924 856 851 939T641 1022ZM1000 1241H934Q884 1293 820 1385T721 1548V1569H836Q882 1440 1000 1266V1241Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1124" d="M649 1108Q829 1108 927 1000T1026 700Q1026 503 955 332T759 70T473 -20Q289 -20 194 89T98 403Q98 594 171 761T368 1018T649 1108ZM641 1022Q517 1022 418 944T260 719T201 408Q201 66 483
+66Q610 66 708 143T865 371T924 702Q924 856 851 939T641 1022ZM829 1262Q895 1313 979 1404T1109 1569H1246V1546Q1195 1480 1089 1388T896 1241H829V1262Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1124" d="M649 1108Q829 1108 927 1000T1026 700Q1026 503 955 332T759 70T473 -20Q289 -20 194 89T98 403Q98 594 171 761T368 1018T649 1108ZM641 1022Q517 1022 418 944T260 719T201 408Q201
+66 483 66Q610 66 708 143T865 371T924 702Q924 856 851 939T641 1022ZM1197 1241H1148Q1078 1301 987 1448Q932 1391 862 1334T737 1241H683V1270Q751 1326 840 1418T968 1569H1032Q1055 1505 1104 1417T1197 1270V1241Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1124" d="M649 1108Q829 1108 927 1000T1026 700Q1026 503 955 332T759 70T473 -20Q289 -20 194 89T98 403Q98 594 171 761T368 1018T649 1108ZM641 1022Q517 1022 418 944T260 719T201 408Q201 66 483
+66Q610 66 708 143T865 371T924 702Q924 856 851 939T641 1022ZM839 1249Q799 1249 762 1268T686 1313Q652 1336 622 1354T553 1372Q508 1372 479 1344T428 1243H354Q373 1351 425 1409T559 1468Q600 1468 632 1454T750 1382Q802 1346 844 1346Q887 1346 915 1376T962
+1477H1038Q1012 1359 964 1304T839 1249Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1124" d="M649 1108Q829 1108 927 1000T1026 700Q1026 503 955 332T759 70T473 -20Q289 -20 194 89T98 403Q98 594 171 761T368 1018T649 1108ZM641 1022Q517 1022 418 944T260 719T201 408Q201 66
+483 66Q610 66 708 143T865 371T924 702Q924 856 851 939T641 1022ZM1068 1366Q1068 1415 1088 1444T1145 1473Q1199 1473 1199 1409Q1199 1361 1178 1332T1123 1303Q1068 1303 1068 1366ZM724 1366Q724 1415 744 1444T801 1473Q855 1473 855 1409Q855 1361 834
+1332T779 1303Q724 1303 724 1366Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1128" d="M168 672V772H1071V672H168ZM522 373Q522 479 618 479Q666 479 691 452T717 373Q717 316 688 291T618 266Q522 266 522 373ZM522 1071Q522 1178 618 1178Q664 1178 690 1151T717 1071Q717 1014
+688 990T618 965Q522 965 522 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1124" d="M164 127Q98 233 98 403Q98 594 171 761T368 1018T649 1108Q799 1108 899 1026L1008 1159L1073 1106L956 963Q1026 858 1026 700Q1026 503 955 332T759 70T473 -20Q310 -20 219 63L109 -72L45
+-18L164 127ZM924 702Q924 803 889 881L281 139Q348 66 483 66Q610 66 708 143T865 371T924 702ZM641 1022Q517 1022 418 944T260 719T201 408Q201 283 233 211L838 950Q764 1022 641 1022Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1143" d="M381 1087L229 389Q207 283 207 231Q207 157 254 114T393 70Q503 70 600 135T764 322T864 602L969 1087H1067L836 0H756L784 205H778Q611 -16 375 -16Q244 -16 177 46T109 227Q109 287 131
+397L281 1087H381ZM774 1241H708Q658 1293 594 1385T495 1548V1569H610Q656 1440 774 1266V1241Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1143" d="M381 1087L229 389Q207 283 207 231Q207 157 254 114T393 70Q503 70 600 135T764 322T864 602L969 1087H1067L836 0H756L784 205H778Q611 -16 375 -16Q244 -16 177 46T109 227Q109 287 131
+397L281 1087H381ZM627 1262Q693 1313 777 1404T907 1569H1044V1546Q993 1480 887 1388T694 1241H627V1262Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1143" d="M381 1087L229 389Q207 283 207 231Q207 157 254 114T393 70Q503 70 600 135T764 322T864 602L969 1087H1067L836 0H756L784 205H778Q611 -16 375 -16Q244 -16 177 46T109 227Q109 287
+131 397L281 1087H381ZM1213 1241H1164Q1094 1301 1003 1448Q948 1391 878 1334T753 1241H699V1270Q767 1326 856 1418T984 1569H1048Q1071 1505 1120 1417T1213 1270V1241Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1143" d="M381 1087L229 389Q207 283 207 231Q207 157 254 114T393 70Q503 70 600 135T764 322T864 602L969 1087H1067L836 0H756L784 205H778Q611 -16 375 -16Q244 -16 177 46T109 227Q109 287 131
+397L281 1087H381ZM1083 1366Q1083 1415 1103 1444T1160 1473Q1214 1473 1214 1409Q1214 1361 1193 1332T1138 1303Q1083 1303 1083 1366ZM739 1366Q739 1415 759 1444T816 1473Q870 1473 870 1409Q870 1361 849 1332T794 1303Q739 1303 739 1366Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="920" d="M123 1087H223L305 539Q356 188 360 90H371Q414 195 557 457L905 1087H1008L295 -203Q223 -330 173 -381T59 -462T-88 -492Q-156 -492 -217 -471V-379Q-146 -406 -80 -406Q0 -406 67 -357T197
+-192T297 -8L123 1087ZM761 1262Q827 1313 911 1404T1041 1569H1178V1546Q1127 1480 1021 1388T828 1241H761V1262Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1163" d="M498 -16Q268 -16 219 203H215Q202 131 66 -492H-33L401 1556H500Q386 1021 336 805H342Q435 961 541 1034T772 1108Q905 1108 978 1016T1051 733Q1051 538 979 362T782 85T498 -16ZM748 1018Q662
+1018 576 961T413 791T302 553T266 346Q266 221 327 146T496 70Q620 70 721 154T885 397T948 723Q948 1018 748 1018Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="920" d="M123 1087H223L305 539Q356 188 360 90H371Q414 195 557 457L905 1087H1008L295 -203Q223 -330 173 -381T59 -462T-88 -492Q-156 -492 -217 -471V-379Q-146 -406 -80 -406Q0 -406 67 -357T197
+-192T297 -8L123 1087ZM698 1366Q698 1415 718 1444T775 1473Q829 1473 829 1409Q829 1361 808 1332T753 1303Q698 1303 698 1366ZM354 1366Q354 1415 374 1444T431 1473Q485 1473 485 1409Q485 1361 464 1332T409 1303Q354 1303 354 1366Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="983" d="M66 502L84 592H891L874 502H66Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="1966" d="M68 502L86 592H1874L1858 502H68Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="299" d="M133 961L129 983Q170 1083 245 1214T406 1462H479Q413 1356 350 1220T246 961H133Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="299" d="M475 1462L479 1440Q436 1335 362 1205T203 961H129Q195 1067 258 1203T362 1462H475Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="451" d="M246 238L250 215Q210 118 135 -15T-27 -264H-100Q-32 -154 31 -16T133 238H246Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="631" d="M133 961L129 983Q170 1083 245 1214T406 1462H479Q413 1356 350 1220T246 961H133ZM467 961L463 983Q506 1087 583 1221T739 1462H813Q747 1356 684 1220T580 961H467Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="631" d="M809 1462L813 1440Q770 1335 696 1205T537 961H463Q529 1067 592 1203T696 1462H809ZM475 1462L479 1440Q436 1335 362 1205T203 961H129Q195 1067 258 1203T362 1462H475Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="776" d="M561 238L565 215Q522 110 448 -20T289 -264H215Q281 -156 344 -22T449 238H561ZM227 238L231 215Q188 110 114 -20T-45 -264H-119Q-46 -145 16 -10T115 238H227Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="793" d="M248 682Q248 819 311 895T483 971Q559 971 599 932T639 813Q639 688 573 606T397 524Q248 524 248 682Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="537" d="M451 932L508 883L190 547L403 162L340 123L86 541L88 567L451 932Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="537" d="M94 123L37 172L354 508L141 893L205 932L459 514L457 487L94 123Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.ttf b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.ttf
new file mode 100644
index 0000000..68299c4
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.ttf differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.woff b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.woff
new file mode 100644
index 0000000..360f4a4
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.woff differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.woff2 b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.woff2
new file mode 100644
index 0000000..ec0bfee
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.woff2 differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.eot b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.eot
new file mode 100644
index 0000000..23bc6a9
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.eot differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.svg b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.svg
new file mode 100644
index 0000000..ceb267c
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.svg
@@ -0,0 +1,19026 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1159" ><font-face
+    font-family="Open Sans Light"
+    units-per-em="2048"
+    panose-1="2 11 3 6 3 5 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="492" d="M276 377H215L186 1462H305L276 377ZM164 78Q164 176 244 176Q326 176 326 78Q326 -20 244 -20Q164 -20 164 78Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="723" d="M260 1462L227 934H166L133 1462H260ZM590 1462L557 934H496L463 1462H590Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M967 928L891 530H1194V451H874L788 0H698L786 451H426L340 0H252L338 451H55V530H354L430 928H133V1008H444L530 1462H621L532 1008H897L985 1462H1071L983 1008H1268V928H967ZM440 530H803L881
+928H518L440 530Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1169" d="M991 440Q991 307 892 223T618 117V-119H537V113Q445 115 337 135T164 186V289Q239 253 343 228T537 203V711Q392 755 322 799T220 903T188 1049Q188 1173 282 1257T537 1362V1554H618V1364Q815
+1355 969 1292L936 1202Q795 1264 618 1274V788Q831 722 911 644T991 440ZM881 444Q881 529 818 584T618 680V209Q740 222 810 284T881 444ZM297 1049Q297 963 354 908T537 815V1268Q418 1252 358 1192T297 1049Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1653" d="M211 1026Q211 840 256 747T397 653Q590 653 590 1026Q590 1210 541 1302T397 1395Q301 1395 256 1303T211 1026ZM688 1026Q688 800 613 683T397 565Q264 565 189 685T113 1026Q113 1249 185 1366T397
+1483Q536 1483 612 1363T688 1026ZM1063 438Q1063 253 1108 161T1249 68Q1442 68 1442 438Q1442 807 1249 807Q1153 807 1108 716T1063 438ZM1540 438Q1540 212 1466 95T1251 -23Q1115 -23 1040 98T965 438Q965 663 1038 779T1251 895Q1388 895 1464 775T1540 438ZM1280
+1462L469 0H373L1184 1462H1280Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1460" d="M123 371Q123 509 196 606T471 811L396 893Q330 964 298 1032T266 1174Q266 1317 361 1401T618 1485Q773 1485 863 1404T954 1180Q954 1075 884 988T631 793L1083 336Q1144 408 1187 493T1262
+694H1358Q1295 448 1149 268L1415 0H1280L1087 197Q995 107 923 66T766 2T571 -20Q362 -20 243 83T123 371ZM578 70Q706 70 812 113T1022 260L539 745Q403 673 343 623T255 513T227 375Q227 232 320 151T578 70ZM373 1176Q373 1097 413 1030T565 856Q724 941 786
+1015T848 1184Q848 1278 786 1336T618 1395Q504 1395 439 1337T373 1176Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="393" d="M260 1462L227 934H166L133 1462H260Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="557" d="M82 561Q82 826 159 1057T383 1462H496Q348 1280 269 1050T190 563Q190 80 494 -324H383Q236 -154 159 73T82 561Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="557" d="M475 561Q475 298 398 71T174 -324H63Q367 80 367 563Q367 820 288 1050T61 1462H174Q321 1287 398 1056T475 561Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1128" d="M631 1556L594 1151L999 1255L1020 1124L625 1085L872 745L748 674L557 1053L377 674L252 745L494 1085L104 1124L123 1255L524 1151L485 1556H631Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1169" d="M625 764H1059V682H625V250H543V682H111V764H543V1198H625V764Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="440" d="M295 238L307 217Q232 -48 133 -264H68Q145 11 178 238H295Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="659" d="M92 512V594H567V512H92Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="487" d="M162 78Q162 176 242 176Q324 176 324 78Q324 -20 242 -20Q162 -20 162 78Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="698" d="M674 1462L129 0H25L569 1462H674Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1169" d="M1055 735Q1055 350 938 165T582 -20Q353 -20 234 170T115 735Q115 1117 230 1301T582 1485Q813 1485 934 1295T1055 735ZM223 735Q223 395 312 233T582 70Q771 70 857 238T944 735Q944 1059 858 1227T582
+1395Q393 1395 308 1227T223 735Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1169" d="M682 0H584V1065Q584 1210 596 1366Q581 1351 565 1337T256 1094L199 1165L596 1462H682V0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1169" d="M1028 0H113V88L502 494Q666 664 732 754T829 926T860 1098Q860 1229 774 1311T551 1393Q368 1393 201 1260L147 1329Q330 1483 553 1483Q744 1483 853 1381T963 1100Q963 955 890 820T621 485L246
+100V96H1028V0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1169" d="M979 1118Q979 982 894 889T664 770V764Q840 742 932 652T1024 410Q1024 205 885 93T483 -20Q260 -20 94 63V162Q178 118 282 93T479 68Q700 68 811 157T922 410Q922 555 809 633T475 711H317V807H477Q659
+807 765 893T872 1128Q872 1250 786 1323T559 1397Q450 1397 360 1367T158 1262L109 1329Q194 1400 314 1441T557 1483Q759 1483 869 1388T979 1118Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1169" d="M1141 373H889V0H795V373H43V440L768 1470H889V459H1141V373ZM795 459V877Q795 1179 809 1384H801Q781 1347 678 1196L162 459H795Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1169" d="M537 879Q771 879 905 766T1040 455Q1040 230 900 105T514 -20Q405 -20 307 1T143 63V166Q251 111 335 90T514 68Q706 68 822 169T938 444Q938 607 825 700T518 793Q388 793 246 754L186 793L244 1462H948V1366H338L293
+850Q449 879 537 879Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1169" d="M131 623Q131 908 208 1102T428 1391T772 1485Q866 1485 944 1462V1374Q871 1401 768 1401Q521 1401 384 1223T229 705H242Q318 803 416 853T623 903Q828 903 943 786T1059 463Q1059 239 938 110T610
+-20Q388 -20 260 149T131 623ZM610 68Q774 68 865 171T956 465Q956 633 866 727T621 821Q519 821 432 776T292 657T240 504Q240 393 289 291T423 128T610 68Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1169" d="M334 0L936 1366H109V1462H1055V1389L451 0H334Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1169" d="M582 1487Q768 1487 881 1392T995 1135Q995 1023 925 937T696 778Q888 699 966 605T1044 377Q1044 196 918 88T578 -20Q357 -20 239 81T121 375Q121 506 204 605T461 774Q300 850 234 934T168 1137Q168
+1242 221 1321T369 1444T582 1487ZM223 360Q223 222 316 146T578 70Q742 70 842 150T942 369Q942 493 864 570T561 733Q377 662 300 576T223 360ZM580 1397Q439 1397 354 1328T268 1137Q268 1067 299 1014T390 917T590 815Q753 878 824 954T895 1137Q895 1257 811
+1327T580 1397Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1169" d="M1036 842Q1036 554 961 360T741 73T391 -20Q287 -20 199 6V92Q242 78 302 71T395 63Q642 63 782 241T938 762H926Q853 666 752 615T541 563Q338 563 225 675T111 993Q111 1213 235 1349T559 1485Q703
+1485 811 1410T977 1188T1036 842ZM559 1397Q401 1397 307 1291T213 999Q213 825 300 735T549 645Q650 645 737 690T876 809T928 961Q928 1078 882 1180T752 1339T559 1397Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="487" d="M162 78Q162 176 242 176Q324 176 324 78Q324 -20 242 -20Q162 -20 162 78ZM162 971Q162 1069 242 1069Q324 1069 324 971Q324 918 301 895T242 872Q208 872 185 895T162 971Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="487" d="M303 238L315 217Q240 -48 141 -264H76Q105 -167 138 -19T186 238H303ZM162 971Q162 1069 242 1069Q324 1069 324 971Q324 918 301 895T242 872Q208 872 185 895T162 971Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1169" d="M1059 266L111 682V743L1059 1217V1122L236 717L1059 362V266Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1169" d="M111 885V967H1059V885H111ZM111 477V559H1059V477H111Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1169" d="M111 362L934 717L111 1122V1217L1059 743V682L111 266V362Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="862" d="M293 377V414Q293 537 330 615T469 782L560 861Q632 922 663 982T694 1120Q694 1247 611 1322T391 1397Q312 1397 243 1380T94 1323L57 1403Q167 1451 241 1467T395 1483Q578 1483 683 1385T788
+1114Q788 1046 770 995T720 901T641 817T539 729Q475 675 441 631T391 537T375 391V377H293ZM260 78Q260 176 340 176Q422 176 422 78Q422 -20 340 -20Q260 -20 260 78Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1815" d="M1702 725Q1702 497 1612 359T1366 221Q1277 221 1222 275T1157 422H1153Q1110 322 1029 272T840 221Q692 221 611 317T530 588Q530 790 650 918T965 1047Q1103 1047 1251 1006L1229 542V512Q1229 408
+1264 356T1380 303Q1483 303 1548 419T1614 723Q1614 917 1535 1063T1310 1287T975 1366Q745 1366 570 1267T300 985T205 567Q205 245 372 70T846 -106Q939 -106 1034 -88T1266 -18V-117Q1063 -197 852 -197Q503 -197 308 3T113 561Q113 817 221 1021T528 1339T977
+1452Q1192 1452 1357 1363T1612 1109T1702 725ZM633 590Q633 447 688 375T862 303Q1117 303 1135 649L1151 940Q1072 967 958 967Q809 967 721 865T633 590Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1284" d="M207 1462H608Q879 1462 1006 1370T1133 1092Q1133 965 1056 881T829 772V766Q1004 740 1086 656T1169 420Q1169 218 1035 109T655 0H207V1462ZM309 811H631Q837 811 930 879T1024 1094Q1024 1240 919
+1306T604 1372H309V811ZM309 721V90H653Q1059 90 1059 420Q1059 721 631 721H309Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1272" d="M831 1391Q556 1391 398 1215T240 733Q240 420 389 247T815 74Q999 74 1153 121V31Q1008 -20 791 -20Q483 -20 306 179T129 735Q129 958 213 1128T456 1390T825 1483Q1039 1483 1208 1403L1167 1311Q1007
+1391 831 1391Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1446" d="M1317 745Q1317 377 1124 189T557 0H207V1462H602Q952 1462 1134 1279T1317 745ZM1206 741Q1206 1055 1047 1213T578 1372H309V90H551Q1206 90 1206 741Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1130" d="M1006 0H207V1462H1006V1368H309V815H967V721H309V94H1006V0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1028" d="M309 0H207V1462H1008V1368H309V748H969V653H309V0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1481" d="M782 737H1321V70Q1109 -20 844 -20Q498 -20 314 175T129 729Q129 952 220 1124T482 1391T874 1485Q1113 1485 1303 1397L1262 1305Q1072 1393 868 1393Q579 1393 410 1215T240 733Q240 403 401 237T874
+70Q1076 70 1217 127V641H782V737Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1473" d="M1266 0H1163V719H309V0H207V1462H309V813H1163V1462H1266V0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="516" d="M207 0V1462H309V0H207Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="506" d="M-33 -369Q-125 -369 -184 -342V-254Q-106 -274 -35 -274Q207 -274 207 -10V1462H309V0Q309 -369 -33 -369Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1190" d="M1190 0H1065L504 772L309 600V0H207V1462H309V702L471 864L1044 1462H1174L575 844L1190 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1051" d="M207 0V1462H309V96H1006V0H207Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1767" d="M850 0L305 1350H297Q305 1226 305 1096V0H207V1462H365L883 176H889L1407 1462H1561V0H1458V1108Q1458 1224 1470 1348H1462L915 0H850Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1477" d="M1270 0H1167L301 1298H293Q305 1066 305 948V0H207V1462H309L1174 166H1180Q1171 346 1171 508V1462H1270V0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325 733Q1325 1049 1186
+1217T784 1386Q523 1386 382 1216T240 733Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1198" d="M1087 1042Q1087 830 943 717T535 604H309V0H207V1462H565Q1087 1462 1087 1042ZM309 692H510Q757 692 867 773T977 1038Q977 1207 873 1288T551 1370H309V692Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1565" d="M1436 733Q1436 439 1310 247T961 0L1294 -348H1128L846 -18L813 -20H782Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046
+76 1185 246T1325 733Q1325 1049 1186 1217T784 1386Q523 1386 382 1216T240 733Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1217" d="M309 637V0H207V1462H555Q827 1462 957 1362T1087 1059Q1087 912 1010 811T774 666L1171 0H1049L672 637H309ZM309 725H588Q773 725 875 807T977 1051Q977 1218 877 1294T551 1370H309V725Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1116" d="M1014 377Q1014 194 880 87T522 -20Q254 -20 111 39V141Q269 74 514 74Q694 74 799 156T905 373Q905 456 870 510T756 610T524 707Q300 784 215 873T129 1112Q129 1276 257 1379T588 1483Q794 1483 975
+1405L938 1317Q756 1393 590 1393Q428 1393 332 1318T236 1114Q236 1033 265 981T362 888T592 788Q763 729 849 674T974 548T1014 377Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1073" d="M588 0H485V1366H10V1462H1063V1366H588V0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1473" d="M1282 1462V516Q1282 264 1136 122T729 -20Q475 -20 333 122T190 520V1462H293V516Q293 305 410 188T741 70Q950 70 1065 185T1180 506V1462H1282Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1182" d="M1071 1462H1182L635 0H545L0 1462H109L477 467Q561 242 590 129Q610 204 669 362L1071 1462Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1827" d="M1372 0H1288L967 1128Q927 1267 907 1356Q891 1269 862 1156T539 0H453L51 1462H158L414 520Q429 463 442 415T465 324T484 242T500 162Q524 298 602 575L852 1462H965L1258 444Q1309 268 1331 160Q1344
+232 1364 313T1673 1462H1776L1372 0Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1102" d="M1102 0H985L553 682L113 0H0L492 762L45 1462H160L555 836L956 1462H1065L612 764L1102 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1081" d="M543 662L971 1462H1081L594 565V0H489V557L0 1462H117L543 662Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1180" d="M1098 0H82V76L938 1366H121V1462H1075V1386L217 96H1098V0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="653" d="M602 -324H174V1462H602V1368H272V-229H602V-324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="698" d="M127 1462L674 0H571L25 1462H127Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="653" d="M51 -229H381V1368H51V1462H479V-324H51V-229Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1169" d="M88 561L553 1473H621L1081 561H981L586 1352L188 561H88Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="842" d="M846 -266H-4V-184H846V-266Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1182" d="M776 1241H707Q611 1320 519 1412T393 1552V1569H535Q561 1521 633 1427T776 1257V1241Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106 826 1013T915
+723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1219" d="M641 1108Q869 1108 984 965T1100 545Q1100 274 979 127T637 -20Q521 -20 428 28T281 164H272L244 0H182V1556H281V1165Q281 1077 277 1003L274 918H281Q343 1016 430 1062T641 1108ZM639 1018Q447 1018
+364 908T281 545V528Q281 282 367 175T637 68Q815 68 905 192T995 547Q995 1018 639 1018Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="973" d="M616 -20Q383 -20 251 127T119 537Q119 807 256 957T631 1108Q772 1108 901 1059L874 971Q733 1018 629 1018Q429 1018 326 895T223 539Q223 319 326 195T614 70Q762 70 889 123V31Q785 -20 616 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1219" d="M580 1108Q698 1108 784 1065T938 918H944Q938 1044 938 1165V1556H1036V0H971L946 166H938Q814 -20 582 -20Q357 -20 238 120T119 528Q119 810 237 959T580 1108ZM580 1018Q402 1018 313 893T223 530Q223
+68 582 68Q766 68 852 175T938 528V545Q938 797 854 907T580 1018Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1124" d="M621 -20Q384 -20 252 126T119 535Q119 795 247 951T592 1108Q784 1108 895 974T1006 610V530H223Q225 306 327 188T621 70Q714 70 784 83T963 139V49Q871 9 793 -5T621 -20ZM592 1020Q435 1020 340 917T229
+618H901Q901 807 819 913T592 1020Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="614" d="M586 1001H330V0H231V1001H29V1059L231 1096V1180Q231 1380 304 1473T545 1567Q635 1567 725 1540L702 1454Q622 1479 543 1479Q427 1479 379 1411T330 1188V1087H586V1001Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1071" d="M1030 1087V1018L805 1004Q895 892 895 758Q895 601 791 504T510 406Q436 406 406 412Q347 381 316 339T285 250Q285 198 324 174T457 150H647Q824 150 918 79T1012 -133Q1012 -305 873 -398T475 -492Q270
+-492 158 -413T45 -193Q45 -81 114 -7T303 94Q254 115 225 153T195 242Q195 351 334 434Q239 473 186 556T133 748Q133 911 236 1009T516 1108Q623 1108 682 1087H1030ZM150 -184Q150 -408 483 -408Q911 -408 911 -135Q911 -37 844 7T627 51H449Q150 51 150 -184ZM233
+748Q233 622 309 553T514 483Q650 483 722 552T795 752Q795 891 721 960T512 1030Q382 1030 308 956T233 748Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1208" d="M940 0V705Q940 869 871 943T657 1018Q462 1018 372 920T281 600V0H182V1556H281V1061L276 922H283Q344 1020 437 1064T668 1108Q1038 1108 1038 711V0H940Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="463" d="M281 0H182V1087H281V0ZM168 1389Q168 1485 231 1485Q262 1485 279 1460T297 1389Q297 1344 280 1318T231 1292Q168 1292 168 1389Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="463" d="M37 -492Q-43 -492 -98 -467V-381Q-29 -401 31 -401Q182 -401 182 -225V1087H281V-211Q281 -346 218 -419T37 -492ZM168 1389Q168 1485 231 1485Q262 1485 279 1460T297 1389Q297 1344 280 1318T231 1292Q168
+1292 168 1389Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="991" d="M279 477L834 1087H954L526 623L991 0H872L459 549L281 387V0H182V1556H281V776L274 477H279Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="463" d="M281 0H182V1556H281V0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1808" d="M1540 0V713Q1540 872 1478 945T1288 1018Q1121 1018 1041 926T961 637V0H860V743Q860 1018 608 1018Q437 1018 359 919T281 600V0H182V1087H264L285 938H291Q336 1019 419 1063T602 1108Q859 1108 932
+915H936Q989 1008 1078 1058T1282 1108Q1460 1108 1549 1013T1638 711V0H1540Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1208" d="M940 0V705Q940 869 871 943T657 1018Q462 1018 372 920T281 600V0H182V1087H266L285 938H291Q397 1108 668 1108Q1038 1108 1038 711V0H940Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977 770 878 894T598
+1018Q418 1018 321 895T223 545Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1219" d="M647 -20Q396 -20 281 168H274L277 84Q281 10 281 -78V-492H182V1087H266L285 932H291Q403 1108 649 1108Q869 1108 984 964T1100 543Q1100 275 979 128T647 -20ZM645 68Q812 68 903 192T995 539Q995
+1018 649 1018Q459 1018 370 914T281 573V541Q281 286 366 177T645 68Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1219" d="M569 -20Q355 -20 237 122T119 532Q119 807 237 957T575 1108Q811 1108 928 934H934L952 1087H1036V-492H938V-78Q938 44 944 170H938Q820 -20 569 -20ZM571 68Q769 68 853 177T938 543V555Q938 800 853
+909T582 1018Q406 1018 315 894T223 530Q223 301 312 185T571 68Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="797" d="M610 1108Q679 1108 758 1094L739 999Q671 1016 598 1016Q459 1016 370 898T281 600V0H182V1087H266L276 891H283Q350 1011 426 1059T610 1108Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="954" d="M856 283Q856 137 745 59T430 -20Q212 -20 84 47V154Q248 72 430 72Q591 72 674 125T758 268Q758 350 692 406T473 516Q310 575 244 617T145 713T111 844Q111 966 213 1037T500 1108Q676 1108 834 1042L797
+952Q637 1018 500 1018Q367 1018 289 974T211 852Q211 767 271 716T508 602Q655 549 722 507T822 410T856 283Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="686" d="M469 68Q563 68 633 84V4Q561 -20 467 -20Q323 -20 255 57T186 299V1001H25V1059L186 1104L236 1350H287V1087H606V1001H287V313Q287 188 331 128T469 68Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1208" d="M268 1087V383Q268 219 337 145T551 70Q745 70 836 168T928 487V1087H1026V0H942L924 150H918Q812 -20 541 -20Q170 -20 170 377V1087H268Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="940" d="M420 0L0 1087H102L383 348Q439 206 467 100H473Q514 236 557 350L838 1087H940L520 0H420Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1481" d="M1051 0L813 727Q790 801 754 944H748L727 870L682 725L440 0H342L31 1087H137L311 457Q372 223 391 113H397Q456 347 483 424L707 1087H797L1010 426Q1082 191 1098 115H1104Q1112 180 1184 463L1350
+1087H1450L1155 0H1051Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1020" d="M449 559L70 1087H184L508 629L829 1087H938L565 559L965 0H850L508 485L164 0H55L449 559Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="940" d="M0 1087H102L332 477Q437 196 465 98H471Q513 227 608 483L838 1087H940L453 -176Q394 -330 354 -384T261 -465T131 -492Q74 -492 4 -471V-385Q62 -401 129 -401Q180 -401 219 -377T289 -303T362 -143T416
+0L0 1087Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="944" d="M858 0H82V63L727 999H129V1087H856V1024L207 88H858V0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="723" d="M389 -27Q389 -129 448 -179T651 -233V-324Q456 -324 374 -249T291 -18V319Q291 524 61 528V608Q183 610 237 659T291 807V1157Q291 1456 651 1462V1372Q513 1367 451 1314T389 1157V852Q389 722
+345 658T203 573V565Q300 545 344 482T389 295V-27Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1108" d="M508 1561H600V-506H508V1561Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="723" d="M334 295Q334 418 378 481T520 565V573Q423 593 379 657T334 852V1157Q334 1260 273 1313T72 1372V1462Q246 1462 339 1385T432 1157V807Q432 707 486 659T662 608V528Q432 524 432 319V-18Q432
+-173 350 -248T72 -324V-233Q213 -231 273 -181T334 -27V295Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1169" d="M334 745Q285 745 226 715T111 625V719Q219 829 344 829Q405 829 459 816T614 758Q740 700 834 700Q890 700 943 730T1059 825V729Q1011 680 955 648T825 616Q709 616 555 688Q431 745 334 745Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="492" d="M215 711H276L305 -375H186L215 711ZM166 1010Q166 1108 246 1108Q328 1108 328 1010Q328 957 305 934T246 911Q212 911 189 934T166 1010Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1169" d="M602 190Q416 220 314 365T211 745Q211 977 313 1126T602 1309V1483H684V1317H698Q829 1317 973 1262L942 1178Q808 1229 705 1229Q518 1229 417 1107T315 748Q315 523 415 399T696 274Q827 274
+963 332V240Q853 184 696 184H684V-20H602V190Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1169" d="M412 676V420Q412 304 377 224T264 96H1073V0H78V84Q188 105 249 194T311 418V676H100V758H311V1055Q311 1259 409 1370T690 1481Q865 1481 1020 1413L985 1327Q828 1393 690 1393Q549 1393
+481 1312T412 1059V758H823V676H412Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1169" d="M991 723Q991 572 901 467L1040 326L981 266L844 408Q734 315 584 315Q431 315 324 408L186 266L127 326L266 467Q176 573 176 723Q176 870 266 981L127 1122L186 1182L324 1040Q427 1133
+584 1133Q739 1133 844 1040L981 1182L1040 1122L901 981Q991 870 991 723ZM584 395Q718 395 812 490T907 723Q907 859 812 956T584 1053Q450 1053 355 956T260 723Q260 587 354 491T584 395Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1169" d="M586 666L1014 1462H1124L692 674H975V592H637V387H975V305H637V0H532V305H195V387H532V592H195V674H473L43 1462H160L586 666Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1108" d="M508 1561H600V797H508V1561ZM508 258H600V-506H508V258Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="1057" d="M145 813Q145 896 195 965T334 1073Q248 1120 209 1175T170 1311Q170 1428 271 1494T547 1561Q722 1561 883 1497L848 1417Q757 1451 690 1464T545 1477Q411 1477 340 1433T268 1313Q268 1259
+293 1225T379 1159T567 1085Q759 1021 831 953T903 782Q903 609 717 508Q803 466 846 412T889 276Q889 141 776 69T465 -4Q373 -4 294 11T129 63V158Q311 80 461 80Q623 80 708 129T793 270Q793 325 768 357T680 423T489 502Q289 575 217 643T145 813ZM246 825Q246
+760 277 721T383 646T633 547Q715 588 759 645T803 766Q803 828 771 868T663 945T426 1032Q345 1009 296 953T246 825Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1182" d="M336 1389Q336 1435 351 1455T399 1475Q463 1475 463 1389Q463 1303 399 1303Q336 1303 336 1389ZM717 1389Q717 1435 732 1455T780 1475Q844 1475 844 1389Q844 1303 780 1303Q717 1303 717 1389Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M897 1092Q755 1092 675 998T594 733Q594 547 668 458T889 369Q973 369 1087 412V324Q985 279 879 279Q692 279 591 394T489 725Q489 933 600 1057T897 1182Q1016 1182 1124 1130L1087 1047Q989
+1092 897 1092ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM193 731Q193 553 281 402T522 161T852 72Q1030 72 1181 160T1422 401T1511 731Q1511
+905 1426 1056T1187 1299T852 1391Q676 1391 524 1303T282 1060T193 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="686" d="M512 813L487 885Q403 801 285 801Q190 801 134 850T78 989Q78 1089 158 1140T399 1200L494 1204V1247Q494 1324 456 1361T350 1399Q263 1399 154 1350L121 1423Q238 1479 352 1479Q580
+1479 580 1264V813H512ZM168 993Q168 939 203 908T299 877Q389 877 441 927T494 1069V1133L406 1128Q290 1122 229 1092T168 993Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="885" d="M82 543L391 936L453 893L199 530L453 168L391 125L82 516V543ZM442 543L752 936L813 893L559 530L813 168L752 125L442 516V543Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1169" d="M1038 764V270H956V682H111V764H1038Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="659" d="M92 512V594H567V512H92Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M709 731H821Q912 731 964 777T1016 913Q1016 1085 819 1085H709V731ZM1120 918Q1120 839 1082 779T971 684L1208 291H1087L877 651H709V291H608V1171H819Q962 1171 1041 1109T1120 918ZM100
+731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM193 731Q193 553 281 402T522 161T852 72Q1030 72 1181 160T1422 401T1511 731Q1511 905 1426 1056T1187
+1299T852 1391Q676 1391 524 1303T282 1060T193 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6V1638H1030V1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M139 1184Q139 1316 225 1399T438 1483Q564 1483 650 1400T737 1184Q737 1052 651 969T438 885Q308 885 224 968T139 1184ZM229 1184Q229 1093 290 1030T438 967Q524 967 585 1029T647 1184Q647
+1276 587 1338T438 1401Q348 1401 289 1337T229 1184Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1169" d="M111 1V83H1059V1H111ZM625 764H1059V682H625V250H543V682H111V764H543V1198H625V764Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="688" d="M629 586H53V664L295 901Q420 1022 467 1094T514 1243Q514 1314 468 1355T344 1397Q236 1397 127 1315L78 1380Q197 1483 348 1483Q472 1483 542 1420T612 1245Q612 1198 599 1156T559
+1071T491 981T182 674H629V586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="688" d="M616 1260Q616 1182 572 1129T455 1053Q641 1008 641 842Q641 712 553 641T305 569Q161 569 41 629V717Q177 655 307 655Q422 655 481 704T541 840Q541 923 482 962T303 1001H172V1085H307Q412
+1085 465 1128T518 1249Q518 1316 471 1356T344 1397Q216 1397 98 1319L51 1389Q181 1483 344 1483Q471 1483 543 1423T616 1260Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1182" d="M393 1257Q466 1336 537 1428T635 1569H776V1552Q740 1500 654 1414T463 1241H393V1257Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1221" d="M281 1087V383Q281 219 350 145T563 70Q757 70 848 168T940 487V1087H1038V0H954L936 150H930Q880 73 780 27T563 -20Q464 -20 396 7T276 92Q281 0 281 -78V-492H182V1087H281Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1106 -260H1006V1462H778V-260H678V559Q614 541 532 541Q316 541 215 666T113 1042Q113 1302 222 1429T563 1556H1106V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="487" d="M162 721Q162 819 242 819Q324 819 324 721Q324 623 242 623Q162 623 162 721Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="420" d="M393 -291Q393 -391 326 -441T137 -492Q69 -492 43 -481V-393Q73 -403 135 -403Q213 -403 254 -375T295 -295Q295 -201 102 -174L195 0H291L225 -117Q393 -154 393 -291Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="688" d="M350 1462H442V586H344V1133Q344 1232 356 1366Q330 1343 123 1221L76 1298L350 1462Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="739" d="M670 1141Q670 980 590 891T367 801Q224 801 147 887T70 1141Q70 1303 148 1391T371 1479Q513 1479 591 1392T670 1141ZM160 1141Q160 877 369 877Q578 877 578 1141Q578 1272 528 1335T369
+1399Q260 1399 210 1336T160 1141Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="885" d="M803 518L494 125L432 168L686 530L432 893L494 936L803 545V518ZM442 518L133 125L72 168L326 530L72 893L133 936L442 545V518Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1516" d="M589 1462H681V586H583V1133Q583 1232 595 1366Q569 1343 362 1221L315 1298L589 1462ZM1148 1462L337 0H243L1054 1462H1148ZM1392 242H1263V1H1173V242H760V302L1167 883H1263V320H1392V242ZM1173
+320V541Q1173 673 1181 773Q1175 761 1160 738T864 320H1173Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1516" d="M541 1462H633V586H535V1133Q535 1232 547 1366Q521 1343 314 1221L267 1298L541 1462ZM1073 1462L262 0H168L979 1462H1073ZM1403 1H827V79L1069 316Q1194 437 1241 509T1288 658Q1288 729
+1242 770T1118 812Q1010 812 901 730L852 795Q971 898 1122 898Q1246 898 1316 835T1386 660Q1386 613 1373 571T1333 486T1265 396T956 89H1403V1Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1516" d="M616 1260Q616 1182 572 1129T455 1053Q641 1008 641 842Q641 712 553 641T305 569Q161 569 41 629V717Q177 655 307 655Q422 655 481 704T541 840Q541 923 482 962T303 1001H172V1085H307Q412
+1085 465 1128T518 1249Q518 1316 471 1356T344 1397Q216 1397 98 1319L51 1389Q181 1483 344 1483Q471 1483 543 1423T616 1260ZM1300 1462L489 0H395L1206 1462H1300ZM1495 242H1366V1H1276V242H863V302L1270 883H1366V320H1495V242ZM1276 320V541Q1276 673 1284
+773Q1278 761 1263 738T967 320H1276Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="862" d="M569 711V674Q569 549 530 470T393 305L303 226Q230 165 199 106T168 -33Q168 -157 250 -233T471 -309Q596 -309 704 -263L768 -236L805 -315Q694 -363 620 -379T467 -395Q283 -395 179
+-296T74 -27Q74 43 94 97T152 199T324 358Q388 411 422 456T472 550T487 696V711H569ZM440 1010Q440 1108 520 1108Q602 1108 602 1010Q602 957 579 934T520 911Q486 911 463 934T440 1010Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM720 1579H651Q555 1658 463 1750T337 1890V1907H479Q505 1859
+577 1765T720 1595V1579Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM504 1595Q577 1674 648 1766T746 1907H887V1890Q851 1838
+765 1752T574 1579H504V1595Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM328 1595Q390 1662 459 1751T570 1907H668Q736 1787
+910 1595V1579H840Q718 1680 619 1786Q511 1672 398 1579H328V1595Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM784 1581Q748 1581 709 1599T608 1671Q576 1697 546 1717T483
+1737Q438 1737 408 1703T360 1581H287Q297 1692 350 1755T487 1819Q535 1819 575 1794T657 1735Q691 1707 723 1685T784 1663Q830 1663 861 1699T909 1819H985Q969 1703 916 1642T784 1581Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM367 1727Q367 1773 382 1793T430 1813Q494 1813 494 1727Q494
+1641 430 1641Q367 1641 367 1727ZM748 1727Q748 1773 763 1793T811 1813Q875 1813 875 1727Q875 1641 811 1641Q748 1641 748 1727Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM836 1610Q836 1513 776 1455T619 1397Q522 1397 462 1455T402
+1610Q402 1704 462 1762T619 1821Q716 1821 776 1762T836 1610ZM482 1610Q482 1544 519 1507T619 1469Q681 1469 718 1506T756 1610Q756 1674 717 1711T619 1749Q557 1749 520 1711T482 1610Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1653" d="M1528 0H811V516H336L109 0H-2L651 1462H1528V1368H913V815H1489V721H913V94H1528V0ZM377 608H811V1368H711L377 608Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1272" d="M831 1391Q556 1391 398 1215T240 733Q240 420 389 247T815 74Q999 74 1153 121V31Q1008 -20 791 -20Q483 -20 306 179T129 735Q129 958 213 1128T456 1390T825 1483Q1039 1483 1208 1403L1167
+1311Q1007 1391 831 1391ZM911 -291Q911 -391 844 -441T655 -492Q587 -492 561 -481V-393Q591 -403 653 -403Q731 -403 772 -375T813 -295Q813 -201 620 -174L713 0H809L743 -117Q911 -154 911 -291Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1130" d="M1006 0H207V1462H1006V1368H309V815H967V721H309V94H1006V0ZM697 1579H628Q532 1658 440 1750T314 1890V1907H456Q482 1859 554 1765T697 1595V1579Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1130" d="M1006 0H207V1462H1006V1368H309V815H967V721H309V94H1006V0ZM463 1595Q536 1674 607 1766T705 1907H846V1890Q810 1838 724 1752T533 1579H463V1595Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1130" d="M1006 0H207V1462H1006V1368H309V815H967V721H309V94H1006V0ZM315 1595Q377 1662 446 1751T557 1907H655Q723 1787 897 1595V1579H827Q705 1680 606 1786Q498 1672 385 1579H315V1595Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1130" d="M1006 0H207V1462H1006V1368H309V815H967V721H309V94H1006V0ZM354 1727Q354 1773 369 1793T417 1813Q481 1813 481 1727Q481 1641 417 1641Q354 1641 354 1727ZM735 1727Q735 1773 750 1793T798
+1813Q862 1813 862 1727Q862 1641 798 1641Q735 1641 735 1727Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="516" d="M207 0V1462H309V0H207ZM320 1579H251Q155 1658 63 1750T-63 1890V1907H79Q105 1859 177 1765T320 1595V1579Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="516" d="M207 0V1462H309V0H207ZM191 1595Q264 1674 335 1766T433 1907H574V1890Q538 1838 452 1752T261 1579H191V1595Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="516" d="M207 0V1462H309V0H207ZM-32 1595Q30 1662 99 1751T210 1907H308Q376 1787 550 1595V1579H480Q358 1680 259 1786Q151 1672 38 1579H-32V1595Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="516" d="M207 0V1462H309V0H207ZM5 1727Q5 1773 20 1793T68 1813Q132 1813 132 1727Q132 1641 68 1641Q5 1641 5 1727ZM386 1727Q386 1773 401 1793T449 1813Q513 1813 513 1727Q513 1641 449 1641Q386
+1641 386 1727Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1466" d="M1317 745Q1317 377 1124 189T557 0H207V678H47V772H207V1462H602Q952 1462 1134 1279T1317 745ZM1206 741Q1206 1055 1047 1213T578 1372H309V772H715V678H309V90H551Q1206 90 1206 741Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1477" d="M1270 0H1167L301 1298H293Q305 1066 305 948V0H207V1462H309L1174 166H1180Q1171 346 1171 508V1462H1270V0ZM897 1581Q861 1581 822 1599T721 1671Q689 1697 659 1717T596 1737Q551 1737
+521 1703T473 1581H400Q410 1692 463 1755T600 1819Q648 1819 688 1794T770 1735Q804 1707 836 1685T897 1663Q943 1663 974 1699T1022 1819H1098Q1082 1703 1029 1642T897 1581Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325 733Q1325
+1049 1186 1217T784 1386Q523 1386 382 1216T240 733ZM885 1579H816Q720 1658 628 1750T502 1890V1907H644Q670 1859 742 1765T885 1595V1579Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325 733Q1325
+1049 1186 1217T784 1386Q523 1386 382 1216T240 733ZM686 1595Q759 1674 830 1766T928 1907H1069V1890Q1033 1838 947 1752T756 1579H686V1595Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325
+733Q1325 1049 1186 1217T784 1386Q523 1386 382 1216T240 733ZM492 1595Q554 1662 623 1751T734 1907H832Q900 1787 1074 1595V1579H1004Q882 1680 783 1786Q675 1672 562 1579H492V1595Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325 733Q1325
+1049 1186 1217T784 1386Q523 1386 382 1216T240 733ZM940 1581Q904 1581 865 1599T764 1671Q732 1697 702 1717T639 1737Q594 1737 564 1703T516 1581H443Q453 1692 506 1755T643 1819Q691 1819 731 1794T813 1735Q847 1707 879 1685T940 1663Q986 1663 1017 1699T1065
+1819H1141Q1125 1703 1072 1642T940 1581Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325 733Q1325
+1049 1186 1217T784 1386Q523 1386 382 1216T240 733ZM529 1727Q529 1773 544 1793T592 1813Q656 1813 656 1727Q656 1641 592 1641Q529 1641 529 1727ZM910 1727Q910 1773 925 1793T973 1813Q1037 1813 1037 1727Q1037 1641 973 1641Q910 1641 910 1727Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1169" d="M584 780L993 1188L1051 1130L643 723L1049 315L991 258L584 666L178 258L121 315L526 723L119 1130L176 1188L584 780Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q546 -20 387 100L301 -20L227 39L317 166Q129 366 129 735Q129 1084 304 1284T784 1485Q1016 1485 1176 1364L1284 1516L1356 1456L1245 1303Q1436 1096
+1436 733ZM1325 733Q1325 1048 1186 1219L444 182Q577 76 782 76Q1046 76 1185 246T1325 733ZM240 733Q240 421 379 250L1118 1284Q985 1386 784 1386Q523 1386 382 1216T240 733Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1473" d="M1282 1462V516Q1282 264 1136 122T729 -20Q475 -20 333 122T190 520V1462H293V516Q293 305 410 188T741 70Q950 70 1065 185T1180 506V1462H1282ZM833 1579H764Q668 1658 576 1750T450 1890V1907H592Q618
+1859 690 1765T833 1595V1579Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1473" d="M1282 1462V516Q1282 264 1136 122T729 -20Q475 -20 333 122T190 520V1462H293V516Q293 305 410 188T741 70Q950 70 1065 185T1180 506V1462H1282ZM633 1595Q706 1674 777 1766T875 1907H1016V1890Q980
+1838 894 1752T703 1579H633V1595Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1473" d="M1282 1462V516Q1282 264 1136 122T729 -20Q475 -20 333 122T190 520V1462H293V516Q293 305 410 188T741 70Q950 70 1065 185T1180 506V1462H1282ZM444 1595Q506 1662 575 1751T686 1907H784Q852
+1787 1026 1595V1579H956Q834 1680 735 1786Q627 1672 514 1579H444V1595Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1473" d="M1282 1462V516Q1282 264 1136 122T729 -20Q475 -20 333 122T190 520V1462H293V516Q293 305 410 188T741 70Q950 70 1065 185T1180 506V1462H1282ZM481 1727Q481 1773 496 1793T544 1813Q608
+1813 608 1727Q608 1641 544 1641Q481 1641 481 1727ZM862 1727Q862 1773 877 1793T925 1813Q989 1813 989 1727Q989 1641 925 1641Q862 1641 862 1727Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1081" d="M543 662L971 1462H1081L594 565V0H489V557L0 1462H117L543 662ZM434 1595Q507 1674 578 1766T676 1907H817V1890Q781 1838 695 1752T504 1579H434V1595Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1198" d="M1087 778Q1087 566 943 453T535 340H309V0H207V1462H309V1198H565Q1087 1198 1087 778ZM309 428H510Q757 428 867 509T977 774Q977 943 873 1024T551 1106H309V428Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1194" d="M961 1284Q961 1145 822 1034Q741 970 712 934T682 858Q682 814 696 790T748 733T850 655Q956 580 1001 531T1069 428T1092 307Q1092 151 1004 66T758 -20Q663 -20 584 -2T457 47V154Q522
+116 605 92T758 68Q872 68 932 122T993 283Q993 366 954 427T805 563Q678 650 630 710T582 856Q582 916 614 966T721 1074Q795 1131 827 1179T860 1286Q860 1379 790 1429T588 1479Q443 1479 362 1410T281 1214V0H182V1206Q182 1379 285 1473T578 1567Q766 1567
+863 1495T961 1284Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106
+826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM638 1241H569Q473 1320 381 1412T255 1552V1569H397Q423 1521 495 1427T638 1257V1241Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106
+826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM422 1257Q495 1336 566 1428T664 1569H805V1552Q769 1500 683 1414T492 1241H422V1257Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738
+1106 826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM507 1257Q569 1324 638 1413T749 1569H847Q915 1449 1089 1257V1241H1019Q897 1342 798 1448Q690 1334 577 1241H507V1257Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106
+826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM953 1243Q917 1243 878 1261T777 1333Q745 1359 715 1379T652 1399Q607 1399 577 1365T529 1243H456Q466 1354 519 1417T656 1481Q704 1481
+744 1456T826 1397Q860 1369 892 1347T953 1325Q999 1325 1030 1361T1078 1481H1154Q1138 1365 1085 1304T953 1243Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106
+826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM538 1389Q538 1435 553 1455T601 1475Q665 1475 665 1389Q665 1303 601 1303Q538 1303 538 1389ZM919 1389Q919 1435 934 1455T982 1475Q1046
+1475 1046 1389Q1046 1303 982 1303Q919 1303 919 1389Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106
+826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM1015 1456Q1015 1359 955 1301T798 1243Q701 1243 641 1301T581 1456Q581 1550 641 1608T798 1667Q895 1667 955 1608T1015 1456ZM661 1456Q661
+1390 698 1353T798 1315Q860 1315 897 1352T935 1456Q935 1520 896 1557T798 1595Q736 1595 699 1557T661 1456Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1731" d="M1243 -20Q948 -20 846 236Q778 103 678 42T426 -20Q270 -20 184 62T98 289Q98 443 223 532T600 629L801 635V707Q801 862 740 941T541 1020Q393 1020 236 936L199 1022Q372 1106 545 1106Q806
+1106 870 895Q981 1108 1217 1108Q1401 1108 1506 974T1612 610V530H897Q897 70 1245 70Q1330 70 1395 82T1569 139V49Q1477 8 1404 -6T1243 -20ZM434 70Q603 70 700 169T797 446V553L610 545Q391 534 297 474T203 285Q203 183 264 127T434 70ZM1217 1020Q933 1020
+903 618H1507Q1507 806 1430 913T1217 1020Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="973" d="M616 -20Q383 -20 251 127T119 537Q119 807 256 957T631 1108Q772 1108 901 1059L874 971Q733 1018 629 1018Q429 1018 326 895T223 539Q223 319 326 195T614 70Q762 70 889 123V31Q785 -20
+616 -20ZM723 -291Q723 -391 656 -441T467 -492Q399 -492 373 -481V-393Q403 -403 465 -403Q543 -403 584 -375T625 -295Q625 -201 432 -174L525 0H621L555 -117Q723 -154 723 -291Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1124" d="M621 -20Q384 -20 252 126T119 535Q119 795 247 951T592 1108Q784 1108 895 974T1006 610V530H223Q225 306 327 188T621 70Q714 70 784 83T963 139V49Q871 9 793 -5T621 -20ZM592 1020Q435
+1020 340 917T229 618H901Q901 807 819 913T592 1020ZM941 1241H872Q776 1320 684 1412T558 1552V1569H700Q726 1521 798 1427T941 1257V1241Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1124" d="M621 -20Q384 -20 252 126T119 535Q119 795 247 951T592 1108Q784 1108 895 974T1006 610V530H223Q225 306 327 188T621 70Q714 70 784 83T963 139V49Q871 9 793 -5T621 -20ZM592 1020Q435
+1020 340 917T229 618H901Q901 807 819 913T592 1020ZM452 1257Q525 1336 596 1428T694 1569H835V1552Q799 1500 713 1414T522 1241H452V1257Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1124" d="M621 -20Q384 -20 252 126T119 535Q119 795 247 951T592 1108Q784 1108 895 974T1006 610V530H223Q225 306 327 188T621 70Q714 70 784 83T963 139V49Q871 9 793 -5T621 -20ZM592 1020Q435
+1020 340 917T229 618H901Q901 807 819 913T592 1020ZM546 1257Q608 1324 677 1413T788 1569H886Q954 1449 1128 1257V1241H1058Q936 1342 837 1448Q729 1334 616 1241H546V1257Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1124" d="M621 -20Q384 -20 252 126T119 535Q119 795 247 951T592 1108Q784 1108 895 974T1006 610V530H223Q225 306 327 188T621 70Q714 70 784 83T963 139V49Q871 9 793 -5T621 -20ZM592 1020Q435
+1020 340 917T229 618H901Q901 807 819 913T592 1020ZM587 1389Q587 1435 602 1455T650 1475Q714 1475 714 1389Q714 1303 650 1303Q587 1303 587 1389ZM968 1389Q968 1435 983 1455T1031 1475Q1095 1475 1095 1389Q1095 1303 1031 1303Q968 1303 968 1389Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="463" d="M281 0H182V1087H281V0ZM349 1241H280Q184 1320 92 1412T-34 1552V1569H108Q134 1521 206 1427T349 1257V1241Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="463" d="M281 0H182V1087H281V0ZM107 1257Q180 1336 251 1428T349 1569H490V1552Q454 1500 368 1414T177 1241H107V1257Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="463" d="M281 0H182V1087H281V0ZM-58 1257Q4 1324 73 1413T184 1569H282Q350 1449 524 1257V1241H454Q332 1342 233 1448Q125 1334 12 1241H-58V1257Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="463" d="M281 0H182V1087H281V0ZM-21 1389Q-21 1435 -6 1455T42 1475Q106 1475 106 1389Q106 1303 42 1303Q-21 1303 -21 1389ZM360 1389Q360 1435 375 1455T423 1475Q487 1475 487 1389Q487 1303
+423 1303Q360 1303 360 1389Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1174" d="M1055 559Q1055 283 931 132T582 -20Q368 -20 243 110T117 471Q117 699 243 828T586 958Q694 958 773 925T922 829L926 831Q862 1101 657 1290L387 1133L338 1210L582 1356Q496 1418 383 1475L428
+1556Q575 1487 676 1411L901 1548L950 1464L748 1343Q902 1192 978 990T1055 559ZM950 557Q950 703 853 785T586 868Q401 868 311 768T221 463Q221 277 315 174T584 70Q763 70 856 193T950 557Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1208" d="M940 0V705Q940 869 871 943T657 1018Q462 1018 372 920T281 600V0H182V1087H266L285 938H291Q397 1108 668 1108Q1038 1108 1038 711V0H940ZM1035 1243Q999 1243 960 1261T859 1333Q827 1359
+797 1379T734 1399Q689 1399 659 1365T611 1243H538Q548 1354 601 1417T738 1481Q786 1481 826 1456T908 1397Q942 1369 974 1347T1035 1325Q1081 1325 1112 1361T1160 1481H1236Q1220 1365 1167 1304T1035 1243Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977
+770 878 894T598 1018Q418 1018 321 895T223 545ZM974 1241H905Q809 1320 717 1412T591 1552V1569H733Q759 1521 831 1427T974 1257V1241Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977
+770 878 894T598 1018Q418 1018 321 895T223 545ZM499 1257Q572 1336 643 1428T741 1569H882V1552Q846 1500 760 1414T569 1241H499V1257Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977
+770 878 894T598 1018Q418 1018 321 895T223 545ZM309 1257Q371 1324 440 1413T551 1569H649Q717 1449 891 1257V1241H821Q699 1342 600 1448Q492 1334 379 1241H309V1257Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977
+770 878 894T598 1018Q418 1018 321 895T223 545ZM1017 1243Q981 1243 942 1261T841 1333Q809 1359 779 1379T716 1399Q671 1399 641 1365T593 1243H520Q530 1354 583 1417T720 1481Q768 1481 808 1456T890 1397Q924 1369 956 1347T1017 1325Q1063 1325 1094 1361T1142
+1481H1218Q1202 1365 1149 1304T1017 1243Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977
+770 878 894T598 1018Q418 1018 321 895T223 545ZM346 1389Q346 1435 361 1455T409 1475Q473 1475 473 1389Q473 1303 409 1303Q346 1303 346 1389ZM727 1389Q727 1435 742 1455T790 1475Q854 1475 854 1389Q854 1303 790 1303Q727 1303 727 1389Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1169" d="M111 682V764H1059V682H111ZM504 1075Q504 1174 584 1174Q666 1174 666 1075Q666 1023 643 1000T584 977Q550 977 527 1000T504 1075ZM504 371Q504 469 584 469Q666 469 666 371Q666 318 643
+295T584 272Q550 272 527 295T504 371Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q423 -20 305 78L219 -35L147 23L240 143Q119 296 119 545Q119 811 248 959T602 1108Q781 1108 903 1004L999 1128L1073 1073L969 936Q1081 789 1081 545ZM223
+545Q223 345 301 223L844 928Q746 1018 598 1018Q418 1018 321 895T223 545ZM977 545Q977 735 905 854L362 152Q456 70 600 70Q780 70 878 195T977 545Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1208" d="M268 1087V383Q268 219 337 145T551 70Q745 70 836 168T928 487V1087H1026V0H942L924 150H918Q812 -20 541 -20Q170 -20 170 377V1087H268ZM943 1241H874Q778 1320 686 1412T560 1552V1569H702Q728
+1521 800 1427T943 1257V1241Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1208" d="M268 1087V383Q268 219 337 145T551 70Q745 70 836 168T928 487V1087H1026V0H942L924 150H918Q812 -20 541 -20Q170 -20 170 377V1087H268ZM495 1257Q568 1336 639 1428T737 1569H878V1552Q842
+1500 756 1414T565 1241H495V1257Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1208" d="M268 1087V383Q268 219 337 145T551 70Q745 70 836 168T928 487V1087H1026V0H942L924 150H918Q812 -20 541 -20Q170 -20 170 377V1087H268ZM313 1257Q375 1324 444 1413T555 1569H653Q721
+1449 895 1257V1241H825Q703 1342 604 1448Q496 1334 383 1241H313V1257Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1208" d="M268 1087V383Q268 219 337 145T551 70Q745 70 836 168T928 487V1087H1026V0H942L924 150H918Q812 -20 541 -20Q170 -20 170 377V1087H268ZM350 1389Q350 1435 365 1455T413 1475Q477 1475
+477 1389Q477 1303 413 1303Q350 1303 350 1389ZM731 1389Q731 1435 746 1455T794 1475Q858 1475 858 1389Q858 1303 794 1303Q731 1303 731 1389Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="940" d="M0 1087H102L332 477Q437 196 465 98H471Q513 227 608 483L838 1087H940L453 -176Q394 -330 354 -384T261 -465T131 -492Q74 -492 4 -471V-385Q62 -401 129 -401Q180 -401 219 -377T289 -303T362
+-143T416 0L0 1087ZM617 1257Q690 1336 761 1428T859 1569H1000V1552Q964 1500 878 1414T687 1241H617V1257Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1219" d="M281 918Q395 1108 649 1108Q869 1108 984 964T1100 543Q1100 275 979 128T647 -20Q396 -20 281 168H274L277 84Q281 10 281 -78V-492H182V1556H281V1165L274 918H281ZM645 68Q812 68 903 192T995
+539Q995 1018 647 1018Q454 1018 368 913T281 559V541Q281 286 366 177T645 68Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="940" d="M0 1087H102L332 477Q437 196 465 98H471Q513 227 608 483L838 1087H940L453 -176Q394 -330 354 -384T261 -465T131 -492Q74 -492 4 -471V-385Q62 -401 129 -401Q180 -401 219 -377T289 -303T362
+-143T416 0L0 1087ZM470 1389Q470 1435 485 1455T533 1475Q597 1475 597 1389Q597 1303 533 1303Q470 1303 470 1389ZM851 1389Q851 1435 866 1455T914 1475Q978 1475 978 1389Q978 1303 914 1303Q851 1303 851 1389Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1024" d="M82 512V594H942V512H82Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="2048" d="M82 512V594H1966V512H82Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="297" d="M41 961L29 981Q61 1093 110 1232T203 1462H268Q238 1361 204 1205T158 961H41Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="297" d="M256 1462L268 1442Q193 1177 94 961H29Q58 1057 90 1202T139 1462H256Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="451" d="M295 238L307 218Q232 -47 133 -263H68Q97 -167 129 -22T178 238H295Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="614" d="M358 961L346 981Q380 1101 429 1236T520 1462H586Q556 1364 523 1214T475 961H358ZM41 961L29 981Q61 1093 110 1232T203 1462H268Q238 1361 204 1205T158 961H41Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="614" d="M256 1462L268 1442Q193 1177 94 961H29Q58 1057 90 1202T139 1462H256ZM573 1462L586 1442Q550 1314 501 1181T412 961H346Q376 1059 409 1209T457 1462H573Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="768" d="M295 238L307 218Q232 -47 133 -263H68Q97 -167 129 -22T178 238H295ZM612 238L625 218Q589 90 540 -43T451 -263H385Q415 -165 448 -15T496 238H612Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="770" d="M231 748Q231 837 271 882T385 928Q458 928 498 881T539 748Q539 663 498 615T385 567Q313 567 272 614T231 748Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="524" d="M82 543L391 936L453 893L199 530L453 168L391 125L82 516V543Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="524" d="M442 518L133 125L72 168L326 530L72 893L133 936L442 545V518Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.ttf b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.ttf
new file mode 100644
index 0000000..0d38189
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.ttf differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.woff b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.woff
new file mode 100644
index 0000000..fb34cf3
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.woff differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.woff2 b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.woff2
new file mode 100644
index 0000000..9a71d1c
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.woff2 differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.eot b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.eot
new file mode 100644
index 0000000..8d4b7d9
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.eot differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.svg b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.svg
new file mode 100644
index 0000000..0ec5da5
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.svg
@@ -0,0 +1,19030 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1206" ><font-face
+    font-family="Open Sans"
+    units-per-em="2048"
+    panose-1="2 11 6 6 3 5 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="547" d="M326 403H221L170 1462H377L326 403ZM152 106Q152 242 272 242Q330 242 361 207T393 106Q393 42 361 7T272 -29Q220 -29 186 2T152 106Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="821" d="M319 1462L279 934H174L133 1462H319ZM688 1462L647 934H543L502 1462H688Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M981 899L915 559H1198V430H891L807 0H670L754 430H451L369 0H233L313 430H51V559H338L406 899H129V1026H428L510 1462H649L567 1026H872L956 1462H1090L1006 1026H1270V899H981ZM475 559H778L844
+899H541L475 559Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1171" d="M1036 449Q1036 313 934 225T649 113V-119H520V104Q408 104 303 121T131 170V326Q214 289 322 266T520 242V682Q315 747 233 833T150 1055Q150 1186 251 1270T520 1372V1554H649V1374Q833 1369 1004
+1300L952 1169Q803 1228 649 1239V805Q806 755 884 708T999 599T1036 449ZM866 436Q866 508 822 552T649 641V252Q866 282 866 436ZM319 1057Q319 981 364 935T520 848V1235Q421 1219 370 1173T319 1057Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1686" d="M242 1026Q242 856 279 771T399 686Q563 686 563 1026Q563 1364 399 1364Q316 1364 279 1280T242 1026ZM700 1026Q700 798 624 682T399 565Q259 565 182 684T104 1026Q104 1253 178 1368T399 1483Q544
+1483 622 1364T700 1026ZM1122 440Q1122 269 1159 185T1280 100Q1364 100 1404 183T1444 440Q1444 611 1404 693T1280 776Q1196 776 1159 694T1122 440ZM1581 440Q1581 213 1505 97T1280 -20Q1138 -20 1062 99T985 440Q985 667 1059 782T1280 897Q1422 897 1501
+780T1581 440ZM1323 1462L512 0H365L1176 1462H1323Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1495" d="M414 1171Q414 1102 450 1040T573 889Q702 964 752 1027T803 1174Q803 1251 752 1299T614 1348Q525 1348 470 1300T414 1171ZM569 129Q810 129 969 283L532 707Q421 639 375 595T307 499T285
+383Q285 266 362 198T569 129ZM113 379Q113 509 182 609T432 811Q347 906 317 955T268 1057T250 1167Q250 1317 348 1401T621 1485Q783 1485 876 1402T969 1169Q969 1062 901 972T676 788L1083 397Q1139 459 1172 542T1229 725H1397Q1329 439 1192 291L1491 0H1262L1077
+178Q959 72 837 26T565 -20Q350 -20 232 86T113 379Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="453" d="M319 1462L279 934H174L133 1462H319Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="606" d="M82 561Q82 826 159 1057T383 1462H545Q401 1269 329 1038T256 563Q256 323 330 94T543 -324H383Q236 -154 159 73T82 561Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="606" d="M524 561Q524 298 447 71T223 -324H63Q202 -136 276 93T350 563Q350 807 278 1038T61 1462H223Q370 1287 447 1056T524 561Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1130" d="M657 1556L614 1161L1012 1272L1038 1090L657 1059L905 733L733 639L557 1001L397 639L221 733L463 1059L86 1090L115 1272L506 1161L463 1556H657Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1171" d="M653 791H1065V653H653V227H514V653H104V791H514V1219H653V791Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="502" d="M350 238L365 215Q339 115 290 -17T188 -264H63Q90 -160 122 -7T168 238H350Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="659" d="M84 473V625H575V473H84Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="545" d="M152 106Q152 173 182 207T270 242Q328 242 360 208T393 106Q393 41 360 6T270 -29Q219 -29 186 2T152 106Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="752" d="M731 1462L186 0H20L565 1462H731Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1171" d="M1069 733Q1069 354 950 167T584 -20Q348 -20 225 171T102 733Q102 1115 221 1300T584 1485Q822 1485 945 1292T1069 733ZM270 733Q270 414 345 269T584 123Q750 123 824 270T899 733Q899 1048 825
+1194T584 1341Q420 1341 345 1197T270 733Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1171" d="M715 0H553V1042Q553 1172 561 1288Q540 1267 514 1244T276 1049L188 1163L575 1462H715V0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1171" d="M1061 0H100V143L485 530Q661 708 717 784T801 932T829 1087Q829 1204 758 1272T561 1341Q470 1341 389 1311T207 1202L119 1315Q321 1483 559 1483Q765 1483 882 1378T999 1094Q999 955 921 819T629
+475L309 162V154H1061V0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1171" d="M1006 1118Q1006 978 928 889T705 770V762Q881 740 966 650T1051 414Q1051 205 906 93T494 -20Q378 -20 282 -3T94 59V217Q189 170 296 146T500 121Q879 121 879 418Q879 684 461 684H317V827H463Q634
+827 734 902T834 1112Q834 1219 761 1280T561 1341Q465 1341 380 1315T186 1219L102 1331Q192 1402 309 1442T557 1483Q770 1483 888 1386T1006 1118Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1171" d="M1130 336H913V0H754V336H43V481L737 1470H913V487H1130V336ZM754 487V973Q754 1116 764 1296H756Q708 1200 666 1137L209 487H754Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1171" d="M557 893Q788 893 920 779T1053 465Q1053 238 909 109T510 -20Q263 -20 133 59V219Q203 174 307 149T512 123Q688 123 785 206T883 446Q883 752 508 752Q413 752 254 723L168 778L223 1462H950V1309H365L328
+870Q443 893 557 893Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1171" d="M117 625Q117 1056 284 1269T780 1483Q893 1483 958 1464V1321Q881 1346 782 1346Q547 1346 423 1200T287 739H299Q409 911 647 911Q844 911 957 792T1071 469Q1071 241 947 111T610 -20Q383 -20 250
+150T117 625ZM608 121Q750 121 828 210T907 469Q907 614 834 697T616 780Q526 780 451 743T332 641T287 506Q287 403 327 314T440 173T608 121Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1171" d="M285 0L891 1309H94V1462H1067V1329L469 0H285Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1171" d="M584 1483Q784 1483 901 1390T1018 1133Q1018 1025 951 936T737 774Q915 689 990 596T1065 379Q1065 197 938 89T590 -20Q356 -20 230 82T104 373Q104 624 410 764Q272 842 212 932T152 1135Q152
+1294 269 1388T584 1483ZM268 369Q268 249 351 182T586 115Q735 115 818 185T901 377Q901 474 823 549T551 696Q402 632 335 555T268 369ZM582 1348Q457 1348 386 1288T315 1128Q315 1036 374 970T592 838Q735 898 794 967T854 1128Q854 1229 782 1288T582 1348Z"
+/>
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1171" d="M1061 838Q1061 -20 397 -20Q281 -20 213 0V143Q293 117 395 117Q635 117 757 265T891 721H879Q824 638 733 595T528 551Q334 551 220 667T106 991Q106 1219 233 1351T569 1483Q718 1483 829 1407T1001
+1184T1061 838ZM569 1341Q426 1341 348 1249T270 993Q270 849 342 767T561 684Q652 684 728 721T849 822T893 956Q893 1061 852 1150T738 1290T569 1341Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="545" d="M152 106Q152 173 182 207T270 242Q328 242 360 208T393 106Q393 41 360 6T270 -29Q219 -29 186 2T152 106ZM152 989Q152 1124 270 1124Q393 1124 393 989Q393 924 360 889T270 854Q219 854 186 885T152 989Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="545" d="M350 238L365 215Q339 115 290 -17T188 -264H63Q90 -160 122 -7T168 238H350ZM147 989Q147 1124 266 1124Q389 1124 389 989Q389 924 356 889T266 854Q208 854 178 889T147 989Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1171" d="M1065 242L104 664V762L1065 1241V1092L283 721L1065 393V242Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1171" d="M119 858V995H1049V858H119ZM119 449V586H1049V449H119Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1171" d="M104 393L887 719L104 1092V1241L1065 762V664L104 242V393Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="879" d="M289 403V457Q289 574 325 649T459 809Q595 924 630 982T666 1122Q666 1224 601 1279T412 1335Q333 1335 258 1317T86 1249L27 1384Q216 1483 422 1483Q613 1483 719 1389T825 1124Q825 1051 806
+996T748 891T584 731Q483 645 451 588T418 436V403H289ZM240 106Q240 242 360 242Q418 242 449 207T481 106Q481 42 449 7T360 -29Q308 -29 274 2T240 106Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1841" d="M1720 729Q1720 587 1676 469T1552 286T1368 221Q1282 221 1223 273T1153 406H1145Q1105 319 1031 270T854 221Q704 221 620 323T535 602Q535 806 653 933T963 1061Q1031 1061 1117 1049T1272 1014L1247
+544V522Q1247 344 1380 344Q1471 344 1528 451T1585 731Q1585 912 1511 1048T1301 1257T987 1331Q764 1331 599 1239T347 975T260 578Q260 273 421 109T885 -55Q1095 -55 1321 31V-102Q1129 -186 885 -186Q522 -186 322 13T121 571Q121 831 228 1034T533 1348T987
+1460Q1202 1460 1369 1370T1628 1113T1720 729ZM686 598Q686 344 881 344Q1088 344 1106 657L1120 918Q1048 938 963 938Q833 938 760 848T686 598Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1327" d="M201 1462H614Q905 1462 1035 1375T1165 1100Q1165 970 1093 886T881 776V766Q1214 709 1214 416Q1214 220 1082 110T711 0H201V1462ZM371 836H651Q831 836 910 892T989 1083Q989 1206 901 1260T621 1315H371V836ZM371
+692V145H676Q853 145 942 213T1032 428Q1032 564 941 628T662 692H371Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1292" d="M827 1331Q586 1331 447 1171T307 731Q307 444 441 288T825 131Q978 131 1174 186V37Q1022 -20 799 -20Q476 -20 301 176T125 733Q125 959 209 1129T453 1391T829 1483Q1059 1483 1231 1399L1159 1253Q993
+1331 827 1331Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1493" d="M1368 745Q1368 383 1172 192T606 0H201V1462H649Q990 1462 1179 1273T1368 745ZM1188 739Q1188 1025 1045 1170T618 1315H371V147H578Q882 147 1035 296T1188 739Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1057" d="M371 0H201V1462H1016V1311H371V776H977V625H371V0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1491" d="M844 766H1341V55Q1225 18 1105 -1T827 -20Q495 -20 310 177T125 731Q125 959 216 1130T480 1392T883 1483Q1117 1483 1319 1397L1253 1247Q1055 1331 872 1331Q605 1331 455 1172T305 731Q305 435 449
+282T874 129Q1026 129 1171 164V614H844V766Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1511" d="M1311 0H1141V688H371V0H201V1462H371V840H1141V1462H1311V0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="571" d="M201 0V1462H371V0H201Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="547" d="M-12 -385Q-106 -385 -160 -358V-213Q-89 -233 -12 -233Q87 -233 138 -173T190 0V1462H360V14Q360 -176 264 -280T-12 -385Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1257" d="M1257 0H1057L524 709L371 573V0H201V1462H371V737L1034 1462H1235L647 827L1257 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1063" d="M201 0V1462H371V154H1016V0H201Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1849" d="M848 0L352 1296H344Q358 1142 358 930V0H201V1462H457L920 256H928L1395 1462H1649V0H1479V942Q1479 1104 1493 1294H1485L985 0H848Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1544" d="M1343 0H1149L350 1227H342Q358 1011 358 831V0H201V1462H393L1190 240H1198Q1196 267 1189 413T1184 623V1462H1343V0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290 1028
+1167 1180T801 1333Q558 1333 432 1180T305 733Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1233" d="M1128 1036Q1128 814 977 695T543 575H371V0H201V1462H580Q1128 1462 1128 1036ZM371 721H524Q750 721 851 794T952 1028Q952 1173 857 1244T561 1315H371V721Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1595" d="M1470 733Q1470 452 1357 266T1038 14L1386 -348H1139L854 -18L799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042
+129 1166 282T1290 733Q1290 1028 1167 1180T801 1333Q558 1333 432 1180T305 733Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1266" d="M371 608V0H201V1462H602Q871 1462 999 1359T1128 1049Q1128 759 834 657L1231 0H1030L676 608H371ZM371 754H604Q784 754 868 825T952 1040Q952 1185 867 1249T592 1313H371V754Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1124" d="M1026 389Q1026 196 886 88T506 -20Q246 -20 106 47V211Q196 173 302 151T512 129Q682 129 768 193T854 373Q854 449 824 497T722 587T504 680Q300 753 213 853T125 1114Q125 1283 252 1383T588 1483Q806
+1483 989 1403L936 1255Q755 1331 584 1331Q449 1331 373 1273T297 1112Q297 1036 325 988T419 899T623 809Q853 727 939 633T1026 389Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1133" d="M651 0H481V1311H18V1462H1114V1311H651V0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1219" d="M1036 1462H1219L692 0H524L0 1462H180L516 516Q574 353 608 199Q644 361 702 522L1036 1462Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1896" d="M1477 0H1309L1014 979Q993 1044 967 1143T940 1262Q918 1130 870 973L584 0H416L27 1462H207L438 559Q486 369 508 215Q535 398 588 573L850 1462H1030L1305 565Q1353 410 1386 215Q1405 357 1458 561L1688
+1462H1868L1477 0Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1182" d="M1174 0H981L588 643L188 0H8L494 764L41 1462H229L592 883L958 1462H1139L686 770L1174 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1147" d="M573 731L963 1462H1147L659 567V0H487V559L0 1462H186L573 731Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1169" d="M1087 0H82V133L858 1309H106V1462H1065V1329L289 154H1087V0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="674" d="M623 -324H166V1462H623V1321H334V-182H623V-324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="752" d="M186 1462L733 0H567L23 1462H186Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="674" d="M51 -182H340V1321H51V1462H508V-324H51V-182Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1110" d="M49 551L483 1473H582L1059 551H907L535 1296L201 551H49Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="918" d="M922 -315H-4V-184H922V-315Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1182" d="M786 1241H676Q611 1293 522 1389T393 1548V1569H596Q628 1500 685 1410T786 1266V1241Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114 878 1027T973
+748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1255" d="M686 1114Q902 1114 1021 967T1141 549Q1141 279 1021 130T686 -20Q579 -20 491 19T342 141H330L295 0H176V1556H342V1178Q342 1051 334 950H342Q458 1114 686 1114ZM662 975Q492 975 417 878T342 549Q342
+318 419 219T666 119Q819 119 894 230T969 551Q969 765 894 870T662 975Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="975" d="M614 -20Q376 -20 246 126T115 541Q115 816 247 966T625 1116Q704 1116 783 1099T907 1059L856 918Q801 940 736 954T621 969Q287 969 287 543Q287 341 368 233T610 125Q747 125 891 184V37Q781 -20 614 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1255" d="M922 147H913Q798 -20 569 -20Q354 -20 235 127T115 545Q115 816 235 966T569 1116Q792 1116 911 954H924L917 1033L913 1110V1556H1079V0H944L922 147ZM590 119Q760 119 836 211T913 510V545Q913 778
+836 877T588 977Q442 977 365 864T287 543Q287 333 364 226T590 119Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977 384 891T291
+653H864Q864 810 794 893T594 977Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="694" d="M670 967H391V0H225V967H29V1042L225 1102V1163Q225 1567 578 1567Q665 1567 782 1532L739 1399Q643 1430 575 1430Q481 1430 436 1368T391 1167V1096H670V967Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1122" d="M1073 1096V991L870 967Q898 932 920 876T942 748Q942 587 832 491T530 395Q481 395 438 403Q332 347 332 262Q332 217 369 196T496 174H690Q868 174 963 99T1059 -119Q1059 -301 913 -396T487 -492Q272
+-492 156 -412T39 -186Q39 -86 103 -13T283 86Q241 105 213 145T184 238Q184 298 216 343T317 430Q232 465 179 549T125 741Q125 921 233 1018T539 1116Q625 1116 694 1096H1073ZM199 -184Q199 -273 274 -319T489 -365Q698 -365 798 -303T899 -133Q899 -44 844
+-10T637 25H438Q325 25 262 -29T199 -184ZM289 745Q289 630 354 571T535 512Q778 512 778 748Q778 995 532 995Q415 995 352 932T289 745Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1257" d="M926 0V709Q926 843 865 909T674 975Q501 975 422 881T342 573V0H176V1556H342V1085Q342 1000 334 944H344Q393 1023 483 1068T690 1114Q891 1114 991 1019T1092 715V0H926Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM162 1393Q162 1450 190 1476T260 1503Q300 1503 329 1476T358 1393Q358 1337 329 1310T260 1282Q218 1282 190 1309T162 1393Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="518" d="M43 -492Q-52 -492 -111 -467V-332Q-42 -352 25 -352Q103 -352 139 -310T176 -180V1096H342V-168Q342 -492 43 -492ZM162 1393Q162 1450 190 1476T260 1503Q300 1503 329 1476T358 1393Q358 1337 329 1310T260
+1282Q218 1282 190 1309T162 1393Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1075" d="M340 561Q383 622 471 721L825 1096H1022L578 629L1053 0H852L465 518L340 410V0H176V1556H340V731Q340 676 332 561H340Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="518" d="M342 0H176V1556H342V0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1905" d="M1573 0V713Q1573 844 1517 909T1343 975Q1188 975 1114 886T1040 612V0H874V713Q874 844 818 909T643 975Q487 975 415 882T342 575V0H176V1096H311L338 946H346Q393 1026 478 1071T670 1116Q927 1116
+1006 930H1014Q1063 1016 1156 1066T1368 1116Q1554 1116 1646 1021T1739 715V0H1573Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1257" d="M926 0V709Q926 843 865 909T674 975Q502 975 422 882T342 575V0H176V1096H311L338 946H346Q397 1027 489 1071T694 1116Q892 1116 992 1021T1092 715V0H926Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950 758 866
+866T616 975Q453 975 370 868T287 549Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1255" d="M686 -20Q579 -20 491 19T342 141H330Q342 45 342 -41V-492H176V1096H311L334 946H342Q406 1036 491 1076T686 1116Q904 1116 1022 967T1141 549Q1141 279 1021 130T686 -20ZM662 975Q494 975 419 882T342
+586V549Q342 318 419 219T666 119Q808 119 888 234T969 551Q969 756 889 865T662 975Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1255" d="M590 119Q756 119 832 208T913 508V545Q913 775 835 876T588 977Q442 977 365 864T287 543Q287 336 363 228T590 119ZM565 -20Q353 -20 234 129T115 545Q115 814 235 965T569 1116Q794 1116 915 946H924L948
+1096H1079V-492H913V-23Q913 77 924 147H911Q796 -20 565 -20Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="836" d="M676 1116Q749 1116 807 1104L784 950Q716 965 664 965Q531 965 437 857T342 588V0H176V1096H313L332 893H340Q401 1000 487 1058T676 1116Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="977" d="M883 299Q883 146 769 63T449 -20Q231 -20 109 49V203Q188 163 278 140T453 117Q583 117 653 158T723 285Q723 349 668 394T451 502Q298 559 234 601T138 698T106 827Q106 961 215 1038T514 1116Q691 1116
+860 1044L801 909Q636 977 502 977Q384 977 324 940T264 838Q264 794 286 763T359 704T551 623Q746 552 814 480T883 299Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="723" d="M530 117Q574 117 615 123T680 137V10Q653 -3 601 -11T506 -20Q188 -20 188 315V967H31V1047L188 1116L258 1350H354V1096H672V967H354V322Q354 223 401 170T530 117Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="1026" d="M416 0L0 1096H178L414 446Q494 218 508 150H516Q527 203 585 369T848 1096H1026L610 0H416Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1593" d="M1071 0L870 643Q851 702 799 911H791Q751 736 721 641L514 0H322L23 1096H197Q303 683 358 467T422 176H430Q441 233 465 323T508 467L709 1096H889L1085 467Q1141 295 1161 178H1169Q1173 214 1190
+289T1399 1096H1571L1268 0H1071Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1073" d="M440 561L59 1096H248L537 676L825 1096H1012L631 561L1032 0H844L537 444L227 0H39L440 561Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1032" d="M2 1096H180L420 471Q499 257 518 162H526Q539 213 580 336T852 1096H1030L559 -152Q489 -337 396 -414T166 -492Q90 -492 16 -475V-342Q71 -354 139 -354Q310 -354 383 -162L444 -6L2 1096Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="958" d="M877 0H82V113L680 967H119V1096H862V967L272 129H877V0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="776" d="M475 12Q475 -90 533 -136T705 -184V-324Q515 -322 411 -237T307 2V305Q307 409 244 453T61 498V639Q191 641 249 687T307 829V1135Q307 1290 415 1376T705 1462V1323Q475 1317 475 1124V829Q475
+614 252 575V563Q475 524 475 309V12Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M494 1556H635V-496H494V1556Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="776" d="M522 575Q299 614 299 829V1124Q299 1317 72 1323V1462Q256 1462 361 1375T467 1135V829Q467 732 526 687T715 639V498Q593 498 530 454T467 305V2Q467 -151 365 -236T72 -324V-184Q183 -182
+241 -136T299 12V309Q299 423 354 483T522 563V575Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1171" d="M338 713Q285 713 222 680T104 592V743Q204 852 348 852Q416 852 472 838T618 786Q684 758 733 745T829 731Q883 731 947 763T1065 852V702Q963 592 821 592Q749 592 686 608T551 657Q476 689
+431 701T338 713Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="547" d="M219 684H324L375 -373H168L219 684ZM393 983Q393 848 272 848Q212 848 182 883T152 983Q152 1046 183 1082T272 1118Q323 1118 358 1086T393 983Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1171" d="M971 240Q866 186 719 180V-20H586V186Q383 218 287 354T190 741Q190 1249 586 1311V1483H721V1319Q796 1316 867 1300T987 1260L938 1120Q805 1171 696 1171Q524 1171 443 1066T362 743Q362
+531 441 430T688 328Q829 328 971 387V240Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1171" d="M682 1481Q872 1481 1042 1397L981 1264Q827 1341 684 1341Q561 1341 499 1279T436 1077V782H858V655H436V434Q436 334 404 266T297 154H1092V0H63V141Q268 188 268 432V655H70V782H268V1098Q268
+1276 380 1378T682 1481Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1171" d="M184 723Q184 845 258 952L123 1092L217 1184L352 1051Q456 1124 586 1124Q713 1124 815 1051L952 1184L1047 1092L913 954Q987 841 987 723Q987 592 913 489L1044 354L952 262L815 395Q713
+324 586 324Q452 324 352 397L217 264L125 356L258 492Q184 599 184 723ZM313 723Q313 611 391 531T586 451Q702 451 781 530T860 723Q860 837 780 918T586 999Q470 999 392 917T313 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1171" d="M584 735L963 1462H1137L721 692H983V565H666V395H983V268H666V0H502V268H186V395H502V565H186V692H442L31 1462H209L584 735Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M494 1556H635V780H494V1556ZM494 281H635V-496H494V281Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="1057" d="M139 809Q139 895 182 963T303 1069Q229 1109 187 1164T145 1305Q145 1426 248 1495T549 1565Q643 1565 722 1551T899 1497L846 1366Q748 1405 681 1418T537 1432Q421 1432 363 1403T305 1309Q305
+1249 366 1207T582 1110Q768 1042 843 967T918 784Q918 694 877 624T762 512Q915 431 915 285Q915 145 798 69T469 -8Q251 -8 123 57V205Q201 168 298 146T477 123Q611 123 681 161T752 270Q752 316 728 345T650 403T481 475Q339 527 272 572T172 674T139 809ZM285
+829Q285 752 351 700T584 586L633 567Q770 647 770 758Q770 841 697 897T438 1010Q370 991 328 941T285 829Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1182" d="M309 1393Q309 1445 335 1468T399 1491Q437 1491 464 1468T492 1393Q492 1343 465 1319T399 1294Q362 1294 336 1318T309 1393ZM690 1393Q690 1445 716 1468T780 1491Q817 1491 844 1468T872
+1393Q872 1343 845 1319T780 1294Q743 1294 717 1318T690 1393Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M893 1059Q768 1059 701 972T633 731Q633 563 696 482T891 401Q977 401 1102 446V322Q1054 302 1004 288T883 274Q689 274 585 394T481 731Q481 940 591 1063T893 1186Q1021 1186 1139 1126L1081
+1008Q973 1059 893 1059ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM205 731Q205 558 292 408T529 171T852 84Q1026 84 1175 171T1411 406T1499
+731Q1499 905 1412 1054T1177 1290T852 1378Q678 1378 529 1291T293 1056T205 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="725" d="M532 801L508 885Q416 788 276 788Q181 788 126 837T70 989Q70 1091 147 1143T389 1202L506 1206V1245Q506 1378 358 1378Q258 1378 154 1327L111 1423Q225 1479 358 1479Q488 1479 556
+1427T625 1253V801H532ZM193 989Q193 889 305 889Q506 889 506 1069V1118L408 1114Q296 1110 245 1082T193 989Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1018" d="M82 551L424 958L543 889L254 539L543 188L424 117L82 524V551ZM477 551L821 958L938 889L651 539L938 188L821 117L477 524V551Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1171" d="M1065 791V264H928V653H104V791H1065Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="659" d="M84 473V625H575V473H84Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M723 762H831Q911 762 959 803T1008 909Q1008 984 965 1016T829 1049H723V762ZM1157 913Q1157 833 1115 772T995 680L1233 285H1065L858 639H723V285H575V1176H836Q1002 1176 1079 1111T1157
+913ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM205 731Q205 558 292 408T529 171T852 84Q1026 84 1175 171T1411 406T1499 731Q1499 905 1412
+1054T1177 1290T852 1378Q678 1378 529 1291T293 1056T205 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6V1683H1030V1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M127 1171Q127 1301 217 1392T438 1483Q568 1483 659 1393T750 1171Q750 1087 709 1016T595 902T438 860Q308 860 218 950T127 1171ZM242 1171Q242 1089 300 1032T440 975Q520 975 577 1031T635
+1171Q635 1255 579 1311T440 1368Q357 1368 300 1311T242 1171Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1171" d="M653 791H1065V653H653V227H514V653H104V791H514V1219H653V791ZM104 1V139H1065V1H104Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="711" d="M653 586H49V690L285 920Q374 1006 415 1054T472 1141T489 1233Q489 1301 449 1335T346 1370Q294 1370 245 1351T127 1282L61 1370Q192 1481 344 1481Q476 1481 549 1416T623 1239Q623
+1159 579 1084T387 870L213 705H653V586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="711" d="M627 1255Q627 1175 586 1124T477 1049Q653 1002 653 840Q653 712 561 641T301 569Q149 569 33 625V748Q180 680 303 680Q514 680 514 842Q514 987 283 987H166V1094H285Q388 1094 437
+1133T487 1241Q487 1302 447 1336T340 1370Q274 1370 218 1349T106 1292L37 1382Q100 1427 170 1454T334 1481Q470 1481 548 1422T627 1255Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1182" d="M393 1266Q441 1328 496 1416T584 1569H786V1548Q742 1483 655 1388T504 1241H393V1266Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1268" d="M342 381Q342 119 596 119Q767 119 846 213T926 520V1096H1092V0H956L930 147H920Q809 -20 580 -20Q430 -20 342 72H332Q342 -12 342 -172V-492H176V1096H342V381Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1120 -260H1006V1452H793V-260H678V559Q616 541 532 541Q316 541 215 666T113 1042Q113 1302 222 1429T563 1556H1120V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="545" d="M152 723Q152 789 183 823T270 858Q328 858 360 824T393 723Q393 658 360 623T270 588Q219 588 186 619T152 723Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="465" d="M436 -289Q436 -386 360 -439T133 -492Q82 -492 37 -483V-377Q82 -385 141 -385Q220 -385 260 -365T301 -291Q301 -248 262 -222T113 -178L201 0H311L256 -115Q436 -154 436 -289Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="711" d="M338 1462H481V586H348V1165Q348 1256 354 1346Q332 1324 305 1302T143 1184L76 1280L338 1462Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="768" d="M702 1135Q702 971 617 880T381 788Q235 788 151 881T66 1135Q66 1298 150 1388T385 1479Q537 1479 619 1388T702 1135ZM188 1135Q188 1013 233 952T383 891Q488 891 534 952T580 1135Q580
+1258 534 1317T383 1376Q280 1376 234 1317T188 1135Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1018" d="M936 524L592 117L475 188L762 539L475 889L592 958L936 551V524ZM541 524L197 117L80 188L367 539L80 889L197 958L541 551V524Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1597" d="M1298 1462L395 0H252L1155 1462H1298ZM593 1462H736V586H603V1165Q603 1256 609 1346Q587 1324 560 1302T398 1184L331 1280L593 1462ZM1489 203H1364V1H1219V203H817V304L1225 883H1364V320H1489V203ZM1219
+320V515Q1219 649 1225 724Q1220 712 1208 693T1181 651T1151 606T1125 566L957 320H1219Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1597" d="M1230 1462L327 0H184L1087 1462H1230ZM564 1462H707V586H574V1165Q574 1256 580 1346Q558 1324 531 1302T369 1184L302 1280L564 1462ZM1499 1H895V105L1131 335Q1220 421 1261 469T1318
+556T1335 648Q1335 716 1295 750T1192 785Q1140 785 1091 766T973 697L907 785Q1038 896 1190 896Q1322 896 1395 831T1469 654Q1469 574 1425 499T1233 285L1059 120H1499V1Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1597" d="M876 1255Q876 1175 835 1124T726 1049Q902 1002 902 840Q902 712 810 641T550 569Q398 569 282 625V748Q429 680 552 680Q763 680 763 842Q763 987 532 987H415V1094H534Q637 1094
+686 1133T736 1241Q736 1302 696 1336T589 1370Q523 1370 467 1349T355 1292L286 1382Q349 1427 419 1454T583 1481Q719 1481 797 1422T876 1255ZM1390 1462L487 0H344L1247 1462H1390ZM1569 203H1444V1H1299V203H897V304L1305 883H1444V320H1569V203ZM1299 320V515Q1299
+649 1305 724Q1300 712 1288 693T1261 651T1231 606T1205 566L1037 320H1299Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="879" d="M590 684V633Q590 511 553 437T418 279Q297 173 267 136T224 60T211 -35Q211 -135 277 -191T465 -248Q545 -248 620 -229T793 -162L852 -297Q655 -393 457 -393Q267 -393 159 -300T51
+-37Q51 33 68 85T118 182T194 268T293 356Q394 444 426 502T459 653V684H590ZM639 983Q639 848 518 848Q459 848 428 882T397 983Q397 1047 430 1082T518 1118Q569 1118 604 1086T639 983Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM724 1579H614Q549 1631 460 1727T331 1886V1907H534Q566 1838
+623 1748T724 1604V1579Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM526 1604Q574 1666 629 1754T717 1907H919V1886Q875 1821 788
+1726T637 1579H526V1604Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM303 1602Q430 1738 481 1802T555 1907H721Q743 1865 797
+1799T977 1602V1579H858Q770 1634 637 1765Q501 1631 418 1579H303V1602Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM792 1581Q749 1581 708 1599T628 1640T552 1681T481 1700Q431
+1700 406 1670T366 1579H268Q281 1700 338 1768T487 1837Q533 1837 576 1819T658 1778T733 1737T801 1718Q850 1718 874 1747T913 1839H1012Q999 1718 943 1650T792 1581Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM364 1731Q364 1783 390 1806T454 1829Q492 1829 519 1806T547
+1731Q547 1681 520 1657T454 1632Q417 1632 391 1656T364 1731ZM745 1731Q745 1783 771 1806T835 1829Q872 1829 899 1806T927 1731Q927 1681 900 1657T835 1632Q798 1632 772 1656T745 1731Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM870 1587Q870 1489 809 1430T645 1370Q544 1370 484 1428T424
+1585Q424 1683 484 1740T645 1798Q746 1798 808 1739T870 1587ZM762 1585Q762 1641 729 1671T645 1702Q594 1702 561 1672T528 1585Q528 1529 558 1499T645 1468Q697 1468 729 1498T762 1585Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1788" d="M1665 0H915V465H401L174 0H-2L696 1462H1665V1311H1085V840H1626V690H1085V152H1665V0ZM469 618H915V1311H797L469 618Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1292" d="M827 1331Q586 1331 447 1171T307 731Q307 444 441 288T825 131Q978 131 1174 186V37Q1022 -20 799 -20Q476 -20 301 176T125 733Q125 959 209 1129T453 1391T829 1483Q1059 1483 1231 1399L1159
+1253Q993 1331 827 1331ZM950 -289Q950 -386 874 -439T647 -492Q596 -492 551 -483V-377Q596 -385 655 -385Q734 -385 774 -365T815 -291Q815 -248 776 -222T627 -178L715 0H825L770 -115Q950 -154 950 -289Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM713 1579H603Q538 1631 449 1727T320 1886V1907H523Q555 1838 612 1748T713 1604V1579Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM456 1604Q504 1666 559 1754T647 1907H849V1886Q805 1821 718 1726T567 1579H456V1604Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM263 1602Q390 1738 441 1802T515 1907H681Q703 1865 757 1799T937 1602V1579H818Q730 1634 597 1765Q461 1631 378 1579H263V1602Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM327 1731Q327 1783 353 1806T417 1829Q455 1829 482 1806T510 1731Q510 1681 483 1657T417 1632Q380 1632 354 1656T327 1731ZM708
+1731Q708 1783 734 1806T798 1829Q835 1829 862 1806T890 1731Q890 1681 863 1657T798 1632Q761 1632 735 1656T708 1731Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM398 1579H288Q223 1631 134 1727T5 1886V1907H208Q240 1838 297 1748T398 1604V1579Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM179 1604Q227 1666 282 1754T370 1907H572V1886Q528 1821 441 1726T290 1579H179V1604Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM-57 1602Q70 1738 121 1802T195 1907H361Q383 1865 437 1799T617 1602V1579H498Q410 1634 277 1765Q141 1631 58 1579H-57V1602Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM5 1731Q5 1783 31 1806T95 1829Q133 1829 160 1806T188 1731Q188 1681 161 1657T95 1632Q58 1632 32 1656T5 1731ZM386 1731Q386 1783 412 1806T476 1829Q513 1829
+540 1806T568 1731Q568 1681 541 1657T476 1632Q439 1632 413 1656T386 1731Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1479" d="M1352 745Q1352 383 1156 192T590 0H201V649H47V799H201V1462H635Q972 1462 1162 1275T1352 745ZM1171 739Q1171 1315 602 1315H371V799H750V649H371V147H561Q1171 147 1171 739Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1544" d="M1343 0H1149L350 1227H342Q358 1011 358 831V0H201V1462H393L1190 240H1198Q1196 267 1189 413T1184 623V1462H1343V0ZM935 1581Q892 1581 851 1599T771 1640T695 1681T624 1700Q574 1700
+549 1670T509 1579H411Q424 1700 481 1768T630 1837Q676 1837 719 1819T801 1778T876 1737T944 1718Q993 1718 1017 1747T1056 1839H1155Q1142 1718 1086 1650T935 1581Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290
+1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM907 1579H797Q732 1631 643 1727T514 1886V1907H717Q749 1838 806 1748T907 1604V1579Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290
+1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM659 1604Q707 1666 762 1754T850 1907H1052V1886Q1008 1821 921 1726T770 1579H659V1604Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290
+733Q1290 1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM448 1602Q575 1738 626 1802T700 1907H866Q888 1865 942 1799T1122 1602V1579H1003Q915 1634 782 1765Q646 1631 563 1579H448V1602Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290
+1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM942 1581Q899 1581 858 1599T778 1640T702 1681T631 1700Q581 1700 556 1670T516 1579H418Q431 1700 488 1768T637 1837Q683 1837 726 1819T808 1778T883 1737T951 1718Q1000 1718 1024 1747T1063 1839H1162Q1149
+1718 1093 1650T942 1581Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290
+733Q1290 1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM522 1731Q522 1783 548 1806T612 1829Q650 1829 677 1806T705 1731Q705 1681 678 1657T612 1632Q575 1632 549 1656T522 1731ZM903 1731Q903 1783 929 1806T993 1829Q1030 1829 1057 1806T1085 1731Q1085
+1681 1058 1657T993 1632Q956 1632 930 1656T903 1731Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1171" d="M940 1176L1036 1077L684 723L1034 371L938 272L584 623L236 272L135 371L485 723L133 1075L233 1176L586 821L940 1176Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q564 -20 416 80L315 -61L195 18L303 172Q125 370 125 735Q125 1092 301 1288T801 1485Q1010 1485 1167 1391L1264 1526L1384 1446L1278 1298Q1470 1096
+1470 733ZM1290 733Q1290 1005 1180 1159L508 211Q623 129 799 129Q1042 129 1166 282T1290 733ZM305 733Q305 471 406 317L1075 1260Q969 1333 801 1333Q558 1333 432 1180T305 733Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM856 1579H746Q681 1631 592 1727T463 1886V1907H666Q698
+1838 755 1748T856 1604V1579Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM600 1604Q648 1666 703 1754T791 1907H993V1886Q949
+1821 862 1726T711 1579H600V1604Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM393 1602Q520 1738 571 1802T645
+1907H811Q833 1865 887 1799T1067 1602V1579H948Q860 1634 727 1765Q591 1631 508 1579H393V1602Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM461 1731Q461 1783 487 1806T551 1829Q589
+1829 616 1806T644 1731Q644 1681 617 1657T551 1632Q514 1632 488 1656T461 1731ZM842 1731Q842 1783 868 1806T932 1829Q969 1829 996 1806T1024 1731Q1024 1681 997 1657T932 1632Q895 1632 869 1656T842 1731Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1147" d="M573 731L963 1462H1147L659 567V0H487V559L0 1462H186L573 731ZM442 1604Q490 1666 545 1754T633 1907H835V1886Q791 1821 704 1726T553 1579H442V1604Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1251" d="M1145 784Q1145 557 994 438T555 319H371V0H201V1462H371V1206H586Q867 1206 1006 1103T1145 784ZM371 465H539Q765 465 866 536T967 772Q967 921 872 990T575 1059H371V465Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1274" d="M1049 1266Q1049 1131 906 1016Q818 946 790 913T762 846Q762 814 775 793T824 744T938 664Q1078 569 1129 491T1180 311Q1180 151 1083 66T807 -20Q619 -20 512 49V203Q575 164 653 141T803
+117Q1018 117 1018 299Q1018 374 977 427T825 551Q698 633 650 694T602 840Q602 903 636 956T742 1062Q817 1119 849 1164T881 1262Q881 1342 813 1384T618 1427Q342 1427 342 1204V0H176V1202Q176 1380 286 1473T618 1567Q824 1567 936 1489T1049 1266Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
+878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM928 1241H818Q753 1293 664 1389T535 1548V1569H738Q770 1500 827 1410T928 1266V1241Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
+878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM436 1266Q484 1328 539 1416T627 1569H829V1548Q785 1483 698 1388T547 1241H436V1266Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784
+1114 878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM484 1264Q611 1400 662 1464T736 1569H902Q924 1527 978 1461T1158 1264V1241H1039Q951 1296 818 1427Q682 1293 599 1241H484V1264Z"
+/>
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
+878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM977 1243Q934 1243 893 1261T813 1302T737 1343T666 1362Q616 1362 591 1332T551 1241H453Q466 1362 523 1430T672 1499Q718 1499 761
+1481T843 1440T918 1399T986 1380Q1035 1380 1059 1409T1098 1501H1197Q1184 1380 1128 1312T977 1243Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
+878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM535 1393Q535 1445 561 1468T625 1491Q663 1491 690 1468T718 1393Q718 1343 691 1319T625 1294Q588 1294 562 1318T535 1393ZM916 1393Q916
+1445 942 1468T1006 1491Q1043 1491 1070 1468T1098 1393Q1098 1343 1071 1319T1006 1294Q969 1294 943 1318T916 1393Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114 878
+1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM1060 1458Q1060 1360 999 1301T835 1241Q734 1241 674 1299T614 1456Q614 1554 674 1611T835 1669Q936 1669 998 1610T1060 1458ZM952 1456Q952
+1512 919 1542T835 1573Q784 1573 751 1543T718 1456Q718 1400 748 1370T835 1339Q887 1339 919 1369T952 1456Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1757" d="M94 303Q94 464 218 553T596 651L780 657V725Q780 854 722 915T545 977Q401 977 238 893L186 1020Q260 1061 359 1087T557 1114Q687 1114 769 1071T893 932Q946 1020 1031 1068T1227 1116Q1419
+1116 1535 983T1651 627V520H950Q958 125 1272 125Q1363 125 1441 142T1604 199V51Q1518 13 1444 -3T1268 -20Q979 -20 854 213Q773 86 675 33T442 -20Q279 -20 187 65T94 303ZM268 301Q268 206 321 162T463 117Q608 117 692 201T776 440V539L618 532Q432 524 350
+470T268 301ZM1225 977Q1104 977 1035 894T954 653H1473Q1473 809 1409 893T1225 977Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="975" d="M614 -20Q376 -20 246 126T115 541Q115 816 247 966T625 1116Q704 1116 783 1099T907 1059L856 918Q801 940 736 954T621 969Q287 969 287 543Q287 341 368 233T610 125Q747 125 891 184V37Q781
+-20 614 -20ZM762 -289Q762 -386 686 -439T459 -492Q408 -492 363 -483V-377Q408 -385 467 -385Q546 -385 586 -365T627 -291Q627 -248 588 -222T439 -178L527 0H637L582 -115Q762 -154 762 -289Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977 384
+891T291 653H864Q864 810 794 893T594 977ZM967 1241H857Q792 1293 703 1389T574 1548V1569H777Q809 1500 866 1410T967 1266V1241Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977 384
+891T291 653H864Q864 810 794 893T594 977ZM471 1266Q519 1328 574 1416T662 1569H864V1548Q820 1483 733 1388T582 1241H471V1266Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462
+977 384 891T291 653H864Q864 810 794 893T594 977ZM515 1264Q642 1400 693 1464T767 1569H933Q955 1527 1009 1461T1189 1264V1241H1070Q982 1296 849 1427Q713 1293 630 1241H515V1264Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977
+384 891T291 653H864Q864 810 794 893T594 977ZM319 1393Q319 1445 345 1468T409 1491Q447 1491 474 1468T502 1393Q502 1343 475 1319T409 1294Q372 1294 346 1318T319 1393ZM700 1393Q700 1445 726 1468T790 1491Q827 1491 854 1468T882 1393Q882 1343 855 1319T790
+1294Q753 1294 727 1318T700 1393Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM355 1241H245Q180 1293 91 1389T-38 1548V1569H165Q197 1500 254 1410T355 1266V1241Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM169 1266Q217 1328 272 1416T360 1569H562V1548Q518 1483 431 1388T280 1241H169V1266Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM-77 1264Q50 1400 101 1464T175 1569H341Q363 1527 417 1461T597 1264V1241H478Q390 1296 257 1427Q121 1293 38 1241H-77V1264Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM-20 1393Q-20 1445 6 1468T70 1491Q108 1491 135 1468T163 1393Q163 1343 136 1319T70 1294Q33 1294 7 1318T-20 1393ZM361 1393Q361 1445 387 1468T451 1491Q488
+1491 515 1468T543 1393Q543 1343 516 1319T451 1294Q414 1294 388 1318T361 1393Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1221" d="M1122 563Q1122 282 992 131T614 -20Q392 -20 253 114T113 475Q113 705 244 836T596 967Q822 967 922 846L930 850Q873 1064 668 1255L397 1100L324 1208L557 1341Q465 1403 371 1452L440 1569Q596
+1496 698 1421L936 1559L1012 1452L805 1333Q957 1190 1039 991T1122 563ZM954 512Q954 659 864 744T618 829Q281 829 281 469Q281 302 368 211T618 119Q793 119 873 219T954 512Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1257" d="M926 0V709Q926 843 865 909T674 975Q502 975 422 882T342 575V0H176V1096H311L338 946H346Q397 1027 489 1071T694 1116Q892 1116 992 1021T1092 715V0H926ZM802 1243Q759 1243 718 1261T638
+1302T562 1343T491 1362Q441 1362 416 1332T376 1241H278Q291 1362 348 1430T497 1499Q543 1499 586 1481T668 1440T743 1399T811 1380Q860 1380 884 1409T923 1501H1022Q1009 1380 953 1312T802 1243Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
+758 866 866T616 975Q453 975 370 868T287 549ZM998 1241H888Q823 1293 734 1389T605 1548V1569H808Q840 1500 897 1410T998 1266V1241Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
+758 866 866T616 975Q453 975 370 868T287 549ZM479 1266Q527 1328 582 1416T670 1569H872V1548Q828 1483 741 1388T590 1241H479V1266Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950
+549Q950 758 866 866T616 975Q453 975 370 868T287 549ZM282 1264Q409 1400 460 1464T534 1569H700Q722 1527 776 1461T956 1264V1241H837Q749 1296 616 1427Q480 1293 397 1241H282V1264Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
+758 866 866T616 975Q453 975 370 868T287 549ZM1029 1243Q986 1243 945 1261T865 1302T789 1343T718 1362Q668 1362 643 1332T603 1241H505Q518 1362 575 1430T724 1499Q770 1499 813 1481T895 1440T970 1399T1038 1380Q1087 1380 1111 1409T1150 1501H1249Q1236
+1380 1180 1312T1029 1243Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
+758 866 866T616 975Q453 975 370 868T287 549ZM336 1393Q336 1445 362 1468T426 1491Q464 1491 491 1468T519 1393Q519 1343 492 1319T426 1294Q389 1294 363 1318T336 1393ZM717 1393Q717 1445 743 1468T807 1491Q844 1491 871 1468T899 1393Q899 1343 872 1319T807
+1294Q770 1294 744 1318T717 1393Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1171" d="M104 653V791H1065V653H104ZM471 373Q471 433 500 463T584 494Q636 494 665 463T694 373Q694 316 665 284T584 252Q532 252 502 283T471 373ZM471 1071Q471 1131 500 1161T584 1192Q636 1192
+665 1161T694 1071Q694 1014 665 982T584 950Q532 950 502 981T471 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q460 -20 348 49L264 -68L150 10L244 141Q115 293 115 549Q115 817 249 966T621 1116Q775 1116 891 1040L975 1159L1092 1083L995 950Q1122 798 1122 549ZM287
+549Q287 378 340 276L805 922Q730 975 616 975Q453 975 370 868T287 549ZM950 549Q950 713 899 813L434 170Q505 119 618 119Q781 119 865 228T950 549Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM982 1241H872Q807 1293 718 1389T589
+1548V1569H792Q824 1500 881 1410T982 1266V1241Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM506 1266Q554 1328 609 1416T697
+1569H899V1548Q855 1483 768 1388T617 1241H506V1266Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM286 1264Q413 1400 464 1464T538
+1569H704Q726 1527 780 1461T960 1264V1241H841Q753 1296 620 1427Q484 1293 401 1241H286V1264Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM342 1393Q342 1445 368 1468T432
+1491Q470 1491 497 1468T525 1393Q525 1343 498 1319T432 1294Q395 1294 369 1318T342 1393ZM723 1393Q723 1445 749 1468T813 1491Q850 1491 877 1468T905 1393Q905 1343 878 1319T813 1294Q776 1294 750 1318T723 1393Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1032" d="M2 1096H180L420 471Q499 257 518 162H526Q539 213 580 336T852 1096H1030L559 -152Q489 -337 396 -414T166 -492Q90 -492 16 -475V-342Q71 -354 139 -354Q310 -354 383 -162L444 -6L2 1096ZM411
+1266Q459 1328 514 1416T602 1569H804V1548Q760 1483 673 1388T522 1241H411V1266Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1255" d="M344 948Q410 1037 495 1076T686 1116Q901 1116 1021 966T1141 549Q1141 281 1021 131T686 -20Q464 -20 342 141H330L334 107Q342 30 342 -33V-492H176V1556H342V1090Q342 1038 336 948H344ZM664
+975Q496 975 420 883T342 590V549Q342 318 419 219T666 119Q969 119 969 551Q969 766 895 870T664 975Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1032" d="M2 1096H180L420 471Q499 257 518 162H526Q539 213 580 336T852 1096H1030L559 -152Q489 -337 396 -414T166 -492Q90 -492 16 -475V-342Q71 -354 139 -354Q310 -354 383 -162L444 -6L2 1096ZM490
+1393Q490 1445 516 1468T580 1491Q618 1491 645 1468T673 1393Q673 1343 646 1319T580 1294Q543 1294 517 1318T490 1393ZM871 1393Q871 1445 897 1468T961 1491Q998 1491 1025 1468T1053 1393Q1053 1343 1026 1319T961 1294Q924 1294 898 1318T871 1393Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1024" d="M82 473V625H942V473H82Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="2048" d="M82 473V625H1966V473H82Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="348" d="M37 961L25 983Q47 1073 96 1207T201 1462H324Q258 1208 221 961H37Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="348" d="M309 1462L324 1440Q298 1340 249 1208T147 961H25Q95 1246 127 1462H309Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="502" d="M350 238L365 215Q339 115 290 -17T188 -264H63Q90 -160 122 -7T168 238H350Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="717" d="M406 961L391 983Q447 1198 569 1462H692Q662 1347 633 1203T590 961H406ZM37 961L25 983Q47 1073 96 1207T201 1462H324Q258 1208 221 961H37Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="717" d="M309 1462L324 1440Q298 1340 249 1208T147 961H25Q95 1246 127 1462H309ZM678 1462L692 1440Q668 1349 620 1216T516 961H391Q417 1061 450 1215T496 1462H678Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="829" d="M309 238L324 216Q298 116 249 -16T147 -263H25Q95 22 127 238H309ZM678 238L692 216Q668 125 620 -8T516 -263H391Q417 -163 450 -9T496 238H678Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="770" d="M164 748Q164 869 220 932T385 995Q490 995 548 933T606 748Q606 629 549 565T385 500Q278 500 221 565T164 748Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="623" d="M82 551L424 958L543 889L254 539L543 188L424 117L82 524V551Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="623" d="M541 524L197 117L80 188L367 539L80 889L197 958L541 551V524Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.ttf b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.ttf
new file mode 100644
index 0000000..db43334
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.ttf differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.woff b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.woff
new file mode 100644
index 0000000..1251d51
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.woff differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.woff2 b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.woff2
new file mode 100644
index 0000000..0964c7c
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.woff2 differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.eot b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.eot
new file mode 100644
index 0000000..5b7ffea
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.eot differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.svg b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.svg
new file mode 100644
index 0000000..6e9c820
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.svg
@@ -0,0 +1,19043 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1174" ><font-face
+    font-family="Open Sans Semibold"
+    units-per-em="2048"
+    panose-1="2 11 7 6 3 8 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="557" d="M336 444H160L328 1462H600L336 444ZM33 96Q33 176 78 226T209 276Q266 276 300 244T334 150Q334 71 287 22T164 -27Q102 -27 68 6T33 96Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="858" d="M516 1462L365 934H213L285 1462H516ZM893 1462L741 934H588L662 1462H893Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M1036 872L952 586H1223L1208 418H905L784 0H604L727 418H479L358 0H184L301 418H51L68 586H348L432 872H168L184 1040H479L600 1462H778L657 1040H909L1030 1462H1204L1083 1040H1335L1321
+872H1036ZM526 586H776L858 872H608L526 586Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1128" d="M987 494Q987 322 868 217T530 92L485 -119H350L395 92Q198 105 61 172V381Q139 339 240 311T434 281L518 668Q362 724 295 806T227 1006Q227 1173 345 1273T670 1391L707 1554H842L807 1389Q968
+1373 1096 1307L1010 1122Q876 1188 766 1196L686 825Q814 774 872 730T959 629T987 494ZM571 285Q657 296 707 345T758 471Q758 572 643 616L571 285ZM629 1196Q540 1185 496 1139T451 1016Q451 918 561 877L629 1196Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1688" d="M530 1315Q475 1315 431 1254T361 1081T334 866Q334 731 414 731Q466 731 509 789T582 964T612 1184Q612 1315 530 1315ZM805 1186Q805 1026 750 873T603 642T397 565Q273 565 207 644T141 872Q141
+1038 194 1185T336 1408T545 1483Q672 1483 738 1407T805 1186ZM1511 1462L426 0H231L1317 1462H1511ZM1329 731Q1277 731 1234 674T1162 503T1133 281Q1133 147 1214 147Q1266 147 1310 205T1383 380T1413 600Q1413 731 1329 731ZM1606 604Q1606 443 1551 289T1404
+57T1200 -20Q1073 -20 1007 56T940 279Q940 450 993 599T1135 822T1343 897Q1470 897 1538 822T1606 604Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1411" d="M748 1298Q661 1298 614 1244T567 1102Q567 993 629 901Q776 976 828 1034T881 1161Q881 1227 845 1262T748 1298ZM508 176Q585 176 655 203T799 285L535 666Q402 592 354 525T305 371Q305
+285 361 231T508 176ZM66 350Q66 497 151 604T438 809Q350 960 350 1092Q350 1272 462 1378T760 1485Q920 1485 1012 1404T1104 1186Q1104 1057 1015 956T721 764L956 438Q1065 550 1137 733H1370Q1257 463 1073 279L1278 0H1001L907 131Q801 51 696 16T467 -20Q277
+-20 172 77T66 350Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="483" d="M516 1462L365 934H213L285 1462H516Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="639" d="M78 276Q78 619 202 908T582 1462H791Q293 914 293 272Q293 -57 408 -324H225Q78 -63 78 276Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="639" d="M559 860Q559 518 436 231T55 -324H-154Q344 224 344 866Q344 1193 229 1462H412Q559 1197 559 860Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1122" d="M868 1524L752 1157L1155 1180L1143 975L776 1020L946 659L741 598L639 969L412 657L250 801L543 1067L193 1167L264 1362L618 1184L655 1567L868 1524Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1128" d="M496 631H117V811H496V1192H676V811H1053V631H676V256H496V631Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="530" d="M334 238L342 215Q217 -45 76 -264H-102Q3 -26 98 238H334Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="649" d="M47 446L92 649H594L549 446H47Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="551" d="M33 94Q33 177 80 226T211 276Q267 276 300 245T334 152Q334 74 287 23T162 -29Q96 -29 65 6T33 94Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="788" d="M952 1462L141 0H-92L719 1462H952Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1128" d="M1100 1012Q1100 706 1021 466T802 103T477 -20Q283 -20 188 107T92 471Q92 755 175 997T397 1362T719 1485Q906 1485 1003 1367T1100 1012ZM700 1288Q603 1288 520 1176T384 864T330 469Q330 326
+369 251T498 176Q598 176 680 289T812 606T862 1020Q862 1288 700 1288Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1128" d="M637 0H399L588 870Q616 1020 670 1194Q613 1139 535 1092L348 975L242 1145L750 1462H948L637 0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1128" d="M911 0H-18L18 180L489 602Q665 761 727 833T818 966T846 1098Q846 1183 797 1232T657 1282Q587 1282 518 1252T348 1143L233 1303Q353 1400 464 1441T692 1483Q873 1483 980 1390T1087 1139Q1087 1031
+1048 938T925 748T641 479L330 215V207H952L911 0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1128" d="M1087 1153Q1087 995 988 889T719 752V745Q846 721 915 639T985 434Q985 301 917 198T721 37T416 -20Q191 -20 31 59V274Q115 225 216 199T412 172Q569 172 657 243T745 440Q745 659 467 659H334L371
+842H477Q641 842 744 916T848 1116Q848 1195 799 1240T659 1286Q587 1286 513 1261T350 1176L246 1337Q366 1418 471 1450T698 1483Q881 1483 984 1395T1087 1153Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1128" d="M1047 317H846L778 0H549L618 317H-4L33 514L836 1466H1090L889 514H1090L1047 317ZM659 514L727 823Q758 959 827 1200H819Q768 1114 684 1014L262 514H659Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1128" d="M610 907Q791 907 898 804T1006 518Q1006 357 936 235T732 47T408 -20Q194 -20 53 59V276Q220 176 395 176Q568 176 665 259T762 489Q762 594 700 657T512 721Q417 721 287 686L199 754L399 1462H1112L1067
+1253H561L455 889Q548 907 610 907Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1128" d="M111 446Q111 651 171 852T336 1195T587 1410T930 1483Q1047 1483 1133 1458L1090 1264Q1018 1286 909 1286Q704 1286 572 1157T375 764H381Q506 934 707 934Q863 934 950 835T1038 563Q1038 401 970
+262T784 52T514 -20Q320 -20 216 100T111 446ZM530 174Q611 174 673 222T769 357T803 545Q803 745 625 745Q574 745 530 726T451 678T392 614T353 532T340 418Q340 308 389 241T530 174Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1128" d="M125 0L879 1257H205L248 1462H1180L1147 1294L389 0H125Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1128" d="M731 1485Q910 1485 1014 1396T1118 1157Q1118 1025 1039 928T791 764Q911 686 963 599T1016 397Q1016 276 955 181T779 33T508 -20Q305 -20 191 80T76 348Q76 645 444 780Q353 850 314 925T274 1087Q274
+1266 401 1375T731 1485ZM594 672Q445 618 378 546T311 369Q311 276 370 220T528 164Q643 164 712 228T782 395Q782 486 734 552T594 672ZM711 1300Q618 1300 561 1244T504 1096Q504 1013 543 959T647 866Q762 909 824 971T887 1128Q887 1209 839 1254T711 1300Z"
+/>
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1128" d="M1079 1018Q1079 813 1021 604T869 255T643 48T332 -20Q199 -20 92 12V219Q213 176 328 176Q516 176 634 299T811 688H805Q692 528 500 528Q335 528 245 630T154 918Q154 1074 221 1207T407 1411T682
+1483Q874 1483 976 1364T1079 1018ZM664 1288Q582 1288 519 1241T421 1111T387 932Q387 827 433 772T567 717Q684 717 765 811T846 1051Q846 1159 798 1223T664 1288Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="551" d="M205 948Q205 1031 252 1080T383 1130Q439 1130 472 1099T506 1006Q506 927 458 876T332 825Q266 825 236 860T205 948ZM33 94Q33 177 80 226T211 276Q267 276 300 245T334 152Q334 74 287 23T162
+-29Q96 -29 65 6T33 94Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="551" d="M334 238L342 215Q217 -45 76 -264H-100Q-5 -50 98 238H334ZM205 948Q205 1031 252 1080T383 1130Q439 1130 472 1099T506 1006Q506 927 458 876T332 825Q266 825 236 860T205 948Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1128" d="M1051 221L115 651V772L1051 1260V1065L354 721L1051 418V221Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1128" d="M117 831V1010H1053V831H117ZM117 430V610H1053V430H117Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1128" d="M115 418L809 721L115 1065V1260L1051 772V651L115 221V418Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="907" d="M260 444Q278 577 331 664T508 842Q615 919 654 959T712 1039T731 1128Q731 1198 689 1242T565 1286Q488 1286 415 1259T264 1194L186 1370Q393 1483 596 1483Q767 1483 865 1398T963 1155Q963
+1035 900 938T668 721Q564 647 518 588T457 444H260ZM162 94Q162 177 209 226T340 276Q396 276 429 245T463 152Q463 73 414 23T289 -27Q223 -27 193 7T162 94Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1743" d="M1706 846Q1706 670 1647 524T1480 294T1241 211Q1143 211 1091 257T1026 377H1020Q919 211 743 211Q620 211 554 289T487 508Q487 659 554 787T742 990T1006 1065Q1058 1065 1100 1060T1180 1047T1309
+1008L1208 616Q1178 502 1178 457Q1178 365 1257 365Q1329 365 1391 431T1488 606T1524 836Q1524 1064 1396 1183T1032 1303Q818 1303 647 1204T381 922T285 516Q285 257 425 115T817 -27Q1017 -27 1247 59V-96Q1028 -186 793 -186Q583 -186 426 -103T185 137T100
+502Q100 772 222 991T565 1335T1059 1460Q1259 1460 1405 1386T1628 1171T1706 846ZM989 913Q903 913 831 860T717 716T676 522Q676 365 788 365Q870 365 929 437T1030 657L1094 897Q1041 913 989 913Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1210" d="M827 406H342L133 0H-121L662 1464H936L1102 0H868L827 406ZM811 614Q771 1030 766 1117T760 1257Q705 1118 618 950L446 614H811Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1247" d="M778 1462Q1000 1462 1113 1378T1227 1130Q1227 984 1141 887T901 760V752Q1009 724 1068 649T1128 465Q1128 248 978 124T561 0H70L379 1462H778ZM489 858H688Q827 858 903 918T979 1090Q979 1262 756
+1262H575L489 858ZM348 201H571Q718 201 801 269T885 463Q885 561 825 612T649 664H449L348 201Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1225" d="M924 1278Q770 1278 649 1189T456 930T383 555Q383 375 465 280T709 184Q850 184 1038 252V47Q858 -20 664 -20Q416 -20 276 128T135 545Q135 805 240 1028T522 1367T924 1483Q1141 1483 1313 1391L1219
+1196Q1156 1230 1085 1254T924 1278Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1374" d="M1311 893Q1311 622 1211 420T920 109T471 0H70L379 1462H748Q1019 1462 1165 1317T1311 893ZM483 201Q660 201 792 287T994 529T1065 885Q1065 1069 977 1165T721 1262H575L348 201H483Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1077" d="M846 0H70L379 1462H1155L1112 1257H573L489 862H991L950 659H446L350 203H889L846 0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1026" d="M307 0H70L379 1462H1153L1110 1257H573L477 803H979L934 600H434L307 0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1399" d="M786 793H1298L1141 57Q1029 17 923 -1T684 -20Q423 -20 279 126T135 539Q135 803 237 1022T527 1362T954 1483Q1065 1483 1167 1463T1372 1393L1282 1190Q1108 1276 948 1276Q790 1276 661 1186T458
+928T383 555Q383 372 472 278T725 184Q834 184 940 217L1020 588H743L786 793Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1411" d="M1110 0H872L1012 659H446L307 0H70L379 1462H616L489 864H1055L1182 1462H1419L1110 0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="608" d="M70 0L381 1462H616L305 0H70Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="612" d="M-152 -408Q-256 -408 -322 -383L-317 -182Q-233 -203 -164 -203Q37 -203 90 47L389 1462H627L322 16Q276 -201 161 -304T-152 -408Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1198" d="M1087 0H825L573 655L424 555L307 0H70L379 1462H616L465 756L606 922L1098 1462H1382L766 793L1087 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1016" d="M70 0L379 1462H616L350 205H889L846 0H70Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1757" d="M647 0L532 1214H526Q517 1096 471 874L287 0H68L377 1462H700L809 313H815L1421 1462H1765L1460 0H1233L1415 872Q1454 1058 1501 1214H1495L852 0H647Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1491" d="M1192 0H932L522 1163H516L506 1094Q482 945 471 882T287 0H68L377 1462H645L1044 313H1051Q1057 367 1082 505T1122 709L1282 1462H1501L1192 0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1485" d="M1421 922Q1421 643 1326 425T1065 94T678 -20Q419 -20 277 129T135 543Q135 810 233 1030T503 1368T891 1485Q1142 1485 1281 1336T1421 922ZM872 1280Q734 1280 622 1184T447 918T383 545Q383 372 464
+278T692 184Q830 184 940 279T1112 544T1174 920Q1174 1090 1095 1185T872 1280Z" />
+<glyph unicode="P" glyph-name="P" d="M465 748H559Q737 748 834 827T932 1053Q932 1162 874 1212T694 1262H575L465 748ZM1174 1061Q1174 813 1005 680T532 547H422L307 0H70L379 1462H713Q942 1462 1058 1362T1174 1061Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1485" d="M1421 922Q1421 600 1291 359T936 27L1200 -348H911L709 -20H678Q419 -20 277 129T135 543Q135 810 233 1030T503 1368T891 1485Q1142 1485 1281 1336T1421 922ZM872 1280Q734 1280 622 1184T447 918T383
+545Q383 372 464 278T692 184Q830 184 940 278T1112 541T1174 920Q1174 1090 1095 1185T872 1280Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1206" d="M430 584L307 0H70L379 1462H717Q940 1462 1059 1368T1178 1077Q1178 912 1092 799T834 633L1083 0H823L616 584H430ZM473 782H596Q766 782 850 857T934 1063Q934 1168 875 1214T692 1260H573L473 782Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1057" d="M930 428Q930 218 786 99T387 -20Q177 -20 39 55V279Q212 182 389 182Q526 182 605 240T684 403Q684 472 643 525T471 662Q366 729 316 784T240 904T213 1049Q213 1177 274 1276T448 1429T702 1483Q907
+1483 1083 1391L997 1200Q836 1278 702 1278Q593 1278 527 1220T461 1067Q461 1020 476 985T522 919T657 823Q812 726 871 636T930 428Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1053" d="M528 0H291L555 1257H176L221 1462H1219L1176 1257H795L528 0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1399" d="M1419 1462L1217 506Q1161 239 1009 110T606 -20Q389 -20 271 86T152 391Q152 474 172 561L365 1462H602L410 557Q389 469 389 399Q389 297 448 241T629 184Q774 184 859 264T983 526L1182 1462H1419Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1165" d="M506 248Q576 426 643 557L1098 1462H1352L588 0H330L186 1462H418L492 557Q501 454 503 324L502 248H506Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1788" d="M1317 0H1059L1022 842L1016 1027L1020 1133H1014Q967 989 897 842L512 0H256L203 1462H432L451 612Q451 476 438 266H444Q527 487 586 621L973 1462H1198L1229 623L1232 454L1229 266H1237Q1265 354
+1307 463T1368 616L1726 1462H1972L1317 0Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1151" d="M1040 0H784L592 592L154 0H-111L475 770L225 1462H471L649 922L1051 1462H1317L766 752L1040 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1092" d="M582 793L1014 1462H1280L657 549L543 0H305L424 553L186 1462H428L582 793Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1092" d="M901 0H-39L-6 168L844 1255H246L289 1462H1186L1151 1290L299 205H944L901 0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="631" d="M403 -324H-27L354 1462H784L745 1286H524L221 -147H442L403 -324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="788" d="M428 1462L647 0H438L221 1462H428Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="631" d="M-106 -147H113L418 1286H197L236 1462H666L285 -324H-143L-106 -147Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1069" d="M37 537L645 1470H772L1044 537H860L672 1227L238 537H37Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="813" d="M629 -324H-188L-158 -184H659L629 -324Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1135" d="M918 1241H774Q709 1304 642 1392T541 1548V1569H786Q833 1415 918 1266V1241Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1186" d="M399 -20Q258 -20 176 81T94 367Q94 569 163 745T355 1023T623 1126Q720 1126 790 1081T899 948H909L971 1106H1151L915 0H733L754 176H748Q590 -20 399 -20ZM485 170Q567 170 646 247T776 455T827 739Q827
+827 780 880T657 934Q572 934 497 857T377 648T332 373Q332 271 372 221T485 170Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1200" d="M578 -20Q480 -20 410 25T299 156H289L225 0H47L377 1556H612L541 1223Q528 1160 503 1067T463 926H471Q561 1039 636 1082T797 1126Q942 1126 1023 1023T1104 737Q1104 535 1035 358T844 80T578 -20ZM711
+934Q630 934 549 854T419 644T369 373Q369 277 415 224T547 170Q632 170 706 248T823 458T866 733Q866 934 711 934Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="954" d="M506 -20Q310 -20 202 86T94 389Q94 596 167 765T374 1030T676 1126Q840 1126 973 1065L903 881Q781 934 682 934Q532 934 432 781T332 401Q332 290 388 230T543 170Q617 170 681 192T811 246V51Q671 -20
+506 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1198" d="M623 1126Q802 1126 891 948H899Q912 1094 936 1198L1012 1556H1245L915 0H731L750 176H743Q655 70 573 25T399 -20Q256 -20 175 81T94 369Q94 574 165 752T357 1028T623 1126ZM489 170Q571 170 651 252T780
+466T829 733Q829 824 786 879T653 934Q568 934 494 857T376 646T332 373Q332 170 489 170Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1075" d="M664 946Q568 946 484 860T362 633H391Q579 633 685 686T791 838Q791 889 759 917T664 946ZM512 -20Q315 -20 205 91T94 401Q94 599 171 769T381 1033T678 1126Q839 1126 928 1054T1018 848Q1018 666
+852 564T377 461H334L332 430V401Q332 290 388 227T557 164Q629 164 700 183T868 248V61Q772 17 692 -1T512 -20Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="702" d="M-76 -492Q-166 -492 -225 -469V-279Q-161 -299 -111 -299Q23 -299 66 -94L283 928H104L125 1034L319 1110L340 1202Q384 1400 474 1483T731 1567Q846 1567 942 1524L881 1348Q807 1376 745 1376Q676 1376
+635 1333T571 1192L553 1106H782L745 928H516L293 -125Q253 -314 162 -403T-76 -492Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1067" d="M1143 1106L1112 969L920 936Q948 878 948 799Q948 606 829 493T510 379Q458 379 418 387Q307 347 307 283Q307 245 338 231T430 209L557 193Q733 171 809 106T885 -82Q885 -278 734 -385T305 -492Q102
+-492 -9 -417T-121 -211Q-121 -108 -52 -33T172 94Q96 139 96 221Q96 290 142 340T289 438Q154 519 154 690Q154 886 276 1006T600 1126Q680 1126 760 1106H1143ZM324 18Q212 0 152 -53T92 -184Q92 -249 147 -287T317 -326Q480 -326 572 -272T664 -117Q664 -66
+619 -37T461 4L324 18ZM594 969Q529 969 480 931T404 826T377 680Q377 609 412 571T514 532Q579 532 626 571T700 678T727 827Q727 969 594 969Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1208" d="M702 0L844 672Q862 762 862 799Q862 934 733 934Q621 934 524 809T381 467L283 0H47L377 1556H612L555 1294Q528 1168 482 1001L463 926H471Q555 1032 639 1079T817 1126Q953 1126 1025 1049T1098 827Q1098
+751 1075 653L936 0H702Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="563" d="M330 1378Q330 1446 369 1488T479 1530Q532 1530 565 1504T598 1423Q598 1352 558 1311T453 1270Q400 1270 365 1296T330 1378ZM283 0H47L283 1106H518L283 0Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="563" d="M-113 -492Q-203 -492 -262 -469V-279Q-198 -299 -145 -299Q-14 -299 25 -113L285 1106H518L252 -141Q214 -322 125 -407T-113 -492ZM332 1378Q332 1446 370 1488T479 1530Q533 1530 565 1504T598 1423Q598
+1352 558 1311T453 1270Q400 1270 366 1295T332 1378Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1081" d="M887 1106H1159L676 621L967 0H705L496 471L360 375L283 0H47L377 1556H612Q477 929 453 827T393 600H397L887 1106Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="563" d="M281 0H47L377 1556H612L281 0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1819" d="M807 1126Q1027 1126 1061 891H1069Q1144 1007 1239 1066T1438 1126Q1571 1126 1640 1050T1710 834Q1710 770 1688 653L1548 0H1313L1456 672Q1475 767 1475 805Q1475 934 1354 934Q1246 934 1153 810T1016
+481L915 0H680L823 672Q840 754 840 799Q840 934 723 934Q613 934 520 807T381 469L283 0H47L283 1106H467L446 901H455Q603 1126 807 1126Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1208" d="M702 0L844 672Q862 762 862 803Q862 934 733 934Q661 934 591 877T465 713T381 469L283 0H47L283 1106H467L446 901H455Q538 1019 626 1072T817 1126Q951 1126 1024 1050T1098 834Q1098 765 1075 653L938
+0H702Z" />
+<glyph unicode="o" glyph-name="o" d="M842 702Q842 809 793 869T653 930Q560 930 487 859T373 665T332 403Q332 292 381 233T528 174Q618 174 690 242T802 432T842 702ZM1079 692Q1079 490 1006 325T806 71T512 -18Q320 -18 207 96T94 408Q94 607 165 773T366
+1031T664 1124Q859 1124 969 1008T1079 692Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1200" d="M578 -20Q397 -20 309 156H299Q292 59 274 -29L178 -492H-55L283 1106H467L446 918H455Q612 1126 799 1126Q942 1126 1023 1023T1104 737Q1104 533 1034 356T844 79T578 -20ZM711 934Q630 934 550 855T420
+644T369 373Q369 277 415 224T547 170Q632 170 706 248T823 458T866 733Q866 934 711 934Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1198" d="M625 1126Q808 1126 899 948H909L973 1106H1151L811 -492H578L653 -143Q665 -87 696 37T735 178H727Q643 70 563 25T393 -20Q254 -20 174 82T94 367Q94 575 167 754T359 1029T625 1126ZM492 170Q572 170
+651 251T778 464T827 733Q827 827 782 880T655 934Q569 934 495 857T377 647T332 373Q332 170 492 170Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="836" d="M797 1126Q859 1126 905 1114L854 895Q800 909 752 909Q626 909 527 796T389 500L283 0H47L283 1106H467L446 901H455Q538 1021 621 1073T797 1126Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="922" d="M782 340Q782 167 664 74T336 -20Q146 -20 14 47V250Q167 160 326 160Q423 160 483 200T543 309Q543 360 509 396T367 494Q242 561 191 630T139 795Q139 950 246 1038T535 1126Q731 1126 881 1042L805
+866Q665 942 539 942Q466 942 421 909T375 817Q375 772 408 737T543 647Q648 588 692 546T759 455T782 340Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="752" d="M455 170Q523 170 606 201V23Q571 6 511 -7T391 -20Q117 -20 117 227Q117 284 133 358L254 928H92L113 1038L303 1120L432 1352H578L526 1106H805L766 928H489L367 356Q354 301 354 264Q354 221 379 196T455 170Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1208" d="M506 1106L377 496Q346 355 346 303Q346 170 473 170Q545 170 616 227T742 389T827 637L926 1106H1159L926 0H741L762 205H754Q672 89 583 35T391 -20Q257 -20 184 56T111 274Q111 337 123 398T147 522L270
+1106H506Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="997" d="M231 0L100 1106H332L387 508Q401 349 401 211H408Q436 285 478 376T543 508L854 1106H1104L506 0H231Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1540" d="M844 0L825 627L824 697L827 897Q802 835 776 772T430 0H168L121 1106H342L355 460Q353 373 344 215H350Q416 391 459 487L737 1106H991L1010 502L1011 449L1008 215H1014Q1031 265 1071 373T1134 537T1386
+1106H1630L1112 0H844Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1032" d="M489 387L184 0H-86L389 569L158 1106H403L547 733L834 1106H1108L647 557L895 0H649L489 387Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1004" d="M100 1106H332L395 575Q404 513 411 401T418 219H424Q510 434 559 532L852 1106H1106L418 -174Q328 -339 222 -415T-27 -492Q-103 -492 -170 -473V-285Q-95 -301 -45 -301Q29 -301 89 -258T213 -102L264
+-10L100 1106Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="920" d="M719 0H-39L-10 147L625 928H186L225 1106H930L893 936L270 178H756L719 0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="721" d="M457 -324Q141 -324 141 -88Q141 -27 158 45L203 246Q217 311 217 344Q217 485 8 485L47 672Q167 672 238 714T332 858L391 1133Q419 1267 464 1334T584 1432T782 1462H842L801 1278Q705 1278
+662 1244T600 1128L530 819Q506 711 443 649T264 569V563Q424 518 424 348Q424 310 408 227L365 33Q354 -15 354 -41Q354 -92 386 -115T496 -139V-324H457Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M498 1552H676V-481H498V1552Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="721" d="M270 1462Q588 1462 588 1227Q588 1166 571 1094L526 891Q512 826 512 793Q512 651 721 651L682 465Q561 465 490 423T397 281L334 -25Q300 -190 211 -257T-59 -324H-88V-141Q18 -139 64 -105T129
+10L199 319Q223 428 286 489T465 567V573Q307 621 307 788Q307 843 324 909L367 1106Q377 1150 377 1180Q377 1238 334 1258T213 1278L248 1462H270Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1128" d="M344 692Q293 692 232 661T111 571V762Q211 870 360 870Q424 870 478 858T625 807Q695 777 740 765T834 752Q884 752 946 783T1067 872V682Q964 571 817 571Q754 571 693 587T555 637Q479 669
+436 680T344 692Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="557" d="M221 645H395L229 -373H-45L221 645ZM522 993Q522 913 475 863T348 813Q289 813 255 844T221 936Q221 1018 270 1068T397 1118Q462 1118 492 1083T522 993Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1128" d="M578 -20H422L467 193Q335 227 265 327T195 586Q195 776 258 937T436 1197T698 1319L733 1483H889L852 1319Q976 1307 1073 1262L1004 1077Q879 1130 782 1130Q683 1130 602 1059T477 864T432
+598Q432 487 488 427T643 367Q717 367 781 388T911 442V248Q778 179 618 174L578 -20Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1128" d="M856 1483Q1044 1483 1208 1397L1120 1214Q977 1288 862 1288Q677 1288 635 1083L578 805H911L877 633H541L508 481Q487 383 440 316T309 207H999L954 0H-18L20 193Q220 238 270 469L305
+633H109L145 805H342L403 1104Q441 1289 556 1386T856 1483Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1128" d="M209 723Q209 833 270 928L141 1057L260 1176L387 1049Q489 1110 594 1110Q702 1110 801 1047L928 1176L1049 1059L920 930Q981 831 981 723Q981 609 920 514L1047 389L928 270L801 397Q706
+338 594 338Q474 338 387 397L260 272L143 391L270 516Q209 611 209 723ZM377 723Q377 632 439 569T594 506Q685 506 750 568T815 723Q815 816 750 879T594 942Q502 942 440 878T377 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1128" d="M594 793L1026 1462H1274L756 702H973L938 547H664L633 399H907L874 244H602L549 0H328L379 244H106L139 399H412L442 547H170L205 702H416L217 1462H449L594 793Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M498 1552H676V758H498V1552ZM498 315H676V-481H498V315Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="995" d="M162 764Q162 952 381 1071Q334 1103 303 1153T272 1268Q272 1406 383 1488T680 1571Q858 1571 1012 1493L944 1335Q882 1364 815 1385T670 1407Q584 1407 536 1373T487 1278Q487 1235 523
+1202T672 1118Q799 1062 858 991T918 823Q918 731 866 652T705 512Q807 436 807 319Q807 162 684 74T354 -14Q166 -14 39 53V240Q191 147 358 147Q474 147 532 187T590 299Q590 342 551 378T410 463Q280 523 221 594T162 764ZM510 987Q441 961 400 908T358 793Q358
+732 404 689T578 588Q640 624 677 678T715 793Q715 853 666 897T510 987Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1135" d="M426 1380Q426 1440 461 1478T559 1516Q607 1516 635 1493T664 1421Q664 1356 629 1319T535 1282Q488 1282 457 1305T426 1380ZM809 1380Q809 1440 844 1478T942 1516Q990 1516 1018 1493T1047
+1421Q1047 1356 1012 1319T918 1282Q871 1282 840 1305T809 1380Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M930 1034Q817 1034 755 958T692 727Q692 426 930 426Q977 426 1042 442T1151 477V319Q1034 268 911 268Q714 268 608 391T502 727Q502 943 615 1067T928 1192Q1066 1192 1194 1126L1126
+979Q1020 1034 930 1034ZM131 731Q131 931 231 1106T506 1382T883 1483Q1082 1483 1256 1384T1532 1109T1634 731Q1634 532 1536 358T1263 82T883 -20Q676 -20 501 83T229 360T131 731ZM254 731Q254 563 337 419T566 188T883 102Q1056 102 1202 189T1430 420T1511
+731Q1511 896 1429 1041T1202 1273T883 1360Q715 1360 569 1276T338 1045T254 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="729" d="M498 1479Q611 1479 664 1376H670L709 1466H827L680 782H557L567 887H563Q513 825 465 798T356 770Q265 770 213 836T160 1016Q160 1144 207 1254T329 1422T498 1479ZM412 897Q462 897
+509 945T586 1072T616 1231Q616 1350 514 1350Q432 1350 376 1253T319 1022Q319 897 412 897Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1055" d="M80 575L475 995L610 877L322 545L475 176L297 100L80 553V575ZM520 555L905 989L1042 877L762 526L909 176L729 100L520 530V555Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1128" d="M1053 811V256H874V631H117V811H1053Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="649" d="M47 446L92 649H594L549 446H47Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M131 731Q131 931 231 1106T506 1382T883 1483Q1082 1483 1256 1384T1532 1109T1634 731Q1634 532 1536 358T1263 82T883 -20Q676 -20 501 83T229 360T131 731ZM254 731Q254 563 337 419T566
+188T883 102Q1056 102 1202 189T1430 420T1511 731Q1511 896 1429 1041T1202 1273T883 1360Q715 1360 569 1276T338 1045T254 731ZM1214 907Q1214 824 1169 762T1038 664L1249 291H1049L877 616H786V291H608V1169H877Q1214 1169 1214 907ZM786 760H858Q942 760
+987 796T1032 895Q1032 968 987 996T858 1024H786V760Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="903" d="M1020 1556H111L150 1722H1061L1020 1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M188 1153Q188 1289 285 1386T518 1483Q654 1483 750 1386T846 1153Q846 1016 750 922T518 827Q430 827 353 871T232 990T188 1153ZM340 1153Q340 1083 392 1031T518 979Q590 979 642 1031T694
+1153Q694 1227 643 1279T518 1331Q444 1331 392 1280T340 1153Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1128" d="M496 657H117V838H496V1219H676V838H1053V657H676V283H496V657ZM117 0V180H1053V0H117Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="745" d="M682 586H78L106 721L375 944Q486 1039 523 1080T578 1157T596 1231Q596 1277 568 1303T492 1329Q401 1329 301 1249L221 1372Q289 1426 363 1453T532 1481Q647 1481 715 1421T784 1266Q784
+1197 761 1142T687 1031T518 885L344 743H715L682 586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="745" d="M784 1272Q784 1182 730 1123T571 1038V1034Q649 1016 686 967T723 852Q723 723 624 646T354 569Q216 569 104 625V784Q230 713 352 713Q442 713 491 750T541 856Q541 969 395 969H287L315
+1102H408Q497 1102 550 1136T604 1235Q604 1335 487 1335Q395 1335 299 1270L231 1391Q357 1481 522 1481Q646 1481 715 1426T784 1272Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1135" d="M508 1266Q605 1374 733 1569H997V1550Q943 1484 839 1389T664 1241H508V1266Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1221" d="M358 307Q358 242 391 206T487 170Q600 170 696 295T838 633L940 1106H1171L936 0H752L774 190H764Q689 79 611 30T446 -20Q338 -20 291 61H283Q274 -12 244 -174L178 -492H-55L283 1106H518L377
+436Q358 352 358 307Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1204 -260H1065V1378H877V-260H737V559Q675 541 592 541Q376 541 274 666T172 1042Q172 1302 281 1429T623 1556H1204V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="551" d="M150 692Q150 775 197 824T328 874Q384 874 417 843T451 750Q451 672 404 621T279 569Q213 569 182 604T150 692Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="420" d="M236 -264Q236 -370 154 -431T-70 -492Q-134 -492 -188 -477V-342Q-141 -356 -92 -356Q45 -356 45 -260Q45 -220 10 -199T-94 -168L4 0H150L100 -96Q172 -121 204 -163T236 -264Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="745" d="M532 1462H694L508 586H317L416 1047Q433 1126 473 1264Q452 1244 424 1221T270 1118L193 1247L532 1462Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="721" d="M776 1206Q776 1080 734 981T613 826T424 770Q302 770 233 843T164 1047Q164 1169 208 1268T333 1423T522 1479Q646 1479 711 1408T776 1206ZM510 1346Q429 1346 378 1259T326 1042Q326
+901 438 901Q515 901 565 988T616 1208Q616 1346 510 1346Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1055" d="M975 510L578 92L444 211L731 541L578 911L758 987L975 532V510ZM535 530L150 98L10 211L291 559L145 911L324 987L535 555V530Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1661" d="M1429 1462L346 0H149L1234 1462H1429ZM746 1462H908L722 586H531L630 1047Q647 1126 687 1264Q666 1244 638 1221T484 1118L407 1247L746 1462ZM1448 177H1326L1287 1H1104L1143 177H775L801
+314L1278 883H1475L1354 320H1477L1448 177ZM1172 320L1224 541L1258 670Q1226 619 1160 539L973 320H1172Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1661" d="M1401 1462L318 0H121L1206 1462H1401ZM717 1462H879L693 586H502L601 1047Q618 1126 658 1264Q637 1244 609 1221T455 1118L378 1247L717 1462ZM1464 1H860L888 136L1157 359Q1268 454 1305
+495T1360 572T1378 646Q1378 692 1350 718T1274 744Q1183 744 1083 664L1003 787Q1071 841 1145 868T1314 896Q1429 896 1497 836T1566 681Q1566 612 1543 557T1469 446T1300 300L1126 158H1497L1464 1Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1683" d="M1571 1462L488 0H291L1376 1462H1571ZM1554 177H1432L1393 1H1210L1249 177H881L907 314L1384 883H1581L1460 320H1583L1554 177ZM1278 320L1330 541L1364 670Q1332 619 1266 539L1079
+320H1278ZM788 1272Q788 1182 734 1123T575 1038V1034Q653 1016 690 967T727 852Q727 723 628 646T358 569Q220 569 108 625V784Q234 713 356 713Q446 713 495 750T545 856Q545 969 399 969H291L319 1102H412Q501 1102 554 1136T608 1235Q608 1335 491 1335Q399
+1335 303 1270L235 1391Q361 1481 526 1481Q650 1481 719 1426T788 1272Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="907" d="M668 643Q643 497 589 412T418 244Q311 165 273 126T216 47T197 -41Q197 -112 239 -155T362 -199Q438 -199 511 -172T664 -106L739 -283Q534 -395 330 -395Q156 -395 61 -310T-35 -68Q-35
+52 29 151T260 367Q353 431 401 489T471 643H668ZM766 993Q766 908 718 859T588 809Q532 809 499 841T465 934Q465 1012 511 1063T637 1114Q703 1114 734 1080T766 993Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1210" d="M827 406H342L133 0H-121L662 1464H936L1102 0H868L827 406ZM811 614Q771 1030 766 1117T760 1257Q705 1118 618 950L446 614H811ZM915 1579H771Q706 1642 639 1730T538 1886V1907H783Q830
+1753 915 1604V1579Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1210" d="M827 406H342L133 0H-121L662 1464H936L1102 0H868L827 406ZM811 614Q771 1030 766 1117T760 1257Q705 1118 618 950L446 614H811ZM707 1604Q804 1712 932 1907H1196V1888Q1142 1822 1038 1727T863
+1579H707V1604Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1210" d="M827 406H342L133 0H-121L662 1464H936L1102 0H868L827 406ZM811 614Q771 1030 766 1117T760 1257Q705 1118 618 950L446 614H811ZM1157 1579H1005Q929 1642 844 1757Q713 1647 608 1579H444V1604Q582
+1732 645 1799T735 1907H983Q1021 1808 1157 1604V1579Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1210" d="M827 406H342L133 0H-121L662 1464H936L1102 0H868L827 406ZM811 614Q771 1030 766 1117T760 1257Q705 1118 618 950L446 614H811ZM967 1579Q922 1579 885 1596T813 1633T748 1671T684 1688Q646
+1688 621 1661T578 1577H441Q498 1862 697 1862Q743 1862 782 1845T854 1807T918 1769T977 1751Q1017 1751 1042 1777T1090 1864H1227Q1161 1579 967 1579Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1210" d="M827 406H342L133 0H-121L662 1464H936L1102 0H868L827 406ZM811 614Q771 1030 766 1117T760 1257Q705 1118 618 950L446 614H811ZM518 1718Q518 1778 553 1816T651 1854Q699 1854 727 1831T756
+1759Q756 1694 721 1657T627 1620Q580 1620 549 1643T518 1718ZM901 1718Q901 1778 936 1816T1034 1854Q1082 1854 1110 1831T1139 1759Q1139 1694 1104 1657T1010 1620Q963 1620 932 1643T901 1718Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1210" d="M827 406H342L133 0H-121L662 1464H936L1102 0H868L827 406ZM811 614Q771 1030 766 1117T760 1257Q705 1118 618 950L446 614H811ZM1039 1575Q1039 1471 973 1410T801 1348Q695 1348 632 1409T568
+1573Q568 1676 633 1737T801 1799Q905 1799 972 1739T1039 1575ZM908 1573Q908 1623 878 1651T801 1680Q756 1680 727 1652T697 1573Q697 1524 723 1497T801 1469Q848 1469 878 1496T908 1573Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1753" d="M1520 0H743L829 406H397L141 0H-121L809 1462H1829L1786 1257H1247L1163 862H1667L1624 662H1122L1024 203H1563L1520 0ZM872 614L1010 1257H928L528 614H872Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1225" d="M924 1278Q770 1278 649 1189T456 930T383 555Q383 375 465 280T709 184Q850 184 1038 252V47Q858 -20 664 -20Q416 -20 276 128T135 545Q135 805 240 1028T522 1367T924 1483Q1141 1483
+1313 1391L1219 1196Q1156 1230 1085 1254T924 1278ZM791 -264Q791 -370 709 -431T485 -492Q421 -492 367 -477V-342Q414 -356 463 -356Q600 -356 600 -260Q600 -220 565 -199T461 -168L559 0H705L655 -96Q727 -121 759 -163T791 -264Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1077" d="M846 0H70L379 1462H1155L1112 1257H573L489 862H991L950 659H446L350 203H889L846 0ZM903 1579H759Q694 1642 627 1730T526 1886V1907H771Q818 1753 903 1604V1579Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1077" d="M846 0H70L379 1462H1155L1112 1257H573L489 862H991L950 659H446L350 203H889L846 0ZM633 1604Q730 1712 858 1907H1122V1888Q1068 1822 964 1727T789 1579H633V1604Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1077" d="M846 0H70L379 1462H1155L1112 1257H573L489 862H991L950 659H446L350 203H889L846 0ZM1130 1579H978Q902 1642 817 1757Q686 1647 581 1579H417V1604Q555 1732 618 1799T708 1907H956Q994
+1808 1130 1604V1579Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1077" d="M846 0H70L379 1462H1155L1112 1257H573L489 862H991L950 659H446L350 203H889L846 0ZM479 1718Q479 1778 514 1816T612 1854Q660 1854 688 1831T717 1759Q717 1694 682 1657T588 1620Q541
+1620 510 1643T479 1718ZM862 1718Q862 1778 897 1816T995 1854Q1043 1854 1071 1831T1100 1759Q1100 1694 1065 1657T971 1620Q924 1620 893 1643T862 1718Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="608" d="M70 0L381 1462H616L305 0H70ZM630 1579H486Q421 1642 354 1730T253 1886V1907H498Q545 1753 630 1604V1579Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="608" d="M70 0L381 1462H616L305 0H70ZM415 1604Q512 1712 640 1907H904V1888Q850 1822 746 1727T571 1579H415V1604Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="608" d="M70 0L381 1462H616L305 0H70ZM873 1579H721Q645 1642 560 1757Q429 1647 324 1579H160V1604Q298 1732 361 1799T451 1907H699Q737 1808 873 1604V1579Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="608" d="M70 0L381 1462H616L305 0H70ZM243 1718Q243 1778 278 1816T376 1854Q424 1854 452 1831T481 1759Q481 1694 446 1657T352 1620Q305 1620 274 1643T243 1718ZM626 1718Q626 1778 661 1816T759
+1854Q807 1854 835 1831T864 1759Q864 1694 829 1657T735 1620Q688 1620 657 1643T626 1718Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1374" d="M1311 893Q1311 622 1211 420T920 109T471 0H70L199 623H53L98 823H242L379 1462H748Q1019 1462 1165 1317T1311 893ZM483 201Q660 201 792 287T994 529T1065 885Q1065 1069 977 1165T721 1262H575L481
+823H766L721 623H438L348 201H483Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1491" d="M1192 0H932L522 1163H516L506 1094Q482 945 471 882T287 0H68L377 1462H645L1044 313H1051Q1057 367 1082 505T1122 709L1282 1462H1501L1192 0ZM1108 1579Q1063 1579 1026 1596T954 1633T889
+1671T825 1688Q787 1688 762 1661T719 1577H582Q639 1862 838 1862Q884 1862 923 1845T995 1807T1059 1769T1118 1751Q1158 1751 1183 1777T1231 1864H1368Q1302 1579 1108 1579Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1485" d="M1421 922Q1421 643 1326 425T1065 94T678 -20Q419 -20 277 129T135 543Q135 810 233 1030T503 1368T891 1485Q1142 1485 1281 1336T1421 922ZM872 1280Q734 1280 622 1184T447 918T383 545Q383
+372 464 278T692 184Q830 184 940 279T1112 544T1174 920Q1174 1090 1095 1185T872 1280ZM1029 1579H885Q820 1642 753 1730T652 1886V1907H897Q944 1753 1029 1604V1579Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1485" d="M1421 922Q1421 643 1326 425T1065 94T678 -20Q419 -20 277 129T135 543Q135 810 233 1030T503 1368T891 1485Q1142 1485 1281 1336T1421 922ZM872 1280Q734 1280 622 1184T447 918T383 545Q383
+372 464 278T692 184Q830 184 940 279T1112 544T1174 920Q1174 1090 1095 1185T872 1280ZM787 1604Q884 1712 1012 1907H1276V1888Q1222 1822 1118 1727T943 1579H787V1604Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1485" d="M1421 922Q1421 643 1326 425T1065 94T678 -20Q419 -20 277 129T135 543Q135 810 233 1030T503 1368T891 1485Q1142 1485 1281 1336T1421 922ZM872 1280Q734 1280 622 1184T447 918T383
+545Q383 372 464 278T692 184Q830 184 940 279T1112 544T1174 920Q1174 1090 1095 1185T872 1280ZM1268 1579H1116Q1040 1642 955 1757Q824 1647 719 1579H555V1604Q693 1732 756 1799T846 1907H1094Q1132 1808 1268 1604V1579Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1485" d="M1421 922Q1421 643 1326 425T1065 94T678 -20Q419 -20 277 129T135 543Q135 810 233 1030T503 1368T891 1485Q1142 1485 1281 1336T1421 922ZM872 1280Q734 1280 622 1184T447 918T383 545Q383
+372 464 278T692 184Q830 184 940 279T1112 544T1174 920Q1174 1090 1095 1185T872 1280ZM1069 1579Q1024 1579 987 1596T915 1633T850 1671T786 1688Q748 1688 723 1661T680 1577H543Q600 1862 799 1862Q845 1862 884 1845T956 1807T1020 1769T1079 1751Q1119
+1751 1144 1777T1192 1864H1329Q1263 1579 1069 1579Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1485" d="M1421 922Q1421 643 1326 425T1065 94T678 -20Q419 -20 277 129T135 543Q135 810 233 1030T503 1368T891 1485Q1142 1485 1281 1336T1421 922ZM872 1280Q734 1280 622 1184T447 918T383
+545Q383 372 464 278T692 184Q830 184 940 279T1112 544T1174 920Q1174 1090 1095 1185T872 1280ZM623 1718Q623 1778 658 1816T756 1854Q804 1854 832 1831T861 1759Q861 1694 826 1657T732 1620Q685 1620 654 1643T623 1718ZM1006 1718Q1006 1778 1041 1816T1139
+1854Q1187 1854 1215 1831T1244 1759Q1244 1694 1209 1657T1115 1620Q1068 1620 1037 1643T1006 1718Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1128" d="M457 723L147 1034L272 1159L584 850L897 1159L1024 1036L709 723L1020 410L897 287L584 596L272 289L150 412L457 723Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1485" d="M1421 922Q1421 643 1326 425T1065 94T678 -20Q485 -20 360 63L242 -86L109 18L238 178Q135 316 135 543Q135 810 233 1030T503 1368T891 1485Q1080 1485 1208 1391L1327 1540L1460 1436L1327
+1270Q1421 1140 1421 922ZM872 1282Q731 1282 619 1189T442 924T377 545Q377 457 401 381L1069 1217Q989 1282 872 1282ZM1180 920Q1180 1008 1161 1063L500 238Q575 182 694 182Q833 182 944 277T1118 542T1180 920Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1399" d="M1419 1462L1217 506Q1161 239 1009 110T606 -20Q389 -20 271 86T152 391Q152 474 172 561L365 1462H602L410 557Q389 469 389 399Q389 297 448 241T629 184Q774 184 859 264T983 526L1182
+1462H1419ZM996 1579H852Q787 1642 720 1730T619 1886V1907H864Q911 1753 996 1604V1579Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1399" d="M1419 1462L1217 506Q1161 239 1009 110T606 -20Q389 -20 271 86T152 391Q152 474 172 561L365 1462H602L410 557Q389 469 389 399Q389 297 448 241T629 184Q774 184 859 264T983 526L1182
+1462H1419ZM791 1604Q888 1712 1016 1907H1280V1888Q1226 1822 1122 1727T947 1579H791V1604Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1399" d="M1419 1462L1217 506Q1161 239 1009 110T606 -20Q389 -20 271 86T152 391Q152 474 172 561L365 1462H602L410 557Q389 469 389 399Q389 297 448 241T629 184Q774 184 859 264T983 526L1182
+1462H1419ZM1249 1579H1097Q1021 1642 936 1757Q805 1647 700 1579H536V1604Q674 1732 737 1799T827 1907H1075Q1113 1808 1249 1604V1579Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1399" d="M1419 1462L1217 506Q1161 239 1009 110T606 -20Q389 -20 271 86T152 391Q152 474 172 561L365 1462H602L410 557Q389 469 389 399Q389 297 448 241T629 184Q774 184 859 264T983 526L1182
+1462H1419ZM602 1718Q602 1778 637 1816T735 1854Q783 1854 811 1831T840 1759Q840 1694 805 1657T711 1620Q664 1620 633 1643T602 1718ZM985 1718Q985 1778 1020 1816T1118 1854Q1166 1854 1194 1831T1223 1759Q1223 1694 1188 1657T1094 1620Q1047 1620 1016
+1643T985 1718Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1092" d="M582 793L1014 1462H1280L657 549L543 0H305L424 553L186 1462H428L582 793ZM610 1604Q707 1712 835 1907H1099V1888Q1045 1822 941 1727T766 1579H610V1604Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" d="M1124 817Q1124 574 958 440T481 305H373L307 0H70L379 1462H616L565 1219H662Q889 1219 1006 1118T1124 817ZM414 506H510Q686 506 784 584T883 811Q883 920 824 969T643 1018H522L414 506Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1266" d="M-117 -492Q-186 -492 -258 -469V-276Q-197 -297 -145 -297Q-80 -297 -39 -254T25 -106L287 1128Q335 1359 460 1461T809 1563Q997 1563 1101 1483T1206 1268Q1206 1099 1027 969Q909 882
+879 850T848 782Q848 738 922 681Q1029 597 1065 554T1120 462T1139 352Q1139 180 1023 80T709 -20Q527 -20 426 45V246Q552 160 678 160Q783 160 842 204T901 328Q901 376 878 413T766 520Q684 584 645 641T606 768Q606 843 650 907T786 1031Q884 1097 924 1143T965
+1241Q965 1306 918 1342T786 1378Q576 1378 524 1139L260 -121Q218 -318 126 -405T-117 -492Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1186" d="M399 -20Q258 -20 176 81T94 367Q94 569 163 745T355 1023T623 1126Q720 1126 790 1081T899 948H909L971 1106H1151L915 0H733L754 176H748Q590 -20 399 -20ZM485 170Q567 170 646 247T776
+455T827 739Q827 827 780 880T657 934Q572 934 497 857T377 648T332 373Q332 271 372 221T485 170ZM1103 1241H959Q894 1304 827 1392T726 1548V1569H971Q1018 1415 1103 1266V1241Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1186" d="M399 -20Q258 -20 176 81T94 367Q94 569 163 745T355 1023T623 1126Q720 1126 790 1081T899 948H909L971 1106H1151L915 0H733L754 176H748Q590 -20 399 -20ZM485 170Q567 170 646 247T776
+455T827 739Q827 827 780 880T657 934Q572 934 497 857T377 648T332 373Q332 271 372 221T485 170ZM598 1266Q695 1374 823 1569H1087V1550Q1033 1484 929 1389T754 1241H598V1266Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1186" d="M399 -20Q258 -20 176 81T94 367Q94 569 163 745T355 1023T623 1126Q720 1126 790 1081T899 948H909L971 1106H1151L915 0H733L754 176H748Q590 -20 399 -20ZM485 170Q567 170 646 247T776
+455T827 739Q827 827 780 880T657 934Q572 934 497 857T377 648T332 373Q332 271 372 221T485 170ZM1320 1241H1168Q1092 1304 1007 1419Q876 1309 771 1241H607V1266Q745 1394 808 1461T898 1569H1146Q1184 1470 1320 1266V1241Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1186" d="M399 -20Q258 -20 176 81T94 367Q94 569 163 745T355 1023T623 1126Q720 1126 790 1081T899 948H909L971 1106H1151L915 0H733L754 176H748Q590 -20 399 -20ZM485 170Q567 170 646 247T776
+455T827 739Q827 827 780 880T657 934Q572 934 497 857T377 648T332 373Q332 271 372 221T485 170ZM870 1241Q825 1241 788 1258T716 1295T651 1333T587 1350Q549 1350 524 1323T481 1239H344Q401 1524 600 1524Q646 1524 685 1507T757 1469T821 1431T880 1413Q920
+1413 945 1439T993 1526H1130Q1064 1241 870 1241Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1186" d="M399 -20Q258 -20 176 81T94 367Q94 569 163 745T355 1023T623 1126Q720 1126 790 1081T899 948H909L971 1106H1151L915 0H733L754 176H748Q590 -20 399 -20ZM485 170Q567 170 646 247T776
+455T827 739Q827 827 780 880T657 934Q572 934 497 857T377 648T332 373Q332 271 372 221T485 170ZM681 1380Q681 1440 716 1478T814 1516Q862 1516 890 1493T919 1421Q919 1356 884 1319T790 1282Q743 1282 712 1305T681 1380ZM1064 1380Q1064 1440 1099 1478T1197
+1516Q1245 1516 1273 1493T1302 1421Q1302 1356 1267 1319T1173 1282Q1126 1282 1095 1305T1064 1380Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1186" d="M399 -20Q258 -20 176 81T94 367Q94 569 163 745T355 1023T623 1126Q720 1126 790 1081T899 948H909L971 1106H1151L915 0H733L754 176H748Q590 -20 399 -20ZM485 170Q567 170 646 247T776 455T827
+739Q827 827 780 880T657 934Q572 934 497 857T377 648T332 373Q332 271 372 221T485 170ZM1244 1466Q1244 1362 1178 1301T1006 1239Q900 1239 837 1300T773 1464Q773 1567 838 1628T1006 1690Q1110 1690 1177 1630T1244 1466ZM1113 1464Q1113 1514 1083 1542T1006
+1571Q961 1571 932 1543T902 1464Q902 1415 928 1388T1006 1360Q1053 1360 1083 1387T1113 1464Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1726" d="M1186 -20Q964 -20 881 117L858 0H707L727 176H719Q634 70 554 25T379 -20Q245 -20 170 83T94 367Q94 568 163 745T351 1024T612 1126Q700 1126 764 1083T872 948H881L944 1106H1092L1067 989Q1118
+1052 1198 1089T1378 1126Q1518 1126 1598 1050T1679 848Q1679 666 1513 564T1038 461H993L989 401Q989 284 1049 224T1225 164Q1350 164 1530 248V59Q1355 -20 1186 -20ZM465 170Q550 170 627 250T753 466T801 733Q801 824 763 879T649 934Q564 934 490 854T374
+643T332 373Q332 268 369 219T465 170ZM1333 946Q1230 946 1145 860T1022 633H1053Q1240 633 1346 686T1452 836Q1452 894 1418 920T1333 946Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="954" d="M506 -20Q310 -20 202 86T94 389Q94 596 167 765T374 1030T676 1126Q840 1126 973 1065L903 881Q781 934 682 934Q532 934 432 781T332 401Q332 290 388 230T543 170Q617 170 681 192T811
+246V51Q671 -20 506 -20ZM621 -264Q621 -370 539 -431T315 -492Q251 -492 197 -477V-342Q244 -356 293 -356Q430 -356 430 -260Q430 -220 395 -199T291 -168L389 0H535L485 -96Q557 -121 589 -163T621 -264Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1075" d="M664 946Q568 946 484 860T362 633H391Q579 633 685 686T791 838Q791 889 759 917T664 946ZM512 -20Q315 -20 205 91T94 401Q94 599 171 769T381 1033T678 1126Q839 1126 928 1054T1018 848Q1018
+666 852 564T377 461H334L332 430V401Q332 290 388 227T557 164Q629 164 700 183T868 248V61Q772 17 692 -1T512 -20ZM1069 1241H925Q860 1304 793 1392T692 1548V1569H937Q984 1415 1069 1266V1241Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1075" d="M664 946Q568 946 484 860T362 633H391Q579 633 685 686T791 838Q791 889 759 917T664 946ZM512 -20Q315 -20 205 91T94 401Q94 599 171 769T381 1033T678 1126Q839 1126 928 1054T1018 848Q1018
+666 852 564T377 461H334L332 430V401Q332 290 388 227T557 164Q629 164 700 183T868 248V61Q772 17 692 -1T512 -20ZM557 1266Q654 1374 782 1569H1046V1550Q992 1484 888 1389T713 1241H557V1266Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1075" d="M664 946Q568 946 484 860T362 633H391Q579 633 685 686T791 838Q791 889 759 917T664 946ZM512 -20Q315 -20 205 91T94 401Q94 599 171 769T381 1033T678 1126Q839 1126 928 1054T1018
+848Q1018 666 852 564T377 461H334L332 430V401Q332 290 388 227T557 164Q629 164 700 183T868 248V61Q772 17 692 -1T512 -20ZM1289 1241H1137Q1061 1304 976 1419Q845 1309 740 1241H576V1266Q714 1394 777 1461T867 1569H1115Q1153 1470 1289 1266V1241Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1075" d="M664 946Q568 946 484 860T362 633H391Q579 633 685 686T791 838Q791 889 759 917T664 946ZM512 -20Q315 -20 205 91T94 401Q94 599 171 769T381 1033T678 1126Q839 1126 928 1054T1018
+848Q1018 666 852 564T377 461H334L332 430V401Q332 290 388 227T557 164Q629 164 700 183T868 248V61Q772 17 692 -1T512 -20ZM644 1380Q644 1440 679 1478T777 1516Q825 1516 853 1493T882 1421Q882 1356 847 1319T753 1282Q706 1282 675 1305T644 1380ZM1027
+1380Q1027 1440 1062 1478T1160 1516Q1208 1516 1236 1493T1265 1421Q1265 1356 1230 1319T1136 1282Q1089 1282 1058 1305T1027 1380Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="563" d="M283 0H47L283 1106H518L283 0ZM536 1241H392Q327 1304 260 1392T159 1548V1569H404Q451 1415 536 1266V1241Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="563" d="M283 0H47L283 1106H518L283 0ZM308 1266Q405 1374 533 1569H797V1550Q743 1484 639 1389T464 1241H308V1266Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="563" d="M283 0H47L283 1106H518L283 0ZM777 1241H625Q549 1304 464 1419Q333 1309 228 1241H64V1266Q202 1394 265 1461T355 1569H603Q641 1470 777 1266V1241Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="563" d="M283 0H47L283 1106H518L283 0ZM142 1380Q142 1440 177 1478T275 1516Q323 1516 351 1493T380 1421Q380 1356 345 1319T251 1282Q204 1282 173 1305T142 1380ZM525 1380Q525 1440 560 1478T658
+1516Q706 1516 734 1493T763 1421Q763 1356 728 1319T634 1282Q587 1282 556 1305T525 1380Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" d="M647 1325Q603 1366 512 1421L618 1573Q747 1501 827 1427L1077 1565L1147 1438L930 1317Q1085 1112 1085 805Q1085 550 1012 361T808 76T496 -20Q299 -20 190 87T80 389Q80 551 145 688T330 903T596 981Q692 981
+764 943T877 834H883Q873 1077 750 1217L500 1075L428 1204L647 1325ZM508 162Q600 162 669 221T778 380T817 586Q817 683 765 741T621 799Q530 799 461 743T354 590T317 377Q317 273 366 218T508 162Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1208" d="M702 0L844 672Q862 762 862 803Q862 934 733 934Q661 934 591 877T465 713T381 469L283 0H47L283 1106H467L446 901H455Q538 1019 626 1072T817 1126Q951 1126 1024 1050T1098 834Q1098 765
+1075 653L938 0H702ZM889 1241Q844 1241 807 1258T735 1295T670 1333T606 1350Q568 1350 543 1323T500 1239H363Q420 1524 619 1524Q665 1524 704 1507T776 1469T840 1431T899 1413Q939 1413 964 1439T1012 1526H1149Q1083 1241 889 1241Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" d="M842 702Q842 809 793 869T653 930Q560 930 487 859T373 665T332 403Q332 292 381 233T528 174Q618 174 690 242T802 432T842 702ZM1079 692Q1079 490 1006 325T806 71T512 -18Q320 -18 207 96T94 408Q94 607 165
+773T366 1031T664 1124Q859 1124 969 1008T1079 692ZM1077 1241H933Q868 1304 801 1392T700 1548V1569H945Q992 1415 1077 1266V1241Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" d="M842 702Q842 809 793 869T653 930Q560 930 487 859T373 665T332 403Q332 292 381 233T528 174Q618 174 690 242T802 432T842 702ZM1079 692Q1079 490 1006 325T806 71T512 -18Q320 -18 207 96T94 408Q94 607 165
+773T366 1031T664 1124Q859 1124 969 1008T1079 692ZM580 1266Q677 1374 805 1569H1069V1550Q1015 1484 911 1389T736 1241H580V1266Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" d="M842 702Q842 809 793 869T653 930Q560 930 487 859T373 665T332 403Q332 292 381 233T528 174Q618 174 690 242T802 432T842 702ZM1079 692Q1079 490 1006 325T806 71T512 -18Q320 -18 207 96T94 408Q94
+607 165 773T366 1031T664 1124Q859 1124 969 1008T1079 692ZM1310 1241H1158Q1082 1304 997 1419Q866 1309 761 1241H597V1266Q735 1394 798 1461T888 1569H1136Q1174 1470 1310 1266V1241Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" d="M842 702Q842 809 793 869T653 930Q560 930 487 859T373 665T332 403Q332 292 381 233T528 174Q618 174 690 242T802 432T842 702ZM1079 692Q1079 490 1006 325T806 71T512 -18Q320 -18 207 96T94 408Q94 607 165
+773T366 1031T664 1124Q859 1124 969 1008T1079 692ZM854 1241Q809 1241 772 1258T700 1295T635 1333T571 1350Q533 1350 508 1323T465 1239H328Q385 1524 584 1524Q630 1524 669 1507T741 1469T805 1431T864 1413Q904 1413 929 1439T977 1526H1114Q1048 1241 854
+1241Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" d="M842 702Q842 809 793 869T653 930Q560 930 487 859T373 665T332 403Q332 292 381 233T528 174Q618 174 690 242T802 432T842 702ZM1079 692Q1079 490 1006 325T806 71T512 -18Q320 -18 207 96T94 408Q94 607
+165 773T366 1031T664 1124Q859 1124 969 1008T1079 692ZM665 1380Q665 1440 700 1478T798 1516Q846 1516 874 1493T903 1421Q903 1356 868 1319T774 1282Q727 1282 696 1305T665 1380ZM1048 1380Q1048 1440 1083 1478T1181 1516Q1229 1516 1257 1493T1286 1421Q1286
+1356 1251 1319T1157 1282Q1110 1282 1079 1305T1048 1380Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1128" d="M117 631V811H1053V631H117ZM459 373Q459 437 490 472T584 508Q646 508 678 472T711 373Q711 309 677 273T584 236Q526 236 493 271T459 373ZM459 1071Q459 1135 490 1170T584 1206Q646 1206
+678 1170T711 1071Q711 1007 677 971T584 934Q526 934 493 969T459 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" d="M1077 700Q1077 492 1003 324T803 69T514 -18Q377 -18 279 41L174 -90L51 6L166 147Q96 251 96 408Q96 608 166 773T366 1031T664 1124Q800 1124 903 1063L989 1171L1114 1075L1014 958Q1077 858 1077 700ZM653
+936Q512 936 418 791T324 426Q324 387 332 352L774 901Q729 936 653 936ZM528 168Q617 168 691 234T807 418T850 676Q850 721 844 743L408 201Q449 168 528 168Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1208" d="M506 1106L377 496Q346 355 346 303Q346 170 473 170Q545 170 616 227T742 389T827 637L926 1106H1159L926 0H741L762 205H754Q672 89 583 35T391 -20Q257 -20 184 56T111 274Q111 337 123
+398T147 522L270 1106H506ZM1079 1241H935Q870 1304 803 1392T702 1548V1569H947Q994 1415 1079 1266V1241Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1208" d="M506 1106L377 496Q346 355 346 303Q346 170 473 170Q545 170 616 227T742 389T827 637L926 1106H1159L926 0H741L762 205H754Q672 89 583 35T391 -20Q257 -20 184 56T111 274Q111 337 123
+398T147 522L270 1106H506ZM623 1266Q720 1374 848 1569H1112V1550Q1058 1484 954 1389T779 1241H623V1266Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1208" d="M506 1106L377 496Q346 355 346 303Q346 170 473 170Q545 170 616 227T742 389T827 637L926 1106H1159L926 0H741L762 205H754Q672 89 583 35T391 -20Q257 -20 184 56T111 274Q111 337
+123 398T147 522L270 1106H506ZM1083 1241H931Q855 1304 770 1419Q639 1309 534 1241H370V1266Q508 1394 571 1461T661 1569H909Q947 1470 1083 1266V1241Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1208" d="M506 1106L377 496Q346 355 346 303Q346 170 473 170Q545 170 616 227T742 389T827 637L926 1106H1159L926 0H741L762 205H754Q672 89 583 35T391 -20Q257 -20 184 56T111 274Q111 337 123
+398T147 522L270 1106H506ZM432 1380Q432 1440 467 1478T565 1516Q613 1516 641 1493T670 1421Q670 1356 635 1319T541 1282Q494 1282 463 1305T432 1380ZM815 1380Q815 1440 850 1478T948 1516Q996 1516 1024 1493T1053 1421Q1053 1356 1018 1319T924 1282Q877
+1282 846 1305T815 1380Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1004" d="M100 1106H332L395 575Q404 513 411 401T418 219H424Q510 434 559 532L852 1106H1106L418 -174Q328 -339 222 -415T-27 -492Q-103 -492 -170 -473V-285Q-95 -301 -45 -301Q29 -301 89 -258T213
+-102L264 -10L100 1106ZM757 1266Q854 1374 982 1569H1246V1550Q1192 1484 1088 1389T913 1241H757V1266Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1200" d="M586 -20Q492 -20 421 25T307 156H299Q292 65 274 -29L178 -492H-55L377 1556H612Q564 1333 539 1217T463 926H471Q626 1126 799 1126Q943 1126 1023 1024T1104 737Q1104 533 1036 356T852 79T586
+-20ZM707 934Q623 934 544 853T417 640T369 373Q369 275 415 223T547 170Q633 170 706 247T823 456T866 733Q866 833 825 883T707 934Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1004" d="M100 1106H332L395 575Q404 513 411 401T418 219H424Q510 434 559 532L852 1106H1106L418 -174Q328 -339 222 -415T-27 -492Q-103 -492 -170 -473V-285Q-95 -301 -45 -301Q29 -301 89 -258T213
+-102L264 -10L100 1106ZM579 1380Q579 1440 614 1478T712 1516Q760 1516 788 1493T817 1421Q817 1356 782 1319T688 1282Q641 1282 610 1305T579 1380ZM962 1380Q962 1440 997 1478T1095 1516Q1143 1516 1171 1493T1200 1421Q1200 1356 1165 1319T1071 1282Q1024
+1282 993 1305T962 1380Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="983" d="M47 453L90 647H928L885 453H47Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="1966" d="M47 453L90 647H1911L1868 453H47Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="393" d="M125 961L119 983Q153 1059 225 1192T385 1462H561Q439 1176 362 961H125Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="393" d="M551 1462L559 1440Q522 1357 449 1223T293 961H115Q158 1056 221 1216T313 1462H551Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="530" d="M334 238L342 215Q234 -18 76 -264H-102Q3 -26 98 238H334Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="803" d="M535 961L526 983Q610 1173 793 1462H969Q847 1176 770 961H535ZM125 961L119 983Q153 1059 225 1192T385 1462H561Q439 1176 362 961H125Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="803" d="M551 1462L559 1440Q522 1357 449 1223T293 961H115Q158 1056 221 1216T313 1462H551ZM958 1462L967 1440Q869 1220 698 961H522Q573 1075 631 1222T721 1462H958Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="938" d="M334 238L342 215Q234 -18 76 -264H-102Q3 -26 98 238H334ZM741 238L750 215Q658 9 483 -264H307Q427 17 506 238H741Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="756" d="M152 684Q152 840 235 936T459 1032Q559 1032 617 978T676 809Q676 653 594 557T367 461Q265 461 209 518T152 684Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="621" d="M80 573L475 995L610 877L322 543L475 176L297 100L80 549V573Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="621" d="M541 514L145 92L10 211L299 545L145 911L324 987L541 539V514Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.ttf b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.ttf
new file mode 100644
index 0000000..59b6d16
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.ttf differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.woff b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.woff
new file mode 100644
index 0000000..5431477
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.woff differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.woff2 b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.woff2
new file mode 100644
index 0000000..2d20d77
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.woff2 differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.eot b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.eot
new file mode 100644
index 0000000..5cf668d
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.eot differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.svg b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.svg
new file mode 100644
index 0000000..81fdf89
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.svg
@@ -0,0 +1,19030 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1250" ><font-face
+    font-family="Open Sans Semibold"
+    units-per-em="2048"
+    panose-1="2 11 7 6 3 8 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="565" d="M371 444H197L145 1462H422L371 444ZM133 125Q133 199 172 237T283 276Q354 276 392 236T430 125Q430 54 392 13T283 -29Q212 -29 173 11T133 125Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="893" d="M365 1462L324 934H174L133 1462H365ZM760 1462L719 934H569L528 1462H760Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M989 870L934 586H1204V418H901L821 0H643L723 418H475L395 0H221L297 418H47V586H330L387 870H123V1038H416L496 1460H676L596 1038H848L928 1460H1102L1022 1038H1274V870H989ZM506 586H756L813
+870H563L506 586Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1169" d="M1063 453Q1063 308 957 214T651 98V-119H518V92Q270 96 111 168V379Q197 337 312 309T518 279V653L434 684Q270 747 195 834T119 1051Q119 1189 226 1278T518 1386V1554H651V1389Q854 1382 1036
+1307L963 1124Q806 1186 651 1198V834L727 805Q917 732 990 651T1063 453ZM827 438Q827 496 787 533T651 606V287Q827 314 827 438ZM354 1053Q354 996 389 958T518 883V1194Q438 1182 396 1145T354 1053Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1765" d="M279 1024Q279 875 308 802T403 729Q535 729 535 1024Q535 1319 403 1319Q337 1319 308 1246T279 1024ZM729 1026Q729 796 647 681T403 565Q251 565 168 684T84 1026Q84 1483 403 1483Q560 1483
+644 1365T729 1026ZM1231 440Q1231 291 1260 217T1356 143Q1487 143 1487 440Q1487 733 1356 733Q1290 733 1261 661T1231 440ZM1681 440Q1681 210 1598 95T1356 -20Q1204 -20 1120 98T1036 440Q1036 897 1356 897Q1510 897 1595 779T1681 440ZM1384 1462L573 0H379L1190
+1462H1384Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1516" d="M451 1147Q451 1084 484 1028T578 909Q691 973 736 1028T782 1153Q782 1218 739 1257T623 1296Q544 1296 498 1256T451 1147ZM600 182Q783 182 913 289L530 666Q424 598 384 539T344 403Q344
+305 413 244T600 182ZM96 387Q96 518 160 615T391 809Q296 920 262 996T227 1155Q227 1307 335 1395T627 1483Q804 1483 905 1398T1006 1167Q1006 1053 939 960T713 774L1059 440Q1140 547 1194 754H1436Q1366 470 1212 291L1513 0H1210L1061 145Q959 63 844 22T588
+-20Q358 -20 227 89T96 387Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="498" d="M365 1462L324 934H174L133 1462H365Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="649" d="M82 561Q82 826 159 1057T383 1462H588Q449 1274 375 1041T301 563Q301 319 375 90T586 -324H383Q236 -154 159 73T82 561Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="649" d="M567 561Q567 298 490 71T266 -324H63Q201 -137 274 91T348 563Q348 808 274 1040T61 1462H266Q413 1287 490 1056T567 561Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1122" d="M672 1556L631 1174L1016 1282L1044 1065L684 1036L920 725L721 618L555 956L406 618L201 725L432 1036L74 1065L109 1282L485 1174L444 1556H672Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1169" d="M494 633H96V811H494V1219H674V811H1073V633H674V227H494V633Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="547" d="M412 215Q364 29 236 -264H63Q132 6 166 238H397L412 215Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="659" d="M72 449V649H586V449H72Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="563" d="M133 125Q133 198 171 237T281 276Q354 276 392 236T430 125Q430 54 392 13T281 -29Q209 -29 171 12T133 125Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="799" d="M782 1462L238 0H16L561 1462H782Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1169" d="M1081 731Q1081 350 959 165T584 -20Q340 -20 214 171T88 731Q88 1118 210 1301T584 1485Q829 1485 955 1293T1081 731ZM326 731Q326 432 387 304T584 176Q719 176 781 306T844 731Q844 1025 782 1156T584
+1288Q449 1288 388 1159T326 731Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1169" d="M780 0H545V944Q545 1113 553 1212Q530 1188 497 1159T272 975L154 1124L584 1462H780V0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1169" d="M1081 0H90V178L467 557Q634 728 688 799T768 934T793 1069Q793 1168 734 1225T569 1282Q485 1282 407 1251T225 1139L98 1294Q220 1397 335 1440T580 1483Q784 1483 907 1377T1030 1090Q1030 991 995
+902T886 719T641 463L387 217V207H1081V0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1169" d="M1026 1126Q1026 987 945 895T717 770V762Q893 740 981 653T1069 420Q1069 209 920 95T496 -20Q253 -20 86 59V268Q179 222 283 197T483 172Q653 172 737 235T821 430Q821 547 728 602T436 657H309V848H438Q788
+848 788 1090Q788 1184 727 1235T547 1286Q464 1286 387 1263T205 1171L90 1335Q291 1483 557 1483Q778 1483 902 1388T1026 1126Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1169" d="M1133 319H936V0H707V319H39V500L707 1466H936V514H1133V319ZM707 514V881Q707 1077 717 1202H709Q681 1136 621 1042L258 514H707Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1169" d="M586 913Q807 913 936 796T1065 477Q1065 243 919 112T502 -20Q257 -20 117 59V272Q198 226 303 201T498 176Q657 176 740 247T823 455Q823 717 489 717Q442 717 373 708T252 686L147 748L203 1462H963V1253H410L377
+891Q412 897 462 905T586 913Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1169" d="M94 623Q94 1481 793 1481Q903 1481 979 1464V1268Q903 1290 803 1290Q568 1290 450 1164T322 760H334Q381 841 466 885T666 930Q865 930 976 808T1087 477Q1087 247 959 114T608 -20Q451 -20 335 55T157
+275T94 623ZM604 174Q725 174 790 252T856 475Q856 601 795 673T610 745Q534 745 470 713T369 624T332 508Q332 367 408 271T604 174Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1169" d="M256 0L834 1253H74V1460H1085V1296L510 0H256Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1169" d="M584 1481Q792 1481 913 1386T1034 1130Q1034 905 764 772Q936 686 1008 591T1081 379Q1081 198 948 89T588 -20Q350 -20 219 82T88 371Q88 493 156 590T381 764Q247 844 190 933T133 1133Q133 1292
+258 1386T584 1481ZM313 379Q313 275 386 218T584 160Q713 160 784 219T856 381Q856 462 790 529T590 653L561 666Q429 608 371 539T313 379ZM582 1300Q482 1300 421 1251T360 1116Q360 1064 382 1023T446 949T588 868Q708 921 757 979T807 1116Q807 1201 746 1250T582
+1300Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1169" d="M1079 838Q1079 406 905 193T381 -20Q248 -20 190 -4V193Q279 168 369 168Q607 168 724 296T852 698H840Q781 608 698 568T502 528Q308 528 197 649T86 981Q86 1210 214 1345T565 1481Q721 1481 837
+1405T1016 1185T1079 838ZM569 1286Q447 1286 382 1207T317 983Q317 858 377 787T561 715Q680 715 761 786T842 952Q842 1041 808 1118T711 1241T569 1286Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="563" d="M133 125Q133 198 171 237T281 276Q354 276 392 236T430 125Q430 54 392 13T281 -29Q209 -29 171 12T133 125ZM133 979Q133 1130 281 1130Q356 1130 393 1090T430 979Q430 908 392 867T281 825Q209
+825 171 866T133 979Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="569" d="M397 238L412 215Q364 29 236 -264H63Q132 6 166 238H397ZM131 979Q131 1130 279 1130Q354 1130 391 1090T428 979Q428 908 390 867T279 825Q207 825 169 866T131 979Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1169" d="M1073 221L96 651V772L1073 1260V1065L340 721L1073 418V221Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1169" d="M102 831V1010H1065V831H102ZM102 432V610H1065V432H102Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1169" d="M96 418L829 721L96 1065V1260L1073 772V651L96 221V418Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="928" d="M283 444V508Q283 618 323 691T463 842Q582 936 616 988T651 1112Q651 1196 595 1241T434 1286Q339 1286 258 1259T100 1194L16 1370Q219 1483 451 1483Q647 1483 762 1387T877 1122Q877 1047 855
+989T789 877T635 739Q542 666 511 618T479 489V444H283ZM242 125Q242 276 389 276Q461 276 499 237T537 125Q537 54 499 13T389 -29Q318 -29 280 11T242 125Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1839" d="M1726 739Q1726 596 1681 478T1555 293T1366 227Q1287 227 1229 269T1151 383H1139Q1090 305 1018 266T856 227Q693 227 600 332T506 616Q506 822 630 950T963 1079Q1039 1079 1131 1066T1296 1028L1274
+563V539Q1274 379 1378 379Q1457 379 1503 481T1550 741Q1550 912 1480 1041T1281 1241T985 1311Q772 1311 615 1223T374 972T291 592Q291 302 446 146T891 -10Q1112 -10 1352 80V-84Q1142 -170 895 -170Q525 -170 318 29T111 586Q111 847 223 1050T533 1362T983
+1470Q1200 1470 1369 1380T1632 1124T1726 739ZM698 612Q698 379 881 379Q1074 379 1092 672L1104 911Q1041 928 969 928Q841 928 770 843T698 612Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1354" d="M1100 0L954 406H395L252 0H0L547 1468H807L1354 0H1100ZM891 612L754 1010Q739 1050 713 1136T676 1262Q649 1139 597 993L465 612H891Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1352" d="M193 1462H627Q929 1462 1063 1374T1198 1096Q1198 968 1132 883T942 776V766Q1096 737 1168 652T1241 420Q1241 223 1104 112T721 0H193V1462ZM432 858H662Q812 858 881 905T950 1067Q950 1170 876 1216T639
+1262H432V858ZM432 664V201H686Q836 201 912 258T989 440Q989 554 911 609T674 664H432Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1298" d="M815 1278Q609 1278 491 1132T373 729Q373 460 486 322T815 184Q908 184 995 202T1176 250V45Q1004 -20 786 -20Q465 -20 293 174T121 731Q121 959 204 1130T446 1392T817 1483Q1041 1483 1231 1389L1145
+1190Q1071 1225 989 1251T815 1278Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1503" d="M1382 745Q1382 383 1181 192T602 0H193V1462H645Q994 1462 1188 1274T1382 745ZM1130 737Q1130 1262 639 1262H432V201H602Q1130 201 1130 737Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1143" d="M1020 0H193V1462H1020V1260H432V862H983V662H432V203H1020V0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1090" d="M430 0H193V1462H1018V1260H430V803H981V600H430V0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1487" d="M791 793H1329V59Q1197 16 1076 -2T813 -20Q481 -20 301 176T121 731Q121 1084 324 1283T883 1483Q1112 1483 1317 1395L1233 1196Q1055 1278 877 1278Q643 1278 507 1131T371 729Q371 461 493 322T846
+182Q962 182 1094 211V588H791V793Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1538" d="M1346 0H1106V659H432V0H193V1462H432V864H1106V1462H1346V0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="625" d="M193 0V1462H432V0H193Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="612" d="M8 -408Q-90 -408 -156 -383V-182Q-72 -203 -10 -203Q186 -203 186 45V1462H426V53Q426 -171 320 -289T8 -408Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1309" d="M1309 0H1032L573 662L432 547V0H193V1462H432V764Q530 884 627 995L1022 1462H1294Q911 1012 745 821L1309 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1110" d="M193 0V1462H432V205H1051V0H193Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1890" d="M825 0L401 1221H393Q410 949 410 711V0H193V1462H530L936 299H942L1360 1462H1698V0H1468V723Q1468 832 1473 1007T1483 1219H1475L1036 0H825Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1604" d="M1411 0H1118L399 1165H391L396 1100Q410 914 410 760V0H193V1462H483L1200 303H1206Q1204 326 1198 470T1192 696V1462H1411V0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1612" d="M1491 733Q1491 376 1313 178T807 -20Q476 -20 299 176T121 735Q121 1097 299 1291T809 1485Q1135 1485 1313 1288T1491 733ZM375 733Q375 463 484 324T807 184Q1020 184 1128 322T1237 733Q1237 1002
+1130 1141T809 1280Q594 1280 485 1141T375 733Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1260" d="M1161 1020Q1161 791 1011 669T584 547H432V0H193V1462H614Q888 1462 1024 1350T1161 1020ZM432 748H559Q743 748 829 812T915 1012Q915 1138 838 1200T598 1262H432V748Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1612" d="M1491 733Q1491 467 1390 285T1094 29L1444 -348H1122L846 -20H807Q476 -20 299 176T121 735Q121 1097 299 1291T809 1485Q1135 1485 1313 1288T1491 733ZM375 733Q375 463 484 324T807 184Q1020 184
+1128 322T1237 733Q1237 1002 1130 1141T809 1280Q594 1280 485 1141T375 733Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1309" d="M432 782H598Q765 782 840 844T915 1028Q915 1152 834 1206T590 1260H432V782ZM432 584V0H193V1462H606Q889 1462 1025 1356T1161 1036Q1161 763 877 647L1290 0H1018L668 584H432Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1126" d="M1036 397Q1036 202 895 91T506 -20Q258 -20 100 57V283Q200 236 312 209T522 182Q664 182 731 236T799 381Q799 463 737 520T481 655Q281 736 199 840T117 1090Q117 1273 247 1378T596 1483Q806 1483
+1014 1391L938 1196Q743 1278 590 1278Q474 1278 414 1228T354 1094Q354 1037 378 997T457 920T655 825Q816 758 891 700T1001 569T1036 397Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1159" d="M698 0H459V1257H29V1462H1128V1257H698V0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1520" d="M1339 1462V516Q1339 354 1270 233T1069 46T754 -20Q482 -20 331 124T180 520V1462H420V537Q420 356 504 270T762 184Q1100 184 1100 539V1462H1339Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1274" d="M1026 1462H1274L762 0H510L0 1462H246L551 553Q575 488 602 386T637 233Q650 309 677 409T721 557L1026 1462Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1937" d="M1542 0H1282L1034 872Q1018 929 994 1036T965 1186Q955 1122 933 1020T895 868L653 0H393L204 732L12 1462H256L465 610Q514 405 535 248Q546 333 568 438T608 608L846 1462H1083L1327 604Q1362 485
+1401 248Q1416 391 1473 612L1681 1462H1923L1542 0Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1274" d="M1270 0H995L629 598L260 0H4L489 758L35 1462H301L639 909L977 1462H1235L778 754L1270 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1212" d="M606 795L952 1462H1212L725 567V0H485V559L0 1462H260L606 795Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1178" d="M1112 0H66V166L803 1257H86V1462H1092V1294L352 205H1112V0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="676" d="M625 -324H154V1462H625V1286H369V-147H625V-324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="799" d="M238 1462L782 0H561L16 1462H238Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="676" d="M51 -147H307V1286H51V1462H520V-324H51V-147Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1100" d="M29 535L465 1470H586L1071 535H877L528 1229L221 535H29Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="879" d="M883 -319H-4V-184H883V-319Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1212" d="M690 1241Q621 1293 516 1391T362 1548V1569H635Q673 1499 738 1408T848 1266V1241H690Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1188" d="M860 0L813 154H805Q725 53 644 17T436 -20Q273 -20 182 68T90 317Q90 488 217 575T604 670L795 676V735Q795 841 746 893T592 946Q507 946 429 921T279 862L203 1030Q293 1077 400 1101T602 1126Q813
+1126 920 1034T1028 745V0H860ZM510 160Q638 160 715 231T793 432V528L651 522Q485 516 410 467T334 315Q334 241 378 201T510 160Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1276" d="M733 1126Q940 1126 1055 976T1171 555Q1171 283 1054 132T729 -20Q519 -20 403 131H387L344 0H168V1556H403V1186Q403 1145 399 1064T393 961H403Q515 1126 733 1126ZM672 934Q530 934 468 851T403 571V555Q403
+353 467 263T676 172Q801 172 865 271T930 557Q930 934 672 934Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="1014" d="M614 -20Q363 -20 233 126T102 547Q102 826 238 976T633 1126Q808 1126 948 1061L877 872Q728 930 631 930Q344 930 344 549Q344 363 415 270T625 176Q782 176 922 254V49Q859 12 788 -4T614 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1276" d="M541 -20Q334 -20 218 130T102 551Q102 823 219 974T545 1126Q763 1126 877 965H889Q872 1084 872 1153V1556H1108V0H924L883 145H872Q759 -20 541 -20ZM604 170Q749 170 815 251T883 516V549Q883 758
+815 846T602 934Q478 934 411 834T344 547Q344 363 409 267T604 170Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1180" d="M651 -20Q393 -20 248 130T102 545Q102 816 237 971T608 1126Q827 1126 954 993T1081 627V500H344Q349 339 431 253T662 166Q760 166 844 184T1026 246V55Q940 14 852 -3T651 -20ZM608 948Q496 948 429
+877T348 670H850Q848 807 784 877T608 948Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="743" d="M723 928H453V0H217V928H35V1038L217 1110V1182Q217 1378 309 1472T590 1567Q714 1567 834 1526L772 1348Q685 1376 606 1376Q526 1376 490 1327T453 1178V1106H723V928Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1139" d="M1102 1106V977L913 942Q939 907 956 856T973 748Q973 577 855 479T530 381Q477 381 434 389Q358 342 358 279Q358 241 393 222T524 203H717Q900 203 995 125T1090 -100Q1090 -288 935 -390T487 -492Q261
+-492 142 -412T23 -184Q23 -82 87 -13T268 84Q221 104 191 148T160 242Q160 304 195 347T299 432Q213 469 160 552T106 748Q106 928 219 1027T543 1126Q590 1126 641 1120T719 1106H1102ZM233 -172Q233 -248 301 -289T494 -330Q686 -330 780 -275T874 -129Q874
+-57 823 -27T631 4H453Q352 4 293 -43T233 -172ZM334 748Q334 644 387 588T541 532Q745 532 745 750Q745 858 695 916T541 975Q439 975 387 917T334 748Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1300" d="M1141 0H905V680Q905 808 854 871T690 934Q542 934 473 846T403 549V0H168V1556H403V1161Q403 1066 391 958H406Q454 1038 539 1082T739 1126Q1141 1126 1141 721V0Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="571" d="M403 0H168V1106H403V0ZM154 1399Q154 1462 188 1496T287 1530Q349 1530 383 1496T418 1399Q418 1339 384 1305T287 1270Q223 1270 189 1304T154 1399Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="571" d="M55 -492Q-51 -492 -121 -467V-281Q-53 -299 18 -299Q168 -299 168 -129V1106H403V-145Q403 -316 314 -404T55 -492ZM154 1399Q154 1462 188 1496T287 1530Q349 1530 383 1496T418 1399Q418 1339 384 1305T287
+1270Q223 1270 189 1304T154 1399Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1171" d="M395 584L528 750L862 1106H1133L688 631L1161 0H885L530 485L401 379V0H168V1556H401V797L389 584H395Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="571" d="M403 0H168V1556H403V0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1958" d="M1100 0H864V682Q864 809 816 871T666 934Q530 934 467 846T403 551V0H168V1106H352L385 961H397Q443 1040 530 1083T723 1126Q978 1126 1061 952H1077Q1126 1034 1215 1080T1419 1126Q1617 1126 1707
+1026T1798 721V0H1563V682Q1563 809 1515 871T1364 934Q1227 934 1164 849T1100 586V0Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1300" d="M1141 0H905V680Q905 808 854 871T690 934Q541 934 472 846T403 551V0H168V1106H352L385 961H397Q447 1040 539 1083T743 1126Q1141 1126 1141 721V0Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1251" d="M1149 555Q1149 284 1010 132T623 -20Q468 -20 349 50T166 251T102 555Q102 824 240 975T629 1126Q869 1126 1009 972T1149 555ZM344 555Q344 172 627 172Q907 172 907 555Q907 934 625 934Q477 934 411
+836T344 555Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1276" d="M729 -20Q519 -20 403 131H389Q403 -9 403 -39V-492H168V1106H358Q366 1075 391 958H403Q513 1126 733 1126Q940 1126 1055 976T1171 555Q1171 284 1054 132T729 -20ZM672 934Q532 934 468 852T403 590V555Q403
+353 467 263T676 172Q798 172 864 272T930 557Q930 743 865 838T672 934Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1276" d="M606 168Q754 168 818 253T883 512V549Q883 754 817 844T602 934Q476 934 410 834T344 547Q344 168 606 168ZM539 -20Q334 -20 218 130T102 551Q102 821 220 973T545 1126Q649 1126 731 1088T879 961H887L913
+1106H1108V-492H872V-23Q872 21 876 70T883 145H870Q766 -20 539 -20Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="883" d="M729 1126Q800 1126 846 1116L823 897Q773 909 719 909Q578 909 491 817T403 578V0H168V1106H352L383 911H395Q450 1010 538 1068T729 1126Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="997" d="M911 315Q911 153 793 67T455 -20Q234 -20 100 47V250Q295 160 463 160Q680 160 680 291Q680 333 656 361T577 419T424 487Q233 561 166 635T98 827Q98 969 212 1047T524 1126Q719 1126 893 1047L817 870Q638
+944 516 944Q330 944 330 838Q330 786 378 750T590 651Q727 598 789 554T881 453T911 315Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="805" d="M580 170Q666 170 752 197V20Q713 3 652 -8T524 -20Q190 -20 190 332V928H39V1032L201 1118L281 1352H426V1106H741V928H426V336Q426 251 468 211T580 170Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1300" d="M948 0L915 145H903Q854 68 764 24T557 -20Q356 -20 257 80T158 383V1106H395V424Q395 297 447 234T610 170Q758 170 827 258T897 555V1106H1133V0H948Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="1096" d="M420 0L0 1106H248L473 463Q531 301 543 201H551Q560 273 621 463L846 1106H1096L674 0H420Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1673" d="M1075 0L932 516Q906 598 838 897H829Q771 627 737 514L590 0H330L20 1106H260L401 561Q449 359 469 215H475Q485 288 505 382T541 524L709 1106H967L1130 524Q1145 475 1167 374T1194 217H1202Q1217
+340 1272 561L1415 1106H1651L1339 0H1075Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1128" d="M414 565L43 1106H311L563 719L817 1106H1083L711 565L1102 0H836L563 414L291 0H25L414 565Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1098" d="M0 1106H256L481 479Q532 345 549 227H557Q566 282 590 360T844 1106H1098L625 -147Q496 -492 195 -492Q117 -492 43 -475V-289Q96 -301 164 -301Q334 -301 403 -104L444 0L0 1106Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="979" d="M907 0H68V145L627 926H102V1106H891V942L344 180H907V0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="791" d="M311 287Q311 473 45 473V664Q180 664 245 709T311 848V1159Q311 1315 419 1388T745 1462V1280Q631 1275 580 1234T528 1110V813Q528 614 299 575V563Q528 527 528 326V27Q528 -55 579 -97T745
+-141V-324Q514 -322 413 -246T311 2V287Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M473 1552H653V-481H473V1552Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="760" d="M463 -20Q463 -176 364 -249T45 -324V-141Q140 -140 193 -103T246 27V289Q246 410 299 476T475 563V575Q246 614 246 813V1110Q246 1192 201 1233T45 1280V1462Q268 1462 365 1386T463 1135V848Q463
+748 526 706T715 664V473Q592 473 528 431T463 287V-20Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1169" d="M330 692Q280 692 219 662T96 571V762Q195 870 346 870Q412 870 471 857T618 807Q749 752 838 752Q890 752 952 783T1073 872V682Q968 571 823 571Q758 571 696 586T549 637Q422 692 330 692Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="565" d="M193 645H367L418 -371H141L193 645ZM430 965Q430 891 393 852T281 813Q209 813 171 852T133 965Q133 1034 171 1076T281 1118Q353 1118 391 1078T430 965Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1169" d="M987 238Q868 179 729 174V-20H573V180Q366 211 266 351T166 741Q166 995 266 1138T573 1313V1483H731V1321Q883 1316 1014 1255L944 1067Q798 1126 694 1126Q548 1126 478 1031T408 743Q408
+549 480 460T690 371Q765 371 832 386T987 438V238Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1169" d="M690 1481Q884 1481 1065 1399L989 1217Q827 1288 705 1288Q500 1288 500 1069V825H897V653H500V471Q500 380 467 316T354 207H1110V0H72V195Q170 225 217 291T264 469V653H76V825H264V1081Q264
+1269 377 1375T690 1481Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1169" d="M186 723Q186 832 250 936L117 1069L238 1188L369 1059Q469 1122 584 1122Q699 1122 797 1057L930 1188L1051 1071L920 938Q983 838 983 723Q983 604 920 506L1049 377L930 258L797 387Q698
+326 584 326Q458 326 369 387L238 260L119 379L250 508Q186 607 186 723ZM354 723Q354 625 422 559T584 492Q681 492 749 558T817 723Q817 820 749 888T584 956Q491 956 423 888T354 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1169" d="M584 797L905 1462H1149L750 702H977V551H696V397H977V244H696V0H471V244H188V397H471V551H188V702H412L18 1462H264L584 797Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M473 1552H653V758H473V1552ZM473 315H653V-481H473V315Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="1026" d="M129 807Q129 887 167 952T279 1061Q133 1144 133 1296Q133 1425 242 1498T537 1571Q628 1571 711 1554T893 1495L825 1333Q709 1383 649 1396T528 1409Q334 1409 334 1300Q334 1246 389 1207T580
+1116Q755 1048 830 970T905 782Q905 605 766 516Q905 436 905 293Q905 151 787 69T461 -14Q249 -14 115 57V236Q192 196 288 171T465 145Q700 145 700 276Q700 319 679 346T608 400T461 465Q320 520 255 566T160 671T129 807ZM313 827Q313 782 337 747T415 678T610
+588Q719 653 719 756Q719 831 657 882T436 987Q382 971 348 926T313 827Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1212" d="M293 1399Q293 1461 326 1488T408 1516Q461 1516 492 1485T524 1399Q524 1346 492 1314T408 1282Q360 1282 327 1311T293 1399ZM686 1399Q686 1461 719 1488T801 1516Q854 1516 886 1485T918
+1399Q918 1345 885 1314T801 1282Q753 1282 720 1311T686 1399Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M893 1034Q782 1034 722 954T662 731Q662 584 716 505T893 426Q948 426 1011 441T1120 477V319Q1005 268 885 268Q688 268 580 388T471 731Q471 945 581 1068T887 1192Q1025 1192 1161 1122L1096
+979Q990 1034 893 1034ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM223 731Q223 561 307 416T538 186T852 102Q1022 102 1168 187T1397 417T1481
+731Q1481 899 1397 1045T1166 1276T852 1360Q684 1360 540 1277T309 1048T223 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="754" d="M547 782L518 879Q472 824 413 797T283 770Q170 770 114 822T57 981Q57 1085 141 1140T393 1202L500 1206Q500 1278 466 1314T362 1350Q272 1350 152 1294L98 1409Q242 1479 383 1479Q521
+1479 590 1417T659 1229V782H547ZM401 1098Q330 1096 276 1064T221 983Q221 895 317 895Q408 895 454 936T500 1059V1102L401 1098Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1139" d="M82 561L438 993L606 899L324 549L606 201L438 104L82 535V561ZM532 561L889 993L1057 899L774 549L1057 201L889 104L532 535V561Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1169" d="M1073 256H895V633H96V811H1073V256Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="659" d="M72 449V649H586V449H72Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M748 770H817Q891 770 929 805T967 905Q967 977 931 1005T815 1034H748V770ZM1157 909Q1157 738 1004 676L1241 279H1030L838 625H748V279H559V1182H821Q995 1182 1076 1114T1157 909ZM100
+731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM223 731Q223 561 307 416T538 186T852 102Q1022 102 1168 187T1397 417T1481 731Q1481 899 1397 1045T1166
+1276T852 1360Q684 1360 540 1277T309 1048T223 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6V1720H1030V1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M109 1153Q109 1288 204 1385T438 1483Q576 1483 671 1387T766 1153Q766 1014 670 920T438 825Q350 825 274 868T153 988T109 1153ZM262 1153Q262 1083 313 1031T438 979Q512 979 563 1030T614
+1153Q614 1229 562 1280T438 1331Q366 1331 314 1279T262 1153Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1169" d="M494 664H96V842H494V1249H674V842H1073V664H674V258H494V664ZM96 0V178H1073V0H96Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="743" d="M678 586H51V721L281 946Q398 1058 430 1111T463 1223Q463 1275 431 1302T348 1329Q255 1329 147 1241L53 1362Q192 1481 362 1481Q498 1481 573 1415T649 1235Q649 1152 603 1077T420
+874L281 745H678V586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="743" d="M645 1251Q645 1176 605 1129T485 1042Q579 1021 626 966T674 834Q674 707 581 638T315 569Q167 569 45 631V788Q190 709 315 709Q494 709 494 844Q494 969 295 969H180V1102H285Q469
+1102 469 1231Q469 1283 435 1311T344 1339Q287 1339 239 1319T133 1262L49 1376Q110 1422 183 1451T354 1481Q488 1481 566 1420T645 1251Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1212" d="M362 1241V1266Q419 1336 479 1422T575 1569H848V1548Q796 1487 693 1391T518 1241H362Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1309" d="M403 422Q403 170 621 170Q767 170 836 258T905 555V1106H1141V0H958L924 147H911Q863 64 792 22T616 -20Q476 -20 397 70H393Q396 42 399 -47T403 -172V-492H168V1106H403V422Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1143 -260H1006V1403H815V-260H678V559Q616 541 532 541Q316 541 215 666T113 1042Q113 1302 222 1429T563 1556H1143V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="563" d="M133 723Q133 796 171 835T281 874Q354 874 392 834T430 723Q430 652 392 611T281 569Q209 569 171 610T133 723Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="442" d="M426 -270Q426 -492 121 -492Q55 -492 0 -477V-340Q54 -354 123 -354Q177 -354 208 -338T240 -276Q240 -191 61 -166L145 0H297L256 -88Q336 -109 381 -156T426 -270Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="743" d="M532 586H346V1098L349 1201L354 1292Q337 1274 314 1252T172 1141L84 1253L365 1462H532V586Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="780" d="M719 1124Q719 960 632 865T387 770Q237 770 149 865T61 1124Q61 1293 149 1386T391 1479Q543 1479 631 1385T719 1124ZM223 1124Q223 1013 262 958T389 903Q477 903 516 958T555 1124Q555
+1237 516 1291T389 1346Q301 1346 262 1292T223 1124Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1139" d="M1057 535L698 104L530 201L813 549L530 899L698 993L1057 561V535ZM606 535L248 104L80 201L362 549L80 899L248 993L606 561V535Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1700" d="M1333 1462L477 0H285L1143 1462H1333ZM764 586H578V1098L581 1201L586 1292Q569 1274 546 1252T404 1141L316 1253L597 1462H764V586ZM1585 177H1460V1H1268V177H876V304L1272 883H1460V320H1585V177ZM1268
+320V498Q1268 595 1274 695Q1222 591 1186 537L1038 320H1268Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1700" d="M1298 1462L442 0H250L1108 1462H1298ZM750 586H564V1098L567 1201L572 1292Q555 1274 532 1252T390 1141L302 1253L583 1462H750V586ZM1608 1H981V136L1211 361Q1328 473 1360 526T1393 638Q1393
+690 1361 717T1278 744Q1185 744 1077 656L983 777Q1122 896 1292 896Q1428 896 1503 830T1579 650Q1579 567 1533 492T1350 289L1211 160H1608V1Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1700" d="M1415 1462L559 0H367L1225 1462H1415ZM1640 177H1515V1H1323V177H931V304L1327 883H1515V320H1640V177ZM1323 320V498Q1323 595 1329 695Q1277 591 1241 537L1093 320H1323ZM655 1251Q655
+1176 615 1129T495 1042Q589 1021 636 966T684 834Q684 707 591 638T325 569Q177 569 55 631V788Q200 709 325 709Q504 709 504 844Q504 969 305 969H190V1102H295Q479 1102 479 1231Q479 1283 445 1311T354 1339Q297 1339 249 1319T143 1262L59 1376Q120 1422
+193 1451T364 1481Q498 1481 576 1420T655 1251Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="928" d="M651 645V582Q651 476 610 401T467 246Q343 148 312 99T281 -25Q281 -103 335 -150T496 -197Q586 -197 670 -170T836 -104L918 -283Q698 -393 494 -393Q287 -393 171 -298T55 -33Q55 40
+76 97T140 206T297 348Q391 424 422 472T453 600V645H651ZM692 965Q692 891 655 852T543 813Q471 813 433 852T395 965Q395 1034 433 1076T543 1118Q615 1118 653 1078T692 965Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1354" d="M1100 0L954 406H395L252 0H0L547 1468H807L1354 0H1100ZM891 612L754 1010Q739 1050 713 1136T676 1262Q649 1139 597 993L465 612H891ZM662 1579Q593 1631 488 1729T334 1886V1907H607Q645
+1837 710 1746T820 1604V1579H662Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1354" d="M1100 0L954 406H395L252 0H0L547 1468H807L1354 0H1100ZM891 612L754 1010Q739 1050 713 1136T676 1262Q649 1139 597 993L465 612H891ZM532 1579V1604Q589 1674 649 1760T745 1907H1018V1886Q966
+1825 863 1729T688 1579H532Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1354" d="M1100 0L954 406H395L252 0H0L547 1468H807L1354 0H1100ZM891 612L754 1010Q739 1050 713 1136T676 1262Q649 1139 597 993L465 612H891ZM897 1579Q774 1652 669 1759Q566 1656 444 1579H286V1604Q477
+1802 540 1907H800Q863 1797 1056 1604V1579H897Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1354" d="M1100 0L954 406H395L252 0H0L547 1468H807L1354 0H1100ZM891 612L754 1010Q739 1050 713 1136T676 1262Q649 1139 597 993L465 612H891ZM821 1579Q779 1579 739 1596T659 1635T583 1674T512
+1692Q431 1692 403 1577H281Q293 1716 358 1789T526 1862Q569 1862 610 1845T690 1806T765 1767T836 1749Q915 1749 942 1864H1067Q1055 1730 990 1655T821 1579Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1354" d="M1100 0L954 406H395L252 0H0L547 1468H807L1354 0H1100ZM891 612L754 1010Q739 1050 713 1136T676 1262Q649 1139 597 993L465 612H891ZM363 1737Q363 1799 396 1826T478 1854Q531 1854
+562 1823T594 1737Q594 1684 562 1652T478 1620Q430 1620 397 1649T363 1737ZM756 1737Q756 1799 789 1826T871 1854Q924 1854 956 1823T988 1737Q988 1683 955 1652T871 1620Q823 1620 790 1649T756 1737Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1354" d="M1100 0L954 406H395L252 0H0L547 1468H807L1354 0H1100ZM891 612L754 1010Q739 1050 713 1136T676 1262Q649 1139 597 993L465 612H891ZM913 1577Q913 1475 848 1412T674 1348Q566 1348 502
+1410T438 1575Q438 1676 501 1738T674 1801Q778 1801 845 1739T913 1577ZM780 1575Q780 1625 750 1653T674 1682Q627 1682 597 1654T567 1575Q567 1469 674 1469Q720 1469 750 1496T780 1575Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1868" d="M1747 0H936V406H432L244 0H-2L676 1462H1747V1260H1176V862H1708V662H1176V203H1747V0ZM522 612H936V1253H813L522 612Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1298" d="M815 1278Q609 1278 491 1132T373 729Q373 460 486 322T815 184Q908 184 995 202T1176 250V45Q1004 -20 786 -20Q465 -20 293 174T121 731Q121 959 204 1130T446 1392T817 1483Q1041 1483
+1231 1389L1145 1190Q1071 1225 989 1251T815 1278ZM952 -270Q952 -492 647 -492Q581 -492 526 -477V-340Q580 -354 649 -354Q703 -354 734 -338T766 -276Q766 -191 587 -166L671 0H823L782 -88Q862 -109 907 -156T952 -270Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1143" d="M1020 0H193V1462H1020V1260H432V862H983V662H432V203H1020V0ZM617 1579Q548 1631 443 1729T289 1886V1907H562Q600 1837 665 1746T775 1604V1579H617Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1143" d="M1020 0H193V1462H1020V1260H432V862H983V662H432V203H1020V0ZM440 1579V1604Q497 1674 557 1760T653 1907H926V1886Q874 1825 771 1729T596 1579H440Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1143" d="M1020 0H193V1462H1020V1260H432V862H983V662H432V203H1020V0ZM831 1579Q708 1652 603 1759Q500 1656 378 1579H220V1604Q411 1802 474 1907H734Q797 1797 990 1604V1579H831Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1143" d="M1020 0H193V1462H1020V1260H432V862H983V662H432V203H1020V0ZM297 1737Q297 1799 330 1826T412 1854Q465 1854 496 1823T528 1737Q528 1684 496 1652T412 1620Q364 1620 331 1649T297 1737ZM690
+1737Q690 1799 723 1826T805 1854Q858 1854 890 1823T922 1737Q922 1683 889 1652T805 1620Q757 1620 724 1649T690 1737Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="625" d="M193 0V1462H432V0H193ZM322 1579Q253 1631 148 1729T-6 1886V1907H267Q305 1837 370 1746T480 1604V1579H322Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="625" d="M193 0V1462H432V0H193ZM179 1579V1604Q236 1674 296 1760T392 1907H665V1886Q613 1825 510 1729T335 1579H179Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="625" d="M193 0V1462H432V0H193ZM536 1579Q413 1652 308 1759Q205 1656 83 1579H-75V1604Q116 1802 179 1907H439Q502 1797 695 1604V1579H536Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="625" d="M193 0V1462H432V0H193ZM1 1737Q1 1799 34 1826T116 1854Q169 1854 200 1823T232 1737Q232 1684 200 1652T116 1620Q68 1620 35 1649T1 1737ZM394 1737Q394 1799 427 1826T509 1854Q562 1854
+594 1823T626 1737Q626 1683 593 1652T509 1620Q461 1620 428 1649T394 1737Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1497" d="M1374 745Q1374 385 1173 193T594 0H193V623H47V823H193V1462H639Q986 1462 1180 1274T1374 745ZM1122 737Q1122 997 998 1129T629 1262H432V823H739V623H432V201H592Q1122 201 1122 737Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1604" d="M1411 0H1118L399 1165H391L396 1100Q410 914 410 760V0H193V1462H483L1200 303H1206Q1204 326 1198 470T1192 696V1462H1411V0ZM954 1579Q912 1579 872 1596T792 1635T716 1674T645 1692Q564
+1692 536 1577H414Q426 1716 491 1789T659 1862Q702 1862 743 1845T823 1806T898 1767T969 1749Q1048 1749 1075 1864H1200Q1188 1730 1123 1655T954 1579Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1612" d="M1491 733Q1491 376 1313 178T807 -20Q476 -20 299 176T121 735Q121 1097 299 1291T809 1485Q1135 1485 1313 1288T1491 733ZM375 733Q375 463 484 324T807 184Q1020 184 1128 322T1237 733Q1237
+1002 1130 1141T809 1280Q594 1280 485 1141T375 733ZM809 1579Q740 1631 635 1729T481 1886V1907H754Q792 1837 857 1746T967 1604V1579H809Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1612" d="M1491 733Q1491 376 1313 178T807 -20Q476 -20 299 176T121 735Q121 1097 299 1291T809 1485Q1135 1485 1313 1288T1491 733ZM375 733Q375 463 484 324T807 184Q1020 184 1128 322T1237 733Q1237
+1002 1130 1141T809 1280Q594 1280 485 1141T375 733ZM657 1579V1604Q714 1674 774 1760T870 1907H1143V1886Q1091 1825 988 1729T813 1579H657Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1612" d="M1491 733Q1491 376 1313 178T807 -20Q476 -20 299 176T121 735Q121 1097 299 1291T809 1485Q1135 1485 1313 1288T1491 733ZM375 733Q375 463 484 324T807 184Q1020 184 1128 322T1237
+733Q1237 1002 1130 1141T809 1280Q594 1280 485 1141T375 733ZM1024 1579Q901 1652 796 1759Q693 1656 571 1579H413V1604Q604 1802 667 1907H927Q990 1797 1183 1604V1579H1024Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1612" d="M1491 733Q1491 376 1313 178T807 -20Q476 -20 299 176T121 735Q121 1097 299 1291T809 1485Q1135 1485 1313 1288T1491 733ZM375 733Q375 463 484 324T807 184Q1020 184 1128 322T1237 733Q1237
+1002 1130 1141T809 1280Q594 1280 485 1141T375 733ZM950 1579Q908 1579 868 1596T788 1635T712 1674T641 1692Q560 1692 532 1577H410Q422 1716 487 1789T655 1862Q698 1862 739 1845T819 1806T894 1767T965 1749Q1044 1749 1071 1864H1196Q1184 1730 1119 1655T950
+1579Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1612" d="M1491 733Q1491 376 1313 178T807 -20Q476 -20 299 176T121 735Q121 1097 299 1291T809 1485Q1135 1485 1313 1288T1491 733ZM375 733Q375 463 484 324T807 184Q1020 184 1128 322T1237
+733Q1237 1002 1130 1141T809 1280Q594 1280 485 1141T375 733ZM496 1737Q496 1799 529 1826T611 1854Q664 1854 695 1823T727 1737Q727 1684 695 1652T611 1620Q563 1620 530 1649T496 1737ZM889 1737Q889 1799 922 1826T1004 1854Q1057 1854 1089 1823T1121 1737Q1121
+1683 1088 1652T1004 1620Q956 1620 923 1649T889 1737Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1169" d="M457 723L131 1049L256 1176L584 850L913 1176L1038 1053L709 723L1034 395L911 270L582 596L258 270L133 395L457 723Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1612" d="M1491 733Q1491 376 1313 178T807 -20Q594 -20 446 61L352 -76L211 18L309 162Q121 358 121 735Q121 1097 299 1291T809 1485Q1008 1485 1163 1403L1253 1532L1395 1440L1296 1300Q1491 1101
+1491 733ZM1237 733Q1237 958 1157 1094L571 244Q668 184 807 184Q1020 184 1128 322T1237 733ZM375 733Q375 502 453 371L1040 1221Q948 1280 809 1280Q594 1280 485 1141T375 733Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1520" d="M1339 1462V516Q1339 354 1270 233T1069 46T754 -20Q482 -20 331 124T180 520V1462H420V537Q420 356 504 270T762 184Q1100 184 1100 539V1462H1339ZM745 1579Q676 1631 571 1729T417 1886V1907H690Q728
+1837 793 1746T903 1604V1579H745Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1520" d="M1339 1462V516Q1339 354 1270 233T1069 46T754 -20Q482 -20 331 124T180 520V1462H420V537Q420 356 504 270T762 184Q1100 184 1100 539V1462H1339ZM600 1579V1604Q657 1674 717 1760T813
+1907H1086V1886Q1034 1825 931 1729T756 1579H600Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1520" d="M1339 1462V516Q1339 354 1270 233T1069 46T754 -20Q482 -20 331 124T180 520V1462H420V537Q420 356 504 270T762 184Q1100 184 1100 539V1462H1339ZM977 1579Q854 1652 749 1759Q646
+1656 524 1579H366V1604Q557 1802 620 1907H880Q943 1797 1136 1604V1579H977Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1520" d="M1339 1462V516Q1339 354 1270 233T1069 46T754 -20Q482 -20 331 124T180 520V1462H420V537Q420 356 504 270T762 184Q1100 184 1100 539V1462H1339ZM445 1737Q445 1799 478 1826T560 1854Q613
+1854 644 1823T676 1737Q676 1684 644 1652T560 1620Q512 1620 479 1649T445 1737ZM838 1737Q838 1799 871 1826T953 1854Q1006 1854 1038 1823T1070 1737Q1070 1683 1037 1652T953 1620Q905 1620 872 1649T838 1737Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1212" d="M606 795L952 1462H1212L725 567V0H485V559L0 1462H260L606 795ZM450 1579V1604Q507 1674 567 1760T663 1907H936V1886Q884 1825 781 1729T606 1579H450Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1268" d="M1169 776Q1169 549 1023 427T600 305H432V0H193V1462H432V1219H629Q897 1219 1033 1107T1169 776ZM432 504H565Q752 504 838 567T924 770Q924 897 846 958T596 1020H432V504Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1364" d="M1149 1253Q1149 1179 1111 1113T1006 995Q916 926 889 897T862 840Q862 810 884 785T964 721L1059 657Q1151 595 1194 548T1260 444T1282 317Q1282 152 1175 66T864 -20Q674 -20 565 45V244Q623
+207 704 183T852 158Q1044 158 1044 309Q1044 370 1010 414T854 532Q735 605 683 667T631 813Q631 876 665 928T770 1034Q845 1089 877 1131T909 1225Q909 1297 842 1337T664 1378Q537 1378 470 1324T403 1165V0H168V1169Q168 1362 296 1464T664 1567Q889 1567
+1019 1483T1149 1253Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1188" d="M860 0L813 154H805Q725 53 644 17T436 -20Q273 -20 182 68T90 317Q90 488 217 575T604 670L795 676V735Q795 841 746 893T592 946Q507 946 429 921T279 862L203 1030Q293 1077 400 1101T602
+1126Q813 1126 920 1034T1028 745V0H860ZM510 160Q638 160 715 231T793 432V528L651 522Q485 516 410 467T334 315Q334 241 378 201T510 160ZM843 1241Q774 1293 669 1391T515 1548V1569H788Q826 1499 891 1408T1001 1266V1241H843Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1188" d="M860 0L813 154H805Q725 53 644 17T436 -20Q273 -20 182 68T90 317Q90 488 217 575T604 670L795 676V735Q795 841 746 893T592 946Q507 946 429 921T279 862L203 1030Q293 1077 400 1101T602
+1126Q813 1126 920 1034T1028 745V0H860ZM510 160Q638 160 715 231T793 432V528L651 522Q485 516 410 467T334 315Q334 241 378 201T510 160ZM438 1241V1266Q495 1336 555 1422T651 1569H924V1548Q872 1487 769 1391T594 1241H438Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1188" d="M860 0L813 154H805Q725 53 644 17T436 -20Q273 -20 182 68T90 317Q90 488 217 575T604 670L795 676V735Q795 841 746 893T592 946Q507 946 429 921T279 862L203 1030Q293 1077 400 1101T602
+1126Q813 1126 920 1034T1028 745V0H860ZM510 160Q638 160 715 231T793 432V528L651 522Q485 516 410 467T334 315Q334 241 378 201T510 160ZM1070 1241Q947 1314 842 1421Q739 1318 617 1241H459V1266Q650 1464 713 1569H973Q1036 1459 1229 1266V1241H1070Z"
+/>
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1188" d="M860 0L813 154H805Q725 53 644 17T436 -20Q273 -20 182 68T90 317Q90 488 217 575T604 670L795 676V735Q795 841 746 893T592 946Q507 946 429 921T279 862L203 1030Q293 1077 400 1101T602
+1126Q813 1126 920 1034T1028 745V0H860ZM510 160Q638 160 715 231T793 432V528L651 522Q485 516 410 467T334 315Q334 241 378 201T510 160ZM1004 1241Q962 1241 922 1258T842 1297T766 1336T695 1354Q614 1354 586 1239H464Q476 1378 541 1451T709 1524Q752 1524
+793 1507T873 1468T948 1429T1019 1411Q1098 1411 1125 1526H1250Q1238 1392 1173 1317T1004 1241Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1188" d="M860 0L813 154H805Q725 53 644 17T436 -20Q273 -20 182 68T90 317Q90 488 217 575T604 670L795 676V735Q795 841 746 893T592 946Q507 946 429 921T279 862L203 1030Q293 1077 400 1101T602
+1126Q813 1126 920 1034T1028 745V0H860ZM510 160Q638 160 715 231T793 432V528L651 522Q485 516 410 467T334 315Q334 241 378 201T510 160ZM538 1399Q538 1461 571 1488T653 1516Q706 1516 737 1485T769 1399Q769 1346 737 1314T653 1282Q605 1282 572 1311T538
+1399ZM931 1399Q931 1461 964 1488T1046 1516Q1099 1516 1131 1485T1163 1399Q1163 1345 1130 1314T1046 1282Q998 1282 965 1311T931 1399Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1188" d="M860 0L813 154H805Q725 53 644 17T436 -20Q273 -20 182 68T90 317Q90 488 217 575T604 670L795 676V735Q795 841 746 893T592 946Q507 946 429 921T279 862L203 1030Q293 1077 400 1101T602
+1126Q813 1126 920 1034T1028 745V0H860ZM510 160Q638 160 715 231T793 432V528L651 522Q485 516 410 467T334 315Q334 241 378 201T510 160ZM841 1468Q841 1366 776 1303T602 1239Q494 1239 430 1301T366 1466Q366 1567 429 1629T602 1692Q706 1692 773 1630T841
+1468ZM708 1466Q708 1516 678 1544T602 1573Q555 1573 525 1545T495 1466Q495 1360 602 1360Q648 1360 678 1387T708 1466Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1817" d="M90 317Q90 489 211 575T582 670L770 676V752Q770 946 569 946Q428 946 262 864L188 1030Q276 1077 380 1101T584 1126Q825 1126 924 971Q1044 1126 1270 1126Q1476 1126 1598 992T1720 629V502H1008Q1018
+166 1309 166Q1493 166 1665 246V55Q1579 14 1494 -3T1298 -20Q1158 -20 1050 34T874 199Q780 74 684 27T442 -20Q277 -20 184 70T90 317ZM334 315Q334 160 500 160Q624 160 696 232T768 432V528L633 522Q478 516 406 468T334 315ZM1266 948Q1154 948 1089 879T1014
+670H1487Q1487 800 1429 874T1266 948Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="1014" d="M614 -20Q363 -20 233 126T102 547Q102 826 238 976T633 1126Q808 1126 948 1061L877 872Q728 930 631 930Q344 930 344 549Q344 363 415 270T625 176Q782 176 922 254V49Q859 12 788 -4T614
+-20ZM782 -270Q782 -492 477 -492Q411 -492 356 -477V-340Q410 -354 479 -354Q533 -354 564 -338T596 -276Q596 -191 417 -166L501 0H653L612 -88Q692 -109 737 -156T782 -270Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1180" d="M651 -20Q393 -20 248 130T102 545Q102 816 237 971T608 1126Q827 1126 954 993T1081 627V500H344Q349 339 431 253T662 166Q760 166 844 184T1026 246V55Q940 14 852 -3T651 -20ZM608 948Q496
+948 429 877T348 670H850Q848 807 784 877T608 948ZM865 1241Q796 1293 691 1391T537 1548V1569H810Q848 1499 913 1408T1023 1266V1241H865Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1180" d="M651 -20Q393 -20 248 130T102 545Q102 816 237 971T608 1126Q827 1126 954 993T1081 627V500H344Q349 339 431 253T662 166Q760 166 844 184T1026 246V55Q940 14 852 -3T651 -20ZM608 948Q496
+948 429 877T348 670H850Q848 807 784 877T608 948ZM458 1241V1266Q515 1336 575 1422T671 1569H944V1548Q892 1487 789 1391T614 1241H458Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1180" d="M651 -20Q393 -20 248 130T102 545Q102 816 237 971T608 1126Q827 1126 954 993T1081 627V500H344Q349 339 431 253T662 166Q760 166 844 184T1026 246V55Q940 14 852 -3T651 -20ZM608
+948Q496 948 429 877T348 670H850Q848 807 784 877T608 948ZM838 1241Q715 1314 610 1421Q507 1318 385 1241H227V1266Q418 1464 481 1569H741Q804 1459 997 1266V1241H838Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1180" d="M651 -20Q393 -20 248 130T102 545Q102 816 237 971T608 1126Q827 1126 954 993T1081 627V500H344Q349 339 431 253T662 166Q760 166 844 184T1026 246V55Q940 14 852 -3T651 -20ZM608 948Q496
+948 429 877T348 670H850Q848 807 784 877T608 948ZM307 1399Q307 1461 340 1488T422 1516Q475 1516 506 1485T538 1399Q538 1346 506 1314T422 1282Q374 1282 341 1311T307 1399ZM700 1399Q700 1461 733 1488T815 1516Q868 1516 900 1485T932 1399Q932 1345 899
+1314T815 1282Q767 1282 734 1311T700 1399Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="571" d="M403 0H168V1106H403V0ZM259 1241Q190 1293 85 1391T-69 1548V1569H204Q242 1499 307 1408T417 1266V1241H259Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="571" d="M403 0H168V1106H403V0ZM156 1241V1266Q213 1336 273 1422T369 1569H642V1548Q590 1487 487 1391T312 1241H156Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="571" d="M403 0H168V1106H403V0ZM511 1241Q388 1314 283 1421Q180 1318 58 1241H-100V1266Q91 1464 154 1569H414Q477 1459 670 1266V1241H511Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="571" d="M403 0H168V1106H403V0ZM-25 1399Q-25 1461 8 1488T90 1516Q143 1516 174 1485T206 1399Q206 1346 174 1314T90 1282Q42 1282 9 1311T-25 1399ZM368 1399Q368 1461 401 1488T483 1516Q536
+1516 568 1485T600 1399Q600 1345 567 1314T483 1282Q435 1282 402 1311T368 1399Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1243" d="M1149 567Q1149 288 1012 134T623 -20Q388 -20 245 116T102 481Q102 712 233 846T584 981Q798 981 885 870L893 874Q831 1063 666 1219L416 1069L328 1202L532 1321Q446 1380 365 1423L449 1569Q589
+1506 707 1425L938 1563L1026 1434L838 1321Q990 1181 1069 991T1149 567ZM909 522Q909 649 834 724T627 799Q476 799 409 717T342 477Q342 324 416 243T627 162Q775 162 842 253T909 522Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1300" d="M1141 0H905V680Q905 808 854 871T690 934Q541 934 472 846T403 551V0H168V1106H352L385 961H397Q447 1040 539 1083T743 1126Q1141 1126 1141 721V0ZM809 1241Q767 1241 727 1258T647 1297T571
+1336T500 1354Q419 1354 391 1239H269Q281 1378 346 1451T514 1524Q557 1524 598 1507T678 1468T753 1429T824 1411Q903 1411 930 1526H1055Q1043 1392 978 1317T809 1241Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1251" d="M1149 555Q1149 284 1010 132T623 -20Q468 -20 349 50T166 251T102 555Q102 824 240 975T629 1126Q869 1126 1009 972T1149 555ZM344 555Q344 172 627 172Q907 172 907 555Q907 934 625 934Q477
+934 411 836T344 555ZM877 1241Q808 1293 703 1391T549 1548V1569H822Q860 1499 925 1408T1035 1266V1241H877Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1251" d="M1149 555Q1149 284 1010 132T623 -20Q468 -20 349 50T166 251T102 555Q102 824 240 975T629 1126Q869 1126 1009 972T1149 555ZM344 555Q344 172 627 172Q907 172 907 555Q907 934 625 934Q477
+934 411 836T344 555ZM473 1241V1266Q530 1336 590 1422T686 1569H959V1548Q907 1487 804 1391T629 1241H473Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1251" d="M1149 555Q1149 284 1010 132T623 -20Q468 -20 349 50T166 251T102 555Q102 824 240 975T629 1126Q869 1126 1009 972T1149 555ZM344 555Q344 172 627 172Q907 172 907 555Q907 934 625
+934Q477 934 411 836T344 555ZM850 1241Q727 1314 622 1421Q519 1318 397 1241H239V1266Q430 1464 493 1569H753Q816 1459 1009 1266V1241H850Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1251" d="M1149 555Q1149 284 1010 132T623 -20Q468 -20 349 50T166 251T102 555Q102 824 240 975T629 1126Q869 1126 1009 972T1149 555ZM344 555Q344 172 627 172Q907 172 907 555Q907 934 625 934Q477
+934 411 836T344 555ZM1031 1241Q989 1241 949 1258T869 1297T793 1336T722 1354Q641 1354 613 1239H491Q503 1378 568 1451T736 1524Q779 1524 820 1507T900 1468T975 1429T1046 1411Q1125 1411 1152 1526H1277Q1265 1392 1200 1317T1031 1241Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1251" d="M1149 555Q1149 284 1010 132T623 -20Q468 -20 349 50T166 251T102 555Q102 824 240 975T629 1126Q869 1126 1009 972T1149 555ZM344 555Q344 172 627 172Q907 172 907 555Q907 934 625
+934Q477 934 411 836T344 555ZM311 1399Q311 1461 344 1488T426 1516Q479 1516 510 1485T542 1399Q542 1346 510 1314T426 1282Q378 1282 345 1311T311 1399ZM704 1399Q704 1461 737 1488T819 1516Q872 1516 904 1485T936 1399Q936 1345 903 1314T819 1282Q771
+1282 738 1311T704 1399Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1169" d="M96 633V811H1073V633H96ZM457 373Q457 437 488 472T584 508Q645 508 677 472T709 373Q709 310 675 273T584 236Q524 236 491 271T457 373ZM457 1071Q457 1135 488 1170T584 1206Q645 1206
+677 1170T709 1071Q709 1008 675 971T584 934Q524 934 491 969T457 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1251" d="M1149 555Q1149 284 1010 132T623 -20Q479 -20 373 37L297 -72L162 18L244 135Q102 290 102 555Q102 824 240 975T629 1126Q773 1126 887 1063L956 1163L1092 1071L1014 963Q1149 811 1149
+555ZM344 555Q344 420 381 336L772 895Q712 934 625 934Q477 934 411 836T344 555ZM907 555Q907 676 874 758L487 205Q541 172 627 172Q907 172 907 555Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1300" d="M948 0L915 145H903Q854 68 764 24T557 -20Q356 -20 257 80T158 383V1106H395V424Q395 297 447 234T610 170Q758 170 827 258T897 555V1106H1133V0H948ZM873 1241Q804 1293 699 1391T545 1548V1569H818Q856
+1499 921 1408T1031 1266V1241H873Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1300" d="M948 0L915 145H903Q854 68 764 24T557 -20Q356 -20 257 80T158 383V1106H395V424Q395 297 447 234T610 170Q758 170 827 258T897 555V1106H1133V0H948ZM501 1241V1266Q558 1336 618 1422T714
+1569H987V1548Q935 1487 832 1391T657 1241H501Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1300" d="M948 0L915 145H903Q854 68 764 24T557 -20Q356 -20 257 80T158 383V1106H395V424Q395 297 447 234T610 170Q758 170 827 258T897 555V1106H1133V0H948ZM871 1241Q748 1314 643 1421Q540
+1318 418 1241H260V1266Q451 1464 514 1569H774Q837 1459 1030 1266V1241H871Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1300" d="M948 0L915 145H903Q854 68 764 24T557 -20Q356 -20 257 80T158 383V1106H395V424Q395 297 447 234T610 170Q758 170 827 258T897 555V1106H1133V0H948ZM332 1399Q332 1461 365 1488T447
+1516Q500 1516 531 1485T563 1399Q563 1346 531 1314T447 1282Q399 1282 366 1311T332 1399ZM725 1399Q725 1461 758 1488T840 1516Q893 1516 925 1485T957 1399Q957 1345 924 1314T840 1282Q792 1282 759 1311T725 1399Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1098" d="M0 1106H256L481 479Q532 345 549 227H557Q566 282 590 360T844 1106H1098L625 -147Q496 -492 195 -492Q117 -492 43 -475V-289Q96 -301 164 -301Q334 -301 403 -104L444 0L0 1106ZM401 1241V1266Q458
+1336 518 1422T614 1569H887V1548Q835 1487 732 1391T557 1241H401Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1276" d="M403 961Q464 1047 545 1086T733 1126Q939 1126 1055 975T1171 555Q1171 283 1055 132T733 -20Q514 -20 403 129H389L397 57L403 -35V-492H168V1556H403V1126L396 988L393 961H403ZM674 934Q532
+934 468 852T403 592V555Q403 353 467 263T676 172Q930 172 930 557Q930 747 869 840T674 934Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1098" d="M0 1106H256L481 479Q532 345 549 227H557Q566 282 590 360T844 1106H1098L625 -147Q496 -492 195 -492Q117 -492 43 -475V-289Q96 -301 164 -301Q334 -301 403 -104L444 0L0 1106ZM495
+1399Q495 1461 528 1488T610 1516Q663 1516 694 1485T726 1399Q726 1346 694 1314T610 1282Q562 1282 529 1311T495 1399ZM888 1399Q888 1461 921 1488T1003 1516Q1056 1516 1088 1485T1120 1399Q1120 1345 1087 1314T1003 1282Q955 1282 922 1311T888 1399Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1024" d="M82 455V645H942V455H82Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="2048" d="M82 455V645H1966V455H82Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="395" d="M37 961L25 983Q45 1066 96 1207T201 1462H371Q307 1206 270 961H37Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="395" d="M356 1462L371 1440Q318 1231 195 961H25Q94 1250 125 1462H356Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="549" d="M412 215Q364 29 236 -264H63Q132 6 166 238H397L412 215Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="813" d="M440 983Q493 1186 618 1462H788Q719 1166 688 961H455L440 983ZM25 983Q45 1066 96 1207T201 1462H371Q307 1206 270 961H37L25 983Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="813" d="M371 1440Q318 1231 195 961H25Q94 1250 125 1462H356L371 1440ZM788 1440Q735 1231 612 961H440Q509 1232 543 1462H774L788 1440Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="944" d="M391 215Q336 1 215 -264H43Q109 -4 145 238H377L391 215ZM809 215Q761 29 633 -264H461Q527 -4 563 238H795L809 215Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="770" d="M131 748Q131 886 197 958T385 1030Q506 1030 572 958T639 748Q639 613 572 539T385 465Q265 465 198 537T131 748Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="688" d="M82 561L438 993L606 899L324 549L606 201L438 104L82 535V561Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="688" d="M606 535L248 104L80 201L362 549L80 899L248 993L606 561V535Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.ttf b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.ttf
new file mode 100644
index 0000000..1a7679e
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.ttf differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.woff b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.woff
new file mode 100644
index 0000000..409c725
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.woff differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.woff2 b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.woff2
new file mode 100644
index 0000000..d088697
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.woff2 differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.eot b/themes/src/main/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.eot
new file mode 100644
index 0000000..041cf19
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.eot differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.svg b/themes/src/main/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.svg
new file mode 100644
index 0000000..9a9dd49
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.svg
@@ -0,0 +1,137 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata>
+<json>
+<![CDATA[
+{
+	"fontFamily": "PatternFlyIcons-webfont",
+	"fontURL": "https://www.patternfly.org",
+	"designer": "Red Hat",
+	"designerURL": "",
+	"license": "Apache 2.0",
+	"licenseURL": "http://www.apache.org/licenses/LICENSE-2.0.html",
+	"majorVersion": 3,
+	"minorVersion": 0,
+	"version": "Version 3.0",
+	"fontId": "PatternFlyIcons-webfont",
+	"psName": "PatternFlyIcons-webfont",
+	"subFamily": "Regular",
+	"fullName": "PatternFlyIcons-webfont",
+	"description": "Font generated by IcoMoon."
+}
+]]>
+</json>
+</metadata>
+<defs>
+<font id="PatternFlyIcons-webfont" horiz-adv-x="1024">
+<font-face units-per-em="1024" ascent="960" descent="-64" />
+<missing-glyph horiz-adv-x="1024" />
+<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
+<glyph unicode="&#xe600;" glyph-name="screen" data-tags="screen, monitor, computer, pc, desktop" d="M1024 146.286v731.429h-1024v-731.429h438.857v-73.143h-219.429v-73.143h585.143v73.143h-219.429v73.143h438.857zM146.286 731.428h731.429v-438.857h-731.429v438.857z" />
+<glyph unicode="&#xe601;" glyph-name="save" data-tags="save" d="M738.448 397.076l-184.514-223.726c-36.11-36.112-48.226-35.646-83.87 0l-184.514 223.726c-23.063 23.065-15.248 41.936 17.369 41.936h135.938v201.159c-0.002 5.298 0.933 9.666 4.375 13.109 3.442 3.44 7.813 5.166 13.111 5.161h109.735c5.296 0.005 9.666-1.719 13.104-5.161 3.445-3.442 5.959-7.815 5.959-13.109v-201.159h135.938c32.619 0 40.434-18.871 17.369-41.936v0zM877.714 950.857h-877.714v-1024h1024v877.735l-146.286 146.265zM877.714 73.143h-732.425l0.997 731.429h658.286l73.143-73.143v-658.286z" />
+<glyph unicode="&#xe602;" glyph-name="ok" data-tags="ok" d="M763.431 521.737c0.002-10.286-3.422-18.855-10.281-25.714l-205.835-204.24-58.288-58.29c-6.857-6.857-15.431-10.286-25.714-10.286-10.286 0-18.857 3.429-25.714 10.286l-171.227 171.189c-6.857 6.862-10.283 15.433-10.283 25.719s3.426 18.857 10.283 25.714l50.206 50.206c6.857 6.857 15.429 10.286 25.714 10.281 10.29 0 18.857-3.424 25.717-10.286l93.691-93.646 188.203 186.608c6.857 6.857 15.429 10.286 25.719 10.286 10.283 0.002 18.855-3.429 25.714-10.286l51.817-51.822c6.855-6.862 10.283-15.433 10.279-25.719v0zM512.059-73.143c-282.338 0-512.059 229.673-512.059 512.025 0 282.235 229.721 511.975 512.059 511.975 282.281 0 511.941-229.735 511.941-511.975 0.005-282.352-229.659-512.025-511.941-512.025zM512.059 826.523c-213.826 0-387.728-173.856-387.728-387.643 0-213.888 173.904-387.691 387.728-387.691 213.717 0 387.671 173.803 387.671 387.691 0.005 213.785-173.957 387.643-387.671 387.643z" />
+<glyph unicode="&#xe603;" glyph-name="messages" data-tags="messages" horiz-adv-x="951" d="M672.75 578.352l10.249 20.555c0 0 35.71 80.126-45.57 104.654-75.518 22.789-353.326 106.617-392.35 118.391l7.25 55.963c4.576 35.349-19.209 72.939-54.553 72.939s-68.855-28.654-73.433-64l-124.345-960h129.145l50.066 386.533 213.232 61.563-3.671-13.854c0 0-3.627-85.241 103.961-53.019 56.818 17.015 458.126 186.702 458.126 186.702l-278.107 83.573z" />
+<glyph unicode="&#xe605;" glyph-name="help" data-tags="help" d="M512.059-73.143c-282.338 0-512.059 229.673-512.059 512.025 0 282.235 229.721 511.975 512.059 511.975 282.281 0 511.941-229.735 511.941-511.975 0.005-282.352-229.659-512.025-511.941-512.025zM512.059 826.523c-213.826 0-387.728-173.856-387.728-387.643 0-213.89 173.904-387.694 387.728-387.694 213.717 0 387.671 173.803 387.671 387.694 0.005 213.785-173.957 387.643-387.671 387.643zM585.143 164.571v109.714c0 4.951-1.808 9.237-5.429 12.857s-7.906 5.429-12.857 5.429h-109.714c-4.953 0-9.239-1.808-12.857-5.429s-5.429-7.906-5.429-12.857v-109.714c0-4.951 1.81-9.237 5.429-12.857s7.904-5.429 12.857-5.429h109.714c4.951 0 9.237 1.808 12.857 5.429s5.429 7.906 5.429 12.857zM521.616 365.714c118.343 0 214.286 88.965 214.286 187.429s-95.943 178.286-214.286 178.286c-173.045 0-208.091-93.714-213.963-171.113 0-7.936 6.729-9.838 15.872-9.838s108.073 0 113.143 0c6.096 0 14.475 0.633 17.554 10.571 0 48.857 135.968 54.953 135.968-7.904 0-31.506-29.717-63.817-68.571-66.194s-82.286-7.607-82.286-54.199c0-13.022 0-25.673 0-44.693 0-19.015 9.717-22.343 27.431-22.343s54.853-0.002 54.853-0.002z" />
+<glyph unicode="&#xe606;" glyph-name="folder-open" data-tags="folder-open" horiz-adv-x="1243" d="M1226.126 430.391c-11.538 5.641-24.709 8.466-39.511 8.466h-783.362c-121.691 0-172.409-79.465-172.409-79.465l-157.701-213.106 72.912 253.2c11.755 31.506 36.455 58.219 74.101 80.146 37.641 21.927 76.905 32.366 117.778 32.366h759.625v146.286c0 0-0.418 73.611-73.561 73.611-83.591 0-512 0-512 0l-51.826 81.083c0 0-30.041 64.734-94.041 64.734-73.143 0-243.257 0-292.571 0-83.591 0-73.143-73.143-73.143-73.143v-804.571h841.797c28.734 0 59.973 7.705 93.714 23.122 33.742 15.413 59.973 34.197 78.695 56.341l208.565 279.929c13.495 15.2 20.242 29.529 20.242 42.99 0 13.029-5.767 22.366-17.303 28.011v0z" />
+<glyph unicode="&#xe607;" glyph-name="folder-close" data-tags="folder-close" horiz-adv-x="1097" d="M1097.563 0v658.286c0 0-0.421 73.611-73.563 73.611-83.591 0-512 0-512 0l-51.826 81.083c0 0-30.043 64.734-94.043 64.734-73.143 0-243.257 0-292.571 0-83.591 0-73.143-73.143-73.143-73.143v-804.571h1097.147z" />
+<glyph unicode="&#xe608;" glyph-name="topology" data-tags="topology" d="M365.714 838.857c0-60.594-49.121-109.714-109.714-109.714s-109.714 49.121-109.714 109.714c0 60.594 49.121 109.714 109.714 109.714s109.714-49.121 109.714-109.714zM1097.143 182.857c0-60.594-49.121-109.714-109.714-109.714s-109.714 49.121-109.714 109.714c0 60.594 49.121 109.714 109.714 109.714s109.714-49.121 109.714-109.714zM219.429 256c0-60.594-49.121-109.714-109.714-109.714s-109.714 49.121-109.714 109.714c0 60.594 49.121 109.714 109.714 109.714s109.714-49.121 109.714-109.714zM828.8 306.286l-75.2 51.2c8.457 25.6 13.257 52.8 13.257 81.143 0 55.086-17.371 106.057-47.314 147.886l87.771 89.6c20.8-11.429 44.8-18.057 70.4-18.057 80.686 0 146.286 65.6 146.286 146.286s-65.6 146.514-146.286 146.514c-80.686 0-146.286-65.6-146.286-146.286 0-28.8 8.229-55.543 22.629-78.171l-85.029-86.857c-43.2 33.829-97.829 54.171-157.029 54.171-33.829 0-66.286-6.629-96-18.743l-13.943 18.971c-13.486 18.286-37.714 23.543-53.714 11.429-16.229-11.886-18.514-36.571-5.257-54.857l9.6-13.029c-58.286-46.629-95.543-118.4-95.543-198.857 0-22.4 2.971-44.114 8.457-64.914l-2.743-1.143c-19.2-9.371-28.343-32-20.571-50.286s29.943-25.6 48.914-16.457l2.514 1.143c35.429-58.514 93.486-101.486 162.286-117.029l-4.343-42.057c-49.143-11.2-85.714-55.771-85.714-109.257 0-61.943 49.143-112 109.714-112s109.714 50.057 109.714 112c0 44.114-24.914 82.057-61.029 100.343l4.8 45.257c79.314 5.257 148.571 46.629 191.771 107.886l68.8-46.857c18.286-12.571 42.286-9.143 53.029 7.771s4.571 40.914-13.943 53.257zM877.714 882.286c42.971 0 77.714-34.743 77.714-77.714s-34.743-77.714-77.714-77.714-77.714 34.743-77.714 77.714 34.743 77.714 77.714 77.714zM475.429-20.572c-32.914 0-59.429 26.514-59.429 59.429s26.514 59.429 59.429 59.429 59.429-26.514 59.429-59.429-26.514-59.429-59.429-59.429zM512 299.428c-77.029 0-139.429 62.4-139.429 139.429s62.4 139.429 139.429 139.429 139.429-62.4 139.429-139.429-62.4-139.429-139.429-139.429z" />
+<glyph unicode="&#xe60a;" glyph-name="edit" data-tags="edit" d="M219.554 0l73.294 73.143-146.583 146.286-73.070-73.143v-73.143h73.090v-73.438l73.269 0.295zM806.176 512l-586.747-585.143h-219.429v219.429l586.585 585.143 219.591-219.429zM1024 762.937c0-19.056-6.656-35.237-19.968-48.537l-146.578-150.455-218.686 218.505 148.576 147.915c12.955 13.662 29.147 20.494 48.578 20.494 19.074 0 35.445-6.832 49.115-20.494l118.994-118.352c13.312-14.023 19.968-30.384 19.968-49.077v0z" />
+<glyph unicode="&#xe60b;" glyph-name="close" data-tags="close" horiz-adv-x="731" d="M96.464 804.571c-4.816-0.064-9.12-1.963-12.912-5.733l-77.815-77.815c-3.769-3.794-5.669-8.096-5.735-12.91-0.032-4.839 1.815-9.113 5.543-12.823l616.603-616.606c3.71-3.714 7.986-5.577 12.823-5.541 4.834 0.039 9.138 1.957 12.91 5.73l77.817 77.819c3.769 3.769 5.691 8.066 5.73 12.912 0.037 4.839-1.829 9.106-5.538 12.825l-616.606 616.599c-3.717 3.73-7.986 5.575-12.821 5.541zM622.144 799.031l-616.603-616.601c-3.726-3.717-5.577-7.989-5.536-12.827 0.059-4.843 1.959-9.143 5.728-12.914l77.817-77.817c3.792-3.774 8.096-5.691 12.91-5.728 4.837-0.039 9.106 1.824 12.821 5.536l616.599 616.608c3.717 3.712 5.579 7.989 5.543 12.823-0.041 4.814-1.959 9.118-5.728 12.91l-77.824 77.808c-3.767 3.778-8.073 5.678-12.907 5.744-4.834 0.034-9.104-1.815-12.818-5.541z" />
+<glyph unicode="&#xe610;" glyph-name="equalizer" data-tags="equalizer, control, options, settings, dashboard" d="M950.857 438.857h18.286c30.171 0 54.857 24.686 54.857 54.857v182.857c0 30.171-24.686 54.857-54.857 54.857h-18.286v219.429h-146.286v-219.429h-18.286c-30.171 0-54.857-24.686-54.857-54.857v-182.857c0-30.171 24.686-54.857 54.857-54.857h18.286v-512h146.286v512zM804.571 658.286h146.286v-146.286h-146.286v146.286zM603.429 146.286c30.171 0 54.857 24.686 54.857 54.857v182.857c0 30.171-24.686 54.857-54.857 54.857h-18.286v512h-146.286v-512h-18.286c-30.171 0-54.857-24.686-54.857-54.857v-182.857c0-30.171 24.686-54.857 54.857-54.857h18.286v-219.429h146.286v219.429h18.286zM438.857 365.714h146.286v-146.286h-146.286v146.286zM237.714 438.857c30.171 0 54.857 24.686 54.857 54.857v182.857c0 30.171-24.686 54.857-54.857 54.857h-18.286v219.429h-146.286v-219.429h-18.286c-30.171 0-54.857-24.686-54.857-54.857v-182.857c0-30.171 24.686-54.857 54.857-54.857h18.286v-512h146.286v512h18.286zM73.143 658.286h146.286v-146.286h-146.286v146.286z" />
+<glyph unicode="&#xe611;" glyph-name="remove2" data-tags="remove, delete, trashcan, recycle bin, bin, dispose" horiz-adv-x="878" d="M146.286-73.143h585.143l73.143 658.286h-731.429l73.143-658.286zM585.143 804.855v146.002h-292.571v-146.002l-292.571-0.283v-219.429l73.001 73.143h731.57l73.143-73.143v219.712h-292.571zM511.010 804.855h-145.296v73.001h145.296v-73.001z" />
+<glyph unicode="&#xe612;" glyph-name="print" data-tags="print, printer" d="M219.429 877.714h585.143v-146.286h-585.143v146.286zM960 658.286h-896c-35.2 0-64-28.8-64-64v-310.857c0-35.2 28.798-64 64-64h155.429v-219.429h585.143v219.429h155.429c35.2 0 64 28.8 64 64v310.857c0 35.2-28.8 64-64 64zM731.429 73.143h-438.857v292.571h438.857v-292.571zM959.925 550.018c0-25.625-20.777-46.4-46.402-46.4s-46.402 20.775-46.402 46.4 20.777 46.4 46.402 46.4c25.63 0 46.402-20.775 46.402-46.4z" />
+<glyph unicode="&#xe613;" glyph-name="spinner2" data-tags="spinner, loading, busy, wait, wheel, repeat" d="M874.016 800.873c-92.647 92.658-220.631 149.984-362.016 149.984-282.77 0-512-229.23-512-512s229.23-512 512-512c153.639 0 291.458 67.691 385.303 174.857l-96.32 84.283c-5.595-6.377-11.401-12.615-17.458-18.667-72.523-72.528-168.955-112.473-271.525-112.473s-198.999 39.945-271.531 112.466c-72.521 72.535-112.469 168.965-112.469 271.534s39.947 198.999 112.469 271.529c72.53 72.526 168.962 112.471 271.531 112.471s198.999-39.945 271.529-112.471l154.805-61.198-64.318 151.685zM682.425 627.568c-23.333-23.333-15.424-42.425 17.575-42.425h264c51.666 0 60 9.001 60 60v264c0 33.001-19.093 40.907-42.425 17.575l-299.15-299.15z" />
+<glyph unicode="&#xe614;" glyph-name="spinner" data-tags="spinner, loading, busy, wait, wheel" d="M585.143 754.658c85.63-20.126 158.018-74.816 201.838-148.633l185.614 60.357c-72.864 150.469-216.526 259.899-387.451 284.475v-196.199zM237.598 607.001c43.877 73.323 116.007 127.621 201.259 147.659v196.197c-170.457-24.507-313.803-133.403-386.857-283.234l185.598-60.622zM153.895 73.73l115.23 158.366c-48.059 56.265-77.125 129.403-77.125 209.378 0 8.761 0.366 17.433 1.056 26.016l-185.776 60.681c-4.766-28.19-7.282-57.145-7.282-86.697 0.002-144.094 58.951-274.327 153.897-367.744zM635.152 144.539c-37.909-15.906-79.506-24.702-123.152-24.702-44.366 0-86.615 9.083-125.024 25.483l-115.232-158.368c71.648-38.343 153.419-60.098 240.256-60.098 86.089 0 167.195 21.387 238.402 59.118l-115.25 158.567zM831.031 466.354c0.631-8.213 0.969-16.507 0.969-24.882 0-80.704-29.589-154.455-78.439-210.923l115.047-158.288c95.824 93.52 155.392 224.363 155.392 369.211 0 29.079-2.427 57.579-7.047 85.337l-185.922-60.455z" />
+<glyph unicode="&#xe615;" glyph-name="import" data-tags="import" d="M687.721 571.335l-95.387-95.387-393.84 393.856c-5.285 5.262-11.353 7.909-18.203 7.911-6.862 0-12.935-2.649-18.222-7.911l-81.019-81.019c-5.262-5.285-7.909-11.353-7.909-18.219 0-6.85 2.649-12.914 7.909-18.203l393.856-393.84-95.381-95.381c-24.039-24.037-15.89-43.705 18.105-43.705h271.982c53.227 0 61.813 9.273 61.813 61.813v271.984c0.005 33.995-19.662 42.149-43.703 18.103zM877.714 84.571c0-3.312-1.077-6.048-3.232-8.203-2.151-2.151-4.889-3.227-8.199-3.225h-708.661c-3.287 0-5.998 1.067-8.137 3.202-2.135 2.137-3.202 4.848-3.202 8.135v404.843c0 6.571-2.135 11.995-6.409 16.272-4.27 4.267-9.696 6.407-16.267 6.405h-100.933c-6.571 0.002-11.998-2.137-16.267-6.405-4.277-4.277-6.409-9.701-6.409-16.272v-539.79c-0.002-6.571 2.137-11.998 6.405-16.267 4.277-4.274 9.701-6.409 16.272-6.409h978.647c6.571-0.002 11.998 2.137 16.267 6.405 4.274 4.277 6.409 9.701 6.409 16.272v978.647c0 6.571-2.135 11.995-6.409 16.272-4.27 4.267-9.696 6.407-16.267 6.405h-539.787c-6.571 0-11.995-2.135-16.272-6.409-4.267-4.27-6.407-9.696-6.405-16.267v-100.933c-0.002-6.569 2.137-11.998 6.405-16.265 4.277-4.277 9.701-6.411 16.272-6.411h404.752c3.312 0 6.048-1.077 8.203-3.232 2.151-2.149 3.227-4.889 3.225-8.197v-708.571z" />
+<glyph unicode="&#xe616;" glyph-name="export" data-tags="export" d="M980.293 278.754l-95.387-95.387-393.84 393.856c-5.285 5.262-11.353 7.909-18.203 7.911-6.862 0-12.935-2.649-18.222-7.911l-81.019-81.019c-5.262-5.285-7.909-11.353-7.909-18.219 0-6.85 2.649-12.914 7.909-18.203l393.856-393.84-95.381-95.381c-24.039-24.037-15.89-43.705 18.105-43.705h271.982c53.227 0 61.813 9.273 61.813 61.813v271.982c0.005 33.998-19.662 42.151-43.703 18.105zM146.286 793.143c0 3.312 1.077 6.048 3.232 8.203 2.151 2.151 4.889 3.227 8.199 3.225h708.661c3.287 0 5.998-1.067 8.137-3.202 2.135-2.137 3.202-4.848 3.202-8.135v-331.701c0-6.571 2.135-11.995 6.409-16.272 4.27-4.267 9.696-6.407 16.267-6.405h100.933c6.571-0.002 11.998 2.137 16.267 6.405 4.277 4.277 6.409 9.701 6.409 16.272v466.647c0.002 6.571-2.137 11.998-6.405 16.267-4.277 4.274-9.701 6.409-16.272 6.409h-978.649c-6.571 0.002-11.998-2.137-16.267-6.405-4.274-4.277-6.409-9.701-6.409-16.272v-978.647c0-6.571 2.135-11.995 6.409-16.272 4.27-4.267 9.696-6.407 16.267-6.405h466.647c6.571 0 11.995 2.135 16.272 6.411 4.267 4.267 6.407 9.696 6.405 16.265v100.933c0.002 6.569-2.137 11.998-6.405 16.265-4.277 4.277-9.701 6.411-16.272 6.411h-331.609c-3.312 0-6.048 1.077-8.203 3.232-2.151 2.149-3.227 4.889-3.225 8.197v708.571z" />
+<glyph unicode="&#xe617;" glyph-name="history" data-tags="history" d="M149.984 800.873c92.647 92.658 220.631 149.984 362.016 149.984 282.77 0 512-229.23 512-512s-229.23-512-512-512c-153.639 0-291.458 67.691-385.303 174.857l96.32 84.283c5.595-6.377 11.401-12.615 17.458-18.667 72.523-72.528 168.955-112.473 271.525-112.473s198.999 39.945 271.531 112.466c72.523 72.533 112.469 168.965 112.469 271.534s-39.947 198.999-112.469 271.529c-72.53 72.526-168.962 112.471-271.531 112.471s-198.999-39.945-271.529-112.471l-154.805-61.198 64.318 151.685zM324.571 365.714c-9.335 0-17.001 2.999-22.999 9.001-6 6-9.001 13.666-9.001 22.999v9.143c0 9.335 2.999 17.001 9.001 22.999 6 6 13.666 9.001 22.999 9.001h187.429v260.571c0 9.335 2.999 17.001 9.001 22.999 6 6 13.666 9.001 22.999 9.001h9.143c9.335 0 17.001-2.999 22.999-9.001 6-6 9.001-13.666 9.001-22.999v-301.714c0-9.335-2.999-17.001-9.001-22.999-6-6-13.666-9.001-22.999-9.001h-228.571zM341.575 627.568c23.333-23.333 15.424-42.425-17.575-42.425h-264c-51.666 0-60 9.001-60 60v264c0 33.001 19.093 40.907 42.425 17.575l299.15-299.15z" />
+<glyph unicode="&#xe618;" glyph-name="home" data-tags="home" d="M1023.929 430.75c-0.425 5.714-2.752 10.267-6.987 13.655l-456.672 417.266c-13.55 11.008-29.641 16.514-48.27 16.514-18.631 0-34.722-5.504-48.272-16.514l-456.67-417.266c-4.235-3.387-6.562-7.941-6.987-13.655-0.425-5.719 1.058-10.695 4.446-14.928l35.017-42.933c3.387-3.81 7.833-6.139 13.337-6.987 0.997-0.082 36.619-0.135 93.282-0.16v-325.563c0-11.008 4.023-20.537 12.069-28.581 8.046-8.046 17.573-12.069 28.581-12.069h252.030v293.545h146.279v-293.545h252.085c11.008 0 20.535 4.025 28.581 12.069 8.048 8.043 12.066 17.573 12.066 28.581v325.685c55.454 0.023 90.258 0 91.323 0h1.906c5.504 0.848 9.95 3.214 13.337 7.024l35.072 42.933c3.387 4.235 4.871 9.211 4.448 14.93z" />
+<glyph unicode="&#xe61b;" glyph-name="add-circle-o" data-tags="add-circle-o" d="M512.059-73.143c-282.338 0-512.059 229.673-512.059 512.025 0 282.238 229.721 511.975 512.059 511.975 282.283 0 511.941-229.735 511.941-511.975 0.005-282.352-229.659-512.025-511.941-512.025zM512.059 826.523c-213.826 0-387.728-173.856-387.728-387.643 0-213.888 173.904-387.691 387.728-387.691 213.717 0 387.671 173.803 387.671 387.691 0.005 213.785-173.957 387.643-387.671 387.643zM726.283 506.777c-3.429 3.477-7.803 5.223-13.138 5.223h-128.005v128.007c0 5.333-1.739 9.71-5.218 13.138s-7.936 5.141-13.351 5.141h-109.143c-5.417 0-9.863-1.714-13.351-5.141-3.481-3.429-5.221-7.808-5.221-13.141v-128.005l-128.007-0.002c-5.333 0-9.71-1.737-13.138-5.218-3.426-3.477-5.141-7.934-5.141-13.351v-109.143c0-5.417 1.714-9.856 5.141-13.351 3.429-3.481 7.808-5.221 13.141-5.221l128.005 0.002v-128.009c0-5.335 1.744-9.707 5.225-13.134 3.477-3.429 7.927-5.145 13.344-5.145h109.143c5.417 0 9.858 1.717 13.351 5.145 3.477 3.429 5.223 7.803 5.223 13.138v128.002h128.007c5.335 0 9.707 1.742 13.134 5.225 3.429 3.477 5.145 7.927 5.145 13.344v109.143c0 5.417-1.717 9.863-5.145 13.351z" />
+<glyph unicode="&#xe61e;" glyph-name="service" data-tags="service" d="M1316.571 621.486l-219.429 183.543v-146.743h-131.429c-0.229 0.229-0.229 0.686-0.457 0.914-39.314 67.2-92.571 120.457-159.771 159.771-67.2 39.086-140.571 58.743-220.343 58.743s-153.143-19.657-220.343-58.971c-67.2-39.314-120.457-92.571-159.771-159.771-39.086-67.2-58.743-140.571-58.743-220.114 0-24.914 1.829-49.143 5.714-72.686h-152.229l0.229-73.371h170.743c8.914-25.6 20.571-50.286 34.514-74.286 39.314-67.2 92.571-120.457 159.771-159.771s140.571-58.743 220.343-58.743c79.771 0 153.143 19.657 220.343 58.743 67.2 39.314 120.457 92.571 159.771 159.771 38.857 67.2 58.514 140.571 58.514 220.343 0 51.2-8.229 99.886-24.457 146.057h97.6v-146.514l219.429 183.086zM242.514 437.714c0 46.629 9.143 90.971 27.429 133.486s42.743 79.086 73.371 109.714c30.629 30.629 67.2 55.086 109.714 73.371s86.857 27.429 133.486 27.429c46.629 0 90.971-9.143 133.486-27.429s79.086-42.743 109.714-73.371c7.086-7.086 13.943-14.629 20.571-22.4h-265.371l0.229-73.371h311.314c2.057-4.571 4.343-9.143 6.171-13.714 18.286-42.514 27.429-86.857 27.429-133.486s-9.143-90.971-27.429-133.486c-18.286-42.514-42.743-79.086-73.371-109.714s-67.2-55.086-109.714-73.371c-42.514-18.286-86.857-27.429-133.486-27.429s-90.971 9.143-133.486 27.429c-42.514 18.286-79.086 42.743-109.714 73.371-27.886 27.886-50.514 60.571-68.114 98.057l310.4-0.229v-146.286l218.743 183.086-218.743 183.314v-146.514h-335.086c-5.029 23.314-7.543 47.086-7.543 71.543z" />
+<glyph unicode="&#xe61f;" glyph-name="image" data-tags="image" d="M1011.429 759.543c-9.371 13.486-21.943 23.086-37.486 29.029l-432.229 157.257c-9.143 3.429-18.057 5.029-27.2 5.029-0.457 0-0.914 0-1.371 0s-0.914 0-1.371 0c-8.914 0-18.057-1.6-26.971-5.029l-432.229-157.486c-15.543-5.714-28.114-15.314-37.486-29.029-9.371-13.486-14.171-28.571-14.171-45.029v-472.686c0-14.4 3.657-27.657 10.971-40s17.371-21.943 30.171-29.029l432.457-236.343c11.429-6.629 24-9.829 37.486-9.829 0.457 0 0.914 0 1.371 0s0.914 0 1.371 0c13.486 0 26.057 3.2 37.486 9.829l432.457 236.343c12.8 6.857 22.629 16.686 30.171 29.029s10.971 25.6 10.971 40v472.914c-0.229 16.457-5.029 31.314-14.4 45.029zM72.457 285.943v74.057l440.686-210.286 438.629 210.286v-74.057l-438.629-238.4-440.686 238.4zM513.143 300.343l-440.686 196.343v82.514l440.686-181.029 438.629 183.771v-85.029l-438.629-196.571z" />
+<glyph unicode="&#xe620;" glyph-name="cluster" data-tags="cluster" d="M-1.371 547.886v146.743c0 9.829 3.657 18.514 10.971 25.829s15.771 10.971 25.829 10.971h954.286c9.829 0 18.514-3.657 25.829-10.971s10.971-15.771 10.971-25.829v-146.743c0-10.057-3.657-18.514-10.971-25.829s-15.771-10.971-25.829-10.971h-954.514c-10.057 0-18.514 3.657-25.829 10.971-7.086 7.314-10.743 15.771-10.743 25.829zM866.514 584.457h86.171v73.371h-86.171v-73.371zM84.114 584.457h86.171v73.371h-86.171v-73.371zM223.543 584.457h86.171v73.371h-86.171v-73.371zM362.743 584.457h86.171v73.371h-86.171v-73.371zM502.171 584.457h86.171v73.371h-86.171v-73.371zM-1.371-36.114v146.743c0 9.829 3.657 18.514 10.971 25.829s15.771 10.971 25.829 10.971h954.286c9.829 0 18.514-3.657 25.829-10.971s10.971-15.771 10.971-25.829v-146.743c0-10.057-3.657-18.514-10.971-25.829s-15.771-10.971-25.829-10.971h-954.514c-10.057 0-18.514 3.657-25.829 10.971-7.086 7.314-10.743 16-10.743 25.829zM866.514 0.686h86.171v73.371h-86.171v-73.371zM84.114 0.686h86.171v73.371h-86.171v-73.371zM223.543 0.686h86.171v73.371h-86.171v-73.371zM362.743 0.686h86.171v73.371h-86.171v-73.371zM502.171 0.686h86.171v73.371h-86.171v-73.371zM-1.371 253.943v146.743c0 9.829 3.657 18.514 10.971 25.829s15.771 10.971 25.829 10.971h954.286c9.829 0 18.514-3.657 25.829-10.971s10.971-15.771 10.971-25.829v-146.743c0-10.057-3.657-18.514-10.971-25.829s-15.771-10.971-25.829-10.971h-954.514c-10.057 0-18.514 3.657-25.829 10.971-7.086 7.314-10.743 16-10.743 25.829zM866.514 290.743h86.171v73.371h-86.171v-73.371zM84.114 290.743h86.171v73.371h-86.171v-73.371zM223.543 290.743h86.171v73.371h-86.171v-73.371zM362.743 290.743h86.171v73.371h-86.171v-73.371zM502.171 290.743h86.171v73.371h-86.171v-73.371zM-2.286 779.2c-2.743 5.714 0.229 12.8 8.686 21.029 0 0 142.171 127.314 152.686 139.657s24 9.829 24 9.829h658.286c0 0 11.886 1.371 22.629-10.286 10.514-11.657 151.086-139.2 151.086-139.2 8.457-8.457 11.429-15.314 8.686-21.029s-9.829-8.686-21.486-8.686h-983.314c-11.429 0-18.743 2.971-21.257 8.686z" />
+<glyph unicode="&#xe621;" glyph-name="container-node" data-tags="container-node" d="M0.914 346.743c-2.743 10.743 0.229 24.229 8.686 40 0 0 141.714 301.714 152.229 325.257s23.771 18.514 23.771 18.514h655.771c0 0 11.886 2.743 22.4-19.657s150.629-324.114 150.629-324.114c8.457-15.771 11.2-29.257 8.686-40-2.743-10.971-9.829-16.229-21.257-16.229h-979.657c-11.429 0-18.514 5.486-21.257 16.229zM1.829 109.028v146.743c0 9.829 3.657 18.514 10.971 25.829s15.771 10.971 25.6 10.971h949.029c9.829 0 18.514-3.657 25.6-10.971 7.314-7.314 10.971-15.771 10.971-25.829v-146.743c0-10.057-3.657-18.514-10.971-25.829s-15.771-10.971-25.6-10.971h-949.257c-10.057 0-18.514 3.657-25.6 10.971s-10.743 15.771-10.743 25.829zM864.914 145.6h85.714v73.371h-85.714v-73.371zM86.857 145.6h85.714v73.371h-85.714v-73.371zM225.6 145.6h85.714v73.371h-85.714v-73.371zM363.886 145.6h85.714v73.371h-85.714v-73.371zM502.629 145.6h85.714v73.371h-85.714v-73.371z" />
+<glyph unicode="&#xe623;" glyph-name="registry" data-tags="registry" d="M799.314 529.6c3.2 5.257 4.8 11.2 4.8 17.371v226.971c0 7.086-2.057 13.714-5.943 19.657-4.114 5.943-9.371 10.057-16 12.571l-184.914 68.571c-3.886 1.371-7.771 2.057-11.657 2.057-0.229 0-0.457 0-0.457 0-0.229 0-0.457 0-0.457 0-3.886 0-7.771-0.686-11.657-2.057l-184.914-68.571c-6.629-2.514-11.886-6.629-16-12.571s-5.943-12.343-5.943-19.657v-226.971c0-6.171 1.6-12.114 4.8-17.371s7.543-9.6 12.8-12.571l184.914-73.829c4.8-2.743 10.286-4.343 16-4.343 0.229 0 0.457 0 0.457 0s0.457 0 0.457 0c5.714 0 11.2 1.371 16 4.343l184.914 73.829c5.257 2.971 9.6 7.086 12.8 12.571zM770.286 574.628l-185.371-82.286-185.6 82.286v32.229l185.6-78.4 185.371 78.4v-32.229zM770.286 678.857l-185.143-84.8-185.6 84.8v35.886l185.6-78.171 185.371 79.314-0.229-37.029zM486.4 355.2l-216 80c-4.571 1.6-8.914 2.514-13.486 2.514-0.229 0-0.457 0-0.686 0s-0.457 0-0.686 0c-4.571 0-8.914-0.914-13.486-2.514l-216-80c-7.771-2.971-13.943-7.771-18.743-14.629-5.029-6.857-7.314-14.629-7.314-22.857v-264.686c0-7.314 1.829-14.171 5.486-20.343s8.686-11.2 15.086-14.629l216-86.171c5.714-3.429 11.886-5.029 18.743-5.029 0.229 0 0.457 0 0.686 0s0.457 0 0.686 0c6.857 0 13.029 1.6 18.743 5.029l216 110.4c6.4 3.429 11.429 8.457 15.086 14.629s5.486 13.029 5.486 20.343v240.457c0 8.229-2.286 16-7.086 22.857-4.571 6.857-10.743 11.657-18.514 14.629zM472.686 87.543l-216.686-98.514-216.914 96v37.714l216.914-91.429 216.686 93.943v-37.714zM472.686 206.857l-216.686-98.971-216.914 98.971v41.829l216.914-91.2 216.686 92.571v-43.2zM1144.457 355.2l-216 80c-4.571 1.6-8.914 2.514-13.486 2.514-0.229 0-0.457 0-0.686 0s-0.457 0-0.686 0c-4.571 0-8.914-0.914-13.486-2.514l-216-80c-7.771-2.971-13.943-7.771-18.743-14.629s-7.086-14.4-7.086-22.857v-264.686c0-7.314 1.829-14.171 5.486-20.343s8.686-11.2 15.086-14.629l216-86.171c5.714-3.429 11.886-5.029 18.743-5.029 0.229 0 0.457 0 0.686 0s0.457 0 0.686 0c6.857 0 13.029 1.6 18.743 5.029l216 110.4c6.4 3.429 11.429 8.457 15.086 14.629s5.486 13.029 5.486 20.343v240.457c0 8.229-2.286 16-7.086 22.857s-10.971 11.657-18.743 14.629zM1130.971 87.543l-216.686-98.514-216.914 96v37.714l216.914-91.429 216.686 93.943v-37.714zM1130.971 206.857l-216.686-98.971-216.914 98.971v41.829l216.914-91.2 216.686 92.571v-43.2z" />
+<glyph unicode="&#xe624;" glyph-name="replicator" data-tags="replicator" d="M1.6 152.228v180.571c0 10.971 3.2 21.029 9.371 30.4s14.4 16.229 24.686 20.8l184.457 80.686v173.714c0 10.971 3.2 21.029 9.371 30.4s14.4 16.229 24.686 20.8l200.457 83.429c6.629 2.971 13.943 4.343 21.714 4.343s15.086-1.371 21.714-4.343l198.171-83.429c10.286-4.571 18.514-11.657 24.686-20.8 6.171-9.371 9.371-19.429 9.371-30.4v-173.714l186.057-80.686c10.514-4.571 18.743-11.657 24.914-20.8 6.171-9.371 9.143-19.429 9.143-30.4v-180.571c0-10.514-2.743-20.114-8.229-29.029s-13.029-15.771-22.629-20.343l-194.971-97.143c-7.314-4.114-15.543-6.171-24.914-6.171s-17.6 2.057-24.914 6.171l-195.2 97.143c-1.371 0.686-2.514 1.143-2.971 1.829-0.686-0.686-1.6-1.143-2.971-1.829l-195.657-97.143c-7.314-4.114-15.543-6.171-24.914-6.171s-17.6 2.057-24.914 6.171l-195.657 97.143c-9.6 4.571-17.143 11.429-22.629 20.343s-8.229 18.743-8.229 29.029zM76.571 341.257l176.457-75.2 176.457 75.2-176.457 75.2-176.457-75.2zM280.914 69.028l167.543 83.429v136.229l-167.543-71.086c0-0.229 0-148.571 0-148.571zM284.114 639.771l192.457-82.057 192.457 82.057-192.457 82.057-192.457-82.057zM504.457 393.143l167.543 71.543v115.429l-167.543-71.086v-115.886zM523.657 341.257l176.457-75.2 176.457 75.2-176.457 75.2-176.457-75.2zM728 69.028l167.543 83.429v136.229l-167.543-71.086v-148.571zM1160.457 476.8c-5.943 8.914-13.943 15.771-24.229 20.343l-186.057 78.4v168.457c0 10.743-2.971 20.571-9.143 29.486s-14.171 15.771-24 20.343l-187.657 80.914c-6.4 2.743-13.486 4.114-21.257 4.114-7.543 0-14.629-1.371-21.257-4.114l-119.086-51.429c6.629 2.743 13.714 4.343 21.257 4.343 7.771 0 14.857-1.371 21.257-4.343l201.6-86.4c10.057-4.571 18.057-11.429 24.229-20.343 6.171-9.143 9.143-18.971 9.143-29.714v-169.829l185.143-78.857c10.286-4.571 18.286-11.429 24.229-20.343 5.943-9.143 8.914-18.971 8.914-29.714v-176.686c0-10.286-2.743-19.657-8-28.343-1.143-1.829-2.514-3.657-3.886-5.486l87.086 46.4c9.371 4.571 16.686 11.2 21.943 19.886s8 18.057 8 28.343v175.314c0.686 10.514-2.286 20.343-8.229 29.257z" />
+<glyph unicode="&#xe625;" glyph-name="route" data-tags="route" d="M1102.4 620.8l-150.4 146.971v-109.486h-146.743v-73.143h146.743v-109.714zM297.829 181.943l-150.4 146.971v-109.486h-146.743v-73.143h146.743v-109.714zM1021.486 440l-437.029-1.143v146.971h36.8l74.971 72.457h-111.771v137.829c0.914 0 2.057-0.229 2.971-0.229 24.686-18.286 47.086-39.543 67.2-63.314 17.6-20.8 33.371-43.886 47.314-68.571l62.171 60.114c-2.971 5.029-5.943 10.057-9.143 15.086 5.029-2.971 10.057-6.171 14.857-9.6l54.4 52.571 3.2 4.8c-13.029 9.371-26.743 18.286-40.914 26.743-72.686 42.514-152.229 63.771-238.4 63.771s-165.714-21.257-238.4-63.771c-72.686-42.514-130.286-100.114-172.8-172.8-42.514-73.143-63.771-152.686-63.771-238.857 0-12.343 0.457-24.457 1.371-36.343l437.486 0.686v-146.971h-35.657l-74.971-72.457h110.629v-138.971c-1.143 0-2.514 0.229-3.657 0.229-23.771 18.057-45.486 38.629-65.143 61.943-18.057 21.257-34.057 44.8-48.457 70.4l-62.171-60.114c3.2-5.486 6.4-10.743 9.6-16-5.257 3.2-10.514 6.629-15.771 10.057l-58.514-56.457c13.257-9.6 27.2-18.743 41.829-27.2 72.686-42.514 152.229-63.771 238.4-63.771s165.714 21.257 238.4 63.771c72.686 42.514 130.286 100.114 172.8 172.8s63.771 152.229 63.771 238.4c-0.229 12.8-0.686 25.371-1.6 37.943zM248.914 438.857h-94.857c3.657 40.457 13.714 79.314 29.714 116.8 4.571 10.286 9.371 20.343 14.4 30.171h75.2c-13.714-46.857-21.714-96-24.457-146.971zM299.657 658.286h-53.029c6.857 8.229 14.171 16 21.714 23.543 22.171 22.171 46.857 41.371 74.286 57.829-10.971-17.6-21.257-35.886-30.857-55.086-4.343-8.686-8.457-17.371-12.114-26.286zM512 438.857h-183.543c3.2 50.286 13.486 98.743 30.4 145.143 0.229 0.686 0.457 1.143 0.686 1.829h152.457v-146.971zM512 658.286h-120c14.857 27.429 32 52.571 51.2 75.429 19.657 23.314 41.6 44.114 65.6 62.171 1.143 0 2.057 0.229 3.2 0.229v-137.829zM654.629 69.028c-18.971-22.629-40-42.743-63.086-60.343-2.286-0.229-4.8-0.457-7.086-0.686v138.971h122.743c-15.314-28.571-32.914-54.4-52.571-77.943zM584.457 219.428v146.971h185.143c-3.2-50.971-13.257-99.886-30.171-146.971h-154.971zM827.886 122.286c-21.029-21.029-44.571-39.543-70.4-55.543 10.057 16.457 19.657 33.371 28.343 51.429 4.8 9.6 9.143 19.2 13.257 29.029h51.429c-7.086-8.686-14.629-17.143-22.629-24.914zM912.229 248.457c-4.343-10.057-8.914-19.657-13.714-29.029h-73.6c13.486 46.857 21.257 96 23.771 146.971h93.486c-3.657-40.686-13.486-80-29.943-117.943z" />
+<glyph unicode="&#xe800;" glyph-name="builder-image" data-tags="builder-image" d="M1009.829 759.086c-9.371 13.486-21.943 23.086-37.486 28.8l-433.143 157.714c-8.686 3.2-17.371 4.8-26.057 4.8-0.229 0-0.457 0-0.686 0h-0.457c-0.229 0-0.457 0-0.686 0-8.686-0.229-17.371-1.829-26.057-4.8l-432.914-157.486c-15.543-5.714-28.114-15.314-37.486-28.8s-14.171-28.571-14.171-44.8v-472.686c0-14.4 3.657-27.657 10.971-40s17.371-21.943 30.171-29.029l433.143-236.114c11.2-6.4 23.314-9.6 36.343-9.829 0.229 0 0.457 0 0.686 0h0.457c0.229 0 0.457 0 0.686 0 13.029 0.229 25.143 3.429 36.343 9.829l433.371 236.343c12.8 6.857 22.857 16.686 30.171 29.029s10.971 25.6 10.971 40v472.229c0 16.457-4.8 31.314-14.171 44.8zM512 857.6l386.057-142.171-386.057-140.114-379.886 139.886 379.886 142.4zM438.857 337.143c-53.486 21.257-235.657 93.486-318.171 126.4l219.2 75.429 98.971-35.657v-166.171zM585.143 503.086l99.657 35.886 219.2-75.429c-82.971-32.914-266.286-105.829-318.857-126.629v166.171zM73.143 632l156.8-53.257-156.8-53.029v106.286zM73.143 375.543l120.686-49.829-120.686-40.457v90.286zM292.114 281.828l146.743-65.6v-153.6l-308.343 166.857 161.6 52.343zM585.143 62.4v153.829l147.429 65.829 161.6-52.114-309.029-167.543zM951.314 286.4l-120.457 39.314 120.457 50.971v-90.286zM951.314 526.857l-156.571 51.657 156.571 54.4v-106.057z" />
+<glyph unicode="&#xe900;" glyph-name="trend-down" data-tags="trend-down" d="M1024 130.235v405.353c-0.311 14.638-6.224 29.271-16.809 39.858-10.587 10.585-24.907 16.187-39.541 16.498l-46.699 0.002c-14.946 0-29.573-5.915-40.162-16.503-10.585-10.585-16.503-25.221-16.187-39.856l-0.315-182.281-331.95 331.952c-7.767 7.767-19.719 7.767-27.488 0l-139.253-139.255-248.624 248.617-114.75-114.743 349.625-349.63c7.771-7.769 19.723-7.769 27.493 0l133.55 133.55 231.847-230.51-182.75-0.313c-14.638 0.313-29.271-5.605-39.856-16.19-10.585-10.587-16.501-25.221-16.19-39.856v-46.697c0-14.942 5.605-29.266 16.19-39.851 10.585-10.587 25.216-16.503 40.16-16.503h405.353c14.185-0.304 28.066 5.554 38.546 15.554 4.011 2.238 7.065 5.874 8.581 10.306 5.904 9.035 9.23 19.598 9.23 30.496z" />
+<glyph unicode="&#xe901;" glyph-name="trend-up" data-tags="trend-up" d="M1014.775 778.658c-1.515 4.432-4.569 8.071-8.581 10.306-10.48 10-24.361 15.858-38.546 15.554l-405.353-0.002c-14.944 0-29.575-5.915-40.16-16.501s-16.19-24.907-16.19-39.851v-46.697c-0.311-14.633 5.605-29.266 16.19-39.854 10.585-10.585 25.216-16.501 39.854-16.19l182.75-0.311-231.847-230.51-133.55 133.55c-7.769 7.769-19.721 7.769-27.493 0l-349.625-349.63 114.75-114.745 248.624 248.619 139.253-139.255c7.769-7.767 19.721-7.767 27.49 0l331.947 331.95 0.313-182.281c-0.313-14.633 5.605-29.269 16.19-39.854 10.587-10.587 25.216-16.503 40.162-16.503l46.699 0.002c14.631 0.311 28.953 5.913 39.538 16.498 10.587 10.587 16.501 25.218 16.811 39.856v405.355c0 10.898-3.326 21.461-9.227 30.491z" />
+<glyph unicode="&#xe902;" glyph-name="build" data-tags="build" d="M1010.971 279.771c-9.371 13.486-21.943 23.314-37.486 29.029l-30.171 10.971-129.829-51.886 85.714-31.771-384.229-140.343-0.914 0.229-382.171 139.657 83.2 31.086-132.8 53.029-30.171-10.971c-15.543-5.714-28.114-15.314-37.486-29.029-8.229-11.886-13.029-24.914-13.943-39.086h-0.229v-12.343l0.457-0.229c1.143-11.657 4.571-22.4 10.743-32.686 7.314-12.343 17.371-21.943 30.171-29.029l433.6-174.857c11.2-6.4 23.314-9.6 36.571-9.829v0c0.229 0 0.457 0 0.686 0 0 0 0.229 0 0.229 0s0.229 0 0.229 0 0.457 0 0.686 0v0c13.029 0.229 25.371 3.429 36.571 9.829l433.829 175.086c12.8 7.086 22.857 16.686 30.171 29.029 6.171 10.286 9.6 21.029 10.743 32.686l0.457 0.229v15.086l-0.457-0.229c-1.829 13.029-6.4 25.143-14.171 36.343zM1010.971 520.914c-9.371 13.486-21.943 23.314-37.486 29.029l-30.171 10.971-129.829-51.886 85.714-31.771-384.229-140.343-0.914 0.229-382.171 139.657 83.2 31.086-132.8 52.8-30.171-10.971c-15.543-5.714-28.114-15.314-37.486-29.029-8.229-11.886-13.029-24.914-13.943-39.086h-0.229v-12.343l0.457-0.229c1.143-11.657 4.571-22.4 10.743-32.686 7.314-12.343 17.371-21.943 30.171-29.029l433.6-174.629c11.2-6.4 23.314-9.6 36.571-9.829v0c0.229 0 0.457 0 0.686 0 0 0 0.229 0 0.229 0s0.229 0 0.229 0 0.457 0 0.686 0v0c13.029 0.229 25.371 3.429 36.571 9.829l433.829 175.086c12.8 7.086 22.857 16.686 30.171 29.029 6.171 10.286 9.6 21.029 10.743 32.686l0.457 0.229v14.857l-0.457-0.229c-1.829 13.257-6.4 25.371-14.171 36.571zM780.571 675.2l-115.886-42.514 31.771-87.543 98.057 35.429-0.457 0.229 18.286 6.629zM359.314 633.6l-115.886 42.514-32.229-89.143 116.114-42.057zM1024.686 722.743c-1.371 13.029-5.943 25.371-13.714 36.571-9.371 13.486-21.943 23.314-37.486 29.029l-433.829 157.714c-8.686 3.2-17.371 4.8-26.057 4.8v0c-0.229 0-0.457 0-0.686 0 0 0-0.229 0-0.229 0s-0.229 0-0.229 0-0.457 0-0.686 0v0c-8.686-0.229-17.371-1.829-26.057-4.8l-433.829-157.714c-15.314-5.943-27.886-15.543-37.486-29.029-8.229-12.114-12.8-25.143-13.943-39.314h-0.229v-12.343l0.457-0.229c1.143-11.657 4.571-22.4 10.743-32.686 7.314-12.343 17.371-21.943 30.171-29.029l98.743-39.771 0.229 0.686 32.229 89.371 4.8 1.829-45.943 16.686 383.086 142.629 384.229-142.4-50.057-18.286 2.057-1.829 31.771-88 2.057-1.371 98.971 40c12.8 7.086 22.857 16.686 30.171 29.029 6.171 10.286 9.6 21.029 10.743 32.686l0.457 0.229v15.086l-0.457 0.457zM512.229 577.828l-82.514 30.171-32-88.457 32.914-11.886h-1.829l44.114-17.829c11.2-6.4 23.314-9.6 36.571-9.829v0c0.229 0 0.457 0 0.686 0 0 0 0.229 0 0.229 0s0.229 0 0.229 0 0.457 0 0.686 0v0c13.029 0.229 25.371 3.429 36.571 9.829l44.114 17.829 34.286 12.343-32 87.086-81.143-29.714-0.914 0.457z" />
+<glyph unicode="&#xe903;" glyph-name="cloud-security" data-tags="cloud-security" horiz-adv-x="1097" d="M548.343 597.257c-22.4 0-41.6-8-57.371-23.771s-23.771-34.971-23.771-57.371v-60.8h162.057v60.8c0 22.4-8 41.6-23.771 57.371-15.543 16-34.743 23.771-57.143 23.771zM1049.143 427.657c-32 39.771-72.686 65.371-121.829 76.8 15.543 24 23.314 50.286 23.314 78.857 0 40.457-14.171 74.971-42.971 103.543-28.114 28.571-62.629 42.971-103.086 42.971-36.571 0-68.114-11.886-94.857-35.429-22.4 54.171-58.286 97.829-107.2 131.429s-103.543 50.286-163.657 50.286c-80.686 0-149.714-28.571-206.857-85.714s-85.714-126.171-85.714-206.857c0-5.714 0.457-13.943 1.143-24.686-44.114-20.571-79.771-51.657-106.971-93.486-26.971-41.6-40.457-87.543-40.457-137.829 0-70.4 25.143-130.743 75.2-180.8s110.4-75.2 180.8-75.2h621.714c60.571 0 112.229 21.486 155.2 64.229 42.971 42.971 64.229 94.629 64.229 155.2 0 51.429-16 96.914-48 136.686zM730.743 250.057c0-8.457-2.971-15.543-8.914-21.486s-13.029-8.914-21.486-8.914h-304c-8.457 0-15.543 2.971-21.486 8.914s-8.914 13.029-8.914 21.486v175.314c0 8.457 2.971 15.543 8.914 21.486s13.029 8.914 21.486 8.914h10.057v60.8c0 38.857 13.943 72 41.829 99.886s61.257 41.829 100.114 41.829 72.229-13.943 100.114-41.829c27.886-27.886 41.829-61.029 41.829-99.886v-60.8h10.057c8.457 0 15.543-2.971 21.486-8.914s8.914-13.029 8.914-21.486v-175.314z" />
+<glyph unicode="&#xe904;" glyph-name="cloud-tenant" data-tags="cloud-tenant" horiz-adv-x="1097" d="M1041.6 471.771c-29.486 33.371-68.571 63.543-141.714 89.143 41.143 96 0.457 151.314-28.343 179.886-28.114 28.571-62.629 42.971-103.086 42.971-36.571 0-68.114-11.886-94.857-35.429-0.457 0.686-0.914 1.371-1.371 1.829l-73.371-544.457-453.029 353.6c-43.657-20.571-79.086-51.429-106.057-93.029s-40.457-87.543-40.457-137.829c0-70.4 25.143-130.743 75.2-180.8s110.4-75.2 180.8-75.2h621.714c60.571 0 112.229 21.486 155.2 64.229 42.971 42.971 64.229 105.6 64.229 155.2 0 24.686 10.971 105.829-54.857 179.886zM132.114 655.314l421.486-329.143 68.343 506.743c-74.286 102.629-162.286 117.943-217.829 117.943-74.971 0-139.429-26.514-192.457-79.771s-79.771-117.486-79.771-192.457c0-5.257 0.457-13.029 1.143-22.857-0.229-0.229-0.686-0.229-0.914-0.457z" />
+<glyph unicode="&#xe905;" glyph-name="project" data-tags="pficon-project" d="M367.982-71.022l-2.267 217.307c-47.47 43.447-72.411 89.673-72.411 181.175v0 0c-0.805 110.665 38.107 257.682 183.223 257.682h71.461c146.651 0.219 182.199-146.286 183.15-257.17v0c0-91.721-20.846-136.85-70.656-182.418v0l-2.267-216.137zM658.286 768c0-80.823-65.536-146.359-146.359-146.359s-146.359 65.536-146.359 146.359c0 80.823 65.536 146.359 146.359 146.359s146.359-65.536 146.359-146.359zM292.571 695.15c0-60.709-49.225-109.861-109.861-109.861s-109.861 49.225-109.861 109.861c0 60.709 49.225 109.861 109.861 109.861s109.861-49.225 109.861-109.861zM292.864-0.293l0.439 146.871c0 0-74.825 41.326-75.922 183.223v0 0 0 0c-1.024 79.36 14.19 151.040 75.776 218.917h-89.673c-203.483-0.146-199.461-114.395-200.997-193.024 1.317-65.902-0.805-136.558-0.805-136.558l1.682-219.136zM951.223 695.15c0-60.709-49.225-109.861-109.861-109.861s-109.861 49.225-109.861 109.861c0 60.709 49.225 109.861 109.861 109.861s109.861-49.225 109.861-109.861zM733.403-0.293l-0.439 146.871c0 0 71.826 63.781 73.582 183.223v0 0 0 0c1.024 79.36-11.922 151.040-73.509 218.917v0h87.406c203.483-0.146 201.728-114.395 203.337-193.024-1.317-65.902-0.439-136.558-0.439-136.558l0.658-219.136z" />
+<glyph unicode="&#xe906;" glyph-name="enterprise" data-tags="enterprise" d="M511.543 950.857h-73.143l-438.4-109.714v-772.571l584.457-141.714h73.143l365.257 146.286v768l-511.314 109.714zM584.686 4.571l-73.143 17.371v109.486l-365.486 88v-111.086l-72.914 17.371v624.229l511.543-113.6v-631.771zM949.714 122.743l-73.143-29.257v86.171l-146.057-57.6v-87.086l-73.143-29.257v616l292.343 112.686v-611.657zM146.057 512l365.486-82.286v147.429l-365.486 81.143zM146.057 292.571l365.486-86.857v147.429l-365.486 85.714zM876.8 618.514l-146.286-57.6v-146.286l146.286 57.6zM876.8 399.086l-146.286-57.6v-146.286l146.286 57.6z" />
+<glyph unicode="&#xe907;" glyph-name="flavor" data-tags="flavor" d="M56.229 804.8h-36.114c-10.057 0-19.2-9.6-19.2-19.886v-110.629l-0.229-584.229c0-10.057 9.371-16.914 19.2-16.914h36.114c10.057 0 17.143 6.857 17.143 16.914v694.857c0 10.057-7.086 19.886-16.914 19.886zM1006.857 804.8h-36.114c-10.057 0-19.2-9.6-19.2-19.886v-110.629l-0.229-584.229c0-10.057 9.371-16.914 19.2-16.914h36.114c10.057 0 17.143 6.857 17.143 16.914v694.857c0 10.057-7.086 19.886-16.914 19.886zM389.029 585.143h48.914v-74.057h-48.914v74.057zM841.6 877.257h-659.2c-20.571 0-35.886-17.829-35.886-38.4v-802.514c0-20.571 15.314-36.114 35.886-36.114h659.429c20.571 0 35.886 17.829 35.886 38.4v802.514c-0.229 20.571-15.543 36.114-36.114 36.114zM659.2 249.371h-58.743v-58.743h58.743v-58.971h-58.743v-58.743h-58.971v58.743h-58.743v-58.743h-58.743v58.743h-58.743v58.971h58.743v58.743h-58.743v58.743h58.743v58.743h58.743v-58.743h58.743v58.743h58.971v-58.743h58.743v-58.743zM731.886 585.371h-54.4v-146.514h-332.114v146.514h-54.629v220.343h441.143v-220.343zM486.857 585.143h48.914v-74.057h-48.914v74.057zM584.914 585.143h48.914v-74.057h-48.914v74.057z" />
+<glyph unicode="&#xe908;" glyph-name="memory" data-tags="memory" horiz-adv-x="1096" d="M1095.92 662.799v101.829c0 21.462-16.439 39.042-36.531 39.042l-1022.858-0.037c-20.092 0-36.531-17.58-36.531-39.042v-652.301c0-21.462 16.439-39.042 36.531-39.042l314.62-0.041c0 0 12.557 2.511 12.557 14.612v133.337h75.801v-132.424c0 0-0.685-15.526 9.818-15.526l610.062 0.078c20.092 0 36.531 17.58 36.531 39.042v371.699l-0.037 178.765 0.037 0.007zM145.666 150.607h-73.061v106.167h73.061v-106.167zM290.647 382.349c0-7.534-6.165-13.699-13.699-13.699h-118.725c-7.534 0-13.699 6.165-13.699 13.699v261.423c0 7.534 6.165 13.699 13.699 13.699h118.725c7.534 0 13.699-6.165 13.699-13.699v-261.423zM292.93 150.607h-75.344v106.167h75.344v-106.167zM510.973 382.349c0-7.534-6.165-13.699-13.699-13.699h-118.725c-7.534 0-13.699 6.165-13.699 13.699v261.423c0 7.534 6.165 13.699 13.699 13.699h118.725c7.534 0 13.699-6.165 13.699-13.699v-261.423zM582.892 150.607h-73.061v106.167h73.061v-106.167zM584.034 382.349v261.423c0 7.534 6.165 13.699 13.699 13.699h118.725c7.534 0 13.699-6.165 13.699-13.699v-261.423c0-7.534-6.165-13.699-13.699-13.699h-118.725c-7.534 0-13.699 6.165-13.699 13.699zM731.298 150.607h-75.344v106.167h75.344v-106.167zM876.279 150.607h-75.344v106.167h75.344v-106.167zM950.482 382.349c0-7.534-6.165-13.699-13.699-13.699h-118.725c-7.534 0-13.699 6.165-13.699 13.699v261.423c0 7.534 6.165 13.699 13.699 13.699h118.725c7.534 0 13.699-6.165 13.699-13.699v-261.423zM1022.402 150.607h-73.061v106.167h73.061v-106.167zM-0.457 657.47c40.64 0 75.344-51.143 75.344-91.783s-34.704-92.012-75.344-92.012v183.795zM1095.883 473.675c-40.64 0-76.678 51.143-76.678 91.783s33.905 91.783 76.678 91.783z" />
+<glyph unicode="&#xe909;" glyph-name="network" data-tags="network" horiz-adv-x="1170" d="M1024 877.257h-877.714v-219.429h877.714v219.429zM949.257 731.428h-218.971v73.143h218.971v-73.143zM1080.457 276.114c-10.743 10.743-23.543 16-38.857 16h-54.857v146.057c0 19.886-7.314 36.8-21.714 51.429-14.4 14.4-31.543 21.714-51.429 21.714h-291.886v110.4h-73.143v-110.629h-292.343c-19.886 0-36.8-7.314-51.429-21.714-14.4-14.4-21.714-31.543-21.714-51.429v-146.057h-54.857c-15.314 0-28.114-5.257-38.857-16s-16-23.543-16-38.857v-182.629c0-15.314 5.257-28.114 16-38.857s23.543-16 38.857-16h182.629c15.314 0 28.114 5.257 38.857 16s16 23.543 16 38.857v182.629c0 15.314-5.257 28.114-16 38.857s-23.543 16-38.857 16h-54.857v146.057h292.571v-146.057h-54.857c-15.314 0-28.114-5.257-38.857-16s-16-23.543-16-38.857v-182.629c0-15.314 5.257-28.114 16-38.857s23.543-16 38.857-16h182.629c15.314 0 28.114 5.257 38.857 16s16 23.543 16 38.857v182.629c0 15.314-5.257 28.114-16 38.857s-23.543 16-38.857 16h-54.857v146.057h292.343v-146.057h-54.857c-15.314 0-28.114-5.257-38.857-16s-16-23.543-16-38.857v-182.629c0-15.314 5.257-28.114 16-38.857s23.543-16 38.857-16h182.629c15.314 0 28.114 5.257 38.857 16s16 23.543 16 38.857v182.629c0 15.314-5.257 28.343-16 39.086z" />
+<glyph unicode="&#xe90a;" glyph-name="regions" data-tags="regions" horiz-adv-x="1170" d="M585.371 293.486c-90.057 0-174.4 8-252.8 24.457-78.4 16.229-140.114 40.457-185.143 72.457v-97.143c0-26.286 19.657-50.743 58.743-73.143s92.343-40.229 159.771-53.257c67.2-13.029 140.571-19.657 219.657-19.657s152.229 6.629 219.657 19.657c67.2 13.029 120.686 30.857 159.771 53.257 39.086 22.629 58.743 46.857 58.743 73.143v97.143c-45.486-32-107.2-56-185.6-72.457-78.4-16.229-162.743-24.457-252.8-24.457zM585.371 74.286c-90.057 0-174.4 8-252.8 24.457-78.4 16.229-140.114 40.457-185.143 72.457v-97.143c0-26.286 19.657-50.743 58.743-73.143s92.343-40.229 159.771-53.257c67.2-13.029 140.571-19.657 219.657-19.657s152.229 6.629 219.657 19.657c67.2 13.029 120.686 30.857 159.771 53.257 39.086 22.629 58.743 46.857 58.743 73.143v97.143c-45.486-32-107.2-56-185.6-72.457-78.4-16.229-162.743-24.457-252.8-24.457zM585.371 512.686c-90.057 0-174.4 8-252.8 24.457-78.4 16.229-140.114 40.457-185.143 72.457v-97.143c0-26.286 19.657-50.743 58.743-73.143s92.343-40.229 159.771-53.257c67.2-13.029 140.571-19.657 219.657-19.657s152.229 6.629 219.657 19.657c67.2 13.029 120.686 30.857 159.771 53.257 39.086 22.629 58.743 46.857 58.743 73.143v97.143c-45.486-32-107.2-56-185.6-72.457-78.4-16.229-162.743-24.457-252.8-24.457zM965.029 877.943c-39.086 22.4-92.571 40.229-159.771 53.257s-140.571 19.657-219.657 19.657c-79.314 0-152.457-6.629-219.886-19.657-67.2-13.257-120.686-30.857-159.543-53.257-39.086-22.629-58.743-46.857-58.743-73.143v-73.143c0-26.286 19.657-50.743 58.743-73.143s92.571-40.229 159.771-53.257c67.2-13.029 140.571-19.657 219.657-19.657s152.457 6.629 219.657 19.657c67.2 13.029 120.686 30.857 159.771 53.257 39.086 22.629 58.743 46.857 58.743 73.143v73.143c0 26.286-19.657 50.743-58.743 73.143zM55.543 804.8h-36.114c-10.057 0-19.2-9.6-19.2-19.886v-110.629l-0.229-584.229c0-10.057 9.371-16.914 19.2-16.914h36.114c10.057 0 17.143 6.857 17.143 16.914v694.857c0 10.057-7.086 19.886-16.914 19.886zM1153.371 804.8h-36.114c-10.057 0-19.2-9.6-19.2-19.886v-110.629l-0.229-584.229c0-10.057 9.371-16.914 19.2-16.914h36.114c10.057 0 17.143 6.857 17.143 16.914v694.857c0 10.057-7.086 19.886-16.914 19.886z" />
+<glyph unicode="&#xe90b;" glyph-name="repository" data-tags="repository" horiz-adv-x="1170" d="M758.857 438.857c25.143 0 45.714-38.629 45.714-38.629l22.857-34.514h50.286v182.857c0 0-0.229 36.571-36.8 36.571-41.829 0-292.571 0-292.571 0l-25.829 40.686c0 0-15.086 32.457-47.086 32.457-36.571 0-121.6 0-146.286 0-36.571 0-36.571-36.571-36.571-36.571v-402.286h146.286v146.286c0 57.143 16 73.143 75.429 73.143 0 0 219.429 0 244.571 0zM539.2 731.428c25.143 0 45.714-38.629 45.714-38.629l22.857-34.514h50.286v182.857c0 0-0.229 36.571-36.8 36.571-41.829 0-292.571 0-292.571 0l-25.829 40.686c0 0-15.086 32.457-47.086 32.457-36.343 0-121.371 0-146.057 0-36.571 0-36.571-36.571-36.571-36.571v-402.286h146.057v146.286c0 57.143 16 73.143 75.429 73.143 0 0 219.429 0 244.571 0zM1060.343 292.571c-41.829 0-292.571 0-292.571 0l-25.829 40.686c0 0-15.086 32.457-47.086 32.457-36.571 0-121.6 0-146.286 0-36.571 0-36.571-36.571-36.571-36.571v-402.286h585.143v329.143c0 0-0.229 36.571-36.8 36.571z" />
+<glyph unicode="&#xe90c;" glyph-name="resource-pool" data-tags="resource-pool" horiz-adv-x="1096" d="M1020.571 804.571v91.429c0 30.171-24.686 54.857-54.629 54.857h-838.171c-29.943 0-54.629-24.686-54.629-54.857v-693.486c0-30.171 24.686-54.857 54.629-54.857h18.514l0.914-1.143v-219.429h803.886v219.429l0.686 1.143h14.171c30.171 0 54.629 24.686 54.629 54.857v64.229l1.143 2.057v535.771h-1.143zM293.029 0h-72.914v146.286h72.914v-146.286zM438.629 0h-72.914v146.286h72.914v-146.286zM584.457 0h-72.914v146.286h72.914v-146.286zM730.286 0h-72.914v146.286h72.914v-146.286zM800.914 660.571v0h-73.143v-73.143h72.914v-73.143h-72.914v-73.143h72.914v-73.143h-72.914v-73.143h-72.914v73.143h-72.914v-73.143h-72.914v73.143h-72.914v-73.143h-72.686v73.143h-72.914v73.143h72.914v73.143h-72.914v73.143h72.914v73.143h-72.914v73.143h72.914v73.143h72.914v-73.143h72.914v73.143h72.914v-73.143h72.914v73.143h72.914v-73.143h72.914v-73.143zM875.886 0h-72.914v146.286h72.914v-146.286z" />
+<glyph unicode="&#xe90d;" glyph-name="server" data-tags="server" d="M986.057 145.828h-949.714c-9.829 0-18.286-3.429-25.6-10.743-7.086-7.086-10.743-15.771-10.743-25.6v-146.057c0-10.057 3.657-18.514 10.971-25.6 7.086-7.086 15.771-10.743 25.6-10.743h949.943c9.829 0 18.286 3.429 25.6 10.743 7.086 7.086 10.743 15.771 10.743 25.6v146.057c0 9.829-3.657 18.514-11.2 25.6-7.086 7.086-15.771 10.743-25.6 10.743zM949.714 0h-365.257v73.143h365.257v-73.143zM1011.886 719.771c-7.086 7.086-15.771 10.743-25.6 10.743h-949.714c-9.829 0-18.286-3.657-25.6-10.971-7.086-7.086-10.743-15.771-10.743-25.6v-146.057c0-9.829 3.429-18.286 10.743-25.6 7.086-7.086 15.771-10.743 25.6-10.743h949.943c9.829 0 18.286 3.429 25.6 10.743 7.086 7.086 10.743 15.771 10.743 25.6v146.057c0 9.829-3.657 18.286-10.971 25.829zM949.714 584.228h-219.2v73.143h219.2v-73.143zM986.286 437.943h-949.714c-9.829 0-18.286-3.429-25.6-10.743-7.086-7.086-10.743-15.771-10.743-25.6v-146.057c0-9.829 3.429-18.286 10.743-25.6 7.086-7.086 15.771-10.743 25.6-10.743h949.943c9.829 0 18.286 3.429 25.6 10.743 7.086 7.086 10.743 15.771 10.743 25.6v146.057c0 10.057-3.657 18.514-10.971 25.6-7.086 7.086-15.771 10.743-25.6 10.743zM949.714 292.114h-584.457v73.143h584.457v-73.143zM33.6 767.314h956.114c33.829 0 41.143 29.943 24.686 46.4s-99.429 101.714-114.286 116.571-32 20.571-48 20.571c-6.629 0-126.629 0-265.371 0-49.6 0-101.257 0-150.629 0-138.743 0-258.743 0-265.371 0-16 0-33.143-5.714-48-20.571s-97.829-100.114-114.286-116.571-9.143-46.4 25.143-46.4z" />
+<glyph unicode="&#xe90e;" glyph-name="storage-domain" data-tags="storage-domain" horiz-adv-x="1097" d="M58.743 658.514c39.086-22.4 92.571-40.229 159.771-53.257s140.571-19.657 219.657-19.657c79.086 0 152.457 6.629 219.657 19.657s120.686 30.857 159.771 53.257c39.086 22.629 58.743 46.857 58.743 73.143v73.143c0 26.286-19.657 50.743-58.743 73.143s-92.571 40.229-159.771 53.257c-67.2 13.029-140.571 19.657-219.657 19.657-79.314 0-152.457-6.629-219.886-19.657-67.2-13.257-120.686-30.857-159.543-53.257-39.086-22.629-58.743-46.857-58.743-73.143v-73.143c0-26.286 19.657-50.743 58.743-73.143zM1075.429 8.914l-134.171 88.457c-13.257 9.371-26.743 13.029-37.257 11.657-0.457 0-0.914-0.229-1.371-0.229 24.686 37.257 36.571 82.971 30.857 130.514-12.8 106.286-109.486 181.943-215.771 168.914s-181.943-109.486-169.143-215.771 109.486-181.943 215.771-168.914c47.771 5.714 89.143 28.571 119.314 61.257 0.914-10.971 7.771-23.771 20.571-34.971l118.171-108.8c10.743-9.371 24-13.257 36.571-11.657 10.743 1.371 21.029 6.629 28.114 15.771 15.314 19.657 10.286 48.457-11.657 63.771zM756.8 87.543c-70.857-8.686-135.543 41.829-144 112.686s41.829 135.543 112.686 144 135.543-41.829 144-112.686-41.829-135.314-112.686-144zM58.743 439.314c39.086-22.4 92.343-40.229 159.771-53.257 67.2-13.029 140.571-19.657 219.657-19.657 26.971 0 53.029 0.686 78.629 2.286 42.514 62.4 110.629 106.743 191.543 116.571 50.743 6.171 99.886-2.057 143.314-21.486 16.457 15.543 24.686 31.543 24.686 48.686v97.143c-45.486-32-107.2-56-185.6-72.457-78.4-16.229-162.743-24.457-252.8-24.457s-174.4 8-252.8 24.457c-78.4 16.229-140.114 40.457-185.143 72.457v-97.143c0-26.286 19.657-50.743 58.743-73.143zM58.743 220.114c39.086-22.4 92.343-40.229 159.771-53.257 67.2-13.029 140.571-19.657 219.657-19.657 13.486 0 26.971 0.229 40.229 0.686-2.971 11.429-5.257 23.086-6.629 35.2-4.8 38.4-1.143 76.114 9.371 111.086-14.171-0.457-28.571-0.686-43.2-0.686-90.057 0-174.4 8-252.8 24.457-78.4 16.229-140.114 40.457-185.143 72.457v-97.143c0-26.286 19.657-50.743 58.743-73.143zM508.571 75.886c-23.086-1.143-46.629-1.829-70.4-1.829-90.057 0-174.4 8-252.8 24.457-78.4 16.229-140.114 40.457-185.143 72.457v-97.143c0-26.286 19.657-50.743 58.743-73.143s92.343-40.229 159.771-53.257c67.2-13.029 140.571-19.657 219.657-19.657s152.229 6.629 219.657 19.657c6.857 1.371 13.486 2.743 20.114 4.114-71.086 17.143-132.343 62.171-169.6 124.343z" />
+<glyph unicode="&#xe90f;" glyph-name="virtual-machine" data-tags="virtual-machine" horiz-adv-x="1170" d="M73.143 950.857h-73.143v-73.143c0-4.571 0-7.543 0-7.543h73.143v80.686zM0 801.6h73.143v-137.143h-73.143v137.143zM0 390.171v-24.914h73.143c21.486 0 39.086 0 39.086 0v73.143h-112.229v-48.229zM0 595.886h73.143v-137.143h-73.143v137.143zM536.457 950.857h137.143v-73.143h-137.143v73.143zM330.743 950.857h137.143v-73.143h-137.143v73.143zM742.171 950.857h137.143v-73.143h-137.143v73.143zM125.029 950.857h137.143v-73.143h-137.143v73.143zM797.943 438.4h81.371v-73.143h-81.371v73.143zM806.171 626.743h73.143v-137.143h-73.143v137.143zM386.514 438.4h137.143v-73.143h-137.143v73.143zM592.229 438.4h137.143v-73.143h-137.143v73.143zM1014.171 804.571h-134.857v27.886h-73.143v-27.886h-659.657v-181.943h-0.229v-477.714h0.229v-72h438.857v-72.914h-219.886v-73.143h585.829v72.914h-219.886v72.914l438.857 0.229v731.657h-156.114zM1024.229 219.886h-730.971v145.371h24.686v73.143h-24.686v184.229h-0.686v35.2h731.657v-437.943z" />
+<glyph unicode="&#xe910;" glyph-name="volume" data-tags="volume" d="M890.743 804.8c-39.086 22.4-92.571 40.229-159.771 53.257s-140.571 19.657-219.657 19.657c-79.314 0-152.457-6.629-219.886-19.657-67.2-13.257-120.686-30.857-159.543-53.257-39.086-22.629-58.743-46.857-58.743-73.143v-148.571c0-26.286 19.657-50.743 58.743-73.143s92.571-40.229 159.771-53.257c67.2-13.029 140.571-19.657 219.657-19.657s152.457 6.629 219.657 19.657c67.2 13.029 120.686 30.857 159.771 53.257 39.086 22.629 58.743 46.857 58.743 73.143v148.571c0 26.286-19.657 50.743-58.743 73.143zM511.086 364.114c-90.057 0-174.4 8-252.8 24.457-78.4 16.229-140.114 40.457-185.143 72.457v-243.429c0-26.286 19.657-50.743 58.743-73.143s92.343-40.229 159.771-53.257c67.2-13.029 140.571-19.657 219.657-19.657s152.229 6.629 219.657 19.657c67.2 13.029 120.686 30.857 159.771 53.257 39.086 22.629 58.743 46.857 58.743 73.143v243.429c-45.486-32-107.2-56-185.6-72.457-78.4-16.229-162.743-24.457-252.8-24.457z" />
+<glyph unicode="&#xe911;" glyph-name="zone" data-tags="zone" horiz-adv-x="1095" d="M984.457 804.571c-52.8 74.514-131.2 123.657-220.571 138.743-88.457 15.086-177.371-5.486-250.057-57.6-44.8-32-79.314-73.371-102.857-119.771-80.914 8-160.914-13.029-227.429-60.571-150.4-107.429-184.229-319.543-75.429-472.914 52.8-74.743 131.429-124.114 221.257-138.971 23.086-3.886 46.4-5.257 69.257-4.343 3.657-5.943 7.543-11.657 11.657-17.371 52.8-74.743 131.429-124.114 221.257-138.971 40.229-6.629 80.686-5.943 119.543 1.6 46.171 9.143 90.286 28.114 130.057 56.229 72.914 52.343 120.686 130.514 134.857 219.886 10.743 68.8 0.686 138.057-28.571 200 29.029 41.371 48.457 89.371 56.686 141.029 13.943 89.143-7.086 178.971-59.657 253.029zM556.571 826.057c30.629 21.943 64.914 36.571 101.029 43.657 30.629 5.943 62.4 6.4 93.943 0.914 70.171-11.657 131.429-50.286 172.8-108.571 60.8-85.943 64.686-195.429 19.2-281.6-52.343 64.914-125.257 107.886-207.771 121.829-23.314 3.886-46.857 5.257-69.943 4.343-3.657 5.943-7.543 11.886-11.657 17.6-42.286 59.657-100.8 102.857-168.229 125.486 17.6 29.257 41.371 55.314 70.629 76.343zM440.229 168.228c-31.086 74.971-26.286 159.086 10.514 228.114 40.686-51.2 94.4-88.686 155.429-109.257-17.6-29.257-41.143-55.314-70.4-76.343-29.029-20.571-61.486-34.971-95.543-42.514zM634.971 355.428c-54.857 17.371-102.4 52.114-136.686 100.114-0.686 0.914-1.143 1.829-1.829 2.743 9.6 9.6 20.343 18.743 31.771 26.743 29.029 20.8 61.486 34.971 95.543 42.514 22.857-55.543 26.057-116.343 11.2-172.114zM485.714 544.686c-8.229-5.943-16-11.886-23.543-18.514-17.143 50.971-18.514 105.143-5.257 155.2 50.514-15.771 94.629-46.171 128-88.229-34.971-10.286-68.571-26.514-99.2-48.457zM700.571 532.571c7.543-0.686 15.086-1.6 22.629-2.971 70.171-11.657 131.429-50.286 172.8-108.571 0.686-0.914 1.143-1.6 1.829-2.514-9.6-9.6-20.343-18.743-31.771-26.971-46.4-33.371-101.257-50.057-157.943-48.457 2.286 9.143 4.114 18.743 5.714 28.114 8.457 54.857 3.886 109.714-13.257 161.371zM341.486 165.943c-70.4 11.886-131.886 50.514-173.486 109.029-85.486 120.457-59.429 286.629 58.057 370.514 30.629 21.943 64.914 36.571 101.029 43.657 18.743 3.886 37.943 5.486 57.371 4.8-18.286-74.514-11.429-155.429 22.857-228.114-61.029-87.086-77.486-200-43.429-302.629-7.314 0.686-14.857 1.6-22.4 2.743zM837.714 50.514c-56.229-40.457-125.257-56.457-194.286-45.029-65.371 10.971-123.2 45.257-164.343 96.914 35.2 10.286 68.8 26.743 99.886 48.914 43.886 31.543 78.857 72.457 102.629 119.543 32.914-3.2 65.829-1.6 97.6 4.571 46.4 9.143 90.514 28.114 130.057 56.229 8 5.714 15.543 11.657 22.857 18.057 35.886-107.886 0.914-230.629-94.4-299.2z" />
+<glyph unicode="&#xe912;" glyph-name="resources-almost-full" data-tags="resources-almost-full" d="M954.743 694.171c45.714-78.4 68.571-164.114 68.571-256.914s-22.857-178.514-68.571-256.914c-45.714-78.4-107.886-140.571-186.286-186.286s-164.114-68.571-256.914-68.571c-92.8 0-178.514 22.857-256.914 68.571s-140.571 107.886-186.286 186.286c-45.486 78.4-68.343 164.114-68.343 256.914s22.857 178.514 68.571 256.914c45.714 78.4 107.886 140.343 186.286 186.057s164.114 68.571 256.914 68.571c92.8 0 178.514-22.857 256.914-68.571 78.171-45.714 140.343-107.657 186.057-186.057zM677.257 829.714c-52.571 22.629-107.886 34.057-165.486 34.057-57.829 0-112.914-11.429-165.486-34.057s-97.829-53.029-136-90.971c-37.943-37.943-68.343-83.2-90.971-136-22.629-52.571-34.057-107.886-34.057-165.486 0-57.829 11.429-112.914 34.057-165.486s53.029-97.829 90.971-136c37.943-37.943 83.2-68.343 136-90.971 52.571-22.629 107.886-34.057 165.486-34.057 57.829 0 112.914 11.429 165.486 34.057s97.829 53.029 136 90.971c37.943 37.943 68.343 83.2 90.971 136 22.629 52.571 34.057 107.886 34.057 165.486 0 57.829-11.429 112.914-34.057 165.486s-53.029 97.829-90.971 136c-37.943 37.943-83.429 68.343-136 90.971zM217.143 585.143c-21.943-44.114-34.286-93.714-34.286-146.286 0-181.486 147.657-329.143 329.371-329.143 181.486 0 329.143 147.657 329.143 329.143 0 52.571-12.343 102.171-34.286 146.286h-589.943z" />
+<glyph unicode="&#xe913;" glyph-name="warning-triangle" data-tags="pficon-warning-triangle-o" d="M511.488 949.321c6.656 0 13.093-0.878 19.456-2.487s12.142-4.169 17.481-7.461c5.998-3.365 11.118-7.314 15.506-11.995s8.119-10.021 11.483-15.945l437.979-842.24c6.656-11.995 9.801-23.918 9.509-35.913s-3.877-23.918-10.459-35.913c-3.365-5.998-7.168-11.118-11.483-15.506s-9.509-8.192-15.506-11.483c-5.339-2.706-10.971-4.827-16.969-6.51s-12.288-2.487-18.944-2.487h-876.032c-6.656 0-12.946 0.805-18.944 2.487s-11.63 3.803-16.969 6.51c-5.998 3.291-11.118 7.095-15.506 11.483s-8.192 9.509-11.483 15.506c-6.656 11.995-10.094 23.918-10.459 35.913s2.779 23.918 9.509 35.913l437.979 842.24c3.291 5.998 7.095 11.264 11.483 15.945s9.509 8.631 15.506 11.995c5.339 3.291 11.118 5.778 17.481 7.461s12.8 2.487 19.456 2.487zM132.974 73.289h759.296l-380.782 741.595-378.514-741.595zM583.387 156.526c-2.121-5.632-7.534-9.509-13.97-9.509-14.263 0-28.526 0-42.715 0-21.138 0-42.277 0-63.415 0-11.045 0-24.576 0.585-24.576 14.994 0 0 0 44.325 0 44.544 0 8.558 6.437 14.994 14.994 14.994 0 0 115.712 0 115.785 0 8.485 0 14.994-6.437 14.994-14.994 0 0 0-44.544 0-44.544 0-1.975-0.366-3.803-1.024-5.486zM583.826 301.934c-2.121-5.632-7.534-9.509-13.97-9.509-14.263 0-28.526 0-42.715 0-21.138 0-42.277 0-63.415 0-11.045 0-24.576 0.585-24.576 14.994 0 0 0 224.914 0 225.134 0 8.558 6.437 14.994 14.994 14.994 0 0 115.712 0 115.785 0 8.485 0 14.994-6.437 14.994-14.994 0 0 0-225.134 0-225.134 0-1.975-0.366-3.803-1.024-5.486z" />
+<glyph unicode="&#xe914;" glyph-name="private" data-tags="private" d="M954.514 695.314c-45.943 78.4-107.886 140.343-186.057 186.057s-163.657 68.571-256.457 68.571-178.286-22.857-256.457-68.571c-78.171-45.486-140.343-107.657-185.829-185.829-45.714-78.171-68.571-163.886-68.571-256.457s22.629-178.286 68.343-256.686c45.714-78.4 107.886-140.343 186.057-186.057s163.657-68.571 256.457-68.571 178.286 22.857 256.457 68.571c78.4 45.714 140.343 107.886 186.057 186.057s68.571 163.657 68.571 256.457c0 92.8-22.857 178.286-68.571 256.457zM809.143 252.8c0-29.943-11.657-58.286-32.914-79.543-21.029-21.257-49.371-32.914-79.543-32.914h-369.143c-30.171 0-58.286 11.657-79.543 32.914-21.257 21.029-32.914 49.371-32.914 79.543v209.143c0 29.943 11.657 58.286 32.914 79.543 7.314 7.314 15.314 13.257 24 18.286v6.629c0 64.686 24.457 123.429 70.629 169.6s104.914 70.629 169.6 70.629 123.429-24.457 169.371-70.629c46.171-46.171 70.629-104.914 70.629-169.6v-6.629c8.686-5.029 16.686-10.971 24-18.286 21.257-21.257 32.914-49.371 32.914-79.543v-209.143zM696.914 496.686h-21.943v69.714c0 44.571-16 82.743-48 114.743s-70.171 48-114.743 48-82.743-16-114.743-48-48-70.171-48-114.743v-69.714h-21.943c-9.6 0-17.829-3.429-24.686-10.057-6.857-6.857-10.057-15.086-10.057-24.686v-209.143c0-9.6 3.429-17.829 10.057-24.686 6.857-6.857 15.086-10.057 24.686-10.057h369.143c9.6 0 17.829 3.429 24.686 10.057 6.857 6.857 10.057 15.086 10.057 24.686v209.143c0 9.6-3.429 17.829-10.057 24.686-6.629 6.629-14.857 10.057-24.457 10.057zM419.429 496.686v69.714c0 25.6 9.143 47.543 27.2 65.6s40 27.2 65.6 27.2c25.6 0 47.543-9.143 65.6-27.2s27.2-40 27.2-65.6v-69.714h-185.6z" />
+<glyph unicode="&#xe915;" glyph-name="blueprint" data-tags="blueprint" d="M78.629 225.143c-3.657 3.657-5.486 8-5.486 12.8v55.086h-73.143v-55.086c0-25.143 8.914-46.629 26.971-64.686 17.829-17.829 39.543-26.971 64.686-26.971h91.429v73.143h-91.657c-5.029 0.457-9.143 2.286-12.8 5.714zM997.257 705.143c-17.829 17.829-39.543 26.971-64.686 26.971h-621.714c-25.143 0-46.629-8.914-64.686-26.971-17.829-17.829-26.971-39.543-26.971-64.686v-621.943c0-25.143 8.914-46.629 26.971-64.686 17.829-17.829 39.543-26.971 64.686-26.971h621.943c25.143 0 46.629 8.914 64.686 26.971 17.829 17.829 26.971 39.543 26.971 64.686v621.943c-0.229 25.143-9.143 46.629-27.2 64.686zM951.086 18.514c0-5.029-1.829-9.143-5.486-12.8s-8-5.486-12.8-5.486h-621.943c-5.029 0-9.143 1.829-12.8 5.486s-5.486 8-5.486 12.8v621.943c0 5.029 1.829 9.143 5.486 12.8s8 5.486 12.8 5.486h621.943c5.029 0 9.143-1.829 12.8-5.486s5.486-8 5.486-12.8v-621.943zM0 512.686h73.143v-147.429h-73.143v147.429zM0 732.114h73.143v-147.429h-73.143v147.429zM73.143 859.886c0 5.029 1.829 9.143 5.486 12.8s8 5.486 12.8 5.486h55.314v73.143h-55.314c-25.143 0-46.629-8.914-64.686-26.971-17.829-17.829-26.743-39.314-26.743-64.457v-55.771h73.143v55.771zM218.971 951.314h147.429v-73.143h-147.429v73.143zM726.171 872.686c3.657-3.657 5.486-8 5.486-12.8v-91.429h73.143v91.429c0 25.143-8.914 46.629-26.971 64.686-17.829 17.829-39.543 26.971-64.686 26.971h-55.543v-73.143h55.543c5.029-0.229 9.371-2.057 13.029-5.714zM438.4 951.314h147.429v-73.143h-147.429v73.143z" />
+<glyph unicode="&#xe916;" glyph-name="tenant" data-tags="tenant" d="M346.971 731.428c-35.657 0-65.829-12.343-90.743-37.257s-37.257-55.086-37.257-90.743 12.343-65.829 37.257-90.743c24.914-24.914 55.086-37.257 90.743-37.257s65.829 12.343 90.743 37.257c24.914 24.914 37.257 55.086 37.257 90.743s-12.343 65.829-37.257 90.743c-25.143 24.914-55.314 37.257-90.743 37.257zM676.571 731.428c-35.657 0-65.829-12.343-90.743-37.257-24.686-24.686-37.257-55.086-37.257-90.743s12.343-65.829 37.257-90.743c24.914-24.914 55.086-37.257 90.743-37.257s65.829 12.343 90.743 37.257c24.914 24.914 37.257 55.086 37.257 90.743s-12.343 65.829-37.257 90.743c-24.686 24.914-55.086 37.257-90.743 37.257zM742.171 538.286c-18.057-18.057-40-27.2-65.371-27.2s-47.314 9.143-65.371 27.2c-18.057 18.057-27.2 40-27.2 65.371s9.143 47.314 27.2 65.371c18.057 18.057 40 27.2 65.371 27.2s47.314-9.143 65.371-27.2c18.057-18.057 27.2-40 27.2-65.371s-8.914-47.314-27.2-65.371zM676.571 402.971c-35.657 0-65.829-12.343-90.743-37.257s-37.257-55.086-37.257-90.743c0-35.657 12.343-65.829 37.257-90.743s55.086-37.257 90.743-37.257 65.829 12.343 90.743 37.257c24.914 24.914 37.257 55.086 37.257 90.743s-12.343 65.829-37.257 90.743c-24.686 24.914-55.086 37.257-90.743 37.257zM742.171 209.6c-18.057-18.057-40-27.2-65.371-27.2s-47.314 9.143-65.371 27.2c-18.057 18.057-27.2 40-27.2 65.371s9.143 47.314 27.2 65.371c18.057 18.057 40 27.2 65.371 27.2s47.314-9.143 65.371-27.2c18.057-18.057 27.2-40 27.2-65.371s-8.914-47.314-27.2-65.371zM346.971 402.971c-35.657 0-65.829-12.343-90.743-37.257s-37.257-55.086-37.257-90.743c0-35.657 12.343-65.829 37.257-90.743s55.086-37.257 90.743-37.257c35.657 0 65.829 12.343 90.743 37.257s37.257 55.086 37.257 90.743c0 35.657-12.343 65.829-37.257 90.743s-55.086 37.257-90.743 37.257zM412.571 209.6c-18.057-18.057-40-27.2-65.371-27.2s-47.314 9.143-65.371 27.2c-18.057 18.057-27.2 40-27.2 65.371s9.143 47.314 27.2 65.371c18.057 18.057 40 27.2 65.371 27.2s47.314-9.143 65.371-27.2c18.057-18.057 27.2-40 27.2-65.371s-9.143-47.314-27.2-65.371zM954.743 695.543c-45.714 78.4-107.657 140.343-186.057 186.057s-163.886 68.571-256.686 68.571c-92.8 0-178.286-22.857-256.686-68.571s-140.343-107.657-186.057-186.057c-45.714-78.4-68.571-163.886-68.571-256.686s22.857-178.286 68.571-256.686 107.657-140.343 186.057-186.057 163.886-68.571 256.686-68.571c92.8 0 178.286 22.857 256.686 68.571s140.343 107.657 186.057 186.057 68.571 163.886 68.571 256.686c0 92.8-22.857 178.286-68.571 256.686zM904 273.371c-22.629-52.571-53.029-97.829-90.971-135.771s-83.2-68.343-135.771-90.971c-52.571-22.629-107.657-34.057-165.486-34.057-57.6 0-112.914 11.429-165.486 34.057s-97.829 53.029-135.771 90.971c-37.943 37.943-68.343 83.2-90.971 135.771s-34.057 107.657-34.057 165.486c0 57.6 11.429 112.914 34.057 165.486s53.029 97.829 90.971 135.771c37.943 37.943 83.2 68.343 135.771 90.971s107.657 34.057 165.486 34.057c57.6 0 112.914-11.2 165.486-34.057 52.571-22.629 97.829-53.029 135.771-90.971s68.343-83.2 90.971-135.771c22.629-52.571 34.057-107.657 34.057-165.486 0-57.6-11.2-112.914-34.057-165.486z" />
+<glyph unicode="&#xe917;" glyph-name="middleware" data-tags="middleware" d="M512 731.428c-161.371 0-292.571-131.2-292.571-292.571s131.2-292.571 292.571-292.571 292.571 131.2 292.571 292.571-131.2 292.571-292.571 292.571zM916.571 125.486c49.371 63.543 84.114 138.971 98.971 221.257 1.829 9.829-5.714 18.971-15.771 18.971h-79.314c-7.543 0-13.943-5.257-15.543-12.571-33.371-153.371-154.743-274.286-308.114-307.429-7.314-1.6-12.8-8-12.8-15.543v-79.543c0-10.057 9.143-17.6 18.971-15.771 82.286 14.629 157.714 49.371 221.257 98.286 6.4 5.029 15.314 4.343 21.029-1.371l100.343-100.343c2.971-2.971 7.086-4.8 11.2-4.8h51.2c8.914 0 16 7.086 16 16v48.914c0 4.343-1.6 8.229-4.8 11.2l-101.257 101.257c-5.714 6.171-6.171 15.086-1.371 21.486zM418.743 942.171c-81.6-15.086-156.8-49.6-219.886-98.971-6.4-5.029-15.543-4.343-21.257 1.371l-101.257 101.486c-3.2 3.2-7.086 4.8-11.429 4.8h-48.914c-8.914 0-16-7.086-16-16v-48.914c0-4.343 1.6-8.229 4.8-11.2l101.257-101.257c5.714-5.714 6.171-14.857 1.371-21.257-49.371-63.543-84.114-138.971-98.971-221.257-1.829-9.829 5.714-18.971 15.771-18.971h79.314c7.543 0 13.943 5.257 15.543 12.571 33.143 152.686 153.371 273.143 306.057 306.971 7.314 1.6 12.571 8 12.571 15.543v79.314c0 10.057-9.143 17.6-18.971 15.771zM920.457 512h79.314c10.057 0 17.6 9.143 15.771 18.971-14.857 81.6-49.371 156.571-98.057 220.114-5.029 6.4-4.343 15.314 1.371 21.029l100.343 100.114c2.971 2.971 4.8 7.086 4.8 11.429v51.2c0 8.914-7.086 16-16 16h-48.914c-4.343 0-8.229-1.6-11.2-4.8l-101.257-101.257c-5.714-5.714-14.857-6.171-21.257-1.371-63.543 49.371-138.971 84.114-221.257 98.971-9.829 1.829-18.971-5.714-18.971-15.771v-79.314c0-7.543 5.257-13.943 12.571-15.543 152.914-33.371 273.6-154.057 307.2-307.2 1.6-7.314 8-12.571 15.543-12.571zM103.543 365.714h-79.543c-10.057 0-17.6-9.143-15.771-18.971 14.857-82.286 49.6-157.714 98.971-221.257 5.029-6.4 4.343-15.543-1.371-21.257l-101.029-101.029c-3.2-3.2-4.8-7.086-4.8-11.429v-48.914c0-8.914 7.086-16 16-16h48.914c4.343 0 8.229 1.6 11.2 4.8l101.257 101.257c5.714 5.714 14.857 6.171 21.029 1.371 63.543-49.371 138.971-84.114 221.257-98.971 9.829-1.829 18.971 5.714 18.971 15.771v79.314c0 7.543-5.257 13.943-12.571 15.543-152.914 33.371-273.6 154.057-307.2 307.2-1.371 7.314-7.771 12.571-15.314 12.571z" />
+<glyph unicode="&#xe918;" glyph-name="bundle" data-tags="Bundle" d="M348.571 721.371l1.143-322.743 317.029-56.457 164.114 94.629 0.229 304.229-319.543 49.371zM658.514 874.743l-228.343 27.2-158.171-43.657 240.686-33.371zM1021.257 829.486v0.229l-0.686-0.229-299.886 36.571-145.143-50.286 313.6-44.343-0.457-299.2 125.486 80.229 7.086 276.343 0.457 0.229zM885.486 122.971l121.371 116.343 6.629 245.257-124.8-84.343zM349.714 318.171l-1.371-296.914 314.057-94.4 167.771 155.657 0.457 281.829-163.886-107.886zM450.971 802.514l-239.771 35.2-208.457-60.114 11.657-315.886 271.086-50.286-2.743 325.257zM25.6 117.714l259.886-80.229v293.943l-270.171 54.857z" />
+<glyph unicode="&#xe919;" glyph-name="domain" data-tags="domain" d="M866.971 522.743c7.086 7.086 10.743 15.771 10.743 25.829v365.486c0 9.829-3.657 18.286-10.971 26.057-7.086 7.086-15.771 10.743-25.829 10.743h-219.2c-9.829 0-18.286-3.657-25.829-10.971-7.086-7.086-10.743-15.771-10.743-25.829v-365.486c0-9.829 3.429-18.286 10.743-25.829 7.086-7.086 15.771-10.743 25.829-10.743h219.429c9.829 0 18.514 3.429 25.829 10.743zM804.571 658.286h-146.286v73.143h146.286v-73.143zM804.571 804.571h-73.143v73.143h73.143v-73.143zM548.343 438.857h-219.2c-9.829 0-18.286-3.657-25.829-10.971-7.086-7.086-10.743-15.771-10.743-25.6v-439.314c0-9.829 3.429-18.286 10.743-25.6 7.086-7.086 15.771-10.743 25.829-10.743h219.429c9.829 0 18.286 3.429 25.829 10.743 7.086 7.086 10.743 15.771 10.743 25.6v439.543c0 9.829-3.657 18.286-10.971 25.829-7.086 6.857-16 10.514-25.829 10.514zM512 146.286h-146.286v73.143h146.286v-73.143zM512 292.571h-73.143v73.143h73.143v-73.143zM512 0h-146.286v73.143h146.286v-73.143zM292.571 914.057c0 9.829-3.657 18.514-10.971 26.057-7.086 7.086-15.771 10.743-25.6 10.743h-219.886c-9.829 0-18.286-3.657-25.6-10.971-6.857-7.314-10.514-16-10.514-25.829v-292.343c0-9.829 3.429-18.514 10.743-25.829 7.086-7.086 15.771-10.743 25.6-10.743h220.114c9.829 0 18.286 3.429 25.6 10.743 7.086 7.086 10.743 15.771 10.743 25.829v292.343zM219.429 658.286h-146.286v73.143h146.286c0 0 0-73.143 0-73.143zM219.429 804.571h-73.143v73.143h73.143c0 0 0-73.143 0-73.143zM512 808v66.743c-0.457 0-1.143 0-1.6 0-50.743 0-99.429-8.686-144.686-24.457v-72c44.343 18.971 93.257 29.714 144.686 29.714 0.457 0 1.143 0 1.6 0zM150.857 512.228h-71.314c-4.114-24.229-6.4-49.371-6.4-74.971 0-129.829 56.457-246.4 146.286-326.4v107.429c-47.314 61.714-75.429 138.971-75.429 222.857 0 24.229 2.286 48 6.857 71.086zM804.571 222.628v-108.571c88 80 143.314 195.2 143.314 323.657 0 0.229 0 0.686 0 0.914h-70.857c-0.686-81.143-27.429-155.657-72.457-216zM950.857 878.857h73.143v-294.857h-73.143v294.857zM658.286 365.714h73.143v-365.714h-73.143v365.714z" />
+<glyph unicode="&#xe91a;" glyph-name="server-group" data-tags="server group" d="M841.143 731.428h182.857v-731.429h-182.857v731.429zM695.086 731.428h-658.514c-9.829 0-18.514-3.657-25.6-10.743-7.314-7.543-10.971-16-10.971-25.829v-731.657c0-9.829 3.657-18.514 10.743-25.6 7.314-7.314 15.771-10.743 25.6-10.743h658.743c9.829 0 18.514 3.657 25.6 10.743 7.314 7.314 10.743 15.771 10.743 25.6v731.657c0 9.829-3.657 18.514-10.743 25.6-7.314 7.314-15.771 10.971-25.6 10.971zM658.286 73.143h-438.857v109.714h438.857v-109.714zM658.286 292.571h-585.143v109.714h585.143v-109.714zM658.286 512h-219.429v109.714h219.429v-109.714zM22.4 768h686.629c11.429 0 18.743 2.971 21.257 8.686 2.743 5.714-0.229 12.8-8.686 21.257 0 0-142.4 130.514-152.914 142.857s-24 9.829-24 9.829h-361.143c0 0-11.886 1.371-22.629-10.286-10.514-11.886-151.314-142.4-151.314-142.4-8.457-8.457-11.429-15.314-8.686-21.257s9.829-8.686 21.486-8.686zM767.314 951.314h-121.143l194.743-182.171 183.086-1.6z" />
+<glyph unicode="&#xe91b;" glyph-name="degraded" data-tags="pficon-degraded" d="M957.257 568.457c-25.6-10.057-54.857-18.514-87.543-25.143-21.714-4.8-43.886-8.686-66.514-11.886l0.457-302.857c13.029 1.829 26.057 4.114 38.629 6.4 27.657 5.714 52.8 12.343 74.971 19.657s42.057 15.771 58.514 24.457c16 9.371 28.343 19.429 36.343 29.714 8 10.514 11.886 21.029 11.886 32.229v262.4c-18.743-13.257-41.143-24.914-66.743-34.971zM364.343 729.828v0h0.686c35.429 0 69.943-1.6 102.629-4.571 34.971-3.2 66.286-7.771 95.314-13.714v0 0c31.543-6.629 58.514-13.486 82.514-21.029l0.914-0.457c27.429-9.143 50.743-19.2 71.314-30.857l0.914-0.457c24-14.171 43.2-30.171 56.914-47.771 5.029-6.4 9.371-13.029 13.029-19.886 18.286 2.286 35.886 5.257 53.029 8.686 27.657 5.029 52.8 11.429 74.971 18.743s42.057 16 58.514 25.371c16 9.371 28.343 19.2 36.343 29.029s11.886 20.571 11.886 31.543v124.343c0 10.514-3.886 21.029-11.886 31.314s-20.343 20.343-36.343 29.714c-16.457 9.371-35.886 17.6-58.286 25.143-22.171 7.086-47.314 13.486-74.971 19.2-27.886 5.714-57.143 9.6-87.543 12.571s-62.629 4.114-96 4.114c-32.914 0-64.457-1.371-95.086-4.343s-60.114-7.086-88.457-12.571c-27.657-5.486-52.8-11.886-74.971-19.2s-41.6-15.771-57.6-25.143c-16.229-9.371-28.571-19.429-36.8-29.714s-12.571-20.8-12.571-31.314v-101.257c23.086 1.829 47.314 2.514 71.543 2.514zM664.686 266.743c-23.543-9.143-50.057-17.143-79.543-23.314v62.4c13.943 3.429 26.971 7.086 39.086 11.2 22.171 7.314 42.057 16 58.514 25.371 16 9.371 28.343 19.2 36.343 29.029s11.886 20.571 11.886 31.543v133.257c0 10.514-3.886 21.029-11.886 31.314s-20.343 20.343-36.343 29.714c-16.457 9.371-35.886 17.6-58.286 25.143-22.171 7.086-47.314 13.486-74.971 19.2-27.886 5.714-57.143 9.6-87.543 12.571s-62.629 4.343-96 4.343c-32.914 0-64.457-1.371-95.086-4.343s-60.343-7.086-88.457-12.571c-27.657-5.486-52.8-11.886-74.971-19.2s-41.6-15.771-57.6-25.143c-16.229-9.371-28.571-19.429-36.8-29.714s-12.571-20.8-12.571-31.314v-133.257c0-11.2 4.343-21.714 12.571-31.543 8.457-10.057 20.571-19.657 36.8-29.029s35.429-18.057 57.6-25.371c11.886-4.114 24.914-7.771 38.857-11.2v-62.4c-29.486 6.4-55.771 14.171-79.086 23.314-25.6 10.057-48 21.714-66.743 34.971v-253.257c0-11.2 4.343-21.943 12.571-32.229 8.457-10.286 20.571-20.343 36.8-29.714 16.229-8.914 35.429-17.143 57.6-24.457 22.171-7.771 47.771-14.171 75.886-19.657 27.657-5.486 57.143-9.6 88-11.657 30.629-2.514 62.171-3.657 95.086-3.657 33.371 0 65.371 1.143 95.543 3.657 30.171 2.286 59.657 6.629 88 11.886 27.657 5.714 52.8 12.343 74.971 19.657s42.057 15.771 58.514 24.457c16 9.371 28.343 19.429 36.343 29.714 8 10.514 11.886 21.029 11.886 32.229v253.029c-18.971-13.257-41.371-24.914-66.971-34.971zM558.857 126.4c-0.686-1.6-1.829-3.2-3.2-4.571l-53.943-53.714c-1.6-1.6-2.971-2.514-4.571-3.2s-3.429-0.914-5.257-0.914c-1.6 0-2.971 0.229-4.571 0.914s-2.971 1.829-3.886 3.2l-117.714 116.571-117.486-117.029c-0.914-1.6-2.286-2.514-3.886-3.2s-3.2-0.914-4.571-0.914c-1.829 0-3.657 0.229-5.257 0.914s-3.2 1.829-4.571 3.2l-53.943 54.171c-1.6 1.6-2.514 2.971-3.2 4.571s-0.914 3.2-0.914 4.571c0 1.829 0.229 3.657 0.914 5.257s1.829 2.971 3.2 3.886l117.486 117.486-115.2 114.743c-1.6 1.6-2.514 2.971-3.2 4.571s-0.914 3.2-0.914 4.571c0 1.829 0.229 3.657 0.914 5.257s1.829 2.971 3.2 3.886l53.943 54.4c1.6 0.914 2.971 1.829 4.571 2.514s3.2 0.914 4.571 0.914c1.829 0 3.657-0.229 5.257-0.686s2.971-1.6 3.886-2.743l115.657-115.657 115.2 115.2c0.914 1.6 2.286 2.286 3.886 2.743s3.2 0.686 4.571 0.686c1.829 0 3.657-0.229 5.257-0.914s3.2-1.6 4.571-2.514l53.257-54.629c1.6-0.914 2.514-2.286 3.2-3.886s0.914-3.429 0.914-5.257c0-1.6-0.229-2.971-0.914-4.571s-1.829-3.2-3.2-4.571l-114.743-114.286 117.486-117.486c1.6-0.914 2.514-2.286 3.2-3.886s0.914-3.429 0.914-5.257c0-1.371-0.229-2.743-0.914-4.343z" />
+<glyph unicode="&#xe91c;" glyph-name="rebalance" data-tags="pficon-rebalance" horiz-adv-x="1243" d="M1018.971-5.029c-3.657 3.2-8 5.029-13.257 5.029h-347.429v737.6c37.943 13.486 66.286 47.086 72 87.771v-0.457l275.429 53.943c5.257 0.914 9.371 3.429 11.886 7.543 2.743 4.114 3.429 8.686 2.514 13.943l-7.086 35.886c-0.914 5.257-3.429 9.371-7.543 11.886s-8.686 3.429-13.943 2.514l-275.2-53.714v-0.457c-18.971 32.457-54.171 54.4-94.629 54.4-55.314 0-101.029-40.914-108.571-93.943v0.457l-275.429-53.714c-5.257-0.914-9.371-3.429-11.886-7.543s-3.429-8.686-2.514-13.943l7.086-35.886c0.914-5.257 3.429-9.371 7.543-11.886 4.114-2.743 8.686-3.429 13.943-2.514l275.429 53.714c13.029-22.171 33.6-39.314 58.057-48v-737.6h-347.657c-5.486 0-10.057-1.371-13.257-5.029s-5.029-8-5.029-13.257v-36.571c0-5.257 1.371-10.057 5.029-13.257s8-5.029 13.257-5.029h768c5.486 0 10.057 1.371 13.257 5.029s5.029 8 5.029 13.257v36.571c0 5.486-1.371 10.057-5.029 13.257zM621.714 886.857c25.143 0 45.714-20.571 45.714-45.714s-20.571-45.714-45.714-45.714-45.714 20.571-45.714 45.714 20.571 45.714 45.714 45.714zM1223.314 430.171c-13.257 26.743-30.857 59.886-52.571 99.657s-42.057 77.029-61.257 111.771c-18.971 34.743-38.4 69.714-58.286 105.143s-30.4 54.4-32 57.143c-6.857 12.571-17.6 18.743-32 18.743s-25.143-6.4-32-18.743c-1.6-2.743-12.114-21.714-32-57.143s-39.314-70.4-58.286-105.143c-18.971-34.743-39.314-72-61.029-111.771s-39.314-73.143-52.571-99.657c-13.257-26.743-20.114-42.057-20.114-46.171 0-27.886 8.914-52.8 26.514-74.971 17.829-22.171 40-39.314 67.2-52.114 26.971-12.571 54.629-21.943 82.514-28.343s54.857-9.143 80-9.143 51.657 3.2 79.771 9.371 55.543 15.771 82.514 28.343c26.971 12.571 49.371 29.943 67.2 52.114s26.514 47.086 26.514 74.971c0 3.886-6.629 19.429-20.114 45.943zM768 384l219.429 402.286 219.429-402.286h-438.857zM439.543 383.771c-21.714 39.771-42.057 77.029-61.257 111.771-18.971 34.743-38.4 69.714-58.286 105.143s-30.4 54.4-32 57.143c-6.857 12.571-17.6 18.743-32 18.743s-25.143-6.4-32-18.743c-1.6-2.743-12.114-21.714-32-57.143s-39.314-70.4-58.286-105.143c-18.971-34.743-39.314-72-61.257-111.771-21.714-39.771-39.314-73.143-52.571-99.657-13.257-26.743-19.886-42.286-19.886-46.4 0-27.886 8.914-52.8 26.514-74.971 17.829-22.171 40-39.314 67.2-52.114 26.971-12.571 54.629-21.943 82.514-28.343s54.629-9.143 79.771-9.143 51.657 3.2 79.771 9.371 55.543 15.771 82.514 28.343c26.971 12.571 49.371 29.943 67.2 52.114s26.514 47.086 26.514 74.971c0 4.114-6.629 19.657-20.114 46.171-13.257 26.514-30.629 59.886-52.343 99.657zM256 640l149.714-274.286h-299.429l149.714 274.286z" />
+<glyph unicode="&#xe91d;" glyph-name="resources-almost-empty" data-tags="resources-almost-empty" d="M954.743 694.171c45.714-78.4 68.571-164.114 68.571-256.914s-22.857-178.514-68.571-256.914-107.886-140.571-186.286-186.286-164.114-68.571-256.914-68.571-178.514 22.857-256.914 68.571-140.571 107.886-186.286 186.286c-45.486 78.4-68.343 164.114-68.343 256.914s22.857 178.514 68.571 256.914 107.886 140.343 186.286 186.057 164.114 68.571 256.914 68.571 178.514-22.857 256.914-68.571c78.171-45.714 140.343-107.657 186.057-186.057zM677.257 829.714c-52.571 22.629-107.886 34.057-165.486 34.057-57.829 0-112.914-11.429-165.486-34.057s-97.829-53.029-136-90.971c-37.943-37.943-68.343-83.2-90.971-136-22.629-52.571-34.057-107.886-34.057-165.486 0-57.829 11.429-112.914 34.057-165.486s53.029-97.829 90.971-136c37.943-37.943 83.2-68.343 136-90.971 52.571-22.629 107.886-34.057 165.486-34.057 57.829 0 112.914 11.429 165.486 34.057s97.829 53.029 136 90.971c37.943 37.943 68.343 83.2 90.971 136 22.629 52.571 34.057 107.886 34.057 165.486 0 57.829-11.429 112.914-34.057 165.486s-53.029 97.829-90.971 136c-37.943 37.943-83.429 68.343-136 90.971zM217.143 292.571c53.943-108.343 165.943-182.857 295.086-182.857 128.914 0 240.914 74.514 294.857 182.857h-589.943z" />
+<glyph unicode="&#xe91e;" glyph-name="user" data-tags="pficon-user" horiz-adv-x="878" d="M657.262 657.92c0-120.978-98.085-219.063-219.063-219.063s-219.063 98.085-219.063 219.063c0 120.978 98.085 219.063 219.063 219.063s219.063-98.085 219.063-219.063zM38.766-73.143c7.826 102.327 37.303 305.737 148.041 389.559v0c0 0 59.758 50.322 150.821 49.883l201.143 0.366c91.136 0 150.821-50.322 150.821-50.322s133.12-88.722 149.285-389.559z" />
+<glyph unicode="&#xe91f;" glyph-name="users" data-tags="pficon-users" horiz-adv-x="951" d="M804.571 511.122c0-80.896-65.536-146.432-146.432-146.432s-146.432 65.536-146.432 146.432c0 80.896 65.536 146.432 146.432 146.432s146.432-65.536 146.432-146.432zM475.429 255.268v0c0 0 43.447 36.571 109.714 36.279l146.286 0.293c66.267 0 109.714-36.571 109.714-36.571s109.714-73.143 109.714-327.607h-585.143c0 0 0 244.517 109.714 327.607zM438.857 730.551c0-80.896-65.536-146.432-146.432-146.432s-146.432 65.536-146.432 146.432c0 80.896 65.536 146.432 146.432 146.432s146.432-65.536 146.432-146.432zM477.696 365.714c-160.768-27.429-189.733-218.697-189.733-218.697h-288.037c0 0 0 244.59 109.714 327.607v0c0 0 43.447 36.571 109.714 36.279l146.286 0.293c29.477 0 17.92 3.73 36.571-4.315 0 0-2.267-111.47 75.41-141.166v0z" />
+<glyph unicode="&#xe920;" glyph-name="thumb-tack" data-tags="pficon-thumb-tack" horiz-adv-x="805" d="M696.832 417.792c-24.064 30.939-71.314 58.368-112.128 58.368v0 328.631c40.741 0 72.338 33.573 71.095 72.704-1.17 37.449-29.769 73.362-68.827 73.362-0.951 0-370.322 0-370.322 0-22.089 0-40.741-10.021-56.174-25.381s-20.773-31.451-20.773-52.882c0-22.089 5.413-33.938 20.773-49.298s34.085-23.040 56.174-23.040v-321.755c-40.814 0-77.385-20.261-109.861-60.709s-34.962-108.91-34.962-159.744c0-10.752 4.023-19.895 12.069-27.575s17.408-11.557 28.087-11.557h214.455l46.153-276.041c1.317-4.681 3.877-8.558 7.534-11.557s7.826-4.535 12.507-4.535h19.31c4.681 0 8.85 1.682 12.507 4.974s5.851 7.68 6.51 13.019l42.496 273.993h218.039c10.679 0 20.041 3.877 28.087 11.557s12.069 16.896 12.069 27.575c0 50.761-3.145 118.784-34.962 159.744z" />
+<glyph unicode="&#xe921;" glyph-name="search" data-tags="pficon-search" d="M1022.171 53.394l-280.137 280.137c52.955 82.725 75.41 187.246 52.955 296.887-27.575 137.143-163.328 275.822-299.813 306.322-291.767 64.585-545.865-189.294-481.28-481.207 35.035-151.698 154.112-268.361 304.494-299.374 112.859-22.894 216.649 0.293 300.178 53.979l280.137-280.137zM403.749 801.060c140.288 0 254.025-113.737 254.025-254.025s-113.737-254.025-254.025-254.025c-140.288 0-254.025 113.737-254.025 254.025 0.146 140.215 113.81 253.879 254.025 254.025z" />
+<glyph unicode="&#xe922;" glyph-name="unlocked" data-tags="pficon-unlocked" d="M838.949 654.482c-17.115 162.597-159.232 296.375-325.193 296.375-177.079 0-329.216-152.21-329.216-329.216v-108.398h-112.055c-38.181-0.073-69.047-30.939-69.12-69.12v-443.977c0-38.107 31.013-73.728 69.12-71.387h880.201c38.107-2.267 69.12 33.28 69.12 71.387v444.050c-0.073 38.181-30.939 69.047-69.12 69.12l-623.104-0.073v108.398c0.219 101.595 82.505 183.954 184.101 184.101 88.869 0 161.426-65.682 178.176-149.358l147.017-1.829zM903.826 73.582h-541.403c-25.088 0-34.231 11.41-34.231 36.498s9.143 36.498 34.231 36.498h541.403c25.088 0 45.641-11.41 45.641-36.498s-20.553-36.425-45.641-36.425v-0.073zM903.826 292.571h-541.403c-25.088 0-34.231 11.41-34.231 36.498s9.143 36.498 34.231 36.498h541.403c25.088 0 45.641-11.41 45.641-36.498s-20.553-36.425-45.641-36.425v-0.073z" />
+<glyph unicode="&#xe923;" glyph-name="locked" data-tags="pficon-locked" d="M952.32 512.951h-112.128v108.471c0 177.152-150.016 329.435-327.168 329.435s-329.435-152.283-329.435-329.435v-108.471h-112.128c-38.107 0-69.193-31.086-69.193-69.193v-444.27c0-38.107 31.086-73.728 69.193-71.461h880.859c38.107-2.267 69.193 33.353 69.193 71.461v444.27c0 38.107-31.086 69.193-69.193 69.193zM328.777 621.422c0.219 101.595 82.651 184.027 184.247 184.247 101.595 0 181.979-82.871 181.979-184.247v-108.471h-366.226v108.471zM904.558 72.923h-541.769c-25.088 0-34.231 11.41-34.231 36.498s9.143 36.498 34.231 36.498h541.769c25.088 0 45.641-11.41 45.641-36.498s-20.553-36.498-45.641-36.498v-0.073zM904.558 292.059h-541.769c-25.088 0-34.231 11.41-34.231 36.498s9.143 36.498 34.231 36.498h541.769c25.088 0 45.641-11.41 45.641-36.498s-20.553-36.498-45.641-36.498v-0.073z" />
+<glyph unicode="&#xe924;" glyph-name="key" data-tags="pficon-key" d="M965.486 804.571c0 0-58.514 80.457-109.714 102.4-160.914 87.771-358.4 29.257-446.171-124.343-51.2-87.771-58.514-190.171-21.943-277.943l-387.657-380.343v-197.486h182.857v109.714h109.714v109.714h146.286l138.971 168.229c168.229-65.829 358.4 21.943 424.229 190.171 36.571 102.4 21.943 212.114-36.571 299.886zM885.029 731.428v0c0-58.514-43.886-102.4-102.4-102.4v0c-58.514 0-102.4 43.886-102.4 102.4s43.886 102.4 102.4 102.4c58.514 7.314 102.4-43.886 102.4-102.4v0z" />
+<glyph unicode="&#xe925;" glyph-name="asleep" data-tags="asleep" d="M512-73.143c-70.656 0-136.997 13.385-199.022 40.009s-116.151 63.342-162.523 110.007-83.017 101.010-110.007 162.962-40.521 128.366-40.521 199.022c0 70.656 13.531 136.997 40.521 199.022s63.634 116.151 110.007 162.523 100.498 83.017 162.523 110.007 128.366 40.521 199.022 40.521c70.656 0 136.997-13.531 199.022-40.521s116.151-63.707 162.523-110.007c46.299-46.299 83.017-100.498 110.007-162.523s40.521-128.366 40.521-199.022c0-70.656-13.531-136.997-40.521-199.022s-63.707-116.37-110.007-162.962c-46.299-46.665-100.498-83.31-162.523-110.007s-128.366-40.009-199.022-40.009zM361.545 796.379c-46.958-20.334-88.137-48.128-123.465-83.529s-63.195-76.507-83.529-123.465c-20.334-46.958-30.501-97.134-30.501-150.455s10.167-103.643 30.501-150.967c20.334-47.323 48.128-88.503 83.529-123.465s76.507-62.683 123.465-83.017c46.958-20.334 97.134-30.501 150.455-30.501s103.497 10.167 150.455 30.501c46.958 20.334 88.137 47.982 123.465 83.017s63.122 76.142 83.529 123.465c20.334 47.323 30.501 97.646 30.501 150.967s-10.167 103.497-30.501 150.455c-20.334 46.958-48.128 88.137-83.529 123.465s-76.507 63.122-123.465 83.529c-46.958 20.334-97.134 30.501-150.455 30.501s-103.497-10.167-150.455-30.501zM758.565 330.313c-21.211-45.861-53.248-82.505-96.037-109.934s-89.527-41.179-140.069-41.179c-35.255 0-68.901 6.875-100.937 20.699s-59.758 32.329-83.017 55.589c-23.259 23.259-41.765 50.907-55.589 83.017s-20.699 65.682-20.699 100.937c0 34.597 6.51 67.584 19.456 99.109s30.574 58.807 52.882 81.847 48.859 41.618 79.799 55.735c30.939 14.117 63.707 21.87 98.231 23.259 9.947 0.439 21.358-6.217 25.234-15.506 4.096-9.289 4.681-19.675-2.779-26.697-19.456-17.627-36.571-38.107-46.885-61.513s-17.701-45.787-17.701-71.753c0-33.426 5.998-61.952 22.455-90.185s38.839-50.615 67.072-67.072 59.099-24.722 92.526-24.722c26.624 0 52.443 5.705 77.239 17.262 9.289 4.096 17.408 2.56 24.357-4.389 3.145-3.145 5.12-7.022 5.925-11.483s0.293-8.85-1.536-12.873v0z" />
+<glyph unicode="&#xe926;" glyph-name="error-circle-o" data-tags="pficon-error-circle-o" d="M512.073-73.143c-282.331 0-512.073 229.669-512.073 512 0 282.258 229.742 512 512.073 512 282.258 0 511.927-229.742 511.927-512 0-282.331-229.669-512-511.927-512zM512.073 826.514c-213.797 0-387.73-173.861-387.73-387.657 0-213.87 173.861-387.657 387.73-387.657 213.723 0 387.657 173.787 387.657 387.73 0 213.723-173.934 387.584-387.657 387.584v0zM730.77 316.196c0.073 4.901-1.829 9.216-5.632 13.019l-109.714 109.714 110.373 110.373c3.803 3.803 5.632 8.119 5.632 13.019s-1.975 9.216-5.778 13.093l-77.166 77.166c-3.877 3.803-8.192 5.778-13.093 5.778s-9.216-1.829-13.019-5.632l-110.373-110.373-110.373 110.373c-3.803 3.803-8.119 5.632-13.019 5.632s-9.216-1.975-13.093-5.778l-77.166-77.166c-3.803-3.877-5.778-8.192-5.778-13.093s1.829-9.216 5.632-13.019l110.373-110.373-110.373-109.714c-3.803-3.803-5.632-8.119-5.632-13.019s1.975-9.216 5.778-13.093l77.166-77.166c3.877-3.877 8.192-5.778 13.093-5.778s9.216 1.829 13.019 5.632l110.373 109.714 109.714-109.714c3.803-3.803 8.119-5.632 13.019-5.632s9.216 1.975 13.093 5.778l77.166 77.166c3.877 3.803 5.778 8.192 5.851 13.019v0z" />
+<glyph unicode="&#xe927;" glyph-name="cpu" data-tags="pficon-cpu" horiz-adv-x="951" d="M128.293 658.286c4.681 0 8.631-1.682 11.995-4.974s4.974-7.387 4.974-11.995v-37.083c0-4.681-1.682-8.997-4.974-13.019s-7.387-5.998-11.995-5.998h-110.226c-5.339 0-10.021 1.975-14.043 5.998s-5.998 8.631-5.998 14.043v36.059c0 5.339 1.975 9.509 5.998 12.507s8.631 4.535 14.043 4.535h110.226zM128.293 510.903c4.681 0 8.631-1.682 11.995-4.974s4.974-7.387 4.974-11.995v-37.083c0-4.681-1.682-8.997-4.974-13.019s-7.387-5.998-11.995-5.998h-110.226c-5.339 0-10.021 1.975-14.043 5.998s-5.998 8.631-5.998 14.043v36.059c0 5.339 1.975 9.509 5.998 12.507s8.631 4.535 14.043 4.535h110.226zM128.293 365.86c4.681 0 8.631-1.536 11.995-4.535s4.974-7.168 4.974-12.507v-37.083c0-4.681-1.682-8.997-4.974-13.019s-7.387-5.998-11.995-5.998h-110.226c-5.339 0-10.021 1.975-14.043 5.998s-5.998 8.631-5.998 14.043v36.059c0 5.339 1.975 9.509 5.998 12.507s8.631 4.535 14.043 4.535h110.226zM128.293 219.502c4.681 0 8.631-1.682 11.995-4.974s4.974-7.68 4.974-13.019v-36.059c0-5.339-1.682-10.021-4.974-14.043s-7.387-5.998-11.995-5.998h-110.226c-5.339 0-10.021 1.975-14.043 5.998s-5.998 8.631-5.998 14.043v36.059c0 5.339 1.975 9.655 5.998 13.019s8.631 4.974 14.043 4.974h110.226zM698.953 655.14c8.777 0 16.165-3.072 22.309-9.216s9.216-13.531 9.216-22.309v-446.318c0-8.777-3.072-16.53-9.216-23.186s-13.531-10.021-22.309-10.021h-448.951c-9.362 0-16.969 2.926-22.747 8.777s-8.777 13.385-8.777 22.747v445.44c0 9.362 2.926 17.335 8.777 24.064s13.385 10.021 22.747 10.021h448.951zM237.495 731.428c-5.339 0-10.021 1.682-14.043 4.974s-5.998 7.314-5.998 11.995h1.024v110.226c0 5.339 1.829 10.021 5.486 14.043s8.192 5.998 13.531 5.998h37.083c4.681 0 8.631-1.975 11.995-5.998s4.974-8.704 4.974-14.043v-110.226c0-4.681-1.682-8.704-4.974-11.995s-7.68-4.974-13.019-4.974h-36.059zM276.846 72.192c4.681 0 8.631-1.975 11.995-5.998s4.974-8.338 4.974-13.019v-110.226c0-5.339-1.682-9.509-4.974-12.507s-7.68-4.535-13.019-4.535h-36.059c-5.339 0-10.021 1.536-14.043 4.535s-5.998 7.168-5.998 12.507h1.024v110.226c0 4.681 1.829 8.997 5.486 13.019s8.192 5.998 13.531 5.998h37.083zM384.878 731.428c-5.339 0-10.021 1.682-14.043 4.974s-5.998 7.314-5.998 11.995v110.226c0 5.339 1.975 10.021 5.998 14.043s8.631 5.998 14.043 5.998h36.059c5.339 0 9.655-1.975 13.019-5.998s4.974-8.704 4.974-14.043v-110.226c0-4.681-1.682-8.704-4.974-11.995s-7.68-4.974-13.019-4.974h-36.059zM420.937 72.192c5.339 0 9.655-1.975 13.019-5.998s4.974-8.338 4.974-13.019v-110.226c0-5.339-1.682-9.509-4.974-12.507s-7.68-4.535-13.019-4.535h-36.059c-5.339 0-10.021 1.536-14.043 4.535s-5.998 7.168-5.998 12.507v110.226c0 4.681 1.975 8.997 5.998 13.019s8.631 5.998 14.043 5.998h36.059zM531.237 731.428c-4.681 0-8.997 1.682-13.019 4.974s-5.998 7.314-5.998 11.995v110.226c0 5.339 1.975 10.021 5.998 14.043s8.631 5.998 14.043 5.998h36.059c5.339 0 9.509-1.975 12.507-5.998s4.535-8.704 4.535-14.043v-110.226c0-4.681-1.536-8.704-4.535-11.995s-7.168-4.974-12.507-4.974h-37.083zM568.32 72.192c5.339 0 9.509-1.975 12.507-5.998s4.535-8.338 4.535-13.019v-110.226c0-5.339-1.536-9.509-4.535-12.507s-7.168-4.535-12.507-4.535h-37.083c-4.681 0-8.997 1.536-13.019 4.535s-5.998 7.168-5.998 12.507v110.226c0 4.681 1.975 8.997 5.998 13.019s8.631 5.998 14.043 5.998h36.059zM676.352 731.428c-4.681 0-8.997 1.682-13.019 4.974s-5.998 7.314-5.998 11.995v110.226c0 5.339 1.975 10.021 5.998 14.043s8.631 5.998 14.043 5.998h36.059c5.339 0 9.509-1.975 12.507-5.998s4.535-8.704 4.535-14.043v-110.226c0-4.681-1.536-8.704-4.535-11.995s-7.168-4.974-12.507-4.974h-37.083zM713.362 72.192c5.339 0 9.509-1.975 12.507-5.998s4.535-8.338 4.535-13.019v-110.226c0-5.339-1.536-9.509-4.535-12.507s-7.168-4.535-12.507-4.535h-37.083c-4.681 0-8.997 1.536-13.019 4.535s-5.998 7.168-5.998 12.507v110.226c0 4.681 1.975 8.997 5.998 13.019s8.631 5.998 14.043 5.998h36.059zM933.815 658.286c5.339 0 9.509-1.682 12.507-4.974s4.535-7.387 4.535-11.995v-37.083c0-4.681-1.536-8.997-4.535-13.019s-7.168-5.998-12.507-5.998h-110.226c-4.681 0-9.216 1.975-13.531 5.998s-6.51 8.631-6.51 14.043v36.059c0 5.339 2.121 9.509 6.51 12.507s8.85 4.535 13.531 4.535h110.226zM933.815 510.903c5.339 0 9.509-1.682 12.507-4.974s4.535-7.387 4.535-11.995v-37.083c0-4.681-1.536-8.997-4.535-13.019s-7.168-5.998-12.507-5.998h-110.226c-4.681 0-9.216 1.975-13.531 5.998s-6.51 8.631-6.51 14.043v36.059c0 5.339 2.121 9.509 6.51 12.507s8.85 4.535 13.531 4.535h110.226zM933.815 365.86c5.339 0 9.509-1.536 12.507-4.535s4.535-7.168 4.535-12.507v-37.083c0-4.681-1.536-8.997-4.535-13.019s-7.168-5.998-12.507-5.998h-110.226c-4.681 0-9.216 1.975-13.531 5.998s-6.51 8.631-6.51 14.043v36.059c0 5.339 2.121 9.509 6.51 12.507s8.85 4.535 13.531 4.535h110.226zM933.815 219.502c5.339 0 9.509-1.682 12.507-4.974s4.535-7.68 4.535-13.019v-36.059c0-5.339-1.536-10.021-4.535-14.043s-7.168-5.998-12.507-5.998h-110.226c-4.681 0-9.216 1.975-13.531 5.998s-6.51 8.631-6.51 14.043v36.059c0 5.339 2.121 9.655 6.51 13.019s8.85 4.974 13.531 4.974h110.226z" />
+<glyph unicode="&#xe928;" glyph-name="chat" data-tags="pficon-chat" d="M964.681 549.010h-85.358v268.727c-1.609 47.031-16.238 59.977-50.688 59.977h-763.904c-56.32 0-64.731-5.339-64.731-59.977v-511.122c0-71.168 0-87.186 64.731-88.649h80.53v-144.53c0-23.845 13.751-35.84 30.939-35.84 140.142 0 210.286 71.607 262.656 180.663h73.143v-80.384c0.293-64.805 0.293-64.805 62.171-64.585h159.013c55.442-93.842 199.68-146.432 199.68-146.432 11.41 0 19.602 10.459 19.602 21.87v124.562h12.215c59.319-0.146 59.319-0.146 59.831 64.585v352.11c-0.512 58.514-0.512 58.514-59.831 58.953zM368.786 364.544c-11.41-203.776-149.358-219.794-149.358-219.794v220.014h-110.665v403.237h659.237v-403.456h-399.214z" />
+<glyph unicode="&#xe929;" glyph-name="arrow" data-tags="arrow" horiz-adv-x="1097" d="M921.6-73.143h-885.029c-21.943 0-36.571 14.629-36.571 36.571v804.571c0 21.943 14.629 36.571 36.571 36.571h292.571l-109.714-146.286h-73.143v-585.143h658.286v73.143l146.286 146.286v-329.143c0-21.943-14.629-36.571-29.257-36.571v0zM665.6 731.428c-219.429 0-394.971-131.657-373.029-351.086 14.629-138.971 87.771-160.914 146.286-204.8-58.514 124.343 36.571 321.829 263.314 336.457 7.314 0 21.943 0 29.257 0v-219.429l365.714 329.143-365.714 329.143v-219.429c0 0-65.829 0-65.829 0z" />
+<glyph unicode="&#xe92a;" glyph-name="resources-full" data-tags="resources-full" d="M512 109.714c-181.486 0-329.143 147.657-329.143 329.143s147.657 329.143 329.143 329.143c181.486 0 329.143-147.657 329.143-329.143s-147.657-329.143-329.143-329.143zM954.743 694.171c45.714-78.4 68.571-164.114 68.571-256.914s-22.857-178.514-68.571-256.914c-45.714-78.4-107.886-140.571-186.286-186.286s-164.114-68.571-256.914-68.571c-92.8 0-178.514 22.857-256.914 68.571s-140.571 107.886-186.286 186.286c-45.486 78.4-68.343 164.114-68.343 256.914s22.857 178.514 68.571 256.914c45.714 78.4 107.886 140.343 186.286 186.057s164.114 68.571 256.914 68.571c92.8 0 178.514-22.857 256.914-68.571 78.171-45.714 140.343-107.657 186.057-186.057zM677.257 829.714c-52.571 22.629-107.886 34.057-165.486 34.057-57.829 0-112.914-11.429-165.486-34.057s-97.829-53.029-136-90.971c-37.943-37.943-68.343-83.2-90.971-136-22.629-52.571-34.057-107.886-34.057-165.486 0-57.829 11.429-112.914 34.057-165.486s53.029-97.829 90.971-136c37.943-37.943 83.2-68.343 136-90.971 52.571-22.629 107.886-34.057 165.486-34.057 57.829 0 112.914 11.429 165.486 34.057s97.829 53.029 136 90.971c37.943 37.943 68.343 83.2 90.971 136 22.629 52.571 34.057 107.886 34.057 165.486 0 57.829-11.429 112.914-34.057 165.486s-53.029 97.829-90.971 136c-37.943 37.943-83.429 68.343-136 90.971z" />
+<glyph unicode="&#xe92b;" glyph-name="info" data-tags="pficon-info" d="M983.552 639.049c-26.99 62.025-63.707 116.151-110.007 162.523-46.373 46.299-100.498 83.017-162.523 110.007s-128.366 40.521-199.022 40.521-136.997-13.531-199.022-40.521c-62.025-26.99-116.224-63.707-162.523-110.007-46.373-46.373-83.017-100.498-110.007-162.523s-40.521-128.366-40.521-199.022 13.531-137.070 40.521-199.022c26.99-61.952 63.634-116.297 110.007-162.962s100.498-83.383 162.523-110.007c62.025-26.624 128.366-40.009 199.022-40.009s136.997 13.312 199.022 40.009 116.151 63.342 162.523 110.007c46.299 46.592 83.017 100.937 110.007 162.962s40.521 128.366 40.521 199.022-13.531 136.997-40.521 199.022zM869.449 289.060c-20.407-47.323-48.201-88.43-83.529-123.465s-76.507-62.683-123.465-83.017c-46.958-20.334-97.134-30.501-150.455-30.501s-103.497 10.167-150.455 30.501c-46.958 20.334-88.064 48.055-123.465 83.017s-63.195 76.142-83.529 123.465c-20.334 47.25-30.501 97.646-30.501 150.967s10.167 103.497 30.501 150.455c20.334 46.958 48.274 88.064 83.529 123.465s76.507 63.195 123.465 83.529c46.958 20.334 97.134 30.501 150.455 30.501s103.497-10.167 150.455-30.501c46.958-20.407 88.137-48.201 123.465-83.529s63.195-76.507 83.529-123.465c20.334-46.958 30.501-97.134 30.501-150.455s-10.167-103.643-30.501-150.967zM584.997 603.136v72.704c0 2.633-0.366 5.193-1.024 7.461s-1.975 4.169-4.023 5.486c-1.975 1.975-4.023 3.511-5.998 4.535s-4.315 1.536-7.022 1.536h-110.007c-2.706 0-4.974-0.512-7.022-1.536s-4.023-2.487-5.998-4.535c-1.975-1.317-3.365-3.145-4.023-5.486s-1.024-4.827-1.024-7.461v-72.704c0-2.706 0.293-5.193 1.024-7.461s1.975-4.169 4.023-5.486c1.975-1.975 4.023-3.365 5.998-4.023s4.315-1.024 7.022-1.024h110.007c2.633 0 4.974 0.293 7.022 1.024s4.023 1.975 5.998 4.023c1.975 1.317 3.365 3.145 4.023 5.486s1.024 4.827 1.024 7.461zM603.429 292.571h-18.432v201.143c0 0.146-0.146 0.219-0.146 0.366-0.073 2.194-0.293 4.462-0.878 6.363-0.658 2.267-1.975 4.535-4.023 6.51-1.975 1.317-4.023 2.487-5.998 3.511s-4.315 1.536-7.022 1.536h-146.359c-10.021 0-18.286-8.265-18.286-18.286v-36.571c0-10.021 8.265-18.286 18.286-18.286h18.286v-146.286h-18.286c-10.021 0-18.286-8.265-18.286-18.286v-36.571c0-10.021 8.265-18.286 18.286-18.286h182.857c10.021 0 18.286 8.265 18.286 18.286v36.571c0 10.021-8.265 18.286-18.286 18.286z" />
+<glyph unicode="&#xe92c;" glyph-name="in-progress" data-tags="in-progress" d="M193.536 38.18l67.438 116.736c-5.705 5.047-11.337 10.24-16.75 15.579-34.231 33.938-61.221 73.801-80.896 119.662-6.729 15.653-12.215 31.598-16.677 47.909l-134.875-9.289c6.729-30.574 16.311-60.27 28.818-89.015 26.99-62.025 63.634-116.37 110.007-162.962 13.678-13.751 28.014-26.624 43.081-38.619zM175.689 608.548l-120.32 60.709c-5.266-10.24-10.167-20.699-14.848-31.378-22.382-51.419-35.474-105.765-39.278-163.109l135.387 9.362c4.242 34.231 13.093 66.999 26.697 98.304 3.877 8.923 7.973 17.627 12.434 26.112v0zM983.479 637.879c-26.99 62.025-63.707 116.151-110.007 162.523s-100.498 83.017-162.523 110.007-128.366 40.521-199.022 40.521v-138.313c50.834-0.293 98.67-10.094 143.579-29.55 45.568-19.675 85.431-46.665 119.662-80.896s61.221-74.094 80.896-119.662 29.55-94.135 29.55-145.847-9.874-100.425-29.55-146.359c-19.675-45.861-46.665-85.723-80.896-119.662s-74.094-60.709-119.662-80.457-94.135-29.55-145.847-29.55c-42.935 0-83.822 6.802-122.514 20.407l-67.511-116.955c60.123-24.795 124.197-37.23 192.293-37.23 70.656 0 136.997 13.385 199.022 40.009s116.151 63.342 162.523 110.007 83.017 101.010 110.007 162.962 40.521 128.366 40.521 199.022c0 70.656-13.531 136.997-40.521 199.022z" />
+<glyph unicode="&#xe92d;" glyph-name="maintenance" data-tags="maintenance" d="M984.064 846.555l-24.503 17.408c-57.49 49.371-146.359 54.272-195.73-3.218l-206.263-239.177 53.321-44.325 194.633 213.431c7.68 9.143 30.354 5.632 39.278-2.267s16.896-26.331 9.216-35.474l-197.925-214.967 41.326-35.035 11.483 12.654 183.881 203.776c7.68 9.143 25.746 5.632 34.743-2.267s16.896-26.331 9.216-35.474l-191.122-219.575 51.419-43.593 192.512 225.499c49.371 57.49 48.128 160.622-5.486 202.606zM1002.935 110.884l-518.656 459.922c19.163 35.986 29.989 77.019 29.989 120.613 0 142.043-115.127 257.17-257.17 257.17-25.966 0-51.054-3.877-74.679-11.045l148.553-148.553c22.235-22.235 22.235-58.587 0-80.823l-90.624-90.624c-22.235-22.235-58.587-22.235-80.823 0l-148.553 148.553c-7.168-23.625-11.045-48.713-11.045-74.679 0-142.043 115.127-257.17 257.17-257.17 43.593 0 84.699 10.825 120.613 29.989l459.922-518.656c20.48-23.845 55.369-25.234 77.605-2.999l90.624 90.624c22.235 22.162 20.846 57.125-2.999 77.605v0zM222.062 147.017l80.677-0.073 104.594 139.045 74.533-71.241-115.639-121.637 0.951-81.847-142.409-84.407-76.873 54.93 74.094 165.303z" />
+<glyph unicode="&#xe92e;" glyph-name="migration" data-tags="migration" d="M77.678 445.513c-3.657 3.657-5.486 7.973-5.486 12.8v52.809h-73.143v-55.077c0-25.161 8.923-46.665 26.99-64.658 17.847-17.847 39.57-26.99 64.658-26.99h54.857v75.41h-55.077c-5.047 0.439-9.143 2.267-12.8 5.705zM997.23 556.544c-17.847 17.847-39.57 26.99-64.658 26.99h-475.429c-4.535 0-8.997-0.293-13.385-0.878l-130.194 130.194c-15.799 15.799-21.431 13.458-40.96 17.042s-28.965-1.243-39.936-12.142-15.726-20.407-12.142-39.936c3.511-19.529 1.243-25.234 17.042-40.96l129.243-129.243c-0.878-5.047-1.243-10.313-1.243-15.653v-54.857h-146.505v-73.143h146.505v-345.381c0-25.161 8.923-46.665 26.99-64.658 17.847-17.847 39.57-26.99 64.658-26.99h475.648c25.161 0 46.665 8.923 64.658 26.99 17.847 17.847 26.99 39.57 26.99 64.658v473.381c-0.219 25.161-9.143 46.665-27.209 64.658zM951.077 18.505c0-5.047-1.829-9.143-5.486-12.8s-7.973-5.486-12.8-5.486h-475.648c-5.047 0-9.143 1.829-12.8 5.486s-5.486 7.973-5.486 12.8v416.987l185.125-185.125c0.951-0.951 1.902-1.829 2.779-2.706l-18.505-18.651-87.918-87.918c-13.166-12.727-16.165-27.355-8.923-43.959 7.241-16.969 19.749-25.454 37.595-25.454h285.477c11.045 0 20.626 4.023 28.672 12.069s12.069 17.627 12.069 28.672v285.477c0 17.847-8.265 32.695-24.869 39.936-17.408 7.168-32.256 1.902-44.617-11.264l-82.798-82.213-20.334-20.48c-0.805 0.805-1.609 1.682-2.487 2.56l-183.735 183.735h416.475c5.047 0 9.143-1.829 12.8-5.486s5.486-7.973 5.486-12.8v-473.381zM-0.951 733.038h73.143v-147.456h-73.143v147.456zM509.733 732.087h73.143v-147.456h-73.143v147.456zM25.819 925.33c-17.847-17.847-26.77-39.278-26.77-64.439v-55.735h73.143v55.735c0 5.047 1.829 9.143 5.486 12.8s7.973 5.486 12.8 5.486h55.296v73.143h-55.296c-25.161 0-46.665-8.923-64.658-26.99zM218.039 952.247h147.456v-73.143h-147.456v73.143zM505.783 873.618v0c3.657-3.657 5.486-7.973 5.486-12.8v-91.429h75.41v91.429c0 25.161-8.923 46.665-26.99 64.658-17.847 17.847-39.57 26.99-64.658 26.99h-55.515v-73.143h53.248c5.047-0.219 9.362-2.048 13.019-5.705z" />
+<glyph unicode="&#xe92f;" glyph-name="off" data-tags="off" d="M584.704 607.012v-336.238c0-21.065-7.68-39.351-23.113-54.711s-29.111-23.113-50.176-23.113-34.743 7.68-50.176 23.113c-15.433 15.433-23.113 33.646-23.113 54.711v336.238c0 21.065 7.68 39.351 23.113 54.711s29.038 23.113 50.176 23.113 34.743-7.68 50.176-23.113c15.433-15.433 23.113-33.646 23.113-54.711zM512-73.143c-70.656 0-136.997 13.385-199.022 40.009s-116.151 63.342-162.523 110.007-83.017 101.010-110.007 162.962-40.521 128.366-40.521 199.022c0 70.656 13.531 136.997 40.521 199.022s63.634 116.151 110.007 162.523 100.498 83.017 162.523 110.007 128.366 40.521 199.022 40.521c70.656 0 136.997-13.531 199.022-40.521s116.151-63.707 162.523-110.007c46.299-46.299 83.017-100.498 110.007-162.523s40.521-128.366 40.521-199.022c0-70.656-13.531-136.997-40.521-199.022s-63.707-116.37-110.007-162.962c-46.299-46.665-100.498-83.31-162.523-110.007s-128.366-40.009-199.022-40.009zM361.545 796.379c-46.958-20.334-88.137-48.128-123.465-83.529s-63.195-76.507-83.529-123.465c-20.334-46.958-30.501-97.134-30.501-150.455s10.167-103.643 30.501-150.967c20.334-47.323 48.128-88.503 83.529-123.465s76.507-62.683 123.465-83.017c46.958-20.334 97.134-30.501 150.455-30.501s103.497 10.167 150.455 30.501c46.958 20.334 88.137 47.982 123.465 83.017s63.122 76.142 83.529 123.465c20.334 47.323 30.501 97.646 30.501 150.967s-10.167 103.497-30.501 150.455c-20.334 46.958-48.128 88.137-83.529 123.465s-76.507 63.122-123.465 83.529c-46.958 20.334-97.134 30.501-150.455 30.501s-103.497-10.167-150.455-30.501z" />
+<glyph unicode="&#xe930;" glyph-name="on-running" data-tags="on-running" d="M511.781-73.143c-70.656 0-136.923 13.312-198.875 40.009s-116.078 63.269-162.45 109.934c-46.299 46.665-82.944 100.937-109.934 162.962s-40.448 128.293-40.448 198.875 13.458 136.923 40.448 198.875 63.634 116.078 109.934 162.45c46.299 46.299 100.425 82.944 162.45 109.934s128.293 40.448 198.875 40.448 136.923-13.458 198.875-40.448 116.078-63.634 162.45-109.934c46.299-46.299 82.944-100.425 109.934-162.45s40.448-128.293 40.448-198.875-13.458-136.923-40.448-198.875-63.634-116.297-109.934-162.962-100.425-83.31-162.45-109.934-128.293-40.009-198.875-40.009v0zM361.326 795.94c-46.958-20.334-88.137-48.128-123.465-83.456s-63.122-76.434-83.456-123.465-30.501-97.134-30.501-150.455 10.167-103.643 30.501-150.894c20.334-47.323 48.128-88.43 83.456-123.465s76.434-62.61 123.465-82.944 97.134-30.501 150.455-30.501 103.424 10.167 150.455 30.501c46.958 20.334 88.137 47.982 123.465 82.944s63.122 76.142 83.456 123.465 30.501 97.646 30.501 150.894-10.167 103.424-30.501 150.455c-20.334 46.958-48.128 88.137-83.456 123.465s-76.434 63.122-123.465 83.456-97.134 30.501-150.455 30.501c-53.321 0-103.424-10.167-150.455-30.501v0zM730.697 498.395c1.975-8.119 2.414-19.383-1.17-26.331-7.387-14.263-16.457-26.99-26.185-40.96-83.017-119.296-158.135-200.485-249.71-305.371-17.993-20.626-34.889-13.751-42.057-9.070-15.579 10.24-15.799 29.769-7.314 52.297 9.801 25.966 20.48 57.783 29.842 79.799 22.455 52.736 20.187 58.075 41.911 114.907-52.297-0.512-127.781-0.951-180.078-1.463-15.067-0.146-33.499 1.902-39.497 16.311-5.778 13.751-0.146 26.039 8.558 38.107 64.146 89.381 172.617 212.626 248.174 294.546 6.51 7.022 30.062 23.333 43.739 21.358 10.825-1.536 21.87 1.243 26.843-9.289 5.851-12.434 2.706-25.746-2.56-37.23-22.016-48.347-45.714-118.638-71.095-174.519 50.615-0.073 144.53-0.073 195.145-0.146 8.558 0 18.432-0.731 23.406-8.046 1.024-1.536 1.755-3.145 2.121-4.901v0z" />
+<glyph unicode="&#xe931;" glyph-name="on" data-tags="on" d="M731.429 770.267c36.571 28.16 77.239 3.584 77.239 3.584 13.97-11.557 26.551-25.234 39.351-38.107 42.935-42.935 76.873-93.038 101.888-150.455s37.522-118.857 37.522-184.247c0-65.463-12.507-126.83-37.522-184.247s-58.953-107.739-101.888-150.967c-42.935-43.227-93.038-77.166-150.455-101.888s-118.857-37.083-184.247-37.083c-65.463 0-126.83 12.361-184.247 37.083s-107.593 58.661-150.455 101.888c-42.935 43.227-76.873 93.55-101.888 150.967s-37.522 118.857-37.522 184.247 12.507 126.83 37.522 184.247 58.953 107.593 101.888 150.455c11.045 11.045 22.162 22.089 33.938 32.256 0 0 32.11 33.499 80.091 3.072 0 0 52.517-45.714 0-98.158-8.777-8.777-18.944-16.165-27.794-25.015-31.963-31.963-57.125-69.193-75.483-111.689s-27.575-87.845-27.575-136.046 9.216-93.696 27.575-136.485 43.52-80.018 75.483-111.689c31.963-31.598 69.193-56.686 111.689-75.045s87.845-27.575 136.046-27.575c48.201 0 93.55 9.216 136.046 27.575s79.726 43.374 111.689 75.045c31.963 31.598 57.125 68.827 75.483 111.689s27.575 88.283 27.575 136.485-9.216 93.55-27.575 136.046-43.52 79.726-75.483 111.689c-9.143 9.143-19.529 16.823-28.745 25.819-47.689 46.226 0 96.622 0 96.622v0zM586.167 873.472v-354.962c0-21.358-7.826-39.79-23.406-55.369s-29.477-23.406-50.834-23.406-35.255 7.826-50.834 23.406-23.406 34.011-23.406 55.369v354.962c0 21.358 7.826 39.79 23.406 55.369s29.477 23.406 50.834 23.406c21.358 0 35.255-7.826 50.834-23.406s23.406-34.011 23.406-55.369z" />
+<glyph unicode="&#xe932;" glyph-name="paused" data-tags="paused" d="M438.418 607.012v-336.238c0-0.219 0-0.512 0-0.805 0-21.285-8.85-40.448-23.113-54.053v0c-15.433-15.433-29.111-23.113-50.322-23.113s-34.743 7.68-50.322 23.113c-14.263 13.678-23.113 32.841-23.113 54.053 0 0.293 0 0.585 0 0.805v-0.073 336.238c0 0.219 0 0.512 0 0.805 0 21.285 8.85 40.448 23.113 54.053v0c15.433 15.433 29.038 23.113 50.322 23.113s34.743-7.68 50.322-23.113c14.263-13.678 23.113-32.841 23.113-54.126 0-0.293 0-0.585 0-0.805v0.073zM730.99 607.012v-336.238c0-0.219 0-0.512 0-0.805 0-21.285-8.85-40.448-23.113-54.053v0c-15.433-15.433-29.111-23.113-50.322-23.113s-34.743 7.68-50.322 23.113c-14.263 13.678-23.113 32.841-23.113 54.053 0 0.293 0 0.585 0 0.805v-0.073 336.238c0 0.219 0 0.512 0 0.805 0 21.285 8.85 40.448 23.113 54.053v0c15.433 15.433 29.038 23.113 50.322 23.113s34.743-7.68 50.322-23.113c14.263-13.678 23.113-32.841 23.113-54.126 0-0.293 0-0.585 0-0.805v0.073zM512-73.143c-70.656 0-136.997 13.312-199.022 40.009-63.195 27.282-117.102 64.366-162.45 109.934v0c-45.349 45.714-82.359 99.767-108.69 159.598l-1.317 3.365c-26.99 62.025-40.521 128.366-40.521 199.022s13.531 136.997 40.521 199.022c53.541 122.88 149.65 218.917 269.166 271.214l3.365 1.317c62.025 26.99 128.366 40.521 199.022 40.521s136.997-13.531 199.022-40.521c122.88-53.541 218.917-149.65 271.214-269.166l1.317-3.365c26.99-62.025 40.521-128.366 40.521-199.022s-13.531-136.997-40.521-199.022c-27.575-63.195-64.658-117.248-110.007-163.035l0.073 0.073c-45.422-45.641-99.328-82.725-159.159-108.763l-3.291-1.317c-62.025-26.697-128.366-40.009-199.022-40.009v0zM361.545 796.379c-93.403-40.594-166.4-113.591-206.043-204.434l-0.951-2.56c-19.31-44.471-30.501-96.329-30.501-150.747s11.191-106.277 31.451-153.307l-0.951 2.487c20.626-47.982 48.786-88.942 83.456-123.392v0c34.597-34.231 75.557-62.245 120.905-81.993l2.56-1.024c44.398-19.31 96.183-30.501 150.528-30.501s106.057 11.191 153.015 31.451l-2.487-0.951c47.909 20.773 88.795 48.786 123.465 83.017l-0.073-0.073c34.67 34.45 62.83 75.41 82.505 120.905l0.951 2.487c19.31 44.471 30.501 96.329 30.501 150.747s-11.191 106.277-31.451 153.307l0.951-2.487c-40.594 93.403-113.591 166.4-204.434 206.043l-2.56 0.951c-44.398 19.31-96.183 30.501-150.528 30.501s-106.057-11.191-153.015-31.451l2.487 0.951h0.146z" />
+<glyph unicode="&#xe933;" glyph-name="pending" data-tags="pending" d="M512-73.143c-70.656 0-136.997 13.385-199.022 40.009s-116.151 63.342-162.523 110.007-83.017 101.010-110.007 162.962-40.521 128.366-40.521 199.022c0 70.656 13.531 136.997 40.521 199.022s63.634 116.151 110.007 162.523 100.498 83.017 162.523 110.007 128.366 40.521 199.022 40.521c70.656 0 136.997-13.531 199.022-40.521s116.151-63.707 162.523-110.007c46.299-46.299 83.017-100.498 110.007-162.523s40.521-128.366 40.521-199.022c0-70.656-13.531-136.997-40.521-199.022s-63.707-116.37-110.007-162.962c-46.299-46.665-100.498-83.31-162.523-110.007s-128.366-40.009-199.022-40.009zM361.545 796.379c-46.958-20.334-88.137-48.128-123.465-83.529s-63.195-76.507-83.529-123.465c-20.334-46.958-30.501-97.134-30.501-150.455s10.167-103.643 30.501-150.967c20.334-47.323 48.128-88.503 83.529-123.465s76.507-62.683 123.465-83.017c46.958-20.334 97.134-30.501 150.455-30.501s103.497 10.167 150.455 30.501c46.958 20.334 88.137 47.982 123.465 83.017s63.122 76.142 83.529 123.465c20.334 47.323 30.501 97.646 30.501 150.967s-10.167 103.497-30.501 150.455c-20.334 46.958-48.128 88.137-83.529 123.465s-76.507 63.122-123.465 83.529c-46.958 20.334-97.134 30.501-150.455 30.501s-103.497-10.167-150.455-30.501zM328.997 662.967c0 0-8.338-94.135 73.143-130.633 26.112-11.703 70.875-33.573 72.411-71.68l0.731-1.536c2.267-36.571-19.017-60.928-74.606-80.311-75.557-26.331-71.753-160.037-71.753-160.037v0c-0.073-0.512-0.146-1.024-0.146-1.536v-62.098c0-2.487 0.805-4.535 2.341-6.071s3.584-2.341 6.071-2.341h349.038c2.487 0 4.535 0.805 6.071 2.341s2.341 3.657 2.341 6.071v62.098c0 0.512-0.073 1.024-0.146 1.536v0c0 0 4.096 134.51-73.143 162.597-58.661 21.358-75.41 48.786-74.313 77.751 3.438 30.427 49.225 60.123 74.313 75.118 79.653 47.616 74.167 119.735 73.289 127.927v60.489c0 2.487-0.805 4.535-2.341 6.071s-3.584 2.341-6.071 2.341h-348.965c-2.487 0-4.535-0.805-6.071-2.341s-2.341-3.584-2.341-6.071v-56.174c0-0.878 0.073-2.121 0.293-3.511h-0.146zM527.872 273.188c111.397 0.512 93.696-54.491 93.696-54.491h-219.429c0 55.223 87.625 53.687 87.625 53.687l38.107 0.731z" />
+<glyph unicode="&#xe934;" glyph-name="rebooting" data-tags="rebooting" d="M997.595 805.303c-17.335 7.168-32.11 4.242-44.398-8.923l-83.017-82.359c-7.314 7.826-14.848 15.433-22.382 22.967-42.935 42.935-93.038 76.873-150.455 101.888s-118.857 37.522-184.247 37.522-126.83-12.507-184.247-37.522-107.739-58.953-150.967-101.888c-43.227-42.935-77.166-93.038-101.888-150.455s-37.083-118.857-37.083-184.247 12.361-126.83 37.010-184.247c24.722-57.417 58.661-107.593 101.888-150.455s93.55-76.873 150.967-101.888 118.857-37.522 184.247-37.522c65.39 0 126.83 12.507 184.247 37.522s107.593 58.953 150.455 101.888c12.873 12.873 26.551 25.381 38.107 39.351 0 0 24.649 40.667-3.584 77.239v0c0 0-50.395 47.616-96.622 0-8.997-9.216-16.603-19.602-25.819-28.745-31.963-31.963-69.193-57.125-111.689-75.483s-87.845-27.575-136.046-27.575c-48.201 0-93.696 9.216-136.485 27.575s-80.018 43.593-111.689 75.483c-31.598 31.963-56.686 69.193-75.045 111.689s-27.575 87.845-27.575 136.046c0 48.201 9.216 93.55 27.575 136.046s43.374 79.726 75.045 111.689c31.671 31.963 68.901 57.125 111.689 75.483s88.283 27.575 136.485 27.575c48.201 0 93.55-9.216 136.046-27.575s79.726-43.52 111.689-75.483c7.973-7.973 14.775-16.969 22.455-25.088l-25.819-25.966-87.625-87.625c-13.093-12.727-16.091-27.282-8.923-43.813 7.168-16.896 19.675-25.381 37.449-25.381h284.306c10.971 0 20.553 4.023 28.599 12.069s12.069 17.554 12.069 28.526v284.306c0 17.774-8.265 30.208-24.722 37.449z" />
+<glyph unicode="&#xe935;" glyph-name="unknown" data-tags="unknown" d="M520.923-73.362c-53.467 0-94.135 16.896-131.438 54.199l-332.8 332.142c-37.522 37.522-55.296 77.678-56.686 126.391-1.609 64.439 32.475 98.523 59.685 125.952l324.315 326.144c25.6 25.6 67.218 59.465 133.705 59.465 0.658 0 1.39 0 2.267 0 58.734-0.658 96.475-30.427 128.658-62.391l320.439-323.657c44.544-50.542 53.979-79.799 54.199-126.171 0.439-59.173-12.581-83.237-53.467-126.83l-322.267-323.438c-26.77-26.77-60.123-60.123-120.247-61.513-2.048-0.219-4.315-0.219-6.363-0.219v0 0zM512.219 821.028c-13.239 0-20.334-5.047-36.352-19.163l-329.143-326.875c-21.943-21.943-21.943-29.257-21.723-37.23 0.439-13.239 5.486-19.675 21.065-35.182l329.582-329.582c13.239-12.361 19.456-18.505 36.133-18.505 17.847 0 25.819 6.656 38.4 18.066l327.973 329.143c21.943 21.943 20.773 22.821 20.773 36.571 0 0 0.439 16.018-21.723 37.522l-329.582 327.753c-21.065 16.457-26.99 17.627-35.401 17.627-0.439 0 0.219 0 0 0v0 0zM583.753 374.857c22.162 8.923 39.058 18.066 55.735 32.695 16.457 14.409 29.477 29.038 39.058 48.421 9.582 19.237 14.409 34.962 14.409 56.027s-4.827 40.667-14.409 59.173-22.601 34.523-39.058 48.201-35.913 24.43-58.075 32.475c-22.162 7.973-45.714 7.314-70.656 7.314-75.63 0-122.075-16.018-144.896-48.201s-35.182-60.123-37.522-93.038c0-3.438 1.39-5.705 3.877-6.875s5.925-1.829 9.801-1.829c3.438 0 12.8 0 42.057 0s42.715 0 45.056 0 5.047 0.439 7.973 1.829c3.218 1.17 6.363 3.657 6.363 7.753-0.219 23.552 23.771 29.696 67.218 29.915 38.619 0.219 74.021-10.313 74.021-36.791 0-13.019-5.486-25.381-16.677-37.010s-40.887-18.066-57.344-19.237c-17.115-1.17-35.401-4.096-50.542-8.923s-22.601-17.115-22.601-37.010c0-5.705 0-6.875 0-12.8s0-8.265 0-16.238 2.048-13.019 5.925-15.287c3.877-2.267 10.021-3.438 17.847-3.438 7.314 0 27.648 0 51.419 0 24.942-0.439 48.713 4.096 70.875 12.8v0zM586.021 275.456c0 2.487-0.439 4.535-1.39 6.437s-2.048 3.657-3.218 5.486c-1.829 1.829-3.657 3.218-5.486 4.096s-4.096 1.39-6.363 1.39h-115.2c-2.487 0-4.535-0.439-6.363-1.39s-3.657-2.267-5.486-4.096c-1.17-1.829-2.267-3.657-3.218-5.486s-1.39-4.096-1.39-6.437v-74.971c0-2.487 0.439-4.827 1.39-6.875s2.048-3.877 3.218-5.047c1.829-1.829 3.657-3.218 5.486-4.096s4.096-1.39 6.363-1.39h115.2c2.487 0 4.535 0.439 6.363 1.39s3.657 2.267 5.486 4.096c1.17 1.17 2.267 2.999 3.218 5.047s1.39 4.535 1.39 6.875v74.971z" />
+<glyph unicode="&#xe936;" glyph-name="applications" data-tags="applications" d="M950.827 643.87h-131.627v197.973c0 40.107-32.853 72.96-73.173 72.96h-672.853c-40.32 0-73.173-32.853-73.173-72.96v-534.613c0-40.32 32.853-73.173 73.173-73.173h131.627v-197.76c0-40.32 32.853-73.173 73.173-73.173h672.853c40.32 0 73.173 32.853 73.173 73.173v534.613c0 40.107-32.853 72.96-73.173 72.96zM887.467 577.524v-70.4h-68.267v70.4h68.267zM612.267 850.59h70.4v-70.4h-70.4v70.4zM70.187 308.51v402.133h679.040v-402.133h-679.040zM953.813 37.364h-678.827v196.693h471.040c40.32 0 73.173 32.853 73.173 73.173v132.48h134.613v-402.347z" />
+<glyph unicode="&#xe937;" glyph-name="automation" data-tags="automation" d="M257.102 590.754v0zM748.061 499.776v0c-15.23 6.212-28.255 3.607-38.876-7.815l-72.742-72.141-16.031-16.031-252.092 255.499c-38.676 32.063-63.123 36.070-111.818 36.070-141.677 0-256.501-114.824-256.501-256.501s114.824-256.501 256.501-256.501c48.094 0 88.373 17.835 124.243 45.89l-0.601 0.401c1.804 1.202 3.607 2.405 5.411 3.607 23.446 16.632 28.856 49.296 12.224 72.742s-49.296 28.856-72.742 12.224c-23.245-16.632-50.298-26.251-78.754-28.456-82.762 1.002-142.077 66.73-142.077 150.093 0 82.561 61.921 149.893 143.881 152.297h0.601c1.403 0 2.605 0 4.008 0 0.802-0.2 1.603 0 2.204-0.2h0.401c14.629 0.2 37.874-5.21 57.913-21.241l234.458-238.867-87.972-87.972c-11.422-11.222-14.027-23.847-7.815-38.475 6.212-14.829 17.234-22.243 32.864-22.243h249.287c9.619 0 18.035 3.607 25.049 10.621s10.621 15.43 10.621 25.049v249.086c0 15.631-7.214 26.652-21.642 32.864zM769.503 695.358v-1.403c-2.805 0.601-5.811 0.802-8.817 0.802-54.506 0.802-106.809-15.029-151.696-45.89-23.646-16.432-29.658-48.695-13.226-72.542 10.020-14.629 26.452-22.444 42.884-22.444 10.22 0 20.44 3.006 29.458 9.218 26.852 18.436 58.314 28.055 90.978 27.454 3.607 0 7.014 0.2 10.42 0.802v-0.401c83.964 0 152.297-68.333 152.297-152.297 0-61.119-36.271-114.023-88.172-138.27v-110.416c110.616 28.456 192.376 128.852 192.376 248.485 0 142.077-114.824 256.902-256.501 256.902z" />
+<glyph unicode="&#xe938;" glyph-name="connected" data-tags="connected" d="M300.48 247.154c-14.377 0-28.526 6.766-37.417 19.406-35.543 50.514-54.331 109.966-54.331 171.931 0 61.897 18.743 121.303 54.24 171.794 14.514 20.663 43.040 25.646 63.68 11.109 20.663-14.514 25.646-43.040 11.109-63.68-24.594-35.017-37.6-76.229-37.6-119.223 0-43.017 13.029-84.297 37.691-119.314 14.537-20.64 9.577-49.166-11.086-63.703-8.023-5.623-17.211-8.32-26.286-8.32v0zM721.737 246.834c-9.12 0-18.309 2.72-26.331 8.366-20.617 14.56-25.531 43.086-10.971 63.703 24.777 35.086 37.851 76.434 37.851 119.566 0 43.429-13.257 85.029-38.331 120.251-14.651 20.571-9.829 49.12 10.72 63.749 20.571 14.629 49.12 9.829 63.749-10.72 36.16-50.811 55.291-110.72 55.291-173.28 0-62.126-18.88-121.714-54.606-172.297-8.891-12.594-23.017-19.337-37.371-19.337v0zM622.034 439.177c0-60.777-49.257-110.034-110.034-110.034s-110.034 49.257-110.034 110.034 49.257 110.034 110.034 110.034 110.034-49.257 110.034-110.034zM862.697 92.571c-12.366 0-24.8 4.251-34.949 12.937-22.514 19.314-25.12 53.211-5.806 75.749 61.463 71.68 95.314 163.269 95.314 257.829 0 95.611-34.514 187.954-97.189 260-19.474 22.377-17.12 56.32 5.28 75.771 22.377 19.474 56.297 17.12 75.771-5.28 79.68-91.589 123.566-208.96 123.566-330.514 0-120.206-43.040-236.617-121.189-327.771-10.606-12.366-25.646-18.72-40.8-18.72zM163.474 89.531c-14.971 0-29.874 6.217-40.48 18.4-80.046 91.68-124.137 209.303-124.137 331.154 0 84.731 21.463 168.549 62.057 242.4 17.257 31.383 37.943 61.029 61.509 88.114 19.474 22.377 53.394 24.731 75.771 5.28s24.731-53.394 5.28-75.771c-18.56-21.326-34.857-44.663-48.434-69.371-31.886-58.034-48.754-123.977-48.754-190.651 0-95.863 34.674-188.389 97.623-260.503 19.52-22.354 17.211-56.274-5.143-75.794-10.171-8.891-22.766-13.257-35.291-13.257z" />
+<glyph unicode="&#xe939;" glyph-name="catalog" data-tags="catalog" horiz-adv-x="1097" d="M509.714 737.371v-0.686c0.229 0.229 0.229 0.457 0 0.686zM184.457 84.114c-67.2-6.171-111.314-83.657-111.314-83.657v877.257c-73.143-2.286-73.143-68.571-73.143-68.571v-813.714c2.971-86.857 109.714-66.286 109.714-66.286 109.714 154.743 402.286-2.286 402.286-2.286v71.314c-125.714 81.829-242.286 95.543-327.543 85.943zM366.629 133.714c53.486-9.371 110.857-52.571 143.086-60.343v72.914h-3.886c-0.229 0-0.457 0-0.686 0h4.571v590.4c0 0 0 0 0 0v0.686c0 0 0 0 0 0l0.229 58.057c0 0-0.229 0-0.229 0.229v8c-119.314 76.8-274.057 129.143-363.429 145.829v-811.2c65.6 18.057 120.229 13.257 220.343-4.571zM587.429 737.371c-0.229-0.229-0.229-0.229 0 0v0zM1024 877.714v-877.257c0 0-44.114 77.486-111.314 83.657-85.257 9.6-201.829-4.114-327.543-85.943v-71.314c0 0 292.571 157.029 402.286 2.286 0 0 106.743-20.571 109.714 66.286v813.714c0 0 0 66.286-73.143 68.571zM587.429 545.143v-398.857l10.514 1.829c-2.057-1.143-4.343-1.829-6.629-1.829h-3.886v-72.914c32.229 7.771 89.6 50.971 143.086 60.343 100.114 17.829 154.743 22.629 220.343 4.571v811.2c-89.371-16.686-244.114-69.029-363.429-145.6v-8.229c0-0.229-0.229-0.229-0.229-0.229l0.229-58.057v-192.229z" />
+<glyph unicode="&#xe93a;" glyph-name="enhancement" data-tags="enhancement" d="M1001.6 317.943l-106.743 120.914 106.743 120.914c4.343 5.486 7.543 11.657 9.371 18.514 7.086 26.286-8.686 53.486-34.971 60.571l-150.629 30.171 23.771 157.486c0.457 7.086-0.686 13.943-3.2 20.571-9.829 25.371-38.4 38.171-64 28.343l-159.543-86.171-68.8 138.971c-3.886 5.943-8.686 10.971-14.629 14.629-22.857 14.857-53.486 8.229-68.343-14.629l-71.314-139.2-157.257 86.171c-6.4 2.514-13.486 3.657-20.343 3.2-27.429-1.371-48.229-24.686-46.857-51.886l23.771-157.486-150.629-30.4c-6.857-1.829-13.029-5.029-18.514-9.371-21.257-17.143-24.457-48.229-7.314-69.486l106.971-120.914-106.743-120.914c-4.343-5.486-7.543-11.657-9.371-18.514-7.086-26.286 8.686-53.486 35.2-60.343l155.2-25.6-28.343-162.057c-0.457-7.086 0.686-13.943 3.2-20.571 9.829-25.371 38.4-38.171 64-28.343l157.257 86.171 71.314-139.2c3.886-5.943 8.686-10.971 14.629-14.629 22.857-14.857 53.486-8.229 68.343 14.629l71.314 139.2 157.257-86.171c6.4-2.514 13.486-3.657 20.571-3.2 27.2 1.371 48.229 24.686 46.629 52.114l-28.343 162.057 155.2 25.6c6.857 1.829 13.029 5.029 18.514 9.371 20.8 17.143 24 48.229 6.629 69.486zM730.971 384.228c0-2.286-0.229-4.8-0.914-7.086-0.914-2.286-2.286-4.343-4.114-5.943-1.371-2.057-3.2-3.429-5.486-4.114-2.514-0.686-5.029-0.914-7.543-0.914h-128v-128c0-2.514-0.229-5.029-0.914-7.543-0.686-2.286-2.057-4.114-4.114-5.486-1.829-1.829-3.657-3.429-5.943-4.571s-4.571-1.6-7.086-1.6h-109.943c-2.514 0-4.8 0.457-7.086 1.6s-4.343 2.743-5.943 4.571c-2.057 1.371-3.429 3.2-4.114 5.486-0.686 2.514-0.914 5.029-0.914 7.543v128h-128c-2.514 0-5.029 0.229-7.543 0.914-2.286 0.686-4.114 2.057-5.486 4.114-1.829 1.6-3.2 3.657-4.114 5.943-0.686 2.286-1.143 4.571-0.914 7.086v109.029c0 2.514 0.229 5.029 0.914 7.543s2.057 4.8 4.114 6.4c1.6 1.6 3.429 2.743 5.486 3.429 2.286 0.914 5.029 1.6 7.543 1.6h128v128c0 2.514 0.229 5.029 0.914 7.543 0.686 2.286 2.057 4.114 4.114 5.486 1.6 1.829 3.657 3.2 5.943 4.114 2.286 0.686 4.571 1.143 7.086 0.914h109.943c2.286 0 4.8-0.229 7.086-0.914 2.286-0.914 4.343-2.286 5.943-4.114 2.057-1.371 3.429-3.2 4.114-5.486 0.686-2.514 0.914-5.029 0.914-7.543v-128h128c2.514 0 5.029-0.457 7.543-1.6v0c2.057-0.686 3.886-2.057 5.714-3.429 1.829-1.829 3.2-4.114 4.114-6.4 0.686-2.514 0.914-5.029 0.914-7.543v-109.029h-0.229z" />
+<glyph unicode="&#xe93b;" glyph-name="pficon-history" data-tags="pficon-history" d="M512 950.857c-136.731 0-260.937-53.623-352.754-140.96l-116.823 116.823c-23.337 23.337-42.423 15.429-42.423-17.577v-264c0-50.994 8.343-60 60-60h264c33.006 0 40.914 19.086 17.577 42.423v0l-91.794 91.794c71.383 66.834 163.977 103.497 262.217 103.497 102.56 0 198.994-39.954 271.52-112.48s112.48-168.96 112.48-271.52c0-102.56-39.954-198.994-112.48-271.543-72.526-72.503-168.96-112.457-271.52-112.457s-198.994 39.954-271.52 112.48c-6.057 6.057-11.863 12.297-17.463 18.674l-96.32-84.297c93.851-107.177 231.657-174.857 385.303-174.857 282.766 0 512 229.234 512 512s-229.234 512-512 512z" />
+<glyph unicode="&#xe93c;" glyph-name="disconnected" data-tags="disconnected" d="M904.686 112.457c77.486 90.971 120 206.857 120 326.629 0 121.6-43.886 238.857-123.657 330.514-19.429 22.4-53.486 24.686-75.657 5.257-22.4-19.429-24.686-53.486-5.257-75.886 62.629-72 97.143-164.343 97.143-259.886 0-91.2-31.543-179.657-88.914-250.286l-73.6 73.6c1.143 1.371 2.514 2.743 3.429 4.343 35.657 50.286 54.4 109.714 54.4 171.657 0 62.4-18.971 122.057-55.086 172.571-14.171 20.114-42.057 24.686-62.171 10.514s-24.686-42.057-10.514-62.171c25.143-35.429 38.629-77.257 38.629-120.914 0-40-11.2-78.629-32.686-112.229l-75.429 75.2c4.343 11.657 6.629 24.229 6.629 37.486 0 60.8-49.371 109.943-109.943 109.943-13.257 0-25.829-2.286-37.486-6.629l-393.371 393.829c-18.286 18.286-48 18.286-66.286 0s-18.286-48 0-66.286l104.229-104.229c0 0 0 0 0 0l76.343-76.114c0 0 0 0 0 0l137.143-137.143c0 0 0 0 0 0l75.886-75.886c0 0 0 0 0 0l140.571-140.571c0 0 0 0 0 0l393.829-393.829c9.143-9.143 21.029-13.714 33.143-13.714s24 4.571 33.143 13.714c18.286 18.286 18.286 48 0 66.286l-104.457 104.229zM298.971 438.4c0 4.8 0.229 9.371 0.457 13.943l-75.886 75.886c-9.143-28.8-13.714-58.971-13.714-89.829 0-61.714 18.743-120.914 54.171-171.2 8.686-12.343 22.4-18.971 36.571-18.971 8.914 0 17.829 2.514 25.6 8 20.114 14.171 24.914 42.057 10.743 62.171-24.914 35.429-37.943 76.8-37.943 120zM106.286 439.086c0 58.514 13.029 116.343 37.714 168.914l-79.543 79.543c-1.143-2.057-2.286-4.114-3.429-6.171-40.457-73.829-61.943-157.714-61.943-242.514 0-121.829 44.114-239.543 124.114-331.2 10.743-12.114 25.6-18.286 40.457-18.286 12.571 0 25.143 4.343 35.2 13.257 22.4 19.429 24.686 53.486 5.029 75.886-62.857 72.229-97.6 164.571-97.6 260.571z" />
+<glyph unicode="&#xe93d;" glyph-name="infrastructure" data-tags="infrastructure" d="M1013.36 171.757c-7.060 7.060-15.44 10.5-25.5 10.5h-27.9v63.6c0 17.4-6.4 34.2-19 47-12.6 12.6-27.6 19-45 19h-63.4v62.56h26.8c10.080 0 18.5 3.46 25.58 10.54s10.54 15.5 10.54 25.58v120.2c0 10.080-3.46 18.5-10.54 25.58s-15.5 10.54-25.58 10.54h-113.16l-106.7 106.7c0.18 1.74 0.28 3.52 0.28 5.36v159.9c0 13.4-4.6 24.6-14.020 34.020s-20.62 14.020-34.020 14.020h-159.9c-13.4 0-24.62-4.6-34.020-14.020-9.42-9.42-14.020-20.62-14.020-34.020v-159.9c0-1.88 0.12-3.68 0.3-5.48l-106.42-106.58c-9.94 0-78.38 0-78.38 0h-36.1c-10.080 0-18.5-3.46-25.58-10.54s-10.54-15.5-10.54-25.58v-120.2c0-10.080 3.46-18.5 10.54-25.58s15.5-10.54 25.58-10.54h27.4v-62.76h-63.6c-17.4 0-32.2-6.4-45-19 0 0-17.5-22.8-18.76-48.56v-61.84h-27.060c-10.040 0-18.44-3.44-25.5-10.5s-10.48-15.44-10.48-25.5v-119.82c0-10.040 3.44-18.44 10.5-25.5 7.040-7.040 15.44-10.5 25.5-10.5h119.8c10.040 0 18.44 3.44 25.5 10.5 7.040 7.040 10.5 15.44 10.5 25.5v119.82c0 10.040-3.44 18.44-10.5 25.5s-15.44 10.5-25.5 10.5h-28v64.6h191.5v-0.6l0.44-64h-27.86c-10.040 0-18.44-3.44-25.5-10.5s-10.5-15.44-10.5-25.5v-119.82c0-10.040 3.44-18.44 10.5-25.5 7.040-7.040 15.44-10.5 25.5-10.5h119.82c10.040 0 18.44 3.44 25.5 10.5 7.040 7.040 10.5 15.44 10.5 25.5v119.82c0 10.040-3.44 18.44-10.5 25.5s-15.44 10.5-25.5 10.5h-27.9v63.6c0 17.4-6.4 34.2-19 47-12.6 12.6-27.6 19-45 19h-63.4v62.56h26.8c10.080 0 18.5 3.46 25.58 10.54s10.54 15.5 10.54 25.58v113.32l107.12 107.28c1.7-0.16 3.42-0.26 5.2-0.26h159.9c1.82 0 3.58 0.1 5.32 0.28l105.98-105.98v-114.64c0-10.080 3.46-18.5 10.54-25.58s15.5-10.54 25.58-10.54h27.4v-62.76h-63.6c-17.4 0-32.2-6.4-45-19 0 0-17.5-22.8-18.76-48.56v-61.84h-27.060c-10.040 0-18.44-3.44-25.5-10.5s-10.5-15.44-10.5-25.5v-119.82c0-10.040 3.44-18.44 10.5-25.5 7.040-7.040 15.44-10.5 25.5-10.5h119.82c10.040 0 18.44 3.44 25.5 10.5 7.040 7.040 10.5 15.44 10.5 25.5v119.82c0 10.040-3.44 18.44-10.5 25.5s-15.44 10.5-25.5 10.5h-28v64.6h191.5v-0.6l0.44-64h-27.86c-10.040 0-18.44-3.44-25.5-10.5s-10.5-15.44-10.5-25.5v-119.82c0-10.040 3.44-18.44 10.5-25.5 7.040-7.040 15.44-10.5 25.5-10.5h119.82c10.040 0 18.44 3.44 25.5 10.5 7.040 7.040 10.5 15.44 10.5 25.5v119.82c0 10.040-3.44 18.44-10.5 25.5zM575.9 696.857h-128v128h128v-128z" />
+<glyph unicode="&#xe93e;" glyph-name="optimize" data-tags="optimize" d="M256 758.857l-128 128h-64v-64l128-128zM320 950.857h64v-128h-64zM576 630.857h128v-64h-128zM640 822.857v64h-64l-128-128 64-64zM0 630.857h128v-64h-128zM320 374.857h64v-128h-64zM64 374.857v-64h64l128 128-64 64zM1010 68.857l-636.118 636.118c-18.668 18.668-49.214 18.668-67.882 0l-60.118-60.118c-18.668-18.668-18.668-49.214 0-67.882l636.118-636.118c18.668-18.668 49.214-18.668 67.882 0l60.118 60.118c18.668 18.668 18.668 49.214 0 67.882zM480 406.857l-192 192 64 64 192-192-64-64z" />
+<glyph unicode="&#xe93f;" glyph-name="orders" data-tags="orders" d="M448 156.347l-205.254 237.254 58.508 58.51 146.746-114.744 274.744 242.744 58.512-58.508zM831.772 822.857c0.078-0.066 0.162-0.15 0.228-0.23v-767.542c-0.066-0.078-0.15-0.162-0.228-0.228h-639.544c-0.080 0.066-0.162 0.15-0.228 0.228v767.544c0.066 0.080 0.15 0.162 0.23 0.228h-128.23v-768c0-70.4 57.6-128 128-128h640c70.4 0 128 57.6 128 128v768h-128.228zM640 822.857v64c0 35.346-28.654 64-64 64h-128c-35.346 0-64-28.654-64-64v-64h-128v-128h512v128h-128zM576 822.857h-128v64h128v-64z" />
+<glyph unicode="&#xe940;" glyph-name="plugged" data-tags="plugged" d="M730.057 694.857l1.6 255.771-146.057-0.686-0.229-255.086h-146.057l-1.829 255.771h-143.543l-3.177-255.771h-106.537c0 0 0-0.411 0-1.143h-37.943l-0.457-114.743 38.4 0.069c0-0.046 0-0.069 0-0.069h693.486v115.886h-147.657zM804.571 508.571v0h-1.189l-34.446 0.229-0.183-0.206-130.4 0.114 0.526 0.526-454.857 2.286c9.829-107.657 44.343-243.429 125.029-330.971l0.183 0.183c66.88-75.223 129.623-80.16 129.623-80.16v-173.714h146.286v172.343c179.2 43.657 239.086 253.943 253.029 409.143l-33.6 0.229z" />
+<glyph unicode="&#xe941;" glyph-name="service-catalog" data-tags="service-catalog" d="M172.16 107.764c79.573 8.96 188.373-3.84 305.707-80.213v-66.56c0 0-273.067 146.56-375.467 2.133 0 0-99.627-19.2-102.4 61.867v759.467c0 0 0 61.867 68.267 64v-818.773c0 0 41.173 72.32 103.893 78.080zM472.107 165.79c-5.973 0-11.947 4.693-12.8 10.667l-7.040 91.307c-11.307 3.413-12.16 2.987-22.4 8.107l-63.147-58.88c-2.133-2.133-5.547-2.987-8.533-2.987-3.413 0-6.4 1.28-8.96 3.413-11.093 10.24-61.653 56.107-61.653 68.48 0 2.987 1.28 5.547 2.987 8.107 12.373 16.213 43.733 51.84 56.107 68.48-5.973 11.733-5.12 7.893-8.96 19.84l-89.6 5.76c-5.973 0.853-10.24 6.4-10.24 12.373v78.933c0 5.547 4.267 11.947 9.813 12.8l88.747 4.267c3.413 11.307 2.56 16.213 8.107 26.88-11.947 17.067-41.6 44.8-55.253 61.013-1.707 2.56-2.987 5.547-2.987 8.533s0.853 5.973 2.987 8.533c8.533 11.52 56.533 63.36 68.907 63.36 3.413 0 6.4-1.28 8.96-2.987l65.92-57.813c10.88 5.547 9.813 6.4 21.333 10.24 2.133 21.547-0.64 67.84 4.907 88.747 1.707 5.973 6.827 10.24 12.8 10.24h3.627v66.133c-111.36 71.68-255.787 120.533-339.2 136.107v-757.12c61.227 16.853 112.213 12.373 205.653-4.267 49.92-8.747 103.467-49.067 133.547-56.32v68.053h-3.627zM851.84 107.764c-79.573 8.96-188.373-3.84-305.707-80.213v-66.56c0 0 273.067 146.56 375.467 2.133 0 0 99.627-19.2 102.4 61.867v759.467c0 0 0 61.867-68.267 64v-818.773c0 0-41.173 72.32-103.893 78.080zM551.893 165.79c5.973 0 11.947 4.693 12.8 10.667l7.040 91.307c11.307 3.413 12.16 2.987 22.4 8.107l63.147-58.88c2.133-2.133 5.547-2.987 8.533-2.987 3.413 0 6.4 1.28 8.96 3.413 11.093 10.24 61.653 56.107 61.653 68.48 0 2.987-1.28 5.547-2.987 8.107-12.373 16.213-43.733 51.84-56.107 68.48 5.973 11.733 5.12 7.893 8.96 19.84l89.6 5.76c5.973 0.853 10.24 6.4 10.24 12.373v78.933c0 5.547-4.267 11.947-9.813 12.8l-88.747 4.267c-3.413 11.307-2.56 16.213-8.107 26.88 11.947 17.067 41.6 44.8 55.253 61.013 1.707 2.56 2.987 5.547 2.987 8.533s-0.853 5.973-2.987 8.533c-8.533 11.52-56.533 63.36-68.907 63.36-3.413 0-6.4-1.28-8.96-2.987l-65.92-57.6c-10.88 5.547-9.813 6.4-21.333 10.24-2.133 21.547 0.64 67.84-4.907 88.747-1.707 5.973-6.827 10.24-12.8 10.24h-3.627v66.133c111.36 71.467 255.787 120.32 339.2 135.893v-757.12c-61.227 16.853-112.213 12.373-205.653-4.267-49.92-8.747-103.467-49.067-133.547-56.32v68.053h3.627zM620.8 434.59c0-60.096-48.704-108.8-108.8-108.8s-108.8 48.704-108.8 108.8c0 60.096 48.704 108.8 108.8 108.8s108.8-48.704 108.8-108.8z" />
+<glyph unicode="&#xe942;" glyph-name="unplugged" data-tags="unplugged" d="M395.429 127.771v0c21.029-13.029 17.829-20.343 43.429-27.2v-173.714h146.286v172.343c179.2 43.657 239.086 253.943 253.029 409.143l-69.257 0.457-373.486-381.029zM944.457 866.514c-16.457 16.686-43.429 16.686-59.886 0.229l-154.4-153.509 1.486 237.394-146.057-0.686-0.229-256.229-146.057 0.914-1.829 256h-143.543l-3.2-256.914h-144.457l-0.457-114.743 450.24 0.914-70.469-70.057-341.6 1.714c7.589-83.223 29.966-183.246 77.006-264.8l-176.434-175.429c-16.686-16.457-16.686-43.429-0.229-59.886 8.229-8.457 18.971-12.571 29.943-12.571v0c10.743 0 21.486 4.114 29.943 12.343l800 795.429c16.686 16.457 16.686 43.429 0.229 59.886z" />
+<glyph unicode="&#xe943;" glyph-name="filter" data-tags="filter" horiz-adv-x="951" d="M908.571 758.857c-113.714 113.714-434.354 118.857-434.354 118.857-366.903 0-437.646-124.571-437.646-124.571-22.857-34.286-0.114-58.286-0.114-58.286l329.143-330.286v-254.857c0-9.714 4-18.857 10.857-25.714l146.286-146.286c6.857-7.429 16-10.857 25.714-10.857 4.571 0 9.714 1.143 14.286 2.857 13.143 5.714 22.286 18.857 22.286 33.714v401.143l329.166 328.023c0 0-2.4-1.509-5.509-1.12l5.509 1.12c20.526 34.309-5.623 66.263-5.623 66.263zM475.429 656c-181.783 0-336 18.126-336 54.56s154.217 77.417 336 77.417 336-40.983 336-77.417-154.217-54.56-336-54.56z" />
+<glyph unicode="&#xe944;" glyph-name="monitoring" data-tags="monitoring" horiz-adv-x="1097" d="M1097.143 75.428v804.571h-1097.143v-804.571h475.429v-73.143h-256v-73.143h658.286v73.143h-256v73.143h475.429zM146.286 221.714v509.714h802.286v-509.714h-802.286zM802.103 655.108l-180.389-186.149-145.76 150.309-249.326-249.326c-18.743-18.743-18.743-49.143 0-67.886 9.371-9.371 21.646-14.057 33.943-14.057s24.571 4.686 33.943 14.057l180.389 180.389 146.811-151.406 249.326 257.28c18.446 19.040 17.966 49.417-1.074 67.863-19.017 18.446-49.417 17.966-67.863-1.074z" />
+<glyph unicode="&#xe945;" glyph-name="port" data-tags="port" horiz-adv-x="951" d="M549.554 64l-164.114 469.806-137.189-243.52h-248.251v114.286h181.463l228.526 405.623 169.6-485.623 120.434 189.714h250.834v-114.286h-188.023z" />
+<glyph unicode="&#xe946;" glyph-name="security" data-tags="security" d="M925.714 938.194c-7.84 8.183-18.697 12.777-30.034 12.663h-767.68c-11.337 0.114-22.194-4.48-30.034-12.663-8.183-7.817-12.754-18.674-12.663-29.989v-511.817c0.137-38.949 7.726-77.509 22.331-113.623 13.851-35.657 32.457-69.257 55.314-99.909 23.497-30.72 49.806-59.177 78.629-84.96 26.72-24.503 54.857-47.406 84.297-68.571 25.76-18.286 52.64-35.497 80.64-51.657s47.863-27.154 59.634-32.983c11.771-5.783 21.211-10.217 28.32-13.326 10.926-5.326 23.726-5.326 34.651 0 7.109 3.040 16.549 7.497 28.32 13.326s31.68 16.777 59.703 32.846c28 16.206 54.88 33.44 80.64 51.657 29.44 21.166 57.577 44.069 84.297 68.571 28.823 25.829 55.131 54.331 78.606 85.097 22.857 30.674 41.463 64.297 55.314 99.954 14.606 36.114 22.194 74.674 22.331 113.623v511.771c0.114 11.314-4.457 22.171-12.617 29.989zM595.337 183.52c-0.206-15.291-12.549-27.634-27.84-27.84h-111.36c-15.291 0.206-27.634 12.549-27.84 27.84v97.44c0.206 15.291 12.549 27.634 27.84 27.84h111.36c15.291-0.206 27.634-12.549 27.84-27.84v-97.44zM596.206 429.097c-0.251-7.451-3.451-14.491-8.914-19.566-5.211-5.326-12.343-8.32-19.794-8.274h-111.36c-7.451-0.046-14.583 2.949-19.794 8.274-5.463 5.074-8.663 12.114-8.914 19.566l-12.183 334.057c-0.366 7.314 2.4 14.423 7.611 19.566 5.006 5.349 12.023 8.366 19.36 8.274h139.2c7.337 0.091 14.354-2.926 19.36-8.274 5.211-5.143 7.977-12.251 7.611-19.566l-12.183-334.057z" />
+<glyph unicode="&#xe947;" glyph-name="services" data-tags="services" horiz-adv-x="1026" d="M962.514 328.228c-45.943 48.229-96 23.086-96 23.086l-205.943-205.029-256-0.686c-36.571 0-35.429 34.971-35.429 34.971 0 36.571 35.657 36.571 35.657 36.571h217.829c15.314 0 16.686 0.686 27.429 11.429 7.223 7.223 9.486 16.389 10.194 26.286 0.274-3.909 0.32-7.931 0.32-12v24c0-4.069-0.046-8.069-0.32-12-0.709 9.897-2.971 19.063-10.194 26.286-10.743 10.743-12.114 13.714-27.429 13.714h-373.257c-20.343 0.457-41.371-10.286-61.943-26.971l-151.086-159.543 184.457-183.086 76.343 73.143h421.714c33.143 1.6 78.4 58.743 78.4 58.743l183.314 192c18.286 43.429-18.057 79.086-18.057 79.086zM291.017 614.057v0c0-6.4 4.571-12.343 10.971-13.257l96-6.171c4.114-12.8 3.2-8.686 9.6-21.257-13.257-17.829-46.857-56-60.114-73.371-1.829-2.743-3.2-5.486-3.2-8.686 0-13.257 54.171-62.4 66.057-73.371 2.743-2.286 5.943-3.657 9.6-3.657 3.2 0 6.857 0.914 9.143 3.2l67.657 63.086c10.971-5.486 11.886-5.029 24-8.686l7.543-97.829c0.914-6.4 7.314-11.429 13.714-11.429h85.257c6.4 0 11.886 4.571 13.714 10.971 5.943 22.4 1.6 74.743 3.886 98.286 12.343 3.657 11.2 4.343 22.857 10.286l72-64.457c2.743-1.829 5.943-3.2 9.6-3.2 13.257 0 64.686 56 73.829 68.343 2.286 2.286 3.2 5.486 3.2 8.686 0 3.657-1.371 6.4-3.2 9.143-14.629 17.371-53.029 49.829-65.829 68.114 5.943 11.429 4.8 11.2 8.457 23.314l101.943 7.543c5.943 0.914 10.514 7.771 10.514 13.714v84.8c-0.229 5.714-4.8 11.657-11.2 13.029l-97.829 8c-4.114 12.8-2.057 9.143-8 21.714 12.8 17.829 47.086 53.029 60.343 70.857 1.829 2.743 3.2 5.486 3.2 8.686 0 12.8-54.171 62.4-66.057 73.371-2.743 2.286-5.943 3.657-9.6 3.657-3.2 0-6.4-0.914-9.143-3.2l-68.114-59.429c-10.971 5.486-12.571 5.486-24.686 9.143l-6.171 93.943c-0.914 6.4-7.314 11.429-13.714 11.429h-85.257c-6.4 0-11.886-4.571-13.714-10.971-5.943-22.4-2.971-72-5.257-95.086-12.343-4.114-11.2-5.029-22.857-10.971l-70.629 61.943c-2.743 1.829-5.943 3.2-9.6 3.2-13.257 0-64.686-55.543-73.829-67.886-2.286-2.743-3.2-5.943-3.2-9.143s1.371-6.4 3.2-9.143c14.629-17.371 46.4-47.086 59.2-65.371-5.943-11.429-5.029-16.686-8.686-28.8l-95.086-4.571c-5.943-0.914-10.514-7.771-10.514-13.714v-84.8zM582.903 769.943c63.314 0 114.743-51.429 114.743-114.743s-51.406-114.743-114.743-114.743c-63.086 0-114.743 51.429-114.743 114.743s51.429 114.743 114.743 114.743zM182.331 658.286c60.594 0 109.714 49.12 109.714 109.714s-49.12 109.714-109.714 109.714-109.714-49.12-109.714-109.714 49.12-109.714 109.714-109.714zM182.331 809.623c22.994 0 41.646-18.629 41.646-41.623s-18.651-41.623-41.646-41.623-41.623 18.629-41.623 41.623 18.629 41.623 41.623 41.623zM219.429 587.428c-40.389 0-73.143-32.754-73.143-73.143s32.754-73.143 73.143-73.143 73.143 32.754 73.143 73.143-32.754 73.143-73.143 73.143zM219.429 489.966c-13.44 0-24.32 10.903-24.32 24.32s10.903 24.32 24.32 24.32 24.32-10.903 24.32-24.32-10.88-24.32-24.32-24.32z" />
+<glyph unicode="&#xe948;" glyph-name="integration" data-tags="integration" horiz-adv-x="1170" d="M665.097 474.171c0 35.817-29.029 64.846-64.846 64.846-23.291 0-43.703-12.274-55.131-30.72-16.503-1.691-31.977 10.331-31.977 36.114v66.697c0 26.354-21.966 48.297-48.297 48.297h-66.697c-35.223 0-44.8 28.869-28.731 49.806 15.794 11.84 26.011 30.697 26.011 51.931 0 35.817-29.029 64.846-64.846 64.846s-64.846-29.029-64.846-64.846c0-18.149 7.451-34.537 19.474-46.309 0.754-0.914 1.509-1.851 2.309-2.743 19.314-21.074 10.537-52.686-26.331-52.686v0l-67.634 0.869c-26.354 0-48.297-21.966-48.297-48.297v-66.697c0-23.36-11.771-35.429-25.76-36.229-11.52 18.011-31.68 29.966-54.651 29.966-35.817 0-64.846-29.029-64.846-64.846s29.029-64.846 64.846-64.846c24 0 44.96 13.051 56.16 32.457 13.943-1.623 25.669-13.623 25.669-36.091v-208.411c0-26.331 24.229-48.297 51.451-49.166h56.366c-7.886 14.926-11.406 30.743-11.406 46.537 0 54.446 27.017 79.177 86.72 80.937h-1.051c43.771 0.983 79.863-24.754 79.863-80.937 0-15.817-4.389-32.48-11.406-46.537h66.743c26.354 0 48.297 21.966 48.297 48.297v210.171c0 25.417 15.017 37.486 31.269 36.183 11.063-19.954 32.32-33.44 56.731-33.44 35.817 0 64.846 29.029 64.846 64.846zM1106.080 539.017c-23.703 0-44.434-12.731-55.749-31.726-13.874 0.091-25.44 12.183-25.44 36.274l0.869 67.566c0 26.331-21.943 48.297-48.297 48.297h-66.697c-32.434 0-43.109 24.457-32.069 44.686 15.703 11.84 25.829 30.629 25.829 51.794 0 35.817-29.029 64.846-64.846 64.846s-64.846-29.029-64.846-64.846c0-23.543 12.549-44.137 31.314-55.497 5.509-18.491-6.149-37.829-34.971-37.829h-135.269c-26.331 0-48.297-24.229-49.166-51.451v-13.143c6.674 1.051 13.509 1.623 20.48 1.623 71.543 0 129.531-57.989 129.531-129.531s-57.989-129.509-129.509-129.509c-6.971 0-13.806 0.571-20.48 1.623v-74.56c0-26.331 21.943-48.297 48.297-48.297h137.029c32.846 0 43.383-25.097 31.634-45.463-17.417-11.634-28.891-31.451-28.891-53.966 0-35.817 29.029-64.846 64.846-64.846s64.846 29.029 64.846 64.846c0 20.823-9.829 39.337-25.097 51.2-13.531 20.686-3.383 47.337 30.491 47.337h71.269c26.331 0 43.726 24.229 43.726 50.583v137.554c0 23.497 10.971 35.566 24.389 36.251 11.063-19.977 32.32-33.509 56.777-33.509 35.817 0 64.846 29.029 64.846 64.846s-29.029 64.846-64.846 64.846z" />
+<glyph unicode="&#xe949;" glyph-name="process-automation" data-tags="process-automation" d="M964.114 290.971h-217.897c-17.12 18.103-48.846 45.646-60.274 61.943 5.943 11.429 4.8 11.2 8.457 23.314l101.943 7.543c5.943 0.914 10.514 7.771 10.514 13.714v84.8c-0.229 5.714-4.8 11.657-11.2 13.029v0l-97.829 8c-4.114 12.8-2.057 9.143-8 21.714 12.8 17.829 47.086 53.029 60.343 70.857 1.829 2.743 3.2 5.486 3.2 8.686 0 12.8-54.171 62.4-66.057 73.371-2.743 2.286-5.943 3.657-9.6 3.657-3.2 0-6.4-0.914-9.143-3.2l-68.114-59.429c-10.971 5.486-12.571 5.486-24.686 9.143l-6.171 93.943c-0.914 6.4-7.314 11.429-13.714 11.429h-85.257c-6.4 0-11.886-4.571-13.714-10.971-5.943-22.4-2.971-72-5.257-95.086-12.343-4.114-11.2-5.029-22.857-10.971l-70.629 61.943c-2.743 1.829-5.943 3.2-9.6 3.2-5.554 0-17.783-9.737-30.789-21.943l-64.731 62.766c70.857 64.846 162.149 100.434 258.949 100.434 102.629 0 199.086-40 271.543-112.457s112.457-168.914 112.457-271.543c0-24.914-2.286-49.371-6.857-73.143h129.6c3.429 24 5.257 48.229 5.257 73.143 0 282.743-229.257 512-512 512-135.931 0-259.177-52.96-350.926-139.2l-118.56 114.971c-23.314 23.314-42.514 15.543-42.514-17.371v-264.229c0-50.971 8.229-59.886 59.886-59.886h224.069c16.091-17.28 39.451-40.046 49.989-55.086-5.943-11.429-5.029-16.686-8.686-28.8l-95.086-4.571c-5.943-0.914-10.514-7.771-10.514-13.714v-84.8c0-6.4 4.571-12.343 10.971-13.257l96-6.171c4.114-12.8 3.2-8.686 9.6-21.257-13.257-17.829-46.857-56-60.114-73.371-1.829-2.743-3.2-5.486-3.2-8.686 0-13.257 54.171-62.4 66.057-73.371 2.743-2.286 5.943-3.657 9.6-3.657 3.2 0 6.857 0.914 9.143 3.2l67.657 63.086c10.971-5.486 11.886-5.029 24-8.686l7.543-97.829c0.914-6.4 7.314-11.429 13.714-11.429h85.257c6.4 0 11.886 4.571 13.714 10.971 5.943 22.4 1.6 74.743 3.886 98.286 12.343 3.657 11.2 4.343 22.857 10.286l72-64.457c2.743-1.829 5.943-3.2 9.6-3.2 5.051 0 15.611 8.114 27.269 18.811l65.44-63.474c-70.834-64-161.349-99.109-257.509-99.109-102.629 0-199.086 40-271.543 112.457s-112.457 168.914-112.457 271.543c0 24.914 2.286 49.371 6.857 73.143h-129.6c-3.429-24-5.257-48.229-5.257-73.143 0-282.743 229.257-512 512-512 135.223 0 257.897 52.434 349.509 137.874l118.834-115.246c23.314-23.314 42.514-15.314 42.514 17.6v264c0 50.971-8.229 59.886-59.886 59.886zM511.543 324.571c-63.086 0-114.743 51.429-114.743 114.743s51.429 114.743 114.743 114.743c63.314 0 114.743-51.429 114.743-114.743s-51.429-114.743-114.743-114.743z" />
+<glyph unicode="&#xe94a;" glyph-name="pficon-network-range" data-tags="pficon-network-range" horiz-adv-x="958" d="M510.766 658.286h-73.417v-145.714h73.417c40.183 0 72.869 32.686 72.869 72.869s-32.709 72.846-72.869 72.846zM734.949 341.943c44.091 62.811 69.989 139.337 69.989 221.897 0.023 213.577-189.097 386.674-402.651 386.674s-402.674-173.097-402.674-386.651c0-82.583 25.897-159.086 69.989-221.897l0.389-0.549c0.709-1.006 1.44-2.034 2.171-3.040l283.634-375.474c23.566-40.503 47.154-35.52 47.154-35.52 26.24 0 47.040 35.726 47.040 35.726l282.4 375.223c0.869 1.189 1.714 2.4 2.56 3.611zM291.040 291.428h-72v440h72v-440zM519.909 439.428h-82.56v-145.714h-72v437.714h154.56c80.503 0 141.44-65.486 141.44-146.011s-60.937-145.989-141.44-145.989zM955.977 539.817v0c0.617 110.469-37.28 198.331-92.754 264.366-10.629 12.663-21.44 24.754-32.526 36.96-9.851 10.857-18.171 18.126-25.143 22.857-4.869 5.92-12.229 9.691-20.48 9.691-14.629 0-26.491-11.863-26.491-26.491 0-6.811 2.583-12.983 6.811-17.691 1.646-2.606 3.589-5.097 5.623-7.429 3.154-3.634 6.56-6.88 9.669-9.577 0 0 24.96-27.931 41.371-50.446 36.48-57.966 56.023-125.211 56.023-198.194 0-82.583-13.92-141.623-58.011-204.434-0.846-1.211-1.691-2.4-2.56-3.611l-294.377-392.686c0 0-2.743-4.686-7.451-10.651 21.12-29.143 56.389-25.097 56.389-25.097 40.48-0.183 60.754 35.726 60.754 35.726l278.377 378.217c0.869 1.189 1.714 2.4 2.56 3.611 50.057 76.549 41.897 136.983 42.217 194.88z" />
+<glyph unicode="&#xe94b;" glyph-name="pficon-satellite" data-tags="pficon-satellite" d="M1019.726 137.486v0l-279.543 276.549c-2.88 2.903-6.697 4.343-10.491 4.343-3.771 0-7.52-1.417-10.377-4.297l-67.36-68.731-20.251 19.68 131.611 128.686c5.851 5.669 5.966 15.040 0.297 20.869l-10.72 11.017c2.606 0.594 5.029 1.874 6.971 3.771l39.383 38.674c5.851 5.669 5.966 15.040 0.297 20.869l-135.109 138.903c-5.669 5.851-15.040 5.989-20.869 0.297l-39.383-38.651c-1.943-1.897-3.291-4.274-3.977-6.857l-7.794 8c-5.669 5.851-15.040 5.989-20.869 0.297l-133.989-130.926-19.246 18.697 66.469 69.28c2.789 2.743 4.366 6.514 4.366 10.423 0.023 3.909-1.531 7.657-4.274 10.446l-279.429 277.691c-2.88 2.903-6.697 4.343-10.491 4.343-3.771 0-7.52-1.417-10.377-4.297l-180.206-183.84c-2.789-2.766-4.366-6.514-4.366-10.423-0.023-3.909 1.531-7.657 4.274-10.446l280.549-280.48c2.903-2.903 6.674-4.343 10.469-4.343 0.457 0 0.937 0.023 1.394 0.069 3.291 0.32 6.491 1.714 8.983 4.229l68.937 71.84 17.783-17.28-66.789-65.257c-2.811-2.743-6.811-8.069-6.857-11.977s0.686-9.257 3.406-12.069l171.52-175.703c2.72-2.811 6.469-4.411 10.377-4.457 0.526 0 1.051 0.023 1.577 0.069 3.337 0.32 6.469 1.76 8.914 4.091l70.743 69.143 21.257-20.64-67.429-68.8c-2.789-2.743-4.366-6.514-4.366-10.423-0.023-3.909 1.531-7.657 4.274-10.446l275.954-278.034c2.903-2.903 6.674-4.343 10.469-4.343 0.457 0 0.937 0.023 1.394 0.069 3.291 0.32 6.491 1.714 8.983 4.229l183.794 185.349c2.789 2.766 4.366 6.514 4.366 10.423 0.046 3.84-1.509 7.589-4.251 10.377zM294.286 568.274l-184.503 184.457 85.806 87.543 184.137-182.971-85.44-89.029zM825.44 37.623l-181.074 182.446 86.103 87.84 183.246-181.28-88.274-89.006zM236.206 370.537c-66.949 0-126.491-31.634-164.526-80.777l123.749-123.749-94.4-93.943c-16-3.909-27.886-18.286-27.886-35.497 0-20.206 16.366-36.571 36.571-36.571 16.914 0 31.109 11.497 35.291 27.109l94.903 94.423 123.406-123.406c49.143 38.034 80.777 97.577 80.777 164.526 0 114.811-93.074 207.886-207.886 207.886z" />
+<glyph unicode="&#xe94c;" glyph-name="pficon-template" data-tags="pficon-template" d="M219.429 512h146.286v-73.143h-146.286v73.143zM438.857 512h146.286v-73.143h-146.286v73.143zM877.714 731.428v-292.571h-219.429v73.143h146.286v146.286h-146.286v73.143h219.429zM438.857 731.428h146.286v-73.143h-146.286v73.143zM365.714 658.286h-146.286v-219.429h-73.143v292.571h219.429v-73.143zM948.571 875.428h-873.143v-873.143h873.143v873.143zM994.126 948.571c16.503 0 29.874-13.371 29.874-29.874v-967.154c0-16.16-13.097-26.971-29.257-26.971h-964.411c-16.754 0-30.331 11.291-30.331 28.046v966.789c0 16.114 13.051 29.166 29.166 29.166h964.96zM219.429 146.286h146.286v-73.143h-146.286v73.143zM438.857 146.286h146.286v-73.143h-146.286v73.143zM877.714 365.714v-292.571h-219.429v73.143h146.286v146.286h-146.286v73.143h219.429zM438.857 365.714h146.286v-73.143h-146.286v73.143zM365.714 292.571h-146.286v-219.429h-73.143v292.571h219.429v-73.143z" />
+<glyph unicode="&#xe94d;" glyph-name="pficon-vcenter" data-tags="pficon-vcenter" d="M889.143 948.183h-461.714c-73.737 0-133.714-59.977-133.714-133.714v-157.897h-157.897c-73.737 0-133.714-59.977-133.714-133.714v-461.714c0-73.737 59.977-133.714 133.714-133.714h461.714c73.714 0 133.714 59.977 133.714 133.714v160.183h157.897c73.737 0 133.714 59.977 133.714 133.714v459.429c0 73.737-59.977 133.714-133.714 133.714zM878.857 365.348h-292.503l0.891-92.16v-201.76h-441.143v441.166h291.611v291.611h441.143v-438.857zM219.429 395.428v-205.714c0-23.886 19.543-43.429 43.429-43.429h205.714c23.886 0 43.429 19.543 43.429 43.429v205.714c0 0 12.64 44.183 42.903 44.183h205.714c23.886 0 43.429 19.543 43.429 43.429v205.714c0 23.886-19.543 43.429-43.429 43.429h-205.714c-23.886 0-43.429-19.543-43.429-43.429v-205.714c0 0 1.303-44.183-42.903-44.183h-205.714c-23.886 0-43.429-19.543-43.429-43.429z" />
+</font></defs></svg>
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.ttf b/themes/src/main/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.ttf
new file mode 100644
index 0000000..1ed274b
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.ttf differ
diff --git a/themes/src/main/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.woff b/themes/src/main/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.woff
new file mode 100644
index 0000000..8eb1d89
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.woff differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-114.png b/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-114.png
new file mode 100644
index 0000000..955e38d
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-114.png differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-120.png b/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-120.png
new file mode 100644
index 0000000..f849f0f
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-120.png differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-144.png b/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-144.png
new file mode 100644
index 0000000..c5da67c
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-144.png differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-152.png b/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-152.png
new file mode 100644
index 0000000..d136a5f
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-152.png differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-180.png b/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-180.png
new file mode 100644
index 0000000..e60a77b
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-180.png differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-57.png b/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-57.png
new file mode 100644
index 0000000..2c692ad
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-57.png differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-72.png b/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-72.png
new file mode 100755
index 0000000..4c2ac89
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-72.png differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-76.png b/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-76.png
new file mode 100644
index 0000000..524eec8
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/apple-touch-icon-precomposed-76.png differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/bg-login.jpg b/themes/src/main/node_modules/rcue/dist/img/bg-login.jpg
new file mode 100644
index 0000000..3872ebb
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/bg-login.jpg differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/bg-login.png b/themes/src/main/node_modules/rcue/dist/img/bg-login.png
new file mode 100644
index 0000000..c408a65
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/bg-login.png differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/bg-login-2.png b/themes/src/main/node_modules/rcue/dist/img/bg-login-2.png
new file mode 100644
index 0000000..531d563
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/bg-login-2.png differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/bg-modal-about-pf.png b/themes/src/main/node_modules/rcue/dist/img/bg-modal-about-pf.png
new file mode 100644
index 0000000..7309fa8
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/bg-modal-about-pf.png differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/bg-navbar-pf-alt.svg b/themes/src/main/node_modules/rcue/dist/img/bg-navbar-pf-alt.svg
new file mode 100644
index 0000000..a0b1cd4
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/bg-navbar-pf-alt.svg
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="615.598px" height="57px" viewBox="25.562 0 615.598 57" enable-background="new 25.562 0 615.598 57" xml:space="preserve"
+	>
+<polygon opacity="0.1" fill="#FFFFFF" enable-background="new    " points="566.242,56.969 623.205,0 641.16,0 584.68,56.969 "/>
+<polygon opacity="0.1" fill="#FFFFFF" enable-background="new    " points="25.562,57 25.562,0 611.034,0 554.554,56.95 "/>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/brand.svg b/themes/src/main/node_modules/rcue/dist/img/brand.svg
new file mode 100644
index 0000000..81cfe50
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/brand.svg
@@ -0,0 +1,87 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="270px" height="10px" viewBox="0 0 270 10" enable-background="new 0 0 270 10" xml:space="preserve">
+<g>
+	<g>
+		<path fill="#FFFFFF" d="M121.965,9.413h-4.883V0.656h4.883v0.903h-3.862V4.38h3.63v0.898h-3.63V8.5h3.862V9.413z"/>
+		<path fill="#FFFFFF" d="M130.988,9.413h-1.158l-4.789-7.352h-0.046c0.062,0.864,0.095,1.655,0.095,2.374v4.978h-0.94V0.656h1.15
+			l4.774,7.317h0.045c-0.006-0.107-0.022-0.453-0.051-1.041c-0.028-0.582-0.039-0.998-0.028-1.254V0.656h0.951v8.753h-0.003V9.413
+			L130.988,9.413z"/>
+		<path fill="#FFFFFF" d="M136.339,9.413h-1.018V1.561h-2.771V0.656h6.564v0.903h-2.771v7.852h-0.002v0.002H136.339z"/>
+		<path fill="#FFFFFF" d="M145.554,9.413h-4.877V0.656h4.877v0.903h-3.859V4.38h3.631v0.898h-3.631V8.5h3.859V9.413z"/>
+		<path fill="#FFFFFF" d="M148.761,5.769v3.641h-1.018V0.656h2.402c1.074,0,1.865,0.204,2.379,0.614
+			c0.514,0.412,0.771,1.032,0.771,1.858c0,1.156-0.586,1.94-1.764,2.349l2.383,3.934h-1.207l-2.121-3.645h-1.826V5.769
+			L148.761,5.769z M148.761,4.897h1.396c0.719,0,1.244-0.142,1.582-0.428c0.334-0.286,0.504-0.714,0.504-1.285
+			c0-0.582-0.17-0.997-0.512-1.254c-0.34-0.255-0.889-0.381-1.643-0.381h-1.324v3.349h-0.004V4.897z"/>
+		<path fill="#FFFFFF" d="M161.124,3.209c0,0.884-0.301,1.567-0.904,2.046c-0.605,0.477-1.475,0.714-2.6,0.714h-1.031v3.444h-1.016
+			V0.656h2.27C160.03,0.656,161.124,1.504,161.124,3.209z M156.589,5.092h0.92c0.898,0,1.555-0.146,1.959-0.435
+			c0.4-0.293,0.604-0.759,0.604-1.404c0-0.577-0.188-1.006-0.568-1.295c-0.381-0.279-0.973-0.423-1.773-0.423h-1.139v3.557H156.589z
+			"/>
+		<path fill="#FFFFFF" d="M164.22,5.769v3.641h-1.02V0.656h2.402c1.074,0,1.865,0.204,2.383,0.614
+			c0.512,0.412,0.771,1.032,0.771,1.858c0,1.156-0.588,1.94-1.762,2.349l2.379,3.934h-1.205l-2.119-3.645h-1.826v0.002H164.22z
+			 M164.22,4.897h1.395c0.719,0,1.244-0.142,1.582-0.428c0.334-0.286,0.504-0.714,0.504-1.285c0-0.582-0.17-0.997-0.51-1.254
+			c-0.34-0.255-0.887-0.381-1.645-0.381h-1.322v3.349h-0.004V4.897z"/>
+		<path fill="#FFFFFF" d="M171.03,9.413V0.656h1.018v8.753h-1.018V9.413z"/>
+		<path fill="#FFFFFF" d="M179.636,7.081c0,0.773-0.281,1.374-0.838,1.805c-0.561,0.434-1.318,0.646-2.277,0.646
+			c-1.039,0-1.836-0.134-2.395-0.4V8.147c0.357,0.152,0.75,0.272,1.174,0.357c0.422,0.088,0.844,0.131,1.258,0.131
+			c0.68,0,1.188-0.129,1.531-0.384c0.346-0.257,0.514-0.62,0.514-1.073c0-0.304-0.061-0.556-0.184-0.748
+			c-0.119-0.194-0.318-0.375-0.607-0.537c-0.285-0.162-0.721-0.351-1.301-0.558c-0.816-0.29-1.398-0.636-1.748-1.036
+			c-0.352-0.398-0.525-0.92-0.525-1.562c0-0.674,0.254-1.211,0.764-1.611c0.508-0.398,1.178-0.599,2.014-0.599
+			c0.869,0,1.672,0.161,2.398,0.48l-0.316,0.884c-0.725-0.3-1.428-0.454-2.109-0.454c-0.539,0-0.959,0.114-1.266,0.347
+			c-0.303,0.231-0.453,0.553-0.453,0.965c0,0.305,0.057,0.551,0.168,0.745c0.115,0.195,0.303,0.372,0.566,0.533
+			c0.268,0.161,0.672,0.34,1.221,0.535c0.92,0.327,1.551,0.679,1.896,1.056C179.462,5.995,179.636,6.483,179.636,7.081z"/>
+		<path fill="#FFFFFF" d="M186.556,9.413h-4.881V0.656h4.881v0.903h-3.863V4.38h3.633v0.898h-3.633V8.5h3.863V9.413z"/>
+		<path fill="#FFFFFF" d="M197.677,9.413l-1.09-2.785h-3.51l-1.078,2.785h-1.031l3.463-8.793h0.854l3.443,8.793H197.677z
+			 M196.267,5.71l-1.018-2.712c-0.131-0.345-0.271-0.766-0.406-1.263c-0.09,0.383-0.211,0.804-0.377,1.263l-1.031,2.712H196.267z"/>
+		<path fill="#FFFFFF" d="M205.733,3.209c0,0.884-0.303,1.567-0.908,2.046c-0.607,0.477-1.473,0.714-2.596,0.714h-1.031v3.444
+			h-1.021V0.656h2.273C204.642,0.656,205.733,1.504,205.733,3.209z M201.2,5.092h0.914c0.902,0,1.557-0.146,1.961-0.435
+			c0.398-0.293,0.605-0.759,0.605-1.404c0-0.577-0.189-1.006-0.57-1.295c-0.381-0.279-0.969-0.423-1.773-0.423H201.2V5.092
+			L201.2,5.092z"/>
+		<path fill="#FFFFFF" d="M213.366,3.209c0,0.884-0.307,1.567-0.908,2.046c-0.607,0.477-1.473,0.714-2.598,0.714h-1.031v3.444h-1.02
+			V0.656h2.271C212.269,0.656,213.366,1.504,213.366,3.209z M208.827,5.092h0.918c0.904,0,1.559-0.146,1.959-0.435
+			c0.404-0.293,0.604-0.759,0.604-1.404c0-0.577-0.188-1.006-0.566-1.295c-0.381-0.279-0.971-0.423-1.773-0.423h-1.141V5.092
+			L208.827,5.092z"/>
+		<path fill="#FFFFFF" d="M215.44,9.413V0.656h1.021v7.832h3.857V9.41h-4.879V9.413z"/>
+		<path fill="#FFFFFF" d="M222.052,9.413V0.656h1.021v8.753h-1.021V9.413z"/>
+		<path fill="#FFFFFF" d="M229.466,1.44c-0.959,0-1.721,0.32-2.279,0.959c-0.557,0.642-0.834,1.518-0.834,2.633
+			c0,1.146,0.27,2.031,0.807,2.656c0.537,0.621,1.303,0.937,2.299,0.937c0.611,0,1.309-0.108,2.09-0.327v0.891
+			c-0.605,0.229-1.355,0.343-2.244,0.343c-1.289,0-2.285-0.396-2.988-1.181c-0.699-0.776-1.051-1.891-1.051-3.333
+			c0-0.902,0.17-1.69,0.506-2.371c0.336-0.678,0.824-1.202,1.461-1.569s1.387-0.551,2.248-0.551c0.918,0,1.719,0.168,2.408,0.504
+			l-0.432,0.875C230.798,1.594,230.13,1.44,229.466,1.44z"/>
+		<path fill="#FFFFFF" d="M239.204,9.413l-1.09-2.785h-3.512l-1.074,2.785h-1.031l3.459-8.793h0.857l3.445,8.793H239.204z
+			 M237.798,5.71l-1.018-2.712c-0.133-0.345-0.27-0.766-0.406-1.263c-0.088,0.383-0.215,0.804-0.377,1.263l-1.033,2.712H237.798z"/>
+		<path fill="#FFFFFF" d="M244.401,9.413h-1.016V1.561h-2.773V0.656h6.564v0.903h-2.771v7.852h-0.004V9.413z"/>
+		<path fill="#FFFFFF" d="M248.743,9.413V0.656h1.018v8.753h-1.018V9.413z"/>
+		<path fill="#FFFFFF" d="M260.005,5.021c0,1.402-0.354,2.503-1.062,3.305c-0.707,0.806-1.691,1.206-2.955,1.206
+			c-1.291,0-2.285-0.396-2.988-1.186c-0.699-0.789-1.051-1.901-1.051-3.338c0-1.424,0.354-2.532,1.057-3.312
+			c0.699-0.785,1.703-1.18,2.99-1.18c1.262,0,2.24,0.399,2.951,1.2C259.655,2.513,260.005,3.614,260.005,5.021z M253.03,5.021
+			c0,1.186,0.25,2.085,0.754,2.697c0.508,0.613,1.242,0.922,2.203,0.922c0.973,0,1.705-0.311,2.201-0.918
+			c0.494-0.615,0.738-1.516,0.738-2.702c0-1.179-0.244-2.072-0.736-2.681c-0.49-0.61-1.223-0.914-2.189-0.914
+			c-0.969,0-1.705,0.306-2.213,0.918C253.282,2.96,253.03,3.851,253.03,5.021z"/>
+		<path fill="#FFFFFF" d="M269.044,9.413h-1.162l-4.783-7.352h-0.049c0.061,0.864,0.094,1.655,0.094,2.374v4.978H262.2V0.656h1.152
+			l4.771,7.319h0.049c-0.012-0.108-0.025-0.455-0.055-1.041c-0.027-0.582-0.041-0.998-0.029-1.256V0.656h0.951v8.755h0.006v0.002
+			H269.044z"/>
+	</g>
+	<g>
+		<path fill="#FFFFFF" d="M7.533,3.368c0,1.013-0.298,1.796-0.896,2.348C6.04,6.269,5.191,6.544,4.093,6.544H3.403v3.008H0.954
+			V0.485h3.139c1.145,0,2.005,0.25,2.58,0.75C7.246,1.736,7.533,2.447,7.533,3.368z M3.403,4.547h0.447
+			c0.368,0,0.66-0.103,0.877-0.31s0.326-0.492,0.326-0.856c0-0.612-0.339-0.918-1.018-0.918H3.403V4.547z"/>
+		<path fill="#FFFFFF" d="M17.652,9.552l-0.446-1.699h-2.944l-0.459,1.699h-2.691l2.958-9.104h3.268l2.995,9.104H17.652z
+			 M16.697,5.843l-0.39-1.489c-0.092-0.33-0.202-0.758-0.333-1.283c-0.13-0.525-0.216-0.901-0.257-1.128
+			c-0.037,0.211-0.111,0.558-0.221,1.042c-0.108,0.483-0.353,1.437-0.729,2.857H16.697z"/>
+		<path fill="#FFFFFF" d="M28.423,9.552h-2.449V2.488H23.76V0.485h6.871v2.003h-2.208V9.552z"/>
+		<path fill="#FFFFFF" d="M39.037,9.552h-2.449V2.488h-2.214V0.485h6.871v2.003h-2.208V9.552z"/>
+		<path fill="#FFFFFF" d="M51.035,9.552h-5.382V0.485h5.382V2.45h-2.933v1.427h2.716v1.966h-2.716v1.711h2.933V9.552z"/>
+		<path fill="#FFFFFF" d="M58.184,6.253v3.299h-2.449V0.485h2.97c2.464,0,3.696,0.893,3.696,2.679c0,1.05-0.513,1.862-1.538,2.437
+			l2.642,3.951h-2.777l-1.922-3.299H58.184z M58.184,4.41h0.459c0.855,0,1.284-0.378,1.284-1.135c0-0.625-0.42-0.937-1.26-0.937
+			h-0.483V4.41z"/>
+		<path fill="#FFFFFF" d="M76.072,9.552H72.86L69.55,3.164h-0.057c0.079,1.004,0.118,1.771,0.118,2.301v4.086h-2.17V0.485h3.2
+			l3.299,6.301h0.037c-0.059-0.914-0.086-1.648-0.086-2.202V0.485h2.183v9.066H76.072z"/>
+		<path fill="#FFFFFF" d="M83.557,9.552h-2.412V0.485h5.356V2.45h-2.944v1.73h2.716v1.965h-2.716V9.552z"/>
+		<path fill="#FFFFFF" d="M91.102,9.552V0.485h2.449v7.088h3.49v1.979H91.102z"/>
+		<path fill="#FFFFFF" d="M104.842,3.846l1.562-3.361h2.654l-2.983,5.525v3.541h-2.468V6.085l-2.983-5.6h2.667L104.842,3.846z"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/brand-alt.svg b/themes/src/main/node_modules/rcue/dist/img/brand-alt.svg
new file mode 100644
index 0000000..bdf3ae7
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/brand-alt.svg
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="324px" height="11px" viewBox="1.145 0.538 324 11" enable-background="new 1.145 0.538 324 11" xml:space="preserve">
+<g>
+	<g>
+		<path fill="#FFFFFF" d="M147.351,11.368h-5.899V0.789h5.899V1.88h-4.666v3.408h4.386v1.085h-4.386v3.894h4.666V11.368z"/>
+		<path fill="#FFFFFF" d="M158.252,11.368h-1.399l-5.786-8.882h-0.056c0.075,1.044,0.115,2,0.115,2.868v6.014h-1.136V0.789h1.39
+			l5.768,8.84h0.054c-0.007-0.129-0.027-0.548-0.062-1.258c-0.034-0.702-0.047-1.205-0.034-1.515V0.789h1.149v10.576h-0.004V11.368
+			L158.252,11.368z"/>
+		<path fill="#FFFFFF" d="M164.719,11.368h-1.23V1.882h-3.349V0.789h7.932V1.88h-3.349v9.486h-0.002v0.002H164.719z"/>
+		<path fill="#FFFFFF" d="M175.852,11.368h-5.893V0.789h5.893V1.88h-4.662v3.408h4.386v1.085h-4.386v3.894h4.662V11.368z"/>
+		<path fill="#FFFFFF" d="M179.727,6.967v4.398h-1.231V0.789h2.903c1.298,0,2.253,0.247,2.875,0.742
+			c0.62,0.498,0.931,1.247,0.931,2.245c0,1.396-0.708,2.344-2.131,2.838l2.879,4.753h-1.459l-2.562-4.403h-2.206v0.004H179.727z
+			 M179.727,5.913h1.687c0.868,0,1.503-0.172,1.911-0.517c0.404-0.346,0.608-0.863,0.608-1.553c0-0.703-0.204-1.205-0.618-1.515
+			c-0.41-0.308-1.075-0.46-1.985-0.46h-1.6v4.046h-0.005V5.913H179.727z"/>
+		<path fill="#FFFFFF" d="M194.663,3.873c0,1.068-0.363,1.894-1.093,2.473c-0.73,0.576-1.781,0.861-3.141,0.861h-1.246v4.161h-1.228
+			V0.789h2.743C193.342,0.789,194.663,1.813,194.663,3.873z M189.184,6.148h1.111c1.085,0,1.88-0.176,2.367-0.525
+			c0.483-0.354,0.729-0.917,0.729-1.696c0-0.697-0.227-1.216-0.687-1.565c-0.46-0.337-1.175-0.511-2.142-0.511h-1.376v4.298H189.184
+			z"/>
+		<path fill="#FFFFFF" d="M198.404,6.967v4.398h-1.233V0.789h2.902c1.298,0,2.254,0.247,2.879,0.742
+			c0.619,0.498,0.933,1.247,0.933,2.245c0,1.396-0.711,2.344-2.13,2.838l2.875,4.753h-1.456l-2.561-4.403h-2.206v0.003
+			L198.404,6.967L198.404,6.967z M198.404,5.913h1.686c0.868,0,1.502-0.172,1.911-0.517c0.403-0.346,0.608-0.863,0.608-1.553
+			c0-0.703-0.205-1.205-0.616-1.515c-0.411-0.308-1.072-0.46-1.987-0.46h-1.598v4.046L198.404,5.913L198.404,5.913z"/>
+		<path fill="#FFFFFF" d="M206.632,11.368V0.789h1.229v10.576h-1.229V11.368z"/>
+		<path fill="#FFFFFF" d="M217.028,8.552c0,0.934-0.338,1.66-1.012,2.181c-0.677,0.524-1.592,0.78-2.751,0.78
+			c-1.256,0-2.218-0.162-2.894-0.482V9.84c0.431,0.184,0.906,0.329,1.418,0.432c0.51,0.105,1.021,0.157,1.521,0.157
+			c0.821,0,1.435-0.155,1.85-0.463c0.418-0.312,0.622-0.75,0.622-1.297c0-0.367-0.075-0.672-0.223-0.904
+			c-0.145-0.233-0.386-0.453-0.733-0.647c-0.345-0.197-0.871-0.425-1.572-0.675c-0.986-0.35-1.689-0.769-2.112-1.251
+			c-0.426-0.481-0.634-1.112-0.634-1.888c0-0.814,0.307-1.463,0.922-1.946c0.614-0.48,1.424-0.724,2.435-0.724
+			c1.05,0,2.02,0.195,2.897,0.58l-0.382,1.068c-0.876-0.362-1.726-0.548-2.549-0.548c-0.65,0-1.158,0.138-1.53,0.418
+			c-0.365,0.279-0.546,0.668-0.546,1.167c0,0.369,0.068,0.666,0.202,0.9c0.14,0.235,0.366,0.449,0.685,0.644
+			c0.323,0.194,0.812,0.411,1.475,0.646c1.111,0.395,1.874,0.82,2.291,1.276C216.819,7.239,217.028,7.829,217.028,8.552z"/>
+		<path fill="#FFFFFF" d="M225.391,11.368h-5.898V0.789h5.898V1.88h-4.668v3.408h4.391v1.085h-4.391v3.894h4.668V11.368z"/>
+		<path fill="#FFFFFF" d="M238.827,11.368l-1.317-3.364h-4.241l-1.303,3.364h-1.244l4.184-10.623h1.031l4.16,10.623H238.827z
+			 M237.123,6.895l-1.229-3.276c-0.159-0.417-0.328-0.926-0.491-1.526c-0.109,0.462-0.255,0.971-0.455,1.526l-1.246,3.276H237.123z"
+			/>
+		<path fill="#FFFFFF" d="M248.56,3.873c0,1.068-0.366,1.894-1.097,2.473c-0.733,0.576-1.779,0.861-3.137,0.861h-1.245v4.161h-1.233
+			V0.789h2.745C247.241,0.789,248.56,1.813,248.56,3.873z M243.083,6.148h1.104c1.09,0,1.881-0.176,2.37-0.525
+			c0.479-0.354,0.73-0.917,0.73-1.696c0-0.697-0.229-1.216-0.689-1.565c-0.46-0.337-1.17-0.511-2.142-0.511h-1.374V6.148
+			L243.083,6.148z"/>
+		<path fill="#FFFFFF" d="M257.782,3.873c0,1.068-0.371,1.894-1.098,2.473c-0.733,0.576-1.779,0.861-3.139,0.861h-1.245v4.161
+			h-1.232V0.789h2.743C256.457,0.789,257.782,1.813,257.782,3.873z M252.298,6.148h1.108c1.094,0,1.884-0.176,2.368-0.525
+			c0.487-0.354,0.729-0.917,0.729-1.696c0-0.697-0.228-1.216-0.685-1.565c-0.46-0.337-1.172-0.511-2.142-0.511H252.3v4.298H252.298z
+			"/>
+		<path fill="#FFFFFF" d="M260.287,11.368V0.789h1.235v9.463h4.659v1.113h-5.895V11.368L260.287,11.368z"/>
+		<path fill="#FFFFFF" d="M268.277,11.368V0.789h1.232v10.576h-1.232V11.368z"/>
+		<path fill="#FFFFFF" d="M277.234,1.736c-1.158,0-2.079,0.386-2.753,1.159c-0.674,0.776-1.009,1.833-1.009,3.181
+			c0,1.385,0.326,2.454,0.976,3.209c0.648,0.75,1.575,1.132,2.777,1.132c0.738,0,1.582-0.13,2.526-0.396v1.077
+			c-0.732,0.276-1.639,0.414-2.712,0.414c-1.558,0-2.761-0.479-3.61-1.427c-0.844-0.938-1.27-2.284-1.27-4.027
+			c0-1.089,0.205-2.042,0.61-2.865c0.407-0.819,0.996-1.452,1.766-1.896c0.77-0.444,1.676-0.666,2.716-0.666
+			c1.109,0,2.077,0.203,2.909,0.609l-0.521,1.057C278.843,1.922,278.037,1.736,277.234,1.736z"/>
+		<path fill="#FFFFFF" d="M289,11.368l-1.317-3.364h-4.243l-1.298,3.364h-1.245l4.18-10.623h1.035l4.162,10.623H289z M287.301,6.895
+			l-1.229-3.276c-0.162-0.417-0.327-0.926-0.492-1.526c-0.106,0.462-0.26,0.971-0.455,1.526l-1.248,3.276H287.301z"/>
+		<path fill="#FFFFFF" d="M295.279,11.368h-1.228V1.882h-3.351V0.789h7.931V1.88h-3.348v9.486h-0.005V11.368z"/>
+		<path fill="#FFFFFF" d="M300.525,11.368V0.789h1.229v10.576h-1.229V11.368z"/>
+		<path fill="#FFFFFF" d="M314.132,6.063c0,1.693-0.428,3.024-1.283,3.993c-0.854,0.975-2.043,1.457-3.57,1.457
+			c-1.56,0-2.761-0.479-3.61-1.433c-0.844-0.953-1.27-2.297-1.27-4.033c0-1.721,0.428-3.06,1.277-4.002
+			c0.844-0.948,2.057-1.426,3.612-1.426c1.525,0,2.706,0.482,3.565,1.45C313.709,3.033,314.132,4.363,314.132,6.063z M305.705,6.063
+			c0,1.432,0.301,2.519,0.91,3.258c0.614,0.74,1.501,1.114,2.662,1.114c1.175,0,2.06-0.377,2.658-1.109
+			c0.598-0.743,0.893-1.832,0.893-3.265c0-1.424-0.295-2.503-0.89-3.239c-0.592-0.737-1.478-1.104-2.645-1.104
+			c-1.17,0-2.06,0.37-2.675,1.109C306.009,3.572,305.705,4.649,305.705,6.063z"/>
+		<path fill="#FFFFFF" d="M325.053,11.368h-1.404l-5.778-8.882h-0.06c0.074,1.044,0.113,2,0.113,2.868v6.014h-1.141V0.789h1.393
+			l5.765,8.843h0.059c-0.015-0.131-0.03-0.551-0.066-1.259c-0.032-0.701-0.05-1.205-0.034-1.517V0.789h1.148v10.578h0.008v0.002
+			H325.053z"/>
+	</g>
+	<g>
+		<path fill="#FFFFFF" d="M9.094,4.065c0,1.224-0.36,2.17-1.083,2.837C7.29,7.571,6.264,7.903,4.938,7.903H4.104v3.634H1.145V0.583
+			h3.792c1.383,0,2.422,0.302,3.117,0.906C8.747,2.094,9.094,2.953,9.094,4.065z M4.104,5.49h0.541c0.444,0,0.797-0.125,1.059-0.375
+			c0.262-0.25,0.394-0.595,0.394-1.035c0-0.739-0.41-1.109-1.23-1.109H4.104V5.49z"/>
+		<path fill="#FFFFFF" d="M21.32,11.537l-0.54-2.053h-3.557l-0.555,2.053h-3.251l3.573-11h3.949l3.619,11H21.32z M20.166,7.056
+			l-0.472-1.799c-0.111-0.399-0.244-0.916-0.402-1.55c-0.157-0.634-0.261-1.088-0.311-1.363c-0.045,0.255-0.134,0.674-0.267,1.259
+			c-0.13,0.583-0.427,1.736-0.881,3.451h2.333V7.056z"/>
+		<path fill="#FFFFFF" d="M34.333,11.537h-2.959V3.002h-2.675V0.583h8.302v2.419h-2.668V11.537z"/>
+		<path fill="#FFFFFF" d="M47.157,11.537h-2.958V3.002h-2.675V0.583h8.301v2.419h-2.668V11.537z"/>
+		<path fill="#FFFFFF" d="M61.653,11.537H55.15V0.583h6.503v2.374h-3.544v1.724h3.281v2.375h-3.281v2.067h3.544V11.537z"/>
+		<path fill="#FFFFFF" d="M70.291,7.552v3.985h-2.959V0.583h3.588c2.977,0,4.466,1.079,4.466,3.237c0,1.268-0.62,2.25-1.858,2.943
+			l3.192,4.774h-3.355l-2.322-3.985H70.291z M70.291,5.325h0.554c1.033,0,1.552-0.457,1.552-1.371c0-0.755-0.508-1.132-1.522-1.132
+			h-0.583V5.325z"/>
+		<path fill="#FFFFFF" d="M91.903,11.537h-3.881l-3.999-7.718h-0.069c0.095,1.213,0.143,2.139,0.143,2.78v4.936h-2.622V0.583h3.866
+			l3.986,7.612h0.044c-0.071-1.103-0.104-1.99-0.104-2.659V0.583h2.637v10.953h-0.002V11.537z"/>
+		<path fill="#FFFFFF" d="M100.946,11.537h-2.914V0.583h6.471v2.374h-3.557v2.09h3.282v2.374h-3.282V11.537z"/>
+		<path fill="#FFFFFF" d="M110.062,11.537V0.583h2.959v8.564h4.217v2.391H110.062z"/>
+		<path fill="#FFFFFF" d="M126.663,4.643l1.887-4.061h3.207l-3.604,6.675v4.277h-2.982V7.348l-3.604-6.765h3.222L126.663,4.643z"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/dropbox-logo.svg b/themes/src/main/node_modules/rcue/dist/img/dropbox-logo.svg
new file mode 100644
index 0000000..dce0064
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/dropbox-logo.svg
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="17px" viewBox="0 0 20 17" style="enable-background:new 0 0 20 17;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#0061FF;}
+</style>
+<g>
+	<polygon class="st0" points="5,0 0,3.2 5,6.4 10,3.2 	"/>
+	<polygon class="st0" points="15,0 10,3.2 15,6.4 20,3.2 	"/>
+	<polygon class="st0" points="0,9.6 5,12.7 10,9.6 5,6.4 	"/>
+	<polygon class="st0" points="15,6.4 10,9.6 15,12.7 20,9.6 	"/>
+	<polygon class="st0" points="5,13.8 10,17 15,13.8 10,10.6 	"/>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/facebook-logo.svg b/themes/src/main/node_modules/rcue/dist/img/facebook-logo.svg
new file mode 100644
index 0000000..c302f57
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/facebook-logo.svg
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="20px" viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#475993;}
+</style>
+<path class="st0" d="M17.3,0H2.7C1.2,0,0,1.2,0,2.7v14.6C0,18.8,1.2,20,2.7,20h7.2l0-7.1H8.1c-0.2,0-0.4-0.2-0.4-0.4l0-2.3
+	c0-0.2,0.2-0.4,0.4-0.4h1.9V7.4c0-2.6,1.6-4,3.9-4h1.9c0.2,0,0.4,0.2,0.4,0.4v1.9c0,0.2-0.2,0.4-0.4,0.4l-1.2,0
+	c-1.3,0-1.5,0.6-1.5,1.5v1.9h2.8c0.3,0,0.5,0.2,0.4,0.5l-0.3,2.3c0,0.2-0.2,0.4-0.4,0.4H13l0,7.1h4.3c1.5,0,2.7-1.2,2.7-2.7V2.7
+	C20,1.2,18.8,0,17.3,0z"/>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/favicon.ico b/themes/src/main/node_modules/rcue/dist/img/favicon.ico
new file mode 100644
index 0000000..43c8163
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/favicon.ico differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/fedora-logo.png b/themes/src/main/node_modules/rcue/dist/img/fedora-logo.png
new file mode 100644
index 0000000..8b3186a
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/fedora-logo.png differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/github-logo.svg b/themes/src/main/node_modules/rcue/dist/img/github-logo.svg
new file mode 100644
index 0000000..bea0e2d
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/github-logo.svg
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="16px" height="20px" viewBox="0 0 16 20" style="enable-background:new 0 0 16 20;" xml:space="preserve">
+<g id="XMLID_122_">
+	<g>
+		<path d="M15.9,8.4c0.1-0.5,0.1-1,0.1-1.6c0-2.5-1.2-3.4-1.4-3.8c0.3-1.9-0.1-2.7-0.2-3c-0.7-0.2-2.3,0.6-3.2,1.2
+			C9.6,0.8,6.5,0.9,5.3,1.4C3.1-0.2,2,0.1,2,0.1S1.2,1.4,1.8,3.3C1.1,4.2,0.5,4.9,0.5,6.6c0,0.4,0,0.8,0.1,1.2
+			c0.6,3.2,3.2,4.6,5.7,4.9c-0.4,0.3-0.8,0.8-0.9,1.5c-0.5,0.3-1.4,0.4-2.2,0.2c-1-0.3-1.4-2.4-3-2.1c-0.3,0.1-0.3,0.3,0,0.5
+			c0.5,0.3,0.9,0.7,1.3,1.5c0.3,0.6,0.8,1.8,2.6,1.8c0.7,0,1.2-0.1,1.2-0.1s0,1.6,0,2.2c0,0.7-1,0.9-1,1.3c0,0.1,0.3,0.2,0.6,0.2
+			c0.5,0,1.6-0.4,1.6-1.2c0-0.6,0-2.6,0-2.9c0-0.8,0.4-1,0.4-1S7,18.4,6.8,19c-0.2,0.6-0.5,0.6-0.5,0.8c0,0.4,1.3,0.1,1.7-0.8
+			c0.3-0.7,0.2-4.7,0.2-4.7l0.3,0c0,0,0,1.8,0,2.7c0,0.9-0.1,2,0.4,2.5c0.3,0.3,1.4,0.9,1.4,0.4c0-0.3-0.7-0.6-0.7-1.4v-4
+			c0.4,0,0.5,1.3,0.5,1.3l0.2,2.4c0,0-0.1,0.9,1,1.2c0.4,0.1,1.2,0.2,1.2-0.1c0-0.2-1-0.5-1-1.2c0-0.4,0-0.7,0-2.5
+			c0-1.8-0.2-2.5-1.1-3C12.9,12.4,15.4,11.3,15.9,8.4z"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/git-logo.svg b/themes/src/main/node_modules/rcue/dist/img/git-logo.svg
new file mode 100644
index 0000000..825d8ec
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/git-logo.svg
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="20px" viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
+<style type="text/css">
+	.st0{clip-path:url(#SVGID_2_);fill:#F05133;}
+</style>
+<g>
+	<defs>
+		<rect id="SVGID_1_" x="0" y="0" width="20" height="20"/>
+	</defs>
+	<clipPath id="SVGID_2_">
+		<use xlink:href="#SVGID_1_"  style="overflow:visible;"/>
+	</clipPath>
+	<path class="st0" d="M19.6,9.1l-8.7-8.7c-0.5-0.5-1.3-0.5-1.8,0L7.3,2.2l2.3,2.3c0.5-0.2,1.1-0.1,1.6,0.4c0.4,0.4,0.5,1,0.4,1.6
+		l2.2,2.2c0.5-0.2,1.2-0.1,1.6,0.4c0.6,0.6,0.6,1.6,0,2.2c-0.6,0.6-1.6,0.6-2.2,0c-0.5-0.5-0.6-1.1-0.3-1.7l-2.1-2.1v5.4
+		c0.1,0.1,0.3,0.2,0.4,0.3c0.6,0.6,0.6,1.6,0,2.2C10.5,16,9.6,16,9,15.4c-0.6-0.6-0.6-1.6,0-2.2c0.1-0.1,0.3-0.3,0.5-0.3V7.4
+		C9.3,7.3,9.1,7.2,9,7C8.5,6.6,8.4,5.9,8.6,5.3L6.4,3.1l-6,6c-0.5,0.5-0.5,1.3,0,1.8l8.7,8.7c0.5,0.5,1.3,0.5,1.8,0l8.7-8.7
+		C20.1,10.4,20.1,9.6,19.6,9.1"/>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/git-Logo.svg b/themes/src/main/node_modules/rcue/dist/img/git-Logo.svg
new file mode 100644
index 0000000..825d8ec
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/git-Logo.svg
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="20px" viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
+<style type="text/css">
+	.st0{clip-path:url(#SVGID_2_);fill:#F05133;}
+</style>
+<g>
+	<defs>
+		<rect id="SVGID_1_" x="0" y="0" width="20" height="20"/>
+	</defs>
+	<clipPath id="SVGID_2_">
+		<use xlink:href="#SVGID_1_"  style="overflow:visible;"/>
+	</clipPath>
+	<path class="st0" d="M19.6,9.1l-8.7-8.7c-0.5-0.5-1.3-0.5-1.8,0L7.3,2.2l2.3,2.3c0.5-0.2,1.1-0.1,1.6,0.4c0.4,0.4,0.5,1,0.4,1.6
+		l2.2,2.2c0.5-0.2,1.2-0.1,1.6,0.4c0.6,0.6,0.6,1.6,0,2.2c-0.6,0.6-1.6,0.6-2.2,0c-0.5-0.5-0.6-1.1-0.3-1.7l-2.1-2.1v5.4
+		c0.1,0.1,0.3,0.2,0.4,0.3c0.6,0.6,0.6,1.6,0,2.2C10.5,16,9.6,16,9,15.4c-0.6-0.6-0.6-1.6,0-2.2c0.1-0.1,0.3-0.3,0.5-0.3V7.4
+		C9.3,7.3,9.1,7.2,9,7C8.5,6.6,8.4,5.9,8.6,5.3L6.4,3.1l-6,6c-0.5,0.5-0.5,1.3,0,1.8l8.7,8.7c0.5,0.5,1.3,0.5,1.8,0l8.7-8.7
+		C20.1,10.4,20.1,9.6,19.6,9.1"/>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/gmail.svg b/themes/src/main/node_modules/rcue/dist/img/gmail.svg
new file mode 100644
index 0000000..7f908c3
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/gmail.svg
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="32.3px" height="32.3px" viewBox="0 0 32.3 32.3" style="enable-background:new 0 0 32.3 32.3;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#FFFFFF;}
+	.st1{fill:#F2F2F2;}
+	.st2{fill:#F14336;}
+	.st3{fill:#D32E2A;}
+</style>
+<circle class="st0" cx="16.2" cy="16.2" r="15"/>
+<g>
+	<g>
+		<polygon class="st1" points="24.9,11.1 23.7,23.6 8.7,23.6 7.7,11.3 16.2,16.1 		"/>
+		<polygon class="st1" points="24.5,8.7 16.2,16.5 7.9,8.7 16.2,8.7 		"/>
+	</g>
+	<path class="st2" d="M8.7,12.3v11.3H7.3c-0.5,0-0.9-0.4-0.9-0.9v-12l1.5,0L8.7,12.3z"/>
+	<path class="st3" d="M25.9,10.7v12c0,0.5-0.4,0.9-0.9,0.9h-1.4V12.3l0.8-1.8L25.9,10.7z"/>
+	<path class="st2" d="M25.9,9.6v1l-2.3,1.7l-7.5,5.5l-7.5-5.5l-2.3-1.7v-1c0-0.5,0.4-0.9,0.9-0.9h0.5l8.3,6.1l8.3-6.1H25
+		C25.5,8.7,25.9,9.1,25.9,9.6z"/>
+	<polygon class="st3" points="8.7,12.3 6.4,12 6.4,10.7 	"/>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/google-calendar.svg b/themes/src/main/node_modules/rcue/dist/img/google-calendar.svg
new file mode 100644
index 0000000..a9c93ae
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/google-calendar.svg
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="32.3px" height="32.3px" viewBox="0 0 32.3 32.3" style="enable-background:new 0 0 32.3 32.3;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#FFFFFF;}
+	.st1{fill:#E6E6E6;}
+	.st2{fill:#3A5BBC;}
+	.st3{fill:#518EF8;}
+</style>
+<circle class="st0" cx="16.2" cy="16.2" r="15"/>
+<g>
+	<path class="st1" d="M22.7,8.2h-13c-0.4,0-0.7,0.3-0.7,0.7v2.4h14.5V8.9C23.4,8.5,23.1,8.2,22.7,8.2z M12.6,9.6
+		c-0.2,0-0.4-0.2-0.4-0.4c0-0.2,0.2-0.4,0.4-0.4S13,9.1,13,9.3C13,9.5,12.8,9.6,12.6,9.6z M19.8,9.6c-0.2,0-0.4-0.2-0.4-0.4
+		c0-0.2,0.2-0.4,0.4-0.4c0.2,0,0.4,0.2,0.4,0.4C20.1,9.5,20,9.6,19.8,9.6z"/>
+	<path class="st2" d="M24.5,11.5l-1.1,5.8l0.5,6c0,0.4-0.3,0.8-0.8,0.8H9.2c-0.4,0-0.8-0.4-0.8-0.8l0.5-6l-1.1-5.8
+		c-0.1-0.5,0.3-1.1,0.9-1.1h15C24.2,10.5,24.6,11,24.5,11.5z"/>
+	<path class="st3" d="M23.1,24.2H9.2c-0.4,0-0.8-0.4-0.8-0.8l0.5-6h8h6.5l0.5,6C23.9,23.8,23.5,24.2,23.1,24.2z"/>
+	<g>
+		<path class="st0" d="M15.9,15.8c0-1.1-0.9-2.1-2.1-2.1s-2.1,0.9-2.1,2.1h0.7c0-0.7,0.6-1.4,1.4-1.4c0.8,0,1.4,0.6,1.4,1.4
+			s-0.6,1.4-1.4,1.4h-0.7v0.7h0.7c0.8,0,1.4,0.6,1.4,1.4c0,0.7-0.6,1.4-1.4,1.4c-0.8,0-1.4-0.6-1.4-1.4h-0.7c0,1.1,0.9,2.1,2.1,2.1
+			s2.1-0.9,2.1-2.1c0-0.7-0.4-1.3-0.9-1.7C15.5,17.1,15.9,16.5,15.9,15.8z"/>
+		<polygon class="st0" points="17.3,15 17.6,15.6 19,14.7 19,20.9 19.7,20.9 19.7,13.5 		"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/google-drive.svg b/themes/src/main/node_modules/rcue/dist/img/google-drive.svg
new file mode 100644
index 0000000..617294d
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/google-drive.svg
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="32.3px" height="32.3px" viewBox="0 0 32.3 32.3" style="enable-background:new 0 0 32.3 32.3;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#FFFFFF;}
+	.st1{fill:#3089F3;}
+	.st2{fill:#00A76A;}
+	.st3{fill:#FDD446;}
+</style>
+<circle class="st0" cx="16.2" cy="16.2" r="15"/>
+<g>
+	<polygon class="st1" points="27.8,18.8 11.8,18.8 8.5,25.2 24.2,25.2 	"/>
+	<polygon class="st2" points="12.5,5.1 4.9,18 8.5,25.2 15.8,11.1 	"/>
+	<polygon class="st3" points="19.7,5.1 12.5,5.1 20.1,18.8 27.8,18.8 	"/>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/google-logo.svg b/themes/src/main/node_modules/rcue/dist/img/google-logo.svg
new file mode 100644
index 0000000..a9858a6
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/google-logo.svg
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="20px" viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#FBBB00;}
+	.st1{fill:#518EF8;}
+	.st2{fill:#28B446;}
+	.st3{fill:#F14336;}
+</style>
+<path class="st0" d="M4.4,12.1l-0.7,2.6l-2.5,0.1C0.4,13.3,0,11.7,0,10c0-1.7,0.4-3.2,1.1-4.6h0l2.3,0.4l1,2.3
+	C4.2,8.7,4.1,9.3,4.1,10C4.1,10.7,4.2,11.4,4.4,12.1z"/>
+<path class="st1" d="M19.8,8.1C19.9,8.7,20,9.4,20,10c0,0.7-0.1,1.4-0.2,2.1c-0.5,2.3-1.8,4.3-3.5,5.7l0,0l-2.9-0.1L13,15.1
+	c1.2-0.7,2.1-1.8,2.6-3h-5.3v-4h5.4H19.8L19.8,8.1z"/>
+<path class="st2" d="M16.3,17.8L16.3,17.8C14.5,19.2,12.4,20,10,20c-3.8,0-7.1-2.1-8.8-5.3l3.2-2.7c0.8,2.3,3,3.9,5.6,3.9
+	c1.1,0,2.1-0.3,3-0.8L16.3,17.8z"/>
+<path class="st3" d="M16.4,2.3L13.1,5c-0.9-0.6-2-0.9-3.1-0.9c-2.6,0-4.8,1.7-5.6,4L1.1,5.4h0C2.8,2.2,6.1,0,10,0
+	C12.4,0,14.7,0.9,16.4,2.3z"/>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/instagram-logo.png b/themes/src/main/node_modules/rcue/dist/img/instagram-logo.png
new file mode 100644
index 0000000..3dec7db
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/instagram-logo.png differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/kubernetes.svg b/themes/src/main/node_modules/rcue/dist/img/kubernetes.svg
new file mode 100644
index 0000000..50abd41
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/kubernetes.svg
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg width="256px" height="249px" viewBox="0 0 256 249" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
+	<g>
+		<path d="M82.0851613,244.934194 C76.1393548,244.934194 70.523871,242.291613 66.7251613,237.501935 L8.91870968,165.656774 C5.12,160.867097 3.63354839,154.756129 5.12,148.810323 L25.7651613,59.1277419 C27.0864516,53.1819355 31.0503226,48.3922581 36.5006452,45.7496774 L120.072258,5.78064516 C122.714839,4.45935484 125.687742,3.79870968 128.660645,3.79870968 C131.633548,3.79870968 134.606452,4.45935484 137.249032,5.78064516 L220.820645,45.5845161 C226.270968,48.2270968 230.234839,53.0167742 231.556129,58.9625806 L252.20129,148.645161 C253.522581,154.590968 252.20129,160.701935 248.402581,165.491613 L190.596129,237.336774 C186.797419,241.96129 181.181935,244.769032 175.236129,244.769032 L82.0851613,244.934194 L82.0851613,244.934194 Z" fill="#326DE6"></path>
+		<path d="M128.495484,7.92774194 C130.807742,7.92774194 133.12,8.42322581 135.267097,9.41419355 L218.83871,49.2180645 C223.132903,51.3651613 226.436129,55.3290323 227.427097,59.9535484 L248.072258,149.636129 C249.228387,154.425806 248.072258,159.380645 244.934194,163.179355 L187.127742,235.024516 C184.154839,238.823226 179.530323,240.970323 174.740645,240.970323 L82.0851613,240.970323 C77.2954839,240.970323 72.6709677,238.823226 69.6980645,235.024516 L11.8916129,163.179355 C8.91870968,159.380645 7.76258065,154.425806 8.75354839,149.636129 L29.3987097,59.9535484 C30.5548387,55.163871 33.6929032,51.2 37.9870968,49.2180645 L121.55871,9.24903226 C123.705806,8.42322581 126.183226,7.92774194 128.495484,7.92774194 L128.495484,7.92774194 Z M128.495484,0.16516129 L128.495484,0.16516129 C125.027097,0.16516129 121.55871,0.990967742 118.255484,2.47741935 L34.683871,42.4464516 C28.0774194,45.5845161 23.4529032,51.3651613 21.8012903,58.4670968 L1.15612903,148.149677 C-0.495483871,155.251613 1.15612903,162.51871 5.78064516,168.299355 L63.5870968,240.144516 C68.0464516,245.76 74.8180645,248.898065 81.92,248.898065 L174.575484,248.898065 C181.677419,248.898065 188.449032,245.76 192.908387,240.144516 L250.714839,168.299355 C255.339355,162.683871 256.990968,155.251613 255.339355,148.149677 L234.694194,58.4670968 C233.042581,51.3651613 228.418065,45.5845161 221.811613,42.4464516 L138.570323,2.47741935 C135.432258,0.990967742 131.963871,0.16516129 128.495484,0.16516129 L128.495484,0.16516129 L128.495484,0.16516129 Z" fill="#FFFFFF"></path>
+		<path d="M212.232258,142.534194 L212.232258,142.534194 L212.232258,142.534194 C212.067097,142.534194 212.067097,142.534194 212.232258,142.534194 L212.067097,142.534194 C211.901935,142.534194 211.736774,142.534194 211.736774,142.369032 C211.406452,142.369032 211.076129,142.203871 210.745806,142.203871 C209.589677,142.03871 208.59871,141.873548 207.607742,141.873548 C207.112258,141.873548 206.616774,141.873548 205.956129,141.708387 L205.790968,141.708387 C202.322581,141.378065 199.514839,141.047742 196.872258,140.221935 C195.716129,139.726452 195.385806,139.065806 195.055484,138.405161 C195.055484,138.24 194.890323,138.24 194.890323,138.074839 L194.890323,138.074839 L192.743226,137.414194 C193.734194,129.816774 193.403871,121.889032 191.587097,114.126452 C189.770323,106.363871 186.632258,99.0967742 182.338065,92.4903226 L183.989677,91.003871 L183.989677,90.6735484 C183.989677,89.8477419 184.154839,89.0219355 184.815484,88.196129 C186.797419,86.3793548 189.274839,84.8929032 192.247742,83.076129 L192.247742,83.076129 C192.743226,82.7458065 193.23871,82.5806452 193.734194,82.2503226 C194.725161,81.7548387 195.550968,81.2593548 196.541935,80.5987097 C196.707097,80.4335484 197.037419,80.2683871 197.367742,79.9380645 C197.532903,79.7729032 197.698065,79.7729032 197.698065,79.6077419 L197.698065,79.6077419 C200.010323,77.6258065 200.505806,74.3225806 198.854194,72.1754839 C198.028387,71.0193548 196.541935,70.3587097 195.055484,70.3587097 C193.734194,70.3587097 192.578065,70.8541935 191.421935,71.68 L191.421935,71.68 L191.421935,71.68 C191.256774,71.8451613 191.256774,71.8451613 191.091613,72.0103226 C190.76129,72.1754839 190.596129,72.5058065 190.265806,72.6709677 C189.44,73.4967742 188.779355,74.1574194 188.11871,74.9832258 C187.788387,75.3135484 187.458065,75.8090323 186.962581,76.1393548 L186.962581,76.1393548 C184.650323,78.6167742 182.503226,80.5987097 180.356129,82.0851613 C179.860645,82.4154839 179.365161,82.5806452 178.869677,82.5806452 C178.539355,82.5806452 178.209032,82.5806452 177.87871,82.4154839 L177.548387,82.4154839 L177.548387,82.4154839 L175.566452,83.7367742 C173.419355,81.4245161 171.107097,79.4425806 168.794839,77.4606452 C158.885161,69.6980645 146.828387,64.9083871 134.276129,63.7522581 L134.110968,61.6051613 C133.945806,61.44 133.945806,61.44 133.780645,61.2748387 C133.285161,60.7793548 132.624516,60.283871 132.459355,59.1277419 C132.294194,56.4851613 132.624516,53.5122581 132.954839,50.2090323 L132.954839,50.043871 C132.954839,49.5483871 133.12,48.8877419 133.285161,48.3922581 C133.450323,47.4012903 133.615484,46.4103226 133.780645,45.2541935 L133.780645,44.2632258 L133.780645,43.7677419 L133.780645,43.7677419 L133.780645,43.7677419 C133.780645,40.7948387 131.468387,38.3174194 128.660645,38.3174194 C127.339355,38.3174194 126.018065,38.9780645 125.027097,39.9690323 C124.036129,40.96 123.540645,42.2812903 123.540645,43.7677419 L123.540645,43.7677419 L123.540645,43.7677419 L123.540645,44.0980645 L123.540645,45.0890323 C123.540645,46.2451613 123.705806,47.236129 124.036129,48.2270968 C124.20129,48.7225806 124.20129,49.2180645 124.366452,49.8787097 L124.366452,50.043871 C124.696774,53.3470968 125.192258,56.32 124.861935,58.9625806 C124.696774,60.1187097 124.036129,60.6141935 123.540645,61.1096774 C123.375484,61.2748387 123.375484,61.2748387 123.210323,61.44 L123.210323,61.44 L123.045161,63.5870968 C120.072258,63.9174194 117.099355,64.2477419 114.126452,64.9083871 C101.409032,67.716129 90.1780645,74.1574194 81.4245161,83.4064516 L79.7729032,82.2503226 L79.4425806,82.2503226 C79.1122581,82.2503226 78.7819355,82.4154839 78.4516129,82.4154839 C77.956129,82.4154839 77.4606452,82.2503226 76.9651613,81.92 C74.8180645,80.4335484 72.6709677,78.2864516 70.3587097,75.8090323 L70.3587097,75.8090323 C70.0283871,75.4787097 69.6980645,74.9832258 69.2025806,74.6529032 C68.5419355,73.8270968 67.8812903,73.1664516 67.0554839,72.3406452 C66.8903226,72.1754839 66.56,72.0103226 66.2296774,71.68 C66.0645161,71.5148387 65.8993548,71.5148387 65.8993548,71.3496774 L65.8993548,71.3496774 C64.9083871,70.523871 63.5870968,70.0283871 62.2658065,70.0283871 C60.7793548,70.0283871 59.2929032,70.6890323 58.4670968,71.8451613 C56.8154839,73.9922581 57.3109677,77.2954839 59.6232258,79.2774194 L59.6232258,79.2774194 L59.6232258,79.2774194 C59.7883871,79.2774194 59.7883871,79.4425806 59.9535484,79.4425806 C60.283871,79.6077419 60.4490323,79.9380645 60.7793548,80.1032258 C61.7703226,80.763871 62.596129,81.2593548 63.5870968,81.7548387 C64.0825806,81.92 64.5780645,82.2503226 65.0735484,82.5806452 L65.0735484,82.5806452 C68.0464516,84.3974194 70.523871,85.883871 72.5058065,87.7006452 C73.3316129,88.5264516 73.3316129,89.3522581 73.3316129,90.1780645 L73.3316129,90.5083871 L73.3316129,90.5083871 L74.9832258,91.9948387 C74.6529032,92.4903226 74.3225806,92.8206452 74.1574194,93.316129 C65.8993548,106.363871 62.7612903,121.723871 64.9083871,136.91871 L62.7612903,137.579355 C62.7612903,137.744516 62.596129,137.744516 62.596129,137.909677 C62.2658065,138.570323 61.7703226,139.230968 60.7793548,139.726452 C58.3019355,140.552258 55.3290323,140.882581 51.8606452,141.212903 L51.6954839,141.212903 C51.2,141.212903 50.5393548,141.212903 50.043871,141.378065 C49.0529032,141.378065 48.0619355,141.543226 46.9058065,141.708387 C46.5754839,141.708387 46.2451613,141.873548 45.9148387,141.873548 C45.7496774,141.873548 45.5845161,141.873548 45.4193548,142.03871 L45.4193548,142.03871 L45.4193548,142.03871 C42.4464516,142.699355 40.6296774,145.507097 41.1251613,148.149677 C41.6206452,150.461935 43.7677419,151.948387 46.4103226,151.948387 C46.9058065,151.948387 47.236129,151.948387 47.7316129,151.783226 L47.7316129,151.783226 L47.7316129,151.783226 C47.8967742,151.783226 48.0619355,151.783226 48.0619355,151.618065 C48.3922581,151.618065 48.7225806,151.452903 49.0529032,151.452903 C50.2090323,151.122581 51.0348387,150.792258 52.0258065,150.296774 C52.5212903,150.131613 53.0167742,149.80129 53.5122581,149.636129 L53.6774194,149.636129 C56.8154839,148.48 59.6232258,147.489032 62.2658065,147.15871 L62.596129,147.15871 C63.5870968,147.15871 64.2477419,147.654194 64.7432258,147.984516 C64.9083871,147.984516 64.9083871,148.149677 65.0735484,148.149677 L65.0735484,148.149677 L67.3858065,147.819355 C71.3496774,160.04129 78.9470968,170.941935 89.0219355,178.869677 C91.3341935,180.686452 93.6464516,182.172903 96.123871,183.659355 L95.1329032,185.806452 C95.1329032,185.971613 95.2980645,185.971613 95.2980645,186.136774 C95.6283871,186.797419 95.9587097,187.623226 95.6283871,188.779355 C94.6374194,191.256774 93.1509677,193.734194 91.3341935,196.541935 L91.3341935,196.707097 C91.003871,197.202581 90.6735484,197.532903 90.3432258,198.028387 C89.6825806,198.854194 89.1870968,199.68 88.5264516,200.670968 C88.3612903,200.836129 88.196129,201.166452 88.0309677,201.496774 C88.0309677,201.661935 87.8658065,201.827097 87.8658065,201.827097 L87.8658065,201.827097 L87.8658065,201.827097 C86.5445161,204.634839 87.5354839,207.772903 90.0129032,208.929032 C90.6735484,209.259355 91.3341935,209.424516 91.9948387,209.424516 C93.9767742,209.424516 95.9587097,208.103226 96.9496774,206.286452 L96.9496774,206.286452 L96.9496774,206.286452 C96.9496774,206.12129 97.1148387,205.956129 97.1148387,205.956129 C97.28,205.625806 97.4451613,205.295484 97.6103226,205.130323 C98.1058065,203.974194 98.2709677,203.148387 98.6012903,202.157419 C98.7664516,201.661935 98.9316129,201.166452 99.0967742,200.670968 L99.0967742,200.670968 C100.252903,197.367742 101.07871,194.725161 102.565161,192.412903 C103.225806,191.421935 104.051613,191.256774 104.712258,190.926452 C104.877419,190.926452 104.877419,190.926452 105.042581,190.76129 L105.042581,190.76129 L106.19871,188.614194 C113.465806,191.421935 121.393548,192.908387 129.32129,192.908387 C134.110968,192.908387 139.065806,192.412903 143.690323,191.256774 C146.663226,190.596129 149.470968,189.770323 152.27871,188.779355 L153.269677,190.596129 C153.434839,190.596129 153.434839,190.596129 153.6,190.76129 C154.425806,190.926452 155.086452,191.256774 155.747097,192.247742 C157.068387,194.56 158.059355,197.367742 159.215484,200.505806 L159.215484,200.670968 C159.380645,201.166452 159.545806,201.661935 159.710968,202.157419 C160.04129,203.148387 160.206452,204.139355 160.701935,205.130323 C160.867097,205.460645 161.032258,205.625806 161.197419,205.956129 C161.197419,206.12129 161.362581,206.286452 161.362581,206.286452 L161.362581,206.286452 L161.362581,206.286452 C162.353548,208.268387 164.335484,209.424516 166.317419,209.424516 C166.978065,209.424516 167.63871,209.259355 168.299355,208.929032 C169.455484,208.268387 170.446452,207.277419 170.776774,205.956129 C171.107097,204.634839 171.107097,203.148387 170.446452,201.827097 L170.446452,201.827097 L170.446452,201.827097 C170.446452,201.661935 170.28129,201.661935 170.28129,201.496774 C170.116129,201.166452 169.950968,200.836129 169.785806,200.670968 C169.290323,199.68 168.629677,198.854194 167.969032,198.028387 C167.63871,197.532903 167.308387,197.202581 166.978065,196.707097 L166.978065,196.541935 C165.16129,193.734194 163.509677,191.256774 162.683871,188.779355 C162.353548,187.623226 162.683871,186.962581 162.849032,186.136774 C162.849032,185.971613 163.014194,185.971613 163.014194,185.806452 L163.014194,185.806452 L162.188387,183.824516 C170.941935,178.704516 178.374194,171.437419 183.989677,162.51871 C186.962581,157.894194 189.274839,152.774194 190.926452,147.654194 L192.908387,147.984516 C193.073548,147.984516 193.073548,147.819355 193.23871,147.819355 C193.899355,147.489032 194.394839,146.993548 195.385806,146.993548 L195.716129,146.993548 C198.35871,147.323871 201.166452,148.314839 204.304516,149.470968 L204.469677,149.470968 C204.965161,149.636129 205.460645,149.966452 205.956129,150.131613 C206.947097,150.627097 207.772903,150.957419 208.929032,151.287742 C209.259355,151.287742 209.589677,151.452903 209.92,151.452903 C210.085161,151.452903 210.250323,151.452903 210.415484,151.618065 L210.415484,151.618065 C210.910968,151.783226 211.24129,151.783226 211.736774,151.783226 C214.214194,151.783226 216.36129,150.131613 217.021935,147.984516 C217.021935,146.002581 215.205161,143.36 212.232258,142.534194 L212.232258,142.534194 Z M135.762581,134.44129 L128.495484,137.909677 L121.228387,134.44129 L119.411613,126.67871 L124.366452,120.402581 L132.459355,120.402581 L137.414194,126.67871 L135.762581,134.44129 L135.762581,134.44129 Z M178.869677,117.264516 C180.190968,122.88 180.52129,128.495484 180.025806,133.945806 L154.756129,126.67871 C152.443871,126.018065 151.122581,123.705806 151.618065,121.393548 C151.783226,120.732903 152.113548,120.072258 152.609032,119.576774 L172.593548,101.574194 C175.40129,106.19871 177.548387,111.483871 178.869677,117.264516 L178.869677,117.264516 Z M164.665806,91.6645161 L143.029677,107.024516 C141.212903,108.180645 138.735484,107.850323 137.249032,106.033548 C136.753548,105.538065 136.588387,104.877419 136.423226,104.216774 L134.936774,77.2954839 C146.332903,78.6167742 156.738065,83.7367742 164.665806,91.6645161 L164.665806,91.6645161 Z M116.769032,78.1212903 C118.585806,77.7909677 120.237419,77.4606452 122.054194,77.1303226 L120.567742,103.556129 C120.402581,105.868387 118.585806,107.850323 116.108387,107.850323 C115.447742,107.850323 114.621935,107.685161 114.126452,107.354839 L92.16,91.6645161 C98.9316129,84.8929032 107.354839,80.2683871 116.769032,78.1212903 L116.769032,78.1212903 Z M84.2322581,101.574194 L103.886452,119.08129 C105.703226,120.567742 105.868387,123.375484 104.381935,125.192258 C103.886452,125.852903 103.225806,126.348387 102.4,126.513548 L76.8,133.945806 C75.8090323,122.714839 78.2864516,111.31871 84.2322581,101.574194 L84.2322581,101.574194 Z M79.7729032,146.332903 L106.033548,141.873548 C108.180645,141.708387 110.162581,143.194839 110.658065,145.341935 C110.823226,146.332903 110.823226,147.15871 110.492903,147.984516 L110.492903,147.984516 L100.418065,172.263226 C91.1690323,166.317419 83.7367742,157.233548 79.7729032,146.332903 L79.7729032,146.332903 Z M140.056774,179.2 C136.258065,180.025806 132.459355,180.52129 128.495484,180.52129 C122.714839,180.52129 117.099355,179.530323 111.814194,177.87871 L124.861935,154.260645 C126.183226,152.774194 128.330323,152.113548 130.147097,153.104516 C130.972903,153.6 131.633548,154.260645 132.129032,154.92129 L132.129032,154.92129 L144.846452,177.87871 C143.36,178.374194 141.708387,178.704516 140.056774,179.2 L140.056774,179.2 Z M172.263226,156.242581 C168.134194,162.849032 162.683871,168.134194 156.407742,172.263226 L146.002581,147.323871 C145.507097,145.341935 146.332903,143.194839 148.314839,142.203871 C148.975484,141.873548 149.80129,141.708387 150.627097,141.708387 L177.052903,146.167742 C176.061935,149.80129 174.410323,153.104516 172.263226,156.242581 L172.263226,156.242581 Z" fill="#FFFFFF"></path>
+	</g>
+</svg>
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/dist/img/kubernetes-Logo.svg b/themes/src/main/node_modules/rcue/dist/img/kubernetes-Logo.svg
new file mode 100644
index 0000000..1ee245e
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/kubernetes-Logo.svg
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1"
+	 id="svg4242" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+	 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 200 199.7"
+	 style="enable-background:new 0 0 200 199.7;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#326DE6;}
+	.st1{fill:#FFFFFF;}
+</style>
+<g>
+	<path class="st0" d="M70.9,175.8c-3.8,0-7.3-1.7-9.7-4.7l-36.5-45.3c-2.4-3-3.3-6.9-2.4-10.6l13-56.6c0.8-3.8,3.3-6.8,6.8-8.4
+		l52.7-25.2c1.7-0.8,3.5-1.3,5.4-1.3c1.9,0,3.8,0.4,5.4,1.3L158.4,50c3.4,1.7,5.9,4.7,6.8,8.4l13,56.6c0.8,3.8,0,7.6-2.4,10.6
+		L139.3,171c-2.4,2.9-5.9,4.7-9.7,4.7L70.9,175.8L70.9,175.8z"/>
+	<path class="st1" d="M100.2,26.3c1.5,0,2.9,0.3,4.3,0.9l52.7,25.1c2.7,1.4,4.8,3.9,5.4,6.8l13,56.6c0.7,3,0,6.1-2,8.5l-36.5,45.3
+		c-1.9,2.4-4.8,3.8-7.8,3.8H70.9c-3,0-5.9-1.4-7.8-3.8l-36.5-45.3c-1.9-2.4-2.6-5.5-2-8.5l13-56.6c0.7-3,2.7-5.5,5.4-6.8l52.7-25.2
+		C97.1,26.6,98.7,26.3,100.2,26.3L100.2,26.3z M100.2,21.4L100.2,21.4c-2.2,0-4.4,0.5-6.5,1.5L41,48.1c-4.2,2-7.1,5.6-8.1,10.1
+		l-13,56.6c-1,4.5,0,9.1,2.9,12.7l36.5,45.3c2.8,3.5,7.1,5.5,11.6,5.5h58.5c4.5,0,8.8-2,11.6-5.5l36.5-45.3c2.9-3.5,4-8.2,2.9-12.7
+		l-13-56.6c-1-4.5-4-8.1-8.1-10.1l-52.5-25.2C104.5,21.9,102.3,21.4,100.2,21.4L100.2,21.4L100.2,21.4z"/>
+	<path class="st1" d="M153,111.2L153,111.2L153,111.2C152.9,111.2,152.9,111.2,153,111.2h-0.1c-0.1,0-0.2,0-0.2-0.1
+		c-0.2,0-0.4-0.1-0.6-0.1c-0.7-0.1-1.4-0.2-2-0.2c-0.3,0-0.6,0-1-0.1h-0.1c-2.2-0.2-4-0.4-5.6-0.9c-0.7-0.3-0.9-0.7-1.1-1.1
+		c0-0.1-0.1-0.1-0.1-0.2l0,0l-1.4-0.4c0.6-4.8,0.4-9.8-0.7-14.7c-1.1-4.9-3.1-9.5-5.8-13.7l1-0.9v-0.2c0-0.5,0.1-1,0.5-1.6
+		c1.3-1.1,2.8-2.1,4.7-3.2l0,0c0.3-0.2,0.6-0.3,0.9-0.5c0.6-0.3,1.1-0.6,1.8-1c0.1-0.1,0.3-0.2,0.5-0.4c0.1-0.1,0.2-0.1,0.2-0.2l0,0
+		c1.5-1.3,1.8-3.3,0.7-4.7c-0.5-0.7-1.5-1.1-2.4-1.1c-0.8,0-1.6,0.3-2.3,0.8l0,0l0,0c-0.1,0.1-0.1,0.1-0.2,0.2
+		c-0.2,0.1-0.3,0.3-0.5,0.4c-0.5,0.5-0.9,0.9-1.4,1.5c-0.2,0.2-0.4,0.5-0.7,0.7l0,0c-1.5,1.6-2.8,2.8-4.2,3.8
+		c-0.3,0.2-0.6,0.3-0.9,0.3c-0.2,0-0.4,0-0.6-0.1h-0.2l0,0l-1.3,0.8c-1.4-1.5-2.8-2.7-4.3-4c-6.3-4.9-13.9-7.9-21.8-8.6l-0.1-1.4
+		c-0.1-0.1-0.1-0.1-0.2-0.2c-0.3-0.3-0.7-0.6-0.8-1.4c-0.1-1.7,0.1-3.5,0.3-5.6v-0.1c0-0.3,0.1-0.7,0.2-1c0.1-0.6,0.2-1.3,0.3-2
+		v-0.6v-0.3l0,0l0,0c0-1.9-1.5-3.4-3.2-3.4c-0.8,0-1.7,0.4-2.3,1C97.3,47.1,97,48,97,48.9l0,0l0,0v0.2v0.6c0,0.7,0.1,1.4,0.3,2
+		c0.1,0.3,0.1,0.6,0.2,1v0.1c0.2,2.1,0.5,4,0.3,5.6c-0.1,0.7-0.5,1-0.8,1.4c-0.1,0.1-0.1,0.1-0.2,0.2l0,0l-0.1,1.4
+		c-1.9,0.2-3.8,0.4-5.6,0.8c-8,1.8-15.1,5.8-20.6,11.7l-1-0.7h-0.2c-0.2,0-0.4,0.1-0.6,0.1c-0.3,0-0.6-0.1-0.9-0.3
+		c-1.4-0.9-2.7-2.3-4.2-3.9l0,0c-0.2-0.2-0.4-0.5-0.7-0.7c-0.4-0.5-0.8-0.9-1.4-1.5c-0.1-0.1-0.3-0.2-0.5-0.4
+		c-0.1-0.1-0.2-0.1-0.2-0.2l0,0c-0.6-0.5-1.5-0.8-2.3-0.8c-0.9,0-1.9,0.4-2.4,1.1c-1,1.4-0.7,3.4,0.7,4.7l0,0l0,0
+		c0.1,0,0.1,0.1,0.2,0.1c0.2,0.1,0.3,0.3,0.5,0.4c0.6,0.4,1.1,0.7,1.8,1c0.3,0.1,0.6,0.3,0.9,0.5l0,0c1.9,1.1,3.4,2.1,4.7,3.2
+		c0.5,0.5,0.5,1,0.5,1.6v0.2l0,0l1,0.9c-0.2,0.3-0.4,0.5-0.5,0.8c-5.2,8.2-7.2,17.9-5.8,27.5l-1.4,0.4c0,0.1-0.1,0.1-0.1,0.2
+		c-0.2,0.4-0.5,0.8-1.1,1.1c-1.6,0.5-3.4,0.7-5.6,0.9h-0.1c-0.3,0-0.7,0-1,0.1c-0.6,0-1.3,0.1-2,0.2c-0.2,0-0.4,0.1-0.6,0.1
+		c-0.1,0-0.2,0-0.3,0.1l0,0l0,0c-1.9,0.4-3,2.2-2.7,3.9c0.3,1.5,1.7,2.4,3.3,2.4c0.3,0,0.5,0,0.8-0.1l0,0l0,0c0.1,0,0.2,0,0.2-0.1
+		c0.2,0,0.4-0.1,0.6-0.1c0.7-0.2,1.3-0.4,1.9-0.7c0.3-0.1,0.6-0.3,0.9-0.4H53c2-0.7,3.8-1.4,5.4-1.6h0.2c0.6,0,1,0.3,1.4,0.5
+		c0.1,0,0.1,0.1,0.2,0.1l0,0l1.5-0.2c2.5,7.7,7.3,14.6,13.7,19.6c1.5,1.1,2.9,2.1,4.5,3l-0.6,1.4c0,0.1,0.1,0.1,0.1,0.2
+		c0.2,0.4,0.4,0.9,0.2,1.7c-0.6,1.6-1.6,3.1-2.7,4.9v0.1c-0.2,0.3-0.4,0.5-0.6,0.8c-0.4,0.5-0.7,1-1.1,1.7c-0.1,0.1-0.2,0.3-0.3,0.5
+		c0,0.1-0.1,0.2-0.1,0.2l0,0l0,0c-0.8,1.8-0.2,3.8,1.4,4.5c0.4,0.2,0.8,0.3,1.3,0.3c1.3,0,2.5-0.8,3.1-2l0,0l0,0
+		c0-0.1,0.1-0.2,0.1-0.2c0.1-0.2,0.2-0.4,0.3-0.5c0.3-0.7,0.4-1.3,0.6-1.9c0.1-0.3,0.2-0.6,0.3-0.9l0,0c0.7-2.1,1.3-3.8,2.2-5.2
+		c0.4-0.6,0.9-0.7,1.4-0.9c0.1,0,0.1,0,0.2-0.1l0,0l0.7-1.4c4.6,1.8,9.6,2.7,14.6,2.7c3,0,6.1-0.3,9.1-1c1.9-0.4,3.6-0.9,5.4-1.6
+		l0.6,1.1c0.1,0,0.1,0,0.2,0.1c0.5,0.1,0.9,0.3,1.4,0.9c0.8,1.5,1.5,3.2,2.2,5.2v0.1c0.1,0.3,0.2,0.6,0.3,0.9
+		c0.2,0.6,0.3,1.3,0.6,1.9c0.1,0.2,0.2,0.3,0.3,0.5c0,0.1,0.1,0.2,0.1,0.2l0,0l0,0c0.6,1.3,1.9,2,3.1,2c0.4,0,0.8-0.1,1.3-0.3
+		c0.7-0.4,1.4-1,1.6-1.9c0.2-0.8,0.2-1.8-0.2-2.6l0,0l0,0c0-0.1-0.1-0.1-0.1-0.2c-0.1-0.2-0.2-0.4-0.3-0.5c-0.3-0.6-0.7-1.1-1.1-1.7
+		c-0.2-0.3-0.4-0.5-0.6-0.8v-0.1c-1.1-1.8-2.2-3.3-2.7-4.9c-0.2-0.7,0-1.1,0.1-1.7c0-0.1,0.1-0.1,0.1-0.2l0,0l-0.5-1.3
+		c5.5-3.2,10.2-7.8,13.8-13.4c1.9-2.9,3.3-6.1,4.4-9.4l1.3,0.2c0.1,0,0.1-0.1,0.2-0.1c0.4-0.2,0.7-0.5,1.4-0.5h0.2
+		c1.7,0.2,3.4,0.8,5.4,1.6h0.1c0.3,0.1,0.6,0.3,0.9,0.4c0.6,0.3,1.1,0.5,1.9,0.7c0.2,0,0.4,0.1,0.6,0.1c0.1,0,0.2,0,0.3,0.1l0,0
+		c0.3,0.1,0.5,0.1,0.8,0.1c1.6,0,2.9-1,3.3-2.4C156,113.4,154.9,111.7,153,111.2L153,111.2z M104.7,106.1l-4.6,2.2l-4.6-2.2
+		l-1.1-4.9l3.1-4h5.1l3.1,4L104.7,106.1L104.7,106.1z M131.9,95.3c0.8,3.5,1,7.1,0.7,10.5l-15.9-4.6c-1.5-0.4-2.3-1.9-2-3.3
+		c0.1-0.4,0.3-0.8,0.6-1.1L128,85.4C129.8,88.3,131.1,91.6,131.9,95.3L131.9,95.3z M123,79.1l-13.7,9.7c-1.1,0.7-2.7,0.5-3.6-0.6
+		c-0.3-0.3-0.4-0.7-0.5-1.1l-0.9-17C111.4,70.9,118,74.1,123,79.1L123,79.1z M92.8,70.6c1.1-0.2,2.2-0.4,3.3-0.6l-0.9,16.7
+		c-0.1,1.5-1.3,2.7-2.8,2.7c-0.4,0-0.9-0.1-1.3-0.3l-13.9-9.9C81.5,74.8,86.8,71.9,92.8,70.6L92.8,70.6z M72.2,85.4l12.4,11
+		c1.1,0.9,1.3,2.7,0.3,3.9c-0.3,0.4-0.7,0.7-1.3,0.8l-16.2,4.7C66.9,98.7,68.5,91.5,72.2,85.4L72.2,85.4z M69.4,113.6l16.6-2.8
+		c1.4-0.1,2.6,0.8,2.9,2.2c0.1,0.6,0.1,1.1-0.1,1.7l0,0L82.4,130C76.6,126.2,71.9,120.5,69.4,113.6L69.4,113.6z M107.5,134.3
+		c-2.4,0.5-4.8,0.8-7.3,0.8c-3.6,0-7.2-0.6-10.5-1.7l8.2-14.9c0.8-0.9,2.2-1.4,3.3-0.7c0.5,0.3,0.9,0.7,1.3,1.1l0,0l8,14.5
+		C109.5,133.8,108.5,134,107.5,134.3L107.5,134.3z M127.8,119.9c-2.6,4.2-6,7.5-10,10.1l-6.6-15.7c-0.3-1.3,0.2-2.6,1.5-3.2
+		c0.4-0.2,0.9-0.3,1.5-0.3l16.7,2.8C130.2,115.8,129.1,117.9,127.8,119.9L127.8,119.9z"/>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/linkedin-logo.svg b/themes/src/main/node_modules/rcue/dist/img/linkedin-logo.svg
new file mode 100644
index 0000000..81ee24f
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/linkedin-logo.svg
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="20px" viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#0077B7;}
+</style>
+<path class="st0" d="M18.2,0H1.8C0.8,0,0,0.8,0,1.8v16.4c0,1,0.8,1.8,1.8,1.8h16.4c1,0,1.8-0.8,1.8-1.8V1.8C20,0.8,19.2,0,18.2,0z
+	 M6.2,17.3c0,0.3-0.2,0.5-0.5,0.5H3.4c-0.3,0-0.5-0.2-0.5-0.5V7.9c0-0.3,0.2-0.5,0.5-0.5h2.2c0.3,0,0.5,0.2,0.5,0.5V17.3z M4.5,6.5
+	c-1.2,0-2.1-1-2.1-2.1s1-2.1,2.1-2.1s2.1,1,2.1,2.1S5.7,6.5,4.5,6.5z M17.9,17.3c0,0.3-0.2,0.5-0.5,0.5H15c-0.3,0-0.5-0.2-0.5-0.5
+	v-4.4c0-0.7,0.2-2.9-1.7-2.9c-1.5,0-1.8,1.5-1.8,2.2v5.1c0,0.3-0.2,0.5-0.5,0.5H8.2c-0.3,0-0.5-0.2-0.5-0.5V7.8
+	c0-0.3,0.2-0.5,0.5-0.5h2.3c0.3,0,0.5,0.2,0.5,0.5v0.8c0.5-0.8,1.4-1.5,3.1-1.5c3.9,0,3.8,3.6,3.8,5.6L17.9,17.3L17.9,17.3z"/>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/logo.svg b/themes/src/main/node_modules/rcue/dist/img/logo.svg
new file mode 100644
index 0000000..b9ce0ac
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/logo.svg
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="73px" height="69px" viewBox="0 0 73 69" enable-background="new 0 0 73 69" xml:space="preserve">
+<g>
+	<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.2046" y1="2.1504" x2="36.2046" y2="68.6623">
+		<stop  offset="0" style="stop-color:#60EFFF"/>
+		<stop  offset="1" style="stop-color:#1F89C7"/>
+	</linearGradient>
+	<path fill="url(#SVGID_1_)" d="M36.287,0.137l0.008-0.063l-0.031,0.039l-0.012-0.012L36.262,0l-0.057,0.056L36.148,0l0.011,0.101
+		l-0.013,0.012l-0.03-0.039l0.007,0.063L0,35.447l14.307,20.267l11.05-2.538l10.848,15.255l10.85-15.255l11.05,2.538l8.861-12.554
+		l5.444-7.713L36.287,0.137z M35.108,4.282L30.174,50.52l-9.642-13.151L35.108,4.282z M20.059,36.725l-6.068-8.277L35.057,2.683
+		L20.059,36.725z M29.967,51.407l-4.313,0.99l-7.251-10.193l1.807-4.104L29.967,51.407z M36.092,2.051l0.113-0.258l0.114,0.257
+		l5.102,49.711l-0.015-0.01l-4.999,7.387l-5.409-7.396l-0.007,0.004L36.092,2.051z M42.237,50.521L37.303,4.281l14.576,33.087
+		L42.237,50.521z M52.201,38.101l1.808,4.104l-7.251,10.193l-4.312-0.99L52.201,38.101z M37.355,2.684L58.42,28.448l-6.067,8.277
+		L37.355,2.684z M14.605,54.935L0.907,35.53L32.779,4.374L13.114,28.425l6.623,9.03l-2.127,4.83l7.312,10.28L14.605,54.935z
+		 M36.205,67.235L26.086,53.009l4.326-0.992l0.072,0.099l-0.045,0.034l5.988,8.191l5.552-8.201l-0.048-0.032L42,52.017l4.324,0.992
+		L36.205,67.235z M66.4,42.762l-8.594,12.173l-10.317-2.369l7.312-10.28l-2.127-4.83l6.622-9.03L39.633,4.374L71.504,35.53
+		L66.4,42.762z"/>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/Logo_Horizontal_Reversed.svg b/themes/src/main/node_modules/rcue/dist/img/Logo_Horizontal_Reversed.svg
new file mode 100644
index 0000000..5d7d0dc
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/Logo_Horizontal_Reversed.svg
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 20.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 viewBox="0 0 600 121.3" style="enable-background:new 0 0 600 121.3;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#FFFFFF;}
+	.st1{fill:url(#SVGID_1_);}
+</style>
+<g>
+	<path class="st0" d="M164.88,75.64V45.16h12.97c1.91,0,3.52,0.28,4.83,0.84c1.31,0.56,2.37,1.3,3.18,2.21
+		c0.81,0.91,1.4,1.94,1.76,3.09c0.36,1.15,0.54,2.31,0.54,3.49c0,0.74-0.08,1.49-0.26,2.25c-0.17,0.76-0.43,1.5-0.78,2.21
+		c-0.35,0.72-0.8,1.38-1.35,2.01c-0.55,0.62-1.21,1.17-1.97,1.65c-0.76,0.47-1.64,0.85-2.63,1.11c-0.99,0.27-2.1,0.41-3.32,0.41
+		h-7.13v11.23H164.88z M178.1,58.83c0.75,0,1.37-0.12,1.88-0.36c0.5-0.25,0.92-0.55,1.23-0.94c0.32-0.38,0.55-0.82,0.69-1.29
+		c0.14-0.48,0.22-0.96,0.22-1.45c0-0.44-0.06-0.9-0.18-1.38c-0.12-0.47-0.33-0.9-0.63-1.3c-0.3-0.4-0.72-0.72-1.24-0.98
+		c-0.52-0.26-1.17-0.39-1.96-0.39h-7.38v8.08H178.1z"/>
+	<path class="st0" d="M228.45,75.64l-2.34-6.31h-11.66l-2.32,6.31h-6.27l11.58-30.49h5.69l11.58,30.49H228.45z M221.24,56.04
+		c-0.15-0.37-0.32-0.81-0.5-1.32c-0.17-0.51-0.33-0.98-0.45-1.43c-0.11,0.44-0.26,0.91-0.44,1.43c-0.18,0.51-0.35,0.95-0.51,1.32
+		l-2.99,7.93h7.87L221.24,56.04z"/>
+	<path class="st0" d="M267.52,50.83v24.81h-5.82V50.83h-8.65v-5.68h23.1v5.68H267.52z"/>
+	<path class="st0" d="M312.76,50.83v24.81h-5.82V50.83h-8.65v-5.68h23.11v5.68H312.76z"/>
+	<path class="st0" d="M345.49,75.64V45.16h20.63v5.59h-14.79v6.4h8.7v5.57h-8.7v7.36h15.7v5.57H345.49z"/>
+	<path class="st0" d="M391.55,75.64V45.16h14.04c1.91,0,3.51,0.26,4.8,0.8c1.28,0.53,2.32,1.24,3.11,2.12
+		c0.78,0.88,1.35,1.89,1.68,3.04c0.34,1.15,0.51,2.35,0.51,3.59c0,0.86-0.13,1.74-0.37,2.62c-0.25,0.89-0.62,1.73-1.11,2.52
+		c-0.49,0.8-1.1,1.51-1.84,2.16c-0.73,0.65-1.58,1.15-2.55,1.49l5.86,12.14h-6.56l-5.65-11.38h-6.09v11.38H391.55z M405.68,58.7
+		c0.74,0,1.37-0.11,1.88-0.33c0.5-0.22,0.91-0.51,1.22-0.88c0.31-0.37,0.54-0.79,0.67-1.28c0.13-0.48,0.2-0.99,0.2-1.51
+		c0-0.48-0.06-0.96-0.18-1.44c-0.12-0.48-0.33-0.9-0.62-1.28c-0.29-0.37-0.7-0.67-1.21-0.9c-0.51-0.23-1.16-0.34-1.95-0.34h-8.29
+		v7.95H405.68z"/>
+	<path class="st0" d="M459.54,75.64l-11.99-17.78c-0.2-0.29-0.41-0.66-0.64-1.09c-0.23-0.43-0.43-0.83-0.6-1.2
+		c0.05,0.32,0.07,0.71,0.1,1.15c0.02,0.44,0.03,0.82,0.03,1.15v17.78h-5.8V45.16h5.48l11.7,17.56c0.18,0.29,0.39,0.64,0.63,1.07
+		c0.24,0.43,0.45,0.84,0.63,1.23c-0.04-0.41-0.07-0.83-0.09-1.24c-0.03-0.42-0.04-0.77-0.04-1.06V45.16h5.78v30.49H459.54z"/>
+	<path class="st0" d="M490.75,75.64V45.16h20.26v5.59h-14.42v6.4h9.15v5.57h-9.15v12.93H490.75z"/>
+	<path class="st0" d="M534.67,75.64V45.16h5.84v24.83h14.59v5.66H534.67z"/>
+	<path class="st0" d="M583.03,75.64V63.76l-11.2-18.6h6.62l7.46,12.46l7.46-12.46H600l-11.19,18.6v11.88H583.03z"/>
+</g>
+<g>
+	<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="63.8196" y1="3.8115" x2="63.8196" y2="121.713">
+		<stop  offset="0" style="stop-color:#83D3E8"/>
+		<stop  offset="1" style="stop-color:#248AC8"/>
+	</linearGradient>
+	<path class="st1" d="M63.96,0.24l0.01-0.11L63.92,0.2L63.9,0.18L63.92,0l-0.1,0.1L63.72,0l0.02,0.18L63.72,0.2l-0.05-0.07
+		l0.01,0.11L0.19,62.84l25.14,35.93l19.42-4.5l19.07,27.04l19.07-27.04l19.42,4.5l15.57-22.25l9.57-13.67L63.96,0.24z M61.89,7.59
+		l-8.67,81.96L36.27,66.24L61.89,7.59z M35.44,65.1L24.78,50.43L61.8,4.75L35.44,65.1z M52.85,91.13l-7.58,1.76L32.53,74.81
+		l3.18-7.27L52.85,91.13z M63.62,3.63l0.2-0.46l0.2,0.46l8.97,88.12l-0.03-0.02l-8.79,13.1l-9.51-13.11l-0.01,0.01L63.62,3.63z
+		 M74.42,89.55L65.75,7.59l25.62,58.65L74.42,89.55z M91.93,67.54l3.18,7.27L82.37,92.88l-7.58-1.76L91.93,67.54z M65.84,4.76
+		l37.02,45.67L92.2,65.1L65.84,4.76z M25.85,97.38L1.78,62.98L57.8,7.75L23.24,50.39L34.88,66.4l-3.74,8.56l12.85,18.23L25.85,97.38
+		z M63.82,119.19L46.04,93.97l7.6-1.76l0.13,0.18l-0.08,0.06l10.53,14.52l9.76-14.54l-0.08-0.06L74,92.21l7.6,1.76L63.82,119.19z
+		 M116.89,75.8l-15.1,21.58l-18.13-4.2L96.5,74.96l-3.74-8.56l11.64-16.01L69.84,7.75l56.02,55.23L116.89,75.8z"/>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/Logo_Horizontal_Reversed.svg alias b/themes/src/main/node_modules/rcue/dist/img/Logo_Horizontal_Reversed.svg alias
new file mode 100644
index 0000000..e47a8ca
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/Logo_Horizontal_Reversed.svg alias differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/logo-alt.svg b/themes/src/main/node_modules/rcue/dist/img/logo-alt.svg
new file mode 100644
index 0000000..748d64a
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/logo-alt.svg
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="37px" height="35px" viewBox="0 0 37 35" enable-background="new 0 0 37 35" xml:space="preserve">
+<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="231.8955" y1="-269.5547" x2="231.8955" y2="-301.7199" gradientTransform="matrix(1 0 0 -1 -213.5 -268.5)">
+	<stop  offset="0" style="stop-color:#60EFFF"/>
+	<stop  offset="1" style="stop-color:#1F89C7"/>
+</linearGradient>
+<path fill="url(#SVGID_1_)" d="M36.792,17.992L18.398,0L0,17.992l7.333,10.39l5.595-1.285l5.503,7.737l5.493-7.724l5.533,1.27
+	L36.792,17.992z M17.634,3.336L15.25,25.355l-4.549-6.205L17.634,3.336z M10.202,18.47l-2.833-3.866l9.743-11.833L10.202,18.47z
+	 M14.495,25.562L14.495,25.562l0.265,0.365l-1.52,0.348l-3.507-4.93l0.626-1.424L14.495,25.562z M18.396,3.044l2.395,23.345
+	l-2.4,3.288L16,26.389L18.396,3.044z M22.296,25.562l4.181-5.702l0.654,1.485l-3.517,4.944l-1.58-0.362l0.264-0.363L22.296,25.562z
+	 M21.542,25.355L19.189,3.318l6.946,15.77L21.542,25.355z M19.744,2.767l9.679,11.837l-2.787,3.802L19.744,2.767z M7.647,27.56
+	l-6.692-9.48L14.051,5.278l-7.605,9.302l3.417,4.661l-0.964,2.188l3.572,5.023L7.647,27.56z M18.432,33.573l-4.733-6.653
+	l1.528-0.352l3.162,4.351l3.173-4.351l1.592,0.367L18.432,33.573z M24.384,26.466l3.581-5.037l-0.99-2.248l3.372-4.6l-7.605-9.302
+	l13.095,12.801l-6.692,9.48L24.384,26.466z"/>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/open-id-logo.svg b/themes/src/main/node_modules/rcue/dist/img/open-id-logo.svg
new file mode 100644
index 0000000..0666e61
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/open-id-logo.svg
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="18.2px" viewBox="0 0 20 18.2" style="enable-background:new 0 0 20 18.2;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#C1C1C1;}
+	.st1{fill:#FFFFFF;}
+	.st2{fill:#CC6633;}
+</style>
+<g>
+	<g>
+		<path class="st0" d="M18.7,6.4l-1.1,0.8c-1.6-1-3.5-1.6-5.4-1.8v1.9c1.8,0.4,3.1,1.1,3.4,1.3l-1.2,0.9H20v0L18.7,6.4z"/>
+		<path class="st0" d="M7.7,7.4c0.4-0.1,0.8-0.2,1.2-0.2V5.4C4.1,5.9,0,8.3,0,11.5c0,5.2,8.9,6.7,8.9,6.7V16
+			C-0.5,14.4,2.6,8.7,7.7,7.4z"/>
+	</g>
+	<rect x="8.5" y="1.1" class="st1" width="4" height="7.4"/>
+	<polygon class="st2" points="8.9,2.1 12.2,0 12.2,16.1 8.9,18.2 	"/>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/OpenShift-logo.svg b/themes/src/main/node_modules/rcue/dist/img/OpenShift-logo.svg
new file mode 100644
index 0000000..22d69ee
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/OpenShift-logo.svg
@@ -0,0 +1,69 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg id="svg4242" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="285.79" viewBox="0 0 286.28177 285.78885" width="286.28" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <defs id="defs4244">
+  <clipPath id="clipPath3923" clipPathUnits="userSpaceOnUse">
+   <path id="path3925" d="m0 768h1024v-768h-1024v768z"/>
+  </clipPath>
+ </defs>
+ <metadata id="metadata4247">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+    <dc:title/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <g id="layer1" transform="translate(448.86 -589.47)">
+  <g id="g3367" transform="matrix(1.25 0 0 -1.25 -733.56 1212.1)">
+   <g id="g3919">
+    <g id="g3921" clip-path="url(#clipPath3923)">
+     <g id="g3927" transform="translate(304.96 416.03)">
+      <path id="path3929" d="m0 0-25.748-9.369c0.33-4.128 1.041-8.206 2.042-12.201l24.456 8.906c-0.793 4.135-1.076 8.396-0.75 12.664" fill="#c32034"/>
+     </g>
+     <g id="g3931" transform="translate(418.75 444.5)">
+      <path id="path3933" d="m0 0c-1.795 3.704-3.873 7.284-6.279 10.657l-25.741-9.369c2.995-3.064 5.508-6.508 7.563-10.191l24.457 8.903z" fill="#c32034"/>
+     </g>
+     <g id="g3935" transform="translate(362.11 451.79)">
+      <path id="path3937" d="m0 0c5.356-2.499 9.995-5.908 13.907-9.906l25.742 9.37c-7.13 10.005-16.842 18.366-28.743 23.919-36.797 17.159-80.702 1.18-97.861-35.613-5.553-11.907-7.617-24.556-6.648-36.801l25.745 9.368c0.427 5.578 1.789 11.167 4.284 16.526 11.151 23.909 39.669 34.283 63.575 23.137" fill="#db212f"/>
+     </g>
+     <g id="g3939" transform="translate(282.86 395.05)">
+      <path id="path3941" d="m0 0-24.46-8.909c2.248-8.918 6.145-17.391 11.502-24.932l25.688 9.351c-6.595 6.771-10.979 15.337-12.73 24.49" fill="#ea2227"/>
+     </g>
+     <g id="g3943" transform="translate(389.56 404.75)">
+      <path id="path3945" d="m0 0c-0.409-5.575-1.817-11.167-4.319-16.53-11.15-23.91-39.668-34.285-63.574-23.136-5.363 2.501-10.035 5.883-13.936 9.888l-25.687-9.352c7.113-10.006 16.816-18.369 28.721-23.926 36.799-17.156 80.698-1.177 97.857 35.619 5.557 11.905 7.608 24.549 6.626 36.785l-25.69-9.348z" fill="#db212f"/>
+     </g>
+     <g id="g3947" transform="translate(395.89 436.18)">
+      <path id="path3949" d="m0 0-24.458-8.903c4.542-8.139 6.689-17.513 5.986-26.938l25.688 9.345c-0.735 9.219-3.195 18.217-7.216 26.496" fill="#ea2227"/>
+     </g>
+     <g id="g3951" transform="translate(279.22 406.66)">
+      <path id="path3953" d="m0 0 25.684 9.263-0.105-5.08-24.78-9.213-0.799 5.03z" fill="#ad213a"/>
+     </g>
+     <g id="g3955" transform="translate(386.73 445.86)">
+      <path id="path3957" d="m0 0 26.085 8.814 2.712-4.028-25.345-8.821-3.452 4.035z" fill="#ad213a"/>
+     </g>
+     <g id="g3959" transform="translate(282.04 365.71)">
+      <path id="path3961" d="m0 0 25.716 9.213 7.777-7.225-26.967-9.967-6.526 7.979z" fill="#ba2034"/>
+     </g>
+     <g id="g3963" transform="translate(415.68 414.03)">
+      <path id="path3965" d="m0 0-26.119-9.274-1.924-10.293 27.848 9.771 0.195 9.796z" fill="#ba2034"/>
+     </g>
+    </g>
+   </g>
+   <g id="text3967" transform="scale(1,-1)" fill="#231f20">
+    <path id="path3359" d="m254.37-285.44c-1.2952 0-2.4565-0.16749-3.4837-0.50246-1.0273-0.34614-1.9373-0.80952-2.73-1.3901-0.78161-0.59178-1.4516-1.2841-2.0098-2.0768-0.5583-0.80393-1.0161-1.6637-1.3734-2.5793-0.34614-0.92675-0.60296-1.887-0.77044-2.8808-0.15632-1.0049-0.23448-2.0042-0.23448-2.998 0-0.98257 0.0782-1.9707 0.23448-2.9645 0.16748-1.0049 0.4243-1.9652 0.77044-2.8808 0.3573-0.92674 0.81509-1.7865 1.3734-2.5793 0.55828-0.80391 1.2282-1.4962 2.0098-2.0768 0.79276-0.59176 1.7028-1.0551 2.73-1.3901 1.0272-0.34611 2.1885-0.51918 3.4837-0.51921 1.2952 0.00003 2.4509 0.1731 3.467 0.51921 1.0272 0.335 1.9317 0.79838 2.7133 1.3901 0.78158 0.58064 1.4515 1.2729 2.0098 2.0768 0.55826 0.79279 1.0105 1.6526 1.3566 2.5793 0.35728 0.91561 0.61409 1.8759 0.77043 2.8808 0.16747 0.99377 0.25121 1.9819 0.25123 2.9645-0.00002 0.99376-0.0838 1.9931-0.25123 2.998-0.15634 0.99376-0.41315 1.954-0.77043 2.8808-0.34617 0.9156-0.79838 1.7754-1.3566 2.5793-0.55831 0.79277-1.2283 1.485-2.0098 2.0768-0.78162 0.58062-1.686 1.044-2.7133 1.3901-1.0161 0.33497-2.1718 0.50246-3.467 0.50246m0-4.4719c1.0719 0.00001 1.9708-0.25122 2.6965-0.75369 0.73693-0.50245 1.3287-1.1445 1.7754-1.9261 0.45778-0.78159 0.78717-1.6358 0.98817-2.5625 0.20096-0.93791 0.30146-1.8423 0.30147-2.7133-0.00001-0.6141-0.0447-1.2338-0.13398-1.8591-0.0782-0.63643-0.21217-1.245-0.40197-1.8256-0.18984-0.59177-0.43548-1.1445-0.73694-1.6581-0.30149-0.52478-0.66438-0.97699-1.0887-1.3566-0.42432-0.39078-0.92119-0.69784-1.4906-0.92118-0.5583-0.22329-1.1948-0.33495-1.9094-0.33497-0.72578 0.00002-1.3734 0.11726-1.9428 0.35172-0.5583 0.2345-1.0552 0.55273-1.4906 0.95467-0.4243 0.39082-0.78719 0.84862-1.0887 1.3734-0.30148 0.52481-0.54713 1.0831-0.73694 1.6749-0.18982 0.5918-0.32939 1.1948-0.41871 1.8088-0.0782 0.61413-0.11725 1.2115-0.11724 1.7921-0.00001 0.9156 0.10048 1.8479 0.30147 2.797 0.20098 0.93794 0.52479 1.7921 0.97142 2.5625 0.45779 0.75928 1.0552 1.3846 1.7921 1.8758 0.73693 0.48013 1.6469 0.7202 2.73 0.72019"/>
+    <path id="path3361" d="m270.86-285.86v-24.018h10.3c1.5185 0.00003 2.797 0.22334 3.8354 0.66995 1.0384 0.43548 1.8814 1.0161 2.529 1.7418 0.6476 0.71463 1.111 1.5242 1.3901 2.4286 0.29029 0.90444 0.43544 1.82 0.43546 2.7468-0.00002 0.58064-0.067 1.1724-0.20098 1.7754-0.13401 0.5918-0.34058 1.1724-0.6197 1.7419-0.27916 0.5583-0.63647 1.0831-1.0719 1.5744-0.43549 0.4913-0.96028 0.92676-1.5744 1.3064-0.60297 0.36848-1.3008 0.65879-2.0936 0.87093-0.78162 0.21216-1.6581 0.31823-2.6295 0.31822h-5.661v8.8433h-4.6394m10.501-13.248c0.59178 0.00002 1.0886-0.0949 1.4906-0.28472 0.40196-0.18981 0.72576-0.43545 0.97142-0.73694 0.2568-0.30146 0.44103-0.64202 0.55271-1.0217 0.11164-0.37962 0.16747-0.75926 0.16749-1.1389-0.00002-0.34612-0.0503-0.70342-0.15074-1.0719-0.0893-0.37962-0.25683-0.72576-0.50246-1.0384-0.2345-0.31262-0.5583-0.56943-0.97142-0.77043-0.41315-0.20097-0.93236-0.30146-1.5576-0.30148h-5.862v6.3645h5.862"/>
+    <path id="path3363" d="m295.76-285.86v-24.018h16.397v4.4049h-11.758v5.0413h6.9172v4.3881h-6.9172v5.795h12.478v4.3881h-17.117"/>
+    <path id="path3365" d="m334.66-285.86-9.53-14.002c-0.15633-0.23446-0.3294-0.51919-0.51921-0.85418-0.17866-0.34612-0.33498-0.66434-0.46896-0.95467 0.0335 0.25683 0.0558 0.5583 0.067 0.90443 0.0223 0.34615 0.0335 0.64763 0.0335 0.90442v14.002h-4.6059v-24.018h4.3546l9.2955 13.834c0.14514 0.22333 0.31263 0.50247 0.50246 0.83743 0.1898 0.33499 0.35729 0.65879 0.50246 0.97142-0.0335-0.32379-0.0614-0.6476-0.0837-0.97142-0.0112-0.33496-0.0168-0.6141-0.0168-0.83743v-13.834h4.5891v24.018h-4.1202"/>
+   </g>
+   <g id="text3971" transform="scale(1,-1)" fill="#231f20">
+    <path id="path3348" d="m358.06-304.42c-0.14517-0.34612-0.34615-0.66435-0.60295-0.95468-0.25683-0.30145-0.56947-0.55826-0.93793-0.77043-0.36848-0.2233-0.79278-0.39637-1.2729-0.51921-0.46897-0.1228-0.99376-0.18421-1.5744-0.18424-1.1501 0.00003-2.0489 0.25125-2.6965 0.75369-0.64762 0.50248-0.97143 1.2115-0.97142 2.1271-0.00001 0.56947 0.17864 1.0552 0.53595 1.4571 0.3573 0.39082 0.82626 0.73696 1.4069 1.0384 0.58061 0.30149 1.2394 0.58063 1.9763 0.83743 0.74809 0.24566 1.5074 0.51922 2.2778 0.82068 0.78159 0.29032 1.5409 0.63088 2.2778 1.0217 0.7481 0.37964 1.4125 0.84861 1.9931 1.4069 0.5806 0.54713 1.0496 1.2115 1.4069 1.9931 0.35728 0.77045 0.53594 1.6972 0.53595 2.7803-0.00001 1.1501-0.21216 2.1718-0.63644 3.065-0.41315 0.8821-0.98819 1.6302-1.7251 2.2443-0.73696 0.60295-1.6079 1.0663-2.6128 1.3901-0.99377 0.31264-2.0657 0.46896-3.2157 0.46896-1.0719 0-2.0768-0.13957-3.0148-0.41872-0.92677-0.26798-1.7698-0.65319-2.529-1.1556-0.74811-0.51363-1.3957-1.1277-1.9428-1.8424-0.54712-0.72577-0.97142-1.5353-1.2729-2.4286l3.3665-1.2226c0.24564 0.53597 0.54712 1.0273 0.90443 1.4739 0.36846 0.44664 0.78718 0.83186 1.2562 1.1557 0.46895 0.31264 0.98257 0.55829 1.5409 0.73694 0.56944 0.17865 1.178 0.26798 1.8256 0.26798s1.2394-0.0782 1.7754-0.23448c0.53594-0.15632 0.99374-0.3908 1.3734-0.70345 0.37963-0.31263 0.67552-0.69785 0.88768-1.1556 0.21214-0.46896 0.31821-1.0049 0.31823-1.6079-0.00002-0.7146-0.17867-1.312-0.53596-1.7921-0.35732-0.49129-0.82628-0.91559-1.4069-1.2729-0.58063-0.35729-1.245-0.66994-1.9931-0.93792-0.73695-0.26797-1.4962-0.54153-2.2778-0.82069-0.77044-0.27913-1.5297-0.59177-2.2778-0.93792-0.73695-0.34613-1.3957-0.77042-1.9763-1.2729-0.58062-0.50244-1.0496-1.1054-1.4069-1.8088-0.3573-0.70343-0.53595-1.5632-0.53595-2.5793 0-0.84858 0.16748-1.6525 0.50246-2.4118 0.34613-0.75925 0.84301-1.4236 1.4906-1.9931 0.6476-0.58059 1.446-1.0384 2.395-1.3734 0.94908-0.33495 2.0322-0.50243 3.2492-0.50246 1.0161 0.00003 1.9372 0.12285 2.7635 0.36847 0.82625 0.23451 1.5464 0.5639 2.1606 0.98817 0.62527 0.42432 1.1445 0.92678 1.5576 1.5074 0.41311 0.58064 0.72575 1.2115 0.93792 1.8926l-3.2995 1.1054"/>
+    <path id="path3350" d="m383.24-285.86v-10.702h-10.954v10.702h-3.5675v-24.018h3.5675v9.9487h10.954v-9.9487h3.5674v24.018h-3.5674"/>
+    <path id="path3352" d="m394.08-285.86v-24.018h3.5675v24.018h-3.5675"/>
+    <path id="path3354" d="m404.81-285.86v-24.018h14.89v3.3665h-11.322v6.5822h7.3192v3.3665h-7.3192v10.702h-3.5675"/>
+    <path id="path3356" d="m434.01-306.44v20.584h-3.5675v-20.584h-6.8v-3.4335h17.151v3.4335h-6.7832"/>
+   </g>
+  </g>
+ </g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/OpenShift-Logo-NoText.svg b/themes/src/main/node_modules/rcue/dist/img/OpenShift-Logo-NoText.svg
new file mode 100644
index 0000000..263ea41
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/OpenShift-Logo-NoText.svg
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1"
+	 id="svg4242" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+	 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 200 199.7"
+	 style="enable-background:new 0 0 200 199.7;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#C32034;}
+	.st1{fill:#DB212F;}
+	.st2{fill:#EA2227;}
+	.st3{fill:#AD213A;}
+	.st4{fill:#BA2034;}
+</style>
+<g id="g3921">
+	<g id="g3927" transform="translate(304.96 416.03)">
+		<path id="path3929" class="st0" d="M-235.4-323l-23.3,8.5c0.3,3.8,0.9,7.5,1.9,11.1l22.1-8C-235.4-315.4-235.7-319.2-235.4-323"/>
+	</g>
+	<g id="g3931" transform="translate(418.75 444.5)">
+		<path id="path3933" class="st0" d="M-246.2-377.3c-1.6-3.3-3.5-6.6-5.6-9.6l-23.3,8.5c2.7,2.8,5,5.9,6.9,9.2
+			C-268.3-369.3-246.2-377.3-246.2-377.3z"/>
+	</g>
+	<g id="g3935" transform="translate(362.11 451.79)">
+		<path id="path3937" class="st1" d="M-240.8-391.2c4.8,2.2,9,5.4,12.6,9l23.3-8.5c-6.4-9-15.3-16.6-26-21.6
+			c-33.3-15.5-73-1.1-88.5,32.2c-5,10.8-6.9,22.2-6,33.3l23.3-8.5c0.4-5.1,1.6-10.1,3.9-15C-288.2-391.9-262.5-401.2-240.8-391.2"/>
+	</g>
+	<g id="g3939" transform="translate(282.86 395.05)">
+		<path id="path3941" class="st2" d="M-233.3-283.1l-22.1,8c2,8,5.6,15.7,10.4,22.6l23.2-8.5C-227.7-267.1-231.7-274.8-233.3-283.1"
+			/>
+	</g>
+	<g id="g3943" transform="translate(389.56 404.75)">
+		<path id="path3945" class="st1" d="M-243.4-301.6c-0.4,5.1-1.7,10.1-3.9,15c-10.1,21.6-35.9,31.1-57.5,20.9c-4.8-2.2-9-5.4-12.6-9
+			l-23.2,8.5c6.4,9,15.2,16.6,26,21.6c33.3,15.5,73,1.1,88.5-32.2c5-10.8,6.9-22.2,6-33.3L-243.4-301.6L-243.4-301.6z"/>
+	</g>
+	<g id="g3947" transform="translate(395.89 436.18)">
+		<path id="path3949" class="st2" d="M-244-361.5l-22.1,8c4.1,7.4,6.1,15.9,5.4,24.4l23.2-8.5C-238.1-345.8-240.4-353.9-244-361.5"
+			/>
+	</g>
+	<g id="g3951" transform="translate(279.22 406.66)">
+		<path id="path3953" class="st3" d="M-232.9-305.2l23.2-8.4l-0.1,4.6l-22.4,8.3C-232.2-300.7-232.9-305.2-232.9-305.2z"/>
+	</g>
+	<g id="g3955" transform="translate(386.73 445.86)">
+		<path id="path3957" class="st3" d="M-243.1-379.9l23.6-8l2.5,3.6l-22.9,8C-240-376.2-243.1-379.9-243.1-379.9z"/>
+	</g>
+	<g id="g3959" transform="translate(282.04 365.71)">
+		<path id="path3961" class="st4" d="M-233.2-227.2l23.2-8.3l7,6.5l-24.4,9C-227.3-220-233.2-227.2-233.2-227.2z"/>
+	</g>
+	<g id="g3963" transform="translate(415.68 414.03)">
+		<path id="path3965" class="st4" d="M-245.9-319.2l-23.6,8.4l-1.7,9.3l25.2-8.8C-246.1-310.4-245.9-319.2-245.9-319.2z"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/OpenShift-Logo-Text.svg b/themes/src/main/node_modules/rcue/dist/img/OpenShift-Logo-Text.svg
new file mode 100644
index 0000000..35d5289
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/OpenShift-Logo-Text.svg
@@ -0,0 +1,95 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1"
+	 id="svg4242" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+	 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 200 199.7"
+	 style="enable-background:new 0 0 200 199.7;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#C32034;}
+	.st1{fill:#DB212F;}
+	.st2{fill:#EA2227;}
+	.st3{fill:#AD213A;}
+	.st4{fill:#BA2034;}
+	.st5{fill:#231F20;}
+</style>
+<g>
+	<g id="g3921">
+		<g id="g3927" transform="translate(304.96 416.03)">
+			<path id="path3929" class="st0" d="M-238.7-345.3l-23.3,8.5c0.3,3.8,0.9,7.5,1.9,11.1l22.1-8C-238.7-337.7-239-341.5-238.7-345.3
+				"/>
+		</g>
+		<g id="g3931" transform="translate(418.75 444.5)">
+			<path id="path3933" class="st0" d="M-249.5-399.6c-1.6-3.3-3.5-6.6-5.6-9.6l-23.3,8.5c2.7,2.8,5,5.9,6.9,9.2
+				C-271.7-391.6-249.5-399.6-249.5-399.6z"/>
+		</g>
+		<g id="g3935" transform="translate(362.11 451.79)">
+			<path id="path3937" class="st1" d="M-244.2-413.5c4.8,2.2,9,5.4,12.6,9l23.3-8.5c-6.4-9-15.3-16.6-26-21.6
+				c-33.3-15.5-73-1.1-88.5,32.2c-5,10.8-6.9,22.2-6,33.3l23.3-8.5c0.4-5.1,1.6-10.1,3.9-15C-291.6-414.2-265.8-423.5-244.2-413.5"
+				/>
+		</g>
+		<g id="g3939" transform="translate(282.86 395.05)">
+			<path id="path3941" class="st2" d="M-236.6-305.4l-22.1,8c2,8,5.6,15.7,10.4,22.6l23.2-8.5C-231-289.4-235-297.1-236.6-305.4"/>
+		</g>
+		<g id="g3943" transform="translate(389.56 404.75)">
+			<path id="path3945" class="st1" d="M-246.7-323.9c-0.4,5.1-1.7,10.1-3.9,15c-10.1,21.6-35.9,31.1-57.5,20.9
+				c-4.8-2.2-9-5.4-12.6-9l-23.2,8.5c6.4,9,15.2,16.6,26,21.6c33.3,15.5,73,1.1,88.5-32.2c5-10.8,6.9-22.2,6-33.3L-246.7-323.9
+				L-246.7-323.9z"/>
+		</g>
+		<g id="g3947" transform="translate(395.89 436.18)">
+			<path id="path3949" class="st2" d="M-247.3-383.8l-22.1,8c4.1,7.4,6.1,15.9,5.4,24.4l23.2-8.5
+				C-241.5-368.1-243.7-376.2-247.3-383.8"/>
+		</g>
+		<g id="g3951" transform="translate(279.22 406.66)">
+			<path id="path3953" class="st3" d="M-236.2-327.6l23.2-8.4l-0.1,4.6l-22.4,8.3C-235.5-323-236.2-327.6-236.2-327.6z"/>
+		</g>
+		<g id="g3955" transform="translate(386.73 445.86)">
+			<path id="path3957" class="st3" d="M-246.5-402.2l23.6-8l2.5,3.6l-22.9,8C-243.4-398.5-246.5-402.2-246.5-402.2z"/>
+		</g>
+		<g id="g3959" transform="translate(282.04 365.71)">
+			<path id="path3961" class="st4" d="M-236.5-249.5l23.2-8.3l7,6.5l-24.4,9C-230.6-242.3-236.5-249.5-236.5-249.5z"/>
+		</g>
+		<g id="g3963" transform="translate(415.68 414.03)">
+			<path id="path3965" class="st4" d="M-249.2-341.5l-23.6,8.4l-1.7,9.3l25.2-8.8C-249.4-332.7-249.2-341.5-249.2-341.5z"/>
+		</g>
+	</g>
+	<g>
+		<g id="text3967" transform="scale(1,-1)">
+			<path id="path3359" class="st5" d="M20.5-188.8c-1.2,0-2.2,0.1-3.2,0.4c-0.9,0.3-1.7,0.7-2.5,1.2c-0.7,0.5-1.3,1.2-1.8,1.9
+				c-0.5,0.7-0.9,1.5-1.2,2.3c-0.3,0.9-0.6,1.7-0.7,2.6c-0.1,0.9-0.2,1.8-0.2,2.7s0.1,1.8,0.2,2.7c0.1,0.9,0.4,1.8,0.7,2.6
+				c0.3,0.9,0.7,1.6,1.2,2.3c0.5,0.7,1.1,1.4,1.8,1.9c0.7,0.5,1.5,0.9,2.5,1.2s2,0.4,3.2,0.4c1.2,0,2.2-0.1,3.1-0.4
+				c0.9-0.3,1.7-0.7,2.5-1.2c0.7-0.5,1.3-1.2,1.8-1.9c0.5-0.7,0.9-1.5,1.2-2.3c0.3-0.8,0.6-1.7,0.7-2.6c0.1-0.9,0.2-1.8,0.2-2.7
+				s-0.1-1.8-0.2-2.7c-0.1-0.9-0.4-1.7-0.7-2.6c-0.3-0.8-0.7-1.6-1.2-2.3c-0.5-0.7-1.1-1.4-1.8-1.9c-0.7-0.5-1.5-0.9-2.5-1.2
+				C22.7-188.6,21.7-188.8,20.5-188.8 M20.5-184.7c0.9,0,1.8,0.2,2.5,0.7c0.7,0.4,1.2,1,1.6,1.7c0.4,0.7,0.7,1.4,0.9,2.3
+				c0.2,0.9,0.3,1.7,0.3,2.5c0,0.6-0.1,1.1-0.1,1.7c-0.1,0.6-0.2,1.2-0.4,1.7c-0.1,0.5-0.4,1-0.7,1.5c-0.3,0.5-0.6,0.9-1,1.2
+				c-0.4,0.4-0.9,0.7-1.4,0.9c-0.5,0.2-1.1,0.3-1.7,0.3c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.4-0.9c-0.4-0.4-0.7-0.8-1-1.2
+				c-0.3-0.5-0.5-1-0.7-1.5c-0.1-0.5-0.3-1.1-0.4-1.7s-0.1-1.1-0.1-1.6c0-0.8,0.1-1.7,0.3-2.5c0.2-0.9,0.5-1.6,0.9-2.3
+				c0.4-0.7,0.9-1.2,1.6-1.7C18.7-184.5,19.5-184.7,20.5-184.7"/>
+			<path id="path3361" class="st5" d="M35.4-188.4v21.7h9.3c1.4,0,2.5-0.2,3.5-0.6c0.9-0.4,1.7-0.9,2.3-1.6c0.6-0.7,1-1.4,1.2-2.2
+				c0.3-0.8,0.4-1.7,0.4-2.5c0-0.5-0.1-1.1-0.2-1.6c-0.1-0.5-0.3-1.1-0.6-1.6c-0.2-0.5-0.6-1-0.9-1.4s-0.9-0.9-1.4-1.2
+				c-0.6-0.4-1.2-0.6-1.9-0.8s-1.5-0.3-2.4-0.3h-5.1v-8H35.4 M44.9-176.4c0.5,0,1,0.1,1.4,0.3c0.4,0.1,0.7,0.4,0.9,0.7
+				c0.2,0.3,0.4,0.6,0.5,0.9c0.1,0.4,0.1,0.7,0.1,1c0,0.3-0.1,0.7-0.1,0.9c-0.1,0.4-0.2,0.7-0.4,0.9c-0.2,0.3-0.5,0.5-0.9,0.7
+				c-0.4,0.2-0.9,0.3-1.4,0.3h-5.3v-5.8H44.9"/>
+			<path id="path3363" class="st5" d="M57.9-188.4v21.7h14.8v-4H62.1v-4.6h6.2v-4h-6.2v-5.2h11.3v-4H57.9"/>
+			<path id="path3365" class="st5" d="M93.1-188.4l-8.6,12.7c-0.1,0.2-0.3,0.4-0.4,0.8c-0.1,0.3-0.3,0.6-0.4,0.9
+				c0-0.2,0.1-0.5,0.1-0.8c0-0.3,0-0.6,0-0.8v-12.7h-4.2v21.7h3.9l8.4-12.5c0.1-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.3-0.6,0.4-0.9
+				c0,0.3-0.1,0.6-0.1,0.9s0,0.6,0,0.7v12.5h4.1v-21.7L93.1-188.4"/>
+		</g>
+		<g id="text3971" transform="scale(1,-1)">
+			<path id="path3348" class="st5" d="M114.3-171.6c-0.1,0.3-0.3,0.6-0.6,0.9c-0.2,0.3-0.5,0.5-0.9,0.7c-0.4,0.2-0.7,0.4-1.2,0.4
+				c-0.4,0.1-0.9,0.1-1.4,0.1c-1,0-1.9-0.2-2.5-0.7c-0.6-0.4-0.9-1.1-0.9-2c0-0.5,0.1-0.9,0.5-1.3c0.3-0.4,0.7-0.7,1.3-0.9
+				c0.5-0.3,1.1-0.5,1.8-0.7c0.7-0.2,1.4-0.4,2-0.7c0.7-0.3,1.4-0.6,2-0.9c0.7-0.4,1.3-0.8,1.8-1.3c0.5-0.5,0.9-1.1,1.3-1.8
+				c0.3-0.7,0.5-1.5,0.5-2.5c0-1-0.2-2-0.6-2.8c-0.4-0.8-0.9-1.4-1.6-2c-0.7-0.6-1.4-0.9-2.4-1.2c-0.9-0.3-1.9-0.4-2.9-0.4
+				c-0.9,0-1.9,0.1-2.8,0.4s-1.6,0.6-2.3,1c-0.7,0.4-1.2,1-1.7,1.7s-0.9,1.4-1.2,2.2l3,1.1c0.2-0.5,0.5-0.9,0.8-1.3
+				c0.4-0.4,0.7-0.7,1.2-1c0.4-0.3,0.9-0.5,1.4-0.7c0.5-0.1,1.1-0.2,1.7-0.2c0.6,0,1.1,0.1,1.6,0.2c0.5,0.1,0.9,0.4,1.2,0.7
+				c0.4,0.3,0.6,0.7,0.8,1c0.2,0.4,0.3,0.9,0.3,1.4c0,0.7-0.1,1.2-0.5,1.6c-0.3,0.4-0.7,0.8-1.3,1.2c-0.5,0.3-1.2,0.6-1.8,0.9
+				c-0.7,0.2-1.4,0.5-2,0.7c-0.7,0.2-1.4,0.5-2,0.9c-0.7,0.3-1.2,0.7-1.8,1.2c-0.5,0.4-0.9,1-1.3,1.7c-0.3,0.7-0.5,1.4-0.5,2.3
+				c0,0.8,0.1,1.5,0.4,2.2c0.3,0.7,0.8,1.3,1.4,1.8c0.6,0.5,1.3,0.9,2.2,1.2c0.9,0.3,1.8,0.4,3,0.4c0.9,0,1.7-0.1,2.5-0.4
+				c0.7-0.2,1.4-0.5,2-0.9c0.6-0.4,1-0.9,1.4-1.4s0.7-1.1,0.9-1.7L114.3-171.6"/>
+			<path id="path3350" class="st5" d="M137.1-188.4v9.7h-9.9v-9.7h-3.3v21.7h3.3v-9h9.9v9h3.3v-21.7H137.1"/>
+			<path id="path3352" class="st5" d="M146.9-188.4v21.7h3.3v-21.7H146.9"/>
+			<path id="path3354" class="st5" d="M156.6-188.4v21.7h13.5v-3h-10.3v-5.9h6.6v-3h-6.6v-9.7H156.6"/>
+			<path id="path3356" class="st5" d="M183-169.8v-18.6h-3.3v18.6h-6.2v3.1h15.5v-3.1L183-169.8"/>
+		</g>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/RH_atomic.svg b/themes/src/main/node_modules/rcue/dist/img/RH_atomic.svg
new file mode 100644
index 0000000..9cf7f3a
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/RH_atomic.svg
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="612px" height="792px" viewBox="0 0 612 792" enable-background="new 0 0 612 792" xml:space="preserve">
+<g>
+	<g>
+		<path fill="#00B9E4" d="M290.9,389.7c-0.7,0.5-1.3,1.2-1.8,1.6c-4.7,4.7-9.2,9-13.5,13c2.6,1.5,4.6,4,5.6,6.9
+			c5.1-4.6,10.4-9.5,15.8-14.9c1.2-1.1,2-4.1-0.2-6.2C295.2,388.7,292.6,388.4,290.9,389.7z"/>
+		<path fill="#00B9E4" d="M238.3,277.7c1.3,2,4.2,2.9,6.3,1.4c2.3-1.5,1.8-4.5,1.2-5.5c-18.4-31.3-26.7-55.2-19.4-60.9
+			c4.5-3.5,14.3,0.4,27.4,10c1.3-4.1,4.3-7.5,8.1-9.5c-21-15.7-37.6-22.3-45.4-16.2c-10.9,8.5-1.7,39.8,21,79.5
+			C237.8,276.9,238.1,277.3,238.3,277.7z"/>
+		<path fill="#00B9E4" d="M389.5,364.1c5.5-0.7,10.7-1.6,15.7-2.5c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c1.4-1.3,2.3-3.2,2.3-5.3
+			c0-3.4-2.4-6.2-5.5-6.9c0,0,0,0,0,0c-6.1,1-12.7,1.9-19.7,2.7l0,0l0,0c-10.8-17.6-24-36.6-39-55.7c-4.4-6-13.9-17.1-21.4-25.6
+			l0.1-0.1c36.6-40.7,68.9-65.5,78.2-58.2c7.2,5.6-1,29.5-19.4,60.9c-0.6,1-1.1,4,1.2,5.5c2.2,1.5,5.1,0.7,6.3-1.4
+			c0.2-0.3,0.5-0.8,0.7-1.1c22.7-39.7,31.9-71,21-79.5c-13.3-10.4-52.5,16.2-95,62.1c0,0-0.6,0.7-1.8,2c-1.1-1.2-1.8-2-1.8-2
+			c-9.2-9.9-18.3-19-26.9-26.9v0c-0.1-0.1-0.1-0.1-0.2-0.2c-0.4-0.1-0.8-0.1-1.2-0.1c-4,0-7.2,3.2-7.2,7.2c0,1,0.2,2,0.6,2.8l0,0
+			c8.8,8.3,18.2,18,28,28.8l0.1,0.1c-7.5,8.5-17,19.6-21.4,25.6c-15,19.1-28.2,38-39,55.7c-41.3-4.7-69.1-13.4-69-23.4
+			c0-10.2,29.4-19,72.5-23.5c0.5-0.1,0.8-0.2,1.3-0.2c2.3-0.4,3.5-2.6,3.4-4.4c0-2.3-1.7-4.6-4.9-4.5c-53.5,6-90.6,19.2-90.7,34.5
+			c-0.1,14.4,32.4,26.9,80.4,33.5c-22.5,39.4-31.5,70.4-20.6,78.9c7.9,6.2,25.1-0.7,46.6-17.1l0,0c0,0,0,0,0.1,0
+			c0.1-0.5,0.2-1,0.2-1.5c0-2.9-2.4-5.3-5.3-5.3c-0.3,0-0.5,0-0.7,0.1c0,0,0,0,0,0v0c-13.4,9.9-23.5,14.1-28,10.5
+			c-7.5-5.9,1.6-30.9,21.5-63.9c18.6,2,39.1,3.1,60.7,3.2v0c0.3,0,0.6,0,0.9,0c0,0,0,0,0,0l0,0c0.2,0,0.5,0,0.7,0h0h0.2c0,0,0,0,0,0
+			h0.2c0.2,0,0.5,0,0.7,0c0.3,0,0.6,0,0.9,0v0c21.5-0.1,42.1-1.2,60.7-3.2c19.9,33,29,58.1,21.5,63.9c-7.7,6-31.1-9.8-59.6-38.5
+			c-0.5-0.5-1.1-1.1-1.8-1.6c-1.8-1.3-4.3-1-5.7,0.4c-2.2,2.2-1.5,5.1-0.2,6.2c36.6,36.3,68.5,56,80.2,46.8
+			C421,434.6,412,403.6,389.5,364.1L389.5,364.1z M313.9,355.9c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0-0.5,0c-19.3,0-37.7-0.8-54.3-2.3
+			c9.9-15.4,21.8-32,35.1-49c6-7.6,12-14.9,17.9-21.8v0c0.6-0.7,1.2-1.4,1.7-2c0.6,0.7,1.2,1.4,1.7,2v0c5.9,6.9,11.9,14.2,17.9,21.8
+			c13.4,17,25.2,33.6,35.1,49l0,0C351.6,355,333.2,355.8,313.9,355.9z"/>
+		<path fill="#00B9E4" d="M379.3,296.2c-3.2-0.1-4.9,2.2-4.9,4.5c-0.1,1.8,1.2,4,3.4,4.4c0.4,0.1,0.8,0.2,1.3,0.2
+			c43.1,4.5,72.4,13.3,72.5,23.5c0,3.6-3.6,7-10.2,10.2c2.1,3.3,3.4,7.3,3.4,11.5c0,0.3,0,0.7-0.1,1c16-6,25.2-13.2,25.2-20.8
+			C469.9,315.3,432.7,302.2,379.3,296.2z"/>
+	</g>
+	<g>
+		<path fill="#0088CE" d="M269.2,211.5c-8.9,0-16.2,7.2-16.2,16.2c0,8.9,7.2,16.2,16.2,16.2c2.7,0,5.2-0.7,7.4-1.8
+			c-0.4-0.9-0.6-1.8-0.6-2.8c0-4,3.2-7.2,7.2-7.2c0.4,0,0.8,0,1.2,0.1c0.1,0.1,0.1,0.1,0.2,0.2c0.4-1.5,0.7-3,0.7-4.6
+			C285.4,218.7,278.2,211.5,269.2,211.5z"/>
+		<path fill="#0088CE" d="M311.6,259.2c-0.7-0.8-1.4-1.5-2.2-2.3l-8.4,10c1.2,1.3,2.4,2.6,3.6,3.9l0.1,0.1c3.6-4.2,6.8-7.7,8.7-9.8
+			C312.3,259.9,311.6,259.2,311.6,259.2z"/>
+		<path fill="#0088CE" d="M313.4,280.8C313.4,280.8,313.4,280.8,313.4,280.8c0.6,0.7,1.2,1.4,1.7,2.1v0c1.9,2.2,3.7,4.4,5.6,6.6
+			l8.6-10.2c-2.5-2.9-4.9-5.7-7.2-8.3L313.4,280.8z"/>
+		<path fill="#0088CE" d="M423.4,329.2c-11.4,0-20.8,9-21.3,20.3c3.2,0.7,5.5,3.5,5.5,6.9c0,2.1-0.9,4-2.3,5.3c0,0,0,0,0,0
+			c3.8,6.1,10.5,10.2,18.1,10.2c11.8,0,21.3-9.6,21.3-21.3C444.8,338.7,435.2,329.2,423.4,329.2z"/>
+		<path fill="#0088CE" d="M237.3,364.1c-2.3,4-4.3,7.8-6.3,11.6l13.3,1.7c2.1-3.7,4.3-7.6,6.7-11.6L237.3,364.1L237.3,364.1z"/>
+		<path fill="#0088CE" d="M258.6,353.6c0.8-1.3,1.7-2.6,2.6-3.9L247,348c-0.9,1.4-1.8,2.8-2.7,4.2v0L258.6,353.6L258.6,353.6z"/>
+		<path fill="#0088CE" d="M382.5,352.2c-0.9-1.5-1.9-3-2.8-4.4l-14.2,1.8c0.9,1.4,1.9,2.8,2.7,4.1l0,0c0,0,0,0,0,0L382.5,352.2
+			L382.5,352.2z"/>
+		<path fill="#0088CE" d="M375.8,365.8C375.8,365.8,375.8,365.8,375.8,365.8c2.3,3.9,4.5,7.7,6.6,11.3l13.3-1.7
+			c-1.9-3.7-4-7.5-6.2-11.4L375.8,365.8z"/>
+		<path fill="#0088CE" d="M269.2,402.6c-6.9,0-12.5,5.6-12.5,12.5c0,1.5,0.3,2.9,0.7,4.2c0,0,0,0,0,0c0.2,0,0.5-0.1,0.7-0.1
+			c2.9,0,5.3,2.4,5.3,5.3c0,0.5-0.1,1-0.2,1.5c0,0,0,0-0.1,0c1.8,1,3.8,1.5,6,1.5c6.9,0,12.5-5.6,12.5-12.5
+			C281.7,408.2,276.1,402.6,269.2,402.6z"/>
+	</g>
+</g>
+<g>
+	<path fill="#00B9E4" d="M189.1,535.6l-3.9-7.9h-4.4v7.9h-4.4v-22h10.2c1,0,2,0.1,2.9,0.4c0.9,0.3,1.7,0.7,2.4,1.3
+		c0.7,0.6,1.2,1.3,1.6,2.2c0.4,0.9,0.6,1.9,0.6,3.1c0,1.7-0.4,3-1.1,4.1c-0.7,1.1-1.8,1.9-3.2,2.4l4.2,8.5H189.1z M188.8,518.6
+		c-0.6-0.4-1.3-0.6-2.3-0.6h-5.8v5.6h5.8c2.1,0,3.2-0.9,3.2-2.8C189.7,519.8,189.4,519,188.8,518.6z"/>
+	<path fill="#00B9E4" d="M199.7,535.6v-22H215v4.3h-10.9v3.8h6.3v4.3h-6.3v5.3h11.3v4.3H199.7z"/>
+	<path fill="#00B9E4" d="M237.9,529.6c-0.6,1.4-1.5,2.5-2.5,3.4c-1.1,0.9-2.3,1.5-3.6,2c-1.3,0.4-2.7,0.6-4.1,0.6h-6.6v-22h6.9
+		c1.6,0,3,0.2,4.3,0.6c1.3,0.4,2.5,1,3.5,1.9c1,0.9,1.7,2,2.3,3.4c0.6,1.4,0.8,3.1,0.8,5.1C238.9,526.6,238.6,528.2,237.9,529.6z
+		 M232.8,519.6c-1-1.1-2.7-1.7-5-1.7h-2.3v13.4h2.2c1.2,0,2.2-0.2,3-0.5c0.9-0.3,1.5-0.8,2.1-1.4c0.5-0.6,1-1.3,1.2-2.1
+		c0.3-0.8,0.4-1.7,0.4-2.7C234.4,522.4,233.9,520.8,232.8,519.6z"/>
+	<path fill="#00B9E4" d="M267.7,535.6v-9.2h-9v9.2h-4.4v-22h4.4v8.4h9v-8.4h4.4v22H267.7z"/>
+	<path fill="#00B9E4" d="M293.3,535.6l-1.7-4.9h-8l-1.7,4.9h-4.7l8.4-22h4.3l8.4,22H293.3z M288.7,522.6c-0.2-0.6-0.4-1.3-0.6-1.9
+		c-0.2-0.6-0.4-1.1-0.5-1.5c-0.1,0.4-0.3,0.9-0.5,1.5c-0.2,0.6-0.4,1.2-0.6,1.9l-1.4,4h5L288.7,522.6z"/>
+	<path fill="#00B9E4" d="M309.4,518v17.7h-4.4V518h-6.3v-4.3h17v4.3H309.4z"/>
+	<path fill="#00B9E4" d="M345.6,535.6l-1.7-4.9h-8l-1.7,4.9h-4.7l8.4-22h4.3l8.4,22H345.6z M341,522.6c-0.2-0.6-0.4-1.3-0.6-1.9
+		c-0.2-0.6-0.4-1.1-0.5-1.5c-0.1,0.4-0.3,0.9-0.5,1.5c-0.2,0.6-0.4,1.2-0.6,1.9l-1.4,4h5L341,522.6z"/>
+	<path fill="#00B9E4" d="M361.8,518v17.7h-4.4V518h-6.3v-4.3h17v4.3H361.8z"/>
+	<path fill="#00B9E4" d="M389.7,529.4c-0.5,1.4-1.1,2.6-2,3.6c-0.9,1-1.9,1.7-3.1,2.2c-1.2,0.5-2.5,0.8-3.9,0.8
+		c-1.4,0-2.8-0.3-3.9-0.8c-1.2-0.5-2.2-1.3-3-2.2c-0.8-1-1.5-2.2-2-3.5c-0.5-1.4-0.7-3-0.7-4.8c0-1.8,0.2-3.4,0.7-4.8
+		c0.5-1.4,1.1-2.6,2-3.6c0.9-1,1.9-1.7,3.1-2.2c1.2-0.5,2.5-0.8,4-0.8c1.4,0,2.7,0.3,3.9,0.8c1.2,0.5,2.2,1.3,3,2.2
+		c0.8,1,1.5,2.2,2,3.5c0.5,1.4,0.7,3,0.7,4.8C390.4,526.4,390.1,528,389.7,529.4z M384.4,519.5c-1-1.2-2.2-1.8-3.8-1.8
+		c-1.5,0-2.8,0.6-3.7,1.8c-0.9,1.2-1.4,2.9-1.4,5.1c0,2.2,0.5,4,1.4,5.2c1,1.2,2.2,1.8,3.8,1.8c1.5,0,2.8-0.6,3.7-1.8
+		c0.9-1.2,1.4-2.9,1.4-5.1C385.9,522.5,385.4,520.7,384.4,519.5z"/>
+	<path fill="#00B9E4" d="M411.9,535.6v-8.1c0-0.3,0-0.7,0-1.1c0-0.5,0-0.9,0-1.4c0-0.5,0-0.9,0-1.4c0-0.4,0-0.7,0-0.9
+		c-0.2,0.4-0.4,1-0.7,1.7c-0.3,0.7-0.6,1.4-0.9,2l-4.5,9.8l-4.4-9.8c-0.3-0.6-0.6-1.3-0.9-2c-0.3-0.7-0.5-1.2-0.7-1.7
+		c0,0.2,0,0.5,0,0.9c0,0.4,0,0.9,0,1.4c0,0.5,0,1,0,1.4c0,0.5,0,0.8,0,1.1v8.1h-4.3v-22h4.2l4.6,10c0.1,0.3,0.3,0.6,0.4,1
+		s0.3,0.7,0.4,1c0.1,0.3,0.3,0.6,0.4,0.9c0.1,0.3,0.2,0.5,0.3,0.7c0.1-0.4,0.4-1,0.6-1.7c0.3-0.7,0.6-1.4,0.9-2l4.4-10h4.3v22H411.9
+		z"/>
+	<path fill="#00B9E4" d="M423.2,535.6v-22h4.4v22H423.2z"/>
+	<path fill="#00B9E4" d="M447.1,520.1c-0.4-0.8-0.9-1.3-1.6-1.8c-0.6-0.4-1.5-0.6-2.5-0.6c-0.8,0-1.5,0.2-2.2,0.5s-1.2,0.8-1.6,1.4
+		c-0.4,0.6-0.8,1.3-1,2.2c-0.2,0.9-0.3,1.8-0.3,2.8c0,1,0.1,1.9,0.3,2.7c0.2,0.8,0.6,1.6,1,2.2c0.4,0.6,1,1.1,1.6,1.5
+		c0.6,0.4,1.4,0.5,2.2,0.5c1,0,1.8-0.2,2.5-0.7c0.6-0.4,1.3-1.2,1.8-2.1l3.7,2.2c-0.8,1.6-1.8,2.8-3.1,3.7c-1.3,0.9-3,1.3-5,1.3
+		c-1.4,0-2.8-0.3-3.9-0.8c-1.2-0.5-2.2-1.3-3-2.3c-0.9-1-1.5-2.2-2-3.6c-0.5-1.4-0.7-3-0.7-4.7c0-1.7,0.2-3.2,0.7-4.6
+		c0.5-1.4,1.2-2.6,2-3.6c0.9-1,1.9-1.8,3.1-2.3c1.2-0.6,2.5-0.8,4-0.8c1,0,2,0.1,2.8,0.4c0.8,0.2,1.6,0.6,2.2,1s1.2,0.9,1.7,1.5
+		c0.5,0.6,0.9,1.3,1.3,2L447.1,520.1z"/>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/RH_Atomic-Logo-NoText.svg b/themes/src/main/node_modules/rcue/dist/img/RH_Atomic-Logo-NoText.svg
new file mode 100644
index 0000000..00ca589
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/RH_Atomic-Logo-NoText.svg
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1"
+	 id="svg4242" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+	 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 200 199.7"
+	 style="enable-background:new 0 0 200 199.7;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#00B9E4;}
+	.st1{fill:#0088CE;}
+</style>
+<g>
+	<g>
+		<path class="st0" d="M88.1,136.7c-0.4,0.3-0.7,0.6-1,0.8c-2.5,2.5-4.9,4.8-7.1,6.9c1.4,0.8,2.4,2.1,3,3.7c2.7-2.4,5.5-5,8.4-7.9
+			c0.6-0.6,1.1-2.2-0.1-3.3C90.4,136.2,89,136,88.1,136.7z"/>
+		<path class="st0" d="M60.3,77.4c0.7,1.1,2.2,1.5,3.3,0.7c1.2-0.8,1-2.4,0.6-2.9C54.5,58.7,50.1,46,54,43c2.4-1.9,7.6,0.2,14.5,5.3
+			c0.7-2.2,2.3-4,4.3-5c-11.1-8.3-19.9-11.8-24-8.6c-5.8,4.5-1,21.1,11.1,42.1C60,77,60.2,77.2,60.3,77.4z"/>
+		<path class="st0" d="M140.3,123.2c2.9-0.4,5.7-0.8,8.3-1.3l0,0l0,0l0,0c0.7-0.7,1.2-1.7,1.2-2.8c0-1.8-1.3-3.3-2.9-3.7l0,0
+			c-3.2,0.5-6.7,1-10.4,1.4l0,0l0,0c-5.7-9.3-12.7-19.4-20.6-29.5c-2.3-3.2-7.4-9.1-11.3-13.6l0.1-0.1C124,52.2,141,39.1,146,42.9
+			c3.8,3-0.5,15.6-10.3,32.2c-0.3,0.5-0.6,2.1,0.6,2.9c1.2,0.8,2.7,0.4,3.3-0.7c0.1-0.2,0.3-0.4,0.4-0.6c12-21,16.9-37.6,11.1-42.1
+			c-7-5.5-27.8,8.6-50.3,32.9c0,0-0.3,0.4-1,1.1c-0.6-0.6-1-1.1-1-1.1c-4.9-5.2-9.7-10.1-14.2-14.2l0,0c-0.1-0.1-0.1-0.1-0.1-0.1
+			c-0.2-0.1-0.4-0.1-0.6-0.1c-2.1,0-3.8,1.7-3.8,3.8c0,0.5,0.1,1.1,0.3,1.5l0,0c4.7,4.4,9.6,9.5,14.8,15.2l0.1,0.1
+			c-4,4.5-9,10.4-11.3,13.6c-7.9,10.1-14.9,20.1-20.6,29.5c-21.9-2.5-36.6-7.1-36.5-12.4c0-5.4,15.6-10.1,38.4-12.4
+			c0.3-0.1,0.4-0.1,0.7-0.1c1.2-0.2,1.9-1.4,1.8-2.3c0-1.2-0.9-2.4-2.6-2.4c-28.3,3.2-48,10.2-48,18.3c-0.1,7.6,17.2,14.2,42.6,17.7
+			c-11.9,20.9-16.7,37.3-10.9,41.8c4.2,3.3,13.3-0.4,24.7-9.1l0,0c0,0,0,0,0.1,0c0.1-0.3,0.1-0.5,0.1-0.8c0-1.5-1.3-2.8-2.8-2.8
+			c-0.2,0-0.3,0-0.4,0.1l0,0l0,0c-7.1,5.2-12.4,7.5-14.8,5.6c-4-3.1,0.8-16.4,11.4-33.8c9.8,1.1,20.7,1.6,32.1,1.7l0,0
+			c0.2,0,0.3,0,0.5,0l0,0l0,0c0.1,0,0.3,0,0.4,0l0,0h0.1l0,0h0.1c0.1,0,0.3,0,0.4,0c0.2,0,0.3,0,0.5,0l0,0
+			c11.4-0.1,22.3-0.6,32.1-1.7c10.5,17.5,15.4,30.8,11.4,33.8c-4.1,3.2-16.5-5.2-31.5-20.4c-0.3-0.3-0.6-0.6-1-0.8
+			c-1-0.7-2.3-0.5-3,0.2c-1.2,1.2-0.8,2.7-0.1,3.3c19.4,19.2,36.3,29.6,42.5,24.8C157,160.5,152.2,144.1,140.3,123.2L140.3,123.2z
+			 M100.3,118.8c-0.1,0-0.2,0-0.3,0s-0.2,0-0.3,0c-10.2,0-20-0.4-28.7-1.2c5.2-8.2,11.5-16.9,18.6-25.9c3.2-4,6.4-7.9,9.5-11.5l0,0
+			c0.3-0.4,0.6-0.7,0.9-1.1c0.3,0.4,0.6,0.7,0.9,1.1l0,0c3.1,3.7,6.3,7.5,9.5,11.5c7.1,9,13.3,17.8,18.6,25.9l0,0
+			C120.2,118.4,110.5,118.8,100.3,118.8z"/>
+		<path class="st0" d="M134.9,87.2c-1.7-0.1-2.6,1.2-2.6,2.4c-0.1,1,0.6,2.1,1.8,2.3c0.2,0.1,0.4,0.1,0.7,0.1
+			c22.8,2.4,38.3,7,38.4,12.4c0,1.9-1.9,3.7-5.4,5.4c1.1,1.7,1.8,3.9,1.8,6.1c0,0.2,0,0.4-0.1,0.5c8.5-3.2,13.3-7,13.3-11
+			C182.9,97.3,163.2,90.4,134.9,87.2z"/>
+	</g>
+	<g>
+		<path class="st1" d="M76.6,42.4c-4.7,0-8.6,3.8-8.6,8.6c0,4.7,3.8,8.6,8.6,8.6c1.4,0,2.8-0.4,3.9-1c-0.2-0.5-0.3-1-0.3-1.5
+			c0-2.1,1.7-3.8,3.8-3.8c0.2,0,0.4,0,0.6,0.1c0.1,0.1,0.1,0.1,0.1,0.1c0.2-0.8,0.4-1.6,0.4-2.4C85.2,46.2,81.4,42.4,76.6,42.4z"/>
+		<path class="st1" d="M99.1,67.6c-0.4-0.4-0.7-0.8-1.2-1.2l-4.4,5.3c0.6,0.7,1.3,1.4,1.9,2.1l0.1,0.1c1.9-2.2,3.6-4.1,4.6-5.2
+			C99.4,68,99.1,67.6,99.1,67.6z"/>
+		<path class="st1" d="M100,79.1L100,79.1c0.3,0.4,0.6,0.7,0.9,1.1l0,0c1,1.2,2,2.3,3,3.5l4.6-5.4c-1.3-1.5-2.6-3-3.8-4.4L100,79.1z
+			"/>
+		<path class="st1" d="M158.3,104.7c-6,0-11,4.8-11.3,10.7c1.7,0.4,2.9,1.9,2.9,3.7c0,1.1-0.5,2.1-1.2,2.8l0,0
+			c2,3.2,5.6,5.4,9.6,5.4c6.2,0,11.3-5.1,11.3-11.3C169.6,109.7,164.5,104.7,158.3,104.7z"/>
+		<path class="st1" d="M59.7,123.2c-1.2,2.1-2.3,4.1-3.3,6.1l7,0.9c1.1-2,2.3-4,3.5-6.1L59.7,123.2L59.7,123.2z"/>
+		<path class="st1" d="M71,117.6c0.4-0.7,0.9-1.4,1.4-2.1l-7.5-0.9c-0.5,0.7-1,1.5-1.4,2.2l0,0L71,117.6L71,117.6z"/>
+		<path class="st1" d="M136.6,116.9c-0.5-0.8-1-1.6-1.5-2.3l-7.5,1c0.5,0.7,1,1.5,1.4,2.2l0,0l0,0L136.6,116.9L136.6,116.9z"/>
+		<path class="st1" d="M133.1,124.1L133.1,124.1c1.2,2.1,2.4,4.1,3.5,6l7-0.9c-1-2-2.1-4-3.3-6L133.1,124.1z"/>
+		<path class="st1" d="M76.6,143.5c-3.7,0-6.6,3-6.6,6.6c0,0.8,0.2,1.5,0.4,2.2l0,0c0.1,0,0.3-0.1,0.4-0.1c1.5,0,2.8,1.3,2.8,2.8
+			c0,0.3-0.1,0.5-0.1,0.8c0,0,0,0-0.1,0c1,0.5,2,0.8,3.2,0.8c3.7,0,6.6-3,6.6-6.6C83.2,146.5,80.3,143.5,76.6,143.5z"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/RH_Atomic-Logo-Text.svg b/themes/src/main/node_modules/rcue/dist/img/RH_Atomic-Logo-Text.svg
new file mode 100644
index 0000000..79a0cf7
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/RH_Atomic-Logo-Text.svg
@@ -0,0 +1,91 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1"
+	 id="svg4242" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+	 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 200 199.7"
+	 style="enable-background:new 0 0 200 199.7;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#00B9E4;}
+	.st1{fill:#0088CE;}
+</style>
+<g>
+	<g>
+		<g>
+			<path class="st0" d="M88.1,117.9c-0.4,0.3-0.7,0.6-1,0.8c-2.5,2.5-4.9,4.8-7.1,6.9c1.4,0.8,2.4,2.1,3,3.7c2.7-2.4,5.5-5,8.4-7.9
+				c0.6-0.6,1.1-2.2-0.1-3.3C90.4,117.4,89,117.2,88.1,117.9z"/>
+			<path class="st0" d="M60.3,58.6c0.7,1.1,2.2,1.5,3.3,0.7c1.2-0.8,1-2.4,0.6-2.9C54.5,39.9,50.1,27.2,54,24.2
+				c2.4-1.9,7.6,0.2,14.5,5.3c0.7-2.2,2.3-4,4.3-5c-11.1-8.3-19.9-11.8-24-8.6C43,20.4,47.8,37,59.9,58C60,58.2,60.2,58.4,60.3,58.6
+				z"/>
+			<path class="st0" d="M140.3,104.4c2.9-0.4,5.7-0.8,8.3-1.3l0,0l0,0l0,0c0.7-0.7,1.2-1.7,1.2-2.8c0-1.8-1.3-3.3-2.9-3.7l0,0
+				c-3.2,0.5-6.7,1-10.4,1.4l0,0l0,0c-5.7-9.3-12.7-19.4-20.6-29.5c-2.3-3.2-7.4-9.1-11.3-13.6l0.1-0.1C124,33.4,141,20.3,146,24.1
+				c3.8,3-0.5,15.6-10.3,32.2c-0.3,0.5-0.6,2.1,0.6,2.9c1.2,0.8,2.7,0.4,3.3-0.7c0.1-0.2,0.3-0.4,0.4-0.6c12-21,16.9-37.6,11.1-42.1
+				c-7-5.5-27.8,8.6-50.3,32.9c0,0-0.3,0.4-1,1.1c-0.6-0.6-1-1.1-1-1.1c-4.9-5.2-9.7-10.1-14.2-14.2l0,0c-0.1-0.1-0.1-0.1-0.1-0.1
+				c-0.2-0.1-0.4-0.1-0.6-0.1c-2.1,0-3.8,1.7-3.8,3.8c0,0.5,0.1,1.1,0.3,1.5l0,0c4.7,4.4,9.6,9.5,14.8,15.2l0.1,0.1
+				c-4,4.5-9,10.4-11.3,13.6C76.1,78.6,69.1,88.6,63.4,98c-21.9-2.5-36.6-7.1-36.5-12.4c0-5.4,15.6-10.1,38.4-12.4
+				c0.3-0.1,0.4-0.1,0.7-0.1c1.2-0.2,1.9-1.4,1.8-2.3c0-1.2-0.9-2.4-2.6-2.4c-28.3,3.2-48,10.2-48,18.3
+				c-0.1,7.6,17.2,14.2,42.6,17.7c-11.9,20.9-16.7,37.3-10.9,41.8c4.2,3.3,13.3-0.4,24.7-9.1l0,0c0,0,0,0,0.1,0
+				c0.1-0.3,0.1-0.5,0.1-0.8c0-1.5-1.3-2.8-2.8-2.8c-0.2,0-0.3,0-0.4,0.1l0,0l0,0c-7.1,5.2-12.4,7.5-14.8,5.6
+				c-4-3.1,0.8-16.4,11.4-33.8c9.8,1.1,20.7,1.6,32.1,1.7l0,0c0.2,0,0.3,0,0.5,0l0,0l0,0c0.1,0,0.3,0,0.4,0l0,0h0.1l0,0h0.1
+				c0.1,0,0.3,0,0.4,0c0.2,0,0.3,0,0.5,0l0,0c11.4-0.1,22.3-0.6,32.1-1.7c10.5,17.5,15.4,30.8,11.4,33.8
+				c-4.1,3.2-16.5-5.2-31.5-20.4c-0.3-0.3-0.6-0.6-1-0.8c-1-0.7-2.3-0.5-3,0.2c-1.2,1.2-0.8,2.7-0.1,3.3
+				c19.4,19.2,36.3,29.6,42.5,24.8C157,141.7,152.2,125.3,140.3,104.4L140.3,104.4z M100.3,100c-0.1,0-0.2,0-0.3,0s-0.2,0-0.3,0
+				c-10.2,0-20-0.4-28.7-1.2c5.2-8.2,11.5-16.9,18.6-25.9c3.2-4,6.4-7.9,9.5-11.5l0,0c0.3-0.4,0.6-0.7,0.9-1.1
+				c0.3,0.4,0.6,0.7,0.9,1.1l0,0c3.1,3.7,6.3,7.5,9.5,11.5c7.1,9,13.3,17.8,18.6,25.9l0,0C120.2,99.6,110.5,100,100.3,100z"/>
+			<path class="st0" d="M134.9,68.4c-1.7-0.1-2.6,1.2-2.6,2.4c-0.1,1,0.6,2.1,1.8,2.3c0.2,0.1,0.4,0.1,0.7,0.1
+				c22.8,2.4,38.3,7,38.4,12.4c0,1.9-1.9,3.7-5.4,5.4c1.1,1.7,1.8,3.9,1.8,6.1c0,0.2,0,0.4-0.1,0.5c8.5-3.2,13.3-7,13.3-11
+				C182.9,78.5,163.2,71.6,134.9,68.4z"/>
+		</g>
+		<g>
+			<path class="st1" d="M76.6,23.6c-4.7,0-8.6,3.8-8.6,8.6c0,4.7,3.8,8.6,8.6,8.6c1.4,0,2.8-0.4,3.9-1c-0.2-0.5-0.3-1-0.3-1.5
+				c0-2.1,1.7-3.8,3.8-3.8c0.2,0,0.4,0,0.6,0.1c0.1,0.1,0.1,0.1,0.1,0.1c0.2-0.8,0.4-1.6,0.4-2.4C85.2,27.4,81.4,23.6,76.6,23.6z"/>
+			<path class="st1" d="M99.1,48.8c-0.4-0.4-0.7-0.8-1.2-1.2l-4.4,5.3c0.6,0.7,1.3,1.4,1.9,2.1l0.1,0.1c1.9-2.2,3.6-4.1,4.6-5.2
+				C99.4,49.2,99.1,48.8,99.1,48.8z"/>
+			<path class="st1" d="M100,60.3L100,60.3c0.3,0.4,0.6,0.7,0.9,1.1l0,0c1,1.2,2,2.3,3,3.5l4.6-5.4c-1.3-1.5-2.6-3-3.8-4.4L100,60.3
+				z"/>
+			<path class="st1" d="M158.3,85.9c-6,0-11,4.8-11.3,10.7c1.7,0.4,2.9,1.9,2.9,3.7c0,1.1-0.5,2.1-1.2,2.8l0,0
+				c2,3.2,5.6,5.4,9.6,5.4c6.2,0,11.3-5.1,11.3-11.3C169.6,90.9,164.5,85.9,158.3,85.9z"/>
+			<path class="st1" d="M59.7,104.4c-1.2,2.1-2.3,4.1-3.3,6.1l7,0.9c1.1-2,2.3-4,3.5-6.1L59.7,104.4L59.7,104.4z"/>
+			<path class="st1" d="M71,98.8c0.4-0.7,0.9-1.4,1.4-2.1l-7.5-0.9c-0.5,0.7-1,1.5-1.4,2.2l0,0L71,98.8L71,98.8z"/>
+			<path class="st1" d="M136.6,98.1c-0.5-0.8-1-1.6-1.5-2.3l-7.5,1c0.5,0.7,1,1.5,1.4,2.2l0,0l0,0L136.6,98.1L136.6,98.1z"/>
+			<path class="st1" d="M133.1,105.3L133.1,105.3c1.2,2.1,2.4,4.1,3.5,6l7-0.9c-1-2-2.1-4-3.3-6L133.1,105.3z"/>
+			<path class="st1" d="M76.6,124.7c-3.7,0-6.6,3-6.6,6.6c0,0.8,0.2,1.5,0.4,2.2l0,0c0.1,0,0.3-0.1,0.4-0.1c1.5,0,2.8,1.3,2.8,2.8
+				c0,0.3-0.1,0.5-0.1,0.8c0,0,0,0-0.1,0c1,0.5,2,0.8,3.2,0.8c3.7,0,6.6-3,6.6-6.6C83.2,127.7,80.3,124.7,76.6,124.7z"/>
+		</g>
+	</g>
+	<g>
+		<path class="st0" d="M34.2,184.7l-2.1-4.2h-2.3v4.2h-2.3v-11.6h5.4c0.5,0,1.1,0.1,1.5,0.2c0.5,0.2,0.9,0.4,1.3,0.7
+			c0.4,0.3,0.6,0.7,0.8,1.2c0.2,0.5,0.3,1,0.3,1.6c0,0.9-0.2,1.6-0.6,2.2c-0.4,0.6-1,1-1.7,1.3l2.2,4.5H34.2z M34.1,175.7
+			c-0.3-0.2-0.7-0.3-1.2-0.3h-3.1v3h3.1c1.1,0,1.7-0.5,1.7-1.5C34.5,176.3,34.4,175.9,34.1,175.7z"/>
+		<path class="st0" d="M39.8,184.7v-11.6h8.1v2.3h-5.8v2h3.3v2.3h-3.3v2.8h6v2.3L39.8,184.7L39.8,184.7z"/>
+		<path class="st0" d="M60.1,181.5c-0.3,0.7-0.8,1.3-1.3,1.8c-0.6,0.5-1.2,0.8-1.9,1.1c-0.7,0.2-1.4,0.3-2.2,0.3h-3.5v-11.6h3.7
+			c0.8,0,1.6,0.1,2.3,0.3c0.7,0.2,1.3,0.5,1.9,1c0.5,0.5,0.9,1.1,1.2,1.8s0.4,1.6,0.4,2.7C60.6,179.9,60.4,180.8,60.1,181.5z
+			 M57.4,176.2c-0.5-0.6-1.4-0.9-2.6-0.9h-1.2v7.1h1.2c0.6,0,1.2-0.1,1.6-0.3c0.5-0.2,0.8-0.4,1.1-0.7c0.3-0.3,0.5-0.7,0.6-1.1
+			c0.2-0.4,0.2-0.9,0.2-1.4C58.2,177.7,57.9,176.9,57.4,176.2z"/>
+		<path class="st0" d="M75.8,184.7v-4.9h-4.8v4.9h-2.3v-11.6h2.3v4.4h4.8v-4.4h2.3v11.6H75.8z"/>
+		<path class="st0" d="M89.4,184.7l-0.9-2.6h-4.2l-0.9,2.6h-2.5l4.4-11.6h2.3l4.4,11.6H89.4z M87,177.8c-0.1-0.3-0.2-0.7-0.3-1
+			c-0.1-0.3-0.2-0.6-0.3-0.8c-0.1,0.2-0.2,0.5-0.3,0.8s-0.2,0.6-0.3,1l-0.7,2.1h2.6L87,177.8z"/>
+		<path class="st0" d="M97.9,175.4v9.4h-2.3v-9.4h-3.3v-2.3h9v2.3H97.9z"/>
+		<path class="st0" d="M117.1,184.7l-0.9-2.6h-4.2l-0.9,2.6h-2.5l4.4-11.6h2.3l4.4,11.6H117.1z M114.6,177.8c-0.1-0.3-0.2-0.7-0.3-1
+			c-0.1-0.3-0.2-0.6-0.3-0.8c-0.1,0.2-0.2,0.5-0.3,0.8s-0.2,0.6-0.3,1l-0.7,2.1h2.6L114.6,177.8z"/>
+		<path class="st0" d="M125.6,175.4v9.4h-2.3v-9.4H120v-2.3h9v2.3H125.6z"/>
+		<path class="st0" d="M140.4,181.4c-0.3,0.7-0.6,1.4-1.1,1.9s-1,0.9-1.6,1.2c-0.6,0.3-1.3,0.4-2.1,0.4s-1.5-0.2-2.1-0.4
+			c-0.6-0.3-1.2-0.7-1.6-1.2c-0.4-0.5-0.8-1.2-1.1-1.9c-0.3-0.7-0.4-1.6-0.4-2.5c0-1,0.1-1.8,0.4-2.5c0.3-0.7,0.6-1.4,1.1-1.9
+			c0.5-0.5,1-0.9,1.6-1.2c0.6-0.3,1.3-0.4,2.1-0.4c0.7,0,1.4,0.2,2.1,0.4s1.2,0.7,1.6,1.2c0.4,0.5,0.8,1.2,1.1,1.9
+			c0.3,0.7,0.4,1.6,0.4,2.5C140.8,179.8,140.6,180.7,140.4,181.4z M137.6,176.2c-0.5-0.6-1.2-1-2-1c-0.8,0-1.5,0.3-2,1
+			c-0.5,0.6-0.7,1.5-0.7,2.7c0,1.2,0.3,2.1,0.7,2.8c0.5,0.6,1.2,1,2,1c0.8,0,1.5-0.3,2-1c0.5-0.6,0.7-1.5,0.7-2.7
+			C138.4,177.8,138.1,176.8,137.6,176.2z"/>
+		<path class="st0" d="M152.2,184.7v-4.3c0-0.2,0-0.4,0-0.6c0-0.3,0-0.5,0-0.7s0-0.5,0-0.7c0-0.2,0-0.4,0-0.5
+			c-0.1,0.2-0.2,0.5-0.4,0.9c-0.2,0.4-0.3,0.7-0.5,1.1l-2.4,5.2l-2.3-5.2c-0.2-0.3-0.3-0.7-0.5-1.1c-0.2-0.4-0.3-0.6-0.4-0.9
+			c0,0.1,0,0.3,0,0.5s0,0.5,0,0.7s0,0.5,0,0.7c0,0.3,0,0.4,0,0.6v4.3h-2.3v-11.6h2.2l2.4,5.3c0.1,0.2,0.2,0.3,0.2,0.5
+			s0.2,0.4,0.2,0.5c0.1,0.2,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.3,0.2,0.4c0.1-0.2,0.2-0.5,0.3-0.9c0.2-0.4,0.3-0.7,0.5-1.1l2.3-5.3h2.3
+			v11.6L152.2,184.7L152.2,184.7z"/>
+		<path class="st0" d="M158.1,184.7v-11.6h2.3v11.6H158.1z"/>
+		<path class="st0" d="M170.8,176.5c-0.2-0.4-0.5-0.7-0.8-1c-0.3-0.2-0.8-0.3-1.3-0.3c-0.4,0-0.8,0.1-1.2,0.3
+			c-0.4,0.2-0.6,0.4-0.8,0.7c-0.2,0.3-0.4,0.7-0.5,1.2c-0.1,0.5-0.2,1-0.2,1.5s0.1,1,0.2,1.4s0.3,0.8,0.5,1.2
+			c0.2,0.3,0.5,0.6,0.8,0.8s0.7,0.3,1.2,0.3c0.5,0,1-0.1,1.3-0.4c0.3-0.2,0.7-0.6,1-1.1l2,1.2c-0.4,0.8-1,1.5-1.6,2
+			c-0.7,0.5-1.6,0.7-2.6,0.7c-0.7,0-1.5-0.2-2.1-0.4c-0.6-0.3-1.2-0.7-1.6-1.2c-0.5-0.5-0.8-1.2-1.1-1.9c-0.3-0.7-0.4-1.6-0.4-2.5
+			c0-0.9,0.1-1.7,0.4-2.4c0.3-0.7,0.6-1.4,1.1-1.9c0.5-0.5,1-1,1.6-1.2c0.6-0.3,1.3-0.4,2.1-0.4c0.5,0,1.1,0.1,1.5,0.2
+			c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.9,0.8c0.3,0.3,0.5,0.7,0.7,1.1L170.8,176.5z"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/skype-logo.svg b/themes/src/main/node_modules/rcue/dist/img/skype-logo.svg
new file mode 100644
index 0000000..84f9190
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/skype-logo.svg
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="20px" viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#00AFF0;}
+	.st1{fill:#FFFFFF;}
+</style>
+<g>
+	<path class="st0" d="M19.4,12.1c0.1-0.7,0.2-1.3,0.2-2c0-5.2-4.3-9.4-9.5-9.4c-0.6,0-1.1,0-1.6,0.1C7.6,0.3,6.6,0,5.5,0
+		C2.5,0,0,2.4,0,5.5c0,1,0.3,1.9,0.8,2.8c-0.1,0.6-0.2,1.2-0.2,1.9c0,5.2,4.3,9.3,9.5,9.3c0.6,0,1.2-0.1,1.7-0.2
+		c0.8,0.4,1.7,0.8,2.6,0.8c3.1,0,5.5-2.4,5.5-5.5C20,13.7,19.8,12.9,19.4,12.1z"/>
+	<path class="st1" d="M14.5,13.9c-0.4,0.5-0.9,0.9-1.6,1.2c-0.7,0.3-1.5,0.4-2.5,0.4c-1.2,0-2.1-0.2-2.9-0.6c-0.5-0.3-1-0.7-1.3-1.2
+		c-0.3-0.5-0.5-1-0.5-1.4c0-0.3,0.1-0.5,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3c0.3,0,0.5,0.1,0.6,0.2c0.2,0.1,0.3,0.4,0.4,0.7
+		c0.2,0.3,0.3,0.6,0.5,0.9c0.2,0.2,0.4,0.4,0.7,0.6c0.3,0.1,0.7,0.2,1.2,0.2c0.7,0,1.3-0.2,1.7-0.5c0.4-0.3,0.7-0.7,0.7-1.1
+		c0-0.4-0.1-0.7-0.4-0.9c-0.2-0.2-0.5-0.4-0.9-0.5c-0.4-0.1-0.9-0.2-1.5-0.4C9,10.5,8.3,10.2,7.7,10c-0.6-0.2-1-0.6-1.4-1
+		C6,8.6,5.8,8.1,5.8,7.4c0-0.6,0.2-1.1,0.5-1.6C6.7,5.4,7.2,5,7.9,4.8c0.7-0.3,1.5-0.4,2.4-0.4c0.7,0,1.4,0.1,1.9,0.2
+		c0.5,0.2,1,0.4,1.3,0.7c0.3,0.3,0.6,0.6,0.8,0.9c0.2,0.3,0.2,0.6,0.2,0.9c0,0.3-0.1,0.5-0.3,0.7C14,8,13.7,8.1,13.4,8.1
+		c-0.3,0-0.5-0.1-0.6-0.2c-0.1-0.1-0.3-0.3-0.5-0.6c-0.2-0.4-0.5-0.7-0.8-1c-0.3-0.2-0.8-0.3-1.4-0.3C9.5,5.9,9,6.1,8.6,6.3
+		C8.3,6.6,8.1,6.9,8.1,7.2c0,0.2,0.1,0.4,0.2,0.6c0.1,0.2,0.3,0.3,0.5,0.4C9,8.3,9.2,8.4,9.5,8.5c0.2,0.1,0.6,0.2,1.1,0.3
+		c0.7,0.1,1.3,0.3,1.8,0.5c0.5,0.2,1,0.4,1.4,0.6c0.4,0.2,0.7,0.6,0.9,0.9c0.2,0.4,0.3,0.8,0.3,1.4C15,12.8,14.8,13.4,14.5,13.9z"/>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/spinner.gif b/themes/src/main/node_modules/rcue/dist/img/spinner.gif
new file mode 100644
index 0000000..4c9ea91
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/spinner.gif differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/spinner-inverse.gif b/themes/src/main/node_modules/rcue/dist/img/spinner-inverse.gif
new file mode 100644
index 0000000..92380fe
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/spinner-inverse.gif differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/spinner-inverse-lg.gif b/themes/src/main/node_modules/rcue/dist/img/spinner-inverse-lg.gif
new file mode 100644
index 0000000..8327512
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/spinner-inverse-lg.gif differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/spinner-inverse-sm.gif b/themes/src/main/node_modules/rcue/dist/img/spinner-inverse-sm.gif
new file mode 100644
index 0000000..8cb064e
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/spinner-inverse-sm.gif differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/spinner-inverse-xs.gif b/themes/src/main/node_modules/rcue/dist/img/spinner-inverse-xs.gif
new file mode 100644
index 0000000..7cf4d6f
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/spinner-inverse-xs.gif differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/spinner-lg.gif b/themes/src/main/node_modules/rcue/dist/img/spinner-lg.gif
new file mode 100644
index 0000000..0effa66
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/spinner-lg.gif differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/spinner-sm.gif b/themes/src/main/node_modules/rcue/dist/img/spinner-sm.gif
new file mode 100644
index 0000000..eeaddc2
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/spinner-sm.gif differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/spinner-xs.gif b/themes/src/main/node_modules/rcue/dist/img/spinner-xs.gif
new file mode 100644
index 0000000..8bfd1bc
Binary files /dev/null and b/themes/src/main/node_modules/rcue/dist/img/spinner-xs.gif differ
diff --git a/themes/src/main/node_modules/rcue/dist/img/stack-exchange-logo.svg b/themes/src/main/node_modules/rcue/dist/img/stack-exchange-logo.svg
new file mode 100644
index 0000000..3bf0e11
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/stack-exchange-logo.svg
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="25.5px" viewBox="0 0 20 25.5" style="enable-background:new 0 0 20 25.5;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#CE6200;}
+	.st1{fill:#969696;}
+</style>
+<g>
+	<g>
+		<polygon class="st0" points="13.4,17.2 3.4,16.3 3.2,18.4 13.3,19.3 		"/>
+		<polygon class="st0" points="13.2,19.9 3.1,19.9 3.1,22.1 13.2,22.1 		"/>
+		<polygon class="st0" points="15.4,11.9 6.7,6.8 5.6,8.6 14.3,13.8 		"/>
+		<polygon class="st0" points="14.1,14.4 4.4,11.8 3.8,13.8 13.6,16.4 		"/>
+		<polygon class="st1" points="14.9,23.8 1.7,23.8 1.7,15 0,15 0,25.5 0,25.5 0.5,25.5 16.6,25.5 16.6,25.5 16.6,25 16.6,15 
+			14.9,15 		"/>
+		<polygon class="st0" points="18.3,0 16.2,0.4 17.9,10.3 20,9.9 		"/>
+		<polygon class="st0" points="10.1,3.3 15.7,11.6 17.5,10.4 11.8,2.1 		"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/dist/img/twitter-logo.svg b/themes/src/main/node_modules/rcue/dist/img/twitter-logo.svg
new file mode 100644
index 0000000..fe38b13
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/dist/img/twitter-logo.svg
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="20px" viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#55ACEE;}
+	.st1{fill:#F1F2F2;}
+</style>
+<g>
+	<circle class="st0" cx="10" cy="10" r="10"/>
+	<g>
+		<path class="st1" d="M16.1,7.2c-0.4,0.2-0.9,0.3-1.4,0.4c0.5-0.3,0.9-0.8,1.1-1.3c-0.5,0.3-1,0.5-1.5,0.6
+			c-0.4-0.5-1.1-0.8-1.7-0.8c-1.3,0-2.4,1.1-2.4,2.4c0,0.2,0,0.4,0.1,0.5c-2-0.1-3.7-1.1-4.9-2.5C5.1,6.9,5,7.3,5,7.7
+			c0,0.8,0.4,1.6,1.1,2c-0.4,0-0.8-0.1-1.1-0.3c0,0,0,0,0,0c0,1.2,0.8,2.1,1.9,2.3c-0.2,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.3,0-0.4,0
+			C6.1,12.8,7,13.5,8,13.5c-0.8,0.6-1.8,1-3,1c-0.2,0-0.4,0-0.6,0c1.1,0.7,2.3,1.1,3.7,1.1c4.4,0,6.8-3.6,6.8-6.8c0-0.1,0-0.2,0-0.3
+			C15.4,8.1,15.8,7.7,16.1,7.2L16.1,7.2z"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/node_modules/rcue/Gemfile b/themes/src/main/node_modules/rcue/Gemfile
new file mode 100644
index 0000000..7896dde
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/Gemfile
@@ -0,0 +1,5 @@
+# If you do not have OpenSSL installed, update
+# the following line to use "http://" instead
+source 'https://rubygems.org'
+
+gem 'jekyll'
diff --git a/themes/src/main/node_modules/rcue/Gemfile.lock b/themes/src/main/node_modules/rcue/Gemfile.lock
new file mode 100644
index 0000000..7f56e6f
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/Gemfile.lock
@@ -0,0 +1,45 @@
+GEM
+  remote: https://rubygems.org/
+  specs:
+    addressable (2.4.0)
+    colorator (1.1.0)
+    ffi (1.9.14)
+    forwardable-extended (2.6.0)
+    jekyll (3.3.0)
+      addressable (~> 2.4)
+      colorator (~> 1.0)
+      jekyll-sass-converter (~> 1.0)
+      jekyll-watch (~> 1.1)
+      kramdown (~> 1.3)
+      liquid (~> 3.0)
+      mercenary (~> 0.3.3)
+      pathutil (~> 0.9)
+      rouge (~> 1.7)
+      safe_yaml (~> 1.0)
+    jekyll-sass-converter (1.4.0)
+      sass (~> 3.4)
+    jekyll-watch (1.5.0)
+      listen (~> 3.0, < 3.1)
+    kramdown (1.12.0)
+    liquid (3.0.6)
+    listen (3.0.8)
+      rb-fsevent (~> 0.9, >= 0.9.4)
+      rb-inotify (~> 0.9, >= 0.9.7)
+    mercenary (0.3.6)
+    pathutil (0.14.0)
+      forwardable-extended (~> 2.6)
+    rb-fsevent (0.9.8)
+    rb-inotify (0.9.7)
+      ffi (>= 0.5.0)
+    rouge (1.11.1)
+    safe_yaml (1.0.4)
+    sass (3.4.22)
+
+PLATFORMS
+  ruby
+
+DEPENDENCIES
+  jekyll
+
+BUNDLED WITH
+   1.13.3
diff --git a/themes/src/main/node_modules/rcue/Gruntfile.js b/themes/src/main/node_modules/rcue/Gruntfile.js
new file mode 100644
index 0000000..430e2f5
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/Gruntfile.js
@@ -0,0 +1,182 @@
+/*global module,require*/
+var lrSnippet = require('connect-livereload')({
+  port: 35730
+});
+var mountFolder = function (connect, dir) {
+  return connect.static(require('path').resolve(dir));
+};
+
+module.exports = function (grunt) {
+  'use strict';
+
+  // load all grunt tasks
+  require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks);
+
+  // configurable paths
+  var projectConfig = {
+    dist: 'dist',
+    src: ''
+  };
+
+  try {
+    projectConfig.src = require('./bower.json').appPath || projectConfig.src;
+  } catch (e) {}
+
+  grunt.initConfig({
+    clean: {
+      build: '<%= config.dist %>'
+    },
+    config: projectConfig,
+    connect: {
+      server: {
+        options: {
+          hostname: '0.0.0.0',
+          middleware: function (connect) {
+            return [
+              lrSnippet,
+              mountFolder(connect, projectConfig.src),
+              mountFolder(connect, projectConfig.src + 'tests')
+            ];
+          },
+          port: 9001
+        }
+      }
+    },
+    run: {
+      options: {
+      },
+      bundleInstall: {
+        cmd: 'bundle',
+        args: [
+          'install'
+        ]
+      }
+    },
+    copy: {
+      main: {
+        files: [
+          // copy Bootstrap font files
+          {expand: true, cwd: 'node_modules/bootstrap/dist/fonts/', src: ['*'], dest: 'dist/fonts/'},
+          // copy Font Awesome font files
+          {expand: true, cwd: 'node_modules/font-awesome/fonts/', src: ['*'], dest: 'dist/fonts/'},
+          // copy PatternFly font files
+          {expand: true, cwd: 'node_modules/patternfly/dist/fonts/', src: ['**'], dest: 'dist/fonts/'},
+          // copy PatternFly less files
+          {expand: true, cwd: 'node_modules/patternfly/less/', src: ['**'], dest: 'less/lib/patternfly/'},
+          // copy PatternFly images
+          {expand: true, cwd: 'node_modules/patternfly/dist/img/', src: ['**'], dest: 'dist/img'},
+        ],
+      },
+    },
+    csscount: {
+      production: {
+        src: [
+          'dist/css/rcue*.min.css'
+        ],
+        options: {
+          maxSelectors: 4096
+        }
+      }
+    },
+    cssmin: {
+      production: {
+        files: [{
+          expand: true,
+          cwd: 'dist/css',
+          src: ['rcue*.css', '!*.min.css'],
+          dest: 'dist/css',
+          ext: '.min.css',
+        }],
+        options: {
+          sourceMap: true
+        }
+      }
+    },
+    jekyll: {
+      options: {
+        src: 'node_modules/patternfly/tests/pages',
+        bundleExec: 'true'
+      },
+      tests: {
+        options: {
+          config: '_config.yml',
+          dest: 'tests'
+        }
+      }
+    },
+    less: {
+      rcue: {
+        files: {
+          "dist/css/rcue.css": "less/rcue.less"
+        },
+        options: {
+          paths: [
+            "less/",
+            "node_modules/"
+          ],
+          strictMath: true,
+          sourceMap: true,
+          outputSourceFiles: true,
+          sourceMapFilename: 'dist/css/rcue.css.map',
+          sourceMapURL: 'rcue.css.map'
+        }
+      },
+      rcueAdditions: {
+        files: {
+          "dist/css/rcue-additions.css": "less/rcue-additions.less"
+        },
+        options: {
+          paths: [
+            "less/",
+            "node_modules/"
+          ],
+          strictMath: true,
+          sourceMap: true,
+          outputSourceFiles: true,
+          sourceMapFilename: 'dist/css/rcue-additions.css.map',
+          sourceMapURL: 'rcue-additions.css.map'
+        }
+      }
+    },
+    watch: {
+      copy: {
+        files: 'node_modules/**/*',
+        tasks: ['copy']
+      },
+      jekyll: {
+        files: ['_config.yml', 'node_modules/patternfly/tests/pages/**/*'],
+        tasks: ['jekyll']
+      },
+      less: {
+        files: ['less/*.less', 'node_modules/patternfly/dist/less/*.less'],
+        tasks: ['less'],
+      },
+      css: {
+        files: ['dist/css/rcue*.css', 'dist/css/!*.min.css'],
+        tasks: ['cssmin', 'csscount']
+      },
+      livereload: {
+        files: ['dist/css/*.css', 'tests/*.html']
+      },
+      options: {
+        livereload: 35730
+      }
+    }
+  });
+
+  grunt.registerTask('build', [
+    'run:bundleInstall',
+    'copy',
+    'jekyll',
+    'less',
+    'cssmin',
+    'csscount'
+  ]);
+
+  grunt.registerTask('server', [
+    'connect:server',
+    'watch'
+  ]);
+
+  grunt.registerTask('default', ['build']);
+};
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/about-modal.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/about-modal.less
new file mode 100644
index 0000000..da4e727
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/about-modal.less
@@ -0,0 +1,44 @@
+//
+// About Modal
+// --------------------------------------------------
+
+.about-modal-pf {
+  background-color: @color-pf-black-900;
+  background-image: url("@{img-path}/@{modal-about-pf-bg-img}");
+  background-position: right bottom;
+  background-repeat: no-repeat;
+  background-size: 216px auto;
+  @media (min-width: @screen-sm-min) {
+    background-size: auto;
+  }
+  .modal-body {
+    color: @color-pf-white;
+    padding-bottom: 16px;
+    padding-left: @grid-gutter-width;
+    padding-right: @grid-gutter-width;
+    @media (min-width: @screen-sm-min) {
+      padding-left: (@grid-gutter-width * 2);
+      padding-right: (@grid-gutter-width * 2);
+    }
+  }
+  .modal-header {
+    background-color: transparent;
+  }
+  .pficon-close {
+    color: @color-pf-white;
+  }
+}
+
+.product-versions-pf {
+  margin-bottom: 30px;
+  margin-top: 30px;
+  li {
+    strong {
+      margin-right: (@grid-gutter-width / 4);
+    }
+  }
+}
+
+.trademark-pf {
+  font-size: ceil((@font-size-base - 1));
+}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/alerts.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/alerts.less
new file mode 100644
index 0000000..aabc11d
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/alerts.less
@@ -0,0 +1,43 @@
+//
+// Alerts
+// --------------------------------------------------
+
+.alert {
+  border-width: 1px;
+  padding-left: 47px;
+  padding-right: (@alert-padding + 3);
+  position: relative;
+  .alert-link {
+    color: @link-color;
+    &:hover {
+      color: @link-hover-color;
+    }
+  }
+  > .btn.pull-right {
+    margin-top: -3px;
+  }
+  > .pficon {
+    font-size: 22px;
+    position: absolute;
+    left: 13px;
+    top: 10px;
+  }
+  .close {
+    .opacity(.85);
+    &:hover,
+    &:focus {
+      .opacity(1);
+    }
+  }
+  .pficon-info {
+    color: @color-pf-black-700;
+  }
+}
+
+.alert-dismissable {
+  padding-right: (@alert-padding + 17);
+  .close {
+    right: -13px;
+    top: 1px;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/badges.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/badges.less
new file mode 100644
index 0000000..e3a5364
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/badges.less
@@ -0,0 +1,11 @@
+//
+// Badges
+// --------------------------------------------------
+
+.badge {
+  margin-left: 6px;
+}
+
+.nav-pills > li > a > .badge {
+  margin-left: 6px;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/blank-slate.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/blank-slate.less
new file mode 100644
index 0000000..827e73c
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/blank-slate.less
@@ -0,0 +1,29 @@
+//
+// Blank Slate
+// --------------------------------------------------
+
+.blank-slate-pf {
+  @media (min-width: @screen-sm-min) {
+    padding: (@jumbotron-padding * 2) (@jumbotron-padding * 2);
+  }
+  @media (min-width: @screen-md-min) {
+    padding: (@jumbotron-padding * 3) (@jumbotron-padding * 4);
+  }
+  background-color: @well-bg;
+  border: 1px solid @well-border;
+  border-radius: @border-radius-base;
+  margin-bottom: 20px;
+  padding: @jumbotron-padding;
+  text-align: center;
+  .blank-slate-pf-icon {
+    color: @gray-light;
+    font-size: (@font-size-h1 * 2.4);
+    line-height: (@font-size-h1 * 2.4);
+  }
+  .blank-slate-pf-main-action {
+    margin-top: @line-height-computed;
+  }
+  .blank-slate-pf-secondary-action {
+    margin-top: @line-height-computed;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-combobox.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-combobox.less
new file mode 100644
index 0000000..4ece7bf
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-combobox.less
@@ -0,0 +1,35 @@
+//
+// Bootstrap-Combobox
+// --------------------------------------------------
+
+.combobox-container {
+  &.combobox-selected .glyphicon-remove {
+    display: inline-block;
+  }
+  .caret {
+    margin-left: 0;
+  }
+  .combobox::-ms-clear {
+    display: none;
+  }
+  .dropdown-menu {
+    margin-top: -1px;
+    width: 100%;
+  }
+  .glyphicon-remove {
+    display: none;
+    top: auto;
+    width: 12px;
+    &:before {
+      content: "\e60b";
+      font-family: @icon-font-name-pf;
+    }
+  }
+  .input-group-addon {
+    .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);
+    position: relative; // IE8
+    &:active {
+      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-datepicker.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-datepicker.less
new file mode 100644
index 0000000..708b246
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-datepicker.less
@@ -0,0 +1,124 @@
+//
+// Bootstrap-Datepicker
+// --------------------------------------------------
+
+.bootstrap-datepicker.form-control[readonly] {
+  background-color: @input-bg;
+  border-color: @input-border !important;
+  color: @input-color;
+  .box-shadow(inset 0 1px 1px fade(@color-pf-black, 7.5%));
+  .form-control-focus();
+  &:focus {
+    border-color: @input-border-focus !important;
+    .has-error & {
+      border-color: darken(@state-danger-text, 10%);
+      @shadow: inset 0 1px 1px fade(@color-pf-black, 7.5%), 0 0 6px lighten(@state-danger-text, 20%);
+      .box-shadow(@shadow);
+    }
+    .has-success & {
+      border-color: darken(@state-success-text, 10%);
+      @shadow: inset 0 1px 1px fade(@color-pf-black, 7.5%), 0 0 6px lighten(@state-success-text, 20%);
+      .box-shadow(@shadow);
+    }
+    .has-warning & {
+      border-color: darken(@state-warning-text, 10%);
+      @shadow: inset 0 1px 1px fade(@color-pf-black, 7.5%), 0 0 6px lighten(@state-warning-text, 20%);
+      .box-shadow(@shadow);
+    }
+  }
+  &:hover {
+    border-color: @input-border-hover !important;
+    .has-error & {
+      border-color: darken(@state-danger-text, 10%) !important;
+    }
+    .has-success & {
+      border-color: darken(@state-success-text, 10%) !important;
+    }
+    .has-warning & {
+      border-color: darken(@state-warning-text, 10%) !important;
+    }
+  }
+  .has-error & {
+    border-color: @state-danger-text !important;
+  }
+  .has-success & {
+    border-color: @state-success-text !important;
+  }
+  .has-warning & {
+    border-color: @state-warning-text !important;
+  }
+}
+
+.datepicker {
+  border-radius: @border-radius-base;
+  .datepicker-switch,
+  tfoot .clear,
+  tfoot .today {
+    font-size: @font-size-large;
+    font-weight: 500;
+  }
+  .next,
+  .prev {
+    font-weight: 500;
+  }
+  table tr {
+    td,
+    th {
+      border-radius: @border-radius-base;
+    }
+    td {
+      &.active,
+      &.active:hover,
+      &.active.disabled,
+      &.active.disabled:hover {
+        background: @dropdown-link-active-bg !important;
+        color: @color-pf-white !important;
+        text-shadow: none;
+      }
+      &.day:hover,
+      &.day.focused {
+        background: @dropdown-link-hover-bg;
+      }
+      &.selected,
+      &.selected:hover,
+      &.selected.disabled,
+      &.selected.disabled:hover {
+        text-shadow: none;
+      }
+      span {
+        border-radius: @border-radius-base;
+        &.active,
+        &.active:hover,
+        &.active.disabled,
+        &.active.disabled:hover {
+          background: @dropdown-link-active-bg;
+          text-shadow: none;
+        }
+        &:hover {
+          background: @dropdown-link-hover-bg;
+        }
+      }
+    }
+  }
+  thead tr:first-child th,
+  tfoot tr th {
+    &:hover {
+      background: @dropdown-link-hover-bg;
+    }
+  }
+}
+
+.input-daterange {
+  input:first-child {
+    border-radius: @border-radius-base 0 0 @border-radius-base;
+  }
+  input:last-child {
+    border-radius: 0 @border-radius-base @border-radius-base 0;
+  }
+  .input-group-addon {
+    background-color: @input-group-addon-bg;
+    border-color: @input-group-addon-border-color;
+    line-height: @line-height-base;
+    padding: @padding-base-vertical @padding-base-horizontal;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-select.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-select.less
new file mode 100644
index 0000000..9b7b5b6
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-select.less
@@ -0,0 +1,100 @@
+//
+// Bootstrap-select
+// --------------------------------------------------
+
+.bootstrap-select.btn-group {
+  &.form-control {
+    margin-bottom: 0;
+  }
+  .btn {
+    &:hover {
+      border-color: @input-border-hover;
+    }
+    .caret {
+      margin-top: -4px;
+    }
+    .form-control-outline();
+    .has-error & {
+      border-color: @state-danger-text;
+      &:focus {
+        border-color: darken(@state-danger-text, 10%);
+        @shadow: inset 0 1px 1px fade(@color-pf-black, 7.5%), 0 0 6px lighten(@state-danger-text, 20%);
+        .box-shadow(@shadow);
+      }
+    }
+    .has-success & {
+      border-color: @state-success-text;
+      &:focus {
+        border-color: darken(@state-success-text, 10%);
+        @shadow: inset 0 1px 1px fade(@color-pf-black, 7.5%), 0 0 6px lighten(@state-success-text, 20%);
+        .box-shadow(@shadow);
+      }
+    }
+    .has-warning & {
+      border-color: @state-warning-text;
+      &:focus {
+        border-color: darken(@state-warning-text, 10%);
+        @shadow: inset 0 1px 1px fade(@color-pf-black, 7.5%), 0 0 6px lighten(@state-warning-text, 20%);
+        .box-shadow(@shadow);
+      }
+    }
+    .transition(~"border-color ease-in-out .15s, box-shadow ease-in-out .15s");
+  }
+  .dropdown-menu { // Also see navbar.less
+    > .active > a {
+      &,
+      &:active {
+        background-color: @dropdown-link-hover-bg !important;
+        border-color: @dropdown-link-hover-border-color !important;
+        color: @gray-dark !important;
+        small {
+          color: @gray-light !important;
+        }
+      }
+    }
+    > .disabled > a {
+      color: @gray-light !important;
+    }
+    > .selected > a {
+      background-color: @dropdown-link-active-bg !important;
+      border-color: @dropdown-link-active-border-color !important;
+      color: @color-pf-white !important;
+      small {
+        color: fade(@color-pf-white, 50%) !important;
+      }
+    }
+    .divider {
+      background: @dropdown-divider-bg !important;
+      margin: @dropdown-divider-margin !important;
+    }
+    dt {
+      color: @color-pf-black-500;
+      font-weight:normal;
+      padding: 1px 10px;
+    }
+    li {
+      & > a.opt {
+        padding: 1px 10px;
+      }
+      & a {
+        &:active small {
+          color: fade(@color-pf-white, 50%) !important;
+        }
+        &:hover,
+        &:focus {
+          small {
+            color: @gray-light;
+          }
+        }
+      }
+      &:not(.disabled) {
+        a:hover,
+        a:focus {
+          small {
+            color: @gray-light;
+          }
+        }
+      }
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-switch.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-switch.less
new file mode 100644
index 0000000..120a415
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-switch.less
@@ -0,0 +1,19 @@
+//
+// Bootstrap Switch
+// --------------------------------------------------
+
+.@{bootstrap-switch-base} {
+  .@{bootstrap-switch-base}-handle-off,
+  .@{bootstrap-switch-base}-handle-on {
+    &.@{bootstrap-switch-base}-default {
+      background: @bootstrap-switch-handle-default-bg-color;
+    }
+  }
+  .@{bootstrap-switch-base}-label {
+    background: @bootstrap-switch-bg-color;
+    box-shadow: 0 0 2px fade(@color-pf-black, 40%);
+    #gradient > .vertical(@bootstrap-switch-bg-color-start, @bootstrap-switch-bg-color-stop);
+    position: relative;
+    z-index: 9;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-touchspin.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-touchspin.less
new file mode 100644
index 0000000..e79b410
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-touchspin.less
@@ -0,0 +1,31 @@
+//
+// Bootstrap Touchspin
+// --------------------------------------------------
+
+.bootstrap-touchspin .input-group-btn-vertical {
+  > .btn {
+    padding-bottom: 6px;
+    padding-top: 6px;
+  }
+  .bootstrap-touchspin-down {
+    border-bottom-right-radius: @border-radius-base;
+  }
+  .bootstrap-touchspin-up {
+    border-top-right-radius: @border-radius-base;
+  }
+  i {
+    font-size: (@font-size-base - 4);
+    left: 6px;
+    top: 2px;
+    &.fa-angle-down,
+    &.fa-angle-up {
+      font-size: @font-size-base;
+      line-height: @font-size-base;
+      top: 0;
+    }
+    &.fa-angle-down,
+    &.fa-angle-up {
+      left: 7px;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-treeview.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-treeview.less
new file mode 100644
index 0000000..6c9f3df
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/bootstrap-treeview.less
@@ -0,0 +1,57 @@
+//
+// Bootstrap Tree View
+// --------------------------------------------------
+
+.treeview {
+  .list-group {
+    border-top: 0;
+  }
+  .list-group-item {
+    background: transparent;
+    border-bottom: 1px solid transparent !important;
+    border-top: 1px solid transparent !important;
+    margin-bottom: 0;
+    overflow: hidden;
+    padding: 0 10px;
+    text-overflow: ellipsis;
+    white-space: nowrap;
+
+    &:hover {
+      background: @dropdown-link-hover-bg !important;
+      border-color: @dropdown-link-hover-border-color !important;
+    }
+    &.node-selected {
+      background: @dropdown-link-active-bg !important;
+      border-color: @dropdown-link-active-border-color !important;
+      color: @dropdown-link-active-color !important;
+    }
+    &.node-check-changed {
+      span.node-icon,
+      span.text {
+        color: @bootstrap-treeview-highlight-color;
+      }
+    }
+  }
+  span.icon {
+    display: inline-block;
+    font-size: (@font-size-base + 1);
+    min-width: 10px;
+    text-align: center;
+    > [class*="fa-angle"] {
+      font-size: (@font-size-base + 3);
+    }
+    &.check-icon {
+      margin-right: 10px;
+    }
+  }
+  span.indent {
+    margin-right: 5px;
+  }
+  .node-disabled {
+    color: @color-pf-black-300;
+    cursor: not-allowed;
+  }
+  .node-hidden {
+    display:none;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/breadcrumbs.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/breadcrumbs.less
new file mode 100644
index 0000000..b7d1375
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/breadcrumbs.less
@@ -0,0 +1,20 @@
+//
+// Breadcrumbs
+// --------------------------------------------------
+
+.breadcrumb {
+  padding-left: 0;
+  > .active strong {
+    font-weight: 600;
+  }
+  > li {
+      display: inline; /* IE8 */
+      + li:before {
+      color: @gray-light;
+      content: @fa-var-angle-double-right;
+      font-family: @icon-font-name-fa;
+      font-size: (@font-size-base - 1);
+      padding: 0 9px 0 7px;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/buttons.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/buttons.less
new file mode 100644
index 0000000..e32d3a4
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/buttons.less
@@ -0,0 +1,50 @@
+//
+// Buttons
+// --------------------------------------------------
+
+.btn {
+  .box-shadow(0 2px 3px fade(@color-pf-black, 10%));
+  &:active {
+    .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));
+  }
+  &.disabled,
+  &[disabled],
+  fieldset[disabled] & {
+    background-color: @color-pf-black-100 !important;
+    background-image: none !important;
+    border-color: @color-pf-black-300 !important;
+    color: @color-pf-black-500 !important;
+    opacity: 1;
+    &:active {
+      .box-shadow(none);
+    }
+    &.btn-link {
+      background-color: transparent !important;
+      border: 0;
+    }
+  }
+}
+
+.btn-danger {
+  .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-bg-img-start; @btn-danger-bg-img-stop; @btn-danger-border);
+}
+
+.btn-default {
+  .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);
+}
+
+.btn-link {
+  &,
+  &:active {
+    .box-shadow(none);
+  }
+}
+
+.btn-primary {
+  .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-bg-img-start; @btn-primary-bg-img-stop; @btn-primary-border);
+}
+
+.btn-xs,
+.btn-group-xs .btn {
+  font-weight: @btn-xs-font-weight;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/cards.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/cards.less
new file mode 100644
index 0000000..8b3e6e8
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/cards.less
@@ -0,0 +1,238 @@
+//
+// Cards
+// --------------------------------------------------
+
+.card-pf {
+  background: @card-pf-bg-color;
+  border-top: 2px solid @card-pf-border-top-color;
+  .box-shadow(0 1px 1px fade(@color-pf-black, 17.5%));
+  margin: 0 (-(@grid-gutter-width / 4)) (@grid-gutter-width / 2);
+  padding: 0 (@grid-gutter-width / 2);
+  &.card-pf-accented {
+    border-top-color: @card-pf-accented-border-top-color;
+  }
+  &.card-pf-aggregate-status {
+    .card-pf-aggregate-status-notifications,
+    .card-pf-title {
+      a {
+        color: @text-color;
+        &.add {
+          color: @link-color;
+          &:hover {
+            color: @link-hover-color;
+          }
+        }
+        &:hover {
+          color: @link-hover-color;
+        }
+      }
+    }
+  }
+  &.card-pf-aggregate-status {
+    padding: 0 (@grid-gutter-width / 4);
+    text-align: center;
+  }
+  &.card-pf-aggregate-status-mini {
+    padding-bottom: (@grid-gutter-width / 4);
+    position: relative;
+  }
+  @media (min-width: @grid-float-breakpoint) {
+    &.card-pf-bleed-left {
+      margin-left: (-(@grid-gutter-width / 2));
+    }
+    &.card-pf-bleed-right {
+      border-right: 1px solid @card-pf-border-color;
+      margin-right: (-(@grid-gutter-width / 2));
+    }
+  }
+}
+
+.card-pf-aggregate-status-notifications {
+  font-size: (@font-size-base * 2); // 24px
+  font-weight: 300;
+  .card-pf-aggregate-status-mini & {
+    line-height: 1;
+  }
+  .card-pf-aggregate-status-notification + .card-pf-aggregate-status-notification {
+    border-left: 1px solid @card-pf-border-color;
+    margin-left: (@grid-gutter-width / 8 - 2);
+    padding-left: (@grid-gutter-width / 4);
+  }
+  .fa, .pficon {
+    font-size: (@font-size-base * 1.5); // 18px
+    margin-right: 7px;
+  }
+}
+
+.card-pf-body {
+  margin: (@grid-gutter-width / 2) 0 0;
+  padding: 0 0 (@grid-gutter-width / 2);
+  .card-pf-aggregate-status & {
+    margin-top: (@grid-gutter-width / 4);
+    padding-bottom: (@grid-gutter-width / 4);
+  }
+  .card-pf-aggregate-status-mini & {
+    margin-bottom: 0;
+    margin-top: 0;
+    padding-bottom: 0;
+    position: absolute;
+    right: (@grid-gutter-width / 2);
+    top: 15px;
+  }
+  .card-pf-utilization .card-pf-title + & {
+    margin-top: -8px;
+  }
+  > *:last-child {
+    margin-bottom: 0;
+  }
+}
+
+.card-pf-footer {
+  background-color: @card-pf-footer-bg-color;
+  border-top: 1px solid @card-pf-border-color;
+  margin: 0 (-(@grid-gutter-width / 2)) !important;
+  padding: (@grid-gutter-width / 2) (@grid-gutter-width / 2) (@grid-gutter-width / 4);
+  a > {
+    .fa,
+    .pficon {
+      margin-right: 5px;
+    }
+  }
+  .card-pf-time-frame-filter {
+    margin-top: -2px;
+  }
+}
+
+.card-pf-link-with-icon {
+  padding-left: 21px;
+  position: relative;
+  .fa,
+  .pficon {
+    font-size: 16px;
+    left: 0;
+    position: absolute;
+    top: 0;
+  }
+}
+
+.card-pf-time-frame-filter {
+  .card-pf-heading &,
+  .card-pf-footer & {
+    float: right;
+    margin-left: 20px;
+  }
+}
+
+.card-pf-heading {
+  border-bottom: 1px solid @card-pf-border-color;
+  margin: 0 (-(@grid-gutter-width / 2)) (@grid-gutter-width / 2);
+  padding: 0 (@grid-gutter-width / 2) 0;
+  & .card-pf-time-frame-filter {
+    margin-top: -5px;
+  }
+}
+
+.card-pf-heading-details {
+  float: right;
+  font-size: (@font-size-small - 1);
+}
+
+.card-pf-subtitle {
+  font-size: @font-size-h3;
+  margin-top: @line-height-computed;
+  margin-bottom: (@line-height-computed / 2);
+  [class^="col"] & {
+    margin-top: 0;
+  }
+  @media (max-width: @screen-xs-max) {
+    .card-pf-body [class^="col"] + [class^="col"] > & {
+      margin-top: (@grid-gutter-width);
+    }
+  }
+}
+
+.card-pf-title {
+  font-size: @font-size-h3;
+  font-weight: 400;
+  margin: (@grid-gutter-width / 2) 0;
+  padding: 0;
+  .card-pf-aggregate-status & {
+    font-size: @font-size-large;
+    margin: (@grid-gutter-width / 4) 0 0;
+    .fa,
+    .pficon {
+      color: @card-pf-aggregate-status-title-icon-color;
+      font-size: @font-size-h3;
+      margin-right: 7px;
+    }
+  }
+  .card-pf-aggregate-status-count {
+    font-size: @font-size-h3;
+    .card-pf-aggregate-status-mini & {
+      display: block;
+      font-size: (@font-size-base * 2); // 24px
+      font-weight: 300;
+      margin-bottom: 3px;
+    }
+  }
+  .card-pf-aggregate-status-mini & {
+    font-size: @font-size-base;
+    margin-top: (@grid-gutter-width / 8);
+    a {
+      display: inline-block;
+    }
+    .fa,
+    .pficon {
+      font-size: (@font-size-base * 2 + 2); // 26px
+      margin-right: 0;
+      min-width: (@font-size-base * 2 + 2); // 26px
+      position: absolute;
+      left: (@grid-gutter-width / 2);
+      text-align: center;
+      top: 15px;
+    }
+  }
+}
+
+.card-pf-utilization-details {
+  border-bottom: 1px solid @card-pf-border-color;
+  display: table;
+  margin: 12px 0 15px;
+  padding: 0 0 15px;
+  width: 100%;
+  .card-pf-utilization-card-details-count,
+  .card-pf-utilization-card-details-description {
+    float: left;
+    line-height: 1;
+  }
+  .card-pf-utilization-card-details-count {
+    font-size: (@font-size-base * 2 + 2); // 26px
+    font-weight: 300;
+    margin-right: 10px;
+  }
+  .card-pf-utilization-card-details-line-1,
+  .card-pf-utilization-card-details-line-2 {
+    display: block;
+  }
+  .card-pf-utilization-card-details-line-1 {
+    font-size: (@font-size-small - 1);
+    margin-bottom: 2px;
+  }
+}
+
+.cards-pf {
+  background: @card-pf-container-bg-color;
+  .row-cards-pf {
+    padding: 0 20px;
+    &:first-child { padding-top: 20px; }
+  }
+}
+
+.container-cards-pf {
+  margin-top: (@grid-gutter-width / 2);
+}
+
+.row-cards-pf {
+  margin-left: (-(@grid-gutter-width / 4));
+  margin-right: (-(@grid-gutter-width / 4));
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/card-view.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/card-view.less
new file mode 100644
index 0000000..c162295
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/card-view.less
@@ -0,0 +1,106 @@
+//
+// Card View
+// --------------------------------------------------
+
+.card-pf-view {
+  border: 2px solid transparent;
+  .card-pf-heading-kebab {
+    .dropdown-kebab-pf {
+      margin-left: 10px;
+      margin-top: -3px;
+    }
+    + .progress-pf-legend {
+      p { margin-bottom: 0; }
+      .progress {
+        margin-bottom: 7px;
+        margin-top: 16px;
+      }
+    }
+  }
+  .card-pf-info {
+    margin-top: 15px;
+    strong {
+      font-size: ceil((@font-size-base + 1));
+      margin-right: 10px;
+    }
+  }
+  .card-pf-item {
+    display: inline-block;
+    font-size: @font-size-h3;
+    padding: 0 13px 0 15px;
+    &:first-child { padding-left: 0; }
+    &:last-child { padding-right: 0; }
+    + .card-pf-item { border-left: 1px solid @card-pf-border-color; }
+    .fa-check { color: @brand-success; }
+    .fa,
+    .pficon {
+      + .card-pf-item-text { margin-left: 10px; }
+    }
+  }
+  .card-pf-items { margin-top: 15px; }
+  .card-pf-title {
+    font-size: ceil((@font-size-base * 1.6666));
+    font-weight: 300;
+    margin-bottom: 0;
+    margin-top: 15px;
+    .fa,
+    .pficon {
+      font-size: ceil((@font-size-base * 1.5));
+      margin-right: 2px;
+    }
+    .col-lg-2 & { font-size: @font-size-h3; }
+  }
+  .card-pf-top-element .card-pf-icon-circle {
+    border: 2px solid @color-pf-blue-300;
+    border-radius: 50%;
+    display: block;
+    font-size: 46px;
+    height: 106px;
+    line-height: 102px;
+    margin: 0 auto;
+    text-align: center;
+    width: 106px;
+    .col-lg-2 & {
+      font-size: 23px;
+      height: 54px;
+      line-height: 50px;
+      width: 54px;
+    }
+  }
+  .card-pf-view-checkbox {
+    position: absolute;
+    top: 11px;
+    left: 15px;
+    input[type=checkbox] { display: none; }
+  }
+  &.card-pf-view-multi-select {
+    .card-pf-view-checkbox {
+      input[type=checkbox] {
+        display: block;
+        @media(min-width:@screen-sm-min) {
+          visibility: hidden;
+          &:checked { visibility: visible; }
+        }
+      }
+    }
+    &:hover .card-pf-view-checkbox input[type=checkbox] { visibility: visible; }
+  }
+  &.card-pf-view-select {
+    position: relative;
+    &:hover { .box-shadow(0 1px 6px fade(@color-pf-black, 35%)); }
+    &.active { border: 2px solid @card-pf-selected-border-color; }
+  }
+  &.card-pf-view-single-select { cursor: pointer; }
+  &.card-pf-view-xs {
+    .card-pf-title {
+      font-size: 16px;
+      font-weight: normal;
+      margin-bottom: 10px;
+      .fa,
+      .pficon {
+        font-size: 14px;
+        margin-right: 5px;
+      }
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/charts.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/charts.less
new file mode 100644
index 0000000..075d6a8
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/charts.less
@@ -0,0 +1,97 @@
+//
+// Charts
+// --------------------------------------------------
+
+.c3 {
+  path {
+    stroke: @table-border-color;
+  }
+  svg {
+    font-family: @font-family-base;
+  }
+}
+
+.c3-axis-x .tick line {
+  stroke: @table-border-color;
+}
+
+.c3-axis-y .tick line {
+  display: none;
+}
+
+.c3-chart-arc path {
+  stroke: @color-pf-white;
+}
+
+.c3-grid line {
+  stroke: @table-border-color;
+}
+
+.c3-line {
+  stroke-width: 2px;
+}
+
+.c3-tooltip {
+  background: @tooltip-bg;
+  .box-shadow(none);
+  .opacity(@tooltip-opacity);
+
+  td {
+    background: transparent;
+    border: 0;
+    color: @tooltip-color;
+    font-size: @font-size-base;
+    padding: 5px 10px;
+  }
+
+  th {
+    background: transparent;
+    font-size: @font-size-base;
+    padding: 5px 10px 0;
+    border-bottom: solid 2px @color-pf-black;
+  }
+
+  tr {
+    border: 0;
+    + tr > td {
+      padding-top: 0;
+    }
+  }
+}
+
+.c3-tooltip-sparkline,
+.donut-tooltip-pf {
+  background: @tooltip-bg;
+  color: @tooltip-color;
+  .opacity(@tooltip-opacity);
+  padding: 2px 6px;
+}
+
+.c3-xgrid,
+.c3-ygrid {
+  stroke-dasharray: 0 0;
+}
+
+.chart-pf-sparkline {
+  margin-left: -5px;
+  margin-right: -5px;
+}
+
+.donut-title-big-pf {
+  font-size: @donut-font-size-big;
+  font-weight: 300;
+}
+
+.donut-title-small-pf {
+  font-size: @font-size-base;
+  font-weight: 400;
+}
+
+.line-chart-pf {
+  .c3-zoom-rect {
+    opacity: 1 !important;
+    fill: @color-pf-black-100;
+    stroke: @table-border-color;
+    stroke-width: 1px;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/close.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/close.less
new file mode 100644
index 0000000..d6dd2a0
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/close.less
@@ -0,0 +1,13 @@
+//
+// Close icons
+// --------------------------------------------------
+
+
+.close {
+  text-shadow: none;
+  .opacity(.6);
+  &:hover,
+  &:focus {
+    .opacity(.9);
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/color-variables.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/color-variables.less
new file mode 100644
index 0000000..c9309b1
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/color-variables.less
@@ -0,0 +1,84 @@
+@color-pf-black-100:             #fafafa;
+@color-pf-black-150:             #f5f5f5;
+@color-pf-black-200:             #ededed;
+@color-pf-black-300:             #d1d1d1;
+@color-pf-black-400:             #bbb;
+@color-pf-black-500:             #8b8d8f;
+@color-pf-black-600:             #72767b;
+@color-pf-black-700:             #4d5258;
+@color-pf-black-800:             #393f44;
+@color-pf-black-900:             #292e34;
+@color-pf-blue-50:               #def3ff;
+@color-pf-blue-100:              #bee1f4;
+@color-pf-blue-200:              #7dc3e8;
+@color-pf-blue-300:              #39a5dc;
+@color-pf-blue-400:              #0088ce;
+@color-pf-blue-500:              #00659c;
+@color-pf-blue-600:              #004368;
+@color-pf-blue-700:              #002235;
+@color-pf-cyan-100:              #bedee1;
+@color-pf-cyan-200:              #7dbdc3;
+@color-pf-cyan-300:              #3a9ca6;
+@color-pf-cyan-400:              #007a87;
+@color-pf-cyan-500:              #005c66;
+@color-pf-cyan-600:              #003d44;
+@color-pf-cyan-700:              #001f22;
+@color-pf-gold-100:              #fbeabc;
+@color-pf-gold-200:              #f9d67a;
+@color-pf-gold-300:              #f5c12e;
+@color-pf-gold-400:              #f0ab00;
+@color-pf-gold-500:              #b58100;
+@color-pf-gold-600:              #795600;
+@color-pf-gold-700:              #3d2c00;
+@color-pf-green-100:             #cfe7cd;
+@color-pf-green-200:             #9ecf99;
+@color-pf-green-300:             #6ec664;
+@color-pf-green-400:             #3f9c35;
+@color-pf-green-500:             #2d7623;
+@color-pf-green-600:             #1e4f18;
+@color-pf-green-700:             #0f280d;
+@color-pf-light-blue-100:        #beedf9;
+@color-pf-light-blue-200:        #7cdbf3;
+@color-pf-light-blue-300:        #35caed;
+@color-pf-light-blue-400:        #00b9e4;
+@color-pf-light-blue-500:        #008bad;
+@color-pf-light-blue-600:        #005c73;
+@color-pf-light-blue-700:        #002d39;
+@color-pf-light-green-100:       #e4f5bc;
+@color-pf-light-green-200:       #c8eb79;
+@color-pf-light-green-300:       #ace12e;
+@color-pf-light-green-400:       #92d400;
+@color-pf-light-green-500:       #6ca100;
+@color-pf-light-green-600:       #486b00;
+@color-pf-light-green-700:       #253600;
+@color-pf-orange-100:            #fbdebf;
+@color-pf-orange-200:            #f7bd7f;
+@color-pf-orange-300:            #f39d3c;
+@color-pf-orange-400:            #ec7a08;
+@color-pf-orange-500:            #b35c00;
+@color-pf-orange-600:            #773d00;
+@color-pf-orange-700:            #3b1f00;
+@color-pf-purple-100:            #c7bfff;
+@color-pf-purple-200:            #a18fff;
+@color-pf-purple-300:            #8461f7;
+@color-pf-purple-400:            #703fec;
+@color-pf-purple-500:            #582fc0;
+@color-pf-purple-600:            #40199a;
+@color-pf-purple-700:            #1f0066;
+@color-pf-red-100:               #cc0000;
+@color-pf-red-200:               #a30000;
+@color-pf-red-300:               #8b0000;
+@color-pf-red-400:               #470000;
+@color-pf-red-500:               #2c0000;
+
+@color-pf-black:                 #030303;
+@color-pf-blue:                  @color-pf-blue-400;
+@color-pf-cyan:                  @color-pf-cyan-400;
+@color-pf-gold:                  @color-pf-gold-400;
+@color-pf-green:                 @color-pf-green-400;
+@color-pf-light-blue:            @color-pf-light-blue-400;
+@color-pf-light-green:           @color-pf-light-green-400;
+@color-pf-orange:                @color-pf-orange-400;
+@color-pf-purple:                @color-pf-purple-400;
+@color-pf-red:                   @color-pf-red-100;
+@color-pf-white:                 #fff;
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/datatables.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/datatables.less
new file mode 100644
index 0000000..75815ab
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/datatables.less
@@ -0,0 +1,218 @@
+//
+// Datatables
+// --------------------------------------------------
+
+.ColVis_Button {
+  &:active {
+    &:focus {
+      outline: none;
+    }
+  }
+}
+
+.ColVis_catcher {
+  position: absolute;
+  z-index: 999;
+}
+
+.ColVis_collection {
+  background-color: @dropdown-bg;
+  border: 1px solid @dropdown-border;
+  border-radius: @border-radius-base;
+  .box-shadow(0 6px 12px fade(@color-pf-black, 17.5%));
+  background-clip: padding-box;
+  list-style: none;
+  margin: -1px 0 0 0;
+  padding: 5px 10px;
+  width: 150px;
+  z-index: @zindex-dropdown;
+  label {
+    font-weight: normal;
+    margin-bottom: 5px;
+    margin-top: 5px;
+    padding-left: 20px;
+  }
+}
+
+.ColVis_collectionBackground {
+  background-color: @color-pf-white;
+  height: 100%;
+  left: 0;
+  position: fixed;
+  top: 0;
+  width: 100%;
+  z-index: 998;
+}
+
+.dataTables_header {
+  background-color: @color-pf-black-150;
+  border: 1px solid @table-border-color;
+  border-bottom: none;
+  padding: 5px;
+  position: relative;
+  text-align: center;
+  .btn {
+    .box-shadow(none);
+  }
+  .ColVis {
+    position: absolute;
+    right: 5px;
+    text-align: left;
+    top: 5px;
+    + .dataTables_info {
+      padding-right: 30px;
+    }
+  }
+  .dataTables_filter {
+    position: absolute;
+    input {
+      border: 1px solid @color-pf-black-400;
+      height: 24px;
+      @media (max-width: @screen-xs-max) {
+        width: 100px;
+      }
+    }
+  }
+  .dataTables_info {
+    padding: 2px 0;
+    @media (max-width: @screen-xs) {
+     text-align: right;
+    }
+    b {
+      font-weight: bold;
+    }
+  }
+}
+
+.dataTables_footer {
+  background-color: @color-pf-white;
+  border: 1px solid @table-border-color;
+  border-top: none;
+  overflow: hidden;
+}
+
+.dataTables_paginate {
+  background: @color-pf-black-100;
+  float: right;
+  margin: 0;
+  .pagination {
+    float: left;
+    margin: 0;
+    > li {
+      > span {
+        border-color: @color-pf-white @color-pf-black-300 @color-pf-black-150;
+        border-width: 0 1px;
+        font-size: (@font-size-base + 4);
+        font-weight: normal;
+        padding: 0;
+        text-align: center;
+        width: 31px;
+        &:hover,
+        &:focus {
+          .reset-filter();
+        }
+      }
+      &.last > span {
+        border-right: none;
+      }
+      &.disabled > span {
+        background: @color-pf-black-150;
+        border-left-color: @color-pf-black-200;
+        border-right-color: @color-pf-black-200;
+        .reset-filter();
+      }
+    }
+  }
+  .pagination-input {
+    float: left;
+    font-size: @font-size-base;
+    line-height: 1em;
+    padding: 4px 15px 0;
+    text-align: right;
+    .paginate_input {
+      border: 1px solid @color-pf-black-300;
+      .box-shadow(inset 0 1px 1px fade(@color-pf-black, 7.5%));
+      font-size: @font-size-base;
+      font-weight: 600;
+      height: 19px;
+      margin-right: 8px;
+      padding-right: 3px;
+      text-align: right;
+      width: 30px;
+    }
+    .paginate_of {
+      position: relative;
+      b {
+        margin-left: 3px;
+      }
+    }
+  }
+}
+
+.dataTables_wrapper {
+  margin: @line-height-computed 0;
+  @media (max-width: @screen-xs-max) {
+    .table-responsive {
+      margin-bottom: 0;
+    }
+  }
+}
+
+.DTCR_clonedTable {
+  background-color: fade(@color-pf-white, 70%);
+  z-index: 202;
+}
+
+.DTCR_pointer {
+  background-color: @link-color;
+  width: 1px;
+  z-index: 201;
+}
+
+table.datatable {
+  margin-bottom: 0;
+  max-width: none !important;
+  thead {
+    .sorting,
+    .sorting_asc,
+    .sorting_desc,
+    .sorting_asc_disabled,
+    .sorting_desc_disabled {
+      cursor: pointer;
+    }
+    .sorting_asc,
+    .sorting_desc {
+      color: @link-color !important;
+      position: relative;
+      &:after {
+        content: @fa-var-angle-down;
+        font-family: @icon-font-name-fa;
+        font-size: (@font-size-base - 2);
+        font-weight: normal;
+        height: (@font-size-base - 3);
+        left: 7px;
+        line-height: @font-size-base;
+        position: relative;
+        top: 2px;
+        vertical-align: baseline;
+        width: @font-size-base;
+      }
+      &:before {
+        background: @link-color;
+        content: "";
+        height: 2px;
+        position: absolute;
+        left: 0;
+        top: 0;
+        width: 100%;
+      }
+    }
+    .sorting_asc:after {
+      content: @fa-var-angle-up;
+      top: -3px;
+    }
+  }
+  th:active {
+    outline: none;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/dropdowns.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/dropdowns.less
new file mode 100644
index 0000000..8da42a4
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/dropdowns.less
@@ -0,0 +1,215 @@
+//
+// Dropdowns
+// --------------------------------------------------
+
+
+// Dropdown arrow/caret
+// Modified to use Font Awesome's angle-down icon
+.caret {
+  font-family: @icon-font-name-fa;
+  font-weight: normal;
+  height: (@font-size-base - 3);
+  position: relative;
+  vertical-align: baseline;
+  width: @font-size-base;
+  &:before {
+    bottom: 0;
+    content: @fa-var-angle-down;
+    left: 0;
+    line-height: @font-size-base;
+    position: absolute;
+    text-align: center;
+    top: -1px;
+    right: 0;
+  }
+  .dropup & {
+    &:before {
+      content: @fa-var-angle-up;
+    }
+  }
+}
+
+// The dropdown menu (ul)
+.dropdown-menu {
+  // Dividers (basically an hr) within the dropdown
+  .divider {
+    .nav-divider(@dropdown-divider-bg, @dropdown-divider-margin);
+  }
+  // Links within the dropdown menu
+  > li > a {
+    border-color: transparent;
+    border-style: solid;
+    border-width: 1px 0;
+    padding: 1px 10px;
+  }
+}
+
+// Hover/Focus state
+.dropdown-menu > li > a {
+  &:hover,
+  &:focus {
+    border-color: @dropdown-link-hover-border-color;
+    .reset-filter();
+  }
+  &:active {
+    background-color: @dropdown-link-focus-bg;
+    border-color: @dropdown-link-active-border-color;
+    color: @dropdown-link-focus-color !important;
+    .reset-filter();
+  }
+}
+
+// Active state
+.dropdown-menu > .active > a {
+  &,
+  &:hover,
+  &:focus {
+    background-color: @dropdown-link-active-bg !important;
+    border-color: @dropdown-link-active-border-color !important;
+    .reset-filter();
+  }
+}
+
+// Disabled state
+.dropdown-menu > .disabled > a {
+  &,
+  &:hover,
+  &:focus {
+    border-color: transparent;
+  }
+}
+// Nuke hover/focus effects
+.dropdown-menu > .disabled > a {
+  &:hover,
+  &:focus {
+    border-color: transparent;
+  }
+}
+
+// Dropdown section headers
+.dropdown-header {
+  padding-left: 10px;
+  padding-right: 10px;
+  text-transform: uppercase;
+}
+
+// Position Menu closer to button
+.btn-group,
+.dropdown,
+.input-group-btn {
+  > .dropdown-menu {
+    margin-top: -1px;
+  }
+}
+
+// Position Menu closer to button (dropup-menu)
+.dropup .dropdown-menu {
+  margin-bottom: -1px;
+}
+
+// Add back styles for dropdown-submenu
+.dropdown-submenu {
+  position:relative;
+  &:hover {
+    > a {
+      background-color: @dropdown-link-hover-bg;
+      border-color: @dropdown-link-hover-border-color;
+    }
+    > .dropdown-menu {
+      display: block;
+    }
+  }
+  &.pull-left {
+    float: none !important;
+    > .dropdown-menu {
+      left: auto;
+      margin-left: 10px;
+      right: 100%;
+    }
+  }
+  > a {
+    padding-right: 20px !important;
+    &:after {
+      content: @fa-var-angle-right;
+      font-family: @icon-font-name-fa;
+      display: block;
+      position: absolute;
+      right: 10px;
+      top: 2px;
+    }
+  }
+  > .dropdown-menu {
+    left: 100%;
+    margin-top: 0;
+    top: -6px;
+  }
+  .dropup & > .dropdown-menu {
+    bottom: -5px;
+    top: auto;
+  }
+  .open &.active > .dropdown-menu {
+    display: block;
+  }
+}
+
+// Kebab dropmenu
+.dropdown-kebab-pf {
+  .btn-link {
+    color: @gray-darker;
+    font-size: (@font-size-base + 4);
+    line-height: 1;
+    padding: 4px 0;
+    &:active,
+    &:focus,
+    &:hover {
+      color: @link-color;
+    }
+  }
+  .dropdown-menu {
+    left: -15px;
+    margin-top: 11px;
+    &.dropdown-menu-right {
+      left: auto;
+      right: -15px;
+      &:after,
+      &:before {
+        left: auto;
+        right: 6px;
+      }
+    }
+    &:after,
+    &:before {
+      border-bottom-color: @dropdown-border;
+      border-bottom-style: solid;
+      border-bottom-width: 10px;
+      border-left: 10px solid transparent;
+      border-right: 10px solid transparent;
+      content: "";
+      display: inline-block;
+      left: 6px;
+      position: absolute;
+      top: -11px;
+    }
+    &:after {
+      border-bottom-color: @dropdown-bg;
+      top: -10px;
+    }
+  }
+  &.dropup .dropdown-menu {
+    margin-bottom: 11px;
+    margin-top: 0;
+    &:after,
+    &:before {
+      border-bottom: none;
+      border-top-color: @dropdown-border;
+      border-top-style: solid;
+      border-top-width: 10px;
+      bottom: -11px;
+      top: auto;
+    }
+    &:after {
+      border-top-color: @dropdown-bg;
+      bottom: -10px;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/fonts.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/fonts.less
new file mode 100644
index 0000000..bc0abfc
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/fonts.less
@@ -0,0 +1,54 @@
+//
+// Fonts
+// --------------------------------------------------
+
+@font-face {
+  font-family: "Open Sans";
+  font-style: normal;
+  font-weight: 300;
+  src: url("@{font-path}/OpenSans-Light-webfont.eot");
+  src: url("@{font-path}/OpenSans-Light-webfont.eot?#iefix") format("embedded-opentype"),
+       url("@{font-path}/OpenSans-Light-webfont.woff") format("woff"),
+       url("@{font-path}/OpenSans-Light-webfont.ttf") format("truetype"),
+       url("@{font-path}/OpenSans-Light-webfont.svg#OpenSansLight") format("svg");
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: normal;
+  font-weight: 400;
+  src: url("@{font-path}/OpenSans-Regular-webfont.eot");
+  src: url("@{font-path}/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"),
+       url("@{font-path}/OpenSans-Regular-webfont.woff") format("woff"),
+       url("@{font-path}/OpenSans-Regular-webfont.ttf") format("truetype"),
+       url("@{font-path}/OpenSans-Regular-webfont.svg#OpenSansRegular") format("svg");
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: normal;
+  font-weight: 600;
+  src: url("@{font-path}/OpenSans-Semibold-webfont.eot");
+  src: url("@{font-path}/OpenSans-Semibold-webfont.eot?#iefix") format("embedded-opentype"),
+       url("@{font-path}/OpenSans-Semibold-webfont.woff") format("woff"),
+       url("@{font-path}/OpenSans-Semibold-webfont.ttf") format("truetype"),
+       url("@{font-path}/OpenSans-Semibold-webfont.svg#OpenSansSemibold") format("svg");
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: normal;
+  font-weight: 700;
+  src: url("@{font-path}/OpenSans-Bold-webfont.eot");
+  src: url("@{font-path}/OpenSans-Bold-webfont.eot?#iefix") format("embedded-opentype"),
+       url("@{font-path}/OpenSans-Bold-webfont.woff") format("woff"),
+       url("@{font-path}/OpenSans-Bold-webfont.ttf") format("truetype"),
+       url("@{font-path}/OpenSans-Bold-webfont.svg#OpenSansBold") format("svg");
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: normal;
+  font-weight: 800;
+  src: url("@{font-path}/OpenSans-ExtraBold-webfont.eot");
+  src: url("@{font-path}/OpenSans-ExtraBold-webfont.eot?#iefix") format("embedded-opentype"),
+       url("@{font-path}/OpenSans-ExtraBold-webfont.woff") format("woff"),
+       url("@{font-path}/OpenSans-ExtraBold-webfont.ttf") format("truetype"),
+       url("@{font-path}/OpenSans-ExtraBold-webfont.svg#OpenSansExtrabold") format("svg");
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/footer.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/footer.less
new file mode 100644
index 0000000..b421e7c
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/footer.less
@@ -0,0 +1,19 @@
+//
+// Footer
+// --------------------------------------------------
+
+.footer-pf-alt, .footer-pf {
+  background-color: @footer-pf-bg-color;
+  color: @gray-light;
+  font-size: @font-size-small;
+  line-height: 17px; // whole px unit to avoid height differences among browsers
+  padding-left: @footer-pf-padding-left;
+  padding-top: @footer-pf-padding-top;
+  .layout-pf-alt-fixed-with-footer &,  .layout-pf-fixed-with-footer & {
+    bottom: 0;
+    left: 0;
+    position: fixed;
+    right: 0;
+    z-index: @zindex-navbar-fixed;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/forms.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/forms.less
new file mode 100644
index 0000000..d18adfd
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/forms.less
@@ -0,0 +1,61 @@
+//
+// Forms
+// --------------------------------------------------
+.chars-remaining-pf span {
+  font-weight: 600;
+  padding-right: 5px;
+}
+
+.chars-warn-remaining-pf {
+  color: @brand-danger;
+}
+
+.form-control {
+  &[disabled],
+  &[readonly],
+  fieldset[disabled] & {
+    .box-shadow(none);
+    color: @color-pf-black-500;
+    &:hover {
+      border-color: @input-border;
+    }
+  }
+  &:hover {
+    border-color: @input-border-hover;
+    .has-error & {
+      border-color: darken(@state-danger-text, 10%);
+    }
+    .has-success & {
+      border-color: darken(@state-success-text, 10%);
+    }
+    .has-warning & {
+      border-color: darken(@state-warning-text, 10%);
+    }
+  }
+}
+
+.has-error, .has-success, .has-warning {
+  .checkbox,
+  .checkbox-inline,
+  .control-label,
+  .radio,
+  .radio-inline,
+  &.checkbox label,
+  &.checkbox-inline label,
+  &.radio label,
+  &.radio-inline label {
+    color: @text-color;
+  }
+}
+
+.help-block {
+  margin-bottom: 0px;
+}
+
+.input-group .input-group-btn .btn {
+  .box-shadow(none);
+}
+
+label {
+  font-weight: 600;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/icons.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/icons.less
new file mode 100644
index 0000000..1ccfba0
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/icons.less
@@ -0,0 +1,215 @@
+//
+// Icons
+// --------------------------------------------------
+// Custom icons and selections from IcoMoon - Free (http://icomoon.io/#icons)
+
+@font-face {
+  font-family: "@{icon-font-name-pf}";
+  src:url("@{font-path}/@{icon-font-name-pf}.eot");
+  src:url("@{font-path}/@{icon-font-name-pf}.eot?#iefix") format("embedded-opentype"),
+    url("@{font-path}/@{icon-font-name-pf}.ttf") format("truetype"),
+    url("@{font-path}/@{icon-font-name-pf}.woff") format("woff"),
+    url("@{font-path}/@{icon-font-name-pf}.svg#@{icon-font-name-pf}") format("svg");
+  font-weight: normal;
+  font-style: normal;
+}
+
+[class^="@{icon-prefix}-"],
+[class*=" @{icon-prefix}-"] {
+  display: inline-block;
+  font-family: "@{icon-font-name-pf}";
+  font-style: normal;
+  font-variant: normal;
+  font-weight: normal;
+  line-height: 1;
+  speak: none;
+  text-transform: none;
+  /* Better Font Rendering =========== */
+  -moz-osx-font-smoothing: grayscale;
+  -webkit-font-smoothing: antialiased;
+}
+.@{icon-prefix}-middleware:before {
+  content: @pficon-var-middleware;
+}
+.@{icon-prefix}-add-circle-o:before {
+  content: @pficon-var-add-circle-o;
+}
+.@{icon-prefix}-build:before {
+  content: @pficon-var-build;
+}
+.@{icon-prefix}-builder-image:before {
+  content: @pficon-var-builder-image;
+}
+.@{icon-prefix}-bundle:before {
+  content: @pficon-var-bundle;
+}
+.@{icon-prefix}-blueprint:before {
+  content: @pficon-var-blueprint;
+}
+.@{icon-prefix}-close:before {
+  content: @pficon-var-close;
+}
+.@{icon-prefix}-cloud-security:before {
+  content: @pficon-var-cloud-security;
+}
+.@{icon-prefix}-cloud-tenant:before {
+  content: @pficon-var-cloud-tenant;
+}
+.@{icon-prefix}-cluster:before {
+  content: @pficon-var-cluster;
+}
+.@{icon-prefix}-container-node:before {
+  content: @pficon-var-container-node;
+}
+.@{icon-prefix}-cpu:before {
+  content: @pficon-var-cpu;
+}
+.@{icon-prefix}-delete:before {
+  content: @pficon-var-delete;
+}
+.@{icon-prefix}-edit:before {
+  content: @pficon-var-edit;
+}
+.@{icon-prefix}-enterprise:before {
+  content: @pficon-var-enterprise;
+}
+.@{icon-prefix}-error-circle-o:before {
+  color: @brand-danger;
+  content: @pficon-var-error-circle-o;
+}
+.@{icon-prefix}-export:before {
+  content: @pficon-var-export;
+}
+.@{icon-prefix}-flag:before,
+.@{icon-prefix}-messages:before { // class name deprecated
+  content: @pficon-var-flag;
+}
+.@{icon-prefix}-flavor:before {
+  content: @pficon-var-flavor;
+}
+.@{icon-prefix}-folder-close:before {
+  content: @pficon-var-folder-close;
+}
+.@{icon-prefix}-folder-open:before {
+  content: @pficon-var-folder-open;
+}
+.@{icon-prefix}-help:before {
+  content: @pficon-var-help;
+}
+.@{icon-prefix}-history:before {
+  content: @pficon-var-history;
+}
+.@{icon-prefix}-home:before {
+  content: @pficon-var-home;
+}
+.@{icon-prefix}-image:before {
+  content: @pficon-var-image;
+}
+.@{icon-prefix}-import:before {
+  content: @pficon-var-import;
+}
+.@{icon-prefix}-info:before {
+  content: @pficon-var-info;
+}
+.@{icon-prefix}-memory:before {
+  content: @pficon-var-memory;
+}
+.@{icon-prefix}-network:before {
+  content: @pficon-var-network;
+}
+.@{icon-prefix}-ok:before {
+  color: @brand-success;
+  content: @pficon-var-ok;
+}
+.@{icon-prefix}-print:before {
+  content: @pficon-var-print;
+}
+.@{icon-prefix}-private:before {
+  content: @pficon-var-private;
+}
+.@{icon-prefix}-project:before {
+  content: @pficon-var-project;
+}
+.@{icon-prefix}-refresh:before, // class name deprecated
+.@{icon-prefix}-restart:before {
+  content: @pficon-var-restart;
+}
+.@{icon-prefix}-regions:before {
+  content: @pficon-var-regions;
+}
+.@{icon-prefix}-registry:before {
+  content: @pficon-var-registry;
+}
+.@{icon-prefix}-replicator:before {
+  content: @pficon-var-replicator;
+}
+.@{icon-prefix}-repository:before {
+  content: @pficon-var-repository;
+}
+.@{icon-prefix}-resource-pool:before {
+  content: @pficon-var-resource-pool;
+}
+.@{icon-prefix}-resources-almost-full:before {
+  content: @pficon-var-resources-almost-full;
+}
+.@{icon-prefix}-resources-full:before {
+  content: @pficon-var-resources-full;
+}
+.@{icon-prefix}-route:before {
+  content: @pficon-var-route;
+}
+.@{icon-prefix}-running:before {
+  content: @pficon-var-running;
+}
+.@{icon-prefix}-save:before {
+  content: @pficon-var-save;
+}
+.@{icon-prefix}-screen:before {
+  content: @pficon-var-screen;
+}
+.@{icon-prefix}-server:before {
+  content: @pficon-var-server;
+}
+.@{icon-prefix}-service:before {
+  content: @pficon-var-service;
+}
+.@{icon-prefix}-settings:before {
+  content: @pficon-var-settings;
+}
+.@{icon-prefix}-storage-domain:before {
+  content: @pficon-var-storage-domain;
+}
+.@{icon-prefix}-tenant:before {
+  content: @pficon-var-tenant;
+}
+.@{icon-prefix}-thumb-tack-o:before {
+  content: @pficon-var-thumb-tack-o;
+}
+.@{icon-prefix}-topology:before {
+  content: @pficon-var-topology;
+}
+.@{icon-prefix}-trend-down:before {
+  content: @pficon-var-trend-down;
+}
+.@{icon-prefix}-trend-up:before {
+  content: @pficon-var-trend-up;
+}
+.@{icon-prefix}-user:before {
+  content: @pficon-var-user;
+}
+.@{icon-prefix}-users:before {
+  content: @pficon-var-users;
+}
+.@{icon-prefix}-virtual-machine:before {
+  content: @pficon-var-virtual-machine;
+}
+.@{icon-prefix}-volume:before {
+  content: @pficon-var-volume;
+}
+.@{icon-prefix}-warning-triangle-o:before {
+  color: @brand-warning;
+  content: @pficon-var-warning-triangle-o;
+}
+.@{icon-prefix}-zone:before {
+  content: @pficon-var-zone;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/infotip.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/infotip.less
new file mode 100644
index 0000000..966b751
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/infotip.less
@@ -0,0 +1,145 @@
+//
+// Info Tip
+// --------------------------------------------------
+
+// Overwrites for navbar.less
+.navbar-nav > li > .dropdown-menu.infotip {
+  border-top-width: 1px !important;
+  margin-top: @popover-arrow-width;
+}
+
+// Overwrites for PatternFly - navbar.less
+@media (max-width: @grid-float-breakpoint-max) {
+  .navbar-pf .navbar-nav .open .dropdown-menu.infotip {
+    background-color: @color-pf-white !important;
+    margin-top: 0;
+  }
+}
+
+// Extends "dropdown-menu"
+.infotip {
+  min-width: 235px;
+  padding: 0;
+  .list-group {
+    border-top: 0;
+    margin: 0;
+    padding: 8px 0;
+    .list-group-item {
+      border: none;
+      margin: 0 15px 0 34px;
+      padding: 5px 0;
+      > .i {
+        color: @gray-pf;
+        font-size: 13px;
+        left: -20px;
+        position: absolute;
+        top: 8px;
+      }
+      > a {
+        color: @gray-pf;
+        line-height: 13px;
+      }
+      > .close {
+        float: right;
+      }
+    }
+  }
+  .footer {
+    background-color: @color-pf-black-150;
+    padding: 6px 15px;
+    a:hover {
+      color: @link-color;
+    }
+  }
+}
+
+// Arrows (Copy from popovers.less)
+//
+// .arrow is outer, .arrow:after is inner
+
+.infotip .arrow {
+  &,
+  &:after {
+    border-color: transparent;
+    border-style: solid;
+    display: block;
+    height: 0;
+    position: absolute;
+    width: 0;
+  }
+}
+.infotip .arrow {
+  border-width: @popover-arrow-outer-width;
+}
+.infotip .arrow:after {
+  border-width: @popover-arrow-width;
+  content: "";
+}
+
+.infotip {
+  &.bottom .arrow,
+  &.bottom-left .arrow,
+  &.bottom-right .arrow {
+    border-bottom-color: @popover-arrow-outer-color;
+    border-top-width: 0;
+    left: 50%;
+    margin-left: -@popover-arrow-outer-width;
+    top: -@popover-arrow-outer-width;
+    &:after {
+      border-top-width: 0;
+      border-bottom-color: @popover-arrow-color;
+      content: " ";
+      margin-left: -@popover-arrow-width;
+      top: 1px;
+    }
+  }
+  &.bottom-left .arrow {
+    left: 20%;
+  }
+  // Default:
+  &.bottom-right .arrow {
+    left: 80%;
+  }
+  &.top .arrow {
+    border-bottom-width: 0;
+    border-top-color: @popover-arrow-outer-color;
+    bottom: -@popover-arrow-outer-width;
+    left: 50%;
+    margin-left: -@popover-arrow-outer-width;
+    &:after {
+      border-bottom-width: 0;
+      border-top-color: @color-pf-black-150;
+      bottom: 1px;
+      content: " ";
+      margin-left: -@popover-arrow-width;
+    }
+  }
+  &.right .arrow {
+    border-left-width: 0;
+    border-right-color: @popover-arrow-outer-color;
+    left: -@popover-arrow-outer-width;
+    margin-top: -@popover-arrow-outer-width;
+    top: 50%;
+    &:after {
+      bottom: -@popover-arrow-width;
+      border-left-width: 0;
+      border-right-color: @popover-arrow-color;
+      content: " ";
+      left: 1px;
+    }
+  }
+  &.left .arrow {
+    border-left-color: @popover-arrow-outer-color;
+    border-right-width: 0;
+    margin-top: -@popover-arrow-outer-width;
+    right: -@popover-arrow-outer-width;
+    top: 50%;
+    &:after {
+      border-left-color: @popover-arrow-color;
+      border-right-width: 0;
+      bottom: -@popover-arrow-width;
+      content: " ";
+      right: 1px;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/labels.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/labels.less
new file mode 100644
index 0000000..af6ff09
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/labels.less
@@ -0,0 +1,17 @@
+//
+// Labels
+// --------------------------------------------------
+
+.label {
+  border-radius: 0;
+  font-size: 100%;
+  font-weight: 600;
+  h1 &,
+  h2 &,
+  h3 &,
+  h4 &,
+  h5 &,
+  h6 & {
+    font-size: 75%;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/layouts.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/layouts.less
new file mode 100644
index 0000000..1b89089
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/layouts.less
@@ -0,0 +1,140 @@
+//
+// Layouts
+// --------------------------------------------------
+.layout-pf {
+  &,
+  & body {
+    min-height: 100%;
+  }
+  &.layout-pf-fixed {
+    &.transitions .container-pf-nav-pf-vertical {
+      transition: @flyout-transition-pf;
+    }
+    body {
+      padding-top: @navbar-pf-height; // make space for the navbar
+    }
+    .navbar-pf {
+      left: 0;
+      position: fixed;
+      top:0;
+      right: 0;
+      z-index: 1030;
+    }
+    .container-pf-nav-pf-vertical {
+      margin-left: @nav-pf-vertical-width;
+      &.nav-pf-vertical-with-badges {
+        margin-left: @nav-pf-vertical-badges-width;
+      }
+      &.collapsed-nav {
+        margin-left: @nav-pf-vertical-collapsed-width;
+        &.hidden-icons-pf {
+          margin-left: 0;
+        }
+      }
+      &.hidden-nav {
+        margin-left: 0; // remove space as left nav is hidden
+      }
+      &.hide-nav-pf {
+        margin-left: 0 !important;
+      }
+      &.collapsed-secondary-nav-pf, &.collapsed-tertiary-nav-pf {
+        margin-left: @nav-pf-vertical-width;
+        &.nav-pf-vertical-with-badges {
+          margin-left: @nav-pf-vertical-badges-width;
+        }
+      }
+      &.nav-pf-persistent-secondary.secondary-visible-pf {
+        @media (min-width: 1200px) {
+          margin-left: (@nav-pf-vertical-width + @nav-pf-vertical-width);
+          &.nav-pf-vertical-with-badges {
+            margin-left: (@nav-pf-vertical-badges-width + @nav-pf-vertical-badges-width);
+          }
+          &.hidden-nav {
+            margin-left: 0; // remove space as left nav is hidden
+          }
+          &.collapsed-secondary-nav-pf {
+            margin-left: @nav-pf-vertical-width;
+            &.nav-pf-vertical-with-badges {
+              margin-left: @nav-pf-vertical-badges-width;
+            }
+          }
+          &.collapsed-tertiary-nav-pf {
+            margin-left: @nav-pf-vertical-width;
+            &.nav-pf-vertical-with-badges {
+              margin-left: @nav-pf-vertical-badges-width;
+            }
+          }
+          &.collapsed-nav {
+            margin-left: (@nav-pf-vertical-collapsed-width + @nav-pf-vertical-width);
+            &.nav-pf-vertical-with-badges {
+              margin-left: (@nav-pf-vertical-collapsed-width + @nav-pf-vertical-badges-width);
+            }
+            &.collapsed-secondary-nav-pf {
+              margin-left: @nav-pf-vertical-width;
+              &.nav-pf-vertical-with-badges {
+                margin-left: @nav-pf-vertical-badges-width;
+              }
+            }
+            &.collapsed-tertiary-nav-pf {
+              margin-left: @nav-pf-vertical-width;
+              &.nav-pf-vertical-with-badges {
+                margin-left: @nav-pf-vertical-badges-width;
+              }
+            }
+            &.hidden-icons-pf {
+              margin-left: 0;
+            }
+          }
+        }
+      }
+    }
+  }
+  &.layout-pf-fixed-with-footer {
+    body {
+      padding-bottom: @footer-pf-height;
+    }
+  }
+}
+.layout-pf-alt {
+  &,
+  & body {
+    min-height: 100%;
+  }
+  &.layout-pf-alt-fixed {
+    &.layout-pf-alt-fixed-inner-scroll {
+      &,
+      & body {
+        height: 100%;
+        min-height: 0;
+      }
+      .container-pf-alt-nav-pf-vertical-alt {
+        height: 100%;
+        overflow: auto;
+        &.container-cards-pf {
+          margin-top: 0;
+          padding-top: (@grid-gutter-width/2);
+        }
+      }
+    }
+    &.transitions .container-pf-alt-nav-pf-vertical-alt {
+      transition: @flyout-transition-pf;
+    }
+    body {
+      padding-top: @navbar-pf-alt-height; // make space for the navbar
+    }
+    .container-pf-alt-nav-pf-vertical-alt {
+      margin-left: (@nav-pf-vertical-alt-width);
+      &.collapsed-nav {
+        margin-left: (@nav-pf-vertical-alt-collapsed-width); // adjust space for the collapsed left nav
+      }
+      &.hidden-nav {
+        margin-left: 0; // remove space as left nav is hidden
+      }
+    }
+  }
+  &.layout-pf-alt-fixed-with-footer {
+    body {
+      padding-bottom: @footer-pf-alt-height;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/alerts.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/alerts.less
new file mode 100644
index 0000000..c4199db
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/alerts.less
@@ -0,0 +1,73 @@
+//
+// Alerts
+// --------------------------------------------------
+
+
+// Base styles
+// -------------------------
+
+.alert {
+  padding: @alert-padding;
+  margin-bottom: @line-height-computed;
+  border: 1px solid transparent;
+  border-radius: @alert-border-radius;
+
+  // Headings for larger alerts
+  h4 {
+    margin-top: 0;
+    // Specified for the h4 to prevent conflicts of changing @headings-color
+    color: inherit;
+  }
+
+  // Provide class for links that match alerts
+  .alert-link {
+    font-weight: @alert-link-font-weight;
+  }
+
+  // Improve alignment and spacing of inner content
+  > p,
+  > ul {
+    margin-bottom: 0;
+  }
+
+  > p + p {
+    margin-top: 5px;
+  }
+}
+
+// Dismissible alerts
+//
+// Expand the right padding and account for the close button's positioning.
+
+.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.
+.alert-dismissible {
+  padding-right: (@alert-padding + 20);
+
+  // Adjust close link position
+  .close {
+    position: relative;
+    top: -2px;
+    right: -21px;
+    color: inherit;
+  }
+}
+
+// Alternate styles
+//
+// Generate contextual modifier classes for colorizing the alert.
+
+.alert-success {
+  .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);
+}
+
+.alert-info {
+  .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);
+}
+
+.alert-warning {
+  .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);
+}
+
+.alert-danger {
+  .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/badges.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/badges.less
new file mode 100644
index 0000000..6ee16dc
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/badges.less
@@ -0,0 +1,66 @@
+//
+// Badges
+// --------------------------------------------------
+
+
+// Base class
+.badge {
+  display: inline-block;
+  min-width: 10px;
+  padding: 3px 7px;
+  font-size: @font-size-small;
+  font-weight: @badge-font-weight;
+  color: @badge-color;
+  line-height: @badge-line-height;
+  vertical-align: middle;
+  white-space: nowrap;
+  text-align: center;
+  background-color: @badge-bg;
+  border-radius: @badge-border-radius;
+
+  // Empty badges collapse automatically (not available in IE8)
+  &:empty {
+    display: none;
+  }
+
+  // Quick fix for badges in buttons
+  .btn & {
+    position: relative;
+    top: -1px;
+  }
+
+  .btn-xs &,
+  .btn-group-xs > .btn & {
+    top: 0;
+    padding: 1px 5px;
+  }
+
+  // Hover state, but only for links
+  a& {
+    &:hover,
+    &:focus {
+      color: @badge-link-hover-color;
+      text-decoration: none;
+      cursor: pointer;
+    }
+  }
+
+  // Account for badges in navs
+  .list-group-item.active > &,
+  .nav-pills > .active > a > & {
+    color: @badge-active-color;
+    background-color: @badge-active-bg;
+  }
+
+  .list-group-item > & {
+    float: right;
+  }
+
+  .list-group-item > & + & {
+    margin-right: 5px;
+  }
+
+  .nav-pills > li > a > & {
+    margin-left: 3px;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/bootstrap.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/bootstrap.less
new file mode 100644
index 0000000..f0aa08f
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/bootstrap.less
@@ -0,0 +1,56 @@
+/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+
+// Core variables and mixins
+@import "variables.less";
+@import "mixins.less";
+
+// Reset and dependencies
+@import "normalize.less";
+@import "print.less";
+@import "glyphicons.less";
+
+// Core CSS
+@import "scaffolding.less";
+@import "type.less";
+@import "code.less";
+@import "grid.less";
+@import "tables.less";
+@import "forms.less";
+@import "buttons.less";
+
+// Components
+@import "component-animations.less";
+@import "dropdowns.less";
+@import "button-groups.less";
+@import "input-groups.less";
+@import "navs.less";
+@import "navbar.less";
+@import "breadcrumbs.less";
+@import "pagination.less";
+@import "pager.less";
+@import "labels.less";
+@import "badges.less";
+@import "jumbotron.less";
+@import "thumbnails.less";
+@import "alerts.less";
+@import "progress-bars.less";
+@import "media.less";
+@import "list-group.less";
+@import "panels.less";
+@import "responsive-embed.less";
+@import "wells.less";
+@import "close.less";
+
+// Components w/ JavaScript
+@import "modals.less";
+@import "tooltip.less";
+@import "popovers.less";
+@import "carousel.less";
+
+// Utility classes
+@import "utilities.less";
+@import "responsive-utilities.less";
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/breadcrumbs.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/breadcrumbs.less
new file mode 100644
index 0000000..cb01d50
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/breadcrumbs.less
@@ -0,0 +1,26 @@
+//
+// Breadcrumbs
+// --------------------------------------------------
+
+
+.breadcrumb {
+  padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;
+  margin-bottom: @line-height-computed;
+  list-style: none;
+  background-color: @breadcrumb-bg;
+  border-radius: @border-radius-base;
+
+  > li {
+    display: inline-block;
+
+    + li:before {
+      content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
+      padding: 0 5px;
+      color: @breadcrumb-color;
+    }
+  }
+
+  > .active {
+    color: @breadcrumb-active-color;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/button-groups.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/button-groups.less
new file mode 100644
index 0000000..16db0c6
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/button-groups.less
@@ -0,0 +1,244 @@
+//
+// Button groups
+// --------------------------------------------------
+
+// Make the div behave like a button
+.btn-group,
+.btn-group-vertical {
+  position: relative;
+  display: inline-block;
+  vertical-align: middle; // match .btn alignment given font-size hack above
+  > .btn {
+    position: relative;
+    float: left;
+    // Bring the "active" button to the front
+    &:hover,
+    &:focus,
+    &:active,
+    &.active {
+      z-index: 2;
+    }
+  }
+}
+
+// Prevent double borders when buttons are next to each other
+.btn-group {
+  .btn + .btn,
+  .btn + .btn-group,
+  .btn-group + .btn,
+  .btn-group + .btn-group {
+    margin-left: -1px;
+  }
+}
+
+// Optional: Group multiple button groups together for a toolbar
+.btn-toolbar {
+  margin-left: -5px; // Offset the first child's margin
+  &:extend(.clearfix all);
+
+  .btn,
+  .btn-group,
+  .input-group {
+    float: left;
+  }
+  > .btn,
+  > .btn-group,
+  > .input-group {
+    margin-left: 5px;
+  }
+}
+
+.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
+  border-radius: 0;
+}
+
+// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match
+.btn-group > .btn:first-child {
+  margin-left: 0;
+  &:not(:last-child):not(.dropdown-toggle) {
+    .border-right-radius(0);
+  }
+}
+// Need .dropdown-toggle since :last-child doesn't apply, given that a .dropdown-menu is used immediately after it
+.btn-group > .btn:last-child:not(:first-child),
+.btn-group > .dropdown-toggle:not(:first-child) {
+  .border-left-radius(0);
+}
+
+// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)
+.btn-group > .btn-group {
+  float: left;
+}
+.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
+  border-radius: 0;
+}
+.btn-group > .btn-group:first-child:not(:last-child) {
+  > .btn:last-child,
+  > .dropdown-toggle {
+    .border-right-radius(0);
+  }
+}
+.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
+  .border-left-radius(0);
+}
+
+// On active and open, don't show outline
+.btn-group .dropdown-toggle:active,
+.btn-group.open .dropdown-toggle {
+  outline: 0;
+}
+
+
+// Sizing
+//
+// Remix the default button sizing classes into new ones for easier manipulation.
+
+.btn-group-xs > .btn { &:extend(.btn-xs); }
+.btn-group-sm > .btn { &:extend(.btn-sm); }
+.btn-group-lg > .btn { &:extend(.btn-lg); }
+
+
+// Split button dropdowns
+// ----------------------
+
+// Give the line between buttons some depth
+.btn-group > .btn + .dropdown-toggle {
+  padding-left: 8px;
+  padding-right: 8px;
+}
+.btn-group > .btn-lg + .dropdown-toggle {
+  padding-left: 12px;
+  padding-right: 12px;
+}
+
+// The clickable button for toggling the menu
+// Remove the gradient and set the same inset shadow as the :active state
+.btn-group.open .dropdown-toggle {
+  .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
+
+  // Show no shadow for `.btn-link` since it has no other button styles.
+  &.btn-link {
+    .box-shadow(none);
+  }
+}
+
+
+// Reposition the caret
+.btn .caret {
+  margin-left: 0;
+}
+// Carets in other button sizes
+.btn-lg .caret {
+  border-width: @caret-width-large @caret-width-large 0;
+  border-bottom-width: 0;
+}
+// Upside down carets for .dropup
+.dropup .btn-lg .caret {
+  border-width: 0 @caret-width-large @caret-width-large;
+}
+
+
+// Vertical button groups
+// ----------------------
+
+.btn-group-vertical {
+  > .btn,
+  > .btn-group,
+  > .btn-group > .btn {
+    display: block;
+    float: none;
+    width: 100%;
+    max-width: 100%;
+  }
+
+  // Clear floats so dropdown menus can be properly placed
+  > .btn-group {
+    &:extend(.clearfix all);
+    > .btn {
+      float: none;
+    }
+  }
+
+  > .btn + .btn,
+  > .btn + .btn-group,
+  > .btn-group + .btn,
+  > .btn-group + .btn-group {
+    margin-top: -1px;
+    margin-left: 0;
+  }
+}
+
+.btn-group-vertical > .btn {
+  &:not(:first-child):not(:last-child) {
+    border-radius: 0;
+  }
+  &:first-child:not(:last-child) {
+    .border-top-radius(@btn-border-radius-base);
+    .border-bottom-radius(0);
+  }
+  &:last-child:not(:first-child) {
+    .border-top-radius(0);
+    .border-bottom-radius(@btn-border-radius-base);
+  }
+}
+.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
+  border-radius: 0;
+}
+.btn-group-vertical > .btn-group:first-child:not(:last-child) {
+  > .btn:last-child,
+  > .dropdown-toggle {
+    .border-bottom-radius(0);
+  }
+}
+.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
+  .border-top-radius(0);
+}
+
+
+// Justified button groups
+// ----------------------
+
+.btn-group-justified {
+  display: table;
+  width: 100%;
+  table-layout: fixed;
+  border-collapse: separate;
+  > .btn,
+  > .btn-group {
+    float: none;
+    display: table-cell;
+    width: 1%;
+  }
+  > .btn-group .btn {
+    width: 100%;
+  }
+
+  > .btn-group .dropdown-menu {
+    left: auto;
+  }
+}
+
+
+// Checkbox and radio options
+//
+// In order to support the browser's form validation feedback, powered by the
+// `required` attribute, we have to "hide" the inputs via `clip`. We cannot use
+// `display: none;` or `visibility: hidden;` as that also hides the popover.
+// Simply visually hiding the inputs via `opacity` would leave them clickable in
+// certain cases which is prevented by using `clip` and `pointer-events`.
+// This way, we ensure a DOM element is visible to position the popover from.
+//
+// See https://github.com/twbs/bootstrap/pull/12794 and
+// https://github.com/twbs/bootstrap/pull/14559 for more information.
+
+[data-toggle="buttons"] {
+  > .btn,
+  > .btn-group > .btn {
+    input[type="radio"],
+    input[type="checkbox"] {
+      position: absolute;
+      clip: rect(0,0,0,0);
+      pointer-events: none;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/buttons.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/buttons.less
new file mode 100644
index 0000000..9cbb8f4
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/buttons.less
@@ -0,0 +1,166 @@
+//
+// Buttons
+// --------------------------------------------------
+
+
+// Base styles
+// --------------------------------------------------
+
+.btn {
+  display: inline-block;
+  margin-bottom: 0; // For input.btn
+  font-weight: @btn-font-weight;
+  text-align: center;
+  vertical-align: middle;
+  touch-action: manipulation;
+  cursor: pointer;
+  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
+  border: 1px solid transparent;
+  white-space: nowrap;
+  .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);
+  .user-select(none);
+
+  &,
+  &:active,
+  &.active {
+    &:focus,
+    &.focus {
+      .tab-focus();
+    }
+  }
+
+  &:hover,
+  &:focus,
+  &.focus {
+    color: @btn-default-color;
+    text-decoration: none;
+  }
+
+  &:active,
+  &.active {
+    outline: 0;
+    background-image: none;
+    .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
+  }
+
+  &.disabled,
+  &[disabled],
+  fieldset[disabled] & {
+    cursor: @cursor-disabled;
+    .opacity(.65);
+    .box-shadow(none);
+  }
+
+  a& {
+    &.disabled,
+    fieldset[disabled] & {
+      pointer-events: none; // Future-proof disabling of clicks on `<a>` elements
+    }
+  }
+}
+
+
+// Alternate buttons
+// --------------------------------------------------
+
+.btn-default {
+  .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);
+}
+.btn-primary {
+  .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);
+}
+// Success appears as green
+.btn-success {
+  .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);
+}
+// Info appears as blue-green
+.btn-info {
+  .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);
+}
+// Warning appears as orange
+.btn-warning {
+  .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);
+}
+// Danger and error appear as red
+.btn-danger {
+  .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);
+}
+
+
+// Link buttons
+// -------------------------
+
+// Make a button look and behave like a link
+.btn-link {
+  color: @link-color;
+  font-weight: normal;
+  border-radius: 0;
+
+  &,
+  &:active,
+  &.active,
+  &[disabled],
+  fieldset[disabled] & {
+    background-color: transparent;
+    .box-shadow(none);
+  }
+  &,
+  &:hover,
+  &:focus,
+  &:active {
+    border-color: transparent;
+  }
+  &:hover,
+  &:focus {
+    color: @link-hover-color;
+    text-decoration: @link-hover-decoration;
+    background-color: transparent;
+  }
+  &[disabled],
+  fieldset[disabled] & {
+    &:hover,
+    &:focus {
+      color: @btn-link-disabled-color;
+      text-decoration: none;
+    }
+  }
+}
+
+
+// Button Sizes
+// --------------------------------------------------
+
+.btn-lg {
+  // line-height: ensure even-numbered height of button next to large input
+  .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @btn-border-radius-large);
+}
+.btn-sm {
+  // line-height: ensure proper height of button next to small input
+  .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);
+}
+.btn-xs {
+  .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);
+}
+
+
+// Block button
+// --------------------------------------------------
+
+.btn-block {
+  display: block;
+  width: 100%;
+}
+
+// Vertically space out multiple block buttons
+.btn-block + .btn-block {
+  margin-top: 5px;
+}
+
+// Specificity overrides
+input[type="submit"],
+input[type="reset"],
+input[type="button"] {
+  &.btn-block {
+    width: 100%;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/carousel.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/carousel.less
new file mode 100644
index 0000000..252011e
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/carousel.less
@@ -0,0 +1,270 @@
+//
+// Carousel
+// --------------------------------------------------
+
+
+// Wrapper for the slide container and indicators
+.carousel {
+  position: relative;
+}
+
+.carousel-inner {
+  position: relative;
+  overflow: hidden;
+  width: 100%;
+
+  > .item {
+    display: none;
+    position: relative;
+    .transition(.6s ease-in-out left);
+
+    // Account for jankitude on images
+    > img,
+    > a > img {
+      &:extend(.img-responsive);
+      line-height: 1;
+    }
+
+    // WebKit CSS3 transforms for supported devices
+    @media all and (transform-3d), (-webkit-transform-3d) {
+      .transition-transform(~'0.6s ease-in-out');
+      .backface-visibility(~'hidden');
+      .perspective(1000px);
+
+      &.next,
+      &.active.right {
+        .translate3d(100%, 0, 0);
+        left: 0;
+      }
+      &.prev,
+      &.active.left {
+        .translate3d(-100%, 0, 0);
+        left: 0;
+      }
+      &.next.left,
+      &.prev.right,
+      &.active {
+        .translate3d(0, 0, 0);
+        left: 0;
+      }
+    }
+  }
+
+  > .active,
+  > .next,
+  > .prev {
+    display: block;
+  }
+
+  > .active {
+    left: 0;
+  }
+
+  > .next,
+  > .prev {
+    position: absolute;
+    top: 0;
+    width: 100%;
+  }
+
+  > .next {
+    left: 100%;
+  }
+  > .prev {
+    left: -100%;
+  }
+  > .next.left,
+  > .prev.right {
+    left: 0;
+  }
+
+  > .active.left {
+    left: -100%;
+  }
+  > .active.right {
+    left: 100%;
+  }
+
+}
+
+// Left/right controls for nav
+// ---------------------------
+
+.carousel-control {
+  position: absolute;
+  top: 0;
+  left: 0;
+  bottom: 0;
+  width: @carousel-control-width;
+  .opacity(@carousel-control-opacity);
+  font-size: @carousel-control-font-size;
+  color: @carousel-control-color;
+  text-align: center;
+  text-shadow: @carousel-text-shadow;
+  background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug
+  // We can't have this transition here because WebKit cancels the carousel
+  // animation if you trip this while in the middle of another animation.
+
+  // Set gradients for backgrounds
+  &.left {
+    #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));
+  }
+  &.right {
+    left: auto;
+    right: 0;
+    #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));
+  }
+
+  // Hover/focus state
+  &:hover,
+  &:focus {
+    outline: 0;
+    color: @carousel-control-color;
+    text-decoration: none;
+    .opacity(.9);
+  }
+
+  // Toggles
+  .icon-prev,
+  .icon-next,
+  .glyphicon-chevron-left,
+  .glyphicon-chevron-right {
+    position: absolute;
+    top: 50%;
+    margin-top: -10px;
+    z-index: 5;
+    display: inline-block;
+  }
+  .icon-prev,
+  .glyphicon-chevron-left {
+    left: 50%;
+    margin-left: -10px;
+  }
+  .icon-next,
+  .glyphicon-chevron-right {
+    right: 50%;
+    margin-right: -10px;
+  }
+  .icon-prev,
+  .icon-next {
+    width:  20px;
+    height: 20px;
+    line-height: 1;
+    font-family: serif;
+  }
+
+
+  .icon-prev {
+    &:before {
+      content: '\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)
+    }
+  }
+  .icon-next {
+    &:before {
+      content: '\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)
+    }
+  }
+}
+
+// Optional indicator pips
+//
+// Add an unordered list with the following class and add a list item for each
+// slide your carousel holds.
+
+.carousel-indicators {
+  position: absolute;
+  bottom: 10px;
+  left: 50%;
+  z-index: 15;
+  width: 60%;
+  margin-left: -30%;
+  padding-left: 0;
+  list-style: none;
+  text-align: center;
+
+  li {
+    display: inline-block;
+    width:  10px;
+    height: 10px;
+    margin: 1px;
+    text-indent: -999px;
+    border: 1px solid @carousel-indicator-border-color;
+    border-radius: 10px;
+    cursor: pointer;
+
+    // IE8-9 hack for event handling
+    //
+    // Internet Explorer 8-9 does not support clicks on elements without a set
+    // `background-color`. We cannot use `filter` since that's not viewed as a
+    // background color by the browser. Thus, a hack is needed.
+    // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer
+    //
+    // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we
+    // set alpha transparency for the best results possible.
+    background-color: #000 \9; // IE8
+    background-color: rgba(0,0,0,0); // IE9
+  }
+  .active {
+    margin: 0;
+    width:  12px;
+    height: 12px;
+    background-color: @carousel-indicator-active-bg;
+  }
+}
+
+// Optional captions
+// -----------------------------
+// Hidden by default for smaller viewports
+.carousel-caption {
+  position: absolute;
+  left: 15%;
+  right: 15%;
+  bottom: 20px;
+  z-index: 10;
+  padding-top: 20px;
+  padding-bottom: 20px;
+  color: @carousel-caption-color;
+  text-align: center;
+  text-shadow: @carousel-text-shadow;
+  & .btn {
+    text-shadow: none; // No shadow for button elements in carousel-caption
+  }
+}
+
+
+// Scale up controls for tablets and up
+@media screen and (min-width: @screen-sm-min) {
+
+  // Scale up the controls a smidge
+  .carousel-control {
+    .glyphicon-chevron-left,
+    .glyphicon-chevron-right,
+    .icon-prev,
+    .icon-next {
+      width: (@carousel-control-font-size * 1.5);
+      height: (@carousel-control-font-size * 1.5);
+      margin-top: (@carousel-control-font-size / -2);
+      font-size: (@carousel-control-font-size * 1.5);
+    }
+    .glyphicon-chevron-left,
+    .icon-prev {
+      margin-left: (@carousel-control-font-size / -2);
+    }
+    .glyphicon-chevron-right,
+    .icon-next {
+      margin-right: (@carousel-control-font-size / -2);
+    }
+  }
+
+  // Show and left align the captions
+  .carousel-caption {
+    left: 20%;
+    right: 20%;
+    padding-bottom: 30px;
+  }
+
+  // Move up the indicators
+  .carousel-indicators {
+    bottom: 20px;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/close.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/close.less
new file mode 100644
index 0000000..6d5bfe0
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/close.less
@@ -0,0 +1,34 @@
+//
+// Close icons
+// --------------------------------------------------
+
+
+.close {
+  float: right;
+  font-size: (@font-size-base * 1.5);
+  font-weight: @close-font-weight;
+  line-height: 1;
+  color: @close-color;
+  text-shadow: @close-text-shadow;
+  .opacity(.2);
+
+  &:hover,
+  &:focus {
+    color: @close-color;
+    text-decoration: none;
+    cursor: pointer;
+    .opacity(.5);
+  }
+
+  // Additional properties for button version
+  // iOS requires the button element instead of an anchor tag.
+  // If you want the anchor version, it requires `href="#"`.
+  // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
+  button& {
+    padding: 0;
+    cursor: pointer;
+    background: transparent;
+    border: 0;
+    -webkit-appearance: none;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/code.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/code.less
new file mode 100644
index 0000000..a08b4d4
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/code.less
@@ -0,0 +1,69 @@
+//
+// Code (inline and block)
+// --------------------------------------------------
+
+
+// Inline and block code styles
+code,
+kbd,
+pre,
+samp {
+  font-family: @font-family-monospace;
+}
+
+// Inline code
+code {
+  padding: 2px 4px;
+  font-size: 90%;
+  color: @code-color;
+  background-color: @code-bg;
+  border-radius: @border-radius-base;
+}
+
+// User input typically entered via keyboard
+kbd {
+  padding: 2px 4px;
+  font-size: 90%;
+  color: @kbd-color;
+  background-color: @kbd-bg;
+  border-radius: @border-radius-small;
+  box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
+
+  kbd {
+    padding: 0;
+    font-size: 100%;
+    font-weight: bold;
+    box-shadow: none;
+  }
+}
+
+// Blocks of code
+pre {
+  display: block;
+  padding: ((@line-height-computed - 1) / 2);
+  margin: 0 0 (@line-height-computed / 2);
+  font-size: (@font-size-base - 1); // 14px to 13px
+  line-height: @line-height-base;
+  word-break: break-all;
+  word-wrap: break-word;
+  color: @pre-color;
+  background-color: @pre-bg;
+  border: 1px solid @pre-border-color;
+  border-radius: @border-radius-base;
+
+  // Account for some code outputs that place code tags in pre tags
+  code {
+    padding: 0;
+    font-size: inherit;
+    color: inherit;
+    white-space: pre-wrap;
+    background-color: transparent;
+    border-radius: 0;
+  }
+}
+
+// Enable scrollable blocks of code
+.pre-scrollable {
+  max-height: @pre-scrollable-max-height;
+  overflow-y: scroll;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/component-animations.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/component-animations.less
new file mode 100644
index 0000000..0bcee91
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/component-animations.less
@@ -0,0 +1,33 @@
+//
+// Component animations
+// --------------------------------------------------
+
+// Heads up!
+//
+// We don't use the `.opacity()` mixin here since it causes a bug with text
+// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.
+
+.fade {
+  opacity: 0;
+  .transition(opacity .15s linear);
+  &.in {
+    opacity: 1;
+  }
+}
+
+.collapse {
+  display: none;
+
+  &.in      { display: block; }
+  tr&.in    { display: table-row; }
+  tbody&.in { display: table-row-group; }
+}
+
+.collapsing {
+  position: relative;
+  height: 0;
+  overflow: hidden;
+  .transition-property(~"height, visibility");
+  .transition-duration(.35s);
+  .transition-timing-function(ease);
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/dropdowns.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/dropdowns.less
new file mode 100644
index 0000000..f6876c1
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/dropdowns.less
@@ -0,0 +1,216 @@
+//
+// Dropdown menus
+// --------------------------------------------------
+
+
+// Dropdown arrow/caret
+.caret {
+  display: inline-block;
+  width: 0;
+  height: 0;
+  margin-left: 2px;
+  vertical-align: middle;
+  border-top:   @caret-width-base dashed;
+  border-top:   @caret-width-base solid ~"\9"; // IE8
+  border-right: @caret-width-base solid transparent;
+  border-left:  @caret-width-base solid transparent;
+}
+
+// The dropdown wrapper (div)
+.dropup,
+.dropdown {
+  position: relative;
+}
+
+// Prevent the focus on the dropdown toggle when closing dropdowns
+.dropdown-toggle:focus {
+  outline: 0;
+}
+
+// The dropdown menu (ul)
+.dropdown-menu {
+  position: absolute;
+  top: 100%;
+  left: 0;
+  z-index: @zindex-dropdown;
+  display: none; // none by default, but block on "open" of the menu
+  float: left;
+  min-width: 160px;
+  padding: 5px 0;
+  margin: 2px 0 0; // override default ul
+  list-style: none;
+  font-size: @font-size-base;
+  text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
+  background-color: @dropdown-bg;
+  border: 1px solid @dropdown-fallback-border; // IE8 fallback
+  border: 1px solid @dropdown-border;
+  border-radius: @border-radius-base;
+  .box-shadow(0 6px 12px rgba(0,0,0,.175));
+  background-clip: padding-box;
+
+  // Aligns the dropdown menu to right
+  //
+  // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`
+  &.pull-right {
+    right: 0;
+    left: auto;
+  }
+
+  // Dividers (basically an hr) within the dropdown
+  .divider {
+    .nav-divider(@dropdown-divider-bg);
+  }
+
+  // Links within the dropdown menu
+  > li > a {
+    display: block;
+    padding: 3px 20px;
+    clear: both;
+    font-weight: normal;
+    line-height: @line-height-base;
+    color: @dropdown-link-color;
+    white-space: nowrap; // prevent links from randomly breaking onto new lines
+  }
+}
+
+// Hover/Focus state
+.dropdown-menu > li > a {
+  &:hover,
+  &:focus {
+    text-decoration: none;
+    color: @dropdown-link-hover-color;
+    background-color: @dropdown-link-hover-bg;
+  }
+}
+
+// Active state
+.dropdown-menu > .active > a {
+  &,
+  &:hover,
+  &:focus {
+    color: @dropdown-link-active-color;
+    text-decoration: none;
+    outline: 0;
+    background-color: @dropdown-link-active-bg;
+  }
+}
+
+// Disabled state
+//
+// Gray out text and ensure the hover/focus state remains gray
+
+.dropdown-menu > .disabled > a {
+  &,
+  &:hover,
+  &:focus {
+    color: @dropdown-link-disabled-color;
+  }
+
+  // Nuke hover/focus effects
+  &:hover,
+  &:focus {
+    text-decoration: none;
+    background-color: transparent;
+    background-image: none; // Remove CSS gradient
+    .reset-filter();
+    cursor: @cursor-disabled;
+  }
+}
+
+// Open state for the dropdown
+.open {
+  // Show the menu
+  > .dropdown-menu {
+    display: block;
+  }
+
+  // Remove the outline when :focus is triggered
+  > a {
+    outline: 0;
+  }
+}
+
+// Menu positioning
+//
+// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown
+// menu with the parent.
+.dropdown-menu-right {
+  left: auto; // Reset the default from `.dropdown-menu`
+  right: 0;
+}
+// With v3, we enabled auto-flipping if you have a dropdown within a right
+// aligned nav component. To enable the undoing of that, we provide an override
+// to restore the default dropdown menu alignment.
+//
+// This is only for left-aligning a dropdown menu within a `.navbar-right` or
+// `.pull-right` nav component.
+.dropdown-menu-left {
+  left: 0;
+  right: auto;
+}
+
+// Dropdown section headers
+.dropdown-header {
+  display: block;
+  padding: 3px 20px;
+  font-size: @font-size-small;
+  line-height: @line-height-base;
+  color: @dropdown-header-color;
+  white-space: nowrap; // as with > li > a
+}
+
+// Backdrop to catch body clicks on mobile, etc.
+.dropdown-backdrop {
+  position: fixed;
+  left: 0;
+  right: 0;
+  bottom: 0;
+  top: 0;
+  z-index: (@zindex-dropdown - 10);
+}
+
+// Right aligned dropdowns
+.pull-right > .dropdown-menu {
+  right: 0;
+  left: auto;
+}
+
+// Allow for dropdowns to go bottom up (aka, dropup-menu)
+//
+// Just add .dropup after the standard .dropdown class and you're set, bro.
+// TODO: abstract this so that the navbar fixed styles are not placed here?
+
+.dropup,
+.navbar-fixed-bottom .dropdown {
+  // Reverse the caret
+  .caret {
+    border-top: 0;
+    border-bottom: @caret-width-base dashed;
+    border-bottom: @caret-width-base solid ~"\9"; // IE8
+    content: "";
+  }
+  // Different positioning for bottom up menu
+  .dropdown-menu {
+    top: auto;
+    bottom: 100%;
+    margin-bottom: 2px;
+  }
+}
+
+
+// Component alignment
+//
+// Reiterate per navbar.less and the modified component alignment there.
+
+@media (min-width: @grid-float-breakpoint) {
+  .navbar-right {
+    .dropdown-menu {
+      .dropdown-menu-right();
+    }
+    // Necessary for overrides of the default right aligned menu.
+    // Will remove come v4 in all likelihood.
+    .dropdown-menu-left {
+      .dropdown-menu-left();
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/forms.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/forms.less
new file mode 100644
index 0000000..9377d38
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/forms.less
@@ -0,0 +1,613 @@
+//
+// Forms
+// --------------------------------------------------
+
+
+// Normalize non-controls
+//
+// Restyle and baseline non-control form elements.
+
+fieldset {
+  padding: 0;
+  margin: 0;
+  border: 0;
+  // Chrome and Firefox set a `min-width: min-content;` on fieldsets,
+  // so we reset that to ensure it behaves more like a standard block element.
+  // See https://github.com/twbs/bootstrap/issues/12359.
+  min-width: 0;
+}
+
+legend {
+  display: block;
+  width: 100%;
+  padding: 0;
+  margin-bottom: @line-height-computed;
+  font-size: (@font-size-base * 1.5);
+  line-height: inherit;
+  color: @legend-color;
+  border: 0;
+  border-bottom: 1px solid @legend-border-color;
+}
+
+label {
+  display: inline-block;
+  max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)
+  margin-bottom: 5px;
+  font-weight: bold;
+}
+
+
+// Normalize form controls
+//
+// While most of our form styles require extra classes, some basic normalization
+// is required to ensure optimum display with or without those classes to better
+// address browser inconsistencies.
+
+// Override content-box in Normalize (* isn't specific enough)
+input[type="search"] {
+  .box-sizing(border-box);
+}
+
+// Position radios and checkboxes better
+input[type="radio"],
+input[type="checkbox"] {
+  margin: 4px 0 0;
+  margin-top: 1px \9; // IE8-9
+  line-height: normal;
+}
+
+input[type="file"] {
+  display: block;
+}
+
+// Make range inputs behave like textual form controls
+input[type="range"] {
+  display: block;
+  width: 100%;
+}
+
+// Make multiple select elements height not fixed
+select[multiple],
+select[size] {
+  height: auto;
+}
+
+// Focus for file, radio, and checkbox
+input[type="file"]:focus,
+input[type="radio"]:focus,
+input[type="checkbox"]:focus {
+  .tab-focus();
+}
+
+// Adjust output element
+output {
+  display: block;
+  padding-top: (@padding-base-vertical + 1);
+  font-size: @font-size-base;
+  line-height: @line-height-base;
+  color: @input-color;
+}
+
+
+// Common form controls
+//
+// Shared size and type resets for form controls. Apply `.form-control` to any
+// of the following form controls:
+//
+// select
+// textarea
+// input[type="text"]
+// input[type="password"]
+// input[type="datetime"]
+// input[type="datetime-local"]
+// input[type="date"]
+// input[type="month"]
+// input[type="time"]
+// input[type="week"]
+// input[type="number"]
+// input[type="email"]
+// input[type="url"]
+// input[type="search"]
+// input[type="tel"]
+// input[type="color"]
+
+.form-control {
+  display: block;
+  width: 100%;
+  height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)
+  padding: @padding-base-vertical @padding-base-horizontal;
+  font-size: @font-size-base;
+  line-height: @line-height-base;
+  color: @input-color;
+  background-color: @input-bg;
+  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
+  border: 1px solid @input-border;
+  border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.
+  .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
+  .transition(~"border-color ease-in-out .15s, box-shadow ease-in-out .15s");
+
+  // Customize the `:focus` state to imitate native WebKit styles.
+  .form-control-focus();
+
+  // Placeholder
+  .placeholder();
+
+  // Unstyle the caret on `<select>`s in IE10+.
+  &::-ms-expand {
+    border: 0;
+    background-color: transparent;
+  }
+
+  // Disabled and read-only inputs
+  //
+  // HTML5 says that controls under a fieldset > legend:first-child won't be
+  // disabled if the fieldset is disabled. Due to implementation difficulty, we
+  // don't honor that edge case; we style them as disabled anyway.
+  &[disabled],
+  &[readonly],
+  fieldset[disabled] & {
+    background-color: @input-bg-disabled;
+    opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655
+  }
+
+  &[disabled],
+  fieldset[disabled] & {
+    cursor: @cursor-disabled;
+  }
+
+  // Reset height for `textarea`s
+  textarea& {
+    height: auto;
+  }
+}
+
+
+// Search inputs in iOS
+//
+// This overrides the extra rounded corners on search inputs in iOS so that our
+// `.form-control` class can properly style them. Note that this cannot simply
+// be added to `.form-control` as it's not specific enough. For details, see
+// https://github.com/twbs/bootstrap/issues/11586.
+
+input[type="search"] {
+  -webkit-appearance: none;
+}
+
+
+// Special styles for iOS temporal inputs
+//
+// In Mobile Safari, setting `display: block` on temporal inputs causes the
+// text within the input to become vertically misaligned. As a workaround, we
+// set a pixel line-height that matches the given height of the input, but only
+// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848
+//
+// Note that as of 9.3, iOS doesn't support `week`.
+
+@media screen and (-webkit-min-device-pixel-ratio: 0) {
+  input[type="date"],
+  input[type="time"],
+  input[type="datetime-local"],
+  input[type="month"] {
+    &.form-control {
+      line-height: @input-height-base;
+    }
+
+    &.input-sm,
+    .input-group-sm & {
+      line-height: @input-height-small;
+    }
+
+    &.input-lg,
+    .input-group-lg & {
+      line-height: @input-height-large;
+    }
+  }
+}
+
+
+// Form groups
+//
+// Designed to help with the organization and spacing of vertical forms. For
+// horizontal forms, use the predefined grid classes.
+
+.form-group {
+  margin-bottom: @form-group-margin-bottom;
+}
+
+
+// Checkboxes and radios
+//
+// Indent the labels to position radios/checkboxes as hanging controls.
+
+.radio,
+.checkbox {
+  position: relative;
+  display: block;
+  margin-top: 10px;
+  margin-bottom: 10px;
+
+  label {
+    min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text
+    padding-left: 20px;
+    margin-bottom: 0;
+    font-weight: normal;
+    cursor: pointer;
+  }
+}
+.radio input[type="radio"],
+.radio-inline input[type="radio"],
+.checkbox input[type="checkbox"],
+.checkbox-inline input[type="checkbox"] {
+  position: absolute;
+  margin-left: -20px;
+  margin-top: 4px \9;
+}
+
+.radio + .radio,
+.checkbox + .checkbox {
+  margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing
+}
+
+// Radios and checkboxes on same line
+.radio-inline,
+.checkbox-inline {
+  position: relative;
+  display: inline-block;
+  padding-left: 20px;
+  margin-bottom: 0;
+  vertical-align: middle;
+  font-weight: normal;
+  cursor: pointer;
+}
+.radio-inline + .radio-inline,
+.checkbox-inline + .checkbox-inline {
+  margin-top: 0;
+  margin-left: 10px; // space out consecutive inline controls
+}
+
+// Apply same disabled cursor tweak as for inputs
+// Some special care is needed because <label>s don't inherit their parent's `cursor`.
+//
+// Note: Neither radios nor checkboxes can be readonly.
+input[type="radio"],
+input[type="checkbox"] {
+  &[disabled],
+  &.disabled,
+  fieldset[disabled] & {
+    cursor: @cursor-disabled;
+  }
+}
+// These classes are used directly on <label>s
+.radio-inline,
+.checkbox-inline {
+  &.disabled,
+  fieldset[disabled] & {
+    cursor: @cursor-disabled;
+  }
+}
+// These classes are used on elements with <label> descendants
+.radio,
+.checkbox {
+  &.disabled,
+  fieldset[disabled] & {
+    label {
+      cursor: @cursor-disabled;
+    }
+  }
+}
+
+
+// Static form control text
+//
+// Apply class to a `p` element to make any string of text align with labels in
+// a horizontal form layout.
+
+.form-control-static {
+  // Size it appropriately next to real form controls
+  padding-top: (@padding-base-vertical + 1);
+  padding-bottom: (@padding-base-vertical + 1);
+  // Remove default margin from `p`
+  margin-bottom: 0;
+  min-height: (@line-height-computed + @font-size-base);
+
+  &.input-lg,
+  &.input-sm {
+    padding-left: 0;
+    padding-right: 0;
+  }
+}
+
+
+// Form control sizing
+//
+// Build on `.form-control` with modifier classes to decrease or increase the
+// height and font-size of form controls.
+//
+// The `.form-group-* form-control` variations are sadly duplicated to avoid the
+// issue documented in https://github.com/twbs/bootstrap/issues/15074.
+
+.input-sm {
+  .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);
+}
+.form-group-sm {
+  .form-control {
+    height: @input-height-small;
+    padding: @padding-small-vertical @padding-small-horizontal;
+    font-size: @font-size-small;
+    line-height: @line-height-small;
+    border-radius: @input-border-radius-small;
+  }
+  select.form-control {
+    height: @input-height-small;
+    line-height: @input-height-small;
+  }
+  textarea.form-control,
+  select[multiple].form-control {
+    height: auto;
+  }
+  .form-control-static {
+    height: @input-height-small;
+    min-height: (@line-height-computed + @font-size-small);
+    padding: (@padding-small-vertical + 1) @padding-small-horizontal;
+    font-size: @font-size-small;
+    line-height: @line-height-small;
+  }
+}
+
+.input-lg {
+  .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);
+}
+.form-group-lg {
+  .form-control {
+    height: @input-height-large;
+    padding: @padding-large-vertical @padding-large-horizontal;
+    font-size: @font-size-large;
+    line-height: @line-height-large;
+    border-radius: @input-border-radius-large;
+  }
+  select.form-control {
+    height: @input-height-large;
+    line-height: @input-height-large;
+  }
+  textarea.form-control,
+  select[multiple].form-control {
+    height: auto;
+  }
+  .form-control-static {
+    height: @input-height-large;
+    min-height: (@line-height-computed + @font-size-large);
+    padding: (@padding-large-vertical + 1) @padding-large-horizontal;
+    font-size: @font-size-large;
+    line-height: @line-height-large;
+  }
+}
+
+
+// Form control feedback states
+//
+// Apply contextual and semantic states to individual form controls.
+
+.has-feedback {
+  // Enable absolute positioning
+  position: relative;
+
+  // Ensure icons don't overlap text
+  .form-control {
+    padding-right: (@input-height-base * 1.25);
+  }
+}
+// Feedback icon (requires .glyphicon classes)
+.form-control-feedback {
+  position: absolute;
+  top: 0;
+  right: 0;
+  z-index: 2; // Ensure icon is above input groups
+  display: block;
+  width: @input-height-base;
+  height: @input-height-base;
+  line-height: @input-height-base;
+  text-align: center;
+  pointer-events: none;
+}
+.input-lg + .form-control-feedback,
+.input-group-lg + .form-control-feedback,
+.form-group-lg .form-control + .form-control-feedback {
+  width: @input-height-large;
+  height: @input-height-large;
+  line-height: @input-height-large;
+}
+.input-sm + .form-control-feedback,
+.input-group-sm + .form-control-feedback,
+.form-group-sm .form-control + .form-control-feedback {
+  width: @input-height-small;
+  height: @input-height-small;
+  line-height: @input-height-small;
+}
+
+// Feedback states
+.has-success {
+  .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);
+}
+.has-warning {
+  .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);
+}
+.has-error {
+  .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);
+}
+
+// Reposition feedback icon if input has visible label above
+.has-feedback label {
+
+  & ~ .form-control-feedback {
+    top: (@line-height-computed + 5); // Height of the `label` and its margin
+  }
+  &.sr-only ~ .form-control-feedback {
+    top: 0;
+  }
+}
+
+
+// Help text
+//
+// Apply to any element you wish to create light text for placement immediately
+// below a form control. Use for general help, formatting, or instructional text.
+
+.help-block {
+  display: block; // account for any element using help-block
+  margin-top: 5px;
+  margin-bottom: 10px;
+  color: lighten(@text-color, 25%); // lighten the text some for contrast
+}
+
+
+// Inline forms
+//
+// Make forms appear inline(-block) by adding the `.form-inline` class. Inline
+// forms begin stacked on extra small (mobile) devices and then go inline when
+// viewports reach <768px.
+//
+// Requires wrapping inputs and labels with `.form-group` for proper display of
+// default HTML form controls and our custom form controls (e.g., input groups).
+//
+// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.
+
+.form-inline {
+
+  // Kick in the inline
+  @media (min-width: @screen-sm-min) {
+    // Inline-block all the things for "inline"
+    .form-group {
+      display: inline-block;
+      margin-bottom: 0;
+      vertical-align: middle;
+    }
+
+    // In navbar-form, allow folks to *not* use `.form-group`
+    .form-control {
+      display: inline-block;
+      width: auto; // Prevent labels from stacking above inputs in `.form-group`
+      vertical-align: middle;
+    }
+
+    // Make static controls behave like regular ones
+    .form-control-static {
+      display: inline-block;
+    }
+
+    .input-group {
+      display: inline-table;
+      vertical-align: middle;
+
+      .input-group-addon,
+      .input-group-btn,
+      .form-control {
+        width: auto;
+      }
+    }
+
+    // Input groups need that 100% width though
+    .input-group > .form-control {
+      width: 100%;
+    }
+
+    .control-label {
+      margin-bottom: 0;
+      vertical-align: middle;
+    }
+
+    // Remove default margin on radios/checkboxes that were used for stacking, and
+    // then undo the floating of radios and checkboxes to match.
+    .radio,
+    .checkbox {
+      display: inline-block;
+      margin-top: 0;
+      margin-bottom: 0;
+      vertical-align: middle;
+
+      label {
+        padding-left: 0;
+      }
+    }
+    .radio input[type="radio"],
+    .checkbox input[type="checkbox"] {
+      position: relative;
+      margin-left: 0;
+    }
+
+    // Re-override the feedback icon.
+    .has-feedback .form-control-feedback {
+      top: 0;
+    }
+  }
+}
+
+
+// Horizontal forms
+//
+// Horizontal forms are built on grid classes and allow you to create forms with
+// labels on the left and inputs on the right.
+
+.form-horizontal {
+
+  // Consistent vertical alignment of radios and checkboxes
+  //
+  // Labels also get some reset styles, but that is scoped to a media query below.
+  .radio,
+  .checkbox,
+  .radio-inline,
+  .checkbox-inline {
+    margin-top: 0;
+    margin-bottom: 0;
+    padding-top: (@padding-base-vertical + 1); // Default padding plus a border
+  }
+  // Account for padding we're adding to ensure the alignment and of help text
+  // and other content below items
+  .radio,
+  .checkbox {
+    min-height: (@line-height-computed + (@padding-base-vertical + 1));
+  }
+
+  // Make form groups behave like rows
+  .form-group {
+    .make-row();
+  }
+
+  // Reset spacing and right align labels, but scope to media queries so that
+  // labels on narrow viewports stack the same as a default form example.
+  @media (min-width: @screen-sm-min) {
+    .control-label {
+      text-align: right;
+      margin-bottom: 0;
+      padding-top: (@padding-base-vertical + 1); // Default padding plus a border
+    }
+  }
+
+  // Validation states
+  //
+  // Reposition the icon because it's now within a grid column and columns have
+  // `position: relative;` on them. Also accounts for the grid gutter padding.
+  .has-feedback .form-control-feedback {
+    right: floor((@grid-gutter-width / 2));
+  }
+
+  // Form group sizes
+  //
+  // Quick utility class for applying `.input-lg` and `.input-sm` styles to the
+  // inputs and labels within a `.form-group`.
+  .form-group-lg {
+    @media (min-width: @screen-sm-min) {
+      .control-label {
+        padding-top: (@padding-large-vertical + 1);
+        font-size: @font-size-large;
+      }
+    }
+  }
+  .form-group-sm {
+    @media (min-width: @screen-sm-min) {
+      .control-label {
+        padding-top: (@padding-small-vertical + 1);
+        font-size: @font-size-small;
+      }
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/glyphicons.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/glyphicons.less
new file mode 100644
index 0000000..7bc5852
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/glyphicons.less
@@ -0,0 +1,305 @@
+//
+// Glyphicons for Bootstrap
+//
+// Since icons are fonts, they can be placed anywhere text is placed and are
+// thus automatically sized to match the surrounding child. To use, create an
+// inline element with the appropriate classes, like so:
+//
+// <a href="#"><span class="glyphicon glyphicon-star"></span> Star</a>
+
+// Import the fonts
+@font-face {
+  font-family: 'Glyphicons Halflings';
+  src: url('@{icon-font-path}@{icon-font-name}.eot');
+  src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),
+       url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),
+       url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),
+       url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),
+       url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');
+}
+
+// Catchall baseclass
+.glyphicon {
+  position: relative;
+  top: 1px;
+  display: inline-block;
+  font-family: 'Glyphicons Halflings';
+  font-style: normal;
+  font-weight: normal;
+  line-height: 1;
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+}
+
+// Individual icons
+.glyphicon-asterisk               { &:before { content: "\002a"; } }
+.glyphicon-plus                   { &:before { content: "\002b"; } }
+.glyphicon-euro,
+.glyphicon-eur                    { &:before { content: "\20ac"; } }
+.glyphicon-minus                  { &:before { content: "\2212"; } }
+.glyphicon-cloud                  { &:before { content: "\2601"; } }
+.glyphicon-envelope               { &:before { content: "\2709"; } }
+.glyphicon-pencil                 { &:before { content: "\270f"; } }
+.glyphicon-glass                  { &:before { content: "\e001"; } }
+.glyphicon-music                  { &:before { content: "\e002"; } }
+.glyphicon-search                 { &:before { content: "\e003"; } }
+.glyphicon-heart                  { &:before { content: "\e005"; } }
+.glyphicon-star                   { &:before { content: "\e006"; } }
+.glyphicon-star-empty             { &:before { content: "\e007"; } }
+.glyphicon-user                   { &:before { content: "\e008"; } }
+.glyphicon-film                   { &:before { content: "\e009"; } }
+.glyphicon-th-large               { &:before { content: "\e010"; } }
+.glyphicon-th                     { &:before { content: "\e011"; } }
+.glyphicon-th-list                { &:before { content: "\e012"; } }
+.glyphicon-ok                     { &:before { content: "\e013"; } }
+.glyphicon-remove                 { &:before { content: "\e014"; } }
+.glyphicon-zoom-in                { &:before { content: "\e015"; } }
+.glyphicon-zoom-out               { &:before { content: "\e016"; } }
+.glyphicon-off                    { &:before { content: "\e017"; } }
+.glyphicon-signal                 { &:before { content: "\e018"; } }
+.glyphicon-cog                    { &:before { content: "\e019"; } }
+.glyphicon-trash                  { &:before { content: "\e020"; } }
+.glyphicon-home                   { &:before { content: "\e021"; } }
+.glyphicon-file                   { &:before { content: "\e022"; } }
+.glyphicon-time                   { &:before { content: "\e023"; } }
+.glyphicon-road                   { &:before { content: "\e024"; } }
+.glyphicon-download-alt           { &:before { content: "\e025"; } }
+.glyphicon-download               { &:before { content: "\e026"; } }
+.glyphicon-upload                 { &:before { content: "\e027"; } }
+.glyphicon-inbox                  { &:before { content: "\e028"; } }
+.glyphicon-play-circle            { &:before { content: "\e029"; } }
+.glyphicon-repeat                 { &:before { content: "\e030"; } }
+.glyphicon-refresh                { &:before { content: "\e031"; } }
+.glyphicon-list-alt               { &:before { content: "\e032"; } }
+.glyphicon-lock                   { &:before { content: "\e033"; } }
+.glyphicon-flag                   { &:before { content: "\e034"; } }
+.glyphicon-headphones             { &:before { content: "\e035"; } }
+.glyphicon-volume-off             { &:before { content: "\e036"; } }
+.glyphicon-volume-down            { &:before { content: "\e037"; } }
+.glyphicon-volume-up              { &:before { content: "\e038"; } }
+.glyphicon-qrcode                 { &:before { content: "\e039"; } }
+.glyphicon-barcode                { &:before { content: "\e040"; } }
+.glyphicon-tag                    { &:before { content: "\e041"; } }
+.glyphicon-tags                   { &:before { content: "\e042"; } }
+.glyphicon-book                   { &:before { content: "\e043"; } }
+.glyphicon-bookmark               { &:before { content: "\e044"; } }
+.glyphicon-print                  { &:before { content: "\e045"; } }
+.glyphicon-camera                 { &:before { content: "\e046"; } }
+.glyphicon-font                   { &:before { content: "\e047"; } }
+.glyphicon-bold                   { &:before { content: "\e048"; } }
+.glyphicon-italic                 { &:before { content: "\e049"; } }
+.glyphicon-text-height            { &:before { content: "\e050"; } }
+.glyphicon-text-width             { &:before { content: "\e051"; } }
+.glyphicon-align-left             { &:before { content: "\e052"; } }
+.glyphicon-align-center           { &:before { content: "\e053"; } }
+.glyphicon-align-right            { &:before { content: "\e054"; } }
+.glyphicon-align-justify          { &:before { content: "\e055"; } }
+.glyphicon-list                   { &:before { content: "\e056"; } }
+.glyphicon-indent-left            { &:before { content: "\e057"; } }
+.glyphicon-indent-right           { &:before { content: "\e058"; } }
+.glyphicon-facetime-video         { &:before { content: "\e059"; } }
+.glyphicon-picture                { &:before { content: "\e060"; } }
+.glyphicon-map-marker             { &:before { content: "\e062"; } }
+.glyphicon-adjust                 { &:before { content: "\e063"; } }
+.glyphicon-tint                   { &:before { content: "\e064"; } }
+.glyphicon-edit                   { &:before { content: "\e065"; } }
+.glyphicon-share                  { &:before { content: "\e066"; } }
+.glyphicon-check                  { &:before { content: "\e067"; } }
+.glyphicon-move                   { &:before { content: "\e068"; } }
+.glyphicon-step-backward          { &:before { content: "\e069"; } }
+.glyphicon-fast-backward          { &:before { content: "\e070"; } }
+.glyphicon-backward               { &:before { content: "\e071"; } }
+.glyphicon-play                   { &:before { content: "\e072"; } }
+.glyphicon-pause                  { &:before { content: "\e073"; } }
+.glyphicon-stop                   { &:before { content: "\e074"; } }
+.glyphicon-forward                { &:before { content: "\e075"; } }
+.glyphicon-fast-forward           { &:before { content: "\e076"; } }
+.glyphicon-step-forward           { &:before { content: "\e077"; } }
+.glyphicon-eject                  { &:before { content: "\e078"; } }
+.glyphicon-chevron-left           { &:before { content: "\e079"; } }
+.glyphicon-chevron-right          { &:before { content: "\e080"; } }
+.glyphicon-plus-sign              { &:before { content: "\e081"; } }
+.glyphicon-minus-sign             { &:before { content: "\e082"; } }
+.glyphicon-remove-sign            { &:before { content: "\e083"; } }
+.glyphicon-ok-sign                { &:before { content: "\e084"; } }
+.glyphicon-question-sign          { &:before { content: "\e085"; } }
+.glyphicon-info-sign              { &:before { content: "\e086"; } }
+.glyphicon-screenshot             { &:before { content: "\e087"; } }
+.glyphicon-remove-circle          { &:before { content: "\e088"; } }
+.glyphicon-ok-circle              { &:before { content: "\e089"; } }
+.glyphicon-ban-circle             { &:before { content: "\e090"; } }
+.glyphicon-arrow-left             { &:before { content: "\e091"; } }
+.glyphicon-arrow-right            { &:before { content: "\e092"; } }
+.glyphicon-arrow-up               { &:before { content: "\e093"; } }
+.glyphicon-arrow-down             { &:before { content: "\e094"; } }
+.glyphicon-share-alt              { &:before { content: "\e095"; } }
+.glyphicon-resize-full            { &:before { content: "\e096"; } }
+.glyphicon-resize-small           { &:before { content: "\e097"; } }
+.glyphicon-exclamation-sign       { &:before { content: "\e101"; } }
+.glyphicon-gift                   { &:before { content: "\e102"; } }
+.glyphicon-leaf                   { &:before { content: "\e103"; } }
+.glyphicon-fire                   { &:before { content: "\e104"; } }
+.glyphicon-eye-open               { &:before { content: "\e105"; } }
+.glyphicon-eye-close              { &:before { content: "\e106"; } }
+.glyphicon-warning-sign           { &:before { content: "\e107"; } }
+.glyphicon-plane                  { &:before { content: "\e108"; } }
+.glyphicon-calendar               { &:before { content: "\e109"; } }
+.glyphicon-random                 { &:before { content: "\e110"; } }
+.glyphicon-comment                { &:before { content: "\e111"; } }
+.glyphicon-magnet                 { &:before { content: "\e112"; } }
+.glyphicon-chevron-up             { &:before { content: "\e113"; } }
+.glyphicon-chevron-down           { &:before { content: "\e114"; } }
+.glyphicon-retweet                { &:before { content: "\e115"; } }
+.glyphicon-shopping-cart          { &:before { content: "\e116"; } }
+.glyphicon-folder-close           { &:before { content: "\e117"; } }
+.glyphicon-folder-open            { &:before { content: "\e118"; } }
+.glyphicon-resize-vertical        { &:before { content: "\e119"; } }
+.glyphicon-resize-horizontal      { &:before { content: "\e120"; } }
+.glyphicon-hdd                    { &:before { content: "\e121"; } }
+.glyphicon-bullhorn               { &:before { content: "\e122"; } }
+.glyphicon-bell                   { &:before { content: "\e123"; } }
+.glyphicon-certificate            { &:before { content: "\e124"; } }
+.glyphicon-thumbs-up              { &:before { content: "\e125"; } }
+.glyphicon-thumbs-down            { &:before { content: "\e126"; } }
+.glyphicon-hand-right             { &:before { content: "\e127"; } }
+.glyphicon-hand-left              { &:before { content: "\e128"; } }
+.glyphicon-hand-up                { &:before { content: "\e129"; } }
+.glyphicon-hand-down              { &:before { content: "\e130"; } }
+.glyphicon-circle-arrow-right     { &:before { content: "\e131"; } }
+.glyphicon-circle-arrow-left      { &:before { content: "\e132"; } }
+.glyphicon-circle-arrow-up        { &:before { content: "\e133"; } }
+.glyphicon-circle-arrow-down      { &:before { content: "\e134"; } }
+.glyphicon-globe                  { &:before { content: "\e135"; } }
+.glyphicon-wrench                 { &:before { content: "\e136"; } }
+.glyphicon-tasks                  { &:before { content: "\e137"; } }
+.glyphicon-filter                 { &:before { content: "\e138"; } }
+.glyphicon-briefcase              { &:before { content: "\e139"; } }
+.glyphicon-fullscreen             { &:before { content: "\e140"; } }
+.glyphicon-dashboard              { &:before { content: "\e141"; } }
+.glyphicon-paperclip              { &:before { content: "\e142"; } }
+.glyphicon-heart-empty            { &:before { content: "\e143"; } }
+.glyphicon-link                   { &:before { content: "\e144"; } }
+.glyphicon-phone                  { &:before { content: "\e145"; } }
+.glyphicon-pushpin                { &:before { content: "\e146"; } }
+.glyphicon-usd                    { &:before { content: "\e148"; } }
+.glyphicon-gbp                    { &:before { content: "\e149"; } }
+.glyphicon-sort                   { &:before { content: "\e150"; } }
+.glyphicon-sort-by-alphabet       { &:before { content: "\e151"; } }
+.glyphicon-sort-by-alphabet-alt   { &:before { content: "\e152"; } }
+.glyphicon-sort-by-order          { &:before { content: "\e153"; } }
+.glyphicon-sort-by-order-alt      { &:before { content: "\e154"; } }
+.glyphicon-sort-by-attributes     { &:before { content: "\e155"; } }
+.glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
+.glyphicon-unchecked              { &:before { content: "\e157"; } }
+.glyphicon-expand                 { &:before { content: "\e158"; } }
+.glyphicon-collapse-down          { &:before { content: "\e159"; } }
+.glyphicon-collapse-up            { &:before { content: "\e160"; } }
+.glyphicon-log-in                 { &:before { content: "\e161"; } }
+.glyphicon-flash                  { &:before { content: "\e162"; } }
+.glyphicon-log-out                { &:before { content: "\e163"; } }
+.glyphicon-new-window             { &:before { content: "\e164"; } }
+.glyphicon-record                 { &:before { content: "\e165"; } }
+.glyphicon-save                   { &:before { content: "\e166"; } }
+.glyphicon-open                   { &:before { content: "\e167"; } }
+.glyphicon-saved                  { &:before { content: "\e168"; } }
+.glyphicon-import                 { &:before { content: "\e169"; } }
+.glyphicon-export                 { &:before { content: "\e170"; } }
+.glyphicon-send                   { &:before { content: "\e171"; } }
+.glyphicon-floppy-disk            { &:before { content: "\e172"; } }
+.glyphicon-floppy-saved           { &:before { content: "\e173"; } }
+.glyphicon-floppy-remove          { &:before { content: "\e174"; } }
+.glyphicon-floppy-save            { &:before { content: "\e175"; } }
+.glyphicon-floppy-open            { &:before { content: "\e176"; } }
+.glyphicon-credit-card            { &:before { content: "\e177"; } }
+.glyphicon-transfer               { &:before { content: "\e178"; } }
+.glyphicon-cutlery                { &:before { content: "\e179"; } }
+.glyphicon-header                 { &:before { content: "\e180"; } }
+.glyphicon-compressed             { &:before { content: "\e181"; } }
+.glyphicon-earphone               { &:before { content: "\e182"; } }
+.glyphicon-phone-alt              { &:before { content: "\e183"; } }
+.glyphicon-tower                  { &:before { content: "\e184"; } }
+.glyphicon-stats                  { &:before { content: "\e185"; } }
+.glyphicon-sd-video               { &:before { content: "\e186"; } }
+.glyphicon-hd-video               { &:before { content: "\e187"; } }
+.glyphicon-subtitles              { &:before { content: "\e188"; } }
+.glyphicon-sound-stereo           { &:before { content: "\e189"; } }
+.glyphicon-sound-dolby            { &:before { content: "\e190"; } }
+.glyphicon-sound-5-1              { &:before { content: "\e191"; } }
+.glyphicon-sound-6-1              { &:before { content: "\e192"; } }
+.glyphicon-sound-7-1              { &:before { content: "\e193"; } }
+.glyphicon-copyright-mark         { &:before { content: "\e194"; } }
+.glyphicon-registration-mark      { &:before { content: "\e195"; } }
+.glyphicon-cloud-download         { &:before { content: "\e197"; } }
+.glyphicon-cloud-upload           { &:before { content: "\e198"; } }
+.glyphicon-tree-conifer           { &:before { content: "\e199"; } }
+.glyphicon-tree-deciduous         { &:before { content: "\e200"; } }
+.glyphicon-cd                     { &:before { content: "\e201"; } }
+.glyphicon-save-file              { &:before { content: "\e202"; } }
+.glyphicon-open-file              { &:before { content: "\e203"; } }
+.glyphicon-level-up               { &:before { content: "\e204"; } }
+.glyphicon-copy                   { &:before { content: "\e205"; } }
+.glyphicon-paste                  { &:before { content: "\e206"; } }
+// The following 2 Glyphicons are omitted for the time being because
+// they currently use Unicode codepoints that are outside the
+// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle
+// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.
+// Notably, the bug affects some older versions of the Android Browser.
+// More info: https://github.com/twbs/bootstrap/issues/10106
+// .glyphicon-door                   { &:before { content: "\1f6aa"; } }
+// .glyphicon-key                    { &:before { content: "\1f511"; } }
+.glyphicon-alert                  { &:before { content: "\e209"; } }
+.glyphicon-equalizer              { &:before { content: "\e210"; } }
+.glyphicon-king                   { &:before { content: "\e211"; } }
+.glyphicon-queen                  { &:before { content: "\e212"; } }
+.glyphicon-pawn                   { &:before { content: "\e213"; } }
+.glyphicon-bishop                 { &:before { content: "\e214"; } }
+.glyphicon-knight                 { &:before { content: "\e215"; } }
+.glyphicon-baby-formula           { &:before { content: "\e216"; } }
+.glyphicon-tent                   { &:before { content: "\26fa"; } }
+.glyphicon-blackboard             { &:before { content: "\e218"; } }
+.glyphicon-bed                    { &:before { content: "\e219"; } }
+.glyphicon-apple                  { &:before { content: "\f8ff"; } }
+.glyphicon-erase                  { &:before { content: "\e221"; } }
+.glyphicon-hourglass              { &:before { content: "\231b"; } }
+.glyphicon-lamp                   { &:before { content: "\e223"; } }
+.glyphicon-duplicate              { &:before { content: "\e224"; } }
+.glyphicon-piggy-bank             { &:before { content: "\e225"; } }
+.glyphicon-scissors               { &:before { content: "\e226"; } }
+.glyphicon-bitcoin                { &:before { content: "\e227"; } }
+.glyphicon-btc                    { &:before { content: "\e227"; } }
+.glyphicon-xbt                    { &:before { content: "\e227"; } }
+.glyphicon-yen                    { &:before { content: "\00a5"; } }
+.glyphicon-jpy                    { &:before { content: "\00a5"; } }
+.glyphicon-ruble                  { &:before { content: "\20bd"; } }
+.glyphicon-rub                    { &:before { content: "\20bd"; } }
+.glyphicon-scale                  { &:before { content: "\e230"; } }
+.glyphicon-ice-lolly              { &:before { content: "\e231"; } }
+.glyphicon-ice-lolly-tasted       { &:before { content: "\e232"; } }
+.glyphicon-education              { &:before { content: "\e233"; } }
+.glyphicon-option-horizontal      { &:before { content: "\e234"; } }
+.glyphicon-option-vertical        { &:before { content: "\e235"; } }
+.glyphicon-menu-hamburger         { &:before { content: "\e236"; } }
+.glyphicon-modal-window           { &:before { content: "\e237"; } }
+.glyphicon-oil                    { &:before { content: "\e238"; } }
+.glyphicon-grain                  { &:before { content: "\e239"; } }
+.glyphicon-sunglasses             { &:before { content: "\e240"; } }
+.glyphicon-text-size              { &:before { content: "\e241"; } }
+.glyphicon-text-color             { &:before { content: "\e242"; } }
+.glyphicon-text-background        { &:before { content: "\e243"; } }
+.glyphicon-object-align-top       { &:before { content: "\e244"; } }
+.glyphicon-object-align-bottom    { &:before { content: "\e245"; } }
+.glyphicon-object-align-horizontal{ &:before { content: "\e246"; } }
+.glyphicon-object-align-left      { &:before { content: "\e247"; } }
+.glyphicon-object-align-vertical  { &:before { content: "\e248"; } }
+.glyphicon-object-align-right     { &:before { content: "\e249"; } }
+.glyphicon-triangle-right         { &:before { content: "\e250"; } }
+.glyphicon-triangle-left          { &:before { content: "\e251"; } }
+.glyphicon-triangle-bottom        { &:before { content: "\e252"; } }
+.glyphicon-triangle-top           { &:before { content: "\e253"; } }
+.glyphicon-console                { &:before { content: "\e254"; } }
+.glyphicon-superscript            { &:before { content: "\e255"; } }
+.glyphicon-subscript              { &:before { content: "\e256"; } }
+.glyphicon-menu-left              { &:before { content: "\e257"; } }
+.glyphicon-menu-right             { &:before { content: "\e258"; } }
+.glyphicon-menu-down              { &:before { content: "\e259"; } }
+.glyphicon-menu-up                { &:before { content: "\e260"; } }
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/grid.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/grid.less
new file mode 100644
index 0000000..e100655
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/grid.less
@@ -0,0 +1,84 @@
+//
+// Grid system
+// --------------------------------------------------
+
+
+// Container widths
+//
+// Set the container width, and override it for fixed navbars in media queries.
+
+.container {
+  .container-fixed();
+
+  @media (min-width: @screen-sm-min) {
+    width: @container-sm;
+  }
+  @media (min-width: @screen-md-min) {
+    width: @container-md;
+  }
+  @media (min-width: @screen-lg-min) {
+    width: @container-lg;
+  }
+}
+
+
+// Fluid container
+//
+// Utilizes the mixin meant for fixed width containers, but without any defined
+// width for fluid, full width layouts.
+
+.container-fluid {
+  .container-fixed();
+}
+
+
+// Row
+//
+// Rows contain and clear the floats of your columns.
+
+.row {
+  .make-row();
+}
+
+
+// Columns
+//
+// Common styles for small and large grid columns
+
+.make-grid-columns();
+
+
+// Extra small grid
+//
+// Columns, offsets, pushes, and pulls for extra small devices like
+// smartphones.
+
+.make-grid(xs);
+
+
+// Small grid
+//
+// Columns, offsets, pushes, and pulls for the small device range, from phones
+// to tablets.
+
+@media (min-width: @screen-sm-min) {
+  .make-grid(sm);
+}
+
+
+// Medium grid
+//
+// Columns, offsets, pushes, and pulls for the desktop device range.
+
+@media (min-width: @screen-md-min) {
+  .make-grid(md);
+}
+
+
+// Large grid
+//
+// Columns, offsets, pushes, and pulls for the large desktop device range.
+
+@media (min-width: @screen-lg-min) {
+  .make-grid(lg);
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/input-groups.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/input-groups.less
new file mode 100644
index 0000000..d0763db
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/input-groups.less
@@ -0,0 +1,171 @@
+//
+// Input groups
+// --------------------------------------------------
+
+// Base styles
+// -------------------------
+.input-group {
+  position: relative; // For dropdowns
+  display: table;
+  border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table
+
+  // Undo padding and float of grid classes
+  &[class*="col-"] {
+    float: none;
+    padding-left: 0;
+    padding-right: 0;
+  }
+
+  .form-control {
+    // Ensure that the input is always above the *appended* addon button for
+    // proper border colors.
+    position: relative;
+    z-index: 2;
+
+    // IE9 fubars the placeholder attribute in text inputs and the arrows on
+    // select elements in input groups. To fix it, we float the input. Details:
+    // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855
+    float: left;
+
+    width: 100%;
+    margin-bottom: 0;
+
+    &:focus {
+      z-index: 3;
+    }
+  }
+}
+
+// Sizing options
+//
+// Remix the default form control sizing classes into new ones for easier
+// manipulation.
+
+.input-group-lg > .form-control,
+.input-group-lg > .input-group-addon,
+.input-group-lg > .input-group-btn > .btn {
+  .input-lg();
+}
+.input-group-sm > .form-control,
+.input-group-sm > .input-group-addon,
+.input-group-sm > .input-group-btn > .btn {
+  .input-sm();
+}
+
+
+// Display as table-cell
+// -------------------------
+.input-group-addon,
+.input-group-btn,
+.input-group .form-control {
+  display: table-cell;
+
+  &:not(:first-child):not(:last-child) {
+    border-radius: 0;
+  }
+}
+// Addon and addon wrapper for buttons
+.input-group-addon,
+.input-group-btn {
+  width: 1%;
+  white-space: nowrap;
+  vertical-align: middle; // Match the inputs
+}
+
+// Text input groups
+// -------------------------
+.input-group-addon {
+  padding: @padding-base-vertical @padding-base-horizontal;
+  font-size: @font-size-base;
+  font-weight: normal;
+  line-height: 1;
+  color: @input-color;
+  text-align: center;
+  background-color: @input-group-addon-bg;
+  border: 1px solid @input-group-addon-border-color;
+  border-radius: @input-border-radius;
+
+  // Sizing
+  &.input-sm {
+    padding: @padding-small-vertical @padding-small-horizontal;
+    font-size: @font-size-small;
+    border-radius: @input-border-radius-small;
+  }
+  &.input-lg {
+    padding: @padding-large-vertical @padding-large-horizontal;
+    font-size: @font-size-large;
+    border-radius: @input-border-radius-large;
+  }
+
+  // Nuke default margins from checkboxes and radios to vertically center within.
+  input[type="radio"],
+  input[type="checkbox"] {
+    margin-top: 0;
+  }
+}
+
+// Reset rounded corners
+.input-group .form-control:first-child,
+.input-group-addon:first-child,
+.input-group-btn:first-child > .btn,
+.input-group-btn:first-child > .btn-group > .btn,
+.input-group-btn:first-child > .dropdown-toggle,
+.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
+.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
+  .border-right-radius(0);
+}
+.input-group-addon:first-child {
+  border-right: 0;
+}
+.input-group .form-control:last-child,
+.input-group-addon:last-child,
+.input-group-btn:last-child > .btn,
+.input-group-btn:last-child > .btn-group > .btn,
+.input-group-btn:last-child > .dropdown-toggle,
+.input-group-btn:first-child > .btn:not(:first-child),
+.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
+  .border-left-radius(0);
+}
+.input-group-addon:last-child {
+  border-left: 0;
+}
+
+// Button input groups
+// -------------------------
+.input-group-btn {
+  position: relative;
+  // Jankily prevent input button groups from wrapping with `white-space` and
+  // `font-size` in combination with `inline-block` on buttons.
+  font-size: 0;
+  white-space: nowrap;
+
+  // Negative margin for spacing, position for bringing hovered/focused/actived
+  // element above the siblings.
+  > .btn {
+    position: relative;
+    + .btn {
+      margin-left: -1px;
+    }
+    // Bring the "active" button to the front
+    &:hover,
+    &:focus,
+    &:active {
+      z-index: 2;
+    }
+  }
+
+  // Negative margin to only have a 1px border between the two
+  &:first-child {
+    > .btn,
+    > .btn-group {
+      margin-right: -1px;
+    }
+  }
+  &:last-child {
+    > .btn,
+    > .btn-group {
+      z-index: 2;
+      margin-left: -1px;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/jumbotron.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/jumbotron.less
new file mode 100644
index 0000000..1d9b515
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/jumbotron.less
@@ -0,0 +1,54 @@
+//
+// Jumbotron
+// --------------------------------------------------
+
+
+.jumbotron {
+  padding-top:    @jumbotron-padding;
+  padding-bottom: @jumbotron-padding;
+  margin-bottom: @jumbotron-padding;
+  color: @jumbotron-color;
+  background-color: @jumbotron-bg;
+
+  h1,
+  .h1 {
+    color: @jumbotron-heading-color;
+  }
+
+  p {
+    margin-bottom: (@jumbotron-padding / 2);
+    font-size: @jumbotron-font-size;
+    font-weight: 200;
+  }
+
+  > hr {
+    border-top-color: darken(@jumbotron-bg, 10%);
+  }
+
+  .container &,
+  .container-fluid & {
+    border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
+    padding-left:  (@grid-gutter-width / 2);
+    padding-right: (@grid-gutter-width / 2);
+  }
+
+  .container {
+    max-width: 100%;
+  }
+
+  @media screen and (min-width: @screen-sm-min) {
+    padding-top:    (@jumbotron-padding * 1.6);
+    padding-bottom: (@jumbotron-padding * 1.6);
+
+    .container &,
+    .container-fluid & {
+      padding-left:  (@jumbotron-padding * 2);
+      padding-right: (@jumbotron-padding * 2);
+    }
+
+    h1,
+    .h1 {
+      font-size: @jumbotron-heading-font-size;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/labels.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/labels.less
new file mode 100644
index 0000000..9a5a270
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/labels.less
@@ -0,0 +1,64 @@
+//
+// Labels
+// --------------------------------------------------
+
+.label {
+  display: inline;
+  padding: .2em .6em .3em;
+  font-size: 75%;
+  font-weight: bold;
+  line-height: 1;
+  color: @label-color;
+  text-align: center;
+  white-space: nowrap;
+  vertical-align: baseline;
+  border-radius: .25em;
+
+  // Add hover effects, but only for links
+  a& {
+    &:hover,
+    &:focus {
+      color: @label-link-hover-color;
+      text-decoration: none;
+      cursor: pointer;
+    }
+  }
+
+  // Empty labels collapse automatically (not available in IE8)
+  &:empty {
+    display: none;
+  }
+
+  // Quick fix for labels in buttons
+  .btn & {
+    position: relative;
+    top: -1px;
+  }
+}
+
+// Colors
+// Contextual variations (linked labels get darker on :hover)
+
+.label-default {
+  .label-variant(@label-default-bg);
+}
+
+.label-primary {
+  .label-variant(@label-primary-bg);
+}
+
+.label-success {
+  .label-variant(@label-success-bg);
+}
+
+.label-info {
+  .label-variant(@label-info-bg);
+}
+
+.label-warning {
+  .label-variant(@label-warning-bg);
+}
+
+.label-danger {
+  .label-variant(@label-danger-bg);
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/list-group.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/list-group.less
new file mode 100644
index 0000000..216b912
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/list-group.less
@@ -0,0 +1,130 @@
+//
+// List groups
+// --------------------------------------------------
+
+
+// Base class
+//
+// Easily usable on <ul>, <ol>, or <div>.
+
+.list-group {
+  // No need to set list-style: none; since .list-group-item is block level
+  margin-bottom: 20px;
+  padding-left: 0; // reset padding because ul and ol
+}
+
+
+// Individual list items
+//
+// Use on `li`s or `div`s within the `.list-group` parent.
+
+.list-group-item {
+  position: relative;
+  display: block;
+  padding: 10px 15px;
+  // Place the border on the list items and negative margin up for better styling
+  margin-bottom: -1px;
+  background-color: @list-group-bg;
+  border: 1px solid @list-group-border;
+
+  // Round the first and last items
+  &:first-child {
+    .border-top-radius(@list-group-border-radius);
+  }
+  &:last-child {
+    margin-bottom: 0;
+    .border-bottom-radius(@list-group-border-radius);
+  }
+}
+
+
+// Interactive list items
+//
+// Use anchor or button elements instead of `li`s or `div`s to create interactive items.
+// Includes an extra `.active` modifier class for showing selected items.
+
+a.list-group-item,
+button.list-group-item {
+  color: @list-group-link-color;
+
+  .list-group-item-heading {
+    color: @list-group-link-heading-color;
+  }
+
+  // Hover state
+  &:hover,
+  &:focus {
+    text-decoration: none;
+    color: @list-group-link-hover-color;
+    background-color: @list-group-hover-bg;
+  }
+}
+
+button.list-group-item {
+  width: 100%;
+  text-align: left;
+}
+
+.list-group-item {
+  // Disabled state
+  &.disabled,
+  &.disabled:hover,
+  &.disabled:focus {
+    background-color: @list-group-disabled-bg;
+    color: @list-group-disabled-color;
+    cursor: @cursor-disabled;
+
+    // Force color to inherit for custom content
+    .list-group-item-heading {
+      color: inherit;
+    }
+    .list-group-item-text {
+      color: @list-group-disabled-text-color;
+    }
+  }
+
+  // Active class on item itself, not parent
+  &.active,
+  &.active:hover,
+  &.active:focus {
+    z-index: 2; // Place active items above their siblings for proper border styling
+    color: @list-group-active-color;
+    background-color: @list-group-active-bg;
+    border-color: @list-group-active-border;
+
+    // Force color to inherit for custom content
+    .list-group-item-heading,
+    .list-group-item-heading > small,
+    .list-group-item-heading > .small {
+      color: inherit;
+    }
+    .list-group-item-text {
+      color: @list-group-active-text-color;
+    }
+  }
+}
+
+
+// Contextual variants
+//
+// Add modifier classes to change text and background color on individual items.
+// Organizationally, this must come after the `:hover` states.
+
+.list-group-item-variant(success; @state-success-bg; @state-success-text);
+.list-group-item-variant(info; @state-info-bg; @state-info-text);
+.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);
+.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);
+
+
+// Custom content options
+//
+// Extra classes for creating well-formatted content within `.list-group-item`s.
+
+.list-group-item-heading {
+  margin-top: 0;
+  margin-bottom: 5px;
+}
+.list-group-item-text {
+  margin-bottom: 0;
+  line-height: 1.3;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/media.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/media.less
new file mode 100644
index 0000000..8c835e8
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/media.less
@@ -0,0 +1,66 @@
+.media {
+  // Proper spacing between instances of .media
+  margin-top: 15px;
+
+  &:first-child {
+    margin-top: 0;
+  }
+}
+
+.media,
+.media-body {
+  zoom: 1;
+  overflow: hidden;
+}
+
+.media-body {
+  width: 10000px;
+}
+
+.media-object {
+  display: block;
+
+  // Fix collapse in webkit from max-width: 100% and display: table-cell.
+  &.img-thumbnail {
+    max-width: none;
+  }
+}
+
+.media-right,
+.media > .pull-right {
+  padding-left: 10px;
+}
+
+.media-left,
+.media > .pull-left {
+  padding-right: 10px;
+}
+
+.media-left,
+.media-right,
+.media-body {
+  display: table-cell;
+  vertical-align: top;
+}
+
+.media-middle {
+  vertical-align: middle;
+}
+
+.media-bottom {
+  vertical-align: bottom;
+}
+
+// Reset margins on headings for tighter default spacing
+.media-heading {
+  margin-top: 0;
+  margin-bottom: 5px;
+}
+
+// Media list variation
+//
+// Undo default ul/ol styles
+.media-list {
+  padding-left: 0;
+  list-style: none;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins.less
new file mode 100644
index 0000000..e6f9fe6
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins.less
@@ -0,0 +1,40 @@
+// Mixins
+// --------------------------------------------------
+
+// Utilities
+@import "mixins/hide-text.less";
+@import "mixins/opacity.less";
+@import "mixins/image.less";
+@import "mixins/labels.less";
+@import "mixins/reset-filter.less";
+@import "mixins/resize.less";
+@import "mixins/responsive-visibility.less";
+@import "mixins/size.less";
+@import "mixins/tab-focus.less";
+@import "mixins/reset-text.less";
+@import "mixins/text-emphasis.less";
+@import "mixins/text-overflow.less";
+@import "mixins/vendor-prefixes.less";
+
+// Components
+@import "mixins/alerts.less";
+@import "mixins/buttons.less";
+@import "mixins/panels.less";
+@import "mixins/pagination.less";
+@import "mixins/list-group.less";
+@import "mixins/nav-divider.less";
+@import "mixins/forms.less";
+@import "mixins/progress-bar.less";
+@import "mixins/table-row.less";
+
+// Skins
+@import "mixins/background-variant.less";
+@import "mixins/border-radius.less";
+@import "mixins/gradients.less";
+
+// Layout
+@import "mixins/clearfix.less";
+@import "mixins/center-block.less";
+@import "mixins/nav-vertical-align.less";
+@import "mixins/grid-framework.less";
+@import "mixins/grid.less";
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/alerts.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/alerts.less
new file mode 100644
index 0000000..396196f
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/alerts.less
@@ -0,0 +1,14 @@
+// Alerts
+
+.alert-variant(@background; @border; @text-color) {
+  background-color: @background;
+  border-color: @border;
+  color: @text-color;
+
+  hr {
+    border-top-color: darken(@border, 5%);
+  }
+  .alert-link {
+    color: darken(@text-color, 10%);
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/background-variant.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/background-variant.less
new file mode 100644
index 0000000..a85c22b
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/background-variant.less
@@ -0,0 +1,9 @@
+// Contextual backgrounds
+
+.bg-variant(@color) {
+  background-color: @color;
+  a&:hover,
+  a&:focus {
+    background-color: darken(@color, 10%);
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/border-radius.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/border-radius.less
new file mode 100644
index 0000000..ca05dbf
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/border-radius.less
@@ -0,0 +1,18 @@
+// Single side border-radius
+
+.border-top-radius(@radius) {
+  border-top-right-radius: @radius;
+   border-top-left-radius: @radius;
+}
+.border-right-radius(@radius) {
+  border-bottom-right-radius: @radius;
+     border-top-right-radius: @radius;
+}
+.border-bottom-radius(@radius) {
+  border-bottom-right-radius: @radius;
+   border-bottom-left-radius: @radius;
+}
+.border-left-radius(@radius) {
+  border-bottom-left-radius: @radius;
+     border-top-left-radius: @radius;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/buttons.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/buttons.less
new file mode 100644
index 0000000..b294d8c
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/buttons.less
@@ -0,0 +1,65 @@
+// Button variants
+//
+// Easily pump out default styles, as well as :hover, :focus, :active,
+// and disabled options for all buttons
+
+.button-variant(@color; @background; @border) {
+  color: @color;
+  background-color: @background;
+  border-color: @border;
+
+  &:focus,
+  &.focus {
+    color: @color;
+    background-color: darken(@background, 10%);
+        border-color: darken(@border, 25%);
+  }
+  &:hover {
+    color: @color;
+    background-color: darken(@background, 10%);
+        border-color: darken(@border, 12%);
+  }
+  &:active,
+  &.active,
+  .open > .dropdown-toggle& {
+    color: @color;
+    background-color: darken(@background, 10%);
+        border-color: darken(@border, 12%);
+
+    &:hover,
+    &:focus,
+    &.focus {
+      color: @color;
+      background-color: darken(@background, 17%);
+          border-color: darken(@border, 25%);
+    }
+  }
+  &:active,
+  &.active,
+  .open > .dropdown-toggle& {
+    background-image: none;
+  }
+  &.disabled,
+  &[disabled],
+  fieldset[disabled] & {
+    &:hover,
+    &:focus,
+    &.focus {
+      background-color: @background;
+          border-color: @border;
+    }
+  }
+
+  .badge {
+    color: @background;
+    background-color: @color;
+  }
+}
+
+// Button sizes
+.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
+  padding: @padding-vertical @padding-horizontal;
+  font-size: @font-size;
+  line-height: @line-height;
+  border-radius: @border-radius;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/center-block.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/center-block.less
new file mode 100644
index 0000000..d18d6de
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/center-block.less
@@ -0,0 +1,7 @@
+// Center-align a block level element
+
+.center-block() {
+  display: block;
+  margin-left: auto;
+  margin-right: auto;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/clearfix.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/clearfix.less
new file mode 100644
index 0000000..3f7a382
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/clearfix.less
@@ -0,0 +1,22 @@
+// Clearfix
+//
+// For modern browsers
+// 1. The space content is one way to avoid an Opera bug when the
+//    contenteditable attribute is included anywhere else in the document.
+//    Otherwise it causes space to appear at the top and bottom of elements
+//    that are clearfixed.
+// 2. The use of `table` rather than `block` is only necessary if using
+//    `:before` to contain the top-margins of child elements.
+//
+// Source: http://nicolasgallagher.com/micro-clearfix-hack/
+
+.clearfix() {
+  &:before,
+  &:after {
+    content: " "; // 1
+    display: table; // 2
+  }
+  &:after {
+    clear: both;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/forms.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/forms.less
new file mode 100644
index 0000000..6f55ed9
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/forms.less
@@ -0,0 +1,85 @@
+// Form validation states
+//
+// Used in forms.less to generate the form validation CSS for warnings, errors,
+// and successes.
+
+.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {
+  // Color the label and help text
+  .help-block,
+  .control-label,
+  .radio,
+  .checkbox,
+  .radio-inline,
+  .checkbox-inline,
+  &.radio label,
+  &.checkbox label,
+  &.radio-inline label,
+  &.checkbox-inline label  {
+    color: @text-color;
+  }
+  // Set the border and box shadow on specific inputs to match
+  .form-control {
+    border-color: @border-color;
+    .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work
+    &:focus {
+      border-color: darken(@border-color, 10%);
+      @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);
+      .box-shadow(@shadow);
+    }
+  }
+  // Set validation states also for addons
+  .input-group-addon {
+    color: @text-color;
+    border-color: @border-color;
+    background-color: @background-color;
+  }
+  // Optional feedback icon
+  .form-control-feedback {
+    color: @text-color;
+  }
+}
+
+
+// Form control focus state
+//
+// Generate a customized focus state and for any input with the specified color,
+// which defaults to the `@input-border-focus` variable.
+//
+// We highly encourage you to not customize the default value, but instead use
+// this to tweak colors on an as-needed basis. This aesthetic change is based on
+// WebKit's default styles, but applicable to a wider range of browsers. Its
+// usability and accessibility should be taken into account with any change.
+//
+// Example usage: change the default blue border and shadow to white for better
+// contrast against a dark gray background.
+.form-control-focus(@color: @input-border-focus) {
+  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);
+  &:focus {
+    border-color: @color;
+    outline: 0;
+    .box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}");
+  }
+}
+
+// Form control sizing
+//
+// Relative text size, padding, and border-radii changes for form controls. For
+// horizontal sizing, wrap controls in the predefined grid classes. `<select>`
+// element gets special love because it's special, and that's a fact!
+.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
+  height: @input-height;
+  padding: @padding-vertical @padding-horizontal;
+  font-size: @font-size;
+  line-height: @line-height;
+  border-radius: @border-radius;
+
+  select& {
+    height: @input-height;
+    line-height: @input-height;
+  }
+
+  textarea&,
+  select[multiple]& {
+    height: auto;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/gradients.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/gradients.less
new file mode 100644
index 0000000..0b88a89
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/gradients.less
@@ -0,0 +1,59 @@
+// Gradients
+
+#gradient {
+
+  // Horizontal gradient, from left to right
+  //
+  // Creates two color stops, start and end, by specifying a color and position for each color stop.
+  // Color stops are not available in IE9 and below.
+  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
+    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+
+    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12
+    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
+    background-repeat: repeat-x;
+    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down
+  }
+
+  // Vertical gradient, from top to bottom
+  //
+  // Creates two color stops, start and end, by specifying a color and position for each color stop.
+  // Color stops are not available in IE9 and below.
+  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
+    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+
+    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12
+    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
+    background-repeat: repeat-x;
+    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down
+  }
+
+  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {
+    background-repeat: repeat-x;
+    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+
+    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12
+    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
+  }
+  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
+    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
+    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
+    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);
+    background-repeat: no-repeat;
+    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
+  }
+  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
+    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
+    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
+    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);
+    background-repeat: no-repeat;
+    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
+  }
+  .radial(@inner-color: #555; @outer-color: #333) {
+    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);
+    background-image: radial-gradient(circle, @inner-color, @outer-color);
+    background-repeat: no-repeat;
+  }
+  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {
+    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
+    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
+    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/grid.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/grid.less
new file mode 100644
index 0000000..df496d0
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/grid.less
@@ -0,0 +1,122 @@
+// Grid system
+//
+// Generate semantic grid columns with these mixins.
+
+// Centered container element
+.container-fixed(@gutter: @grid-gutter-width) {
+  margin-right: auto;
+  margin-left: auto;
+  padding-left:  floor((@gutter / 2));
+  padding-right: ceil((@gutter / 2));
+  &:extend(.clearfix all);
+}
+
+// Creates a wrapper for a series of columns
+.make-row(@gutter: @grid-gutter-width) {
+  margin-left:  ceil((@gutter / -2));
+  margin-right: floor((@gutter / -2));
+  &:extend(.clearfix all);
+}
+
+// Generate the extra small columns
+.make-xs-column(@columns; @gutter: @grid-gutter-width) {
+  position: relative;
+  float: left;
+  width: percentage((@columns / @grid-columns));
+  min-height: 1px;
+  padding-left:  (@gutter / 2);
+  padding-right: (@gutter / 2);
+}
+.make-xs-column-offset(@columns) {
+  margin-left: percentage((@columns / @grid-columns));
+}
+.make-xs-column-push(@columns) {
+  left: percentage((@columns / @grid-columns));
+}
+.make-xs-column-pull(@columns) {
+  right: percentage((@columns / @grid-columns));
+}
+
+// Generate the small columns
+.make-sm-column(@columns; @gutter: @grid-gutter-width) {
+  position: relative;
+  min-height: 1px;
+  padding-left:  (@gutter / 2);
+  padding-right: (@gutter / 2);
+
+  @media (min-width: @screen-sm-min) {
+    float: left;
+    width: percentage((@columns / @grid-columns));
+  }
+}
+.make-sm-column-offset(@columns) {
+  @media (min-width: @screen-sm-min) {
+    margin-left: percentage((@columns / @grid-columns));
+  }
+}
+.make-sm-column-push(@columns) {
+  @media (min-width: @screen-sm-min) {
+    left: percentage((@columns / @grid-columns));
+  }
+}
+.make-sm-column-pull(@columns) {
+  @media (min-width: @screen-sm-min) {
+    right: percentage((@columns / @grid-columns));
+  }
+}
+
+// Generate the medium columns
+.make-md-column(@columns; @gutter: @grid-gutter-width) {
+  position: relative;
+  min-height: 1px;
+  padding-left:  (@gutter / 2);
+  padding-right: (@gutter / 2);
+
+  @media (min-width: @screen-md-min) {
+    float: left;
+    width: percentage((@columns / @grid-columns));
+  }
+}
+.make-md-column-offset(@columns) {
+  @media (min-width: @screen-md-min) {
+    margin-left: percentage((@columns / @grid-columns));
+  }
+}
+.make-md-column-push(@columns) {
+  @media (min-width: @screen-md-min) {
+    left: percentage((@columns / @grid-columns));
+  }
+}
+.make-md-column-pull(@columns) {
+  @media (min-width: @screen-md-min) {
+    right: percentage((@columns / @grid-columns));
+  }
+}
+
+// Generate the large columns
+.make-lg-column(@columns; @gutter: @grid-gutter-width) {
+  position: relative;
+  min-height: 1px;
+  padding-left:  (@gutter / 2);
+  padding-right: (@gutter / 2);
+
+  @media (min-width: @screen-lg-min) {
+    float: left;
+    width: percentage((@columns / @grid-columns));
+  }
+}
+.make-lg-column-offset(@columns) {
+  @media (min-width: @screen-lg-min) {
+    margin-left: percentage((@columns / @grid-columns));
+  }
+}
+.make-lg-column-push(@columns) {
+  @media (min-width: @screen-lg-min) {
+    left: percentage((@columns / @grid-columns));
+  }
+}
+.make-lg-column-pull(@columns) {
+  @media (min-width: @screen-lg-min) {
+    right: percentage((@columns / @grid-columns));
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/grid-framework.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/grid-framework.less
new file mode 100644
index 0000000..8c23eed
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/grid-framework.less
@@ -0,0 +1,91 @@
+// Framework grid generation
+//
+// Used only by Bootstrap to generate the correct number of grid classes given
+// any value of `@grid-columns`.
+
+.make-grid-columns() {
+  // Common styles for all sizes of grid columns, widths 1-12
+  .col(@index) { // initial
+    @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}";
+    .col((@index + 1), @item);
+  }
+  .col(@index, @list) when (@index =< @grid-columns) { // general; "=<" isn't a typo
+    @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}";
+    .col((@index + 1), ~"@{list}, @{item}");
+  }
+  .col(@index, @list) when (@index > @grid-columns) { // terminal
+    @{list} {
+      position: relative;
+      // Prevent columns from collapsing when empty
+      min-height: 1px;
+      // Inner gutter via padding
+      padding-left:  ceil((@grid-gutter-width / 2));
+      padding-right: floor((@grid-gutter-width / 2));
+    }
+  }
+  .col(1); // kickstart it
+}
+
+.float-grid-columns(@class) {
+  .col(@index) { // initial
+    @item: ~".col-@{class}-@{index}";
+    .col((@index + 1), @item);
+  }
+  .col(@index, @list) when (@index =< @grid-columns) { // general
+    @item: ~".col-@{class}-@{index}";
+    .col((@index + 1), ~"@{list}, @{item}");
+  }
+  .col(@index, @list) when (@index > @grid-columns) { // terminal
+    @{list} {
+      float: left;
+    }
+  }
+  .col(1); // kickstart it
+}
+
+.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {
+  .col-@{class}-@{index} {
+    width: percentage((@index / @grid-columns));
+  }
+}
+.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {
+  .col-@{class}-push-@{index} {
+    left: percentage((@index / @grid-columns));
+  }
+}
+.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {
+  .col-@{class}-push-0 {
+    left: auto;
+  }
+}
+.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {
+  .col-@{class}-pull-@{index} {
+    right: percentage((@index / @grid-columns));
+  }
+}
+.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {
+  .col-@{class}-pull-0 {
+    right: auto;
+  }
+}
+.calc-grid-column(@index, @class, @type) when (@type = offset) {
+  .col-@{class}-offset-@{index} {
+    margin-left: percentage((@index / @grid-columns));
+  }
+}
+
+// Basic looping in LESS
+.loop-grid-columns(@index, @class, @type) when (@index >= 0) {
+  .calc-grid-column(@index, @class, @type);
+  // next iteration
+  .loop-grid-columns((@index - 1), @class, @type);
+}
+
+// Create grid for specific class
+.make-grid(@class) {
+  .float-grid-columns(@class);
+  .loop-grid-columns(@grid-columns, @class, width);
+  .loop-grid-columns(@grid-columns, @class, pull);
+  .loop-grid-columns(@grid-columns, @class, push);
+  .loop-grid-columns(@grid-columns, @class, offset);
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/hide-text.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/hide-text.less
new file mode 100644
index 0000000..2bb84a3
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/hide-text.less
@@ -0,0 +1,21 @@
+// CSS image replacement
+//
+// Heads up! v3 launched with only `.hide-text()`, but per our pattern for
+// mixins being reused as classes with the same name, this doesn't hold up. As
+// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.
+//
+// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
+
+// Deprecated as of v3.0.1 (has been removed in v4)
+.hide-text() {
+  font: ~"0/0" a;
+  color: transparent;
+  text-shadow: none;
+  background-color: transparent;
+  border: 0;
+}
+
+// New mixin to use as of v3.0.1
+.text-hide() {
+  .hide-text();
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/image.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/image.less
new file mode 100644
index 0000000..f233cb3
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/image.less
@@ -0,0 +1,33 @@
+// Image Mixins
+// - Responsive image
+// - Retina image
+
+
+// Responsive image
+//
+// Keep images from scaling beyond the width of their parents.
+.img-responsive(@display: block) {
+  display: @display;
+  max-width: 100%; // Part 1: Set a maximum relative to the parent
+  height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching
+}
+
+
+// Retina image
+//
+// Short retina mixin for setting background-image and -size. Note that the
+// spelling of `min--moz-device-pixel-ratio` is intentional.
+.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {
+  background-image: url("@{file-1x}");
+
+  @media
+  only screen and (-webkit-min-device-pixel-ratio: 2),
+  only screen and (   min--moz-device-pixel-ratio: 2),
+  only screen and (     -o-min-device-pixel-ratio: 2/1),
+  only screen and (        min-device-pixel-ratio: 2),
+  only screen and (                min-resolution: 192dpi),
+  only screen and (                min-resolution: 2dppx) {
+    background-image: url("@{file-2x}");
+    background-size: @width-1x @height-1x;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/labels.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/labels.less
new file mode 100644
index 0000000..9f7a67e
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/labels.less
@@ -0,0 +1,12 @@
+// Labels
+
+.label-variant(@color) {
+  background-color: @color;
+
+  &[href] {
+    &:hover,
+    &:focus {
+      background-color: darken(@color, 10%);
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/list-group.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/list-group.less
new file mode 100644
index 0000000..03aa190
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/list-group.less
@@ -0,0 +1,30 @@
+// List Groups
+
+.list-group-item-variant(@state; @background; @color) {
+  .list-group-item-@{state} {
+    color: @color;
+    background-color: @background;
+
+    a&,
+    button& {
+      color: @color;
+
+      .list-group-item-heading {
+        color: inherit;
+      }
+
+      &:hover,
+      &:focus {
+        color: @color;
+        background-color: darken(@background, 5%);
+      }
+      &.active,
+      &.active:hover,
+      &.active:focus {
+        color: #fff;
+        background-color: @color;
+        border-color: @color;
+      }
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/nav-divider.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/nav-divider.less
new file mode 100644
index 0000000..feb1e9e
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/nav-divider.less
@@ -0,0 +1,10 @@
+// Horizontal dividers
+//
+// Dividers (basically an hr) within dropdowns and nav lists
+
+.nav-divider(@color: #e5e5e5) {
+  height: 1px;
+  margin: ((@line-height-computed / 2) - 1) 0;
+  overflow: hidden;
+  background-color: @color;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/nav-vertical-align.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/nav-vertical-align.less
new file mode 100644
index 0000000..d458c78
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/nav-vertical-align.less
@@ -0,0 +1,9 @@
+// Navbar vertical align
+//
+// Vertically center elements in the navbar.
+// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
+
+.navbar-vertical-align(@element-height) {
+  margin-top: ((@navbar-height - @element-height) / 2);
+  margin-bottom: ((@navbar-height - @element-height) / 2);
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/opacity.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/opacity.less
new file mode 100644
index 0000000..33ed25c
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/opacity.less
@@ -0,0 +1,8 @@
+// Opacity
+
+.opacity(@opacity) {
+  opacity: @opacity;
+  // IE8 filter
+  @opacity-ie: (@opacity * 100);
+  filter: ~"alpha(opacity=@{opacity-ie})";
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/pagination.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/pagination.less
new file mode 100644
index 0000000..618804f
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/pagination.less
@@ -0,0 +1,24 @@
+// Pagination
+
+.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
+  > li {
+    > a,
+    > span {
+      padding: @padding-vertical @padding-horizontal;
+      font-size: @font-size;
+      line-height: @line-height;
+    }
+    &:first-child {
+      > a,
+      > span {
+        .border-left-radius(@border-radius);
+      }
+    }
+    &:last-child {
+      > a,
+      > span {
+        .border-right-radius(@border-radius);
+      }
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/panels.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/panels.less
new file mode 100644
index 0000000..49ee10d
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/panels.less
@@ -0,0 +1,24 @@
+// Panels
+
+.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {
+  border-color: @border;
+
+  & > .panel-heading {
+    color: @heading-text-color;
+    background-color: @heading-bg-color;
+    border-color: @heading-border;
+
+    + .panel-collapse > .panel-body {
+      border-top-color: @border;
+    }
+    .badge {
+      color: @heading-bg-color;
+      background-color: @heading-text-color;
+    }
+  }
+  & > .panel-footer {
+    + .panel-collapse > .panel-body {
+      border-bottom-color: @border;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/progress-bar.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/progress-bar.less
new file mode 100644
index 0000000..f07996a
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/progress-bar.less
@@ -0,0 +1,10 @@
+// Progress bars
+
+.progress-bar-variant(@color) {
+  background-color: @color;
+
+  // Deprecated parent class requirement as of v3.2.0
+  .progress-striped & {
+    #gradient > .striped();
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/reset-filter.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/reset-filter.less
new file mode 100644
index 0000000..68cdb5e
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/reset-filter.less
@@ -0,0 +1,8 @@
+// Reset filters for IE
+//
+// When you need to remove a gradient background, do not forget to use this to reset
+// the IE filter for IE9 and below.
+
+.reset-filter() {
+  filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/reset-text.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/reset-text.less
new file mode 100644
index 0000000..58dd4d1
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/reset-text.less
@@ -0,0 +1,18 @@
+.reset-text() {
+  font-family: @font-family-base;
+  // We deliberately do NOT reset font-size.
+  font-style: normal;
+  font-weight: normal;
+  letter-spacing: normal;
+  line-break: auto;
+  line-height: @line-height-base;
+  text-align: left; // Fallback for where `start` is not supported
+  text-align: start;
+  text-decoration: none;
+  text-shadow: none;
+  text-transform: none;
+  white-space: normal;
+  word-break: normal;
+  word-spacing: normal;
+  word-wrap: normal;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/resize.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/resize.less
new file mode 100644
index 0000000..3acd3af
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/resize.less
@@ -0,0 +1,6 @@
+// Resize anything
+
+.resizable(@direction) {
+  resize: @direction; // Options: horizontal, vertical, both
+  overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible`
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/responsive-visibility.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/responsive-visibility.less
new file mode 100644
index 0000000..ecf1e97
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/responsive-visibility.less
@@ -0,0 +1,15 @@
+// Responsive utilities
+
+//
+// More easily include all the states for responsive-utilities.less.
+.responsive-visibility() {
+  display: block !important;
+  table&  { display: table !important; }
+  tr&     { display: table-row !important; }
+  th&,
+  td&     { display: table-cell !important; }
+}
+
+.responsive-invisibility() {
+  display: none !important;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/size.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/size.less
new file mode 100644
index 0000000..a8be650
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/size.less
@@ -0,0 +1,10 @@
+// Sizing shortcuts
+
+.size(@width; @height) {
+  width: @width;
+  height: @height;
+}
+
+.square(@size) {
+  .size(@size; @size);
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/tab-focus.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/tab-focus.less
new file mode 100644
index 0000000..d12d236
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/tab-focus.less
@@ -0,0 +1,9 @@
+// WebKit-style focus
+
+.tab-focus() {
+  // WebKit-specific. Other browsers will keep their default outline style.
+  // (Initially tried to also force default via `outline: initial`,
+  // but that seems to erroneously remove the outline in Firefox altogether.)
+  outline: 5px auto -webkit-focus-ring-color;
+  outline-offset: -2px;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/table-row.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/table-row.less
new file mode 100644
index 0000000..0f287f1
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/table-row.less
@@ -0,0 +1,28 @@
+// Tables
+
+.table-row-variant(@state; @background) {
+  // Exact selectors below required to override `.table-striped` and prevent
+  // inheritance to nested tables.
+  .table > thead > tr,
+  .table > tbody > tr,
+  .table > tfoot > tr {
+    > td.@{state},
+    > th.@{state},
+    &.@{state} > td,
+    &.@{state} > th {
+      background-color: @background;
+    }
+  }
+
+  // Hover states for `.table-hover`
+  // Note: this is not available for cells or rows within `thead` or `tfoot`.
+  .table-hover > tbody > tr {
+    > td.@{state}:hover,
+    > th.@{state}:hover,
+    &.@{state}:hover > td,
+    &:hover > .@{state},
+    &.@{state}:hover > th {
+      background-color: darken(@background, 5%);
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/text-emphasis.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/text-emphasis.less
new file mode 100644
index 0000000..9e8a77a
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/text-emphasis.less
@@ -0,0 +1,9 @@
+// Typography
+
+.text-emphasis-variant(@color) {
+  color: @color;
+  a&:hover,
+  a&:focus {
+    color: darken(@color, 10%);
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/text-overflow.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/text-overflow.less
new file mode 100644
index 0000000..c11ad2f
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/text-overflow.less
@@ -0,0 +1,8 @@
+// Text overflow
+// Requires inline-block or block for proper styling
+
+.text-overflow() {
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/vendor-prefixes.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/vendor-prefixes.less
new file mode 100644
index 0000000..2b5e74b
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/mixins/vendor-prefixes.less
@@ -0,0 +1,227 @@
+// Vendor Prefixes
+//
+// All vendor mixins are deprecated as of v3.2.0 due to the introduction of
+// Autoprefixer in our Gruntfile. They have been removed in v4.
+
+// - Animations
+// - Backface visibility
+// - Box shadow
+// - Box sizing
+// - Content columns
+// - Hyphens
+// - Placeholder text
+// - Transformations
+// - Transitions
+// - User Select
+
+
+// Animations
+.animation(@animation) {
+  -webkit-animation: @animation;
+       -o-animation: @animation;
+          animation: @animation;
+}
+.animation-name(@name) {
+  -webkit-animation-name: @name;
+          animation-name: @name;
+}
+.animation-duration(@duration) {
+  -webkit-animation-duration: @duration;
+          animation-duration: @duration;
+}
+.animation-timing-function(@timing-function) {
+  -webkit-animation-timing-function: @timing-function;
+          animation-timing-function: @timing-function;
+}
+.animation-delay(@delay) {
+  -webkit-animation-delay: @delay;
+          animation-delay: @delay;
+}
+.animation-iteration-count(@iteration-count) {
+  -webkit-animation-iteration-count: @iteration-count;
+          animation-iteration-count: @iteration-count;
+}
+.animation-direction(@direction) {
+  -webkit-animation-direction: @direction;
+          animation-direction: @direction;
+}
+.animation-fill-mode(@fill-mode) {
+  -webkit-animation-fill-mode: @fill-mode;
+          animation-fill-mode: @fill-mode;
+}
+
+// Backface visibility
+// Prevent browsers from flickering when using CSS 3D transforms.
+// Default value is `visible`, but can be changed to `hidden`
+
+.backface-visibility(@visibility) {
+  -webkit-backface-visibility: @visibility;
+     -moz-backface-visibility: @visibility;
+          backface-visibility: @visibility;
+}
+
+// Drop shadows
+//
+// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's
+// supported browsers that have box shadow capabilities now support it.
+
+.box-shadow(@shadow) {
+  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1
+          box-shadow: @shadow;
+}
+
+// Box sizing
+.box-sizing(@boxmodel) {
+  -webkit-box-sizing: @boxmodel;
+     -moz-box-sizing: @boxmodel;
+          box-sizing: @boxmodel;
+}
+
+// CSS3 Content Columns
+.content-columns(@column-count; @column-gap: @grid-gutter-width) {
+  -webkit-column-count: @column-count;
+     -moz-column-count: @column-count;
+          column-count: @column-count;
+  -webkit-column-gap: @column-gap;
+     -moz-column-gap: @column-gap;
+          column-gap: @column-gap;
+}
+
+// Optional hyphenation
+.hyphens(@mode: auto) {
+  word-wrap: break-word;
+  -webkit-hyphens: @mode;
+     -moz-hyphens: @mode;
+      -ms-hyphens: @mode; // IE10+
+       -o-hyphens: @mode;
+          hyphens: @mode;
+}
+
+// Placeholder text
+.placeholder(@color: @input-color-placeholder) {
+  // Firefox
+  &::-moz-placeholder {
+    color: @color;
+    opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526
+  }
+  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+
+  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome
+}
+
+// Transformations
+.scale(@ratio) {
+  -webkit-transform: scale(@ratio);
+      -ms-transform: scale(@ratio); // IE9 only
+       -o-transform: scale(@ratio);
+          transform: scale(@ratio);
+}
+.scale(@ratioX; @ratioY) {
+  -webkit-transform: scale(@ratioX, @ratioY);
+      -ms-transform: scale(@ratioX, @ratioY); // IE9 only
+       -o-transform: scale(@ratioX, @ratioY);
+          transform: scale(@ratioX, @ratioY);
+}
+.scaleX(@ratio) {
+  -webkit-transform: scaleX(@ratio);
+      -ms-transform: scaleX(@ratio); // IE9 only
+       -o-transform: scaleX(@ratio);
+          transform: scaleX(@ratio);
+}
+.scaleY(@ratio) {
+  -webkit-transform: scaleY(@ratio);
+      -ms-transform: scaleY(@ratio); // IE9 only
+       -o-transform: scaleY(@ratio);
+          transform: scaleY(@ratio);
+}
+.skew(@x; @y) {
+  -webkit-transform: skewX(@x) skewY(@y);
+      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+
+       -o-transform: skewX(@x) skewY(@y);
+          transform: skewX(@x) skewY(@y);
+}
+.translate(@x; @y) {
+  -webkit-transform: translate(@x, @y);
+      -ms-transform: translate(@x, @y); // IE9 only
+       -o-transform: translate(@x, @y);
+          transform: translate(@x, @y);
+}
+.translate3d(@x; @y; @z) {
+  -webkit-transform: translate3d(@x, @y, @z);
+          transform: translate3d(@x, @y, @z);
+}
+.rotate(@degrees) {
+  -webkit-transform: rotate(@degrees);
+      -ms-transform: rotate(@degrees); // IE9 only
+       -o-transform: rotate(@degrees);
+          transform: rotate(@degrees);
+}
+.rotateX(@degrees) {
+  -webkit-transform: rotateX(@degrees);
+      -ms-transform: rotateX(@degrees); // IE9 only
+       -o-transform: rotateX(@degrees);
+          transform: rotateX(@degrees);
+}
+.rotateY(@degrees) {
+  -webkit-transform: rotateY(@degrees);
+      -ms-transform: rotateY(@degrees); // IE9 only
+       -o-transform: rotateY(@degrees);
+          transform: rotateY(@degrees);
+}
+.perspective(@perspective) {
+  -webkit-perspective: @perspective;
+     -moz-perspective: @perspective;
+          perspective: @perspective;
+}
+.perspective-origin(@perspective) {
+  -webkit-perspective-origin: @perspective;
+     -moz-perspective-origin: @perspective;
+          perspective-origin: @perspective;
+}
+.transform-origin(@origin) {
+  -webkit-transform-origin: @origin;
+     -moz-transform-origin: @origin;
+      -ms-transform-origin: @origin; // IE9 only
+          transform-origin: @origin;
+}
+
+
+// Transitions
+
+.transition(@transition) {
+  -webkit-transition: @transition;
+       -o-transition: @transition;
+          transition: @transition;
+}
+.transition-property(@transition-property) {
+  -webkit-transition-property: @transition-property;
+          transition-property: @transition-property;
+}
+.transition-delay(@transition-delay) {
+  -webkit-transition-delay: @transition-delay;
+          transition-delay: @transition-delay;
+}
+.transition-duration(@transition-duration) {
+  -webkit-transition-duration: @transition-duration;
+          transition-duration: @transition-duration;
+}
+.transition-timing-function(@timing-function) {
+  -webkit-transition-timing-function: @timing-function;
+          transition-timing-function: @timing-function;
+}
+.transition-transform(@transition) {
+  -webkit-transition: -webkit-transform @transition;
+     -moz-transition: -moz-transform @transition;
+       -o-transition: -o-transform @transition;
+          transition: transform @transition;
+}
+
+
+// User select
+// For selecting text on the page
+
+.user-select(@select) {
+  -webkit-user-select: @select;
+     -moz-user-select: @select;
+      -ms-user-select: @select; // IE10+
+          user-select: @select;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/modals.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/modals.less
new file mode 100644
index 0000000..767ce36
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/modals.less
@@ -0,0 +1,150 @@
+//
+// Modals
+// --------------------------------------------------
+
+// .modal-open      - body class for killing the scroll
+// .modal           - container to scroll within
+// .modal-dialog    - positioning shell for the actual modal
+// .modal-content   - actual modal w/ bg and corners and shit
+
+// Kill the scroll on the body
+.modal-open {
+  overflow: hidden;
+}
+
+// Container that the modal scrolls within
+.modal {
+  display: none;
+  overflow: hidden;
+  position: fixed;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: @zindex-modal;
+  -webkit-overflow-scrolling: touch;
+
+  // Prevent Chrome on Windows from adding a focus outline. For details, see
+  // https://github.com/twbs/bootstrap/pull/10951.
+  outline: 0;
+
+  // When fading in the modal, animate it to slide down
+  &.fade .modal-dialog {
+    .translate(0, -25%);
+    .transition-transform(~"0.3s ease-out");
+  }
+  &.in .modal-dialog { .translate(0, 0) }
+}
+.modal-open .modal {
+  overflow-x: hidden;
+  overflow-y: auto;
+}
+
+// Shell div to position the modal with bottom padding
+.modal-dialog {
+  position: relative;
+  width: auto;
+  margin: 10px;
+}
+
+// Actual modal
+.modal-content {
+  position: relative;
+  background-color: @modal-content-bg;
+  border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)
+  border: 1px solid @modal-content-border-color;
+  border-radius: @border-radius-large;
+  .box-shadow(0 3px 9px rgba(0,0,0,.5));
+  background-clip: padding-box;
+  // Remove focus outline from opened modal
+  outline: 0;
+}
+
+// Modal background
+.modal-backdrop {
+  position: fixed;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: @zindex-modal-background;
+  background-color: @modal-backdrop-bg;
+  // Fade for backdrop
+  &.fade { .opacity(0); }
+  &.in { .opacity(@modal-backdrop-opacity); }
+}
+
+// Modal header
+// Top section of the modal w/ title and dismiss
+.modal-header {
+  padding: @modal-title-padding;
+  border-bottom: 1px solid @modal-header-border-color;
+  &:extend(.clearfix all);
+}
+// Close icon
+.modal-header .close {
+  margin-top: -2px;
+}
+
+// Title text within header
+.modal-title {
+  margin: 0;
+  line-height: @modal-title-line-height;
+}
+
+// Modal body
+// Where all modal content resides (sibling of .modal-header and .modal-footer)
+.modal-body {
+  position: relative;
+  padding: @modal-inner-padding;
+}
+
+// Footer (for actions)
+.modal-footer {
+  padding: @modal-inner-padding;
+  text-align: right; // right align buttons
+  border-top: 1px solid @modal-footer-border-color;
+  &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons
+
+  // Properly space out buttons
+  .btn + .btn {
+    margin-left: 5px;
+    margin-bottom: 0; // account for input[type="submit"] which gets the bottom margin like all other inputs
+  }
+  // but override that for button groups
+  .btn-group .btn + .btn {
+    margin-left: -1px;
+  }
+  // and override it for block buttons as well
+  .btn-block + .btn-block {
+    margin-left: 0;
+  }
+}
+
+// Measure scrollbar width for padding body during modal show/hide
+.modal-scrollbar-measure {
+  position: absolute;
+  top: -9999px;
+  width: 50px;
+  height: 50px;
+  overflow: scroll;
+}
+
+// Scale up the modal
+@media (min-width: @screen-sm-min) {
+  // Automatically set modal's width for larger viewports
+  .modal-dialog {
+    width: @modal-md;
+    margin: 30px auto;
+  }
+  .modal-content {
+    .box-shadow(0 5px 15px rgba(0,0,0,.5));
+  }
+
+  // Modal sizes
+  .modal-sm { width: @modal-sm; }
+}
+
+@media (min-width: @screen-md-min) {
+  .modal-lg { width: @modal-lg; }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/navbar.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/navbar.less
new file mode 100644
index 0000000..6d751bb
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/navbar.less
@@ -0,0 +1,660 @@
+//
+// Navbars
+// --------------------------------------------------
+
+
+// Wrapper and base class
+//
+// Provide a static navbar from which we expand to create full-width, fixed, and
+// other navbar variations.
+
+.navbar {
+  position: relative;
+  min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)
+  margin-bottom: @navbar-margin-bottom;
+  border: 1px solid transparent;
+
+  // Prevent floats from breaking the navbar
+  &:extend(.clearfix all);
+
+  @media (min-width: @grid-float-breakpoint) {
+    border-radius: @navbar-border-radius;
+  }
+}
+
+
+// Navbar heading
+//
+// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy
+// styling of responsive aspects.
+
+.navbar-header {
+  &:extend(.clearfix all);
+
+  @media (min-width: @grid-float-breakpoint) {
+    float: left;
+  }
+}
+
+
+// Navbar collapse (body)
+//
+// Group your navbar content into this for easy collapsing and expanding across
+// various device sizes. By default, this content is collapsed when <768px, but
+// will expand past that for a horizontal display.
+//
+// To start (on mobile devices) the navbar links, forms, and buttons are stacked
+// vertically and include a `max-height` to overflow in case you have too much
+// content for the user's viewport.
+
+.navbar-collapse {
+  overflow-x: visible;
+  padding-right: @navbar-padding-horizontal;
+  padding-left:  @navbar-padding-horizontal;
+  border-top: 1px solid transparent;
+  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
+  &:extend(.clearfix all);
+  -webkit-overflow-scrolling: touch;
+
+  &.in {
+    overflow-y: auto;
+  }
+
+  @media (min-width: @grid-float-breakpoint) {
+    width: auto;
+    border-top: 0;
+    box-shadow: none;
+
+    &.collapse {
+      display: block !important;
+      height: auto !important;
+      padding-bottom: 0; // Override default setting
+      overflow: visible !important;
+    }
+
+    &.in {
+      overflow-y: visible;
+    }
+
+    // Undo the collapse side padding for navbars with containers to ensure
+    // alignment of right-aligned contents.
+    .navbar-fixed-top &,
+    .navbar-static-top &,
+    .navbar-fixed-bottom & {
+      padding-left: 0;
+      padding-right: 0;
+    }
+  }
+}
+
+.navbar-fixed-top,
+.navbar-fixed-bottom {
+  .navbar-collapse {
+    max-height: @navbar-collapse-max-height;
+
+    @media (max-device-width: @screen-xs-min) and (orientation: landscape) {
+      max-height: 200px;
+    }
+  }
+}
+
+
+// Both navbar header and collapse
+//
+// When a container is present, change the behavior of the header and collapse.
+
+.container,
+.container-fluid {
+  > .navbar-header,
+  > .navbar-collapse {
+    margin-right: -@navbar-padding-horizontal;
+    margin-left:  -@navbar-padding-horizontal;
+
+    @media (min-width: @grid-float-breakpoint) {
+      margin-right: 0;
+      margin-left:  0;
+    }
+  }
+}
+
+
+//
+// Navbar alignment options
+//
+// Display the navbar across the entirety of the page or fixed it to the top or
+// bottom of the page.
+
+// Static top (unfixed, but 100% wide) navbar
+.navbar-static-top {
+  z-index: @zindex-navbar;
+  border-width: 0 0 1px;
+
+  @media (min-width: @grid-float-breakpoint) {
+    border-radius: 0;
+  }
+}
+
+// Fix the top/bottom navbars when screen real estate supports it
+.navbar-fixed-top,
+.navbar-fixed-bottom {
+  position: fixed;
+  right: 0;
+  left: 0;
+  z-index: @zindex-navbar-fixed;
+
+  // Undo the rounded corners
+  @media (min-width: @grid-float-breakpoint) {
+    border-radius: 0;
+  }
+}
+.navbar-fixed-top {
+  top: 0;
+  border-width: 0 0 1px;
+}
+.navbar-fixed-bottom {
+  bottom: 0;
+  margin-bottom: 0; // override .navbar defaults
+  border-width: 1px 0 0;
+}
+
+
+// Brand/project name
+
+.navbar-brand {
+  float: left;
+  padding: @navbar-padding-vertical @navbar-padding-horizontal;
+  font-size: @font-size-large;
+  line-height: @line-height-computed;
+  height: @navbar-height;
+
+  &:hover,
+  &:focus {
+    text-decoration: none;
+  }
+
+  > img {
+    display: block;
+  }
+
+  @media (min-width: @grid-float-breakpoint) {
+    .navbar > .container &,
+    .navbar > .container-fluid & {
+      margin-left: -@navbar-padding-horizontal;
+    }
+  }
+}
+
+
+// Navbar toggle
+//
+// Custom button for toggling the `.navbar-collapse`, powered by the collapse
+// JavaScript plugin.
+
+.navbar-toggle {
+  position: relative;
+  float: right;
+  margin-right: @navbar-padding-horizontal;
+  padding: 9px 10px;
+  .navbar-vertical-align(34px);
+  background-color: transparent;
+  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
+  border: 1px solid transparent;
+  border-radius: @border-radius-base;
+
+  // We remove the `outline` here, but later compensate by attaching `:hover`
+  // styles to `:focus`.
+  &:focus {
+    outline: 0;
+  }
+
+  // Bars
+  .icon-bar {
+    display: block;
+    width: 22px;
+    height: 2px;
+    border-radius: 1px;
+  }
+  .icon-bar + .icon-bar {
+    margin-top: 4px;
+  }
+
+  @media (min-width: @grid-float-breakpoint) {
+    display: none;
+  }
+}
+
+
+// Navbar nav links
+//
+// Builds on top of the `.nav` components with its own modifier class to make
+// the nav the full height of the horizontal nav (above 768px).
+
+.navbar-nav {
+  margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;
+
+  > li > a {
+    padding-top:    10px;
+    padding-bottom: 10px;
+    line-height: @line-height-computed;
+  }
+
+  @media (max-width: @grid-float-breakpoint-max) {
+    // Dropdowns get custom display when collapsed
+    .open .dropdown-menu {
+      position: static;
+      float: none;
+      width: auto;
+      margin-top: 0;
+      background-color: transparent;
+      border: 0;
+      box-shadow: none;
+      > li > a,
+      .dropdown-header {
+        padding: 5px 15px 5px 25px;
+      }
+      > li > a {
+        line-height: @line-height-computed;
+        &:hover,
+        &:focus {
+          background-image: none;
+        }
+      }
+    }
+  }
+
+  // Uncollapse the nav
+  @media (min-width: @grid-float-breakpoint) {
+    float: left;
+    margin: 0;
+
+    > li {
+      float: left;
+      > a {
+        padding-top:    @navbar-padding-vertical;
+        padding-bottom: @navbar-padding-vertical;
+      }
+    }
+  }
+}
+
+
+// Navbar form
+//
+// Extension of the `.form-inline` with some extra flavor for optimum display in
+// our navbars.
+
+.navbar-form {
+  margin-left: -@navbar-padding-horizontal;
+  margin-right: -@navbar-padding-horizontal;
+  padding: 10px @navbar-padding-horizontal;
+  border-top: 1px solid transparent;
+  border-bottom: 1px solid transparent;
+  @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
+  .box-shadow(@shadow);
+
+  // Mixin behavior for optimum display
+  .form-inline();
+
+  .form-group {
+    @media (max-width: @grid-float-breakpoint-max) {
+      margin-bottom: 5px;
+
+      &:last-child {
+        margin-bottom: 0;
+      }
+    }
+  }
+
+  // Vertically center in expanded, horizontal navbar
+  .navbar-vertical-align(@input-height-base);
+
+  // Undo 100% width for pull classes
+  @media (min-width: @grid-float-breakpoint) {
+    width: auto;
+    border: 0;
+    margin-left: 0;
+    margin-right: 0;
+    padding-top: 0;
+    padding-bottom: 0;
+    .box-shadow(none);
+  }
+}
+
+
+// Dropdown menus
+
+// Menu position and menu carets
+.navbar-nav > li > .dropdown-menu {
+  margin-top: 0;
+  .border-top-radius(0);
+}
+// Menu position and menu caret support for dropups via extra dropup class
+.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
+  margin-bottom: 0;
+  .border-top-radius(@navbar-border-radius);
+  .border-bottom-radius(0);
+}
+
+
+// Buttons in navbars
+//
+// Vertically center a button within a navbar (when *not* in a form).
+
+.navbar-btn {
+  .navbar-vertical-align(@input-height-base);
+
+  &.btn-sm {
+    .navbar-vertical-align(@input-height-small);
+  }
+  &.btn-xs {
+    .navbar-vertical-align(22);
+  }
+}
+
+
+// Text in navbars
+//
+// Add a class to make any element properly align itself vertically within the navbars.
+
+.navbar-text {
+  .navbar-vertical-align(@line-height-computed);
+
+  @media (min-width: @grid-float-breakpoint) {
+    float: left;
+    margin-left: @navbar-padding-horizontal;
+    margin-right: @navbar-padding-horizontal;
+  }
+}
+
+
+// Component alignment
+//
+// Repurpose the pull utilities as their own navbar utilities to avoid specificity
+// issues with parents and chaining. Only do this when the navbar is uncollapsed
+// though so that navbar contents properly stack and align in mobile.
+//
+// Declared after the navbar components to ensure more specificity on the margins.
+
+@media (min-width: @grid-float-breakpoint) {
+  .navbar-left  { .pull-left(); }
+  .navbar-right {
+    .pull-right();
+    margin-right: -@navbar-padding-horizontal;
+
+    ~ .navbar-right {
+      margin-right: 0;
+    }
+  }
+}
+
+
+// Alternate navbars
+// --------------------------------------------------
+
+// Default navbar
+.navbar-default {
+  background-color: @navbar-default-bg;
+  border-color: @navbar-default-border;
+
+  .navbar-brand {
+    color: @navbar-default-brand-color;
+    &:hover,
+    &:focus {
+      color: @navbar-default-brand-hover-color;
+      background-color: @navbar-default-brand-hover-bg;
+    }
+  }
+
+  .navbar-text {
+    color: @navbar-default-color;
+  }
+
+  .navbar-nav {
+    > li > a {
+      color: @navbar-default-link-color;
+
+      &:hover,
+      &:focus {
+        color: @navbar-default-link-hover-color;
+        background-color: @navbar-default-link-hover-bg;
+      }
+    }
+    > .active > a {
+      &,
+      &:hover,
+      &:focus {
+        color: @navbar-default-link-active-color;
+        background-color: @navbar-default-link-active-bg;
+      }
+    }
+    > .disabled > a {
+      &,
+      &:hover,
+      &:focus {
+        color: @navbar-default-link-disabled-color;
+        background-color: @navbar-default-link-disabled-bg;
+      }
+    }
+  }
+
+  .navbar-toggle {
+    border-color: @navbar-default-toggle-border-color;
+    &:hover,
+    &:focus {
+      background-color: @navbar-default-toggle-hover-bg;
+    }
+    .icon-bar {
+      background-color: @navbar-default-toggle-icon-bar-bg;
+    }
+  }
+
+  .navbar-collapse,
+  .navbar-form {
+    border-color: @navbar-default-border;
+  }
+
+  // Dropdown menu items
+  .navbar-nav {
+    // Remove background color from open dropdown
+    > .open > a {
+      &,
+      &:hover,
+      &:focus {
+        background-color: @navbar-default-link-active-bg;
+        color: @navbar-default-link-active-color;
+      }
+    }
+
+    @media (max-width: @grid-float-breakpoint-max) {
+      // Dropdowns get custom display when collapsed
+      .open .dropdown-menu {
+        > li > a {
+          color: @navbar-default-link-color;
+          &:hover,
+          &:focus {
+            color: @navbar-default-link-hover-color;
+            background-color: @navbar-default-link-hover-bg;
+          }
+        }
+        > .active > a {
+          &,
+          &:hover,
+          &:focus {
+            color: @navbar-default-link-active-color;
+            background-color: @navbar-default-link-active-bg;
+          }
+        }
+        > .disabled > a {
+          &,
+          &:hover,
+          &:focus {
+            color: @navbar-default-link-disabled-color;
+            background-color: @navbar-default-link-disabled-bg;
+          }
+        }
+      }
+    }
+  }
+
+
+  // Links in navbars
+  //
+  // Add a class to ensure links outside the navbar nav are colored correctly.
+
+  .navbar-link {
+    color: @navbar-default-link-color;
+    &:hover {
+      color: @navbar-default-link-hover-color;
+    }
+  }
+
+  .btn-link {
+    color: @navbar-default-link-color;
+    &:hover,
+    &:focus {
+      color: @navbar-default-link-hover-color;
+    }
+    &[disabled],
+    fieldset[disabled] & {
+      &:hover,
+      &:focus {
+        color: @navbar-default-link-disabled-color;
+      }
+    }
+  }
+}
+
+// Inverse navbar
+
+.navbar-inverse {
+  background-color: @navbar-inverse-bg;
+  border-color: @navbar-inverse-border;
+
+  .navbar-brand {
+    color: @navbar-inverse-brand-color;
+    &:hover,
+    &:focus {
+      color: @navbar-inverse-brand-hover-color;
+      background-color: @navbar-inverse-brand-hover-bg;
+    }
+  }
+
+  .navbar-text {
+    color: @navbar-inverse-color;
+  }
+
+  .navbar-nav {
+    > li > a {
+      color: @navbar-inverse-link-color;
+
+      &:hover,
+      &:focus {
+        color: @navbar-inverse-link-hover-color;
+        background-color: @navbar-inverse-link-hover-bg;
+      }
+    }
+    > .active > a {
+      &,
+      &:hover,
+      &:focus {
+        color: @navbar-inverse-link-active-color;
+        background-color: @navbar-inverse-link-active-bg;
+      }
+    }
+    > .disabled > a {
+      &,
+      &:hover,
+      &:focus {
+        color: @navbar-inverse-link-disabled-color;
+        background-color: @navbar-inverse-link-disabled-bg;
+      }
+    }
+  }
+
+  // Darken the responsive nav toggle
+  .navbar-toggle {
+    border-color: @navbar-inverse-toggle-border-color;
+    &:hover,
+    &:focus {
+      background-color: @navbar-inverse-toggle-hover-bg;
+    }
+    .icon-bar {
+      background-color: @navbar-inverse-toggle-icon-bar-bg;
+    }
+  }
+
+  .navbar-collapse,
+  .navbar-form {
+    border-color: darken(@navbar-inverse-bg, 7%);
+  }
+
+  // Dropdowns
+  .navbar-nav {
+    > .open > a {
+      &,
+      &:hover,
+      &:focus {
+        background-color: @navbar-inverse-link-active-bg;
+        color: @navbar-inverse-link-active-color;
+      }
+    }
+
+    @media (max-width: @grid-float-breakpoint-max) {
+      // Dropdowns get custom display
+      .open .dropdown-menu {
+        > .dropdown-header {
+          border-color: @navbar-inverse-border;
+        }
+        .divider {
+          background-color: @navbar-inverse-border;
+        }
+        > li > a {
+          color: @navbar-inverse-link-color;
+          &:hover,
+          &:focus {
+            color: @navbar-inverse-link-hover-color;
+            background-color: @navbar-inverse-link-hover-bg;
+          }
+        }
+        > .active > a {
+          &,
+          &:hover,
+          &:focus {
+            color: @navbar-inverse-link-active-color;
+            background-color: @navbar-inverse-link-active-bg;
+          }
+        }
+        > .disabled > a {
+          &,
+          &:hover,
+          &:focus {
+            color: @navbar-inverse-link-disabled-color;
+            background-color: @navbar-inverse-link-disabled-bg;
+          }
+        }
+      }
+    }
+  }
+
+  .navbar-link {
+    color: @navbar-inverse-link-color;
+    &:hover {
+      color: @navbar-inverse-link-hover-color;
+    }
+  }
+
+  .btn-link {
+    color: @navbar-inverse-link-color;
+    &:hover,
+    &:focus {
+      color: @navbar-inverse-link-hover-color;
+    }
+    &[disabled],
+    fieldset[disabled] & {
+      &:hover,
+      &:focus {
+        color: @navbar-inverse-link-disabled-color;
+      }
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/navs.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/navs.less
new file mode 100644
index 0000000..a3d11b1
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/navs.less
@@ -0,0 +1,242 @@
+//
+// Navs
+// --------------------------------------------------
+
+
+// Base class
+// --------------------------------------------------
+
+.nav {
+  margin-bottom: 0;
+  padding-left: 0; // Override default ul/ol
+  list-style: none;
+  &:extend(.clearfix all);
+
+  > li {
+    position: relative;
+    display: block;
+
+    > a {
+      position: relative;
+      display: block;
+      padding: @nav-link-padding;
+      &:hover,
+      &:focus {
+        text-decoration: none;
+        background-color: @nav-link-hover-bg;
+      }
+    }
+
+    // Disabled state sets text to gray and nukes hover/tab effects
+    &.disabled > a {
+      color: @nav-disabled-link-color;
+
+      &:hover,
+      &:focus {
+        color: @nav-disabled-link-hover-color;
+        text-decoration: none;
+        background-color: transparent;
+        cursor: @cursor-disabled;
+      }
+    }
+  }
+
+  // Open dropdowns
+  .open > a {
+    &,
+    &:hover,
+    &:focus {
+      background-color: @nav-link-hover-bg;
+      border-color: @link-color;
+    }
+  }
+
+  // Nav dividers (deprecated with v3.0.1)
+  //
+  // This should have been removed in v3 with the dropping of `.nav-list`, but
+  // we missed it. We don't currently support this anywhere, but in the interest
+  // of maintaining backward compatibility in case you use it, it's deprecated.
+  .nav-divider {
+    .nav-divider();
+  }
+
+  // Prevent IE8 from misplacing imgs
+  //
+  // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989
+  > li > a > img {
+    max-width: none;
+  }
+}
+
+
+// Tabs
+// -------------------------
+
+// Give the tabs something to sit on
+.nav-tabs {
+  border-bottom: 1px solid @nav-tabs-border-color;
+  > li {
+    float: left;
+    // Make the list-items overlay the bottom border
+    margin-bottom: -1px;
+
+    // Actual tabs (as links)
+    > a {
+      margin-right: 2px;
+      line-height: @line-height-base;
+      border: 1px solid transparent;
+      border-radius: @border-radius-base @border-radius-base 0 0;
+      &:hover {
+        border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;
+      }
+    }
+
+    // Active state, and its :hover to override normal :hover
+    &.active > a {
+      &,
+      &:hover,
+      &:focus {
+        color: @nav-tabs-active-link-hover-color;
+        background-color: @nav-tabs-active-link-hover-bg;
+        border: 1px solid @nav-tabs-active-link-hover-border-color;
+        border-bottom-color: transparent;
+        cursor: default;
+      }
+    }
+  }
+  // pulling this in mainly for less shorthand
+  &.nav-justified {
+    .nav-justified();
+    .nav-tabs-justified();
+  }
+}
+
+
+// Pills
+// -------------------------
+.nav-pills {
+  > li {
+    float: left;
+
+    // Links rendered as pills
+    > a {
+      border-radius: @nav-pills-border-radius;
+    }
+    + li {
+      margin-left: 2px;
+    }
+
+    // Active state
+    &.active > a {
+      &,
+      &:hover,
+      &:focus {
+        color: @nav-pills-active-link-hover-color;
+        background-color: @nav-pills-active-link-hover-bg;
+      }
+    }
+  }
+}
+
+
+// Stacked pills
+.nav-stacked {
+  > li {
+    float: none;
+    + li {
+      margin-top: 2px;
+      margin-left: 0; // no need for this gap between nav items
+    }
+  }
+}
+
+
+// Nav variations
+// --------------------------------------------------
+
+// Justified nav links
+// -------------------------
+
+.nav-justified {
+  width: 100%;
+
+  > li {
+    float: none;
+    > a {
+      text-align: center;
+      margin-bottom: 5px;
+    }
+  }
+
+  > .dropdown .dropdown-menu {
+    top: auto;
+    left: auto;
+  }
+
+  @media (min-width: @screen-sm-min) {
+    > li {
+      display: table-cell;
+      width: 1%;
+      > a {
+        margin-bottom: 0;
+      }
+    }
+  }
+}
+
+// Move borders to anchors instead of bottom of list
+//
+// Mixin for adding on top the shared `.nav-justified` styles for our tabs
+.nav-tabs-justified {
+  border-bottom: 0;
+
+  > li > a {
+    // Override margin from .nav-tabs
+    margin-right: 0;
+    border-radius: @border-radius-base;
+  }
+
+  > .active > a,
+  > .active > a:hover,
+  > .active > a:focus {
+    border: 1px solid @nav-tabs-justified-link-border-color;
+  }
+
+  @media (min-width: @screen-sm-min) {
+    > li > a {
+      border-bottom: 1px solid @nav-tabs-justified-link-border-color;
+      border-radius: @border-radius-base @border-radius-base 0 0;
+    }
+    > .active > a,
+    > .active > a:hover,
+    > .active > a:focus {
+      border-bottom-color: @nav-tabs-justified-active-link-border-color;
+    }
+  }
+}
+
+
+// Tabbable tabs
+// -------------------------
+
+// Hide tabbable panes to start, show them when `.active`
+.tab-content {
+  > .tab-pane {
+    display: none;
+  }
+  > .active {
+    display: block;
+  }
+}
+
+
+// Dropdowns
+// -------------------------
+
+// Specific dropdowns
+.nav-tabs .dropdown-menu {
+  // make dropdown border overlap tab border
+  margin-top: -1px;
+  // Remove the top rounded corners here since there is a hard edge above the menu
+  .border-top-radius(0);
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/normalize.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/normalize.less
new file mode 100644
index 0000000..9dddf73
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/normalize.less
@@ -0,0 +1,424 @@
+/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
+
+//
+// 1. Set default font family to sans-serif.
+// 2. Prevent iOS and IE text size adjust after device orientation change,
+//    without disabling user zoom.
+//
+
+html {
+  font-family: sans-serif; // 1
+  -ms-text-size-adjust: 100%; // 2
+  -webkit-text-size-adjust: 100%; // 2
+}
+
+//
+// Remove default margin.
+//
+
+body {
+  margin: 0;
+}
+
+// HTML5 display definitions
+// ==========================================================================
+
+//
+// Correct `block` display not defined for any HTML5 element in IE 8/9.
+// Correct `block` display not defined for `details` or `summary` in IE 10/11
+// and Firefox.
+// Correct `block` display not defined for `main` in IE 11.
+//
+
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+main,
+menu,
+nav,
+section,
+summary {
+  display: block;
+}
+
+//
+// 1. Correct `inline-block` display not defined in IE 8/9.
+// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
+//
+
+audio,
+canvas,
+progress,
+video {
+  display: inline-block; // 1
+  vertical-align: baseline; // 2
+}
+
+//
+// Prevent modern browsers from displaying `audio` without controls.
+// Remove excess height in iOS 5 devices.
+//
+
+audio:not([controls]) {
+  display: none;
+  height: 0;
+}
+
+//
+// Address `[hidden]` styling not present in IE 8/9/10.
+// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
+//
+
+[hidden],
+template {
+  display: none;
+}
+
+// Links
+// ==========================================================================
+
+//
+// Remove the gray background color from active links in IE 10.
+//
+
+a {
+  background-color: transparent;
+}
+
+//
+// Improve readability of focused elements when they are also in an
+// active/hover state.
+//
+
+a:active,
+a:hover {
+  outline: 0;
+}
+
+// Text-level semantics
+// ==========================================================================
+
+//
+// Address styling not present in IE 8/9/10/11, Safari, and Chrome.
+//
+
+abbr[title] {
+  border-bottom: 1px dotted;
+}
+
+//
+// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
+//
+
+b,
+strong {
+  font-weight: bold;
+}
+
+//
+// Address styling not present in Safari and Chrome.
+//
+
+dfn {
+  font-style: italic;
+}
+
+//
+// Address variable `h1` font-size and margin within `section` and `article`
+// contexts in Firefox 4+, Safari, and Chrome.
+//
+
+h1 {
+  font-size: 2em;
+  margin: 0.67em 0;
+}
+
+//
+// Address styling not present in IE 8/9.
+//
+
+mark {
+  background: #ff0;
+  color: #000;
+}
+
+//
+// Address inconsistent and variable font size in all browsers.
+//
+
+small {
+  font-size: 80%;
+}
+
+//
+// Prevent `sub` and `sup` affecting `line-height` in all browsers.
+//
+
+sub,
+sup {
+  font-size: 75%;
+  line-height: 0;
+  position: relative;
+  vertical-align: baseline;
+}
+
+sup {
+  top: -0.5em;
+}
+
+sub {
+  bottom: -0.25em;
+}
+
+// Embedded content
+// ==========================================================================
+
+//
+// Remove border when inside `a` element in IE 8/9/10.
+//
+
+img {
+  border: 0;
+}
+
+//
+// Correct overflow not hidden in IE 9/10/11.
+//
+
+svg:not(:root) {
+  overflow: hidden;
+}
+
+// Grouping content
+// ==========================================================================
+
+//
+// Address margin not present in IE 8/9 and Safari.
+//
+
+figure {
+  margin: 1em 40px;
+}
+
+//
+// Address differences between Firefox and other browsers.
+//
+
+hr {
+  box-sizing: content-box;
+  height: 0;
+}
+
+//
+// Contain overflow in all browsers.
+//
+
+pre {
+  overflow: auto;
+}
+
+//
+// Address odd `em`-unit font size rendering in all browsers.
+//
+
+code,
+kbd,
+pre,
+samp {
+  font-family: monospace, monospace;
+  font-size: 1em;
+}
+
+// Forms
+// ==========================================================================
+
+//
+// Known limitation: by default, Chrome and Safari on OS X allow very limited
+// styling of `select`, unless a `border` property is set.
+//
+
+//
+// 1. Correct color not being inherited.
+//    Known issue: affects color of disabled elements.
+// 2. Correct font properties not being inherited.
+// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
+//
+
+button,
+input,
+optgroup,
+select,
+textarea {
+  color: inherit; // 1
+  font: inherit; // 2
+  margin: 0; // 3
+}
+
+//
+// Address `overflow` set to `hidden` in IE 8/9/10/11.
+//
+
+button {
+  overflow: visible;
+}
+
+//
+// Address inconsistent `text-transform` inheritance for `button` and `select`.
+// All other form control elements do not inherit `text-transform` values.
+// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
+// Correct `select` style inheritance in Firefox.
+//
+
+button,
+select {
+  text-transform: none;
+}
+
+//
+// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
+//    and `video` controls.
+// 2. Correct inability to style clickable `input` types in iOS.
+// 3. Improve usability and consistency of cursor style between image-type
+//    `input` and others.
+//
+
+button,
+html input[type="button"], // 1
+input[type="reset"],
+input[type="submit"] {
+  -webkit-appearance: button; // 2
+  cursor: pointer; // 3
+}
+
+//
+// Re-set default cursor for disabled elements.
+//
+
+button[disabled],
+html input[disabled] {
+  cursor: default;
+}
+
+//
+// Remove inner padding and border in Firefox 4+.
+//
+
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+  border: 0;
+  padding: 0;
+}
+
+//
+// Address Firefox 4+ setting `line-height` on `input` using `!important` in
+// the UA stylesheet.
+//
+
+input {
+  line-height: normal;
+}
+
+//
+// It's recommended that you don't attempt to style these elements.
+// Firefox's implementation doesn't respect box-sizing, padding, or width.
+//
+// 1. Address box sizing set to `content-box` in IE 8/9/10.
+// 2. Remove excess padding in IE 8/9/10.
+//
+
+input[type="checkbox"],
+input[type="radio"] {
+  box-sizing: border-box; // 1
+  padding: 0; // 2
+}
+
+//
+// Fix the cursor style for Chrome's increment/decrement buttons. For certain
+// `font-size` values of the `input`, it causes the cursor style of the
+// decrement button to change from `default` to `text`.
+//
+
+input[type="number"]::-webkit-inner-spin-button,
+input[type="number"]::-webkit-outer-spin-button {
+  height: auto;
+}
+
+//
+// 1. Address `appearance` set to `searchfield` in Safari and Chrome.
+// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
+//
+
+input[type="search"] {
+  -webkit-appearance: textfield; // 1
+  box-sizing: content-box; //2
+}
+
+//
+// Remove inner padding and search cancel button in Safari and Chrome on OS X.
+// Safari (but not Chrome) clips the cancel button when the search input has
+// padding (and `textfield` appearance).
+//
+
+input[type="search"]::-webkit-search-cancel-button,
+input[type="search"]::-webkit-search-decoration {
+  -webkit-appearance: none;
+}
+
+//
+// Define consistent border, margin, and padding.
+//
+
+fieldset {
+  border: 1px solid #c0c0c0;
+  margin: 0 2px;
+  padding: 0.35em 0.625em 0.75em;
+}
+
+//
+// 1. Correct `color` not being inherited in IE 8/9/10/11.
+// 2. Remove padding so people aren't caught out if they zero out fieldsets.
+//
+
+legend {
+  border: 0; // 1
+  padding: 0; // 2
+}
+
+//
+// Remove default vertical scrollbar in IE 8/9/10/11.
+//
+
+textarea {
+  overflow: auto;
+}
+
+//
+// Don't inherit the `font-weight` (applied by a rule above).
+// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
+//
+
+optgroup {
+  font-weight: bold;
+}
+
+// Tables
+// ==========================================================================
+
+//
+// Remove most spacing between table cells.
+//
+
+table {
+  border-collapse: collapse;
+  border-spacing: 0;
+}
+
+td,
+th {
+  padding: 0;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/pager.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/pager.less
new file mode 100644
index 0000000..41abaaa
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/pager.less
@@ -0,0 +1,54 @@
+//
+// Pager pagination
+// --------------------------------------------------
+
+
+.pager {
+  padding-left: 0;
+  margin: @line-height-computed 0;
+  list-style: none;
+  text-align: center;
+  &:extend(.clearfix all);
+  li {
+    display: inline;
+    > a,
+    > span {
+      display: inline-block;
+      padding: 5px 14px;
+      background-color: @pager-bg;
+      border: 1px solid @pager-border;
+      border-radius: @pager-border-radius;
+    }
+
+    > a:hover,
+    > a:focus {
+      text-decoration: none;
+      background-color: @pager-hover-bg;
+    }
+  }
+
+  .next {
+    > a,
+    > span {
+      float: right;
+    }
+  }
+
+  .previous {
+    > a,
+    > span {
+      float: left;
+    }
+  }
+
+  .disabled {
+    > a,
+    > a:hover,
+    > a:focus,
+    > span {
+      color: @pager-disabled-color;
+      background-color: @pager-bg;
+      cursor: @cursor-disabled;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/pagination.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/pagination.less
new file mode 100644
index 0000000..31f77aa
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/pagination.less
@@ -0,0 +1,89 @@
+//
+// Pagination (multiple pages)
+// --------------------------------------------------
+.pagination {
+  display: inline-block;
+  padding-left: 0;
+  margin: @line-height-computed 0;
+  border-radius: @border-radius-base;
+
+  > li {
+    display: inline; // Remove list-style and block-level defaults
+    > a,
+    > span {
+      position: relative;
+      float: left; // Collapse white-space
+      padding: @padding-base-vertical @padding-base-horizontal;
+      line-height: @line-height-base;
+      text-decoration: none;
+      color: @pagination-color;
+      background-color: @pagination-bg;
+      border: 1px solid @pagination-border;
+      margin-left: -1px;
+    }
+    &:first-child {
+      > a,
+      > span {
+        margin-left: 0;
+        .border-left-radius(@border-radius-base);
+      }
+    }
+    &:last-child {
+      > a,
+      > span {
+        .border-right-radius(@border-radius-base);
+      }
+    }
+  }
+
+  > li > a,
+  > li > span {
+    &:hover,
+    &:focus {
+      z-index: 2;
+      color: @pagination-hover-color;
+      background-color: @pagination-hover-bg;
+      border-color: @pagination-hover-border;
+    }
+  }
+
+  > .active > a,
+  > .active > span {
+    &,
+    &:hover,
+    &:focus {
+      z-index: 3;
+      color: @pagination-active-color;
+      background-color: @pagination-active-bg;
+      border-color: @pagination-active-border;
+      cursor: default;
+    }
+  }
+
+  > .disabled {
+    > span,
+    > span:hover,
+    > span:focus,
+    > a,
+    > a:hover,
+    > a:focus {
+      color: @pagination-disabled-color;
+      background-color: @pagination-disabled-bg;
+      border-color: @pagination-disabled-border;
+      cursor: @cursor-disabled;
+    }
+  }
+}
+
+// Sizing
+// --------------------------------------------------
+
+// Large
+.pagination-lg {
+  .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);
+}
+
+// Small
+.pagination-sm {
+  .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/panels.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/panels.less
new file mode 100644
index 0000000..65aa3a8
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/panels.less
@@ -0,0 +1,271 @@
+//
+// Panels
+// --------------------------------------------------
+
+
+// Base class
+.panel {
+  margin-bottom: @line-height-computed;
+  background-color: @panel-bg;
+  border: 1px solid transparent;
+  border-radius: @panel-border-radius;
+  .box-shadow(0 1px 1px rgba(0,0,0,.05));
+}
+
+// Panel contents
+.panel-body {
+  padding: @panel-body-padding;
+  &:extend(.clearfix all);
+}
+
+// Optional heading
+.panel-heading {
+  padding: @panel-heading-padding;
+  border-bottom: 1px solid transparent;
+  .border-top-radius((@panel-border-radius - 1));
+
+  > .dropdown .dropdown-toggle {
+    color: inherit;
+  }
+}
+
+// Within heading, strip any `h*` tag of its default margins for spacing.
+.panel-title {
+  margin-top: 0;
+  margin-bottom: 0;
+  font-size: ceil((@font-size-base * 1.125));
+  color: inherit;
+
+  > a,
+  > small,
+  > .small,
+  > small > a,
+  > .small > a {
+    color: inherit;
+  }
+}
+
+// Optional footer (stays gray in every modifier class)
+.panel-footer {
+  padding: @panel-footer-padding;
+  background-color: @panel-footer-bg;
+  border-top: 1px solid @panel-inner-border;
+  .border-bottom-radius((@panel-border-radius - 1));
+}
+
+
+// List groups in panels
+//
+// By default, space out list group content from panel headings to account for
+// any kind of custom content between the two.
+
+.panel {
+  > .list-group,
+  > .panel-collapse > .list-group {
+    margin-bottom: 0;
+
+    .list-group-item {
+      border-width: 1px 0;
+      border-radius: 0;
+    }
+
+    // Add border top radius for first one
+    &:first-child {
+      .list-group-item:first-child {
+        border-top: 0;
+        .border-top-radius((@panel-border-radius - 1));
+      }
+    }
+
+    // Add border bottom radius for last one
+    &:last-child {
+      .list-group-item:last-child {
+        border-bottom: 0;
+        .border-bottom-radius((@panel-border-radius - 1));
+      }
+    }
+  }
+  > .panel-heading + .panel-collapse > .list-group {
+    .list-group-item:first-child {
+      .border-top-radius(0);
+    }
+  }
+}
+// Collapse space between when there's no additional content.
+.panel-heading + .list-group {
+  .list-group-item:first-child {
+    border-top-width: 0;
+  }
+}
+.list-group + .panel-footer {
+  border-top-width: 0;
+}
+
+// Tables in panels
+//
+// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and
+// watch it go full width.
+
+.panel {
+  > .table,
+  > .table-responsive > .table,
+  > .panel-collapse > .table {
+    margin-bottom: 0;
+
+    caption {
+      padding-left: @panel-body-padding;
+      padding-right: @panel-body-padding;
+    }
+  }
+  // Add border top radius for first one
+  > .table:first-child,
+  > .table-responsive:first-child > .table:first-child {
+    .border-top-radius((@panel-border-radius - 1));
+
+    > thead:first-child,
+    > tbody:first-child {
+      > tr:first-child {
+        border-top-left-radius: (@panel-border-radius - 1);
+        border-top-right-radius: (@panel-border-radius - 1);
+
+        td:first-child,
+        th:first-child {
+          border-top-left-radius: (@panel-border-radius - 1);
+        }
+        td:last-child,
+        th:last-child {
+          border-top-right-radius: (@panel-border-radius - 1);
+        }
+      }
+    }
+  }
+  // Add border bottom radius for last one
+  > .table:last-child,
+  > .table-responsive:last-child > .table:last-child {
+    .border-bottom-radius((@panel-border-radius - 1));
+
+    > tbody:last-child,
+    > tfoot:last-child {
+      > tr:last-child {
+        border-bottom-left-radius: (@panel-border-radius - 1);
+        border-bottom-right-radius: (@panel-border-radius - 1);
+
+        td:first-child,
+        th:first-child {
+          border-bottom-left-radius: (@panel-border-radius - 1);
+        }
+        td:last-child,
+        th:last-child {
+          border-bottom-right-radius: (@panel-border-radius - 1);
+        }
+      }
+    }
+  }
+  > .panel-body + .table,
+  > .panel-body + .table-responsive,
+  > .table + .panel-body,
+  > .table-responsive + .panel-body {
+    border-top: 1px solid @table-border-color;
+  }
+  > .table > tbody:first-child > tr:first-child th,
+  > .table > tbody:first-child > tr:first-child td {
+    border-top: 0;
+  }
+  > .table-bordered,
+  > .table-responsive > .table-bordered {
+    border: 0;
+    > thead,
+    > tbody,
+    > tfoot {
+      > tr {
+        > th:first-child,
+        > td:first-child {
+          border-left: 0;
+        }
+        > th:last-child,
+        > td:last-child {
+          border-right: 0;
+        }
+      }
+    }
+    > thead,
+    > tbody {
+      > tr:first-child {
+        > td,
+        > th {
+          border-bottom: 0;
+        }
+      }
+    }
+    > tbody,
+    > tfoot {
+      > tr:last-child {
+        > td,
+        > th {
+          border-bottom: 0;
+        }
+      }
+    }
+  }
+  > .table-responsive {
+    border: 0;
+    margin-bottom: 0;
+  }
+}
+
+
+// Collapsible panels (aka, accordion)
+//
+// Wrap a series of panels in `.panel-group` to turn them into an accordion with
+// the help of our collapse JavaScript plugin.
+
+.panel-group {
+  margin-bottom: @line-height-computed;
+
+  // Tighten up margin so it's only between panels
+  .panel {
+    margin-bottom: 0;
+    border-radius: @panel-border-radius;
+
+    + .panel {
+      margin-top: 5px;
+    }
+  }
+
+  .panel-heading {
+    border-bottom: 0;
+
+    + .panel-collapse > .panel-body,
+    + .panel-collapse > .list-group {
+      border-top: 1px solid @panel-inner-border;
+    }
+  }
+
+  .panel-footer {
+    border-top: 0;
+    + .panel-collapse .panel-body {
+      border-bottom: 1px solid @panel-inner-border;
+    }
+  }
+}
+
+
+// Contextual variations
+.panel-default {
+  .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);
+}
+.panel-primary {
+  .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);
+}
+.panel-success {
+  .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);
+}
+.panel-info {
+  .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);
+}
+.panel-warning {
+  .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);
+}
+.panel-danger {
+  .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/popovers.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/popovers.less
new file mode 100644
index 0000000..3a62a64
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/popovers.less
@@ -0,0 +1,131 @@
+//
+// Popovers
+// --------------------------------------------------
+
+
+.popover {
+  position: absolute;
+  top: 0;
+  left: 0;
+  z-index: @zindex-popover;
+  display: none;
+  max-width: @popover-max-width;
+  padding: 1px;
+  // Our parent element can be arbitrary since popovers are by default inserted as a sibling of their target element.
+  // So reset our font and text properties to avoid inheriting weird values.
+  .reset-text();
+  font-size: @font-size-base;
+
+  background-color: @popover-bg;
+  background-clip: padding-box;
+  border: 1px solid @popover-fallback-border-color;
+  border: 1px solid @popover-border-color;
+  border-radius: @border-radius-large;
+  .box-shadow(0 5px 10px rgba(0,0,0,.2));
+
+  // Offset the popover to account for the popover arrow
+  &.top     { margin-top: -@popover-arrow-width; }
+  &.right   { margin-left: @popover-arrow-width; }
+  &.bottom  { margin-top: @popover-arrow-width; }
+  &.left    { margin-left: -@popover-arrow-width; }
+}
+
+.popover-title {
+  margin: 0; // reset heading margin
+  padding: 8px 14px;
+  font-size: @font-size-base;
+  background-color: @popover-title-bg;
+  border-bottom: 1px solid darken(@popover-title-bg, 5%);
+  border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;
+}
+
+.popover-content {
+  padding: 9px 14px;
+}
+
+// Arrows
+//
+// .arrow is outer, .arrow:after is inner
+
+.popover > .arrow {
+  &,
+  &:after {
+    position: absolute;
+    display: block;
+    width: 0;
+    height: 0;
+    border-color: transparent;
+    border-style: solid;
+  }
+}
+.popover > .arrow {
+  border-width: @popover-arrow-outer-width;
+}
+.popover > .arrow:after {
+  border-width: @popover-arrow-width;
+  content: "";
+}
+
+.popover {
+  &.top > .arrow {
+    left: 50%;
+    margin-left: -@popover-arrow-outer-width;
+    border-bottom-width: 0;
+    border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback
+    border-top-color: @popover-arrow-outer-color;
+    bottom: -@popover-arrow-outer-width;
+    &:after {
+      content: " ";
+      bottom: 1px;
+      margin-left: -@popover-arrow-width;
+      border-bottom-width: 0;
+      border-top-color: @popover-arrow-color;
+    }
+  }
+  &.right > .arrow {
+    top: 50%;
+    left: -@popover-arrow-outer-width;
+    margin-top: -@popover-arrow-outer-width;
+    border-left-width: 0;
+    border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback
+    border-right-color: @popover-arrow-outer-color;
+    &:after {
+      content: " ";
+      left: 1px;
+      bottom: -@popover-arrow-width;
+      border-left-width: 0;
+      border-right-color: @popover-arrow-color;
+    }
+  }
+  &.bottom > .arrow {
+    left: 50%;
+    margin-left: -@popover-arrow-outer-width;
+    border-top-width: 0;
+    border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback
+    border-bottom-color: @popover-arrow-outer-color;
+    top: -@popover-arrow-outer-width;
+    &:after {
+      content: " ";
+      top: 1px;
+      margin-left: -@popover-arrow-width;
+      border-top-width: 0;
+      border-bottom-color: @popover-arrow-color;
+    }
+  }
+
+  &.left > .arrow {
+    top: 50%;
+    right: -@popover-arrow-outer-width;
+    margin-top: -@popover-arrow-outer-width;
+    border-right-width: 0;
+    border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback
+    border-left-color: @popover-arrow-outer-color;
+    &:after {
+      content: " ";
+      right: 1px;
+      border-right-width: 0;
+      border-left-color: @popover-arrow-color;
+      bottom: -@popover-arrow-width;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/print.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/print.less
new file mode 100644
index 0000000..66e54ab
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/print.less
@@ -0,0 +1,101 @@
+/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
+
+// ==========================================================================
+// Print styles.
+// Inlined to avoid the additional HTTP request: h5bp.com/r
+// ==========================================================================
+
+@media print {
+    *,
+    *:before,
+    *:after {
+        background: transparent !important;
+        color: #000 !important; // Black prints faster: h5bp.com/s
+        box-shadow: none !important;
+        text-shadow: none !important;
+    }
+
+    a,
+    a:visited {
+        text-decoration: underline;
+    }
+
+    a[href]:after {
+        content: " (" attr(href) ")";
+    }
+
+    abbr[title]:after {
+        content: " (" attr(title) ")";
+    }
+
+    // Don't show links that are fragment identifiers,
+    // or use the `javascript:` pseudo protocol
+    a[href^="#"]:after,
+    a[href^="javascript:"]:after {
+        content: "";
+    }
+
+    pre,
+    blockquote {
+        border: 1px solid #999;
+        page-break-inside: avoid;
+    }
+
+    thead {
+        display: table-header-group; // h5bp.com/t
+    }
+
+    tr,
+    img {
+        page-break-inside: avoid;
+    }
+
+    img {
+        max-width: 100% !important;
+    }
+
+    p,
+    h2,
+    h3 {
+        orphans: 3;
+        widows: 3;
+    }
+
+    h2,
+    h3 {
+        page-break-after: avoid;
+    }
+
+    // Bootstrap specific changes start
+
+    // Bootstrap components
+    .navbar {
+        display: none;
+    }
+    .btn,
+    .dropup > .btn {
+        > .caret {
+            border-top-color: #000 !important;
+        }
+    }
+    .label {
+        border: 1px solid #000;
+    }
+
+    .table {
+        border-collapse: collapse !important;
+
+        td,
+        th {
+            background-color: #fff !important;
+        }
+    }
+    .table-bordered {
+        th,
+        td {
+            border: 1px solid #ddd !important;
+        }
+    }
+
+    // Bootstrap specific changes end
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/progress-bars.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/progress-bars.less
new file mode 100644
index 0000000..8868a1f
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/progress-bars.less
@@ -0,0 +1,87 @@
+//
+// Progress bars
+// --------------------------------------------------
+
+
+// Bar animations
+// -------------------------
+
+// WebKit
+@-webkit-keyframes progress-bar-stripes {
+  from  { background-position: 40px 0; }
+  to    { background-position: 0 0; }
+}
+
+// Spec and IE10+
+@keyframes progress-bar-stripes {
+  from  { background-position: 40px 0; }
+  to    { background-position: 0 0; }
+}
+
+
+// Bar itself
+// -------------------------
+
+// Outer container
+.progress {
+  overflow: hidden;
+  height: @line-height-computed;
+  margin-bottom: @line-height-computed;
+  background-color: @progress-bg;
+  border-radius: @progress-border-radius;
+  .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));
+}
+
+// Bar of progress
+.progress-bar {
+  float: left;
+  width: 0%;
+  height: 100%;
+  font-size: @font-size-small;
+  line-height: @line-height-computed;
+  color: @progress-bar-color;
+  text-align: center;
+  background-color: @progress-bar-bg;
+  .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));
+  .transition(width .6s ease);
+}
+
+// Striped bars
+//
+// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the
+// `.progress-bar-striped` class, which you just add to an existing
+// `.progress-bar`.
+.progress-striped .progress-bar,
+.progress-bar-striped {
+  #gradient > .striped();
+  background-size: 40px 40px;
+}
+
+// Call animation for the active one
+//
+// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the
+// `.progress-bar.active` approach.
+.progress.active .progress-bar,
+.progress-bar.active {
+  .animation(progress-bar-stripes 2s linear infinite);
+}
+
+
+// Variations
+// -------------------------
+
+.progress-bar-success {
+  .progress-bar-variant(@progress-bar-success-bg);
+}
+
+.progress-bar-info {
+  .progress-bar-variant(@progress-bar-info-bg);
+}
+
+.progress-bar-warning {
+  .progress-bar-variant(@progress-bar-warning-bg);
+}
+
+.progress-bar-danger {
+  .progress-bar-variant(@progress-bar-danger-bg);
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/responsive-embed.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/responsive-embed.less
new file mode 100644
index 0000000..080a511
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/responsive-embed.less
@@ -0,0 +1,35 @@
+// Embeds responsive
+//
+// Credit: Nicolas Gallagher and SUIT CSS.
+
+.embed-responsive {
+  position: relative;
+  display: block;
+  height: 0;
+  padding: 0;
+  overflow: hidden;
+
+  .embed-responsive-item,
+  iframe,
+  embed,
+  object,
+  video {
+    position: absolute;
+    top: 0;
+    left: 0;
+    bottom: 0;
+    height: 100%;
+    width: 100%;
+    border: 0;
+  }
+}
+
+// Modifier class for 16:9 aspect ratio
+.embed-responsive-16by9 {
+  padding-bottom: 56.25%;
+}
+
+// Modifier class for 4:3 aspect ratio
+.embed-responsive-4by3 {
+  padding-bottom: 75%;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/responsive-utilities.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/responsive-utilities.less
new file mode 100644
index 0000000..b1db31d
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/responsive-utilities.less
@@ -0,0 +1,194 @@
+//
+// Responsive: Utility classes
+// --------------------------------------------------
+
+
+// IE10 in Windows (Phone) 8
+//
+// Support for responsive views via media queries is kind of borked in IE10, for
+// Surface/desktop in split view and for Windows Phone 8. This particular fix
+// must be accompanied by a snippet of JavaScript to sniff the user agent and
+// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at
+// our Getting Started page for more information on this bug.
+//
+// For more information, see the following:
+//
+// Issue: https://github.com/twbs/bootstrap/issues/10497
+// Docs: http://getbootstrap.com/getting-started/#support-ie10-width
+// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/
+// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
+
+@-ms-viewport {
+  width: device-width;
+}
+
+
+// Visibility utilities
+// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0
+.visible-xs,
+.visible-sm,
+.visible-md,
+.visible-lg {
+  .responsive-invisibility();
+}
+
+.visible-xs-block,
+.visible-xs-inline,
+.visible-xs-inline-block,
+.visible-sm-block,
+.visible-sm-inline,
+.visible-sm-inline-block,
+.visible-md-block,
+.visible-md-inline,
+.visible-md-inline-block,
+.visible-lg-block,
+.visible-lg-inline,
+.visible-lg-inline-block {
+  display: none !important;
+}
+
+.visible-xs {
+  @media (max-width: @screen-xs-max) {
+    .responsive-visibility();
+  }
+}
+.visible-xs-block {
+  @media (max-width: @screen-xs-max) {
+    display: block !important;
+  }
+}
+.visible-xs-inline {
+  @media (max-width: @screen-xs-max) {
+    display: inline !important;
+  }
+}
+.visible-xs-inline-block {
+  @media (max-width: @screen-xs-max) {
+    display: inline-block !important;
+  }
+}
+
+.visible-sm {
+  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
+    .responsive-visibility();
+  }
+}
+.visible-sm-block {
+  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
+    display: block !important;
+  }
+}
+.visible-sm-inline {
+  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
+    display: inline !important;
+  }
+}
+.visible-sm-inline-block {
+  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
+    display: inline-block !important;
+  }
+}
+
+.visible-md {
+  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
+    .responsive-visibility();
+  }
+}
+.visible-md-block {
+  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
+    display: block !important;
+  }
+}
+.visible-md-inline {
+  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
+    display: inline !important;
+  }
+}
+.visible-md-inline-block {
+  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
+    display: inline-block !important;
+  }
+}
+
+.visible-lg {
+  @media (min-width: @screen-lg-min) {
+    .responsive-visibility();
+  }
+}
+.visible-lg-block {
+  @media (min-width: @screen-lg-min) {
+    display: block !important;
+  }
+}
+.visible-lg-inline {
+  @media (min-width: @screen-lg-min) {
+    display: inline !important;
+  }
+}
+.visible-lg-inline-block {
+  @media (min-width: @screen-lg-min) {
+    display: inline-block !important;
+  }
+}
+
+.hidden-xs {
+  @media (max-width: @screen-xs-max) {
+    .responsive-invisibility();
+  }
+}
+.hidden-sm {
+  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
+    .responsive-invisibility();
+  }
+}
+.hidden-md {
+  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
+    .responsive-invisibility();
+  }
+}
+.hidden-lg {
+  @media (min-width: @screen-lg-min) {
+    .responsive-invisibility();
+  }
+}
+
+
+// Print utilities
+//
+// Media queries are placed on the inside to be mixin-friendly.
+
+// Note: Deprecated .visible-print as of v3.2.0
+.visible-print {
+  .responsive-invisibility();
+
+  @media print {
+    .responsive-visibility();
+  }
+}
+.visible-print-block {
+  display: none !important;
+
+  @media print {
+    display: block !important;
+  }
+}
+.visible-print-inline {
+  display: none !important;
+
+  @media print {
+    display: inline !important;
+  }
+}
+.visible-print-inline-block {
+  display: none !important;
+
+  @media print {
+    display: inline-block !important;
+  }
+}
+
+.hidden-print {
+  @media print {
+    .responsive-invisibility();
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/scaffolding.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/scaffolding.less
new file mode 100644
index 0000000..64a29c6
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/scaffolding.less
@@ -0,0 +1,161 @@
+//
+// Scaffolding
+// --------------------------------------------------
+
+
+// Reset the box-sizing
+//
+// Heads up! This reset may cause conflicts with some third-party widgets.
+// For recommendations on resolving such conflicts, see
+// http://getbootstrap.com/getting-started/#third-box-sizing
+* {
+  .box-sizing(border-box);
+}
+*:before,
+*:after {
+  .box-sizing(border-box);
+}
+
+
+// Body reset
+
+html {
+  font-size: 10px;
+  -webkit-tap-highlight-color: rgba(0,0,0,0);
+}
+
+body {
+  font-family: @font-family-base;
+  font-size: @font-size-base;
+  line-height: @line-height-base;
+  color: @text-color;
+  background-color: @body-bg;
+}
+
+// Reset fonts for relevant elements
+input,
+button,
+select,
+textarea {
+  font-family: inherit;
+  font-size: inherit;
+  line-height: inherit;
+}
+
+
+// Links
+
+a {
+  color: @link-color;
+  text-decoration: none;
+
+  &:hover,
+  &:focus {
+    color: @link-hover-color;
+    text-decoration: @link-hover-decoration;
+  }
+
+  &:focus {
+    .tab-focus();
+  }
+}
+
+
+// Figures
+//
+// We reset this here because previously Normalize had no `figure` margins. This
+// ensures we don't break anyone's use of the element.
+
+figure {
+  margin: 0;
+}
+
+
+// Images
+
+img {
+  vertical-align: middle;
+}
+
+// Responsive images (ensure images don't scale beyond their parents)
+.img-responsive {
+  .img-responsive();
+}
+
+// Rounded corners
+.img-rounded {
+  border-radius: @border-radius-large;
+}
+
+// Image thumbnails
+//
+// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.
+.img-thumbnail {
+  padding: @thumbnail-padding;
+  line-height: @line-height-base;
+  background-color: @thumbnail-bg;
+  border: 1px solid @thumbnail-border;
+  border-radius: @thumbnail-border-radius;
+  .transition(all .2s ease-in-out);
+
+  // Keep them at most 100% wide
+  .img-responsive(inline-block);
+}
+
+// Perfect circle
+.img-circle {
+  border-radius: 50%; // set radius in percents
+}
+
+
+// Horizontal rules
+
+hr {
+  margin-top:    @line-height-computed;
+  margin-bottom: @line-height-computed;
+  border: 0;
+  border-top: 1px solid @hr-border;
+}
+
+
+// Only display content to screen readers
+//
+// See: http://a11yproject.com/posts/how-to-hide-content
+
+.sr-only {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0,0,0,0);
+  border: 0;
+}
+
+// Use in conjunction with .sr-only to only display content when it's focused.
+// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
+// Credit: HTML5 Boilerplate
+
+.sr-only-focusable {
+  &:active,
+  &:focus {
+    position: static;
+    width: auto;
+    height: auto;
+    margin: 0;
+    overflow: visible;
+    clip: auto;
+  }
+}
+
+
+// iOS "clickable elements" fix for role="button"
+//
+// Fixes "clickability" issue (and more generally, the firing of events such as focus as well)
+// for traditionally non-focusable elements with role="button"
+// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
+
+[role="button"] {
+  cursor: pointer;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/tables.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/tables.less
new file mode 100644
index 0000000..2242c03
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/tables.less
@@ -0,0 +1,234 @@
+//
+// Tables
+// --------------------------------------------------
+
+
+table {
+  background-color: @table-bg;
+}
+caption {
+  padding-top: @table-cell-padding;
+  padding-bottom: @table-cell-padding;
+  color: @text-muted;
+  text-align: left;
+}
+th {
+  text-align: left;
+}
+
+
+// Baseline styles
+
+.table {
+  width: 100%;
+  max-width: 100%;
+  margin-bottom: @line-height-computed;
+  // Cells
+  > thead,
+  > tbody,
+  > tfoot {
+    > tr {
+      > th,
+      > td {
+        padding: @table-cell-padding;
+        line-height: @line-height-base;
+        vertical-align: top;
+        border-top: 1px solid @table-border-color;
+      }
+    }
+  }
+  // Bottom align for column headings
+  > thead > tr > th {
+    vertical-align: bottom;
+    border-bottom: 2px solid @table-border-color;
+  }
+  // Remove top border from thead by default
+  > caption + thead,
+  > colgroup + thead,
+  > thead:first-child {
+    > tr:first-child {
+      > th,
+      > td {
+        border-top: 0;
+      }
+    }
+  }
+  // Account for multiple tbody instances
+  > tbody + tbody {
+    border-top: 2px solid @table-border-color;
+  }
+
+  // Nesting
+  .table {
+    background-color: @body-bg;
+  }
+}
+
+
+// Condensed table w/ half padding
+
+.table-condensed {
+  > thead,
+  > tbody,
+  > tfoot {
+    > tr {
+      > th,
+      > td {
+        padding: @table-condensed-cell-padding;
+      }
+    }
+  }
+}
+
+
+// Bordered version
+//
+// Add borders all around the table and between all the columns.
+
+.table-bordered {
+  border: 1px solid @table-border-color;
+  > thead,
+  > tbody,
+  > tfoot {
+    > tr {
+      > th,
+      > td {
+        border: 1px solid @table-border-color;
+      }
+    }
+  }
+  > thead > tr {
+    > th,
+    > td {
+      border-bottom-width: 2px;
+    }
+  }
+}
+
+
+// Zebra-striping
+//
+// Default zebra-stripe styles (alternating gray and transparent backgrounds)
+
+.table-striped {
+  > tbody > tr:nth-of-type(odd) {
+    background-color: @table-bg-accent;
+  }
+}
+
+
+// Hover effect
+//
+// Placed here since it has to come after the potential zebra striping
+
+.table-hover {
+  > tbody > tr:hover {
+    background-color: @table-bg-hover;
+  }
+}
+
+
+// Table cell sizing
+//
+// Reset default table behavior
+
+table col[class*="col-"] {
+  position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
+  float: none;
+  display: table-column;
+}
+table {
+  td,
+  th {
+    &[class*="col-"] {
+      position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
+      float: none;
+      display: table-cell;
+    }
+  }
+}
+
+
+// Table backgrounds
+//
+// Exact selectors below required to override `.table-striped` and prevent
+// inheritance to nested tables.
+
+// Generate the contextual variants
+.table-row-variant(active; @table-bg-active);
+.table-row-variant(success; @state-success-bg);
+.table-row-variant(info; @state-info-bg);
+.table-row-variant(warning; @state-warning-bg);
+.table-row-variant(danger; @state-danger-bg);
+
+
+// Responsive tables
+//
+// Wrap your tables in `.table-responsive` and we'll make them mobile friendly
+// by enabling horizontal scrolling. Only applies <768px. Everything above that
+// will display normally.
+
+.table-responsive {
+  overflow-x: auto;
+  min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)
+
+  @media screen and (max-width: @screen-xs-max) {
+    width: 100%;
+    margin-bottom: (@line-height-computed * 0.75);
+    overflow-y: hidden;
+    -ms-overflow-style: -ms-autohiding-scrollbar;
+    border: 1px solid @table-border-color;
+
+    // Tighten up spacing
+    > .table {
+      margin-bottom: 0;
+
+      // Ensure the content doesn't wrap
+      > thead,
+      > tbody,
+      > tfoot {
+        > tr {
+          > th,
+          > td {
+            white-space: nowrap;
+          }
+        }
+      }
+    }
+
+    // Special overrides for the bordered tables
+    > .table-bordered {
+      border: 0;
+
+      // Nuke the appropriate borders so that the parent can handle them
+      > thead,
+      > tbody,
+      > tfoot {
+        > tr {
+          > th:first-child,
+          > td:first-child {
+            border-left: 0;
+          }
+          > th:last-child,
+          > td:last-child {
+            border-right: 0;
+          }
+        }
+      }
+
+      // Only nuke the last row's bottom-border in `tbody` and `tfoot` since
+      // chances are there will be only one `tr` in a `thead` and that would
+      // remove the border altogether.
+      > tbody,
+      > tfoot {
+        > tr:last-child {
+          > th,
+          > td {
+            border-bottom: 0;
+          }
+        }
+      }
+
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/theme.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/theme.less
new file mode 100644
index 0000000..fb61744
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/theme.less
@@ -0,0 +1,291 @@
+/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+
+//
+// Load core variables and mixins
+// --------------------------------------------------
+
+@import "variables.less";
+@import "mixins.less";
+
+
+//
+// Buttons
+// --------------------------------------------------
+
+// Common styles
+.btn-default,
+.btn-primary,
+.btn-success,
+.btn-info,
+.btn-warning,
+.btn-danger {
+  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
+  @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);
+  .box-shadow(@shadow);
+
+  // Reset the shadow
+  &:active,
+  &.active {
+    .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
+  }
+
+  &.disabled,
+  &[disabled],
+  fieldset[disabled] & {
+    .box-shadow(none);
+  }
+
+  .badge {
+    text-shadow: none;
+  }
+}
+
+// Mixin for generating new styles
+.btn-styles(@btn-color: #555) {
+  #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));
+  .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620
+  background-repeat: repeat-x;
+  border-color: darken(@btn-color, 14%);
+
+  &:hover,
+  &:focus  {
+    background-color: darken(@btn-color, 12%);
+    background-position: 0 -15px;
+  }
+
+  &:active,
+  &.active {
+    background-color: darken(@btn-color, 12%);
+    border-color: darken(@btn-color, 14%);
+  }
+
+  &.disabled,
+  &[disabled],
+  fieldset[disabled] & {
+    &,
+    &:hover,
+    &:focus,
+    &.focus,
+    &:active,
+    &.active {
+      background-color: darken(@btn-color, 12%);
+      background-image: none;
+    }
+  }
+}
+
+// Common styles
+.btn {
+  // Remove the gradient for the pressed/active state
+  &:active,
+  &.active {
+    background-image: none;
+  }
+}
+
+// Apply the mixin to the buttons
+.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }
+.btn-primary { .btn-styles(@btn-primary-bg); }
+.btn-success { .btn-styles(@btn-success-bg); }
+.btn-info    { .btn-styles(@btn-info-bg); }
+.btn-warning { .btn-styles(@btn-warning-bg); }
+.btn-danger  { .btn-styles(@btn-danger-bg); }
+
+
+//
+// Images
+// --------------------------------------------------
+
+.thumbnail,
+.img-thumbnail {
+  .box-shadow(0 1px 2px rgba(0,0,0,.075));
+}
+
+
+//
+// Dropdowns
+// --------------------------------------------------
+
+.dropdown-menu > li > a:hover,
+.dropdown-menu > li > a:focus {
+  #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));
+  background-color: darken(@dropdown-link-hover-bg, 5%);
+}
+.dropdown-menu > .active > a,
+.dropdown-menu > .active > a:hover,
+.dropdown-menu > .active > a:focus {
+  #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));
+  background-color: darken(@dropdown-link-active-bg, 5%);
+}
+
+
+//
+// Navbar
+// --------------------------------------------------
+
+// Default navbar
+.navbar-default {
+  #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);
+  .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered
+  border-radius: @navbar-border-radius;
+  @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);
+  .box-shadow(@shadow);
+
+  .navbar-nav > .open > a,
+  .navbar-nav > .active > a {
+    #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-bg, 2%));
+    .box-shadow(inset 0 3px 9px rgba(0,0,0,.075));
+  }
+}
+.navbar-brand,
+.navbar-nav > li > a {
+  text-shadow: 0 1px 0 rgba(255,255,255,.25);
+}
+
+// Inverted navbar
+.navbar-inverse {
+  #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);
+  .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257
+  border-radius: @navbar-border-radius;
+  .navbar-nav > .open > a,
+  .navbar-nav > .active > a {
+    #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-bg, 2.5%));
+    .box-shadow(inset 0 3px 9px rgba(0,0,0,.25));
+  }
+
+  .navbar-brand,
+  .navbar-nav > li > a {
+    text-shadow: 0 -1px 0 rgba(0,0,0,.25);
+  }
+}
+
+// Undo rounded corners in static and fixed navbars
+.navbar-static-top,
+.navbar-fixed-top,
+.navbar-fixed-bottom {
+  border-radius: 0;
+}
+
+// Fix active state of dropdown items in collapsed mode
+@media (max-width: @grid-float-breakpoint-max) {
+  .navbar .navbar-nav .open .dropdown-menu > .active > a {
+    &,
+    &:hover,
+    &:focus {
+      color: #fff;
+      #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));
+    }
+  }
+}
+
+
+//
+// Alerts
+// --------------------------------------------------
+
+// Common styles
+.alert {
+  text-shadow: 0 1px 0 rgba(255,255,255,.2);
+  @shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);
+  .box-shadow(@shadow);
+}
+
+// Mixin for generating new styles
+.alert-styles(@color) {
+  #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));
+  border-color: darken(@color, 15%);
+}
+
+// Apply the mixin to the alerts
+.alert-success    { .alert-styles(@alert-success-bg); }
+.alert-info       { .alert-styles(@alert-info-bg); }
+.alert-warning    { .alert-styles(@alert-warning-bg); }
+.alert-danger     { .alert-styles(@alert-danger-bg); }
+
+
+//
+// Progress bars
+// --------------------------------------------------
+
+// Give the progress background some depth
+.progress {
+  #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)
+}
+
+// Mixin for generating new styles
+.progress-bar-styles(@color) {
+  #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));
+}
+
+// Apply the mixin to the progress bars
+.progress-bar            { .progress-bar-styles(@progress-bar-bg); }
+.progress-bar-success    { .progress-bar-styles(@progress-bar-success-bg); }
+.progress-bar-info       { .progress-bar-styles(@progress-bar-info-bg); }
+.progress-bar-warning    { .progress-bar-styles(@progress-bar-warning-bg); }
+.progress-bar-danger     { .progress-bar-styles(@progress-bar-danger-bg); }
+
+// Reset the striped class because our mixins don't do multiple gradients and
+// the above custom styles override the new `.progress-bar-striped` in v3.2.0.
+.progress-bar-striped {
+  #gradient > .striped();
+}
+
+
+//
+// List groups
+// --------------------------------------------------
+
+.list-group {
+  border-radius: @border-radius-base;
+  .box-shadow(0 1px 2px rgba(0,0,0,.075));
+}
+.list-group-item.active,
+.list-group-item.active:hover,
+.list-group-item.active:focus {
+  text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);
+  #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));
+  border-color: darken(@list-group-active-border, 7.5%);
+
+  .badge {
+    text-shadow: none;
+  }
+}
+
+
+//
+// Panels
+// --------------------------------------------------
+
+// Common styles
+.panel {
+  .box-shadow(0 1px 2px rgba(0,0,0,.05));
+}
+
+// Mixin for generating new styles
+.panel-heading-styles(@color) {
+  #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));
+}
+
+// Apply the mixin to the panel headings only
+.panel-default > .panel-heading   { .panel-heading-styles(@panel-default-heading-bg); }
+.panel-primary > .panel-heading   { .panel-heading-styles(@panel-primary-heading-bg); }
+.panel-success > .panel-heading   { .panel-heading-styles(@panel-success-heading-bg); }
+.panel-info > .panel-heading      { .panel-heading-styles(@panel-info-heading-bg); }
+.panel-warning > .panel-heading   { .panel-heading-styles(@panel-warning-heading-bg); }
+.panel-danger > .panel-heading    { .panel-heading-styles(@panel-danger-heading-bg); }
+
+
+//
+// Wells
+// --------------------------------------------------
+
+.well {
+  #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg);
+  border-color: darken(@well-bg, 10%);
+  @shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);
+  .box-shadow(@shadow);
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/thumbnails.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/thumbnails.less
new file mode 100644
index 0000000..0713e67
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/thumbnails.less
@@ -0,0 +1,36 @@
+//
+// Thumbnails
+// --------------------------------------------------
+
+
+// Mixin and adjust the regular image class
+.thumbnail {
+  display: block;
+  padding: @thumbnail-padding;
+  margin-bottom: @line-height-computed;
+  line-height: @line-height-base;
+  background-color: @thumbnail-bg;
+  border: 1px solid @thumbnail-border;
+  border-radius: @thumbnail-border-radius;
+  .transition(border .2s ease-in-out);
+
+  > img,
+  a > img {
+    &:extend(.img-responsive);
+    margin-left: auto;
+    margin-right: auto;
+  }
+
+  // Add a hover state for linked versions only
+  a&:hover,
+  a&:focus,
+  a&.active {
+    border-color: @link-color;
+  }
+
+  // Image captions
+  .caption {
+    padding: @thumbnail-caption-padding;
+    color: @thumbnail-caption-color;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/tooltip.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/tooltip.less
new file mode 100644
index 0000000..b48d63e
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/tooltip.less
@@ -0,0 +1,101 @@
+//
+// Tooltips
+// --------------------------------------------------
+
+
+// Base class
+.tooltip {
+  position: absolute;
+  z-index: @zindex-tooltip;
+  display: block;
+  // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.
+  // So reset our font and text properties to avoid inheriting weird values.
+  .reset-text();
+  font-size: @font-size-small;
+
+  .opacity(0);
+
+  &.in     { .opacity(@tooltip-opacity); }
+  &.top    { margin-top:  -3px; padding: @tooltip-arrow-width 0; }
+  &.right  { margin-left:  3px; padding: 0 @tooltip-arrow-width; }
+  &.bottom { margin-top:   3px; padding: @tooltip-arrow-width 0; }
+  &.left   { margin-left: -3px; padding: 0 @tooltip-arrow-width; }
+}
+
+// Wrapper for the tooltip content
+.tooltip-inner {
+  max-width: @tooltip-max-width;
+  padding: 3px 8px;
+  color: @tooltip-color;
+  text-align: center;
+  background-color: @tooltip-bg;
+  border-radius: @border-radius-base;
+}
+
+// Arrows
+.tooltip-arrow {
+  position: absolute;
+  width: 0;
+  height: 0;
+  border-color: transparent;
+  border-style: solid;
+}
+// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1
+.tooltip {
+  &.top .tooltip-arrow {
+    bottom: 0;
+    left: 50%;
+    margin-left: -@tooltip-arrow-width;
+    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
+    border-top-color: @tooltip-arrow-color;
+  }
+  &.top-left .tooltip-arrow {
+    bottom: 0;
+    right: @tooltip-arrow-width;
+    margin-bottom: -@tooltip-arrow-width;
+    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
+    border-top-color: @tooltip-arrow-color;
+  }
+  &.top-right .tooltip-arrow {
+    bottom: 0;
+    left: @tooltip-arrow-width;
+    margin-bottom: -@tooltip-arrow-width;
+    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
+    border-top-color: @tooltip-arrow-color;
+  }
+  &.right .tooltip-arrow {
+    top: 50%;
+    left: 0;
+    margin-top: -@tooltip-arrow-width;
+    border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;
+    border-right-color: @tooltip-arrow-color;
+  }
+  &.left .tooltip-arrow {
+    top: 50%;
+    right: 0;
+    margin-top: -@tooltip-arrow-width;
+    border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;
+    border-left-color: @tooltip-arrow-color;
+  }
+  &.bottom .tooltip-arrow {
+    top: 0;
+    left: 50%;
+    margin-left: -@tooltip-arrow-width;
+    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
+    border-bottom-color: @tooltip-arrow-color;
+  }
+  &.bottom-left .tooltip-arrow {
+    top: 0;
+    right: @tooltip-arrow-width;
+    margin-top: -@tooltip-arrow-width;
+    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
+    border-bottom-color: @tooltip-arrow-color;
+  }
+  &.bottom-right .tooltip-arrow {
+    top: 0;
+    left: @tooltip-arrow-width;
+    margin-top: -@tooltip-arrow-width;
+    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
+    border-bottom-color: @tooltip-arrow-color;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/type.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/type.less
new file mode 100644
index 0000000..0d4fee4
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/type.less
@@ -0,0 +1,302 @@
+//
+// Typography
+// --------------------------------------------------
+
+
+// Headings
+// -------------------------
+
+h1, h2, h3, h4, h5, h6,
+.h1, .h2, .h3, .h4, .h5, .h6 {
+  font-family: @headings-font-family;
+  font-weight: @headings-font-weight;
+  line-height: @headings-line-height;
+  color: @headings-color;
+
+  small,
+  .small {
+    font-weight: normal;
+    line-height: 1;
+    color: @headings-small-color;
+  }
+}
+
+h1, .h1,
+h2, .h2,
+h3, .h3 {
+  margin-top: @line-height-computed;
+  margin-bottom: (@line-height-computed / 2);
+
+  small,
+  .small {
+    font-size: 65%;
+  }
+}
+h4, .h4,
+h5, .h5,
+h6, .h6 {
+  margin-top: (@line-height-computed / 2);
+  margin-bottom: (@line-height-computed / 2);
+
+  small,
+  .small {
+    font-size: 75%;
+  }
+}
+
+h1, .h1 { font-size: @font-size-h1; }
+h2, .h2 { font-size: @font-size-h2; }
+h3, .h3 { font-size: @font-size-h3; }
+h4, .h4 { font-size: @font-size-h4; }
+h5, .h5 { font-size: @font-size-h5; }
+h6, .h6 { font-size: @font-size-h6; }
+
+
+// Body text
+// -------------------------
+
+p {
+  margin: 0 0 (@line-height-computed / 2);
+}
+
+.lead {
+  margin-bottom: @line-height-computed;
+  font-size: floor((@font-size-base * 1.15));
+  font-weight: 300;
+  line-height: 1.4;
+
+  @media (min-width: @screen-sm-min) {
+    font-size: (@font-size-base * 1.5);
+  }
+}
+
+
+// Emphasis & misc
+// -------------------------
+
+// Ex: (12px small font / 14px base font) * 100% = about 85%
+small,
+.small {
+  font-size: floor((100% * @font-size-small / @font-size-base));
+}
+
+mark,
+.mark {
+  background-color: @state-warning-bg;
+  padding: .2em;
+}
+
+// Alignment
+.text-left           { text-align: left; }
+.text-right          { text-align: right; }
+.text-center         { text-align: center; }
+.text-justify        { text-align: justify; }
+.text-nowrap         { white-space: nowrap; }
+
+// Transformation
+.text-lowercase      { text-transform: lowercase; }
+.text-uppercase      { text-transform: uppercase; }
+.text-capitalize     { text-transform: capitalize; }
+
+// Contextual colors
+.text-muted {
+  color: @text-muted;
+}
+.text-primary {
+  .text-emphasis-variant(@brand-primary);
+}
+.text-success {
+  .text-emphasis-variant(@state-success-text);
+}
+.text-info {
+  .text-emphasis-variant(@state-info-text);
+}
+.text-warning {
+  .text-emphasis-variant(@state-warning-text);
+}
+.text-danger {
+  .text-emphasis-variant(@state-danger-text);
+}
+
+// Contextual backgrounds
+// For now we'll leave these alongside the text classes until v4 when we can
+// safely shift things around (per SemVer rules).
+.bg-primary {
+  // Given the contrast here, this is the only class to have its color inverted
+  // automatically.
+  color: #fff;
+  .bg-variant(@brand-primary);
+}
+.bg-success {
+  .bg-variant(@state-success-bg);
+}
+.bg-info {
+  .bg-variant(@state-info-bg);
+}
+.bg-warning {
+  .bg-variant(@state-warning-bg);
+}
+.bg-danger {
+  .bg-variant(@state-danger-bg);
+}
+
+
+// Page header
+// -------------------------
+
+.page-header {
+  padding-bottom: ((@line-height-computed / 2) - 1);
+  margin: (@line-height-computed * 2) 0 @line-height-computed;
+  border-bottom: 1px solid @page-header-border-color;
+}
+
+
+// Lists
+// -------------------------
+
+// Unordered and Ordered lists
+ul,
+ol {
+  margin-top: 0;
+  margin-bottom: (@line-height-computed / 2);
+  ul,
+  ol {
+    margin-bottom: 0;
+  }
+}
+
+// List options
+
+// Unstyled keeps list items block level, just removes default browser padding and list-style
+.list-unstyled {
+  padding-left: 0;
+  list-style: none;
+}
+
+// Inline turns list items into inline-block
+.list-inline {
+  .list-unstyled();
+  margin-left: -5px;
+
+  > li {
+    display: inline-block;
+    padding-left: 5px;
+    padding-right: 5px;
+  }
+}
+
+// Description Lists
+dl {
+  margin-top: 0; // Remove browser default
+  margin-bottom: @line-height-computed;
+}
+dt,
+dd {
+  line-height: @line-height-base;
+}
+dt {
+  font-weight: bold;
+}
+dd {
+  margin-left: 0; // Undo browser default
+}
+
+// Horizontal description lists
+//
+// Defaults to being stacked without any of the below styles applied, until the
+// grid breakpoint is reached (default of ~768px).
+
+.dl-horizontal {
+  dd {
+    &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present
+  }
+
+  @media (min-width: @dl-horizontal-breakpoint) {
+    dt {
+      float: left;
+      width: (@dl-horizontal-offset - 20);
+      clear: left;
+      text-align: right;
+      .text-overflow();
+    }
+    dd {
+      margin-left: @dl-horizontal-offset;
+    }
+  }
+}
+
+
+// Misc
+// -------------------------
+
+// Abbreviations and acronyms
+abbr[title],
+// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257
+abbr[data-original-title] {
+  cursor: help;
+  border-bottom: 1px dotted @abbr-border-color;
+}
+.initialism {
+  font-size: 90%;
+  .text-uppercase();
+}
+
+// Blockquotes
+blockquote {
+  padding: (@line-height-computed / 2) @line-height-computed;
+  margin: 0 0 @line-height-computed;
+  font-size: @blockquote-font-size;
+  border-left: 5px solid @blockquote-border-color;
+
+  p,
+  ul,
+  ol {
+    &:last-child {
+      margin-bottom: 0;
+    }
+  }
+
+  // Note: Deprecated small and .small as of v3.1.0
+  // Context: https://github.com/twbs/bootstrap/issues/11660
+  footer,
+  small,
+  .small {
+    display: block;
+    font-size: 80%; // back to default font-size
+    line-height: @line-height-base;
+    color: @blockquote-small-color;
+
+    &:before {
+      content: '\2014 \00A0'; // em dash, nbsp
+    }
+  }
+}
+
+// Opposite alignment of blockquote
+//
+// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.
+.blockquote-reverse,
+blockquote.pull-right {
+  padding-right: 15px;
+  padding-left: 0;
+  border-right: 5px solid @blockquote-border-color;
+  border-left: 0;
+  text-align: right;
+
+  // Account for citation
+  footer,
+  small,
+  .small {
+    &:before { content: ''; }
+    &:after {
+      content: '\00A0 \2014'; // nbsp, em dash
+    }
+  }
+}
+
+// Addresses
+address {
+  margin-bottom: @line-height-computed;
+  font-style: normal;
+  line-height: @line-height-base;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/utilities.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/utilities.less
new file mode 100644
index 0000000..7a8ca27
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/utilities.less
@@ -0,0 +1,55 @@
+//
+// Utility classes
+// --------------------------------------------------
+
+
+// Floats
+// -------------------------
+
+.clearfix {
+  .clearfix();
+}
+.center-block {
+  .center-block();
+}
+.pull-right {
+  float: right !important;
+}
+.pull-left {
+  float: left !important;
+}
+
+
+// Toggling content
+// -------------------------
+
+// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1
+.hide {
+  display: none !important;
+}
+.show {
+  display: block !important;
+}
+.invisible {
+  visibility: hidden;
+}
+.text-hide {
+  .text-hide();
+}
+
+
+// Hide from screenreaders and browsers
+//
+// Credit: HTML5 Boilerplate
+
+.hidden {
+  display: none !important;
+}
+
+
+// For Affix plugin
+// -------------------------
+
+.affix {
+  position: fixed;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/variables.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/variables.less
new file mode 100644
index 0000000..03b5498
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/variables.less
@@ -0,0 +1,869 @@
+//
+// Variables
+// --------------------------------------------------
+
+
+//== Colors
+//
+//## Gray and brand colors for use across Bootstrap.
+
+@gray-base:              #000;
+@gray-darker:            lighten(@gray-base, 13.5%); // #222
+@gray-dark:              lighten(@gray-base, 20%);   // #333
+@gray:                   lighten(@gray-base, 33.5%); // #555
+@gray-light:             lighten(@gray-base, 46.7%); // #777
+@gray-lighter:           lighten(@gray-base, 93.5%); // #eee
+
+@brand-primary:         darken(#428bca, 6.5%); // #337ab7
+@brand-success:         #5cb85c;
+@brand-info:            #5bc0de;
+@brand-warning:         #f0ad4e;
+@brand-danger:          #d9534f;
+
+
+//== Scaffolding
+//
+//## Settings for some of the most global styles.
+
+//** Background color for `<body>`.
+@body-bg:               #fff;
+//** Global text color on `<body>`.
+@text-color:            @gray-dark;
+
+//** Global textual link color.
+@link-color:            @brand-primary;
+//** Link hover color set via `darken()` function.
+@link-hover-color:      darken(@link-color, 15%);
+//** Link hover decoration.
+@link-hover-decoration: underline;
+
+
+//== Typography
+//
+//## Font, line-height, and color for body text, headings, and more.
+
+@font-family-sans-serif:  "Helvetica Neue", Helvetica, Arial, sans-serif;
+@font-family-serif:       Georgia, "Times New Roman", Times, serif;
+//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
+@font-family-monospace:   Menlo, Monaco, Consolas, "Courier New", monospace;
+@font-family-base:        @font-family-sans-serif;
+
+@font-size-base:          14px;
+@font-size-large:         ceil((@font-size-base * 1.25)); // ~18px
+@font-size-small:         ceil((@font-size-base * 0.85)); // ~12px
+
+@font-size-h1:            floor((@font-size-base * 2.6)); // ~36px
+@font-size-h2:            floor((@font-size-base * 2.15)); // ~30px
+@font-size-h3:            ceil((@font-size-base * 1.7)); // ~24px
+@font-size-h4:            ceil((@font-size-base * 1.25)); // ~18px
+@font-size-h5:            @font-size-base;
+@font-size-h6:            ceil((@font-size-base * 0.85)); // ~12px
+
+//** Unit-less `line-height` for use in components like buttons.
+@line-height-base:        1.428571429; // 20/14
+//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
+@line-height-computed:    floor((@font-size-base * @line-height-base)); // ~20px
+
+//** By default, this inherits from the `<body>`.
+@headings-font-family:    inherit;
+@headings-font-weight:    500;
+@headings-line-height:    1.1;
+@headings-color:          inherit;
+
+
+//== Iconography
+//
+//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
+
+//** Load fonts from this directory.
+@icon-font-path:          "../fonts/";
+//** File name for all font files.
+@icon-font-name:          "glyphicons-halflings-regular";
+//** Element ID within SVG icon file.
+@icon-font-svg-id:        "glyphicons_halflingsregular";
+
+
+//== Components
+//
+//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
+
+@padding-base-vertical:     6px;
+@padding-base-horizontal:   12px;
+
+@padding-large-vertical:    10px;
+@padding-large-horizontal:  16px;
+
+@padding-small-vertical:    5px;
+@padding-small-horizontal:  10px;
+
+@padding-xs-vertical:       1px;
+@padding-xs-horizontal:     5px;
+
+@line-height-large:         1.3333333; // extra decimals for Win 8.1 Chrome
+@line-height-small:         1.5;
+
+@border-radius-base:        4px;
+@border-radius-large:       6px;
+@border-radius-small:       3px;
+
+//** Global color for active items (e.g., navs or dropdowns).
+@component-active-color:    #fff;
+//** Global background color for active items (e.g., navs or dropdowns).
+@component-active-bg:       @brand-primary;
+
+//** Width of the `border` for generating carets that indicate dropdowns.
+@caret-width-base:          4px;
+//** Carets increase slightly in size for larger components.
+@caret-width-large:         5px;
+
+
+//== Tables
+//
+//## Customizes the `.table` component with basic values, each used across all table variations.
+
+//** Padding for `<th>`s and `<td>`s.
+@table-cell-padding:            8px;
+//** Padding for cells in `.table-condensed`.
+@table-condensed-cell-padding:  5px;
+
+//** Default background color used for all tables.
+@table-bg:                      transparent;
+//** Background color used for `.table-striped`.
+@table-bg-accent:               #f9f9f9;
+//** Background color used for `.table-hover`.
+@table-bg-hover:                #f5f5f5;
+@table-bg-active:               @table-bg-hover;
+
+//** Border color for table and cell borders.
+@table-border-color:            #ddd;
+
+
+//== Buttons
+//
+//## For each of Bootstrap's buttons, define text, background and border color.
+
+@btn-font-weight:                normal;
+
+@btn-default-color:              #333;
+@btn-default-bg:                 #fff;
+@btn-default-border:             #ccc;
+
+@btn-primary-color:              #fff;
+@btn-primary-bg:                 @brand-primary;
+@btn-primary-border:             darken(@btn-primary-bg, 5%);
+
+@btn-success-color:              #fff;
+@btn-success-bg:                 @brand-success;
+@btn-success-border:             darken(@btn-success-bg, 5%);
+
+@btn-info-color:                 #fff;
+@btn-info-bg:                    @brand-info;
+@btn-info-border:                darken(@btn-info-bg, 5%);
+
+@btn-warning-color:              #fff;
+@btn-warning-bg:                 @brand-warning;
+@btn-warning-border:             darken(@btn-warning-bg, 5%);
+
+@btn-danger-color:               #fff;
+@btn-danger-bg:                  @brand-danger;
+@btn-danger-border:              darken(@btn-danger-bg, 5%);
+
+@btn-link-disabled-color:        @gray-light;
+
+// Allows for customizing button radius independently from global border radius
+@btn-border-radius-base:         @border-radius-base;
+@btn-border-radius-large:        @border-radius-large;
+@btn-border-radius-small:        @border-radius-small;
+
+
+//== Forms
+//
+//##
+
+//** `<input>` background color
+@input-bg:                       #fff;
+//** `<input disabled>` background color
+@input-bg-disabled:              @gray-lighter;
+
+//** Text color for `<input>`s
+@input-color:                    @gray;
+//** `<input>` border color
+@input-border:                   #ccc;
+
+// TODO: Rename `@input-border-radius` to `@input-border-radius-base` in v4
+//** Default `.form-control` border radius
+// This has no effect on `<select>`s in some browsers, due to the limited stylability of `<select>`s in CSS.
+@input-border-radius:            @border-radius-base;
+//** Large `.form-control` border radius
+@input-border-radius-large:      @border-radius-large;
+//** Small `.form-control` border radius
+@input-border-radius-small:      @border-radius-small;
+
+//** Border color for inputs on focus
+@input-border-focus:             #66afe9;
+
+//** Placeholder text color
+@input-color-placeholder:        #999;
+
+//** Default `.form-control` height
+@input-height-base:              (@line-height-computed + (@padding-base-vertical * 2) + 2);
+//** Large `.form-control` height
+@input-height-large:             (ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);
+//** Small `.form-control` height
+@input-height-small:             (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2);
+
+//** `.form-group` margin
+@form-group-margin-bottom:       15px;
+
+@legend-color:                   @gray-dark;
+@legend-border-color:            #e5e5e5;
+
+//** Background color for textual input addons
+@input-group-addon-bg:           @gray-lighter;
+//** Border color for textual input addons
+@input-group-addon-border-color: @input-border;
+
+//** Disabled cursor for form controls and buttons.
+@cursor-disabled:                not-allowed;
+
+
+//== Dropdowns
+//
+//## Dropdown menu container and contents.
+
+//** Background for the dropdown menu.
+@dropdown-bg:                    #fff;
+//** Dropdown menu `border-color`.
+@dropdown-border:                rgba(0,0,0,.15);
+//** Dropdown menu `border-color` **for IE8**.
+@dropdown-fallback-border:       #ccc;
+//** Divider color for between dropdown items.
+@dropdown-divider-bg:            #e5e5e5;
+
+//** Dropdown link text color.
+@dropdown-link-color:            @gray-dark;
+//** Hover color for dropdown links.
+@dropdown-link-hover-color:      darken(@gray-dark, 5%);
+//** Hover background for dropdown links.
+@dropdown-link-hover-bg:         #f5f5f5;
+
+//** Active dropdown menu item text color.
+@dropdown-link-active-color:     @component-active-color;
+//** Active dropdown menu item background color.
+@dropdown-link-active-bg:        @component-active-bg;
+
+//** Disabled dropdown menu item background color.
+@dropdown-link-disabled-color:   @gray-light;
+
+//** Text color for headers within dropdown menus.
+@dropdown-header-color:          @gray-light;
+
+//** Deprecated `@dropdown-caret-color` as of v3.1.0
+@dropdown-caret-color:           #000;
+
+
+//-- Z-index master list
+//
+// Warning: Avoid customizing these values. They're used for a bird's eye view
+// of components dependent on the z-axis and are designed to all work together.
+//
+// Note: These variables are not generated into the Customizer.
+
+@zindex-navbar:            1000;
+@zindex-dropdown:          1000;
+@zindex-popover:           1060;
+@zindex-tooltip:           1070;
+@zindex-navbar-fixed:      1030;
+@zindex-modal-background:  1040;
+@zindex-modal:             1050;
+
+
+//== Media queries breakpoints
+//
+//## Define the breakpoints at which your layout will change, adapting to different screen sizes.
+
+// Extra small screen / phone
+//** Deprecated `@screen-xs` as of v3.0.1
+@screen-xs:                  480px;
+//** Deprecated `@screen-xs-min` as of v3.2.0
+@screen-xs-min:              @screen-xs;
+//** Deprecated `@screen-phone` as of v3.0.1
+@screen-phone:               @screen-xs-min;
+
+// Small screen / tablet
+//** Deprecated `@screen-sm` as of v3.0.1
+@screen-sm:                  768px;
+@screen-sm-min:              @screen-sm;
+//** Deprecated `@screen-tablet` as of v3.0.1
+@screen-tablet:              @screen-sm-min;
+
+// Medium screen / desktop
+//** Deprecated `@screen-md` as of v3.0.1
+@screen-md:                  992px;
+@screen-md-min:              @screen-md;
+//** Deprecated `@screen-desktop` as of v3.0.1
+@screen-desktop:             @screen-md-min;
+
+// Large screen / wide desktop
+//** Deprecated `@screen-lg` as of v3.0.1
+@screen-lg:                  1200px;
+@screen-lg-min:              @screen-lg;
+//** Deprecated `@screen-lg-desktop` as of v3.0.1
+@screen-lg-desktop:          @screen-lg-min;
+
+// So media queries don't overlap when required, provide a maximum
+@screen-xs-max:              (@screen-sm-min - 1);
+@screen-sm-max:              (@screen-md-min - 1);
+@screen-md-max:              (@screen-lg-min - 1);
+
+
+//== Grid system
+//
+//## Define your custom responsive grid.
+
+//** Number of columns in the grid.
+@grid-columns:              12;
+//** Padding between columns. Gets divided in half for the left and right.
+@grid-gutter-width:         30px;
+// Navbar collapse
+//** Point at which the navbar becomes uncollapsed.
+@grid-float-breakpoint:     @screen-sm-min;
+//** Point at which the navbar begins collapsing.
+@grid-float-breakpoint-max: (@grid-float-breakpoint - 1);
+
+
+//== Container sizes
+//
+//## Define the maximum width of `.container` for different screen sizes.
+
+// Small screen / tablet
+@container-tablet:             (720px + @grid-gutter-width);
+//** For `@screen-sm-min` and up.
+@container-sm:                 @container-tablet;
+
+// Medium screen / desktop
+@container-desktop:            (940px + @grid-gutter-width);
+//** For `@screen-md-min` and up.
+@container-md:                 @container-desktop;
+
+// Large screen / wide desktop
+@container-large-desktop:      (1140px + @grid-gutter-width);
+//** For `@screen-lg-min` and up.
+@container-lg:                 @container-large-desktop;
+
+
+//== Navbar
+//
+//##
+
+// Basics of a navbar
+@navbar-height:                    50px;
+@navbar-margin-bottom:             @line-height-computed;
+@navbar-border-radius:             @border-radius-base;
+@navbar-padding-horizontal:        floor((@grid-gutter-width / 2));
+@navbar-padding-vertical:          ((@navbar-height - @line-height-computed) / 2);
+@navbar-collapse-max-height:       340px;
+
+@navbar-default-color:             #777;
+@navbar-default-bg:                #f8f8f8;
+@navbar-default-border:            darken(@navbar-default-bg, 6.5%);
+
+// Navbar links
+@navbar-default-link-color:                #777;
+@navbar-default-link-hover-color:          #333;
+@navbar-default-link-hover-bg:             transparent;
+@navbar-default-link-active-color:         #555;
+@navbar-default-link-active-bg:            darken(@navbar-default-bg, 6.5%);
+@navbar-default-link-disabled-color:       #ccc;
+@navbar-default-link-disabled-bg:          transparent;
+
+// Navbar brand label
+@navbar-default-brand-color:               @navbar-default-link-color;
+@navbar-default-brand-hover-color:         darken(@navbar-default-brand-color, 10%);
+@navbar-default-brand-hover-bg:            transparent;
+
+// Navbar toggle
+@navbar-default-toggle-hover-bg:           #ddd;
+@navbar-default-toggle-icon-bar-bg:        #888;
+@navbar-default-toggle-border-color:       #ddd;
+
+
+//=== Inverted navbar
+// Reset inverted navbar basics
+@navbar-inverse-color:                      lighten(@gray-light, 15%);
+@navbar-inverse-bg:                         #222;
+@navbar-inverse-border:                     darken(@navbar-inverse-bg, 10%);
+
+// Inverted navbar links
+@navbar-inverse-link-color:                 lighten(@gray-light, 15%);
+@navbar-inverse-link-hover-color:           #fff;
+@navbar-inverse-link-hover-bg:              transparent;
+@navbar-inverse-link-active-color:          @navbar-inverse-link-hover-color;
+@navbar-inverse-link-active-bg:             darken(@navbar-inverse-bg, 10%);
+@navbar-inverse-link-disabled-color:        #444;
+@navbar-inverse-link-disabled-bg:           transparent;
+
+// Inverted navbar brand label
+@navbar-inverse-brand-color:                @navbar-inverse-link-color;
+@navbar-inverse-brand-hover-color:          #fff;
+@navbar-inverse-brand-hover-bg:             transparent;
+
+// Inverted navbar toggle
+@navbar-inverse-toggle-hover-bg:            #333;
+@navbar-inverse-toggle-icon-bar-bg:         #fff;
+@navbar-inverse-toggle-border-color:        #333;
+
+
+//== Navs
+//
+//##
+
+//=== Shared nav styles
+@nav-link-padding:                          10px 15px;
+@nav-link-hover-bg:                         @gray-lighter;
+
+@nav-disabled-link-color:                   @gray-light;
+@nav-disabled-link-hover-color:             @gray-light;
+
+//== Tabs
+@nav-tabs-border-color:                     #ddd;
+
+@nav-tabs-link-hover-border-color:          @gray-lighter;
+
+@nav-tabs-active-link-hover-bg:             @body-bg;
+@nav-tabs-active-link-hover-color:          @gray;
+@nav-tabs-active-link-hover-border-color:   #ddd;
+
+@nav-tabs-justified-link-border-color:            #ddd;
+@nav-tabs-justified-active-link-border-color:     @body-bg;
+
+//== Pills
+@nav-pills-border-radius:                   @border-radius-base;
+@nav-pills-active-link-hover-bg:            @component-active-bg;
+@nav-pills-active-link-hover-color:         @component-active-color;
+
+
+//== Pagination
+//
+//##
+
+@pagination-color:                     @link-color;
+@pagination-bg:                        #fff;
+@pagination-border:                    #ddd;
+
+@pagination-hover-color:               @link-hover-color;
+@pagination-hover-bg:                  @gray-lighter;
+@pagination-hover-border:              #ddd;
+
+@pagination-active-color:              #fff;
+@pagination-active-bg:                 @brand-primary;
+@pagination-active-border:             @brand-primary;
+
+@pagination-disabled-color:            @gray-light;
+@pagination-disabled-bg:               #fff;
+@pagination-disabled-border:           #ddd;
+
+
+//== Pager
+//
+//##
+
+@pager-bg:                             @pagination-bg;
+@pager-border:                         @pagination-border;
+@pager-border-radius:                  15px;
+
+@pager-hover-bg:                       @pagination-hover-bg;
+
+@pager-active-bg:                      @pagination-active-bg;
+@pager-active-color:                   @pagination-active-color;
+
+@pager-disabled-color:                 @pagination-disabled-color;
+
+
+//== Jumbotron
+//
+//##
+
+@jumbotron-padding:              30px;
+@jumbotron-color:                inherit;
+@jumbotron-bg:                   @gray-lighter;
+@jumbotron-heading-color:        inherit;
+@jumbotron-font-size:            ceil((@font-size-base * 1.5));
+@jumbotron-heading-font-size:    ceil((@font-size-base * 4.5));
+
+
+//== Form states and alerts
+//
+//## Define colors for form feedback states and, by default, alerts.
+
+@state-success-text:             #3c763d;
+@state-success-bg:               #dff0d8;
+@state-success-border:           darken(spin(@state-success-bg, -10), 5%);
+
+@state-info-text:                #31708f;
+@state-info-bg:                  #d9edf7;
+@state-info-border:              darken(spin(@state-info-bg, -10), 7%);
+
+@state-warning-text:             #8a6d3b;
+@state-warning-bg:               #fcf8e3;
+@state-warning-border:           darken(spin(@state-warning-bg, -10), 5%);
+
+@state-danger-text:              #a94442;
+@state-danger-bg:                #f2dede;
+@state-danger-border:            darken(spin(@state-danger-bg, -10), 5%);
+
+
+//== Tooltips
+//
+//##
+
+//** Tooltip max width
+@tooltip-max-width:           200px;
+//** Tooltip text color
+@tooltip-color:               #fff;
+//** Tooltip background color
+@tooltip-bg:                  #000;
+@tooltip-opacity:             .9;
+
+//** Tooltip arrow width
+@tooltip-arrow-width:         5px;
+//** Tooltip arrow color
+@tooltip-arrow-color:         @tooltip-bg;
+
+
+//== Popovers
+//
+//##
+
+//** Popover body background color
+@popover-bg:                          #fff;
+//** Popover maximum width
+@popover-max-width:                   276px;
+//** Popover border color
+@popover-border-color:                rgba(0,0,0,.2);
+//** Popover fallback border color
+@popover-fallback-border-color:       #ccc;
+
+//** Popover title background color
+@popover-title-bg:                    darken(@popover-bg, 3%);
+
+//** Popover arrow width
+@popover-arrow-width:                 10px;
+//** Popover arrow color
+@popover-arrow-color:                 @popover-bg;
+
+//** Popover outer arrow width
+@popover-arrow-outer-width:           (@popover-arrow-width + 1);
+//** Popover outer arrow color
+@popover-arrow-outer-color:           fadein(@popover-border-color, 5%);
+//** Popover outer arrow fallback color
+@popover-arrow-outer-fallback-color:  darken(@popover-fallback-border-color, 20%);
+
+
+//== Labels
+//
+//##
+
+//** Default label background color
+@label-default-bg:            @gray-light;
+//** Primary label background color
+@label-primary-bg:            @brand-primary;
+//** Success label background color
+@label-success-bg:            @brand-success;
+//** Info label background color
+@label-info-bg:               @brand-info;
+//** Warning label background color
+@label-warning-bg:            @brand-warning;
+//** Danger label background color
+@label-danger-bg:             @brand-danger;
+
+//** Default label text color
+@label-color:                 #fff;
+//** Default text color of a linked label
+@label-link-hover-color:      #fff;
+
+
+//== Modals
+//
+//##
+
+//** Padding applied to the modal body
+@modal-inner-padding:         15px;
+
+//** Padding applied to the modal title
+@modal-title-padding:         15px;
+//** Modal title line-height
+@modal-title-line-height:     @line-height-base;
+
+//** Background color of modal content area
+@modal-content-bg:                             #fff;
+//** Modal content border color
+@modal-content-border-color:                   rgba(0,0,0,.2);
+//** Modal content border color **for IE8**
+@modal-content-fallback-border-color:          #999;
+
+//** Modal backdrop background color
+@modal-backdrop-bg:           #000;
+//** Modal backdrop opacity
+@modal-backdrop-opacity:      .5;
+//** Modal header border color
+@modal-header-border-color:   #e5e5e5;
+//** Modal footer border color
+@modal-footer-border-color:   @modal-header-border-color;
+
+@modal-lg:                    900px;
+@modal-md:                    600px;
+@modal-sm:                    300px;
+
+
+//== Alerts
+//
+//## Define alert colors, border radius, and padding.
+
+@alert-padding:               15px;
+@alert-border-radius:         @border-radius-base;
+@alert-link-font-weight:      bold;
+
+@alert-success-bg:            @state-success-bg;
+@alert-success-text:          @state-success-text;
+@alert-success-border:        @state-success-border;
+
+@alert-info-bg:               @state-info-bg;
+@alert-info-text:             @state-info-text;
+@alert-info-border:           @state-info-border;
+
+@alert-warning-bg:            @state-warning-bg;
+@alert-warning-text:          @state-warning-text;
+@alert-warning-border:        @state-warning-border;
+
+@alert-danger-bg:             @state-danger-bg;
+@alert-danger-text:           @state-danger-text;
+@alert-danger-border:         @state-danger-border;
+
+
+//== Progress bars
+//
+//##
+
+//** Background color of the whole progress component
+@progress-bg:                 #f5f5f5;
+//** Progress bar text color
+@progress-bar-color:          #fff;
+//** Variable for setting rounded corners on progress bar.
+@progress-border-radius:      @border-radius-base;
+
+//** Default progress bar color
+@progress-bar-bg:             @brand-primary;
+//** Success progress bar color
+@progress-bar-success-bg:     @brand-success;
+//** Warning progress bar color
+@progress-bar-warning-bg:     @brand-warning;
+//** Danger progress bar color
+@progress-bar-danger-bg:      @brand-danger;
+//** Info progress bar color
+@progress-bar-info-bg:        @brand-info;
+
+
+//== List group
+//
+//##
+
+//** Background color on `.list-group-item`
+@list-group-bg:                 #fff;
+//** `.list-group-item` border color
+@list-group-border:             #ddd;
+//** List group border radius
+@list-group-border-radius:      @border-radius-base;
+
+//** Background color of single list items on hover
+@list-group-hover-bg:           #f5f5f5;
+//** Text color of active list items
+@list-group-active-color:       @component-active-color;
+//** Background color of active list items
+@list-group-active-bg:          @component-active-bg;
+//** Border color of active list elements
+@list-group-active-border:      @list-group-active-bg;
+//** Text color for content within active list items
+@list-group-active-text-color:  lighten(@list-group-active-bg, 40%);
+
+//** Text color of disabled list items
+@list-group-disabled-color:      @gray-light;
+//** Background color of disabled list items
+@list-group-disabled-bg:         @gray-lighter;
+//** Text color for content within disabled list items
+@list-group-disabled-text-color: @list-group-disabled-color;
+
+@list-group-link-color:         #555;
+@list-group-link-hover-color:   @list-group-link-color;
+@list-group-link-heading-color: #333;
+
+
+//== Panels
+//
+//##
+
+@panel-bg:                    #fff;
+@panel-body-padding:          15px;
+@panel-heading-padding:       10px 15px;
+@panel-footer-padding:        @panel-heading-padding;
+@panel-border-radius:         @border-radius-base;
+
+//** Border color for elements within panels
+@panel-inner-border:          #ddd;
+@panel-footer-bg:             #f5f5f5;
+
+@panel-default-text:          @gray-dark;
+@panel-default-border:        #ddd;
+@panel-default-heading-bg:    #f5f5f5;
+
+@panel-primary-text:          #fff;
+@panel-primary-border:        @brand-primary;
+@panel-primary-heading-bg:    @brand-primary;
+
+@panel-success-text:          @state-success-text;
+@panel-success-border:        @state-success-border;
+@panel-success-heading-bg:    @state-success-bg;
+
+@panel-info-text:             @state-info-text;
+@panel-info-border:           @state-info-border;
+@panel-info-heading-bg:       @state-info-bg;
+
+@panel-warning-text:          @state-warning-text;
+@panel-warning-border:        @state-warning-border;
+@panel-warning-heading-bg:    @state-warning-bg;
+
+@panel-danger-text:           @state-danger-text;
+@panel-danger-border:         @state-danger-border;
+@panel-danger-heading-bg:     @state-danger-bg;
+
+
+//== Thumbnails
+//
+//##
+
+//** Padding around the thumbnail image
+@thumbnail-padding:           4px;
+//** Thumbnail background color
+@thumbnail-bg:                @body-bg;
+//** Thumbnail border color
+@thumbnail-border:            #ddd;
+//** Thumbnail border radius
+@thumbnail-border-radius:     @border-radius-base;
+
+//** Custom text color for thumbnail captions
+@thumbnail-caption-color:     @text-color;
+//** Padding around the thumbnail caption
+@thumbnail-caption-padding:   9px;
+
+
+//== Wells
+//
+//##
+
+@well-bg:                     #f5f5f5;
+@well-border:                 darken(@well-bg, 7%);
+
+
+//== Badges
+//
+//##
+
+@badge-color:                 #fff;
+//** Linked badge text color on hover
+@badge-link-hover-color:      #fff;
+@badge-bg:                    @gray-light;
+
+//** Badge text color in active nav link
+@badge-active-color:          @link-color;
+//** Badge background color in active nav link
+@badge-active-bg:             #fff;
+
+@badge-font-weight:           bold;
+@badge-line-height:           1;
+@badge-border-radius:         10px;
+
+
+//== Breadcrumbs
+//
+//##
+
+@breadcrumb-padding-vertical:   8px;
+@breadcrumb-padding-horizontal: 15px;
+//** Breadcrumb background color
+@breadcrumb-bg:                 #f5f5f5;
+//** Breadcrumb text color
+@breadcrumb-color:              #ccc;
+//** Text color of current page in the breadcrumb
+@breadcrumb-active-color:       @gray-light;
+//** Textual separator for between breadcrumb elements
+@breadcrumb-separator:          "/";
+
+
+//== Carousel
+//
+//##
+
+@carousel-text-shadow:                        0 1px 2px rgba(0,0,0,.6);
+
+@carousel-control-color:                      #fff;
+@carousel-control-width:                      15%;
+@carousel-control-opacity:                    .5;
+@carousel-control-font-size:                  20px;
+
+@carousel-indicator-active-bg:                #fff;
+@carousel-indicator-border-color:             #fff;
+
+@carousel-caption-color:                      #fff;
+
+
+//== Close
+//
+//##
+
+@close-font-weight:           bold;
+@close-color:                 #000;
+@close-text-shadow:           0 1px 0 #fff;
+
+
+//== Code
+//
+//##
+
+@code-color:                  #c7254e;
+@code-bg:                     #f9f2f4;
+
+@kbd-color:                   #fff;
+@kbd-bg:                      #333;
+
+@pre-bg:                      #f5f5f5;
+@pre-color:                   @gray-dark;
+@pre-border-color:            #ccc;
+@pre-scrollable-max-height:   340px;
+
+
+//== Type
+//
+//##
+
+//** Horizontal offset for forms and lists.
+@component-offset-horizontal: 180px;
+//** Text muted color
+@text-muted:                  @gray-light;
+//** Abbreviations and acronyms border color
+@abbr-border-color:           @gray-light;
+//** Headings small color
+@headings-small-color:        @gray-light;
+//** Blockquote small color
+@blockquote-small-color:      @gray-light;
+//** Blockquote font size
+@blockquote-font-size:        (@font-size-base * 1.25);
+//** Blockquote border color
+@blockquote-border-color:     @gray-lighter;
+//** Page header border color
+@page-header-border-color:    @gray-lighter;
+//** Width of horizontal description list titles
+@dl-horizontal-offset:        @component-offset-horizontal;
+//** Point at which .dl-horizontal becomes horizontal
+@dl-horizontal-breakpoint:    @grid-float-breakpoint;
+//** Horizontal line color.
+@hr-border:                   @gray-lighter;
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/wells.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/wells.less
new file mode 100644
index 0000000..15d072b
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap/wells.less
@@ -0,0 +1,29 @@
+//
+// Wells
+// --------------------------------------------------
+
+
+// Base class
+.well {
+  min-height: 20px;
+  padding: 19px;
+  margin-bottom: 20px;
+  background-color: @well-bg;
+  border: 1px solid @well-border;
+  border-radius: @border-radius-base;
+  .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
+  blockquote {
+    border-color: #ddd;
+    border-color: rgba(0,0,0,.15);
+  }
+}
+
+// Sizes
+.well-lg {
+  padding: 24px;
+  border-radius: @border-radius-large;
+}
+.well-sm {
+  padding: 9px;
+  border-radius: @border-radius-small;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-combobox/combobox.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-combobox/combobox.less
new file mode 100644
index 0000000..a55e2c6
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-combobox/combobox.less
@@ -0,0 +1,57 @@
+@media (min-width: 768px) {
+  .form-search,
+  .form-inline {
+    .combobox-container {
+      display: inline-block;
+      margin-bottom: 0;
+      vertical-align: top;
+      .input-group-addon {
+        width: auto;
+      }
+    }
+  }
+}
+
+.combobox-selected .caret {
+  display: none;
+}
+
+/* :not doesn't work in IE8 */
+.combobox-container:not(.combobox-selected) .glyphicon-remove {
+  display: none;
+}
+
+.typeahead-long {
+  max-height: 300px;
+  overflow-y: auto;
+}
+
+.control-group.error .combobox-container{
+  .add-on {
+    color: #B94A48;
+    border-color: #B94A48;
+  }
+  .caret {
+    border-top-color: #B94A48;
+  }
+}
+
+.control-group.warning .combobox-container {
+  .add-on {
+    color: #C09853;
+    border-color: #C09853;
+  }
+  .caret {
+    border-top-color: #C09853;
+  }
+}
+
+.control-group.success .combobox-container{
+  .add-on {
+    color: #468847;
+    border-color: #468847;
+  }
+  .caret {
+    border-top-color: #468847;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-datepicker/datepicker.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-datepicker/datepicker.less
new file mode 100644
index 0000000..d0c832f
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-datepicker/datepicker.less
@@ -0,0 +1,235 @@
+.datepicker {
+	padding: 4px;
+	.border-radius(@baseBorderRadius);
+	&-inline {
+		width: 220px;
+	}
+	direction: ltr;
+	&&-rtl {
+		direction: rtl;
+		table tr td span {
+			float: right;
+		}
+	}
+	&-dropdown {
+		top: 0;
+		left: 0;
+		&:before {
+			content: '';
+			display: inline-block;
+			border-left:   7px solid transparent;
+			border-right:  7px solid transparent;
+			border-bottom: 7px solid @grayLight;
+			border-top:    0;
+			border-bottom-color: rgba(0,0,0,.2);
+			position: absolute;
+		}
+		&:after {
+			content: '';
+			display: inline-block;
+			border-left:   6px solid transparent;
+			border-right:  6px solid transparent;
+			border-bottom: 6px solid @white;
+			border-top:    0;
+			position: absolute;
+		}
+		&.datepicker-orient-left:before   { left: 6px; }
+		&.datepicker-orient-left:after    { left: 7px; }
+		&.datepicker-orient-right:before  { right: 6px; }
+		&.datepicker-orient-right:after   { right: 7px; }
+		&.datepicker-orient-bottom:before { top: -7px; }
+		&.datepicker-orient-bottom:after  { top: -6px; }
+		&.datepicker-orient-top:before {
+			bottom: -7px;
+			border-bottom: 0;
+			border-top:    7px solid @grayLight;
+		}
+		&.datepicker-orient-top:after {
+			bottom: -6px;
+			border-bottom: 0;
+			border-top:    6px solid @white;
+		}
+	}
+	table {
+		margin: 0;
+		-webkit-touch-callout: none;
+		-webkit-user-select: none;
+		-khtml-user-select: none;
+		-moz-user-select: none;
+		-ms-user-select: none;
+		user-select: none;
+	}
+	td, th {
+		text-align: center;
+		width: 20px;
+		height: 20px;
+		.border-radius(4px);
+
+		border: none;
+	}
+	// Inline display inside a table presents some problems with
+	// border and background colors.
+	.table-striped & table tr {
+		td, th {
+			background-color: transparent;
+		}
+	}
+	table tr td {
+		&.day:hover,
+		&.day.focused {
+			background: @grayLighter;
+			cursor: pointer;
+		}
+		&.old,
+		&.new {
+			color: @grayLight;
+		}
+		&.disabled,
+		&.disabled:hover {
+			background: none;
+			color: @grayLight;
+			cursor: default;
+		}
+		&.highlighted {
+			background: @infoBackground;
+			border-radius: 0;
+		}
+		&.today,
+		&.today:hover,
+		&.today.disabled,
+		&.today.disabled:hover {
+			@todayBackground: lighten(@orange, 30%);
+			.buttonBackground(@todayBackground, spin(@todayBackground, 20));
+			color: #000;
+		}
+		&.today:hover:hover { // Thank bootstrap 2.0 for this selector...
+			// TODO: Bump min BS to 2.1, use @textColor in buttonBackground above
+			color: #000;
+		}
+		&.today.active:hover {
+			color: #fff;
+		}
+		&.range,
+		&.range:hover,
+		&.range.disabled,
+		&.range.disabled:hover {
+			background: @grayLighter;
+			.border-radius(0);
+		}
+		&.range.today,
+		&.range.today:hover,
+		&.range.today.disabled,
+		&.range.today.disabled:hover {
+			@todayBackground: mix(@orange, @grayLighter, 50%);
+			.buttonBackground(@todayBackground, spin(@todayBackground, 20));
+			.border-radius(0);
+		}
+		&.selected,
+		&.selected:hover,
+		&.selected.disabled,
+		&.selected.disabled:hover {
+			.buttonBackground(lighten(@grayLight, 10), darken(@grayLight, 10));
+			color: #fff;
+			text-shadow: 0 -1px 0 rgba(0,0,0,.25);
+		}
+		&.active,
+		&.active:hover,
+		&.active.disabled,
+		&.active.disabled:hover {
+			.buttonBackground(@btnPrimaryBackground, spin(@btnPrimaryBackground, 20));
+			color: #fff;
+			text-shadow: 0 -1px 0 rgba(0,0,0,.25);
+		}
+		span {
+			display: block;
+			width: 23%;
+			height: 54px;
+			line-height: 54px;
+			float: left;
+			margin: 1%;
+			cursor: pointer;
+			.border-radius(4px);
+			&:hover,
+			&.focused {
+				background: @grayLighter;
+			}
+			&.disabled,
+			&.disabled:hover {
+				background: none;
+				color: @grayLight;
+				cursor: default;
+			}
+			&.active,
+			&.active:hover,
+			&.active.disabled,
+			&.active.disabled:hover {
+				.buttonBackground(@btnPrimaryBackground, spin(@btnPrimaryBackground, 20));
+				color: #fff;
+				text-shadow: 0 -1px 0 rgba(0,0,0,.25);
+			}
+			&.old,
+			&.new {
+				color: @grayLight;
+			}
+		}
+	}
+
+	.datepicker-switch {
+		width: 145px;
+	}
+
+	.datepicker-switch,
+	.prev,
+	.next,
+	tfoot tr th {
+		cursor: pointer;
+		&:hover {
+			background: @grayLighter;
+		}
+	}
+
+	// Basic styling for calendar-week cells
+	.cw {
+		font-size: 10px;
+		width: 12px;
+		padding: 0 2px 0 5px;
+		vertical-align: middle;
+	}
+}
+.input-append,
+.input-prepend {
+	&.date .add-on {
+		cursor: pointer;
+
+		i {
+			margin-top: 3px;
+		}
+	}
+}
+.input-daterange {
+	input {
+		text-align:center;
+	}
+	input:first-child {
+		.border-radius(3px 0 0 3px);
+	}
+	input:last-child {
+		.border-radius(0 3px 3px 0);
+	}
+	.add-on {
+		display: inline-block;
+		width: auto;
+		min-width: 16px;
+		height: @baseLineHeight;
+		padding: 4px 5px;
+		font-weight: normal;
+		line-height: @baseLineHeight;
+		text-align: center;
+		text-shadow: 0 1px 0 @white;
+		vertical-align: middle;
+		background-color: @grayLighter;
+		border: 1px solid #ccc;
+		margin-left: -5px;
+		margin-right: -5px;
+	}
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-datepicker/datepicker3.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-datepicker/datepicker3.less
new file mode 100644
index 0000000..84d3cdb
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-datepicker/datepicker3.less
@@ -0,0 +1,251 @@
+.datepicker {
+	border-radius: @border-radius-base;
+	&-inline {
+		width: 220px;
+	}
+	direction: ltr;
+	&&-rtl {
+		direction: rtl;
+		table tr td span {
+			float: right;
+		}
+	}
+	&-dropdown {
+		top: 0;
+		left: 0;
+		padding: 4px;
+		&:before {
+			content: '';
+			display: inline-block;
+			border-left:   7px solid transparent;
+			border-right:  7px solid transparent;
+			border-bottom: 7px solid @dropdown-border;
+			border-top:    0;
+			border-bottom-color: rgba(0,0,0,.2);
+			position: absolute;
+		}
+		&:after {
+			content: '';
+			display: inline-block;
+			border-left:   6px solid transparent;
+			border-right:  6px solid transparent;
+			border-bottom: 6px solid @dropdown-bg;
+			border-top:    0;
+			position: absolute;
+		}
+		&.datepicker-orient-left:before   { left: 6px; }
+		&.datepicker-orient-left:after    { left: 7px; }
+		&.datepicker-orient-right:before  { right: 6px; }
+		&.datepicker-orient-right:after   { right: 7px; }
+		&.datepicker-orient-bottom:before { top: -7px; }
+		&.datepicker-orient-bottom:after  { top: -6px; }
+		&.datepicker-orient-top:before {
+			bottom: -7px;
+			border-bottom: 0;
+			border-top:    7px solid @dropdown-border;
+		}
+		&.datepicker-orient-top:after {
+			bottom: -6px;
+			border-bottom: 0;
+			border-top:    6px solid @dropdown-bg;
+		}
+	}
+	table {
+		margin: 0;
+		-webkit-touch-callout: none;
+		-webkit-user-select: none;
+		-khtml-user-select: none;
+		-moz-user-select: none;
+		-ms-user-select: none;
+		user-select: none;
+		tr {
+			td, th {
+				text-align: center;
+				width: 30px;
+				height: 30px;
+				border-radius: 4px;
+				border: none;
+			}
+		}
+	}
+	// Inline display inside a table presents some problems with
+	// border and background colors.
+	.table-striped & table tr {
+		td, th {
+			background-color: transparent;
+		}
+	}
+	table tr td {
+		&.old,
+		&.new {
+			color: @btn-link-disabled-color;
+		}
+		&.day:hover,
+		&.focused {
+			background: @gray-lighter;
+			cursor: pointer;
+		}
+		&.disabled,
+		&.disabled:hover {
+			background: none;
+			color: @btn-link-disabled-color;
+			cursor: default;
+		}
+		&.highlighted {
+			@highlighted-bg: @state-info-bg;
+			.button-variant(#000, @highlighted-bg, darken(@highlighted-bg, 20%));
+			border-radius: 0;
+
+			&.focused {
+				background: darken(@highlighted-bg, 10%);
+			}
+
+			&.disabled,
+			&.disabled:active {
+				background: @highlighted-bg;
+				color: @btn-link-disabled-color;
+			}
+		}
+		&.today {
+			@today-bg: lighten(orange, 30%);
+			.button-variant(#000, @today-bg, darken(@today-bg, 20%));
+
+			&.focused {
+				background: darken(@today-bg, 10%);
+			}
+
+			&.disabled,
+			&.disabled:active {
+				background: @today-bg;
+				color: @btn-link-disabled-color;
+			}
+		}
+		&.range {
+			@range-bg: @gray-lighter;
+			.button-variant(#000, @range-bg, darken(@range-bg, 20%));
+			border-radius: 0;
+
+			&.focused {
+				background: darken(@range-bg, 10%);
+			}
+
+			&.disabled,
+			&.disabled:active {
+				background: @range-bg;
+				color: @btn-link-disabled-color;
+			}
+		}
+		&.range.highlighted {
+			@range-highlighted-bg: mix(@state-info-bg, @gray-lighter, 50%);
+			.button-variant(#000, @range-highlighted-bg, darken(@range-highlighted-bg, 20%));
+
+			&.focused {
+				background: darken(@range-highlighted-bg, 10%);
+			}
+
+			&.disabled,
+			&.disabled:active {
+				background: @range-highlighted-bg;
+				color: @btn-link-disabled-color;
+			}
+		}
+		&.range.today {
+			@range-today-bg: mix(orange, @gray-lighter, 50%);
+			.button-variant(#000, @range-today-bg, darken(@range-today-bg, 20%));
+
+			&.disabled,
+			&.disabled:active {
+				background: @range-today-bg;
+				color: @btn-link-disabled-color;
+			}
+		}
+		&.selected,
+		&.selected.highlighted {
+			.button-variant(#fff, @gray-light, @gray);
+			text-shadow: 0 -1px 0 rgba(0,0,0,.25);
+		}
+		&.active,
+		&.active.highlighted {
+			.button-variant(@btn-primary-color, @btn-primary-bg, @btn-primary-border);
+			text-shadow: 0 -1px 0 rgba(0,0,0,.25);
+		}
+		span {
+			display: block;
+			width: 23%;
+			height: 54px;
+			line-height: 54px;
+			float: left;
+			margin: 1%;
+			cursor: pointer;
+			border-radius: 4px;
+			&:hover,
+			&.focused {
+				background: @gray-lighter;
+			}
+			&.disabled,
+			&.disabled:hover {
+				background: none;
+				color: @btn-link-disabled-color;
+				cursor: default;
+			}
+			&.active,
+			&.active:hover,
+			&.active.disabled,
+			&.active.disabled:hover {
+				.button-variant(@btn-primary-color, @btn-primary-bg, @btn-primary-border);
+				text-shadow: 0 -1px 0 rgba(0,0,0,.25);
+			}
+			&.old,
+			&.new {
+				color: @btn-link-disabled-color;
+			}
+		}
+	}
+
+	.datepicker-switch {
+		width: 145px;
+	}
+
+	.datepicker-switch,
+	.prev,
+	.next,
+	tfoot tr th {
+		cursor: pointer;
+		&:hover {
+			background: @gray-lighter;
+		}
+	}
+
+	// Basic styling for calendar-week cells
+	.cw {
+		font-size: 10px;
+		width: 12px;
+		padding: 0 2px 0 5px;
+		vertical-align: middle;
+	}
+}
+.input-group.date .input-group-addon {
+	cursor: pointer;
+}
+.input-daterange {
+	width: 100%;
+	input {
+		text-align: center;
+	}
+	input:first-child {
+		border-radius: 3px 0 0 3px;
+	}
+	input:last-child {
+		border-radius: 0 3px 3px 0;
+	}
+	.input-group-addon {
+		width: auto;
+		min-width: 16px;
+		padding: 4px 5px;
+		line-height: @line-height-base;
+		text-shadow: 0 1px 0 #fff;
+		border-width: 1px 0;
+		margin-left: -5px;
+		margin-right: -5px;
+	}
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-select/bootstrap-select.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-select/bootstrap-select.less
new file mode 100644
index 0000000..78d7812
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-select/bootstrap-select.less
@@ -0,0 +1,354 @@
+@import "variables";
+
+// Mixins
+.cursor-disabled() {
+  cursor: not-allowed;
+}
+
+// Rules
+select.bs-select-hidden,
+select.selectpicker {
+  display: none !important;
+}
+
+.bootstrap-select {
+  width: 220px \0; /*IE9 and below*/
+
+  // The selectpicker button
+  > .dropdown-toggle {
+    width: 100%;
+    padding-right: 25px;
+    z-index: 1;
+  }
+
+  > select {
+    position: absolute !important;
+    bottom: 0;
+    left: 50%;
+    display: block !important;
+    width: 0.5px !important;
+    height: 100% !important;
+    padding: 0 !important;
+    opacity: 0 !important;
+    border: none;
+
+    &.mobile-device {
+      top: 0;
+      left: 0;
+      display: block !important;
+      width: 100% !important;
+      z-index: 2;
+    }
+  }
+
+  // Error display
+  .has-error & .dropdown-toggle,
+  .error & .dropdown-toggle {
+    border-color: @color-red-error;
+  }
+
+  &.fit-width {
+    width: auto !important;
+  }
+
+  &:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
+    width: @width-default;
+  }
+
+  .dropdown-toggle:focus {
+    outline: thin dotted #333333 !important;
+    outline: 5px auto -webkit-focus-ring-color !important;
+    outline-offset: -2px;
+  }
+}
+
+.bootstrap-select.form-control {
+  margin-bottom: 0;
+  padding: 0;
+  border: none;
+
+  &:not([class*="col-"]) {
+    width: 100%;
+  }
+
+  &.input-group-btn {
+    z-index: auto;
+  }
+}
+
+// The selectpicker components
+.bootstrap-select.btn-group {
+  &:not(.input-group-btn),
+  &[class*="col-"] {
+    float: none;
+    display: inline-block;
+    margin-left: 0;
+  }
+
+  // Forces the pull to the right, if necessary
+  &,
+  &[class*="col-"],
+  .row &[class*="col-"] {
+    &.dropdown-menu-right {
+      float: right;
+    }
+  }
+
+  .form-inline &,
+  .form-horizontal &,
+  .form-group & {
+    margin-bottom: 0;
+  }
+
+  .form-group-lg &.form-control,
+  .form-group-sm &.form-control {
+    padding: 0;
+  }
+
+  // Set the width of the live search (and any other form control within an inline form)
+  // see https://github.com/silviomoreto/bootstrap-select/issues/685
+  .form-inline & .form-control {
+    width: 100%;
+  }
+
+  &.disabled,
+  > .disabled {
+    .cursor-disabled();
+
+    &:focus {
+      outline: none !important;
+    }
+  }
+
+  &.bs-container {
+    position: absolute;
+    
+    .dropdown-menu {
+      z-index: @zindex-select-dropdown;
+    }
+  }
+
+  // The selectpicker button
+  .dropdown-toggle {
+    .filter-option {
+      display: inline-block;
+      overflow: hidden;
+      width: 100%;
+      text-align: left;
+    }
+
+    .caret {
+      position: absolute;
+      top: 50%;
+      right: 12px;
+      margin-top: -2px;
+      vertical-align: middle;
+    }
+  }
+
+  &[class*="col-"] .dropdown-toggle {
+    width: 100%;
+  }
+
+  // The selectpicker dropdown
+  .dropdown-menu {
+    min-width: 100%;
+    box-sizing: border-box;
+
+    &.inner {
+      position: static;
+      float: none;
+      border: 0;
+      padding: 0;
+      margin: 0;
+      border-radius: 0;
+      box-shadow: none;
+    }
+
+    li {
+      position: relative;
+
+      &.active small {
+        color: #fff;
+      }
+
+      &.disabled a {
+        .cursor-disabled();
+      }
+
+      a {
+        cursor: pointer;
+        -webkit-user-select: none;
+           -moz-user-select: none;
+            -ms-user-select: none;
+                user-select: none;
+
+        &.opt {
+          position: relative;
+          padding-left: 2.25em;
+        }
+
+        span.check-mark {
+          display: none;
+        }
+
+        span.text {
+          display: inline-block;
+        }
+      }
+
+      small {
+        padding-left: 0.5em;
+      }
+    }
+
+    .notify {
+      position: absolute;
+      bottom: 5px;
+      width: 96%;
+      margin: 0 2%;
+      min-height: 26px;
+      padding: 3px 5px;
+      background: rgb(245, 245, 245);
+      border: 1px solid rgb(227, 227, 227);
+      box-shadow: inset 0 1px 1px fade(rgb(0, 0, 0), 5%);
+      pointer-events: none;
+      opacity: 0.9;
+      box-sizing: border-box;
+    }
+  }
+
+  .no-results {
+    padding: 3px;
+    background: #f5f5f5;
+    margin: 0 5px;
+    white-space: nowrap;
+  }
+
+  &.fit-width .dropdown-toggle {
+    .filter-option {
+      position: static;
+    }
+
+    .caret {
+      position: static;
+      top: auto;
+      margin-top: -1px;
+    }
+  }
+
+  &.show-tick .dropdown-menu li {
+    &.selected a span.check-mark {
+      position: absolute;
+      display: inline-block;
+      right: 15px;
+      margin-top: 5px;
+    }
+
+    a span.text {
+      margin-right: 34px;
+    }
+  }
+}
+
+.bootstrap-select.show-menu-arrow {
+  &.open > .dropdown-toggle {
+    z-index: (@zindex-select-dropdown + 1);
+  }
+
+  .dropdown-toggle {
+    &:before {
+      content: '';
+      border-left: 7px solid transparent;
+      border-right: 7px solid transparent;
+      border-bottom: 7px solid @color-grey-arrow;
+      position: absolute;
+      bottom: -4px;
+      left: 9px;
+      display: none;
+    }
+
+    &:after {
+      content: '';
+      border-left: 6px solid transparent;
+      border-right: 6px solid transparent;
+      border-bottom: 6px solid white;
+      position: absolute;
+      bottom: -4px;
+      left: 10px;
+      display: none;
+    }
+  }
+
+  &.dropup .dropdown-toggle {
+    &:before {
+      bottom: auto;
+      top: -3px;
+      border-top: 7px solid @color-grey-arrow;
+      border-bottom: 0;
+    }
+
+    &:after {
+      bottom: auto;
+      top: -3px;
+      border-top: 6px solid white;
+      border-bottom: 0;
+    }
+  }
+
+  &.pull-right .dropdown-toggle {
+    &:before {
+      right: 12px;
+      left: auto;
+    }
+
+    &:after {
+      right: 13px;
+      left: auto;
+    }
+  }
+
+  &.open > .dropdown-toggle {
+    &:before,
+    &:after {
+      display: block;
+    }
+  }
+}
+
+.bs-searchbox,
+.bs-actionsbox,
+.bs-donebutton {
+  padding: 4px 8px;
+}
+
+.bs-actionsbox {
+  width: 100%;
+  box-sizing: border-box;
+
+  & .btn-group button {
+    width: 50%;
+  }
+}
+
+.bs-donebutton {
+  float: left;
+  width: 100%;
+  box-sizing: border-box;
+
+  & .btn-group button {
+    width: 100%;
+  }
+}
+
+.bs-searchbox {
+  & + .bs-actionsbox {
+    padding: 0 8px 4px;
+  }
+
+  & .form-control {
+    margin-bottom: 0;
+    width: 100%;
+    float: none;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-select/variables.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-select/variables.less
new file mode 100644
index 0000000..710d5c9
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-select/variables.less
@@ -0,0 +1,6 @@
+@color-red-error: rgb(185, 74, 72);
+@color-grey-arrow: rgba(204, 204, 204, 0.2);
+
+@width-default: 220px; // 3 960px-grid columns
+
+@zindex-select-dropdown: 1060; // must be higher than a modal background (1050)
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-switch/bootstrap-switch.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-switch/bootstrap-switch.less
new file mode 100644
index 0000000..51c00e8
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-switch/bootstrap-switch.less
@@ -0,0 +1,193 @@
+@bootstrap-switch-base: bootstrap-switch;
+
+.@{bootstrap-switch-base} {
+  display: inline-block;
+  direction: ltr;
+  cursor: pointer;
+  border-radius: @border-radius-base;
+  border: 1px solid;
+  border-color: @btn-default-border;
+  position: relative;
+  text-align: left;
+  overflow: hidden;
+  line-height: 8px;
+  z-index: 0;
+  .user-select(none);
+  vertical-align: middle;
+  .transition(~"border-color ease-in-out .15s, box-shadow ease-in-out .15s");
+
+  .@{bootstrap-switch-base}-container {
+    display: inline-block;
+    top: 0;
+    border-radius: @border-radius-base;
+    .translate3d(0, 0, 0);
+  }
+
+  .@{bootstrap-switch-base}-handle-on,
+  .@{bootstrap-switch-base}-handle-off,
+  .@{bootstrap-switch-base}-label {
+    .box-sizing(border-box);
+    cursor: pointer;
+    display: inline-block !important;
+    height: 100%;
+    padding: @padding-base-vertical @padding-base-horizontal;
+    font-size: @font-size-base;
+    line-height: @line-height-computed;
+  }
+
+  .@{bootstrap-switch-base}-handle-on,
+  .@{bootstrap-switch-base}-handle-off {
+    text-align: center;
+    z-index: 1;
+
+    &.@{bootstrap-switch-base}-primary {
+      color: #fff;
+      background: @btn-primary-bg;
+    }
+
+    &.@{bootstrap-switch-base}-info {
+      color: #fff;
+      background: @btn-info-bg;
+    }
+
+    &.@{bootstrap-switch-base}-success {
+      color: #fff;
+      background: @btn-success-bg;
+    }
+
+    &.@{bootstrap-switch-base}-warning {
+      background: @btn-warning-bg;
+      color: #fff;
+    }
+
+    &.@{bootstrap-switch-base}-danger {
+      color: #fff;
+      background: @btn-danger-bg;
+    }
+
+    &.@{bootstrap-switch-base}-default {
+      color: #000;
+      background: @gray-lighter;
+    }
+  }
+
+  .@{bootstrap-switch-base}-label {
+    text-align: center;
+    margin-top: -1px;
+    margin-bottom: -1px;
+    z-index: 100;
+    color: @btn-default-color;
+    background: @btn-default-bg;
+  }
+
+  .@{bootstrap-switch-base}-handle-on {
+    .border-left-radius((@border-radius-base - 1));
+  }
+
+  .@{bootstrap-switch-base}-handle-off {
+    .border-right-radius((@border-radius-base - 1));
+  }
+
+  input[type='radio'],
+  input[type='checkbox'] {
+    position: absolute !important;
+    top: 0;
+    left: 0;
+    .opacity(0);
+    z-index: -1;
+
+    &.form-control {
+      height: auto;
+    }
+  }
+
+  &.@{bootstrap-switch-base}-mini {
+
+    .@{bootstrap-switch-base}-handle-on,
+    .@{bootstrap-switch-base}-handle-off,
+    .@{bootstrap-switch-base}-label {
+      padding: @padding-xs-vertical @padding-xs-horizontal;
+      font-size: @font-size-small;
+      line-height: @line-height-small;
+    }
+  }
+
+  &.@{bootstrap-switch-base}-small {
+
+    .@{bootstrap-switch-base}-handle-on,
+    .@{bootstrap-switch-base}-handle-off,
+    .@{bootstrap-switch-base}-label {
+      padding: @padding-small-vertical @padding-small-horizontal;
+      font-size: @font-size-small;
+      line-height: @line-height-small;
+    }
+  }
+
+  &.@{bootstrap-switch-base}-large {
+
+    .@{bootstrap-switch-base}-handle-on,
+    .@{bootstrap-switch-base}-handle-off,
+    .@{bootstrap-switch-base}-label {
+      padding: @padding-base-vertical @padding-large-horizontal;
+      font-size: @font-size-large;
+      line-height: @line-height-large;
+    }
+  }
+
+  &.@{bootstrap-switch-base}-disabled,
+  &.@{bootstrap-switch-base}-readonly,
+  &.@{bootstrap-switch-base}-indeterminate {
+    cursor: default !important;
+
+    .@{bootstrap-switch-base}-handle-on,
+    .@{bootstrap-switch-base}-handle-off,
+    .@{bootstrap-switch-base}-label {
+      .opacity(.5);
+      cursor: default !important;
+    }
+  }
+
+  &.@{bootstrap-switch-base}-animate {
+
+    .@{bootstrap-switch-base}-container {
+      .transition(margin-left .5s);
+    }
+  }
+
+  &.@{bootstrap-switch-base}-inverse {
+
+    .@{bootstrap-switch-base}-handle-on {
+      .border-left-radius(0);
+      .border-right-radius((@border-radius-base - 1));
+    }
+
+    .@{bootstrap-switch-base}-handle-off {
+      .border-right-radius(0);
+      .border-left-radius((@border-radius-base - 1));
+    }
+  }
+
+  &.@{bootstrap-switch-base}-focused {
+    @color-rgba: rgba(red(@input-border-focus), green(@input-border-focus), blue(@input-border-focus), .6);
+    border-color: @input-border-focus;
+    outline: 0;
+    .box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}");
+  }
+
+  &.@{bootstrap-switch-base}-on,
+  &.@{bootstrap-switch-base}-inverse.@{bootstrap-switch-base}-off {
+
+    .@{bootstrap-switch-base}-label {
+      .border-right-radius((@border-radius-base - 1));
+    }
+  }
+
+  &.@{bootstrap-switch-base}-off,
+  &.@{bootstrap-switch-base}-inverse.@{bootstrap-switch-base}-on {
+
+
+    .@{bootstrap-switch-base}-label {
+      .border-left-radius((@border-radius-base - 1));
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-switch/build.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-switch/build.less
new file mode 100644
index 0000000..beda34a
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-switch/build.less
@@ -0,0 +1,3 @@
+@import "variables";
+@import "mixins";
+@import "bootstrap-switch";
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-switch/mixins.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-switch/mixins.less
new file mode 100644
index 0000000..71723db
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-switch/mixins.less
@@ -0,0 +1,929 @@
+//
+// Mixins
+// --------------------------------------------------
+
+
+// Utilities
+// -------------------------
+
+// Clearfix
+// Source: http://nicolasgallagher.com/micro-clearfix-hack/
+//
+// For modern browsers
+// 1. The space content is one way to avoid an Opera bug when the
+//    contenteditable attribute is included anywhere else in the document.
+//    Otherwise it causes space to appear at the top and bottom of elements
+//    that are clearfixed.
+// 2. The use of `table` rather than `block` is only necessary if using
+//    `:before` to contain the top-margins of child elements.
+.clearfix() {
+  &:before,
+  &:after {
+    content: " "; // 1
+    display: table; // 2
+  }
+  &:after {
+    clear: both;
+  }
+}
+
+// WebKit-style focus
+.tab-focus() {
+  // Default
+  outline: thin dotted;
+  // WebKit
+  outline: 5px auto -webkit-focus-ring-color;
+  outline-offset: -2px;
+}
+
+// Center-align a block level element
+.center-block() {
+  display: block;
+  margin-left: auto;
+  margin-right: auto;
+}
+
+// Sizing shortcuts
+.size(@width; @height) {
+  width: @width;
+  height: @height;
+}
+.square(@size) {
+  .size(@size; @size);
+}
+
+// Placeholder text
+.placeholder(@color: @input-color-placeholder) {
+  &::-moz-placeholder           { color: @color;   // Firefox
+                                  opacity: 1; } // See https://github.com/twbs/bootstrap/pull/11526
+  &:-ms-input-placeholder       { color: @color; } // Internet Explorer 10+
+  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome
+}
+
+// Text overflow
+// Requires inline-block or block for proper styling
+.text-overflow() {
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+}
+
+// CSS image replacement
+//
+// Heads up! v3 launched with with only `.hide-text()`, but per our pattern for
+// mixins being reused as classes with the same name, this doesn't hold up. As
+// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. Note
+// that we cannot chain the mixins together in Less, so they are repeated.
+//
+// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
+
+// Deprecated as of v3.0.1 (will be removed in v4)
+.hide-text() {
+  font: ~"0/0" a;
+  color: transparent;
+  text-shadow: none;
+  background-color: transparent;
+  border: 0;
+}
+// New mixin to use as of v3.0.1
+.text-hide() {
+  .hide-text();
+}
+
+
+
+// CSS3 PROPERTIES
+// --------------------------------------------------
+
+// Single side border-radius
+.border-top-radius(@radius) {
+  border-top-right-radius: @radius;
+   border-top-left-radius: @radius;
+}
+.border-right-radius(@radius) {
+  border-bottom-right-radius: @radius;
+     border-top-right-radius: @radius;
+}
+.border-bottom-radius(@radius) {
+  border-bottom-right-radius: @radius;
+   border-bottom-left-radius: @radius;
+}
+.border-left-radius(@radius) {
+  border-bottom-left-radius: @radius;
+     border-top-left-radius: @radius;
+}
+
+// Drop shadows
+//
+// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's
+//   supported browsers that have box shadow capabilities now support the
+//   standard `box-shadow` property.
+.box-shadow(@shadow) {
+  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1
+          box-shadow: @shadow;
+}
+
+// Transitions
+.transition(@transition) {
+  -webkit-transition: @transition;
+          transition: @transition;
+}
+.transition-property(@transition-property) {
+  -webkit-transition-property: @transition-property;
+          transition-property: @transition-property;
+}
+.transition-delay(@transition-delay) {
+  -webkit-transition-delay: @transition-delay;
+          transition-delay: @transition-delay;
+}
+.transition-duration(@transition-duration) {
+  -webkit-transition-duration: @transition-duration;
+          transition-duration: @transition-duration;
+}
+.transition-transform(@transition) {
+  -webkit-transition: -webkit-transform @transition;
+     -moz-transition: -moz-transform @transition;
+       -o-transition: -o-transform @transition;
+          transition: transform @transition;
+}
+
+// Transformations
+.rotate(@degrees) {
+  -webkit-transform: rotate(@degrees);
+      -ms-transform: rotate(@degrees); // IE9 only
+          transform: rotate(@degrees);
+}
+.scale(@ratio; @ratio-y...) {
+  -webkit-transform: scale(@ratio, @ratio-y);
+      -ms-transform: scale(@ratio, @ratio-y); // IE9 only
+          transform: scale(@ratio, @ratio-y);
+}
+.translate(@x; @y) {
+  -webkit-transform: translate(@x, @y);
+      -ms-transform: translate(@x, @y); // IE9 only
+          transform: translate(@x, @y);
+}
+.skew(@x; @y) {
+  -webkit-transform: skew(@x, @y);
+      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+
+          transform: skew(@x, @y);
+}
+.translate3d(@x; @y; @z) {
+  -webkit-transform: translate3d(@x, @y, @z);
+          transform: translate3d(@x, @y, @z);
+}
+
+.rotateX(@degrees) {
+  -webkit-transform: rotateX(@degrees);
+      -ms-transform: rotateX(@degrees); // IE9 only
+          transform: rotateX(@degrees);
+}
+.rotateY(@degrees) {
+  -webkit-transform: rotateY(@degrees);
+      -ms-transform: rotateY(@degrees); // IE9 only
+          transform: rotateY(@degrees);
+}
+.perspective(@perspective) {
+  -webkit-perspective: @perspective;
+     -moz-perspective: @perspective;
+          perspective: @perspective;
+}
+.perspective-origin(@perspective) {
+  -webkit-perspective-origin: @perspective;
+     -moz-perspective-origin: @perspective;
+          perspective-origin: @perspective;
+}
+.transform-origin(@origin) {
+  -webkit-transform-origin: @origin;
+     -moz-transform-origin: @origin;
+      -ms-transform-origin: @origin; // IE9 only
+          transform-origin: @origin;
+}
+
+// Animations
+.animation(@animation) {
+  -webkit-animation: @animation;
+          animation: @animation;
+}
+.animation-name(@name) {
+  -webkit-animation-name: @name;
+          animation-name: @name;
+}
+.animation-duration(@duration) {
+  -webkit-animation-duration: @duration;
+          animation-duration: @duration;
+}
+.animation-timing-function(@timing-function) {
+  -webkit-animation-timing-function: @timing-function;
+          animation-timing-function: @timing-function;
+}
+.animation-delay(@delay) {
+  -webkit-animation-delay: @delay;
+          animation-delay: @delay;
+}
+.animation-iteration-count(@iteration-count) {
+  -webkit-animation-iteration-count: @iteration-count;
+          animation-iteration-count: @iteration-count;
+}
+.animation-direction(@direction) {
+  -webkit-animation-direction: @direction;
+          animation-direction: @direction;
+}
+
+// Backface visibility
+// Prevent browsers from flickering when using CSS 3D transforms.
+// Default value is `visible`, but can be changed to `hidden`
+.backface-visibility(@visibility){
+  -webkit-backface-visibility: @visibility;
+     -moz-backface-visibility: @visibility;
+          backface-visibility: @visibility;
+}
+
+// Box sizing
+.box-sizing(@boxmodel) {
+  -webkit-box-sizing: @boxmodel;
+     -moz-box-sizing: @boxmodel;
+          box-sizing: @boxmodel;
+}
+
+// User select
+// For selecting text on the page
+.user-select(@select) {
+  -webkit-user-select: @select;
+     -moz-user-select: @select;
+      -ms-user-select: @select; // IE10+
+          user-select: @select;
+}
+
+// Resize anything
+.resizable(@direction) {
+  resize: @direction; // Options: horizontal, vertical, both
+  overflow: auto; // Safari fix
+}
+
+// CSS3 Content Columns
+.content-columns(@column-count; @column-gap: @grid-gutter-width) {
+  -webkit-column-count: @column-count;
+     -moz-column-count: @column-count;
+          column-count: @column-count;
+  -webkit-column-gap: @column-gap;
+     -moz-column-gap: @column-gap;
+          column-gap: @column-gap;
+}
+
+// Optional hyphenation
+.hyphens(@mode: auto) {
+  word-wrap: break-word;
+  -webkit-hyphens: @mode;
+     -moz-hyphens: @mode;
+      -ms-hyphens: @mode; // IE10+
+       -o-hyphens: @mode;
+          hyphens: @mode;
+}
+
+// Opacity
+.opacity(@opacity) {
+  opacity: @opacity;
+  // IE8 filter
+  @opacity-ie: (@opacity * 100);
+  filter: ~"alpha(opacity=@{opacity-ie})";
+}
+
+
+
+// GRADIENTS
+// --------------------------------------------------
+
+#gradient {
+
+  // Horizontal gradient, from left to right
+  //
+  // Creates two color stops, start and end, by specifying a color and position for each color stop.
+  // Color stops are not available in IE9 and below.
+  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
+    background-image: -webkit-linear-gradient(left, color-stop(@start-color @start-percent), color-stop(@end-color @end-percent)); // Safari 5.1-6, Chrome 10+
+    background-image:  linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
+    background-repeat: repeat-x;
+    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down
+  }
+
+  // Vertical gradient, from top to bottom
+  //
+  // Creates two color stops, start and end, by specifying a color and position for each color stop.
+  // Color stops are not available in IE9 and below.
+  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {
+    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+
+    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
+    background-repeat: repeat-x;
+    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down
+  }
+
+  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {
+    background-repeat: repeat-x;
+    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+
+    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+
+  }
+  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
+    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);
+    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);
+    background-repeat: no-repeat;
+    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
+  }
+  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {
+    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);
+    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);
+    background-repeat: no-repeat;
+    filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback
+  }
+  .radial(@inner-color: #555; @outer-color: #333) {
+    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);
+    background-image: radial-gradient(circle, @inner-color, @outer-color);
+    background-repeat: no-repeat;
+  }
+  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {
+    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
+    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);
+  }
+}
+
+// Reset filters for IE
+//
+// When you need to remove a gradient background, do not forget to use this to reset
+// the IE filter for IE9 and below.
+.reset-filter() {
+  filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)"));
+}
+
+
+
+// Retina images
+//
+// Short retina mixin for setting background-image and -size
+
+.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {
+  background-image: url("@{file-1x}");
+
+  @media
+  only screen and (-webkit-min-device-pixel-ratio: 2),
+  only screen and (   min--moz-device-pixel-ratio: 2),
+  only screen and (     -o-min-device-pixel-ratio: 2/1),
+  only screen and (        min-device-pixel-ratio: 2),
+  only screen and (                min-resolution: 192dpi),
+  only screen and (                min-resolution: 2dppx) {
+    background-image: url("@{file-2x}");
+    background-size: @width-1x @height-1x;
+  }
+}
+
+
+// Responsive image
+//
+// Keep images from scaling beyond the width of their parents.
+
+.img-responsive(@display: block) {
+  display: @display;
+  max-width: 100%; // Part 1: Set a maximum relative to the parent
+  height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching
+}
+
+
+// COMPONENT MIXINS
+// --------------------------------------------------
+
+// Horizontal dividers
+// -------------------------
+// Dividers (basically an hr) within dropdowns and nav lists
+.nav-divider(@color: #e5e5e5) {
+  height: 1px;
+  margin: ((@line-height-computed / 2) - 1) 0;
+  overflow: hidden;
+  background-color: @color;
+}
+
+// Panels
+// -------------------------
+.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {
+  border-color: @border;
+
+  & > .panel-heading {
+    color: @heading-text-color;
+    background-color: @heading-bg-color;
+    border-color: @heading-border;
+
+    + .panel-collapse .panel-body {
+      border-top-color: @border;
+    }
+  }
+  & > .panel-footer {
+    + .panel-collapse .panel-body {
+      border-bottom-color: @border;
+    }
+  }
+}
+
+// Alerts
+// -------------------------
+.alert-variant(@background; @border; @text-color) {
+  background-color: @background;
+  border-color: @border;
+  color: @text-color;
+
+  hr {
+    border-top-color: darken(@border, 5%);
+  }
+  .alert-link {
+    color: darken(@text-color, 10%);
+  }
+}
+
+// Tables
+// -------------------------
+.table-row-variant(@state; @background) {
+  // Exact selectors below required to override `.table-striped` and prevent
+  // inheritance to nested tables.
+  .table > thead > tr,
+  .table > tbody > tr,
+  .table > tfoot > tr {
+    > td.@{state},
+    > th.@{state},
+    &.@{state} > td,
+    &.@{state} > th {
+      background-color: @background;
+    }
+  }
+
+  // Hover states for `.table-hover`
+  // Note: this is not available for cells or rows within `thead` or `tfoot`.
+  .table-hover > tbody > tr {
+    > td.@{state}:hover,
+    > th.@{state}:hover,
+    &.@{state}:hover > td,
+    &.@{state}:hover > th {
+      background-color: darken(@background, 5%);
+    }
+  }
+}
+
+// List Groups
+// -------------------------
+.list-group-item-variant(@state; @background; @color) {
+  .list-group-item-@{state} {
+    color: @color;
+    background-color: @background;
+
+    a& {
+      color: @color;
+
+      .list-group-item-heading { color: inherit; }
+
+      &:hover,
+      &:focus {
+        color: @color;
+        background-color: darken(@background, 5%);
+      }
+      &.active,
+      &.active:hover,
+      &.active:focus {
+        color: #fff;
+        background-color: @color;
+        border-color: @color;
+      }
+    }
+  }
+}
+
+// Button variants
+// -------------------------
+// Easily pump out default styles, as well as :hover, :focus, :active,
+// and disabled options for all buttons
+.button-variant(@color; @background; @border) {
+  color: @color;
+  background-color: @background;
+  border-color: @border;
+
+  &:hover,
+  &:focus,
+  &:active,
+  &.active,
+  .open .dropdown-toggle& {
+    color: @color;
+    background-color: darken(@background, 8%);
+        border-color: darken(@border, 12%);
+  }
+  &:active,
+  &.active,
+  .open .dropdown-toggle& {
+    background-image: none;
+  }
+  &.disabled,
+  &[disabled],
+  fieldset[disabled] & {
+    &,
+    &:hover,
+    &:focus,
+    &:active,
+    &.active {
+      background-color: @background;
+          border-color: @border;
+    }
+  }
+
+  .badge {
+    color: @background;
+    background-color: @color;
+  }
+}
+
+// Button sizes
+// -------------------------
+.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
+  padding: @padding-vertical @padding-horizontal;
+  font-size: @font-size;
+  line-height: @line-height;
+  border-radius: @border-radius;
+}
+
+// Pagination
+// -------------------------
+.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @border-radius) {
+  > li {
+    > a,
+    > span {
+      padding: @padding-vertical @padding-horizontal;
+      font-size: @font-size;
+    }
+    &:first-child {
+      > a,
+      > span {
+        .border-left-radius(@border-radius);
+      }
+    }
+    &:last-child {
+      > a,
+      > span {
+        .border-right-radius(@border-radius);
+      }
+    }
+  }
+}
+
+// Labels
+// -------------------------
+.label-variant(@color) {
+  background-color: @color;
+  &[href] {
+    &:hover,
+    &:focus {
+      background-color: darken(@color, 10%);
+    }
+  }
+}
+
+// Contextual backgrounds
+// -------------------------
+.bg-variant(@color) {
+  background-color: @color;
+  a&:hover {
+    background-color: darken(@color, 10%);
+  }
+}
+
+// Typography
+// -------------------------
+.text-emphasis-variant(@color) {
+  color: @color;
+  a&:hover {
+    color: darken(@color, 10%);
+  }
+}
+
+// Navbar vertical align
+// -------------------------
+// Vertically center elements in the navbar.
+// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.
+.navbar-vertical-align(@element-height) {
+  margin-top: ((@navbar-height - @element-height) / 2);
+  margin-bottom: ((@navbar-height - @element-height) / 2);
+}
+
+// Progress bars
+// -------------------------
+.progress-bar-variant(@color) {
+  background-color: @color;
+  .progress-striped & {
+    #gradient > .striped();
+  }
+}
+
+// Responsive utilities
+// -------------------------
+// More easily include all the states for responsive-utilities.less.
+.responsive-visibility() {
+  display: block !important;
+  table&  { display: table; }
+  tr&     { display: table-row !important; }
+  th&,
+  td&     { display: table-cell !important; }
+}
+
+.responsive-invisibility() {
+  display: none !important;
+}
+
+
+// Grid System
+// -----------
+
+// Centered container element
+.container-fixed() {
+  margin-right: auto;
+  margin-left: auto;
+  padding-left:  (@grid-gutter-width / 2);
+  padding-right: (@grid-gutter-width / 2);
+  &:extend(.clearfix all);
+}
+
+// Creates a wrapper for a series of columns
+.make-row(@gutter: @grid-gutter-width) {
+  margin-left:  (@gutter / -2);
+  margin-right: (@gutter / -2);
+  &:extend(.clearfix all);
+}
+
+// Generate the extra small columns
+.make-xs-column(@columns; @gutter: @grid-gutter-width) {
+  position: relative;
+  float: left;
+  width: percentage((@columns / @grid-columns));
+  min-height: 1px;
+  padding-left:  (@gutter / 2);
+  padding-right: (@gutter / 2);
+}
+.make-xs-column-offset(@columns) {
+  @media (min-width: @screen-xs-min) {
+    margin-left: percentage((@columns / @grid-columns));
+  }
+}
+.make-xs-column-push(@columns) {
+  @media (min-width: @screen-xs-min) {
+    left: percentage((@columns / @grid-columns));
+  }
+}
+.make-xs-column-pull(@columns) {
+  @media (min-width: @screen-xs-min) {
+    right: percentage((@columns / @grid-columns));
+  }
+}
+
+
+// Generate the small columns
+.make-sm-column(@columns; @gutter: @grid-gutter-width) {
+  position: relative;
+  min-height: 1px;
+  padding-left:  (@gutter / 2);
+  padding-right: (@gutter / 2);
+
+  @media (min-width: @screen-sm-min) {
+    float: left;
+    width: percentage((@columns / @grid-columns));
+  }
+}
+.make-sm-column-offset(@columns) {
+  @media (min-width: @screen-sm-min) {
+    margin-left: percentage((@columns / @grid-columns));
+  }
+}
+.make-sm-column-push(@columns) {
+  @media (min-width: @screen-sm-min) {
+    left: percentage((@columns / @grid-columns));
+  }
+}
+.make-sm-column-pull(@columns) {
+  @media (min-width: @screen-sm-min) {
+    right: percentage((@columns / @grid-columns));
+  }
+}
+
+
+// Generate the medium columns
+.make-md-column(@columns; @gutter: @grid-gutter-width) {
+  position: relative;
+  min-height: 1px;
+  padding-left:  (@gutter / 2);
+  padding-right: (@gutter / 2);
+
+  @media (min-width: @screen-md-min) {
+    float: left;
+    width: percentage((@columns / @grid-columns));
+  }
+}
+.make-md-column-offset(@columns) {
+  @media (min-width: @screen-md-min) {
+    margin-left: percentage((@columns / @grid-columns));
+  }
+}
+.make-md-column-push(@columns) {
+  @media (min-width: @screen-md-min) {
+    left: percentage((@columns / @grid-columns));
+  }
+}
+.make-md-column-pull(@columns) {
+  @media (min-width: @screen-md-min) {
+    right: percentage((@columns / @grid-columns));
+  }
+}
+
+
+// Generate the large columns
+.make-lg-column(@columns; @gutter: @grid-gutter-width) {
+  position: relative;
+  min-height: 1px;
+  padding-left:  (@gutter / 2);
+  padding-right: (@gutter / 2);
+
+  @media (min-width: @screen-lg-min) {
+    float: left;
+    width: percentage((@columns / @grid-columns));
+  }
+}
+.make-lg-column-offset(@columns) {
+  @media (min-width: @screen-lg-min) {
+    margin-left: percentage((@columns / @grid-columns));
+  }
+}
+.make-lg-column-push(@columns) {
+  @media (min-width: @screen-lg-min) {
+    left: percentage((@columns / @grid-columns));
+  }
+}
+.make-lg-column-pull(@columns) {
+  @media (min-width: @screen-lg-min) {
+    right: percentage((@columns / @grid-columns));
+  }
+}
+
+
+// Framework grid generation
+//
+// Used only by Bootstrap to generate the correct number of grid classes given
+// any value of `@grid-columns`.
+
+.make-grid-columns() {
+  // Common styles for all sizes of grid columns, widths 1-12
+  .col(@index) when (@index = 1) { // initial
+    @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}";
+    .col((@index + 1), @item);
+  }
+  .col(@index, @list) when (@index =< @grid-columns) { // general; "=<" isn't a typo
+    @item: ~".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}";
+    .col((@index + 1), ~"@{list}, @{item}");
+  }
+  .col(@index, @list) when (@index > @grid-columns) { // terminal
+    @{list} {
+      position: relative;
+      // Prevent columns from collapsing when empty
+      min-height: 1px;
+      // Inner gutter via padding
+      padding-left:  (@grid-gutter-width / 2);
+      padding-right: (@grid-gutter-width / 2);
+    }
+  }
+  .col(1); // kickstart it
+}
+
+.float-grid-columns(@class) {
+  .col(@index) when (@index = 1) { // initial
+    @item: ~".col-@{class}-@{index}";
+    .col((@index + 1), @item);
+  }
+  .col(@index, @list) when (@index =< @grid-columns) { // general
+    @item: ~".col-@{class}-@{index}";
+    .col((@index + 1), ~"@{list}, @{item}");
+  }
+  .col(@index, @list) when (@index > @grid-columns) { // terminal
+    @{list} {
+      float: left;
+    }
+  }
+  .col(1); // kickstart it
+}
+
+.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {
+  .col-@{class}-@{index} {
+    width: percentage((@index / @grid-columns));
+  }
+}
+.calc-grid-column(@index, @class, @type) when (@type = push) {
+  .col-@{class}-push-@{index} {
+    left: percentage((@index / @grid-columns));
+  }
+}
+.calc-grid-column(@index, @class, @type) when (@type = pull) {
+  .col-@{class}-pull-@{index} {
+    right: percentage((@index / @grid-columns));
+  }
+}
+.calc-grid-column(@index, @class, @type) when (@type = offset) {
+  .col-@{class}-offset-@{index} {
+    margin-left: percentage((@index / @grid-columns));
+  }
+}
+
+// Basic looping in LESS
+.loop-grid-columns(@index, @class, @type) when (@index >= 0) {
+  .calc-grid-column(@index, @class, @type);
+  // next iteration
+  .loop-grid-columns((@index - 1), @class, @type);
+}
+
+// Create grid for specific class
+.make-grid(@class) {
+  .float-grid-columns(@class);
+  .loop-grid-columns(@grid-columns, @class, width);
+  .loop-grid-columns(@grid-columns, @class, pull);
+  .loop-grid-columns(@grid-columns, @class, push);
+  .loop-grid-columns(@grid-columns, @class, offset);
+}
+
+// Form validation states
+//
+// Used in forms.less to generate the form validation CSS for warnings, errors,
+// and successes.
+
+.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {
+  // Color the label and help text
+  .help-block,
+  .control-label,
+  .radio,
+  .checkbox,
+  .radio-inline,
+  .checkbox-inline  {
+    color: @text-color;
+  }
+  // Set the border and box shadow on specific inputs to match
+  .form-control {
+    border-color: @border-color;
+    .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work
+    &:focus {
+      border-color: darken(@border-color, 10%);
+      @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);
+      .box-shadow(@shadow);
+    }
+  }
+  // Set validation states also for addons
+  .input-group-addon {
+    color: @text-color;
+    border-color: @border-color;
+    background-color: @background-color;
+  }
+  // Optional feedback icon
+  .form-control-feedback {
+    color: @text-color;
+  }
+}
+
+// Form control focus state
+//
+// Generate a customized focus state and for any input with the specified color,
+// which defaults to the `@input-focus-border` variable.
+//
+// We highly encourage you to not customize the default value, but instead use
+// this to tweak colors on an as-needed basis. This aesthetic change is based on
+// WebKit's default styles, but applicable to a wider range of browsers. Its
+// usability and accessibility should be taken into account with any change.
+//
+// Example usage: change the default blue border and shadow to white for better
+// contrast against a dark gray background.
+
+.form-control-focus(@color: @input-border-focus) {
+  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);
+  &:focus {
+    border-color: @color;
+    outline: 0;
+    .box-shadow(~"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}");
+  }
+}
+
+// Form control sizing
+//
+// Relative text size, padding, and border-radii changes for form controls. For
+// horizontal sizing, wrap controls in the predefined grid classes. `<select>`
+// element gets special love because it's special, and that's a fact!
+
+.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {
+  height: @input-height;
+  padding: @padding-vertical @padding-horizontal;
+  font-size: @font-size;
+  line-height: @line-height;
+  border-radius: @border-radius;
+
+  select& {
+    height: @input-height;
+    line-height: @input-height;
+  }
+
+  textarea&,
+  select[multiple]& {
+    height: auto;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-switch/variables.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-switch/variables.less
new file mode 100644
index 0000000..3846adc
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-switch/variables.less
@@ -0,0 +1,829 @@
+//
+// Variables
+// --------------------------------------------------
+
+
+//== Colors
+//
+//## Gray and brand colors for use across Bootstrap.
+
+@gray-darker:            lighten(#000, 13.5%); // #222
+@gray-dark:              lighten(#000, 20%);   // #333
+@gray:                   lighten(#000, 33.5%); // #555
+@gray-light:             lighten(#000, 60%);   // #999
+@gray-lighter:           lighten(#000, 93.5%); // #eee
+
+@brand-primary:         #428bca;
+@brand-success:         #5cb85c;
+@brand-info:            #5bc0de;
+@brand-warning:         #f0ad4e;
+@brand-danger:          #d9534f;
+
+
+//== Scaffolding
+//
+// ## Settings for some of the most global styles.
+
+//** Background color for `<body>`.
+@body-bg:               #fff;
+//** Global text color on `<body>`.
+@text-color:            @gray-dark;
+
+//** Global textual link color.
+@link-color:            @brand-primary;
+//** Link hover color set via `darken()` function.
+@link-hover-color:      darken(@link-color, 15%);
+
+
+//== Typography
+//
+//## Font, line-height, and color for body text, headings, and more.
+
+@font-family-sans-serif:  "Helvetica Neue", Helvetica, Arial, sans-serif;
+@font-family-serif:       Georgia, "Times New Roman", Times, serif;
+//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
+@font-family-monospace:   Menlo, Monaco, Consolas, "Courier New", monospace;
+@font-family-base:        @font-family-sans-serif;
+
+@font-size-base:          14px;
+@font-size-large:         ceil((@font-size-base * 1.25)); // ~18px
+@font-size-small:         ceil((@font-size-base * 0.85)); // ~12px
+
+@font-size-h1:            floor((@font-size-base * 2.6)); // ~36px
+@font-size-h2:            floor((@font-size-base * 2.15)); // ~30px
+@font-size-h3:            ceil((@font-size-base * 1.7)); // ~24px
+@font-size-h4:            ceil((@font-size-base * 1.25)); // ~18px
+@font-size-h5:            @font-size-base;
+@font-size-h6:            ceil((@font-size-base * 0.85)); // ~12px
+
+//** Unit-less `line-height` for use in components like buttons.
+@line-height-base:        1.428571429; // 20/14
+//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
+@line-height-computed:    floor((@font-size-base * @line-height-base)); // ~20px
+
+//** By default, this inherits from the `<body>`.
+@headings-font-family:    inherit;
+@headings-font-weight:    500;
+@headings-line-height:    1.1;
+@headings-color:          inherit;
+
+
+//-- Iconography
+//
+//## Specify custom locations of the include Glyphicons icon font. Useful for those including Bootstrap via Bower.
+
+@icon-font-path:          "../fonts/";
+@icon-font-name:          "glyphicons-halflings-regular";
+@icon-font-svg-id:        "glyphicons_halflingsregular";
+
+//== Components
+//
+//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
+
+@padding-base-vertical:     6px;
+@padding-base-horizontal:   12px;
+
+@padding-large-vertical:    10px;
+@padding-large-horizontal:  16px;
+
+@padding-small-vertical:    5px;
+@padding-small-horizontal:  10px;
+
+@padding-xs-vertical:       1px;
+@padding-xs-horizontal:     5px;
+
+@line-height-large:         1.33;
+@line-height-small:         1.5;
+
+@border-radius-base:        4px;
+@border-radius-large:       6px;
+@border-radius-small:       3px;
+
+//** Global color for active items (e.g., navs or dropdowns).
+@component-active-color:    #fff;
+//** Global background color for active items (e.g., navs or dropdowns).
+@component-active-bg:       @brand-primary;
+
+//** Width of the `border` for generating carets that indicator dropdowns.
+@caret-width-base:          4px;
+//** Carets increase slightly in size for larger components.
+@caret-width-large:         5px;
+
+
+//== Tables
+//
+//## Customizes the `.table` component with basic values, each used across all table variations.
+
+//** Padding for `<th>`s and `<td>`s.
+@table-cell-padding:            8px;
+//** Padding for cells in `.table-condensed`.
+@table-condensed-cell-padding:  5px;
+
+//** Default background color used for all tables.
+@table-bg:                      transparent;
+//** Background color used for `.table-striped`.
+@table-bg-accent:               #f9f9f9;
+//** Background color used for `.table-hover`.
+@table-bg-hover:                #f5f5f5;
+@table-bg-active:               @table-bg-hover;
+
+//** Border color for table and cell borders.
+@table-border-color:            #ddd;
+
+
+//== Buttons
+//
+//## For each of Bootstrap's buttons, define text, background and border color.
+
+@btn-font-weight:                normal;
+
+@btn-default-color:              #333;
+@btn-default-bg:                 #fff;
+@btn-default-border:             #ccc;
+
+@btn-primary-color:              #fff;
+@btn-primary-bg:                 @brand-primary;
+@btn-primary-border:             darken(@btn-primary-bg, 5%);
+
+@btn-success-color:              #fff;
+@btn-success-bg:                 @brand-success;
+@btn-success-border:             darken(@btn-success-bg, 5%);
+
+@btn-info-color:                 #fff;
+@btn-info-bg:                    @brand-info;
+@btn-info-border:                darken(@btn-info-bg, 5%);
+
+@btn-warning-color:              #fff;
+@btn-warning-bg:                 @brand-warning;
+@btn-warning-border:             darken(@btn-warning-bg, 5%);
+
+@btn-danger-color:               #fff;
+@btn-danger-bg:                  @brand-danger;
+@btn-danger-border:              darken(@btn-danger-bg, 5%);
+
+@btn-link-disabled-color:        @gray-light;
+
+
+//== Forms
+//
+//##
+
+//** `<input>` background color
+@input-bg:                       #fff;
+//** `<input disabled>` background color
+@input-bg-disabled:              @gray-lighter;
+
+//** Text color for `<input>`s
+@input-color:                    @gray;
+//** `<input>` border color
+@input-border:                   #ccc;
+//** `<input>` border radius
+@input-border-radius:            @border-radius-base;
+//** Border color for inputs on focus
+@input-border-focus:             #66afe9;
+
+//** Placeholder text color
+@input-color-placeholder:        @gray-light;
+
+//** Default `.form-control` height
+@input-height-base:              (@line-height-computed + (@padding-base-vertical * 2) + 2);
+//** Large `.form-control` height
+@input-height-large:             (ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2);
+//** Small `.form-control` height
+@input-height-small:             (floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2);
+
+@legend-color:                   @gray-dark;
+@legend-border-color:            #e5e5e5;
+
+//** Background color for textual input addons
+@input-group-addon-bg:           @gray-lighter;
+//** Border color for textual input addons
+@input-group-addon-border-color: @input-border;
+
+
+//== Dropdowns
+//
+//## Dropdown menu container and contents.
+
+//** Background for the dropdown menu.
+@dropdown-bg:                    #fff;
+//** Dropdown menu `border-color`.
+@dropdown-border:                rgba(0,0,0,.15);
+//** Dropdown menu `border-color` **for IE8**.
+@dropdown-fallback-border:       #ccc;
+//** Divider color for between dropdown items.
+@dropdown-divider-bg:            #e5e5e5;
+
+//** Dropdown link text color.
+@dropdown-link-color:            @gray-dark;
+//** Hover color for dropdown links.
+@dropdown-link-hover-color:      darken(@gray-dark, 5%);
+//** Hover background for dropdown links.
+@dropdown-link-hover-bg:         #f5f5f5;
+
+//** Active dropdown menu item text color.
+@dropdown-link-active-color:     @component-active-color;
+//** Active dropdown menu item background color.
+@dropdown-link-active-bg:        @component-active-bg;
+
+//** Disabled dropdown menu item background color.
+@dropdown-link-disabled-color:   @gray-light;
+
+//** Text color for headers within dropdown menus.
+@dropdown-header-color:          @gray-light;
+
+// Note: Deprecated @dropdown-caret-color as of v3.1.0
+@dropdown-caret-color:           #000;
+
+
+//-- Z-index master list
+//
+// Warning: Avoid customizing these values. They're used for a bird's eye view
+// of components dependent on the z-axis and are designed to all work together.
+//
+// Note: These variables are not generated into the Customizer.
+
+@zindex-navbar:            1000;
+@zindex-dropdown:          1000;
+@zindex-popover:           1010;
+@zindex-tooltip:           1030;
+@zindex-navbar-fixed:      1030;
+@zindex-modal-background:  1040;
+@zindex-modal:             1050;
+
+
+//== Media queries breakpoints
+//
+//## Define the breakpoints at which your layout will change, adapting to different screen sizes.
+
+// Extra small screen / phone
+// Note: Deprecated @screen-xs and @screen-phone as of v3.0.1
+@screen-xs:                  480px;
+@screen-xs-min:              @screen-xs;
+@screen-phone:               @screen-xs-min;
+
+// Small screen / tablet
+// Note: Deprecated @screen-sm and @screen-tablet as of v3.0.1
+@screen-sm:                  768px;
+@screen-sm-min:              @screen-sm;
+@screen-tablet:              @screen-sm-min;
+
+// Medium screen / desktop
+// Note: Deprecated @screen-md and @screen-desktop as of v3.0.1
+@screen-md:                  992px;
+@screen-md-min:              @screen-md;
+@screen-desktop:             @screen-md-min;
+
+// Large screen / wide desktop
+// Note: Deprecated @screen-lg and @screen-lg-desktop as of v3.0.1
+@screen-lg:                  1200px;
+@screen-lg-min:              @screen-lg;
+@screen-lg-desktop:          @screen-lg-min;
+
+// So media queries don't overlap when required, provide a maximum
+@screen-xs-max:              (@screen-sm-min - 1);
+@screen-sm-max:              (@screen-md-min - 1);
+@screen-md-max:              (@screen-lg-min - 1);
+
+
+//== Grid system
+//
+//## Define your custom responsive grid.
+
+//** Number of columns in the grid.
+@grid-columns:              12;
+//** Padding between columns. Gets divided in half for the left and right.
+@grid-gutter-width:         30px;
+// Navbar collapse
+//** Point at which the navbar becomes uncollapsed.
+@grid-float-breakpoint:     @screen-sm-min;
+//** Point at which the navbar begins collapsing.
+@grid-float-breakpoint-max: (@grid-float-breakpoint - 1);
+
+
+//== Container sizes
+//
+//## Define the maximum width of `.container` for different screen sizes.
+
+// Small screen / tablet
+@container-tablet:             ((720px + @grid-gutter-width));
+//** For `@screen-sm-min` and up.
+@container-sm:                 @container-tablet;
+
+// Medium screen / desktop
+@container-desktop:            ((940px + @grid-gutter-width));
+//** For `@screen-md-min` and up.
+@container-md:                 @container-desktop;
+
+// Large screen / wide desktop
+@container-large-desktop:      ((1140px + @grid-gutter-width));
+//** For `@screen-lg-min` and up.
+@container-lg:                 @container-large-desktop;
+
+
+//== Navbar
+//
+//##
+
+// Basics of a navbar
+@navbar-height:                    50px;
+@navbar-margin-bottom:             @line-height-computed;
+@navbar-border-radius:             @border-radius-base;
+@navbar-padding-horizontal:        floor((@grid-gutter-width / 2));
+@navbar-padding-vertical:          ((@navbar-height - @line-height-computed) / 2);
+@navbar-collapse-max-height:       340px;
+
+@navbar-default-color:             #777;
+@navbar-default-bg:                #f8f8f8;
+@navbar-default-border:            darken(@navbar-default-bg, 6.5%);
+
+// Navbar links
+@navbar-default-link-color:                #777;
+@navbar-default-link-hover-color:          #333;
+@navbar-default-link-hover-bg:             transparent;
+@navbar-default-link-active-color:         #555;
+@navbar-default-link-active-bg:            darken(@navbar-default-bg, 6.5%);
+@navbar-default-link-disabled-color:       #ccc;
+@navbar-default-link-disabled-bg:          transparent;
+
+// Navbar brand label
+@navbar-default-brand-color:               @navbar-default-link-color;
+@navbar-default-brand-hover-color:         darken(@navbar-default-brand-color, 10%);
+@navbar-default-brand-hover-bg:            transparent;
+
+// Navbar toggle
+@navbar-default-toggle-hover-bg:           #ddd;
+@navbar-default-toggle-icon-bar-bg:        #888;
+@navbar-default-toggle-border-color:       #ddd;
+
+
+// Inverted navbar
+// Reset inverted navbar basics
+@navbar-inverse-color:                      @gray-light;
+@navbar-inverse-bg:                         #222;
+@navbar-inverse-border:                     darken(@navbar-inverse-bg, 10%);
+
+// Inverted navbar links
+@navbar-inverse-link-color:                 @gray-light;
+@navbar-inverse-link-hover-color:           #fff;
+@navbar-inverse-link-hover-bg:              transparent;
+@navbar-inverse-link-active-color:          @navbar-inverse-link-hover-color;
+@navbar-inverse-link-active-bg:             darken(@navbar-inverse-bg, 10%);
+@navbar-inverse-link-disabled-color:        #444;
+@navbar-inverse-link-disabled-bg:           transparent;
+
+// Inverted navbar brand label
+@navbar-inverse-brand-color:                @navbar-inverse-link-color;
+@navbar-inverse-brand-hover-color:          #fff;
+@navbar-inverse-brand-hover-bg:             transparent;
+
+// Inverted navbar toggle
+@navbar-inverse-toggle-hover-bg:            #333;
+@navbar-inverse-toggle-icon-bar-bg:         #fff;
+@navbar-inverse-toggle-border-color:        #333;
+
+
+//== Navs
+//
+//##
+
+//=== Shared nav styles
+@nav-link-padding:                          10px 15px;
+@nav-link-hover-bg:                         @gray-lighter;
+
+@nav-disabled-link-color:                   @gray-light;
+@nav-disabled-link-hover-color:             @gray-light;
+
+@nav-open-link-hover-color:                 #fff;
+
+//== Tabs
+@nav-tabs-border-color:                     #ddd;
+
+@nav-tabs-link-hover-border-color:          @gray-lighter;
+
+@nav-tabs-active-link-hover-bg:             @body-bg;
+@nav-tabs-active-link-hover-color:          @gray;
+@nav-tabs-active-link-hover-border-color:   #ddd;
+
+@nav-tabs-justified-link-border-color:            #ddd;
+@nav-tabs-justified-active-link-border-color:     @body-bg;
+
+//== Pills
+@nav-pills-border-radius:                   @border-radius-base;
+@nav-pills-active-link-hover-bg:            @component-active-bg;
+@nav-pills-active-link-hover-color:         @component-active-color;
+
+
+//== Pagination
+//
+//##
+
+@pagination-color:                     @link-color;
+@pagination-bg:                        #fff;
+@pagination-border:                    #ddd;
+
+@pagination-hover-color:               @link-hover-color;
+@pagination-hover-bg:                  @gray-lighter;
+@pagination-hover-border:              #ddd;
+
+@pagination-active-color:              #fff;
+@pagination-active-bg:                 @brand-primary;
+@pagination-active-border:             @brand-primary;
+
+@pagination-disabled-color:            @gray-light;
+@pagination-disabled-bg:               #fff;
+@pagination-disabled-border:           #ddd;
+
+
+//== Pager
+//
+//##
+
+@pager-bg:                             @pagination-bg;
+@pager-border:                         @pagination-border;
+@pager-border-radius:                  15px;
+
+@pager-hover-bg:                       @pagination-hover-bg;
+
+@pager-active-bg:                      @pagination-active-bg;
+@pager-active-color:                   @pagination-active-color;
+
+@pager-disabled-color:                 @pagination-disabled-color;
+
+
+//== Jumbotron
+//
+//##
+
+@jumbotron-padding:              30px;
+@jumbotron-color:                inherit;
+@jumbotron-bg:                   @gray-lighter;
+@jumbotron-heading-color:        inherit;
+@jumbotron-font-size:            ceil((@font-size-base * 1.5));
+
+
+//== Form states and alerts
+//
+//## Define colors for form feedback states and, by default, alerts.
+
+@state-success-text:             #3c763d;
+@state-success-bg:               #dff0d8;
+@state-success-border:           darken(spin(@state-success-bg, -10), 5%);
+
+@state-info-text:                #31708f;
+@state-info-bg:                  #d9edf7;
+@state-info-border:              darken(spin(@state-info-bg, -10), 7%);
+
+@state-warning-text:             #8a6d3b;
+@state-warning-bg:               #fcf8e3;
+@state-warning-border:           darken(spin(@state-warning-bg, -10), 5%);
+
+@state-danger-text:              #a94442;
+@state-danger-bg:                #f2dede;
+@state-danger-border:            darken(spin(@state-danger-bg, -10), 5%);
+
+
+//== Tooltips
+//
+//##
+
+//** Tooltip max width
+@tooltip-max-width:           200px;
+//** Tooltip text color
+@tooltip-color:               #fff;
+//** Tooltip background color
+@tooltip-bg:                  #000;
+@tooltip-opacity:             .9;
+
+//** Tooltip arrow width
+@tooltip-arrow-width:         5px;
+//** Tooltip arrow color
+@tooltip-arrow-color:         @tooltip-bg;
+
+
+//== Popovers
+//
+//##
+
+//** Popover body background color
+@popover-bg:                          #fff;
+//** Popover maximum width
+@popover-max-width:                   276px;
+//** Popover border color
+@popover-border-color:                rgba(0,0,0,.2);
+//** Popover fallback border color
+@popover-fallback-border-color:       #ccc;
+
+//** Popover title background color
+@popover-title-bg:                    darken(@popover-bg, 3%);
+
+//** Popover arrow width
+@popover-arrow-width:                 10px;
+//** Popover arrow color
+@popover-arrow-color:                 #fff;
+
+//** Popover outer arrow width
+@popover-arrow-outer-width:           (@popover-arrow-width + 1);
+//** Popover outer arrow color
+@popover-arrow-outer-color:           fadein(@popover-border-color, 5%);
+//** Popover outer arrow fallback color
+@popover-arrow-outer-fallback-color:  darken(@popover-fallback-border-color, 20%);
+
+
+//== Labels
+//
+//##
+
+//** Default label background color
+@label-default-bg:            @gray-light;
+//** Primary label background color
+@label-primary-bg:            @brand-primary;
+//** Success label background color
+@label-success-bg:            @brand-success;
+//** Info label background color
+@label-info-bg:               @brand-info;
+//** Warning label background color
+@label-warning-bg:            @brand-warning;
+//** Danger label background color
+@label-danger-bg:             @brand-danger;
+
+//** Default label text color
+@label-color:                 #fff;
+//** Default text color of a linked label
+@label-link-hover-color:      #fff;
+
+
+//== Modals
+//
+//##
+
+//** Padding applied to the modal body
+@modal-inner-padding:         20px;
+
+//** Padding applied to the modal title
+@modal-title-padding:         15px;
+//** Modal title line-height
+@modal-title-line-height:     @line-height-base;
+
+//** Background color of modal content area
+@modal-content-bg:                             #fff;
+//** Modal content border color
+@modal-content-border-color:                   rgba(0,0,0,.2);
+//** Modal content border color **for IE8**
+@modal-content-fallback-border-color:          #999;
+
+//** Modal backdrop background color
+@modal-backdrop-bg:           #000;
+//** Modal backdrop opacity
+@modal-backdrop-opacity:      .5;
+//** Modal header border color
+@modal-header-border-color:   #e5e5e5;
+//** Modal footer border color
+@modal-footer-border-color:   @modal-header-border-color;
+
+@modal-lg:                    900px;
+@modal-md:                    600px;
+@modal-sm:                    300px;
+
+
+//== Alerts
+//
+//## Define alert colors, border radius, and padding.
+
+@alert-padding:               15px;
+@alert-border-radius:         @border-radius-base;
+@alert-link-font-weight:      bold;
+
+@alert-success-bg:            @state-success-bg;
+@alert-success-text:          @state-success-text;
+@alert-success-border:        @state-success-border;
+
+@alert-info-bg:               @state-info-bg;
+@alert-info-text:             @state-info-text;
+@alert-info-border:           @state-info-border;
+
+@alert-warning-bg:            @state-warning-bg;
+@alert-warning-text:          @state-warning-text;
+@alert-warning-border:        @state-warning-border;
+
+@alert-danger-bg:             @state-danger-bg;
+@alert-danger-text:           @state-danger-text;
+@alert-danger-border:         @state-danger-border;
+
+
+//== Progress bars
+//
+//##
+
+//** Background color of the whole progress component
+@progress-bg:                 #f5f5f5;
+//** Progress bar text color
+@progress-bar-color:          #fff;
+
+//** Default progress bar color
+@progress-bar-bg:             @brand-primary;
+//** Success progress bar color
+@progress-bar-success-bg:     @brand-success;
+//** Warning progress bar color
+@progress-bar-warning-bg:     @brand-warning;
+//** Danger progress bar color
+@progress-bar-danger-bg:      @brand-danger;
+//** Info progress bar color
+@progress-bar-info-bg:        @brand-info;
+
+
+//== List group
+//
+//##
+
+//** Background color on `.list-group-item`
+@list-group-bg:                 #fff;
+//** `.list-group-item` border color
+@list-group-border:             #ddd;
+//** List group border radius
+@list-group-border-radius:      @border-radius-base;
+
+//** Background color of single list elements on hover
+@list-group-hover-bg:           #f5f5f5;
+//** Text color of active list elements
+@list-group-active-color:       @component-active-color;
+//** Background color of active list elements
+@list-group-active-bg:          @component-active-bg;
+//** Border color of active list elements
+@list-group-active-border:      @list-group-active-bg;
+@list-group-active-text-color:  lighten(@list-group-active-bg, 40%);
+
+@list-group-link-color:         #555;
+@list-group-link-heading-color: #333;
+
+
+//== Panels
+//
+//##
+
+@panel-bg:                    #fff;
+@panel-body-padding:          15px;
+@panel-border-radius:         @border-radius-base;
+
+//** Border color for elements within panels
+@panel-inner-border:          #ddd;
+@panel-footer-bg:             #f5f5f5;
+
+@panel-default-text:          @gray-dark;
+@panel-default-border:        #ddd;
+@panel-default-heading-bg:    #f5f5f5;
+
+@panel-primary-text:          #fff;
+@panel-primary-border:        @brand-primary;
+@panel-primary-heading-bg:    @brand-primary;
+
+@panel-success-text:          @state-success-text;
+@panel-success-border:        @state-success-border;
+@panel-success-heading-bg:    @state-success-bg;
+
+@panel-info-text:             @state-info-text;
+@panel-info-border:           @state-info-border;
+@panel-info-heading-bg:       @state-info-bg;
+
+@panel-warning-text:          @state-warning-text;
+@panel-warning-border:        @state-warning-border;
+@panel-warning-heading-bg:    @state-warning-bg;
+
+@panel-danger-text:           @state-danger-text;
+@panel-danger-border:         @state-danger-border;
+@panel-danger-heading-bg:     @state-danger-bg;
+
+
+//== Thumbnails
+//
+//##
+
+//** Padding around the thumbnail image
+@thumbnail-padding:           4px;
+//** Thumbnail background color
+@thumbnail-bg:                @body-bg;
+//** Thumbnail border color
+@thumbnail-border:            #ddd;
+//** Thumbnail border radius
+@thumbnail-border-radius:     @border-radius-base;
+
+//** Custom text color for thumbnail captions
+@thumbnail-caption-color:     @text-color;
+//** Padding around the thumbnail caption
+@thumbnail-caption-padding:   9px;
+
+
+//== Wells
+//
+//##
+
+@well-bg:                     #f5f5f5;
+@well-border:                 darken(@well-bg, 7%);
+
+
+//== Badges
+//
+//##
+
+@badge-color:                 #fff;
+//** Linked badge text color on hover
+@badge-link-hover-color:      #fff;
+@badge-bg:                    @gray-light;
+
+//** Badge text color in active nav link
+@badge-active-color:          @link-color;
+//** Badge background color in active nav link
+@badge-active-bg:             #fff;
+
+@badge-font-weight:           bold;
+@badge-line-height:           1;
+@badge-border-radius:         10px;
+
+
+//== Breadcrumbs
+//
+//##
+
+@breadcrumb-padding-vertical:   8px;
+@breadcrumb-padding-horizontal: 15px;
+//** Breadcrumb background color
+@breadcrumb-bg:                 #f5f5f5;
+//** Breadcrumb text color
+@breadcrumb-color:              #ccc;
+//** Text color of current page in the breadcrumb
+@breadcrumb-active-color:       @gray-light;
+//** Textual separator for between breadcrumb elements
+@breadcrumb-separator:          "/";
+
+
+//== Carousel
+//
+//##
+
+@carousel-text-shadow:                        0 1px 2px rgba(0,0,0,.6);
+
+@carousel-control-color:                      #fff;
+@carousel-control-width:                      15%;
+@carousel-control-opacity:                    .5;
+@carousel-control-font-size:                  20px;
+
+@carousel-indicator-active-bg:                #fff;
+@carousel-indicator-border-color:             #fff;
+
+@carousel-caption-color:                      #fff;
+
+
+//== Close
+//
+//##
+
+@close-font-weight:           bold;
+@close-color:                 #000;
+@close-text-shadow:           0 1px 0 #fff;
+
+
+//== Code
+//
+//##
+
+@code-color:                  #c7254e;
+@code-bg:                     #f9f2f4;
+
+@kbd-color:                   #fff;
+@kbd-bg:                      #333;
+
+@pre-bg:                      #f5f5f5;
+@pre-color:                   @gray-dark;
+@pre-border-color:            #ccc;
+@pre-scrollable-max-height:   340px;
+
+
+//== Type
+//
+//##
+
+//** Text muted color
+@text-muted:                  @gray-light;
+//** Abbreviations and acronyms border color
+@abbr-border-color:           @gray-light;
+//** Headings small color
+@headings-small-color:        @gray-light;
+//** Blockquote small color
+@blockquote-small-color:      @gray-light;
+//** Blockquote font size
+@blockquote-font-size:        (@font-size-base * 1.25);
+//** Blockquote border color
+@blockquote-border-color:     @gray-lighter;
+//** Page header border color
+@page-header-border-color:    @gray-lighter;
+
+
+//== Miscellaneous
+//
+//##
+
+//** Horizontal line color.
+@hr-border:                   @gray-lighter;
+
+//** Horizontal offset for forms and lists.
+@component-offset-horizontal: 180px;
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-touch/jquery.bootstrap-touchspin.css b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-touch/jquery.bootstrap-touchspin.css
new file mode 100644
index 0000000..ed316c4
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-touch/jquery.bootstrap-touchspin.css
@@ -0,0 +1,45 @@
+/*
+ *  Bootstrap TouchSpin - v3.0.1
+ *  A mobile and touch friendly input spinner component for Bootstrap 3.
+ *  http://www.virtuosoft.eu/code/bootstrap-touchspin/
+ *
+ *  Made by István Ujj-Mészáros
+ *  Under Apache License v2.0 License
+ */
+
+.bootstrap-touchspin .input-group-btn-vertical {
+  position: relative;
+  white-space: nowrap;
+  width: 1%;
+  vertical-align: middle;
+  display: table-cell;
+}
+
+.bootstrap-touchspin .input-group-btn-vertical > .btn {
+  display: block;
+  float: none;
+  width: 100%;
+  max-width: 100%;
+  padding: 8px 10px;
+  margin-left: -1px;
+  position: relative;
+}
+
+.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
+  border-radius: 0;
+  border-top-right-radius: 4px;
+}
+
+.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
+  margin-top: -2px;
+  border-radius: 0;
+  border-bottom-right-radius: 4px;
+}
+
+.bootstrap-touchspin .input-group-btn-vertical i {
+  position: absolute;
+  top: 3px;
+  left: 5px;
+  font-size: 9px;
+  font-weight: normal;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-touchspin/jquery.bootstrap-touchspin.css b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-touchspin/jquery.bootstrap-touchspin.css
new file mode 100644
index 0000000..09df6c2
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/bootstrap-touchspin/jquery.bootstrap-touchspin.css
@@ -0,0 +1,45 @@
+/*
+ *  Bootstrap TouchSpin - v3.1.1
+ *  A mobile and touch friendly input spinner component for Bootstrap 3.
+ *  http://www.virtuosoft.eu/code/bootstrap-touchspin/
+ *
+ *  Made by István Ujj-Mészáros
+ *  Under Apache License v2.0 License
+ */
+
+.bootstrap-touchspin .input-group-btn-vertical {
+  position: relative;
+  white-space: nowrap;
+  width: 1%;
+  vertical-align: middle;
+  display: table-cell;
+}
+
+.bootstrap-touchspin .input-group-btn-vertical > .btn {
+  display: block;
+  float: none;
+  width: 100%;
+  max-width: 100%;
+  padding: 8px 10px;
+  margin-left: -1px;
+  position: relative;
+}
+
+.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
+  border-radius: 0;
+  border-top-right-radius: 4px;
+}
+
+.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
+  margin-top: -2px;
+  border-radius: 0;
+  border-bottom-right-radius: 4px;
+}
+
+.bootstrap-touchspin .input-group-btn-vertical i {
+  position: absolute;
+  top: 3px;
+  left: 5px;
+  font-size: 9px;
+  font-weight: normal;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/c3/c3.css b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/c3/c3.css
new file mode 100644
index 0000000..fda4242
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/c3/c3.css
@@ -0,0 +1,167 @@
+/*-- Chart --*/
+.c3 svg {
+  font: 10px sans-serif;
+  -webkit-tap-highlight-color: transparent; }
+
+.c3 path, .c3 line {
+  fill: none;
+  stroke: #000; }
+
+.c3 text {
+  -webkit-user-select: none;
+  -moz-user-select: none;
+  user-select: none; }
+
+.c3-legend-item-tile,
+.c3-xgrid-focus,
+.c3-ygrid,
+.c3-event-rect,
+.c3-bars path {
+  shape-rendering: crispEdges; }
+
+.c3-chart-arc path {
+  stroke: #fff; }
+
+.c3-chart-arc text {
+  fill: #fff;
+  font-size: 13px; }
+
+/*-- Axis --*/
+/*-- Grid --*/
+.c3-grid line {
+  stroke: #aaa; }
+
+.c3-grid text {
+  fill: #aaa; }
+
+.c3-xgrid, .c3-ygrid {
+  stroke-dasharray: 3 3; }
+
+/*-- Text on Chart --*/
+.c3-text.c3-empty {
+  fill: #808080;
+  font-size: 2em; }
+
+/*-- Line --*/
+.c3-line {
+  stroke-width: 1px; }
+
+/*-- Point --*/
+.c3-circle._expanded_ {
+  stroke-width: 1px;
+  stroke: white; }
+
+.c3-selected-circle {
+  fill: white;
+  stroke-width: 2px; }
+
+/*-- Bar --*/
+.c3-bar {
+  stroke-width: 0; }
+
+.c3-bar._expanded_ {
+  fill-opacity: 0.75; }
+
+/*-- Focus --*/
+.c3-target.c3-focused {
+  opacity: 1; }
+
+.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {
+  stroke-width: 2px; }
+
+.c3-target.c3-defocused {
+  opacity: 0.3 !important; }
+
+/*-- Region --*/
+.c3-region {
+  fill: steelblue;
+  fill-opacity: .1; }
+
+/*-- Brush --*/
+.c3-brush .extent {
+  fill-opacity: .1; }
+
+/*-- Select - Drag --*/
+/*-- Legend --*/
+.c3-legend-item {
+  font-size: 12px; }
+
+.c3-legend-item-hidden {
+  opacity: 0.15; }
+
+.c3-legend-background {
+  opacity: 0.75;
+  fill: white;
+  stroke: lightgray;
+  stroke-width: 1; }
+
+/*-- Title --*/
+.c3-title {
+  font: 14px sans-serif; }
+
+/*-- Tooltip --*/
+.c3-tooltip-container {
+  z-index: 10; }
+
+.c3-tooltip {
+  border-collapse: collapse;
+  border-spacing: 0;
+  background-color: #fff;
+  empty-cells: show;
+  -webkit-box-shadow: 7px 7px 12px -9px #777777;
+  -moz-box-shadow: 7px 7px 12px -9px #777777;
+  box-shadow: 7px 7px 12px -9px #777777;
+  opacity: 0.9; }
+
+.c3-tooltip tr {
+  border: 1px solid #CCC; }
+
+.c3-tooltip th {
+  background-color: #aaa;
+  font-size: 14px;
+  padding: 2px 5px;
+  text-align: left;
+  color: #FFF; }
+
+.c3-tooltip td {
+  font-size: 13px;
+  padding: 3px 6px;
+  background-color: #fff;
+  border-left: 1px dotted #999; }
+
+.c3-tooltip td > span {
+  display: inline-block;
+  width: 10px;
+  height: 10px;
+  margin-right: 6px; }
+
+.c3-tooltip td.value {
+  text-align: right; }
+
+/*-- Area --*/
+.c3-area {
+  stroke-width: 0;
+  opacity: 0.2; }
+
+/*-- Arc --*/
+.c3-chart-arcs-title {
+  dominant-baseline: middle;
+  font-size: 1.3em; }
+
+.c3-chart-arcs .c3-chart-arcs-background {
+  fill: #e0e0e0;
+  stroke: none; }
+
+.c3-chart-arcs .c3-chart-arcs-gauge-unit {
+  fill: #000;
+  font-size: 16px; }
+
+.c3-chart-arcs .c3-chart-arcs-gauge-max {
+  fill: #777; }
+
+.c3-chart-arcs .c3-chart-arcs-gauge-min {
+  fill: #777; }
+
+.c3-chart-arc .c3-gauge-value {
+  fill: #000;
+  /*  font-size: 28px !important;*/ }
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/eonasdan-bootstrap-datetimepicker/_bootstrap-datetimepicker.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/eonasdan-bootstrap-datetimepicker/_bootstrap-datetimepicker.less
new file mode 100644
index 0000000..5beb293
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/eonasdan-bootstrap-datetimepicker/_bootstrap-datetimepicker.less
@@ -0,0 +1,352 @@
+/*!
+ * Datetimepicker for Bootstrap 3
+ * version : 4.17.37
+ * https://github.com/Eonasdan/bootstrap-datetimepicker/
+ */
+@bs-datetimepicker-timepicker-font-size: 1.2em;
+@bs-datetimepicker-active-bg: @btn-primary-bg;
+@bs-datetimepicker-active-color: @btn-primary-color;
+@bs-datetimepicker-border-radius: @border-radius-base;
+@bs-datetimepicker-btn-hover-bg: @gray-lighter;
+@bs-datetimepicker-disabled-color: @gray-light;
+@bs-datetimepicker-alternate-color: @gray-light;
+@bs-datetimepicker-secondary-border-color: #ccc;
+@bs-datetimepicker-secondary-border-color-rgba: rgba(0, 0, 0, 0.2);
+@bs-datetimepicker-primary-border-color: white;
+@bs-datetimepicker-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+
+.bootstrap-datetimepicker-widget {
+    list-style: none;
+
+    &.dropdown-menu {
+        margin: 2px 0;
+        padding: 4px;
+        width: 19em;
+
+        &.timepicker-sbs {
+            @media (min-width: @screen-sm-min) {
+                width: 38em;
+            }
+
+            @media (min-width: @screen-md-min) {
+                width: 38em;
+            }
+
+            @media (min-width: @screen-lg-min) {
+                width: 38em;
+            }
+        }
+
+        &:before, &:after {
+            content: '';
+            display: inline-block;
+            position: absolute;
+        }
+
+        &.bottom {
+            &:before {
+                border-left: 7px solid transparent;
+                border-right: 7px solid transparent;
+                border-bottom: 7px solid @bs-datetimepicker-secondary-border-color;
+                border-bottom-color: @bs-datetimepicker-secondary-border-color-rgba;
+                top: -7px;
+                left: 7px;
+            }
+
+            &:after {
+                border-left: 6px solid transparent;
+                border-right: 6px solid transparent;
+                border-bottom: 6px solid @bs-datetimepicker-primary-border-color;
+                top: -6px;
+                left: 8px;
+            }
+        }
+
+        &.top {
+            &:before {
+                border-left: 7px solid transparent;
+                border-right: 7px solid transparent;
+                border-top: 7px solid @bs-datetimepicker-secondary-border-color;
+                border-top-color: @bs-datetimepicker-secondary-border-color-rgba;
+                bottom: -7px;
+                left: 6px;
+            }
+
+            &:after {
+                border-left: 6px solid transparent;
+                border-right: 6px solid transparent;
+                border-top: 6px solid @bs-datetimepicker-primary-border-color;
+                bottom: -6px;
+                left: 7px;
+            }
+        }
+
+        &.pull-right {
+            &:before {
+                left: auto;
+                right: 6px;
+            }
+
+            &:after {
+                left: auto;
+                right: 7px;
+            }
+        }
+    }
+
+    .list-unstyled {
+        margin: 0;
+    }
+
+    a[data-action] {
+        padding: 6px 0;
+    }
+
+    a[data-action]:active {
+        box-shadow: none;
+    }
+
+    .timepicker-hour, .timepicker-minute, .timepicker-second {
+        width: 54px;
+        font-weight: bold;
+        font-size: @bs-datetimepicker-timepicker-font-size;
+        margin: 0;
+    }
+
+    button[data-action] {
+        padding: 6px;
+    }
+
+    .btn[data-action="incrementHours"]::after {
+        .sr-only();
+        content: "Increment Hours";
+    }
+
+    .btn[data-action="incrementMinutes"]::after {
+        .sr-only();
+        content: "Increment Minutes";
+    }
+
+    .btn[data-action="decrementHours"]::after {
+        .sr-only();
+        content: "Decrement Hours";
+    }
+
+    .btn[data-action="decrementMinutes"]::after {
+        .sr-only();
+        content: "Decrement Minutes";
+    }
+
+    .btn[data-action="showHours"]::after {
+        .sr-only();
+        content: "Show Hours";
+    }
+
+    .btn[data-action="showMinutes"]::after {
+        .sr-only();
+        content: "Show Minutes";
+    }
+
+    .btn[data-action="togglePeriod"]::after {
+        .sr-only();
+        content: "Toggle AM/PM";
+    }
+
+    .btn[data-action="clear"]::after {
+        .sr-only();
+        content: "Clear the picker";
+    }
+
+    .btn[data-action="today"]::after {
+        .sr-only();
+        content: "Set the date to today";
+    }
+
+    .picker-switch {
+        text-align: center;
+
+        &::after {
+            .sr-only();
+            content: "Toggle Date and Time Screens";
+        }
+
+        td {
+            padding: 0;
+            margin: 0;
+            height: auto;
+            width: auto;
+            line-height: inherit;
+
+            span {
+                line-height: 2.5;
+                height: 2.5em;
+                width: 100%;
+            }
+        }
+    }
+
+    table {
+        width: 100%;
+        margin: 0;
+
+
+        & td,
+        & th {
+            text-align: center;
+            border-radius: @bs-datetimepicker-border-radius;
+        }
+
+        & th {
+            height: 20px;
+            line-height: 20px;
+            width: 20px;
+
+            &.picker-switch {
+                width: 145px;
+            }
+
+            &.disabled,
+            &.disabled:hover {
+                background: none;
+                color: @bs-datetimepicker-disabled-color;
+                cursor: not-allowed;
+            }
+
+            &.prev::after {
+                .sr-only();
+                content: "Previous Month";
+            }
+
+            &.next::after {
+                .sr-only();
+                content: "Next Month";
+            }
+        }
+
+        & thead tr:first-child th {
+            cursor: pointer;
+
+            &:hover {
+                background: @bs-datetimepicker-btn-hover-bg;
+            }
+        }
+
+        & td {
+            height: 54px;
+            line-height: 54px;
+            width: 54px;
+
+            &.cw {
+                font-size: .8em;
+                height: 20px;
+                line-height: 20px;
+                color: @bs-datetimepicker-alternate-color;
+            }
+
+            &.day {
+                height: 20px;
+                line-height: 20px;
+                width: 20px;
+            }
+
+            &.day:hover,
+            &.hour:hover,
+            &.minute:hover,
+            &.second:hover {
+                background: @bs-datetimepicker-btn-hover-bg;
+                cursor: pointer;
+            }
+
+            &.old,
+            &.new {
+                color: @bs-datetimepicker-alternate-color;
+            }
+
+            &.today {
+                position: relative;
+
+                &:before {
+                    content: '';
+                    display: inline-block;
+                    border: solid transparent;
+                    border-width: 0 0 7px 7px;
+                    border-bottom-color: @bs-datetimepicker-active-bg;
+                    border-top-color: @bs-datetimepicker-secondary-border-color-rgba;
+                    position: absolute;
+                    bottom: 4px;
+                    right: 4px;
+                }
+            }
+
+            &.active,
+            &.active:hover {
+                background-color: @bs-datetimepicker-active-bg;
+                color: @bs-datetimepicker-active-color;
+                text-shadow: @bs-datetimepicker-text-shadow;
+            }
+
+            &.active.today:before {
+                border-bottom-color: #fff;
+            }
+
+            &.disabled,
+            &.disabled:hover {
+                background: none;
+                color: @bs-datetimepicker-disabled-color;
+                cursor: not-allowed;
+            }
+
+            span {
+                display: inline-block;
+                width: 54px;
+                height: 54px;
+                line-height: 54px;
+                margin: 2px 1.5px;
+                cursor: pointer;
+                border-radius: @bs-datetimepicker-border-radius;
+
+                &:hover {
+                    background: @bs-datetimepicker-btn-hover-bg;
+                }
+
+                &.active {
+                    background-color: @bs-datetimepicker-active-bg;
+                    color: @bs-datetimepicker-active-color;
+                    text-shadow: @bs-datetimepicker-text-shadow;
+                }
+
+                &.old {
+                    color: @bs-datetimepicker-alternate-color;
+                }
+
+                &.disabled,
+                &.disabled:hover {
+                    background: none;
+                    color: @bs-datetimepicker-disabled-color;
+                    cursor: not-allowed;
+                }
+            }
+        }
+    }
+
+    &.usetwentyfour {
+        td.hour {
+            height: 27px;
+            line-height: 27px;
+        }
+    }
+	
+	&.wider {
+		width: 21em;
+	}
+
+	& .datepicker-decades .decade {
+        line-height: 1.8em !important;
+    }
+}
+
+.input-group.date {
+    & .input-group-addon {
+        cursor: pointer;
+    }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker-build.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker-build.less
new file mode 100644
index 0000000..c78ff0b
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker-build.less
@@ -0,0 +1,17 @@
+// Import bootstrap variables including default color palette and fonts
+// @import "bootstrap/less/variables.less"; commented this line because it is already being imported
+
+// Import datepicker component
+@import "_bootstrap-datetimepicker.less";
+
+//this is here so the compiler doesn't complain about a missing bootstrap mixin
+.sr-only {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0,0,0,0);
+  border: 0;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/animated.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/animated.less
new file mode 100644
index 0000000..66ad52a
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/animated.less
@@ -0,0 +1,34 @@
+// Animated Icons
+// --------------------------
+
+.@{fa-css-prefix}-spin {
+  -webkit-animation: fa-spin 2s infinite linear;
+          animation: fa-spin 2s infinite linear;
+}
+
+.@{fa-css-prefix}-pulse {
+  -webkit-animation: fa-spin 1s infinite steps(8);
+          animation: fa-spin 1s infinite steps(8);
+}
+
+@-webkit-keyframes fa-spin {
+  0% {
+    -webkit-transform: rotate(0deg);
+            transform: rotate(0deg);
+  }
+  100% {
+    -webkit-transform: rotate(359deg);
+            transform: rotate(359deg);
+  }
+}
+
+@keyframes fa-spin {
+  0% {
+    -webkit-transform: rotate(0deg);
+            transform: rotate(0deg);
+  }
+  100% {
+    -webkit-transform: rotate(359deg);
+            transform: rotate(359deg);
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/bordered-pulled.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/bordered-pulled.less
new file mode 100644
index 0000000..f1c8ad7
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/bordered-pulled.less
@@ -0,0 +1,25 @@
+// Bordered & Pulled
+// -------------------------
+
+.@{fa-css-prefix}-border {
+  padding: .2em .25em .15em;
+  border: solid .08em @fa-border-color;
+  border-radius: .1em;
+}
+
+.@{fa-css-prefix}-pull-left { float: left; }
+.@{fa-css-prefix}-pull-right { float: right; }
+
+.@{fa-css-prefix} {
+  &.@{fa-css-prefix}-pull-left { margin-right: .3em; }
+  &.@{fa-css-prefix}-pull-right { margin-left: .3em; }
+}
+
+/* Deprecated as of 4.4.0 */
+.pull-right { float: right; }
+.pull-left { float: left; }
+
+.@{fa-css-prefix} {
+  &.pull-left { margin-right: .3em; }
+  &.pull-right { margin-left: .3em; }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/core.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/core.less
new file mode 100644
index 0000000..c577ac8
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/core.less
@@ -0,0 +1,12 @@
+// Base Class Definition
+// -------------------------
+
+.@{fa-css-prefix} {
+  display: inline-block;
+  font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
+  font-size: inherit; // can't have font-size inherit on line above, so need to override
+  text-rendering: auto; // optimizelegibility throws things off #1094
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/fixed-width.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/fixed-width.less
new file mode 100644
index 0000000..110289f
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/fixed-width.less
@@ -0,0 +1,6 @@
+// Fixed Width Icons
+// -------------------------
+.@{fa-css-prefix}-fw {
+  width: (18em / 14);
+  text-align: center;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/font-awesome.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/font-awesome.less
new file mode 100644
index 0000000..c44e5f4
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/font-awesome.less
@@ -0,0 +1,18 @@
+/*!
+ *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
+ *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */
+
+@import "variables.less";
+@import "mixins.less";
+@import "path.less";
+@import "core.less";
+@import "larger.less";
+@import "fixed-width.less";
+@import "list.less";
+@import "bordered-pulled.less";
+@import "animated.less";
+@import "rotated-flipped.less";
+@import "stacked.less";
+@import "icons.less";
+@import "screen-reader.less";
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/icons.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/icons.less
new file mode 100644
index 0000000..ba21b22
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/icons.less
@@ -0,0 +1,733 @@
+/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
+   readers do not read off random characters that represent icons */
+
+.@{fa-css-prefix}-glass:before { content: @fa-var-glass; }
+.@{fa-css-prefix}-music:before { content: @fa-var-music; }
+.@{fa-css-prefix}-search:before { content: @fa-var-search; }
+.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; }
+.@{fa-css-prefix}-heart:before { content: @fa-var-heart; }
+.@{fa-css-prefix}-star:before { content: @fa-var-star; }
+.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; }
+.@{fa-css-prefix}-user:before { content: @fa-var-user; }
+.@{fa-css-prefix}-film:before { content: @fa-var-film; }
+.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; }
+.@{fa-css-prefix}-th:before { content: @fa-var-th; }
+.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; }
+.@{fa-css-prefix}-check:before { content: @fa-var-check; }
+.@{fa-css-prefix}-remove:before,
+.@{fa-css-prefix}-close:before,
+.@{fa-css-prefix}-times:before { content: @fa-var-times; }
+.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; }
+.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; }
+.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; }
+.@{fa-css-prefix}-signal:before { content: @fa-var-signal; }
+.@{fa-css-prefix}-gear:before,
+.@{fa-css-prefix}-cog:before { content: @fa-var-cog; }
+.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; }
+.@{fa-css-prefix}-home:before { content: @fa-var-home; }
+.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; }
+.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; }
+.@{fa-css-prefix}-road:before { content: @fa-var-road; }
+.@{fa-css-prefix}-download:before { content: @fa-var-download; }
+.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; }
+.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; }
+.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; }
+.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; }
+.@{fa-css-prefix}-rotate-right:before,
+.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; }
+.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; }
+.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; }
+.@{fa-css-prefix}-lock:before { content: @fa-var-lock; }
+.@{fa-css-prefix}-flag:before { content: @fa-var-flag; }
+.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; }
+.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; }
+.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; }
+.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; }
+.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; }
+.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; }
+.@{fa-css-prefix}-tag:before { content: @fa-var-tag; }
+.@{fa-css-prefix}-tags:before { content: @fa-var-tags; }
+.@{fa-css-prefix}-book:before { content: @fa-var-book; }
+.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; }
+.@{fa-css-prefix}-print:before { content: @fa-var-print; }
+.@{fa-css-prefix}-camera:before { content: @fa-var-camera; }
+.@{fa-css-prefix}-font:before { content: @fa-var-font; }
+.@{fa-css-prefix}-bold:before { content: @fa-var-bold; }
+.@{fa-css-prefix}-italic:before { content: @fa-var-italic; }
+.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; }
+.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; }
+.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; }
+.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; }
+.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; }
+.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; }
+.@{fa-css-prefix}-list:before { content: @fa-var-list; }
+.@{fa-css-prefix}-dedent:before,
+.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; }
+.@{fa-css-prefix}-indent:before { content: @fa-var-indent; }
+.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; }
+.@{fa-css-prefix}-photo:before,
+.@{fa-css-prefix}-image:before,
+.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; }
+.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; }
+.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; }
+.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; }
+.@{fa-css-prefix}-tint:before { content: @fa-var-tint; }
+.@{fa-css-prefix}-edit:before,
+.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; }
+.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; }
+.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; }
+.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; }
+.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; }
+.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; }
+.@{fa-css-prefix}-backward:before { content: @fa-var-backward; }
+.@{fa-css-prefix}-play:before { content: @fa-var-play; }
+.@{fa-css-prefix}-pause:before { content: @fa-var-pause; }
+.@{fa-css-prefix}-stop:before { content: @fa-var-stop; }
+.@{fa-css-prefix}-forward:before { content: @fa-var-forward; }
+.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; }
+.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; }
+.@{fa-css-prefix}-eject:before { content: @fa-var-eject; }
+.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; }
+.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; }
+.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; }
+.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; }
+.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; }
+.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; }
+.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; }
+.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; }
+.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; }
+.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; }
+.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; }
+.@{fa-css-prefix}-ban:before { content: @fa-var-ban; }
+.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; }
+.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; }
+.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; }
+.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; }
+.@{fa-css-prefix}-mail-forward:before,
+.@{fa-css-prefix}-share:before { content: @fa-var-share; }
+.@{fa-css-prefix}-expand:before { content: @fa-var-expand; }
+.@{fa-css-prefix}-compress:before { content: @fa-var-compress; }
+.@{fa-css-prefix}-plus:before { content: @fa-var-plus; }
+.@{fa-css-prefix}-minus:before { content: @fa-var-minus; }
+.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; }
+.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; }
+.@{fa-css-prefix}-gift:before { content: @fa-var-gift; }
+.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; }
+.@{fa-css-prefix}-fire:before { content: @fa-var-fire; }
+.@{fa-css-prefix}-eye:before { content: @fa-var-eye; }
+.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; }
+.@{fa-css-prefix}-warning:before,
+.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; }
+.@{fa-css-prefix}-plane:before { content: @fa-var-plane; }
+.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; }
+.@{fa-css-prefix}-random:before { content: @fa-var-random; }
+.@{fa-css-prefix}-comment:before { content: @fa-var-comment; }
+.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; }
+.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; }
+.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; }
+.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; }
+.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; }
+.@{fa-css-prefix}-folder:before { content: @fa-var-folder; }
+.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; }
+.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; }
+.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; }
+.@{fa-css-prefix}-bar-chart-o:before,
+.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; }
+.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; }
+.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; }
+.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; }
+.@{fa-css-prefix}-key:before { content: @fa-var-key; }
+.@{fa-css-prefix}-gears:before,
+.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; }
+.@{fa-css-prefix}-comments:before { content: @fa-var-comments; }
+.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; }
+.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; }
+.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; }
+.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; }
+.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; }
+.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; }
+.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; }
+.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; }
+.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; }
+.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; }
+.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; }
+.@{fa-css-prefix}-upload:before { content: @fa-var-upload; }
+.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; }
+.@{fa-css-prefix}-phone:before { content: @fa-var-phone; }
+.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; }
+.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; }
+.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; }
+.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; }
+.@{fa-css-prefix}-facebook-f:before,
+.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; }
+.@{fa-css-prefix}-github:before { content: @fa-var-github; }
+.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; }
+.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; }
+.@{fa-css-prefix}-feed:before,
+.@{fa-css-prefix}-rss:before { content: @fa-var-rss; }
+.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; }
+.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; }
+.@{fa-css-prefix}-bell:before { content: @fa-var-bell; }
+.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; }
+.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; }
+.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; }
+.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; }
+.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; }
+.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; }
+.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; }
+.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; }
+.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; }
+.@{fa-css-prefix}-globe:before { content: @fa-var-globe; }
+.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; }
+.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; }
+.@{fa-css-prefix}-filter:before { content: @fa-var-filter; }
+.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; }
+.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; }
+.@{fa-css-prefix}-group:before,
+.@{fa-css-prefix}-users:before { content: @fa-var-users; }
+.@{fa-css-prefix}-chain:before,
+.@{fa-css-prefix}-link:before { content: @fa-var-link; }
+.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; }
+.@{fa-css-prefix}-flask:before { content: @fa-var-flask; }
+.@{fa-css-prefix}-cut:before,
+.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; }
+.@{fa-css-prefix}-copy:before,
+.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; }
+.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; }
+.@{fa-css-prefix}-save:before,
+.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; }
+.@{fa-css-prefix}-square:before { content: @fa-var-square; }
+.@{fa-css-prefix}-navicon:before,
+.@{fa-css-prefix}-reorder:before,
+.@{fa-css-prefix}-bars:before { content: @fa-var-bars; }
+.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; }
+.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; }
+.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; }
+.@{fa-css-prefix}-underline:before { content: @fa-var-underline; }
+.@{fa-css-prefix}-table:before { content: @fa-var-table; }
+.@{fa-css-prefix}-magic:before { content: @fa-var-magic; }
+.@{fa-css-prefix}-truck:before { content: @fa-var-truck; }
+.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; }
+.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; }
+.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; }
+.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; }
+.@{fa-css-prefix}-money:before { content: @fa-var-money; }
+.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; }
+.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; }
+.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; }
+.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; }
+.@{fa-css-prefix}-columns:before { content: @fa-var-columns; }
+.@{fa-css-prefix}-unsorted:before,
+.@{fa-css-prefix}-sort:before { content: @fa-var-sort; }
+.@{fa-css-prefix}-sort-down:before,
+.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; }
+.@{fa-css-prefix}-sort-up:before,
+.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; }
+.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; }
+.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; }
+.@{fa-css-prefix}-rotate-left:before,
+.@{fa-css-prefix}-undo:before { content: @fa-var-undo; }
+.@{fa-css-prefix}-legal:before,
+.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; }
+.@{fa-css-prefix}-dashboard:before,
+.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; }
+.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; }
+.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; }
+.@{fa-css-prefix}-flash:before,
+.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; }
+.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; }
+.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; }
+.@{fa-css-prefix}-paste:before,
+.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; }
+.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; }
+.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; }
+.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; }
+.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; }
+.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; }
+.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; }
+.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; }
+.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; }
+.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; }
+.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; }
+.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; }
+.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; }
+.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; }
+.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; }
+.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; }
+.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; }
+.@{fa-css-prefix}-beer:before { content: @fa-var-beer; }
+.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; }
+.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; }
+.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; }
+.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; }
+.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; }
+.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; }
+.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; }
+.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; }
+.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; }
+.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; }
+.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; }
+.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; }
+.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; }
+.@{fa-css-prefix}-mobile-phone:before,
+.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; }
+.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; }
+.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; }
+.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; }
+.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; }
+.@{fa-css-prefix}-circle:before { content: @fa-var-circle; }
+.@{fa-css-prefix}-mail-reply:before,
+.@{fa-css-prefix}-reply:before { content: @fa-var-reply; }
+.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; }
+.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; }
+.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; }
+.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; }
+.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; }
+.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; }
+.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; }
+.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; }
+.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; }
+.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; }
+.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; }
+.@{fa-css-prefix}-code:before { content: @fa-var-code; }
+.@{fa-css-prefix}-mail-reply-all:before,
+.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; }
+.@{fa-css-prefix}-star-half-empty:before,
+.@{fa-css-prefix}-star-half-full:before,
+.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; }
+.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; }
+.@{fa-css-prefix}-crop:before { content: @fa-var-crop; }
+.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; }
+.@{fa-css-prefix}-unlink:before,
+.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; }
+.@{fa-css-prefix}-question:before { content: @fa-var-question; }
+.@{fa-css-prefix}-info:before { content: @fa-var-info; }
+.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; }
+.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; }
+.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; }
+.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; }
+.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; }
+.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; }
+.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; }
+.@{fa-css-prefix}-shield:before { content: @fa-var-shield; }
+.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; }
+.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; }
+.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; }
+.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; }
+.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; }
+.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; }
+.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; }
+.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; }
+.@{fa-css-prefix}-html5:before { content: @fa-var-html5; }
+.@{fa-css-prefix}-css3:before { content: @fa-var-css3; }
+.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; }
+.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; }
+.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; }
+.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; }
+.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; }
+.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; }
+.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; }
+.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; }
+.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; }
+.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; }
+.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; }
+.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; }
+.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; }
+.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; }
+.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; }
+.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; }
+.@{fa-css-prefix}-compass:before { content: @fa-var-compass; }
+.@{fa-css-prefix}-toggle-down:before,
+.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; }
+.@{fa-css-prefix}-toggle-up:before,
+.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; }
+.@{fa-css-prefix}-toggle-right:before,
+.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; }
+.@{fa-css-prefix}-euro:before,
+.@{fa-css-prefix}-eur:before { content: @fa-var-eur; }
+.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; }
+.@{fa-css-prefix}-dollar:before,
+.@{fa-css-prefix}-usd:before { content: @fa-var-usd; }
+.@{fa-css-prefix}-rupee:before,
+.@{fa-css-prefix}-inr:before { content: @fa-var-inr; }
+.@{fa-css-prefix}-cny:before,
+.@{fa-css-prefix}-rmb:before,
+.@{fa-css-prefix}-yen:before,
+.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; }
+.@{fa-css-prefix}-ruble:before,
+.@{fa-css-prefix}-rouble:before,
+.@{fa-css-prefix}-rub:before { content: @fa-var-rub; }
+.@{fa-css-prefix}-won:before,
+.@{fa-css-prefix}-krw:before { content: @fa-var-krw; }
+.@{fa-css-prefix}-bitcoin:before,
+.@{fa-css-prefix}-btc:before { content: @fa-var-btc; }
+.@{fa-css-prefix}-file:before { content: @fa-var-file; }
+.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; }
+.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; }
+.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; }
+.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; }
+.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; }
+.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; }
+.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; }
+.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; }
+.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; }
+.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; }
+.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; }
+.@{fa-css-prefix}-xing:before { content: @fa-var-xing; }
+.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; }
+.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; }
+.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; }
+.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; }
+.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; }
+.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; }
+.@{fa-css-prefix}-adn:before { content: @fa-var-adn; }
+.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; }
+.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; }
+.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; }
+.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; }
+.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; }
+.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; }
+.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; }
+.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; }
+.@{fa-css-prefix}-apple:before { content: @fa-var-apple; }
+.@{fa-css-prefix}-windows:before { content: @fa-var-windows; }
+.@{fa-css-prefix}-android:before { content: @fa-var-android; }
+.@{fa-css-prefix}-linux:before { content: @fa-var-linux; }
+.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; }
+.@{fa-css-prefix}-skype:before { content: @fa-var-skype; }
+.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; }
+.@{fa-css-prefix}-trello:before { content: @fa-var-trello; }
+.@{fa-css-prefix}-female:before { content: @fa-var-female; }
+.@{fa-css-prefix}-male:before { content: @fa-var-male; }
+.@{fa-css-prefix}-gittip:before,
+.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; }
+.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; }
+.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; }
+.@{fa-css-prefix}-archive:before { content: @fa-var-archive; }
+.@{fa-css-prefix}-bug:before { content: @fa-var-bug; }
+.@{fa-css-prefix}-vk:before { content: @fa-var-vk; }
+.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; }
+.@{fa-css-prefix}-renren:before { content: @fa-var-renren; }
+.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; }
+.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; }
+.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; }
+.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; }
+.@{fa-css-prefix}-toggle-left:before,
+.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; }
+.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; }
+.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; }
+.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; }
+.@{fa-css-prefix}-turkish-lira:before,
+.@{fa-css-prefix}-try:before { content: @fa-var-try; }
+.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; }
+.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; }
+.@{fa-css-prefix}-slack:before { content: @fa-var-slack; }
+.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; }
+.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; }
+.@{fa-css-prefix}-openid:before { content: @fa-var-openid; }
+.@{fa-css-prefix}-institution:before,
+.@{fa-css-prefix}-bank:before,
+.@{fa-css-prefix}-university:before { content: @fa-var-university; }
+.@{fa-css-prefix}-mortar-board:before,
+.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; }
+.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; }
+.@{fa-css-prefix}-google:before { content: @fa-var-google; }
+.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; }
+.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; }
+.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; }
+.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; }
+.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; }
+.@{fa-css-prefix}-digg:before { content: @fa-var-digg; }
+.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; }
+.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; }
+.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; }
+.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; }
+.@{fa-css-prefix}-language:before { content: @fa-var-language; }
+.@{fa-css-prefix}-fax:before { content: @fa-var-fax; }
+.@{fa-css-prefix}-building:before { content: @fa-var-building; }
+.@{fa-css-prefix}-child:before { content: @fa-var-child; }
+.@{fa-css-prefix}-paw:before { content: @fa-var-paw; }
+.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; }
+.@{fa-css-prefix}-cube:before { content: @fa-var-cube; }
+.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; }
+.@{fa-css-prefix}-behance:before { content: @fa-var-behance; }
+.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; }
+.@{fa-css-prefix}-steam:before { content: @fa-var-steam; }
+.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; }
+.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; }
+.@{fa-css-prefix}-automobile:before,
+.@{fa-css-prefix}-car:before { content: @fa-var-car; }
+.@{fa-css-prefix}-cab:before,
+.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; }
+.@{fa-css-prefix}-tree:before { content: @fa-var-tree; }
+.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; }
+.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; }
+.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; }
+.@{fa-css-prefix}-database:before { content: @fa-var-database; }
+.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; }
+.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; }
+.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; }
+.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; }
+.@{fa-css-prefix}-file-photo-o:before,
+.@{fa-css-prefix}-file-picture-o:before,
+.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; }
+.@{fa-css-prefix}-file-zip-o:before,
+.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; }
+.@{fa-css-prefix}-file-sound-o:before,
+.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; }
+.@{fa-css-prefix}-file-movie-o:before,
+.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; }
+.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; }
+.@{fa-css-prefix}-vine:before { content: @fa-var-vine; }
+.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; }
+.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; }
+.@{fa-css-prefix}-life-bouy:before,
+.@{fa-css-prefix}-life-buoy:before,
+.@{fa-css-prefix}-life-saver:before,
+.@{fa-css-prefix}-support:before,
+.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; }
+.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; }
+.@{fa-css-prefix}-ra:before,
+.@{fa-css-prefix}-resistance:before,
+.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; }
+.@{fa-css-prefix}-ge:before,
+.@{fa-css-prefix}-empire:before { content: @fa-var-empire; }
+.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; }
+.@{fa-css-prefix}-git:before { content: @fa-var-git; }
+.@{fa-css-prefix}-y-combinator-square:before,
+.@{fa-css-prefix}-yc-square:before,
+.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; }
+.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; }
+.@{fa-css-prefix}-qq:before { content: @fa-var-qq; }
+.@{fa-css-prefix}-wechat:before,
+.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; }
+.@{fa-css-prefix}-send:before,
+.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; }
+.@{fa-css-prefix}-send-o:before,
+.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; }
+.@{fa-css-prefix}-history:before { content: @fa-var-history; }
+.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; }
+.@{fa-css-prefix}-header:before { content: @fa-var-header; }
+.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; }
+.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; }
+.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; }
+.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; }
+.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; }
+.@{fa-css-prefix}-soccer-ball-o:before,
+.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; }
+.@{fa-css-prefix}-tty:before { content: @fa-var-tty; }
+.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; }
+.@{fa-css-prefix}-plug:before { content: @fa-var-plug; }
+.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; }
+.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; }
+.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; }
+.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; }
+.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; }
+.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; }
+.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; }
+.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; }
+.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; }
+.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; }
+.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; }
+.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; }
+.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; }
+.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; }
+.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; }
+.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; }
+.@{fa-css-prefix}-trash:before { content: @fa-var-trash; }
+.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; }
+.@{fa-css-prefix}-at:before { content: @fa-var-at; }
+.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; }
+.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; }
+.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; }
+.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; }
+.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; }
+.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; }
+.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; }
+.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; }
+.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; }
+.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; }
+.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; }
+.@{fa-css-prefix}-bus:before { content: @fa-var-bus; }
+.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; }
+.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; }
+.@{fa-css-prefix}-cc:before { content: @fa-var-cc; }
+.@{fa-css-prefix}-shekel:before,
+.@{fa-css-prefix}-sheqel:before,
+.@{fa-css-prefix}-ils:before { content: @fa-var-ils; }
+.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; }
+.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; }
+.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; }
+.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; }
+.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; }
+.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; }
+.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; }
+.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; }
+.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; }
+.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; }
+.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; }
+.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; }
+.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; }
+.@{fa-css-prefix}-ship:before { content: @fa-var-ship; }
+.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; }
+.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; }
+.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; }
+.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; }
+.@{fa-css-prefix}-venus:before { content: @fa-var-venus; }
+.@{fa-css-prefix}-mars:before { content: @fa-var-mars; }
+.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; }
+.@{fa-css-prefix}-intersex:before,
+.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; }
+.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; }
+.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; }
+.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; }
+.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; }
+.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; }
+.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; }
+.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; }
+.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; }
+.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; }
+.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; }
+.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; }
+.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; }
+.@{fa-css-prefix}-server:before { content: @fa-var-server; }
+.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; }
+.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; }
+.@{fa-css-prefix}-hotel:before,
+.@{fa-css-prefix}-bed:before { content: @fa-var-bed; }
+.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; }
+.@{fa-css-prefix}-train:before { content: @fa-var-train; }
+.@{fa-css-prefix}-subway:before { content: @fa-var-subway; }
+.@{fa-css-prefix}-medium:before { content: @fa-var-medium; }
+.@{fa-css-prefix}-yc:before,
+.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; }
+.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; }
+.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; }
+.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; }
+.@{fa-css-prefix}-battery-4:before,
+.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; }
+.@{fa-css-prefix}-battery-3:before,
+.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; }
+.@{fa-css-prefix}-battery-2:before,
+.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; }
+.@{fa-css-prefix}-battery-1:before,
+.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; }
+.@{fa-css-prefix}-battery-0:before,
+.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; }
+.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; }
+.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; }
+.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; }
+.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; }
+.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; }
+.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; }
+.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; }
+.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; }
+.@{fa-css-prefix}-clone:before { content: @fa-var-clone; }
+.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; }
+.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; }
+.@{fa-css-prefix}-hourglass-1:before,
+.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; }
+.@{fa-css-prefix}-hourglass-2:before,
+.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; }
+.@{fa-css-prefix}-hourglass-3:before,
+.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; }
+.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; }
+.@{fa-css-prefix}-hand-grab-o:before,
+.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; }
+.@{fa-css-prefix}-hand-stop-o:before,
+.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; }
+.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; }
+.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; }
+.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; }
+.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; }
+.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; }
+.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; }
+.@{fa-css-prefix}-registered:before { content: @fa-var-registered; }
+.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; }
+.@{fa-css-prefix}-gg:before { content: @fa-var-gg; }
+.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; }
+.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; }
+.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; }
+.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; }
+.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; }
+.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; }
+.@{fa-css-prefix}-safari:before { content: @fa-var-safari; }
+.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; }
+.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; }
+.@{fa-css-prefix}-opera:before { content: @fa-var-opera; }
+.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; }
+.@{fa-css-prefix}-tv:before,
+.@{fa-css-prefix}-television:before { content: @fa-var-television; }
+.@{fa-css-prefix}-contao:before { content: @fa-var-contao; }
+.@{fa-css-prefix}-500px:before { content: @fa-var-500px; }
+.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; }
+.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; }
+.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; }
+.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; }
+.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; }
+.@{fa-css-prefix}-industry:before { content: @fa-var-industry; }
+.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; }
+.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; }
+.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; }
+.@{fa-css-prefix}-map:before { content: @fa-var-map; }
+.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; }
+.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; }
+.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; }
+.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; }
+.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; }
+.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; }
+.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; }
+.@{fa-css-prefix}-edge:before { content: @fa-var-edge; }
+.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; }
+.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; }
+.@{fa-css-prefix}-modx:before { content: @fa-var-modx; }
+.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; }
+.@{fa-css-prefix}-usb:before { content: @fa-var-usb; }
+.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; }
+.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; }
+.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; }
+.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; }
+.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; }
+.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; }
+.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; }
+.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; }
+.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; }
+.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; }
+.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; }
+.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; }
+.@{fa-css-prefix}-percent:before { content: @fa-var-percent; }
+.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; }
+.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; }
+.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; }
+.@{fa-css-prefix}-envira:before { content: @fa-var-envira; }
+.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; }
+.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; }
+.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; }
+.@{fa-css-prefix}-blind:before { content: @fa-var-blind; }
+.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; }
+.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; }
+.@{fa-css-prefix}-braille:before { content: @fa-var-braille; }
+.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; }
+.@{fa-css-prefix}-asl-interpreting:before,
+.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; }
+.@{fa-css-prefix}-deafness:before,
+.@{fa-css-prefix}-hard-of-hearing:before,
+.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; }
+.@{fa-css-prefix}-glide:before { content: @fa-var-glide; }
+.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; }
+.@{fa-css-prefix}-signing:before,
+.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; }
+.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; }
+.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; }
+.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; }
+.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; }
+.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; }
+.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; }
+.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; }
+.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; }
+.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; }
+.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; }
+.@{fa-css-prefix}-google-plus-circle:before,
+.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; }
+.@{fa-css-prefix}-fa:before,
+.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; }
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/larger.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/larger.less
new file mode 100644
index 0000000..c9d6467
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/larger.less
@@ -0,0 +1,13 @@
+// Icon Sizes
+// -------------------------
+
+/* makes the font 33% larger relative to the icon container */
+.@{fa-css-prefix}-lg {
+  font-size: (4em / 3);
+  line-height: (3em / 4);
+  vertical-align: -15%;
+}
+.@{fa-css-prefix}-2x { font-size: 2em; }
+.@{fa-css-prefix}-3x { font-size: 3em; }
+.@{fa-css-prefix}-4x { font-size: 4em; }
+.@{fa-css-prefix}-5x { font-size: 5em; }
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/list.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/list.less
new file mode 100644
index 0000000..0b44038
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/list.less
@@ -0,0 +1,19 @@
+// List Icons
+// -------------------------
+
+.@{fa-css-prefix}-ul {
+  padding-left: 0;
+  margin-left: @fa-li-width;
+  list-style-type: none;
+  > li { position: relative; }
+}
+.@{fa-css-prefix}-li {
+  position: absolute;
+  left: -@fa-li-width;
+  width: @fa-li-width;
+  top: (2em / 14);
+  text-align: center;
+  &.@{fa-css-prefix}-lg {
+    left: (-@fa-li-width + (4em / 14));
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/mixins.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/mixins.less
new file mode 100644
index 0000000..beef231
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/mixins.less
@@ -0,0 +1,60 @@
+// Mixins
+// --------------------------
+
+.fa-icon() {
+  display: inline-block;
+  font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
+  font-size: inherit; // can't have font-size inherit on line above, so need to override
+  text-rendering: auto; // optimizelegibility throws things off #1094
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+
+}
+
+.fa-icon-rotate(@degrees, @rotation) {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})";
+  -webkit-transform: rotate(@degrees);
+      -ms-transform: rotate(@degrees);
+          transform: rotate(@degrees);
+}
+
+.fa-icon-flip(@horiz, @vert, @rotation) {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)";
+  -webkit-transform: scale(@horiz, @vert);
+      -ms-transform: scale(@horiz, @vert);
+          transform: scale(@horiz, @vert);
+}
+
+
+// Only display content to screen readers. A la Bootstrap 4.
+//
+// See: http://a11yproject.com/posts/how-to-hide-content/
+
+.sr-only() {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  padding: 0;
+  margin: -1px;
+  overflow: hidden;
+  clip: rect(0,0,0,0);
+  border: 0;
+}
+
+// Use in conjunction with .sr-only to only display content when it's focused.
+//
+// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
+//
+// Credit: HTML5 Boilerplate
+
+.sr-only-focusable() {
+  &:active,
+  &:focus {
+    position: static;
+    width: auto;
+    height: auto;
+    margin: 0;
+    overflow: visible;
+    clip: auto;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/path.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/path.less
new file mode 100644
index 0000000..835be41
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/path.less
@@ -0,0 +1,15 @@
+/* FONT PATH
+ * -------------------------- */
+
+@font-face {
+  font-family: 'FontAwesome';
+  src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');
+  src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),
+    url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),
+    url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),
+    url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),
+    url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');
+  // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
+  font-weight: normal;
+  font-style: normal;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/rotated-flipped.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/rotated-flipped.less
new file mode 100644
index 0000000..f6ba814
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/rotated-flipped.less
@@ -0,0 +1,20 @@
+// Rotated & Flipped Icons
+// -------------------------
+
+.@{fa-css-prefix}-rotate-90  { .fa-icon-rotate(90deg, 1);  }
+.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }
+.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }
+
+.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }
+.@{fa-css-prefix}-flip-vertical   { .fa-icon-flip(1, -1, 2); }
+
+// Hook for IE8-9
+// -------------------------
+
+:root .@{fa-css-prefix}-rotate-90,
+:root .@{fa-css-prefix}-rotate-180,
+:root .@{fa-css-prefix}-rotate-270,
+:root .@{fa-css-prefix}-flip-horizontal,
+:root .@{fa-css-prefix}-flip-vertical {
+  filter: none;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/screen-reader.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/screen-reader.less
new file mode 100644
index 0000000..11c1881
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/screen-reader.less
@@ -0,0 +1,5 @@
+// Screen Readers
+// -------------------------
+
+.sr-only { .sr-only(); }
+.sr-only-focusable { .sr-only-focusable(); }
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/stacked.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/stacked.less
new file mode 100644
index 0000000..fc53fb0
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/stacked.less
@@ -0,0 +1,20 @@
+// Stacked Icons
+// -------------------------
+
+.@{fa-css-prefix}-stack {
+  position: relative;
+  display: inline-block;
+  width: 2em;
+  height: 2em;
+  line-height: 2em;
+  vertical-align: middle;
+}
+.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
+  position: absolute;
+  left: 0;
+  width: 100%;
+  text-align: center;
+}
+.@{fa-css-prefix}-stack-1x { line-height: inherit; }
+.@{fa-css-prefix}-stack-2x { font-size: 2em; }
+.@{fa-css-prefix}-inverse { color: @fa-inverse; }
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/variables.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/variables.less
new file mode 100644
index 0000000..2b33819
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/lib/font-awesome/variables.less
@@ -0,0 +1,744 @@
+// Variables
+// --------------------------
+
+@fa-font-path:        "../fonts";
+@fa-font-size-base:   14px;
+@fa-line-height-base: 1;
+//@fa-font-path:        "//netdna.bootstrapcdn.com/font-awesome/4.6.3/fonts"; // for referencing Bootstrap CDN font files directly
+@fa-css-prefix:       fa;
+@fa-version:          "4.6.3";
+@fa-border-color:     #eee;
+@fa-inverse:          #fff;
+@fa-li-width:         (30em / 14);
+
+@fa-var-500px: "\f26e";
+@fa-var-adjust: "\f042";
+@fa-var-adn: "\f170";
+@fa-var-align-center: "\f037";
+@fa-var-align-justify: "\f039";
+@fa-var-align-left: "\f036";
+@fa-var-align-right: "\f038";
+@fa-var-amazon: "\f270";
+@fa-var-ambulance: "\f0f9";
+@fa-var-american-sign-language-interpreting: "\f2a3";
+@fa-var-anchor: "\f13d";
+@fa-var-android: "\f17b";
+@fa-var-angellist: "\f209";
+@fa-var-angle-double-down: "\f103";
+@fa-var-angle-double-left: "\f100";
+@fa-var-angle-double-right: "\f101";
+@fa-var-angle-double-up: "\f102";
+@fa-var-angle-down: "\f107";
+@fa-var-angle-left: "\f104";
+@fa-var-angle-right: "\f105";
+@fa-var-angle-up: "\f106";
+@fa-var-apple: "\f179";
+@fa-var-archive: "\f187";
+@fa-var-area-chart: "\f1fe";
+@fa-var-arrow-circle-down: "\f0ab";
+@fa-var-arrow-circle-left: "\f0a8";
+@fa-var-arrow-circle-o-down: "\f01a";
+@fa-var-arrow-circle-o-left: "\f190";
+@fa-var-arrow-circle-o-right: "\f18e";
+@fa-var-arrow-circle-o-up: "\f01b";
+@fa-var-arrow-circle-right: "\f0a9";
+@fa-var-arrow-circle-up: "\f0aa";
+@fa-var-arrow-down: "\f063";
+@fa-var-arrow-left: "\f060";
+@fa-var-arrow-right: "\f061";
+@fa-var-arrow-up: "\f062";
+@fa-var-arrows: "\f047";
+@fa-var-arrows-alt: "\f0b2";
+@fa-var-arrows-h: "\f07e";
+@fa-var-arrows-v: "\f07d";
+@fa-var-asl-interpreting: "\f2a3";
+@fa-var-assistive-listening-systems: "\f2a2";
+@fa-var-asterisk: "\f069";
+@fa-var-at: "\f1fa";
+@fa-var-audio-description: "\f29e";
+@fa-var-automobile: "\f1b9";
+@fa-var-backward: "\f04a";
+@fa-var-balance-scale: "\f24e";
+@fa-var-ban: "\f05e";
+@fa-var-bank: "\f19c";
+@fa-var-bar-chart: "\f080";
+@fa-var-bar-chart-o: "\f080";
+@fa-var-barcode: "\f02a";
+@fa-var-bars: "\f0c9";
+@fa-var-battery-0: "\f244";
+@fa-var-battery-1: "\f243";
+@fa-var-battery-2: "\f242";
+@fa-var-battery-3: "\f241";
+@fa-var-battery-4: "\f240";
+@fa-var-battery-empty: "\f244";
+@fa-var-battery-full: "\f240";
+@fa-var-battery-half: "\f242";
+@fa-var-battery-quarter: "\f243";
+@fa-var-battery-three-quarters: "\f241";
+@fa-var-bed: "\f236";
+@fa-var-beer: "\f0fc";
+@fa-var-behance: "\f1b4";
+@fa-var-behance-square: "\f1b5";
+@fa-var-bell: "\f0f3";
+@fa-var-bell-o: "\f0a2";
+@fa-var-bell-slash: "\f1f6";
+@fa-var-bell-slash-o: "\f1f7";
+@fa-var-bicycle: "\f206";
+@fa-var-binoculars: "\f1e5";
+@fa-var-birthday-cake: "\f1fd";
+@fa-var-bitbucket: "\f171";
+@fa-var-bitbucket-square: "\f172";
+@fa-var-bitcoin: "\f15a";
+@fa-var-black-tie: "\f27e";
+@fa-var-blind: "\f29d";
+@fa-var-bluetooth: "\f293";
+@fa-var-bluetooth-b: "\f294";
+@fa-var-bold: "\f032";
+@fa-var-bolt: "\f0e7";
+@fa-var-bomb: "\f1e2";
+@fa-var-book: "\f02d";
+@fa-var-bookmark: "\f02e";
+@fa-var-bookmark-o: "\f097";
+@fa-var-braille: "\f2a1";
+@fa-var-briefcase: "\f0b1";
+@fa-var-btc: "\f15a";
+@fa-var-bug: "\f188";
+@fa-var-building: "\f1ad";
+@fa-var-building-o: "\f0f7";
+@fa-var-bullhorn: "\f0a1";
+@fa-var-bullseye: "\f140";
+@fa-var-bus: "\f207";
+@fa-var-buysellads: "\f20d";
+@fa-var-cab: "\f1ba";
+@fa-var-calculator: "\f1ec";
+@fa-var-calendar: "\f073";
+@fa-var-calendar-check-o: "\f274";
+@fa-var-calendar-minus-o: "\f272";
+@fa-var-calendar-o: "\f133";
+@fa-var-calendar-plus-o: "\f271";
+@fa-var-calendar-times-o: "\f273";
+@fa-var-camera: "\f030";
+@fa-var-camera-retro: "\f083";
+@fa-var-car: "\f1b9";
+@fa-var-caret-down: "\f0d7";
+@fa-var-caret-left: "\f0d9";
+@fa-var-caret-right: "\f0da";
+@fa-var-caret-square-o-down: "\f150";
+@fa-var-caret-square-o-left: "\f191";
+@fa-var-caret-square-o-right: "\f152";
+@fa-var-caret-square-o-up: "\f151";
+@fa-var-caret-up: "\f0d8";
+@fa-var-cart-arrow-down: "\f218";
+@fa-var-cart-plus: "\f217";
+@fa-var-cc: "\f20a";
+@fa-var-cc-amex: "\f1f3";
+@fa-var-cc-diners-club: "\f24c";
+@fa-var-cc-discover: "\f1f2";
+@fa-var-cc-jcb: "\f24b";
+@fa-var-cc-mastercard: "\f1f1";
+@fa-var-cc-paypal: "\f1f4";
+@fa-var-cc-stripe: "\f1f5";
+@fa-var-cc-visa: "\f1f0";
+@fa-var-certificate: "\f0a3";
+@fa-var-chain: "\f0c1";
+@fa-var-chain-broken: "\f127";
+@fa-var-check: "\f00c";
+@fa-var-check-circle: "\f058";
+@fa-var-check-circle-o: "\f05d";
+@fa-var-check-square: "\f14a";
+@fa-var-check-square-o: "\f046";
+@fa-var-chevron-circle-down: "\f13a";
+@fa-var-chevron-circle-left: "\f137";
+@fa-var-chevron-circle-right: "\f138";
+@fa-var-chevron-circle-up: "\f139";
+@fa-var-chevron-down: "\f078";
+@fa-var-chevron-left: "\f053";
+@fa-var-chevron-right: "\f054";
+@fa-var-chevron-up: "\f077";
+@fa-var-child: "\f1ae";
+@fa-var-chrome: "\f268";
+@fa-var-circle: "\f111";
+@fa-var-circle-o: "\f10c";
+@fa-var-circle-o-notch: "\f1ce";
+@fa-var-circle-thin: "\f1db";
+@fa-var-clipboard: "\f0ea";
+@fa-var-clock-o: "\f017";
+@fa-var-clone: "\f24d";
+@fa-var-close: "\f00d";
+@fa-var-cloud: "\f0c2";
+@fa-var-cloud-download: "\f0ed";
+@fa-var-cloud-upload: "\f0ee";
+@fa-var-cny: "\f157";
+@fa-var-code: "\f121";
+@fa-var-code-fork: "\f126";
+@fa-var-codepen: "\f1cb";
+@fa-var-codiepie: "\f284";
+@fa-var-coffee: "\f0f4";
+@fa-var-cog: "\f013";
+@fa-var-cogs: "\f085";
+@fa-var-columns: "\f0db";
+@fa-var-comment: "\f075";
+@fa-var-comment-o: "\f0e5";
+@fa-var-commenting: "\f27a";
+@fa-var-commenting-o: "\f27b";
+@fa-var-comments: "\f086";
+@fa-var-comments-o: "\f0e6";
+@fa-var-compass: "\f14e";
+@fa-var-compress: "\f066";
+@fa-var-connectdevelop: "\f20e";
+@fa-var-contao: "\f26d";
+@fa-var-copy: "\f0c5";
+@fa-var-copyright: "\f1f9";
+@fa-var-creative-commons: "\f25e";
+@fa-var-credit-card: "\f09d";
+@fa-var-credit-card-alt: "\f283";
+@fa-var-crop: "\f125";
+@fa-var-crosshairs: "\f05b";
+@fa-var-css3: "\f13c";
+@fa-var-cube: "\f1b2";
+@fa-var-cubes: "\f1b3";
+@fa-var-cut: "\f0c4";
+@fa-var-cutlery: "\f0f5";
+@fa-var-dashboard: "\f0e4";
+@fa-var-dashcube: "\f210";
+@fa-var-database: "\f1c0";
+@fa-var-deaf: "\f2a4";
+@fa-var-deafness: "\f2a4";
+@fa-var-dedent: "\f03b";
+@fa-var-delicious: "\f1a5";
+@fa-var-desktop: "\f108";
+@fa-var-deviantart: "\f1bd";
+@fa-var-diamond: "\f219";
+@fa-var-digg: "\f1a6";
+@fa-var-dollar: "\f155";
+@fa-var-dot-circle-o: "\f192";
+@fa-var-download: "\f019";
+@fa-var-dribbble: "\f17d";
+@fa-var-dropbox: "\f16b";
+@fa-var-drupal: "\f1a9";
+@fa-var-edge: "\f282";
+@fa-var-edit: "\f044";
+@fa-var-eject: "\f052";
+@fa-var-ellipsis-h: "\f141";
+@fa-var-ellipsis-v: "\f142";
+@fa-var-empire: "\f1d1";
+@fa-var-envelope: "\f0e0";
+@fa-var-envelope-o: "\f003";
+@fa-var-envelope-square: "\f199";
+@fa-var-envira: "\f299";
+@fa-var-eraser: "\f12d";
+@fa-var-eur: "\f153";
+@fa-var-euro: "\f153";
+@fa-var-exchange: "\f0ec";
+@fa-var-exclamation: "\f12a";
+@fa-var-exclamation-circle: "\f06a";
+@fa-var-exclamation-triangle: "\f071";
+@fa-var-expand: "\f065";
+@fa-var-expeditedssl: "\f23e";
+@fa-var-external-link: "\f08e";
+@fa-var-external-link-square: "\f14c";
+@fa-var-eye: "\f06e";
+@fa-var-eye-slash: "\f070";
+@fa-var-eyedropper: "\f1fb";
+@fa-var-fa: "\f2b4";
+@fa-var-facebook: "\f09a";
+@fa-var-facebook-f: "\f09a";
+@fa-var-facebook-official: "\f230";
+@fa-var-facebook-square: "\f082";
+@fa-var-fast-backward: "\f049";
+@fa-var-fast-forward: "\f050";
+@fa-var-fax: "\f1ac";
+@fa-var-feed: "\f09e";
+@fa-var-female: "\f182";
+@fa-var-fighter-jet: "\f0fb";
+@fa-var-file: "\f15b";
+@fa-var-file-archive-o: "\f1c6";
+@fa-var-file-audio-o: "\f1c7";
+@fa-var-file-code-o: "\f1c9";
+@fa-var-file-excel-o: "\f1c3";
+@fa-var-file-image-o: "\f1c5";
+@fa-var-file-movie-o: "\f1c8";
+@fa-var-file-o: "\f016";
+@fa-var-file-pdf-o: "\f1c1";
+@fa-var-file-photo-o: "\f1c5";
+@fa-var-file-picture-o: "\f1c5";
+@fa-var-file-powerpoint-o: "\f1c4";
+@fa-var-file-sound-o: "\f1c7";
+@fa-var-file-text: "\f15c";
+@fa-var-file-text-o: "\f0f6";
+@fa-var-file-video-o: "\f1c8";
+@fa-var-file-word-o: "\f1c2";
+@fa-var-file-zip-o: "\f1c6";
+@fa-var-files-o: "\f0c5";
+@fa-var-film: "\f008";
+@fa-var-filter: "\f0b0";
+@fa-var-fire: "\f06d";
+@fa-var-fire-extinguisher: "\f134";
+@fa-var-firefox: "\f269";
+@fa-var-first-order: "\f2b0";
+@fa-var-flag: "\f024";
+@fa-var-flag-checkered: "\f11e";
+@fa-var-flag-o: "\f11d";
+@fa-var-flash: "\f0e7";
+@fa-var-flask: "\f0c3";
+@fa-var-flickr: "\f16e";
+@fa-var-floppy-o: "\f0c7";
+@fa-var-folder: "\f07b";
+@fa-var-folder-o: "\f114";
+@fa-var-folder-open: "\f07c";
+@fa-var-folder-open-o: "\f115";
+@fa-var-font: "\f031";
+@fa-var-font-awesome: "\f2b4";
+@fa-var-fonticons: "\f280";
+@fa-var-fort-awesome: "\f286";
+@fa-var-forumbee: "\f211";
+@fa-var-forward: "\f04e";
+@fa-var-foursquare: "\f180";
+@fa-var-frown-o: "\f119";
+@fa-var-futbol-o: "\f1e3";
+@fa-var-gamepad: "\f11b";
+@fa-var-gavel: "\f0e3";
+@fa-var-gbp: "\f154";
+@fa-var-ge: "\f1d1";
+@fa-var-gear: "\f013";
+@fa-var-gears: "\f085";
+@fa-var-genderless: "\f22d";
+@fa-var-get-pocket: "\f265";
+@fa-var-gg: "\f260";
+@fa-var-gg-circle: "\f261";
+@fa-var-gift: "\f06b";
+@fa-var-git: "\f1d3";
+@fa-var-git-square: "\f1d2";
+@fa-var-github: "\f09b";
+@fa-var-github-alt: "\f113";
+@fa-var-github-square: "\f092";
+@fa-var-gitlab: "\f296";
+@fa-var-gittip: "\f184";
+@fa-var-glass: "\f000";
+@fa-var-glide: "\f2a5";
+@fa-var-glide-g: "\f2a6";
+@fa-var-globe: "\f0ac";
+@fa-var-google: "\f1a0";
+@fa-var-google-plus: "\f0d5";
+@fa-var-google-plus-circle: "\f2b3";
+@fa-var-google-plus-official: "\f2b3";
+@fa-var-google-plus-square: "\f0d4";
+@fa-var-google-wallet: "\f1ee";
+@fa-var-graduation-cap: "\f19d";
+@fa-var-gratipay: "\f184";
+@fa-var-group: "\f0c0";
+@fa-var-h-square: "\f0fd";
+@fa-var-hacker-news: "\f1d4";
+@fa-var-hand-grab-o: "\f255";
+@fa-var-hand-lizard-o: "\f258";
+@fa-var-hand-o-down: "\f0a7";
+@fa-var-hand-o-left: "\f0a5";
+@fa-var-hand-o-right: "\f0a4";
+@fa-var-hand-o-up: "\f0a6";
+@fa-var-hand-paper-o: "\f256";
+@fa-var-hand-peace-o: "\f25b";
+@fa-var-hand-pointer-o: "\f25a";
+@fa-var-hand-rock-o: "\f255";
+@fa-var-hand-scissors-o: "\f257";
+@fa-var-hand-spock-o: "\f259";
+@fa-var-hand-stop-o: "\f256";
+@fa-var-hard-of-hearing: "\f2a4";
+@fa-var-hashtag: "\f292";
+@fa-var-hdd-o: "\f0a0";
+@fa-var-header: "\f1dc";
+@fa-var-headphones: "\f025";
+@fa-var-heart: "\f004";
+@fa-var-heart-o: "\f08a";
+@fa-var-heartbeat: "\f21e";
+@fa-var-history: "\f1da";
+@fa-var-home: "\f015";
+@fa-var-hospital-o: "\f0f8";
+@fa-var-hotel: "\f236";
+@fa-var-hourglass: "\f254";
+@fa-var-hourglass-1: "\f251";
+@fa-var-hourglass-2: "\f252";
+@fa-var-hourglass-3: "\f253";
+@fa-var-hourglass-end: "\f253";
+@fa-var-hourglass-half: "\f252";
+@fa-var-hourglass-o: "\f250";
+@fa-var-hourglass-start: "\f251";
+@fa-var-houzz: "\f27c";
+@fa-var-html5: "\f13b";
+@fa-var-i-cursor: "\f246";
+@fa-var-ils: "\f20b";
+@fa-var-image: "\f03e";
+@fa-var-inbox: "\f01c";
+@fa-var-indent: "\f03c";
+@fa-var-industry: "\f275";
+@fa-var-info: "\f129";
+@fa-var-info-circle: "\f05a";
+@fa-var-inr: "\f156";
+@fa-var-instagram: "\f16d";
+@fa-var-institution: "\f19c";
+@fa-var-internet-explorer: "\f26b";
+@fa-var-intersex: "\f224";
+@fa-var-ioxhost: "\f208";
+@fa-var-italic: "\f033";
+@fa-var-joomla: "\f1aa";
+@fa-var-jpy: "\f157";
+@fa-var-jsfiddle: "\f1cc";
+@fa-var-key: "\f084";
+@fa-var-keyboard-o: "\f11c";
+@fa-var-krw: "\f159";
+@fa-var-language: "\f1ab";
+@fa-var-laptop: "\f109";
+@fa-var-lastfm: "\f202";
+@fa-var-lastfm-square: "\f203";
+@fa-var-leaf: "\f06c";
+@fa-var-leanpub: "\f212";
+@fa-var-legal: "\f0e3";
+@fa-var-lemon-o: "\f094";
+@fa-var-level-down: "\f149";
+@fa-var-level-up: "\f148";
+@fa-var-life-bouy: "\f1cd";
+@fa-var-life-buoy: "\f1cd";
+@fa-var-life-ring: "\f1cd";
+@fa-var-life-saver: "\f1cd";
+@fa-var-lightbulb-o: "\f0eb";
+@fa-var-line-chart: "\f201";
+@fa-var-link: "\f0c1";
+@fa-var-linkedin: "\f0e1";
+@fa-var-linkedin-square: "\f08c";
+@fa-var-linux: "\f17c";
+@fa-var-list: "\f03a";
+@fa-var-list-alt: "\f022";
+@fa-var-list-ol: "\f0cb";
+@fa-var-list-ul: "\f0ca";
+@fa-var-location-arrow: "\f124";
+@fa-var-lock: "\f023";
+@fa-var-long-arrow-down: "\f175";
+@fa-var-long-arrow-left: "\f177";
+@fa-var-long-arrow-right: "\f178";
+@fa-var-long-arrow-up: "\f176";
+@fa-var-low-vision: "\f2a8";
+@fa-var-magic: "\f0d0";
+@fa-var-magnet: "\f076";
+@fa-var-mail-forward: "\f064";
+@fa-var-mail-reply: "\f112";
+@fa-var-mail-reply-all: "\f122";
+@fa-var-male: "\f183";
+@fa-var-map: "\f279";
+@fa-var-map-marker: "\f041";
+@fa-var-map-o: "\f278";
+@fa-var-map-pin: "\f276";
+@fa-var-map-signs: "\f277";
+@fa-var-mars: "\f222";
+@fa-var-mars-double: "\f227";
+@fa-var-mars-stroke: "\f229";
+@fa-var-mars-stroke-h: "\f22b";
+@fa-var-mars-stroke-v: "\f22a";
+@fa-var-maxcdn: "\f136";
+@fa-var-meanpath: "\f20c";
+@fa-var-medium: "\f23a";
+@fa-var-medkit: "\f0fa";
+@fa-var-meh-o: "\f11a";
+@fa-var-mercury: "\f223";
+@fa-var-microphone: "\f130";
+@fa-var-microphone-slash: "\f131";
+@fa-var-minus: "\f068";
+@fa-var-minus-circle: "\f056";
+@fa-var-minus-square: "\f146";
+@fa-var-minus-square-o: "\f147";
+@fa-var-mixcloud: "\f289";
+@fa-var-mobile: "\f10b";
+@fa-var-mobile-phone: "\f10b";
+@fa-var-modx: "\f285";
+@fa-var-money: "\f0d6";
+@fa-var-moon-o: "\f186";
+@fa-var-mortar-board: "\f19d";
+@fa-var-motorcycle: "\f21c";
+@fa-var-mouse-pointer: "\f245";
+@fa-var-music: "\f001";
+@fa-var-navicon: "\f0c9";
+@fa-var-neuter: "\f22c";
+@fa-var-newspaper-o: "\f1ea";
+@fa-var-object-group: "\f247";
+@fa-var-object-ungroup: "\f248";
+@fa-var-odnoklassniki: "\f263";
+@fa-var-odnoklassniki-square: "\f264";
+@fa-var-opencart: "\f23d";
+@fa-var-openid: "\f19b";
+@fa-var-opera: "\f26a";
+@fa-var-optin-monster: "\f23c";
+@fa-var-outdent: "\f03b";
+@fa-var-pagelines: "\f18c";
+@fa-var-paint-brush: "\f1fc";
+@fa-var-paper-plane: "\f1d8";
+@fa-var-paper-plane-o: "\f1d9";
+@fa-var-paperclip: "\f0c6";
+@fa-var-paragraph: "\f1dd";
+@fa-var-paste: "\f0ea";
+@fa-var-pause: "\f04c";
+@fa-var-pause-circle: "\f28b";
+@fa-var-pause-circle-o: "\f28c";
+@fa-var-paw: "\f1b0";
+@fa-var-paypal: "\f1ed";
+@fa-var-pencil: "\f040";
+@fa-var-pencil-square: "\f14b";
+@fa-var-pencil-square-o: "\f044";
+@fa-var-percent: "\f295";
+@fa-var-phone: "\f095";
+@fa-var-phone-square: "\f098";
+@fa-var-photo: "\f03e";
+@fa-var-picture-o: "\f03e";
+@fa-var-pie-chart: "\f200";
+@fa-var-pied-piper: "\f2ae";
+@fa-var-pied-piper-alt: "\f1a8";
+@fa-var-pied-piper-pp: "\f1a7";
+@fa-var-pinterest: "\f0d2";
+@fa-var-pinterest-p: "\f231";
+@fa-var-pinterest-square: "\f0d3";
+@fa-var-plane: "\f072";
+@fa-var-play: "\f04b";
+@fa-var-play-circle: "\f144";
+@fa-var-play-circle-o: "\f01d";
+@fa-var-plug: "\f1e6";
+@fa-var-plus: "\f067";
+@fa-var-plus-circle: "\f055";
+@fa-var-plus-square: "\f0fe";
+@fa-var-plus-square-o: "\f196";
+@fa-var-power-off: "\f011";
+@fa-var-print: "\f02f";
+@fa-var-product-hunt: "\f288";
+@fa-var-puzzle-piece: "\f12e";
+@fa-var-qq: "\f1d6";
+@fa-var-qrcode: "\f029";
+@fa-var-question: "\f128";
+@fa-var-question-circle: "\f059";
+@fa-var-question-circle-o: "\f29c";
+@fa-var-quote-left: "\f10d";
+@fa-var-quote-right: "\f10e";
+@fa-var-ra: "\f1d0";
+@fa-var-random: "\f074";
+@fa-var-rebel: "\f1d0";
+@fa-var-recycle: "\f1b8";
+@fa-var-reddit: "\f1a1";
+@fa-var-reddit-alien: "\f281";
+@fa-var-reddit-square: "\f1a2";
+@fa-var-refresh: "\f021";
+@fa-var-registered: "\f25d";
+@fa-var-remove: "\f00d";
+@fa-var-renren: "\f18b";
+@fa-var-reorder: "\f0c9";
+@fa-var-repeat: "\f01e";
+@fa-var-reply: "\f112";
+@fa-var-reply-all: "\f122";
+@fa-var-resistance: "\f1d0";
+@fa-var-retweet: "\f079";
+@fa-var-rmb: "\f157";
+@fa-var-road: "\f018";
+@fa-var-rocket: "\f135";
+@fa-var-rotate-left: "\f0e2";
+@fa-var-rotate-right: "\f01e";
+@fa-var-rouble: "\f158";
+@fa-var-rss: "\f09e";
+@fa-var-rss-square: "\f143";
+@fa-var-rub: "\f158";
+@fa-var-ruble: "\f158";
+@fa-var-rupee: "\f156";
+@fa-var-safari: "\f267";
+@fa-var-save: "\f0c7";
+@fa-var-scissors: "\f0c4";
+@fa-var-scribd: "\f28a";
+@fa-var-search: "\f002";
+@fa-var-search-minus: "\f010";
+@fa-var-search-plus: "\f00e";
+@fa-var-sellsy: "\f213";
+@fa-var-send: "\f1d8";
+@fa-var-send-o: "\f1d9";
+@fa-var-server: "\f233";
+@fa-var-share: "\f064";
+@fa-var-share-alt: "\f1e0";
+@fa-var-share-alt-square: "\f1e1";
+@fa-var-share-square: "\f14d";
+@fa-var-share-square-o: "\f045";
+@fa-var-shekel: "\f20b";
+@fa-var-sheqel: "\f20b";
+@fa-var-shield: "\f132";
+@fa-var-ship: "\f21a";
+@fa-var-shirtsinbulk: "\f214";
+@fa-var-shopping-bag: "\f290";
+@fa-var-shopping-basket: "\f291";
+@fa-var-shopping-cart: "\f07a";
+@fa-var-sign-in: "\f090";
+@fa-var-sign-language: "\f2a7";
+@fa-var-sign-out: "\f08b";
+@fa-var-signal: "\f012";
+@fa-var-signing: "\f2a7";
+@fa-var-simplybuilt: "\f215";
+@fa-var-sitemap: "\f0e8";
+@fa-var-skyatlas: "\f216";
+@fa-var-skype: "\f17e";
+@fa-var-slack: "\f198";
+@fa-var-sliders: "\f1de";
+@fa-var-slideshare: "\f1e7";
+@fa-var-smile-o: "\f118";
+@fa-var-snapchat: "\f2ab";
+@fa-var-snapchat-ghost: "\f2ac";
+@fa-var-snapchat-square: "\f2ad";
+@fa-var-soccer-ball-o: "\f1e3";
+@fa-var-sort: "\f0dc";
+@fa-var-sort-alpha-asc: "\f15d";
+@fa-var-sort-alpha-desc: "\f15e";
+@fa-var-sort-amount-asc: "\f160";
+@fa-var-sort-amount-desc: "\f161";
+@fa-var-sort-asc: "\f0de";
+@fa-var-sort-desc: "\f0dd";
+@fa-var-sort-down: "\f0dd";
+@fa-var-sort-numeric-asc: "\f162";
+@fa-var-sort-numeric-desc: "\f163";
+@fa-var-sort-up: "\f0de";
+@fa-var-soundcloud: "\f1be";
+@fa-var-space-shuttle: "\f197";
+@fa-var-spinner: "\f110";
+@fa-var-spoon: "\f1b1";
+@fa-var-spotify: "\f1bc";
+@fa-var-square: "\f0c8";
+@fa-var-square-o: "\f096";
+@fa-var-stack-exchange: "\f18d";
+@fa-var-stack-overflow: "\f16c";
+@fa-var-star: "\f005";
+@fa-var-star-half: "\f089";
+@fa-var-star-half-empty: "\f123";
+@fa-var-star-half-full: "\f123";
+@fa-var-star-half-o: "\f123";
+@fa-var-star-o: "\f006";
+@fa-var-steam: "\f1b6";
+@fa-var-steam-square: "\f1b7";
+@fa-var-step-backward: "\f048";
+@fa-var-step-forward: "\f051";
+@fa-var-stethoscope: "\f0f1";
+@fa-var-sticky-note: "\f249";
+@fa-var-sticky-note-o: "\f24a";
+@fa-var-stop: "\f04d";
+@fa-var-stop-circle: "\f28d";
+@fa-var-stop-circle-o: "\f28e";
+@fa-var-street-view: "\f21d";
+@fa-var-strikethrough: "\f0cc";
+@fa-var-stumbleupon: "\f1a4";
+@fa-var-stumbleupon-circle: "\f1a3";
+@fa-var-subscript: "\f12c";
+@fa-var-subway: "\f239";
+@fa-var-suitcase: "\f0f2";
+@fa-var-sun-o: "\f185";
+@fa-var-superscript: "\f12b";
+@fa-var-support: "\f1cd";
+@fa-var-table: "\f0ce";
+@fa-var-tablet: "\f10a";
+@fa-var-tachometer: "\f0e4";
+@fa-var-tag: "\f02b";
+@fa-var-tags: "\f02c";
+@fa-var-tasks: "\f0ae";
+@fa-var-taxi: "\f1ba";
+@fa-var-television: "\f26c";
+@fa-var-tencent-weibo: "\f1d5";
+@fa-var-terminal: "\f120";
+@fa-var-text-height: "\f034";
+@fa-var-text-width: "\f035";
+@fa-var-th: "\f00a";
+@fa-var-th-large: "\f009";
+@fa-var-th-list: "\f00b";
+@fa-var-themeisle: "\f2b2";
+@fa-var-thumb-tack: "\f08d";
+@fa-var-thumbs-down: "\f165";
+@fa-var-thumbs-o-down: "\f088";
+@fa-var-thumbs-o-up: "\f087";
+@fa-var-thumbs-up: "\f164";
+@fa-var-ticket: "\f145";
+@fa-var-times: "\f00d";
+@fa-var-times-circle: "\f057";
+@fa-var-times-circle-o: "\f05c";
+@fa-var-tint: "\f043";
+@fa-var-toggle-down: "\f150";
+@fa-var-toggle-left: "\f191";
+@fa-var-toggle-off: "\f204";
+@fa-var-toggle-on: "\f205";
+@fa-var-toggle-right: "\f152";
+@fa-var-toggle-up: "\f151";
+@fa-var-trademark: "\f25c";
+@fa-var-train: "\f238";
+@fa-var-transgender: "\f224";
+@fa-var-transgender-alt: "\f225";
+@fa-var-trash: "\f1f8";
+@fa-var-trash-o: "\f014";
+@fa-var-tree: "\f1bb";
+@fa-var-trello: "\f181";
+@fa-var-tripadvisor: "\f262";
+@fa-var-trophy: "\f091";
+@fa-var-truck: "\f0d1";
+@fa-var-try: "\f195";
+@fa-var-tty: "\f1e4";
+@fa-var-tumblr: "\f173";
+@fa-var-tumblr-square: "\f174";
+@fa-var-turkish-lira: "\f195";
+@fa-var-tv: "\f26c";
+@fa-var-twitch: "\f1e8";
+@fa-var-twitter: "\f099";
+@fa-var-twitter-square: "\f081";
+@fa-var-umbrella: "\f0e9";
+@fa-var-underline: "\f0cd";
+@fa-var-undo: "\f0e2";
+@fa-var-universal-access: "\f29a";
+@fa-var-university: "\f19c";
+@fa-var-unlink: "\f127";
+@fa-var-unlock: "\f09c";
+@fa-var-unlock-alt: "\f13e";
+@fa-var-unsorted: "\f0dc";
+@fa-var-upload: "\f093";
+@fa-var-usb: "\f287";
+@fa-var-usd: "\f155";
+@fa-var-user: "\f007";
+@fa-var-user-md: "\f0f0";
+@fa-var-user-plus: "\f234";
+@fa-var-user-secret: "\f21b";
+@fa-var-user-times: "\f235";
+@fa-var-users: "\f0c0";
+@fa-var-venus: "\f221";
+@fa-var-venus-double: "\f226";
+@fa-var-venus-mars: "\f228";
+@fa-var-viacoin: "\f237";
+@fa-var-viadeo: "\f2a9";
+@fa-var-viadeo-square: "\f2aa";
+@fa-var-video-camera: "\f03d";
+@fa-var-vimeo: "\f27d";
+@fa-var-vimeo-square: "\f194";
+@fa-var-vine: "\f1ca";
+@fa-var-vk: "\f189";
+@fa-var-volume-control-phone: "\f2a0";
+@fa-var-volume-down: "\f027";
+@fa-var-volume-off: "\f026";
+@fa-var-volume-up: "\f028";
+@fa-var-warning: "\f071";
+@fa-var-wechat: "\f1d7";
+@fa-var-weibo: "\f18a";
+@fa-var-weixin: "\f1d7";
+@fa-var-whatsapp: "\f232";
+@fa-var-wheelchair: "\f193";
+@fa-var-wheelchair-alt: "\f29b";
+@fa-var-wifi: "\f1eb";
+@fa-var-wikipedia-w: "\f266";
+@fa-var-windows: "\f17a";
+@fa-var-won: "\f159";
+@fa-var-wordpress: "\f19a";
+@fa-var-wpbeginner: "\f297";
+@fa-var-wpforms: "\f298";
+@fa-var-wrench: "\f0ad";
+@fa-var-xing: "\f168";
+@fa-var-xing-square: "\f169";
+@fa-var-y-combinator: "\f23b";
+@fa-var-y-combinator-square: "\f1d4";
+@fa-var-yahoo: "\f19e";
+@fa-var-yc: "\f23b";
+@fa-var-yc-square: "\f1d4";
+@fa-var-yelp: "\f1e9";
+@fa-var-yen: "\f157";
+@fa-var-yoast: "\f2b1";
+@fa-var-youtube: "\f167";
+@fa-var-youtube-play: "\f16a";
+@fa-var-youtube-square: "\f166";
+
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/links.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/links.less
new file mode 100644
index 0000000..5194bab
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/links.less
@@ -0,0 +1,5 @@
+a.disabled {
+  color: @color-pf-black-500;
+  cursor: @cursor-disabled;
+  text-decoration: none;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/list-group.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/list-group.less
new file mode 100644
index 0000000..7f69415
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/list-group.less
@@ -0,0 +1,18 @@
+//
+// List groups
+// --------------------------------------------------
+
+.list-group {
+  border-top: 1px solid @list-group-top-border;
+  .list-group-item:first-child {
+    border-top: 0;
+  }
+}
+.list-group-item {
+  border-left: 0;
+  border-right: 0;
+}
+
+.list-group-item-heading {
+  font-weight: 600;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/list-view.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/list-view.less
new file mode 100644
index 0000000..628a242
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/list-view.less
@@ -0,0 +1,234 @@
+//
+// List View
+// --------------------------------------------------
+
+
+.list-view-pf {
+  .list-group-item {
+    align-items: flex-start;
+    .clearfix(); //IE9 fallback
+    display: flex;
+    padding-bottom: 0;
+    padding-top: 0;
+    &.active {
+      color: @list-group-link-color;
+      background-color: @list-view-active-bg;
+      z-index:auto;
+    }
+    &:hover {
+      background-color: @list-view-hover-bg;
+    }
+    @media (min-width: @screen-md-min) {
+      align-items: center;
+    }
+  }
+  .list-group-item-heading {
+    font-size: @font-size-h3;
+    small {
+      display: block;
+      font-size: (@font-size-base * .8);
+      font-weight: 400;
+    }
+    @media (min-width: @screen-md-min) {
+      flex:     1 0 calc(~"25% - 20px");
+      float: left; // IE9 fallback
+      font-size: @font-size-base;
+      margin: 0 (@grid-gutter-width/2) 0 0;
+      overflow: hidden;
+      text-overflow: ellipsis;
+      white-space: nowrap;
+      width: calc(~"25% - 20px"); // IE9 fallback
+    }
+  }
+  .list-group-item-text {
+    color: currentColor !important; // to overwrite color change when active.
+    margin-bottom: 10px;
+    @media (min-width: @screen-md-min) {
+      flex:     1 0 auto; // it covers whats left from the title
+      float: left; // IE9 fallback
+      margin: 0 @grid-gutter-width 0 0;
+      width: calc(~"75% - 40px"); // IE9 fallback
+    }
+  }
+}
+.list-view-pf-actions {
+  float: right; // IE9 fallback
+  margin-bottom: (@grid-gutter-width/2);
+  margin-left: (@grid-gutter-width/2);
+  margin-top: (@grid-gutter-width/2);
+  order: 2;
+  button,
+  > a {
+    margin-left: (@grid-gutter-width/4);
+  }
+  .list-view-pf-top-align & {
+    align-self: flex-start;
+  }
+}
+.list-view-pf-additional-info {
+  align-items: center;
+  display: flex;
+  flex-wrap: wrap;
+  @media (min-width: @screen-md-min) {
+    flex: 1 0 auto; // it covers whats left from summary
+    float: left; // IE9 fallback
+    width: 50%; // IE9 fallback
+  }
+}
+.list-view-pf-additional-info-item {
+  align-items: center;
+  display: inline-block;
+  @supports (display: flex) {
+    display: flex;
+  }
+  margin-right: (@grid-gutter-width/2);
+  max-width:100%;
+  text-align: center;
+  &.list-view-pf-additional-info-item-stacked {
+    text-align: center;
+    flex-direction: column;
+    strong {
+      font-size: @font-size-h5;
+      line-height: 1em;
+    }
+  }
+  .pficon, .fa {
+    font-size: @font-size-h3;
+    margin-right: (@grid-gutter-width/4);
+  }
+  strong {
+    font-size: @font-size-h3;
+    font-weight: 600;
+    margin-right: 5px;
+  }
+  &:last-child {
+    margin-right: 0;
+  }
+}
+.list-view-pf-additional-info-item-donut-chart { width: 60px; }
+.list-view-pf-body {
+  align-items: center;
+  display: table-cell; //IE9 fallback
+  flex:     1;
+  min-width: 0;
+  vertical-align: top; //IE9 fallback
+  width: 100%; // IE9 fallback, it extends the cell to size of the container
+  @media (min-width: @screen-md-min) {
+    align-items: center;
+    display: flex;
+    flex-direction: row;
+  }
+}
+.list-view-pf-checkbox {
+  border-right: 1px solid @list-view-divider;
+  float: left; //IE9 fallback
+  margin-bottom: (@grid-gutter-width/2);
+  margin-right: 15px;
+  margin-top: (@grid-gutter-width/2);
+  padding: 3px (@grid-gutter-width/4) 3px 0;
+  .list-view-pf-top-align & {
+    align-self: flex-start;
+  }
+}
+.list-view-pf-description {
+  flex:     1 0 50%;
+  .list-view-pf-stacked & {
+    display: block;
+  }
+  @media (min-width: @screen-md-min) {
+    align-items: center;
+    display: flex;
+    float: left; //IE9 fallback
+    width: 50%; //IE9 fallback
+  }
+}
+.list-view-pf-left {
+  display: table-cell; //IE9 fallback
+  padding-right: (@grid-gutter-width/2);
+  text-align: center;
+  vertical-align: top; //IE9 fallback
+  .list-view-pf-calendar {
+    font-size: @font-size-small;
+    line-height: 1em;
+    strong {
+      display: block;
+      font-size: (@font-size-h2 * 2);
+      font-weight: 300;
+      line-height: 1em;
+    }
+  }
+  .pficon, .fa {
+    border-radius: 50%;
+    font-size: 2em;
+    // -md is out of alpha order to get correct bg on -danger
+    &.list-view-pf-icon-md {
+      background-color: @alert-info-bg;
+      height: 50px;
+      line-height: 50px;
+      width: 50px;
+    }
+    &.list-view-pf-icon-danger {
+      background-color: @alert-danger-bg;
+      color: @alert-danger-border;
+    }
+    &.list-view-pf-icon-info {
+      color: @alert-info-border;
+    }
+    &.list-view-pf-icon-lg {
+      background-color: @alert-info-bg;
+      height: 60px;
+      line-height: 60px;
+      width: 60px;
+    }
+    &.list-view-pf-icon-sm {
+      border: 2px solid @list-view-accented-border;
+      font-size: 1.4em;
+      height: 30px;
+      line-height: 30px;
+      width: 30px;
+      &:before {
+        display: block;
+        line-height: 26px;
+      }
+    }
+    &.list-view-pf-icon-success {
+      background-color: @alert-success-bg;
+      color: @alert-success-border;
+    }
+    &.list-view-pf-icon-warning {
+      background-color: @alert-warning-bg;
+      color: @alert-warning-border;
+    }
+  }
+}
+.list-view-pf-main-info {
+  align-items: flex-start;
+  display: flex;
+  flex:     1;
+  min-width: 0;
+  padding-bottom: (@grid-gutter-width/2);
+  padding-top: (@grid-gutter-width/2);
+  @media (min-width: @screen-md-min) {
+    align-items: center;
+    .list-view-pf-top-align & {
+      align-items: flex-start;
+    }
+  }
+}
+.list-view-pf-stacked {
+  .list-group-item-heading {
+    float: none; // IE9 fallback
+    font-size: @font-size-h3;
+    line-height: 1.2em;
+    margin-bottom: 5px;
+    margin-right: @grid-gutter-width;
+    width: auto; // IE9 fallback
+  }
+  .list-group-item-text {
+    float: none;
+    width: auto;
+  }
+}
+.list-view-pf-view {
+  margin-top: 30px;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/login.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/login.less
new file mode 100644
index 0000000..48ec660
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/login.less
@@ -0,0 +1,100 @@
+//
+// Login
+// --------------------------------------------------
+
+.login-pf {
+  height: 100%;
+  #brand {
+    position: relative;
+    top: -70px;
+    img {
+      display: block;
+      height: 18px;
+      margin: 0 auto;
+      max-width: 100%;
+      @media (min-width: @screen-sm-min) {
+        margin: 0;
+        text-align: left;
+      }
+    }
+  }
+  #badge {
+    display: block;
+    margin: 20px auto 70px;
+    position: relative;
+    text-align: center;
+    @media (min-width: @screen-sm-min) {
+      float: right;
+      margin-right: 64px;
+      margin-top: 50px;
+    }
+  }
+  body {
+    background: @login-bg-color url("@{img-path}/@{img-bg-login}") repeat-x 50% 0;
+    background-size: auto;
+    @media (min-width: @screen-sm-min) {
+      background-size: 100% auto;
+    }
+  }
+  .container {
+    background-color: @login-container-bg-color-rgba;
+    clear: right;
+    color: @color-pf-white;
+    padding-bottom: 40px;
+    padding-top: 20px;
+    width: auto;
+    @media (min-width: @screen-sm-min) {
+      bottom: 13%;
+      padding-left: 80px;
+      position: absolute;
+      width: 100%;
+    }
+    [class^="alert"] {
+      background: transparent;
+      color: @color-pf-white;
+    }
+    .details {
+      p:first-child {
+        border-top: 1px solid fade(@color-pf-white, 30%);
+        padding-top: 25px;
+        margin-top: 25px;
+      }
+      @media (min-width: @screen-sm-min) {
+        p:first-child {
+          border-top: 0;
+          padding-top: 0;
+          margin-top: 0;
+        }
+        border-left: 1px solid fade(@color-pf-white, 30%);
+        padding-left: 40px;
+      }
+      p {
+        margin-bottom: 2px;
+      }
+    }
+    .form-horizontal {
+      .control-label {
+        font-size: (@font-size-base + 1);
+        font-weight: 400;
+        text-align: left;
+      }
+      .form-group:last-child {
+        &,
+        .help-block:last-child {
+          margin-bottom: 0;
+        }
+      }
+    }
+    .help-block {
+      color: @color-pf-white;
+    }
+    .login {
+      @media (min-width: @screen-sm-min) {
+        padding-right: 40px;
+      }
+    }
+    .submit {
+      text-align: right;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/mixins.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/mixins.less
new file mode 100644
index 0000000..1cd38ae
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/mixins.less
@@ -0,0 +1,95 @@
+//
+// Mixins
+// --------------------------------------------------
+// Bootstrap overrides and PatternFly-specific mixins
+
+// Bootstrap overrides
+// -------------------
+
+// Button variants
+.button-variant(@color; @background; @background-image-start; @background-image-stop; @border) {
+  background-color: @background;
+  #gradient > .vertical(@background-image-start, @background-image-stop);
+  border-color: @border;
+  color: @color;
+
+  &:hover,
+  &:focus,
+  &:active,
+  &.active,
+  .open .dropdown-toggle& {
+    background-color: @background;
+    background-image: none;
+    border-color: @border;
+    color: @color;
+  }
+  &:active,
+  &.active,
+  .open .dropdown-toggle& {
+    background-image: none;
+    &:hover,
+    &:focus,
+    &.focus {
+      background-color: darken(@background, 5%);
+          border-color: darken(@border, 7%);
+    }
+  }
+  &.disabled,
+  &[disabled],
+  fieldset[disabled] & {
+    &,
+    &:hover,
+    &:focus,
+    &:active,
+    &.active {
+      background-color: @background;
+      border-color: @border;
+    }
+  }
+}
+
+// Form control outline
+.form-control-outline(@color: @input-border-focus) {
+  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);
+  &:focus {
+    border-color: @color;
+    outline: 0 !important;
+    .box-shadow(~"inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px @{color-rgba}");
+  }
+}
+
+// Gradients
+#gradient {
+  .striped(@color: fade(@color-pf-black, 15%); @angle: -45deg) {
+    background-image: linear-gradient(@angle, @color 25%, @color 26%, transparent 27%, transparent 49%, @color 50%, @color 51%, transparent 52%, transparent 74%, @color 75%, @color 76%, transparent 77%);
+  }
+}
+
+// Horizontal dividers
+.nav-divider(@color: @color-pf-black-200, @margin: 4px 1px) {
+  background-color: @color;
+  height: 1px;
+  margin: @margin;
+  overflow: hidden;
+}
+
+// Placeholder text
+.placeholder(@color: @input-color-placeholder) {
+  &::placeholder            { color: @color; font-style: italic; }
+}
+
+// PatternFly-specific
+// -------------------
+
+.tab-indicator(@background: @gray-light-pf, @left: 15px, @right: 15px) {
+  &:before {
+    background: @background;
+    bottom: -1px;
+    content: "";
+    display: block;
+    height: 2px;
+    left: @left;
+    position: absolute;
+    right: @right;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/modals.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/modals.less
new file mode 100644
index 0000000..52b3abb
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/modals.less
@@ -0,0 +1,38 @@
+//
+// Modals
+// --------------------------------------------------
+
+// Modal header
+// Top section of the modal w/ title and dismiss
+.modal-header {
+  background-color: @color-pf-black-150;
+  border-bottom: none;
+  padding: @modal-title-padding-vertical @modal-title-padding-horizontal;
+}
+// Close icon
+.modal-header .close {
+  margin-top: 2px;
+}
+
+// Title text within header
+.modal-title {
+  font-size: 13px;
+  font-weight: 700;
+}
+
+// Footer (for actions)
+.modal-footer {
+  border-top: none;
+  margin-top: 15px;
+  padding: (@modal-inner-padding - 1) @modal-inner-padding @modal-inner-padding;
+  > .btn {
+    padding-left: 10px;
+    padding-right: 10px;
+    > .fa-angle-left {
+      margin-right: 5px;
+    }
+    > .fa-angle-right {
+      margin-left: 5px;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/navbar.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/navbar.less
new file mode 100644
index 0000000..75c1015
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/navbar.less
@@ -0,0 +1,519 @@
+//
+// Navbar
+// --------------------------------------------------
+
+.navbar-pf {
+  background: @navbar-pf-bg-color;
+  border: 0;
+  border-radius: 0;
+  border-top: 3px solid @navbar-pf-border-color;
+  margin-bottom: 0;
+  min-height: 0;
+  .navbar-brand {
+    color: @navbar-pf-active-color;
+    height: auto;
+    padding: 12px 0;
+    margin: 0 0 0 20px;
+    img {
+      display: block;
+    }
+  }
+  .navbar-collapse {
+    border-top: 0;
+    .box-shadow(none);
+    padding: 0;
+  }
+  .navbar-header {
+    border-bottom: 1px solid @navbar-pf-navbar-header-border-color;
+    float: none;
+  }
+  .navbar-nav {
+    margin: 0;
+    > .active > a,
+    > .active > a:hover,
+    > .active > a:focus {
+      background-color: @navbar-pf-navbar-nav-active-bg-color;
+      color: @navbar-pf-active-color;
+    }
+    > li > a {
+      color: @navbar-pf-color;
+      line-height: 1;
+      padding: 10px 20px;
+      text-shadow: none;
+      &:hover,
+      &:focus {
+        color: @navbar-pf-active-color;
+      }
+    }
+    > .open {
+      > a {
+        &,
+        &:hover,
+        &:focus {
+          background-color: @navbar-pf-navbar-nav-active-bg-color;
+          color: @navbar-pf-active-color;
+        }
+      }
+    }
+    @media (max-width: @grid-float-breakpoint-max) {
+      .active .dropdown-menu,
+      .active .navbar-persistent,
+      .open .dropdown-menu {
+        background-color: @navbar-pf-navbar-nav-active-active-bg-color !important;
+        margin-left: 0;
+        padding-bottom: 0;
+        padding-top: 0;
+        > .active > a,
+        .dropdown-submenu.open > a {
+          &,
+          &:hover,
+          &:focus {
+            background-color: @navbar-pf-navbar-nav-active-active-open-bg-color !important;
+            color: @navbar-pf-active-color;
+          }
+        }
+        > li > a {
+          background-color: transparent;
+          border: 0;
+          color: @navbar-pf-color;
+          outline: none;
+          padding-left: 30px;
+          &:hover {
+            color: @navbar-pf-active-color;
+          }
+        }
+        .divider {
+          background-color: @navbar-pf-navbar-header-border-color;
+          margin: 0 1px;
+        }
+        .dropdown-header {
+          padding-bottom: 0;
+          padding-left: 30px;
+        }
+        .dropdown-submenu {
+          &.open .dropdown-toggle {
+            color: @navbar-pf-active-color;
+          }
+          &.pull-left {
+            float: none !important;
+          }
+          > a:after {
+            display: none;
+          }
+          .dropdown-header {
+            padding-left: 45px;
+          }
+          .dropdown-menu {
+            border: 0;
+            bottom: auto;
+            .box-shadow(none);
+            display: block;
+            float: none;
+            margin: 0;
+            min-width: 0;
+            padding: 0;
+            position: relative;
+            left: auto;
+            right: auto;
+            top: auto;
+            > li > a {
+              padding: 5px 15px 5px 45px;
+              line-height: 20px;
+            }
+            .dropdown-menu > li > a {
+              padding-left: 60px;
+            }
+          }
+        }
+      }
+      .active .navbar-persistent {
+        .dropdown-submenu {
+          &.open .dropdown-menu {
+            display: block;
+          }
+          > a:after {
+            display: inline-block !important;
+            position: relative;
+            right: auto;
+            top: 1px;
+          }
+          .dropdown-menu {
+            display: none;
+          }
+          .dropdown-submenu > a:after {
+            display: none !important;
+          }
+        }
+      }
+      .context-bootstrap-select { // Also see bootstrap-select.less
+        .open > .dropdown-menu {
+          background-color: @color-pf-white !important;
+          > .active > a {
+            &,
+            &:active {
+              background-color: @dropdown-link-hover-bg !important;
+              border-color: @dropdown-link-hover-border-color !important;
+              color: @gray-dark !important;
+              small {
+                color: @gray-light !important;
+              }
+            }
+          }
+          > .disabled > a {
+            color: @gray-light !important;
+          }
+          > .selected > a {
+            &,
+            &:active {
+              background-color: @dropdown-link-active-bg !important;
+              border-color: @dropdown-link-active-border-color !important;
+              color: @color-pf-white !important;
+              small {
+                color: fade(@color-pf-white, 50%) !important;
+              }
+            }
+          }
+          li {
+            > a.opt {
+              border-bottom: 1px solid transparent;
+              border-top: 1px solid transparent;
+              color: @gray-dark;
+              padding-left: 10px;
+              padding-right: 10px;
+            }
+            & a {
+              &:active small {
+                color: fade(@color-pf-white, 50%) !important;
+              }
+              &:hover,
+              &:focus {
+                small {
+                  color: @gray-light;
+                }
+              }
+            }
+          }
+        }
+        > .open > .dropdown-menu {
+          padding-bottom: 5px;
+          padding-top: 5px;
+        }
+      }
+    }
+  }
+  .navbar-persistent {
+    display: none;
+  }
+  .active > .navbar-persistent {
+    display: block;
+  }
+  .navbar-primary {
+    float: none;
+    .context {
+      border-bottom: 1px solid @navbar-pf-navbar-header-border-color;
+      &.context-bootstrap-select .bootstrap-select.btn-group {
+        &,
+        &[class*="span"] {
+          margin: 8px 20px 9px;
+          width: auto; // known bug:  IE8 will make it as wide as the longest string
+        }
+      }
+    }
+    > li > .navbar-persistent > .dropdown-submenu > a {
+      position: relative;
+      &:after {
+        content: @fa-var-angle-down;
+        display: inline-block;
+        font-family: @icon-font-name-fa;
+        font-weight: normal;
+        @media (max-width: @grid-float-breakpoint-max) {
+          height: 10px;
+          margin-left: 4px;
+          vertical-align: baseline;
+        }
+      }
+    }
+  }
+  .navbar-toggle {
+    border: 0;
+    margin: 0;
+    padding: 10px 20px;
+    &:hover,
+    &:focus {
+      background-color: transparent;
+      outline: none;
+      .icon-bar {
+        .box-shadow(0 0 3px @color-pf-white);
+      }
+    }
+    .icon-bar {
+      background-color: @navbar-pf-icon-bar-bg-color;
+    }
+  }
+  .navbar-utility {
+    border-bottom: 1px solid @navbar-pf-navbar-header-border-color;
+    li.dropdown > .dropdown-toggle {
+      padding-left: 36px;
+      position: relative;
+      .pficon-user {
+        left: 20px;
+        position: absolute;
+        top: 10px;
+      }
+    }
+    @media (max-width: @grid-float-breakpoint-max) {
+      > li + li {
+        border-top: 1px solid @navbar-pf-navbar-header-border-color;
+      }
+    }
+  }
+}
+
+@media (min-width: @grid-float-breakpoint) {
+  .navbar-pf {
+    .navbar-brand {
+      padding: @navbar-pf-navbar-navbar-brand-padding;
+    }
+    .navbar-nav > li > a {
+      padding-bottom: 14px;
+      padding-top: 14px;
+    }
+    .navbar-persistent {
+      font-size: @font-size-large;
+    }
+    .navbar-primary {
+      font-size: @font-size-large;
+      #gradient > .vertical(@navbar-pf-navbar-primary-bg-color-start, @navbar-pf-navbar-primary-bg-color-stop);
+      &.persistent-secondary {
+        .context {
+          .dropdown-menu {
+            top: auto;
+          }
+        }
+        .dropup .dropdown-menu {
+          bottom: -5px;
+          top: auto;
+        }
+        > li {
+          position: static;
+          &.active {
+            margin-bottom: 32px;
+            > .navbar-persistent {
+              display: block;
+              left: 0;
+              position: absolute;
+            }
+          }
+          > .navbar-persistent {
+            background: @navbar-pf-navbar-navbar-persistent-bg-color;
+            border-bottom: 1px solid @navbar-pf-navbar-navbar-persistent-border-color;
+            padding: 0;
+            width: 100%;
+            a {
+              text-decoration: none !important;
+            }
+            > li {
+              &.active {
+                &,
+                &:hover {
+                  .tab-indicator(@background: @nav-tabs-active-link-hover-color, @left: 20px, @right: 20px);
+                }
+                > a,
+                > a:hover,
+                &:hover > a {
+                  color: @link-color !important;
+                }
+                .active > a {
+                  color: @navbar-pf-active-color;
+                }
+              }
+              &.dropdown-submenu {
+                &:hover > .dropdown-menu {
+                  display: none;
+                }
+                &.open {
+                  > .dropdown-menu {
+                    display: block;
+                    left: 20px;
+                    margin-top: 1px;
+                    top: 100%;
+                  }
+                  > .dropdown-toggle {
+                    color: @gray-darker;
+                    &:after {
+                      border-top-color: @gray-darker;
+                    }
+                  }
+                }
+                > .dropdown-toggle {
+                  padding-right: 35px !important;
+                  &:after {
+                    position: absolute;
+                    right: 20px;
+                    top: 10px;
+                  }
+                }
+              }
+              &:hover,
+              &.open {
+                .tab-indicator(@left: 20px, @right: 20px);
+                > a {
+                  color: @gray-darker;
+                  &:after {
+                    border-top-color: @gray-darker;
+                  }
+                }
+              }
+              > a {
+                background-color: transparent;
+                display: block;
+                line-height: 1;
+                padding: 9px 20px;
+                &.dropdown-toggle {
+                  padding-right: 35px;
+                  &:after {
+                    font-size: (@font-size-large + 1);
+                    position: absolute;
+                    right: 20px;
+                    top: 9px;
+                  }
+                }
+                &:hover {
+                  color: @gray-darker;
+                }
+              }
+              a {
+                color: @gray-pf;
+              }
+            }
+          }
+        }
+      }
+      > li > a {
+        border-bottom: 1px solid transparent;
+        border-top: 1px solid transparent;
+        position: relative;
+        margin: -1px 0 0;
+        &:hover {
+          background-color: @navbar-pf-navbar-primary-hover-bg-color-stop;
+          border-top-color: @navbar-pf-navbar-primary-hover-border-color;
+          color: @navbar-pf-color;
+          #gradient > .vertical(@navbar-pf-navbar-primary-hover-bg-color-start, @navbar-pf-navbar-primary-hover-bg-color-stop);
+        }
+      }
+      > .active > a,
+      > .active > a:hover,
+      > .active > a:focus,
+      > .open > a,
+      > .open > a:hover,
+      > .open > a:focus {
+        background-color: @navbar-pf-navbar-primary-active-bg-color-stop;
+        border-bottom-color: @navbar-pf-navbar-primary-active-bg-color-stop;
+        border-top-color: @navbar-pf-navbar-primary-active-border-color;
+        .box-shadow(none);
+        color: @navbar-pf-active-color;
+        #gradient > .vertical(@navbar-pf-navbar-primary-active-bg-color-start, @navbar-pf-navbar-primary-active-bg-color-stop);
+      }
+      li.context {
+        &.context-bootstrap-select .filter-option {
+          max-width: 160px;
+          text-overflow: ellipsis;
+        }
+        &.dropdown {
+          border-bottom: 0;
+        }
+        > a,
+        &.context-bootstrap-select {
+          background-color: @navbar-pf-navbar-primary-context-bg-color-stop;
+          border-bottom-color: @navbar-pf-navbar-primary-context-border-color;
+          border-right: 1px solid @navbar-pf-navbar-primary-context-border-color;
+          border-top-color: @navbar-pf-navbar-primary-context-border-top-color;
+          font-weight: 600;
+          #gradient > .vertical(@navbar-pf-navbar-primary-context-bg-color-start, @navbar-pf-navbar-primary-context-bg-color-stop);
+          &:hover {
+            background-color: @navbar-pf-navbar-primary-context-hover-bg-color-stop;
+            border-bottom-color: @navbar-pf-navbar-primary-context-hover-border-color;
+            border-right-color: @navbar-pf-navbar-primary-context-hover-border-color;
+            border-top-color: @navbar-pf-navbar-primary-context-hover-border-top-color;
+            #gradient > .vertical(@navbar-pf-navbar-primary-context-hover-bg-color-start, @navbar-pf-navbar-primary-context-hover-bg-color-stop);
+          }
+        }
+        &.open > a {
+          background-color: @navbar-pf-navbar-primary-context-active-bg-color-stop;
+          border-bottom-color: @navbar-pf-navbar-primary-context-active-border-color;
+          border-right-color: @navbar-pf-navbar-primary-context-active-border-right-color;
+          border-top-color: @navbar-pf-navbar-primary-context-active-border-top-color;
+          #gradient > .vertical(@navbar-pf-navbar-primary-context-active-bg-color-start, @navbar-pf-navbar-primary-context-active-bg-color-stop);
+        }
+      }
+    }
+    .navbar-utility {
+      border-bottom: 0;
+      font-size: @font-size-small;
+      position: absolute;
+      right: 0;
+      top: 0;
+      > .active > a,
+      > .active > a:hover,
+      > .active > a:focus,
+      > .open > a,
+      > .open > a:hover,
+      > .open > a:focus {
+        background: @navbar-pf-navbar-utility-open-bg-color;
+        color: @navbar-pf-navbar-utility-color;
+      }
+      > li > a {
+        border-left: 1px solid @navbar-pf-navbar-utility-border-color;
+        color: @navbar-pf-navbar-utility-color !important;
+        padding: 7px 10px;
+        &:hover {
+          background: @navbar-pf-navbar-utility-hover-bg-color;
+          border-left-color: @navbar-pf-navbar-utility-hover-border-color;
+        }
+      }
+      > li.open > a {
+        border-left-color: @navbar-pf-navbar-utility-open-border-color;
+        color: @navbar-pf-active-color !important;
+      }
+      li.dropdown > .dropdown-toggle {
+        padding-left: 26px;
+        .pficon-user {
+          left: 10px;
+          top: 7px;
+        }
+      }
+      .open .dropdown-menu {
+        left: auto;
+        right: 0;
+        .dropdown-menu {
+          left: auto;
+          right: 100%;
+        }
+      }
+    }
+    .navbar-utility .open .dropdown-menu {
+        border-top-width: 0;
+    }
+    .open {
+      &.bootstrap-select .dropdown-menu,
+      .dropdown-submenu > .dropdown-menu {
+        border-top-width: 1px !important;
+      }
+    }
+  }
+}
+@media (max-width: 360px) {
+  .navbar-pf {
+    .navbar-brand {
+      margin-left: 10px;
+      width: 75%;
+      img {
+        height: auto;
+        max-width: 100%;
+      }
+    }
+    .navbar-toggle {
+      padding-left: 0;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/navbar-alt.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/navbar-alt.less
new file mode 100644
index 0000000..9a1813d
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/navbar-alt.less
@@ -0,0 +1,141 @@
+//
+// Navbar Alt
+// --------------------------------------------------
+
+.navbar-pf-alt {
+  background-color: @navbar-pf-alt-bg-color;
+  background-image: @navbar-pf-alt-bg-img;
+  background-repeat: @navbar-pf-alt-bg-repeat;
+  background-size: @navbar-pf-alt-bg-size;
+  border: none;
+  border-radius: 0;
+  border-top: @navbar-pf-alt-border-width @navbar-pf-alt-border-style @navbar-pf-alt-border-color;
+  margin-bottom: 0;
+
+  .infotip.bottom-right .arrow {
+    left: 90%;
+  }
+
+  .layout-pf-alt-fixed & {
+    left: 0;
+    position: fixed;
+    right: 0;
+    top: 0;
+    z-index: @zindex-navbar-fixed;
+  }
+
+  .nav {
+    &.navbar-nav > li > .dropdown-menu.infotip {
+      margin-top: 0;
+    }
+
+    .nav-item-iconic {
+      cursor: pointer;
+      line-height: 1;
+      max-height: (@navbar-pf-alt-height - @navbar-pf-alt-border-width); // to keep Firefox from oversizing icons
+      padding: @navbar-pf-alt-nav-item-iconic-padding;
+      position: relative;
+
+      &:hover,
+      &:focus {
+        background-color: transparent;
+
+        .caret,
+        .fa,
+        .glyphicon,
+        .pficon {
+          color: @navbar-pf-alt-active-color;
+        }
+      }
+
+      .badge {
+        background-color: @notification-badge-color;
+        border-radius: 20px;
+        color: @navbar-pf-alt-active-color;
+        cursor: pointer;
+        font-size: (@font-size-base - 3);
+        font-weight: 700;
+        margin: 0 0 -11px -12px;
+        min-width: 0;
+        padding: 2px 4px;
+      }
+
+      .caret,
+      .fa,
+      .pficon {
+        color: @navbar-pf-alt-color;
+        font-size: (@font-size-base + 4);
+      }
+
+      .caret {
+        font-size: @font-size-base;
+        width: auto;
+      }
+
+    }
+
+    .open > .nav-item-iconic {
+      &,
+      &:hover,
+      &:focus {
+        background: transparent;
+
+        .caret,
+        .fa,
+        .pficon {
+          color: @navbar-pf-alt-active-color;
+        }
+      }
+    }
+  }
+
+  .navbar-brand {
+    color: @navbar-pf-alt-navbar-brand-color;
+    height: auto;
+    margin: @navbar-pf-alt-navbar-brand-margin;
+    min-height: @navbar-pf-alt-navbar-brand-min-height;
+    padding: @navbar-pf-alt-navbar-brand-padding;
+
+    .navbar-brand-name {
+      display: inline;
+      margin-left: @navbar-pf-alt-navbar-brand-name-margin;
+      margin-right: @navbar-pf-alt-navbar-brand-name-margin;
+      // hide once screen gets too small
+      @media (max-width: @navbar-pf-alt-navbar-brand-name-breakpoint) {
+        display: none;
+      }
+    }
+
+    .navbar-brand-icon {
+      display: inline;
+      margin-left: @navbar-pf-alt-navbar-brand-icon-margin;
+      margin-right: @navbar-pf-alt-navbar-brand-icon-margin;
+    }
+  }
+
+  .navbar-iconic {
+    margin-right: 0;
+  }
+
+  .navbar-toggle {
+    border: 0;
+    display: block;
+    float: left;
+    margin: @navbar-pf-alt-navbar-toggle-margin;
+
+    &:hover,
+    &:focus {
+      .icon-bar {
+        background: @navbar-pf-alt-navbar-toggle-icon-bar-hover-bg;
+      }
+    }
+
+    + .navbar-brand {
+      margin-left: 0;
+    }
+
+    .icon-bar {
+      background: @navbar-pf-alt-color;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/navbar-vertical.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/navbar-vertical.less
new file mode 100644
index 0000000..dc7ee5a
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/navbar-vertical.less
@@ -0,0 +1,136 @@
+//
+//  Navigation Bar for use with vertical navigation
+// --------------------------------------------------
+
+.navbar-pf-vertical {
+  background-color: @navbar-pf-vertical-bg-color;
+  border: none;
+  border-radius: 0;
+  border-top: @navbar-pf-vertical-border-width @navbar-pf-vertical-border-style @navbar-pf-vertical-border-color;
+  margin-bottom: 0;
+
+  .infotip.bottom-right .arrow {
+    left: 90%;
+  }
+
+  .layout-pf-fixed & {
+    left: 0;
+    position: fixed;
+    right: 0;
+    top: 0;
+    z-index: @zindex-navbar-fixed;
+  }
+
+  .nav {
+    &.navbar-nav > li > .dropdown-menu.infotip {
+      margin-top: 0;
+    }
+
+    .nav-item-iconic {
+      cursor: pointer;
+      line-height: 1;
+      max-height: (@navbar-pf-vertical-height - @navbar-pf-vertical-border-width); // to keep Firefox from oversizing icons
+      padding: @navbar-pf-vertical-nav-item-iconic-padding;
+      position: relative;
+
+      &:hover,
+      &:focus {
+        background-color: transparent;
+
+        .caret,
+        .fa,
+        .glyphicon,
+        .pficon {
+          color: @navbar-pf-vertical-active-color;
+        }
+      }
+
+      .badge {
+        background-color: @notification-badge-color;
+        border-radius: 20px;
+        color: @navbar-pf-vertical-active-color;
+        cursor: pointer;
+        font-size: (@font-size-base - 3);
+        font-weight: 700;
+        margin: 0 0 -11px -12px;
+        min-width: 0;
+        padding: 2px 4px;
+      }
+
+      .caret,
+      .fa,
+      .pficon {
+        color: @navbar-pf-vertical-color;
+        font-size: (@font-size-base + 4);
+      }
+
+      .caret {
+        font-size: @font-size-base;
+        width: auto;
+      }
+
+    }
+
+    .open > .nav-item-iconic {
+      &,
+      &:hover,
+      &:focus {
+        background: transparent;
+
+        .caret,
+        .fa,
+        .pficon {
+          color: @navbar-pf-vertical-active-color;
+        }
+      }
+    }
+  }
+
+  .navbar-brand {
+    color: @navbar-pf-vertical-navbar-brand-color;
+    height: auto;
+    margin: @navbar-pf-vertical-navbar-brand-margin;
+    min-height: @navbar-pf-vertical-navbar-brand-min-height;
+    padding: @navbar-pf-vertical-navbar-brand-padding;
+
+    .navbar-brand-name {
+      display: inline-block;
+      margin: @navbar-pf-vertical-navbar-brand-name-margin;
+      // hide once screen gets too small
+      @media (max-width: @navbar-pf-vertical-navbar-brand-name-breakpoint) {
+        display: none;
+      }
+    }
+
+    .navbar-brand-icon {
+      display: inline-block;
+      margin: @navbar-pf-vertical-navbar-brand-icon-margin;
+    }
+  }
+
+  .navbar-iconic {
+    margin-right: 0;
+  }
+
+  .navbar-toggle {
+    border: 0;
+    display: block;
+    float: left;
+    margin: @navbar-pf-vertical-navbar-toggle-margin;
+
+    &:hover,
+    &:focus {
+      .icon-bar {
+        background: @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;
+      }
+    }
+
+    + .navbar-brand {
+      margin-left: 0;
+    }
+
+    .icon-bar {
+      background: @navbar-pf-vertical-color;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/nav-vertical-alt.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/nav-vertical-alt.less
new file mode 100644
index 0000000..068c812
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/nav-vertical-alt.less
@@ -0,0 +1,168 @@
+//
+// Nav Vertical Alt
+// --------------------------------------------------
+
+.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt {
+  transition: @flyout-transition-pf;
+
+  &.collapsed .list-group-item .list-group-item-value {
+    transition: opacity 0ms 100ms, opacity 100ms linear;
+  }
+
+  .list-group-item {
+    .badge {
+      transition: @flyout-transition-pf;
+    }
+
+    .list-group-item-value {
+      transition: opacity 500ms ease-out;
+      transition-delay: 150ms;
+    }
+  }
+}
+
+.nav-pf-vertical-alt {
+  background: @nav-pf-vertical-alt-bg-color;
+
+  .ie9.layout-pf-alt-fixed & {
+    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box
+  }
+
+  .layout-pf-alt-fixed & {
+    border-right: 1px solid @nav-pf-vertical-alt-border-color;
+    bottom: 0;
+    overflow-x: hidden;
+    overflow-y: auto;
+    left: 0;
+    position: fixed;
+    top: @navbar-pf-alt-height; // move out of way of navbar-pf-alt
+    width: @nav-pf-vertical-alt-width;
+    z-index: @zindex-navbar-fixed;
+
+    &.collapsed {
+      width: @nav-pf-vertical-alt-collapsed-width !important;
+
+      .list-group-item {
+        .badge {
+          padding: 2px 3px;
+          right: 21px;
+          top: 36px;
+        }
+
+        .list-group-item-value {
+          opacity: 0;
+        }
+      }
+    }
+
+    &.hidden {
+      display: none;
+
+      &.show-mobile-nav {
+        box-shadow: 0 0 3px fade(@color-pf-black, 15%);
+        display: block !important;
+      }
+    }
+  }
+
+  .layout-pf-alt-fixed-with-footer & {
+    bottom: @footer-pf-alt-height;
+  }
+
+  .list-group {
+    border-top: 0;
+    margin-bottom: 0;
+  }
+
+  .list-group-item {
+    padding: 0;
+
+    a {
+      color: @gray-dark;
+      display: block;
+      font-size: (@font-size-base + 2);
+      height: @nav-pf-vertical-alt-link-height;
+      padding: @nav-pf-vertical-alt-link-padding;
+      position: relative;
+      white-space: nowrap;
+
+      &:focus {
+        color: @gray-dark;
+        text-decoration: none;
+      }
+
+      &:hover {
+        color: @nav-pf-vertical-alt-active-color;
+        text-decoration: none;
+      }
+    }
+
+    &.active {
+      background-color: @nav-pf-vertical-alt-bg-color;
+      border-color: @list-group-border;
+
+      &:before {
+        background: @nav-pf-vertical-alt-active-color;
+        content: " ";
+        display: block;
+        height: 100%;
+        left: 0;
+        position: absolute;
+        top: 0;
+        width: 5px;
+      }
+
+      a {
+        color: @nav-pf-vertical-alt-active-color;
+      }
+    }
+
+    .badge {
+      background: @gray-dark;
+      border: 1px solid @nav-pf-vertical-alt-bg-color;
+      border-radius: 3px;
+      color: @nav-pf-vertical-alt-badge-color;
+      font-weight: 700;
+      font-size: (@font-size-base - 3);
+      padding: 5px;
+      position: absolute;
+      right: 15px;
+      text-align: center;
+      top: 21px;
+
+      &.notifications {
+        background: @notification-badge-color;
+      }
+    }
+
+    .fa,
+    .glyphicon,
+    .pficon {
+      float: left;
+      font-size: 18px;
+      line-height: 30px;
+      margin-right: 10px;
+      text-align: center;
+      width: 18px;
+    }
+
+    .list-group-item-value {
+      display: inline-block;
+      line-height: 30px;
+      opacity: 1;
+      overflow: hidden;
+      text-overflow: ellipsis;
+      width: 140px;
+    }
+
+  }
+
+  .list-group-item-separator {
+    border-top-width: 5px;
+  }
+
+  .sidebar-pf & {
+    margin-left: (-(@grid-gutter-width / 2));
+    margin-right: (-(@grid-gutter-width / 2));
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/notifications-drawer.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/notifications-drawer.less
new file mode 100644
index 0000000..5a4e8b0
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/notifications-drawer.less
@@ -0,0 +1,163 @@
+//
+// Notifications Drawer
+// --------------------------------------------------
+
+
+.drawer-pf {
+  background-color: @color-pf-black-100;
+  border: 1px solid @card-pf-border-color;
+  .box-shadow(0 6px 12px fade(@color-pf-black, 17.5%));
+  overflow-y: auto;
+  position: absolute;
+  right: 0;
+  width: 320px;
+  z-index: 2;
+  .panel {
+    border-bottom: none;
+    border-left: none;
+    border-right: none;
+  }
+  .panel-group .panel-heading + .panel-collapse .panel-body {
+    border-top: none;
+    border-bottom: 1px solid @card-pf-border-color;
+    padding: 0;
+  }
+  .panel-counter {
+    display: block;
+    font-style: italic;
+    line-height: 1.2;
+    padding-left: 18px;
+    padding-top: 5px;
+  }
+  .panel-heading { border-bottom: 1px solid @card-pf-border-color; }
+  .panel-group {
+    bottom: 0;
+    margin-bottom: 0;
+    position: absolute;
+    top: 25px; // Height of Notifications Drawer box.
+    width: 100%;
+  }
+  .panel-title a {
+    cursor: pointer;
+    display: block;
+  }
+  &.drawer-pf-expanded {
+    left: 270px;
+    width: inherit;
+    .drawer-pf-toggle-expand:before {
+      content: "\f101";
+    }
+  }
+}
+.drawer-pf-toggle-expand {
+  color: inherit;
+  cursor: pointer;
+  left: 0;
+  padding: 2px 5px;
+  position: absolute;
+  &:before {
+    content: "\f100";
+    font-family: "FontAwesome";
+  }
+  &:hover,
+  &:focus {
+    color: inherit;
+    text-decoration: none;
+  }
+}
+
+.drawer-pf-action {
+  .btn-link {
+    color: @link-color;
+    padding: 10px 0;
+
+    &:hover { color: @link-hover-color; }
+  }
+}
+
+.drawer-pf-loading {
+  color: @gray-pf;
+  font-size: (@font-size-base + 2);
+  padding: 20px 15px;
+}
+
+.drawer-pf-notification {
+  border-bottom: 1px solid @card-pf-border-color;
+  padding: 15px;
+  .date {
+    border-right: 1px solid #aaa;
+    display: inline-block;
+    line-height: 1;
+    margin-right: 5px;
+    padding-right: 9px;
+  }
+  .pficon {
+    font-size: @font-size-large;
+    margin-top: 3px;
+  }
+  &:last-of-type {
+    border-bottom: none;
+  }
+  &:hover { background-color: @color-pf-blue-50; }
+  &.unread .drawer-pf-notification-message { font-weight: bold; }
+  &.expanded-notification {
+    .date {
+      border-right: none;
+      padding-right: 0;
+    }
+  }
+}
+
+.drawer-pf-notification-info,
+.drawer-pf-notification-message {
+  display: block;
+  padding-left: 27px;
+  padding-right: 19px;
+  .expanded-notification & {
+    display: inline-block;
+  }
+}
+
+.drawer-pf-notifications-non-clickable .drawer-pf-notification:hover {
+  background-color: @color-pf-white;
+}
+
+.drawer-pf-title {
+  background-color: @color-pf-black-100;
+  border-bottom: 1px solid @card-pf-border-color;
+  position: absolute;
+  width: 318px;
+  h3 {
+    font-size: @font-size-base;
+    margin: 0;
+    padding: 6px 15px;
+  }
+}
+
+/* Exclusive styles to work with Vertical Navigation */
+.navbar-pf-vertical {
+  .drawer-pf {
+    height: calc(~"100vh - 80px");//to create a 20px offset bottom
+    top: 58px; //menu height;
+  }
+  .nav .drawer-pf-trigger {
+    .drawer-pf-trigger-icon {
+      border-left: 1px solid @navbar-pf-navbar-utility-border-color;
+      border-right: 1px solid @navbar-pf-navbar-utility-border-color;
+      padding-left: 15px;
+      padding-right: 15px;
+    }
+    &.open .drawer-pf-trigger-icon {
+      background-color: @navbar-pf-navbar-utility-hover-bg-color;
+    }
+  }
+}
+
+/* Exclusive styles to work with Horizontal Navigation */
+.navbar-pf {
+  .drawer-pf {
+    height: calc(~"100vh - 46px");
+    top: 26px;
+  }
+  .drawer-pf-trigger-icon { cursor: pointer; }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/pager.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/pager.less
new file mode 100644
index 0000000..7cde637
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/pager.less
@@ -0,0 +1,68 @@
+//
+// Pager
+// --------------------------------------------------
+
+.pager {
+  li {
+    > a,
+    > span {
+      .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);
+      color: @gray-pf;
+      font-weight: 600;
+      line-height: 22px;
+      padding: 2px 14px;
+      > .i {
+        font-size: 18px;
+        vertical-align: top;
+        margin: 2px 0;
+      }
+    }
+    a:active {
+      background-image: none;
+      .box-shadow(inset 0 3px 5px fade(@color-pf-black, 12.5%));
+      outline: 0;
+    }
+  }
+  .disabled {
+    > a,
+    > a:hover,
+    > a:focus,
+    > a:active,
+    > span {
+      background: @pagination-bg;
+      .box-shadow(none);
+      color: @pager-disabled-color;
+      cursor: default;
+    }
+  }
+  .next {
+     > a,
+     > span {
+       > .i {
+          margin-left: 5px;
+       }
+     }
+  }
+  .previous {
+     > a,
+     > span {
+       > .i {
+          margin-right: 5px;
+       }
+     }
+  }
+}
+
+.pager-sm {
+  li {
+    > a,
+    > span {
+      font-weight: 400;
+      line-height: 16px;
+      padding: 1px 10px;
+      > .i {
+        font-size: 12px;
+      }
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/pagination.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/pagination.less
new file mode 100644
index 0000000..3c60d2a
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/pagination.less
@@ -0,0 +1,64 @@
+//
+// Pagination
+// --------------------------------------------------
+
+.pagination {
+  > li {
+    > a,
+    > span {
+      .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);
+      cursor: default;
+      font-weight: 600;
+      padding: @padding-base-vertical @padding-large-horizontal;
+      > .i {
+        font-size: 15px;
+        vertical-align: top;
+        margin: 2px 0;
+      }
+    }
+  }
+  > li > a,
+  > li > span {
+    &:active {
+      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));
+    }
+  }
+  > .active > a,
+  > .active > span {
+    &,
+    &:hover,
+    &:focus {
+      background-color: @btn-default-bg;
+      border-color: @pagination-border;
+      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));
+      color: @btn-default-color;
+      #gradient > .vertical(@btn-default-bg-img-start; @btn-default-bg-img-stop);
+    }
+  }
+  > .disabled {
+    > span,
+    > span:hover,
+    > span:focus,
+    > a,
+    > a:hover,
+    > a:focus {
+      .box-shadow(none);
+      cursor: default;
+      #gradient > .vertical(@btn-default-bg-img-start; @btn-default-bg-img-stop);
+    }
+  }
+}
+
+.pagination-sm {
+  .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);
+  > li {
+    > a,
+    > span {
+      font-weight: 400;
+      > .i {
+        font-size: 12px;
+        margin-top: 2px;
+      }
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/panels.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/panels.less
new file mode 100644
index 0000000..f525ac7
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/panels.less
@@ -0,0 +1,58 @@
+//
+// Panels
+// --------------------------------------------------
+
+.panel-title {
+  font-weight: 700;
+}
+
+//
+// Collapsable panels (aka, accordion)
+// --------------------------------------------------
+
+.panel-group {
+  .panel {
+    color: @gray-pf;
+    + .panel {
+      margin-top: -1px;
+    }
+  }
+  .panel-default {
+    border-color: @panel-default-border-color;
+    border-top-color: @panel-default-border-color;
+  }
+  .panel-heading {
+    #gradient > .vertical(@btn-default-bg-img-start, @btn-default-bg-img-stop);
+    + .panel-collapse .panel-body {
+      border-top: 1px solid @panel-inner-border;
+    }
+  }
+  .panel-title {
+    font-weight: 500;
+    line-height: 1;
+    > a {
+      color: @gray-pf;
+      font-weight: @btn-font-weight;
+      &:before {
+        content: "\f107";
+        display: inline-block;
+        font-family: @icon-font-name-fa;
+        font-size: 13px;
+        margin-right: 5px;
+        text-align: center;
+        vertical-align: 0;
+        width: 8px;
+      }
+      &:focus {
+        outline: none;
+        text-decoration: none;
+      }
+      &:hover {
+        text-decoration: none;
+      }
+      &.collapsed:before {
+        content: "\f105";
+      }
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/patternfly.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/patternfly.less
new file mode 100644
index 0000000..a0eec25
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/patternfly.less
@@ -0,0 +1,30 @@
+/* PatternFly */
+
+// OpenSans
+@import "fonts.less";
+// Bootstrap
+@import "lib/bootstrap/bootstrap.less";
+// Font Awesome
+@import "lib/font-awesome/font-awesome.less";
+
+// Bootstrap overrides
+@import "variables.less";
+@import "mixins.less";
+@import "alerts.less";
+@import "badges.less";
+@import "breadcrumbs.less";
+@import "buttons.less";
+@import "dropdowns.less";
+@import "forms.less";
+@import "labels.less";
+@import "list-group.less";
+@import "modals.less";
+@import "pager.less";
+@import "pagination.less";
+@import "panels.less";
+@import "popovers.less";
+@import "progress-bars.less";
+@import "tables.less";
+@import "tabs.less";
+@import "tooltip.less";
+@import "type.less";
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/patternfly-additions.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/patternfly-additions.less
new file mode 100644
index 0000000..86873d3
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/patternfly-additions.less
@@ -0,0 +1,59 @@
+/* PatternFly additions to Bootstrap */
+
+// Bootstrap variables and mixins
+@import "lib/bootstrap/variables.less";
+@import "lib/bootstrap/mixins.less";
+// Font Awesome variables
+@import "lib/font-awesome/variables.less";
+
+// Bootstrap-Combobox
+@import "lib/bootstrap-combobox/combobox.less";
+// Bootstrap-Datepicker
+@import "lib/bootstrap-datepicker/datepicker3.less";
+// Bootstrap-Select
+@import "lib/bootstrap-select/bootstrap-select.less";
+// Bootstrap Switch
+@import "lib/bootstrap-switch/bootstrap-switch.less";
+// Bootstrap Touchspin
+@import (less) "lib/bootstrap-touchspin/jquery.bootstrap-touchspin.css";
+// C3 charts
+@import (less) "lib/c3/c3.css";
+// Bootstrap-DateTimePicker
+@import "lib/eonasdan-bootstrap-datetimepicker/bootstrap-datetimepicker-build.less";
+
+@import "variables.less";
+@import "mixins.less";
+@import "about-modal.less";
+@import "blank-slate.less";
+@import "bootstrap-combobox.less";
+@import "bootstrap-datepicker.less";
+@import "bootstrap-select.less";
+@import "bootstrap-switch.less";
+@import "bootstrap-touchspin.less";
+@import "bootstrap-treeview.less";
+@import "cards.less";
+@import "card-view.less";
+@import "charts.less";
+@import "close.less";
+@import "datatables.less";
+@import "footer.less";
+@import "icons.less";
+@import "infotip.less";
+@import "layouts.less";
+@import "links.less";
+@import "list-view.less";
+@import "login.less";
+@import "navbar.less";
+@import "navbar-alt.less";
+@import "navbar-vertical.less";
+@import "nav-vertical-alt.less";
+@import "notifications-drawer.less";
+@import "search.less";
+@import "sidebar.less";
+@import "spinner.less";
+@import "syntax-highlighting.less";
+@import "time-picker.less";
+@import "toast.less";
+@import "toolbar.less";
+@import "vertical-nav.less";
+@import "wizard.less";
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/popovers.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/popovers.less
new file mode 100644
index 0000000..49689c8
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/popovers.less
@@ -0,0 +1,32 @@
+//
+// Popovers
+// --------------------------------------------------
+
+.popover {
+  .box-shadow(0 2px 2px fade(@color-pf-black, 8%));
+  padding: 0;
+}
+
+.popover-content {
+  color: @gray-pf;
+  line-height: 18px;
+  padding: 10px 14px;
+}
+
+.popover-title {
+  border-bottom: none;
+  border-radius: 0;
+  color: @gray-pf;
+  font-size: (@font-size-base + 1);
+  font-weight: 700;
+  min-height: 34px;
+  .close {
+    height: 22px;
+    position: absolute;
+    right: 8px;
+    top: 6px;
+  }
+  &.closable {
+    padding-right: 30px;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/progress-bars.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/progress-bars.less
new file mode 100644
index 0000000..f45404c
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/progress-bars.less
@@ -0,0 +1,121 @@
+//
+// Progress Bar
+// --------------------------------------------------
+
+@keyframes progress-bar-stripes {
+  from  { background-position: 0 0; }
+  to    { background-position: 40px 0; }
+}
+
+.progress {
+  .box-shadow(inset 0 0 1px fade(@color-pf-black, 25%));
+  &.progress-label-left,
+  &.progress-label-top-right {
+    overflow: visible;
+    position: relative;
+  }
+  &.progress-label-left {
+    margin-left: 40px;
+  }
+  &.progress-sm {
+    height: @progress-sm;
+    margin-bottom: @progress-sm;
+  }
+  &.progress-xs {
+    height: @progress-xs;
+    margin-bottom: @progress-xs;
+  }
+  td > &:first-child:last-child {
+    margin-bottom: 0;
+    margin-top: 3px;
+  }
+}
+
+.progress-bar {
+  box-shadow: none;
+  .progress-label-left & span,
+  .progress-label-right & span,
+  .progress-label-top-right & span {
+    color: @text-color;
+    position: absolute;
+    text-align: right;
+  }
+  .progress-label-left & span {
+    font-size: @font-size-large;
+    left: -40px;
+    top: 0;
+    width: 35px;
+  }
+  .progress-label-right & span,
+  .progress-label-top-right & span {
+    font-size: @font-size-small;
+    overflow: hidden;
+    right: 0;
+    text-overflow: ellipsis;
+    white-space: nowrap;
+    strong {
+      font-weight: 600;
+    }
+  }
+  .progress-label-right & span {
+    max-width: @progress-description-label-width;
+    top: 0;
+  }
+  .progress-label-top-right & span {
+    max-width: 47%;
+    top: (-(@line-height-computed * 1.5)); // -30px
+  }
+  .progress-label-left.progress-sm & span,
+  .progress-label-top-right.progress-sm & span {
+    font-size: @font-size-base;
+  }
+  .progress-sm & {
+    line-height: @progress-sm;
+  }
+  .progress-xs & {
+    line-height: @progress-xs;
+  }
+}
+
+.progress-bar-remaining {
+  background: transparent;
+}
+
+.progress-container {
+  position: relative;
+  &.progress-description-left {
+    padding-left :(@progress-description-label-width + 5);
+  }
+  &.progress-label-right {
+    padding-right :(@progress-description-label-width + 5);
+  }
+}
+
+.progress-description {
+  margin-bottom: (@line-height-computed / 2); // 10px
+  max-width: 52%;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  .count {
+    font-size: (@font-size-base * 1.667); // 20px
+    font-weight: 300;
+    line-height: 1;
+    margin-right: 5px;
+  }
+  .fa,
+  .pficon {
+    font-size: 14px;
+    margin-right: 3px;
+  }
+  .progress-description-left & {
+    left: 0;
+    margin-bottom: 0;
+    max-width: @progress-description-label-width;
+    position: absolute;
+    top: 0;
+  }
+  .tooltip {
+    white-space: normal;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/search.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/search.less
new file mode 100644
index 0000000..450fdcc
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/search.less
@@ -0,0 +1,64 @@
+//
+// Search
+// --------------------------------------------------
+
+.search-pf {
+  &.has-button {
+    border-collapse: separate;
+    display: table;
+    .form-group {
+      display: table-cell;
+      width: 100%;
+      .btn {
+        .box-shadow(none);
+        float: left;
+        margin-left: -1px;
+        &.btn-lg {
+          font-size: (@font-size-large + .5); // to make button height consistent across browsers!
+        }
+        &.btn-sm {
+          font-size: (@font-size-small - .3); // to make button height consistent across browsers!
+        }
+      }
+      .form-control {
+        float: left;
+      }
+    }
+  }
+  .has-clear {
+    .clear {
+      background: fade(@color-pf-white, 0%); // to make the whole button clickable in IE9+
+      border: 0;
+      height: (@input-height-base - 1);
+      line-height: 1;
+      padding: 0;
+      position: absolute;
+      right: 1px;
+      top: 1px;
+      width: 28px;
+      &:focus {
+        outline: none;
+      }
+    }
+    .form-control {
+      padding-right: 30px;
+      &::-ms-clear {
+        display: none;
+      }
+    }
+    .input-lg + .clear {
+      height: (@input-height-large - 2);
+      width: 28px;
+    }
+    .input-sm + .clear {
+      height: (@input-height-small - 2);
+      width: 28px;
+      span {
+        font-size: (@font-size-base - 2);
+      }
+    }
+    .search-pf-input-group {
+      position: relative;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/sidebar.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/sidebar.less
new file mode 100644
index 0000000..64fdb56
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/sidebar.less
@@ -0,0 +1,176 @@
+//
+// Sidebar
+// --------------------------------------------------
+
+.sidebar-header {
+  border-bottom: 1px solid darken(@page-header-border-color, 2%);
+  padding-bottom: ((@line-height-computed / 2) + 1);
+  margin: ((@line-height-computed * 2) + 10) 0 @line-height-computed;
+  .actions {
+    margin-top: -2px;
+  }
+}
+
+.sidebar-pf {
+  .sidebar-header + .list-group {
+    border-top: 0;
+    margin-top: (-@grid-gutter-width / 2 / 2);
+    .list-group-item {
+      background: transparent;
+      border-color: darken(@page-header-border-color, 2%);
+      padding-left: 0;
+    }
+    .list-group-item-heading {
+      font-size: @font-size-base;
+    }
+  }
+  .nav-category {
+    h2 {
+      color: @dropdown-header-color;
+      font-size: @font-size-base;
+      font-weight: 400;
+      line-height: (@line-height-computed + 1);
+      margin: 0;
+      padding: 8px 0;
+    }
+    + .nav-category {
+      margin-top: (@grid-gutter-width / 4);
+    }
+  }
+  .nav-pills > li {
+    &.active > a {
+      background: @dropdown-link-active-bg !important;
+      border-color: @dropdown-link-active-border-color !important;
+      color: @color-pf-white;
+      @media (min-width: @grid-float-breakpoint) {
+        &:after {
+          content: @fa-var-angle-right;
+          font-family: @icon-font-name-fa;
+          display: block;
+          position: absolute;
+          right: (@grid-gutter-width / 2 / 2);
+          top: 1px;
+        }
+      }
+      .fa {
+        color: @color-pf-white;
+      }
+    }
+    > a {
+      border-bottom: 1px solid transparent;
+      border-radius: 0;
+      border-top: 1px solid transparent;
+      color: @text-color;
+      font-size: (@font-size-base + 1);
+      line-height: (@line-height-computed + 1);
+      padding: 1px (@grid-gutter-width / 2);
+      &:hover {
+        background: @dropdown-link-hover-bg;
+        border-color: @dropdown-link-hover-border-color;
+      }
+      .fa {
+        color: lighten(@gray-pf, 12%);
+        font-size: (@font-size-base + 3);
+        margin-right: (@grid-gutter-width / 4);
+        text-align: center;
+        vertical-align: middle;
+        width: (@font-size-base + 3);
+      }
+    }
+  }
+  .nav-stacked {
+    margin-left: (-(@grid-gutter-width / 2));
+    margin-right: (-(@grid-gutter-width / 2));
+    li + li {
+      margin-top: 0;
+    }
+  }
+  .panel {
+    background: transparent;
+  }
+  .panel-body {
+    padding: 6px (@grid-gutter-width / 2);
+    .nav-pills > li > a {
+      padding-left: (@grid-gutter-width / 2 + 17);
+    }
+  }
+  .panel-heading {
+    padding: 9px (@grid-gutter-width / 2);
+  }
+  .panel-title {
+    font-size: @font-size-base;
+    > a {
+      &:before {
+        display: inline-block;
+        margin-left: 1px;
+        margin-right: 4px;
+        width: 9px;
+      }
+      &.collapsed:before {
+        margin-left: 3px;
+        margin-right: 2px;
+      }
+    }
+  }
+}
+
+@media (min-width: @grid-float-breakpoint-max) {
+  .sidebar-header-bleed-left {
+    margin-left: (-(@grid-gutter-width / 2));
+    > h2 {
+      margin-left: (@grid-gutter-width / 2);
+    }
+  }
+  .sidebar-header-bleed-right {
+    margin-right: (-(@grid-gutter-width / 2));
+    .actions {
+      margin-right: (@grid-gutter-width / 2);
+    }
+    > h2 {
+      margin-right: (@grid-gutter-width / 2);
+    }
+    + .list-group {
+      margin-right: (-(@grid-gutter-width / 2));
+    }
+  }
+  .sidebar-pf {
+    .panel-group .panel-default,
+    .treeview {
+      border-left: 0;
+      border-right: 0;
+      margin-left: (-(@grid-gutter-width / 2));
+      margin-right: (-(@grid-gutter-width / 2));
+    }
+    .treeview {
+      margin-top: 5px;
+      .list-group-item {
+        padding-left: (@grid-gutter-width / 2);
+        padding-right: (@grid-gutter-width / 2);
+        &.node-selected:after {
+          content: @fa-var-angle-right;
+          font-family: @icon-font-name-fa;
+          display: block;
+          position: absolute;
+          right: (@grid-gutter-width/2 / 2);
+          top: 1px;
+        }
+      }
+    }
+  }
+}
+
+@media (min-width: @grid-float-breakpoint) {
+  .sidebar-pf {
+    background: @sidebar-pf-bg;
+    &.sidebar-pf-left {
+      border-right: 1px solid @sidebar-pf-border-color;
+    }
+    &.sidebar-pf-right {
+      border-left: 1px solid @sidebar-pf-border-color;
+    }
+    > .nav-category,
+    > .nav-stacked {
+      margin-top: 5px;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/spinner.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/spinner.less
new file mode 100644
index 0000000..cb3b182
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/spinner.less
@@ -0,0 +1,72 @@
+//
+// Spinner
+// --------------------------------------------------
+
+@keyframes rotation {
+  from {transform: rotate(0deg);}
+  to {transform: rotate(359deg);}
+}
+
+.spinner {
+  animation: rotation 600ms infinite linear;
+  border-bottom: 4px solid fade(@color-pf-black, 25%);
+  border-left: 4px solid fade(@color-pf-black, 25%);
+  border-right: 4px solid fade(@color-pf-black, 25%);
+  border-radius: 100%;
+  border-top: 4px solid fade(@color-pf-black, 75%);
+  height: (@font-size-base * 2);
+  margin: 0 auto;
+  position: relative;
+  width: (@font-size-base * 2);
+  &.spinner-inline {
+    display: inline-block;
+    margin-right: 3px;
+  }
+  &.spinner-lg {
+    border-width: 5px;
+    height: (@font-size-base * 2.5);
+    width: (@font-size-base * 2.5);
+  }
+  &.spinner-sm {
+    border-width: 3px;
+    height: (@font-size-base * 1.5);
+    width: (@font-size-base * 1.5);
+  }
+  &.spinner-xs {
+    border-width: 2px;
+    height: @font-size-base;
+    width: @font-size-base;
+  }
+  &.spinner-inverse {
+    border-bottom-color: fade(@color-pf-white, 25%);
+    border-left-color: fade(@color-pf-white, 25%);
+    border-right-color: fade(@color-pf-white, 25%);
+    border-top-color: fade(@color-pf-white, 75%);
+  }
+}
+
+.ie9 .spinner {
+  background: url("@{img-path}/@{img-spinner}") no-repeat;
+  border: 0;
+  &.spinner-inverse {
+    background-image: url("@{img-path}/@{img-spinner-inverse}");
+  }
+  &.spinner-inverse-lg {
+    background-image: url("@{img-path}/@{img-spinner-inverse-lg}");
+  }
+  &.spinner-inverse-sm {
+    background-image: url("@{img-path}/@{img-spinner-inverse-sm}");
+  }
+  &.spinner-inverse-xs {
+    background-image: url("@{img-path}/@{img-spinner-inverse-xs}");
+  }
+  &.spinner-lg {
+    background-image: url("@{img-path}/@{img-spinner-lg}");
+  }
+  &.spinner-sm {
+    background-image: url("@{img-path}/@{img-spinner-sm}");
+  }
+  &.spinner-xs {
+    background-image: url("@{img-path}/@{img-spinner-xs}");
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/syntax-highlighting.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/syntax-highlighting.less
new file mode 100644
index 0000000..125cc0d
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/syntax-highlighting.less
@@ -0,0 +1,36 @@
+//
+// Syntax Highlighting for google-code-prettify
+// --------------------------------------------------
+
+.prettyprint {
+  .atn,
+  .com,
+  .fun,
+  .var {
+    color: @syntax-3;
+  }
+
+  .atv,
+  .str {
+    color: @syntax-1;
+  }
+
+  .clo,
+  .dec,
+  .kwd,
+  .opn,
+  .pln,
+  .pun {
+    color: @syntax-2;
+  }
+
+  .lit,
+  .tag,
+  .typ {
+    color: @syntax-4;
+  }
+
+  ol.linenums {
+    margin-bottom: 0;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/tables.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/tables.less
new file mode 100644
index 0000000..453e23c
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/tables.less
@@ -0,0 +1,90 @@
+//
+// Tables
+// --------------------------------------------------
+
+.table {
+  > thead,
+  > tbody,
+  > tfoot {
+    > tr {
+      > th,
+      > td {
+        padding: @table-cell-padding-top @table-cell-padding @table-cell-padding-bottom;
+        > a:hover {
+          text-decoration: none;
+        }
+      }
+      > th {
+        font-family: "Open Sans";
+        font-style: normal;
+        font-weight: 600;
+      }
+    }
+  }
+  > thead {
+    background-clip: padding-box;
+    background-color: @color-pf-black-150;
+    #gradient > .vertical(@start-color: @color-pf-black-100; @end-color: @color-pf-black-200; @start-percent: 0%; @end-percent: 100%);
+  }
+}
+
+.table-bordered {
+  border: 1px solid @table-border-color;
+  > thead,
+  > tbody,
+  > tfoot {
+    > tr {
+      > th,
+      > td {
+        border: 1px solid @table-border-color;
+      }
+    }
+  }
+  > thead > tr {
+    > th,
+    > td {
+      border-bottom-width: 1px;
+    }
+  }
+}
+
+.table-striped {
+  > tbody > tr {
+    &:nth-of-type(even) {
+      background-color: @table-bg-accent;
+    }
+    &:nth-of-type(odd) {
+      background-color: transparent;
+    }
+  }
+}
+
+.table-hover {
+  > tbody > tr:hover {
+    > td,
+    > th {
+      background-color: @table-bg-hover;
+      border-bottom-color: @table-border-hover;
+    }
+  }
+}
+
+.table-treegrid {
+  span.indent {
+    margin-left: 10px;
+    margin-right: 10px;
+  }
+  span.icon {
+    display: inline-block;
+    font-size: 13px;
+    margin-right: 5px;
+    min-width: 10px;
+    text-align: center;
+  }
+  span.expand-icon, span.collapse-icon {
+    cursor: pointer;
+  }
+  > tbody > tr.odd {
+    background-color: @table-bg-accent;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/tabs.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/tabs.less
new file mode 100644
index 0000000..4d6e615
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/tabs.less
@@ -0,0 +1,118 @@
+//
+// Tabs
+// --------------------------------------------------
+
+.nav-tabs {
+  font-size: @font-size-large;
+  > li {
+    > a {
+      color: @nav-tabs-color;
+      margin-right: -1px;
+      padding-bottom: 5px;
+      padding-top: 5px;
+      &:active,
+      &:focus,
+      &:hover {
+        background: transparent;
+        border-color: @nav-tabs-border-color;
+        color: @gray-darker;
+      }
+    }
+    > .dropdown-menu {
+      border-top: 0;
+      border-color: @nav-tabs-border-color;
+      &.pull-right {
+        right: -1px;
+      }
+    }
+  }
+  + .nav-tabs-pf {
+    font-size: @font-size-base;
+    > li:first-child > a {
+      padding-left: 15px;
+      &:before {
+        left: 15px !important;
+      }
+    }
+  }
+  .open > a {
+    &,
+    &:hover,
+    &:focus {
+      background-color: transparent;
+      border-color: @nav-tabs-border-color;
+    }
+  }
+}
+
+.nav-tabs-pf {
+  &.nav-justified {
+    @media (min-width: @grid-float-breakpoint) {
+      border-bottom: 1px solid @nav-tabs-justified-link-border-color;
+    }
+    > li {
+      &:first-child > a {
+        padding-left: 15px;
+      }
+      > a {
+        border-bottom: 0;
+        &:before {
+          left: 0 !important;
+          right: 0 !important;
+        }
+      }
+    }
+  }
+  > li {
+    margin-bottom: 0;
+    &.active > a {
+      .tab-indicator(@background: @nav-tabs-active-link-hover-color);
+      &,
+      &:active,
+      &:focus,
+      &:hover {
+        background-color: transparent;
+        border: 0 !important;
+        color: @link-color;
+        &:before {
+          background: @nav-tabs-active-link-hover-color;
+        }
+      }
+    }
+    &:first-child {
+      > a {
+        padding-left: 0;
+        &:before {
+          left: 0 !important;
+        }
+      }
+    }
+    > a {
+      border: 0;
+      line-height: 1;
+      margin-right: 0;
+      padding-bottom: 10px;
+      padding-top: 10px;
+      &:active,
+      &:focus,
+      &:hover {
+        .tab-indicator()
+      }
+    }
+    > .dropdown-menu {
+      left: 15px;
+      margin-top: 1px;
+      &.pull-right {
+        left: auto;
+        right: 15px;
+      }
+    }
+  }
+  .open > a {
+    &,
+    &:hover,
+    &:focus {
+      background-color: transparent;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/time-picker.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/time-picker.less
new file mode 100644
index 0000000..9af4f9a
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/time-picker.less
@@ -0,0 +1,78 @@
+//
+// Time Picker
+// --------------------------------------------------
+@bs-datetimepicker-timepicker-font-size: 1em;
+@bs-datetimepicker-btn-hover-bg: transparent;
+.bootstrap-datetimepicker-widget {
+  a[data-action] {
+    border: 0;
+    box-shadow: none;
+    color: @gray-dark;
+    display: block;
+    padding-bottom: 4px;
+    padding-top: 4px;
+    &:hover { color: @link-color; }
+  }
+  &.dropdown-menu {
+    left: 0!important;
+    padding: 0;
+    top: 23px!important;
+    width: calc(~"100% - 25px");
+    &:before, &:after {
+      content: none;
+    }
+  }
+  .timepicker-hour {
+    width: 100%;
+    &:after {
+      content: ":";
+      float: right;
+    }
+  }
+}
+.timepicker-hours,
+.timepicker-minutes {
+  table td {
+    font-weight: bold;
+    line-height: 30px;
+    height: 30px;
+    &:hover { color: @link-color; }
+  }
+  .table-condensed > tbody > tr > td { padding: 0; }
+}
+.time-picker-pf {
+  .input-group-addon {
+    .fa,
+    .pficon { width: 12px; }
+    &:not(.active) { box-shadow: none; }
+  }
+}
+.timepicker-picker {
+  table td {
+    span,
+    a span {
+      height: 24px;
+      line-height: 24px;
+      margin: 0;
+      width: 100%;
+    }
+  }
+  .table-condensed > tbody > tr > td {
+    height: 25px;
+    line-height: 18px;
+    padding: 0;
+  }
+  button[data-action] { // provisional until the button is removed
+    padding-bottom: 0;
+    padding-top: 0;
+  }
+  .separator { display: none; }
+  tr:nth-child(2) td {
+    background-color: @dropdown-link-hover-bg;
+    border-color: @dropdown-link-hover-border-color;
+    border-style: solid;
+    border-width: 1px;
+    border-left: 0;
+    border-right: 0;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/toast.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/toast.less
new file mode 100644
index 0000000..c16a612
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/toast.less
@@ -0,0 +1,69 @@
+//
+// Toast notifications
+// --------------------------------------------------
+
+.toast-pf {
+  background-color: @color-pf-white;
+  border-color: @color-pf-black-400;
+  box-shadow: 0 2px 6px fade(@color-pf-black, 20%);
+  padding-left: 68px; //15px space between the icon and the text
+  &.alert-danger > .pficon  { background-color: @alert-danger-border; }
+  &.alert-info > .pficon    { background-color: @alert-info-border; }
+  &.alert-success > .pficon { background-color: @alert-success-border; }
+  &.alert-warning > .pficon { background-color: @alert-warning-border; }
+  .dropdown-kebab-pf { margin-left: 10px; }
+  > .pficon {
+    background-color: @gray-pf;
+    bottom:  -1px;
+    box-shadow: 2px 0 5px -2px fade(@color-pf-black, 20%);
+    left: -1px;
+    padding-top: 10px;
+    text-align: center;
+    top: -1px;
+    width: 53px;
+    &:before { color: fade(@color-pf-white, 74%); }
+  }
+  .toast-pf-action {
+    margin-left: 15px;
+  }
+  /* Medium devices (desktops, 992px and up) */
+  @media (min-width: @screen-md-min) {
+    display: inline-block;
+  }
+}
+// Sets max width on toast notifications
+.toast-pf-max-width {
+ @media (min-width: @screen-md-min) {
+    max-width: 31.1%; // sets the size to 4 cols;
+  }
+}
+// To position the notification on the top right corner, used in context on cards layout
+.toast-pf-top-right {
+  left: (@grid-gutter-width / 2);
+  position: absolute;
+  right: (@grid-gutter-width / 2);
+  top: 12px;
+  z-index: 1035; // More than @zindex-navbar-fixed and less than @zindex-modal-background
+  /* Medium devices (desktops, 992px and up) */
+  @media (min-width: @screen-md-min) {
+    left: auto;
+  }
+}
+
+.toast-notifications-list-pf {
+  margin-left: (@grid-gutter-width / 2);
+  position: fixed;
+  right: (@grid-gutter-width / 2);
+  top: (@grid-gutter-width / 2);
+  z-index: 1050;
+  .toast-pf {
+    clear: both;
+    float: right;
+  }
+  @media (min-width: @screen-sm-min) {
+    max-width: calc(50%);
+  }
+  @media (min-width: @screen-md-min) {
+    max-width: calc(33.1% ); // sets the size to 4 cols;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/toolbar.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/toolbar.less
new file mode 100644
index 0000000..e78687e
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/toolbar.less
@@ -0,0 +1,177 @@
+//
+// Toolbar (Filter and view options)
+// --------------------------------------------------
+
+.toolbar-pf {
+  background: @color-pf-white;
+  border-bottom: 1px solid @sidebar-pf-border-color;
+  box-shadow: 0 1px 0px fade(@color-pf-black, 4.5%);
+  padding-top: (@grid-gutter-width/4);
+  .form-group {
+    margin-bottom: (@grid-gutter-width/4);
+    @media (min-width: @grid-float-breakpoint) {
+      border-right: 1px solid @sidebar-pf-border-color;
+      float: left;
+      margin-bottom: 0;
+      padding-left: (@grid-gutter-width/2);
+      padding-right: (@grid-gutter-width/2);
+    }
+    &:last-child {
+      border-right: 0;
+      margin-bottom: 0;
+      padding-right: 0;
+    }
+    .btn,
+    .btn-group {
+      + .btn,
+      + .btn-group { margin-left: 5px; }
+      + .btn-link,
+      + .dropdown { margin-left: 10px; }
+    }
+    .btn-link {
+      color: @gray-darker;
+      font-size: (@font-size-base + 4);
+      line-height: 1;
+      padding: 4px 0;
+      &:active,
+      &:focus,
+      &:hover { color: @link-color; }
+    }
+  }
+}
+.toolbar-pf-actions {
+  display: table;
+  width: 100%;
+  @media (min-width: @grid-float-breakpoint) {
+    .toolbar-pf-filter {
+      padding-left: 0;
+      width: 25%;
+    }
+  }
+}
+.toolbar-pf-view-selector {
+  font-size: (@font-size-base + 4);
+  .btn-link.active {
+    color: @link-color;
+    cursor: default;
+  }
+}
+.toolbar-pf-action-right {
+  float: right;
+  @media (max-width: @grid-float-breakpoint) {
+    float: none;
+  }
+}
+.toolbar-pf-find {
+  font-size: (@font-size-base + 2);
+  position: relative;
+}
+.find-pf-dropdown-container {
+  background: @color-pf-white;
+  border: solid 1px @color-pf-black-400;
+  display: none;
+  left: -200px;
+  padding: 5px;
+  position: absolute;
+  top: 35px;
+  width: 300px;
+  z-index: 10000;
+  @media (max-width: @grid-float-breakpoint) {
+    left: 30px;
+    top: -5px;
+    width: calc(100% - 30px);
+  }
+  &:before,
+  &:after {
+    content: "";
+    position: absolute;
+  }
+  &:before {
+    border-bottom:11px solid @color-pf-black-400;
+    border-left:11px solid transparent;
+    border-right:11px solid transparent;
+    left: 215px;
+    top: -12px;
+    @media (max-width: @grid-float-breakpoint) {
+      border-bottom:11px solid transparent;
+      border-right:11px solid @color-pf-black-400;
+      border-top:11px solid transparent;
+      left: -22px;
+      top: 8px;
+    }
+  }
+  &:after {
+    border-bottom:10px solid @color-pf-white;
+    border-left:10px solid transparent;
+    border-right:10px solid transparent;
+    left: 216px;
+    top: -10px;
+    @media (max-width: @grid-float-breakpoint) {
+      border-bottom:10px solid transparent;
+      border-right:10px solid @color-pf-white;
+      border-top:10px solid transparent;
+      left: -20px;
+      top: 9px;
+    }
+  }
+  input {
+    height: 30px;
+    padding: 5px 117px 5px 5px; // 112px (components) + 5px (offset)
+    width: 100%;
+  }
+  .find-pf-buttons {
+    position: absolute;
+    right: 10px;
+    top: 5px;
+    .btn {
+      border: none;
+      cursor: pointer;
+      margin-left: 0 !important;
+      padding: 0;
+      width: 18px;
+      .fa-angle-up,
+      .fa-angle-down {
+        font-weight: bold;
+        font-size: (@font-size-base + 6);
+      }
+      .pficon-close { font-size: (@font-size-base + 2); }
+    }
+    span {
+      height: 30px;
+      line-height: 30px;
+      vertical-align: middle;
+    }
+    .find-pf-nums {
+      color: @color-pf-black-500;
+      margin-right: 3px;
+    }
+  }
+}
+
+.toolbar-pf-results {
+  border-top: 1px solid @sidebar-pf-border-color;
+  margin-top: (@grid-gutter-width/4);
+  h5,
+  p,
+  ul {
+    display: inline-block;
+    line-height: (@grid-gutter-width/1.5);
+    margin-bottom: 0;
+    margin-top: 0;
+    @media (min-width: @screen-sm-min) {
+      line-height: @grid-gutter-width;
+    }
+  }
+  h5 {
+    font-weight: 700;
+    margin-right: 20px;
+  }
+  .label {
+    font-size: (@font-size-base - 1);
+    a {
+      color: @color-pf-white;
+      display: inline-block;
+      margin-left: 5px;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/tooltip.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/tooltip.less
new file mode 100644
index 0000000..8b5d0da
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/tooltip.less
@@ -0,0 +1,15 @@
+//
+// Tooltips
+// --------------------------------------------------
+
+// Base class
+.tooltip {
+  font-size: @tooltip-font-size;
+  line-height: 1.4;
+}
+
+// Wrapper for the tooltip content
+.tooltip-inner {
+  padding: 7px 12px;
+  text-align: left;
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/type.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/type.less
new file mode 100644
index 0000000..098700f
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/type.less
@@ -0,0 +1,29 @@
+//
+// Typography
+// --------------------------------------------------
+
+h1,
+.h1,
+h2,
+.h2 {
+  font-weight: 300;
+}
+
+.page-header .actions {
+  margin-top: 8px;
+  a > .pficon {
+    margin-right: 4px;
+  }
+}
+
+@media (min-width: @grid-float-breakpoint-max) {
+  .page-header-bleed-left {
+    margin-left: (-(@grid-gutter-width / 2));
+  }
+  .page-header-bleed-right {
+    margin-right: ((-@grid-gutter-width / 2));
+    .actions {
+      margin-right: (@grid-gutter-width / 2);
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/variables.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/variables.less
new file mode 100644
index 0000000..080d306
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/variables.less
@@ -0,0 +1,427 @@
+//
+// Variables
+// --------------------------------------------------
+// Bootstrap overrides and PatternFly-specific variables
+
+// PatternFly-specific
+// -------------------
+@import "color-variables.less";
+
+@bootstrap-switch-handle-default-bg-color:                          @color-pf-black-100;
+@bootstrap-treeview-highlight-color:                                @color-pf-blue-300;
+@btn-default-bg-img-start:                                          @color-pf-black-100;
+@btn-default-bg-img-stop:                                           @color-pf-black-200;
+@btn-xs-font-weight:                                                400;
+@card-pf-accented-border-top-color:                                 @color-pf-blue-300;
+@card-pf-aggregate-status-title-icon-color:                         @color-pf-black-900;
+@card-pf-bg-color:                                                  @color-pf-white;
+@card-pf-border-color:                                              @color-pf-black-300;
+@card-pf-border-top-color:                                          transparent;
+@card-pf-container-bg-color:                                        @color-pf-black-150;
+@card-pf-footer-bg-color:                                           @color-pf-black-100;
+@card-pf-selected-border-color:                                     @color-pf-blue-300;
+@donut-font-size-big:                                               30px;
+@dropdown-divider-margin:                                           4px 1px;
+@dropdown-link-active-border-color:                                 @color-pf-blue;
+@dropdown-link-hover-border-color:                                  @color-pf-blue-100;
+@dropdown-link-focus-color:                                         @color-pf-white;
+@flyout-transition-pf:                                              all 200ms cubic-bezier(.35, 0, .25, 1);
+@font-family-monospace:                                             Menlo, Monaco, Consolas, monospace;
+@font-path:                                                         "../fonts";
+@footer-pf-bg-color:                                                @color-pf-black;
+@footer-pf-padding-left:                                            25px;
+@footer-pf-padding-top:                                             10px;
+@footer-pf-height:                                                  37px;
+@gray-light-pf:                                                     @color-pf-black-400;
+@gray-pf:                                                           @color-pf-black-700;
+@icon-font-name-fa:                                                 "FontAwesome";
+@icon-font-name-pf:                                                 "PatternFlyIcons-webfont";
+@icon-prefix:                                                       pficon;
+@img-bg-login:                                                      "bg-login.jpg";
+@img-path:                                                          "../img";
+@img-spinner:                                                       "spinner.gif";
+@img-spinner-inverse:                                               "spinner-inverse.gif";
+@img-spinner-inverse-lg:                                            "spinner-inverse-lg.gif";
+@img-spinner-inverse-sm:                                            "spinner-inverse-sm.gif";
+@img-spinner-inverse-xs:                                            "spinner-inverse-xs.gif";
+@img-spinner-lg:                                                    "spinner-lg.gif";
+@img-spinner-sm:                                                    "spinner-sm.gif";
+@img-spinner-xs:                                                    "spinner-xs.gif";
+@input-border-hover:                                                @color-pf-blue-200;
+@input-border-focus:                                                @color-pf-blue-400;
+@list-view-accented-border:                                         @color-pf-blue-300;
+@list-view-active-bg:                                               @color-pf-blue-50;
+@list-view-divider:                                                 @color-pf-black-300;
+@list-view-hover-bg:                                                @color-pf-black-200;
+@list-group-top-border:                                             @color-pf-black-200;
+@login-bg-color:                                                    @color-pf-black;
+@login-container-bg-color-rgba:                                     fade(@color-pf-white, 5.5%);
+@modal-about-pf-bg-img:                                             "bg-modal-about-pf.png";
+@modal-title-padding-horizontal:                                    18px;
+@modal-title-padding-vertical:                                      10px;
+@navbar-pf-active-color:                                            @color-pf-black-150;
+@navbar-pf-alt-active-color:                                        @color-pf-white;
+@navbar-pf-alt-bg-color:                                            @color-pf-black;
+@navbar-pf-alt-bg-img:                                              "bg-navbar-pf-alt.svg";
+@navbar-pf-bg-color:                                                @color-pf-black;
+@navbar-pf-border-color:                                            @color-pf-blue-300;
+@navbar-pf-color:                                                   @color-pf-black-300;
+@navbar-pf-height:                                                  60px;
+@navbar-pf-icon-bar-bg-color:                                       @color-pf-white;
+@navbar-pf-navbar-navbar-brand-min-width:                           270px;
+@navbar-pf-navbar-navbar-brand-padding:                             8px 0 7px;
+@navbar-pf-navbar-navbar-persistent-bg-color:                       @color-pf-black-150;
+@navbar-pf-navbar-navbar-persistent-border-color:                   @color-pf-black-300;
+@navbar-pf-vertical-active-color:                                   @color-pf-white;
+@navbar-pf-vertical-bg-color:                                       #1d1d1d;
+@navbar-pf-vertical-bg-repeat:                                      no-repeat;
+@navbar-pf-vertical-bg-size:                                        auto 100%;
+@navbar-pf-vertical-border-color:                                   @color-pf-blue-300;
+@navbar-pf-vertical-border-style:                                   solid;
+@navbar-pf-vertical-border-width:                                   2px;
+@navbar-pf-vertical-color:                                          @color-pf-black-300;
+@navbar-pf-vertical-height:                                         60px;
+@navbar-pf-vertical-icon-bar-bg-color:                              @color-pf-white;
+@navbar-pf-vertical-navbar-brand-color:                             @color-pf-white;
+@navbar-pf-vertical-navbar-brand-icon-margin:                       0 15px 0 0;
+@navbar-pf-vertical-navbar-brand-margin:                            0 0 0 25px;
+@navbar-pf-vertical-navbar-brand-min-height:                        35px;
+@navbar-pf-vertical-navbar-brand-name-breakpoint:                   480px;
+@navbar-pf-vertical-navbar-brand-name-margin:                       0 15px 0 0;
+@navbar-pf-vertical-navbar-brand-padding:                           11px 0 12px;
+@navbar-pf-vertical-navbar-toggle-margin:                           13px 15px;
+@navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg:                @color-pf-white;
+@navbar-pf-vertical-nav-item-iconic-padding:                        21px 12px;
+@nav-pf-container-transition-period:                                250ms;
+@nav-pf-menu-transition-period:                                     100ms;
+@nav-pf-vertical-active-color:                                      @color-pf-white;
+@nav-pf-vertical-active-before-color:                               @color-pf-blue-300;
+@nav-pf-vertical-active-bg-color:                                   @color-pf-black-800;
+@nav-pf-vertical-active-border-color:                               @color-pf-black-900;
+@nav-pf-vertical-active-font-weight:                                600;
+@nav-pf-vertical-active-icon-color:                                 @color-pf-blue-300;
+@nav-pf-vertical-badge-color:                                       @color-pf-white;
+@nav-pf-vertical-badge-bg-color:                                    @color-pf-black-900;
+@nav-pf-vertical-bg-color:                                          @color-pf-black-900;
+@nav-pf-vertical-border-color:                                      @color-pf-black-900;
+@nav-pf-vertical-collapsed-width:                                   75px;
+@nav-pf-vertical-color:                                             @color-pf-black-300;
+@nav-pf-vertical-font-weight:                                       400;
+@nav-pf-vertical-icon-color:                                        @color-pf-black-600;
+@nav-pf-vertical-icon-width:                                        24px;
+@nav-pf-vertical-item-border-color:                                 @color-pf-black;
+@nav-pf-vertical-link-height:                                       63px;
+@nav-pf-vertical-link-padding:                                      17px 20px 17px 25px;
+@nav-pf-vertical-secondary-active-color:                            @color-pf-white;
+@nav-pf-vertical-secondary-active-bg-color:                         @color-pf-black-700;
+@nav-pf-vertical-secondary-active-icon-color:                       @color-pf-blue-300;
+@nav-pf-vertical-secondary-badge-color:                             @color-pf-white;
+@nav-pf-vertical-secondary-badge-bg-color:                          @color-pf-black-900;
+@nav-pf-vertical-secondary-border-color:                            @color-pf-blue-300;
+@nav-pf-vertical-secondary-color:                                   @color-pf-white;
+@nav-pf-vertical-secondary-header-margin:                           18px 20px 10px 20px;
+@nav-pf-vertical-secondary-indicator-color:                         @color-pf-black-600;
+@nav-pf-vertical-secondary-indicator-padding:                       14px 0;
+@nav-pf-vertical-secondary-item-color:                              @color-pf-black-300;
+@nav-pf-vertical-secondary-item-padding:                            0 0 5px 0;
+@nav-pf-vertical-secondary-link-height:                             63px;
+@nav-pf-vertical-secondary-link-padding:                            4px 0 2px 0;
+@nav-pf-vertical-secondary-list-header-margin:                      30px 20px 10px 20px;
+@nav-pf-vertical-tertiary-active-color:                            @color-pf-white;
+@nav-pf-vertical-tertiary-active-bg-color:                          @color-pf-black-800;
+@nav-pf-vertical-tertiary-indicator-padding:                        0;
+@nav-pf-vertical-tertiary-bg-color:                                 @color-pf-black-700;
+@nav-pf-vertical-tertiary-color:                                    #fff;
+@nav-pf-vertical-tertiary-header-margin:                            18px 20px 10px 20px;
+@nav-pf-vertical-tertiary-list-header-margin:                       30px 20px 10px 20px;
+@nav-pf-vertical-tertiary-item-padding:                             0 0 5px 0;
+@nav-pf-vertical-tertiary-item-color:                               @color-pf-black-300;
+@nav-pf-vertical-tertiary-link-margin:                              0 20px 0 20px;
+@nav-pf-vertical-tertiary-link-padding:                             4px 0 2px 0;
+@nav-pf-vertical-tertiary-badge-color:                              @color-pf-white;
+@nav-pf-vertical-tertiary-badge-bg-color:                           @color-pf-black-900;
+@nav-pf-vertical-width:                                             200px;
+@pagination-padding-small-vertical:                                 0;
+@panel-default-border-color:                                        @color-pf-black-400;
+@pficon-var-add-circle-o:                                           "\e61b";
+@pficon-var-middleware:                                             "\e917";
+@pficon-var-blueprint:                                              "\e915";
+@pficon-var-build:                                                  "\e902";
+@pficon-var-builder-image:                                          "\e800";
+@pficon-var-bundle:                                                 "\e918";
+@pficon-var-close:                                                  "\e60b";
+@pficon-var-cloud-security:                                         "\e903";
+@pficon-var-cloud-tenant:                                           "\e904";
+@pficon-var-cluster:                                                "\e620";
+@pficon-var-container-node:                                         "\e621";
+@pficon-var-cpu:                                                    "\e905";
+@pficon-var-delete:                                                 "\e611";
+@pficon-var-edit:                                                   "\e60a";
+@pficon-var-enterprise:                                             "\e906";
+@pficon-var-error-circle-o:                                         "\e61d";
+@pficon-var-export:                                                 "\e616";
+@pficon-var-flag:                                                   "\e603";
+@pficon-var-flavor:                                                 "\e907";
+@pficon-var-folder-close:                                           "\e607";
+@pficon-var-folder-open:                                            "\e606";
+@pficon-var-help:                                                   "\e605";
+@pficon-var-history:                                                "\e617";
+@pficon-var-home:                                                   "\e618";
+@pficon-var-image:                                                  "\e61f";
+@pficon-var-import:                                                 "\e615";
+@pficon-var-info:                                                   "\e604";
+@pficon-var-kubernetes:                                             "\e627";
+@pficon-var-memory:                                                 "\e908";
+@pficon-var-network:                                                "\e909";
+@pficon-var-ok:                                                     "\e602";
+@pficon-var-openshift:                                              "\e626";
+@pficon-var-private:                                                "\e914";
+@pficon-var-print:                                                  "\e612";
+@pficon-var-project:                                                "\e622";
+@pficon-var-regions:                                                "\e90a";
+@pficon-var-registry:                                               "\e623";
+@pficon-var-replicator:                                             "\e624";
+@pficon-var-repository:                                             "\e90b";
+@pficon-var-resource-pool:                                          "\e90c";
+@pficon-var-resources-almost-full:                                  "\e912";
+@pficon-var-resources-full:                                         "\e913";
+@pficon-var-restart:                                                "\e613";
+@pficon-var-route:                                                  "\e625";
+@pficon-var-running:                                                "\e614";
+@pficon-var-save:                                                   "\e601";
+@pficon-var-screen:                                                 "\e600";
+@pficon-var-server:                                                 "\e90d";
+@pficon-var-service:                                                "\e61e";
+@pficon-var-settings:                                               "\e610";
+@pficon-var-storage-domain:                                         "\e90e";
+@pficon-var-tenant:                                                 "\e916";
+@pficon-var-thumb-tack-o:                                           "\e609";
+@pficon-var-topology:                                               "\e608";
+@pficon-var-trend-down:                                             "\e900";
+@pficon-var-trend-up:                                               "\e901";
+@pficon-var-user:                                                   "\e60e";
+@pficon-var-users:                                                  "\e60f";
+@pficon-var-virtual-machine:                                        "\e90f";
+@pficon-var-volume:                                                 "\e910";
+@pficon-var-warning-triangle-o:                                     "\e61c";
+@pficon-var-zone:                                                   "\e911";
+@progress-description-label-width:                                  85px;
+@sidebar-pf-bg:                                                     @color-pf-black-100;
+@sidebar-pf-border-color:                                           @color-pf-black-300;
+@table-border-hover:                                                @color-pf-blue-200;
+@table-cell-padding-bottom:                                         3px;
+@table-cell-padding-top:                                            2px;
+// Reference variables declared in block above
+@bootstrap-switch-bg-color-start:                                   @btn-default-bg-img-start;
+@bootstrap-switch-bg-color-stop:                                    @btn-default-bg-img-stop;
+@fa-font-path:                                                      @font-path;
+@navbar-pf-navbar-header-border-color:                              lighten(@navbar-pf-bg-color, 15%);
+@navbar-pf-navbar-nav-active-active-bg-color:                       lighten(@navbar-pf-bg-color, 8%);
+@navbar-pf-navbar-nav-active-active-open-bg-color:                  lighten(@navbar-pf-bg-color, 11%);
+@navbar-pf-navbar-nav-active-bg-color:                              lighten(@navbar-pf-bg-color, 12.5%);
+@navbar-pf-navbar-primary-bg-color-start:                           lighten(@navbar-pf-bg-color, 10%); // #474C50
+@navbar-pf-navbar-primary-bg-color-stop:                            @navbar-pf-bg-color; // #383F43
+@navbar-pf-navbar-utility-border-color:                             lighten(@navbar-pf-bg-color, 15.5%);
+@navbar-pf-navbar-utility-color:                                    @navbar-pf-color;
+@navbar-pf-navbar-utility-hover-bg-color:                           lighten(@navbar-pf-bg-color, 12.5%);
+@nav-pf-vertical-secondary-bg-color:                                @nav-pf-vertical-active-bg-color;
+@nav-tabs-color:                                                    @gray-pf;
+// Reference variables declared in block above
+@navbar-pf-navbar-primary-context-bg-color-start:                   lighten(@navbar-pf-navbar-primary-bg-color-start, 8.5%);
+@navbar-pf-navbar-primary-context-bg-color-stop:                    lighten(@navbar-pf-navbar-primary-bg-color-stop, 11%);
+@navbar-pf-navbar-primary-hover-bg-color-start:                     lighten(@navbar-pf-navbar-primary-bg-color-start, 10%);
+@navbar-pf-navbar-primary-hover-bg-color-stop:                      lighten(@navbar-pf-navbar-primary-bg-color-stop, 10%);
+@navbar-pf-navbar-primary-hover-border-color:                       lighten(@navbar-pf-navbar-header-border-color, 20%);
+@navbar-pf-navbar-primary-context-border-color:                     lighten(@navbar-pf-navbar-header-border-color, 8%);
+@navbar-pf-navbar-primary-context-border-top-color:                 lighten(@navbar-pf-navbar-header-border-color, 7%);
+@navbar-pf-navbar-utility-hover-border-color:                       lighten(@navbar-pf-navbar-utility-border-color, 5%);
+@navbar-pf-navbar-utility-open-bg-color:                            lighten(@navbar-pf-navbar-utility-hover-bg-color, 7.5%);
+@navbar-pf-navbar-utility-open-border-color:                        lighten(@navbar-pf-navbar-utility-hover-border-color, 5%);
+// Reference variables declared in block above
+@navbar-pf-navbar-primary-active-bg-color-start:                    lighten(@navbar-pf-navbar-primary-hover-bg-color-start, 5%);
+@navbar-pf-navbar-primary-active-bg-color-stop:                     lighten(@navbar-pf-navbar-primary-hover-bg-color-stop, 7.5%);
+@navbar-pf-navbar-primary-active-border-color:                      lighten(@navbar-pf-navbar-primary-hover-border-color, 5%);
+@navbar-pf-navbar-primary-context-hover-bg-color-start:             lighten(@navbar-pf-navbar-primary-context-bg-color-start, 5%);
+@navbar-pf-navbar-primary-context-hover-bg-color-stop:              lighten(@navbar-pf-navbar-primary-context-bg-color-stop, 7.5%);
+@navbar-pf-navbar-primary-context-hover-border-color:               lighten(@navbar-pf-navbar-primary-context-border-color, 5%);
+@navbar-pf-navbar-primary-context-hover-border-top-color:           lighten(@navbar-pf-navbar-primary-context-border-top-color, 6%);
+// Reference variables declared in block above
+@navbar-pf-navbar-primary-context-active-bg-color-start:            lighten(@navbar-pf-navbar-primary-context-hover-bg-color-start, 5%);
+@navbar-pf-navbar-primary-context-active-bg-color-stop:             lighten(@navbar-pf-navbar-primary-context-hover-bg-color-stop, 7.5%);
+@navbar-pf-navbar-primary-context-active-border-color:              lighten(@navbar-pf-navbar-primary-context-hover-border-color, 5%);
+@navbar-pf-navbar-primary-context-active-border-top-color:          lighten(@navbar-pf-navbar-primary-context-hover-border-top-color, 6%);
+// References variable declared in block above
+@navbar-pf-navbar-primary-context-active-border-right-color:        @navbar-pf-navbar-primary-context-active-border-color;
+
+// Alternate navigation layout - Kept for backwards compatibility
+// --------------------------------------------------------------
+@footer-pf-alt-bg-color:                                            @footer-pf-bg-color;
+@footer-pf-alt-padding-left:                                        @footer-pf-padding-left;
+@footer-pf-alt-padding-top:                                         @footer-pf-padding-top;
+@footer-pf-alt-height:                                              @footer-pf-height;
+@img-path-alt:                                                      @img-path;
+@nav-pf-vertical-alt-active-color:                                  @color-pf-blue-300;
+@nav-pf-vertical-alt-bg-color:                                      @color-pf-white;
+@nav-pf-vertical-alt-badge-color:                                   @color-pf-white;
+@nav-pf-vertical-alt-border-color:                                  @sidebar-pf-border-color;
+@nav-pf-vertical-alt-collapsed-width:                               75px;
+@nav-pf-vertical-alt-link-height:                                   63px;
+@nav-pf-vertical-alt-link-padding:                                  17px 20px 17px 25px;
+@nav-pf-vertical-alt-width:                                         250px;
+@navbar-pf-alt-bg-repeat:                                           @navbar-pf-vertical-bg-repeat;
+@navbar-pf-alt-bg-size:                                             @navbar-pf-vertical-bg-size;
+@navbar-pf-alt-border-color:                                        @navbar-pf-vertical-border-color;
+@navbar-pf-alt-border-style:                                        @navbar-pf-vertical-border-style;
+@navbar-pf-alt-border-width:                                        @navbar-pf-vertical-border-width;
+@navbar-pf-alt-color:                                               @navbar-pf-vertical-color;
+@navbar-pf-alt-height:                                              @navbar-pf-vertical-height;
+@navbar-pf-alt-nav-item-iconic-padding:                             @navbar-pf-vertical-nav-item-iconic-padding;
+@navbar-pf-alt-navbar-brand-color:                                  @navbar-pf-vertical-navbar-brand-color;
+@navbar-pf-alt-navbar-brand-icon-margin:                            @navbar-pf-vertical-navbar-brand-icon-margin;
+@navbar-pf-alt-navbar-brand-margin:                                 @navbar-pf-vertical-navbar-brand-margin;
+@navbar-pf-alt-navbar-brand-min-height:                             @navbar-pf-vertical-navbar-brand-min-height;
+@navbar-pf-alt-navbar-brand-name-breakpoint:                        @navbar-pf-vertical-navbar-brand-name-breakpoint;
+@navbar-pf-alt-navbar-brand-name-margin:                            @navbar-pf-vertical-navbar-brand-name-margin;
+@navbar-pf-alt-navbar-brand-padding:                                @navbar-pf-vertical-navbar-brand-padding;
+@navbar-pf-alt-navbar-toggle-margin:                                @navbar-pf-vertical-navbar-toggle-margin;
+@navbar-pf-alt-navbar-toggle-icon-bar-hover-bg:                     @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;
+
+// Bootstrap overrides
+// -------------------
+@alert-info-border:                                                 @color-pf-black-500;
+@alert-link-font-weight:                                            500;
+@alert-padding:                                                     11px;
+@body-bg:                                                           @color-pf-white;
+@border-radius-base:                                                1px;
+@brand-danger:                                                      @color-pf-red;
+@brand-info:                                                        @color-pf-blue-500;
+@brand-primary:                                                     @color-pf-blue-300;
+@brand-success:                                                     @color-pf-green;
+@brand-warning:                                                     @color-pf-orange;
+@breadcrumb-bg:                                                     transparent;
+@breadcrumb-separator:                                              "\f105";
+@btn-danger-bg:                                                     @color-pf-red-200;
+@btn-danger-border:                                                 @color-pf-red-300;
+@btn-default-border:                                                @color-pf-black-400;
+@btn-font-weight:                                                   600;
+@btn-primary-bg:                                                    @color-pf-blue;
+@btn-primary-border:                                                @color-pf-blue-500;
+@caret-width-base:                                                  0;
+@code-bg:                                                           @color-pf-blue-50;
+@dropdown-border:                                                   @color-pf-black-400;
+@dropdown-divider-bg:                                               @color-pf-black-200;
+@dropdown-link-active-color:                                        @color-pf-white;
+@dropdown-link-hover-bg:                                            @color-pf-blue-50;
+@font-family-base:                                                  "Open Sans", Helvetica, Arial, sans-serif;
+@font-size-base:                                                    12px;
+@gray-dark:                                                         lighten(@color-pf-black, 20%);   // #333
+@gray-darker:                                                       lighten(@color-pf-black, 13.5%); // #222
+@gray-light:                                                        lighten(@color-pf-black, 60%);   // #999
+@gray-lighter:                                                      lighten(@color-pf-black, 93.5%); // #eee
+@grid-gutter-width:                                                 40px;
+@icon-font-path:                                                    "../fonts/";
+@input-bg-disabled:                                                 @color-pf-black-150;
+@input-border:                                                      @color-pf-black-400;
+@line-height-base:                                                  1.66666667; // 20/12
+@link-color:                                                        @color-pf-blue;
+@list-group-border:                                                 @color-pf-black-150;
+@list-group-border-radius:                                          0;
+@list-group-hover-bg:                                               @color-pf-blue-50;
+@link-hover-color:                                                  @color-pf-blue-500;
+@nav-tabs-border-color:                                             @color-pf-black-200;
+@nav-tabs-link-hover-border-color:                                  transparent;
+@padding-large-horizontal:                                          10px;
+@padding-base-horizontal:                                           6px;
+@padding-base-vertical:                                             2px;
+@padding-large-vertical:                                            6px;
+@pager-border-radius:                                               0;
+@pager-disabled-color:                                              @color-pf-black-500;
+@pagination-bg:                                                     @color-pf-black-150;
+@pagination-border:                                                 @color-pf-black-400;
+@pagination-hover-bg:                                               @color-pf-black-200;
+@panel-inner-border:                                                @color-pf-black-300;
+@popover-arrow-color:                                               @color-pf-white;
+@popover-arrow-outer-color:                                         @color-pf-black-400;
+@popover-border-color:                                              @color-pf-black-400;
+@popover-max-width:                                                 220px;
+@popover-title-bg:                                                  @color-pf-black-150;
+@pre-bg:                                                            @color-pf-black-100;
+@progress-bg:                                                       @color-pf-black-200;
+@table-bg-accent:                                                   @color-pf-black-150;
+@table-bg-hover:                                                    @color-pf-blue-50;
+@table-border-color:                                                @color-pf-black-300;
+@table-cell-padding:                                                10px;
+@tooltip-arrow-width:                                               8px;
+@tooltip-bg:                                                        @color-pf-black-800;
+@tooltip-max-width:                                                 220px;
+// Reference variables declared in block above
+@alert-danger-bg:                                                   lighten(@color-pf-red-100, 55%);
+@alert-danger-border:                                               @brand-danger;
+@alert-danger-text:                                                 @gray-dark;
+@alert-info-bg:                                                     @color-pf-black-150;
+@alert-info-text:                                                   @gray-dark;
+@alert-success-bg:                                                  lighten(@color-pf-green-100, 8%);
+@alert-success-border:                                              @brand-success;
+@alert-success-text:                                                @gray-dark;
+@alert-warning-bg:                                                  lighten(@color-pf-orange-100, 8%);
+@alert-warning-border:                                              @brand-warning;
+@alert-warning-text:                                                @gray-dark;
+@badge-border-radius:                                               @border-radius-base;
+@border-radius-large:                                               @border-radius-base;
+@border-radius-small:                                               @border-radius-base;
+@breadcrumb-active-color:                                           @gray-pf;
+@breadcrumb-color:                                                  @gray-pf;
+@btn-default-bg:                                                    @gray-lighter;
+@btn-default-color:                                                 @gray-pf;
+@caret-width-large:                                                 @caret-width-base;
+@code-color:                                                        @color-pf-blue-600;
+@dropdown-fallback-border:                                          @dropdown-border;
+@dropdown-link-active-bg:                                           @link-color;
+@dropdown-link-hover-color:                                         @gray-pf;
+@font-size-h1:                                                      ceil((@font-size-base * 2)); // ~24px
+@font-size-h2:                                                      ceil((@font-size-base * 1.8333)); // ~22px
+@font-size-h3:                                                      ceil((@font-size-base * 1.3333)); // ~16px
+@font-size-h5:                                                      ceil((@font-size-base * 1.0833)); // ~13px
+@font-size-large:                                                   ceil((@font-size-base * 1.1666)); // ~14px
+@font-size-small:                                                   ceil((@font-size-base * .9166)); // ~11px
+@input-color:                                                       @gray-dark;
+@nav-tabs-active-link-hover-color:                                  @link-color;
+@nav-tabs-justified-link-border-color:                              @nav-tabs-border-color;
+@nav-pf-vertical-badges-width:                                      (@nav-pf-vertical-width + 50px);
+@padding-small-horizontal:                                          @padding-base-horizontal;
+@padding-small-vertical:                                            @padding-base-vertical;
+@panel-danger-border:                                               @brand-danger;
+@panel-danger-heading-bg:                                           @brand-danger;
+@panel-info-border:                                                 @brand-info;
+@panel-info-heading-bg:                                             @brand-info;
+@panel-primary-text:                                                @body-bg;
+@panel-success-border:                                              @brand-success;
+@panel-success-heading-bg:                                          @brand-success;
+@panel-warning-border:                                              @brand-warning;
+@panel-warning-heading-bg:                                          @brand-warning;
+@state-warning-text:                                                @brand-warning;
+@state-danger-text:                                                 @brand-danger;
+// Reference variable declared in block above
+@panel-danger-text:                                                 @panel-primary-text;
+@panel-info-text:                                                   @panel-primary-text;
+@panel-success-text:                                                @panel-primary-text;
+@panel-warning-text:                                                @panel-primary-text;
+
+// PatternFly-specific variables based on Bootstrap overides
+// ---------------------------------------------------------
+@bootstrap-switch-bg-color:                                         @btn-default-bg;
+@btn-danger-bg-img-start:                                           @brand-danger;
+@btn-danger-bg-img-stop:                                            @btn-danger-bg;
+@btn-primary-bg-img-start:                                          @brand-primary;
+@btn-primary-bg-img-stop:                                           @btn-primary-bg;
+@dropdown-link-focus-bg:                                            @link-color;
+@line-height-computed:                                              floor((@font-size-base * @line-height-base));
+@nav-pf-vertical-icon-size:                                         (@font-size-base + 8);
+@notification-badge-color:                                          @brand-danger;
+@progress-sm:                                                       (@line-height-computed - 6);
+@progress-xs:                                                       (@line-height-computed - 14);
+@syntax-1:                                                          @btn-danger-bg;
+@syntax-2:                                                          @gray-dark;
+@syntax-3:                                                          @brand-success;
+@syntax-4:                                                          @brand-info;
+@tooltip-font-size:                                                 @font-size-base;
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/vertical-nav.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/vertical-nav.less
new file mode 100644
index 0000000..7512c0d
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/vertical-nav.less
@@ -0,0 +1,940 @@
+//
+//  Vertical navigation
+// --------------------------------------------------
+//
+// Basic Required Layout for Vertical Navigation
+//
+// .navbar navbar-pf-vertical
+//   .navbar-header
+//   .collapse navbar-collapse   <-- necessary for collapsing vertical nav and mobile
+// .nav-pf-vertical [.nav-pf-vertical-callapsible-menus] [.nav-pf-persistent-secondary] [.hidden-icons-pf]
+//   .list-group
+//     .list-group-item [.active] [.secondary-nav-item-pf]
+//       a
+//         [primary icon] <-- Not shown if .hidden-icons-pf above
+//         .list-group-item-value
+//       .nav-pf-secondary-nav  <-- if .secondary-nav-item-pf above
+//         .nav-item-pf-header
+//           .secondary-collapse-toggle-pf data-toggle="collapse-secondary-nav"
+//         .list-group
+//           .list-group-item [.active] [tertiary-nav-item-pf]
+//             a
+//              .list-group-item-value
+//            .nav-pf-tertiary-nav  <-- if .tertiary-nav-item-pf above
+//              .nav-item-pf-header
+//                .tertiary-collapse-toggle-pf data-toggle="collapse-tertiary-nav"
+//              .list-group
+//                .list-group-item [.active] [tertiary-nav-item-pf]
+//                  a
+//                    .list-group-item-value
+//
+// .container-pf-nav-pf-vertical [.nav-pf-persistent-secondary] [.hidden-icons-pf]
+//
+
+.nav-pf-vertical {
+  background: @nav-pf-vertical-bg-color;
+  border-right: 1px solid @nav-pf-vertical-border-color;
+  bottom: 0;
+  left: 0;
+  overflow-x: hidden;
+  overflow-y: auto;
+  position: fixed;
+  top: @navbar-pf-height;
+  width: @nav-pf-vertical-width;
+  z-index: @zindex-navbar-fixed;
+  .layout-pf-fixed-with-footer & {
+    bottom: @footer-pf-height;
+  }
+  .ie9.layout-pf-fixed & {
+    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box
+  }
+   &.hidden.show-mobile-nav {  // Mobile mode open
+    box-shadow: 0 0 3px fade(@color-pf-black, 15%);
+    display: block !important;
+  }
+  .hide-nav-pf {  // Used to hide navigation initially to avoid startup flicker
+    visibility: hidden !important;
+  }
+  .list-group {
+    border-top: 0;
+    margin-bottom: 0;
+  }
+  .list-group-item {
+    background-color: transparent;
+    border-color: @nav-pf-vertical-item-border-color;
+    padding: 0;
+    > a {
+      background-color: transparent;
+      color: @nav-pf-vertical-color;
+      cursor: pointer;
+      display: block;
+      font-size: (@font-size-base + 2);
+      font-weight: @nav-pf-vertical-font-weight;
+      height: @nav-pf-vertical-link-height;
+      line-height: 26px;
+      outline: 0;
+      padding: @nav-pf-vertical-link-padding;
+      position: relative;
+      white-space: nowrap;
+      width: @nav-pf-vertical-width;
+      .fa,
+      .glyphicon,
+      .pficon {
+        color: @nav-pf-vertical-icon-color;
+        float: left;
+        font-size: (@font-size-base + 8);
+        line-height: 26px;
+        margin-right: 10px;
+        text-align: center;
+        width: @nav-pf-vertical-icon-width;
+      }
+      &:hover {
+        text-decoration: none;
+      }
+    }
+    &.active,
+    &:hover {
+      > a {
+        background-color: @nav-pf-vertical-active-bg-color;
+        color: @nav-pf-vertical-active-color;
+        font-weight: @nav-pf-vertical-active-font-weight;
+        .fa,
+        .glyphicon,
+        .pficon {
+          color: @nav-pf-vertical-active-icon-color;
+        }
+      }
+    }
+    &.active {
+      > a:before {
+        background: @nav-pf-vertical-active-before-color;
+        content: " ";
+        height: 100%;
+        left: 0;
+        position: absolute;
+        top: 0;
+        width: 3px;
+      }
+      &:hover { // to over-ride default list group setting
+        background-color: transparent;
+        border-color: @nav-pf-vertical-item-border-color;
+      }
+    }
+    .list-group-item-value {
+      display: block;
+      line-height: 25px;
+      max-width: 120px;
+      overflow: hidden;
+      text-overflow: ellipsis;
+    }
+  }
+  .list-group-item-separator {
+    border-top-color: @nav-pf-vertical-item-border-color;
+    border-top-width: 2px;
+  }
+  &.nav-pf-vertical-with-badges {
+    width: @nav-pf-vertical-badges-width;
+    .list-group-item > a {
+      width: @nav-pf-vertical-badges-width;
+    }
+  }
+  &.collapsed { // Collapsed Primary Menu state
+    width: @nav-pf-vertical-collapsed-width;
+    > .list-group-item { // Show only the icons
+      > a {
+        width: @nav-pf-vertical-collapsed-width;
+        > .list-group-item-value {
+          display: none;
+        }
+        > .badge-container-pf {
+          display: none;
+        }
+      }
+      &.secondary-nav-item-pf { // Adjust widths
+        &.active > a,
+        > a {
+          width: @nav-pf-vertical-collapsed-width;
+          &:after {
+            right: 10px;
+          }
+        }
+        &.active,
+        &:hover {
+          > a {
+            width: (@nav-pf-vertical-collapsed-width + 2);
+            &:after {
+              right: 11px;
+            }
+          }
+        }
+      }
+    }
+  }
+  h5 {
+    color: @nav-pf-vertical-secondary-color;
+    cursor: default;
+    font-size: (@font-size-base + 1);
+    font-weight: 600;
+    margin: @nav-pf-vertical-secondary-list-header-margin;
+  }
+  &.hidden-icons-pf {
+    > .list-group > .list-group-item { // only the primary menu hides icons
+      > a {
+        .fa,
+        .glyphicon,
+        .pficon {
+          display: none;
+        }
+      }
+    }
+    &.collapsed {
+      display: none;
+    }
+  }
+  .badge-container-pf {
+    position: absolute;
+    right: 15px;
+    top: 20px;
+    .badge {
+      background: @nav-pf-vertical-badge-bg-color;
+      color: @nav-pf-vertical-badge-color;
+      float: left;
+      font-size: @font-size-base;
+      font-weight: 700;
+      line-height: @line-height-base;
+      margin: 0;
+      padding: 0 7px;
+      text-align: center;
+      .pficon,
+      .fa {
+        font-size: (@font-size-base + 2);
+        height: 20px;
+        line-height: @line-height-base;
+        margin-right: 3px;
+        margin-top: -1px;
+      }
+    }
+  }
+}
+.nav-pf-vertical-tooltip.tooltip {
+  margin-left: 15px;
+  .tooltip-inner {
+    background-color: @color-pf-white;
+    color: @color-pf-black-900;
+  }
+  .tooltip-arrow {
+    border-bottom-color: @color-pf-white;
+    left: calc(50% - 15px) !important;
+  }
+}
+.hover-secondary-nav-pf {
+  width: calc(@nav-pf-vertical-width * 2);
+  &.nav-pf-vertical-with-badges {
+    width: calc(@nav-pf-vertical-badges-width * 2);
+  }
+}
+.hover-tertiary-nav-pf {
+  width: calc(@nav-pf-vertical-width * 3);
+  &.nav-pf-vertical-with-badges {
+    width: calc(@nav-pf-vertical-badges-width * 3);
+  }
+  .nav-pf-secondary-nav {
+    width: calc(@nav-pf-vertical-width * 2);
+    .collapsed-tertiary-nav-pf {
+      width: @nav-pf-vertical-width;
+    }
+  }
+  .nav-pf-tertiary-nav {
+    left: calc(@nav-pf-vertical-width * 2);
+  }
+  &.nav-pf-vertical-with-badges {
+    .nav-pf-secondary-nav {
+      width: calc(@nav-pf-vertical-badges-width * 2);
+      .collapsed-tertiary-nav-pf {
+        width: @nav-pf-vertical-badges-width;
+      }
+    }
+    .nav-pf-tertiary-nav {
+      left: calc(@nav-pf-vertical-badges-width * 2);
+    }
+  }
+}
+.collapsed {
+  width: @nav-pf-vertical-collapsed-width;
+  &.collapsed-secondary-nav-pf { // collapsed state with secondary menu pinned
+    width: @nav-pf-vertical-width;
+    &.nav-pf-vertical-with-badges {
+      width: @nav-pf-vertical-badges-width;
+    }
+  }
+  &.collapsed-tertiary-nav-pf { // collapsed state with tertiary menu pinned
+    width: @nav-pf-vertical-width;
+    &.nav-pf-vertical-with-badges {
+      width: @nav-pf-vertical-badges-width;
+    }
+  }
+  &.hover-secondary-nav-pf {
+    width: calc(@nav-pf-vertical-collapsed-width + @nav-pf-vertical-width);
+    &.nav-pf-vertical-with-badges {
+      width: calc(@nav-pf-vertical-collapsed-width + @nav-pf-vertical-badges-width);
+    }
+  }
+  &.hover-tertiary-nav-pf {
+    width: calc(@nav-pf-vertical-collapsed-width + (@nav-pf-vertical-badges-width * 2));
+    &.nav-pf-vertical-with-badges {
+      width: calc(@nav-pf-vertical-collapsed-width + (@nav-pf-vertical-badges-width * 2));
+    }
+  }
+}
+.show-mobile-nav {
+  &.show-mobile-secondary {
+    width: @nav-pf-vertical-width;
+    &.nav-pf-vertical-with-badges {
+      width: @nav-pf-vertical-badges-width;
+    }
+  }
+  &.show-mobile-tertiary {
+    width: @nav-pf-vertical-width;
+    &.nav-pf-vertical-with-badges {
+      width: @nav-pf-vertical-badges-width;
+    }
+  }
+  .mobile-nav-item-pf,
+  .mobile-secondary-item-pf {
+    .nav-pf-secondary-nav {
+      left: 0;
+      opacity: 1;
+      visibility: visible;
+      z-index: (@zindex-navbar-fixed + 4);
+    }
+    > .nav-pf-tertiary-nav {
+      left: 0;
+      opacity: 1;
+      visibility: visible;
+      z-index: (@zindex-navbar-fixed + 8);
+    }
+  }
+  .nav-pf-secondary-nav {
+    left: 0;
+    .secondary-nav-item-pf:hover & {
+      opacity: 0;
+      visibility: hidden;
+    }
+  }
+  .tertiary-nav-item-pf:hover {
+    .nav-pf-tertiary-nav {
+      opacity: 0;
+      visibility: hidden;
+    }
+  }
+  .tertiary-nav-item-pf.mobile-nav-item-pf:hover {
+    .nav-pf-tertiary-nav {
+      opacity: 1;
+      visibility: visible;
+    }
+  }
+}
+.secondary-nav-item-pf {
+  > a {
+    cursor: default;
+    &:after {
+      color: @nav-pf-vertical-secondary-indicator-color;
+      content: @fa-var-angle-right;
+      display: block;
+      font-family: "FontAwesome";
+      font-size: (@font-size-base * 2);
+      line-height: 30px;
+      padding: @nav-pf-vertical-secondary-indicator-padding;
+      position: absolute;
+      right: 20px;
+      top: 0;
+    }
+  }
+  &.active,
+  &:hover {
+    > a {
+      width: calc(@nav-pf-vertical-width + 1px);
+      z-index: (@zindex-navbar-fixed + 1);
+      &:after {
+        right: 21px;
+      }
+      .collapsed-secondary-nav-pf & {
+        z-index: @zindex-navbar-fixed;
+      }
+      .collapsed-tertiary-nav-pf & {
+        z-index: @zindex-navbar-fixed;
+      }
+    }
+  }
+  .nav-pf-vertical-with-badges & {
+    &.active,
+    &:hover {
+      > a {
+        width: calc(@nav-pf-vertical-badges-width + 1px);
+      }
+    }
+  }
+}
+.nav-pf-vertical.collapsed-secondary-nav-pf {
+  width: @nav-pf-vertical-width;
+  &.nav-pf-vertical-with-badges {
+    width: @nav-pf-vertical-badges-width;
+  }
+  .secondary-nav-item-pf {  // Keep sub-menu indicators below collapsed menu
+    &.active,
+    &.hover {
+      > a {
+        z-index: @zindex-navbar-fixed;
+      }
+    }
+  }
+  &.hover-tertiary-nav-pf {
+    width: @nav-pf-vertical-width;
+    &.nav-pf-vertical-with-badges {
+      width: @nav-pf-vertical-badges-width;
+    }
+  }
+  .nav-pf-secondary-nav {
+    left: 0;
+  }
+  .nav-pf-tertiary-nav {
+    left: @nav-pf-vertical-width;
+  }
+  &.nav-pf-vertical-with-badges {
+    .nav-pf-tertiary-nav {
+      left: @nav-pf-vertical-badges-width;
+    }
+  }
+}
+.nav-pf-vertical.collapsed-tertiary-nav-pf {
+  width: @nav-pf-vertical-width;
+  &.nav-pf-vertical-with-badges {
+    width: @nav-pf-vertical-badges-width;
+  }
+  .nav-pf-secondary-nav {
+    width: @nav-pf-vertical-width;
+    &.nav-pf-vertical-with-badges {
+      width: @nav-pf-vertical-badges-width;
+    }
+  }
+  .secondary-nav-item-pf,    // Keep sub-menu indicators below collapsed menu
+  .tertiary-nav-item-pf {
+    &.active,
+    &.hover {
+      > a {
+        z-index: @zindex-navbar-fixed;
+      }
+    }
+  }
+}
+.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf {  // Persistent secondary nav settings
+  @media (min-width: @screen-lg-min) { // secondary menu only persistent at lg screen
+    width: calc(@nav-pf-vertical-width * 2);
+    &.nav-pf-vertical-with-badges {
+      width: calc(@nav-pf-vertical-badges-width * 2);
+    }
+    &.collapsed-secondary-nav-pf {
+      width: @nav-pf-vertical-width;
+      &.nav-pf-vertical-with-badges {
+        width: @nav-pf-vertical-badges-width;
+      }
+      &.hover-tertiary-nav-pf {
+        width: calc(@nav-pf-vertical-width * 2);
+        &.nav-pf-vertical-with-badges {
+          width: calc(@nav-pf-vertical-badges-width * 2);
+        }
+      }
+    }
+    &.collapsed-tertiary-nav-pf {
+      width: @nav-pf-vertical-width;
+      &.nav-pf-vertical-with-badges {
+        width: @nav-pf-vertical-badges-width;
+      }
+    }
+    &.collapsed {
+      width: calc(@nav-pf-vertical-collapsed-width + @nav-pf-vertical-width);
+      &.collapsed-secondary-nav-pf {
+        width: @nav-pf-vertical-width;
+        &.nav-pf-vertical-with-badges {
+          width: @nav-pf-vertical-badges-width;
+        }
+      }
+      &.collapsed-tertiary-nav-pf {
+        width: @nav-pf-vertical-width;
+        &.nav-pf-vertical-with-badges {
+          width: @nav-pf-vertical-badges-width;
+        }
+      }
+      &.hover-tertiary-nav-pf {
+        width: calc(@nav-pf-vertical-collapsed-width + (@nav-pf-vertical-width * 2));
+        &.nav-pf-vertical-with-badges {
+          width: calc(@nav-pf-vertical-collapsed-width + (@nav-pf-vertical-badges-width * 2));
+        }
+      }
+    }
+    &.hover-tertiary-nav-pf {
+      width: calc(@nav-pf-vertical-width * 3);
+      &.nav-pf-vertical-with-badges {
+        width: calc(@nav-pf-vertical-badges-width * 3);
+      }
+    }
+    .secondary-nav-item-pf.active {
+      .nav-pf-secondary-nav {
+        visibility: visible;
+        opacity: 1;
+      }
+    }
+  }
+}
+.nav-item-pf-header {
+  color: @nav-pf-vertical-secondary-color;
+  font-size: (@font-size-base + 4);
+  margin: @nav-pf-vertical-secondary-header-margin;
+  > a {
+    cursor: pointer;
+    margin-right: 7px;
+    &:hover,
+    &:focus {
+      color: @link-color;
+      text-decoration: none;
+    }
+  }
+}
+.nav-pf-vertical.collapsed { // Collapsed Primary Menu state
+  .list-group-item { // Show only the icons
+    > a {
+      width: @nav-pf-vertical-collapsed-width;
+      > .list-group-item-value {
+        display: none;
+      }
+    }
+    &.secondary-nav-item-pf { // Adjust widths
+      &.active > a,
+      > a {
+        width: @nav-pf-vertical-collapsed-width;
+        &:after {
+          right: 10px;
+        }
+      }
+      &.active,
+      &:hover {
+        > a {
+          width: (@nav-pf-vertical-collapsed-width + 2);
+          &:after {
+            right: 11px;
+          }
+        }
+      }
+    }
+  }
+}
+.nav-pf-secondary-nav {
+  background: @nav-pf-vertical-secondary-bg-color;
+  border: 1px solid @nav-pf-vertical-border-color;
+  border-bottom: none;
+  border-top: none;
+  bottom: 0;
+  display: block;
+  left: @nav-pf-vertical-width;
+  opacity: 0;
+  overflow-x: hidden;
+  overflow-y: auto;
+  position: fixed;
+  top: @navbar-pf-height;
+  visibility: hidden;
+  width: @nav-pf-vertical-width;
+  z-index: @zindex-navbar-fixed;
+  .secondary-nav-item-pf.active & {  // Show secondary menu if active and either is collapsed
+    .collapsed-secondary-nav-pf & {
+      left: 0;
+      opacity: 1;
+      visibility: visible;
+      z-index: (@zindex-navbar-fixed + 2);
+    }
+    .collapsed-tertiary-nav-pf & {
+      left: 0;
+      opacity: 1;
+      visibility: visible;
+    }
+  }
+  .secondary-nav-item-pf.is-hover & { // Show secondary menu if hovering
+    .hover-secondary-nav-pf & {
+      opacity: 1;
+      visibility: visible;
+    }
+  }
+  .ie9.layout-pf-fixed & {
+    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box
+  }
+  .layout-pf-fixed-with-footer & {
+    bottom: @footer-pf-height;
+  }
+  .list-group-item {
+    border: none;
+    padding: @nav-pf-vertical-secondary-item-padding;
+    width: @nav-pf-vertical-width;
+    > a {
+      background-color: @nav-pf-vertical-secondary-bg-color;
+      color: @nav-pf-vertical-secondary-item-color;
+      font-size: @font-size-base;
+      font-weight: inherit;
+      height: inherit;
+      padding: @nav-pf-vertical-secondary-link-padding;
+      margin-left: 20px;
+      width: calc(@nav-pf-vertical-width - 20px);
+
+      &:hover {
+        .list-group-item-value {
+          text-decoration: underline;
+        }
+      }
+    }
+    &.active > a:before {
+      display: none;
+    }
+    &.active,
+    &:hover {
+      > a {
+        background-color: @nav-pf-vertical-secondary-active-bg-color;
+        color: @nav-pf-vertical-secondary-active-color;
+      }
+    }
+    .badge-container-pf {
+      top: 5px;
+      .badge {
+        background: @nav-pf-vertical-secondary-badge-bg-color;
+        color: @nav-pf-vertical-badge-color;
+      }
+    }
+    .list-group-item-value {
+      padding-left: 5px;
+    }
+    &.tertiary-nav-item-pf { // Secondary menu items with tertiary sub menus
+      > a {
+        cursor: default;
+        &:after {
+          color: @nav-pf-vertical-secondary-indicator-color;
+          content: @fa-var-angle-right;
+          display: block;
+          font-family: "FontAwesome";
+          font-size: 20px;
+          line-height: 20px;
+          padding: @nav-pf-vertical-tertiary-indicator-padding;
+          position: absolute;
+          right: 20px;
+          top: 4px;
+        }
+      }
+      &.active,
+      &:hover {
+        > a {
+          width: calc(@nav-pf-vertical-width - 19px);
+          z-index: (@zindex-navbar-fixed + 3);
+          &:after {
+            right: 21px;
+          }
+        }
+      }
+    }
+  }
+  .nav-pf-vertical-with-badges & {
+    left: @nav-pf-vertical-badges-width;
+    width: @nav-pf-vertical-badges-width;
+    .list-group-item {
+      width: @nav-pf-vertical-badges-width;
+      > a {
+        width: calc(@nav-pf-vertical-badges-width - 20px);
+      }
+      &.tertiary-nav-item-pf { // Secondary menu items with tertiary sub menus
+        &.active,
+        &:hover {
+          > a {
+            width: calc(@nav-pf-vertical-badges-width - 19px);
+          }
+        }
+      }
+    }
+  }
+}
+.nav-pf-tertiary-nav {
+  background: @nav-pf-vertical-tertiary-bg-color;
+  border: 1px solid @nav-pf-vertical-border-color;
+  border-bottom: none;
+  border-top: none;
+  bottom: 0;
+  display: block;
+  left: calc(@nav-pf-vertical-width * 2);
+  opacity: 0;
+  overflow-x: hidden;
+  overflow-y: auto;
+  position: fixed;
+  top: @navbar-pf-height;
+  visibility: hidden;
+  width: @nav-pf-vertical-width;
+  z-index: @zindex-navbar-fixed;
+  .nav-pf-vertical-with-badges & {
+    left: @nav-pf-vertical-badges-width;
+    width: @nav-pf-vertical-badges-width;
+    .show-mobile-nav {
+      left: 0;
+    }
+  }
+  .tertiary-nav-item-pf.active & {  // Show tertiary menu if active and collapsed
+    .collapsed-tertiary-nav-pf & {
+      left: 0;
+      opacity: 1;
+      visibility: visible;
+      z-index: (@zindex-navbar-fixed + 3);
+    }
+  }
+  .tertiary-nav-item-pf.is-hover & { // Show tertiary menu if hovering
+    .hover-tertiary-nav-pf & {
+      opacity: 1;
+      visibility: visible;
+      .collapsed.collapsed-tertiary-nav-pf & {
+        left: 0;
+      }
+    }
+  }
+  .ie9.layout-pf-fixed & {
+    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box
+  }
+  .layout-pf-fixed-with-footer & {
+    bottom: @footer-pf-height;
+  }
+  .nav-item-pf-header {
+    color: @nav-pf-vertical-tertiary-color;
+    margin: @nav-pf-vertical-tertiary-header-margin;
+  }
+  h5 {
+    color: @nav-pf-vertical-tertiary-color;
+    margin: @nav-pf-vertical-tertiary-list-header-margin;
+  }
+  .list-group-item {
+    border: none;
+    padding: @nav-pf-vertical-tertiary-item-padding;
+    > a {
+      background-color: transparent;
+      color: @nav-pf-vertical-tertiary-item-color;
+      font-size: @font-size-base;
+      font-weight: inherit;
+      height: inherit;
+      margin: @nav-pf-vertical-tertiary-link-margin;
+      padding: @nav-pf-vertical-tertiary-link-padding;
+    }
+    &.active > a:before {
+      display: none;
+    }
+    &.active,
+    &:hover {
+      > a {
+        background-color: @nav-pf-vertical-tertiary-active-bg-color;
+        color: @nav-pf-vertical-tertiary-active-color;
+      }
+    }
+    .badge-container-pf {
+      top: 5px;
+      .badge {
+        background: @nav-pf-vertical-tertiary-badge-bg-color;
+        color: @nav-pf-vertical-tertiary-badge-color;
+      }
+    }
+    .list-group-item-value {
+      padding-left: 5px;
+    }
+  }
+}
+.collapsed {
+  .nav-pf-secondary-nav { // Adjust left placement
+    left: @nav-pf-vertical-collapsed-width;
+    .list-group-item {
+      > a {
+        width: calc(@nav-pf-vertical-width - 20px);
+        > .list-group-item-value { // Continue to show labels for secondary menu items
+          display: inline-block;
+        }
+      }
+    }
+  }
+  .nav-pf-tertiary-nav { // Adjust left placement
+    left: calc(@nav-pf-vertical-collapsed-width + @nav-pf-vertical-width);
+    .list-group-item {
+      > a {
+        width: calc(@nav-pf-vertical-width - 20px);
+        > .list-group-item-value { // Continue to show labels for tertiary menu items
+          display: inline-block;
+        }
+      }
+    }
+  }
+  &.collapsed-secondary-nav-pf,
+  &.collapsed-tertiary-nav-pf {
+    width: @nav-pf-vertical-width;
+    .secondary-nav-item-pf {
+      &:hover {
+        > a {
+          z-index: @zindex-navbar-fixed;
+        }
+      }
+    }
+    .nav-pf-secondary-nav {
+      left: 0;
+    }
+  }
+  &.collapsed-secondary-nav-pf {
+    .nav-pf-tertiary-nav {
+      left: @nav-pf-vertical-width;
+    }
+  }
+  &.collapsed-tertiary-nav-pf {
+    .nav-pf-tertiary-nav {
+      left: 0;
+    }
+  }
+  &.hover-secondary-nav-pf {
+    width: calc(@nav-pf-vertical-collapsed-width + @nav-pf-vertical-width);
+
+    &.collapsed-secondary-nav-pf,
+    &.collapsed-tertiary-nav-pf {
+      width: @nav-pf-vertical-width;
+    }
+  }
+  &.hover-tertiary-nav-pf {
+    width: calc(@nav-pf-vertical-collapsed-width + (@nav-pf-vertical-width * 2));
+    &.collapsed-secondary-nav-pf {
+      width: calc(@nav-pf-vertical-width * 2);
+    }
+    &.collapsed-tertiary-nav-pf {
+      width: @nav-pf-vertical-width;
+    }
+  }
+  &.nav-pf-vertical-with-badges {
+    .nav-pf-secondary-nav {
+      .list-group-item {
+        > a {
+          width: calc(@nav-pf-vertical-badges-width - 20px);
+        }
+      }
+    }
+    .nav-pf-tertiary-nav {
+      left: calc(@nav-pf-vertical-collapsed-width + @nav-pf-vertical-badges-width);
+      .list-group-item {
+        > a {
+          width: calc(@nav-pf-vertical-badges-width - 20px);
+        }
+      }
+    }
+    &.collapsed-secondary-nav-pf,
+    &.collapsed-tertiary-nav-pf {
+      width: @nav-pf-vertical-badges-width;
+    }
+    &.collapsed-secondary-nav-pf {
+      .nav-pf-tertiary-nav {
+        left: @nav-pf-vertical-badges-width;
+      }
+    }
+    &.hover-secondary-nav-pf {
+      width: calc(@nav-pf-vertical-collapsed-width + @nav-pf-vertical-badges-width);
+      &.collapsed-secondary-nav-pf,
+      &.collapsed-tertiary-nav-pf {
+        width: @nav-pf-vertical-badges-width;
+      }
+    }
+    &.hover-tertiary-nav-pf {
+      width: calc(@nav-pf-vertical-collapsed-width + (@nav-pf-vertical-width * 2));
+      &.collapsed-secondary-nav-pf {
+        width: calc(@nav-pf-vertical-width * 2);
+      }
+      &.collapsed-tertiary-nav-pf {
+        width: @nav-pf-vertical-width;
+      }
+    }
+  }
+}
+.secondary-collapse-toggle-pf {
+  display: none;
+  font-family: @icon-font-name-fa;
+  font-size: inherit;
+  opacity: 0;
+  pointer-events: none;
+  -webkit-font-smoothing: antialiased;
+  &:before {
+    content: @fa-var-arrow-circle-o-left;
+  }
+  &.collapsed {
+    &:before {
+      content: @fa-var-arrow-circle-o-right;
+    }
+  }
+}
+.tertiary-collapse-toggle-pf {
+  display: none;
+  font-family: @icon-font-name-fa;
+  font-size: inherit;
+  opacity: 0;
+  pointer-events: none;
+  -webkit-font-smoothing: antialiased;
+  &:before {
+    content: @fa-var-arrow-circle-o-left;
+  }
+  &.collapsed {
+    &:before {
+      content: @fa-var-arrow-circle-o-right;
+    }
+  }
+}
+.nav-pf-vertical-collapsible-menus {
+  .secondary-collapse-toggle-pf {
+    display: inline-block;
+  }
+  .secondary-nav-item-pf.active {
+    .secondary-collapse-toggle-pf {
+      opacity: 1;
+      pointer-events: all;
+    }
+  }
+  .tertiary-collapse-toggle-pf {
+    display: inline-block;
+  }
+  .tertiary-nav-item-pf.active {
+    .tertiary-collapse-toggle-pf {
+      opacity: 1;
+      pointer-events: all;
+    }
+  }
+}
+.show-mobile-nav {
+  .secondary-collapse-toggle-pf {
+    display: inline-block;
+    opacity: 1;
+    pointer-events: all;
+    &:before {
+      content: @fa-var-arrow-circle-o-left;
+    }
+  }
+  .tertiary-collapse-toggle-pf {
+    display: inline-block;
+    opacity: 1;
+    pointer-events: all;
+    &:before {
+      content: @fa-var-arrow-circle-o-left;
+    }
+  }
+}
+.force-hide-secondary-nav-pf { // Used to temporarily hide sub-menus on an unpin event
+  .nav-pf-secondary-nav {
+    display: none !important;
+  }
+  .nav-pf-tertiary-nav {
+    display: none !important;
+  }
+}
+.nav-pf-vertical.transitions {
+  transition: width @nav-pf-menu-transition-period;
+  .nav-pf-secondary-nav {
+    transition: visibility @nav-pf-menu-transition-period, opacity @nav-pf-menu-transition-period linear;
+  }
+  .nav-pf-tertiary-nav {
+    transition: visibility @nav-pf-menu-transition-period, opacity @nav-pf-menu-transition-period linear;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/lib/patternfly/wizard.less b/themes/src/main/node_modules/rcue/less/lib/patternfly/wizard.less
new file mode 100644
index 0000000..66b3cac
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/lib/patternfly/wizard.less
@@ -0,0 +1,331 @@
+//
+// Wizard
+// --------------------------------------------------
+
+// Wizard header
+// Top section of the wizard w/ title and dismiss
+
+.wizard-pf-body {
+    padding: 0;
+}
+/* styles the sidebard containing the sub-steps */
+.wizard-pf-sidebar {
+  background: @color-pf-black-100;
+  border-right: 1px solid @color-pf-black-300;
+  bottom: 0;
+  display: table-cell;
+  left: 0;
+  overflow-x: hidden;
+  overflow-y: auto;
+  position: relative;
+  top: 0;
+  vertical-align: top;
+
+  .list-group {
+    border-top: 0;
+    margin-bottom: 0;
+  }
+    .list-group-item {
+      background-color: transparent;
+      border-color: @color-pf-black-200;
+      padding: 0;
+      > a {
+        color: @color-pf-black;
+        cursor: pointer;
+        display: block;
+        font-size: 14px;
+        font-weight: 700;
+        height: 50px;
+        outline: 0;
+        padding-top: 11px;
+        padding-left: 20px;
+        position: relative;
+        white-space: nowrap;
+        width: 18em;
+        &:hover {
+          text-decoration: none;
+        }
+      }
+      &.active {
+        background-color: @color-pf-black-200;
+
+        //override default behavior
+        &:hover {
+          border-color: @color-pf-black-200;
+        }
+        > a {
+          color: @color-pf-blue-300;
+          cursor: default;
+        }
+        // line to left side showing active substep
+        > a:before {
+          background: @color-pf-blue-300;
+          content: " ";
+          height: 100%;
+          left: 0;
+          position: absolute;
+          top: 0;
+          width: 3px;
+        }
+        // caret to right showing active substep
+        > a:after {
+          color: @color-pf-blue-300;
+          content: "\f105"; // right caret
+          display: block;
+          font-family: FontAwesome;
+          font-size: 24px;
+          font-weight: 500;
+          line-height: 30px;
+          padding-top: 10px;
+          position: absolute;
+          right: 23px;
+          top: 0;
+        }
+      }
+    }
+}
+.wizard-pf-substep-number {
+  display:inline-block;
+  margin-right: 5px;
+  vertical-align: middle;
+  width: 25px;
+}
+.wizard-pf-substep-title {
+  display:inline-block;
+  margin-right: 5px;
+  text-align: left;
+  vertical-align: middle;
+}
+/* styles the steps indicator across the top of the wizard */
+.wizard-pf-steps {
+  border-bottom: solid 1px @color-pf-black-300;
+  text-align:center;
+}
+.wizard-pf-steps-indicator {
+  font-size: ceil((@font-size-base * 1.3333));
+  display: inline-block;
+  @supports(display: flex) {
+    display: flex;
+  }
+  height: 120px;
+  justify-content: space-around;
+  list-style: none;
+  padding: 38px 0 0;
+  li {
+    counter-increment: section;
+    float:left; /* float for IE9 since it doesn't support flex. If items wrap, they overlap */
+    flex-grow: 1;
+    flex-basis: 0;
+    line-height: 15px;
+    margin: 0;
+    padding: 0;
+    position: relative;
+    text-align: center;
+    /* draw the line between the circles */
+    &:before {
+      background-color: @color-pf-black-400;
+      content: "";
+      height: 2px;
+      left: 0;
+      position: absolute;
+      right: 0;
+      top: 40px; // needed for IE9/10 calculate 50% of just the li, others calc 50% of the entire thing including the a:before
+      //otherwise, use top: calc(50% - 1px);
+    }
+    /* don't draw the line between the circles on the ends */
+    &:first-child:before {
+      left: 50%;
+      right: 0;
+    }
+    &:last-child:before {
+      left: 0;
+      right: 50%;
+    }
+    &:only-of-type:before {
+      background-color: transparent;
+    }
+    a {
+      color: @color-pf-black;
+      font-size: 16px;
+      cursor: pointer;
+      margin-left:1em;
+      margin-right:1em;
+      text-decoration: none;
+      &:hover {
+        .wizard-pf-step-number {
+          background-color: @color-pf-black-400;
+          border-color: @color-pf-black-400;
+          color: @color-pf-white;
+        }
+      }
+
+    }
+  }
+  /* draw the step number in the circle */
+  .wizard-pf-step-number {
+    background-color: @color-pf-white;
+    border-radius: 50%;
+    border: solid 2px @color-pf-black-400;
+    color: @color-pf-black-400;
+    font-size: @font-size-base;
+    font-weight: 700;
+    height: 25px;
+    left: calc(50% - 13px);
+    line-height: 22px;
+    position: absolute;
+    top: 27px;
+    width: 25px;
+  }
+  .active .wizard-pf-step-number {
+    cursor: default;
+      background-color: @color-pf-blue-300;
+      border-color: @color-pf-blue-300;
+      color: @color-pf-white;
+  }
+
+  .viewed-pf .wizard-pf-step-number {
+      background-color: @color-pf-white;
+      border-color: @color-pf-blue-300;
+      color: @color-pf-black;
+  }
+}
+
+/* styles the main content portion of the wizard */
+.wizard-pf-main {
+  display: table-cell;
+  padding: 3em;
+  vertical-align: top;
+  width: 10000px;
+  .blank-slate-pf {
+    background-color: transparent;
+    border: none;
+    left: 0;
+    right: 0;
+  }
+}
+
+/* styles the content of a review page */
+.wizard-pf-review-steps {
+  list-style: none;
+  .list-group, .list-group-item {
+    border: none;
+    margin-bottom: 0;
+  }
+  > ul {
+    > li {
+      float: left;
+      line-height: 15px;
+      margin: 0;
+      padding-top: 0;
+      position: relative;
+      width: 100%;
+      > a {
+        color: #030303;
+        cursor: pointer;
+        font-size: 16px;
+        padding-left: 30px;
+        padding-right: 5px;
+        text-decoration: none;
+        transition: 250ms;
+        &:before {
+          content: "\f107";
+          display: block;
+          font-family: FontAwesome;
+          font-size: 24px;
+          font-weight: 500;
+          left: 20px;
+          position: absolute;
+          top: 0;
+        }
+        &.collapsed {
+          &:before {
+            content: "\f105";
+          }
+        }
+      }
+    }
+  }
+}
+
+.wizard-pf-review-substeps {
+  padding-left: 22px;
+  > ul {
+    > li {
+      float: left;
+      line-height: 15px;
+      margin: 0;
+      position: relative;
+      width: 100%;
+      a {
+        color: #030303;
+        cursor: pointer;
+        font-size: 16px;
+        padding-left: 30px;
+        padding-right: 5px;
+        text-decoration: none;
+        transition: 250ms;
+        &:before {
+          content: "\f107";
+          display: block;
+          font-family: FontAwesome;
+          font-size: 24px;
+          font-weight: 500;
+          left: 20px;
+          position: absolute;
+          top: 10px;
+        }
+        &.collapsed {
+          &:before {
+            content: "\f105";
+          }
+        }
+      }
+    }
+  }
+}
+
+.wizard-pf-review-content {
+  padding-top: 10px;
+  padding-left: 40px;
+  .wizard-pf-review-item {
+    padding: 5px 0;
+    &.sub-item {
+      margin-left: 10px;
+    }
+    .wizard-pf-review-item-label {
+      font-weight: 700;
+      padding-right: 10px;
+    }
+    .wizard-pf-review-item-field {
+      font-weight: 700;
+      margin: 5px 0;
+      padding-right: 10px;
+      &:first-of-type {
+        margin-top: 0;
+      }
+      &:last-of-type {
+        margin-bottom: 0;
+      }
+      &.sub-field {
+        margin-left: 10px;
+      }
+    }
+  }
+}
+
+.wizard-pf-success-icon {
+  color: @color-pf-green-400;
+  font-size: (@font-size-base * 5.6);
+  line-height: (@font-size-base * 5.6);
+}
+
+/* styles the footer */
+.wizard-pf-footer {
+  border-top: 1px solid @color-pf-black-300;
+  margin-top: 0;
+  padding-bottom: 17px;
+
+  .btn-cancel {
+    margin-right:25px;
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/login.less b/themes/src/main/node_modules/rcue/less/login.less
new file mode 100644
index 0000000..8c79b38
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/login.less
@@ -0,0 +1,47 @@
+//
+// Login
+// --------------------------------------------------
+
+.login-pf {
+  background-color:  @login-bg-color;
+  @media (min-width: @screen-sm-min) {
+    background-image: url("@{img-path}/@{img-bg-login-2}");
+    background-position: 100% 100%;
+    background-repeat: no-repeat;
+    background-size: 30%;
+  }
+  @media (min-width: @screen-md-min) {
+    background-size: auto;
+  }
+  #badge {
+    margin-bottom: 50px;
+  }
+  body {
+    background: transparent;
+    @media (min-width: @screen-sm-min) {
+      background-image: url("@{img-path}/@{img-bg-login}");
+      background-repeat: no-repeat;
+      background-size: 30%;
+      height: 100%;
+    }
+    @media (min-width: @screen-md-min) {
+      background-size: auto;
+    }
+  }
+  #brand {
+    top: -30px;
+    @media (min-width: @screen-sm-min) {
+      top: -40px;
+      + .alert {
+        margin-top: -20px;
+      }
+    }
+  }
+  .container {
+    padding-top: 0;
+    @media (min-width: @screen-md-min) {
+      bottom: 20%;
+      padding-right: 120px;
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/less/rcue.less b/themes/src/main/node_modules/rcue/less/rcue.less
new file mode 100755
index 0000000..4df678a
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/rcue.less
@@ -0,0 +1,7 @@
+/* Red Hat Common User Experience (RCUE) */
+
+// PatternFly
+@import "../node_modules/patternfly/dist/less/patternfly";
+
+// RCUE overrides
+@import "variables";
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/less/rcue-additions.less b/themes/src/main/node_modules/rcue/less/rcue-additions.less
new file mode 100644
index 0000000..98cb6ef
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/rcue-additions.less
@@ -0,0 +1,8 @@
+// Red Hat Common User Experience (RCUE) additions
+
+// PatternFly additions
+@import "../node_modules/patternfly/dist/less/patternfly-additions";
+
+// RCUE overrides
+@import "variables";
+@import "login";
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/less/variables.less b/themes/src/main/node_modules/rcue/less/variables.less
new file mode 100755
index 0000000..e41afa8
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/less/variables.less
@@ -0,0 +1,56 @@
+//
+// Variables
+// --------------------------------------------------
+
+/* RCUE-specific */
+@img-bg-login:                                                      "bg-login.png";
+@img-bg-login-2:                                                    "bg-login-2.png";
+@login-bg-color:                                                    #1a1a1a;
+@login-container-bg-color:                                          transparent;
+@login-container-bg-color-rgba:                                     transparent;
+@navbar-pf-alt-border-width:                                        0;
+@navbar-pf-alt-nav-item-iconic-padding:                             22px 12px;
+@navbar-pf-alt-navbar-brand-padding:                                18px 0 22px;
+@navbar-pf-alt-navbar-brand-name-breakpoint:                        355px;
+@navbar-pf-alt-navbar-toggle-margin:                                14px 15px;
+@navbar-pf-bg-color:                                                #393F45;
+@navbar-pf-border-color:                                            #cc0000;
+@navbar-pf-vertical-border-color:                                   #cc0000;
+@navbar-pf-active-color:                                            #fff;
+@navbar-pf-color:                                                   #dbdada;
+@navbar-pf-icon-bar-bg-color:                                       #fff;
+@navbar-pf-navbar-header-border-color:                              #53565b;
+@navbar-pf-navbar-nav-active-bg-color:                              #454C53;
+@navbar-pf-navbar-nav-active-active-bg-color:                       #3c434a;
+@navbar-pf-navbar-nav-active-active-open-bg-color:                  #424950;
+@navbar-pf-navbar-navbar-brand-min-width:                           300px;
+@navbar-pf-navbar-navbar-brand-padding:                             7px 0 8px;
+@navbar-pf-navbar-navbar-persistent-bg-color:                       #f6f6f6;
+@navbar-pf-navbar-navbar-persistent-border-color:                   #cecdcd;
+@navbar-pf-navbar-primary-active-bg-color-start:                    #72757a;
+@navbar-pf-navbar-primary-active-bg-color-stop:                     #64686c;
+@navbar-pf-navbar-primary-active-border-color:                      #949699;
+@navbar-pf-navbar-primary-bg-color-start:                           #474c50;
+@navbar-pf-navbar-primary-bg-color-stop:                            #383f43;
+@navbar-pf-navbar-primary-hover-bg-color-start:                     #5c6165;
+@navbar-pf-navbar-primary-hover-bg-color-stop:                      #4b5053;
+@navbar-pf-navbar-primary-hover-border-color:                       #949699;
+@navbar-pf-navbar-primary-context-active-bg-color-start:            #6b7175;
+@navbar-pf-navbar-primary-context-active-bg-color-stop:             #65696d;
+@navbar-pf-navbar-primary-context-active-border-color:              #6e7276;
+@navbar-pf-navbar-primary-context-active-border-right-color:        #777a7e;
+@navbar-pf-navbar-primary-context-active-border-top-color:          #767a7e;
+@navbar-pf-navbar-primary-context-bg-color-start:                   #585d61;
+@navbar-pf-navbar-primary-context-bg-color-stop:                    #505458;
+@navbar-pf-navbar-primary-context-border-color:                     #65696d;
+@navbar-pf-navbar-primary-context-border-top-color:                 #64696d;
+@navbar-pf-navbar-primary-context-hover-bg-color-start:             #62676b;
+@navbar-pf-navbar-primary-context-hover-bg-color-stop:              #5a5e62;
+@navbar-pf-navbar-primary-context-hover-border-color:               #6e7276;
+@navbar-pf-navbar-primary-context-hover-border-top-color:           #6c7276;
+@navbar-pf-navbar-utility-border-color:                             #53565b;
+@navbar-pf-navbar-utility-color:                                    #fff;
+@navbar-pf-navbar-utility-hover-bg-color:                           #4a5053;
+@navbar-pf-navbar-utility-hover-border-color:                       #636466;
+@navbar-pf-navbar-utility-open-bg-color:                            #5b6165;
+@navbar-pf-navbar-utility-open-border-color:                        #6c6e70;
diff --git a/themes/src/main/node_modules/rcue/LICENSE.txt b/themes/src/main/node_modules/rcue/LICENSE.txt
new file mode 100644
index 0000000..cc698cd
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/LICENSE.txt
@@ -0,0 +1,205 @@
+Modifications to Bootstrap are copyright 2013 Red Hat, Inc. and licensed
+under the Apache License 2.0.
+
+
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "{}"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright {yyyy} {name of copyright owner}
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
diff --git a/themes/src/main/node_modules/rcue/npm-shrinkwrap.json b/themes/src/main/node_modules/rcue/npm-shrinkwrap.json
new file mode 100644
index 0000000..14ce435
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/npm-shrinkwrap.json
@@ -0,0 +1,291 @@
+{
+  "name": "rcue",
+  "version": "3.41.6",
+  "dependencies": {
+    "bootstrap": {
+      "version": "3.3.7",
+      "from": "bootstrap@>=3.3.7 <3.4.0",
+      "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.3.7.tgz"
+    },
+    "bootstrap-datepicker": {
+      "version": "1.7.1",
+      "from": "bootstrap-datepicker@>=1.7.1 <2.0.0",
+      "resolved": "https://registry.npmjs.org/bootstrap-datepicker/-/bootstrap-datepicker-1.7.1.tgz",
+      "optional": true
+    },
+    "bootstrap-select": {
+      "version": "1.12.4",
+      "from": "bootstrap-select@>=1.12.2 <2.0.0",
+      "resolved": "https://registry.npmjs.org/bootstrap-select/-/bootstrap-select-1.12.4.tgz",
+      "optional": true
+    },
+    "bootstrap-slider": {
+      "version": "9.10.0",
+      "from": "bootstrap-slider@>=9.9.0 <10.0.0",
+      "resolved": "https://registry.npmjs.org/bootstrap-slider/-/bootstrap-slider-9.10.0.tgz",
+      "optional": true
+    },
+    "bootstrap-switch": {
+      "version": "3.3.4",
+      "from": "bootstrap-switch@>=3.3.4 <3.4.0",
+      "resolved": "https://registry.npmjs.org/bootstrap-switch/-/bootstrap-switch-3.3.4.tgz",
+      "optional": true
+    },
+    "bootstrap-touchspin": {
+      "version": "3.1.1",
+      "from": "bootstrap-touchspin@>=3.1.1 <3.2.0",
+      "resolved": "https://registry.npmjs.org/bootstrap-touchspin/-/bootstrap-touchspin-3.1.1.tgz",
+      "optional": true
+    },
+    "c3": {
+      "version": "0.4.21",
+      "from": "c3@>=0.4.11 <0.5.0",
+      "resolved": "https://registry.npmjs.org/c3/-/c3-0.4.21.tgz",
+      "optional": true
+    },
+    "d3": {
+      "version": "3.5.17",
+      "from": "d3@>=3.5.17 <3.6.0",
+      "resolved": "https://registry.npmjs.org/d3/-/d3-3.5.17.tgz",
+      "optional": true
+    },
+    "datatables.net": {
+      "version": "1.10.16",
+      "from": "datatables.net@>=1.10.15 <2.0.0",
+      "resolved": "https://registry.npmjs.org/datatables.net/-/datatables.net-1.10.16.tgz"
+    },
+    "datatables.net-bs": {
+      "version": "1.10.16",
+      "from": "datatables.net-bs@>=1.10.9",
+      "resolved": "https://registry.npmjs.org/datatables.net-bs/-/datatables.net-bs-1.10.16.tgz",
+      "optional": true
+    },
+    "datatables.net-colreorder": {
+      "version": "1.4.1",
+      "from": "datatables.net-colreorder@>=1.4.1 <2.0.0",
+      "resolved": "https://registry.npmjs.org/datatables.net-colreorder/-/datatables.net-colreorder-1.4.1.tgz",
+      "optional": true
+    },
+    "datatables.net-colreorder-bs": {
+      "version": "1.3.3",
+      "from": "datatables.net-colreorder-bs@>=1.3.2 <1.4.0",
+      "resolved": "https://registry.npmjs.org/datatables.net-colreorder-bs/-/datatables.net-colreorder-bs-1.3.3.tgz",
+      "optional": true
+    },
+    "datatables.net-select": {
+      "version": "1.2.5",
+      "from": "datatables.net-select@>=1.2.0 <1.3.0",
+      "resolved": "https://registry.npmjs.org/datatables.net-select/-/datatables.net-select-1.2.5.tgz",
+      "optional": true
+    },
+    "drmonty-datatables-colvis": {
+      "version": "1.1.2",
+      "from": "drmonty-datatables-colvis@>=1.1.2 <1.2.0",
+      "resolved": "https://registry.npmjs.org/drmonty-datatables-colvis/-/drmonty-datatables-colvis-1.1.2.tgz",
+      "optional": true
+    },
+    "eonasdan-bootstrap-datetimepicker": {
+      "version": "4.17.47",
+      "from": "eonasdan-bootstrap-datetimepicker@>=4.17.47 <5.0.0",
+      "resolved": "https://registry.npmjs.org/eonasdan-bootstrap-datetimepicker/-/eonasdan-bootstrap-datetimepicker-4.17.47.tgz",
+      "optional": true
+    },
+    "font-awesome": {
+      "version": "4.7.0",
+      "from": "font-awesome@>=4.7.0 <5.0.0",
+      "resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz"
+    },
+    "google-code-prettify": {
+      "version": "1.0.5",
+      "from": "google-code-prettify@>=1.0.5 <1.1.0",
+      "resolved": "https://registry.npmjs.org/google-code-prettify/-/google-code-prettify-1.0.5.tgz",
+      "optional": true
+    },
+    "jquery": {
+      "version": "3.2.1",
+      "from": "jquery@>=3.2.1 <3.3.0",
+      "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.2.1.tgz"
+    },
+    "jquery-match-height": {
+      "version": "0.7.2",
+      "from": "jquery-match-height@>=0.7.2 <0.8.0",
+      "resolved": "https://registry.npmjs.org/jquery-match-height/-/jquery-match-height-0.7.2.tgz",
+      "optional": true
+    },
+    "moment": {
+      "version": "2.21.0",
+      "from": "moment@>=2.19.1 <3.0.0",
+      "resolved": "https://registry.npmjs.org/moment/-/moment-2.21.0.tgz"
+    },
+    "moment-timezone": {
+      "version": "0.4.1",
+      "from": "moment-timezone@>=0.4.1 <0.5.0",
+      "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.4.1.tgz",
+      "optional": true
+    },
+    "patternfly": {
+      "version": "3.41.6",
+      "from": "patternfly@3.41.6",
+      "resolved": "https://registry.npmjs.org/patternfly/-/patternfly-3.41.6.tgz",
+      "dependencies": {
+        "bootstrap": {
+          "version": "3.3.7",
+          "from": "bootstrap@>=3.3.7 <3.4.0",
+          "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.3.7.tgz"
+        },
+        "bootstrap-datepicker": {
+          "version": "1.7.1",
+          "from": "bootstrap-datepicker@>=1.7.1 <2.0.0",
+          "resolved": "https://registry.npmjs.org/bootstrap-datepicker/-/bootstrap-datepicker-1.7.1.tgz",
+          "optional": true
+        },
+        "bootstrap-sass": {
+          "version": "3.3.7",
+          "from": "bootstrap-sass@>=3.3.7 <4.0.0",
+          "resolved": "https://registry.npmjs.org/bootstrap-sass/-/bootstrap-sass-3.3.7.tgz",
+          "optional": true
+        },
+        "bootstrap-select": {
+          "version": "1.12.4",
+          "from": "bootstrap-select@>=1.12.2 <2.0.0",
+          "resolved": "https://registry.npmjs.org/bootstrap-select/-/bootstrap-select-1.12.4.tgz",
+          "optional": true
+        },
+        "bootstrap-slider": {
+          "version": "9.10.0",
+          "from": "bootstrap-slider@>=9.9.0 <10.0.0",
+          "resolved": "https://registry.npmjs.org/bootstrap-slider/-/bootstrap-slider-9.10.0.tgz",
+          "optional": true
+        },
+        "bootstrap-switch": {
+          "version": "3.3.4",
+          "from": "bootstrap-switch@>=3.3.4 <3.4.0",
+          "resolved": "https://registry.npmjs.org/bootstrap-switch/-/bootstrap-switch-3.3.4.tgz",
+          "optional": true
+        },
+        "bootstrap-touchspin": {
+          "version": "3.1.1",
+          "from": "bootstrap-touchspin@>=3.1.1 <3.2.0",
+          "resolved": "https://registry.npmjs.org/bootstrap-touchspin/-/bootstrap-touchspin-3.1.1.tgz",
+          "optional": true
+        },
+        "c3": {
+          "version": "0.4.18",
+          "from": "c3@>=0.4.11 <0.5.0",
+          "resolved": "https://registry.npmjs.org/c3/-/c3-0.4.18.tgz",
+          "optional": true
+        },
+        "d3": {
+          "version": "3.5.17",
+          "from": "d3@>=3.5.17 <3.6.0",
+          "resolved": "https://registry.npmjs.org/d3/-/d3-3.5.17.tgz",
+          "optional": true
+        },
+        "datatables.net": {
+          "version": "1.10.16",
+          "from": "datatables.net@>=1.10.15 <2.0.0",
+          "resolved": "https://registry.npmjs.org/datatables.net/-/datatables.net-1.10.16.tgz"
+        },
+        "datatables.net-bs": {
+          "version": "1.10.16",
+          "from": "datatables.net-bs@>=1.10.9",
+          "resolved": "https://registry.npmjs.org/datatables.net-bs/-/datatables.net-bs-1.10.16.tgz",
+          "optional": true
+        },
+        "datatables.net-colreorder": {
+          "version": "1.4.1",
+          "from": "datatables.net-colreorder@>=1.4.1 <2.0.0",
+          "resolved": "https://registry.npmjs.org/datatables.net-colreorder/-/datatables.net-colreorder-1.4.1.tgz",
+          "optional": true
+        },
+        "datatables.net-colreorder-bs": {
+          "version": "1.3.3",
+          "from": "datatables.net-colreorder-bs@>=1.3.2 <1.4.0",
+          "resolved": "https://registry.npmjs.org/datatables.net-colreorder-bs/-/datatables.net-colreorder-bs-1.3.3.tgz",
+          "optional": true
+        },
+        "datatables.net-select": {
+          "version": "1.2.3",
+          "from": "datatables.net-select@>=1.2.0 <1.3.0",
+          "resolved": "https://registry.npmjs.org/datatables.net-select/-/datatables.net-select-1.2.3.tgz",
+          "optional": true
+        },
+        "drmonty-datatables-colvis": {
+          "version": "1.1.2",
+          "from": "drmonty-datatables-colvis@>=1.1.2 <1.2.0",
+          "resolved": "https://registry.npmjs.org/drmonty-datatables-colvis/-/drmonty-datatables-colvis-1.1.2.tgz",
+          "optional": true
+        },
+        "eonasdan-bootstrap-datetimepicker": {
+          "version": "4.17.47",
+          "from": "eonasdan-bootstrap-datetimepicker@>=4.17.47 <5.0.0",
+          "resolved": "https://registry.npmjs.org/eonasdan-bootstrap-datetimepicker/-/eonasdan-bootstrap-datetimepicker-4.17.47.tgz",
+          "optional": true
+        },
+        "font-awesome": {
+          "version": "4.7.0",
+          "from": "font-awesome@>=4.7.0 <5.0.0",
+          "resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz"
+        },
+        "font-awesome-sass": {
+          "version": "4.7.0",
+          "from": "font-awesome-sass@>=4.7.0 <5.0.0",
+          "resolved": "https://registry.npmjs.org/font-awesome-sass/-/font-awesome-sass-4.7.0.tgz",
+          "optional": true
+        },
+        "google-code-prettify": {
+          "version": "1.0.5",
+          "from": "google-code-prettify@>=1.0.5 <1.1.0",
+          "resolved": "https://registry.npmjs.org/google-code-prettify/-/google-code-prettify-1.0.5.tgz",
+          "optional": true
+        },
+        "jquery": {
+          "version": "3.2.1",
+          "from": "jquery@>=3.2.1 <3.3.0",
+          "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.2.1.tgz"
+        },
+        "jquery-match-height": {
+          "version": "0.7.2",
+          "from": "jquery-match-height@>=0.7.2 <0.8.0",
+          "resolved": "https://registry.npmjs.org/jquery-match-height/-/jquery-match-height-0.7.2.tgz",
+          "optional": true
+        },
+        "moment": {
+          "version": "2.20.1",
+          "from": "moment@>=2.19.1 <3.0.0",
+          "resolved": "https://registry.npmjs.org/moment/-/moment-2.20.1.tgz"
+        },
+        "moment-timezone": {
+          "version": "0.4.1",
+          "from": "moment-timezone@>=0.4.1 <0.5.0",
+          "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.4.1.tgz",
+          "optional": true
+        },
+        "patternfly-bootstrap-combobox": {
+          "version": "1.1.7",
+          "from": "patternfly-bootstrap-combobox@>=1.1.7 <1.2.0",
+          "resolved": "https://registry.npmjs.org/patternfly-bootstrap-combobox/-/patternfly-bootstrap-combobox-1.1.7.tgz",
+          "optional": true
+        },
+        "patternfly-bootstrap-treeview": {
+          "version": "2.1.5",
+          "from": "patternfly-bootstrap-treeview@>=2.1.0 <2.2.0",
+          "resolved": "https://registry.npmjs.org/patternfly-bootstrap-treeview/-/patternfly-bootstrap-treeview-2.1.5.tgz",
+          "optional": true
+        }
+      }
+    },
+    "patternfly-bootstrap-combobox": {
+      "version": "1.1.7",
+      "from": "patternfly-bootstrap-combobox@>=1.1.7 <1.2.0",
+      "resolved": "https://registry.npmjs.org/patternfly-bootstrap-combobox/-/patternfly-bootstrap-combobox-1.1.7.tgz",
+      "optional": true
+    },
+    "patternfly-bootstrap-treeview": {
+      "version": "2.1.5",
+      "from": "patternfly-bootstrap-treeview@>=2.1.0 <2.2.0",
+      "resolved": "https://registry.npmjs.org/patternfly-bootstrap-treeview/-/patternfly-bootstrap-treeview-2.1.5.tgz",
+      "optional": true
+    }
+  }
+}
diff --git a/themes/src/main/node_modules/rcue/package.json b/themes/src/main/node_modules/rcue/package.json
new file mode 100644
index 0000000..ed99435
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/package.json
@@ -0,0 +1,394 @@
+{
+  "_from": "rcue@3.41.6",
+  "_id": "rcue@3.41.6",
+  "_inBundle": false,
+  "_integrity": "sha1-8t224IWD1e1jlklbX5AkhHWmwfc=",
+  "_location": "/rcue",
+  "_phantomChildren": {},
+  "_requested": {
+    "type": "version",
+    "registry": true,
+    "raw": "rcue@3.41.6",
+    "name": "rcue",
+    "escapedName": "rcue",
+    "rawSpec": "3.41.6",
+    "saveSpec": null,
+    "fetchSpec": "3.41.6"
+  },
+  "_requiredBy": [
+    "/"
+  ],
+  "_resolved": "https://registry.npmjs.org/rcue/-/rcue-3.41.6.tgz",
+  "_shasum": "f2ddb6e08583d5ed6396495b5f90248475a6c1f7",
+  "_shrinkwrap": {
+    "name": "rcue",
+    "version": "3.41.6",
+    "dependencies": {
+      "bootstrap": {
+        "version": "3.3.7",
+        "from": "bootstrap@>=3.3.7 <3.4.0",
+        "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.3.7.tgz"
+      },
+      "bootstrap-datepicker": {
+        "version": "1.7.1",
+        "from": "bootstrap-datepicker@>=1.7.1 <2.0.0",
+        "resolved": "https://registry.npmjs.org/bootstrap-datepicker/-/bootstrap-datepicker-1.7.1.tgz",
+        "optional": true
+      },
+      "bootstrap-select": {
+        "version": "1.12.4",
+        "from": "bootstrap-select@>=1.12.2 <2.0.0",
+        "resolved": "https://registry.npmjs.org/bootstrap-select/-/bootstrap-select-1.12.4.tgz",
+        "optional": true
+      },
+      "bootstrap-slider": {
+        "version": "9.10.0",
+        "from": "bootstrap-slider@>=9.9.0 <10.0.0",
+        "resolved": "https://registry.npmjs.org/bootstrap-slider/-/bootstrap-slider-9.10.0.tgz",
+        "optional": true
+      },
+      "bootstrap-switch": {
+        "version": "3.3.4",
+        "from": "bootstrap-switch@>=3.3.4 <3.4.0",
+        "resolved": "https://registry.npmjs.org/bootstrap-switch/-/bootstrap-switch-3.3.4.tgz",
+        "optional": true
+      },
+      "bootstrap-touchspin": {
+        "version": "3.1.1",
+        "from": "bootstrap-touchspin@>=3.1.1 <3.2.0",
+        "resolved": "https://registry.npmjs.org/bootstrap-touchspin/-/bootstrap-touchspin-3.1.1.tgz",
+        "optional": true
+      },
+      "c3": {
+        "version": "0.4.21",
+        "from": "c3@>=0.4.11 <0.5.0",
+        "resolved": "https://registry.npmjs.org/c3/-/c3-0.4.21.tgz",
+        "optional": true
+      },
+      "d3": {
+        "version": "3.5.17",
+        "from": "d3@>=3.5.17 <3.6.0",
+        "resolved": "https://registry.npmjs.org/d3/-/d3-3.5.17.tgz",
+        "optional": true
+      },
+      "datatables.net": {
+        "version": "1.10.16",
+        "from": "datatables.net@>=1.10.15 <2.0.0",
+        "resolved": "https://registry.npmjs.org/datatables.net/-/datatables.net-1.10.16.tgz"
+      },
+      "datatables.net-bs": {
+        "version": "1.10.16",
+        "from": "datatables.net-bs@>=1.10.9",
+        "resolved": "https://registry.npmjs.org/datatables.net-bs/-/datatables.net-bs-1.10.16.tgz",
+        "optional": true
+      },
+      "datatables.net-colreorder": {
+        "version": "1.4.1",
+        "from": "datatables.net-colreorder@>=1.4.1 <2.0.0",
+        "resolved": "https://registry.npmjs.org/datatables.net-colreorder/-/datatables.net-colreorder-1.4.1.tgz",
+        "optional": true
+      },
+      "datatables.net-colreorder-bs": {
+        "version": "1.3.3",
+        "from": "datatables.net-colreorder-bs@>=1.3.2 <1.4.0",
+        "resolved": "https://registry.npmjs.org/datatables.net-colreorder-bs/-/datatables.net-colreorder-bs-1.3.3.tgz",
+        "optional": true
+      },
+      "datatables.net-select": {
+        "version": "1.2.5",
+        "from": "datatables.net-select@>=1.2.0 <1.3.0",
+        "resolved": "https://registry.npmjs.org/datatables.net-select/-/datatables.net-select-1.2.5.tgz",
+        "optional": true
+      },
+      "drmonty-datatables-colvis": {
+        "version": "1.1.2",
+        "from": "drmonty-datatables-colvis@>=1.1.2 <1.2.0",
+        "resolved": "https://registry.npmjs.org/drmonty-datatables-colvis/-/drmonty-datatables-colvis-1.1.2.tgz",
+        "optional": true
+      },
+      "eonasdan-bootstrap-datetimepicker": {
+        "version": "4.17.47",
+        "from": "eonasdan-bootstrap-datetimepicker@>=4.17.47 <5.0.0",
+        "resolved": "https://registry.npmjs.org/eonasdan-bootstrap-datetimepicker/-/eonasdan-bootstrap-datetimepicker-4.17.47.tgz",
+        "optional": true
+      },
+      "font-awesome": {
+        "version": "4.7.0",
+        "from": "font-awesome@>=4.7.0 <5.0.0",
+        "resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz"
+      },
+      "google-code-prettify": {
+        "version": "1.0.5",
+        "from": "google-code-prettify@>=1.0.5 <1.1.0",
+        "resolved": "https://registry.npmjs.org/google-code-prettify/-/google-code-prettify-1.0.5.tgz",
+        "optional": true
+      },
+      "jquery": {
+        "version": "3.2.1",
+        "from": "jquery@>=3.2.1 <3.3.0",
+        "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.2.1.tgz"
+      },
+      "jquery-match-height": {
+        "version": "0.7.2",
+        "from": "jquery-match-height@>=0.7.2 <0.8.0",
+        "resolved": "https://registry.npmjs.org/jquery-match-height/-/jquery-match-height-0.7.2.tgz",
+        "optional": true
+      },
+      "moment": {
+        "version": "2.21.0",
+        "from": "moment@>=2.19.1 <3.0.0",
+        "resolved": "https://registry.npmjs.org/moment/-/moment-2.21.0.tgz"
+      },
+      "moment-timezone": {
+        "version": "0.4.1",
+        "from": "moment-timezone@>=0.4.1 <0.5.0",
+        "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.4.1.tgz",
+        "optional": true
+      },
+      "patternfly": {
+        "version": "3.41.6",
+        "from": "patternfly@3.41.6",
+        "resolved": "https://registry.npmjs.org/patternfly/-/patternfly-3.41.6.tgz",
+        "dependencies": {
+          "bootstrap": {
+            "version": "3.3.7",
+            "from": "bootstrap@>=3.3.7 <3.4.0",
+            "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.3.7.tgz"
+          },
+          "bootstrap-datepicker": {
+            "version": "1.7.1",
+            "from": "bootstrap-datepicker@>=1.7.1 <2.0.0",
+            "resolved": "https://registry.npmjs.org/bootstrap-datepicker/-/bootstrap-datepicker-1.7.1.tgz",
+            "optional": true
+          },
+          "bootstrap-sass": {
+            "version": "3.3.7",
+            "from": "bootstrap-sass@>=3.3.7 <4.0.0",
+            "resolved": "https://registry.npmjs.org/bootstrap-sass/-/bootstrap-sass-3.3.7.tgz",
+            "optional": true
+          },
+          "bootstrap-select": {
+            "version": "1.12.4",
+            "from": "bootstrap-select@>=1.12.2 <2.0.0",
+            "resolved": "https://registry.npmjs.org/bootstrap-select/-/bootstrap-select-1.12.4.tgz",
+            "optional": true
+          },
+          "bootstrap-slider": {
+            "version": "9.10.0",
+            "from": "bootstrap-slider@>=9.9.0 <10.0.0",
+            "resolved": "https://registry.npmjs.org/bootstrap-slider/-/bootstrap-slider-9.10.0.tgz",
+            "optional": true
+          },
+          "bootstrap-switch": {
+            "version": "3.3.4",
+            "from": "bootstrap-switch@>=3.3.4 <3.4.0",
+            "resolved": "https://registry.npmjs.org/bootstrap-switch/-/bootstrap-switch-3.3.4.tgz",
+            "optional": true
+          },
+          "bootstrap-touchspin": {
+            "version": "3.1.1",
+            "from": "bootstrap-touchspin@>=3.1.1 <3.2.0",
+            "resolved": "https://registry.npmjs.org/bootstrap-touchspin/-/bootstrap-touchspin-3.1.1.tgz",
+            "optional": true
+          },
+          "c3": {
+            "version": "0.4.18",
+            "from": "c3@>=0.4.11 <0.5.0",
+            "resolved": "https://registry.npmjs.org/c3/-/c3-0.4.18.tgz",
+            "optional": true
+          },
+          "d3": {
+            "version": "3.5.17",
+            "from": "d3@>=3.5.17 <3.6.0",
+            "resolved": "https://registry.npmjs.org/d3/-/d3-3.5.17.tgz",
+            "optional": true
+          },
+          "datatables.net": {
+            "version": "1.10.16",
+            "from": "datatables.net@>=1.10.15 <2.0.0",
+            "resolved": "https://registry.npmjs.org/datatables.net/-/datatables.net-1.10.16.tgz"
+          },
+          "datatables.net-bs": {
+            "version": "1.10.16",
+            "from": "datatables.net-bs@>=1.10.9",
+            "resolved": "https://registry.npmjs.org/datatables.net-bs/-/datatables.net-bs-1.10.16.tgz",
+            "optional": true
+          },
+          "datatables.net-colreorder": {
+            "version": "1.4.1",
+            "from": "datatables.net-colreorder@>=1.4.1 <2.0.0",
+            "resolved": "https://registry.npmjs.org/datatables.net-colreorder/-/datatables.net-colreorder-1.4.1.tgz",
+            "optional": true
+          },
+          "datatables.net-colreorder-bs": {
+            "version": "1.3.3",
+            "from": "datatables.net-colreorder-bs@>=1.3.2 <1.4.0",
+            "resolved": "https://registry.npmjs.org/datatables.net-colreorder-bs/-/datatables.net-colreorder-bs-1.3.3.tgz",
+            "optional": true
+          },
+          "datatables.net-select": {
+            "version": "1.2.3",
+            "from": "datatables.net-select@>=1.2.0 <1.3.0",
+            "resolved": "https://registry.npmjs.org/datatables.net-select/-/datatables.net-select-1.2.3.tgz",
+            "optional": true
+          },
+          "drmonty-datatables-colvis": {
+            "version": "1.1.2",
+            "from": "drmonty-datatables-colvis@>=1.1.2 <1.2.0",
+            "resolved": "https://registry.npmjs.org/drmonty-datatables-colvis/-/drmonty-datatables-colvis-1.1.2.tgz",
+            "optional": true
+          },
+          "eonasdan-bootstrap-datetimepicker": {
+            "version": "4.17.47",
+            "from": "eonasdan-bootstrap-datetimepicker@>=4.17.47 <5.0.0",
+            "resolved": "https://registry.npmjs.org/eonasdan-bootstrap-datetimepicker/-/eonasdan-bootstrap-datetimepicker-4.17.47.tgz",
+            "optional": true
+          },
+          "font-awesome": {
+            "version": "4.7.0",
+            "from": "font-awesome@>=4.7.0 <5.0.0",
+            "resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz"
+          },
+          "font-awesome-sass": {
+            "version": "4.7.0",
+            "from": "font-awesome-sass@>=4.7.0 <5.0.0",
+            "resolved": "https://registry.npmjs.org/font-awesome-sass/-/font-awesome-sass-4.7.0.tgz",
+            "optional": true
+          },
+          "google-code-prettify": {
+            "version": "1.0.5",
+            "from": "google-code-prettify@>=1.0.5 <1.1.0",
+            "resolved": "https://registry.npmjs.org/google-code-prettify/-/google-code-prettify-1.0.5.tgz",
+            "optional": true
+          },
+          "jquery": {
+            "version": "3.2.1",
+            "from": "jquery@>=3.2.1 <3.3.0",
+            "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.2.1.tgz"
+          },
+          "jquery-match-height": {
+            "version": "0.7.2",
+            "from": "jquery-match-height@>=0.7.2 <0.8.0",
+            "resolved": "https://registry.npmjs.org/jquery-match-height/-/jquery-match-height-0.7.2.tgz",
+            "optional": true
+          },
+          "moment": {
+            "version": "2.20.1",
+            "from": "moment@>=2.19.1 <3.0.0",
+            "resolved": "https://registry.npmjs.org/moment/-/moment-2.20.1.tgz"
+          },
+          "moment-timezone": {
+            "version": "0.4.1",
+            "from": "moment-timezone@>=0.4.1 <0.5.0",
+            "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.4.1.tgz",
+            "optional": true
+          },
+          "patternfly-bootstrap-combobox": {
+            "version": "1.1.7",
+            "from": "patternfly-bootstrap-combobox@>=1.1.7 <1.2.0",
+            "resolved": "https://registry.npmjs.org/patternfly-bootstrap-combobox/-/patternfly-bootstrap-combobox-1.1.7.tgz",
+            "optional": true
+          },
+          "patternfly-bootstrap-treeview": {
+            "version": "2.1.5",
+            "from": "patternfly-bootstrap-treeview@>=2.1.0 <2.2.0",
+            "resolved": "https://registry.npmjs.org/patternfly-bootstrap-treeview/-/patternfly-bootstrap-treeview-2.1.5.tgz",
+            "optional": true
+          }
+        }
+      },
+      "patternfly-bootstrap-combobox": {
+        "version": "1.1.7",
+        "from": "patternfly-bootstrap-combobox@>=1.1.7 <1.2.0",
+        "resolved": "https://registry.npmjs.org/patternfly-bootstrap-combobox/-/patternfly-bootstrap-combobox-1.1.7.tgz",
+        "optional": true
+      },
+      "patternfly-bootstrap-treeview": {
+        "version": "2.1.5",
+        "from": "patternfly-bootstrap-treeview@>=2.1.0 <2.2.0",
+        "resolved": "https://registry.npmjs.org/patternfly-bootstrap-treeview/-/patternfly-bootstrap-treeview-2.1.5.tgz",
+        "optional": true
+      }
+    }
+  },
+  "_spec": "rcue@3.41.6",
+  "_where": "/home/st/dev/keycloak/themes/src/main",
+  "author": {
+    "name": "Red Hat"
+  },
+  "bugs": {
+    "url": "https://github.com/patternfly/rcue/issues"
+  },
+  "bundleDependencies": false,
+  "dependencies": {
+    "bootstrap": "~3.3.7",
+    "bootstrap-datepicker": "^1.7.1",
+    "bootstrap-select": "^1.12.2",
+    "bootstrap-slider": "^9.9.0",
+    "bootstrap-switch": "~3.3.4",
+    "bootstrap-touchspin": "~3.1.1",
+    "c3": "~0.4.11",
+    "d3": "~3.5.17",
+    "datatables.net": "^1.10.15",
+    "datatables.net-colreorder": "^1.4.1",
+    "datatables.net-colreorder-bs": "~1.3.2",
+    "datatables.net-select": "~1.2.0",
+    "drmonty-datatables-colvis": "~1.1.2",
+    "eonasdan-bootstrap-datetimepicker": "^4.17.47",
+    "font-awesome": "^4.7.0",
+    "google-code-prettify": "~1.0.5",
+    "jquery": "~3.2.1",
+    "jquery-match-height": "^0.7.2",
+    "moment": "^2.19.1",
+    "moment-timezone": "^0.4.1",
+    "patternfly": "3.41.6",
+    "patternfly-bootstrap-combobox": "~1.1.7",
+    "patternfly-bootstrap-treeview": "~2.1.0"
+  },
+  "deprecated": false,
+  "description": "The [Red Hat Common User Experience (RCUE)](http://rcue-uxd.itos.redhat.com/) project was created to promote design commonality across all of Red Hat’s Enterprise product offerings.",
+  "devDependencies": {
+    "connect-livereload": "~0.5.4",
+    "grunt": "~1.0.1",
+    "grunt-contrib-connect": "~1.0.2",
+    "grunt-contrib-copy": "^1.0.0",
+    "grunt-contrib-cssmin": "^2.0.0",
+    "grunt-contrib-less": "^1.3.0",
+    "grunt-contrib-watch": "~1.0.0",
+    "grunt-css-count": "^0.3.1",
+    "grunt-jekyll": "^0.4.4",
+    "grunt-run": "^0.6.0",
+    "matchdep": "~1.0.1",
+    "nsp": "^2.6.1",
+    "patternfly-eng-release": "^3.26.46"
+  },
+  "homepage": "https://github.com/patternfly/rcue",
+  "license": "Apache-2.0",
+  "name": "rcue",
+  "optionalDependencies": {
+    "bootstrap-datepicker": "^1.7.1",
+    "bootstrap-select": "^1.12.2",
+    "bootstrap-slider": "^9.9.0",
+    "bootstrap-switch": "~3.3.4",
+    "bootstrap-touchspin": "~3.1.1",
+    "c3": "~0.4.11",
+    "d3": "~3.5.17",
+    "datatables.net": "^1.10.15",
+    "datatables.net-colreorder": "^1.4.1",
+    "datatables.net-colreorder-bs": "~1.3.2",
+    "datatables.net-select": "~1.2.0",
+    "drmonty-datatables-colvis": "~1.1.2",
+    "eonasdan-bootstrap-datetimepicker": "^4.17.47",
+    "google-code-prettify": "~1.0.5",
+    "jquery-match-height": "^0.7.2",
+    "moment": "^2.19.1",
+    "moment-timezone": "^0.4.1",
+    "patternfly-bootstrap-combobox": "~1.1.7",
+    "patternfly-bootstrap-treeview": "~2.1.0"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/patternfly/rcue.git"
+  },
+  "version": "3.41.6"
+}
diff --git a/themes/src/main/node_modules/rcue/QUICKSTART.md b/themes/src/main/node_modules/rcue/QUICKSTART.md
new file mode 100644
index 0000000..64fc099
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/QUICKSTART.md
@@ -0,0 +1,100 @@
+# Using Red Hat Common User Experience (RCUE) - Guide to move from PatternFly to RCUE
+
+RCUE is based on [PatternFly](https://www.patternfly.org/), which is based on [Bootstrap v3](http://getbootstrap.com/).  Think of RCUE as a "skinned" version of PatternFly. **RCUE is meant to be used as a replacement for PatternFly**, so please don't include the PatternFly (or Bootstrap) CSS if you are including the RCUE CSS in your project.
+
+This guide will walk the steps to go from a PatternFly to RCUE styles:
+
+## 1. Installation
+
+### Get RCUE
+
+RCUE can be installed and managed through [NPM](https://www.npmjs.com/). To do so, either add `rcue` as a dependency in your `package.json` or run the following:
+
+```
+npm install rcue --save
+```
+
+### What's Included
+
+Within the `node_module/rcue/dist` folder you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:
+
+```
+rcue/
+├── dist/
+│   ├── css/
+│   │   │── rcue.min.css (* need to include)
+│   │   │── rcue-additions.min.css (* need to include)
+│   └── img/
+│   │   │── branding materials and loading indicators
+├── less/
+│   ├── variables, mixin, and component Less files (may need to include if you want to customize the already built CSS)
+└── tests/
+    ├── example markup source files
+```
+
+RCUE provides compiled CSS (`rcue.*`), as well as compiled and minified CSS (`rcue.min.*`). CSS [source maps](https://developer.chrome.com/devtools/docs/css-preprocessors) (`rcue.*.map`) are available for use with certain browsers' developer tools.
+
+## 2. Replace PatternFly with RCUE
+Look for the PatternFly folder on your project and replace it with the RCUE folder you've just downloaded.
+
+This swap will break your project paths, but don't worry! it's an easy fix we will discuss later on.
+
+## 3. Using RCUE In Your Application
+
+Your last task is to change the paths of your project and point them to the new RCUE folder.
+
+1. Add the following CSS includes to your HTML file(s), adjusting path where needed:
+
+        <!-- RCUE Styles -->
+        <!-- Note: No other CSS files are needed regardless of what other JS packages you decide to pull in -->
+        <link rel="stylesheet" href="PATH-TO/node_modules/rcue/dist/css/rcue.min.css" />
+        <link rel="stylesheet" href="PATH-TO/node_modules/rcue/dist/css/rcue-additions.min.css" />
+
+2. Add the following script includes to your HTML file(s), adjusting where necessary to pull in only what you need:
+
+        <!-- jQuery -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/jquery/dist/jquery.js"></script>
+
+        <!-- Bootstrap JS -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/bootstrap/dist/js/bootstrap.js"></script>
+
+        <!-- C3, D3 - Charting Libraries -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/c3/c3.min.js"></script>
+        <script src="PATH-TO/node_modules/rcue/node_modules/d3/d3.min.js"></script>
+
+        <!-- Datatables, jQuery Grid Component -->
+        <!-- Note: jquery.dataTables.js must occur in the html source before patternfly*.js.-->
+        <script src="PATH-TO/node_modules/rcue/node_modules/datatables/media/js/jquery.dataTables.js"></script>
+        <script src="PATH-TO/node_modules/rcue/node_modules/drmonty-datatables-colvis/js/dataTables.colVis.js"></script>
+        <script src="PATH-TO/node_modules/rcue/node_modules/datatables.net-colreorder/js/dataTables.colReorder.js"></script>
+
+        <!-- Patternfly Custom Componets -  Sidebar, Popovers and Datatables Customizations -->
+        <!-- Note: jquery.dataTables.js must occur in the html source before patternfly*.js.-->
+        <script src="PATH-TO/node_modules/rcue/dist/js/patternfly.js"></script>
+
+        <!-- Bootstrap Date Picker -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js"></script>
+
+        <!-- Bootstrap Combobox -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/patternfly-bootstrap-combobox/js/bootstrap-combobox.js"></script>
+
+        <!-- Bootstrap Select -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/bootstrap-select/dist/js/bootstrap-select.min.js"></script>
+
+        <!-- Bootstrap Tree View -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/patternfly-bootstrap-treeview/dist/bootstrap-treeview.min.js"></script>
+
+        <!-- Google Code Prettify - Syntax highlighting of code snippets -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/google-code-prettify/bin/prettify.min.js"></script>
+
+        <!-- MatchHeight - Used to make sure dashboard cards are the same height -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/jquery-match-height/dist/jquery.matchHeight.js"></script>
+
+        <!-- Angular Application? You May Want to Consider Pulling Angular-Patternfly And Angular-UI Bootstrap instead of bootstrap.js -->
+        <!-- See https://github.com/patternfly/angular-patternfly for more information -->
+
+## 6. Enjoy
+
+You are done :smile:
+
+If you have any question please contact [the UXD team](mailto:uxd-team@redhat.com).
diff --git a/themes/src/main/node_modules/rcue/README.md b/themes/src/main/node_modules/rcue/README.md
new file mode 100644
index 0000000..2aa0266
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/README.md
@@ -0,0 +1,118 @@
+# [Red Hat Common User Experience (RCUE)](https://redhat-rcue.github.io/) reference implementation
+
+The [Red Hat Common User Experience (RCUE)](https://redhat-rcue.github.io/) project was created to promote design commonality across all of Red Hat’s Enterprise product offerings.
+
+This reference implementation of RCUE is based on [PatternFly](https://www.patternfly.org/) and [Bootstrap v3](http://getbootstrap.com/).  Think of RCUE as a "skinned" version of Bootstrap with additional components and customizations.  For information on how to quickly get started using RCUE, see the [Quick Start Guide](QUICKSTART.md).
+
+## Dependencies
+
+RCUE includes a number of dependencies that are not committed to this repository.  To add them, see "Install NPM Dependencies".  And make sure you keep them updated (see "Keeping NPM Dependencies Updated").
+
+## Development
+
+Development setup requires nodejs and Ruby. If you do not already have nodejs, npm, and Ruby installed on your system, see https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager and https://www.ruby-lang.org/en/downloads.
+
+### Install NPM Dependencies
+
+The development includes the use of a number of helpful tasks. In order to setup your development environment to allow running of these tasks, you need to install the local nodejs packages declared in `package.json`. To do this run:
+
+    npm install
+
+This will install all necessary development packages into `node_modules/`. At this point, the gruntjs tasks are available for use such as starting a local development server or building the master CSS file.
+
+Additionally you may need to install the grunt command line utility.  To do this run:
+
+    npm install -g grunt-cli
+
+Test pages are generated using [Jekyll](http://jekyllrb.com/).  After ensuring Ruby is installed and available, run:
+
+    gem install jekyll
+
+#### Keeping NPM Dependencies Updated
+
+Anytime you pull a new version of RCUE, make sure you also run
+
+    npm update
+
+so you get the latest version of the components specified in package.json.
+
+### Live Reload Server
+
+A local development server can be quickly fired up by using the Gruntjs server task:
+
+    grunt server
+
+This local static asset server (i.e., [http://localhost:9001](http://localhost:9001)) has the advantage of having livereload integration. Thus, if you start the Gruntjs server, any changes you make to `.html` or `.less` files will be automatically reloaded into your browser and the changes reflected almost immediately. This has the obvious benefit of not having to refresh your browser and still be able to see the changes as you add or remove them from your development files.
+
+### Coding Style
+
+* Indentation
+    * Use spaces (not tabs)
+    * Indentation size is 2 spaces
+* Filenames
+    * All filenames will use a lowercase-hyphenated naming convention (e.g., single-select-dropdown.less)
+* LESSCSS
+    * CSS class names use lowercase-hyphenated naming convention (e.g., .navbar-nav)
+    * Alphabetize rules by selector
+    * Alphabetize properties by declaration
+    * Define or override variables centrally in less/variables.less
+    * Define or override mixins centrally in less/mixins.less
+
+## Build
+
+### CSS
+
+In development, styling is written and managed through multiple lesscss files. In order to generate a CSS file of all styling, run the build Gruntjs task:
+
+    grunt build
+
+This task will compile and minify the lesscss files into a single CSS file located at `dist/css/rcue.min.css`.
+
+## Tests
+
+The `tests/` directory contains HTML pages with component and pattern examples in order to facilitate development.  Please consult the official documentation (see below) for full details on how to use RCUE.
+
+The HTML pages in `tests/` are generated using Jekyll.  Do *not* edit these files directly.  Changes to the test source files (`components/patternfly/tests-src/`) should be made upstream in PatternFly.
+
+## Release
+
+To release a new version version of RCUE, edit `bower.json` and `package.json`.
+
+Update the version listed in `bower.json` by editing the file and changing the line:
+
+```
+"version": "<new_version>"
+```
+
+Update the version listed in `package.json` by editing the file and changing the line:
+
+```
+"version": "<new_version>"
+```
+
+Commit the version bump:
+
+```
+git commit -a -m "Version bump to <new_version>"
+```
+
+Tag and push upstream (assuming you have commit access):
+
+```
+git tag <new_version>
+git push && git push --tags
+```
+
+## Documentation
+
+See [https://redhat-rcue.github.io/](https://redhat-rcue.github.io/), [https://www.patternfly.org/](https://www.patternfly.org/), and [http://getbootstrap.com/](http://getbootstrap.com/).
+
+### Browser and Device Support
+
+Since RCUE is based on PatternFly, and PatternFly is based on Bootstrap, RCUE supports [the same browsers as Bootstrap](http://getbootstrap.com/getting-started/#support) **excluding Internet Explorer 8**, plus the latest version of [Firefox for Linux](https://support.mozilla.org/en-US/kb/install-firefox-linux).
+
+*Important:*  starting with the v2.0.0 release, **RCUE no longer supports Internet Explorer 8**.
+
+## License
+
+Modifications to Bootstrap are copyright 2013 Red Hat, Inc. and licensed under the [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0.html).
diff --git a/themes/src/main/node_modules/rcue/tests/about-modal.html b/themes/src/main/node_modules/rcue/tests/about-modal.html
new file mode 100644
index 0000000..4fb09ba
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/about-modal.html
@@ -0,0 +1,77 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>About Modal - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>About Modal</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <button class="btn btn-default" data-toggle="modal" data-target="#about-modal-1">Launch about modal</button>
+      <div class="modal fade" id="about-modal-1" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
+        <div class="modal-dialog">
+          <div class="modal-content about-modal-pf">
+            <div class="modal-header">
+              <button type="button" class="close" data-dismiss="modal" aria-hidden="true">
+                <span class="pficon pficon-close"></span>
+              </button>
+            </div>
+            <div class="modal-body">
+              <h1>Product Title</h1>
+              <div class="product-versions-pf">
+                <ul class="list-unstyled">
+                  <li><strong>Label</strong> Version</li>
+                  <li><strong>Label</strong> Version</li>
+                  <li><strong>Label</strong> Version</li>
+                  <li><strong>Label</strong> Version</li>
+                  <li><strong>Label</strong> Version</li>
+                  <li><strong>Label</strong> Version</li>
+                </ul>
+              </div>
+              <div class="trademark-pf">
+                Trademark and Copyright Information
+              </div>
+            </div>
+            <div class="modal-footer">
+              <img src="/dist/img/logo.svg" alt="Patternfly Symbol">
+            </div>
+          </div>
+        </div>
+      </div>
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/accordions.html b/themes/src/main/node_modules/rcue/tests/accordions.html
new file mode 100644
index 0000000..c1dfbe0
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/accordions.html
@@ -0,0 +1,350 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Accordions - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Accordions</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+<div class="row">
+  <div class="col-sm-4">
+    <h2>Default</h2>
+    <div class="panel-group" id="accordion">
+      <div class="panel panel-default">
+        <div class="panel-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#accordion" href="#collapseOne">
+              Lorem ipsum
+            </a>
+          </h4>
+        </div>
+        <div id="collapseOne" class="panel-collapse collapse in">
+          <div class="panel-body">
+             Praesent sagittis est et arcu fringilla placerat. Cras erat ante, dapibus non mauris ac, volutpat sollicitudin ligula. Morbi gravida nisl vel risus tempor, sit amet luctus erat tempus. Curabitur blandit sem non pretium bibendum. Donec eleifend non turpis vitae vestibulum. Vestibulum ut sem ac nunc posuere blandit sed porta lorem. Cras rutrum velit vel leo iaculis imperdiet.
+          </div>
+        </div>
+      </div>
+      <div class="panel panel-default">
+        <div class="panel-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" class="collapsed">
+              Dolor sit amet
+            </a>
+          </h4>
+        </div>
+        <div id="collapseTwo" class="panel-collapse collapse">
+          <div class="panel-body">
+            Donec consequat dignissim neque, sed suscipit quam egestas in. Fusce bibendum laoreet lectus commodo interdum. Vestibulum odio ipsum, tristique et ante vel, iaculis placerat nulla. Suspendisse iaculis urna feugiat lorem semper, ut iaculis risus tempus.
+          </div>
+        </div>
+      </div>
+      <div class="panel panel-default">
+        <div class="panel-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#accordion" href="#collapseThree" class="collapsed">
+              Consectetur
+            </a>
+          </h4>
+        </div>
+        <div id="collapseThree" class="panel-collapse collapse">
+          <div class="panel-body">
+            Curabitur nisl quam, interdum a venenatis a, consequat a ligula. Nunc nec lorem in erat rhoncus lacinia at ac orci. Sed nec augue congue, vehicula justo quis, venenatis turpis. Nunc quis consectetur purus. Nam vitae viverra lacus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eu augue felis. Maecenas in dignissim purus, quis pulvinar lectus. Vivamus euismod ultrices diam, in mattis nibh.
+          </div>
+        </div>
+      </div>
+    </div>
+  </div><!--/col-->
+  <div class="col-md-4 col-sm-6">
+    <h2>Fixed Height</h2>
+    <div class="panel-group" id="fixed-accordion" style="height: 350px;">
+      <div class="panel panel-default">
+        <div class="panel-heading" data-component="collapse-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#fixed-accordion" href="#fixedCollapseOne">
+              Lorem ipsum
+            </a>
+          </h4>
+        </div>
+        <div id="fixedCollapseOne" class="panel-collapse collapse in">
+          <div class="panel-body">
+            Praesent sagittis est et arcu fringilla placerat. Cras erat ante, dapibus non mauris ac, volutpat sollicitudin ligula. Morbi gravida nisl vel risus tempor, sit amet luctus erat tempus. Curabitur blandit sem non pretium bibendum. Donec eleifend non turpis vitae vestibulum. Vestibulum ut sem ac nunc posuere blandit sed porta lorem. Cras rutrum velit vel leo iaculis imperdiet.
+          </div>
+        </div>
+      </div>
+      <div class="panel panel-default">
+        <div class="panel-heading" data-component="collapse-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#fixed-accordion" href="#fixedCollapseTwo" class="collapsed">
+              Dolor sit amet
+            </a>
+          </h4>
+        </div>
+        <div id="fixedCollapseTwo" class="panel-collapse collapse">
+          <div class="panel-body">
+            Donec consequat dignissim neque, sed suscipit quam egestas in. Fusce bibendum laoreet lectus commodo interdum. Vestibulum odio ipsum, tristique et ante vel, iaculis placerat nulla. Suspendisse iaculis urna feugiat lorem semper, ut iaculis risus tempus.
+          </div>
+        </div>
+      </div>
+      <div class="panel panel-default">
+        <div class="panel-heading" data-component="collapse-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#fixed-accordion" href="#fixedCollapseThree" class="collapsed">
+              Consectetur
+            </a>
+          </h4>
+        </div>
+        <div id="fixedCollapseThree" class="panel-collapse collapse">
+          <div class="panel-body">
+            Curabitur nisl quam, interdum a venenatis a, consequat a ligula. Nunc nec lorem in erat rhoncus lacinia at ac orci. Sed nec augue congue, vehicula justo quis, venenatis turpis. Nunc quis consectetur purus. Nam vitae viverra lacus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eu augue felis. Maecenas in dignissim purus, quis pulvinar lectus. Vivamus euismod ultrices diam, in mattis nibh.
+          </div>
+        </div>
+      </div>
+      <div class="panel panel-default">
+        <div class="panel-heading" data-component="collapse-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#fixed-accordion" href="#fixedCollapseFour" class="collapsed">
+              Adipisicing elit
+            </a>
+          </h4>
+        </div>
+        <div id="fixedCollapseFour" class="panel-collapse collapse">
+          <div class="panel-body">
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.              </div>
+        </div>
+      </div>
+      <div class="panel panel-default">
+        <div class="panel-heading" data-component="collapse-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#fixed-accordion" href="#fixedCollapseFive" class="collapsed">
+              Suspendisse lectus tortor
+            </a>
+          </h4>
+        </div>
+        <div id="fixedCollapseFive" class="panel-collapse collapse">
+          <div class="panel-body">
+            Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed non risus. Suspendisse lectus tortor, dignissim sit amet, adipiscing nec, ultricies sed, dolor. Cras elementum ultrices diam. Maecenas ligula massa, varius a, semper congue, euismod non, mi. Proin porttitor, orci nec nonummy molestie, enim est eleifend mi, non fermentum diam nisl sit amet erat. Duis semper. Duis arcu massa, scelerisque vitae, consequat in, pretium a, enim. Pellentesque congue. Ut in risus volutpat libero pharetra tempor. Cras vestibulum bibendum augue. Praesent egestas leo in pede. Praesent blandit odio eu enim. Pellentesque sed dui ut augue blandit sodales. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aliquam nibh. Mauris ac mauris sed pede pellentesque fermentum. Maecenas adipiscing ante non diam sodales hendrerit.
+          </div>
+        </div>
+      </div>
+      <div class="panel panel-default">
+        <div class="panel-heading" data-component="collapse-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#fixed-accordion" href="#fixedCollapseSix" class="collapsed">
+              Velit mauris
+            </a>
+          </h4>
+        </div>
+        <div id="fixedCollapseSix" class="panel-collapse collapse">
+          <div class="panel-body">
+            Ut velit mauris, egestas sed, gravida nec, ornare ut, mi. Aenean ut orci vel massa suscipit pulvinar. Nulla sollicitudin. Fusce varius, ligula non tempus aliquam, nunc turpis ullamcorper nibh, in tempus sapien eros vitae ligula. Pellentesque rhoncus nunc et augue. Integer id felis. Curabitur aliquet pellentesque diam. Integer quis metus vitae elit lobortis egestas. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi vel erat non mauris convallis vehicula. Nulla et sapien. Integer tortor tellus, aliquam faucibus, convallis id, congue eu, quam. Mauris ullamcorper felis vitae erat. Proin feugiat, augue non elementum posuere, metus purus iaculis lectus, et tristique ligula justo vitae magna.
+          </div>
+        </div>
+      </div>
+      <div class="panel panel-default">
+        <div class="panel-heading" data-component="collapse-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#fixed-accordion" href="#fixedCollapseSeven" class="collapsed">
+              Aliquam convallis
+            </a>
+          </h4>
+        </div>
+        <div id="fixedCollapseSeven" class="panel-collapse collapse">
+          <div class="panel-body">
+            Aliquam convallis sollicitudin purus. Praesent aliquam, enim at fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, felis magna fermentum augue, et ultricies lacus lorem varius purus. Curabitur eu amet.
+          </div>
+        </div>
+      </div>
+      <div class="panel panel-default">
+        <div class="panel-heading" data-component="collapse-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#fixed-accordion" href="#fixedCollapseEight" class="collapsed">
+              Vulputate dictum
+            </a>
+          </h4>
+        </div>
+        <div id="fixedCollapseEight" class="panel-collapse collapse">
+          <div class="panel-body">
+            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed at ante. Mauris eleifend, quam a vulputate dictum, massa quam dapibus leo, eget vulputate orci purus ut lorem. In fringilla mi in ligula. Pellentesque aliquam quam vel dolor. Nunc adipiscing. Sed quam odio, tempus ac, aliquam molestie, varius ac, tellus. Vestibulum ut nulla aliquam risus rutrum interdum. Pellentesque lorem. Curabitur sit amet erat quis risus feugiat viverra. Pellentesque augue justo, sagittis et, lacinia at, venenatis non, arcu. Nunc nec libero. In cursus dictum risus. Etiam tristique nisl a nulla. Ut a orci. Curabitur dolor nunc, egestas at, accumsan at, malesuada nec, magna.
+          </div>
+        </div>
+      </div>
+    </div>
+  </div><!--/col-->
+</div>
+<div class="row">
+  <div class="col-sm-4">
+    <h2>Context Modifiers</h2>
+    <div class="panel-group" id="alternatives-accordion">
+      <div class="panel panel-default">
+        <div class="panel-heading" data-component="collapse-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#alternatives-accordion" href="#default-collapse1" class="collapsed">
+              Lorem ipsum
+            </a>
+          </h4>
+        </div>
+        <div id="default-collapse1" class="panel-collapse collapse">
+          <div class="panel-body">
+            Praesent sagittis est et arcu fringilla placerat. Cras erat ante, dapibus non mauris ac, volutpat sollicitudin ligula. Morbi gravida nisl vel risus tempor, sit amet luctus erat tempus. Curabitur blandit sem non pretium bibendum. Donec eleifend non turpis vitae vestibulum. Vestibulum ut sem ac nunc posuere blandit sed porta lorem. Cras rutrum velit vel leo iaculis imperdiet.
+          </div>
+        </div>
+      </div>
+      <div class="panel panel-info">
+        <div class="panel-heading" data-component="collapse-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#alternatives-accordion" href="#info-collapse">
+              Pellentesque
+            </a>
+          </h4>
+        </div>
+        <div id="info-collapse" class="panel-collapse collapse">
+          <div class="panel-body">
+            Aenean tempor ligula at scelerisque egestas. Quisque eu congue lorem. Morbi nec molestie nisl. Sed porttitor mauris eu pharetra vestibulum. Nulla efficitur faucibus nunc. Phasellus id dignissim massa. Ut sollicitudin et enim vel aliquam. Curabitur vel rutrum arcu, ut pellentesque massa. Cras efficitur mi vitae ante lacinia fringilla.
+          </div>
+        </div>
+      </div>
+      <div class="panel panel-primary">
+        <div class="panel-heading" data-component="collapse-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#alternatives-accordion" href="#primary-collapse">
+              Consectetur
+            </a>
+          </h4>
+        </div>
+        <div id="primary-collapse" class="panel-collapse collapse in">
+          <div class="panel-body">
+            Curabitur nisl quam, interdum a venenatis a, consequat a ligula. Nunc nec lorem in erat rhoncus lacinia at ac orci. Sed nec augue congue, vehicula justo quis, venenatis turpis. Nunc quis consectetur purus. Nam vitae viverra lacus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eu augue felis. Maecenas in dignissim purus, quis pulvinar lectus. Vivamus euismod ultrices diam, in mattis nibh.
+          </div>
+        </div>
+      </div>
+      <div class="panel panel-warning">
+        <div class="panel-heading" data-component="collapse-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#alternatives-accordion" href="#warning-collapse" class="collapsed">
+              Dolor sit amet
+            </a>
+          </h4>
+        </div>
+        <div id="warning-collapse" class="panel-collapse collapse">
+          <div class="panel-body">
+            Donec consequat dignissim neque, sed suscipit quam egestas in. Fusce bibendum laoreet lectus commodo interdum. Vestibulum odio ipsum, tristique et ante vel, iaculis placerat nulla. Suspendisse iaculis urna feugiat lorem semper, ut iaculis risus tempus.
+          </div>
+        </div>
+      </div>
+      <div class="panel panel-default">
+        <div class="panel-heading" data-component="collapse-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#alternatives-accordion" href="#default-collapse2" class="collapsed">
+              Adipisicing elit
+            </a>
+          </h4>
+        </div>
+        <div id="default-collapse2" class="panel-collapse collapse">
+          <div class="panel-body">
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </div>
+        </div>
+      </div>
+      <div class="panel panel-default">
+        <div class="panel-heading" data-component="collapse-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#alternatives-accordion" href="#default-collapse3" class="collapsed">
+              Suspendisse lectus tortor
+            </a>
+          </h4>
+        </div>
+        <div id="default-collapse3" class="panel-collapse collapse">
+          <div class="panel-body">
+            Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed non risus. Suspendisse lectus tortor, dignissim sit amet, adipiscing nec, ultricies sed, dolor. Cras elementum ultrices diam. Maecenas ligula massa, varius a, semper congue, euismod non, mi. Proin porttitor, orci nec nonummy molestie, enim est eleifend mi, non fermentum diam nisl sit amet erat. Duis semper. Duis arcu massa, scelerisque vitae, consequat in, pretium a, enim. Pellentesque congue. Ut in risus volutpat libero pharetra tempor. Cras vestibulum bibendum augue. Praesent egestas leo in pede. Praesent blandit odio eu enim. Pellentesque sed dui ut augue blandit sodales. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Aliquam nibh. Mauris ac mauris sed pede pellentesque fermentum. Maecenas adipiscing ante non diam sodales hendrerit.
+          </div>
+        </div>
+      </div>
+      <div class="panel panel-success">
+        <div class="panel-heading" data-component="collapse-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#alternatives-accordion" href="#success-collapse" class="collapsed">
+              Aliquam convallis
+            </a>
+          </h4>
+        </div>
+        <div id="success-collapse" class="panel-collapse collapse">
+          <div class="panel-body">
+            Aliquam convallis sollicitudin purus. Praesent aliquam, enim at fermentum mollis, ligula massa adipiscing nisl, ac euismod nibh nisl eu lectus. Fusce vulputate sem at sapien. Vivamus leo. Aliquam euismod libero eu enim. Nulla nec felis sed leo placerat imperdiet. Aenean suscipit nulla in justo. Suspendisse cursus rutrum augue. Nulla tincidunt tincidunt mi. Curabitur iaculis, lorem vel rhoncus faucibus, felis magna fermentum augue, et ultricies lacus lorem varius purus. Curabitur eu amet.
+          </div>
+        </div>
+      </div>
+      <div class="panel panel-danger">
+        <div class="panel-heading" data-component="collapse-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#alternatives-accordion" href="#danger-collapse" class="collapsed">
+              Velit mauris
+            </a>
+          </h4>
+        </div>
+        <div id="danger-collapse" class="panel-collapse collapse">
+          <div class="panel-body">
+            Ut velit mauris, egestas sed, gravida nec, ornare ut, mi. Aenean ut orci vel massa suscipit pulvinar. Nulla sollicitudin. Fusce varius, ligula non tempus aliquam, nunc turpis ullamcorper nibh, in tempus sapien eros vitae ligula. Pellentesque rhoncus nunc et augue. Integer id felis. Curabitur aliquet pellentesque diam. Integer quis metus vitae elit lobortis egestas. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi vel erat non mauris convallis vehicula. Nulla et sapien. Integer tortor tellus, aliquam faucibus, convallis id, congue eu, quam. Mauris ullamcorper felis vitae erat. Proin feugiat, augue non elementum posuere, metus purus iaculis lectus, et tristique ligula justo vitae magna.
+          </div>
+        </div>
+      </div>
+      <div class="panel panel-default">
+        <div class="panel-heading" data-component="collapse-heading">
+          <h4 class="panel-title">
+            <a data-toggle="collapse" data-parent="#alternatives-accordion" href="#default-collapse4" class="collapsed">
+              Vulputate dictum
+            </a>
+          </h4>
+        </div>
+        <div id="default-collapse4" class="panel-collapse collapse">
+          <div class="panel-body">
+            Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed at ante. Mauris eleifend, quam a vulputate dictum, massa quam dapibus leo, eget vulputate orci purus ut lorem. In fringilla mi in ligula. Pellentesque aliquam quam vel dolor. Nunc adipiscing. Sed quam odio, tempus ac, aliquam molestie, varius ac, tellus. Vestibulum ut nulla aliquam risus rutrum interdum. Pellentesque lorem. Curabitur sit amet erat quis risus feugiat viverra. Pellentesque augue justo, sagittis et, lacinia at, venenatis non, arcu. Nunc nec libero. In cursus dictum risus. Etiam tristique nisl a nulla. Ut a orci. Curabitur dolor nunc, egestas at, accumsan at, malesuada nec, magna.
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  $(document).ready(function() {
+    $('#fixed-accordion').initCollapseHeights();
+  });
+</script>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/alerts.html b/themes/src/main/node_modules/rcue/tests/alerts.html
new file mode 100644
index 0000000..7d69fb6
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/alerts.html
@@ -0,0 +1,106 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Alerts - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Alerts</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+<div class="alert alert-danger">
+  <span class="pficon pficon-error-circle-o"></span>
+  <strong>Hey there is a problem!</strong> Yeah this is really messed up and you should <a href="#" class="alert-link">know about it</a>.
+</div>
+
+<div class="alert alert-warning">
+  <span class="pficon pficon-warning-triangle-o"></span>
+  <strong>There might be a problem here!</strong> We are not really sure, but <a href="#" class="alert-link">it might be bad</a>.
+</div>
+
+      <div class="alert alert-success">
+        <span class="pficon pficon-ok"></span>
+        <strong>Great job!</strong> This is really working out <a href="#" class="alert-link">great for us</a>.
+      </div>
+      <div class="alert alert-info">
+        <span class="pficon pficon-info"></span>
+        <strong>This is some general information.</strong> You should <a href="#" class="alert-link">know about this</a>.
+      </div>
+      <hr>
+<div class="alert alert-danger alert-dismissable">
+  <button type="button" class="close" data-dismiss="alert" aria-label="Close">
+    <span class="pficon pficon-close"></span>
+  </button>
+  <span class="pficon pficon-error-circle-o"></span>
+  <strong>Hey there is a problem!</strong> Yeah this is really messed up and you should <a href="#" class="alert-link">know about it</a>.
+</div>
+
+<div class="alert alert-warning alert-dismissable">
+  <button type="button" class="close" data-dismiss="alert" aria-label="Close">
+    <span class="pficon pficon-close"></span>
+  </button>
+  <span class="pficon pficon-warning-triangle-o"></span>
+  <strong>There might be a problem here!</strong> We are not really sure, but <a href="#" class="alert-link">it might be bad</a>.
+</div>
+
+<div class="alert alert-success alert-dismissable">
+  <button type="button" class="close" data-dismiss="alert" aria-label="Close">
+    <span class="pficon pficon-close"></span>
+  </button>
+  <span class="pficon pficon-ok"></span>
+  <strong>Great job!</strong> This is really working out <a href="#" class="alert-link">great for us</a>.
+</div>
+
+<div class="alert alert-info alert-dismissable">
+  <button type="button" class="close" data-dismiss="alert" aria-label="Close">
+    <span class="pficon pficon-close"></span>
+  </button>
+  <span class="pficon pficon-info"></span>
+  <strong>This is some general information.</strong> You should <a href="#" class="alert-link">know about this</a>.
+</div>
+
+
+      <hr>
+<div class="alert alert-success">
+  <button class="btn btn-default pull-right" type="submit">Button</button>
+  <span class="pficon pficon-ok"></span>
+  <strong>Great job!</strong> This is really working out <a href="#" class="alert-link">great for us</a>.
+</div>
+
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/application-launcher.html b/themes/src/main/node_modules/rcue/tests/application-launcher.html
new file mode 100644
index 0000000..0ed8918
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/application-launcher.html
@@ -0,0 +1,1025 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Application Launcher - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Application Launcher</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+<h2>Horizontal Nav Bar</h2>
+
+<h3>Grid Menu</h3>
+
+<h4>Icons</h4>
+
+
+<nav class="navbar navbar-default navbar-pf" role="navigation">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a class="navbar-brand" href="/">
+      <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+  </div>
+  <div class="collapse navbar-collapse navbar-collapse-1">
+    <ul class="nav navbar-nav navbar-utility">
+      
+      <li class="applauncher-pf  applauncher-pf-block-list  dropdown dropdown-kebab-pf">
+  <a class="dropdown-toggle nav-item-iconic" data-toggle="dropdown" href="#">
+    <i class="fa fa-th applauncher-pf-icon" aria-hidden="true"></i>
+          <span class="applauncher-pf-title">
+            Application Launcher
+            <span class="caret" aria-hidden="true"></span>
+          </span>
+  </a>
+  <ul class="dropdown-menu dropdown-menu-right" role="menu">
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <i class="applauncher-pf-link-icon pficon pficon-storage-domain" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Recteque</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <i class="applauncher-pf-link-icon pficon pficon-virtual-machine" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Ipsum</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <!-- Placeholder left to maintain spacing -->
+        <i class="applauncher-pf-link-icon" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Suavitate</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <i class="applauncher-pf-link-icon pficon pficon-domain" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Lorem</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <i class="applauncher-pf-link-icon pficon pficon-home" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Home</span>
+      </a>
+    </li>
+  </ul>
+</li>
+
+      
+      <li class="dropdown">
+        <a href="#0" class="nav-item-iconic" id="horizontalDropdownMenu11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="horizontalDropdownMenu11">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+          <span class="pficon pficon-user"></span>
+          Brian Johnson <b class="caret"></b>
+        </a>
+        <ul class="dropdown-menu">
+          <li>
+            <a href="#0">Link</a>
+          </li>
+          <li>
+            <a href="#0">Another link</a>
+          </li>
+          <li>
+            <a href="#0">Something else here</a>
+          </li>
+          <li class="divider"></li>
+          <li class="dropdown-submenu">
+            <a tabindex="-1" href="#0">More options</a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-header">Nav header</li>
+              <li>
+                <a href="#0">Separated link</a>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+          <li class="divider"></li>
+          <li>
+            <a href="#0">One more separated link</a>
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <ul class="nav navbar-nav navbar-primary">
+      <li>
+        <a href="#0">First Link</a>
+      </li>
+      <li class="active">
+        <a href="#0">Another Link</a>
+      </li>
+      <li>
+        <a href="#0">And Another</a>
+      </li>
+      <li>
+        <a href="#0">As a General Rule</a>
+      </li>
+      <li>
+        <a href="#0">Five to Seven Links</a>
+      </li>
+      <li>
+        <a href="#0">Is Good</a>
+      </li>
+    </ul>
+  </div>
+</nav>
+
+<h4>No Icons</h4>
+
+
+<nav class="navbar navbar-default navbar-pf" role="navigation">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a class="navbar-brand" href="/">
+      <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+  </div>
+  <div class="collapse navbar-collapse navbar-collapse-1">
+    <ul class="nav navbar-nav navbar-utility">
+      
+      <li class="applauncher-pf  applauncher-pf-block-list  dropdown dropdown-kebab-pf">
+  <a class="dropdown-toggle nav-item-iconic" data-toggle="dropdown" href="#">
+    <i class="fa fa-th applauncher-pf-icon" aria-hidden="true"></i>
+          <span class="applauncher-pf-title">
+            Application Launcher
+            <span class="caret" aria-hidden="true"></span>
+          </span>
+  </a>
+  <ul class="dropdown-menu dropdown-menu-right" role="menu">
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Recteque</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Ipsum</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Suavitate</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Lorem</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Home</span>
+      </a>
+    </li>
+  </ul>
+</li>
+
+      
+      <li class="dropdown">
+        <a href="#0" class="nav-item-iconic" id="horizontalDropdownMenu12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="horizontalDropdownMenu12">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+          <span class="pficon pficon-user"></span>
+          Brian Johnson <b class="caret"></b>
+        </a>
+        <ul class="dropdown-menu">
+          <li>
+            <a href="#0">Link</a>
+          </li>
+          <li>
+            <a href="#0">Another link</a>
+          </li>
+          <li>
+            <a href="#0">Something else here</a>
+          </li>
+          <li class="divider"></li>
+          <li class="dropdown-submenu">
+            <a tabindex="-1" href="#0">More options</a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-header">Nav header</li>
+              <li>
+                <a href="#0">Separated link</a>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+          <li class="divider"></li>
+          <li>
+            <a href="#0">One more separated link</a>
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <ul class="nav navbar-nav navbar-primary">
+      <li>
+        <a href="#0">First Link</a>
+      </li>
+      <li class="active">
+        <a href="#0">Another Link</a>
+      </li>
+      <li>
+        <a href="#0">And Another</a>
+      </li>
+      <li>
+        <a href="#0">As a General Rule</a>
+      </li>
+      <li>
+        <a href="#0">Five to Seven Links</a>
+      </li>
+      <li>
+        <a href="#0">Is Good</a>
+      </li>
+    </ul>
+  </div>
+</nav>
+
+
+<h3>List Menu</h3>
+
+<h4>Icons</h4>
+
+
+<nav class="navbar navbar-default navbar-pf" role="navigation">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a class="navbar-brand" href="/">
+      <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+  </div>
+  <div class="collapse navbar-collapse navbar-collapse-1">
+    <ul class="nav navbar-nav navbar-utility">
+      
+      <li class="applauncher-pf  dropdown dropdown-kebab-pf">
+  <a class="dropdown-toggle nav-item-iconic" data-toggle="dropdown" href="#">
+    <i class="fa fa-th applauncher-pf-icon" aria-hidden="true"></i>
+          <span class="applauncher-pf-title">
+            Application Launcher
+            <span class="caret" aria-hidden="true"></span>
+          </span>
+  </a>
+  <ul class="dropdown-menu dropdown-menu-right" role="menu">
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <i class="applauncher-pf-link-icon pficon pficon-storage-domain" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Recteque</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <i class="applauncher-pf-link-icon pficon pficon-virtual-machine" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Ipsum</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <!-- Placeholder left to maintain spacing -->
+        <i class="applauncher-pf-link-icon" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Suavitate</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <i class="applauncher-pf-link-icon pficon pficon-domain" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Lorem</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <i class="applauncher-pf-link-icon pficon pficon-home" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Home</span>
+      </a>
+    </li>
+  </ul>
+</li>
+
+      
+      <li class="dropdown">
+        <a href="#0" class="nav-item-iconic" id="horizontalDropdownMenu13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="horizontalDropdownMenu13">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+          <span class="pficon pficon-user"></span>
+          Brian Johnson <b class="caret"></b>
+        </a>
+        <ul class="dropdown-menu">
+          <li>
+            <a href="#0">Link</a>
+          </li>
+          <li>
+            <a href="#0">Another link</a>
+          </li>
+          <li>
+            <a href="#0">Something else here</a>
+          </li>
+          <li class="divider"></li>
+          <li class="dropdown-submenu">
+            <a tabindex="-1" href="#0">More options</a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-header">Nav header</li>
+              <li>
+                <a href="#0">Separated link</a>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+          <li class="divider"></li>
+          <li>
+            <a href="#0">One more separated link</a>
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <ul class="nav navbar-nav navbar-primary">
+      <li>
+        <a href="#0">First Link</a>
+      </li>
+      <li class="active">
+        <a href="#0">Another Link</a>
+      </li>
+      <li>
+        <a href="#0">And Another</a>
+      </li>
+      <li>
+        <a href="#0">As a General Rule</a>
+      </li>
+      <li>
+        <a href="#0">Five to Seven Links</a>
+      </li>
+      <li>
+        <a href="#0">Is Good</a>
+      </li>
+    </ul>
+  </div>
+</nav>
+
+
+<h4>No Icons</h4>
+
+
+<nav class="navbar navbar-default navbar-pf" role="navigation">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a class="navbar-brand" href="/">
+      <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+  </div>
+  <div class="collapse navbar-collapse navbar-collapse-1">
+    <ul class="nav navbar-nav navbar-utility">
+      
+      <li class="applauncher-pf  dropdown dropdown-kebab-pf">
+  <a class="dropdown-toggle nav-item-iconic" data-toggle="dropdown" href="#">
+    <i class="fa fa-th applauncher-pf-icon" aria-hidden="true"></i>
+          <span class="applauncher-pf-title">
+            Application Launcher
+            <span class="caret" aria-hidden="true"></span>
+          </span>
+  </a>
+  <ul class="dropdown-menu dropdown-menu-right" role="menu">
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Recteque</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Ipsum</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Suavitate</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Lorem</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Home</span>
+      </a>
+    </li>
+  </ul>
+</li>
+
+      
+      <li class="dropdown">
+        <a href="#0" class="nav-item-iconic" id="horizontalDropdownMenu14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="horizontalDropdownMenu14">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+          <span class="pficon pficon-user"></span>
+          Brian Johnson <b class="caret"></b>
+        </a>
+        <ul class="dropdown-menu">
+          <li>
+            <a href="#0">Link</a>
+          </li>
+          <li>
+            <a href="#0">Another link</a>
+          </li>
+          <li>
+            <a href="#0">Something else here</a>
+          </li>
+          <li class="divider"></li>
+          <li class="dropdown-submenu">
+            <a tabindex="-1" href="#0">More options</a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-header">Nav header</li>
+              <li>
+                <a href="#0">Separated link</a>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+          <li class="divider"></li>
+          <li>
+            <a href="#0">One more separated link</a>
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <ul class="nav navbar-nav navbar-primary">
+      <li>
+        <a href="#0">First Link</a>
+      </li>
+      <li class="active">
+        <a href="#0">Another Link</a>
+      </li>
+      <li>
+        <a href="#0">And Another</a>
+      </li>
+      <li>
+        <a href="#0">As a General Rule</a>
+      </li>
+      <li>
+        <a href="#0">Five to Seven Links</a>
+      </li>
+      <li>
+        <a href="#0">Is Good</a>
+      </li>
+    </ul>
+  </div>
+</nav>
+
+
+<br>
+<br>
+<h2>Vertical Nav Bar</h2>
+
+<h3>Grid Menu</h3>
+
+<h4>Icons</h4>
+
+
+<nav class="navbar navbar-pf-vertical">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a href="/" class="navbar-brand">
+      <img class="navbar-brand-icon" src="/dist/img/logo.svg" alt=""/><img class="navbar-brand-name" src="/dist/img/brand-alt.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+    
+  </div>
+  <nav class="collapse navbar-collapse">
+    <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
+      
+      <li class="applauncher-pf  applauncher-pf-block-list  dropdown dropdown-kebab-pf">
+  <a class="dropdown-toggle nav-item-iconic" data-toggle="dropdown" href="#">
+    <i class="fa fa-th applauncher-pf-icon" aria-hidden="true"></i>
+          <span class="applauncher-pf-title">
+            Application Launcher
+            <span class="caret" aria-hidden="true"></span>
+          </span>
+  </a>
+  <ul class="dropdown-menu dropdown-menu-right" role="menu">
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <i class="applauncher-pf-link-icon pficon pficon-storage-domain" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Recteque</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <i class="applauncher-pf-link-icon pficon pficon-virtual-machine" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Ipsum</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <!-- Placeholder left to maintain spacing -->
+        <i class="applauncher-pf-link-icon" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Suavitate</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <i class="applauncher-pf-link-icon pficon pficon-domain" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Lorem</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <i class="applauncher-pf-link-icon pficon pficon-home" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Home</span>
+      </a>
+    </li>
+  </ul>
+</li>
+
+      
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu15">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu25" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Username" class="fa pficon-user"></span>
+          Brian Johnson <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu25">
+          <li><a href="#0">Preferences</a></li>
+          <li><a href="#0">Logout</a></li>
+        </ul>
+      </li>
+    </ul>
+  </nav>
+  
+</nav> <!--/.navbar-->
+
+
+<h4>No Icons</h4>
+
+
+<nav class="navbar navbar-pf-vertical">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a href="/" class="navbar-brand">
+      <img class="navbar-brand-icon" src="/dist/img/logo.svg" alt=""/><img class="navbar-brand-name" src="/dist/img/brand-alt.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+    
+  </div>
+  <nav class="collapse navbar-collapse">
+    <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
+      
+      <li class="applauncher-pf  applauncher-pf-block-list  dropdown dropdown-kebab-pf">
+  <a class="dropdown-toggle nav-item-iconic" data-toggle="dropdown" href="#">
+    <i class="fa fa-th applauncher-pf-icon" aria-hidden="true"></i>
+          <span class="applauncher-pf-title">
+            Application Launcher
+            <span class="caret" aria-hidden="true"></span>
+          </span>
+  </a>
+  <ul class="dropdown-menu dropdown-menu-right" role="menu">
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Recteque</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Ipsum</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Suavitate</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Lorem</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Home</span>
+      </a>
+    </li>
+  </ul>
+</li>
+
+      
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Username" class="fa pficon-user"></span>
+          Brian Johnson <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
+          <li><a href="#0">Preferences</a></li>
+          <li><a href="#0">Logout</a></li>
+        </ul>
+      </li>
+    </ul>
+  </nav>
+  
+</nav> <!--/.navbar-->
+
+
+<h3>List Menu</h3>
+
+<h4>Icons</h4>
+
+
+<nav class="navbar navbar-pf-vertical">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a href="/" class="navbar-brand">
+      <img class="navbar-brand-icon" src="/dist/img/logo.svg" alt=""/><img class="navbar-brand-name" src="/dist/img/brand-alt.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+    
+  </div>
+  <nav class="collapse navbar-collapse">
+    <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
+      
+      <li class="applauncher-pf  dropdown dropdown-kebab-pf">
+  <a class="dropdown-toggle nav-item-iconic" data-toggle="dropdown" href="#">
+    <i class="fa fa-th applauncher-pf-icon" aria-hidden="true"></i>
+          <span class="applauncher-pf-title">
+            Application Launcher
+            <span class="caret" aria-hidden="true"></span>
+          </span>
+  </a>
+  <ul class="dropdown-menu dropdown-menu-right" role="menu">
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <i class="applauncher-pf-link-icon pficon pficon-storage-domain" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Recteque</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <i class="applauncher-pf-link-icon pficon pficon-virtual-machine" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Ipsum</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <!-- Placeholder left to maintain spacing -->
+        <i class="applauncher-pf-link-icon" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Suavitate</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <i class="applauncher-pf-link-icon pficon pficon-domain" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Lorem</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <i class="applauncher-pf-link-icon pficon pficon-home" aria-hidden="true"></i>
+        
+        <span class="applauncher-pf-link-title">Home</span>
+      </a>
+    </li>
+  </ul>
+</li>
+
+      
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu17" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu17">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu27" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Username" class="fa pficon-user"></span>
+          Brian Johnson <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu27">
+          <li><a href="#0">Preferences</a></li>
+          <li><a href="#0">Logout</a></li>
+        </ul>
+      </li>
+    </ul>
+  </nav>
+  
+</nav> <!--/.navbar-->
+
+
+<h4>No Icons</h4>
+
+
+<nav class="navbar navbar-pf-vertical">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a href="/" class="navbar-brand">
+      <img class="navbar-brand-icon" src="/dist/img/logo.svg" alt=""/><img class="navbar-brand-name" src="/dist/img/brand-alt.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+    
+  </div>
+  <nav class="collapse navbar-collapse">
+    <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
+      
+      <li class="applauncher-pf  dropdown dropdown-kebab-pf">
+  <a class="dropdown-toggle nav-item-iconic" data-toggle="dropdown" href="#">
+    <i class="fa fa-th applauncher-pf-icon" aria-hidden="true"></i>
+          <span class="applauncher-pf-title">
+            Application Launcher
+            <span class="caret" aria-hidden="true"></span>
+          </span>
+  </a>
+  <ul class="dropdown-menu dropdown-menu-right" role="menu">
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Recteque</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Ipsum</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Suavitate</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Lorem</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Home</span>
+      </a>
+    </li>
+  </ul>
+</li>
+
+      
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu18" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu18">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu28" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Username" class="fa pficon-user"></span>
+          Brian Johnson <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu28">
+          <li><a href="#0">Preferences</a></li>
+          <li><a href="#0">Logout</a></li>
+        </ul>
+      </li>
+    </ul>
+  </nav>
+  
+</nav> <!--/.navbar-->
+
+
+<script>
+  $(document).ready(function() {
+    $('.applauncher-pf .dropdown-toggle').eq(0).click();
+  });
+</script>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/application-launcher-nav-horizontal.html b/themes/src/main/node_modules/rcue/tests/application-launcher-nav-horizontal.html
new file mode 100644
index 0000000..7396205
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/application-launcher-nav-horizontal.html
@@ -0,0 +1,823 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Application Launcher for Horizontal Navigation - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Application Launcher for Horizontal Navigation</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+
+  
+
+<nav class="navbar navbar-default navbar-pf" role="navigation">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a class="navbar-brand" href="/">
+      <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+  </div>
+  <div class="collapse navbar-collapse navbar-collapse-1">
+    <ul class="nav navbar-nav navbar-utility">
+      
+      <li class="applauncher-pf  dropdown dropdown-kebab-pf">
+  <a class="dropdown-toggle nav-item-iconic" data-toggle="dropdown" href="#">
+    <i class="fa fa-th applauncher-pf-icon" aria-hidden="true"></i>
+          <span class="applauncher-pf-title">
+            Application Launcher
+            <span class="caret" aria-hidden="true"></span>
+          </span>
+  </a>
+  <ul class="dropdown-menu dropdown-menu-right" role="menu">
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Recteque</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Ipsum</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Suavitate</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Lorem</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Home</span>
+      </a>
+    </li>
+  </ul>
+</li>
+
+      
+      <li class="dropdown">
+        <a href="#0" class="nav-item-iconic" id="horizontalDropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="horizontalDropdownMenu1">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+          <span class="pficon pficon-user"></span>
+          Brian Johnson <b class="caret"></b>
+        </a>
+        <ul class="dropdown-menu">
+          <li>
+            <a href="#0">Link</a>
+          </li>
+          <li>
+            <a href="#0">Another link</a>
+          </li>
+          <li>
+            <a href="#0">Something else here</a>
+          </li>
+          <li class="divider"></li>
+          <li class="dropdown-submenu">
+            <a tabindex="-1" href="#0">More options</a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-header">Nav header</li>
+              <li>
+                <a href="#0">Separated link</a>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+          <li class="divider"></li>
+          <li>
+            <a href="#0">One more separated link</a>
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <ul class="nav navbar-nav navbar-primary">
+      <li>
+        <a href="#0">First Link</a>
+      </li>
+      <li class="active">
+        <a href="#0">Another Link</a>
+      </li>
+      <li>
+        <a href="#0">And Another</a>
+      </li>
+      <li>
+        <a href="#0">As a General Rule</a>
+      </li>
+      <li>
+        <a href="#0">Five to Seven Links</a>
+      </li>
+      <li>
+        <a href="#0">Is Good</a>
+      </li>
+    </ul>
+  </div>
+</nav>
+
+
+<div class="container-fluid container-cards-pf" id="main">
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">20</span> Amet</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-warning-triangle-o"></span>1</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">9</span> Adipiscing</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status">
+            <h2 class="card-pf-title">
+              <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">12</span> Lorem</a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <span class="fa fa-rebel"></span>
+    <span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="fa fa-paper-plane"></span>
+      <span class="card-pf-aggregate-status-count">20</span> Amet
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="pficon pficon-cluster"></span>
+      <span class="card-pf-aggregate-status-count">9</span> Adipiscing
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+            <h2 class="card-pf-title">
+              <a href="#">
+                <span class="pficon pficon-image"></span>
+                <span class="card-pf-aggregate-status-count">12</span> Lorem
+              </a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Top Utilized Clusters
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-description">
+      RHOS6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 95%;"  data-toggle="tooltip" title="95% Used">
+        <span><strong>190.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;" data-toggle="tooltip" title="5% Available">
+        <span class="sr-only">5% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      CFMEQE-Cluster
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;"  data-toggle="tooltip" title="50% Used">
+        <span><strong>100.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Available">
+        <span class="sr-only">50% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHOS-Undercloud
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;"  data-toggle="tooltip" title="70% Used">
+        <span><strong>140.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width: 30%;" data-toggle="tooltip" title="30% Available">
+        <span class="sr-only">30% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHEL6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="76.5" aria-valuemin="0" aria-valuemax="100" style="width: 76.5%;"  data-toggle="tooltip" title="76.5% Used">
+        <span><strong>153.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="23.5" aria-valuemin="0" aria-valuemax="100" style="width: 23.5%;" data-toggle="tooltip" title="23.5% Available">
+        <span class="sr-only">23.5% Available</span>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Quotas
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        CPU
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
+          <span><strong>115 of 460</strong> MHz</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
+          <span class="sr-only">75% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Memory
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Used">
+          <span><strong>8 of 16</strong> GB</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Available">
+          <span class="sr-only">50% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Pods
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="62.5" aria-valuemin="0" aria-valuemax="100" style="width: 62.5%;" data-toggle="tooltip" title="62.5% Used">
+          <span><strong>5 of 8</strong> Total</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="37.5" aria-valuemin="0" aria-valuemax="100" style="width: 37.5%;" data-toggle="tooltip" title="37.5% Available">
+          <span class="sr-only">37.5% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Services
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;" data-toggle="tooltip" title="100% Used">
+          <span><strong>2 of 2</strong> Total</span>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-md-12">
+<div class="card-pf card-pf-utilization">
+  <div class="card-pf-heading">
+    <p class="card-pf-heading-details">Last 30 days</p>
+    <h2 class="card-pf-title">
+      Utilization
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="row">
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">CPU</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">50</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1000 MHz</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-1"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-1"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-1';
+          donutConfig.color =  {
+            pattern: ["#cc0000","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 95],
+              ["Available", 5]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' MHz ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart1 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-1").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("950").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("MHz Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-1';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 10, 50, 28, 20, 31, 27, 60, 36, 52, 55, 62, 68, 69, 88, 74, 88, 95],
+            ],
+            type: 'area'
+          };
+          var chart2 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Memory</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">256</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 432 GB</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-2"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-2"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-2';
+          donutConfig.color =  {
+            pattern: ["#3f9c35","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 41],
+              ["Available", 59]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' GB ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart3 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-2").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("176").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("GB Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-2';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 35, 36, 20, 30, 31, 22, 44, 36, 40, 41, 55, 52, 48, 48, 50, 40, 41],
+            ],
+            type: 'area'
+          };
+          var chart4 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Network</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">200</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-3"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-3"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-3';
+          donutConfig.color =  {
+            pattern: ["#EC7A08","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 85],
+              ["Available", 15]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart5 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-3").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-3';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+            ],
+            type: 'area'
+          };
+          var chart6 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-xs-12 col-sm-4 col-md-4">
+<div class="card-pf card-pf-utilization">
+  <h2 class="card-pf-title">
+    Network
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-utilization-details">
+      <span class="card-pf-utilization-card-details-count">200</span>
+        <span class="card-pf-utilization-card-details-description">
+          <span class="card-pf-utilization-card-details-line-1">Available</span>
+          <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+        </span>
+    </p>
+    <div id="chart-pf-donut-4"></div>
+    <div class="chart-pf-sparkline" id="chart-pf-sparkline-4"></div>
+    <script>
+      var c3ChartDefaults = $().c3ChartDefaults();
+
+      var donutConfig = c3ChartDefaults.getDefaultDonutConfig('A');
+      donutConfig.bindto = '#chart-pf-donut-4';
+      donutConfig.color =  {
+        pattern: ["#EC7A08","#D1D1D1"]
+      };
+      donutConfig.data = {
+        type: "donut",
+        columns: [
+          ["Used", 85],
+          ["Available", 15]
+        ],
+        groups: [
+          ["used", "available"]
+        ],
+        order: null
+      };
+      donutConfig.tooltip = {
+        contents: function (d) {
+          return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                  Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                  '</span>';
+        }
+      };
+
+      var chart1 = c3.generate(donutConfig);
+      var donutChartTitle = d3.select("#chart-pf-donut-4").select('text.c3-chart-arcs-title');
+      donutChartTitle.text("");
+      donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+      donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+      var sparklineConfig = c3ChartDefaults.getDefaultSparklineConfig();
+      sparklineConfig.bindto = '#chart-pf-sparkline-4';
+      sparklineConfig.data = {
+        columns: [
+          ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+        ],
+        type: 'area'
+      };
+
+      var chart2 = c3.generate(sparklineConfig);
+    </script>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-5">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <h2 class="card-pf-title">
+      Card Title
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-7">
+<div class="card-pf">
+  <h2 class="card-pf-title">
+    Card Title
+  </h2>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+  <div class="card-pf-footer">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <p>
+      <a href="#" class="card-pf-link-with-icon">
+        <span class="pficon pficon-add-circle-o"></span>Add New Cluster
+      </a>
+    </p>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-5 col-md-5">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <div class="dropdown card-pf-time-frame-filter">
+                <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+                  Last 30 Days <span class="caret"></span>
+                </button>
+                <ul class="dropdown-menu dropdown-menu-right" role="menu">
+                  <li class="selected"><a href="#">Last 30 Days</a></li>
+                  <li><a href="#">Last 60 Days</a></li>
+                  <li><a href="#">Last 90 Days</a></li>
+                </ul>
+              </div>
+              <p>
+                <a href="#" class="card-pf-link-with-icon">
+                  <span class="pficon pficon-flag"></span>View CPU Events
+                </a>
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-12 col-sm-7 col-md-7">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-8 col-md-8">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-4">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+
+</div>
+<script>
+  $(document).ready(function() {
+    // matchHeight the contents of each .card-pf and then the .card-pf itself
+    $(".row-cards-pf > [class*='col'] > .card-pf .card-pf-title").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-footer").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf").matchHeight();
+
+    // initialize tooltips
+    $('[data-toggle="tooltip"]').tooltip();
+  });
+</script>
+
+<script>
+  $(document).ready(function() {
+    $('.applauncher-pf .dropdown-toggle').eq(0).click();
+  });
+</script>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/application-launcher-nav-vertical.html b/themes/src/main/node_modules/rcue/tests/application-launcher-nav-vertical.html
new file mode 100644
index 0000000..076749e
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/application-launcher-nav-vertical.html
@@ -0,0 +1,1861 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 layout-pf layout-pf-fixed"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="layout-pf layout-pf-fixed">
+  <!--<![endif]-->
+    <head>
+    <title>Application Launcher for Vertical Navigation - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body class="cards-pf">
+    
+
+  
+
+<nav class="navbar navbar-pf-vertical">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a href="/" class="navbar-brand">
+      <img class="navbar-brand-icon" src="/dist/img/logo.svg" alt=""/><img class="navbar-brand-name" src="/dist/img/brand-alt.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+    
+  </div>
+  <nav class="collapse navbar-collapse">
+    <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
+      
+      <li class="applauncher-pf  dropdown dropdown-kebab-pf">
+  <a class="dropdown-toggle nav-item-iconic" data-toggle="dropdown" href="#">
+    <i class="fa fa-th applauncher-pf-icon" aria-hidden="true"></i>
+          <span class="applauncher-pf-title">
+            Application Launcher
+            <span class="caret" aria-hidden="true"></span>
+          </span>
+  </a>
+  <ul class="dropdown-menu dropdown-menu-right" role="menu">
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Recteque</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Ipsum</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Suavitate</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Lorem</span>
+      </a>
+    </li>
+    <li class="applauncher-pf-item" role="menuitem">
+      <a class="applauncher-pf-link" href="#">
+        
+        <span class="applauncher-pf-link-title">Home</span>
+      </a>
+    </li>
+  </ul>
+</li>
+
+      
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Username" class="fa pficon-user"></span>
+          Brian Johnson <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
+          <li><a href="#0">Preferences</a></li>
+          <li><a href="#0">Logout</a></li>
+        </ul>
+      </li>
+    </ul>
+  </nav>
+  
+  <div class="drawer-pf hide drawer-pf-notifications-non-clickable">
+  <div class="drawer-pf-title">
+    <a class="drawer-pf-toggle-expand fa fa-angle-double-left hidden-xs"></a>
+    <a  class="drawer-pf-close pficon pficon-close"></a>
+    <h3 class="text-center">Notifications Drawer</h3>
+  </div>
+  <div class="panel-group" id="notification-drawer-accordion">
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseOne">
+            Notification Tab 1
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseOne" class="panel-collapse collapse in">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight11">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight21" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight21">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight31" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight31">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight41" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight41">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseTwo">
+            Notification Tab 2
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseTwo" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight12">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight22" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight22">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight32" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight32">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight42" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight42">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight13">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight23" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight23">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight33" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight33">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight43" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight43">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight14">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight24" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight24">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight34" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight34">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight44" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight44">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-loading text-center">
+            <span class="spinner spinner-xs spinner-inline"></span> Loading More
+          </div>
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseThree">
+            Notification Tab 3
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseThree" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight15">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight25" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight25">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight35" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight35">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight45" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight45">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight16" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight16">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight26" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight26">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight36" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight36">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight46" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight46">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight17" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight17">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight27" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight27">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight37" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight37">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight47" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight47">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  $(document).ready(function() {
+    // Initialize to unread notifications
+    // TODO: add badge for unread notifications
+
+    // Show/Hide Notifications Drawer
+    $('.drawer-pf-trigger').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $(this).toggleClass('open');
+      if ($drawer.hasClass('hide')) {
+        $drawer.removeClass('hide');
+        setTimeout(function () {
+          if (window.dispatchEvent) {
+            window.dispatchEvent(new Event('resize'));
+          }
+          // Special case for IE
+          if ($(document).fireEvent) {
+            $(document).fireEvent('onresize');
+          }
+        }, 100);
+      } else {
+        $drawer.addClass('hide');
+      }
+      // Special case, close navigation menu in mobile mode
+     if ($('.container-pf-nav-pf-vertical').hasClass('hidden-nav')) {
+       $('.nav-pf-vertical').removeClass('show-mobile-nav');
+     }
+    });
+    $('.drawer-pf-close').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $('.drawer-pf-trigger').removeClass('open');
+      $drawer.addClass('hide');
+    });
+    $('.drawer-pf-toggle-expand').click(function() {
+      var $drawer = $('.drawer-pf');
+      var $drawerNotifications = $drawer.find('.drawer-pf-notification');
+
+      if ($drawer.hasClass('drawer-pf-expanded')) {
+        $drawer.removeClass('drawer-pf-expanded');
+        $drawerNotifications.removeClass('expanded-notification');
+      } else {
+        $drawer.addClass('drawer-pf-expanded');
+        $drawerNotifications.addClass('expanded-notification');
+      }
+    });
+
+    // Mark All Read / Clear All
+    $('.panel-collapse').each(function (index, panel) {
+      var $panel = $(panel);
+      var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+      $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+
+      if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+        // TODO: remove badge for unread indicator
+      }
+
+      $panel.on('click', '.drawer-pf-action [data-toggle="mark-all-read"] .btn', function() {
+        $panel.find('.unread').removeClass('unread');
+        $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          $('.drawer-pf-trigger').removeClass('unread');
+        }
+      });
+      $panel.on('click', '.drawer-pf-action [data-toggle="clear-all"] .btn', function() {
+        $panel.find('.panel-body .drawer-pf-notification').remove();
+        $panel.find('.drawer-pf-action').remove();
+        $panel.find('.blank-slate-pf').removeClass('hidden');
+        $panel.find('.drawer-pf-loading').addClass('hidden');
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          // TODO: remove badge for unread indicator
+        }
+      });
+
+      $panel.find('.drawer-pf-notification').each(function (index, notification) {
+        var $notification = $(notification);
+        $notification.on('click', '.drawer-pf-notification-content', function() {
+          $notification.removeClass('unread');
+          var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+          $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+          if (unreadCount === 0) {
+            $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+            if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+              // TODO: remove badge for unread indicator
+            }
+          }
+        });
+      });
+    });
+
+    $('#notification-drawer-accordion').initCollapseHeights('.panel-body');
+  });
+</script>
+
+  
+</nav> <!--/.navbar-->
+
+
+<div class="nav-pf-vertical nav-pf-vertical-with-sub-menus
+     
+     
+     
+     ">
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-dashboard" data-toggle="tooltip" title="Dashboard"></span>
+        <span class="list-group-item-value">Dashboard</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-shield" data-toggle="tooltip" title="Dolor"></span>
+        <span class="list-group-item-value">Dolor</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item active secondary-nav-item-pf" data-target="#ipsum-secondary">
+      <a href="#0">
+        <span class="fa fa-space-shuttle" data-toggle="tooltip" title="Ipsum"></span>
+        <span class="list-group-item-value">Ipsum</span>
+      </a>
+      
+      <div id="-secondary" class="nav-pf-secondary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+    <span>Ipsum</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item active " data-target="#ipsum-intellegam-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Intellegam</span>
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#ipsum-copiosae-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Copiosae</span>
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#ipsum-patrioque-tertiary">
+      <a href="#0" >
+        <span class="list-group-item-value">Patrioque</span>
+      </a>
+      
+    </li>
+    
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item secondary-nav-item-pf" data-target="#amet-secondary">
+      <a href="#0">
+        <span class="fa fa-paper-plane" data-toggle="tooltip" title="Amet"></span>
+        <span class="list-group-item-value">Amet</span>
+      </a>
+      
+      <div id="amet-secondary" class="nav-pf-secondary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+    <span>Amet</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item " data-target="#amet-detracto-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Detracto Suscipiantur</span>
+        
+        
+        
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#amet-mediocrem-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Mediocrem</span>
+        
+        
+        
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#amet-corrumpit-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Corrumpit Cupidatat Proident Deserunt</span>
+        
+        
+        
+      </a>
+      
+    </li>
+    
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-graduation-cap" data-toggle="tooltip" title="Adipscing"></span>
+        <span class="list-group-item-value">Adipscing</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-gamepad" data-toggle="tooltip" title="Lorem"></span>
+        <span class="list-group-item-value">Lorem</span>
+      </a>
+    </li>
+    
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block">
+      <a href="#0">
+        <span class="fa fa-th applauncher-pf-icon" data-toggle="tooltip" title="" data-original-title="App Launcher"></span>
+        <span class="list-group-item-value">App Launcher</span>
+      </a>
+      <div id="applauncher-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>App Launcher</span>
+        </div>
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Recteque</span>
+            </a>
+          </li>
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Recteque</span>
+            </a>
+          </li>
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Suavitate</span>
+            </a>
+          </li>
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Lorem</span>
+            </a>
+          </li>
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Home</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+    
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block">
+      <a href="#0">
+        <span class="pficon pficon-user" data-toggle="tooltip" title="" data-original-title="User"></span>
+        <span class="list-group-item-value">User</span>
+      </a>
+      <div id="user-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>User</span>
+        </div>
+
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Preferences</span>
+            </a>
+          </li>
+
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Logout</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block" data-target="#amet-secondary">
+      <a href="#0">
+        <span class="pficon pficon-help" data-toggle="tooltip" title="" data-original-title="Help"></span>
+        <span class="list-group-item-value">Help</span>
+      </a>
+      <div id="help-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>Help</span>
+        </div>
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Help</span>
+            </a>
+          </li>
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">About</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+
+  </ul>
+
+</div>
+<div class="container-fluid container-cards-pf container-pf-nav-pf-vertical
+     
+     
+     ">
+
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">20</span> Amet</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-warning-triangle-o"></span>1</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">9</span> Adipiscing</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status">
+            <h2 class="card-pf-title">
+              <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">12</span> Lorem</a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <span class="fa fa-rebel"></span>
+    <span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="fa fa-paper-plane"></span>
+      <span class="card-pf-aggregate-status-count">20</span> Amet
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="pficon pficon-cluster"></span>
+      <span class="card-pf-aggregate-status-count">9</span> Adipiscing
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+            <h2 class="card-pf-title">
+              <a href="#">
+                <span class="pficon pficon-image"></span>
+                <span class="card-pf-aggregate-status-count">12</span> Lorem
+              </a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Top Utilized Clusters
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-description">
+      RHOS6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 95%;"  data-toggle="tooltip" title="95% Used">
+        <span><strong>190.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;" data-toggle="tooltip" title="5% Available">
+        <span class="sr-only">5% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      CFMEQE-Cluster
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;"  data-toggle="tooltip" title="50% Used">
+        <span><strong>100.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Available">
+        <span class="sr-only">50% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHOS-Undercloud
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;"  data-toggle="tooltip" title="70% Used">
+        <span><strong>140.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width: 30%;" data-toggle="tooltip" title="30% Available">
+        <span class="sr-only">30% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHEL6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="76.5" aria-valuemin="0" aria-valuemax="100" style="width: 76.5%;"  data-toggle="tooltip" title="76.5% Used">
+        <span><strong>153.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="23.5" aria-valuemin="0" aria-valuemax="100" style="width: 23.5%;" data-toggle="tooltip" title="23.5% Available">
+        <span class="sr-only">23.5% Available</span>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Quotas
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        CPU
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
+          <span><strong>115 of 460</strong> MHz</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
+          <span class="sr-only">75% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Memory
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Used">
+          <span><strong>8 of 16</strong> GB</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Available">
+          <span class="sr-only">50% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Pods
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="62.5" aria-valuemin="0" aria-valuemax="100" style="width: 62.5%;" data-toggle="tooltip" title="62.5% Used">
+          <span><strong>5 of 8</strong> Total</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="37.5" aria-valuemin="0" aria-valuemax="100" style="width: 37.5%;" data-toggle="tooltip" title="37.5% Available">
+          <span class="sr-only">37.5% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Services
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;" data-toggle="tooltip" title="100% Used">
+          <span><strong>2 of 2</strong> Total</span>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-md-12">
+<div class="card-pf card-pf-utilization">
+  <div class="card-pf-heading">
+    <p class="card-pf-heading-details">Last 30 days</p>
+    <h2 class="card-pf-title">
+      Utilization
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="row">
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">CPU</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">50</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1000 MHz</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-1"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-1"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-1';
+          donutConfig.color =  {
+            pattern: ["#cc0000","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 95],
+              ["Available", 5]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' MHz ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart1 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-1").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("950").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("MHz Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-1';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 10, 50, 28, 20, 31, 27, 60, 36, 52, 55, 62, 68, 69, 88, 74, 88, 95],
+            ],
+            type: 'area'
+          };
+          var chart2 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Memory</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">256</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 432 GB</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-2"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-2"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-2';
+          donutConfig.color =  {
+            pattern: ["#3f9c35","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 41],
+              ["Available", 59]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' GB ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart3 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-2").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("176").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("GB Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-2';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 35, 36, 20, 30, 31, 22, 44, 36, 40, 41, 55, 52, 48, 48, 50, 40, 41],
+            ],
+            type: 'area'
+          };
+          var chart4 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Network</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">200</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-3"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-3"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-3';
+          donutConfig.color =  {
+            pattern: ["#EC7A08","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 85],
+              ["Available", 15]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart5 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-3").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-3';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+            ],
+            type: 'area'
+          };
+          var chart6 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-xs-12 col-sm-4 col-md-4">
+<div class="card-pf card-pf-utilization">
+  <h2 class="card-pf-title">
+    Network
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-utilization-details">
+      <span class="card-pf-utilization-card-details-count">200</span>
+        <span class="card-pf-utilization-card-details-description">
+          <span class="card-pf-utilization-card-details-line-1">Available</span>
+          <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+        </span>
+    </p>
+    <div id="chart-pf-donut-4"></div>
+    <div class="chart-pf-sparkline" id="chart-pf-sparkline-4"></div>
+    <script>
+      var c3ChartDefaults = $().c3ChartDefaults();
+
+      var donutConfig = c3ChartDefaults.getDefaultDonutConfig('A');
+      donutConfig.bindto = '#chart-pf-donut-4';
+      donutConfig.color =  {
+        pattern: ["#EC7A08","#D1D1D1"]
+      };
+      donutConfig.data = {
+        type: "donut",
+        columns: [
+          ["Used", 85],
+          ["Available", 15]
+        ],
+        groups: [
+          ["used", "available"]
+        ],
+        order: null
+      };
+      donutConfig.tooltip = {
+        contents: function (d) {
+          return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                  Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                  '</span>';
+        }
+      };
+
+      var chart1 = c3.generate(donutConfig);
+      var donutChartTitle = d3.select("#chart-pf-donut-4").select('text.c3-chart-arcs-title');
+      donutChartTitle.text("");
+      donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+      donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+      var sparklineConfig = c3ChartDefaults.getDefaultSparklineConfig();
+      sparklineConfig.bindto = '#chart-pf-sparkline-4';
+      sparklineConfig.data = {
+        columns: [
+          ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+        ],
+        type: 'area'
+      };
+
+      var chart2 = c3.generate(sparklineConfig);
+    </script>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-5">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <h2 class="card-pf-title">
+      Card Title
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-7">
+<div class="card-pf">
+  <h2 class="card-pf-title">
+    Card Title
+  </h2>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+  <div class="card-pf-footer">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <p>
+      <a href="#" class="card-pf-link-with-icon">
+        <span class="pficon pficon-add-circle-o"></span>Add New Cluster
+      </a>
+    </p>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-5 col-md-5">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <div class="dropdown card-pf-time-frame-filter">
+                <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+                  Last 30 Days <span class="caret"></span>
+                </button>
+                <ul class="dropdown-menu dropdown-menu-right" role="menu">
+                  <li class="selected"><a href="#">Last 30 Days</a></li>
+                  <li><a href="#">Last 60 Days</a></li>
+                  <li><a href="#">Last 90 Days</a></li>
+                </ul>
+              </div>
+              <p>
+                <a href="#" class="card-pf-link-with-icon">
+                  <span class="pficon pficon-flag"></span>View CPU Events
+                </a>
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-12 col-sm-7 col-md-7">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-8 col-md-8">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-4">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+
+</div>
+<script>
+  $(document).ready(function() {
+    // matchHeight the contents of each .card-pf and then the .card-pf itself
+    $(".row-cards-pf > [class*='col'] > .card-pf .card-pf-title").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-footer").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf").matchHeight();
+
+    // Initialize the vertical navigation
+    $().setupVerticalNavigation(true);
+  });
+</script>
+
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/area-charts.html b/themes/src/main/node_modules/rcue/tests/area-charts.html
new file mode 100644
index 0000000..eb310e5
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/area-charts.html
@@ -0,0 +1,103 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Area Charts - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Area Charts</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://c3js.org/">http://c3js.org/</a>
+      </div>
+      <hr>
+<h2>Area Chart</h2>
+<div class="row">
+  <div class="col-lg-6 col-sm-12">
+    <div id="areaChart" class="line-chart-pf"></div>
+<script>
+  var areaChartDataColumns = [
+    ['data1', 350, 400, 350, 0],
+    ['data2', 140, 100, 150, 205, 145, 50],
+    ['data3', 10, 60, 90, 10, 325, 400],
+    ['data4', 260, 10, 305, 100, 50, 150]
+  ];
+  var singleAreaChartDataColumns = [
+    ['data2', 140, 100, 150, 205, 145, 50]
+  ];
+
+  var c3ChartDefaults = $().c3ChartDefaults();
+  var areaChartConfig = c3ChartDefaults.getDefaultAreaConfig();
+  areaChartConfig.bindto = '#areaChart';
+  areaChartConfig.data = {
+    columns: areaChartDataColumns,
+    type: 'area-spline'
+  };
+  var areaChart = c3.generate(areaChartConfig);
+</script>
+
+  </div>
+</div>
+<h2>Single Area Chart</h2>
+<div class="row">
+  <div class="col-lg-6 col-sm-12">
+    <div id="singleAreaChart" class="line-chart-pf"></div>
+<script>
+  var areaChartDataColumns = [
+    ['data1', 350, 400, 350, 0],
+    ['data2', 140, 100, 150, 205, 145, 50],
+    ['data3', 10, 60, 90, 10, 325, 400],
+    ['data4', 260, 10, 305, 100, 50, 150]
+  ];
+  var singleAreaChartDataColumns = [
+    ['data2', 140, 100, 150, 205, 145, 50]
+  ];
+
+  var c3ChartDefaults = $().c3ChartDefaults();
+  var singleAreaChartConfig = c3ChartDefaults.getDefaultSingleAreaConfig();
+  singleAreaChartConfig.bindto = '#singleAreaChart';
+  singleAreaChartConfig.data = {
+    columns: singleAreaChartDataColumns,
+    type: 'area-spline'
+  };
+  var singleAreaChart = c3.generate(singleAreaChartConfig);
+</script>
+
+  </div>
+</div>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/badges.html b/themes/src/main/node_modules/rcue/tests/badges.html
new file mode 100644
index 0000000..7b898ca
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/badges.html
@@ -0,0 +1,73 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Badges - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Badges</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <a href="#">Inbox <span class="badge">42</span></a>
+      <hr>
+      <ul class="nav nav-pills">
+        <li class="active"><a href="#">Home <span class="badge">42</span></a></li>
+        <li><a href="#">Profile</a></li>
+        <li><a href="#">Messages <span class="badge">3</span></a></li>
+      </ul>
+      <hr>
+      <ul class="nav nav-pills nav-stacked" style="max-width: 260px;">
+        <li class="active">
+          <a href="#">
+            <span class="badge pull-right">42</span>
+            Home
+          </a>
+        </li>
+        <li><a href="#">Profile</a></li>
+        <li>
+          <a href="#">
+            <span class="badge pull-right">3</span>
+            Messages
+          </a>
+        </li>
+      </ul>
+      <hr>
+      <button class="btn btn-primary" type="button">
+        Messages <span class="badge">4</span>
+      </button>
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/bar-charts.html b/themes/src/main/node_modules/rcue/tests/bar-charts.html
new file mode 100644
index 0000000..eb36bd7
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/bar-charts.html
@@ -0,0 +1,350 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Bar Charts - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Bar Charts</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://c3js.org/">http://c3js.org/</a>
+      </div>
+      <hr>
+<h2>Vertical Bar Chart</h2>
+<div class="row">
+  <div class="col-lg-4 col-sm-6 col-xs-12">
+    <div id="verticalBarChart"></div>
+<script>
+  var c3ChartDefaults = $().c3ChartDefaults();
+
+  var chartUrls = [
+    'https://www.gogole.com',
+    'https://www.yahoo.com',
+    'https://www.bing.com/',
+    'https://duckduckgo.com/'
+  ];
+  var categories = ['Q1', 'Q2', 'Q3', 'Q4'];
+  var columnsData = [
+    ['data1', 400, 360, 320, 175]
+  ];
+
+  var verticalBarChartConfig = $().c3ChartDefaults().getDefaultBarConfig(categories);
+  verticalBarChartConfig.bindto = '#verticalBarChart';
+  verticalBarChartConfig.axis = {
+    x: {
+      categories: categories,
+      type: 'category'
+    }
+  };
+  verticalBarChartConfig.data = {
+    type: 'bar',
+    columns: columnsData,
+    // optional drilldown behavior
+    onclick: function (d, element) {
+      window.location = chartUrls[d.index];
+    }
+  };
+  var verticalBarChart = c3.generate(verticalBarChartConfig);
+</script>
+
+  </div>
+</div>
+<h2>Grouped Vertical Bar Chart</h2>
+<div class="row">
+  <div class="col-lg-4 col-sm-6 col-xs-12">
+    <div id="groupedVerticalBarChart"></div>
+<script>
+  var c3ChartDefaults = $().c3ChartDefaults();
+
+  var chartUrls = [
+    'https://www.gogole.com',
+    'https://www.yahoo.com',
+    'https://www.bing.com/',
+    'https://duckduckgo.com/'
+  ];
+  var categories = ['Q1', 'Q2', 'Q3', 'Q4'];
+  var columnsData = [
+    ['data1', 400, 360, 320, 175]
+  ];
+
+  var groupedcCategories = ['2013', '2014', '2015'];
+  var groupedColumnsData = [
+    ['Q1', 400, 250, 375],
+    ['Q2', 355, 305, 300],
+    ['Q3', 315, 340, 276],
+    ['Q4', 180, 390, 190]
+  ];
+  var groupedColors = {
+    pattern: [
+      $.pfPaletteColors.red,
+      $.pfPaletteColors.blue,
+      $.pfPaletteColors.orange,
+      $.pfPaletteColors.green
+    ]
+  };
+
+  var groupedVerticalBarChartConfig = $().c3ChartDefaults().getDefaultGroupedBarConfig();
+  groupedVerticalBarChartConfig.bindto = '#groupedVerticalBarChart';
+  groupedVerticalBarChartConfig.axis = {
+    x: {
+      categories: groupedcCategories,
+      type: 'category'
+    }
+  };
+  groupedVerticalBarChartConfig.data = {
+    type: 'bar',
+    columns: groupedColumnsData,
+    // optional drilldown behavior
+    onclick: function (d, element) {
+      window.location = chartUrls[d.index];
+    }
+  };
+  groupedVerticalBarChartConfig.color = groupedColors;
+  var groupedVerticalBarChart = c3.generate(groupedVerticalBarChartConfig);
+</script>
+
+  </div>
+</div>
+<h2>Stacked Vertical Bar Chart</h2>
+<div class="row">
+  <div class="col-lg-4 col-sm-6 col-xs-12">
+    <div id="stackedVerticalBarChart"></div>
+<script>
+  var c3ChartDefaults = $().c3ChartDefaults();
+
+  var chartUrls = [
+    'https://www.google.com',
+    'https://www.yahoo.com',
+    'https://www.bing.com/',
+    'https://duckduckgo.com/'
+  ];
+  var stackedColumnsData = [
+    ['Q1', 400, 250, 375],
+    ['Q2', 355, 305, 300],
+    ['Q3', 315, 340, 276],
+    ['Q4', 180, 390, 190]
+  ];
+  var stackedGroups = [['Q1', 'Q2', 'Q3', 'Q4']];
+  var stackedCategories = ['2013', '2014', '2015'];
+  var stackedColors = {
+    pattern: [
+      $.pfPaletteColors.red,
+      $.pfPaletteColors.blue,
+      $.pfPaletteColors.orange,
+      $.pfPaletteColors.green
+    ]
+  };
+
+  var stackedVerticalBarChartConfig = c3ChartDefaults.getDefaultStackedBarConfig();
+  stackedVerticalBarChartConfig.axis = {
+    x: {
+      categories: stackedCategories,
+      type: 'category'
+    }
+  };
+  stackedVerticalBarChartConfig.bindto = '#stackedVerticalBarChart';
+  stackedVerticalBarChartConfig.color = stackedColors;
+  stackedVerticalBarChartConfig.data = {
+    columns: stackedColumnsData,
+    groups: stackedGroups,
+    type: 'bar',
+    // optional drilldown behavior
+    onclick: function (d, element) {
+      window.location = chartUrls[d.index];
+    },
+    order: null
+  };
+  var stackedVerticalBarChart = c3.generate(stackedVerticalBarChartConfig);
+</script>
+
+  </div>
+</div>
+<h2>Horizontal Bar Chart</h2>
+<div class="row">
+  <div class="col-lg-4 col-sm-6 col-xs-12">
+    <div id="horizontalBarChart"></div>
+<script>
+  var c3ChartDefaults = $().c3ChartDefaults();
+
+  var chartUrls = [
+    'https://www.gogole.com',
+    'https://www.yahoo.com',
+    'https://www.bing.com/',
+    'https://duckduckgo.com/'
+  ];
+  var categories = ['Q1', 'Q2', 'Q3', 'Q4'];
+  var columnsData = [
+    ['data1', 400, 360, 320, 175]
+  ];
+
+  var horizontalBarChartConfig = $().c3ChartDefaults().getDefaultBarConfig(categories);
+  horizontalBarChartConfig.bindto = '#horizontalBarChart';
+  horizontalBarChartConfig.axis = {
+    rotated: true,
+    x: {
+      categories: categories,
+      type: 'category'
+    }
+  };
+  horizontalBarChartConfig.data = {
+    type: 'bar',
+    columns: columnsData,
+    // optional drilldown behavior
+    onclick: function (d, element) {
+      window.location = chartUrls[d.index];
+    }
+  };
+  var horizontalBarChart = c3.generate(horizontalBarChartConfig);
+</script>
+
+  </div>
+</div>
+<h2>Grouped Horizontal Bar Chart</h2>
+<div class="row">
+  <div class="col-lg-4 col-sm-6 col-xs-12">
+    <div id="groupedHorizontalBarChart"></div>
+<script>
+  var c3ChartDefaults = $().c3ChartDefaults();
+
+  var chartUrls = [
+    'https://www.gogole.com',
+    'https://www.yahoo.com',
+    'https://www.bing.com/',
+    'https://duckduckgo.com/'
+  ];
+  var categories = ['Q1', 'Q2', 'Q3', 'Q4'];
+  var columnsData = [
+    ['data1', 400, 360, 320, 175]
+  ];
+
+  var groupedcCategories = ['2013', '2014', '2015'];
+  var groupedColumnsData = [
+    ['Q1', 400, 250, 375],
+    ['Q2', 355, 305, 300],
+    ['Q3', 315, 340, 276],
+    ['Q4', 180, 390, 190]
+  ];
+  var groupedColors = {
+    pattern: [
+      $.pfPaletteColors.red,
+      $.pfPaletteColors.blue,
+      $.pfPaletteColors.orange,
+      $.pfPaletteColors.green
+    ]
+  };
+
+  var groupedHorizontalBarChartConfig = $().c3ChartDefaults().getDefaultGroupedBarConfig();
+  groupedHorizontalBarChartConfig.bindto = '#groupedHorizontalBarChart';
+  groupedHorizontalBarChartConfig.axis = {
+    rotated: true,
+    x: {
+      categories: groupedcCategories,
+      type: 'category'
+    }
+  };
+  groupedHorizontalBarChartConfig.data = {
+    type: 'bar',
+    columns: groupedColumnsData,
+    // optional drilldown behavior
+    onclick: function (d, element) {
+      window.location = chartUrls[d.index];
+    }
+  };
+  groupedHorizontalBarChartConfig.color = groupedColors;
+  var groupedHorizontalBarChart = c3.generate(groupedHorizontalBarChartConfig);
+</script>
+
+  </div>
+</div>
+<h2>Stacked Horizontal Bar Chart</h2>
+<div class="row">
+  <div class="col-lg-4 col-sm-6 col-xs-12">
+    <div id="stackedHorizontalBarChart"></div>
+<script>
+  var c3ChartDefaults = $().c3ChartDefaults();
+
+  var chartUrls = [
+    'https://www.google.com',
+    'https://www.yahoo.com',
+    'https://www.bing.com/',
+    'https://duckduckgo.com/'
+  ];
+  var stackedColumnsData = [
+    ['Q1', 400, 250, 375],
+    ['Q2', 355, 305, 300],
+    ['Q3', 315, 340, 276],
+    ['Q4', 180, 390, 190]
+  ];
+  var stackedGroups = [['Q1', 'Q2', 'Q3', 'Q4']];
+  var stackedCategories = ['2013', '2014', '2015'];
+  var stackedColors = {
+    pattern: [
+      $.pfPaletteColors.red,
+      $.pfPaletteColors.blue,
+      $.pfPaletteColors.orange,
+      $.pfPaletteColors.green
+    ]
+  };
+
+  var stackedHorizontalBarChartConfig = c3ChartDefaults.getDefaultStackedBarConfig();
+  stackedHorizontalBarChartConfig.axis = {
+    rotated: true,
+    x: {
+      categories: stackedCategories,
+      type: 'category'
+    }
+  };
+  stackedHorizontalBarChartConfig.bindto = '#stackedHorizontalBarChart';
+  stackedHorizontalBarChartConfig.color = stackedColors;
+  stackedHorizontalBarChartConfig.data = {
+    columns: stackedColumnsData,
+    groups: stackedGroups,
+    type: 'bar',
+    // optional drilldown behavior
+    onclick: function (d, element) {
+      window.location = chartUrls[d.index];
+    },
+    order: null
+  };
+  var stackedVerticalBarChart = c3.generate(stackedHorizontalBarChartConfig);
+</script>
+
+  </div>
+</div>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/basic.html b/themes/src/main/node_modules/rcue/tests/basic.html
new file mode 100644
index 0000000..543c94a
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/basic.html
@@ -0,0 +1,804 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Basic - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="//cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js"></script>
+    <script src="//cdn.datatables.net/select/1.2.0/js/dataTables.select.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfEmpty.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfFilter.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfResize.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfSelect.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body>
+    <nav class="navbar navbar-default navbar-pf" role="navigation">
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+        </a>
+      </div>
+      <div class="collapse navbar-collapse navbar-collapse-1">
+        <ul class="nav navbar-nav navbar-utility">
+          <li class="dropdown">
+            <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+              <span title="Help" class="fa pficon-help"></span>
+              <span class="caret"></span>
+            </a>
+            <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+              <li><a href="#0">Help</a></li>
+              <li><a href="#0">About</a></li>
+            </ul>
+          </li>
+          <li class="dropdown">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+              <span class="pficon pficon-user"></span>
+              Brian Johnson <b class="caret"></b>
+            </a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-submenu">
+                <a tabindex="-1" href="#0">More options</a>
+                <ul class="dropdown-menu">
+                  <li>
+                    <a href="#0">Link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Another link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Something else here</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li class="dropdown-header">Nav header</li>
+                  <li>
+                    <a href="#0">Separated link</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li>
+                    <a href="#0">One more separated link</a>
+                  </li>
+                </ul>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+        <ul class="nav navbar-nav navbar-primary">
+          <li class="active">
+            <a href="basic.html" class="active">Basic</a>
+          </li>
+          <li>
+            <a href="bootstrap-treeview-2.html">Tree View</a>
+          </li>
+          <li>
+            <a href="dashboard.html">Dashboard</a>
+          </li>
+          <li>
+            <a href="form.html">Form</a>
+          </li>
+          <li>
+            <a href="tab.html">Tab</a>
+          </li>
+          <li>
+            <a href="typography-2.html">Typography</a>
+          </li>
+          <li>
+            <a href="card-view-multi-select.html">Card View - Multi Select</a>
+          </li>
+          <li>
+            <a href="card-view-single-select.html">Card View - Single Select</a>
+          </li>
+          <li>
+            <a href="cards.html">Cards</a>
+          </li>
+          <li>
+            <a href="pagination-card-view.html">Pagination - Card View</a>
+          </li>
+        </ul>
+      </div>
+    </nav>
+
+    <div class="container-fluid">
+      <div class="row">
+        <div class="col-md-12">
+          <ol class="breadcrumb">
+            <li><a href="#">Home</a></li>
+            <li>Basic</li>
+          </ol>
+          <h1>Basic</h1>
+<!-- Toolbar -->
+<div class="row toolbar-pf table-view-pf-toolbar" id="toolbar1">
+  <div class="col-sm-12">
+    <form class="toolbar-pf-actions">
+      <div class="form-group toolbar-pf-filter">
+        <label class="sr-only" for="filter">Rendering Engine</label>
+        <div class="input-group">
+          <div class="input-group-btn">
+            <button type="button" class="btn btn-default dropdown-toggle" id="filter" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Rendering Engine <span class="caret"></span></button>
+            <ul class="dropdown-menu">
+              <li><a href="#" id="filter1">Rendering Engine</a></li>
+              <li><a href="#" id="filter2">Browser</a></li>
+              <li><a href="#" id="filter3">Platform(s)</a></li>
+              <li><a href="#" id="filter4">Engine Version</a></li>
+              <li><a href="#" id="filter5">CSS Grade</a></li>
+            </ul>
+          </div>
+          <input type="text" class="form-control" placeholder="Filter By Rendering Engine..." autocomplete="off" id="filterInput">
+        </div>
+      </div>
+      <div class="form-group">
+        <button class="btn btn-default" type="button" id="deleteRows1">Delete Rows</button>
+        <button class="btn btn-default" type="button" id="restoreRows1" disabled>Restore Rows</button>
+        <div class="dropdown btn-group  dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebab" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu " aria-labelledby="dropdownKebab">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+      </div>
+      <div class="toolbar-pf-action-right">
+        <div class="form-group toolbar-pf-find">
+          <button class="btn btn-link btn-find" type="button">
+            <span class="fa fa-search"></span>
+          </button>
+          <div class="find-pf-dropdown-container">
+            <input type="text" class="form-control" id="find" placeholder="Find By Keyword...">
+            <div class="find-pf-buttons">
+              <span class="find-pf-nums">1 of 3</span>
+              <button class="btn btn-link" type="button">
+                <span class="fa fa-angle-up"></span>
+              </button>
+              <button class="btn btn-link" type="button">
+                <span class="fa fa-angle-down"></span>
+              </button>
+              <button class="btn btn-link btn-find-close" type="button">
+                <span class="pficon pficon-close"></span>
+              </button>
+            </div>
+          </div>
+        </div>
+      </div>
+    </form>
+    <div class="row toolbar-pf-results">
+      <div class="col-sm-9">
+        <div class="hidden">
+          <h5>0 Results</h5>
+          <p>Active filters:</p>
+          <ul class="list-inline"></ul>
+          <p><a href="#">Clear All Filters</a></p>
+        </div>
+      </div>
+      <div class="col-sm-3 table-view-pf-select-results">
+        <strong>0</strong> of <strong>0</strong> selected
+      </div>
+    </div>
+  </div>
+</div>
+
+<!-- Table HTML -->
+<table class="table table-striped table-bordered table-hover" id="table1">
+  <thead>
+    <tr>
+      <th><label class="sr-only" for="selectAll">Select all rows</label><input type="checkbox" id="selectAll" name="selectAll"></th>
+      <th>Rendering Engine</th>
+      <th>Browser</th>
+      <th>Platform(s)</th>
+      <th>Engine Version</th>
+      <th>CSS Grade</th>
+      <th colspan="2">Actions</th>
+    </tr>
+  </thead>
+</table>
+
+<form class="content-view-pf-pagination table-view-pf-pagination clearfix" id="pagination1">
+  <div class="form-group">
+    <select class="selectpicker pagination-pf-pagesize">
+      <option value="6">6</option>
+      <option value="10" >10</option>
+      <option value="15" selected="selected">15</option>
+      <option value="25">25</option>
+      <option value="50">50</option>
+    </select>
+    <span>per page</span>
+  </div>
+  <div class="form-group">
+    <span><span class="pagination-pf-items-current">1-15</span> of <span class="pagination-pf-items-total">75</span></span>
+    <ul class="pagination pagination-pf-back">
+      <li class="disabled"><a href="#" title="First Page"><span class="i fa fa-angle-double-left"></span></a></li>
+      <li class="disabled"><a href="#" title="Previous Page"><span class="i fa fa-angle-left"></span></a></li>
+    </ul>
+    <label for="pagination1-page" class="sr-only">Current Page</label>
+    <input class="pagination-pf-page" type="text" value="1" id="pagination1-page"/>
+    <span>of <span class="pagination-pf-pages">5</span></span>
+    <ul class="pagination pagination-pf-forward">
+      <li><a href="#" title="Next Page"><span class="i fa fa-angle-right"></span></a></li>
+      <li><a href="#" title="Last Page"><span class="i fa fa-angle-double-right"></span></a></li>
+    </ul>
+  </div>
+</form>
+
+<!-- Blank Slate HTML -->
+<div class="blank-slate-pf table-view-pf-empty hidden" id="emptyState1">
+  <div class="blank-slate-pf-icon">
+    <span class="pficon pficon pficon-add-circle-o"></span>
+  </div>
+  <h1>
+    Empty State Title
+  </h1>
+  <p>
+    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
+  </p>
+  <p>
+    Learn more about this <a href="#">on the documentation</a>.
+  </p>
+  <div class="blank-slate-pf-main-action">
+    <button class="btn btn-primary btn-lg"> Main Action </button>
+  </div>
+  <div class="blank-slate-pf-secondary-action">
+    <button class="btn btn-default">Secondary Action</button>
+    <button class="btn btn-default">Secondary Action</button>
+  </div>
+</div>
+
+<script>
+$(document).ready(function() {
+
+// JSON data for Table View
+var dataSet = [{
+  engine: "Trident",
+  browser: "Internet Explorer 4.0",
+  platforms: "Win 95+",
+  version: "4",
+  grade: "X"
+},{
+  engine: "Trident",
+  browser: "Internet Explorer 5.0",
+  platforms: "Win 95+",
+  version: "5",
+  grade: "C"
+}, {
+  engine: "Trident",
+  browser: "Internet Explorer 5.5",
+  platforms: "Win 95+",
+  version: "5.5",
+  grade: "A"
+}, {
+  engine: "Trident",
+  browser: "Internet Explorer 6",
+  platforms: "Win 98+",
+  version: "6",
+  grade: "A"
+}, {
+  engine: "Trident",
+  browser: "Internet Explorer 7",
+  platforms: "Win XP SP2+",
+  version: "7",
+  grade: "A"
+}, {
+  engine: "Trident",
+  browser: "AOL browser (AOL desktop)",
+  platforms: "Win XP",
+  version: "6",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 1.0",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 1.5",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 2.0",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 3.0",
+  platforms: "Win 2k+ / OSX.3+",
+  version: "1.9",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Camino 1.0",
+  platforms: "OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Camino 1.5",
+  platforms: "OSX.3+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Netscape 7.2",
+  platforms: "Win 95+ / Mac OS 8.6-9.2",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Netscape Browser 8",
+  platforms: "Win 98SE+",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Netscape Navigator 9",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.0",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.1",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.1",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.2",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.2",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.3",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.3",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.4",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.4",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.5",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.5",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.6",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.6",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.7",
+  platforms: "Win 98+ / OSX.1+",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.8",
+  platforms: "Win 98+ / OSX.1+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Seamonkey 1.1",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Epiphany 2.20",
+  platforms: "Gnome",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 1.2",
+  platforms: "OSX.3",
+  version: "125.5",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 1.3",
+  platforms: "OSX.3",
+  version: "312.8",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 2.0",
+  platforms: "OSX.4+",
+  version: "419.3",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 3.0",
+  platforms: "OSX.4+",
+  version: "522.1",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "OmniWeb 5.5",
+  platforms: "OSX.4+",
+  version: "420",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "iPod Touch / iPhone",
+  platforms: "iPod",
+  version: "420.1",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "S60",
+  platforms: "S60",
+  version: "413",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 7.0",
+  platforms: "Win 95+ / OSX.1+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 7.5",
+  platforms: "Win 95+ / OSX.2+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 8.0",
+  platforms: "Win 95+ / OSX.2+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 8.5",
+  platforms: "Win 95+ / OSX.2+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 9.0",
+  platforms: "Win 95+ / OSX.3+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 9.2",
+  platforms: "Win 88+ / OSX.3+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 9.5",
+  platforms: "Win 88+ / OSX.3+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera for Wii",
+  platforms: "Wii",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Nokia N800",
+  platforms: "N800",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Nintendo DS browser",
+  platforms: "Nintendo DS",
+  version: "8.5",
+  grade: "C/A<sup>1</sup>"
+}, {
+  engine: "KHTML",
+  browser: "Konqureror 3.1",
+  platforms: "KDE 3.1",
+  version: "3.1",
+  grade: "C"
+}, {
+  engine: "KHTML",
+  browser: "Konqureror 3.3",
+  platforms: "KDE 3.3",
+  version: "3.3",
+  grade: "A"
+}, {
+  engine: "KHTML",
+  browser: "Konqureror 3.5",
+  platforms: "KDE 3.5",
+  version: "3.5",
+  grade: "A"
+}, {
+  engine: "Tasman",
+  browser: "Internet Explorer 4.5",
+  platforms: "Mac OS 8-9",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Tasman",
+  browser: "Internet Explorer 5.1",
+  platforms: "Mac OS 7.6-9",
+  version: "1",
+  grade: "C"
+}, {
+  engine: "Tasman",
+  browser: "Internet Explorer 5.2",
+  platforms: "Mac OS 8-X",
+  version: "1",
+  grade: "C"
+}, {
+  engine: "Misc",
+  browser: "NetFront 3.1",
+  platforms: "Embedded devices",
+  version: "-",
+  grade: "C"
+}, {
+  engine: "Misc",
+  browser: "NetFront 3.4",
+  platforms: "Embedded devices",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Misc",
+  browser: "Dillo 0.8",
+  platforms: "Embedded devices",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Misc",
+  browser: "Links",
+  platforms: "Text only",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Misc",
+  browser: "Lynx",
+  platforms: "Text only",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Misc",
+  browser: "IE Mobile",
+  platforms: "Windows Mobile 6",
+  version: "-",
+  grade: "C"
+}, {
+  engine: "Misc",
+  browser: "PSP browser",
+  platforms: "PSP",
+  version: "-",
+  grade: "C"
+}, {
+  engine: "Other browsers",
+  browser: "All others",
+  platforms: "-",
+  version: "-",
+  grade: "U"
+}];
+
+// DataTable Config
+$("#table1").DataTable({
+  columns: [
+    { data: null,
+      className: "table-view-pf-select",
+      render: function (data, type, full, meta) {
+        // Select row checkbox renderer
+        var id = "select" + meta.row;
+        return '<label class="sr-only" for="' + id + '">Select row ' + meta.row +
+          '</label><input type="checkbox" id="' + id + '" name="' + id + '">';
+      },
+      sortable: false
+    },
+    { data: "engine" },
+    { data: "browser" },
+    { data: "platforms" },
+    { data: "version" },
+    { data: "grade"},
+    { data: null,
+      className: "table-view-pf-actions",
+      render: function (data, type, full, meta) {
+        // Inline action button renderer
+        return '<div class="table-view-pf-btn"><button class="btn btn-default" type="button">Actions</button></div>';
+      }
+    }, {
+      data: null,
+      className: "table-view-pf-actions",
+      render: function (data, type, full, meta) {
+        // Inline action kebab renderer
+        return '<div class="dropdown dropdown-kebab-pf">' +
+          '<button class="btn btn-default dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">' +
+          '<span class="fa fa-ellipsis-v"></span></button>' +
+          '<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight">' +
+          '<li><a href="#">Action</a></li>' +
+          '<li><a href="#">Another action</a></li>' +
+          '<li><a href="#">Something else here</a></li>' +
+          '<li role="separator" class="divider"></li>' +
+          '<li><a href="#">Separated link</a></li></ul></div>';
+      }
+    }
+  ],
+  data: dataSet,
+  dom: "t",
+  language: {
+    zeroRecords: "No records found"
+  },
+  order: [[ 1, 'asc' ]],
+  pfConfig: {
+    emptyStateSelector: "#emptyState1",
+    filterCaseInsensitive: true,
+    filterCols: [
+      null,
+      {
+        default: true,
+        optionSelector: "#filter1",
+        placeholder: "Filter By Rendering Engine..."
+      }, {
+        optionSelector: "#filter2",
+        placeholder: "Filter By Browser..."
+      }, {
+        optionSelector: "#filter3",
+        placeholder: "Filter By Platform(s)..."
+      }, {
+        optionSelector: "#filter4",
+        placeholder: "Filter By Engine Version..."
+      }, {
+        optionSelector: "#filter5",
+        placeholder: "Filter By CSS Grade..."
+      }
+    ],
+    paginationSelector: "#pagination1",
+    toolbarSelector: "#toolbar1",
+    selectAllSelector: 'th:first-child input[type="checkbox"]',
+    colvisMenuSelector: '.table-view-pf-colvis-menu'
+  },
+  select: {
+    selector: 'td:first-child input[type="checkbox"]',
+    style: 'multi'
+  },
+});
+
+/**
+ * Utility to show empty Table View
+ *
+ * @param {object} config - Config properties associated with a Table View
+ * @param {object} config.data - Data set for DataTable
+ * @param {string} config.deleteRowsSelector - Selector for delete rows control
+ * @param {string} config.restoreRowsSelector - Selector for restore rows control
+ * @param {string} config.tableSelector - Selector for the HTML table
+ */
+var emptyTableViewUtil = function (config) {
+  var self = this;
+
+  this.dt = $(config.tableSelector).DataTable(); // DataTable
+  this.deleteRows = $(config.deleteRowsSelector); // Delete rows control
+  this.restoreRows = $(config.restoreRowsSelector); // Restore rows control
+
+  // Handle click on delete rows control
+  this.deleteRows.on('click', function() {
+    self.dt.clear().draw();
+    $(self.restoreRows).prop("disabled", false);
+  });
+
+  // Handle click on restore rows control
+  this.restoreRows.on('click', function() {
+    self.dt.rows.add(config.data).draw();
+    $(this).prop("disabled", true);
+  });
+
+  // Initialize restore rows
+  if (this.dt.data().length === 0) {
+    $(this.restoreRows).prop("disabled", false);
+  }
+};
+
+// Initialize empty Table View util
+new emptyTableViewUtil({
+  data: dataSet,
+  deleteRowsSelector: "#deleteRows1",
+  restoreRowsSelector: "#restoreRows1",
+  tableSelector: "#table1"
+});
+
+/**
+ * Utility to find items in Table View
+ */
+var findTableViewUtil = function (config) {
+  // Upon clicking the find button, show the find dropdown content
+  $(".btn-find").click(function () {
+    $(this).parent().find(".find-pf-dropdown-container").toggle();
+  });
+
+  // Upon clicking the find close button, hide the find dropdown content
+  $(".btn-find-close").click(function () {
+    $(".find-pf-dropdown-container").hide();
+  });
+};
+
+// Initialize find util
+new findTableViewUtil();
+
+});
+</script>
+
+
+          <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eget eros tincidunt, semper ante nec, dapibus ante.</p>
+        </div><!-- /col -->
+      </div><!-- /row -->
+    </div><!-- /container -->
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/blank-slate.html b/themes/src/main/node_modules/rcue/tests/blank-slate.html
new file mode 100644
index 0000000..d04b727
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/blank-slate.html
@@ -0,0 +1,82 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Blank Slate - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Blank Slate</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <h2>Empty Blank Slate</h2>
+      <div class="blank-slate-pf">
+        <h1>Empty State Title</h1>
+        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
+        <p>Learn more about this <a href="#">on the documentation</a>.</p>
+        <div class="blank-slate-pf-main-action">
+          <button class="btn btn-primary btn-lg">
+            Main Action
+          </button>
+        </div>
+      </div>
+      <hr>
+      <h2>Empty Slate with icon and secondary actions</h2>
+<div class="blank-slate-pf " id="">
+  <div class="blank-slate-pf-icon">
+    <span class="pficon pficon pficon-add-circle-o"></span>
+  </div>
+  <h1>
+    Empty State Title
+  </h1>
+  <p>
+    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
+  </p>
+  <p>
+    Learn more about this <a href="#">on the documentation</a>.
+  </p>
+  <div class="blank-slate-pf-main-action">
+    <button class="btn btn-primary btn-lg"> Main Action </button>
+  </div>
+  <div class="blank-slate-pf-secondary-action">
+    <button class="btn btn-default">Secondary Action</button>
+    <button class="btn btn-default">Secondary Action</button>
+  </div>
+</div>
+
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/bootstrap-combobox.html b/themes/src/main/node_modules/rcue/tests/bootstrap-combobox.html
new file mode 100644
index 0000000..134bbd5
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/bootstrap-combobox.html
@@ -0,0 +1,344 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Bootstrap-Combobox - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="//rawgit.com/danielfarrell/bootstrap-combobox/1.1.7/js/bootstrap-combobox.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Bootstrap-Combobox</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="https://github.com/danielfarrell/bootstrap-combobox">https://github.com/danielfarrell/bootstrap-combobox</a>.
+      </div>
+      <hr>
+      <div class="form-group">
+        <label>State</label>
+        <select class="combobox form-control">
+          <option value="" selected="selected">Select a State</option>
+          <option value="AL">Alabama</option>
+          <option value="AK">Alaska</option>
+          <option value="AZ">Arizona</option>
+          <option value="AR">Arkansas</option>
+          <option value="CA">California</option>
+          <option value="CO">Colorado</option>
+          <option value="CT">Connecticut</option>
+          <option value="DE">Delaware</option>
+          <option value="DC">District Of Columbia</option>
+          <option value="FL">Florida</option>
+          <option value="GA">Georgia</option>
+          <option value="HI">Hawaii</option>
+          <option value="ID">Idaho</option>
+          <option value="IL">Illinois</option>
+          <option value="IN">Indiana</option>
+          <option value="IA">Iowa</option>
+          <option value="KS">Kansas</option>
+          <option value="KY">Kentucky</option>
+          <option value="LA">Louisiana</option>
+          <option value="ME">Maine</option>
+          <option value="MD">Maryland</option>
+          <option value="MA">Massachusetts</option>
+          <option value="MI">Michigan</option>
+          <option value="MN">Minnesota</option>
+          <option value="MS">Mississippi</option>
+          <option value="MO">Missouri</option>
+          <option value="MT">Montana</option>
+          <option value="NE">Nebraska</option>
+          <option value="NV">Nevada</option>
+          <option value="NH">New Hampshire</option>
+          <option value="NJ">New Jersey</option>
+          <option value="NM">New Mexico</option>
+          <option value="NY">New York</option>
+          <option value="NC">North Carolina</option>
+          <option value="ND">North Dakota</option>
+          <option value="OH">Ohio</option>
+          <option value="OK">Oklahoma</option>
+          <option value="OR">Oregon</option>
+          <option value="PA">Pennsylvania</option>
+          <option value="RI">Rhode Island</option>
+          <option value="SC">South Carolina</option>
+          <option value="SD">South Dakota</option>
+          <option value="TN">Tennessee</option>
+          <option value="TX">Texas</option>
+          <option value="UT">Utah</option>
+          <option value="VT">Vermont</option>
+          <option value="VA">Virginia</option>
+          <option value="WA">Washington</option>
+          <option value="WV">West Virginia</option>
+          <option value="WI">Wisconsin</option>
+          <option value="WY">Wyoming</option>
+        </select>
+      </div>
+      <h2>Sizes</h2>
+      <div class="form-group">
+        <label>State</label>
+        <select class="combobox form-control input-lg">
+          <option value="" selected="selected">Select a State</option>
+          <option value="AL">Alabama</option>
+          <option value="AK">Alaska</option>
+          <option value="AZ">Arizona</option>
+          <option value="AR">Arkansas</option>
+          <option value="CA">California</option>
+          <option value="CO">Colorado</option>
+          <option value="CT">Connecticut</option>
+          <option value="DE">Delaware</option>
+          <option value="DC">District Of Columbia</option>
+          <option value="FL">Florida</option>
+          <option value="GA">Georgia</option>
+          <option value="HI">Hawaii</option>
+          <option value="ID">Idaho</option>
+          <option value="IL">Illinois</option>
+          <option value="IN">Indiana</option>
+          <option value="IA">Iowa</option>
+          <option value="KS">Kansas</option>
+          <option value="KY">Kentucky</option>
+          <option value="LA">Louisiana</option>
+          <option value="ME">Maine</option>
+          <option value="MD">Maryland</option>
+          <option value="MA">Massachusetts</option>
+          <option value="MI">Michigan</option>
+          <option value="MN">Minnesota</option>
+          <option value="MS">Mississippi</option>
+          <option value="MO">Missouri</option>
+          <option value="MT">Montana</option>
+          <option value="NE">Nebraska</option>
+          <option value="NV">Nevada</option>
+          <option value="NH">New Hampshire</option>
+          <option value="NJ">New Jersey</option>
+          <option value="NM">New Mexico</option>
+          <option value="NY">New York</option>
+          <option value="NC">North Carolina</option>
+          <option value="ND">North Dakota</option>
+          <option value="OH">Ohio</option>
+          <option value="OK">Oklahoma</option>
+          <option value="OR">Oregon</option>
+          <option value="PA">Pennsylvania</option>
+          <option value="RI">Rhode Island</option>
+          <option value="SC">South Carolina</option>
+          <option value="SD">South Dakota</option>
+          <option value="TN">Tennessee</option>
+          <option value="TX">Texas</option>
+          <option value="UT">Utah</option>
+          <option value="VT">Vermont</option>
+          <option value="VA">Virginia</option>
+          <option value="WA">Washington</option>
+          <option value="WV">West Virginia</option>
+          <option value="WI">Wisconsin</option>
+          <option value="WY">Wyoming</option>
+        </select>
+      </div>
+      <div class="form-group">
+        <label>State</label>
+        <select class="combobox form-control input-sm">
+          <option value="" selected="selected">Select a State</option>
+          <option value="AL">Alabama</option>
+          <option value="AK">Alaska</option>
+          <option value="AZ">Arizona</option>
+          <option value="AR">Arkansas</option>
+          <option value="CA">California</option>
+          <option value="CO">Colorado</option>
+          <option value="CT">Connecticut</option>
+          <option value="DE">Delaware</option>
+          <option value="DC">District Of Columbia</option>
+          <option value="FL">Florida</option>
+          <option value="GA">Georgia</option>
+          <option value="HI">Hawaii</option>
+          <option value="ID">Idaho</option>
+          <option value="IL">Illinois</option>
+          <option value="IN">Indiana</option>
+          <option value="IA">Iowa</option>
+          <option value="KS">Kansas</option>
+          <option value="KY">Kentucky</option>
+          <option value="LA">Louisiana</option>
+          <option value="ME">Maine</option>
+          <option value="MD">Maryland</option>
+          <option value="MA">Massachusetts</option>
+          <option value="MI">Michigan</option>
+          <option value="MN">Minnesota</option>
+          <option value="MS">Mississippi</option>
+          <option value="MO">Missouri</option>
+          <option value="MT">Montana</option>
+          <option value="NE">Nebraska</option>
+          <option value="NV">Nevada</option>
+          <option value="NH">New Hampshire</option>
+          <option value="NJ">New Jersey</option>
+          <option value="NM">New Mexico</option>
+          <option value="NY">New York</option>
+          <option value="NC">North Carolina</option>
+          <option value="ND">North Dakota</option>
+          <option value="OH">Ohio</option>
+          <option value="OK">Oklahoma</option>
+          <option value="OR">Oregon</option>
+          <option value="PA">Pennsylvania</option>
+          <option value="RI">Rhode Island</option>
+          <option value="SC">South Carolina</option>
+          <option value="SD">South Dakota</option>
+          <option value="TN">Tennessee</option>
+          <option value="TX">Texas</option>
+          <option value="UT">Utah</option>
+          <option value="VT">Vermont</option>
+          <option value="VA">Virginia</option>
+          <option value="WA">Washington</option>
+          <option value="WV">West Virginia</option>
+          <option value="WI">Wisconsin</option>
+          <option value="WY">Wyoming</option>
+        </select>
+      </div>
+      <h2>Horizontal Form</h2>
+      <form class="form-horizontal">
+        <div class="form-group">
+          <label class="control-label col-sm-2">State</label>
+          <div class="col-sm-10">
+            <select class="combobox form-control" name="horizontal" required="required">
+              <option value="" selected="selected">Select a State</option>
+              <option value="AL">Alabama</option>
+              <option value="AK">Alaska</option>
+              <option value="AZ">Arizona</option>
+              <option value="AR">Arkansas</option>
+              <option value="CA">California</option>
+              <option value="CO">Colorado</option>
+              <option value="CT">Connecticut</option>
+              <option value="DE">Delaware</option>
+              <option value="DC">District Of Columbia</option>
+              <option value="FL">Florida</option>
+              <option value="GA">Georgia</option>
+              <option value="HI">Hawaii</option>
+              <option value="ID">Idaho</option>
+              <option value="IL">Illinois</option>
+              <option value="IN">Indiana</option>
+              <option value="IA">Iowa</option>
+              <option value="KS">Kansas</option>
+              <option value="KY">Kentucky</option>
+              <option value="LA">Louisiana</option>
+              <option value="ME">Maine</option>
+              <option value="MD">Maryland</option>
+              <option value="MA">Massachusetts</option>
+              <option value="MI">Michigan</option>
+              <option value="MN">Minnesota</option>
+              <option value="MS">Mississippi</option>
+              <option value="MO">Missouri</option>
+              <option value="MT">Montana</option>
+              <option value="NE">Nebraska</option>
+              <option value="NV">Nevada</option>
+              <option value="NH">New Hampshire</option>
+              <option value="NJ">New Jersey</option>
+              <option value="NM">New Mexico</option>
+              <option value="NY">New York</option>
+              <option value="NC">North Carolina</option>
+              <option value="ND">North Dakota</option>
+              <option value="OH">Ohio</option>
+              <option value="OK">Oklahoma</option>
+              <option value="OR">Oregon</option>
+              <option value="PA">Pennsylvania</option>
+              <option value="RI">Rhode Island</option>
+              <option value="SC">South Carolina</option>
+              <option value="SD">South Dakota</option>
+              <option value="TN">Tennessee</option>
+              <option value="TX">Texas</option>
+              <option value="UT">Utah</option>
+              <option value="VT">Vermont</option>
+              <option value="VA">Virginia</option>
+              <option value="WA">Washington</option>
+              <option value="WV">West Virginia</option>
+              <option value="WI">Wisconsin</option>
+              <option value="WY">Wyoming</option>
+            </select>
+          </div>
+        </div>
+      </form>
+      <h2>Inline Form</h2>
+      <form class="form-inline">
+        <div class="form-group">
+          <select class="combobox form-control" name="inline">
+            <option value="" selected="selected">Select a State</option>
+            <option value="AL">Alabama</option>
+            <option value="AK">Alaska</option>
+            <option value="AZ">Arizona</option>
+            <option value="AR">Arkansas</option>
+            <option value="CA">California</option>
+            <option value="CO">Colorado</option>
+            <option value="CT">Connecticut</option>
+            <option value="DE">Delaware</option>
+            <option value="DC">District Of Columbia</option>
+            <option value="FL">Florida</option>
+            <option value="GA">Georgia</option>
+            <option value="HI">Hawaii</option>
+            <option value="ID">Idaho</option>
+            <option value="IL">Illinois</option>
+            <option value="IN">Indiana</option>
+            <option value="IA">Iowa</option>
+            <option value="KS">Kansas</option>
+            <option value="KY">Kentucky</option>
+            <option value="LA">Louisiana</option>
+            <option value="ME">Maine</option>
+            <option value="MD">Maryland</option>
+            <option value="MA">Massachusetts</option>
+            <option value="MI">Michigan</option>
+            <option value="MN">Minnesota</option>
+            <option value="MS">Mississippi</option>
+            <option value="MO">Missouri</option>
+            <option value="MT">Montana</option>
+            <option value="NE">Nebraska</option>
+            <option value="NV">Nevada</option>
+            <option value="NH">New Hampshire</option>
+            <option value="NJ">New Jersey</option>
+            <option value="NM">New Mexico</option>
+            <option value="NY">New York</option>
+            <option value="NC">North Carolina</option>
+            <option value="ND">North Dakota</option>
+            <option value="OH">Ohio</option>
+            <option value="OK">Oklahoma</option>
+            <option value="OR">Oregon</option>
+            <option value="PA">Pennsylvania</option>
+            <option value="RI">Rhode Island</option>
+            <option value="SC">South Carolina</option>
+            <option value="SD">South Dakota</option>
+            <option value="TN">Tennessee</option>
+            <option value="TX">Texas</option>
+            <option value="UT">Utah</option>
+            <option value="VT">Vermont</option>
+            <option value="VA">Virginia</option>
+            <option value="WA">Washington</option>
+            <option value="WV">West Virginia</option>
+            <option value="WI">Wisconsin</option>
+            <option value="WY">Wyoming</option>
+          </select>
+        </div>
+      </form>
+      <script>
+        // Initialize Boostrap-Combobox
+        $('.combobox').combobox();
+      </script>
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/bootstrap-datepicker.html b/themes/src/main/node_modules/rcue/tests/bootstrap-datepicker.html
new file mode 100644
index 0000000..d227a91
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/bootstrap-datepicker.html
@@ -0,0 +1,148 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Bootstrap-Datepicker - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.6.4/js/bootstrap-datepicker.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Bootstrap-Datepicker</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://bootstrap-datepicker.readthedocs.org/en/latest/">http://bootstrap-datepicker.readthedocs.org/en/latest/</a>.
+      </div>
+      <hr>
+      <h2>Readonly Inputs</h2>
+      <p><span class="text-success">Recommended.</span>  To prevent invalid dates, setting the inputs to readonly only allows a date to be input via the date picker widget.</p>
+      <h3>Text Input</h3>
+        <input id="datepicker1" type="text" class="form-control bootstrap-datepicker" readonly>
+<script>
+  $('#datepicker1').datepicker({
+    autoclose: true,
+    orientation: "top auto",
+    todayBtn: "linked",
+    todayHighlight: true
+  });
+</script>
+
+      <h3>Component</h3>
+        <div id="datepicker2" class="input-group date">
+  <input type="text" class="form-control bootstrap-datepicker" readonly><span class="input-group-addon"><span class="fa fa-calendar"></span></span>
+</div>
+<script>
+  $('#datepicker2').datepicker({
+    autoclose: true,
+    orientation: "top auto",
+    todayBtn: "linked",
+    todayHighlight: true
+  });
+</script>
+
+      <h3>Inline</h3>
+        <div id="datepicker3" class="bootstrap-datepicker-inline"></div>
+<script>
+  $('#datepicker3').datepicker({
+    autoclose: true,
+    orientation: "top auto",
+    todayBtn: "linked",
+    todayHighlight: true
+  });
+</script>
+
+      <h3>Range <small>Do not use.  PatternFly-approved design coming in a future update.</small></h3>
+      <div class="input-daterange input-group">
+        <input type="text" class="form-control bootstrap-datepicker" name="start" readonly>
+        <span class="input-group-addon">to</span>
+        <input type="text" class="form-control bootstrap-datepicker" name="end" readonly>
+      </div>
+      <h3>Validation States</h3>
+      <div class="form-group has-success">
+        <label class="control-label" for="boostrap-datepicker-success-readonly">With success</label>
+        <input type="text" class="form-control bootstrap-datepicker input-datepicker" id="boostrap-datepicker-success-readonly" readonly>
+      </div>
+      <div class="form-group has-warning">
+        <label class="control-label" for="boostrap-datepicker-warning-readonly">With warning</label>
+        <input type="text" class="form-control bootstrap-datepicker input-datepicker" id="boostrap-datepicker-warning-readonly" readonly>
+      </div>
+      <div class="form-group has-error">
+        <label class="control-label" for="boostrap-datepicker-error-readonly">With error</label>
+        <input type="text" class="form-control bootstrap-datepicker input-datepicker" id="boostrap-datepicker-error-readonly" readonly>
+      </div>
+      <hr>
+      <h2>Normal Inputs</h2>
+      <p><span class="text-warning">Not recommended.</span>  For comparison only.</p>
+      <h3>Text Input</h3>
+      <input type="text" class="form-control bootstrap-datepicker input-datepicker">
+      <h3>Component</h3>
+      <div class="input-group date">
+        <input type="text" class="form-control bootstrap-datepicker"><span class="input-group-addon"><span class="fa fa-calendar"></span></span>
+      </div>
+      <h3>Inline</h3>
+      <div class="bootstrap-datepicker-inline"></div>
+      <h3>Range <small>Do not use.  PatternFly-approved design coming in a future update.</small></h3>
+      <div class="input-daterange input-group">
+        <input type="text" class="form-control bootstrap-datepicker" name="start">
+        <span class="input-group-addon">to</span>
+        <input type="text" class="form-control bootstrap-datepicker" name="end">
+      </div>
+      <h3>Validation States</h3>
+      <div class="form-group has-success">
+        <label class="control-label" for="boostrap-datepicker-success">With success</label>
+        <input type="text" class="form-control bootstrap-datepicker input-datepicker" id="boostrap-datepicker-success">
+      </div>
+      <div class="form-group has-warning">
+        <label class="control-label" for="boostrap-datepicker-warning">With warning</label>
+        <input type="text" class="form-control bootstrap-datepicker input-datepicker" id="boostrap-datepicker-warning">
+      </div>
+      <div class="form-group has-error">
+        <label class="control-label" for="boostrap-datepicker-error">With error</label>
+        <input type="text" class="form-control bootstrap-datepicker input-datepicker" id="boostrap-datepicker-error">
+      </div>
+      <script>
+        // Initialize Boostrap-Datepicker
+        $('.input-datepicker, .input-group.date, .bootstrap-datepicker-inline').datepicker({
+          autoclose: true,
+          orientation: "top auto",
+          todayBtn: "linked",
+          todayHighlight: true
+        });
+        $('.input-daterange').datepicker({
+          autoclose: true,
+          todayBtn: "linked",
+          todayHighlight: true
+        });
+      </script>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/bootstrap-select.html b/themes/src/main/node_modules/rcue/tests/bootstrap-select.html
new file mode 100644
index 0000000..19cbfe1
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/bootstrap-select.html
@@ -0,0 +1,213 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Bootstrap-Select - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Bootstrap-Select</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://silviomoreto.github.io/bootstrap-select/">http://silviomoreto.github.io/bootstrap-select/</a>.
+      </div>
+      <hr>
+      <h3>Single-Select Dropdown</h3>
+      <div class="form-group">
+        <select class="selectpicker form-control">
+          <option>Mustard</option>
+          <option>Ketchup</option>
+          <option>Relish</option>
+          <option>Onions</option>
+          <option>Mushrooms</option>
+          <option>Pickles</option>
+          <option>Mayonnaise</option>
+          <option data-divider="true"></option>
+          <option data-subtext="Hot">Tabasco</option>
+          <option data-subtext="Hotter" disabled>Sriracha</option>
+          <option data-subtext="Hottest">Wasabi</option>
+        </select>
+      </div>
+      <h3>Disabled</h3>
+      <div class="form-group">
+        <select class="selectpicker form-control" disabled>
+          <option>Mustard</option>
+          <option>Ketchup</option>
+          <option>Relish</option>
+          <option>Onions</option>
+          <option>Mushrooms</option>
+          <option>Pickles</option>
+          <option>Mayonnaise</option>
+          <option data-divider="true"></option>
+          <option data-subtext="Hot">Tabasco</option>
+          <option data-subtext="Hotter" disabled>Sriracha</option>
+          <option data-subtext="Hottest">Wasabi</option>
+        </select>
+      </div>
+      <h3>Option Groups</h3>
+      <div class="form-group">
+        <select class="selectpicker form-control">
+          <optgroup label="Picnic">
+            <option>Mustard</option>
+            <option>Ketchup</option>
+            <option>Relish</option>
+            <option>Onions</option>
+            <option>Mushrooms</option>
+            <option>Pickles</option>
+            <option>Mayonnaise</option>
+            <option data-subtext="Hot">Tabasco</option>
+            <option data-subtext="Hotter" disabled>Sriracha</option>
+            <option data-subtext="Hottest">Wasabi</option>
+          </optgroup>
+          <optgroup label="Camping">
+            <option>Tent</option>
+            <option>Flashlight</option>
+            <option>Toilet Paper</option>
+            <option>Sleeping Bag</option>
+          </optgroup>
+      </select>
+      </div>
+      <h3>Multiple Select</h3>
+      <div class="form-group">
+        <select class="selectpicker form-control" multiple data-selected-text-format="count>3">
+          <option>Mustard</option>
+          <option>Ketchup</option>
+          <option>Relish</option>
+          <option>Onions</option>
+          <option>Mushrooms</option>
+          <option>Pickles</option>
+          <option>Mayonnaise</option>
+          <option data-divider="true"></option>
+          <option data-subtext="Hot">Tabasco</option>
+          <option data-subtext="Hotter" disabled>Sriracha</option>
+          <option data-subtext="Hottest">Wasabi</option>
+        </select>
+      </div>
+      <h3>Data Live Search</h3>
+      <div class="form-group">
+        <select class="selectpicker form-control" data-live-search="true">
+          <option>Mustard</option>
+          <option>Ketchup</option>
+          <option>Relish</option>
+          <option>Onions</option>
+          <option>Mushrooms</option>
+          <option>Pickles</option>
+          <option>Mayonnaise</option>
+          <option data-divider="true"></option>
+          <option data-subtext="Hot">Tabasco</option>
+          <option data-subtext="Hotter" disabled>Sriracha</option>
+          <option data-subtext="Hottest">Wasabi</option>
+        </select>
+      </div>
+      <h3>Icons</h3>
+      <div class="form-group">
+        <select class="selectpicker form-control">
+          <option data-icon="glyphicon-headphones">Mustard</option>
+          <option data-icon="glyphicon-tint">Ketchup</option>
+          <option data-icon="glyphicon-tree-conifer">Relish</option>
+        </select>
+      </div>
+      <h3>With Help Text</h3>
+      <div class="form-group">
+        <label class="control-label" for="bootstrap-selectHelp">Bootstrap-Select with help text</label>
+        <select class="selectpicker form-control" id="bootstrap-selectHelp">
+          <option>Mustard</option>
+          <option>Ketchup</option>
+          <option>Relish</option>
+          <option>Onions</option>
+          <option>Mushrooms</option>
+          <option>Pickles</option>
+          <option>Mayonnaise</option>
+          <option data-divider="true"></option>
+          <option data-subtext="Hot">Tabasco</option>
+          <option data-subtext="Hotter" disabled>Sriracha</option>
+          <option data-subtext="Hottest">Wasabi</option>
+        </select>
+        <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>
+      </div>
+      <h3>Validation States</h3>
+      <div class="form-group has-success">
+        <label class="control-label" for="bootstrap-selectSuccess">Bootstrap-Select with success</label>
+        <select class="selectpicker form-control" id="bootstrap-selectSuccess">
+          <option>Mustard</option>
+          <option>Ketchup</option>
+          <option>Relish</option>
+          <option>Onions</option>
+          <option>Mushrooms</option>
+          <option>Pickles</option>
+          <option>Mayonnaise</option>
+          <option data-divider="true"></option>
+          <option data-subtext="Hot">Tabasco</option>
+          <option data-subtext="Hotter" disabled>Sriracha</option>
+          <option data-subtext="Hottest">Wasabi</option>
+        </select>
+        <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>
+      </div>
+      <div class="form-group has-warning">
+        <label class="control-label" for="bootstrap-selectWarning">Bootstrap-Select with warning</label>
+        <select class="selectpicker form-control" id="bootstrap-selectWarning">
+          <option>Mustard</option>
+          <option>Ketchup</option>
+          <option>Relish</option>
+          <option>Onions</option>
+          <option>Mushrooms</option>
+          <option>Pickles</option>
+          <option>Mayonnaise</option>
+          <option data-divider="true"></option>
+          <option data-subtext="Hot">Tabasco</option>
+          <option data-subtext="Hotter" disabled>Sriracha</option>
+          <option data-subtext="Hottest">Wasabi</option>
+        </select>
+        <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>
+      </div>
+      <div class="form-group has-error">
+        <label class="control-label" for="bootstrap-selectError">Bootstrap-Select with error</label>
+        <select class="selectpicker form-control" id="bootstrap-selectError">
+          <option>Mustard</option>
+          <option>Ketchup</option>
+          <option>Relish</option>
+          <option>Onions</option>
+          <option>Mushrooms</option>
+          <option>Pickles</option>
+          <option>Mayonnaise</option>
+          <option data-divider="true"></option>
+          <option data-subtext="Hot">Tabasco</option>
+          <option data-subtext="Hotter" disabled>Sriracha</option>
+          <option data-subtext="Hottest">Wasabi</option>
+        </select>
+        <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>
+      </div>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/bootstrap-slider.html b/themes/src/main/node_modules/rcue/tests/bootstrap-slider.html
new file mode 100644
index 0000000..279cc70
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/bootstrap-slider.html
@@ -0,0 +1,193 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Bootstrap Slider - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-slider/9.9.0/bootstrap-slider.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Bootstrap Slider</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://seiyria.com/bootstrap-slider/">http://seiyria.com/bootstrap-slider/</a>.
+      </div>
+      <hr>
+<input id="slider-one" type="text"
+data-provide="slider"
+data-slider-min="0"
+data-slider-max="100"
+data-slider-tooltip="show" />
+
+<br>
+<br>
+
+<input id="slider-two" type="text"
+data-provide="slider"
+data-slider-ticks="[1, 2, 3, 4, 5]"
+data-slider-ticks-labels='["1", "2", "3", "4", "5"]'
+data-slider-min="1"
+data-slider-max="5"
+data-slider-step="1"
+data-slider-value="3"
+data-slider-tooltip="show" />
+
+<h2>Example of a slider in a form</h2>
+<form class="form-horizontal" role="form">
+  <div class="form-group">
+    <label for="size" class="col-sm-2 control-label">Size</label>
+    <div class="col-sm-10">
+      <input id="slider" type="text"
+      data-provide="slider"
+      data-slider-ticks="[1, 2, 3, 4, 5]"
+      data-slider-ticks-labels='["1", "2", "3", "4", "5"]'
+      data-slider-min="1"
+      data-slider-max="5"
+      data-slider-step="1"
+      data-slider-value="3"
+      data-slider-tooltip="show" />
+    </div>
+  </div>
+  <div class="form-group">
+    <label for="name" class="col-sm-2 control-label">Name</label>
+    <div class="col-sm-10">
+      <input type="text" class="form-control" id="name">
+    </div>
+  </div>
+
+  <div class="form-group">
+    <label for="size" class="col-sm-2 control-label">Size</label>
+    <div class="col-sm-10">
+      <div class="slider-pf">
+        <b>0</b>
+        <input id="size" type="text"
+        data-provide="slider"
+        data-slider-min="0"
+        data-slider-max="100"
+        data-slider-tooltip="show" />
+        <b>100</b>
+        <input type="text" size="3" class="slider-input-pf">
+        <span>GB</span>
+      </div>
+    </div>
+  </div>
+
+  <div class="form-group">
+    <div class="col-sm-offset-2 col-sm-10">
+      <button type="submit" class="btn btn-default">Sign in</button>
+    </div>
+  </div>
+</form>
+
+<br>
+<br>
+
+<div class="slider-pf">
+  <b>0</b>
+  <input id="slider-pf" type="text"
+  data-provide="slider"
+  data-slider-min="0"
+  data-slider-max="100"
+  data-slider-tooltip="show" />
+  <b>100</b>
+  <input type="text" size="3" class="slider-input-pf">
+  <span>GB</span>
+</div>
+
+<br>
+<br>
+
+<div class="slider-pf">
+  <b>0</b>
+  <input id="with-stops" type="text"
+  data-provide="slider"
+  data-slider-min="0"
+  data-slider-max="100"
+  data-slider-tooltip="show" />
+  <b>100</b>
+  <input type="text" size="3" class="slider-input-pf">
+  <span class="dropdown">
+    <button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+      GB
+      <span class="caret"></span>
+    </button>
+    <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+      <li><a href="#">GB</a></li>
+      <li><a href="#">MB</a></li>
+    </ul>
+  </span>
+</div>
+<script>
+  $(function () {
+    $('.slider-input-pf').tooltip({ trigger: 'manual' })
+      .on('keyup', function (e) {
+        var $this = $(this);
+        var sd = $this.siblings('[data-provide=slider]').slider();
+        if ($this.val().trim() !== '' && !$.isNumeric(this.value)) {
+          this.value = sd.slider('getValue');
+        }
+      })
+      .on('keypress blur', function (e) {
+        if (e.which == 13 || e.type === 'blur') {
+          e.preventDefault();
+          var $this = $(this);
+          var sd = $this.siblings('[data-provide=slider]').slider();
+          var max = sd.slider('getAttribute', 'max');
+          var min = sd.slider('getAttribute', 'min');
+          if (!$.isNumeric(this.value) || (this.value > max || this.value < min)) {
+            var warningInfo = $.isNumeric(this.value) ? 'Valid value should be between ' + min
+              + ' and ' + max : 'Valid value should be number';
+            $this.attr('data-original-title', warningInfo).tooltip('show').addClass('warning');
+            this.value = sd.slider('getValue');
+            setTimeout(function(){ $this.tooltip('hide'); }, 3000);
+          } else {
+            if ($this.is('.warning')) {
+              $this.tooltip('hide');
+            }
+            this.value = $this.val().trim();
+            sd.slider('setValue', this.value);
+          }
+        }
+      })
+      .siblings('[data-provide=slider]').each(function () {
+        $(this).siblings('.slider-input-pf').val(this.value);
+        $(this).slider().on('slide', function (e) {
+          $(e.target).siblings('.slider-input-pf').val(e.value);
+        });
+      });
+  });
+</script>
+
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/bootstrap-switch.html b/themes/src/main/node_modules/rcue/tests/bootstrap-switch.html
new file mode 100644
index 0000000..d16abf0
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/bootstrap-switch.html
@@ -0,0 +1,267 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Bootstrap Switch - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="//rawgit.com/nostalgiaz/bootstrap-switch/v3.3.2/dist/js/bootstrap-switch.min.js"></script>
+    <script src="bootstrap-switch.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Bootstrap Switch</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://www.bootstrap-switch.org/">http://www.bootstrap-switch.org/</a>.
+      </div>
+      <hr>
+        <div class="row">
+          <div class="col-sm-6 col-lg-4">
+            <h2 class="h4">State</h2>
+            <p>
+              <input id="switch-state" type="checkbox" checked>
+            </p>
+            <div class="btn-group">
+              <button type="button" data-switch-toggle="state" class="btn btn-default">Toggle</button>
+              <button type="button" data-switch-set="state" data-switch-value="true" class="btn btn-default">Set true</button>
+              <button type="button" data-switch-set="state" data-switch-value="false" class="btn btn-default">Set false</button>
+              <button type="button" data-switch-get="state" class="btn btn-default">Get</button>
+            </div>
+          </div>
+          <div class="col-sm-6 col-lg-4">
+            <h2 class="h4">Size</h2>
+            <p>
+              <input id="switch-size" type="checkbox" checked data-size="mini">
+            </p>
+            <div class="btn-group">
+              <button type="button" data-switch-set="size" data-switch-value="mini" class="btn btn-default">Mini</button>
+              <button type="button" data-switch-set="size" data-switch-value="small" class="btn btn-default">Small</button>
+              <button type="button" data-switch-set="size" data-switch-value="normal" class="btn btn-default">Normal</button>
+              <button type="button" data-switch-set="size" data-switch-value="large" class="btn btn-default">Large</button>
+              <button type="button" data-switch-get="size" class="btn btn-default">Get</button>
+            </div>
+          </div>
+          <div class="col-sm-6 col-lg-4">
+            <h2 class="h4">Animate</h2>
+            <p>
+              <input id="switch-animate" type="checkbox" checked>
+            </p>
+            <p>
+              <button type="button" data-switch-toggle="animate" class="btn btn-default">Toggle</button>
+              <button type="button" data-switch-get="animate" class="btn btn-default">Get</button>
+            </p>
+          </div>
+          <div class="col-sm-6 col-lg-4">
+            <h2 class="h4">Disabled</h2>
+            <p>
+              <input id="switch-disabled" type="checkbox" checked disabled>
+            </p>
+            <p>
+              <button type="button" data-switch-toggle="disabled" class="btn btn-default">Toggle</button>
+              <button type="button" data-switch-get="disabled" class="btn btn-default">Get</button>
+            </p>
+          </div>
+          <div class="col-sm-6 col-lg-4">
+            <h2 class="h4">Readonly</h2>
+            <p>
+              <input id="switch-readonly" type="checkbox" checked readonly>
+            </p>
+            <p>
+              <button type="button" data-switch-toggle="readonly" class="btn btn-default">Toggle</button>
+              <button type="button" data-switch-get="readonly" class="btn btn-default">Get</button>
+            </p>
+          </div>
+          <div class="col-sm-6 col-lg-4">
+            <h2 class="h4">Indeterminate</h2>
+            <p>
+              <input id="switch-indeterminate" type="checkbox" checked data-indeterminate="true">
+            </p>
+            <p>
+              <button type="button" data-switch-toggle="indeterminate" class="btn btn-default">Toggle</button>
+              <button type="button" data-switch-get="indeterminate" class="btn btn-default">Get</button>
+            </p>
+          </div>
+          <div class="col-sm-6 col-lg-4">
+            <h2 class="h4">Inverse</h2>
+            <p>
+              <input id="switch-inverse" type="checkbox" checked data-inverse="true">
+            </p>
+            <p>
+              <button type="button" data-switch-toggle="inverse" class="btn btn-default">Toggle</button>
+              <button type="button" data-switch-get="inverse" class="btn btn-default">Get</button>
+            </p>
+          </div>
+          <div class="col-sm-6 col-lg-4">
+            <h2 class="h4">On Color</h2>
+            <p>
+              <input id="switch-onColor" type="checkbox" checked data-on-color="info">
+            </p>
+            <p class="btn-group">
+              <div class="btn-group">
+                <button type="button" data-toggle="dropdown" class="btn btn-default dropdown-toggle">Set &nbsp;<span class="caret"></span></button>
+                <div role="menu" class="dropdown-menu">
+                  <li><a data-switch-set="onColor" data-switch-value="primary">Primary</a></li>
+                  <li><a data-switch-set="onColor" data-switch-value="info">Info</a></li>
+                  <li><a data-switch-set="onColor" data-switch-value="success">Success</a></li>
+                  <li><a data-switch-set="onColor" data-switch-value="warning">Warning</a></li>
+                  <li><a data-switch-set="onColor" data-switch-value="default">Default</a></li>
+                </div>
+              </div>
+              <button type="button" data-switch-get="onColor" class="btn btn-default">Get</button>
+            </p>
+          </div>
+          <div class="col-sm-6 col-lg-4">
+            <h2 class="h4">Off Color</h2>
+            <p>
+              <input id="switch-offColor" type="checkbox" data-off-color="warning">
+            </p>
+            <p class="btn-group">
+              <div class="btn-group">
+                <button type="button" data-toggle="dropdown" class="btn btn-default dropdown-toggle">Set &nbsp;<span class="caret"></span></button>
+                <div role="menu" class="dropdown-menu">
+                  <li><a data-switch-set="offColor" data-switch-value="primary">Primary</a></li>
+                  <li><a data-switch-set="offColor" data-switch-value="info">Info</a></li>
+                  <li><a data-switch-set="offColor" data-switch-value="success">Success</a></li>
+                  <li><a data-switch-set="offColor" data-switch-value="warning">Warning</a></li>
+                  <li><a data-switch-set="offColor" data-switch-value="default">Default</a></li>
+                </div>
+              </div>
+              <button type="button" data-switch-get="offColor" class="btn btn-default">Get</button>
+            </p>
+          </div>
+          <div class="col-sm-6 col-lg-4">
+            <h2 class="h4">On Text</h2>
+            <p>
+              <input id="switch-onText" type="checkbox" checked data-on-text="Yes">
+            </p>
+            <div class="row">
+              <div class="col-sm-6">
+                <input type="text" data-switch-set-value="onText" value="Yes" class="form-control">
+              </div>
+            </div>
+          </div>
+          <div class="col-sm-6 col-lg-4">
+            <h2 class="h4">Off Text</h2>
+            <p>
+              <input id="switch-offText" type="checkbox" data-off-text="No">
+            </p>
+            <div class="row">
+              <div class="col-sm-6">
+                <input type="text" data-switch-set-value="offText" value="No" class="form-control">
+              </div>
+            </div>
+          </div>
+          <div class="col-sm-6 col-lg-4">
+            <h2 class="h4">Label Text</h2>
+            <p>
+              <input id="switch-labelText" type="checkbox" data-label-text="Label">
+            </p>
+            <div class="row">
+              <div class="col-sm-6">
+                <input type="text" data-switch-set-value="labelText" class="form-control">
+              </div>
+            </div>
+          </div>
+          <div class="col-sm-6 col-lg-4">
+            <h2 class="h4">Handle Width</h2>
+            <p>
+              <input id="switch-handleWidth" type="checkbox" data-handle-width="100">
+            </p>
+            <div class="row">
+              <div class="col-sm-6">
+                <input type="number" data-switch-set-value="handleWidth" value="100" class="form-control">
+              </div>
+            </div>
+          </div>
+          <div class="col-sm-6 col-lg-4">
+            <h2 class="h4">Label Width</h2>
+            <p>
+              <input id="switch-labelWidth" type="checkbox" data-label-width="100">
+            </p>
+            <div class="row">
+              <div class="col-sm-6">
+                <input type="number" data-switch-set-value="labelWidth" value="100" class="form-control">
+              </div>
+            </div>
+          </div>
+          <div class="col-sm-6 col-lg-4">
+            <h2 class="h4">Create | Destroy</h2>
+            <p>
+              <input id="switch-create-destroy" type="checkbox" checked data-switch-no-init>
+            </p>
+            <div class="row">
+              <div class="col-sm-6">
+                <button type="button" data-switch-create-destroy data-destroy-text="Destroy" class="btn btn-default">Create</button>
+              </div>
+            </div>
+          </div>
+        </div>
+        <div class="text-center">
+          <h2 class="h4">Radio All Off</h2>
+          <div class="row">
+            <div class="col-sm-6">
+              <h3 class="h5">Disabled</h3>
+              <input type="radio" name="radio1" checked class="switch-radio1">
+              <input type="radio" name="radio1" class="switch-radio1">
+              <input type="radio" name="radio1" class="switch-radio1">
+            </div>
+            <div class="col-sm-6">
+              <h3 class="h5">Enabled</h3>
+              <input type="radio" name="radio2" checked data-radio-all-off="true" class="switch-radio2">
+              <input type="radio" name="radio2" data-radio-all-off="true" class="switch-radio2">
+              <input type="radio" name="radio2" data-radio-all-off="true" class="switch-radio2">
+            </div>
+          </div><br>
+          <hr>
+          <h2 class="h4">Inside Modals</h2>
+          <button data-toggle="modal" data-target="#modal-switch" class="btn btn-default">Open Modal</button>
+          <div id="modal-switch" tabindex="-1" role="dialog" aria-labelledby="modal-switch-label" class="modal fade">
+            <div class="modal-dialog">
+              <div class="modal-content">
+                <div class="modal-header">
+                  <button type="button" data-dismiss="modal" class="close"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
+                  <div id="modal-switch-label" class="modal-title">Title</div>
+                </div>
+                <div class="modal-body">
+                  <input id="switch-modal" type="checkbox" checked>
+                </div>
+              </div>
+            </div>
+          </div>
+        </div>
+      <script>
+        // Initialize Boostrap Switch
+
+      </script>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/bootstrap-switch.js b/themes/src/main/node_modules/rcue/tests/bootstrap-switch.js
new file mode 100644
index 0000000..9d2c6bd
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/bootstrap-switch.js
@@ -0,0 +1,61 @@
+(function() {
+  var $confirm;
+
+  $confirm = null;
+
+  $(function() {
+    var $createDestroy, $window, sectionTop;
+    $window = $(window);
+    sectionTop = $(".top").outerHeight() + 20;
+    $createDestroy = $("#switch-create-destroy");
+    // hljs.initHighlightingOnLoad();
+    $("a[href*=\"#\"]").on("click", function(event) {
+      var $target;
+      event.preventDefault();
+      $target = $($(this).attr("href").slice("#"));
+      if ($target.length) {
+        return $window.scrollTop($target.offset().top - sectionTop);
+      }
+    });
+    $("input[type=\"checkbox\"], input[type=\"radio\"]").not("[data-switch-no-init]").bootstrapSwitch();
+    $("[data-switch-get]").on("click", function() {
+      var type;
+      type = $(this).data("switch-get");
+      return alert($("#switch-" + type).bootstrapSwitch(type));
+    });
+    $("[data-switch-set]").on("click", function() {
+      var type;
+      type = $(this).data("switch-set");
+      return $("#switch-" + type).bootstrapSwitch(type, $(this).data("switch-value"));
+    });
+    $("[data-switch-toggle]").on("click", function() {
+      var type;
+      type = $(this).data("switch-toggle");
+      return $("#switch-" + type).bootstrapSwitch("toggle" + type.charAt(0).toUpperCase() + type.slice(1));
+    });
+    $("[data-switch-set-value]").on("input", function(event) {
+      var type, value;
+      event.preventDefault();
+      type = $(this).data("switch-set-value");
+      value = $.trim($(this).val());
+      if ($(this).data("value") === value) {
+        return;
+      }
+      return $("#switch-" + type).bootstrapSwitch(type, value);
+    });
+    $("[data-switch-create-destroy]").on("click", function() {
+      var isSwitch;
+      isSwitch = $createDestroy.data("bootstrap-switch");
+      $createDestroy.bootstrapSwitch((isSwitch ? "destroy" : null));
+      return $(this).button((isSwitch ? "reset" : "destroy"));
+    });
+    return $confirm = $("#confirm").bootstrapSwitch({
+      size: "large",
+      onSwitchChange: function(event, state) {
+        event.preventDefault();
+        return console.log(state, event.isDefaultPrevented());
+      }
+    });
+  });
+
+}).call(this);
diff --git a/themes/src/main/node_modules/rcue/tests/bootstrap-touchspin.html b/themes/src/main/node_modules/rcue/tests/bootstrap-touchspin.html
new file mode 100644
index 0000000..39bec1d
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/bootstrap-touchspin.html
@@ -0,0 +1,210 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Bootstrap Touchspin - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="//rawgit.com/istvan-ujjmeszaros/bootstrap-touchspin/3.1.1/dist/jquery.bootstrap-touchspin.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Bootstrap Touchspin</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://www.virtuosoft.eu/code/bootstrap-touchspin/">http://www.virtuosoft.eu/code/bootstrap-touchspin/</a>.
+      </div>
+      <hr>
+      <h2>Example with postfix</h2>
+      <input id="demo1" type="text" value="55" name="demo1">
+      <script>
+        $("input[name='demo1']").TouchSpin({
+          min: 0,
+          max: 100,
+          step: 0.1,
+          decimals: 2,
+          boostat: 5,
+          maxboostedstep: 10,
+          postfix: '%'
+        });
+      </script>
+      <h2>With prefix</h2>
+      <form class="form-horizontal" role="form">
+        <div class="form-group">
+          <label for="demo2" class="col-md-3 control-label">Example:</label>
+          <div class="col-md-9">
+            <input id="demo2" type="text" value="0" name="demo2" class="col-md-8 form-control">
+          </div>
+        </div>
+      </form>
+      <script>
+        $("input[name='demo2']").TouchSpin({
+          min: -1000000000,
+          max: 1000000000,
+          stepinterval: 50,
+          maxboostedstep: 10000000,
+          prefix: '$'
+        });
+      </script>
+      <h2>Vertical button alignment</h2>
+      <input id="demo_vertical" type="text" value="" name="demo_vertical">
+      <script>
+        $("input[name='demo_vertical']").TouchSpin({
+          verticalbuttons: true
+        });
+      </script>
+      <h2>Vertical buttons with custom icons</h2>
+      <input id="demo_vertical2" type="text" value="" name="demo_vertical2">
+      <script>
+        $("input[name='demo_vertical2']").TouchSpin({
+          verticalbuttons: true,
+          verticalupclass: 'glyphicon glyphicon-plus',
+          verticaldownclass: 'glyphicon glyphicon-minus'
+        });
+      </script>
+      <h2>Init with empty value</h2>
+      <input id="demo3" type="text" value="" name="demo3">
+      <script>
+        $("input[name='demo3']").TouchSpin();
+      </script>
+      <h2>Value attribute is not set <small>(applying settings.initval)</small></h2>
+      <input id="demo3_21" type="text" value="" name="demo3_21">
+      <script>
+        $("input[name='demo3_21']").TouchSpin({
+          initval: 40
+        });
+      </script>
+      <h2>Value is set explicitly to 33 <small>(skipping settings.initval)</small></h2>
+      <input id="demo3_22" type="text" value="33" name="demo3_22">
+      <script>
+        $("input[name='demo3_22']").TouchSpin({
+          initval: 40
+        });
+      </script>
+      <h2>Button postfix (small)</h2>
+      <input id="demo4" type="text" value="" name="demo4" class="input-sm">
+      <script>
+        $("input[name='demo4']").TouchSpin({
+          postfix: "a button",
+          postfix_extraclass: "btn btn-default"
+        });
+      </script>
+      <h2>Button postfix (large)</h2>
+      <div class="input-group input-group-lg">
+        <input id="demo4_2" type="text" value="" name="demo4_2" class="form-control input-lg">
+      </div>
+      <script>
+        $("input[name='demo4_2']").TouchSpin({
+          postfix: "a button",
+          postfix_extraclass: "btn btn-default"
+        });
+      </script>
+      <h2>Button group</h2>
+      <div class="input-group">
+        <input id="demo5" type="text" class="form-control" name="demo5" value="50">
+        <div class="input-group-btn">
+          <button type="button" class="btn btn-default">Action</button>
+          <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+            <span class="caret"></span>
+            <span class="sr-only">Toggle Dropdown</span>
+          </button>
+          <ul class="dropdown-menu pull-right" role="menu">
+            <li><a href="#">Action</a></li>
+            <li><a href="#">Another action</a></li>
+            <li><a href="#">Something else here</a></li>
+            <li class="divider"></li>
+            <li><a href="#">Separated link</a></li>
+          </ul>
+        </div>
+      </div>
+      <script>
+        $("input[name='demo5']").TouchSpin({
+          prefix: "pre",
+          postfix: "post"
+        });
+      </script>
+      <h2>Change button class</h2>
+      <input id="demo6" type="text" value="50" name="demo6">
+      <script>
+        $("input[name='demo6']").TouchSpin({
+          buttondown_class: "btn btn-link",
+          buttonup_class: "btn btn-link"
+        });
+      </script>
+      <h2>Event demo</h2>
+      <div class="row">
+        <div class="col-md-3">
+          <input id="demo7" type="text" value="50" name="demo7">
+        </div>
+        <div class="col-md-9">
+          <pre id="demo7textarea" style="height:200px;overflow:auto;"></pre>
+        </div>
+        <script>
+          var i = $("input[name='demo7']"),
+            demoarea = $("#demo7textarea"),
+            text = "";
+          function writeLine(line) {
+            text += line + "\n";
+            demoarea.text(text);
+            demoarea.scrollTop(
+              demoarea[0].scrollHeight - demoarea.height()
+            );
+          }
+          i.TouchSpin({});
+          i.on("touchspin.on.startspin", function() {
+            writeLine("touchspin.on.startspin");
+          });
+          i.on("touchspin.on.startupspin", function() {
+            writeLine("touchspin.on.startupspin");
+          });
+          i.on("touchspin.on.startdownspin", function() {
+            writeLine("touchspin.on.startdownspin");
+          });
+          i.on("touchspin.on.stopspin", function() {
+            writeLine("touchspin.on.stopspin");
+          });
+          i.on("touchspin.on.stopupspin", function() {
+            writeLine("touchspin.on.stopupspin");
+          });
+          i.on("touchspin.on.stopdownspin", function() {
+            writeLine("touchspin.on.stopdownspin");
+          });
+          i.on("touchspin.on.min", function() {
+            writeLine("touchspin.on.min");
+          });
+          i.on("touchspin.on.max", function() {
+            writeLine("touchspin.on.max");
+          });
+        </script>
+      </div>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/bootstrap-treeview.html b/themes/src/main/node_modules/rcue/tests/bootstrap-treeview.html
new file mode 100644
index 0000000..b79492d
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/bootstrap-treeview.html
@@ -0,0 +1,385 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Bootstrap Tree View - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="//rawgit.com/patternfly/patternfly-bootstrap-treeview/v2.1.3/dist/bootstrap-treeview.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Bootstrap Tree View</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="https://github.com/patternfly/patternfly-bootstrap-treeview">https://github.com/patternfly/patternfly-bootstrap-treeview</a>.
+      </div>
+      <hr>
+      <div class="row">
+        <div class="col-sm-4">
+          <h2>Default</h2>
+          <div id="treeview1"></div>
+        </div><!--/col-->
+        <div class="col-sm-4">
+          <h2>Collapsed</h2>
+          <div id="treeview2"></div>
+        </div><!--/col-->
+        <div class="col-sm-4">
+          <h2>Expanded</h2>
+          <div id="treeview3"></div>
+        </div><!--/col-->
+      </div><!--/row-->
+      <div class="row">
+        <div class="col-sm-4">
+          <h2>Link enabled</h2>
+          <div id="treeview4"></div>
+        </div><!--/col-->
+        <div class="col-sm-4">
+          <h2>Events</h2>
+          <div id="treeview5"></div>
+        </div><!--/col-->
+        <div class="col-sm-4">
+          <h2>Output</h2>
+          <div id="event_output"></div>
+        </div><!--/col-->
+      </div><!--/row-->
+      <div class="row">
+        <div class="col-sm-4">
+          <h2>JSON Data</h2>
+          <div id="treeview6"></div>
+        </div><!--/col-->
+        <div class="col-sm-4">
+          <h2>Checkboxes</h2>
+          <div id="treeview7"></div>
+        </div><!--/col-->
+        <div class="col-sm-4">
+          <h2>Hierarchal Checks</h2>
+          <div id="treeview8"></div>
+        </div><!--/col-->
+      </div><!--/row-->
+      <div class="row">
+        <div class="col-sm-4">
+          <h2>Highlight Select</h2>
+          <div id="treeview9"></div>
+        </div><!--/col-->
+        <div class="col-sm-4">
+          <h2>Lazy Load</h2>
+          <div id="treeview10"></div>
+        </div><!--/col-->
+        <div class="col-sm-4">
+          <h2>Hover and Select</h2>
+          <div id="treeview13" class="treeview-pf-hover treeview-pf-select"></div>
+        </div><!--/col-->
+      </div>
+      <div class="row">
+        <div class="col-sm-4">
+          <h2>Prevent Unselection</h2>
+          <div id="treeview11" class="treeview-pf-select"></div>
+        </div><!--/col-->
+        <div class="col-sm-4">
+          <h2>Disabled Nodes</h2>
+          <div id="treeview12"></div>
+        </div><!--/col-->
+      </div><!--/row-->
+      <script>
+        $(function() {
+          //icon options
+          var collapseIcon = "fa fa-angle-down",
+            expandIcon = "fa fa-angle-right",
+            nodeIcon = "fa fa-folder",
+            checkedIcon = "fa fa-check-square-o",
+            uncheckedIcon = "fa fa-square-o",
+            partiallyCheckedIcon = "fa fa-check-square",
+            loadingIcon = "glyphicon glyphicon-hourglass";
+
+          var defaultData = [
+            {
+              text: 'Parent 1',
+              href: '#parent1',
+              tags: ['4'],
+              nodes: [
+                {
+                  text: 'Child 1',
+                  href: '#child1',
+                  tags: ['2'],
+                  nodes: [
+                    {
+                      text: 'Grandchild 1',
+                      href: '#grandchild1',
+                      icon: 'fa fa-file-o',
+                      tags: ['0']
+                    },
+                    {
+                      text: 'Grandchild 2',
+                      href: '#grandchild2',
+                      icon: 'fa fa-file-o',
+                      tags: ['0']
+                    }
+                  ]
+                },
+                {
+                  text: 'Child 2',
+                  href: '#child2',
+                  icon: 'fa fa-file-o',
+                  tags: ['0']
+                }
+              ]
+            },
+            {
+              text: 'Parent 2',
+              href: '#parent2',
+              tags: ['0']
+            },
+            {
+              text: 'Parent 3',
+              href: '#parent3',
+               tags: ['0']
+            },
+            {
+              text: 'Parent 4',
+              href: '#parent4',
+              tags: ['0']
+            },
+            {
+              text: 'Parent 5',
+              href: '#parent5'  ,
+              tags: ['0']
+            }
+          ];
+          var json = '[' +
+            '{' +
+              '"text": "Parent 1",' +
+              '"lazyLoad": true,' +
+              '"nodes": [' +
+                '{' +
+                  '"text": "Child 1",' +
+                  '"lazyLoad": true,' +
+                  '"nodes": [' +
+                    '{' +
+                      '"icon": "fa fa-file-o",' +
+                      '"text": "Grandchild 1"' +
+                    '},' +
+                    '{' +
+                      '"icon": "fa fa-file-o",' +
+                      '"text": "Grandchild 2"' +
+                    '}' +
+                  ']' +
+                '},' +
+                '{' +
+                  '"icon": "fa fa-file-o",' +
+                  '"text": "Child 2"' +
+                '}' +
+              ']' +
+            '},' +
+            '{' +
+              '"text": "Parent 2"' +
+            '},' +
+            '{' +
+              '"text": "Parent 3"' +
+            '},' +
+            '{' +
+              '"text": "Parent 4"' +
+            '},' +
+            '{' +
+              '"text": "Parent 5"' +
+            '}' +
+          ']';
+
+          //Default
+          $('#treeview1').treeview({
+            collapseIcon: collapseIcon,
+            data: defaultData,
+            expandIcon: expandIcon,
+            nodeIcon: nodeIcon,
+            showBorder: false
+          });
+
+          //Collapsed
+          $('#treeview2').treeview({
+            collapseIcon: collapseIcon,
+            data: defaultData,
+            expandIcon: expandIcon,
+            levels: 1,
+            nodeIcon: nodeIcon,
+            showBorder: false
+          });
+
+          //Expanded
+          $('#treeview3').treeview({
+            collapseIcon: collapseIcon,
+            data: defaultData,
+            expandIcon: expandIcon,
+            levels: 99,
+            nodeIcon: nodeIcon,
+            showBorder: false
+          });
+
+          //Link Enabled
+          $('#treeview4').treeview({
+            collapseIcon: collapseIcon,
+            data: defaultData,
+            enableLinks: true,
+            expandIcon: expandIcon,
+            levels: 99,
+            nodeIcon: nodeIcon,
+            showBorder: false
+          });
+
+          //Events
+          $('#treeview5').treeview({
+            collapseIcon: collapseIcon,
+            data: defaultData,
+            expandIcon: expandIcon,
+            levels: 99,
+            nodeIcon: nodeIcon,
+            showBorder: false,
+            onNodeSelected: function(event, node) {
+              $('#event_output').prepend('<p>You clicked ' + node.text + '</p>');
+            }
+          });
+
+          //JSON Data
+          $('#treeview6').treeview({
+            collapseIcon: collapseIcon,
+            data: json,
+            expandIcon: expandIcon,
+            levels: 99,
+            nodeIcon: nodeIcon,
+            showBorder: false
+          });
+
+          //Checkboxes
+          $('#treeview7').treeview({
+            collapseIcon: collapseIcon,
+            data: json,
+            expandIcon: expandIcon,
+            levels: 99,
+            nodeIcon: nodeIcon,
+            checkedIcon: checkedIcon,
+            uncheckedIcon: uncheckedIcon,
+            partiallyCheckedIcon: partiallyCheckedIcon,
+            showBorder: false,
+            showCheckbox: true,
+            checkboxFirst: true,
+            wrapNodeText: true
+          });
+
+          //Hierarchal Checks
+          $('#treeview8').treeview({
+            collapseIcon: collapseIcon,
+            data: json,
+            expandIcon: expandIcon,
+            levels: 99,
+            nodeIcon: nodeIcon,
+            checkedIcon: checkedIcon,
+            uncheckedIcon: uncheckedIcon,
+            partiallyCheckedIcon: partiallyCheckedIcon,
+            showBorder: false,
+            showCheckbox: true,
+            hierarchicalCheck: true,
+            checkboxFirst: true,
+            wrapNodeText: true
+          });
+
+          //Highlight Select
+          $('#treeview9').treeview({
+            collapseIcon: collapseIcon,
+            data: json,
+            expandIcon: expandIcon,
+            levels: 99,
+            nodeIcon: nodeIcon,
+            checkedIcon: checkedIcon,
+            uncheckedIcon: uncheckedIcon,
+            partiallyCheckedIcon: partiallyCheckedIcon,
+            showBorder: false,
+            showCheckbox: true,
+            hierarchicalCheck: true,
+            checkboxFirst: true,
+            wrapNodeText: true,
+            highlightChanges: true,
+            changedNodeColor: $.pfPaletteColors.black900
+          });
+
+          //Lazy Load
+          $('#treeview10').treeview({
+            collapseIcon: collapseIcon,
+            data: json,
+            expandIcon: expandIcon,
+            levels: 1,
+            nodeIcon: nodeIcon,
+            showBorder: false,
+            wrapNodeText: true,
+            loadingIcon: loadingIcon,
+            lazyLoad: function(node, callback){
+              setTimeout(function() {
+                callback([]);
+              }, 2000);
+            }
+          });
+
+          //Prevent Unselection
+          $('#treeview11').treeview({
+            collapseIcon: collapseIcon,
+            data: json,
+            expandIcon: expandIcon,
+            levels: 99,
+            nodeIcon: nodeIcon,
+            showBorder: false,
+            preventUnselect: true
+          });
+
+          //Disabled Nodes
+          var tree12 = $('#treeview12').treeview({
+            collapseIcon: collapseIcon,
+            data: json,
+            expandIcon: expandIcon,
+            levels: 99,
+            nodeIcon: nodeIcon,
+            showBorder: false,
+            onInitialized: function() {
+              tree12.treeview('disableAll');
+            }
+          });
+
+          //Hover and Select
+          $('#treeview13').treeview({
+            collapseIcon: collapseIcon,
+            data: defaultData,
+            expandIcon: expandIcon,
+            nodeIcon: nodeIcon,
+            showBorder: false
+          });
+
+        });
+      </script>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/bootstrap-treeview-2.html b/themes/src/main/node_modules/rcue/tests/bootstrap-treeview-2.html
new file mode 100644
index 0000000..50de08f
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/bootstrap-treeview-2.html
@@ -0,0 +1,303 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Tree View - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="https://rawgit.com/patternfly/patternfly-bootstrap-treeview/v2.1.3/dist/bootstrap-treeview.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body>
+    <nav class="navbar navbar-default navbar-pf" role="navigation">
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+        </a>
+      </div>
+      <div class="collapse navbar-collapse navbar-collapse-1">
+        <ul class="nav navbar-nav navbar-utility">
+          <li class="dropdown">
+            <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+              <span title="Help" class="fa pficon-help"></span>
+              <span class="caret"></span>
+            </a>
+            <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+              <li><a href="#0">Help</a></li>
+              <li><a href="#0">About</a></li>
+            </ul>
+          </li>
+          <li class="dropdown">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+              <span class="pficon pficon-user"></span>
+              Brian Johnson <b class="caret"></b>
+            </a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-submenu">
+                <a tabindex="-1" href="#0">More options</a>
+                <ul class="dropdown-menu">
+                  <li>
+                    <a href="#0">Link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Another link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Something else here</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li class="dropdown-header">Nav header</li>
+                  <li>
+                    <a href="#0">Separated link</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li>
+                    <a href="#0">One more separated link</a>
+                  </li>
+                </ul>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+        <ul class="nav navbar-nav navbar-primary">
+          <li>
+            <a href="basic.html">Basic</a>
+          </li>
+          <li class="active">
+            <a href="bootstrap-treeview-2.html" class="active">Tree View</a>
+          </li>
+          <li>
+            <a href="dashboard.html">Dashboard</a>
+          </li>
+          <li>
+            <a href="form.html">Form</a>
+          </li>
+          <li>
+            <a href="tab.html">Tab</a>
+          </li>
+          <li>
+            <a href="typography-2.html">Typography</a>
+          </li>
+          <li>
+            <a href="card-view-multi-select.html">Card View - Multi Select</a>
+          </li>
+          <li>
+            <a href="card-view-single-select.html">Card View - Single Select</a>
+          </li>
+          <li>
+            <a href="cards.html">Cards</a>
+          </li>
+          <li>
+            <a href="pagination-card-view.html">Pagination - Card View</a>
+          </li>
+        </ul>
+      </div>
+    </nav>
+
+    <div class="container-fluid">
+      <div class="row">
+        <div class="col-sm-9 col-md-10 col-sm-push-3 col-md-push-2">
+          <ol class="breadcrumb">
+            <li><a href="#">Home</a></li>
+            <li>Tree View</li>
+          </ol>
+          <h1>Tree View</h1>
+<form class="form-horizontal">
+  <div class="form-group">
+    <label class="col-md-2 control-label" for="textInput">Praesent urna</label>
+    <div class="col-md-6">
+      <input type="text" id="textInput" class="form-control">
+    </div>
+  </div>
+  <div class="form-group">
+    <label class="col-md-2 control-label" for="textInput2">Augue</label>
+    <div class="col-md-6">
+      <input type="text" id="textInput2" class="form-control">
+    </div>
+  </div>
+  <div class="form-group">
+    <label class="col-md-2 control-label" for="textInput3">Pharetra vel</label>
+    <div class="col-md-6">
+      <input type="text" id="textInput3" class="form-control">
+    </div>
+  </div>
+  <div class="form-group">
+    <label class="col-md-2 control-label" for="textInput4">Arcu ac</label>
+    <div class="col-md-6">
+      <input type="text" id="textInput4" class="form-control">
+    </div>
+  </div>
+  <div class="form-group">
+    <label class="col-md-2 control-label">Posuere</label>
+    <div class="col-md-6">
+      <div class="radio">
+        <label>
+          <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
+          Proin lobortis auctor tortor et posuere
+        </label>
+      </div>
+      <div class="radio">
+        <label>
+          <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
+          Duis eu ipsum metus
+        </label>
+      </div>
+    </div>
+  </div>
+  <div class="form-group">
+    <label class="col-md-2 control-label" for="boostrapSelect">Vestibulum</label>
+    <div class="col-md-10">
+      <select class="selectpicker" multiple data-selected-text-format="count>3" id="boostrapSelect">
+        <option>Mustard</option>
+        <option>Ketchup</option>
+        <option>Relish</option>
+        <option>Onions</option>
+        <option>Mushrooms</option>
+        <option>Pickles</option>
+        <option>Mayonnaise</option>
+        <option data-divider="true"></option>
+        <option data-subtext="Hot">Tabasco</option>
+        <option data-subtext="Hotter">Sriracha</option>
+        <option data-subtext="Hottest">Wasabi</option>
+      </select>
+    </div>
+  </div>
+  <div class="form-group">
+    <div class="col-md-10 col-md-offset-2">
+      <button type="button" class="btn btn-primary">Save</button>
+      <button type="button" class="btn btn-default">Cancel</button>
+    </div>
+  </div>
+</form>
+        </div><!-- /col -->
+        <div class="col-sm-3 col-md-2 col-sm-pull-9 col-md-pull-10 sidebar-pf sidebar-pf-left">
+          <div id="treeview1"></div>
+        </div><!-- /col -->
+      </div><!-- /row -->
+    </div><!-- /container -->
+    <script>
+      // Intialize Boostrap-Treeview
+      $(function() {
+        var defaultData = [
+          {
+            text: 'Parent 1',
+            href: '#parent1',
+            tags: ['4'],
+            nodes: [
+              {
+                text: 'Child 1',
+                href: '#child1',
+                icon: 'fa fa-file-o',
+                tags: ['2'],
+                nodes: [
+                  {
+                    text: 'Grandchild 1',
+                    href: '#grandchild1',
+                    icon: 'fa fa-file-o',
+                    tags: ['0']
+                  },
+                  {
+                    text: 'Grandchild 2',
+                    href: '#grandchild2',
+                    icon: 'fa fa-file-o',
+                    tags: ['0']
+                  }
+                ]
+              },
+              {
+                text: 'Child 2',
+                href: '#child2',
+                icon: 'fa fa-file-o',
+                tags: ['0']
+              }
+            ]
+          },
+          {
+            text: 'Parent 2',
+            href: '#parent2',
+            tags: ['0']
+          },
+          {
+            text: 'Parent 3',
+            href: '#parent3',
+             tags: ['0']
+          },
+          {
+            text: 'Parent 4',
+            href: '#parent4',
+            tags: ['0']
+          },
+          {
+            text: 'Parent 5',
+            href: '#parent5'  ,
+            tags: ['0']
+          }
+        ];
+        $('#treeview1').treeview({
+          collapseIcon: "fa fa-angle-down",
+          data: defaultData,
+          expandIcon: "fa fa-angle-right",
+          nodeIcon: "fa fa-folder",
+          showBorder: false
+        });
+        // set selected menu item
+        $('.list-group-item[data-nodeid="3"]').addClass('node-selected');
+      });
+    </script>
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/breadcrumbs.html b/themes/src/main/node_modules/rcue/tests/breadcrumbs.html
new file mode 100644
index 0000000..30de4bf
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/breadcrumbs.html
@@ -0,0 +1,52 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Breadcrumbs - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Breadcrumbs</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <ol class="breadcrumb">
+        <li><a href="#">Back to Top Level</a></li>
+        <li><a href="#">Second Level</a></li>
+        <li><a href="#">Third Level</a></li>
+        <li class="active"><strong>Fourth Level:</strong> Detail about fourth level</li>
+      </ol>
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/buttons.html b/themes/src/main/node_modules/rcue/tests/buttons.html
new file mode 100644
index 0000000..ba92b4c
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/buttons.html
@@ -0,0 +1,556 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Buttons - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Buttons</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <h2>PatternFly Examples</h2>
+      <p>
+        <button type="button" class="btn btn-default">Secondary</button>
+        <button type="button" class="btn btn-primary">Primary</button>
+        <button type="button" class="btn btn-danger">Destructive</button>
+      </p>
+      <p>
+        <button type="button" class="btn btn-default disabled">Secondary</button>
+        <button type="button" class="btn btn-primary disabled">Primary</button>
+        <button type="button" class="btn btn-danger disabled">Destructive</button>
+      </p>
+      <p>
+        <button type="button" class="btn btn-default btn-lg">Secondary Large</button>
+        <button type="button" class="btn btn-primary btn-lg">Primary Large</button>
+        <button type="button" class="btn btn-danger btn-lg">Destructive Large</button>
+      </p>
+      <p>
+        <button type="button" class="btn btn-default btn-lg disabled">Secondary Large</button>
+        <button type="button" class="btn btn-primary btn-lg disabled">Primary Large</button>
+        <button type="button" class="btn btn-danger btn-lg disabled">Destructive Large</button>
+      </p>
+      <p>
+        <button type="button" class="btn btn-default btn-xs">Secondary Extra Small</button>
+        <button type="button" class="btn btn-primary btn-xs">Primary Extra Small</button>
+        <button type="button" class="btn btn-danger btn-xs">Destructive Extra Small</button>
+      </p>
+      <p>
+        <button type="button" class="btn btn-default btn-xs disabled">Secondary Extra Small</button>
+        <button type="button" class="btn btn-primary btn-xs disabled">Primary Extra Small</button>
+        <button type="button" class="btn btn-danger btn-xs disabled">Destructive Extra Small</button>
+      </p>
+      <h2>Button options and sizes</h2>
+      <p>
+        <button class="btn btn-lg btn-default" type="button">Large button</button>
+        <button class="btn btn-lg btn-primary" type="button">Large button</button>
+        <button class="btn btn-lg btn-info" type="button">Large button</button>
+        <button class="btn btn-lg btn-success" type="button">Large button</button>
+        <button class="btn btn-lg btn-warning" type="button">Large button</button>
+        <button class="btn btn-lg btn-danger" type="button">Large button</button>
+        <button class="btn btn-lg btn-link" type="button">Large button</button>
+      </p>
+      <p>
+        <button class="btn btn-lg btn-default" type="button"><i class="glyphicon glyphicon-star"></i> Large button</button>
+        <button class="btn btn-lg btn-primary" type="button"><i class="glyphicon glyphicon-star"></i> Large button</button>
+        <button class="btn btn-lg btn-info" type="button"><i class="glyphicon glyphicon-star"></i> Large button</button>
+        <button class="btn btn-lg btn-success" type="button"><i class="glyphicon glyphicon-star"></i> Large button</button>
+        <button class="btn btn-lg btn-warning" type="button"><i class="glyphicon glyphicon-star"></i> Large button</button>
+        <button class="btn btn-lg btn-danger" type="button"><i class="glyphicon glyphicon-star"></i> Large button</button>
+        <button class="btn btn-lg btn-link" type="button"><i class="glyphicon glyphicon-star"></i> Large button</button>
+      </p>
+      <p>
+        <button class="btn btn-lg disabled" type="button">Large button</button>
+        <button class="btn btn-lg btn-primary disabled" type="button">Large button</button>
+        <button class="btn btn-lg btn-info disabled" type="button">Large button</button>
+        <button class="btn btn-lg btn-success disabled" type="button">Large button</button>
+        <button class="btn btn-lg btn-warning disabled" type="button">Large button</button>
+        <button class="btn btn-lg btn-danger disabled" type="button">Large button</button>
+        <button class="btn btn-lg btn-link disabled" type="button">Large button</button>
+      </p>
+      <p>
+        <button class="btn btn-default" type="button">Default button</button>
+        <button class="btn btn-primary" type="button">Default button</button>
+        <button class="btn btn-info" type="button">Default button</button>
+        <button class="btn btn-success" type="button">Default button</button>
+        <button class="btn btn-warning" type="button">Default button</button>
+        <button class="btn btn-danger" type="button">Default button</button>
+        <button class="btn btn-link" type="button">Default button</button>
+      </p>
+      <p>
+        <button class="btn btn-default" type="button"><i class="glyphicon glyphicon-star"></i> Default button</button>
+        <button class="btn btn-primary" type="button"><i class="glyphicon glyphicon-star"></i> Default button</button>
+        <button class="btn btn-info" type="button"><i class="glyphicon glyphicon-star"></i> Default button</button>
+        <button class="btn btn-success" type="button"><i class="glyphicon glyphicon-star"></i> Default button</button>
+        <button class="btn btn-warning" type="button"><i class="glyphicon glyphicon-star"></i> Default button</button>
+        <button class="btn btn-danger" type="button"><i class="glyphicon glyphicon-star"></i> Default button</button>
+        <button class="btn btn-link" type="button"><i class="glyphicon glyphicon-star"></i> Default button</button>
+      </p>
+      <p>
+        <button class="btn disabled" type="button">Default button</button>
+        <button class="btn btn-primary disabled" type="button">Default button</button>
+        <button class="btn btn-info disabled" type="button">Default button</button>
+        <button class="btn btn-success disabled" type="button">Default button</button>
+        <button class="btn btn-warning disabled" type="button">Default button</button>
+        <button class="btn btn-danger disabled" type="button">Default button</button>
+        <button class="btn btn-link disabled" type="button">Default button</button>
+      </p>
+      <p>
+        <button class="btn btn-sm btn-default" type="button">Small button</button>
+        <button class="btn btn-sm btn-primary" type="button">Small button</button>
+        <button class="btn btn-sm btn-info" type="button">Small button</button>
+        <button class="btn btn-sm btn-success" type="button">Small button</button>
+        <button class="btn btn-sm btn-warning" type="button">Small button</button>
+        <button class="btn btn-sm btn-danger" type="button">Small button</button>
+        <button class="btn btn-sm btn-link" type="button">Small button</button>
+      </p>
+      <p>
+        <button class="btn btn-sm btn-default" type="button"><i class="glyphicon glyphicon-star"></i> Small button</button>
+        <button class="btn btn-sm btn-primary" type="button"><i class="glyphicon glyphicon-star"></i> Small button</button>
+        <button class="btn btn-sm btn-info" type="button"><i class="glyphicon glyphicon-star"></i> Small button</button>
+        <button class="btn btn-sm btn-success" type="button"><i class="glyphicon glyphicon-star"></i> Small button</button>
+        <button class="btn btn-sm btn-warning" type="button"><i class="glyphicon glyphicon-star"></i> Small button</button>
+        <button class="btn btn-sm btn-danger" type="button"><i class="glyphicon glyphicon-star"></i> Small button</button>
+        <button class="btn btn-sm btn-link" type="button"><i class="glyphicon glyphicon-star"></i> Small button</button>
+      </p>
+      <p>
+        <button class="btn btn-sm disabled" type="button">Small button</button>
+        <button class="btn btn-sm btn-primary disabled" type="button">Small button</button>
+        <button class="btn btn-sm btn-info disabled" type="button">Small button</button>
+        <button class="btn btn-sm btn-success disabled" type="button">Small button</button>
+        <button class="btn btn-sm btn-warning disabled" type="button">Small button</button>
+        <button class="btn btn-sm btn-danger disabled" type="button">Small button</button>
+        <button class="btn btn-sm btn-link disabled" type="button">Small button</button>
+      </p>
+      <p>
+        <button class="btn btn-xs btn-default" type="button">Extra small button</button>
+        <button class="btn btn-xs btn-primary" type="button">Extra small button</button>
+        <button class="btn btn-xs btn-info" type="button">Extra small button</button>
+        <button class="btn btn-xs btn-success" type="button">Extra small button</button>
+        <button class="btn btn-xs btn-warning" type="button">Extra small button</button>
+        <button class="btn btn-xs btn-danger" type="button">Extra small button</button>
+        <button class="btn btn-xs btn-link" type="button">Extra small button</button>
+      </p>
+      <p>
+        <button class="btn btn-xs btn-default" type="button"><i class="glyphicon glyphicon-star"></i> Extra small button</button>
+        <button class="btn btn-xs btn-primary" type="button"><i class="glyphicon glyphicon-star"></i> Extra small button</button>
+        <button class="btn btn-xs btn-info" type="button"><i class="glyphicon glyphicon-star"></i> Extra small button</button>
+        <button class="btn btn-xs btn-success" type="button"><i class="glyphicon glyphicon-star"></i> Extra small button</button>
+        <button class="btn btn-xs btn-warning" type="button"><i class="glyphicon glyphicon-star"></i> Extra small button</button>
+        <button class="btn btn-xs btn-danger" type="button"><i class="glyphicon glyphicon-star"></i> Extra small button</button>
+        <button class="btn btn-xs btn-link" type="button"><i class="glyphicon glyphicon-star"></i> Extra small button</button>
+      </p>
+      <p>
+        <button class="btn btn-xs disabled" type="button">Extra small button</button>
+        <button class="btn btn-xs btn-primary disabled" type="button">Extra small button</button>
+        <button class="btn btn-xs btn-info disabled" type="button">Extra small button</button>
+        <button class="btn btn-xs btn-success disabled" type="button">Extra small button</button>
+        <button class="btn btn-xs btn-warning disabled" type="button">Extra small button</button>
+        <button class="btn btn-xs btn-danger disabled" type="button">Extra small button</button>
+        <button class="btn btn-xs btn-link disabled" type="button">Extra small button</button>
+      </p>
+      <h2>Button types</h2>
+      <p>Note:  a Firefox bug that prevents us from setting the line-height of &lt;input&gt;-based buttons, causing them to not exactly match the height of other buttons on Firefox.</p>
+      <p>
+        <a class="btn btn-lg btn-default" href="">Link</a>
+        <button class="btn btn-lg btn-default" type="submit">Button</button>
+        <input class="btn btn-lg btn-default" type="button" value="Input">
+        <input class="btn btn-lg btn-default" type="submit" value="Submit">
+        <a class="btn btn-lg btn-primary" href="">Link</a>
+        <button class="btn btn-lg btn-primary" type="submit">Button</button>
+        <input class="btn btn-lg btn-primary" type="button" value="Input">
+        <input class="btn btn-lg btn-primary" type="submit" value="Submit">
+        <a class="btn btn-lg btn-danger" href="">Link</a>
+        <button class="btn btn-lg btn-danger" type="submit">Button</button>
+        <input class="btn btn-lg btn-danger" type="button" value="Input">
+        <input class="btn btn-lg btn-danger" type="submit" value="Submit">
+      </p>
+      <p>
+        <a class="btn btn-lg disabled" href="">Link</a>
+        <button class="btn btn-lg disabled" type="submit">Button</button>
+        <input class="btn btn-lg disabled" type="button" value="Input">
+        <input class="btn btn-lg disabled" type="submit" value="Submit">
+        <a class="btn btn-lg btn-primary disabled" href="">Link</a>
+        <button class="btn btn-lg btn-primary disabled" type="submit">Button</button>
+        <input class="btn btn-lg btn-primary disabled" type="button" value="Input">
+        <input class="btn btn-lg btn-primary disabled" type="submit" value="Submit">
+        <a class="btn btn-lg btn-danger disabled" href="">Link</a>
+        <button class="btn btn-lg btn-danger disabled" type="submit">Button</button>
+        <input class="btn btn-lg btn-danger disabled" type="button" value="Input">
+        <input class="btn btn-lg btn-danger disabled" type="submit" value="Submit">
+      </p>
+      <p>
+        <a class="btn btn-default" href="">Link</a>
+        <button class="btn btn-default" type="submit">Button</button>
+        <input class="btn btn-default" type="button" value="Input">
+        <input class="btn btn-default" type="submit" value="Submit">
+        <a class="btn btn-primary" href="">Link</a>
+        <button class="btn btn-primary" type="submit">Button</button>
+        <input class="btn btn-primary" type="button" value="Input">
+        <input class="btn btn-primary" type="submit" value="Submit">
+        <a class="btn btn-danger" href="">Link</a>
+        <button class="btn btn-danger" type="submit">Button</button>
+        <input class="btn btn-danger" type="button" value="Input">
+        <input class="btn btn-danger" type="submit" value="Submit">
+      </p>
+      <p>
+        <a class="btn btn-default disabled" href="">Link</a>
+        <button class="btn btn-default disabled" type="submit">Button</button>
+        <input class="btn btn-default disabled" type="button" value="Input">
+        <input class="btn btn-default disabled" type="submit" value="Submit">
+        <a class="btn btn-primary disabled" href="">Link</a>
+        <button class="btn btn-primary disabled" type="submit">Button</button>
+        <input class="btn btn-primary disabled" type="button" value="Input">
+        <input class="btn btn-primary disabled" type="submit" value="Submit">
+        <a class="btn btn-danger disabled" href="">Link</a>
+        <button class="btn btn-danger disabled" type="submit">Button</button>
+        <input class="btn btn-danger disabled" type="button" value="Input">
+        <input class="btn btn-danger disabled" type="submit" value="Submit">
+      </p>
+      <p>
+        <a class="btn btn-sm btn-default" href="">Link</a>
+        <button class="btn btn-sm btn-default" type="submit">Button</button>
+        <input class="btn btn-sm btn-default" type="button" value="Input">
+        <input class="btn btn-sm btn-default" type="submit" value="Submit">
+        <a class="btn btn-sm btn-primary" href="">Link</a>
+        <button class="btn btn-sm btn-primary" type="submit">Button</button>
+        <input class="btn btn-sm btn-primary" type="button" value="Input">
+        <input class="btn btn-sm btn-primary" type="submit" value="Submit">
+        <a class="btn btn-sm btn-danger" href="">Link</a>
+        <button class="btn btn-sm btn-danger" type="submit">Button</button>
+        <input class="btn btn-sm btn-danger" type="button" value="Input">
+        <input class="btn btn-sm btn-danger" type="submit" value="Submit">
+      </p>
+      <p>
+        <a class="btn btn-sm disabled" href="">Link</a>
+        <button class="btn btn-sm disabled" type="submit">Button</button>
+        <input class="btn btn-sm disabled" type="button" value="Input">
+        <input class="btn btn-sm disabled" type="submit" value="Submit">
+        <a class="btn btn-sm btn-primary disabled" href="">Link</a>
+        <button class="btn btn-sm btn-primary disabled" type="submit">Button</button>
+        <input class="btn btn-sm btn-primary disabled" type="button" value="Input">
+        <input class="btn btn-sm btn-primary disabled" type="submit" value="Submit">
+        <a class="btn btn-sm btn-danger disabled" href="">Link</a>
+        <button class="btn btn-sm btn-danger disabled" type="submit">Button</button>
+        <input class="btn btn-sm btn-danger disabled" type="button" value="Input">
+        <input class="btn btn-sm btn-danger disabled" type="submit" value="Submit">
+      </p>
+      <p>
+        <a class="btn btn-xs btn-default" href="">Link</a>
+        <button class="btn btn-xs btn-default" type="submit">Button</button>
+        <input class="btn btn-xs btn-default" type="button" value="Input">
+        <input class="btn btn-xs btn-default" type="submit" value="Submit">
+        <a class="btn btn-xs btn-primary" href="">Link</a>
+        <button class="btn btn-xs btn-primary" type="submit">Button</button>
+        <input class="btn btn-xs btn-primary" type="button" value="Input">
+        <input class="btn btn-xs btn-primary" type="submit" value="Submit">
+        <a class="btn btn-xs btn-danger" href="">Link</a>
+        <button class="btn btn-xs btn-danger" type="submit">Button</button>
+        <input class="btn btn-xs btn-danger" type="button" value="Input">
+        <input class="btn btn-xs btn-danger" type="submit" value="Submit">
+      </p>
+      <p>
+        <a class="btn btn-xs disabled" href="">Link</a>
+        <button class="btn btn-xs disabled" type="submit">Button</button>
+        <input class="btn btn-xs disabled" type="button" value="Input">
+        <input class="btn btn-xs disabled" type="submit" value="Submit">
+        <a class="btn btn-xs btn-primary disabled" href="">Link</a>
+        <button class="btn btn-xs btn-primary disabled" type="submit">Button</button>
+        <input class="btn btn-xs btn-primary disabled" type="button" value="Input">
+        <input class="btn btn-xs btn-primary disabled" type="submit" value="Submit">
+        <a class="btn btn-xs btn-danger disabled" href="">Link</a>
+        <button class="btn btn-xs btn-danger disabled" type="submit">Button</button>
+        <input class="btn btn-xs btn-danger disabled" type="button" value="Input">
+        <input class="btn btn-xs btn-danger disabled" type="submit" value="Submit">
+      </p>
+      <h2>Button groups</h2>
+      <h3>Basic Example</h3>
+      <div class="btn-group">
+        <button type="button" class="btn btn-default">Left</button>
+        <button type="button" class="btn btn-default">Middle</button>
+        <button type="button" class="btn btn-default">Right</button>
+      </div>
+      <h3>Button toolbar</h3>
+      <div class="btn-toolbar">
+        <div class="btn-group">
+          <button type="button" class="btn btn-default">1</button>
+          <button type="button" class="btn btn-default">2</button>
+          <button type="button" class="btn btn-default">3</button>
+          <button type="button" class="btn btn-default">4</button>
+        </div>
+        <div class="btn-group">
+          <button type="button" class="btn btn-default">5</button>
+          <button type="button" class="btn btn-default">6</button>
+          <button type="button" class="btn btn-default">7</button>
+        </div>
+        <div class="btn-group">
+          <button type="button" class="btn btn-default">8</button>
+        </div>
+      </div>
+      <h3>Sizing</h3>
+      <div class="btn-toolbar">
+        <div class="btn-group btn-group-lg">
+          <button type="button" class="btn btn-default">Left</button>
+          <button type="button" class="btn btn-default">Middle</button>
+          <button type="button" class="btn btn-default">Right</button>
+        </div>
+      </div>
+      <div class="btn-toolbar">
+        <div class="btn-group">
+          <button type="button" class="btn btn-default">Left</button>
+          <button type="button" class="btn btn-default">Middle</button>
+          <button type="button" class="btn btn-default">Right</button>
+        </div>
+      </div>
+      <div class="btn-toolbar">
+        <div class="btn-group btn-group-sm">
+          <button type="button" class="btn btn-default">Left</button>
+          <button type="button" class="btn btn-default">Middle</button>
+          <button type="button" class="btn btn-default">Right</button>
+        </div>
+      </div>
+      <div class="btn-toolbar">
+        <div class="btn-group btn-group-xs">
+          <button type="button" class="btn btn-default">Left</button>
+          <button type="button" class="btn btn-default">Middle</button>
+          <button type="button" class="btn btn-default">Right</button>
+        </div>
+      </div>
+      <h3>Nesting</h3>
+      <div class="btn-group">
+        <button type="button" class="btn btn-default">1</button>
+        <button type="button" class="btn btn-default">2</button>
+        <div class="btn-group">
+          <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+            Dropdown
+            <span class="caret"></span>
+          </button>
+          <ul class="dropdown-menu">
+            <li><a href="#">Dropdown link</a></li>
+            <li><a href="#">Dropdown link</a></li>
+          </ul>
+        </div>
+      </div>
+      <h3>Vertical variation</h3>
+      <div class="btn-group-vertical">
+        <button type="button" class="btn btn-default">Button</button>
+        <button type="button" class="btn btn-default">Button</button>
+        <div class="btn-group">
+          <button id="btnGroupVerticalDrop1" type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+            Dropdown
+            <span class="caret"></span>
+          </button>
+          <ul class="dropdown-menu" role="menu" aria-labelledby="btnGroupVerticalDrop1">
+            <li><a href="#">Dropdown link</a></li>
+            <li><a href="#">Dropdown link</a></li>
+          </ul>
+        </div>
+        <button type="button" class="btn btn-default">Button</button>
+        <button type="button" class="btn btn-default">Button</button>
+        <div class="btn-group">
+          <button id="btnGroupVerticalDrop2" type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+            Dropdown
+            <span class="caret"></span>
+          </button>
+          <ul class="dropdown-menu" role="menu" aria-labelledby="btnGroupVerticalDrop2">
+            <li><a href="#">Dropdown link</a></li>
+            <li><a href="#">Dropdown link</a></li>
+          </ul>
+        </div>
+        <div class="btn-group">
+          <button id="btnGroupVerticalDrop3" type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+            Dropdown
+            <span class="caret"></span>
+          </button>
+          <ul class="dropdown-menu" role="menu" aria-labelledby="btnGroupVerticalDrop3">
+            <li><a href="#">Dropdown link</a></li>
+            <li><a href="#">Dropdown link</a></li>
+          </ul>
+        </div>
+        <div class="btn-group">
+          <button id="btnGroupVerticalDrop4" type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+            Dropdown
+            <span class="caret"></span>
+          </button>
+          <ul class="dropdown-menu" role="menu" aria-labelledby="btnGroupVerticalDrop4">
+            <li><a href="#">Dropdown link</a></li>
+            <li><a href="#">Dropdown link</a></li>
+          </ul>
+        </div>
+      </div>
+      <h3>Justified link variation</h3>
+      <div class="btn-group btn-group-justified">
+        <a href="#" class="btn btn-default">Left</a>
+        <a href="#" class="btn btn-default">Middle</a>
+        <a href="#" class="btn btn-default">Right</a>
+      </div>
+      <h2>Button dropdowns</h2>
+      <h3>Single button dropdowns</h3>
+      <!-- Single button -->
+      <div class="btn-group">
+        <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+          Action <span class="caret"></span>
+        </button>
+        <ul class="dropdown-menu" role="menu">
+          <li><a href="#">Action</a></li>
+          <li><a href="#">Another action</a></li>
+          <li><a href="#">Something else here</a></li>
+          <li class="divider"></li>
+          <li><a href="#">Separated link</a></li>
+        </ul>
+      </div>
+      <h3>Split button dropdowns</h3>
+      <!-- Split button -->
+      <div class="btn-group">
+        <button type="button" class="btn btn-default">Action</button>
+        <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+          <span class="caret"></span>
+        </button>
+        <ul class="dropdown-menu" role="menu">
+          <li><a href="#">Action</a></li>
+          <li><a href="#">Another action</a></li>
+          <li><a href="#">Something else here</a></li>
+          <li class="divider"></li>
+          <li><a href="#">Separated link</a></li>
+        </ul>
+      </div>
+      <div class="btn-group">
+        <a class="btn btn-default" href="#"><i class="icon-user"></i> User</a>
+        <a class="btn btn-default dropdown-toggle" data-toggle="dropdown" href="#"><span class="caret"></span></a>
+        <ul class="dropdown-menu">
+          <li><a href="#"><i class="icon-pencil"></i> Edit</a></li>
+          <li><a href="#"><i class="icon-trash"></i> Delete</a></li>
+          <li><a href="#"><i class="icon-ban-circle"></i> Ban</a></li>
+          <li class="divider"></li>
+          <li><a href="#"><i class="i"></i> Make admin</a></li>
+        </ul>
+      </div>
+      <h3>Sizing</h3>
+      <!-- Large button group -->
+      <div class="btn-group">
+        <button class="btn btn-default btn-lg dropdown-toggle" type="button" data-toggle="dropdown">
+          Large button <span class="caret"></span>
+        </button>
+        <ul class="dropdown-menu">
+          <li><a href="#">Action</a></li>
+          <li><a href="#">Another action</a></li>
+          <li><a href="#">Something else here</a></li>
+          <li class="divider"></li>
+          <li><a href="#">Separated link</a></li>
+        </ul>
+      </div>
+      <!-- Small button group -->
+      <div class="btn-group">
+        <button class="btn btn-default btn-sm dropdown-toggle" type="button" data-toggle="dropdown">
+          Small button <span class="caret"></span>
+        </button>
+        <ul class="dropdown-menu">
+          <li><a href="#">Action</a></li>
+          <li><a href="#">Another action</a></li>
+          <li><a href="#">Something else here</a></li>
+          <li class="divider"></li>
+          <li><a href="#">Separated link</a></li>
+        </ul>
+      </div>
+      <!-- Extra small button group -->
+      <div class="btn-group">
+        <button class="btn btn-default btn-xs dropdown-toggle" type="button" data-toggle="dropdown">
+          Extra small button <span class="caret"></span>
+        </button>
+        <ul class="dropdown-menu">
+          <li><a href="#">Action</a></li>
+          <li><a href="#">Another action</a></li>
+          <li><a href="#">Something else here</a></li>
+          <li class="divider"></li>
+          <li><a href="#">Separated link</a></li>
+        </ul>
+      </div>
+      <h3>Dropup variation</h3>
+      <div class="btn-toolbar">
+        <div class="btn-group dropup">
+          <button type="button" class="btn btn-default">Dropup</button>
+          <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button>
+          <ul class="dropdown-menu" role="menu">
+            <li><a href="#">Action</a></li>
+            <li><a href="#">Another action</a></li>
+            <li><a href="#">Something else here</a></li>
+            <li class="divider"></li>
+            <li><a href="#">Separated link</a></li>
+          </ul>
+        </div><!-- /btn-group -->
+        <div class="btn-group dropup">
+          <button type="button" class="btn btn-primary">Right dropup</button>
+          <button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button>
+          <ul class="dropdown-menu pull-right" role="menu">
+            <li><a href="#">Action</a></li>
+            <li><a href="#">Another action</a></li>
+            <li><a href="#">Something else here</a></li>
+            <li class="divider"></li>
+            <li><a href="#">Separated link</a></li>
+          </ul>
+        </div><!-- /btn-group -->
+      </div><!-- /btn-toolbar -->
+      <h2>Advanced Buttons - requires bootstrap.js</h2>
+      <h3>Single toggle</h3>
+      <button type="button" class="btn btn-default" data-toggle="button" aria-pressed="false" autocomplete="off">
+        Single toggle
+      </button>
+      <h3>Checkbox / Radio</h3>
+      <div class="btn-group" data-toggle="buttons">
+        <label class="btn btn-default active">
+          <input type="checkbox" autocomplete="off" checked> Checkbox 1 (pre-checked)
+        </label>
+        <label class="btn btn-default">
+          <input type="checkbox" autocomplete="off"> Checkbox 2
+        </label>
+        <label class="btn btn-default">
+          <input type="checkbox" autocomplete="off"> Checkbox 3
+        </label>
+      </div>
+      <div class="btn-group" data-toggle="buttons">
+        <label class="btn btn-default active">
+          <input type="radio" name="options" id="option1" autocomplete="off" checked> Radio 1 (preselected)
+        </label>
+        <label class="btn btn-default">
+          <input type="radio" name="options" id="option2" autocomplete="off"> Radio 2
+        </label>
+        <label class="btn btn-default">
+          <input type="radio" name="options" id="option3" autocomplete="off"> Radio 3
+        </label>
+      </div>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/cards.html b/themes/src/main/node_modules/rcue/tests/cards.html
new file mode 100644
index 0000000..af9921b
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/cards.html
@@ -0,0 +1,906 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Cards - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+<div class="toast-pf toast-pf-max-width toast-pf-top-right alert alert-success alert-dismissable">
+  <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+    <span class="pficon pficon-close"></span>
+  </button>
+  <div class="pull-right toast-pf-action">
+    <a href="#">Start Server</a>
+  </div>
+  <span class="pficon pficon-ok"></span>
+  <strong>server_abc</strong> has been added to main server group.
+</div>
+
+  <body class="cards-pf">
+    <nav class="navbar navbar-default navbar-pf" role="navigation">
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+        </a>
+      </div>
+      <div class="collapse navbar-collapse navbar-collapse-1">
+        <ul class="nav navbar-nav navbar-utility">
+          <li class="dropdown">
+            <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+              <span title="Help" class="fa pficon-help"></span>
+              <span class="caret"></span>
+            </a>
+            <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+              <li><a href="#0">Help</a></li>
+              <li><a href="#0">About</a></li>
+            </ul>
+          </li>
+          <li class="dropdown">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+              <span class="pficon pficon-user"></span>
+              Brian Johnson <b class="caret"></b>
+            </a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-submenu">
+                <a tabindex="-1" href="#0">More options</a>
+                <ul class="dropdown-menu">
+                  <li>
+                    <a href="#0">Link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Another link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Something else here</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li class="dropdown-header">Nav header</li>
+                  <li>
+                    <a href="#0">Separated link</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li>
+                    <a href="#0">One more separated link</a>
+                  </li>
+                </ul>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+        <ul class="nav navbar-nav navbar-primary">
+          <li>
+            <a href="basic.html">Basic</a>
+          </li>
+          <li>
+            <a href="bootstrap-treeview-2.html">Tree View</a>
+          </li>
+          <li>
+            <a href="dashboard.html">Dashboard</a>
+          </li>
+          <li>
+            <a href="form.html">Form</a>
+          </li>
+          <li>
+            <a href="tab.html">Tab</a>
+          </li>
+          <li>
+            <a href="typography-2.html">Typography</a>
+          </li>
+          <li>
+            <a href="card-view-multi-select.html">Card View - Multi Select</a>
+          </li>
+          <li>
+            <a href="card-view-single-select.html">Card View - Single Select</a>
+          </li>
+          <li class="active">
+            <a href="cards.html" class="active">Cards</a>
+          </li>
+          <li>
+            <a href="pagination-card-view.html">Pagination - Card View</a>
+          </li>
+        </ul>
+      </div>
+    </nav>
+
+    <div class="container-fluid container-cards-pf">
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-4 col-md-2">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-2">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">20</span> Amet</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-warning-triangle-o"></span>1</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-2">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">9</span> Adipiscing</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-2">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status">
+            <h2 class="card-pf-title">
+              <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">12</span> Lorem</a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-2">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status">
+            <h2 class="card-pf-title">
+              <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">6</span> Dolar Sit</a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-2">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status">
+            <h2 class="card-pf-title">
+              <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">199</span> Consectetur</a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <span class="fa fa-rebel"></span>
+    <span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="fa fa-paper-plane"></span>
+      <span class="card-pf-aggregate-status-count">20</span> Amet
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="pficon pficon-cluster"></span>
+      <span class="card-pf-aggregate-status-count">9</span> Adipiscing
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+            <h2 class="card-pf-title">
+              <a href="#">
+                <span class="pficon pficon-image"></span>
+                <span class="card-pf-aggregate-status-count">12</span> Lorem
+              </a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+            <h2 class="card-pf-title">
+              <a href="#">
+                <span class="fa fa-shield"></span>
+                <span class="card-pf-aggregate-status-count">6</span> Dolar Sit
+              </a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+            <h2 class="card-pf-title">
+              <a href="#">
+                <span class="fa fa-rocket"></span>
+                <span class="card-pf-aggregate-status-count">199</span> Consectetur
+              </a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>23</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+        <div class="col-xs-12 col-sm-6 col-md-4">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Top Utilized Clusters
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-description">
+      RHOS6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 95%;"  data-toggle="tooltip" title="95% Used">
+        <span><strong>190.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;" data-toggle="tooltip" title="5% Available">
+        <span class="sr-only">5% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      CFMEQE-Cluster
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;"  data-toggle="tooltip" title="50% Used">
+        <span><strong>100.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Available">
+        <span class="sr-only">50% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHOS-Undercloud
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;"  data-toggle="tooltip" title="70% Used">
+        <span><strong>140.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width: 30%;" data-toggle="tooltip" title="30% Available">
+        <span class="sr-only">30% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHEL6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="76.5" aria-valuemin="0" aria-valuemax="100" style="width: 76.5%;"  data-toggle="tooltip" title="76.5% Used">
+        <span><strong>153.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="23.5" aria-valuemin="0" aria-valuemax="100" style="width: 23.5%;" data-toggle="tooltip" title="23.5% Available">
+        <span class="sr-only">23.5% Available</span>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-4">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Quotas
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        CPU
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
+          <span><strong>115 of 460</strong> MHz</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
+          <span class="sr-only">75% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Memory
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Used">
+          <span><strong>8 of 16</strong> GB</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Available">
+          <span class="sr-only">50% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Pods
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="62.5" aria-valuemin="0" aria-valuemax="100" style="width: 62.5%;" data-toggle="tooltip" title="62.5% Used">
+          <span><strong>5 of 8</strong> Total</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="37.5" aria-valuemin="0" aria-valuemax="100" style="width: 37.5%;" data-toggle="tooltip" title="37.5% Available">
+          <span class="sr-only">37.5% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Services
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;" data-toggle="tooltip" title="100% Used">
+          <span><strong>2 of 2</strong> Total</span>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-4">
+          <div class="card-pf">
+            <div class="card-pf-heading">
+              <h2 class="card-pf-title">
+                Quotas
+              </h2>
+            </div>
+            <div class="card-pf-body">
+              <div class="progress-container progress-description-left">
+                <div class="progress-description">
+                  CPU
+                </div>
+                <div class="progress">
+                  <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
+                    <span class="sr-only">25% Used</span>
+                  </div>
+                  <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
+                    <span class="sr-only">75% Available</span>
+                  </div>
+                </div>
+              </div>
+              <div class="progress-container progress-description-left">
+                <div class="progress-description">
+                  Memory
+                </div>
+                <div class="progress">
+                  <div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Used">
+                    <span class="sr-only">50% Used</span>
+                  </div>
+                  <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Available">
+                    <span class="sr-only">50% Available</span>
+                  </div>
+                </div>
+              </div>
+              <div class="progress-container progress-description-left">
+                <div class="progress-description">
+                  Pods
+                </div>
+                <div class="progress">
+                  <div class="progress-bar" role="progressbar" aria-valuenow="62.5" aria-valuemin="0" aria-valuemax="100" style="width: 62.5%;" data-toggle="tooltip" title="62.5% Used">
+                    <span class="sr-only">62.5% Used</span>
+                  </div>
+                  <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="37.5" aria-valuemin="0" aria-valuemax="100" style="width: 37.5%;" data-toggle="tooltip" title="37.5% Available">
+                    <span class="sr-only">37.5% Available</span>
+                  </div>
+                </div>
+              </div>
+              <div class="progress-container progress-description-left">
+                <div class="progress-description">
+                  Services
+                </div>
+                <div class="progress">
+                  <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;" data-toggle="tooltip" title="100% Used">
+                    <span class="sr-only">100% Used</span>
+                  </div>
+                </div>
+              </div>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-md-12">
+<div class="card-pf card-pf-utilization">
+  <div class="card-pf-heading">
+    <p class="card-pf-heading-details">Last 30 days</p>
+    <h2 class="card-pf-title">
+      Utilization
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="row">
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">CPU</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">50</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1000 MHz</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-1"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-1"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-1';
+          donutConfig.color =  {
+            pattern: ["#cc0000","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 95],
+              ["Available", 5]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' MHz ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart1 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-1").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("950").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("MHz Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-1';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 10, 50, 28, 20, 31, 27, 60, 36, 52, 55, 62, 68, 69, 88, 74, 88, 95],
+            ],
+            type: 'area'
+          };
+          var chart2 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Memory</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">256</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 432 GB</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-2"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-2"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-2';
+          donutConfig.color =  {
+            pattern: ["#3f9c35","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 41],
+              ["Available", 59]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' GB ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart3 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-2").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("176").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("GB Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-2';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 35, 36, 20, 30, 31, 22, 44, 36, 40, 41, 55, 52, 48, 48, 50, 40, 41],
+            ],
+            type: 'area'
+          };
+          var chart4 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Network</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">200</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-3"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-3"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-3';
+          donutConfig.color =  {
+            pattern: ["#EC7A08","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 85],
+              ["Available", 15]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart5 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-3").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-3';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+            ],
+            type: 'area'
+          };
+          var chart6 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-xs-12 col-sm-4 col-md-4">
+<div class="card-pf card-pf-utilization">
+  <h2 class="card-pf-title">
+    Network
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-utilization-details">
+      <span class="card-pf-utilization-card-details-count">200</span>
+        <span class="card-pf-utilization-card-details-description">
+          <span class="card-pf-utilization-card-details-line-1">Available</span>
+          <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+        </span>
+    </p>
+    <div id="chart-pf-donut-4"></div>
+    <div class="chart-pf-sparkline" id="chart-pf-sparkline-4"></div>
+    <script>
+      var c3ChartDefaults = $().c3ChartDefaults();
+
+      var donutConfig = c3ChartDefaults.getDefaultDonutConfig('A');
+      donutConfig.bindto = '#chart-pf-donut-4';
+      donutConfig.color =  {
+        pattern: ["#EC7A08","#D1D1D1"]
+      };
+      donutConfig.data = {
+        type: "donut",
+        columns: [
+          ["Used", 85],
+          ["Available", 15]
+        ],
+        groups: [
+          ["used", "available"]
+        ],
+        order: null
+      };
+      donutConfig.tooltip = {
+        contents: function (d) {
+          return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                  Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                  '</span>';
+        }
+      };
+
+      var chart1 = c3.generate(donutConfig);
+      var donutChartTitle = d3.select("#chart-pf-donut-4").select('text.c3-chart-arcs-title');
+      donutChartTitle.text("");
+      donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+      donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+      var sparklineConfig = c3ChartDefaults.getDefaultSparklineConfig();
+      sparklineConfig.bindto = '#chart-pf-sparkline-4';
+      sparklineConfig.data = {
+        columns: [
+          ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+        ],
+        type: 'area'
+      };
+
+      var chart2 = c3.generate(sparklineConfig);
+    </script>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-xs-12 col-sm-6 col-md-5">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <h2 class="card-pf-title">
+      Card Title
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-7">
+<div class="card-pf">
+  <h2 class="card-pf-title">
+    Card Title
+  </h2>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+  <div class="card-pf-footer">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <p>
+      <a href="#" class="card-pf-link-with-icon">
+        <span class="pficon pficon-add-circle-o"></span>Add New Cluster
+      </a>
+    </p>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-5 col-md-5">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <div class="dropdown card-pf-time-frame-filter">
+                <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+                  Last 30 Days <span class="caret"></span>
+                </button>
+                <ul class="dropdown-menu dropdown-menu-right" role="menu">
+                  <li class="selected"><a href="#">Last 30 Days</a></li>
+                  <li><a href="#">Last 60 Days</a></li>
+                  <li><a href="#">Last 90 Days</a></li>
+                </ul>
+              </div>
+              <p>
+                <a href="#" class="card-pf-link-with-icon disabled">
+                  <span class="pficon pficon-flag"></span>View CPU Events
+                </a>
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-12 col-sm-7 col-md-7">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-8 col-md-8">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-4">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+
+    </div><!-- /container -->
+    <script>
+      $(function() {
+        // matchHeight the contents of each .card-pf and then the .card-pf itself
+        $(".row-cards-pf > [class*='col'] > .card-pf .card-pf-title").matchHeight();
+        $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight();
+        $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-footer").matchHeight();
+        $(".row-cards-pf > [class*='col'] > .card-pf").matchHeight();
+        // initialize tooltips
+        $('[data-toggle="tooltip"]').tooltip();
+      });
+    </script>
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/card-view-card-variations.html b/themes/src/main/node_modules/rcue/tests/card-view-card-variations.html
new file mode 100644
index 0000000..8bab13d
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/card-view-card-variations.html
@@ -0,0 +1,202 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Card View - Card Variations - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Card View - Card Variations</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+<h2>Large Card</h2>
+<div class="cards-pf">
+  <div class="row row-cards-pf">
+    <div class="col-xs-12 col-sm-6 col-md-4 col-lg-3">
+<div class="card-pf card-pf-view ">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+  </div>
+</div>
+<h2>Small Card</h2>
+<div class="cards-pf">
+  <div class="row row-cards-pf">
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+  <div class="card-pf card-pf-view ">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+  </div><!-- /row -->
+</div>
+<h2>Mini Card with status</h2>
+<div class="cards-pf">
+  <div class="row row-cards-pf">
+    <div class="col-xs-12 col-sm-3 col-md-2">
+  <div class="card-pf card-pf-view card-pf-view-xs">
+  <div class="card-pf-body">
+    <div class="card-pf-heading-kebab">
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropupKebabRight2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropupKebabRight2">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+      <h2 class="card-pf-title">
+        <span class="pficon pficon-cluster"></span> Storage_1
+      </h2>
+    </div>
+    <div class="progress-pf-legend">
+      <div class="progress">
+  <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
+    <span class="sr-only">25% Used</span>
+  </div>
+  <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
+    <span class="sr-only">75% Available</span>
+  </div>
+</div>
+<script>
+  // Initialize Tooltip
+  jQuery(document).ready(function() {
+    jQuery('[data-toggle="tooltip"]').tooltip();
+  });
+</script>
+
+      <p><span class="pficon pficon-warning-triangle-o"></span> <strong>25%</strong> in use</p>
+    </div>
+  </div>
+</div>
+
+    </div>
+  </div><!-- /row -->
+</div>
+<h2>Mini Card with text</h2>
+<div class="cards-pf">
+  <div class="row row-cards-pf">
+    <div class="col-xs-12 col-sm-3 col-md-2">
+  <div class="card-pf card-pf-view card-pf-view-xs">
+  <div class="card-pf-body">
+    <div class="card-pf-heading-kebab">
+      <div class="dropup pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropupKebabRight3" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropupKebabRight3">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+      <h2 class="card-pf-title">
+        <span class="pficon pficon-service"></span> Zone_1
+      </h2>
+    </div>
+    <p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque. <a href="#">More info</a></p>
+  </div>
+</div>
+    </div>
+  </div>
+</div>
+<script>
+  $(document).ready(function() {
+    // Card Single Select
+    $('.card-pf-view-single-select').click(function() {
+      if ($(this).hasClass('active'))
+      { $(this).removeClass('active'); }
+      else
+      { $('.card-pf-view-single-select').removeClass('active'); $(this).addClass('active'); }
+    });
+    // Card Multi Select
+    $('input[type=checkbox]').click(function() {
+      if ($(this).parent().parent().hasClass('active'))
+      { $(this).parent().parent().removeClass('active'); }
+      else
+      { $(this).parent().parent().addClass('active'); }
+    });
+  });
+</script>
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/card-view-multi-select.html b/themes/src/main/node_modules/rcue/tests/card-view-multi-select.html
new file mode 100644
index 0000000..0403b94
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/card-view-multi-select.html
@@ -0,0 +1,705 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Card View - Multi Select - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+<div class="toast-pf toast-pf-max-width toast-pf-top-right alert alert-success alert-dismissable">
+  <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+    <span class="pficon pficon-close"></span>
+  </button>
+  <div class="pull-right toast-pf-action">
+    <a href="#">Start Server</a>
+  </div>
+  <span class="pficon pficon-ok"></span>
+  <strong>server_abc</strong> has been added to main server group.
+</div>
+
+  <body class="cards-pf">
+    <nav class="navbar navbar-default navbar-pf" role="navigation">
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+        </a>
+      </div>
+      <div class="collapse navbar-collapse navbar-collapse-1">
+        <ul class="nav navbar-nav navbar-utility">
+          <li class="dropdown">
+            <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+              <span title="Help" class="fa pficon-help"></span>
+              <span class="caret"></span>
+            </a>
+            <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+              <li><a href="#0">Help</a></li>
+              <li><a href="#0">About</a></li>
+            </ul>
+          </li>
+          <li class="dropdown">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+              <span class="pficon pficon-user"></span>
+              Brian Johnson <b class="caret"></b>
+            </a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-submenu">
+                <a tabindex="-1" href="#0">More options</a>
+                <ul class="dropdown-menu">
+                  <li>
+                    <a href="#0">Link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Another link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Something else here</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li class="dropdown-header">Nav header</li>
+                  <li>
+                    <a href="#0">Separated link</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li>
+                    <a href="#0">One more separated link</a>
+                  </li>
+                </ul>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+        <ul class="nav navbar-nav navbar-primary">
+          <li>
+            <a href="basic.html">Basic</a>
+          </li>
+          <li>
+            <a href="bootstrap-treeview-2.html">Tree View</a>
+          </li>
+          <li>
+            <a href="dashboard.html">Dashboard</a>
+          </li>
+          <li>
+            <a href="form.html">Form</a>
+          </li>
+          <li>
+            <a href="tab.html">Tab</a>
+          </li>
+          <li>
+            <a href="typography-2.html">Typography</a>
+          </li>
+          <li class="active">
+            <a href="card-view-multi-select.html" class="active">Card View - Multi Select</a>
+          </li>
+          <li>
+            <a href="card-view-single-select.html">Card View - Single Select</a>
+          </li>
+          <li>
+            <a href="cards.html">Cards</a>
+          </li>
+          <li>
+            <a href="pagination-card-view.html">Pagination - Card View</a>
+          </li>
+        </ul>
+      </div>
+    </nav>
+
+      <div class="container-fluid">
+        <div class="row toolbar-pf">
+          <div class="col-sm-12">
+            <form class="toolbar-pf-actions">
+              <div class="form-group toolbar-pf-filter">
+                <label class="sr-only" for="filter">Name</label>
+                <div class="input-group">
+                  <div class="input-group-btn">
+                    <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
+                    <ul class="dropdown-menu">
+                      <li class="selected"><a href="#">Name</a></li>
+                      <li><a href="#">Type</a></li>
+                      <li><a href="#">Color</a></li>
+                    </ul>
+                  </div><!-- /btn-group -->
+                  <input type="text" class="form-control" id="filter" placeholder="Filter By Name...">
+                </div><!-- /input-group -->
+              </div>
+              <div class="form-group">
+                <div class="dropdown btn-group">
+                  <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
+                  <ul class="dropdown-menu">
+                    <li class="selected"><a href="#">Name</a></li>
+                    <li><a href="#">Type</a></li>
+                    <li><a href="#">Last Modified</a></li>
+                  </ul>
+                </div>
+                <button class="btn btn-link" type="button">
+                  <span class="fa fa-sort-alpha-asc"></span>
+                </button>
+              </div>
+              <div class="form-group">
+                <button class="btn btn-default" type="button">Action</button>
+                <button class="btn btn-default" type="button">Action</button>
+                <div class="dropdown btn-group  dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebab" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu " aria-labelledby="dropdownKebab">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+              </div>
+              <div class="toolbar-pf-action-right">
+                <div class="form-group toolbar-pf-find">
+                  <button class="btn btn-link btn-find" type="button">
+                    <span class="fa fa-search"></span>
+                  </button>
+                  <div class="find-pf-dropdown-container">
+                    <input type="text" class="form-control" id="find" placeholder="Find By Keyword...">
+                    <div class="find-pf-buttons">
+                      <span class="find-pf-nums">1 of 3</span>
+                      <button class="btn btn-link" type="button">
+                        <span class="fa fa-angle-up"></span>
+                      </button>
+                      <button class="btn btn-link" type="button">
+                        <span class="fa fa-angle-down"></span>
+                      </button>
+                      <button class="btn btn-link btn-find-close" type="button">
+                        <span class="pficon pficon-close"></span>
+                      </button>
+                    </div>
+                  </div>
+                </div>
+                <div class="form-group toolbar-pf-view-selector">
+                  <button class="btn btn-link "><i class="fa fa-th"></i></button>
+                  <button class="btn btn-link active"><i class="fa fa-th-large"></i></button>
+                  <button class="btn btn-link "><i class="fa fa-th-list"></i></button>
+                </div>
+              </div>
+            </form>
+            <div class="row toolbar-pf-results">
+              <div class="col-sm-12">
+                <h5>40 Results</h5>
+                <p>Active filters:</p>
+                <ul class="list-inline">
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                </ul>
+                <p><a href="#">Clear All Filters</a></p>
+              </div><!-- /col -->
+            </div><!-- /row -->
+          </div><!-- /col -->
+        </div><!-- /row -->
+      </div><!-- /container -->
+
+<div class="container-fluid container-cards-pf" id="card-container">
+  <div class="row row-cards-pf">
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+  </div>
+</div>
+<script>
+  $(function() {
+    // matchHeight the contents of each .card-pf and then the .card-pf itself
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight();
+  });
+  $(document).ready(function() {
+    // Card Multi Select
+    $('input[type=checkbox]').click(function() {
+      if ($(this).parent().parent().hasClass('active'))
+      { $(this).parent().parent().removeClass('active'); }
+      else
+      { $(this).parent().parent().addClass('active'); }
+    });
+    // allow users to select multiple cards with shift key
+    $('#card-container').on('click', '.card-pf-view-checkbox>input', function(event) {
+      var $cardsContainer = $('.container-cards-pf');
+      var prevIndex = $cardsContainer.data('prevIndex');
+      var $cards = $cardsContainer.find('.card-pf');
+      var $currentCard = $(this).closest('.card-pf');
+      if(event.shiftKey && prevIndex > -1 && this.checked) {
+        var currentIndex = $cards.index($currentCard);
+        var $selectScope = currentIndex - prevIndex > 0
+          ? $currentCard.parent().prevAll().not($cards.eq(prevIndex).parent().prevAll().addBack())
+          : $cards.eq(prevIndex).parent().prevAll().not($currentCard.parent().prevAll().addBack());
+        $selectScope.children().addClass('active').find('.card-pf-view-checkbox').children('input').prop('checked', true);
+      }
+      $cardsContainer.data('prevIndex', this.checked ? $cards.index($currentCard) : -1);
+    });
+  });
+</script>
+
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/card-view-single-select.html b/themes/src/main/node_modules/rcue/tests/card-view-single-select.html
new file mode 100644
index 0000000..2b0bf6d
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/card-view-single-select.html
@@ -0,0 +1,439 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Card View - Single Select - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+<div class="toast-pf toast-pf-max-width toast-pf-top-right alert alert-success alert-dismissable">
+  <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+    <span class="pficon pficon-close"></span>
+  </button>
+  <div class="pull-right toast-pf-action">
+    <a href="#">Start Server</a>
+  </div>
+  <span class="pficon pficon-ok"></span>
+  <strong>server_abc</strong> has been added to main server group.
+</div>
+
+  <body class="cards-pf">
+    <nav class="navbar navbar-default navbar-pf" role="navigation">
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+        </a>
+      </div>
+      <div class="collapse navbar-collapse navbar-collapse-1">
+        <ul class="nav navbar-nav navbar-utility">
+          <li class="dropdown">
+            <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+              <span title="Help" class="fa pficon-help"></span>
+              <span class="caret"></span>
+            </a>
+            <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+              <li><a href="#0">Help</a></li>
+              <li><a href="#0">About</a></li>
+            </ul>
+          </li>
+          <li class="dropdown">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+              <span class="pficon pficon-user"></span>
+              Brian Johnson <b class="caret"></b>
+            </a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-submenu">
+                <a tabindex="-1" href="#0">More options</a>
+                <ul class="dropdown-menu">
+                  <li>
+                    <a href="#0">Link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Another link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Something else here</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li class="dropdown-header">Nav header</li>
+                  <li>
+                    <a href="#0">Separated link</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li>
+                    <a href="#0">One more separated link</a>
+                  </li>
+                </ul>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+        <ul class="nav navbar-nav navbar-primary">
+          <li>
+            <a href="basic.html">Basic</a>
+          </li>
+          <li>
+            <a href="bootstrap-treeview-2.html">Tree View</a>
+          </li>
+          <li>
+            <a href="dashboard.html">Dashboard</a>
+          </li>
+          <li>
+            <a href="form.html">Form</a>
+          </li>
+          <li>
+            <a href="tab.html">Tab</a>
+          </li>
+          <li>
+            <a href="typography-2.html">Typography</a>
+          </li>
+          <li>
+            <a href="card-view-multi-select.html">Card View - Multi Select</a>
+          </li>
+          <li class="active">
+            <a href="card-view-single-select.html" class="active">Card View - Single Select</a>
+          </li>
+          <li>
+            <a href="cards.html">Cards</a>
+          </li>
+          <li>
+            <a href="pagination-card-view.html">Pagination - Card View</a>
+          </li>
+        </ul>
+      </div>
+    </nav>
+
+      <div class="container-fluid">
+        <div class="row toolbar-pf">
+          <div class="col-sm-12">
+            <form class="toolbar-pf-actions">
+              <div class="form-group toolbar-pf-filter">
+                <label class="sr-only" for="filter">Name</label>
+                <div class="input-group">
+                  <div class="input-group-btn">
+                    <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
+                    <ul class="dropdown-menu">
+                      <li class="selected"><a href="#">Name</a></li>
+                      <li><a href="#">Type</a></li>
+                      <li><a href="#">Color</a></li>
+                    </ul>
+                  </div><!-- /btn-group -->
+                  <input type="text" class="form-control" id="filter" placeholder="Filter By Name...">
+                </div><!-- /input-group -->
+              </div>
+              <div class="form-group">
+                <div class="dropdown btn-group">
+                  <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
+                  <ul class="dropdown-menu">
+                    <li class="selected"><a href="#">Name</a></li>
+                    <li><a href="#">Type</a></li>
+                    <li><a href="#">Last Modified</a></li>
+                  </ul>
+                </div>
+                <button class="btn btn-link" type="button">
+                  <span class="fa fa-sort-alpha-asc"></span>
+                </button>
+              </div>
+              <div class="form-group">
+                <button class="btn btn-default" type="button">Action</button>
+                <button class="btn btn-default" type="button">Action</button>
+                <div class="dropdown btn-group  dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebab" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu " aria-labelledby="dropdownKebab">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+              </div>
+              <div class="toolbar-pf-action-right">
+                <div class="form-group toolbar-pf-find">
+                  <button class="btn btn-link btn-find" type="button">
+                    <span class="fa fa-search"></span>
+                  </button>
+                  <div class="find-pf-dropdown-container">
+                    <input type="text" class="form-control" id="find" placeholder="Find By Keyword...">
+                    <div class="find-pf-buttons">
+                      <span class="find-pf-nums">1 of 3</span>
+                      <button class="btn btn-link" type="button">
+                        <span class="fa fa-angle-up"></span>
+                      </button>
+                      <button class="btn btn-link" type="button">
+                        <span class="fa fa-angle-down"></span>
+                      </button>
+                      <button class="btn btn-link btn-find-close" type="button">
+                        <span class="pficon pficon-close"></span>
+                      </button>
+                    </div>
+                  </div>
+                </div>
+                <div class="form-group toolbar-pf-view-selector">
+                  <button class="btn btn-link "><i class="fa fa-th"></i></button>
+                  <button class="btn btn-link active"><i class="fa fa-th-large"></i></button>
+                  <button class="btn btn-link "><i class="fa fa-th-list"></i></button>
+                </div>
+              </div>
+            </form>
+            <div class="row toolbar-pf-results">
+              <div class="col-sm-12">
+                <h5>40 Results</h5>
+                <p>Active filters:</p>
+                <ul class="list-inline">
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                </ul>
+                <p><a href="#">Clear All Filters</a></p>
+              </div><!-- /col -->
+            </div><!-- /row -->
+          </div><!-- /col -->
+        </div><!-- /row -->
+      </div><!-- /container -->
+
+<div class="container-fluid container-cards-pf">
+  <div class="row row-cards-pf">
+    <div class="col-xs-12 col-sm-6 col-md-4 col-lg-3">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-single-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-6 col-md-4 col-lg-3">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-single-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-6 col-md-4 col-lg-3">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-single-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-6 col-md-4 col-lg-3">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-single-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-6 col-md-4 col-lg-3">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-single-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-6 col-md-4 col-lg-3">
+<div class="card-pf card-pf-view card-pf-view-select card-pf-view-single-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+  </div>
+</div>
+<script>
+  $(function() {
+    // matchHeight the contents of each .card-pf and then the .card-pf itself
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight();
+  });
+  $(document).ready(function() {
+    // Card Single Select
+    $('.card-pf-view-single-select').click(function() {
+      if ($(this).hasClass('active'))
+      { $(this).removeClass('active'); }
+      else
+      { $('.card-pf-view-single-select').removeClass('active'); $(this).addClass('active'); }
+    });
+  });
+</script>
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/code.html b/themes/src/main/node_modules/rcue/tests/code.html
new file mode 100644
index 0000000..7fe7258
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/code.html
@@ -0,0 +1,83 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Code - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="//rawgit.com/tcollard/google-code-prettify/v1.0.4/bin/prettify.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Code</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <h2>Inline</h2>
+      <p>For example, <code>&lt;section&gt;</code> should be wrapped as inline.</p>
+      <h2>User input</h2>
+      <p>To switch directories, type <kbd>cd</kbd> followed by the name of the directory.<br>
+      To edit settings, press <kbd><kbd>ctrl</kbd> + <kbd>,</kbd></kbd></p>
+      <h2>Basic block</h2>
+      <pre>&lt;p class="my-class"&gt;Sample text here...&lt;/p&gt;</pre>
+      <h2>Variables</h2>
+      <var>y</var> = <var>m</var><var>x</var> + <var>b</var>
+      <h2>Sample output</h2>
+      <samp>This text is meant to be treated as sample output from a computer program.</samp>
+      <h2>Syntax highlighting with google-code-prettify</h2>
+      <h3>Basic block</h3>
+      <pre class="prettyprint">&lt;p class="my-class"&gt;Sample text here...&lt;/p&gt;</pre>
+      <h3>Larger block with line numbers</h3>
+      <pre class="prettyprint linenums lang-html">
+&lt;!doctype html&gt;
+&lt;html lang=&quot;en&quot;&gt;
+&lt;head&gt;
+  &lt;meta charset=&quot;utf-8&quot;&gt;
+  &lt;title&gt;&lt;/title&gt;
+  &lt;link rel=&quot;stylesheet&quot; href=&quot;css/style.css&quot;&gt;
+&lt;/head&gt;
+&lt;body&gt;
+  &lt;header&gt;&lt;/header&gt;
+  &lt;div role=&quot;main&quot;&gt;&lt;/div&gt;
+  &lt;footer&gt;&lt;/footer&gt;
+  &lt;script src=&quot;js/script.js&quot;&gt;&lt;/script&gt;
+&lt;/body&gt;
+&lt;/html&gt;
+</pre>
+      <script>
+        $(document).ready(function(){
+          prettyPrint();
+        });
+      </script>
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/context-selector.html b/themes/src/main/node_modules/rcue/tests/context-selector.html
new file mode 100644
index 0000000..60a7236
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/context-selector.html
@@ -0,0 +1,122 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Context Selector - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Context Selector</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+
+
+<nav class="navbar navbar-pf-vertical navbar-pf-contextselector">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a href="/" class="navbar-brand hidden-sm hidden-xs">
+      <img class="navbar-brand-icon" src="/dist/img/logo.svg" alt=""/><img class="navbar-brand-name" src="/dist/img/brand-alt.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+    
+    <ul class="nav contextselector-pf">
+  <li class="dropdown">
+    <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu35" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+      <span class="contextselector-pf-title">Really long server name server name</span>
+      <span class="caret"></span>
+    </a>
+    <div class="dropdown-menu" aria-labelledby="dropdownMenu35">
+    <div class="form-group">
+    <label class="sr-only" for="searchinput">search</label>
+    <input type="text" class="form-control" id="searchinput" placeholder="Search">
+  </div>
+    <ul class="contextselector-pf-list list-unstyled">
+      <li><a href="#0">A Different Context</a></li>
+      <li><a href="#0">A Second Context</a></li>
+      <li><a href="#0">Current</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+    </ul>
+  </div>
+  </li>
+</ul>
+
+    
+  </div>
+  <nav class="collapse navbar-collapse">
+    <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
+      
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu15">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu25" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Username" class="fa pficon-user"></span>
+          Brian Johnson <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu25">
+          <li><a href="#0">Preferences</a></li>
+          <li><a href="#0">Logout</a></li>
+        </ul>
+      </li>
+    </ul>
+  </nav>
+  
+</nav> <!--/.navbar-->
+
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/context-selector-vertical-nav.html b/themes/src/main/node_modules/rcue/tests/context-selector-vertical-nav.html
new file mode 100644
index 0000000..b545764
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/context-selector-vertical-nav.html
@@ -0,0 +1,1810 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 layout-pf layout-pf-fixed"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="layout-pf layout-pf-fixed">
+  <!--<![endif]-->
+    <head>
+    <title>Context Selector for Vertical Navigation - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body class="cards-pf">
+    
+
+  
+
+<nav class="navbar navbar-pf-vertical navbar-pf-contextselector">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a href="/" class="navbar-brand hidden-sm hidden-xs">
+      <img class="navbar-brand-icon" src="/dist/img/logo.svg" alt=""/><img class="navbar-brand-name" src="/dist/img/brand-alt.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+    
+    <ul class="nav contextselector-pf">
+  <li class="dropdown">
+    <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu3" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+      <span class="contextselector-pf-title">Really long server name server name</span>
+      <span class="caret"></span>
+    </a>
+    <div class="dropdown-menu" aria-labelledby="dropdownMenu3">
+    <div class="form-group">
+    <label class="sr-only" for="searchinput">search</label>
+    <input type="text" class="form-control" id="searchinput" placeholder="Search">
+  </div>
+    <ul class="contextselector-pf-list list-unstyled">
+      <li><a href="#0">A Different Context</a></li>
+      <li><a href="#0">A Second Context</a></li>
+      <li><a href="#0">Current</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+    </ul>
+  </div>
+  </li>
+</ul>
+
+    
+  </div>
+  <nav class="collapse navbar-collapse">
+    <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
+      
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Username" class="fa pficon-user"></span>
+          Brian Johnson <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
+          <li><a href="#0">Preferences</a></li>
+          <li><a href="#0">Logout</a></li>
+        </ul>
+      </li>
+    </ul>
+  </nav>
+  
+  <div class="drawer-pf hide drawer-pf-notifications-non-clickable">
+  <div class="drawer-pf-title">
+    <a class="drawer-pf-toggle-expand fa fa-angle-double-left hidden-xs"></a>
+    <a  class="drawer-pf-close pficon pficon-close"></a>
+    <h3 class="text-center">Notifications Drawer</h3>
+  </div>
+  <div class="panel-group" id="notification-drawer-accordion">
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseOne">
+            Notification Tab 1
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseOne" class="panel-collapse collapse in">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight11">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight21" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight21">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight31" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight31">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight41" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight41">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseTwo">
+            Notification Tab 2
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseTwo" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight12">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight22" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight22">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight32" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight32">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight42" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight42">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight13">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight23" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight23">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight33" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight33">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight43" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight43">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight14">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight24" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight24">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight34" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight34">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight44" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight44">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-loading text-center">
+            <span class="spinner spinner-xs spinner-inline"></span> Loading More
+          </div>
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseThree">
+            Notification Tab 3
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseThree" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight15">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight25" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight25">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight35" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight35">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight45" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight45">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight16" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight16">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight26" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight26">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight36" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight36">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight46" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight46">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight17" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight17">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight27" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight27">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight37" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight37">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight47" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight47">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  $(document).ready(function() {
+    // Initialize to unread notifications
+    // TODO: add badge for unread notifications
+
+    // Show/Hide Notifications Drawer
+    $('.drawer-pf-trigger').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $(this).toggleClass('open');
+      if ($drawer.hasClass('hide')) {
+        $drawer.removeClass('hide');
+        setTimeout(function () {
+          if (window.dispatchEvent) {
+            window.dispatchEvent(new Event('resize'));
+          }
+          // Special case for IE
+          if ($(document).fireEvent) {
+            $(document).fireEvent('onresize');
+          }
+        }, 100);
+      } else {
+        $drawer.addClass('hide');
+      }
+      // Special case, close navigation menu in mobile mode
+     if ($('.container-pf-nav-pf-vertical').hasClass('hidden-nav')) {
+       $('.nav-pf-vertical').removeClass('show-mobile-nav');
+     }
+    });
+    $('.drawer-pf-close').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $('.drawer-pf-trigger').removeClass('open');
+      $drawer.addClass('hide');
+    });
+    $('.drawer-pf-toggle-expand').click(function() {
+      var $drawer = $('.drawer-pf');
+      var $drawerNotifications = $drawer.find('.drawer-pf-notification');
+
+      if ($drawer.hasClass('drawer-pf-expanded')) {
+        $drawer.removeClass('drawer-pf-expanded');
+        $drawerNotifications.removeClass('expanded-notification');
+      } else {
+        $drawer.addClass('drawer-pf-expanded');
+        $drawerNotifications.addClass('expanded-notification');
+      }
+    });
+
+    // Mark All Read / Clear All
+    $('.panel-collapse').each(function (index, panel) {
+      var $panel = $(panel);
+      var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+      $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+
+      if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+        // TODO: remove badge for unread indicator
+      }
+
+      $panel.on('click', '.drawer-pf-action [data-toggle="mark-all-read"] .btn', function() {
+        $panel.find('.unread').removeClass('unread');
+        $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          $('.drawer-pf-trigger').removeClass('unread');
+        }
+      });
+      $panel.on('click', '.drawer-pf-action [data-toggle="clear-all"] .btn', function() {
+        $panel.find('.panel-body .drawer-pf-notification').remove();
+        $panel.find('.drawer-pf-action').remove();
+        $panel.find('.blank-slate-pf').removeClass('hidden');
+        $panel.find('.drawer-pf-loading').addClass('hidden');
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          // TODO: remove badge for unread indicator
+        }
+      });
+
+      $panel.find('.drawer-pf-notification').each(function (index, notification) {
+        var $notification = $(notification);
+        $notification.on('click', '.drawer-pf-notification-content', function() {
+          $notification.removeClass('unread');
+          var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+          $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+          if (unreadCount === 0) {
+            $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+            if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+              // TODO: remove badge for unread indicator
+            }
+          }
+        });
+      });
+    });
+
+    $('#notification-drawer-accordion').initCollapseHeights('.panel-body');
+  });
+</script>
+
+  
+</nav> <!--/.navbar-->
+
+
+<div class="nav-pf-vertical nav-pf-vertical-with-sub-menus
+     
+     
+     
+     ">
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-dashboard" data-toggle="tooltip" title="Dashboard"></span>
+        <span class="list-group-item-value">Dashboard</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-shield" data-toggle="tooltip" title="Dolor"></span>
+        <span class="list-group-item-value">Dolor</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item active secondary-nav-item-pf" data-target="#ipsum-secondary">
+      <a href="#0">
+        <span class="fa fa-space-shuttle" data-toggle="tooltip" title="Ipsum"></span>
+        <span class="list-group-item-value">Ipsum</span>
+      </a>
+      
+      <div id="-secondary" class="nav-pf-secondary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+    <span>Ipsum</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item active " data-target="#ipsum-intellegam-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Intellegam</span>
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#ipsum-copiosae-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Copiosae</span>
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#ipsum-patrioque-tertiary">
+      <a href="#0" >
+        <span class="list-group-item-value">Patrioque</span>
+      </a>
+      
+    </li>
+    
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item secondary-nav-item-pf" data-target="#amet-secondary">
+      <a href="#0">
+        <span class="fa fa-paper-plane" data-toggle="tooltip" title="Amet"></span>
+        <span class="list-group-item-value">Amet</span>
+      </a>
+      
+      <div id="amet-secondary" class="nav-pf-secondary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+    <span>Amet</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item " data-target="#amet-detracto-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Detracto Suscipiantur</span>
+        
+        
+        
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#amet-mediocrem-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Mediocrem</span>
+        
+        
+        
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#amet-corrumpit-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Corrumpit Cupidatat Proident Deserunt</span>
+        
+        
+        
+      </a>
+      
+    </li>
+    
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-graduation-cap" data-toggle="tooltip" title="Adipscing"></span>
+        <span class="list-group-item-value">Adipscing</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-gamepad" data-toggle="tooltip" title="Lorem"></span>
+        <span class="list-group-item-value">Lorem</span>
+      </a>
+    </li>
+    
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block">
+      <a href="#0">
+        <span class="pficon pficon-user" data-toggle="tooltip" title="" data-original-title="User"></span>
+        <span class="list-group-item-value">User</span>
+      </a>
+      <div id="user-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>User</span>
+        </div>
+
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Preferences</span>
+            </a>
+          </li>
+
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Logout</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block" data-target="#amet-secondary">
+      <a href="#0">
+        <span class="pficon pficon-help" data-toggle="tooltip" title="" data-original-title="Help"></span>
+        <span class="list-group-item-value">Help</span>
+      </a>
+      <div id="help-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>Help</span>
+        </div>
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Help</span>
+            </a>
+          </li>
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">About</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+
+  </ul>
+
+</div>
+<div class="container-fluid container-cards-pf container-pf-nav-pf-vertical
+     
+     
+     ">
+
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">20</span> Amet</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-warning-triangle-o"></span>1</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">9</span> Adipiscing</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status">
+            <h2 class="card-pf-title">
+              <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">12</span> Lorem</a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <span class="fa fa-rebel"></span>
+    <span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="fa fa-paper-plane"></span>
+      <span class="card-pf-aggregate-status-count">20</span> Amet
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="pficon pficon-cluster"></span>
+      <span class="card-pf-aggregate-status-count">9</span> Adipiscing
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+            <h2 class="card-pf-title">
+              <a href="#">
+                <span class="pficon pficon-image"></span>
+                <span class="card-pf-aggregate-status-count">12</span> Lorem
+              </a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Top Utilized Clusters
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-description">
+      RHOS6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 95%;"  data-toggle="tooltip" title="95% Used">
+        <span><strong>190.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;" data-toggle="tooltip" title="5% Available">
+        <span class="sr-only">5% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      CFMEQE-Cluster
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;"  data-toggle="tooltip" title="50% Used">
+        <span><strong>100.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Available">
+        <span class="sr-only">50% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHOS-Undercloud
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;"  data-toggle="tooltip" title="70% Used">
+        <span><strong>140.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width: 30%;" data-toggle="tooltip" title="30% Available">
+        <span class="sr-only">30% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHEL6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="76.5" aria-valuemin="0" aria-valuemax="100" style="width: 76.5%;"  data-toggle="tooltip" title="76.5% Used">
+        <span><strong>153.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="23.5" aria-valuemin="0" aria-valuemax="100" style="width: 23.5%;" data-toggle="tooltip" title="23.5% Available">
+        <span class="sr-only">23.5% Available</span>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Quotas
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        CPU
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
+          <span><strong>115 of 460</strong> MHz</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
+          <span class="sr-only">75% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Memory
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Used">
+          <span><strong>8 of 16</strong> GB</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Available">
+          <span class="sr-only">50% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Pods
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="62.5" aria-valuemin="0" aria-valuemax="100" style="width: 62.5%;" data-toggle="tooltip" title="62.5% Used">
+          <span><strong>5 of 8</strong> Total</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="37.5" aria-valuemin="0" aria-valuemax="100" style="width: 37.5%;" data-toggle="tooltip" title="37.5% Available">
+          <span class="sr-only">37.5% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Services
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;" data-toggle="tooltip" title="100% Used">
+          <span><strong>2 of 2</strong> Total</span>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-md-12">
+<div class="card-pf card-pf-utilization">
+  <div class="card-pf-heading">
+    <p class="card-pf-heading-details">Last 30 days</p>
+    <h2 class="card-pf-title">
+      Utilization
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="row">
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">CPU</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">50</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1000 MHz</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-1"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-1"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-1';
+          donutConfig.color =  {
+            pattern: ["#cc0000","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 95],
+              ["Available", 5]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' MHz ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart1 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-1").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("950").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("MHz Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-1';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 10, 50, 28, 20, 31, 27, 60, 36, 52, 55, 62, 68, 69, 88, 74, 88, 95],
+            ],
+            type: 'area'
+          };
+          var chart2 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Memory</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">256</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 432 GB</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-2"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-2"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-2';
+          donutConfig.color =  {
+            pattern: ["#3f9c35","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 41],
+              ["Available", 59]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' GB ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart3 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-2").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("176").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("GB Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-2';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 35, 36, 20, 30, 31, 22, 44, 36, 40, 41, 55, 52, 48, 48, 50, 40, 41],
+            ],
+            type: 'area'
+          };
+          var chart4 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Network</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">200</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-3"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-3"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-3';
+          donutConfig.color =  {
+            pattern: ["#EC7A08","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 85],
+              ["Available", 15]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart5 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-3").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-3';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+            ],
+            type: 'area'
+          };
+          var chart6 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-xs-12 col-sm-4 col-md-4">
+<div class="card-pf card-pf-utilization">
+  <h2 class="card-pf-title">
+    Network
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-utilization-details">
+      <span class="card-pf-utilization-card-details-count">200</span>
+        <span class="card-pf-utilization-card-details-description">
+          <span class="card-pf-utilization-card-details-line-1">Available</span>
+          <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+        </span>
+    </p>
+    <div id="chart-pf-donut-4"></div>
+    <div class="chart-pf-sparkline" id="chart-pf-sparkline-4"></div>
+    <script>
+      var c3ChartDefaults = $().c3ChartDefaults();
+
+      var donutConfig = c3ChartDefaults.getDefaultDonutConfig('A');
+      donutConfig.bindto = '#chart-pf-donut-4';
+      donutConfig.color =  {
+        pattern: ["#EC7A08","#D1D1D1"]
+      };
+      donutConfig.data = {
+        type: "donut",
+        columns: [
+          ["Used", 85],
+          ["Available", 15]
+        ],
+        groups: [
+          ["used", "available"]
+        ],
+        order: null
+      };
+      donutConfig.tooltip = {
+        contents: function (d) {
+          return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                  Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                  '</span>';
+        }
+      };
+
+      var chart1 = c3.generate(donutConfig);
+      var donutChartTitle = d3.select("#chart-pf-donut-4").select('text.c3-chart-arcs-title');
+      donutChartTitle.text("");
+      donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+      donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+      var sparklineConfig = c3ChartDefaults.getDefaultSparklineConfig();
+      sparklineConfig.bindto = '#chart-pf-sparkline-4';
+      sparklineConfig.data = {
+        columns: [
+          ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+        ],
+        type: 'area'
+      };
+
+      var chart2 = c3.generate(sparklineConfig);
+    </script>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-5">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <h2 class="card-pf-title">
+      Card Title
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-7">
+<div class="card-pf">
+  <h2 class="card-pf-title">
+    Card Title
+  </h2>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+  <div class="card-pf-footer">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <p>
+      <a href="#" class="card-pf-link-with-icon">
+        <span class="pficon pficon-add-circle-o"></span>Add New Cluster
+      </a>
+    </p>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-5 col-md-5">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <div class="dropdown card-pf-time-frame-filter">
+                <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+                  Last 30 Days <span class="caret"></span>
+                </button>
+                <ul class="dropdown-menu dropdown-menu-right" role="menu">
+                  <li class="selected"><a href="#">Last 30 Days</a></li>
+                  <li><a href="#">Last 60 Days</a></li>
+                  <li><a href="#">Last 90 Days</a></li>
+                </ul>
+              </div>
+              <p>
+                <a href="#" class="card-pf-link-with-icon">
+                  <span class="pficon pficon-flag"></span>View CPU Events
+                </a>
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-12 col-sm-7 col-md-7">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-8 col-md-8">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-4">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+
+</div>
+<script>
+  $(document).ready(function() {
+    // matchHeight the contents of each .card-pf and then the .card-pf itself
+    $(".row-cards-pf > [class*='col'] > .card-pf .card-pf-title").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-footer").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf").matchHeight();
+
+    // Initialize the vertical navigation
+    $().setupVerticalNavigation(true);
+  });
+</script>
+
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/dashboard.html b/themes/src/main/node_modules/rcue/tests/dashboard.html
new file mode 100644
index 0000000..5adf239
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/dashboard.html
@@ -0,0 +1,360 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Dashboard - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body>
+    <nav class="navbar navbar-default navbar-pf" role="navigation">
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+        </a>
+      </div>
+      <div class="collapse navbar-collapse navbar-collapse-1">
+        <ul class="nav navbar-nav navbar-utility">
+          <li class="dropdown">
+            <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+              <span title="Help" class="fa pficon-help"></span>
+              <span class="caret"></span>
+            </a>
+            <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+              <li><a href="#0">Help</a></li>
+              <li><a href="#0">About</a></li>
+            </ul>
+          </li>
+          <li class="dropdown">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+              <span class="pficon pficon-user"></span>
+              Brian Johnson <b class="caret"></b>
+            </a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-submenu">
+                <a tabindex="-1" href="#0">More options</a>
+                <ul class="dropdown-menu">
+                  <li>
+                    <a href="#0">Link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Another link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Something else here</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li class="dropdown-header">Nav header</li>
+                  <li>
+                    <a href="#0">Separated link</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li>
+                    <a href="#0">One more separated link</a>
+                  </li>
+                </ul>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+        <ul class="nav navbar-nav navbar-primary">
+          <li>
+            <a href="basic.html">Basic</a>
+          </li>
+          <li>
+            <a href="bootstrap-treeview-2.html">Tree View</a>
+          </li>
+          <li class="active">
+            <a href="dashboard.html" class="active">Dashboard</a>
+          </li>
+          <li>
+            <a href="form.html">Form</a>
+          </li>
+          <li>
+            <a href="tab.html">Tab</a>
+          </li>
+          <li>
+            <a href="typography-2.html">Typography</a>
+          </li>
+          <li>
+            <a href="card-view-multi-select.html">Card View - Multi Select</a>
+          </li>
+          <li>
+            <a href="card-view-single-select.html">Card View - Single Select</a>
+          </li>
+          <li>
+            <a href="cards.html">Cards</a>
+          </li>
+          <li>
+            <a href="pagination-card-view.html">Pagination - Card View</a>
+          </li>
+        </ul>
+      </div>
+    </nav>
+
+    <div class="container-fluid">
+      <div class="row">
+        <div class="col-sm-8 col-md-9">
+          <div class="page-header page-header-bleed-right">
+            <div class="actions pull-right">
+              <a href="#"><span class="pficon pficon-refresh"></span> Refresh Results</a>
+            </div>
+            <h1>Dashboard</h1>
+          </div>
+          <h2 class="h4">Infrastructure Performance</h2>
+          <div id="chart"></div>
+          <hr>
+          <h2 class="h4">Resource Usage</h2>
+          <div class="row">
+            <div class="col-sm-6">
+                <div id="chart2"></div>
+            </div>
+            <div class="col-sm-6">
+              <img src="/img/dashboard-3.png" alt="Placeholder graph" class="img-responsive" />
+            </div>
+          </div>
+          <hr>
+          <h2 class="h4">Infrastructure Capacity</h2>
+          <div class="row">
+            <div class="col-sm-6">
+              <div id="chart4"></div>
+            </div>
+            <div class="col-sm-6">
+              <table class="table">
+                <tr>
+                  <th>Status</th>
+                  <th>Location Data</th>
+                  <th>Hosts</th>
+                </tr>
+                <tr>
+                  <td><span class="label label-success">New</span></td>
+                  <td><strong>Fusce leo massa</strong><br>Created March 05, 2014 08:34:36 AM</td>
+                  <td><span class="label label-default">11</span></td>
+                </tr>
+                <tr>
+                  <td><span class="label label-success">New</span></td>
+                  <td><strong>Iaculis at dapibus eget</strong><br>Created March 03, 2014 20:32:12 AM</td>
+                  <td><span class="label label-default">9</span></td>
+                </tr>
+                <tr>
+                  <td><span class="label label-default">Disabled</span></td>
+                  <td><strong>Dapibus nec metus</strong><br>Created March 03, 2014 19:11:56 AM</td>
+                  <td><span class="label label-default">25</span></td>
+                </tr>
+              </table>
+              <p><a href="#">See more &raquo;</a></p>
+            </div>
+          </div>
+        </div><!-- /col -->
+        <div class="col-sm-4 col-md-3 sidebar-pf sidebar-pf-right">
+          <div class="sidebar-header sidebar-header-bleed-left sidebar-header-bleed-right">
+            <div class="actions pull-right">
+              <a href="#">Clear Messages</a>
+            </div>
+            <h2 class="h5">Latest Notifications</h2>
+          </div>
+          <ul class="list-group">
+            <li class="list-group-item">
+              <h3 class="list-group-item-heading">Duis eu augue lectus</h3>
+              <p class="list-group-item-text">Donec id elit non mi porta gravida at eget metus.</p>
+            </li>
+            <li class="list-group-item">
+              <h3 class="list-group-item-heading">Donec dictum odio eu turpis rutrum</h3>
+              <p class="list-group-item-text">Etiam sit amet ultricies ligula.</p>
+            </li>
+            <li class="list-group-item">
+              <h3 class="list-group-item-heading">At egestas nibh dictum</h3>
+              <p class="list-group-item-text">Maecenas vitae tempus mauris.</p>
+            </li>
+            <li class="list-group-item">
+              <h3 class="list-group-item-heading">Phasellus dictum posuere ante sit</h3>
+              <p class="list-group-item-text">Pellentesque rutrum justo in congue tristique.</p>
+            </li>
+            <li class="list-group-item">
+              <h3 class="list-group-item-heading">Amet commodo</h3>
+              <p class="list-group-item-text">Pellentesque in leo elit.</p>
+            </li>
+            <li class="list-group-item">
+              <h3 class="list-group-item-heading">Nunc viverra purus libero</h3>
+              <p class="list-group-item-text">Nulla lacinia lorem quis enim posuere dictum.</p>
+            </li>
+            <li class="list-group-item">
+              <h3 class="list-group-item-heading">Non faucibus augue dapibus at</h3>
+              <p class="list-group-item-text">Fusce id rutrum ante, eget vestibulum dolor</p>
+            </li>
+            <li class="list-group-item">
+              <h3 class="list-group-item-heading">Vivamus at semper</h3>
+              <p class="list-group-item-text">Duis sagittis vitae neque at vehicula.</p>
+            </li>
+            <li class="list-group-item">
+              <h3 class="list-group-item-heading">Sed sit amet dolor</h3>
+              <p class="list-group-item-text">Donec id elit non mi porta gravida at eget metus.</p>
+            </li>
+          </ul>
+          <p><a href="#">See all messages</a></p>
+        </div><!-- /col -->
+      </div><!-- /row -->
+    </div><!-- /container -->
+    <script>
+      var c3ChartDefaults = $().c3ChartDefaults();
+
+      var chart = c3.generate({
+        axis: {
+          x: {
+            tick: {
+              format: '%m-%d',
+              outer: false
+            },
+            type: 'timeseries'
+          },
+          y: {
+            tick: {
+              format: function(d) { return d + "%"; },
+              outer: false
+            }
+          }
+        },
+        bindto: '#chart',
+        color: c3ChartDefaults.getDefaultColors(),
+        data: {
+          columns: [
+            ['x', '2015-04-01', '2015-04-02', '2015-04-03', '2015-04-04', '2015-04-05', '2015-04-06', '2015-04-07'],
+            ['data1', 16, 44, 33, 88, 50, 76, 21]
+          ],
+          x: 'x'
+        },
+        grid: {
+          y: {
+            show: true
+          }
+        },
+        legend: {
+          hide: true
+        },
+        point: {
+          r: 4
+        },
+        size: {
+          height: 220
+        }
+      });
+
+      var donutChartConfig = c3ChartDefaults.getDefaultDonutConfig('29,210 Host');
+      donutChartConfig.bindto = '#chart2';
+      donutChartConfig.tooltip = {show: true};
+      donutChartConfig.data = {
+        colors: {
+          Cloud: '#006e9c',
+          Virtual: '#00a8e1',
+          Baremetal: '#969696'
+        },
+        columns: [
+          ['Cloud', 4,828],
+          ['Virtual', 13,258],
+          ['Baremetal', 11,1124]
+        ],
+        type : 'donut',
+        onclick: function (d, i) { console.log("onclick", d, i); },
+        onmouseover: function (d, i) { console.log("onmouseover", d, i); },
+        onmouseout: function (d, i) { console.log("onmouseout", d, i); }
+      };
+      var chart2 = c3.generate(donutChartConfig);
+
+      var chart4 = c3.generate({
+        axis: {
+          rotated: true,
+          x: {
+            categories: ['Location 1', 'Location 2', 'Location 3', 'Location 4'],
+            tick: {
+              outer: false
+            },
+            type: 'category'
+          },
+          y: {
+            tick: {
+              format: function(d) { return d + "%"; },
+              outer: false
+            }
+          }
+        },
+        bindto: '#chart4',
+        color: c3ChartDefaults.getDefaultColors(),
+        data: {
+          columns: [
+            ['Virtual Resources', 25, 35, 18, 78],
+            ['Physical Resources', 60, 40, 48, 8]
+          ],
+          groups: [
+            ['Virtual Resources', 'Physical Resources']
+          ],
+          type: 'bar'
+        },
+        grid: {
+          y: {
+            show: true
+          }
+        },
+        size: {
+          height: 200
+        }
+      });
+    </script>
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/donut-charts.html b/themes/src/main/node_modules/rcue/tests/donut-charts.html
new file mode 100644
index 0000000..3d9f47b
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/donut-charts.html
@@ -0,0 +1,340 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Donut Charts - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Donut Charts</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://c3js.org/">http://c3js.org/</a>
+      </div>
+      <hr>
+<style>
+  .example-donut-chart, .example-donut-chart-right-legend, .example-donut-chart-bottom-legend {
+    width: 440px;
+  }
+  .example-donut-chart {
+    margin-left: 10px;
+  }
+  .example-donut-chart-right-legend {
+    margin-left: 28px;
+  }
+  .example-donut-chart-bottom-legend {
+    margin-left: -25px;
+  }
+  .example-donut-chart-mini {
+    margin-left: 28px;
+  }
+  .example-donut-chart-utilization {
+    width: 220px;
+    margin-left: 10px;
+  }
+</style>
+<div>
+  <h2>Donut Chart - Utilization</h2>
+  <div class="text-center">
+    <div id="utilizationDonutChart1" class="example-donut-chart-utilization"></div>
+
+<div class="pct-donut-chart-pf example-donut-chart-utilization">
+  <div class="pct-donut-chart-pf-chart">
+    <div id="utilizationDonutChart2"></div>
+  </div>
+  <span class="pct-donut-chart-pf-label">
+    60 MHz of 100 MHz used
+  </span>
+</div>
+
+<div class="example-donut-chart-utilization">
+  <span class="pct-donut-chart-pf pct-donut-chart-pf-left">
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart3"></div>
+    </div>
+    <span class="pct-donut-chart-pf-label text-right">
+      60 MHz of 100 MHz used
+    </span>
+  </span>
+</div>
+
+<div class="example-donut-chart-utilization">
+  <span class="pct-donut-chart-pf pct-donut-chart-pf-right">
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart4"></div>
+    </div>
+    <span class="pct-donut-chart-pf-label text-left">
+      60 MHz of 100 MHz
+    </span>
+  </span>
+</div>
+
+<script>
+  var c3ChartDefaults = $().c3ChartDefaults();
+
+  // Donut configuration 1
+  var donutConfig1 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig1.bindto = '#utilizationDonutChart1';
+  donutConfig1.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40],
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig1.size = {
+    width: 180,
+    height: 180
+  };
+
+  donutConfig1.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig1);
+  $().pfSetDonutChartTitle("#utilizationDonutChart1", "60", "MHz Used");
+
+  // Donut configuration 2
+  var donutConfig2 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig2.bindto = '#utilizationDonutChart2';
+  donutConfig2.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig2.size = {
+    width: 180,
+    height: 180
+  };
+
+  donutConfig2.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig2);
+  $().pfSetDonutChartTitle("#utilizationDonutChart2", "60", "MHz Used");
+
+  // Donut configuration 3
+  var donutConfig3 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig3.bindto = '#utilizationDonutChart3';
+  donutConfig3.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig3.size = {
+    width: 140,
+    height: 140
+  };
+
+  donutConfig3.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig3);
+  $().pfSetDonutChartTitle("#utilizationDonutChart3", "60", "MHz Used");
+
+  // Donut configuration 4
+  var donutConfig4 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig4.bindto = '#utilizationDonutChart4';
+  donutConfig4.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig4.size = {
+    width: 140,
+    height: 140
+  };
+
+  donutConfig4.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig4);
+  $().pfSetDonutChartTitle("#utilizationDonutChart4", "60", "MHz Used");
+</script>
+
+  </div>
+  <h2>Donut Chart - Relationship to a Whole</h2>
+  <div>
+    <div id="donut-chart-no-legend1" class="example-donut-chart"></div>
+<div id="donut-chart-no-legend2" class="example-donut-chart-right-legend"></div>
+<div id="donut-chart-no-legend3" class="example-donut-chart-bottom-legend"></div>
+<script>
+  var c3ChartDefaults = $().c3ChartDefaults();
+
+  var donutData = {
+    type : 'donut',
+    columns: [
+      ['Dogs', 2],
+      ['Cats', 2],
+      ['Fish', 3],
+      ['Hamsters', 1]
+    ],
+    onclick: function (d, i) { console.log("onclick", d, i); },
+    onmouseover: function (d, i) { console.log("onmouseover", d, i); },
+    onmouseout: function (d, i) { console.log("onmouseout", d, i); }
+  };
+
+  // Donut Chart without Legend
+  var donutChartConfig = c3ChartDefaults.getDefaultRelationshipDonutConfig();
+  donutChartConfig.bindto = '#donut-chart-no-legend1';
+  donutChartConfig.tooltip = {show: true};
+  donutChartConfig.data = donutData;
+  donutChartConfig.size = {
+    width: 200,
+    height: 171
+  };
+  donutChartConfig.tooltip = {
+    contents: $().pfDonutTooltipContents
+  };
+
+  var donutChartNoLegend = c3.generate(donutChartConfig);
+  $().pfSetDonutChartTitle("#donut-chart-no-legend1", "8", "Animals");
+
+  // Right Legend
+  var donutChartRightConfig = c3ChartDefaults.getDefaultRelationshipDonutConfig();
+  donutChartRightConfig.bindto = '#donut-chart-no-legend2';
+  donutChartRightConfig.tooltip = {show: true};
+  donutChartRightConfig.data = donutData;
+  donutChartRightConfig.legend = {
+    show: true,
+    position: 'right'
+  };
+  donutChartRightConfig.size = {
+    width: 251,
+    height: 161
+  };
+  donutChartRightConfig.tooltip = {
+    contents: $().pfDonutTooltipContents
+  };
+
+  var donutChartRightLegend = c3.generate(donutChartRightConfig);
+  $().pfSetDonutChartTitle("#donut-chart-no-legend2", "8", "Animals");
+
+  // Donut Chart Bottom Legend
+  var donutChartBottomConfig = c3ChartDefaults.getDefaultRelationshipDonutConfig();
+  donutChartBottomConfig.bindto = '#donut-chart-no-legend3';
+  donutChartBottomConfig.tooltip = {show: true};
+  donutChartBottomConfig.data = donutData;
+  donutChartBottomConfig.legend = {
+    show: true,
+    position: 'bottom'
+  };
+  donutChartBottomConfig.size = {
+    width: 271,
+    height: 191
+  };
+  donutChartBottomConfig.tooltip = {
+    contents: $().pfDonutTooltipContents
+  };
+
+  var donutChartBottomLegend = c3.generate(donutChartBottomConfig);
+  $().pfSetDonutChartTitle("#donut-chart-no-legend3", "8", "Animals");
+</script>
+
+  </div>
+  <h2>Donut Chart - Small</h2>
+  <div>
+    <div id="smallDonutChart" class="donut-chart-pf example-donut-chart-mini"></div>
+<div style="text-align: center; width: 220px;">Animals</div>
+<script>
+  var c3ChartDefaults = $().c3ChartDefaults();
+
+  var donutData = {
+    type : 'donut',
+    columns: [
+      ['Dogs', 2],
+      ['Cats', 2],
+      ['Fish', 3],
+      ['Hamsters', 1]
+    ],
+    onclick: function (d, i) { console.log("onclick", d, i); },
+    onmouseover: function (d, i) { console.log("onmouseover", d, i); },
+    onmouseout: function (d, i) { console.log("onmouseout", d, i); }
+  };
+
+  // Small Donut Chart
+  var donutChartSmallConfig = c3ChartDefaults.getDefaultRelationshipDonutConfig('8');
+  donutChartSmallConfig.bindto = '#smallDonutChart';
+  donutChartSmallConfig.tooltip = {show: true};
+  donutChartSmallConfig.data = donutData;
+  donutChartSmallConfig.legend = {
+    show: true,
+    position: 'right'
+  };
+  donutChartSmallConfig.size = {
+    width: 250,
+    height: 115
+  };
+  donutChartSmallConfig.tooltip = {
+    contents: $().pfDonutTooltipContents
+  };
+
+  var donutChartSmall = c3.generate(donutChartSmallConfig);
+</script>
+
+  </div>
+</div>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/dropdowns.html b/themes/src/main/node_modules/rcue/tests/dropdowns.html
new file mode 100644
index 0000000..4f54230
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/dropdowns.html
@@ -0,0 +1,176 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Dropdowns - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Dropdowns</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <h2>Dropdown</h2>
+      <div class="dropdown">
+        <button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          Dropdown
+          <span class="caret"></span>
+        </button>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+          <li><a href="#">Action</a></li>
+          <li><a href="#">Another Action</a></li>
+          <li><a href="#">Something Else Here</a></li>
+          <li role="separator" class="divider"></li>
+          <li><a href="#">Separated Link</a></li>
+        </ul>
+      </div>
+      <h2>Dropup</h2>
+      <div class="dropup">
+        <button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+          Dropup
+          <span class="caret"></span>
+        </button>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
+          <li><a href="#">Action</a></li>
+          <li><a href="#">Another Action</a></li>
+          <li><a href="#">Something Else Here</a></li>
+          <li role="separator" class="divider"></li>
+          <li><a href="#">Separated Link</a></li>
+        </ul>
+      </div>
+      <h2>Dropdown Kebab</h2>
+      <div class="row">
+        <div class="col-xs-6 col-sm-4 col-md-2">
+          <div class="dropdown  dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebab" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu " aria-labelledby="dropdownKebab">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+          <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+        </div>
+      </div>
+      <h2>Dropup Kebab</h2>
+      <div class="row">
+        <div class="col-xs-6 col-sm-4 col-md-2">
+          <div class="dropup  dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropupKebab" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu " aria-labelledby="dropupKebab">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+          <div class="dropup pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropupKebabRight1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropupKebabRight1">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+        </div>
+      </div>
+      <h2>Dropdown Kebab with Buttons</h2>
+      <div class="row">
+        <div class="col-xs-6 col-sm-4 col-md-2">
+          <button type="button" class="btn btn-default">Button</button>
+          <button type="button" class="btn btn-default">Button</button>
+          <div class="dropdown btn-group dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabGroup" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu " aria-labelledby="dropdownKebabGroup">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+        </div>
+      </div>
+      <div class="row">
+        <div class="col-xs-6 col-sm-4 col-md-2">
+          <button type="button" class="btn btn-default">Button</button>
+          <button type="button" class="btn btn-default">Button</button>
+          <div class="dropdown btn-group dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabGroupRight" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabGroupRight">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+        </div>
+      </div>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/experimental-features.html b/themes/src/main/node_modules/rcue/tests/experimental-features.html
new file mode 100644
index 0000000..2925f76
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/experimental-features.html
@@ -0,0 +1,112 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Experimental Features - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Experimental Features</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+<h2>Experimental Features Entry Screen</h2>
+<div class="experimental-pf">
+
+  <div class="experimental-pf-bar">
+    <span id="experimentalBar" class="experimental-pf-text">
+      This feature is experimental.
+      <a id="acceptMessage">Got it!</a>
+    </span>
+    <button class="experimental-pf-more-info">
+      More info <i class="fa fa-flask"></i>
+    </button>
+  </div>
+
+  <div class="blank-slate-pf">
+    <div class="blank-slate-pf-icon">
+      <i class="fa fa-flask"></i>
+    </div>
+    <h1>Empty State Title</h1>
+    <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
+    <p>Learn more about this <a href="#">on the documentation</a>.</p>
+
+    <div class="blank-slate-pf-main-action">
+      <form class="form-horizontal">
+        <div class="form-group">
+          <input type="checkbox" name="accept" id="accept">
+          <label for="accept" class="control-label">
+            I agree to the terms of this feature, as written above.
+          </label>
+        </div>
+      </form>
+      <button class="btn btn-lg btn-experimental-pf" id="activateButton" disabled>Activate All Experimental Features</button>
+    </div>
+  </div>
+</div>
+
+<script>
+$(document).ready(function() {
+  $("#acceptMessage").on("click", function() {
+    $("#experimentalBar").addClass("hide");
+  });
+  $("#accept").click(function() {
+    $("#activateButton").prop("disabled", !$(this).prop("checked"));
+  });
+});
+</script>
+
+<hr>
+<h2>Experimental Feature Identifier on a Component</h2>
+<div class="experimental-pf">
+  <div class="experimental-pf-bar">
+    <button class="experimental-pf-more-info">
+      More info <i class="fa fa-flask"></i>
+    </button>
+  </div>
+  <div class="panel panel-default ">
+
+    <div class="panel-heading">
+      <h3 class="panel-title">lorem ipsum</h3>
+    </div>
+    <div class="panel-body">
+      Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
+    </div>
+  </div>
+</div>
+
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/filter.html b/themes/src/main/node_modules/rcue/tests/filter.html
new file mode 100644
index 0000000..a147288
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/filter.html
@@ -0,0 +1,170 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Filter - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Filter</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+<div>
+  <h3>Input Filters</h3>
+  <div style="width: 300px;">
+    <div class="filter-pf">
+      <div class="filter-pf-fields">
+        <div class="input-group form-group">
+          <div class="input-group-btn">
+            <div class="dropdown btn-group">
+              <button type="button" class="dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+                Name
+                <span class="caret"></span>
+              </button>
+              <ul class="dropdown-menu">
+                <li class="selected"><a href="#">Name</a></li>
+                <li><a href="#">Address</a></li>
+                <li><a href="#">Birth Month</a></li>
+                <li><a href="#">Car</a></li>
+              </ul>
+            </div>
+          </div>
+          <input type="text" class="form-control" value="" placeholder="Filter by Name">
+        </div>
+      </div>
+    </div>
+  </div>
+
+  <h3>Select Filters</h3>
+  <div class="filter-pf">
+    <div class="filter-pf-fields">
+      <div class="input-group form-group">
+        <div class="input-group-btn">
+          <div class="dropdown btn-group">
+            <button type="button" class="filter-pf-fields dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+              Birth Month
+              <span class="caret"></span>
+            </button>
+            <ul class="dropdown-menu">
+              <li class="selected"><a href="#">Name</a></li>
+              <li><a href="#">Address</a></li>
+              <li><a href="#">Birth Month</a></li>
+              <li><a href="#">Car</a></li>
+            </ul>
+          </div>
+        </div>
+        <div class="filter-pf-select">
+          <div class="dropdown btn-group">
+            <button type="button" class="filter-pf-select-dropdown dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+              Filter by Birth Month
+              <span class="caret"></span>
+            </button>
+            <ul role="menu" class="dropdown-menu" aria-labelledby="filterSelectMenu">
+              <li><a href="#">Filter by Birth Month</a></li>
+              <li><a role="menuitem" tabindex="-1" href="#">January</a></li>
+              <li class="selected"><a role="menuitem" tabindex="-1" href="#">February</a></li>
+              <li><a href="#">March</a></li>
+              <li><a href="#">April</a></li>
+              <li><a href="#">May</a></li>
+              <li><a href="#">June</a></li>
+              <li><a href="#">July</a></li>
+              <li><a href="#">August</a></li>
+              <li><a href="#">September</a></li>
+              <li><a href="#">October</a></li>
+              <li><a href="#">November</a></li>
+              <li><a href="#">December</a></li>
+            </ul>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+
+  <h3>Category Filters</h3>
+  <div class="filter-pf">
+    <div class="filter-pf-fields">
+      <div class="input-group form-group">
+        <div class="input-group-btn">
+          <div class="dropdown btn-group">
+            <button type="button" class="filter-pf-fields dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+              Car
+              <span class="caret"></span>
+            </button>
+            <ul class="dropdown-menu">
+              <li><a href="#">Name</a></li>
+              <li><a href="#">Address</a></li>
+              <li><a href="#">Birth Month</a></li>
+              <li class="selected"><a href="#">Car</a></li>
+            </ul>
+          </div>
+        </div>
+        <div class="filter-pf-category-select">
+          <div class="filter-pf-select">
+            <div class="dropdown btn-group">
+              <button type="button" class="filter-pf-select-dropdown dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+                Subaru
+                <span class="caret"></span>
+              </button>
+              <ul class="dropdown-menu">
+                <li><a href="#">Filter by Car Make</a></li>
+                <li class="selected"><a href="#">Subaru</a></li>
+                <li><a href="#">Toyota</a></li>
+              </ul>
+            </div>
+          </div>
+          <div class="filter-pf-select">
+            <div class="dropdown btn-group">
+              <button type="button" class="filter-pf-category-select-value filter-pf-select-dropdown dropdown-toggle btn btn-default" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+                Crosstrek
+                <span class="caret"></span>
+              </button>
+              <ul class="dropdown-menu">
+                <li><a href="#">Filter by Car Model</a></li>
+                <li><a href="#">Outback</a></li>
+                <li><a href="#">Crosstrek</a></li>
+                <li><a href="#">Impreza</a></li>
+              </ul>
+            </div>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/form.html b/themes/src/main/node_modules/rcue/tests/form.html
new file mode 100644
index 0000000..8f5a902
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/form.html
@@ -0,0 +1,288 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Form - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body>
+    <nav class="navbar navbar-default navbar-pf" role="navigation">
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+        </a>
+      </div>
+      <div class="collapse navbar-collapse navbar-collapse-1">
+        <ul class="nav navbar-nav navbar-utility">
+          <li class="dropdown">
+            <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+              <span title="Help" class="fa pficon-help"></span>
+              <span class="caret"></span>
+            </a>
+            <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+              <li><a href="#0">Help</a></li>
+              <li><a href="#0">About</a></li>
+            </ul>
+          </li>
+          <li class="dropdown">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+              <span class="pficon pficon-user"></span>
+              Brian Johnson <b class="caret"></b>
+            </a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-submenu">
+                <a tabindex="-1" href="#0">More options</a>
+                <ul class="dropdown-menu">
+                  <li>
+                    <a href="#0">Link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Another link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Something else here</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li class="dropdown-header">Nav header</li>
+                  <li>
+                    <a href="#0">Separated link</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li>
+                    <a href="#0">One more separated link</a>
+                  </li>
+                </ul>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+        <ul class="nav navbar-nav navbar-primary">
+          <li>
+            <a href="basic.html">Basic</a>
+          </li>
+          <li>
+            <a href="bootstrap-treeview-2.html">Tree View</a>
+          </li>
+          <li>
+            <a href="dashboard.html">Dashboard</a>
+          </li>
+          <li class="active">
+            <a href="form.html" class="active">Form</a>
+          </li>
+          <li>
+            <a href="tab.html">Tab</a>
+          </li>
+          <li>
+            <a href="typography-2.html">Typography</a>
+          </li>
+          <li>
+            <a href="card-view-multi-select.html">Card View - Multi Select</a>
+          </li>
+          <li>
+            <a href="card-view-single-select.html">Card View - Single Select</a>
+          </li>
+          <li>
+            <a href="cards.html">Cards</a>
+          </li>
+          <li>
+            <a href="pagination-card-view.html">Pagination - Card View</a>
+          </li>
+        </ul>
+      </div>
+    </nav>
+
+    <div class="container-fluid">
+      <div class="row">
+        <div class="col-sm-9 col-md-10 col-sm-push-3 col-md-push-2">
+          <ol class="breadcrumb">
+            <li><a href="#">Home</a></li>
+            <li>Form</li>
+          </ol>
+          <h1>Form</h1>
+<form class="form-horizontal">
+  <div class="form-group">
+    <label class="col-md-2 control-label" for="textInput">Praesent urna</label>
+    <div class="col-md-6">
+      <input type="text" id="textInput" class="form-control">
+    </div>
+  </div>
+  <div class="form-group">
+    <label class="col-md-2 control-label" for="textInput2">Augue</label>
+    <div class="col-md-6">
+      <input type="text" id="textInput2" class="form-control">
+    </div>
+  </div>
+  <div class="form-group">
+    <label class="col-md-2 control-label" for="textInput3">Pharetra vel</label>
+    <div class="col-md-6">
+      <input type="text" id="textInput3" class="form-control">
+    </div>
+  </div>
+  <div class="form-group">
+    <label class="col-md-2 control-label" for="textInput4">Arcu ac</label>
+    <div class="col-md-6">
+      <input type="text" id="textInput4" class="form-control">
+    </div>
+  </div>
+  <div class="form-group">
+    <label class="col-md-2 control-label">Posuere</label>
+    <div class="col-md-6">
+      <div class="radio">
+        <label>
+          <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
+          Proin lobortis auctor tortor et posuere
+        </label>
+      </div>
+      <div class="radio">
+        <label>
+          <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
+          Duis eu ipsum metus
+        </label>
+      </div>
+    </div>
+  </div>
+  <div class="form-group">
+    <label class="col-md-2 control-label" for="boostrapSelect">Vestibulum</label>
+    <div class="col-md-10">
+      <select class="selectpicker" multiple data-selected-text-format="count>3" id="boostrapSelect">
+        <option>Mustard</option>
+        <option>Ketchup</option>
+        <option>Relish</option>
+        <option>Onions</option>
+        <option>Mushrooms</option>
+        <option>Pickles</option>
+        <option>Mayonnaise</option>
+        <option data-divider="true"></option>
+        <option data-subtext="Hot">Tabasco</option>
+        <option data-subtext="Hotter">Sriracha</option>
+        <option data-subtext="Hottest">Wasabi</option>
+      </select>
+    </div>
+  </div>
+  <div class="form-group">
+    <div class="col-md-10 col-md-offset-2">
+      <button type="button" class="btn btn-primary">Save</button>
+      <button type="button" class="btn btn-default">Cancel</button>
+    </div>
+  </div>
+</form>
+        </div><!-- /col -->
+        <div class="col-sm-3 col-md-2 col-sm-pull-9 col-md-pull-10 sidebar-pf sidebar-pf-left">
+          <div class="panel-group" id="accordion">
+            <div class="panel panel-default">
+              <div class="panel-heading">
+                <h4 class="panel-title">
+                  <a data-toggle="collapse" data-parent="#accordion" href="#collapseOne">
+                    Vivamus nisi
+                  </a>
+                </h4>
+              </div>
+              <div id="collapseOne" class="panel-collapse collapse in">
+                <div class="panel-body">
+                  <ul class="nav nav-pills nav-stacked">
+                    <li class="active"><a href="#">Lorem ipsum</a></li>
+                    <li><a href="#">Dolor sit amet</a></li>
+                    <li><a href="#">Consectetur</a></li>
+                  </ul>
+                </div>
+              </div>
+            </div>
+            <div class="panel panel-default">
+              <div class="panel-heading">
+                <h4 class="panel-title">
+                  <a data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" class="collapsed">
+                    Risus
+                  </a>
+                </h4>
+              </div>
+              <div id="collapseTwo" class="panel-collapse collapse">
+                <div class="panel-body">
+                  <ul class="nav nav-pills nav-stacked">
+                    <li><a href="#">Adipiscing elit</a></li>
+                    <li><a href="#">Duis</a></li>
+                    <li><a href="#">Pellentesque</a></li>
+                  </ul>
+                </div>
+              </div>
+            </div>
+            <div class="panel panel-default">
+              <div class="panel-heading">
+                <h4 class="panel-title">
+                  <a data-toggle="collapse" data-parent="#accordion" href="#collapseThree" class="collapsed">
+                    Iaculis quis feugiat
+                  </a>
+                </h4>
+              </div>
+              <div id="collapseThree" class="panel-collapse collapse">
+                <div class="panel-body">
+                  <ul class="nav nav-pills nav-stacked">
+                    <li><a href="#">Sed est</a></li>
+                    <li><a href="#">Curabitur</a></li>
+                    <li><a href="#">Eu dignissim</a></li>
+                  </ul>
+                </div>
+              </div>
+            </div>
+          </div>
+        </div><!-- /col -->
+      </div><!-- /row -->
+    </div><!-- /container -->
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/forms.html b/themes/src/main/node_modules/rcue/tests/forms.html
new file mode 100644
index 0000000..b7a0a04
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/forms.html
@@ -0,0 +1,875 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Forms - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Forms</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <h2 id="right-aligned">Right-aligned labels</h2>
+
+      <h3 id="right-aligned_basic-form">Basic Form</h3>
+      <form class="form-horizontal" role="form">
+        <div class="form-group">
+          <label for="inputEmail1" class="col-sm-2 control-label">Email</label>
+          <div class="col-sm-10">
+            <input type="email" class="form-control" id="inputEmail1">
+          </div>
+        </div>
+        <div class="form-group">
+          <label for="inputPassword1" class="col-sm-2 control-label">Password</label>
+          <div class="col-sm-10">
+            <input type="password" class="form-control" id="inputPassword1">
+          </div>
+        </div>
+        <div class="form-group">
+          <div class="col-sm-offset-2 col-sm-10">
+            <div class="checkbox">
+              <label>
+                <input type="checkbox"> Remember me
+              </label>
+            </div>
+          </div>
+        </div>
+        <div class="form-group">
+          <div class="col-sm-offset-2 col-sm-10">
+            <button type="submit" class="btn btn-default">Sign in</button>
+          </div>
+        </div>
+      </form>
+
+      <h3 id="right-aligned_all-fields-required">All Fields Required</h3>
+      <form class="form-horizontal" role="form">
+        <p class="fields-status-pf">All fields are required.</p>
+        <div class="form-group">
+          <label for="input1" class="col-sm-2 control-label">Field One</label>
+          <div class="col-sm-10">
+            <input type="text" class="form-control" id="input1" required>
+          </div>
+        </div>
+        <div class="form-group">
+          <label for="input2" class="col-sm-2 control-label">Field Two</label>
+          <div class="col-sm-10">
+            <input type="text" class="form-control" id="input2" required>
+          </div>
+        </div>
+        <div class="form-group">
+          <label for="input3" class="col-sm-2 control-label">Field Three</label>
+          <div class="col-sm-10">
+            <input type="text" class="form-control" id="input3" required>
+          </div>
+        </div>
+        <div class="form-group">
+          <div class="col-sm-offset-2 col-sm-10">
+            <button type="submit" class="btn btn-default" disabled>Action</button>
+          </div>
+        </div>
+      </form>
+
+      <h3 id="right-aligned_required-and-optional-fields">Required and Optional Fields</h3>
+      <form class="form-horizontal" role="form">
+        <p class="fields-status-pf">The fields marked with <span class="required-pf">*</span> are required.</p>
+        <div class="form-group">
+          <label for="input4" class="col-sm-2 control-label required-pf">Field One</label>
+          <div class="col-sm-10">
+            <input type="text" class="form-control" id="input4" required>
+          </div>
+        </div>
+        <div class="form-group">
+          <label for="input5" class="col-sm-2 control-label">Field Two</label>
+          <div class="col-sm-10">
+            <input type="text" class="form-control" id="input5">
+          </div>
+        </div>
+        <div class="form-group">
+          <label for="input6" class="col-sm-2 control-label required-pf">Field Three</label>
+          <div class="col-sm-10">
+            <input type="text" class="form-control" id="input6" required>
+          </div>
+        </div>
+        <div class="form-group">
+          <div class="col-sm-offset-2 col-sm-10">
+            <button type="submit" class="btn btn-default" disabled>Action</button>
+          </div>
+        </div>
+      </form>
+
+      <h3 id="right-aligned_all-fields-optional">All Fields Optional</h3>
+      <form class="form-horizontal" role="form">
+        <p class="fields-status-pf">All fields are optional.</p>
+        <div class="form-group">
+          <label for="input7" class="col-sm-2 control-label">Field One</label>
+          <div class="col-sm-10">
+            <input type="text" class="form-control" id="input7">
+          </div>
+        </div>
+        <div class="form-group">
+          <label for="input8" class="col-sm-2 control-label">Field Two</label>
+          <div class="col-sm-10">
+            <input type="text" class="form-control" id="input8">
+          </div>
+        </div>
+        <div class="form-group">
+          <label for="input9" class="col-sm-2 control-label">Field Three</label>
+          <div class="col-sm-10">
+            <input type="text" class="form-control" id="input9">
+          </div>
+        </div>
+        <div class="form-group">
+          <div class="col-sm-offset-2 col-sm-10">
+            <button type="submit" class="btn btn-default">Action</button>
+          </div>
+        </div>
+      </form>
+
+      <h3 id="right-aligned_error-feedback">Error Feedback</h3>
+      <div class="alert alert-danger">
+  <span class="pficon pficon-error-circle-o"></span>
+  <strong>Hey there is a problem!</strong> Yeah this is really messed up and you should <a href="#" class="alert-link">know about it</a>.
+</div>
+
+<form class="form-horizontal">
+  <div class="form-group">
+    <label class="col-sm-2 control-label" for="exampleInput">Default</label>
+    <div class="col-sm-10">
+      <input type="text" id="exampleInput" class="form-control">
+    </div>
+  </div>
+  <div class="form-group">
+    <label class="col-sm-2 control-label" for="exampleInputDisabled">Disabled</label>
+    <div class="col-sm-10">
+      <input type="text" id="exampleInputDisabled" class="form-control" disabled></div>
+  </div>
+  <div class="form-group has-error">
+    <label class="col-sm-2 control-label" for="exampleInputError">With error</label>
+    <div class="col-sm-10">
+      <input type="text" id="exampleInputError" class="form-control">
+
+      <span class="help-block">Please correct the error</span>
+
+    </div>
+  </div>
+  <div class="form-group">
+    <div class="col-sm-offset-2 col-sm-10">
+      <button type="submit" class="btn btn-primary">Primary Action</button>
+      <button type="submit" class="btn btn-default">Secondary Action</button>
+    </div>
+  </div>
+</form>
+
+
+      <h2 id="top-aligned">Top-aligned labels</h2>
+
+      <h3 id="top-aligned_basic-form">Basic Form</h3>
+      <form role="form">
+        <div class="form-group">
+          <label for="exampleInputEmail1">Email address</label>
+          <input type="email" class="form-control" id="exampleInputEmail1">
+        </div>
+        <div class="form-group">
+          <label for="exampleInputPassword1">Password</label>
+          <input type="password" class="form-control" id="exampleInputPassword1">
+        </div>
+        <div class="form-group">
+          <label for="exampleInputFile">File input</label>
+          <input type="file" id="exampleInputFile">
+          <p class="help-block">Example block-level help text here.</p>
+        </div>
+        <div class="checkbox">
+          <label>
+            <input type="checkbox"> Check me out
+          </label>
+        </div>
+        <button type="submit" class="btn btn-default">Submit</button>
+      </form>
+
+      <h3 id="top-aligned_all-fields-required">All Fields Required</h3>
+      <form role="form">
+        <p class="fields-status-pf">All fields are required.</p>
+        <div class="form-group">
+          <label for="input10">Field One</label>
+          <input type="text" class="form-control" id="input10" required>
+        </div>
+        <div class="form-group">
+          <label for="input11">Field Two</label>
+          <input type="text" class="form-control" id="input11" required>
+        </div>
+        <div class="form-group">
+          <label for="input12">Field Three</label>
+          <input type="text" class="form-control" id="input12" required>
+        </div>
+        <button type="submit" class="btn btn-default" disabled>Action</button>
+      </form>
+
+      <h3 id="top-aligned_required-and-optional-fields">Required and Optional Fields</h3>
+      <form role="form">
+        <p class="fields-status-pf">The fields marked with <span class="required-pf">*</span> are required.</p>
+        <div class="form-group">
+          <label for="input13" class="required-pf">Field One</label>
+          <input type="text" class="form-control" id="input13" required>
+        </div>
+        <div class="form-group">
+          <label for="input14">Field Two</label>
+          <input type="text" class="form-control" id="input14">
+        </div>
+        <div class="form-group">
+          <label for="input15" class="required-pf">Field Three</label>
+          <input type="text" class="form-control" id="input15" required>
+        </div>
+        <button type="submit" class="btn btn-default" disabled>Action</button>
+      </form>
+
+      <h3 id="top-aligned_all-fields-optional">All Fields Optional</h3>
+      <form role="form">
+        <p class="fields-status-pf">All fields are optional.</p>
+        <div class="form-group">
+          <label for="input16">Field One</label>
+          <input type="text" class="form-control" id="input16">
+        </div>
+        <div class="form-group">
+          <label for="input17">Field Two</label>
+          <input type="text" class="form-control" id="input17">
+        </div>
+        <div class="form-group">
+          <label for="input18">Field Three</label>
+          <input type="text" class="form-control" id="input18">
+        </div>
+        <button type="submit" class="btn btn-default">Action</button>
+      </form>
+
+      <h2 id="inline-form">Inline Form</h2>
+      <form class="form-inline" role="form">
+        <div class="form-group">
+          <label class="sr-only" for="exampleInputEmail2">Email address</label>
+          <input type="email" class="form-control" id="exampleInputEmail2" placeholder="Enter email">
+        </div>
+        <div class="form-group">
+          <label class="sr-only" for="exampleInputPassword2">Password</label>
+          <input type="password" class="form-control" id="exampleInputPassword2" placeholder="Password">
+        </div>
+        <div class="checkbox">
+          <label>
+            <input type="checkbox"> Remember me
+          </label>
+        </div>
+        <button type="submit" class="btn btn-default">Sign in</button>
+      </form>
+
+      <h2 id="inside-a-modal">Inside a modal</h2>
+      <!--
+        Styles and example-pf div makes modal visible and posistion relative. It's intended for docs page.
+        *Do not use in production*
+      -->
+      <style>
+        .example-pf .modal{
+          position: relative;
+          top: auto;
+          right: auto;
+          bottom: auto;
+          left: auto;
+          z-index: 1;
+          display: block;
+        }
+      </style>
+      <div class="example-pf">
+        
+<div class="modal" tabindex="-1" role="dialog">
+  <div class="modal-dialog">
+    <div class="modal-content">
+      <div class="modal-header">
+        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
+        <h4 class="modal-title">Modal title</h4>
+      </div>
+      <div class="modal-body">
+        <div class="alert alert-danger">
+  <span class="pficon pficon-error-circle-o"></span>
+  <strong>Hey there is a problem!</strong> Yeah this is really messed up and you should <a href="#" class="alert-link">know about it</a>.
+</div>
+
+        <form class="form-horizontal">
+          <div class="form-group">
+            <label class="col-sm-2 control-label" for="modalInput">Default</label>
+            <div class="col-sm-10">
+              <input type="text" id="modalInput" class="form-control"></div>
+          </div>
+          <div class="form-group">
+            <label class="col-sm-2 control-label" for="modalInputDisabled">Disabled</label>
+            <div class="col-sm-10">
+              <input type="text" id="modalInputDisabled" class="form-control" disabled></div>
+          </div>
+          <div class="form-group has-error">
+            <label class="col-sm-2 control-label" for="modalInputError">With error</label>
+            <div class="col-sm-10">
+              <input type="text" id="modalInputError" class="form-control">
+
+              <span class="help-block">Please correct the error</span>
+
+            </div>
+          </div>
+        </form>
+      </div>
+      <div class="modal-footer">
+        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
+        <button type="button" class="btn btn-primary">Save changes</button>
+      </div>
+    </div><!-- /.modal-content -->
+  </div><!-- /.modal-dialog -->
+</div><!-- /.modal -->
+
+      </div>
+
+      <h2 id="expand-collapse-section">Expand-Collapse Section</h2>
+      <div class="example-pf">
+        <form class="form-horizontal">
+  <div class="form-group">
+    <label class="col-sm-2 control-label" for="AdvOptBlueprintName">Blueprint Name</label>
+    <div class="col-sm-10">
+      <input type="text" id="AdvOptBlueprintName" class="form-control">
+    </div>
+  </div>
+  <div class="form-group">
+    <label class="col-sm-2 control-label" for="AdvOptCatalog">Catalog</label>
+    <div class="col-sm-10">
+      <input type="text" id="AdvOptCatalog" class="form-control"></div>
+  </div>
+  <div class="form-group">
+    <label class="col-sm-2 control-label" for="AdvOptNumber">Number</label>
+    <div class="col-sm-10">
+      <input type="text" id="AdvOptNumber" class="form-control"></div>
+  </div>
+
+  <fieldset class="fields-section-pf" id="AdvOptSection">
+    <legend class="fields-section-header-pf">
+      <span class="fa fa-angle-right fa-angle-down field-section-toggle-pf"></span>
+      <a href="#AdvOptSection" class="field-section-toggle-pf">Advanced Options</a>
+    </legend>
+    <div class="form-group">
+      <label class="col-sm-2 control-label" for="AdvOptEntry1">Entry Point 1</label>
+      <div class="col-sm-10">
+        <input type="text" id="AdvOptEntry1" class="form-control"></div>
+    </div>
+    <div class="form-group">
+      <label class="col-sm-2 control-label" for="AdvOptEntry2">Entry Point 2</label>
+      <div class="col-sm-10">
+        <input type="text" id="AdvOptEntry2" class="form-control"></div>
+    </div>
+    <div class="form-group">
+      <label class="col-sm-2 control-label" for="AdvOptEntry3">Entry Point 3</label>
+      <div class="col-sm-10">
+        <input type="text" id="AdvOptEntry3" class="form-control"></div>
+    </div>
+  </fieldset>
+
+  
+  <div class="form-group">
+    <div class="col-sm-offset-2 col-sm-10">
+      <button type="submit" class="btn btn-primary">Save</button>
+      <button type="submit" class="btn btn-default">Cancel</button>
+    </div>
+  </div>
+  
+  
+
+
+</form>
+
+<script>
+  // Initialize form
+  $(document).ready(function() {
+    // set default state to collapsed for expandable field section
+    $('.fields-section-header-pf').attr('aria-expanded', 'false');
+    $('.fields-section-pf .form-group').addClass('hidden');
+    $('.fa.field-section-toggle-pf').removeClass('fa-angle-down');
+
+    // click the field section heading to expand the section
+    $("#AdvOptSection .field-section-toggle-pf").click(function(event){
+      $(this).parents(".fields-section-pf").find(".fa").toggleClass("fa-angle-down");
+      $(this).parents(".fields-section-pf").find(".form-group").toggleClass("hidden");
+      if ($(this).parent().attr('aria-expanded') == 'false') {
+        $(this).parent().attr('aria-expanded', 'true');
+      } else {
+        $(this).parent().attr('aria-expanded', 'false');
+      }
+    })
+
+  });
+
+</script>
+
+      </div>
+
+      <h2 id="expand-collapse-section-inside-a-modal">Expand-Collapse Section inside a modal</h2>
+
+      <button class="btn btn-default" data-toggle="modal" data-target="#myModal">Launch demo modal</button>
+      <div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
+        <div class="modal-dialog">
+          <div class="modal-content">
+            <div class="modal-header">
+              <button type="button" class="close" data-dismiss="modal" aria-hidden="true">
+                <span class="pficon pficon-close"></span>
+              </button>
+              <h4 class="modal-title" id="myModalLabel">Edit Blueprint Details</h4>
+            </div>
+            <div class="modal-body">
+              <div class="example-pf">
+                <form class="form-horizontal">
+  <div class="form-group">
+    <label class="col-sm-3 control-label" for="AdvOptBlueprintNameMod">Blueprint Name</label>
+    <div class="col-sm-9">
+      <input type="text" id="AdvOptBlueprintNameMod" class="form-control">
+    </div>
+  </div>
+  <div class="form-group">
+    <label class="col-sm-3 control-label" for="AdvOptCatalogMod">Catalog</label>
+    <div class="col-sm-9">
+      <input type="text" id="AdvOptCatalogMod" class="form-control"></div>
+  </div>
+  <div class="form-group">
+    <label class="col-sm-3 control-label" for="AdvOptNumberMod">Number</label>
+    <div class="col-sm-9">
+      <input type="text" id="AdvOptNumberMod" class="form-control"></div>
+  </div>
+
+  <fieldset class="fields-section-pf" id="AdvOptSectionMod">
+    <legend class="fields-section-header-pf">
+      <span class="fa fa-angle-right fa-angle-down field-section-toggle-pf"></span>
+      <a href="#AdvOptSectionMod" class="field-section-toggle-pf">Advanced Options</a>
+    </legend>
+    <div class="form-group">
+      <label class="col-sm-3 control-label" for="AdvOptEntry1Mod">Entry Point 1</label>
+      <div class="col-sm-9">
+        <input type="text" id="AdvOptEntry1Mod" class="form-control"></div>
+    </div>
+    <div class="form-group">
+      <label class="col-sm-3 control-label" for="AdvOptEntry2Mod">Entry Point 2</label>
+      <div class="col-sm-9">
+        <input type="text" id="AdvOptEntry2Mod" class="form-control"></div>
+    </div>
+    <div class="form-group">
+      <label class="col-sm-3 control-label" for="AdvOptEntry3Mod">Entry Point 3</label>
+      <div class="col-sm-9">
+        <input type="text" id="AdvOptEntry3Mod" class="form-control"></div>
+    </div>
+  </fieldset>
+
+  
+  
+  <div class="modal-footer">
+    <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
+    <button type="button" class="btn btn-primary">Save</button>
+  </div>
+  
+
+
+</form>
+
+<script>
+  // Initialize form
+  $(document).ready(function() {
+    // set default state to collapsed for expandable field section
+    $('.fields-section-header-pf').attr('aria-expanded', 'false');
+    $('.fields-section-pf .form-group').addClass('hidden');
+    $('.fa.field-section-toggle-pf').removeClass('fa-angle-down');
+
+    // click the field section heading to expand the section
+    $("#AdvOptSectionMod .field-section-toggle-pf").click(function(event){
+      $(this).parents(".fields-section-pf").find(".fa").toggleClass("fa-angle-down");
+      $(this).parents(".fields-section-pf").find(".form-group").toggleClass("hidden");
+      if ($(this).parent().attr('aria-expanded') == 'false') {
+        $(this).parent().attr('aria-expanded', 'true');
+      } else {
+        $(this).parent().attr('aria-expanded', 'false');
+      }
+    })
+
+  });
+
+</script>
+
+              </div>
+            </div>
+          </div>
+        </div>
+      </div>
+
+      <h2 id="controls">Controls</h2>
+
+      <input type="text" class="form-control" placeholder="Text input">
+      <input type="password" class="form-control" placeholder="Text input">
+      <input type="datetime" class="form-control" placeholder="Text input">
+      <input type="datetime-local" class="form-control" placeholder="Text input">
+      <input type="date" class="form-control" placeholder="Text input">
+      <input type="month" class="form-control" placeholder="Text input">
+      <input type="time" class="form-control" placeholder="Text input">
+      <input type="week" class="form-control" placeholder="Text input">
+      <input type="number" class="form-control" placeholder="Text input">
+      <input type="email" class="form-control" placeholder="Text input">
+      <input type="url" class="form-control" placeholder="Text input">
+      <input type="search" class="form-control" placeholder="Text input">
+      <input type="tel" class="form-control" placeholder="Text input">
+      <input type="color" class="form-control" placeholder="Text input">
+      <textarea class="form-control" rows="3"></textarea>
+      <div class="checkbox">
+        <label>
+          <input type="checkbox" value="">
+          Option one is this and that&mdash;be sure to include why it's great
+        </label>
+      </div>
+      <div class="radio">
+        <label>
+          <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
+          Option one is this and that&mdash;be sure to include why it's great
+        </label>
+      </div>
+      <div class="radio">
+        <label>
+          <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
+          Option two can be something else and selecting it will deselect option one
+        </label>
+      </div>
+      <label class="checkbox-inline">
+        <input type="checkbox" id="inlineCheckbox1" value="option1"> 1
+      </label>
+      <label class="checkbox-inline">
+        <input type="checkbox" id="inlineCheckbox2" value="option2"> 2
+      </label>
+      <label class="checkbox-inline">
+        <input type="checkbox" id="inlineCheckbox3" value="option3"> 3
+      </label>
+      <select class="form-control">
+        <option>1</option>
+        <option>2</option>
+        <option>3</option>
+        <option>4</option>
+        <option>5</option>
+      </select>
+      <select multiple class="form-control">
+        <option>1</option>
+        <option>2</option>
+        <option>3</option>
+        <option>4</option>
+        <option>5</option>
+      </select>
+
+      <h3 id="controls_count-remaining-characters">Count Remaining Characters Control</h3>
+      <form>
+        <div class="form-group">
+          <label for="messageArea"></label>
+          <textarea class="form-control" id="messageArea" name="text" placeholder="Type in your message" rows="5"></textarea>
+        </div>
+          <span class="pull-right chars-remaining-pf">
+            <span id="charRemainingCntFld"></span>
+            <button id="postBtn" type="submit" class="btn btn-default">Post New Message</button>
+          </span>
+      </form>
+      <script>
+        // countFld is the id of the field where you want the 'remaining chars. count' number
+        // to be displayed.
+        $('#messageArea').countRemainingChars( {countFld: 'charRemainingCntFld'} );
+
+        // all settings/options
+        // $('#messageArea').countRemainingChars( {countFld: 'charRemainingCntFld',
+        //                                         charsMaxLimit: 20,
+        //                                         charsWarnRemaining: 5,
+        //                                         blockInputAtMaxLimit: true} );
+
+
+        // taId is the id of the textArea field which triggered the event
+        // Helpful if counting remaining chars on multiple TAs
+        $('#messageArea').on("overCharsMaxLimitEvent", function( event, taId ) {
+          $('#postBtn').prop("disabled",true);
+        });
+        $('#messageArea').on("underCharsMaxLimitEvent", function( event, taId) {
+          $('#postBtn').prop("disabled",false);
+        });
+      </script><br>
+
+      <h3 id="controls_static-controls">Static Control</h3>
+      <form class="form-horizontal" role="form">
+        <div class="form-group">
+          <label class="col-lg-2 control-label">Email</label>
+          <div class="col-lg-10">
+            <p class="form-control-static">email@example.com</p>
+          </div>
+        </div>
+        <div class="form-group">
+          <label for="inputPassword" class="col-lg-2 control-label">Password</label>
+          <div class="col-lg-10">
+            <input type="password" class="form-control" id="inputPassword" placeholder="Password">
+          </div>
+        </div>
+      </form>
+
+      <h3 id="controls_help-text">Help Text</h3>
+      <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span>
+      <div class="input-group">
+        <span class="input-group-addon">@</span>
+        <input type="text" class="form-control" placeholder="Username">
+      </div>
+
+      <h3 id="controls_control-sizing">Control Sizing</h3>
+      <input class="form-control input-lg" type="text" placeholder=".input-lg">
+      <input class="form-control" type="text" placeholder="Default input">
+      <input class="form-control input-sm" type="text" placeholder=".input-sm">
+      <select class="form-control input-lg">...</select>
+      <select class="form-control">...</select>
+      <select class="form-control input-sm">...</select>
+      <div class="row">
+        <div class="col-lg-2">
+          <input type="text" class="form-control" placeholder=".col-lg-2">
+        </div>
+        <div class="col-lg-3">
+          <input type="text" class="form-control" placeholder=".col-lg-3">
+        </div>
+        <div class="col-lg-4">
+          <input type="text" class="form-control" placeholder=".col-lg-4">
+        </div>
+      </div>
+
+      <h2 id="input-groups">Input Groups</h2>
+
+      <h3 id="input-groups_basic-examples">Basic Example</h3>
+      <div class="input-group">
+        <input type="text" class="form-control">
+        <span class="input-group-addon">.00</span>
+      </div>
+      <div class="input-group">
+        <span class="input-group-addon">$</span>
+        <input type="text" class="form-control">
+        <span class="input-group-addon">.00</span>
+      </div>
+
+      <h3 id="input-groups_sizing">Sizing</h3>
+      <div class="input-group input-group-lg">
+        <span class="input-group-addon">@</span>
+        <input type="text" class="form-control input-lg" placeholder="Username">
+      </div>
+      <div class="input-group">
+        <span class="input-group-addon">@</span>
+        <input type="text" class="form-control" placeholder="Username">
+      </div>
+      <div class="input-group input-group-sm">
+        <span class="input-group-addon">@</span>
+        <input type="text" class="form-control" placeholder="Username">
+      </div>
+
+      <h3 id="input-groups_checkboxes-and-radio-addons">Checkboxes and radio addons</h3>
+      <div class="row">
+        <div class="col-lg-6">
+          <div class="input-group">
+            <span class="input-group-addon">
+              <input type="checkbox">
+            </span>
+            <input type="text" class="form-control">
+          </div><!-- /input-group -->
+        </div><!-- /.col-lg-6 -->
+        <div class="col-lg-6">
+          <div class="input-group">
+            <span class="input-group-addon">
+              <input type="radio">
+            </span>
+            <input type="text" class="form-control">
+          </div><!-- /input-group -->
+        </div><!-- /.col-lg-6 -->
+      </div><!-- /.row -->
+
+      <h3 id="input-groups_button-addons">Button addons</h3>
+      <div class="row">
+        <div class="col-lg-6">
+          <div class="input-group">
+            <span class="input-group-btn">
+              <button class="btn btn-default" type="button">Go!</button>
+            </span>
+            <input type="text" class="form-control">
+          </div><!-- /input-group -->
+        </div><!-- /.col-lg-6 -->
+        <div class="col-lg-6">
+          <div class="input-group">
+            <input type="text" class="form-control">
+            <span class="input-group-btn">
+              <button class="btn btn-default" type="button">Go!</button>
+            </span>
+          </div><!-- /input-group -->
+        </div><!-- /.col-lg-6 -->
+      </div><!-- /.row -->
+
+      <h3 id="input-groups_buttons-with-dropdowns">Buttons with dropdowns</h3>
+      <div class="row">
+        <div class="col-lg-6">
+          <div class="input-group">
+            <div class="input-group-btn">
+              <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">Action <span class="caret"></span></button>
+              <ul class="dropdown-menu">
+                <li><a href="#">Action</a></li>
+                <li><a href="#">Another action</a></li>
+                <li><a href="#">Something else here</a></li>
+                <li class="divider"></li>
+                <li><a href="#">Separated link</a></li>
+              </ul>
+            </div><!-- /btn-group -->
+            <input type="text" class="form-control">
+          </div><!-- /input-group -->
+        </div><!-- /.col-lg-6 -->
+        <div class="col-lg-6">
+          <div class="input-group">
+            <input type="text" class="form-control">
+            <div class="input-group-btn">
+              <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">Action <span class="caret"></span></button>
+              <ul class="dropdown-menu pull-right">
+                <li><a href="#">Action</a></li>
+                <li><a href="#">Another action</a></li>
+                <li><a href="#">Something else here</a></li>
+                <li class="divider"></li>
+                <li><a href="#">Separated link</a></li>
+              </ul>
+            </div><!-- /btn-group -->
+          </div><!-- /input-group -->
+        </div><!-- /.col-lg-6 -->
+      </div><!-- /.row -->
+
+      <h3 id="input-groups_segmented-buttons">Segmented buttons</h3>
+      <form class="bs-example bs-example-form" role="form">
+        <div class="row">
+          <div class="col-lg-6">
+            <div class="input-group">
+              <div class="input-group-btn">
+                <button type="button" class="btn btn-default" tabindex="-1">Action</button>
+                <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" tabindex="-1">
+                  <span class="caret"></span>
+                </button>
+                <ul class="dropdown-menu" role="menu">
+                  <li><a href="#">Action</a></li>
+                  <li><a href="#">Another action</a></li>
+                  <li><a href="#">Something else here</a></li>
+                  <li class="divider"></li>
+                  <li><a href="#">Separated link</a></li>
+                </ul>
+              </div>
+              <input type="text" class="form-control">
+            </div><!-- /.input-group -->
+          </div><!-- /.col-lg-6 -->
+          <div class="col-lg-6">
+            <div class="input-group">
+              <input type="text" class="form-control">
+              <div class="input-group-btn">
+                <button type="button" class="btn btn-default" tabindex="-1">Action</button>
+                <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" tabindex="-1">
+                  <span class="caret"></span>
+                </button>
+                <ul class="dropdown-menu pull-right" role="menu">
+                  <li><a href="#">Action</a></li>
+                  <li><a href="#">Another action</a></li>
+                  <li><a href="#">Something else here</a></li>
+                  <li class="divider"></li>
+                  <li><a href="#">Separated link</a></li>
+                </ul>
+              </div>
+            </div><!-- /.input-group -->
+          </div><!-- /.col-lg-6 -->
+        </div><!-- /.row -->
+      </form>
+
+      <h2 id="form-states">Form States</h2>
+      <input class="form-control" id="focusedInput" type="text" value="This is focused...">
+      <input class="form-control" id="disabledInput" type="text" placeholder="Disabled input here..." disabled>
+      <form class="form-inline" role="form">
+        <fieldset disabled>
+          <div class="form-group">
+            <label for="disabledTextInput">Disabled input</label>
+            <input type="text" id="disabledTextInput" class="form-control" placeholder="Disabled input">
+          </div>
+          <div class="form-group">
+            <label for="disabledSelect">Disabled select menu</label>
+            <select id="disabledSelect" class="form-control">
+              <option>Disabled select</option>
+            </select>
+          </div>
+          <div class="checkbox">
+            <label>
+              <input type="checkbox"> Can't check this
+            </label>
+          </div>
+          <button type="submit" class="btn btn-primary">Submit</button>
+        </fieldset>
+      </form>
+      <div class="form-group has-success">
+        <label class="control-label" for="inputSuccess">Input with success</label>
+        <input type="text" class="form-control" id="inputSuccess">
+      </div>
+      <div class="form-group has-success">
+        <label class="control-label" for="selectSuccess">Select with success</label>
+        <select class="form-control" id="selectSuccess">
+          <option>1</option>
+          <option>2</option>
+          <option>3</option>
+          <option>4</option>
+          <option>5</option>
+        </select>
+      </div>
+      <div class="form-group has-warning">
+        <label class="control-label" for="inputWarning">Input with warning</label>
+        <input type="text" class="form-control" id="inputWarning">
+      </div>
+      <div class="form-group has-warning">
+        <label class="control-label" for="selectWarning">Select with warning</label>
+        <select class="form-control" id="selectWarning">
+          <option>1</option>
+          <option>2</option>
+          <option>3</option>
+          <option>4</option>
+          <option>5</option>
+        </select>
+      </div>
+      <div class="form-group has-error">
+        <label class="control-label" for="inputError">Input with error</label>
+        <input type="text" class="form-control" id="inputError2">
+      </div>
+      <div class="form-group has-error">
+        <label class="control-label" for="selectError">Select with error</label>
+        <select class="form-control" id="selectError">
+          <option>1</option>
+          <option>2</option>
+          <option>3</option>
+          <option>4</option>
+          <option>5</option>
+        </select>
+      </div>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/horizontal-navigation.html b/themes/src/main/node_modules/rcue/tests/horizontal-navigation.html
new file mode 100644
index 0000000..042631b
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/horizontal-navigation.html
@@ -0,0 +1,777 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 layout-pf layout-pf-fixed"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="layout-pf layout-pf-fixed">
+  <!--<![endif]-->
+    <head>
+    <title>Horizontal Navigation - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body class="cards-pf">
+    
+  
+
+<nav class="navbar navbar-default navbar-pf" role="navigation">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a class="navbar-brand" href="/">
+      <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+  </div>
+  <div class="collapse navbar-collapse navbar-collapse-1">
+    <ul class="nav navbar-nav navbar-utility">
+      
+      <li class="dropdown">
+        <a href="#0" class="nav-item-iconic" id="horizontalDropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="horizontalDropdownMenu1">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+          <span class="pficon pficon-user"></span>
+          Brian Johnson <b class="caret"></b>
+        </a>
+        <ul class="dropdown-menu">
+          <li>
+            <a href="#0">Link</a>
+          </li>
+          <li>
+            <a href="#0">Another link</a>
+          </li>
+          <li>
+            <a href="#0">Something else here</a>
+          </li>
+          <li class="divider"></li>
+          <li class="dropdown-submenu">
+            <a tabindex="-1" href="#0">More options</a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-header">Nav header</li>
+              <li>
+                <a href="#0">Separated link</a>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+          <li class="divider"></li>
+          <li>
+            <a href="#0">One more separated link</a>
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <ul class="nav navbar-nav navbar-primary">
+      <li>
+        <a href="#0">First Link</a>
+      </li>
+      <li class="active">
+        <a href="#0">Another Link</a>
+      </li>
+      <li>
+        <a href="#0">And Another</a>
+      </li>
+      <li>
+        <a href="#0">As a General Rule</a>
+      </li>
+      <li>
+        <a href="#0">Five to Seven Links</a>
+      </li>
+      <li>
+        <a href="#0">Is Good</a>
+      </li>
+    </ul>
+  </div>
+</nav>
+
+
+<div class="container-fluid container-cards-pf" id="main">
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">20</span> Amet</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-warning-triangle-o"></span>1</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">9</span> Adipiscing</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status">
+            <h2 class="card-pf-title">
+              <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">12</span> Lorem</a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <span class="fa fa-rebel"></span>
+    <span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="fa fa-paper-plane"></span>
+      <span class="card-pf-aggregate-status-count">20</span> Amet
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="pficon pficon-cluster"></span>
+      <span class="card-pf-aggregate-status-count">9</span> Adipiscing
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+            <h2 class="card-pf-title">
+              <a href="#">
+                <span class="pficon pficon-image"></span>
+                <span class="card-pf-aggregate-status-count">12</span> Lorem
+              </a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Top Utilized Clusters
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-description">
+      RHOS6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 95%;"  data-toggle="tooltip" title="95% Used">
+        <span><strong>190.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;" data-toggle="tooltip" title="5% Available">
+        <span class="sr-only">5% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      CFMEQE-Cluster
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;"  data-toggle="tooltip" title="50% Used">
+        <span><strong>100.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Available">
+        <span class="sr-only">50% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHOS-Undercloud
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;"  data-toggle="tooltip" title="70% Used">
+        <span><strong>140.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width: 30%;" data-toggle="tooltip" title="30% Available">
+        <span class="sr-only">30% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHEL6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="76.5" aria-valuemin="0" aria-valuemax="100" style="width: 76.5%;"  data-toggle="tooltip" title="76.5% Used">
+        <span><strong>153.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="23.5" aria-valuemin="0" aria-valuemax="100" style="width: 23.5%;" data-toggle="tooltip" title="23.5% Available">
+        <span class="sr-only">23.5% Available</span>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Quotas
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        CPU
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
+          <span><strong>115 of 460</strong> MHz</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
+          <span class="sr-only">75% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Memory
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Used">
+          <span><strong>8 of 16</strong> GB</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Available">
+          <span class="sr-only">50% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Pods
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="62.5" aria-valuemin="0" aria-valuemax="100" style="width: 62.5%;" data-toggle="tooltip" title="62.5% Used">
+          <span><strong>5 of 8</strong> Total</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="37.5" aria-valuemin="0" aria-valuemax="100" style="width: 37.5%;" data-toggle="tooltip" title="37.5% Available">
+          <span class="sr-only">37.5% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Services
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;" data-toggle="tooltip" title="100% Used">
+          <span><strong>2 of 2</strong> Total</span>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-md-12">
+<div class="card-pf card-pf-utilization">
+  <div class="card-pf-heading">
+    <p class="card-pf-heading-details">Last 30 days</p>
+    <h2 class="card-pf-title">
+      Utilization
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="row">
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">CPU</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">50</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1000 MHz</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-1"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-1"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-1';
+          donutConfig.color =  {
+            pattern: ["#cc0000","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 95],
+              ["Available", 5]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' MHz ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart1 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-1").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("950").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("MHz Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-1';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 10, 50, 28, 20, 31, 27, 60, 36, 52, 55, 62, 68, 69, 88, 74, 88, 95],
+            ],
+            type: 'area'
+          };
+          var chart2 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Memory</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">256</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 432 GB</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-2"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-2"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-2';
+          donutConfig.color =  {
+            pattern: ["#3f9c35","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 41],
+              ["Available", 59]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' GB ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart3 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-2").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("176").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("GB Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-2';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 35, 36, 20, 30, 31, 22, 44, 36, 40, 41, 55, 52, 48, 48, 50, 40, 41],
+            ],
+            type: 'area'
+          };
+          var chart4 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Network</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">200</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-3"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-3"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-3';
+          donutConfig.color =  {
+            pattern: ["#EC7A08","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 85],
+              ["Available", 15]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart5 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-3").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-3';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+            ],
+            type: 'area'
+          };
+          var chart6 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-xs-12 col-sm-4 col-md-4">
+<div class="card-pf card-pf-utilization">
+  <h2 class="card-pf-title">
+    Network
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-utilization-details">
+      <span class="card-pf-utilization-card-details-count">200</span>
+        <span class="card-pf-utilization-card-details-description">
+          <span class="card-pf-utilization-card-details-line-1">Available</span>
+          <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+        </span>
+    </p>
+    <div id="chart-pf-donut-4"></div>
+    <div class="chart-pf-sparkline" id="chart-pf-sparkline-4"></div>
+    <script>
+      var c3ChartDefaults = $().c3ChartDefaults();
+
+      var donutConfig = c3ChartDefaults.getDefaultDonutConfig('A');
+      donutConfig.bindto = '#chart-pf-donut-4';
+      donutConfig.color =  {
+        pattern: ["#EC7A08","#D1D1D1"]
+      };
+      donutConfig.data = {
+        type: "donut",
+        columns: [
+          ["Used", 85],
+          ["Available", 15]
+        ],
+        groups: [
+          ["used", "available"]
+        ],
+        order: null
+      };
+      donutConfig.tooltip = {
+        contents: function (d) {
+          return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                  Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                  '</span>';
+        }
+      };
+
+      var chart1 = c3.generate(donutConfig);
+      var donutChartTitle = d3.select("#chart-pf-donut-4").select('text.c3-chart-arcs-title');
+      donutChartTitle.text("");
+      donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+      donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+      var sparklineConfig = c3ChartDefaults.getDefaultSparklineConfig();
+      sparklineConfig.bindto = '#chart-pf-sparkline-4';
+      sparklineConfig.data = {
+        columns: [
+          ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+        ],
+        type: 'area'
+      };
+
+      var chart2 = c3.generate(sparklineConfig);
+    </script>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-5">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <h2 class="card-pf-title">
+      Card Title
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-7">
+<div class="card-pf">
+  <h2 class="card-pf-title">
+    Card Title
+  </h2>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+  <div class="card-pf-footer">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <p>
+      <a href="#" class="card-pf-link-with-icon">
+        <span class="pficon pficon-add-circle-o"></span>Add New Cluster
+      </a>
+    </p>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-5 col-md-5">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <div class="dropdown card-pf-time-frame-filter">
+                <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+                  Last 30 Days <span class="caret"></span>
+                </button>
+                <ul class="dropdown-menu dropdown-menu-right" role="menu">
+                  <li class="selected"><a href="#">Last 30 Days</a></li>
+                  <li><a href="#">Last 60 Days</a></li>
+                  <li><a href="#">Last 90 Days</a></li>
+                </ul>
+              </div>
+              <p>
+                <a href="#" class="card-pf-link-with-icon">
+                  <span class="pficon pficon-flag"></span>View CPU Events
+                </a>
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-12 col-sm-7 col-md-7">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-8 col-md-8">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-4">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+
+</div>
+<script>
+  $(document).ready(function() {
+    // matchHeight the contents of each .card-pf and then the .card-pf itself
+    $(".row-cards-pf > [class*='col'] > .card-pf .card-pf-title").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-footer").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf").matchHeight();
+
+    // initialize tooltips
+    $('[data-toggle="tooltip"]').tooltip();
+  });
+</script>
+
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/icons.html b/themes/src/main/node_modules/rcue/tests/icons.html
new file mode 100644
index 0000000..3aa64ef
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/icons.html
@@ -0,0 +1,625 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Icons - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Icons</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <div class="row">
+        <div class="col-sm-6 col-md-6">
+          <h2>PatternFly Icons</h2>
+          <p>Custom icons and selections from <a href="http://icomoon.io/#icons">IcoMoon - Free</a>.</p>
+          <ul class="icons list-unstyled">
+            <li>
+              <span class="pficon pficon-add-circle-o"></span>
+              <span class="icon-class">pficon-add-circle-o</span>
+            </li>
+            <li>
+              <span class="pficon pficon-applications"></span>
+              <span class="icon-class">pficon-applications</span>
+            </li>
+            <li>
+              <span class="pficon pficon-arrow"></span>
+              <span class="icon-class">pficon-arrow</span>
+            </li>
+            <li>
+              <span class="pficon pficon-asleep"></span>
+              <span class="icon-class">pficon-asleep</span>
+            </li>
+            <li>
+              <span class="pficon pficon-automation"></span>
+              <span class="icon-class">pficon-automation</span>
+            </li>
+            <li>
+              <span class="pficon pficon-blueprint"></span>
+              <span class="icon-class">pficon-blueprint</span>
+            </li>
+            <li>
+              <span class="pficon pficon-build"></span>
+              <span class="icon-class">pficon-build</span>
+            </li>
+            <li>
+              <span class="pficon pficon-builder-image"></span>
+              <span class="icon-class">pficon-builder-image</span>
+            </li>
+            <li>
+              <span class="pficon pficon-bundle"></span>
+              <span class="icon-class">pficon-bundle</span>
+            </li>
+            <li>
+              <span class="pficon pficon-catalog"></span>
+              <span class="icon-class">pficon-catalog</span>
+            </li>
+            <li>
+              <span class="pficon pficon-close"></span>
+              <span class="icon-class">pficon-close</span>
+            </li>
+            <li>
+              <span class="pficon pficon-cloud-security"></span>
+              <span class="icon-class">pficon-cloud-security</span>
+            </li>
+            <li>
+              <span class="pficon pficon-cloud-tenant"></span>
+              <span class="icon-class">pficon-cloud-tenant</span>
+            </li>
+            <li>
+              <span class="pficon pficon-cluster"></span>
+              <span class="icon-class">pficon-cluster</span>
+            </li>
+            <li>
+              <span class="pficon pficon-connected"></span>
+              <span class="icon-class">pficon-connected</span>
+            </li>
+            <li>
+              <span class="pficon pficon-container-node"></span>
+              <span class="icon-class">pficon-container-node</span>
+            </li>
+            <li>
+              <span class="pficon pficon-cpu"></span>
+              <span class="icon-class">pficon-cpu</span>
+            </li>
+            <li>
+              <span class="pficon pficon-chat"></span>
+              <span class="icon-class">pficon-chat</span>
+            </li>
+            <li>
+              <span class="pficon pficon-degraded"></span>
+              <span class="icon-class">pficon-degraded</span>
+            </li>
+            <li>
+              <span class="pficon pficon-delete"></span>
+              <span class="icon-class">pficon-delete</span>
+            </li>
+            <li>
+              <span class="pficon pficon-disconnected"></span>
+              <span class="icon-class">pficon-disconnected</span>
+            </li>
+            <li>
+              <span class="pficon pficon-domain"></span>
+              <span class="icon-class">pficon-domain</span>
+            </li>
+            <li>
+              <span class="pficon pficon-edit"></span>
+              <span class="icon-class">pficon-edit</span>
+            </li>
+            <li>
+              <span class="pficon pficon-enhancement"></span>
+              <span class="icon-class">pficon-enhancement</span>
+            </li>
+            <li>
+              <span class="pficon pficon-enterprise"></span>
+              <span class="icon-class">pficon-enterprise</span>
+            </li>
+            <li>
+              <span class="pficon pficon-equalizer"></span>
+              <span class="icon-class">pficon-equalizer</span>
+            </li>
+            <li>
+              <span class="pficon pficon-error-circle-o"></span>
+              <span class="icon-class">pficon-error-circle-o</span>
+            </li>
+            <li>
+              <span class="pficon pficon-export"></span>
+              <span class="icon-class">pficon-export</span>
+            </li>
+            <li>
+              <span class="pficon pficon-flag"></span>
+              <span class="icon-class">pficon-flag</span>
+            </li>
+            <li>
+              <span class="pficon pficon-flavor"></span>
+              <span class="icon-class">pficon-flavor</span>
+            </li>
+            <li>
+              <span class="pficon pficon-filter"></span>
+              <span class="icon-class">pficon-filter</span>
+            </li>
+            <li>
+              <span class="pficon pficon-folder-close"></span>
+              <span class="icon-class">pficon-folder-close</span>
+            </li>
+            <li>
+              <span class="pficon pficon-folder-open"></span>
+              <span class="icon-class">pficon-folder-open</span>
+            </li>
+            <li>
+              <span class="pficon pficon-help"></span>
+              <span class="icon-class">pficon-help</span>
+            </li>
+            <li>
+              <span class="pficon pficon-home"></span>
+              <span class="icon-class">pficon-home</span>
+            </li>
+            <li>
+              <span class="pficon pficon-history"></span>
+              <span class="icon-class">pficon-history</span>
+            </li>
+            <li>
+              <span class="pficon pficon-image"></span>
+              <span class="icon-class">pficon-image</span>
+            </li>
+            <li>
+              <span class="pficon pficon-import"></span>
+              <span class="icon-class">pficon-import</span>
+            </li>
+            <li>
+              <span class="pficon pficon-in-progress"></span>
+              <span class="icon-class">pficon-in-progress</span>
+            </li>
+            <li>
+              <span class="pficon pficon-info"></span>
+              <span class="icon-class">pficon-info</span>
+            </li>
+            <li>
+              <span class="pficon pficon-infrastructure"></span>
+              <span class="icon-class">pficon-infrastructure</span>
+            </li>
+            <li>
+              <span class="pficon pficon-integration"></span>
+              <span class="icon-class">pficon-integration</span>
+            </li>
+            <li>
+              <span class="pficon pficon-key"></span>
+              <span class="icon-class">pficon-key</span>
+            </li>
+            <li>
+              <span class="pficon pficon-locked"></span>
+              <span class="icon-class">pficon-locked</span>
+            </li>
+            <li>
+              <span class="pficon pficon-maintenance"></span>
+              <span class="icon-class">pficon-maintenance</span>
+            </li>
+            <li>
+              <span class="pficon pficon-memory"></span>
+              <span class="icon-class">pficon-memory</span>
+            </li>
+            <li>
+              <span class="pficon pficon-migration"></span>
+              <span class="icon-class">pficon-migration</span>
+            </li>
+            <li>
+              <span class="pficon pficon-monitoring"></span>
+              <span class="icon-class">pficon-monitoring</span>
+            </li>
+            <li>
+              <span class="pficon pficon-middleware"></span>
+              <span class="icon-class">pficon-middleware</span>
+            </li>
+            <li>
+              <span class="pficon pficon-network-range"></span>
+              <span class="icon-class">pficon-network-range</span>
+            </li>
+            <li>
+              <span class="pficon pficon-network"></span>
+              <span class="icon-class">pficon-network</span>
+            </li>
+            <li>
+              <span class="pficon pficon-off"></span>
+              <span class="icon-class">pficon-off</span>
+            </li>
+            <li>
+              <span class="pficon pficon-ok"></span>
+              <span class="icon-class">pficon-ok</span>
+            </li>
+            <li>
+              <span class="pficon pficon-on"></span>
+              <span class="icon-class">pficon-on</span>
+            </li>
+            <li>
+              <span class="pficon pficon-on-running"></span>
+              <span class="icon-class">pficon-on-running</span>
+            </li>
+            <li>
+              <span class="pficon pficon-optimize"></span>
+              <span class="icon-class">pficon-optimize</span>
+            </li>
+            <li>
+              <span class="pficon pficon-orders"></span>
+              <span class="icon-class">pficon-orders</span>
+            </li>
+            <li>
+              <span class="pficon pficon-paused"></span>
+              <span class="icon-class">pficon-paused</span>
+            </li>
+            <li>
+              <span class="pficon pficon-pending"></span>
+              <span class="icon-class">pficon-pending</span>
+            </li>
+            <li>
+              <span class="pficon pficon-plugged"></span>
+              <span class="icon-class">pficon-plugged</span>
+            </li>
+            <li>
+              <span class="pficon pficon-port"></span>
+              <span class="icon-class">pficon-port</span>
+            </li>
+            <li>
+              <span class="pficon pficon-print"></span>
+              <span class="icon-class">pficon-print</span>
+            </li>
+            <li>
+              <span class="pficon pficon-process-automation"></span>
+              <span class="icon-class">pficon-process-automation</span>
+            </li>
+            <li>
+              <span class="pficon pficon-private"></span>
+              <span class="icon-class">pficon-private</span>
+            </li>
+            <li>
+              <span class="pficon pficon-project"></span>
+              <span class="icon-class">pficon-project</span>
+            </li>
+            <li>
+              <span class="pficon pficon-rebalance"></span>
+              <span class="icon-class">pficon-rebalance</span>
+            </li>
+            <li>
+              <span class="pficon pficon-regions"></span>
+              <span class="icon-class">pficon-regions</span>
+            </li>
+            <li>
+              <span class="pficon pficon-registry"></span>
+              <span class="icon-class">pficon-registry</span>
+            </li>
+            <li>
+              <span class="pficon pficon-replicator"></span>
+              <span class="icon-class">pficon-replicator</span>
+            </li>
+            <li>
+              <span class="pficon pficon-repository"></span>
+              <span class="icon-class">pficon-repository</span>
+            </li>
+            <li>
+              <span class="pficon pficon-resource-pool"></span>
+              <span class="icon-class">pficon-resource-pool</span>
+            </li>
+            <li>
+              <span class="pficon pficon-resources-almost-empty"></span>
+              <span class="icon-class">pficon-resources-almost-empty</span>
+            </li>
+            <li>
+              <span class="pficon pficon-resources-almost-full"></span>
+              <span class="icon-class">pficon-resources-almost-full</span>
+            </li>
+            <li>
+              <span class="pficon pficon-resources-full"></span>
+              <span class="icon-class">pficon-resources-full</span>
+            </li>
+            <li>
+              <span class="pficon pficon-restart"></span>
+              <span class="icon-class">pficon-restart</span>
+            </li>
+            <li>
+              <span class="pficon pficon-route"></span>
+              <span class="icon-class">pficon-route</span>
+            </li>
+            <li>
+              <span class="pficon pficon-satellite"></span>
+              <span class="icon-class">pficon-satellite</span>
+            </li>
+            <li>
+              <span class="pficon pficon-save"></span>
+              <span class="icon-class">pficon-save</span>
+            </li>
+            <li>
+              <span class="pficon pficon-screen"></span>
+              <span class="icon-class">pficon-screen</span>
+            </li>
+            <li>
+              <span class="pficon pficon-search"></span>
+              <span class="icon-class">pficon-search</span>
+            </li>
+            <li>
+              <span class="pficon pficon-security"></span>
+              <span class="icon-class">pficon-security</span>
+            </li>
+            <li>
+              <span class="pficon pficon-server"></span>
+              <span class="icon-class">pficon-server</span>
+            </li>
+            <li>
+              <span class="pficon pficon-server-group"></span>
+              <span class="icon-class">pficon-server-group</span>
+            </li>
+            <li>
+              <span class="pficon pficon-service"></span>
+              <span class="icon-class">pficon-service</span>
+            </li>
+            <li>
+              <span class="pficon pficon-service-catalog"></span>
+              <span class="icon-class">pficon-service-catalog</span>
+            </li>
+            <li>
+              <span class="pficon pficon-services"></span>
+              <span class="icon-class">pficon-services</span>
+            </li>
+            <li>
+              <span class="pficon pficon-settings"></span>
+              <span class="icon-class">pficon-settings</span>
+            </li>
+            <li>
+              <span class="pficon pficon-spinner"></span>
+              <span class="icon-class">pficon-spinner</span>
+            </li>
+            <li>
+              <span class="pficon pficon-storage-domain"></span>
+              <span class="icon-class">pficon-storage-domain</span>
+            </li>
+            <li>
+              <span class="pficon pficon-template"></span>
+              <span class="icon-class">pficon-template</span>
+            </li>
+            <li>
+              <span class="pficon pficon-tenant"></span>
+              <span class="icon-class">pficon-tenant</span>
+            </li>
+            <li>
+              <span class="pficon pficon-thumb-tack-o"></span>
+              <span class="icon-class">pficon-thumb-tack-o</span>
+            </li>
+            <li>
+              <span class="pficon pficon-topology"></span>
+              <span class="icon-class">pficon-topology</span>
+            </li>
+            <li>
+              <span class="pficon pficon-trend-down"></span>
+              <span class="icon-class">pficon-trend-down</span>
+            </li>
+            <li>
+              <span class="pficon pficon-trend-up"></span>
+              <span class="icon-class">pficon-trend-up</span>
+            </li>
+            <li>
+              <span class="pficon pficon-unknown"></span>
+              <span class="icon-class">pficon-unknown</span>
+            </li>
+            <li>
+              <span class="pficon pficon-unlocked"></span>
+              <span class="icon-class">pficon-unlocked</span>
+            </li>
+            <li>
+              <span class="pficon pficon-unplugged"></span>
+              <span class="icon-class">pficon-unplugged</span>
+            </li>
+            <li>
+              <span class="pficon pficon-user"></span>
+              <span class="icon-class">pficon-user</span>
+            </li>
+            <li>
+              <span class="pficon pficon-users"></span>
+              <span class="icon-class">pficon-users</span>
+            </li>
+            <li>
+              <span class="pficon pficon-vcenter"></span>
+              <span class="icon-class">pficon-vcenter</span>
+            </li>
+            <li>
+              <span class="pficon pficon-virtual-machine"></span>
+              <span class="icon-class">pficon-virtual-machine</span>
+            </li>
+            <li>
+              <span class="pficon pficon-volume"></span>
+              <span class="icon-class">pficon-volume</span>
+            </li>
+            <li>
+              <span class="pficon pficon-warning-triangle-o"></span>
+              <span class="icon-class">pficon-warning-triangle-o</span>
+            </li>
+            <li>
+              <span class="pficon pficon-zone"></span>
+              <span class="icon-class">pficon-zone</span>
+            </li>
+          </ul>
+        </div>
+        <div class="col-sm-6 col-md-6">
+          <h2>Recommended Font Awesome Icons</h2>
+          <p>All <a href="http://fontawesome.io/icons/">Font Awesome</a> icons are available, but only these are recommended for use with PatternFly.</p>
+          <ul class="icons list-unstyled">
+            <li>
+              <span class="fa fa-angle-down"></span>
+              <span class="icon-class">fa-angle-down</span>
+            </li>
+            <li>
+              <span class="fa fa-angle-left"></span>
+              <span class="icon-class">fa-angle-left</span>
+            </li>
+            <li>
+              <span class="fa fa-angle-right"></span>
+              <span class="icon-class">fa-angle-right</span>
+            </li>
+            <li>
+              <span class="fa fa-angle-up"></span>
+              <span class="icon-class">fa-angle-up</span>
+            </li>
+            <li>
+              <span class="fa fa-angle-double-left"></span>
+              <span class="icon-class">fa-angle-double-left</span>
+            </li>
+            <li>
+              <span class="fa fa-angle-double-right"></span>
+              <span class="icon-class">fa-angle-double-right</span>
+            </li>
+            <li>
+              <span class="fa fa-arrow-circle-o-down"></span>
+              <span class="icon-class">fa-arrow-circle-o-down</span>
+            </li>
+            <li>
+              <span class="fa fa-arrow-circle-o-up"></span>
+              <span class="icon-class">fa-arrow-circle-o-up</span>
+            </li>
+            <li>
+              <span class="fa fa-ban"></span>
+              <span class="icon-class">fa-ban</span>
+            </li>
+            <li>
+              <span class="fa fa-book"></span>
+              <span class="icon-class">fa-book</span>
+            </li>
+            <li>
+              <span class="fa fa-briefcase"></span>
+              <span class="icon-class">fa-briefcase</span>
+            </li>
+            <li>
+              <span class="fa fa-bug"></span>
+              <span class="icon-class">fa-bug</span>
+            </li>
+            <li>
+              <span class="fa fa-check"></span>
+              <span class="icon-class">fa-check</span>
+            </li>
+            <li>
+              <span class="fa fa-clock-o"></span>
+              <span class="icon-class">fa-clock-o</span>
+            </li>
+            <li>
+              <span class="fa fa-cogs"></span>
+              <span class="icon-class">fa-cogs</span>
+            </li>
+            <li>
+              <span class="fa fa-cube"></span>
+              <span class="icon-class">fa-cube</span>
+            </li>
+            <li>
+              <span class="fa fa-cubes"></span>
+              <span class="icon-class">fa-cubes</span>
+            </li>
+            <li>
+              <span class="fa fa-database"></span>
+              <span class="icon-class">fa-database</span>
+            </li>
+            <li>
+              <span class="fa fa-envelope"></span>
+              <span class="icon-class">fa-envelope</span>
+            </li>
+            <li>
+              <span class="fa fa-gears"></span>
+              <span class="icon-class">fa-gears</span>
+            </li>
+            <li>
+              <span class="fa fa-heartbeat"></span>
+              <span class="icon-class">fa-heartbeat</span>
+            </li>
+            <li>
+              <span class="fa fa-lightbulb-o"></span>
+              <span class="icon-class">fa-lightbulb-o</span>
+            </li>
+            <li>
+              <span class="fa fa-line-chart"></span>
+              <span class="icon-class">fa-line-chart</span>
+            </li>
+            <li>
+              <span class="fa fa-clock-o"></span>
+              <span class="icon-class">fa-cogs</span>
+            </li>
+            <li>
+              <span class="fa fa-map-marker"></span>
+              <span class="icon-class">fa-map-marker</span>
+            </li>
+            <li>
+              <span class="fa fa-minus"></span>
+              <span class="icon-class">fa-minus</span>
+            </li>
+            <li>
+              <span class="fa fa-plus"></span>
+              <span class="icon-class">fa-plus</span>
+            </li>
+            <li>
+              <span class="fa fa-plus-square"></span>
+              <span class="icon-class">fa-plus-square</span>
+            </li>
+            <li>
+              <span class="fa fa-refresh"></span>
+              <span class="icon-class">fa-refresh</span>
+            </li>
+            <li>
+              <span class="fa fa-search"></span>
+              <span class="icon-class">fa-search</span>
+            </li>
+            <li>
+              <span class="fa fa-shield"></span>
+              <span class="icon-class">fa-shield</span>
+            </li>
+            <li>
+              <span class="fa fa-star"></span>
+              <span class="icon-class">fa-star</span>
+            </li>
+            <li>
+              <span class="fa fa-star-o"></span>
+              <span class="icon-class">fa-star-o</span>
+            </li>
+            <li>
+              <span class="fa fa-tachometer"></span>
+              <span class="icon-class">fa-tachometer</span>
+            </li>
+            <li>
+              <span class="fa fa-thumb-tack"></span>
+              <span class="icon-class">fa-thumb-tack</span>
+            </li>
+            <li>
+              <span class="fa fa-wrench"></span>
+              <span class="icon-class">fa-wrench</span>
+            </li>
+          </ul>
+        </div>
+      </div>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/img/dashboard-3.png b/themes/src/main/node_modules/rcue/tests/img/dashboard-3.png
new file mode 100644
index 0000000..df6fe4b
Binary files /dev/null and b/themes/src/main/node_modules/rcue/tests/img/dashboard-3.png differ
diff --git a/themes/src/main/node_modules/rcue/tests/index.html b/themes/src/main/node_modules/rcue/tests/index.html
new file mode 100644
index 0000000..17cbb8f
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/index.html
@@ -0,0 +1,305 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Red Hat&reg; Common User Experience</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <div class="row">
+        <div class="col-sm-6">
+          <h2>Widgets</h2>
+          <ul>
+            <li>
+              <a href="about-modal.html">About Modal</a>
+            </li>
+            <li>
+              <a href="accordions.html">Accordions</a>
+            </li>
+            <li>
+              <a href="alerts.html">Alerts</a>
+            </li>
+            <li>
+              <a href="application-launcher.html">Application Launcher</a>
+            </li>
+            <li>
+              <a href="badges.html">Badges</a>
+            </li>
+            <li>
+              <a href="blank-slate.html">Blank Slate</a>
+            </li>
+            <li>
+              <a href="bootstrap-combobox.html">Bootstrap-Combobox</a>
+            </li>
+            <li>
+              <a href="bootstrap-datepicker.html">Bootstrap-Datepicker</a>
+            </li>
+            <li>
+              <a href="bootstrap-select.html">Bootstrap-Select</a>
+            </li>
+            <li>
+              <a href="bootstrap-slider.html">Bootstrap Slider</a>
+            </li>
+            <li>
+              <a href="bootstrap-switch.html">Bootstrap Switch</a>
+            </li>
+            <li>
+              <a href="bootstrap-touchspin.html">Bootstrap Touchspin</a>
+            </li>
+            <li>
+              <a href="bootstrap-treeview.html">Bootstrap Tree View</a>
+            </li>
+            <li>
+              <a href="breadcrumbs.html">Breadcrumbs</a>
+            </li>
+            <li>
+              <a href="buttons.html">Buttons</a>
+            </li>
+            <li>
+              <a href="card-view-card-variations.html">Card View - Card Variations</a>
+            </li>
+            <li>
+              <a href="code.html">Code</a>
+            </li>
+            <li>
+              <a href="context-selector.html">Context Selector</a>
+            </li>
+            <li>
+              <a href="dropdowns.html">Dropdowns</a>
+            </li>
+            <li>
+              <a href="experimental-features.html">Experimental Features</a>
+            </li>
+            <li>
+              <a href="filter.html">Filter</a>
+            </li>
+            <li>
+              <a href="forms.html">Forms</a>
+            </li>
+            <li>
+              <a href="icons.html">Icons</a>
+            </li>
+            <li>
+              <a href="infotip.html">Info Tip</a>
+            </li>
+            <li>
+              <a href="labels.html">Labels</a>
+            </li>
+            <li>
+              <a href="list-group.html">List Group</a>
+            </li>
+            <li>
+              <a href="list-pf.html">List</a>
+            </li>
+            <li>
+              <a href="list-view-rows.html">List View Rows</a>
+            </li>
+            <li>
+              <a href="modals.html">Modals</a>
+            </li>
+            <li>
+              <a href="navbar.html">Navbar</a>
+            </li>
+            <li>
+              <a href="pagination.html">Pagination</a>
+            </li>
+            <li>
+              <a href="panels.html">Panels</a>
+            </li>
+            <li>
+              <a href="popovers.html">Popovers</a>
+            </li>
+            <li>
+              <a href="progress-bars.html">Progress Bars</a>
+            </li>
+            <li>
+              <a href="search.html">Search</a>
+            </li>
+            <li>
+              <a href="skip-to-content.html">Skip to content link</a>
+            </li>
+            <li>
+              <a href="spinner.html">Spinner</a>
+            </li>
+            <li>
+              <a href="table-view-columns.html">Table View [Deprecated example] with column visibility, reordering</a>
+            </li>
+            <li>
+              <a href="table-view-navbar.html">Table View with Navbar</a>
+            </li>
+            <li>
+              <a href="table-view.html">Table View</a>
+            </li>
+            <li>
+              <a href="tables.html">Tables</a>
+            </li>
+            <li>
+              <a href="tabs.html">Tabs</a>
+            </li>
+            <li>
+              <a href="time-picker.html">Time Picker</a>
+            </li>
+            <li>
+              <a href="toast.html">Toast Notifications</a>
+            </li>
+            <li>
+              <a href="toolbar.html">Toolbar</a>
+            </li>
+            <li>
+              <a href="tooltip.html">Tooltip</a>
+            </li>
+            <li>
+              <a href="typography.html">Typography</a>
+            </li>
+            <li>
+              <a href="wizard(old).html">Wizard (old)</a>
+            </li>
+            <li>
+              <a href="wizard.html">Wizard</a>
+            </li>
+          </ul>
+        </div>
+        <div class="col-sm-6">
+          <h2>Charts</h2>
+          <ul>
+            <li>
+              <a href="area-charts.html">Area Charts</a>
+            </li>
+            <li>
+              <a href="bar-charts.html">Bar Charts</a>
+            </li>
+            <li>
+              <a href="donut-charts.html">Donut Charts</a>
+            </li>
+            <li>
+              <a href="line-charts.html">Line Charts</a>
+            </li>
+            <li>
+              <a href="pie-charts.html">Pie Charts</a>
+            </li>
+            <li>
+              <a href="utilization-bar-charts.html">Utilization Bar Charts</a>
+            </li>
+          </ul>
+        </div>
+        <div class="col-sm-6">
+          <h2>Layouts</h2>
+          <ul>
+            <li>
+              <a href="basic.html">Basic</a>
+            </li>
+            <li>
+              <a href="bootstrap-treeview-2.html">Tree View</a>
+            </li>
+            <li>
+              <a href="card-view-multi-select.html">Card View - Multi Select</a>
+            </li>
+            <li>
+              <a href="card-view-single-select.html">Card View - Single Select</a>
+            </li>
+            <li>
+              <a href="cards.html">Cards</a>
+            </li>
+            <li>
+              <a href="dashboard.html">Dashboard</a>
+            </li>
+            <li>
+              <a href="form.html">Form</a>
+            </li>
+            <li>
+              <a href="list-view-compound-expansion.html">List View - Compound Expansion</a>
+            </li>
+            <li>
+              <a href="list-view-simple-expansion.html">List View - Simple Expansion</a>
+            </li>
+            <li>
+              <a href="list-view.html">List View</a>
+            </li>
+            <li>
+              <a href="login-basic.html">Login basic</a>
+            </li>
+            <li>
+              <a href="login-multi-factor-identity-first-1.html">Login Multi-Factor Indentity First - Step One</a>
+            </li>
+            <li>
+              <a href="login-multi-factor-identity-first-2.html">Login Multi-Factor Indentity First - Step Two</a>
+            </li>
+            <li>
+              <a href="login-single-sign-on.html">Login Single Sign-On</a>
+            </li>
+            <li>
+              <a href="login-social-account-two-column.html">Login Social Account (two column)</a>
+            </li>
+            <li>
+              <a href="login-social-account.html">Login Social Account</a>
+            </li>
+            <li>
+              <a href="login.html">Login</a>
+            </li>
+            <li>
+              <a href="notification-drawer-horizontal-nav.html">Notification Drawer for Horizontal Navigation</a>
+            </li>
+            <li>
+              <a href="notification-drawer-vertical-nav.html">Notification Drawer for Vertical Navigation</a>
+            </li>
+            <li>
+              <a href="pagination-card-view.html">Pagination - Card View</a>
+            </li>
+            <li>
+              <a href="pagination-list-view.html">Pagination - List View</a>
+            </li>
+            <li>
+              <a href="pagination-table-view.html">Pagination - Table View</a>
+            </li>
+            <li>
+              <a href="tab.html">Tab</a>
+            </li>
+            <li>
+              <a href="typography-2.html">Typography</a>
+            </li>
+          </ul>
+        </div>
+        <div class="col-sm-6">
+          <h2>Alternate Layouts</h2>
+          <ul>
+          </ul>
+        </div>
+      </div>
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/infotip.html b/themes/src/main/node_modules/rcue/tests/infotip.html
new file mode 100644
index 0000000..5994d7b
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/infotip.html
@@ -0,0 +1,89 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Info Tip - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Info Tip</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-1">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown open">
+              <a href="#" data-toggle="dropdown">
+                <span class="pficon pficon-info"></span>
+                Messages: <strong>2</strong>
+              </a>
+              <div class="dropdown-menu infotip bottom-right">
+                <div class="arrow"></div>
+                <ul class="list-group">
+                  <li class="list-group-item">
+                    <span class="i pficon pficon-info"></span>
+                    Added Datasources TestDS
+                  </li>
+                  <li class="list-group-item">
+                    <span class="i pficon pficon-info"></span>
+                    Modified Datasources ExampleDS
+                  </li>
+                </ul>
+                <div class="footer"><a href="#">Clear Messages</a></div>
+              </div>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary">
+            <li>
+              <a href="#">First Link</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/labels.html b/themes/src/main/node_modules/rcue/tests/labels.html
new file mode 100644
index 0000000..8dbe4f9
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/labels.html
@@ -0,0 +1,108 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Labels - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Labels</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <h1>Example heading <span class="label label-default">New</span></h1>
+      <h2>Example heading <span class="label label-default">New</span></h2>
+      <h3>Example heading <span class="label label-default">New</span></h3>
+      <h4>Example heading <span class="label label-default">New</span></h4>
+      <h5>Example heading <span class="label label-default">New</span></h5>
+      <h6>Example heading <span class="label label-default">New</span></h6>
+      <hr>
+      <span class="label label-default">Default</span>
+      <span class="label label-primary">Primary</span>
+      <span class="label label-success">Success</span>
+      <span class="label label-info">Info</span>
+      <span class="label label-warning">Warning</span>
+      <span class="label label-danger">Danger</span>
+      <hr>
+      <table class="table table-striped table-bordered">
+        <thead>
+          <tr>
+            <th>Label</th>
+            <th>First Name</th>
+            <th>Last Name</th>
+            <th>Username</th>
+          </tr>
+        </thead>
+        <tbody>
+          <tr>
+            <td><span class="label label-default">Default</span></td>
+            <td>Mark</td>
+            <td>Otto</td>
+            <td>@mdo</td>
+          </tr>
+          <tr>
+            <td><span class="label label-primary">Primary</span></td>
+            <td>Jacob</td>
+            <td>Thornton</td>
+            <td>@fat</td>
+          </tr>
+          <tr>
+            <td><span class="label label-success">Success</span></td>
+            <td>Larry</td>
+            <td>the Bird</td>
+            <td>@twitter</td>
+          </tr>
+          <tr>
+            <td><span class="label label-info">Info</span></td>
+            <td>Mark</td>
+            <td>Otto</td>
+            <td>@mdo</td>
+          </tr>
+          <tr>
+            <td><span class="label label-warning">Warning</span></td>
+            <td>Jacob</td>
+            <td>Thornton</td>
+            <td>@fat</td>
+          </tr>
+          <tr>
+            <td><span class="label label-danger">Danger</span></td>
+            <td>Larry</td>
+            <td>the Bird</td>
+            <td>@twitter</td>
+          </tr>
+        </tbody>
+      </table>
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/line-charts.html b/themes/src/main/node_modules/rcue/tests/line-charts.html
new file mode 100644
index 0000000..cbb3463
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/line-charts.html
@@ -0,0 +1,178 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Line Charts - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Line Charts</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://c3js.org/">http://c3js.org/</a>
+      </div>
+      <hr>
+<h2>Sparkline</h2>
+<div class="row">
+  <div class="col-md-4">
+    <div id="sparklineChart" class="chart-pf-sparkline"></div>
+<div>Less than one year remaining</div>
+<script>
+  var c3ChartDefaults = $().c3ChartDefaults();
+  var sparklineChartConfig = c3ChartDefaults.getDefaultSparklineConfig();
+  sparklineChartConfig.bindto = '#sparklineChart';
+  sparklineChartConfig.data = {
+    columns: [
+      ['%', 10, 14, 12, 20, 31, 27, 44, 36, 52, 55, 62, 68, 69, 88, 74, 88, 91],
+    ],
+    type: 'area'
+  };
+  var sparklineChart = c3.generate(sparklineChartConfig);
+</script>
+
+  </div>
+</div>
+<h2>Line Chart</h2>
+<div class="row">
+  <div class="col-lg-6 col-sm-12">
+    <div id="lineChart" class="line-chart-pf"></div>
+<script>
+  var lineChartDataColumns = [
+    ['data1', 30, 200, 100, 400, 150, 250],
+    ['data2', 50, 220, 310, 240, 115, 25],
+    ['data3', 70, 100, 390, 295, 170, 220],
+    ['data4', 10, 340, 30, 290, 35, 20],
+    ['data5', 90, 150, 160, 165, 180, 5]
+  ];
+  var singleLineChartDataColumns = [
+    ['data1', 30, 200, 100, 400, 150, 250]
+  ];
+
+  var c3ChartDefaults = $().c3ChartDefaults();
+  var lineChartConfig = c3ChartDefaults.getDefaultLineConfig();
+  lineChartConfig.bindto = '#lineChart';
+  lineChartConfig.data = {
+    columns: lineChartDataColumns,
+    type: 'line'
+  };
+  var lineChart = c3.generate(lineChartConfig);
+</script>
+
+  </div>
+</div>
+<h2>Single Line Chart</h2>
+<div class="row">
+  <div class="col-lg-6 col-sm-12">
+    <div id="singleLineChart" class="line-chart-pf"></div>
+<script>
+  var lineChartDataColumns = [
+    ['data1', 30, 200, 100, 400, 150, 250],
+    ['data2', 50, 220, 310, 240, 115, 25],
+    ['data3', 70, 100, 390, 295, 170, 220],
+    ['data4', 10, 340, 30, 290, 35, 20],
+    ['data5', 90, 150, 160, 165, 180, 5]
+  ];
+  var singleLineChartDataColumns = [
+    ['data1', 30, 200, 100, 400, 150, 250]
+  ];
+
+  var singleLineChartConfig = c3ChartDefaults.getDefaultSingleLineConfig();
+  singleLineChartConfig.bindto = '#singleLineChart';
+  singleLineChartConfig.data = {
+    columns: singleLineChartDataColumns,
+    type: 'line'
+  };
+  var singleLineChart = c3.generate(singleLineChartConfig);
+</script>
+
+  </div>
+</div>
+<h2>Spline Chart</h2>
+<div class="row">
+  <div class="col-lg-6 col-sm-12">
+    <div id="splineChart" class="line-chart-pf"></div>
+<script>
+  var lineChartDataColumns = [
+    ['data1', 30, 200, 100, 400, 150, 250],
+    ['data2', 50, 220, 310, 240, 115, 25],
+    ['data3', 70, 100, 390, 295, 170, 220],
+    ['data4', 10, 340, 30, 290, 35, 20],
+    ['data5', 90, 150, 160, 165, 180, 5]
+  ];
+  var singleLineChartDataColumns = [
+    ['data1', 30, 200, 100, 400, 150, 250]
+  ];
+
+  var splineChartConfig = c3ChartDefaults.getDefaultLineConfig();
+  splineChartConfig.bindto = '#splineChart';
+  splineChartConfig.data = {
+    columns: lineChartDataColumns,
+    type: 'spline'
+  };
+  var splineChart = c3.generate(splineChartConfig);
+</script>
+
+  </div>
+</div>
+<h2>Single Spline Chart</h2>
+<div class="row">
+  <div class="col-lg-6 col-sm-12">
+    <div id="singleSplineChart" class="line-chart-pf"></div>
+<script>
+  var lineChartDataColumns = [
+    ['data1', 30, 200, 100, 400, 150, 250],
+    ['data2', 50, 220, 310, 240, 115, 25],
+    ['data3', 70, 100, 390, 295, 170, 220],
+    ['data4', 10, 340, 30, 290, 35, 20],
+    ['data5', 90, 150, 160, 165, 180, 5]
+  ];
+  var singleLineChartDataColumns = [
+    ['data1', 30, 200, 100, 400, 150, 250]
+  ];
+
+  var singleSplineChartConfig = c3ChartDefaults.getDefaultSingleLineConfig();
+  singleSplineChartConfig.bindto = '#singleSplineChart';
+  singleSplineChartConfig.data = {
+    columns: singleLineChartDataColumns,
+    type: 'spline'
+  };
+  var singleSplineChart = c3.generate(singleSplineChartConfig);
+</script>
+
+  </div>
+</div>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/list-group.html b/themes/src/main/node_modules/rcue/tests/list-group.html
new file mode 100644
index 0000000..9b1f1a2
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/list-group.html
@@ -0,0 +1,111 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>List Group - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>List Group</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <h2>Basic example</h2>
+      <ul class="list-group">
+        <li class="list-group-item">Cras justo odio</li>
+        <li class="list-group-item">Dapibus ac facilisis in</li>
+        <li class="list-group-item">Morbi leo risus</li>
+        <li class="list-group-item">Porta ac consectetur ac</li>
+        <li class="list-group-item">Vestibulum at eros</li>
+      </ul>
+      <hr>
+      <h2>Badges</h2>
+      <ul class="list-group">
+        <li class="list-group-item">
+          <span class="badge">14</span>
+          Cras justo odio
+        </li>
+        <li class="list-group-item">
+          <span class="badge">2</span>
+          Dapibus ac facilisis in
+        </li>
+        <li class="list-group-item">
+          <span class="badge">1</span>
+          Morbi leo risus
+        </li>
+      </ul>
+      <hr>
+      <h2>Linked items</h2>
+      <div class="list-group">
+        <a href="#" class="list-group-item active">
+          Cras justo odio
+        </a>
+        <a href="#" class="list-group-item">Dapibus ac facilisis in</a>
+        <a href="#" class="list-group-item">Morbi leo risus</a>
+        <a href="#" class="list-group-item">Porta ac consectetur ac</a>
+        <a href="#" class="list-group-item">Vestibulum at eros</a>
+      </div>
+      <hr>
+      <h2>Contextual classes</h2>
+      <ul class="list-group">
+        <li class="list-group-item list-group-item-success">Dapibus ac facilisis in</li>
+        <li class="list-group-item list-group-item-info">Cras sit amet nibh libero</li>
+        <li class="list-group-item list-group-item-warning">Porta ac consectetur ac</li>
+        <li class="list-group-item list-group-item-danger">Vestibulum at eros</li>
+      </ul>
+      <div class="list-group">
+        <a href="#" class="list-group-item list-group-item-success">Dapibus ac facilisis in</a>
+        <a href="#" class="list-group-item list-group-item-info">Cras sit amet nibh libero</a>
+        <a href="#" class="list-group-item list-group-item-warning">Porta ac consectetur ac</a>
+        <a href="#" class="list-group-item list-group-item-danger">Vestibulum at eros</a>
+      </div>
+      <hr>
+      <h2>Custom content</h2>
+      <div class="list-group">
+        <a href="#" class="list-group-item active">
+          <h4 class="list-group-item-heading">List group item heading</h4>
+          <p class="list-group-item-text">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.</p>
+        </a>
+        <a href="#" class="list-group-item">
+          <h4 class="list-group-item-heading">List group item heading</h4>
+          <p class="list-group-item-text">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.</p>
+        </a>
+        <a href="#" class="list-group-item">
+          <h4 class="list-group-item-heading">List group item heading</h4>
+          <p class="list-group-item-text">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.</p>
+        </a>
+      </div>
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/list-pf.html b/themes/src/main/node_modules/rcue/tests/list-pf.html
new file mode 100644
index 0000000..fc66d35
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/list-pf.html
@@ -0,0 +1,529 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>List - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>List</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+<!-- empty list with expansion -->
+<h3>Basic list with expansion</h3>
+<div class="list-pf">
+  <div class="list-pf-item">
+    <div class="list-pf-container" tabindex="0">
+      <div class="list-pf-chevron">
+        <span class="fa fa-angle-right"></span>
+      </div>
+      <div class="list-pf-content">
+        First line
+      </div>
+    </div> <!-- /list-pf-container -->
+
+    <div class="list-pf-expansion collapse">
+      <div class="list-pf-container" tabindex="0">
+        <div class="list-pf-chevron">
+          <span class="fa fa-angle-right"></span>
+        </div>
+        <div class="list-pf-content">
+          This is a first level section
+        </div>
+      </div> <!-- /list-pf-container -->
+
+      <div class="list-pf-expansion collapse">
+        <div class="list-pf-container" tabindex="0">
+          <div class="list-pf-content">
+            This is a second level section
+          </div>
+        </div> <!-- /list-pf-container -->
+      </div> <!-- /list-pf-expansion level 3 -->
+
+    </div> <!-- /list-pf-expansion level 2 -->
+  </div> <!-- /list-pf-expansion level 1 -->
+  <div class="list-pf-item active">
+    <div class="list-pf-container" tabindex="0">
+      <div class="list-pf-chevron">
+        <span class="fa fa-angle-right"></span>
+      </div>
+      <div class="list-pf-content">
+        This item is open by default
+      </div>
+    </div> <!-- /list-pf-container -->
+
+    <div class="list-pf-expansion collapse in">
+      <div class="list-pf-container" tabindex="0">
+        <div class="list-pf-chevron">
+          <span class="fa fa-angle-right"></span>
+        </div>
+        <div class="list-pf-content">
+          This is a first level section
+        </div>
+      </div> <!-- /list-pf-container -->
+
+      <div class="list-pf-expansion collapse in">
+        <div class="list-pf-container" tabindex="0">
+          <div class="list-pf-content">
+            This is a second level section
+          </div>
+        </div> <!-- /list-pf-container -->
+      </div> <!-- /list-pf-expansion level 3 -->
+
+    </div> <!-- /list-pf-expansion level 2 -->
+  </div> <!-- /list-pf-expansion level 1 -->
+</div>
+
+<!-- empty list with checkbox -->
+<h3>Basic list with row selection</h3>
+<div class="list-pf">
+  <div class="list-pf-item ">
+    <div class="list-pf-container">
+      <div class="list-pf-select">
+        <input type="checkbox">
+      </div>
+      <div class="list-pf-content">
+        Selectable list row content
+      </div>
+    </div>
+  </div>
+</div>
+
+<!-- empty list with expansion and checkbox -->
+<h3>Basic list with row selection and expansion</h3>
+<div class="list-pf">
+
+  <div class="list-pf-item ">
+    <div class="list-pf-container">
+      <div class="list-pf-chevron">
+        <span class="fa fa-angle-right"></span>
+      </div>
+      <div class="list-pf-select">
+        <input type="checkbox">
+      </div>
+      <div class="list-pf-content">
+        Expandable and selectable list row content
+      </div>
+    </div>
+
+    <!-- expansion --->
+    <div class="list-pf-expansion collapse">
+      <div class="list-pf-container" tabindex="0">
+        <div class="list-pf-content">
+          This is a second level section
+        </div>
+      </div> <!-- /list-pf-container -->
+    </div> <!-- /list-pf-expansion level 3 -->
+
+  </div>
+
+</div>
+
+<!-- empty list with expansion and checkbox -->
+<h3>Basic list with expand element instead of standard collapse</h3>
+<div class="list-pf">
+
+  <div class="list-pf-item" data-list="expansion">
+    <div class="list-pf-container">
+      <div class="list-pf-chevron">
+        <span class="fa fa-angle-right"></span>
+      </div>
+      <div class="list-pf-content">
+        <div class="list-pf-main-content">
+          <button data-list="toggle">Collapse</button>
+          <span class="list-pf-title">First line</span>
+        </div>
+      </div>
+    </div> <!-- /list-pf-container -->
+
+    <div class="list-pf-expansion collapse">
+      <div class="list-pf-container" tabindex="0">
+        <div class="list-pf-chevron">
+          <span class="fa fa-angle-right"></span>
+        </div>
+        <div class="list-pf-content">
+          This is a first level section
+        </div>
+      </div> <!-- /list-pf-container -->
+
+      <div class="list-pf-expansion collapse">
+        <div class="list-pf-container" tabindex="0">
+          <div class="list-pf-content">
+            This is a second level section
+          </div>
+        </div> <!-- /list-pf-container -->
+      </div> <!-- /list-pf-expansion level 3 -->
+
+    </div> <!-- /list-pf-expansion level 2 -->
+  </div> <!-- /list-pf-expansion level 1 -->
+
+</div>
+
+<!-- row with content -->
+<h3>List with content items</h3>
+<div class="list-pf">
+
+  <div class="list-pf-item ">
+    <div class="list-pf-container">
+      <div class="list-pf-select">
+        <input type="checkbox">
+      </div>
+      <div class="list-pf-content list-pf-content-flex">
+        <div class="list-pf-left">
+          <span class="fa fa-plane list-pf-icon list-pf-icon-bordered list-pf-icon-small"></span>
+        </div>
+        <div class="list-pf-content-wrapper">
+          <div class="list-pf-main-content ">
+
+            <div class="list-pf-title">Event One</div>
+            <div class="list-pf-description text-overflow-pf">Description of event one with <a href="">link text.</a></div>
+          </div>
+          <div class="list-pf-additional-content">
+            additional content
+          </div>
+        </div>
+        <div class="list-pf-actions">
+          <button class="btn btn-default">Action</button>
+          <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight1">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+        </div>
+      </div>
+    </div>
+
+  </div>
+  <div class="list-pf-item ">
+    <div class="list-pf-container">
+      <div class="list-pf-select">
+        <input type="checkbox">
+      </div>
+      <div class="list-pf-content list-pf-content-flex">
+        <div class="list-pf-left">
+          <span class="fa fa-plane list-pf-icon list-pf-icon-bordered list-pf-icon-small"></span>
+        </div>
+        <div class="list-pf-content-wrapper">
+          <div class="list-pf-main-content ">
+
+            <div class="list-pf-title">Event One with a longer title</div>
+            <div class="list-pf-description text-overflow-pf">Description of event one with <a href="">link text.</a></div>
+          </div>
+          <div class="list-pf-additional-content">
+            additional content
+          </div>
+        </div>
+        <div class="list-pf-actions">
+          <button class="btn btn-default">Action</button>
+          <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight2">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+        </div>
+      </div>
+    </div>
+
+  </div>
+  <div class="list-pf-item">
+    <div class="list-pf-container">
+      <div class="list-pf-select">
+        <input type="checkbox">
+      </div>
+      <div class="list-pf-content list-pf-content-flex ">
+        <div class="list-pf-left">
+          <span class="fa fa-plane list-pf-icon list-pf-icon-bordered list-pf-icon-small"></span>
+        </div>
+        <div class="list-pf-content-wrapper">
+          <div class="list-pf-main-content">
+
+            <div class="list-pf-title">Nonbreakinglongtitle012345678901234567890012345678901234567890012345678901234567890</div>
+            <div class="list-pf-description">Lorem ipsum dolor sit amet, consectetur adipiscing elit. In lacinia euismod quam. Aliquam nec varius arcu. In dolor nibh, mattis at odio non, imperdiet faucibus elit. Aliquam erat volutpat with <a href="">link text.</a> </div>
+          </div>
+          <div class="list-pf-additional-content">
+            additional content
+          </div>
+        </div>
+        <div class="list-pf-actions">
+          <button class="btn btn-default">Action</button>
+          <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight3" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight3">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+        </div>
+      </div>
+    </div>
+
+  </div>
+  <!-- add .text-overflow-pf to change text to ellipse instead of wrap -->
+  <div class="list-pf-item ">
+    <div class="list-pf-container">
+      <div class="list-pf-select">
+        <input type="checkbox">
+      </div>
+      <div class="list-pf-content list-pf-content-flex ">
+        <div class="list-pf-left">
+          <span class="fa fa-plane list-pf-icon list-pf-icon-bordered list-pf-icon-small"></span>
+        </div>
+        <div class="list-pf-content-wrapper">
+          <div class="list-pf-main-content">
+
+            <div class="list-pf-title text-overflow-pf">Ellipsed text variation Nonbreakinglongtitle012345678901234567890012345678901234567890012345678901234567890</div>
+            <div class="list-pf-description text-overflow-pf">Ellipsed text variation Lorem ipsum dolor sit amet, consectetur adipiscing elit. In lacinia euismod quam. Aliquam nec varius arcu. In dolor nibh, mattis at odio non, imperdiet faucibus elit. Aliquam erat volutpat with <a href="">link text.</a> </div>
+          </div>
+          <div class="list-pf-additional-content text-overflow-pf">
+            additional content
+          </div>
+        </div>
+        <div class="list-pf-actions">
+          <button class="btn btn-default">Action</button>
+          <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight4" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight4">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+        </div>
+      </div>
+    </div>
+
+  </div>
+
+</div>
+
+<!-- row with main content stacked -->
+<h3>List with content items, stacked main content option</h3>
+<div class="list-pf list-pf-stacked">
+  <div class="list-pf-item">
+    <div class="list-pf-container">
+      <div class="list-pf-select">
+        <input type="checkbox">
+      </div>
+      <div class="list-pf-content list-pf-content-flex ">
+        <div class="list-pf-left">
+          <span class="fa fa-plane list-pf-icon list-pf-icon-bordered list-pf-icon-small"></span>
+        </div>
+        <div class="list-pf-content-wrapper">
+          <div class="list-pf-main-content">
+
+            <div class="list-pf-title text-overflow-pf">Event One</div>
+            <div class="list-pf-description">This event is shown with a stacked display</div>
+          </div>
+          <div class="list-pf-additional-content">
+            additional content
+          </div>
+        </div>
+        <div class="list-pf-actions">
+          <button class="btn btn-default">Action</button>
+          <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight5" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight5">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+        </div>
+      </div>
+    </div>
+
+  </div>
+  <div class="list-pf-item">
+    <div class="list-pf-container">
+      <div class="list-pf-select">
+        <input type="checkbox">
+      </div>
+      <div class="list-pf-content list-pf-content-flex ">
+        <div class="list-pf-left">
+          <span class="fa fa-plane list-pf-icon list-pf-icon-bordered list-pf-icon-small"></span>
+        </div>
+        <div class="list-pf-content-wrapper">
+          <div class="list-pf-main-content">
+
+            <div class="list-pf-title text-overflow-pf">Event One with a longer title</div>
+            <div class="list-pf-description">This event is shown with a stacked display</div>
+          </div>
+          <div class="list-pf-additional-content">
+            additional content
+          </div>
+        </div>
+        <div class="list-pf-actions">
+          <button class="btn btn-default">Action</button>
+          <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight6" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight6">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+        </div>
+      </div>
+    </div>
+
+  </div>
+  <div class="list-pf-item">
+    <div class="list-pf-container">
+      <div class="list-pf-select">
+        <input type="checkbox">
+      </div>
+      <div class="list-pf-content list-pf-content-flex ">
+        <div class="list-pf-left">
+          <span class="fa fa-plane list-pf-icon list-pf-icon-bordered list-pf-icon-small"></span>
+        </div>
+        <div class="list-pf-content-wrapper">
+          <div class="list-pf-main-content">
+
+            <div class="list-pf-title">Nonbreakinglongtitle012345678901234567890012345678901234567890012345678901234567890</div>
+            <div class="list-pf-description">Lorem ipsum dolor sit amet, consectetur adipiscing elit. In lacinia euismod quam. Aliquam nec varius arcu. In dolor nibh, mattis at odio non, imperdiet faucibus elit. Aliquam erat volutpat with <a href="">link text.</a> </div>
+          </div>
+          <div class="list-pf-additional-content">
+            additional content
+          </div>
+        </div>
+        <div class="list-pf-actions">
+          <button class="btn btn-default">Action</button>
+          <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight7" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight7">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+        </div>
+      </div>
+    </div>
+
+  </div>
+  <!-- add .text-overflow-pf to change text to ellipse instead of wrap -->
+  <div class="list-pf-item">
+    <div class="list-pf-container">
+      <div class="list-pf-select">
+        <input type="checkbox">
+      </div>
+      <div class="list-pf-content list-pf-content-flex ">
+        <div class="list-pf-left">
+          <span class="fa fa-plane list-pf-icon list-pf-icon-bordered list-pf-icon-small"></span>
+        </div>
+        <div class="list-pf-content-wrapper">
+          <div class="list-pf-main-content">
+
+            <div class="list-pf-title text-overflow-pf">Ellipsed title variation Nonbreakinglongtitle012345678901234567890012345678901234567890012345678901234567890</div>
+            <div class="list-pf-description text-overflow-pf">Ellipsed description variation Lorem ipsum dolor sit amet, consectetur adipiscing elit. In lacinia euismod quam. Aliquam nec varius arcu. In dolor nibh, mattis at odio non, imperdiet faucibus elit. Aliquam erat volutpat with <a href="">link text.</a> </div>
+          </div>
+          <div class="list-pf-additional-content">
+            additional content
+          </div>
+        </div>
+        <div class="list-pf-actions">
+          <button class="btn btn-default">Action</button>
+          <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight8" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight8">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+        </div>
+      </div>
+    </div>
+
+  </div>
+
+</div>
+
+<script>
+  $(document).ready(function() {
+    $('.list-pf').pfList();
+  });
+</script>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/list-view.html b/themes/src/main/node_modules/rcue/tests/list-view.html
new file mode 100644
index 0000000..4f9dae0
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/list-view.html
@@ -0,0 +1,621 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>List View - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body>
+    <nav class="navbar navbar-default navbar-pf" role="navigation">
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+        </a>
+      </div>
+      <div class="collapse navbar-collapse navbar-collapse-1">
+        <ul class="nav navbar-nav navbar-utility">
+          <li class="dropdown">
+            <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+              <span title="Help" class="fa pficon-help"></span>
+              <span class="caret"></span>
+            </a>
+            <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+              <li><a href="#0">Help</a></li>
+              <li><a href="#0">About</a></li>
+            </ul>
+          </li>
+          <li class="dropdown">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+              <span class="pficon pficon-user"></span>
+              Brian Johnson <b class="caret"></b>
+            </a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-submenu">
+                <a tabindex="-1" href="#0">More options</a>
+                <ul class="dropdown-menu">
+                  <li>
+                    <a href="#0">Link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Another link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Something else here</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li class="dropdown-header">Nav header</li>
+                  <li>
+                    <a href="#0">Separated link</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li>
+                    <a href="#0">One more separated link</a>
+                  </li>
+                </ul>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+        <ul class="nav navbar-nav navbar-primary">
+          <li>
+            <a href="basic.html">Basic</a>
+          </li>
+          <li>
+            <a href="bootstrap-treeview-2.html">Tree View</a>
+          </li>
+          <li>
+            <a href="dashboard.html">Dashboard</a>
+          </li>
+          <li>
+            <a href="form.html">Form</a>
+          </li>
+          <li>
+            <a href="tab.html">Tab</a>
+          </li>
+          <li>
+            <a href="typography-2.html">Typography</a>
+          </li>
+          <li>
+            <a href="card-view-multi-select.html">Card View - Multi Select</a>
+          </li>
+          <li>
+            <a href="card-view-single-select.html">Card View - Single Select</a>
+          </li>
+          <li>
+            <a href="cards.html">Cards</a>
+          </li>
+          <li>
+            <a href="pagination-card-view.html">Pagination - Card View</a>
+          </li>
+        </ul>
+      </div>
+    </nav>
+
+      <div class="container-fluid">
+        <div class="row toolbar-pf">
+          <div class="col-sm-12">
+            <form class="toolbar-pf-actions">
+              <div class="form-group toolbar-pf-filter">
+                <label class="sr-only" for="filter">Name</label>
+                <div class="input-group">
+                  <div class="input-group-btn">
+                    <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
+                    <ul class="dropdown-menu">
+                      <li class="selected"><a href="#">Name</a></li>
+                      <li><a href="#">Type</a></li>
+                      <li><a href="#">Color</a></li>
+                    </ul>
+                  </div><!-- /btn-group -->
+                  <input type="text" class="form-control" id="filter" placeholder="Filter By Name...">
+                </div><!-- /input-group -->
+              </div>
+              <div class="form-group">
+                <div class="dropdown btn-group">
+                  <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
+                  <ul class="dropdown-menu">
+                    <li class="selected"><a href="#">Name</a></li>
+                    <li><a href="#">Type</a></li>
+                    <li><a href="#">Last Modified</a></li>
+                  </ul>
+                </div>
+                <button class="btn btn-link" type="button">
+                  <span class="fa fa-sort-alpha-asc"></span>
+                </button>
+              </div>
+              <div class="form-group">
+                <button class="btn btn-default" type="button">Action</button>
+                <button class="btn btn-default" type="button">Action</button>
+                <div class="dropdown btn-group  dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebab" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu " aria-labelledby="dropdownKebab">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+              </div>
+              <div class="toolbar-pf-action-right">
+                <div class="form-group toolbar-pf-find">
+                  <button class="btn btn-link btn-find" type="button">
+                    <span class="fa fa-search"></span>
+                  </button>
+                  <div class="find-pf-dropdown-container">
+                    <input type="text" class="form-control" id="find" placeholder="Find By Keyword...">
+                    <div class="find-pf-buttons">
+                      <span class="find-pf-nums">1 of 3</span>
+                      <button class="btn btn-link" type="button">
+                        <span class="fa fa-angle-up"></span>
+                      </button>
+                      <button class="btn btn-link" type="button">
+                        <span class="fa fa-angle-down"></span>
+                      </button>
+                      <button class="btn btn-link btn-find-close" type="button">
+                        <span class="pficon pficon-close"></span>
+                      </button>
+                    </div>
+                  </div>
+                </div>
+                <div class="form-group toolbar-pf-view-selector">
+                  <button class="btn btn-link "><i class="fa fa-th"></i></button>
+                  <button class="btn btn-link "><i class="fa fa-th-large"></i></button>
+                  <button class="btn btn-link active"><i class="fa fa-th-list"></i></button>
+                </div>
+              </div>
+            </form>
+            <div class="row toolbar-pf-results">
+              <div class="col-sm-12">
+                <h5>40 Results</h5>
+                <p>Active filters:</p>
+                <ul class="list-inline">
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                </ul>
+                <p><a href="#">Clear All Filters</a></p>
+              </div><!-- /col -->
+            </div><!-- /row -->
+          </div><!-- /col -->
+        </div><!-- /row -->
+      </div><!-- /container -->
+
+<div class="container-fluid">
+<div class="list-group list-view-pf list-view-pf-view">
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight9" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight9">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-plane list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event One
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>8</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>6</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>8</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight10" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight10">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-magic list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Two
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>11</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight11">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-gamepad list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Three
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight12">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-linux list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Four
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight13">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-briefcase list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Five
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight14">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-coffee list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Six
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  $(document).ready(function () {
+    // Row Checkbox Selection
+    $("input[type='checkbox']").change(function (e) {
+      if ($(this).is(":checked")) {
+        $(this).closest('.list-group-item').addClass("active");
+      } else {
+        $(this).closest('.list-group-item').removeClass("active");
+      }
+    });
+    // toggle dropdown menu
+    $('.list-view-pf-actions').on('show.bs.dropdown', function () {
+      var $this = $(this);
+      var $dropdown = $this.find('.dropdown');
+      var space = $(window).height() - $dropdown[0].getBoundingClientRect().top - $this.find('.dropdown-menu').outerHeight(true);
+      $dropdown.toggleClass('dropup', space < 10);
+    });
+    // allow users to select multiple list items with shift key
+    $('.list-group').on('click', '.list-view-pf-checkbox>input', function(event) {
+      var $list = $('.list-group');
+      var prevIndex = $list.data('preIndex');
+      var $listItems = $list.children('.list-group-item');
+      var $currentItem = $(this).closest('.list-group-item');
+      if(event.shiftKey && prevIndex > -1 && this.checked) {
+        var currentIndex = $listItems.index($currentItem);
+        var $selectScope = currentIndex - prevIndex > 0
+          ? $currentItem.prevAll().not($listItems.eq(prevIndex).prevAll().addBack())
+          : $listItems.eq(prevIndex).prevAll().not($currentItem.prevAll().addBack());
+        $selectScope.addClass('active').find('.list-view-pf-checkbox').children('input').prop('checked', true);
+      }
+      $list.data('preIndex', this.checked ? $listItems.index($currentItem) : -1);
+    });
+
+  });
+</script>
+</div>
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/list-view-compound-expansion.html b/themes/src/main/node_modules/rcue/tests/list-view-compound-expansion.html
new file mode 100644
index 0000000..de80dff
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/list-view-compound-expansion.html
@@ -0,0 +1,1727 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>List View - Compound Expansion - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body>
+    <nav class="navbar navbar-default navbar-pf" role="navigation">
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+        </a>
+      </div>
+      <div class="collapse navbar-collapse navbar-collapse-1">
+        <ul class="nav navbar-nav navbar-utility">
+          <li class="dropdown">
+            <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+              <span title="Help" class="fa pficon-help"></span>
+              <span class="caret"></span>
+            </a>
+            <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+              <li><a href="#0">Help</a></li>
+              <li><a href="#0">About</a></li>
+            </ul>
+          </li>
+          <li class="dropdown">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+              <span class="pficon pficon-user"></span>
+              Brian Johnson <b class="caret"></b>
+            </a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-submenu">
+                <a tabindex="-1" href="#0">More options</a>
+                <ul class="dropdown-menu">
+                  <li>
+                    <a href="#0">Link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Another link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Something else here</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li class="dropdown-header">Nav header</li>
+                  <li>
+                    <a href="#0">Separated link</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li>
+                    <a href="#0">One more separated link</a>
+                  </li>
+                </ul>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+        <ul class="nav navbar-nav navbar-primary">
+          <li>
+            <a href="basic.html">Basic</a>
+          </li>
+          <li>
+            <a href="bootstrap-treeview-2.html">Tree View</a>
+          </li>
+          <li>
+            <a href="dashboard.html">Dashboard</a>
+          </li>
+          <li>
+            <a href="form.html">Form</a>
+          </li>
+          <li>
+            <a href="tab.html">Tab</a>
+          </li>
+          <li>
+            <a href="typography-2.html">Typography</a>
+          </li>
+          <li>
+            <a href="card-view-multi-select.html">Card View - Multi Select</a>
+          </li>
+          <li>
+            <a href="card-view-single-select.html">Card View - Single Select</a>
+          </li>
+          <li>
+            <a href="cards.html">Cards</a>
+          </li>
+          <li>
+            <a href="pagination-card-view.html">Pagination - Card View</a>
+          </li>
+        </ul>
+      </div>
+    </nav>
+
+      <div class="container-fluid">
+        <div class="row toolbar-pf">
+          <div class="col-sm-12">
+            <form class="toolbar-pf-actions">
+              <div class="form-group toolbar-pf-filter">
+                <label class="sr-only" for="filter">Name</label>
+                <div class="input-group">
+                  <div class="input-group-btn">
+                    <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
+                    <ul class="dropdown-menu">
+                      <li class="selected"><a href="#">Name</a></li>
+                      <li><a href="#">Type</a></li>
+                      <li><a href="#">Color</a></li>
+                    </ul>
+                  </div><!-- /btn-group -->
+                  <input type="text" class="form-control" id="filter" placeholder="Filter By Name...">
+                </div><!-- /input-group -->
+              </div>
+              <div class="form-group">
+                <div class="dropdown btn-group">
+                  <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
+                  <ul class="dropdown-menu">
+                    <li class="selected"><a href="#">Name</a></li>
+                    <li><a href="#">Type</a></li>
+                    <li><a href="#">Last Modified</a></li>
+                  </ul>
+                </div>
+                <button class="btn btn-link" type="button">
+                  <span class="fa fa-sort-alpha-asc"></span>
+                </button>
+              </div>
+              <div class="form-group">
+                <button class="btn btn-default" type="button">Action</button>
+                <button class="btn btn-default" type="button">Action</button>
+                <div class="dropdown btn-group  dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebab" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu " aria-labelledby="dropdownKebab">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+              </div>
+              <div class="toolbar-pf-action-right">
+                <div class="form-group toolbar-pf-find">
+                  <button class="btn btn-link btn-find" type="button">
+                    <span class="fa fa-search"></span>
+                  </button>
+                  <div class="find-pf-dropdown-container">
+                    <input type="text" class="form-control" id="find" placeholder="Find By Keyword...">
+                    <div class="find-pf-buttons">
+                      <span class="find-pf-nums">1 of 3</span>
+                      <button class="btn btn-link" type="button">
+                        <span class="fa fa-angle-up"></span>
+                      </button>
+                      <button class="btn btn-link" type="button">
+                        <span class="fa fa-angle-down"></span>
+                      </button>
+                      <button class="btn btn-link btn-find-close" type="button">
+                        <span class="pficon pficon-close"></span>
+                      </button>
+                    </div>
+                  </div>
+                </div>
+                <div class="form-group toolbar-pf-view-selector">
+                  <button class="btn btn-link "><i class="fa fa-th"></i></button>
+                  <button class="btn btn-link "><i class="fa fa-th-large"></i></button>
+                  <button class="btn btn-link active"><i class="fa fa-th-list"></i></button>
+                </div>
+              </div>
+            </form>
+            <div class="row toolbar-pf-results">
+              <div class="col-sm-12">
+                <h5>40 Results</h5>
+                <p>Active filters:</p>
+                <ul class="list-inline">
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                </ul>
+                <p><a href="#">Clear All Filters</a></p>
+              </div><!-- /col -->
+            </div><!-- /row -->
+          </div><!-- /col -->
+        </div><!-- /row -->
+      </div><!-- /container -->
+
+<div class="container-fluid">
+<div class="list-group list-view-pf list-view-pf-view">
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight1">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-plane list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event One
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-screen"></span>
+              <strong>8</strong> Hosts
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-cluster"></span>
+              <strong>6</strong> Clusters
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-container-node"></span>
+              <strong>10</strong> Nodes
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-image"></span>
+              <strong>8</strong> Images
+            </div>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Host 1</li>
+            <li>Host 2</li>
+            <li>Host 3</li>
+            <li>Host 4</li>
+            <li>Host 5</li>
+            <li>Host 6</li>
+            <li>Host 7</li>
+            <li>Host 8</li>
+            <li>Host 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Host Name</dt>
+            <dd>file1.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Cluster 1</li>
+            <li>Cluster 2</li>
+            <li>Cluster 3</li>
+            <li>Cluster 4</li>
+            <li>Cluster 5</li>
+            <li>Cluster 6</li>
+            <li>Cluster 7</li>
+            <li>Cluster 8</li>
+            <li>Cluster 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Cluster Name</dt>
+            <dd>file2.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Nodes 1</li>
+            <li>Nodes 2</li>
+            <li>Nodes 3</li>
+            <li>Nodes 4</li>
+            <li>Nodes 5</li>
+            <li>Nodes 6</li>
+            <li>Nodes 7</li>
+            <li>Nodes 8</li>
+            <li>Nodes 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Node Name</dt>
+            <dd>file3.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Image 1</li>
+            <li>Image 2</li>
+            <li>Image 3</li>
+            <li>Image 4</li>
+            <li>Image 5</li>
+            <li>Image 6</li>
+            <li>Image 7</li>
+            <li>Image 8</li>
+            <li>Image 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Image Name</dt>
+            <dd>file4.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight2">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-magic list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Two
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-screen"></span>
+              <strong>8</strong> Hosts
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-cluster"></span>
+              <strong>6</strong> Clusters
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-container-node"></span>
+              <strong>10</strong> Nodes
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-image"></span>
+              <strong>8</strong> Images
+            </div>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Host 1</li>
+            <li>Host 2</li>
+            <li>Host 3</li>
+            <li>Host 4</li>
+            <li>Host 5</li>
+            <li>Host 6</li>
+            <li>Host 7</li>
+            <li>Host 8</li>
+            <li>Host 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Host Name</dt>
+            <dd>file1.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Cluster 1</li>
+            <li>Cluster 2</li>
+            <li>Cluster 3</li>
+            <li>Cluster 4</li>
+            <li>Cluster 5</li>
+            <li>Cluster 6</li>
+            <li>Cluster 7</li>
+            <li>Cluster 8</li>
+            <li>Cluster 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Cluster Name</dt>
+            <dd>file2.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Nodes 1</li>
+            <li>Nodes 2</li>
+            <li>Nodes 3</li>
+            <li>Nodes 4</li>
+            <li>Nodes 5</li>
+            <li>Nodes 6</li>
+            <li>Nodes 7</li>
+            <li>Nodes 8</li>
+            <li>Nodes 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Node Name</dt>
+            <dd>file3.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Image 1</li>
+            <li>Image 2</li>
+            <li>Image 3</li>
+            <li>Image 4</li>
+            <li>Image 5</li>
+            <li>Image 6</li>
+            <li>Image 7</li>
+            <li>Image 8</li>
+            <li>Image 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Image Name</dt>
+            <dd>file4.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight3" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight3">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-gamepad list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Three
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-screen"></span>
+              <strong>8</strong> Hosts
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-cluster"></span>
+              <strong>6</strong> Clusters
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-container-node"></span>
+              <strong>10</strong> Nodes
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-image"></span>
+              <strong>8</strong> Images
+            </div>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Host 1</li>
+            <li>Host 2</li>
+            <li>Host 3</li>
+            <li>Host 4</li>
+            <li>Host 5</li>
+            <li>Host 6</li>
+            <li>Host 7</li>
+            <li>Host 8</li>
+            <li>Host 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Host Name</dt>
+            <dd>file1.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Cluster 1</li>
+            <li>Cluster 2</li>
+            <li>Cluster 3</li>
+            <li>Cluster 4</li>
+            <li>Cluster 5</li>
+            <li>Cluster 6</li>
+            <li>Cluster 7</li>
+            <li>Cluster 8</li>
+            <li>Cluster 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Cluster Name</dt>
+            <dd>file2.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Nodes 1</li>
+            <li>Nodes 2</li>
+            <li>Nodes 3</li>
+            <li>Nodes 4</li>
+            <li>Nodes 5</li>
+            <li>Nodes 6</li>
+            <li>Nodes 7</li>
+            <li>Nodes 8</li>
+            <li>Nodes 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Node Name</dt>
+            <dd>file3.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Image 1</li>
+            <li>Image 2</li>
+            <li>Image 3</li>
+            <li>Image 4</li>
+            <li>Image 5</li>
+            <li>Image 6</li>
+            <li>Image 7</li>
+            <li>Image 8</li>
+            <li>Image 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Image Name</dt>
+            <dd>file4.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight4" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight4">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-linux list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Four
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-screen"></span>
+              <strong>8</strong> Hosts
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-cluster"></span>
+              <strong>6</strong> Clusters
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-container-node"></span>
+              <strong>10</strong> Nodes
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-image"></span>
+              <strong>8</strong> Images
+            </div>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Host 1</li>
+            <li>Host 2</li>
+            <li>Host 3</li>
+            <li>Host 4</li>
+            <li>Host 5</li>
+            <li>Host 6</li>
+            <li>Host 7</li>
+            <li>Host 8</li>
+            <li>Host 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Host Name</dt>
+            <dd>file1.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Cluster 1</li>
+            <li>Cluster 2</li>
+            <li>Cluster 3</li>
+            <li>Cluster 4</li>
+            <li>Cluster 5</li>
+            <li>Cluster 6</li>
+            <li>Cluster 7</li>
+            <li>Cluster 8</li>
+            <li>Cluster 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Cluster Name</dt>
+            <dd>file2.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Nodes 1</li>
+            <li>Nodes 2</li>
+            <li>Nodes 3</li>
+            <li>Nodes 4</li>
+            <li>Nodes 5</li>
+            <li>Nodes 6</li>
+            <li>Nodes 7</li>
+            <li>Nodes 8</li>
+            <li>Nodes 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Node Name</dt>
+            <dd>file3.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Image 1</li>
+            <li>Image 2</li>
+            <li>Image 3</li>
+            <li>Image 4</li>
+            <li>Image 5</li>
+            <li>Image 6</li>
+            <li>Image 7</li>
+            <li>Image 8</li>
+            <li>Image 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Image Name</dt>
+            <dd>file4.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight5" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight5">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-briefcase list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Five
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-screen"></span>
+              <strong>8</strong> Hosts
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-cluster"></span>
+              <strong>6</strong> Clusters
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-container-node"></span>
+              <strong>10</strong> Nodes
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-image"></span>
+              <strong>8</strong> Images
+            </div>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Host 1</li>
+            <li>Host 2</li>
+            <li>Host 3</li>
+            <li>Host 4</li>
+            <li>Host 5</li>
+            <li>Host 6</li>
+            <li>Host 7</li>
+            <li>Host 8</li>
+            <li>Host 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Host Name</dt>
+            <dd>file1.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Cluster 1</li>
+            <li>Cluster 2</li>
+            <li>Cluster 3</li>
+            <li>Cluster 4</li>
+            <li>Cluster 5</li>
+            <li>Cluster 6</li>
+            <li>Cluster 7</li>
+            <li>Cluster 8</li>
+            <li>Cluster 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Cluster Name</dt>
+            <dd>file2.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Nodes 1</li>
+            <li>Nodes 2</li>
+            <li>Nodes 3</li>
+            <li>Nodes 4</li>
+            <li>Nodes 5</li>
+            <li>Nodes 6</li>
+            <li>Nodes 7</li>
+            <li>Nodes 8</li>
+            <li>Nodes 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Node Name</dt>
+            <dd>file3.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Image 1</li>
+            <li>Image 2</li>
+            <li>Image 3</li>
+            <li>Image 4</li>
+            <li>Image 5</li>
+            <li>Image 6</li>
+            <li>Image 7</li>
+            <li>Image 8</li>
+            <li>Image 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Image Name</dt>
+            <dd>file4.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight6" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight6">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-coffee list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Six
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-screen"></span>
+              <strong>8</strong> Hosts
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-cluster"></span>
+              <strong>6</strong> Clusters
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-container-node"></span>
+              <strong>10</strong> Nodes
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <div class="list-view-pf-expand">
+              <span class="fa fa-angle-right"></span>
+              <span class="pficon pficon-image"></span>
+              <strong>8</strong> Images
+            </div>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Host 1</li>
+            <li>Host 2</li>
+            <li>Host 3</li>
+            <li>Host 4</li>
+            <li>Host 5</li>
+            <li>Host 6</li>
+            <li>Host 7</li>
+            <li>Host 8</li>
+            <li>Host 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Host Name</dt>
+            <dd>file1.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Cluster 1</li>
+            <li>Cluster 2</li>
+            <li>Cluster 3</li>
+            <li>Cluster 4</li>
+            <li>Cluster 5</li>
+            <li>Cluster 6</li>
+            <li>Cluster 7</li>
+            <li>Cluster 8</li>
+            <li>Cluster 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Cluster Name</dt>
+            <dd>file2.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Nodes 1</li>
+            <li>Nodes 2</li>
+            <li>Nodes 3</li>
+            <li>Nodes 4</li>
+            <li>Nodes 5</li>
+            <li>Nodes 6</li>
+            <li>Nodes 7</li>
+            <li>Nodes 8</li>
+            <li>Nodes 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Node Name</dt>
+            <dd>file3.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <ul>
+            <li>Image 1</li>
+            <li>Image 2</li>
+            <li>Image 3</li>
+            <li>Image 4</li>
+            <li>Image 5</li>
+            <li>Image 6</li>
+            <li>Image 7</li>
+            <li>Image 8</li>
+            <li>Image 9</li>
+          </ul>
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Image Name</dt>
+            <dd>file4.nay.redhat.com</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  $(document).ready(function () {
+    // Row Checkbox Selection
+    $("input[type='checkbox']").change(function (e) {
+      if ($(this).is(":checked")) {
+        $(this).closest('.list-group-item').addClass("active");
+      } else {
+        $(this).closest('.list-group-item').removeClass("active");
+      }
+    });
+    // toggle dropdown menu
+    $(".list-view-pf-actions").on("show.bs.dropdown", function () {
+      var $this = $(this);
+      var $dropdown = $this.find(".dropdown");
+      var space = $(window).height() - $dropdown[0].getBoundingClientRect().top - $this.find(".dropdown-menu").outerHeight(true);
+      $dropdown.toggleClass("dropup", space < 10);
+    });
+    // compound expansion
+    $(".list-view-pf-expand").on("click", function () {
+      var $this = $(this);
+      var $heading = $(this).parents(".list-group-item");
+      //var $row = $heading.parent();
+      var $subPanels = $heading.find(".list-group-item-container");
+      var index = $heading.find(".list-view-pf-expand").index(this);
+
+      //Remove all active status
+      $heading.find(".list-view-pf-expand.active").find(".fa-angle-right").removeClass("fa-angle-down")
+        .end().removeClass("active")
+          .end().removeClass("list-view-pf-expand-active");
+      // Add active to the clicked item
+      $(this).addClass("active")
+        .parents(".list-group-item").addClass("list-view-pf-expand-active")
+          .end().find(".fa-angle-right").addClass("fa-angle-down");
+      // check if it needs to hide
+      if($subPanels.eq(index).hasClass("hidden")){
+        $heading.find(".list-group-item-container:visible").addClass("hidden");
+        $subPanels.eq(index).removeClass("hidden");
+      } else {
+        $subPanels.eq(index).addClass("hidden");
+        $heading.find(".list-view-pf-expand.active").find(".fa-angle-right").removeClass("fa-angle-down")
+         .end().removeClass("active")
+          .end().removeClass("list-view-pf-expand-active");
+      }
+    });
+
+    // click close button to close the panel
+    $(".list-group-item-container .close").on("click", function (){
+      var $this = $(this);
+      var $panel = $this.parent();
+
+      // close the container and remove the active status
+      $panel.addClass("hidden")
+        .parent().removeClass("list-view-pf-expand-active")
+          .find(".list-view-pf-expand.active").removeClass("active")
+            .find(".fa-angle-right").removeClass("fa-angle-down")
+    });
+  });
+</script>
+
+</div>
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/list-view-rows.html b/themes/src/main/node_modules/rcue/tests/list-view-rows.html
new file mode 100644
index 0000000..b9484bc
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/list-view-rows.html
@@ -0,0 +1,597 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>List View Rows - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>List View Rows</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+<div class="list-group list-view-pf">
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-plane list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event One
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>8</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>8</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>18</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>4</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  // Row Checkbox Selection
+  $(document).ready(function () {
+    $("input[type='checkbox']").change(function (e) {
+      if ($(this).is(":checked")) {
+        $(this).closest('.list-group-item').addClass("active");
+      } else {
+        $(this).closest('.list-group-item').removeClass("active");
+      }
+    });
+  });
+</script>
+<h2>Row Variations</h2>
+<div class="list-group list-view-pf">
+  <div class="list-group-item list-view-pf-stacked">
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight15">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-plane list-view-pf-icon-lg"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            This is EVENT One that is with very LONG and should not overflow and push other elements out of the bounding box.
+            <small>Feb 23, 2015 12:32 am</small>
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item list-view-pf-additional-info-item-donut-chart">
+              <span id="donut-chart-1"></span>
+          </div>
+          <div class="list-view-pf-additional-info-item list-view-pf-additional-info-item-donut-chart">
+              <span id="donut-chart-2"></span>
+          </div>
+          <div class="list-view-pf-additional-info-item list-view-pf-additional-info-item-donut-chart">
+              <span id="donut-chart-3"></span>
+          </div>
+          <div class="list-view-pf-additional-info-item list-view-pf-additional-info-item-donut-chart">
+              <span id="donut-chart-4"></span>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  // Donut Charts
+  var c3ChartDefaults = $().c3ChartDefaults();
+  var customDonutChartConfig = c3ChartDefaults.getDefaultDonutConfig('34%');
+  customDonutChartConfig.size.height = 71;
+  customDonutChartConfig.size.width = 60;
+  customDonutChartConfig.donut.width = 5;
+  customDonutChartConfig.bindto = '#donut-chart-1';
+  customDonutChartConfig.data = {
+    type: "donut",
+    columns: [
+      ["Used", 34],
+      ["Available", 86]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  c3.generate(customDonutChartConfig);
+  var donutChartTitle = d3.select("#donut-chart-1").select('text.c3-chart-arcs-title');
+  donutChartTitle.text("");
+  donutChartTitle.insert('tspan').text("34%").classed('list-view-donut-title', true);
+
+  customDonutChartConfig = c3ChartDefaults.getDefaultDonutConfig('21%');
+  customDonutChartConfig.size.height = 71;
+  customDonutChartConfig.size.width = 60;
+  customDonutChartConfig.donut.width = 5;
+  customDonutChartConfig.bindto = '#donut-chart-2';
+  customDonutChartConfig.data = {
+    type: "donut",
+    columns: [
+      ["Used", 21],
+      ["Available", 79]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  c3.generate(customDonutChartConfig);
+  donutChartTitle = d3.select("#donut-chart-2").select('text.c3-chart-arcs-title');
+  donutChartTitle.text("");
+  donutChartTitle.insert('tspan').text("21%").classed('list-view-donut-title', true);
+
+  customDonutChartConfig = c3ChartDefaults.getDefaultDonutConfig('14%');
+  customDonutChartConfig.size.height = 71;
+  customDonutChartConfig.size.width = 60;
+  customDonutChartConfig.donut.width = 5;
+  customDonutChartConfig.bindto = '#donut-chart-3';
+  customDonutChartConfig.data = {
+    type: "donut",
+    columns: [
+      ["Used", 14],
+      ["Available", 86]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  c3.generate(customDonutChartConfig);
+  donutChartTitle = d3.select("#donut-chart-3").select('text.c3-chart-arcs-title');
+  donutChartTitle.text("");
+  donutChartTitle.insert('tspan').text("14%").classed('list-view-donut-title', true);
+
+  customDonutChartConfig = c3ChartDefaults.getDefaultDonutConfig('25%');
+  customDonutChartConfig.size.height = 71;
+  customDonutChartConfig.size.width = 60;
+  customDonutChartConfig.donut.width = 5;
+  customDonutChartConfig.bindto = '#donut-chart-4';
+  customDonutChartConfig.data = {
+    type: "donut",
+    columns: [
+      ["Used", 25],
+      ["Available", 75]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  c3.generate(customDonutChartConfig);
+  donutChartTitle = d3.select("#donut-chart-4").select('text.c3-chart-arcs-title');
+  donutChartTitle.text("");
+  donutChartTitle.insert('tspan').text("25%").classed('list-view-donut-title', true);
+</script>
+<div class="list-group list-view-pf">
+  <div class="list-group-item list-view-pf-stacked">
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight2">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <div class="list-view-pf-calendar">
+          March
+          <strong>29</strong>
+        </div>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event One
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>8</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>8</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>18</strong>
+            Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>4</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<div class="list-group list-view-pf">
+  <div class="list-group-item list-view-pf-stacked list-view-pf-top-align">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight3" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight3">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Ones
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item list-view-pf-additional-info-item-stacked">
+            <strong>113,735</strong> Service One
+          </div>
+          <div class="list-view-pf-additional-info-item list-view-pf-additional-info-item-stacked">
+            <strong>35%</strong> Service Two
+          </div>
+          <div class="list-view-pf-additional-info-item list-view-pf-additional-info-item-stacked">
+            <strong>22.0%</strong> Service Three
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  // Row Checkbox Selection
+  $(document).ready(function () {
+    $("input[type='checkbox']").change(function (e) {
+      if ($(this).is(":checked")) {
+        $(this).closest('.list-group-item').addClass("active");
+      } else {
+        $(this).closest('.list-group-item').removeClass("active");
+      }
+    });
+  });
+</script>
+<div class="list-group list-view-pf">
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-plane list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event One
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>8</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>8</strong> Clusters
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  // Row Checkbox Selection
+  $(document).ready(function () {
+    $("input[type='checkbox']").change(function (e) {
+      if ($(this).is(":checked")) {
+        $(this).closest('.list-group-item').addClass("active");
+      } else {
+        $(this).closest('.list-group-item').removeClass("active");
+      }
+    });
+  });
+</script>
+<div class="list-group list-view-pf list-view-pf-equalized-column">
+  <div class="list-group-item">
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="pficon pficon-ok list-view-pf-icon-md list-view-pf-icon-success"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event One
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>108</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>28</strong> Clusters
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="pficon pficon-info list-view-pf-icon-md list-view-pf-icon-info"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event One
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>8</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>28</strong> Clusters
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="pficon pficon-warning-triangle-o list-view-pf-icon-md list-view-pf-icon-warning"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event One
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>108</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>28</strong> Clusters
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="pficon pficon-error-circle-o list-view-pf-icon-md list-view-pf-icon-danger"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event One
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>8</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>28</strong> Clusters
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  // Equalize column width
+  $(document).ready(function () {
+  	var widest = 0;
+  	$('.list-view-pf-equalized-column .list-view-pf-additional-info-item').each( function() {
+  		widest = $(this).width() > widest ? $(this).width() : widest;
+  	}).width(widest);
+  });
+</script>
+<div class="list-group list-view-pf">
+  <div class="list-group-item list-view-pf-stacked list-view-pf-top-align">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight4" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight4">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-plane list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event One
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <img src="http://placehold.it/60x60" alt="placeholder image">
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>8</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item list-view-pf-additional-info-item-stacked">
+            <strong>35%</strong> Service Two
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  // Row Checkbox Selection
+  $(document).ready(function () {
+    $("input[type='checkbox']").change(function (e) {
+      if ($(this).is(":checked")) {
+        $(this).closest('.list-group-item').addClass("active");
+      } else {
+        $(this).closest('.list-group-item').removeClass("active");
+      }
+    });
+  });
+</script>
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/list-view-simple-expansion.html b/themes/src/main/node_modules/rcue/tests/list-view-simple-expansion.html
new file mode 100644
index 0000000..d4ead24
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/list-view-simple-expansion.html
@@ -0,0 +1,1712 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>List View - Simple Expansion - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body>
+    <nav class="navbar navbar-default navbar-pf" role="navigation">
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+        </a>
+      </div>
+      <div class="collapse navbar-collapse navbar-collapse-1">
+        <ul class="nav navbar-nav navbar-utility">
+          <li class="dropdown">
+            <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+              <span title="Help" class="fa pficon-help"></span>
+              <span class="caret"></span>
+            </a>
+            <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+              <li><a href="#0">Help</a></li>
+              <li><a href="#0">About</a></li>
+            </ul>
+          </li>
+          <li class="dropdown">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+              <span class="pficon pficon-user"></span>
+              Brian Johnson <b class="caret"></b>
+            </a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-submenu">
+                <a tabindex="-1" href="#0">More options</a>
+                <ul class="dropdown-menu">
+                  <li>
+                    <a href="#0">Link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Another link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Something else here</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li class="dropdown-header">Nav header</li>
+                  <li>
+                    <a href="#0">Separated link</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li>
+                    <a href="#0">One more separated link</a>
+                  </li>
+                </ul>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+        <ul class="nav navbar-nav navbar-primary">
+          <li>
+            <a href="basic.html">Basic</a>
+          </li>
+          <li>
+            <a href="bootstrap-treeview-2.html">Tree View</a>
+          </li>
+          <li>
+            <a href="dashboard.html">Dashboard</a>
+          </li>
+          <li>
+            <a href="form.html">Form</a>
+          </li>
+          <li>
+            <a href="tab.html">Tab</a>
+          </li>
+          <li>
+            <a href="typography-2.html">Typography</a>
+          </li>
+          <li>
+            <a href="card-view-multi-select.html">Card View - Multi Select</a>
+          </li>
+          <li>
+            <a href="card-view-single-select.html">Card View - Single Select</a>
+          </li>
+          <li>
+            <a href="cards.html">Cards</a>
+          </li>
+          <li>
+            <a href="pagination-card-view.html">Pagination - Card View</a>
+          </li>
+        </ul>
+      </div>
+    </nav>
+
+      <div class="container-fluid">
+        <div class="row toolbar-pf">
+          <div class="col-sm-12">
+            <form class="toolbar-pf-actions">
+              <div class="form-group toolbar-pf-filter">
+                <label class="sr-only" for="filter">Name</label>
+                <div class="input-group">
+                  <div class="input-group-btn">
+                    <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
+                    <ul class="dropdown-menu">
+                      <li class="selected"><a href="#">Name</a></li>
+                      <li><a href="#">Type</a></li>
+                      <li><a href="#">Color</a></li>
+                    </ul>
+                  </div><!-- /btn-group -->
+                  <input type="text" class="form-control" id="filter" placeholder="Filter By Name...">
+                </div><!-- /input-group -->
+              </div>
+              <div class="form-group">
+                <div class="dropdown btn-group">
+                  <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
+                  <ul class="dropdown-menu">
+                    <li class="selected"><a href="#">Name</a></li>
+                    <li><a href="#">Type</a></li>
+                    <li><a href="#">Last Modified</a></li>
+                  </ul>
+                </div>
+                <button class="btn btn-link" type="button">
+                  <span class="fa fa-sort-alpha-asc"></span>
+                </button>
+              </div>
+              <div class="form-group">
+                <button class="btn btn-default" type="button">Action</button>
+                <button class="btn btn-default" type="button">Action</button>
+                <div class="dropdown btn-group  dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebab" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu " aria-labelledby="dropdownKebab">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+              </div>
+              <div class="toolbar-pf-action-right">
+                <div class="form-group toolbar-pf-find">
+                  <button class="btn btn-link btn-find" type="button">
+                    <span class="fa fa-search"></span>
+                  </button>
+                  <div class="find-pf-dropdown-container">
+                    <input type="text" class="form-control" id="find" placeholder="Find By Keyword...">
+                    <div class="find-pf-buttons">
+                      <span class="find-pf-nums">1 of 3</span>
+                      <button class="btn btn-link" type="button">
+                        <span class="fa fa-angle-up"></span>
+                      </button>
+                      <button class="btn btn-link" type="button">
+                        <span class="fa fa-angle-down"></span>
+                      </button>
+                      <button class="btn btn-link btn-find-close" type="button">
+                        <span class="pficon pficon-close"></span>
+                      </button>
+                    </div>
+                  </div>
+                </div>
+                <div class="form-group toolbar-pf-view-selector">
+                  <button class="btn btn-link "><i class="fa fa-th"></i></button>
+                  <button class="btn btn-link "><i class="fa fa-th-large"></i></button>
+                  <button class="btn btn-link active"><i class="fa fa-th-list"></i></button>
+                </div>
+              </div>
+            </form>
+            <div class="row toolbar-pf-results">
+              <div class="col-sm-12">
+                <h5>40 Results</h5>
+                <p>Active filters:</p>
+                <ul class="list-inline">
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                </ul>
+                <p><a href="#">Clear All Filters</a></p>
+              </div><!-- /col -->
+            </div><!-- /row -->
+          </div><!-- /col -->
+        </div><!-- /row -->
+      </div><!-- /container -->
+
+<div class="container-fluid">
+<div class="list-group list-view-pf list-view-pf-view">
+  <div class="list-group-item">
+    <div class="list-group-item-header">
+      <div class="list-view-pf-expand">
+        <span class="fa fa-angle-right"></span>
+      </div>
+      <div class="list-view-pf-checkbox">
+        <input type="checkbox">
+      </div>
+      <div class="list-view-pf-actions">
+        <button class="btn btn-default">Action</button>
+        <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight9" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight9">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+      </div>
+      <div class="list-view-pf-main-info">
+        <div class="list-view-pf-left">
+          <span class="fa fa-plane list-view-pf-icon-sm"></span>
+        </div>
+        <div class="list-view-pf-body">
+          <div class="list-view-pf-description">
+            <div class="list-group-item-heading">
+              Event One
+            </div>
+            <div class="list-group-item-text">
+              The following snippet of text is <a href="#">rendered as link text</a>.
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info">
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-screen"></span>
+              <strong>8</strong> Hosts
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-cluster"></span>
+              <strong>6</strong> Clusters
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-container-node"></span>
+              <strong>10</strong> Nodes
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-image"></span>
+              <strong>8</strong> Images
+            </div>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <div id="utilizationDonutChart11" class="example-donut-chart-utilization"></div>
+
+<div class="pct-donut-chart-pf example-donut-chart-utilization">
+  <div class="pct-donut-chart-pf-chart">
+    <div id="utilizationDonutChart12"></div>
+  </div>
+  <span class="pct-donut-chart-pf-label">
+    60 MHz of 100 MHz used
+  </span>
+</div>
+
+<div class="example-donut-chart-utilization">
+  <span class="pct-donut-chart-pf pct-donut-chart-pf-left">
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart13"></div>
+    </div>
+    <span class="pct-donut-chart-pf-label text-right">
+      60 MHz of 100 MHz used
+    </span>
+  </span>
+</div>
+
+<div class="example-donut-chart-utilization">
+  <span class="pct-donut-chart-pf pct-donut-chart-pf-right">
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart14"></div>
+    </div>
+    <span class="pct-donut-chart-pf-label text-left">
+      60 MHz of 100 MHz
+    </span>
+  </span>
+</div>
+
+<script>
+  var c3ChartDefaults = $().c3ChartDefaults();
+
+  // Donut configuration 1
+  var donutConfig1 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig1.bindto = '#utilizationDonutChart11';
+  donutConfig1.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40],
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig1.size = {
+    width: 180,
+    height: 180
+  };
+
+  donutConfig1.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig1);
+  $().pfSetDonutChartTitle("#utilizationDonutChart11", "60", "MHz Used");
+
+  // Donut configuration 2
+  var donutConfig2 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig2.bindto = '#utilizationDonutChart12';
+  donutConfig2.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig2.size = {
+    width: 180,
+    height: 180
+  };
+
+  donutConfig2.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig2);
+  $().pfSetDonutChartTitle("#utilizationDonutChart12", "60", "MHz Used");
+
+  // Donut configuration 3
+  var donutConfig3 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig3.bindto = '#utilizationDonutChart13';
+  donutConfig3.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig3.size = {
+    width: 140,
+    height: 140
+  };
+
+  donutConfig3.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig3);
+  $().pfSetDonutChartTitle("#utilizationDonutChart13", "60", "MHz Used");
+
+  // Donut configuration 4
+  var donutConfig4 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig4.bindto = '#utilizationDonutChart14';
+  donutConfig4.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig4.size = {
+    width: 140,
+    height: 140
+  };
+
+  donutConfig4.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig4);
+  $().pfSetDonutChartTitle("#utilizationDonutChart14", "60", "MHz Used");
+</script>
+
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Host Name</dt>
+            <dd>Hostceph1</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-group-item-header">
+      <div class="list-view-pf-expand">
+        <span class="fa fa-angle-right"></span>
+      </div>
+      <div class="list-view-pf-checkbox">
+        <input type="checkbox">
+      </div>
+      <div class="list-view-pf-actions">
+        <button class="btn btn-default">Action</button>
+        <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight10" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight10">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+      </div>
+      <div class="list-view-pf-main-info">
+        <div class="list-view-pf-left">
+          <span class="fa fa-magic list-view-pf-icon-sm"></span>
+        </div>
+        <div class="list-view-pf-body">
+          <div class="list-view-pf-description">
+            <div class="list-group-item-heading">
+              Event Two
+            </div>
+            <div class="list-group-item-text">
+              The following snippet of text is <a href="#">rendered as link text</a>.
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info">
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-screen"></span>
+              <strong>4</strong> Hosts
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-cluster"></span>
+              <strong>2</strong> Clusters
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-container-node"></span>
+              <strong>11</strong> Nodes
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-image"></span>
+              <strong>6</strong> Images
+            </div>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <div id="utilizationDonutChart21" class="example-donut-chart-utilization"></div>
+
+<div class="pct-donut-chart-pf example-donut-chart-utilization">
+  <div class="pct-donut-chart-pf-chart">
+    <div id="utilizationDonutChart22"></div>
+  </div>
+  <span class="pct-donut-chart-pf-label">
+    60 MHz of 100 MHz used
+  </span>
+</div>
+
+<div class="example-donut-chart-utilization">
+  <span class="pct-donut-chart-pf pct-donut-chart-pf-left">
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart23"></div>
+    </div>
+    <span class="pct-donut-chart-pf-label text-right">
+      60 MHz of 100 MHz used
+    </span>
+  </span>
+</div>
+
+<div class="example-donut-chart-utilization">
+  <span class="pct-donut-chart-pf pct-donut-chart-pf-right">
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart24"></div>
+    </div>
+    <span class="pct-donut-chart-pf-label text-left">
+      60 MHz of 100 MHz
+    </span>
+  </span>
+</div>
+
+<script>
+  var c3ChartDefaults = $().c3ChartDefaults();
+
+  // Donut configuration 1
+  var donutConfig1 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig1.bindto = '#utilizationDonutChart21';
+  donutConfig1.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40],
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig1.size = {
+    width: 180,
+    height: 180
+  };
+
+  donutConfig1.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig1);
+  $().pfSetDonutChartTitle("#utilizationDonutChart21", "60", "MHz Used");
+
+  // Donut configuration 2
+  var donutConfig2 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig2.bindto = '#utilizationDonutChart22';
+  donutConfig2.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig2.size = {
+    width: 180,
+    height: 180
+  };
+
+  donutConfig2.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig2);
+  $().pfSetDonutChartTitle("#utilizationDonutChart22", "60", "MHz Used");
+
+  // Donut configuration 3
+  var donutConfig3 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig3.bindto = '#utilizationDonutChart23';
+  donutConfig3.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig3.size = {
+    width: 140,
+    height: 140
+  };
+
+  donutConfig3.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig3);
+  $().pfSetDonutChartTitle("#utilizationDonutChart23", "60", "MHz Used");
+
+  // Donut configuration 4
+  var donutConfig4 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig4.bindto = '#utilizationDonutChart24';
+  donutConfig4.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig4.size = {
+    width: 140,
+    height: 140
+  };
+
+  donutConfig4.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig4);
+  $().pfSetDonutChartTitle("#utilizationDonutChart24", "60", "MHz Used");
+</script>
+
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Host Name</dt>
+            <dd>Hostceph1</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-group-item-header">
+      <div class="list-view-pf-expand">
+        <span class="fa fa-angle-right"></span>
+      </div>
+      <div class="list-view-pf-checkbox">
+        <input type="checkbox">
+      </div>
+      <div class="list-view-pf-actions">
+        <button class="btn btn-default">Action</button>
+        <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight11">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+      </div>
+      <div class="list-view-pf-main-info">
+        <div class="list-view-pf-left">
+          <span class="fa fa-gamepad list-view-pf-icon-sm"></span>
+        </div>
+        <div class="list-view-pf-body">
+          <div class="list-view-pf-description">
+            <div class="list-group-item-heading">
+              Event Three
+            </div>
+            <div class="list-group-item-text">
+              The following snippet of text is <a href="#">rendered as link text</a>.
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info">
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-screen"></span>
+              <strong>4</strong> Hosts
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-cluster"></span>
+              <strong>2</strong> Clusters
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-container-node"></span>
+              <strong>10</strong> Nodes
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-image"></span>
+              <strong>6</strong> Images
+            </div>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <div id="utilizationDonutChart31" class="example-donut-chart-utilization"></div>
+
+<div class="pct-donut-chart-pf example-donut-chart-utilization">
+  <div class="pct-donut-chart-pf-chart">
+    <div id="utilizationDonutChart32"></div>
+  </div>
+  <span class="pct-donut-chart-pf-label">
+    60 MHz of 100 MHz used
+  </span>
+</div>
+
+<div class="example-donut-chart-utilization">
+  <span class="pct-donut-chart-pf pct-donut-chart-pf-left">
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart33"></div>
+    </div>
+    <span class="pct-donut-chart-pf-label text-right">
+      60 MHz of 100 MHz used
+    </span>
+  </span>
+</div>
+
+<div class="example-donut-chart-utilization">
+  <span class="pct-donut-chart-pf pct-donut-chart-pf-right">
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart34"></div>
+    </div>
+    <span class="pct-donut-chart-pf-label text-left">
+      60 MHz of 100 MHz
+    </span>
+  </span>
+</div>
+
+<script>
+  var c3ChartDefaults = $().c3ChartDefaults();
+
+  // Donut configuration 1
+  var donutConfig1 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig1.bindto = '#utilizationDonutChart31';
+  donutConfig1.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40],
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig1.size = {
+    width: 180,
+    height: 180
+  };
+
+  donutConfig1.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig1);
+  $().pfSetDonutChartTitle("#utilizationDonutChart31", "60", "MHz Used");
+
+  // Donut configuration 2
+  var donutConfig2 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig2.bindto = '#utilizationDonutChart32';
+  donutConfig2.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig2.size = {
+    width: 180,
+    height: 180
+  };
+
+  donutConfig2.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig2);
+  $().pfSetDonutChartTitle("#utilizationDonutChart32", "60", "MHz Used");
+
+  // Donut configuration 3
+  var donutConfig3 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig3.bindto = '#utilizationDonutChart33';
+  donutConfig3.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig3.size = {
+    width: 140,
+    height: 140
+  };
+
+  donutConfig3.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig3);
+  $().pfSetDonutChartTitle("#utilizationDonutChart33", "60", "MHz Used");
+
+  // Donut configuration 4
+  var donutConfig4 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig4.bindto = '#utilizationDonutChart34';
+  donutConfig4.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig4.size = {
+    width: 140,
+    height: 140
+  };
+
+  donutConfig4.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig4);
+  $().pfSetDonutChartTitle("#utilizationDonutChart34", "60", "MHz Used");
+</script>
+
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Host Name</dt>
+            <dd>Hostceph1</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-group-item-header">
+      <div class="list-view-pf-expand">
+        <span class="fa fa-angle-right"></span>
+      </div>
+      <div class="list-view-pf-checkbox">
+        <input type="checkbox">
+      </div>
+      <div class="list-view-pf-actions">
+        <button class="btn btn-default">Action</button>
+        <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight12">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+      </div>
+      <div class="list-view-pf-main-info">
+        <div class="list-view-pf-left">
+          <span class="fa fa-linux list-view-pf-icon-sm"></span>
+        </div>
+        <div class="list-view-pf-body">
+          <div class="list-view-pf-description">
+            <div class="list-group-item-heading">
+              Event Four
+            </div>
+            <div class="list-group-item-text">
+              The following snippet of text is <a href="#">rendered as link text</a>.
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info">
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-screen"></span>
+              <strong>4</strong> Hosts
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-cluster"></span>
+              <strong>2</strong> Clusters
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-container-node"></span>
+              <strong>10</strong> Nodes
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-image"></span>
+              <strong>6</strong> Images
+            </div>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <div id="utilizationDonutChart41" class="example-donut-chart-utilization"></div>
+
+<div class="pct-donut-chart-pf example-donut-chart-utilization">
+  <div class="pct-donut-chart-pf-chart">
+    <div id="utilizationDonutChart42"></div>
+  </div>
+  <span class="pct-donut-chart-pf-label">
+    60 MHz of 100 MHz used
+  </span>
+</div>
+
+<div class="example-donut-chart-utilization">
+  <span class="pct-donut-chart-pf pct-donut-chart-pf-left">
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart43"></div>
+    </div>
+    <span class="pct-donut-chart-pf-label text-right">
+      60 MHz of 100 MHz used
+    </span>
+  </span>
+</div>
+
+<div class="example-donut-chart-utilization">
+  <span class="pct-donut-chart-pf pct-donut-chart-pf-right">
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart44"></div>
+    </div>
+    <span class="pct-donut-chart-pf-label text-left">
+      60 MHz of 100 MHz
+    </span>
+  </span>
+</div>
+
+<script>
+  var c3ChartDefaults = $().c3ChartDefaults();
+
+  // Donut configuration 1
+  var donutConfig1 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig1.bindto = '#utilizationDonutChart41';
+  donutConfig1.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40],
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig1.size = {
+    width: 180,
+    height: 180
+  };
+
+  donutConfig1.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig1);
+  $().pfSetDonutChartTitle("#utilizationDonutChart41", "60", "MHz Used");
+
+  // Donut configuration 2
+  var donutConfig2 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig2.bindto = '#utilizationDonutChart42';
+  donutConfig2.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig2.size = {
+    width: 180,
+    height: 180
+  };
+
+  donutConfig2.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig2);
+  $().pfSetDonutChartTitle("#utilizationDonutChart42", "60", "MHz Used");
+
+  // Donut configuration 3
+  var donutConfig3 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig3.bindto = '#utilizationDonutChart43';
+  donutConfig3.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig3.size = {
+    width: 140,
+    height: 140
+  };
+
+  donutConfig3.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig3);
+  $().pfSetDonutChartTitle("#utilizationDonutChart43", "60", "MHz Used");
+
+  // Donut configuration 4
+  var donutConfig4 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig4.bindto = '#utilizationDonutChart44';
+  donutConfig4.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig4.size = {
+    width: 140,
+    height: 140
+  };
+
+  donutConfig4.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig4);
+  $().pfSetDonutChartTitle("#utilizationDonutChart44", "60", "MHz Used");
+</script>
+
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Host Name</dt>
+            <dd>Hostceph1</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-group-item-header">
+      <div class="list-view-pf-expand">
+        <span class="fa fa-angle-right"></span>
+      </div>
+      <div class="list-view-pf-checkbox">
+        <input type="checkbox">
+      </div>
+      <div class="list-view-pf-actions">
+        <button class="btn btn-default">Action</button>
+        <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight13">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+      </div>
+      <div class="list-view-pf-main-info">
+        <div class="list-view-pf-left">
+          <span class="fa fa-briefcase list-view-pf-icon-sm"></span>
+        </div>
+        <div class="list-view-pf-body">
+          <div class="list-view-pf-description">
+            <div class="list-group-item-heading">
+              Event Five
+            </div>
+            <div class="list-group-item-text">
+              The following snippet of text is <a href="#">rendered as link text</a>.
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info">
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-screen"></span>
+              <strong>4</strong> Hosts
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-cluster"></span>
+              <strong>2</strong> Clusters
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-container-node"></span>
+              <strong>10</strong> Nodes
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-image"></span>
+              <strong>6</strong> Images
+            </div>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <div id="utilizationDonutChart51" class="example-donut-chart-utilization"></div>
+
+<div class="pct-donut-chart-pf example-donut-chart-utilization">
+  <div class="pct-donut-chart-pf-chart">
+    <div id="utilizationDonutChart52"></div>
+  </div>
+  <span class="pct-donut-chart-pf-label">
+    60 MHz of 100 MHz used
+  </span>
+</div>
+
+<div class="example-donut-chart-utilization">
+  <span class="pct-donut-chart-pf pct-donut-chart-pf-left">
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart53"></div>
+    </div>
+    <span class="pct-donut-chart-pf-label text-right">
+      60 MHz of 100 MHz used
+    </span>
+  </span>
+</div>
+
+<div class="example-donut-chart-utilization">
+  <span class="pct-donut-chart-pf pct-donut-chart-pf-right">
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart54"></div>
+    </div>
+    <span class="pct-donut-chart-pf-label text-left">
+      60 MHz of 100 MHz
+    </span>
+  </span>
+</div>
+
+<script>
+  var c3ChartDefaults = $().c3ChartDefaults();
+
+  // Donut configuration 1
+  var donutConfig1 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig1.bindto = '#utilizationDonutChart51';
+  donutConfig1.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40],
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig1.size = {
+    width: 180,
+    height: 180
+  };
+
+  donutConfig1.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig1);
+  $().pfSetDonutChartTitle("#utilizationDonutChart51", "60", "MHz Used");
+
+  // Donut configuration 2
+  var donutConfig2 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig2.bindto = '#utilizationDonutChart52';
+  donutConfig2.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig2.size = {
+    width: 180,
+    height: 180
+  };
+
+  donutConfig2.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig2);
+  $().pfSetDonutChartTitle("#utilizationDonutChart52", "60", "MHz Used");
+
+  // Donut configuration 3
+  var donutConfig3 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig3.bindto = '#utilizationDonutChart53';
+  donutConfig3.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig3.size = {
+    width: 140,
+    height: 140
+  };
+
+  donutConfig3.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig3);
+  $().pfSetDonutChartTitle("#utilizationDonutChart53", "60", "MHz Used");
+
+  // Donut configuration 4
+  var donutConfig4 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig4.bindto = '#utilizationDonutChart54';
+  donutConfig4.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig4.size = {
+    width: 140,
+    height: 140
+  };
+
+  donutConfig4.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig4);
+  $().pfSetDonutChartTitle("#utilizationDonutChart54", "60", "MHz Used");
+</script>
+
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Host Name</dt>
+            <dd>Hostceph1</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-group-item-header">
+      <div class="list-view-pf-expand">
+        <span class="fa fa-angle-right"></span>
+      </div>
+      <div class="list-view-pf-checkbox">
+        <input type="checkbox">
+      </div>
+      <div class="list-view-pf-actions">
+        <button class="btn btn-default">Action</button>
+        <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight14">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+      </div>
+      <div class="list-view-pf-main-info">
+        <div class="list-view-pf-left">
+          <span class="fa fa-coffee list-view-pf-icon-sm"></span>
+        </div>
+        <div class="list-view-pf-body">
+          <div class="list-view-pf-description">
+            <div class="list-group-item-heading">
+              Event Six
+            </div>
+            <div class="list-group-item-text">
+              The following snippet of text is <a href="#">rendered as link text</a>.
+            </div>
+          </div>
+          <div class="list-view-pf-additional-info">
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-screen"></span>
+              <strong>4</strong> Hosts
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-cluster"></span>
+              <strong>2</strong> Clusters
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-container-node"></span>
+              <strong>10</strong> Nodes
+            </div>
+            <div class="list-view-pf-additional-info-item">
+              <span class="pficon pficon-image"></span>
+              <strong>6</strong> Images
+            </div>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="list-group-item-container container-fluid hidden">
+      <div class="close">
+        <span class="pficon pficon-close"></span>
+      </div>
+      <div class="row">
+        <div class="col-md-3">
+          <div id="utilizationDonutChart61" class="example-donut-chart-utilization"></div>
+
+<div class="pct-donut-chart-pf example-donut-chart-utilization">
+  <div class="pct-donut-chart-pf-chart">
+    <div id="utilizationDonutChart62"></div>
+  </div>
+  <span class="pct-donut-chart-pf-label">
+    60 MHz of 100 MHz used
+  </span>
+</div>
+
+<div class="example-donut-chart-utilization">
+  <span class="pct-donut-chart-pf pct-donut-chart-pf-left">
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart63"></div>
+    </div>
+    <span class="pct-donut-chart-pf-label text-right">
+      60 MHz of 100 MHz used
+    </span>
+  </span>
+</div>
+
+<div class="example-donut-chart-utilization">
+  <span class="pct-donut-chart-pf pct-donut-chart-pf-right">
+    <div class="pct-donut-chart-pf-chart">
+      <div id="utilizationDonutChart64"></div>
+    </div>
+    <span class="pct-donut-chart-pf-label text-left">
+      60 MHz of 100 MHz
+    </span>
+  </span>
+</div>
+
+<script>
+  var c3ChartDefaults = $().c3ChartDefaults();
+
+  // Donut configuration 1
+  var donutConfig1 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig1.bindto = '#utilizationDonutChart61';
+  donutConfig1.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40],
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig1.size = {
+    width: 180,
+    height: 180
+  };
+
+  donutConfig1.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig1);
+  $().pfSetDonutChartTitle("#utilizationDonutChart61", "60", "MHz Used");
+
+  // Donut configuration 2
+  var donutConfig2 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig2.bindto = '#utilizationDonutChart62';
+  donutConfig2.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig2.size = {
+    width: 180,
+    height: 180
+  };
+
+  donutConfig2.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig2);
+  $().pfSetDonutChartTitle("#utilizationDonutChart62", "60", "MHz Used");
+
+  // Donut configuration 3
+  var donutConfig3 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig3.bindto = '#utilizationDonutChart63';
+  donutConfig3.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig3.size = {
+    width: 140,
+    height: 140
+  };
+
+  donutConfig3.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig3);
+  $().pfSetDonutChartTitle("#utilizationDonutChart63", "60", "MHz Used");
+
+  // Donut configuration 4
+  var donutConfig4 = c3ChartDefaults.getDefaultDonutConfig('A');
+
+  donutConfig4.bindto = '#utilizationDonutChart64';
+  donutConfig4.data = {
+    type: "donut",
+    columns: [
+      ["Used", 60],
+      ["Available", 40]
+    ],
+    groups: [
+      ["used", "available"]
+    ],
+    order: null
+  };
+  donutConfig4.size = {
+    width: 140,
+    height: 140
+  };
+
+  donutConfig4.tooltip = {
+    contents: $().pfGetUtilizationDonutTooltipContentsFn('MHz')
+  };
+
+  c3.generate(donutConfig4);
+  $().pfSetDonutChartTitle("#utilizationDonutChart64", "60", "MHz Used");
+</script>
+
+        </div>
+        <div class="col-md-9">
+          <dl class="dl-horizontal">
+            <dt>Host Name</dt>
+            <dd>Hostceph1</dd>
+            <dt>Device Path</dt>
+            <dd>/dev/disk/pci-0000.05:00-sas-0.2-part1</dd>
+            <dt>Time</dt>
+            <dd>January 15, 2016 10:45:11 AM</dd>
+            <dt>Severity</dt>
+            <dd>Warning</dd>
+            <dt>Cluster</dt>
+            <dd>Cluster 1</dd>
+          </dl>
+          <p>
+            Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
+            tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
+            quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
+            consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
+            cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
+            proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
+          </p>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  $(document).ready(function () {
+    // Row Checkbox Selection
+    $("input[type='checkbox']").change(function (e) {
+      if ($(this).is(":checked")) {
+        $(this).closest('.list-group-item').addClass("active");
+      } else {
+        $(this).closest('.list-group-item').removeClass("active");
+      }
+    });
+    // toggle dropdown menu
+    $('.list-view-pf-actions').on('show.bs.dropdown', function () {
+      var $this = $(this);
+      var $dropdown = $this.find('.dropdown');
+      var space = $(window).height() - $dropdown[0].getBoundingClientRect().top - $this.find('.dropdown-menu').outerHeight(true);
+      $dropdown.toggleClass('dropup', space < 10);
+    });
+
+    // click the list-view heading then expand a row
+    $(".list-group-item-header").click(function(event){
+      if(!$(event.target).is("button, a, input, .fa-ellipsis-v")){
+        $(this).find(".fa-angle-right").toggleClass("fa-angle-down")
+          .end().parent().toggleClass("list-view-pf-expand-active")
+            .find(".list-group-item-container").toggleClass("hidden");
+      } else {
+      }
+    })
+
+    // click the close button, hide the expand row and remove the active status
+    $(".list-group-item-container .close").on("click", function (){
+      $(this).parent().addClass("hidden")
+        .parent().removeClass("list-view-pf-expand-active")
+          .find(".fa-angle-right").removeClass("fa-angle-down");
+    })
+
+  });
+</script>
+
+</div>
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/login.html b/themes/src/main/node_modules/rcue/tests/login.html
new file mode 100644
index 0000000..1e811de
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/login.html
@@ -0,0 +1,92 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 login-pf"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="login-pf">
+<!--<![endif]-->
+  <head>
+    <title>Login - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body>
+<span id="badge">
+  <img src="/dist/img/logo.svg" alt="Red Hat&reg; logo" />
+</span>
+<div class="container">
+  <div class="row">
+    <div class="col-sm-12">
+      <div id="brand">
+        <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience">
+      </div><!--/#brand-->
+    </div><!--/.col-*-->
+    <div class="col-sm-7 col-md-6 col-lg-5 login">
+      <form class="form-horizontal" role="form">
+        <div class="form-group">
+          <label for="inputUsername" class="col-sm-2 col-md-2 control-label">Username</label>
+          <div class="col-sm-10 col-md-10">
+            <input type="text" class="form-control" id="inputUsername" placeholder="" tabindex="1">
+          </div>
+        </div>
+        <div class="form-group">
+          <label for="inputPassword" class="col-sm-2 col-md-2 control-label">Password</label>
+          <div class="col-sm-10 col-md-10">
+            <input type="password" class="form-control" id="inputPassword" placeholder="" tabindex="2">
+          </div>
+        </div>
+        <div class="form-group">
+          <div class="col-xs-8 col-sm-offset-2 col-sm-6 col-md-offset-2 col-md-6">
+            <div class="checkbox">
+              <label>
+                <input type="checkbox" tabindex="3"> Remember username
+              </label>
+            </div>
+            <span class="help-block"> Forgot <a href="#" tabindex="5">username</a> or <a href="#" tabindex="6">password</a>?</span>
+          </div>
+          <div class="col-xs-4 col-sm-4 col-md-4 submit">
+            <button type="submit" class="btn btn-primary btn-lg" tabindex="4">Log In</button>
+          </div>
+        </div>
+      </form>
+    </div><!--/.col-*-->
+    <div class="col-sm-5 col-md-6 col-lg-7 details">
+      <p><strong>Welcome to Red Hat&reg; Common User Experience!</strong>
+        This is placeholder text, only. Use this area to place any information or introductory message about your application that may be relevant for users. For example, you might include news or information about the latest release of your product here&mdash;such as a version number.</p>
+    </div><!--/.col-*-->
+  </div><!--/.row-->
+</div><!--/.container-->
+
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/login-basic.html b/themes/src/main/node_modules/rcue/tests/login-basic.html
new file mode 100644
index 0000000..9c675bb
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/login-basic.html
@@ -0,0 +1,102 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 login-pf"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="login-pf">
+<!--<![endif]-->
+  <head>
+    <title>Login basic - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body>
+<div class="login-pf-page">
+<div class="container-fluid">
+  <div class="row">
+        <div class="col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3 col-lg-6 col-lg-offset-3">
+          <header class="login-pf-page-header">
+            <img class="login-pf-brand" src="/" alt="Red Hat&reg; logo" />
+            <p>
+              This is placeholder text, only. Use this area to place any information or introductory message about your application that may be relevant for users.
+            </p>
+          </header>
+          <div class="row">
+            <div class="col-sm-10 col-sm-offset-1 col-md-8 col-md-offset-2 col-lg-8 col-lg-offset-2">
+          <div class="card-pf">
+              <header class="login-pf-header">
+                <select class="selectpicker">
+                  <option>English</option>
+                  <option>French</option>
+                  <option>Italian</option>
+                </select>
+                <h1>Log In to Your Account</h1>
+              </header>
+                <form>
+                  <div class="form-group">
+                    <label class="sr-only" for="exampleInputEmail1">Email address</label>
+                    <input type="email" class="form-control  input-lg" id="exampleInputEmail1" placeholder="Email address">
+                  </div>
+                  <div class="form-group">
+                    <label class="sr-only"  for="exampleInputPassword1">Password
+                    </label>
+                    <input type="password" class="form-control input-lg" id="exampleInputPassword1" placeholder="Password">
+                  </div>
+                  <div class="form-group login-pf-settings">
+                        <label class="checkbox-label">
+                          <input type="checkbox"> Keep me logged in for 30 days
+                        </label>
+                        <a href="#">Forgot password?</a>
+                  </div>
+                  <button type="submit" class="btn btn-primary btn-block btn-lg">Log In</button>
+                </form>
+                  <p class="login-pf-signup">Need an account?<a href="#">Sign up</a></p>
+        </div><!-- card -->
+            <footer class="login-pf-page-footer">
+              <ul class="login-pf-page-footer-links list-unstyled">
+                <li><a class="login-pf-page-footer-link" href="#">Terms of Use</a></li>
+                <li><a class="login-pf-page-footer-link" href="#">Help</a></li>
+                <li><a class="login-pf-page-footer-link" href="#">Privacy Policy</a></li>
+              </ul>
+            </footer>
+      </div><!-- col -->
+    </div><!-- row -->
+  </div><!-- col -->
+</div><!-- login-pf-page -->
+</div><!--row-->
+</div><!--container-->
+
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/login-multi-factor-identity-first-1.html b/themes/src/main/node_modules/rcue/tests/login-multi-factor-identity-first-1.html
new file mode 100644
index 0000000..2607c96
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/login-multi-factor-identity-first-1.html
@@ -0,0 +1,93 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 login-pf"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="login-pf">
+<!--<![endif]-->
+  <head>
+    <title>Login Multi-Factor Indentity First - Step One - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body>
+<div class="login-pf-page">
+<div class="container-fluid">
+  <div class="row">
+        <div class="col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3 col-lg-6 col-lg-offset-3">
+          <header class="login-pf-page-header">
+            <img class="login-pf-brand" src="/" alt="Red Hat&reg; logo" />
+          </header>
+          <div class="row">
+            <div class="col-sm-10 col-sm-offset-1 col-md-8 col-md-offset-2 col-lg-8 col-lg-offset-2">
+          <div class="card-pf">
+              <header class="login-pf-header">
+                <select class="selectpicker">
+                  <option>English</option>
+                  <option>French</option>
+                  <option>Italian</option>
+                </select>
+                <h1>Log In to Your Account</h1>
+              </header>
+                <form>
+                  <div class="form-group">
+                    <label class="sr-only" for="exampleInputEmail1">Email, phone or username</label>
+                    <input type="email" class="form-control  input-lg" id="exampleInputEmail1" placeholder="Email, phone or username">
+                  </div>
+                  <div class="form-group login-pf-settings">
+                        <label class="checkbox-label">
+                          <input type="checkbox"> Keep me logged in for 30 days
+                        </label>
+                  </div>
+                  <button type="submit" class="btn btn-primary btn-block btn-lg">Next</button>
+                </form>
+                  <p class="login-pf-signup">Need an account?<a href="#">Sign up</a></p>
+        </div><!-- card -->
+            <footer class="login-pf-page-footer">
+              <ul class="login-pf-page-footer-links list-unstyled">
+                <li><a class="login-pf-page-footer-link" href="#">Terms of Use</a></li>
+                <li><a class="login-pf-page-footer-link" href="#">Help</a></li>
+                <li><a class="login-pf-page-footer-link" href="#">Privacy Policy</a></li>
+              </ul>
+            </footer>
+      </div><!-- col -->
+    </div><!-- row -->
+  </div><!-- col -->
+</div><!-- login-pf-page -->
+</div><!--row-->
+</div><!--container-->
+
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/login-multi-factor-identity-first-2.html b/themes/src/main/node_modules/rcue/tests/login-multi-factor-identity-first-2.html
new file mode 100644
index 0000000..d486605
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/login-multi-factor-identity-first-2.html
@@ -0,0 +1,99 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 login-pf"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="login-pf">
+<!--<![endif]-->
+  <head>
+    <title>Login Multi-Factor Indentity First - Step Two - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body>
+<div class="login-pf-page">
+<div class="container-fluid">
+  <div class="row">
+        <div class="col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3 col-lg-6 col-lg-offset-3">
+          <header class="login-pf-page-header">
+            <img class="login-pf-brand" src="/" alt="Red Hat&reg; logo" />
+          </header>
+          <div class="row">
+            <div class="col-sm-10 col-sm-offset-1 col-md-8 col-md-offset-2 col-lg-8 col-lg-offset-2">
+          <div class="card-pf">
+              <header class="login-pf-header">
+                <select class="selectpicker">
+                  <option>English</option>
+                  <option>French</option>
+                  <option>Italian</option>
+                </select>
+                <h1>Log In to Your Account</h1>
+              </header>
+                <form>
+                  <div class="form-group login-pf-settings">
+                      <p class="form-control-static">john@patternfly.com</p>
+                        <a href="#">Not you?</a>
+                  </div>
+                  <div class="form-group">
+                    <label class="sr-only"  for="exampleInputPassword1">Password
+                    </label>
+                    <input type="password" class="form-control input-lg" id="exampleInputPassword1" placeholder="Password">
+                  </div>
+                  <div class="form-group login-pf-settings">
+                        <label class="checkbox-label">
+                          <input type="checkbox"> Keep me logged in for 30 days
+                        </label>
+                        <a href="#">Forgot password?</a>
+                  </div>
+                  <button type="submit" class="btn btn-primary btn-block btn-lg">Log In</button>
+                </form>
+                  <p class="login-pf-signup">Need an account?<a href="#">Sign up</a></p>
+        </div><!-- card -->
+            <footer class="login-pf-page-footer">
+              <ul class="login-pf-page-footer-links list-unstyled">
+                <li><a class="login-pf-page-footer-link" href="#">Terms of Use</a></li>
+                <li><a class="login-pf-page-footer-link" href="#">Help</a></li>
+                <li><a class="login-pf-page-footer-link" href="#">Privacy Policy</a></li>
+              </ul>
+            </footer>
+      </div><!-- col -->
+    </div><!-- row -->
+  </div><!-- col -->
+</div><!-- login-pf-page -->
+</div><!--row-->
+</div><!--container-->
+
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/login-single-sign-on.html b/themes/src/main/node_modules/rcue/tests/login-single-sign-on.html
new file mode 100644
index 0000000..9a91e40
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/login-single-sign-on.html
@@ -0,0 +1,108 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 login-pf"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="login-pf">
+<!--<![endif]-->
+  <head>
+    <title>Login Single Sign-On - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body>
+<div class="login-pf-page">
+<div class="container-fluid">
+  <div class="row">
+        <div class="col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3 col-lg-6 col-lg-offset-3">
+          <header class="login-pf-page-header">
+            <img class="login-pf-brand" src="/" alt="Red Hat&reg; logo" />
+          </header>
+          <div class="row">
+            <div class="col-sm-10 col-sm-offset-1 col-md-8 col-md-offset-2 col-lg-8 col-lg-offset-2">
+          <div class="card-pf">
+              <header class="login-pf-header">
+                <select class="selectpicker">
+                  <option>English</option>
+                  <option>French</option>
+                  <option>Italian</option>
+                </select>
+                <h1>Single Sign-On</h1>
+                <p>Log in to <strong>Application</strong></p>
+              </header>
+                <form>
+                  <div class="form-group">
+                    <label class="sr-only" for="exampleInputEmail1">Email address</label>
+                    <input type="email" class="form-control input-lg" id="exampleInputEmail1" placeholder="Email address">
+                  </div>
+                  <div class="form-group">
+                    <label class="sr-only"  for="exampleInputPassword1">Password
+                    </label>
+                    <input type="password" class="form-control input-lg" id="exampleInputPassword1" placeholder="Password">
+                  </div>
+                  <div class="form-group login-pf-settings">
+                        <label class="checkbox-label">
+                          <input type="checkbox"> Keep me logged in for 30 days
+                        </label>
+                        <a href="#">Forgot password?</a>
+                  </div>
+                  <button type="submit" class="btn btn-primary btn-block btn-lg">Log In</button>
+                </form>
+                <p class="login-pf-signup">Need an account?<a href="#">Sign up</a></p>
+        </div><!-- card -->
+        <footer class="login-pf-page-footer">
+          <div class="login-pf-page-footer-sso-services">
+            <p>One account for all your company services</p>
+            <ul class="login-pf-page-footer-sso-services-logos">
+              <li><img src="/" alt="google drive icon" /></li>
+              <li><img src="/" alt="gmail icon" /></li>
+              <li><img src="/" alt="google calendar icon" /></li>
+            </ul>
+          </div>
+          <ul class="login-pf-page-footer-links list-unstyled">
+            <li><a class="login-pf-page-footer-link" href="#">Terms of Use</a></li>
+            <li><a class="login-pf-page-footer-link" href="#">Help</a></li>
+            <li><a class="login-pf-page-footer-link" href="#">Privacy Policy</a></li>
+          </ul>
+        </footer>
+      </div><!-- col -->
+    </div><!-- row -->
+  </div><!-- col -->
+</div><!-- login-pf-page -->
+</div><!--row-->
+</div><!--container-->
+
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/login-social-account.html b/themes/src/main/node_modules/rcue/tests/login-social-account.html
new file mode 100644
index 0000000..1819c95
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/login-social-account.html
@@ -0,0 +1,101 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 login-pf"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="login-pf">
+<!--<![endif]-->
+  <head>
+    <title>Login Social Account - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body>
+<div class="login-pf-page login-pf-page-accounts">
+          <header class="login-pf-page-header">
+            <img class="login-pf-brand" src="/" alt="Red Hat&reg; logo" />
+          </header>
+          <div class="card-pf login-pf-accounts">
+              <header class="login-pf-header">
+                <select class="selectpicker">
+                  <option>English</option>
+                  <option>French</option>
+                  <option>Italian</option>
+                </select>
+                <h1>Log In to Your Account</h1>
+              </header>
+                    <section class="login-pf-social-section" role="contentinfo" aria-label="Log in to your patternfly account">
+                    <form>
+                      <div class="form-group">
+                        <label class="sr-only" for="exampleInputEmail1">Email address</label>
+                        <input type="email" class="form-control  input-lg" id="exampleInputEmail1" placeholder="Email address">
+                      </div>
+                      <div class="form-group">
+                        <label class="sr-only"  for="exampleInputPassword1">Password
+                        </label>
+                        <input type="password" class="form-control input-lg" id="exampleInputPassword1" placeholder="Password">
+                      </div>
+                      <div class="login-pf-settings">
+                            <label class="checkbox-label">
+                              <input type="checkbox"> Keep me logged in for 30 days
+                            </label>
+                            <a href="#">Forgot password?</a>
+                      </div>
+                      <button type="submit" class="btn btn-primary btn-block btn-lg">Log In</button>
+                    </form>
+                </section><!--login-pf-section-->
+                <section class="login-pf-social-section" role="contentinfo" aria-label="Log in with third party account">
+                  <ul class="login-pf-social list-unstyled">
+                    <li class="login-pf-social-link"><a href="#"><img src="/img/google-logo.svg" alt="Google logo">Google</a></li>
+                    <li class="login-pf-social-link"><a href="#"><img src="/img/github-logo.svg" alt="github logo">Github</a></li>
+                    <li class="login-pf-social-link"><a href="#"><img src="/img/facebook-logo.svg" alt="Facebook logo">Facebook</a></li>
+                    <li class="login-pf-social-link"><a href="#"><img src="/img/twitter-logo.svg" alt="Twitter logo">Twitter</a></li>
+                  </ul>
+              </section><!--login-pf-section-->
+                <p class="login-pf-signup">Need an account?<a href="#">Sign up</a></p>
+        </div><!-- card -->
+
+            <footer class="login-pf-page-footer">
+              <ul class="login-pf-page-footer-links list-unstyled">
+                <li><a class="login-pf-page-footer-link" href="#">Terms of Use</a></li>
+                <li><a class="login-pf-page-footer-link" href="#">Help</a></li>
+                <li><a class="login-pf-page-footer-link" href="#">Privacy Policy</a></li>
+              </ul>
+            </footer>
+
+</div><!-- login-pf-page -->
+
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/login-social-account-two-column.html b/themes/src/main/node_modules/rcue/tests/login-social-account-two-column.html
new file mode 100644
index 0000000..579a57a
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/login-social-account-two-column.html
@@ -0,0 +1,130 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 login-pf"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="login-pf">
+<!--<![endif]-->
+  <head>
+    <title>Login Social Account (two column) - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body>
+<div class="login-pf-page login-pf-page-accounts">
+          <header class="login-pf-page-header">
+            <img class="login-pf-brand" src="/" alt="Red Hat&reg; logo" />
+          </header>
+          <div class="card-pf login-pf-accounts">
+              <header class="login-pf-header">
+                <select class="selectpicker">
+                  <option>English</option>
+                  <option>French</option>
+                  <option>Italian</option>
+                </select>
+                <h1>Log In to Your Account</h1>
+              </header>
+                    <section class="login-pf-social-section" role="contentinfo" aria-label="Log in to your patternfly account">
+                    <form>
+                      <div class="form-group">
+                        <label class="sr-only" for="exampleInputEmail1">Email address</label>
+                        <input type="email" class="form-control  input-lg" id="exampleInputEmail1" placeholder="Email address">
+                      </div>
+                      <div class="form-group">
+                        <label class="sr-only"  for="exampleInputPassword1">Password
+                        </label>
+                        <input type="password" class="form-control input-lg" id="exampleInputPassword1" placeholder="Password">
+                      </div>
+                      <div class="login-pf-settings">
+                            <label class="checkbox-label">
+                              <input type="checkbox"> Keep me logged in for 30 days
+                            </label>
+                            <a href="#">Forgot password?</a>
+                      </div>
+                      <button type="submit" class="btn btn-primary btn-block btn-lg">Log In</button>
+                    </form>
+                </section><!--login-pf-section-->
+                <section class="login-pf-social-section" role="contentinfo" aria-label="Log in with third party account">
+                  <ul class="login-pf-social login-pf-social-double-col list-unstyled">
+                    <li class="login-pf-social-link"><a href="#"><img src="/img/google-logo.svg" alt="Google account login">Google</a></li>
+                    <li class="login-pf-social-link"><a href="#"><img src="/img/github-logo.svg" alt="github account login">Github</a></li>
+                    <li class="login-pf-social-link"><a href="#"><img src="/img/facebook-logo.svg" alt="Facebook account login">Facebook</a></li>
+                    <li class="login-pf-social-link"><a href="#"><img src="/img/twitter-logo.svg" alt="Twitter account login">Twitter</a></li>
+                    <li class="login-pf-social-link"><a href="#"><img src="/img/linkedin-logo.svg" alt="LinkIn account login">LinkIn</a></li>
+                    <li class="login-pf-social-link"><a href="#"><img src="/img/stack-exchange-logo.svg" alt="Stack Exchange logo">Stack Exchange</a></li>
+                    <li class="login-pf-social-link"><a href="#"><img src="/img/open-id-logo.svg" alt="Open ID account login">Open ID</a></li>
+                    <li class="login-pf-social-link"><a href="#"><img src="/img/instagram-logo.png" alt="Instagram account login">Instagram</a></li>
+                    <li class="login-pf-social-link login-pf-social-link-more"><a href="#"><img src="/img/git-logo.svg" alt="Git account login">Git</a></li>
+                    <li class="login-pf-social-link login-pf-social-link-more"><a href="#"><img src="/img/dropbox-logo.svg" alt="dropbox account login">Dropbox</a></li>
+                    <li class="login-pf-social-link login-pf-social-link-more"><a href="#"><img src="/img/fedora-logo.png" alt="fedora account login">Fedora</a></li>
+                    <li class="login-pf-social-link login-pf-social-link-more"><a href="#"><img src="/img/skype-logo.svg" alt="skype account logingit ">Skype</a></li>
+                  </ul>
+                  <button type="button" id="socialAccountsToggle" class="btn btn-link login-pf-social-toggle">More<span class="caret"></span></button>
+              </section><!--login-pf-section-->
+                <p class="login-pf-signup">Need an account?<a href="#">Sign up</a></p>
+        </div><!-- card -->
+        <div class="row">
+          <div class="col-md-6 col-md-offset-3">
+            <footer class="login-pf-page-footer">
+              <ul class="login-pf-page-footer-links list-unstyled">
+                <li><a class="login-pf-page-footer-link" href="#">Terms of Use</a></li>
+                <li><a class="login-pf-page-footer-link" href="#">Help</a></li>
+                <li><a class="login-pf-page-footer-link" href="#">Privacy Policy</a></li>
+              </ul>
+            </footer>
+          </div>
+        </div>
+
+</div><!-- login-pf-page -->
+<script>
+  $("#socialAccountsToggle").on("click", function(e) {
+    var $toggle = $(e.target);
+    var text = $toggle.contents().first()[0];
+    var socialContainer = $('.login-pf-social-section > .login-pf-social');
+
+    if ($toggle.hasClass('login-pf-social-toggle-active')) {
+      $toggle.removeClass('login-pf-social-toggle-active');
+      text.textContent = 'More';
+      socialContainer.removeClass('login-pf-social-all');
+    } else {
+      $toggle.addClass('login-pf-social-toggle-active');
+      text.textContent = 'Less';
+      socialContainer.addClass('login-pf-social-all');
+    }
+  });
+</script>
+
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/modals.html b/themes/src/main/node_modules/rcue/tests/modals.html
new file mode 100644
index 0000000..fd8c852
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/modals.html
@@ -0,0 +1,85 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Modals - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Modals</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+<button class="btn btn-default" data-toggle="modal" data-target="#myModal">Launch demo modal</button>
+<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
+  <div class="modal-dialog">
+    <div class="modal-content">
+      <div class="modal-header">
+        <button type="button" class="close" data-dismiss="modal" aria-hidden="true" aria-label="Close">
+          <span class="pficon pficon-close"></span>
+        </button>
+        <h4 class="modal-title" id="myModalLabel">Modal Title</h4>
+      </div>
+      <div class="modal-body">
+        <form class="form-horizontal">
+          <div class="form-group">
+            <label class="col-sm-3 control-label" for="textInput">Field One</label>
+            <div class="col-sm-9">
+              <input type="text" id="textInput" class="form-control"></div>
+          </div>
+          <div class="form-group">
+            <label class="col-sm-3 control-label" for="textInput2">Field Two</label>
+            <div class="col-sm-9">
+              <input type="text" id="textInput2" class="form-control"></div>
+          </div>
+          <div class="form-group">
+            <label class="col-sm-3 control-label" for="textInput3">Field Three</label>
+            <div class="col-sm-9">
+              <input type="text" id="textInput3" class="form-control">
+            </div>
+          </div>
+        </form>
+      </div>
+      <div class="modal-footer">
+        <button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
+        <button type="button" class="btn btn-primary">Save</button>
+      </div>
+    </div>
+  </div>
+</div>
+
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/navbar.html b/themes/src/main/node_modules/rcue/tests/navbar.html
new file mode 100644
index 0000000..d32f9f8
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/navbar.html
@@ -0,0 +1,4858 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Navbar - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Navbar</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://silviomoreto.github.io/bootstrap-select/">http://silviomoreto.github.io/bootstrap-select/</a>.
+      </div>
+      <hr>
+      <h2>Primary Navigation Bar</h2>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-1">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu3" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu3">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary">
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li>
+              <a href="#">Another Link</a>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-1">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu4" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu4">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary">
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li class="active">
+              <a href="#">Another Link</a>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+
+      <hr>
+      <h2>Context Selector</h2>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-3">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-3">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu5" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu5">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary">
+            <li class="context context-bootstrap-select">
+              <select class="selectpicker" data-live-search="true">
+                <optgroup label="Context Label">
+                  <option>First Option</option>
+                  <option>Another Option</option>
+                  <option>And Another</option>
+                  <option>Fourth Option That Is a Lot Longer And Will Be Too Long At Small Resolutions</option>
+                  <option data-divider="true"></option>
+                  <option data-subtext="supplemental data">Fifth Option</option>
+                  <option disabled>Disabled Option</option>
+                  <option data-subtext="end">Final Option</option>
+                </optgroup>
+              </select>
+            </li>
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li>
+              <a href="#">Another Link</a>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-3">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-3">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu6" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu6">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary">
+            <li class="context context-bootstrap-select">
+              <select class="selectpicker" data-live-search="true">
+                <optgroup label="Context Label">
+                  <option>First Option</option>
+                  <option>Another Option</option>
+                  <option>And Another</option>
+                  <option>Fourth Option That Is a Lot Longer And Will Be Too Long At Small Resolutions</option>
+                  <option data-divider="true"></option>
+                  <option data-subtext="supplemental data">Fifth Option</option>
+                  <option disabled>Disabled Option</option>
+                  <option data-subtext="end">Final Option</option>
+                </optgroup>
+              </select>
+            </li>
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li class="active">
+              <a href="#">Another Link</a>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <h2>Multi-level Menu</h2>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-5">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-5">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu7" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu7">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary">
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown with Submenu
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown with Dropup Submenu
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu dropup">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown with Pull-left Submenu
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+                <li class="dropdown-submenu pull-left">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">No Dropdown</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-5">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a class="navbar-brand" href="/">
+      <img src="/dist/img/brand.svg"  alt="Red Hat&reg; Common User Experience" />
+    </a>
+  </div>
+  <div class="collapse navbar-collapse navbar-collapse-5">
+    <ul class="nav navbar-nav navbar-utility">
+      <li class="dropdown">
+        <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+          <span class="pficon pficon-user"></span>
+          Brian Johnson
+          <b class="caret"></b>
+        </a>
+        <ul class="dropdown-menu">
+          <li>
+            <a href="#0">Link</a>
+          </li>
+          <li>
+            <a href="#0">Another link</a>
+          </li>
+          <li>
+            <a href="#0">Something else here</a>
+          </li>
+          <li class="divider"></li>
+          <li class="dropdown-submenu">
+            <a tabindex="-1" href="#0">More options</a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-header">Nav header</li>
+              <li>
+                <a href="#0">Separated link</a>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+          <li class="divider"></li>
+          <li>
+            <a href="#0">One more separated link</a>
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <ul class="nav navbar-nav navbar-primary">
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+          Dropdown
+          <b class="caret"></b>
+        </a>
+        <ul class="dropdown-menu">
+          <li>
+            <a href="#0">Link</a>
+          </li>
+          <li>
+            <a href="#0">Another link</a>
+          </li>
+          <li>
+            <a href="#0">Something else here</a>
+          </li>
+          <li class="divider"></li>
+          <li>
+            <a href="#0">Separated link</a>
+          </li>
+          <li class="divider"></li>
+          <li>
+            <a href="#0">One more separated link</a>
+          </li>
+        </ul>
+      </li>
+      <li class="dropdown active">
+        <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+          Dropdown with Submenu
+          <b class="caret"></b>
+        </a>
+        <ul class="dropdown-menu">
+          <li>
+            <a href="#0">Link</a>
+          </li>
+          <li>
+            <a href="#0">Another link</a>
+          </li>
+          <li>
+            <a href="#0">Something else here</a>
+          </li>
+          <li class="divider"></li>
+          <li>
+            <a href="#0">Separated link</a>
+          </li>
+          <li class="divider"></li>
+          <li>
+            <a href="#0">One more separated link</a>
+          </li>
+          <li class="dropdown-submenu">
+            <a tabindex="-1" href="#0">More options</a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">Separated link</a>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+          Dropdown with Dropup Submenu
+          <b class="caret"></b>
+        </a>
+        <ul class="dropdown-menu dropup">
+          <li>
+            <a href="#0">Link</a>
+          </li>
+          <li>
+            <a href="#0">Another link</a>
+          </li>
+          <li>
+            <a href="#0">Something else here</a>
+          </li>
+          <li class="divider"></li>
+          <li>
+            <a href="#0">Separated link</a>
+          </li>
+          <li class="divider"></li>
+          <li>
+            <a href="#0">One more separated link</a>
+          </li>
+          <li class="dropdown-submenu">
+            <a tabindex="-1" href="#0">More options</a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">Separated link</a>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+          Dropdown with Pull-left Submenu
+          <b class="caret"></b>
+        </a>
+        <ul class="dropdown-menu">
+          <li>
+            <a href="#0">Link</a>
+          </li>
+          <li>
+            <a href="#0">Another link</a>
+          </li>
+          <li>
+            <a href="#0">Something else here</a>
+          </li>
+          <li class="divider"></li>
+          <li>
+            <a href="#0">Separated link</a>
+          </li>
+          <li class="divider"></li>
+          <li>
+            <a href="#0">One more separated link</a>
+          </li>
+          <li class="dropdown-submenu pull-left">
+            <a tabindex="-1" href="#0">More options</a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">Separated link</a>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+      </li>
+      <li>
+        <a href="#0">No Dropdown</a>
+      </li>
+    </ul>
+  </div>
+</nav>
+
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-5">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-5">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu8" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu8">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary">
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+            <li class="dropdown active">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown with Submenu
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+                <li class="dropdown-submenu active">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li class="active">
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown with Dropup Submenu
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu dropup">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown with Pull-left Submenu
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+                <li class="dropdown-submenu pull-left">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">No Dropdown</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <h2>
+        Multi-level Menu and Context Selector
+      </h2>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-8">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-8">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu9" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu9">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary">
+            <li class="context context-bootstrap-select">
+              <select class="selectpicker" data-live-search="true">
+                <optgroup label="Context Label">
+                  <option>First Option</option>
+                  <option>Another Option</option>
+                  <option>And Another</option>
+                  <option>Fourth Option That Is a Lot Longer And Will Be Too Long At Small Resolutions</option>
+                  <option data-divider="true"></option>
+                  <option data-subtext="supplemental data">Fifth Option</option>
+                  <option disabled>Disabled Option</option>
+                  <option data-subtext="end">Final Option</option>
+                </optgroup>
+              </select>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown with Submenu
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown with Dropup Submenu
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu dropup">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown with Pull-left Submenu
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+                <li class="dropdown-submenu pull-left">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">No Dropdown</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-8">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-8">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu10" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu10">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary">
+            <li class="context context-bootstrap-select">
+              <select class="selectpicker" data-live-search="true">
+                <optgroup label="Context Label">
+                  <option>First Option</option>
+                  <option>Another Option</option>
+                  <option>And Another</option>
+                  <option>Fourth Option That Is a Lot Longer And Will Be Too Long At Small Resolutions</option>
+                  <option data-divider="true"></option>
+                  <option data-subtext="supplemental data">Fifth Option</option>
+                  <option disabled>Disabled Option</option>
+                  <option data-subtext="end">Final Option</option>
+                </optgroup>
+              </select>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+            <li class="dropdown active">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown with Submenu
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown with Dropup Submenu
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu dropup">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown with Pull-left Submenu
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+                <li class="dropdown-submenu pull-left">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">No Dropdown</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-8">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-8">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu11">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary">
+            <li class="context context-bootstrap-select">
+              <select class="selectpicker" data-live-search="true">
+                <optgroup label="Context Label">
+                  <option>First Option</option>
+                  <option>Another Option</option>
+                  <option>And Another</option>
+                  <option>Fourth Option That Is a Lot Longer And Will Be Too Long At Small Resolutions</option>
+                  <option data-divider="true"></option>
+                  <option data-subtext="supplemental data">Fifth Option</option>
+                  <option disabled>Disabled Option</option>
+                  <option data-subtext="end">Final Option</option>
+                </optgroup>
+              </select>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+            <li class="dropdown active">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown with Submenu
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+                <li class="dropdown-submenu active">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li class="active">
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown with Dropup Submenu
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu dropup">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                Dropdown with Pull-left Submenu
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">Separated link</a>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+                <li class="dropdown-submenu pull-left">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">No Dropdown</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <h2>
+        Persistent Secondary and Tertiary Menu
+      </h2>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-11">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-11">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu12">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary persistent-secondary">
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li>
+              <a href="#">Another Link</a>
+              <ul class="nav navbar-nav navbar-persistent">
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Link</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Another Link</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Something Else Here</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Remembering to Keep</a>
+                </li>
+                <li>
+                  <a href="#">It Between Five and Seven</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#" class="dropdown-toggle" data-toggle="dropdown">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="navbar-collapse-11">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-11">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu13">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary persistent-secondary">
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li class="active">
+              <a href="#">Another Link</a>
+              <ul class="nav navbar-nav navbar-persistent">
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Link</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Another Link</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Something Else Here</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Remembering to Keep</a>
+                </li>
+                <li>
+                  <a href="#">It Between Five and Seven</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#" class="dropdown-toggle" data-toggle="dropdown">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-11">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a class="navbar-brand" href="/">
+      <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+  </div>
+  <div class="collapse navbar-collapse navbar-collapse-11">
+    <ul class="nav navbar-nav navbar-utility">
+      <li class="dropdown">
+        <a href="#0" class="nav-item-iconic" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+          <span class="pficon pficon-user"></span>
+          Brian Johnson
+          <b class="caret"></b>
+        </a>
+        <ul class="dropdown-menu">
+          <li>
+            <a href="#0">Link</a>
+          </li>
+          <li>
+            <a href="#0">Another link</a>
+          </li>
+          <li>
+            <a href="#0">Something else here</a>
+          </li>
+          <li class="divider"></li>
+          <li class="dropdown-submenu">
+            <a tabindex="-1" href="#0">More options</a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-header">Nav header</li>
+              <li>
+                <a href="#0">Separated link</a>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+          <li class="divider"></li>
+          <li>
+            <a href="#0">One more separated link</a>
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <ul class="nav navbar-nav navbar-primary persistent-secondary">
+      <li>
+        <a href="#0">First Link</a>
+      </li>
+      <li class="active">
+        <a href="#0">Another Link</a>
+        <ul class="nav navbar-nav navbar-persistent">
+          <li class="dropdown-submenu">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">Link</a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li>
+                <a href="#0">Remembering to keep</a>
+              </li>
+              <li>
+                <a href="#0">It between five and seven</a>
+              </li>
+            </ul>
+          </li>
+          <li class="active">
+            <a href="#0">Another Link</a>
+          </li>
+          <li class="dropdown-submenu">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">Something Else Here</a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li>
+                <a href="#0">Remembering to keep</a>
+              </li>
+              <li>
+                <a href="#0">It between five and seven</a>
+              </li>
+            </ul>
+          </li>
+          <li>
+            <a href="#0">Remembering to Keep</a>
+          </li>
+          <li>
+            <a href="#0">It Between Five and Seven</a>
+          </li>
+          <li class="dropdown-submenu">
+            <a tabindex="-1" href="#0" class="dropdown-toggle" data-toggle="dropdown">More options</a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li>
+                <a href="#0">Remembering to keep</a>
+              </li>
+              <li>
+                <a href="#0">It between five and seven</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+      </li>
+      <li>
+        <a href="#0">And Another</a>
+      </li>
+      <li>
+        <a href="#0">As a General Rule</a>
+      </li>
+      <li>
+        <a href="#0">Five to Seven Links</a>
+      </li>
+      <li>
+        <a href="#0">Is Good</a>
+      </li>
+    </ul>
+  </div>
+</nav>
+
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-11">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-11">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu14">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary persistent-secondary">
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li class="active">
+              <a href="#">Another Link</a>
+              <ul class="nav navbar-nav navbar-persistent">
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Link</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Another Link</a>
+                </li>
+                <li class="dropdown-submenu active">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Something Else Here</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Remembering to Keep</a>
+                </li>
+                <li>
+                  <a href="#">It Between Five and Seven</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#" class="dropdown-toggle" data-toggle="dropdown">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-11">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-11">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu15">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary persistent-secondary">
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li class="active">
+              <a href="#">Another Link</a>
+              <ul class="nav navbar-nav navbar-persistent">
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Link</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Another Link</a>
+                </li>
+                <li class="dropdown-submenu active">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Something Else Here</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li class="active">
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Remembering to Keep</a>
+                </li>
+                <li>
+                  <a href="#">It Between Five and Seven</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#" class="dropdown-toggle" data-toggle="dropdown">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <h2>
+        Persistent Secondary and Tertiary Menu and Context Selector
+      </h2>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-16">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-16">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu16" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu16">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary persistent-secondary">
+            <li class="context context-bootstrap-select">
+              <select class="selectpicker" data-live-search="true">
+                <optgroup label="Context Label">
+                  <option>First Option</option>
+                  <option>Another Option</option>
+                  <option>And Another</option>
+                  <option>Fourth Option That Is a Lot Longer And Will Be Too Long At Small Resolutions</option>
+                  <option data-divider="true"></option>
+                  <option data-subtext="supplemental data">Fifth Option</option>
+                  <option disabled>Disabled Option</option>
+                  <option data-subtext="end">Final Option</option>
+                </optgroup>
+              </select>
+            </li>
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li>
+              <a href="#">Another Link</a>
+              <ul class="nav navbar-nav navbar-persistent">
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Link</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Another Link</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Something Else Here</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Remembering to Keep</a>
+                </li>
+                <li>
+                  <a href="#">It Between Five and Seven</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#" class="dropdown-toggle" data-toggle="dropdown">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-16">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-16">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu17" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu17">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary persistent-secondary">
+            <li class="context context-bootstrap-select">
+              <select class="selectpicker" data-live-search="true">
+                <optgroup label="Context Label">
+                  <option>First Option</option>
+                  <option>Another Option</option>
+                  <option>And Another</option>
+                  <option>Fourth Option That Is a Lot Longer And Will Be Too Long At Small Resolutions</option>
+                  <option data-divider="true"></option>
+                  <option data-subtext="supplemental data">Fifth Option</option>
+                  <option disabled>Disabled Option</option>
+                  <option data-subtext="end">Final Option</option>
+                </optgroup>
+              </select>
+            </li>
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li class="active">
+              <a href="#">Another Link</a>
+              <ul class="nav navbar-nav navbar-persistent">
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Link</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Another Link</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Something Else Here</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Remembering to Keep</a>
+                </li>
+                <li>
+                  <a href="#">It Between Five and Seven</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#" class="dropdown-toggle" data-toggle="dropdown">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-16">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-16">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu18" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu18">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary persistent-secondary">
+            <li class="context context-bootstrap-select">
+              <select class="selectpicker" data-live-search="true">
+                <optgroup label="Context Label">
+                  <option>First Option</option>
+                  <option>Another Option</option>
+                  <option>And Another</option>
+                  <option>Fourth Option That Is a Lot Longer And Will Be Too Long At Small Resolutions</option>
+                  <option data-divider="true"></option>
+                  <option data-subtext="supplemental data">Fifth Option</option>
+                  <option disabled>Disabled Option</option>
+                  <option data-subtext="end">Final Option</option>
+                </optgroup>
+              </select>
+            </li>
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li class="active">
+              <a href="#">Another Link</a>
+              <ul class="nav navbar-nav navbar-persistent">
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Link</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="active">
+                  <a href="#">Another Link</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Something Else Here</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Remembering to Keep</a>
+                </li>
+                <li>
+                  <a href="#">It Between Five and Seven</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#" class="dropdown-toggle" data-toggle="dropdown">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-16">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-16">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu19" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu19">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary persistent-secondary">
+            <li class="context context-bootstrap-select">
+              <select class="selectpicker" data-live-search="true">
+                <optgroup label="Context Label">
+                  <option>First Option</option>
+                  <option>Another Option</option>
+                  <option>And Another</option>
+                  <option>Fourth Option That Is a Lot Longer And Will Be Too Long At Small Resolutions</option>
+                  <option data-divider="true"></option>
+                  <option data-subtext="supplemental data">Fifth Option</option>
+                  <option disabled>Disabled Option</option>
+                  <option data-subtext="end">Final Option</option>
+                </optgroup>
+              </select>
+            </li>
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li class="active">
+              <a href="#">Another Link</a>
+              <ul class="nav navbar-nav navbar-persistent">
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Link</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Another Link</a>
+                </li>
+                <li class="dropdown-submenu active">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Something Else Here</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Remembering to Keep</a>
+                </li>
+                <li>
+                  <a href="#">It Between Five and Seven</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#" class="dropdown-toggle" data-toggle="dropdown">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-16">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-16">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu20" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu20">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary persistent-secondary">
+            <li class="context context-bootstrap-select">
+              <select class="selectpicker" data-live-search="true">
+                <optgroup label="Context Label">
+                  <option>First Option</option>
+                  <option>Another Option</option>
+                  <option>And Another</option>
+                  <option>Fourth Option That Is a Lot Longer And Will Be Too Long At Small Resolutions</option>
+                  <option data-divider="true"></option>
+                  <option data-subtext="supplemental data">Fifth Option</option>
+                  <option disabled>Disabled Option</option>
+                  <option data-subtext="end">Final Option</option>
+                </optgroup>
+              </select>
+            </li>
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li class="active">
+              <a href="#">Another Link</a>
+              <ul class="nav navbar-nav navbar-persistent">
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Link</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Another Link</a>
+                </li>
+                <li class="dropdown-submenu active">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Something Else Here</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li class="active">
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Remembering to Keep</a>
+                </li>
+                <li>
+                  <a href="#">It Between Five and Seven</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#" class="dropdown-toggle" data-toggle="dropdown">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <h2>
+        Persistent Secondary and Tertiary with Submenu Menu and Context Selector
+      </h2>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-21">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-21">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu21" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu21">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary persistent-secondary">
+            <li class="context context-bootstrap-select">
+              <select class="selectpicker" data-live-search="true">
+                <optgroup label="Context Label">
+                  <option>First Option</option>
+                  <option>Another Option</option>
+                  <option>And Another</option>
+                  <option>Fourth Option That Is a Lot Longer And Will Be Too Long At Small Resolutions</option>
+                  <option data-divider="true"></option>
+                  <option data-subtext="supplemental data">Fifth Option</option>
+                  <option disabled>Disabled Option</option>
+                  <option data-subtext="end">Final Option</option>
+                </optgroup>
+              </select>
+            </li>
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li>
+              <a href="#">Another Link</a>
+              <ul class="nav navbar-nav navbar-persistent">
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Link</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Another Link</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Something Else Here</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Remembering to Keep</a>
+                </li>
+                <li>
+                  <a href="#">It Between Five and Seven</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#" class="dropdown-toggle" data-toggle="dropdown">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-21">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-21">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu22" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu22">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary persistent-secondary">
+            <li class="context context-bootstrap-select">
+              <select class="selectpicker" data-live-search="true">
+                <optgroup label="Context Label">
+                  <option>First Option</option>
+                  <option>Another Option</option>
+                  <option>And Another</option>
+                  <option>Fourth Option That Is a Lot Longer And Will Be Too Long At Small Resolutions</option>
+                  <option data-divider="true"></option>
+                  <option data-subtext="supplemental data">Fifth Option</option>
+                  <option disabled>Disabled Option</option>
+                  <option data-subtext="end">Final Option</option>
+                </optgroup>
+              </select>
+            </li>
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li class="active">
+              <a href="#">Another Link</a>
+              <ul class="nav navbar-nav navbar-persistent">
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Link</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                    <li class="dropdown-submenu">
+                      <a tabindex="-1" href="#">More options</a>
+                      <ul class="dropdown-menu">
+                        <li>
+                          <a href="#">Link</a>
+                        </li>
+                        <li>
+                          <a href="#">Another link</a>
+                        </li>
+                        <li>
+                          <a href="#">Something else here</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">Separated link</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">One more separated link</a>
+                        </li>
+                      </ul>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Another Link</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Something Else Here</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                    <li class="dropdown-submenu dropup">
+                      <a tabindex="-1" href="#">More options</a>
+                      <ul class="dropdown-menu">
+                        <li>
+                          <a href="#">Link</a>
+                        </li>
+                        <li>
+                          <a href="#">Another link</a>
+                        </li>
+                        <li>
+                          <a href="#">Something else here</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">Separated link</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">One more separated link</a>
+                        </li>
+                      </ul>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Remembering to Keep</a>
+                </li>
+                <li>
+                  <a href="#">It Between Five and Seven</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#" class="dropdown-toggle" data-toggle="dropdown">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                    <li class="dropdown-submenu pull-left">
+                      <a tabindex="-1" href="#">More options</a>
+                      <ul class="dropdown-menu">
+                        <li>
+                          <a href="#">Link</a>
+                        </li>
+                        <li>
+                          <a href="#">Another link</a>
+                        </li>
+                        <li>
+                          <a href="#">Something else here</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">Separated link</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">One more separated link</a>
+                        </li>
+                      </ul>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-21">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-21">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu23" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu23">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary persistent-secondary">
+            <li class="context context-bootstrap-select">
+              <select class="selectpicker" data-live-search="true">
+                <optgroup label="Context Label">
+                  <option>First Option</option>
+                  <option>Another Option</option>
+                  <option>And Another</option>
+                  <option>Fourth Option That Is a Lot Longer And Will Be Too Long At Small Resolutions</option>
+                  <option data-divider="true"></option>
+                  <option data-subtext="supplemental data">Fifth Option</option>
+                  <option disabled>Disabled Option</option>
+                  <option data-subtext="end">Final Option</option>
+                </optgroup>
+              </select>
+            </li>
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li class="active">
+              <a href="#">Another Link</a>
+              <ul class="nav navbar-nav navbar-persistent">
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Link</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                    <li class="dropdown-submenu">
+                      <a tabindex="-1" href="#">More options</a>
+                      <ul class="dropdown-menu">
+                        <li>
+                          <a href="#">Link</a>
+                        </li>
+                        <li>
+                          <a href="#">Another link</a>
+                        </li>
+                        <li>
+                          <a href="#">Something else here</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">Separated link</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">One more separated link</a>
+                        </li>
+                      </ul>
+                    </li>
+                  </ul>
+                </li>
+                <li class="active">
+                  <a href="#">Another Link</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Something Else Here</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                    <li class="dropdown-submenu dropup">
+                      <a tabindex="-1" href="#">More options</a>
+                      <ul class="dropdown-menu">
+                        <li>
+                          <a href="#">Link</a>
+                        </li>
+                        <li>
+                          <a href="#">Another link</a>
+                        </li>
+                        <li>
+                          <a href="#">Something else here</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">Separated link</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">One more separated link</a>
+                        </li>
+                      </ul>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Remembering to Keep</a>
+                </li>
+                <li>
+                  <a href="#">It Between Five and Seven</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#" class="dropdown-toggle" data-toggle="dropdown">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                    <li class="dropdown-submenu pull-left">
+                      <a tabindex="-1" href="#">More options</a>
+                      <ul class="dropdown-menu">
+                        <li>
+                          <a href="#">Link</a>
+                        </li>
+                        <li>
+                          <a href="#">Another link</a>
+                        </li>
+                        <li>
+                          <a href="#">Something else here</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">Separated link</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">One more separated link</a>
+                        </li>
+                      </ul>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-21">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-21">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu24" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMen24">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary persistent-secondary">
+            <li class="context context-bootstrap-select">
+              <select class="selectpicker" data-live-search="true">
+                <optgroup label="Context Label">
+                  <option>First Option</option>
+                  <option>Another Option</option>
+                  <option>And Another</option>
+                  <option>Fourth Option That Is a Lot Longer And Will Be Too Long At Small Resolutions</option>
+                  <option data-divider="true"></option>
+                  <option data-subtext="supplemental data">Fifth Option</option>
+                  <option disabled>Disabled Option</option>
+                  <option data-subtext="end">Final Option</option>
+                </optgroup>
+              </select>
+            </li>
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li class="active">
+              <a href="#">Another Link</a>
+              <ul class="nav navbar-nav navbar-persistent">
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Link</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                    <li class="dropdown-submenu">
+                      <a tabindex="-1" href="#">More options</a>
+                      <ul class="dropdown-menu">
+                        <li>
+                          <a href="#">Link</a>
+                        </li>
+                        <li>
+                          <a href="#">Another link</a>
+                        </li>
+                        <li>
+                          <a href="#">Something else here</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">Separated link</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">One more separated link</a>
+                        </li>
+                      </ul>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Another Link</a>
+                </li>
+                <li class="dropdown-submenu active">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Something Else Here</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                    <li class="dropdown-submenu dropup">
+                      <a tabindex="-1" href="#">More options</a>
+                      <ul class="dropdown-menu">
+                        <li>
+                          <a href="#">Link</a>
+                        </li>
+                        <li>
+                          <a href="#">Another link</a>
+                        </li>
+                        <li>
+                          <a href="#">Something else here</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">Separated link</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">One more separated link</a>
+                        </li>
+                      </ul>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Remembering to Keep</a>
+                </li>
+                <li>
+                  <a href="#">It Between Five and Seven</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#" class="dropdown-toggle" data-toggle="dropdown">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                    <li class="dropdown-submenu pull-left">
+                      <a tabindex="-1" href="#">More options</a>
+                      <ul class="dropdown-menu">
+                        <li>
+                          <a href="#">Link</a>
+                        </li>
+                        <li>
+                          <a href="#">Another link</a>
+                        </li>
+                        <li>
+                          <a href="#">Something else here</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">Separated link</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">One more separated link</a>
+                        </li>
+                      </ul>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+      <hr>
+      <nav class="navbar navbar-default navbar-pf" role="navigation">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-21">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/">
+            <img src="../../dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+          </a>
+        </div>
+        <div class="collapse navbar-collapse navbar-collapse-21">
+          <ul class="nav navbar-nav navbar-utility">
+            <li class="dropdown">
+              <a class="nav-item-iconic" id="dropdownMenu25" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+                <span title="Help" class="fa pficon-help"></span>
+                <span class="caret"></span>
+              </a>
+              <ul class="dropdown-menu" aria-labelledby="dropdownMenu25">
+                <li><a href="#">Help</a></li>
+                <li><a href="#">About</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a href="#" class="dropdown-toggle" data-toggle="dropdown">
+                <span class="pficon pficon-user"></span>
+                Brian Johnson
+                <b class="caret"></b>
+              </a>
+              <ul class="dropdown-menu">
+                <li>
+                  <a href="#">Link</a>
+                </li>
+                <li>
+                  <a href="#">Another link</a>
+                </li>
+                <li>
+                  <a href="#">Something else here</a>
+                </li>
+                <li class="divider"></li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li class="dropdown-header">Nav header</li>
+                    <li>
+                      <a href="#">Separated link</a>
+                    </li>
+                    <li class="divider"></li>
+                    <li>
+                      <a href="#">One more separated link</a>
+                    </li>
+                  </ul>
+                </li>
+                <li class="divider"></li>
+                <li>
+                  <a href="#">One more separated link</a>
+                </li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="nav navbar-nav navbar-primary persistent-secondary">
+            <li class="context context-bootstrap-select">
+              <select class="selectpicker" data-live-search="true">
+                <optgroup label="Context Label">
+                  <option>First Option</option>
+                  <option>Another Option</option>
+                  <option>And Another</option>
+                  <option>Fourth Option That Is a Lot Longer And Will Be Too Long At Small Resolutions</option>
+                  <option data-divider="true"></option>
+                  <option data-subtext="supplemental data">Fifth Option</option>
+                  <option disabled>Disabled Option</option>
+                  <option data-subtext="end">Final Option</option>
+                </optgroup>
+              </select>
+            </li>
+            <li>
+              <a href="#">First Link</a>
+            </li>
+            <li class="active">
+              <a href="#">Another Link</a>
+              <ul class="nav navbar-nav navbar-persistent">
+                <li class="dropdown-submenu">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Link</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                    <li class="dropdown-submenu">
+                      <a tabindex="-1" href="#">More options</a>
+                      <ul class="dropdown-menu">
+                        <li>
+                          <a href="#">Link</a>
+                        </li>
+                        <li>
+                          <a href="#">Another link</a>
+                        </li>
+                        <li>
+                          <a href="#">Something else here</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">Separated link</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">One more separated link</a>
+                        </li>
+                      </ul>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Another Link</a>
+                </li>
+                <li class="dropdown-submenu active">
+                  <a href="#" class="dropdown-toggle" data-toggle="dropdown">Something Else Here</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                    <li class="dropdown-submenu dropup active">
+                      <a tabindex="-1" href="#">More options</a>
+                      <ul class="dropdown-menu">
+                        <li class="active">
+                          <a href="#">Link</a>
+                        </li>
+                        <li>
+                          <a href="#">Another link</a>
+                        </li>
+                        <li>
+                          <a href="#">Something else here</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">Separated link</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">One more separated link</a>
+                        </li>
+                      </ul>
+                    </li>
+                  </ul>
+                </li>
+                <li>
+                  <a href="#">Remembering to Keep</a>
+                </li>
+                <li>
+                  <a href="#">It Between Five and Seven</a>
+                </li>
+                <li class="dropdown-submenu">
+                  <a tabindex="-1" href="#" class="dropdown-toggle" data-toggle="dropdown">More options</a>
+                  <ul class="dropdown-menu">
+                    <li>
+                      <a href="#">Link</a>
+                    </li>
+                    <li>
+                      <a href="#">Another link</a>
+                    </li>
+                    <li>
+                      <a href="#">Something else here</a>
+                    </li>
+                    <li>
+                      <a href="#">Remembering to keep</a>
+                    </li>
+                    <li>
+                      <a href="#">It between five and seven</a>
+                    </li>
+                    <li class="dropdown-submenu pull-left">
+                      <a tabindex="-1" href="#">More options</a>
+                      <ul class="dropdown-menu">
+                        <li>
+                          <a href="#">Link</a>
+                        </li>
+                        <li>
+                          <a href="#">Another link</a>
+                        </li>
+                        <li>
+                          <a href="#">Something else here</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">Separated link</a>
+                        </li>
+                        <li class="divider"></li>
+                        <li>
+                          <a href="#">One more separated link</a>
+                        </li>
+                      </ul>
+                    </li>
+                  </ul>
+                </li>
+              </ul>
+            </li>
+            <li>
+              <a href="#">And Another</a>
+            </li>
+            <li>
+              <a href="#">As a General Rule</a>
+            </li>
+            <li>
+              <a href="#">Five to Seven Links</a>
+            </li>
+            <li>
+              <a href="#">Is Good</a>
+            </li>
+          </ul>
+        </div>
+      </nav>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/notification-drawer-horizontal-nav.html b/themes/src/main/node_modules/rcue/tests/notification-drawer-horizontal-nav.html
new file mode 100644
index 0000000..4dccd66
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/notification-drawer-horizontal-nav.html
@@ -0,0 +1,1661 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 layout-pf layout-pf-fixed"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="layout-pf layout-pf-fixed">
+  <!--<![endif]-->
+    <head>
+    <title>Notification Drawer for Horizontal Navigation - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body class="cards-pf">
+    
+  <nav class="navbar navbar-default navbar-pf" role="navigation">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a class="navbar-brand" href="/">
+      <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+  </div>
+  <div class="collapse navbar-collapse navbar-collapse-1">
+    <ul class="nav navbar-nav navbar-utility">
+      <li class="drawer-pf-trigger dropdown">
+        <a href="#0" class="nav-item-iconic drawer-pf-trigger-icon">
+          <span class="fa fa-bell" title="Notifications"></span>
+          <span class="badge badge-pf-bordered"> </span><!-- in order to show the empty badge this requires a space, otherwise add a value -->
+        </a>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+          <span class="pficon pficon-user"></span>
+          Brian Johnson <b class="caret"></b>
+        </a>
+        <ul class="dropdown-menu">
+          <li>
+            <a href="#0">Link</a>
+          </li>
+          <li>
+            <a href="#0">Another link</a>
+          </li>
+          <li>
+            <a href="#0">Something else here</a>
+          </li>
+          <li class="divider"></li>
+          <li class="dropdown-submenu">
+            <a tabindex="-1" href="#0">More options</a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-header">Nav header</li>
+              <li>
+                <a href="#0">Separated link</a>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+          <li class="divider"></li>
+          <li>
+            <a href="#0">One more separated link</a>
+          </li>
+        </ul>
+      </li>
+    </ul>
+    <div class="drawer-pf hide drawer-pf-notifications-non-clickable">
+  <div class="drawer-pf-title">
+    <a class="drawer-pf-toggle-expand fa fa-angle-double-left hidden-xs"></a>
+    <a  class="drawer-pf-close pficon pficon-close"></a>
+    <h3 class="text-center">Notifications Drawer</h3>
+  </div>
+  <div class="panel-group" id="notification-drawer-accordion">
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseOne">
+            Notification Tab 1
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseOne" class="panel-collapse collapse in">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight11">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight21" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight21">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight31" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight31">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight41" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight41">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseTwo">
+            Notification Tab 2
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseTwo" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight12">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight22" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight22">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight32" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight32">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight42" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight42">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight13">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight23" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight23">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight33" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight33">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight43" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight43">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight14">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight24" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight24">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight34" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight34">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight44" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight44">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-loading text-center">
+            <span class="spinner spinner-xs spinner-inline"></span> Loading More
+          </div>
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseThree">
+            Notification Tab 3
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseThree" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight15">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight25" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight25">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight35" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight35">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight45" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight45">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight16" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight16">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight26" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight26">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight36" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight36">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight46" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight46">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight17" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight17">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight27" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight27">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight37" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight37">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight47" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight47">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  $(document).ready(function() {
+    // Initialize to unread notifications
+    // TODO: add badge for unread notifications
+
+    // Show/Hide Notifications Drawer
+    $('.drawer-pf-trigger').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $(this).toggleClass('open');
+      if ($drawer.hasClass('hide')) {
+        $drawer.removeClass('hide');
+        setTimeout(function () {
+          if (window.dispatchEvent) {
+            window.dispatchEvent(new Event('resize'));
+          }
+          // Special case for IE
+          if ($(document).fireEvent) {
+            $(document).fireEvent('onresize');
+          }
+        }, 100);
+      } else {
+        $drawer.addClass('hide');
+      }
+      // Special case, close navigation menu in mobile mode
+     if ($('.container-pf-nav-pf-vertical').hasClass('hidden-nav')) {
+       $('.nav-pf-vertical').removeClass('show-mobile-nav');
+     }
+    });
+    $('.drawer-pf-close').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $('.drawer-pf-trigger').removeClass('open');
+      $drawer.addClass('hide');
+    });
+    $('.drawer-pf-toggle-expand').click(function() {
+      var $drawer = $('.drawer-pf');
+      var $drawerNotifications = $drawer.find('.drawer-pf-notification');
+
+      if ($drawer.hasClass('drawer-pf-expanded')) {
+        $drawer.removeClass('drawer-pf-expanded');
+        $drawerNotifications.removeClass('expanded-notification');
+      } else {
+        $drawer.addClass('drawer-pf-expanded');
+        $drawerNotifications.addClass('expanded-notification');
+      }
+    });
+
+    // Mark All Read / Clear All
+    $('.panel-collapse').each(function (index, panel) {
+      var $panel = $(panel);
+      var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+      $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+
+      if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+        // TODO: remove badge for unread indicator
+      }
+
+      $panel.on('click', '.drawer-pf-action [data-toggle="mark-all-read"] .btn', function() {
+        $panel.find('.unread').removeClass('unread');
+        $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          $('.drawer-pf-trigger').removeClass('unread');
+        }
+      });
+      $panel.on('click', '.drawer-pf-action [data-toggle="clear-all"] .btn', function() {
+        $panel.find('.panel-body .drawer-pf-notification').remove();
+        $panel.find('.drawer-pf-action').remove();
+        $panel.find('.blank-slate-pf').removeClass('hidden');
+        $panel.find('.drawer-pf-loading').addClass('hidden');
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          // TODO: remove badge for unread indicator
+        }
+      });
+
+      $panel.find('.drawer-pf-notification').each(function (index, notification) {
+        var $notification = $(notification);
+        $notification.on('click', '.drawer-pf-notification-content', function() {
+          $notification.removeClass('unread');
+          var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+          $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+          if (unreadCount === 0) {
+            $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+            if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+              // TODO: remove badge for unread indicator
+            }
+          }
+        });
+      });
+    });
+
+    $('#notification-drawer-accordion').initCollapseHeights('.panel-body');
+  });
+</script>
+
+    <ul class="nav navbar-nav navbar-primary">
+      <li>
+        <a href="#0">First Link</a>
+      </li>
+      <li class="active">
+        <a href="#0">Another Link</a>
+      </li>
+      <li>
+        <a href="#0">And Another</a>
+      </li>
+      <li>
+        <a href="#0">As a General Rule</a>
+      </li>
+      <li>
+        <a href="#0">Five to Seven Links</a>
+      </li>
+      <li>
+        <a href="#0">Is Good</a>
+      </li>
+    </ul>
+  </div>
+</nav>
+
+
+<div class="container-fluid container-cards-pf" id="main">
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">20</span> Amet</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-warning-triangle-o"></span>1</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">9</span> Adipiscing</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status">
+            <h2 class="card-pf-title">
+              <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">12</span> Lorem</a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <span class="fa fa-rebel"></span>
+    <span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="fa fa-paper-plane"></span>
+      <span class="card-pf-aggregate-status-count">20</span> Amet
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="pficon pficon-cluster"></span>
+      <span class="card-pf-aggregate-status-count">9</span> Adipiscing
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+            <h2 class="card-pf-title">
+              <a href="#">
+                <span class="pficon pficon-image"></span>
+                <span class="card-pf-aggregate-status-count">12</span> Lorem
+              </a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Top Utilized Clusters
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-description">
+      RHOS6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 95%;"  data-toggle="tooltip" title="95% Used">
+        <span><strong>190.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;" data-toggle="tooltip" title="5% Available">
+        <span class="sr-only">5% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      CFMEQE-Cluster
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;"  data-toggle="tooltip" title="50% Used">
+        <span><strong>100.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Available">
+        <span class="sr-only">50% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHOS-Undercloud
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;"  data-toggle="tooltip" title="70% Used">
+        <span><strong>140.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width: 30%;" data-toggle="tooltip" title="30% Available">
+        <span class="sr-only">30% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHEL6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="76.5" aria-valuemin="0" aria-valuemax="100" style="width: 76.5%;"  data-toggle="tooltip" title="76.5% Used">
+        <span><strong>153.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="23.5" aria-valuemin="0" aria-valuemax="100" style="width: 23.5%;" data-toggle="tooltip" title="23.5% Available">
+        <span class="sr-only">23.5% Available</span>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Quotas
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        CPU
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
+          <span><strong>115 of 460</strong> MHz</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
+          <span class="sr-only">75% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Memory
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Used">
+          <span><strong>8 of 16</strong> GB</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Available">
+          <span class="sr-only">50% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Pods
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="62.5" aria-valuemin="0" aria-valuemax="100" style="width: 62.5%;" data-toggle="tooltip" title="62.5% Used">
+          <span><strong>5 of 8</strong> Total</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="37.5" aria-valuemin="0" aria-valuemax="100" style="width: 37.5%;" data-toggle="tooltip" title="37.5% Available">
+          <span class="sr-only">37.5% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Services
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;" data-toggle="tooltip" title="100% Used">
+          <span><strong>2 of 2</strong> Total</span>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-md-12">
+<div class="card-pf card-pf-utilization">
+  <div class="card-pf-heading">
+    <p class="card-pf-heading-details">Last 30 days</p>
+    <h2 class="card-pf-title">
+      Utilization
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="row">
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">CPU</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">50</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1000 MHz</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-1"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-1"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-1';
+          donutConfig.color =  {
+            pattern: ["#cc0000","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 95],
+              ["Available", 5]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' MHz ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart1 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-1").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("950").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("MHz Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-1';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 10, 50, 28, 20, 31, 27, 60, 36, 52, 55, 62, 68, 69, 88, 74, 88, 95],
+            ],
+            type: 'area'
+          };
+          var chart2 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Memory</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">256</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 432 GB</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-2"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-2"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-2';
+          donutConfig.color =  {
+            pattern: ["#3f9c35","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 41],
+              ["Available", 59]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' GB ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart3 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-2").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("176").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("GB Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-2';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 35, 36, 20, 30, 31, 22, 44, 36, 40, 41, 55, 52, 48, 48, 50, 40, 41],
+            ],
+            type: 'area'
+          };
+          var chart4 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Network</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">200</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-3"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-3"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-3';
+          donutConfig.color =  {
+            pattern: ["#EC7A08","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 85],
+              ["Available", 15]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart5 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-3").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-3';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+            ],
+            type: 'area'
+          };
+          var chart6 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-xs-12 col-sm-4 col-md-4">
+<div class="card-pf card-pf-utilization">
+  <h2 class="card-pf-title">
+    Network
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-utilization-details">
+      <span class="card-pf-utilization-card-details-count">200</span>
+        <span class="card-pf-utilization-card-details-description">
+          <span class="card-pf-utilization-card-details-line-1">Available</span>
+          <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+        </span>
+    </p>
+    <div id="chart-pf-donut-4"></div>
+    <div class="chart-pf-sparkline" id="chart-pf-sparkline-4"></div>
+    <script>
+      var c3ChartDefaults = $().c3ChartDefaults();
+
+      var donutConfig = c3ChartDefaults.getDefaultDonutConfig('A');
+      donutConfig.bindto = '#chart-pf-donut-4';
+      donutConfig.color =  {
+        pattern: ["#EC7A08","#D1D1D1"]
+      };
+      donutConfig.data = {
+        type: "donut",
+        columns: [
+          ["Used", 85],
+          ["Available", 15]
+        ],
+        groups: [
+          ["used", "available"]
+        ],
+        order: null
+      };
+      donutConfig.tooltip = {
+        contents: function (d) {
+          return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                  Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                  '</span>';
+        }
+      };
+
+      var chart1 = c3.generate(donutConfig);
+      var donutChartTitle = d3.select("#chart-pf-donut-4").select('text.c3-chart-arcs-title');
+      donutChartTitle.text("");
+      donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+      donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+      var sparklineConfig = c3ChartDefaults.getDefaultSparklineConfig();
+      sparklineConfig.bindto = '#chart-pf-sparkline-4';
+      sparklineConfig.data = {
+        columns: [
+          ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+        ],
+        type: 'area'
+      };
+
+      var chart2 = c3.generate(sparklineConfig);
+    </script>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-5">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <h2 class="card-pf-title">
+      Card Title
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-7">
+<div class="card-pf">
+  <h2 class="card-pf-title">
+    Card Title
+  </h2>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+  <div class="card-pf-footer">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <p>
+      <a href="#" class="card-pf-link-with-icon">
+        <span class="pficon pficon-add-circle-o"></span>Add New Cluster
+      </a>
+    </p>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-5 col-md-5">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <div class="dropdown card-pf-time-frame-filter">
+                <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+                  Last 30 Days <span class="caret"></span>
+                </button>
+                <ul class="dropdown-menu dropdown-menu-right" role="menu">
+                  <li class="selected"><a href="#">Last 30 Days</a></li>
+                  <li><a href="#">Last 60 Days</a></li>
+                  <li><a href="#">Last 90 Days</a></li>
+                </ul>
+              </div>
+              <p>
+                <a href="#" class="card-pf-link-with-icon">
+                  <span class="pficon pficon-flag"></span>View CPU Events
+                </a>
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-12 col-sm-7 col-md-7">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-8 col-md-8">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-4">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+
+</div>
+<script>
+  $(document).ready(function() {
+    // matchHeight the contents of each .card-pf and then the .card-pf itself
+    $(".row-cards-pf > [class*='col'] > .card-pf .card-pf-title").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-footer").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf").matchHeight();
+
+    // initialize tooltips
+    $('[data-toggle="tooltip"]').tooltip();
+  });
+</script>
+
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/notification-drawer-vertical-nav.html b/themes/src/main/node_modules/rcue/tests/notification-drawer-vertical-nav.html
new file mode 100644
index 0000000..fc308e9
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/notification-drawer-vertical-nav.html
@@ -0,0 +1,1822 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 layout-pf layout-pf-fixed"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="layout-pf layout-pf-fixed">
+  <!--<![endif]-->
+    <head>
+    <title>Notification Drawer for Vertical Navigation - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body class="cards-pf">
+    
+
+  <nav class="navbar navbar-pf-vertical">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a href="/" class="navbar-brand">
+      <img class="navbar-brand-icon" src="/dist/img/logo.svg" alt=""/><img class="navbar-brand-name" src="/dist/img/brand-alt.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+    <ul class="nav pull-right visible-xs-block navbar-iconic">
+      <li class="drawer-pf-trigger">
+        <a href="#0" class="nav-item-iconic">
+          <span class="fa fa-bell" title="Notifications"></span>
+          <span class="badge badge-pf-bordered"> </span><!-- in order to show the empty badge this requires a space, otherwise add a value -->
+        </a>
+      </li>
+    </ul>
+    
+    <ul class="nav contextselector-pf">
+  <li class="dropdown">
+    <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu3" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+      <span class="contextselector-pf-title">Really long server name server name</span>
+      <span class="caret"></span>
+    </a>
+    <div class="dropdown-menu" aria-labelledby="dropdownMenu3">
+    <div class="form-group">
+    <label class="sr-only" for="searchinput">search</label>
+    <input type="text" class="form-control" id="searchinput" placeholder="Search">
+  </div>
+    <ul class="contextselector-pf-list list-unstyled">
+      <li><a href="#0">A Different Context</a></li>
+      <li><a href="#0">A Second Context</a></li>
+      <li><a href="#0">Current</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+      <li><a href="#0">Dolor Sit Amet</a></li>
+    </ul>
+  </div>
+  </li>
+</ul>
+
+    
+  </div>
+  <nav class="collapse navbar-collapse">
+    <ul class="nav navbar-nav">
+      <li><a href="#0" target="_blank" class="nav-item-iconic nav-item-iconic-new-window"><span title="Launch" class="fa fa-external-link"></span></a></li>
+    </ul>
+    <ul class="nav navbar-nav navbar-right navbar-iconic">
+      <li class="drawer-pf-trigger">
+        <a href="#0" class="nav-item-iconic">
+          <span class="fa fa-bell" title="Notifications"></span>
+          <span class="badge badge-pf-bordered"> </span><!-- in order to show the empty badge this requires a space, otherwise add a value -->
+        </a>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Username" class="fa pficon-user"></span>
+          Brian Johnson <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
+          <li><a href="#0">Preferences</a></li>
+          <li><a href="#0">Logout</a></li>
+        </ul>
+      </li>
+    </ul>
+  </nav>
+  <div class="drawer-pf hide drawer-pf-notifications-non-clickable">
+  <div class="drawer-pf-title">
+    <a class="drawer-pf-toggle-expand fa fa-angle-double-left hidden-xs"></a>
+    <a  class="drawer-pf-close pficon pficon-close"></a>
+    <h3 class="text-center">Notifications Drawer</h3>
+  </div>
+  <div class="panel-group" id="notification-drawer-accordion">
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseOne">
+            Notification Tab 1
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseOne" class="panel-collapse collapse in">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight11">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight21" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight21">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight31" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight31">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight41" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight41">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseTwo">
+            Notification Tab 2
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseTwo" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight12">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight22" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight22">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight32" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight32">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight42" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight42">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight13">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight23" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight23">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight33" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight33">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight43" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight43">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight14">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight24" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight24">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight34" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight34">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight44" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight44">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-loading text-center">
+            <span class="spinner spinner-xs spinner-inline"></span> Loading More
+          </div>
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseThree">
+            Notification Tab 3
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseThree" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight15">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight25" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight25">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight35" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight35">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight45" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight45">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight16" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight16">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight26" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight26">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight36" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight36">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight46" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight46">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight17" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight17">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight27" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight27">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight37" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight37">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight47" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight47">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  $(document).ready(function() {
+    // Initialize to unread notifications
+    // TODO: add badge for unread notifications
+
+    // Show/Hide Notifications Drawer
+    $('.drawer-pf-trigger').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $(this).toggleClass('open');
+      if ($drawer.hasClass('hide')) {
+        $drawer.removeClass('hide');
+        setTimeout(function () {
+          if (window.dispatchEvent) {
+            window.dispatchEvent(new Event('resize'));
+          }
+          // Special case for IE
+          if ($(document).fireEvent) {
+            $(document).fireEvent('onresize');
+          }
+        }, 100);
+      } else {
+        $drawer.addClass('hide');
+      }
+      // Special case, close navigation menu in mobile mode
+     if ($('.container-pf-nav-pf-vertical').hasClass('hidden-nav')) {
+       $('.nav-pf-vertical').removeClass('show-mobile-nav');
+     }
+    });
+    $('.drawer-pf-close').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $('.drawer-pf-trigger').removeClass('open');
+      $drawer.addClass('hide');
+    });
+    $('.drawer-pf-toggle-expand').click(function() {
+      var $drawer = $('.drawer-pf');
+      var $drawerNotifications = $drawer.find('.drawer-pf-notification');
+
+      if ($drawer.hasClass('drawer-pf-expanded')) {
+        $drawer.removeClass('drawer-pf-expanded');
+        $drawerNotifications.removeClass('expanded-notification');
+      } else {
+        $drawer.addClass('drawer-pf-expanded');
+        $drawerNotifications.addClass('expanded-notification');
+      }
+    });
+
+    // Mark All Read / Clear All
+    $('.panel-collapse').each(function (index, panel) {
+      var $panel = $(panel);
+      var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+      $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+
+      if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+        // TODO: remove badge for unread indicator
+      }
+
+      $panel.on('click', '.drawer-pf-action [data-toggle="mark-all-read"] .btn', function() {
+        $panel.find('.unread').removeClass('unread');
+        $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          $('.drawer-pf-trigger').removeClass('unread');
+        }
+      });
+      $panel.on('click', '.drawer-pf-action [data-toggle="clear-all"] .btn', function() {
+        $panel.find('.panel-body .drawer-pf-notification').remove();
+        $panel.find('.drawer-pf-action').remove();
+        $panel.find('.blank-slate-pf').removeClass('hidden');
+        $panel.find('.drawer-pf-loading').addClass('hidden');
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          // TODO: remove badge for unread indicator
+        }
+      });
+
+      $panel.find('.drawer-pf-notification').each(function (index, notification) {
+        var $notification = $(notification);
+        $notification.on('click', '.drawer-pf-notification-content', function() {
+          $notification.removeClass('unread');
+          var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+          $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+          if (unreadCount === 0) {
+            $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+            if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+              // TODO: remove badge for unread indicator
+            }
+          }
+        });
+      });
+    });
+
+    $('#notification-drawer-accordion').initCollapseHeights('.panel-body');
+  });
+</script>
+
+</nav> <!--/.navbar-->
+
+
+<div class="nav-pf-vertical nav-pf-vertical-with-sub-menus
+     
+     
+     
+     ">
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-dashboard" data-toggle="tooltip" title="Dashboard"></span>
+        <span class="list-group-item-value">Dashboard</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-shield" data-toggle="tooltip" title="Dolor"></span>
+        <span class="list-group-item-value">Dolor</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item active secondary-nav-item-pf" data-target="#ipsum-secondary">
+      <a href="#0">
+        <span class="fa fa-space-shuttle" data-toggle="tooltip" title="Ipsum"></span>
+        <span class="list-group-item-value">Ipsum</span>
+      </a>
+      
+      <div id="-secondary" class="nav-pf-secondary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+    <span>Ipsum</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item active " data-target="#ipsum-intellegam-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Intellegam</span>
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#ipsum-copiosae-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Copiosae</span>
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#ipsum-patrioque-tertiary">
+      <a href="#0" >
+        <span class="list-group-item-value">Patrioque</span>
+      </a>
+      
+    </li>
+    
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item secondary-nav-item-pf" data-target="#amet-secondary">
+      <a href="#0">
+        <span class="fa fa-paper-plane" data-toggle="tooltip" title="Amet"></span>
+        <span class="list-group-item-value">Amet</span>
+      </a>
+      
+      <div id="amet-secondary" class="nav-pf-secondary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+    <span>Amet</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item " data-target="#amet-detracto-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Detracto Suscipiantur</span>
+        
+        
+        
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#amet-mediocrem-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Mediocrem</span>
+        
+        
+        
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#amet-corrumpit-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Corrumpit Cupidatat Proident Deserunt</span>
+        
+        
+        
+      </a>
+      
+    </li>
+    
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-graduation-cap" data-toggle="tooltip" title="Adipscing"></span>
+        <span class="list-group-item-value">Adipscing</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-gamepad" data-toggle="tooltip" title="Lorem"></span>
+        <span class="list-group-item-value">Lorem</span>
+      </a>
+    </li>
+    
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block">
+      <a href="#0">
+        <span class="pficon pficon-user" data-toggle="tooltip" title="" data-original-title="User"></span>
+        <span class="list-group-item-value">User</span>
+      </a>
+      <div id="user-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>User</span>
+        </div>
+
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Preferences</span>
+            </a>
+          </li>
+
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Logout</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block" data-target="#amet-secondary">
+      <a href="#0">
+        <span class="pficon pficon-help" data-toggle="tooltip" title="" data-original-title="Help"></span>
+        <span class="list-group-item-value">Help</span>
+      </a>
+      <div id="help-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>Help</span>
+        </div>
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Help</span>
+            </a>
+          </li>
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">About</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+
+  </ul>
+
+</div>
+<div class="container-fluid container-cards-pf container-pf-nav-pf-vertical
+     
+     
+     ">
+
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">20</span> Amet</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-warning-triangle-o"></span>1</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">9</span> Adipiscing</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status">
+            <h2 class="card-pf-title">
+              <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">12</span> Lorem</a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <span class="fa fa-rebel"></span>
+    <span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="fa fa-paper-plane"></span>
+      <span class="card-pf-aggregate-status-count">20</span> Amet
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="pficon pficon-cluster"></span>
+      <span class="card-pf-aggregate-status-count">9</span> Adipiscing
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+            <h2 class="card-pf-title">
+              <a href="#">
+                <span class="pficon pficon-image"></span>
+                <span class="card-pf-aggregate-status-count">12</span> Lorem
+              </a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Top Utilized Clusters
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-description">
+      RHOS6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 95%;"  data-toggle="tooltip" title="95% Used">
+        <span><strong>190.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;" data-toggle="tooltip" title="5% Available">
+        <span class="sr-only">5% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      CFMEQE-Cluster
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;"  data-toggle="tooltip" title="50% Used">
+        <span><strong>100.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Available">
+        <span class="sr-only">50% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHOS-Undercloud
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;"  data-toggle="tooltip" title="70% Used">
+        <span><strong>140.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width: 30%;" data-toggle="tooltip" title="30% Available">
+        <span class="sr-only">30% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHEL6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="76.5" aria-valuemin="0" aria-valuemax="100" style="width: 76.5%;"  data-toggle="tooltip" title="76.5% Used">
+        <span><strong>153.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="23.5" aria-valuemin="0" aria-valuemax="100" style="width: 23.5%;" data-toggle="tooltip" title="23.5% Available">
+        <span class="sr-only">23.5% Available</span>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Quotas
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        CPU
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
+          <span><strong>115 of 460</strong> MHz</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
+          <span class="sr-only">75% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Memory
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Used">
+          <span><strong>8 of 16</strong> GB</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Available">
+          <span class="sr-only">50% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Pods
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="62.5" aria-valuemin="0" aria-valuemax="100" style="width: 62.5%;" data-toggle="tooltip" title="62.5% Used">
+          <span><strong>5 of 8</strong> Total</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="37.5" aria-valuemin="0" aria-valuemax="100" style="width: 37.5%;" data-toggle="tooltip" title="37.5% Available">
+          <span class="sr-only">37.5% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Services
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;" data-toggle="tooltip" title="100% Used">
+          <span><strong>2 of 2</strong> Total</span>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-md-12">
+<div class="card-pf card-pf-utilization">
+  <div class="card-pf-heading">
+    <p class="card-pf-heading-details">Last 30 days</p>
+    <h2 class="card-pf-title">
+      Utilization
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="row">
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">CPU</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">50</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1000 MHz</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-1"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-1"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-1';
+          donutConfig.color =  {
+            pattern: ["#cc0000","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 95],
+              ["Available", 5]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' MHz ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart1 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-1").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("950").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("MHz Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-1';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 10, 50, 28, 20, 31, 27, 60, 36, 52, 55, 62, 68, 69, 88, 74, 88, 95],
+            ],
+            type: 'area'
+          };
+          var chart2 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Memory</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">256</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 432 GB</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-2"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-2"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-2';
+          donutConfig.color =  {
+            pattern: ["#3f9c35","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 41],
+              ["Available", 59]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' GB ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart3 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-2").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("176").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("GB Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-2';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 35, 36, 20, 30, 31, 22, 44, 36, 40, 41, 55, 52, 48, 48, 50, 40, 41],
+            ],
+            type: 'area'
+          };
+          var chart4 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Network</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">200</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-3"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-3"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-3';
+          donutConfig.color =  {
+            pattern: ["#EC7A08","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 85],
+              ["Available", 15]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart5 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-3").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-3';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+            ],
+            type: 'area'
+          };
+          var chart6 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-xs-12 col-sm-4 col-md-4">
+<div class="card-pf card-pf-utilization">
+  <h2 class="card-pf-title">
+    Network
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-utilization-details">
+      <span class="card-pf-utilization-card-details-count">200</span>
+        <span class="card-pf-utilization-card-details-description">
+          <span class="card-pf-utilization-card-details-line-1">Available</span>
+          <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+        </span>
+    </p>
+    <div id="chart-pf-donut-4"></div>
+    <div class="chart-pf-sparkline" id="chart-pf-sparkline-4"></div>
+    <script>
+      var c3ChartDefaults = $().c3ChartDefaults();
+
+      var donutConfig = c3ChartDefaults.getDefaultDonutConfig('A');
+      donutConfig.bindto = '#chart-pf-donut-4';
+      donutConfig.color =  {
+        pattern: ["#EC7A08","#D1D1D1"]
+      };
+      donutConfig.data = {
+        type: "donut",
+        columns: [
+          ["Used", 85],
+          ["Available", 15]
+        ],
+        groups: [
+          ["used", "available"]
+        ],
+        order: null
+      };
+      donutConfig.tooltip = {
+        contents: function (d) {
+          return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                  Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                  '</span>';
+        }
+      };
+
+      var chart1 = c3.generate(donutConfig);
+      var donutChartTitle = d3.select("#chart-pf-donut-4").select('text.c3-chart-arcs-title');
+      donutChartTitle.text("");
+      donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+      donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+      var sparklineConfig = c3ChartDefaults.getDefaultSparklineConfig();
+      sparklineConfig.bindto = '#chart-pf-sparkline-4';
+      sparklineConfig.data = {
+        columns: [
+          ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+        ],
+        type: 'area'
+      };
+
+      var chart2 = c3.generate(sparklineConfig);
+    </script>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-5">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <h2 class="card-pf-title">
+      Card Title
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-7">
+<div class="card-pf">
+  <h2 class="card-pf-title">
+    Card Title
+  </h2>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+  <div class="card-pf-footer">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <p>
+      <a href="#" class="card-pf-link-with-icon">
+        <span class="pficon pficon-add-circle-o"></span>Add New Cluster
+      </a>
+    </p>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-5 col-md-5">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <div class="dropdown card-pf-time-frame-filter">
+                <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+                  Last 30 Days <span class="caret"></span>
+                </button>
+                <ul class="dropdown-menu dropdown-menu-right" role="menu">
+                  <li class="selected"><a href="#">Last 30 Days</a></li>
+                  <li><a href="#">Last 60 Days</a></li>
+                  <li><a href="#">Last 90 Days</a></li>
+                </ul>
+              </div>
+              <p>
+                <a href="#" class="card-pf-link-with-icon">
+                  <span class="pficon pficon-flag"></span>View CPU Events
+                </a>
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-12 col-sm-7 col-md-7">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-8 col-md-8">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-4">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+
+</div>
+<script>
+  $(document).ready(function() {
+    // matchHeight the contents of each .card-pf and then the .card-pf itself
+    $(".row-cards-pf > [class*='col'] > .card-pf .card-pf-title").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-footer").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf").matchHeight();
+
+    // Initialize the vertical navigation
+    $().setupVerticalNavigation(true);
+  });
+</script>
+
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/pagination.html b/themes/src/main/node_modules/rcue/tests/pagination.html
new file mode 100644
index 0000000..9e5f9b2
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/pagination.html
@@ -0,0 +1,321 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Pagination - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Pagination</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+<h2>Pager - default size</h2>
+<ul class="pager">
+  <li class="previous">
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+      Previous
+    </a>
+  </li>
+  <li class="next">
+    <a href="#">
+      Next
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pager">
+  <li class="previous disabled">
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+      Previous
+    </a>
+  </li>
+  <li class="next disabled">
+    <a href="#">
+      Next
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<hr>
+<h2>Pager - mini size</h2>
+<ul class="pager pager-sm">
+  <li class="previous">
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+      Previous
+    </a>
+  </li>
+  <li class="next">
+    <a href="#">
+      Next
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pager pager-sm">
+  <li class="previous disabled">
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+      Previous
+    </a>
+  </li>
+  <li class="next disabled">
+    <a href="#">
+      Next
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<hr>
+<h2>Pagination - default size</h2>
+<ul class="pagination">
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+    </a>
+  </li>
+  <li>
+    <a href="#">1</a>
+  </li>
+  <li>
+    <a href="#">2</a>
+  </li>
+  <li>
+    <a href="#">3</a>
+  </li>
+  <li>
+    <a href="#">4</a>
+  </li>
+  <li>
+    <a href="#">5</a>
+  </li>
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pagination">
+  <li class="disabled">
+    <span>
+      <span class="i fa fa-angle-left"></span>
+    </span>
+  </li>
+  <li class="active">
+    <span>
+      1
+      <span class="sr-only">(current)</span>
+    </span>
+  </li>
+  <li>
+    <a href="#">2</a>
+  </li>
+  <li>
+    <a href="#">3</a>
+  </li>
+  <li>
+    <a href="#">4</a>
+  </li>
+  <li>
+    <a href="#">5</a>
+  </li>
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pagination">
+  <li class="disabled">
+    <span>
+      <span class="i fa fa-angle-left"></span>
+    </span>
+  </li>
+  <li class="disabled">
+    <span>
+      1
+      <span class="sr-only">(current)</span>
+    </span>
+  </li>
+  <li class="disabled">
+    <a href="#">2</a>
+  </li>
+  <li class="disabled">
+    <a href="#">3</a>
+  </li>
+  <li class="disabled">
+    <a href="#">4</a>
+  </li>
+  <li class="disabled">
+    <a href="#">5</a>
+  </li>
+  <li class="disabled">
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<hr>
+<h2>Pagination - mini size</h2>
+<ul class="pagination pagination-sm">
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-left"></span>
+    </a>
+  </li>
+  <li>
+    <a href="#">1</a>
+  </li>
+  <li>
+    <a href="#">2</a>
+  </li>
+  <li>
+    <a href="#">3</a>
+  </li>
+  <li>
+    <a href="#">4</a>
+  </li>
+  <li>
+    <a href="#">5</a>
+  </li>
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pagination pagination-sm">
+  <li class="disabled">
+    <span>
+      <span class="i fa fa-angle-left"></span>
+    </span>
+  </li>
+  <li class="active">
+    <span>
+      1
+      <span class="sr-only">(current)</span>
+    </span>
+  </li>
+  <li>
+    <a href="#">2</a>
+  </li>
+  <li>
+    <a href="#">3</a>
+  </li>
+  <li>
+    <a href="#">4</a>
+  </li>
+  <li>
+    <a href="#">5</a>
+  </li>
+  <li>
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<ul class="pagination pagination-sm">
+  <li class="disabled">
+    <span>
+      <span class="i fa fa-angle-left"></span>
+    </span>
+  </li>
+  <li class="disabled">
+    <span>
+      1
+      <span class="sr-only">(current)</span>
+    </span>
+  </li>
+  <li class="disabled">
+    <a href="#">2</a>
+  </li>
+  <li class="disabled">
+    <a href="#">3</a>
+  </li>
+  <li class="disabled">
+    <a href="#">4</a>
+  </li>
+  <li class="disabled">
+    <a href="#">5</a>
+  </li>
+  <li class="disabled">
+    <a href="#">
+      <span class="i fa fa-angle-right"></span>
+    </a>
+  </li>
+</ul>
+<hr>
+<h2>Pagination row for card, list, and table views</h2>
+<p>The following control can be seen in these examples:</p>
+<ul>
+  <li><a href="pagination-card-view.html">Card View</a></li>
+  <li><a href="pagination-list-view.html">List View</a></li>
+  <li><a href="pagination-table-view.html">Table View</a></li>
+</ul>
+
+<form class="content-view-pf-pagination  clearfix" id="">
+  <div class="form-group">
+    <select class="selectpicker pagination-pf-pagesize">
+      <option value="6">6</option>
+      <option value="10" >10</option>
+      <option value="15" >15</option>
+      <option value="25">25</option>
+      <option value="50">50</option>
+    </select>
+    <span>per page</span>
+  </div>
+  <div class="form-group">
+    <span><span class="pagination-pf-items-current">1-15</span> of <span class="pagination-pf-items-total">75</span></span>
+    <ul class="pagination pagination-pf-back">
+      <li class="disabled"><a href="#" title="First Page"><span class="i fa fa-angle-double-left"></span></a></li>
+      <li class="disabled"><a href="#" title="Previous Page"><span class="i fa fa-angle-left"></span></a></li>
+    </ul>
+    <label for="-page" class="sr-only">Current Page</label>
+    <input class="pagination-pf-page" type="text" value="1" id="-page"/>
+    <span>of <span class="pagination-pf-pages">5</span></span>
+    <ul class="pagination pagination-pf-forward">
+      <li><a href="#" title="Next Page"><span class="i fa fa-angle-right"></span></a></li>
+      <li><a href="#" title="Last Page"><span class="i fa fa-angle-double-right"></span></a></li>
+    </ul>
+  </div>
+</form>
+
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/pagination-card-view.html b/themes/src/main/node_modules/rcue/tests/pagination-card-view.html
new file mode 100644
index 0000000..f976b54
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/pagination-card-view.html
@@ -0,0 +1,567 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Pagination - Card View - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+<div class="toast-pf toast-pf-max-width toast-pf-top-right alert alert-success alert-dismissable">
+  <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+    <span class="pficon pficon-close"></span>
+  </button>
+  <div class="pull-right toast-pf-action">
+    <a href="#">Start Server</a>
+  </div>
+  <span class="pficon pficon-ok"></span>
+  <strong>server_abc</strong> has been added to main server group.
+</div>
+
+  <body class="cards-pf">
+    <nav class="navbar navbar-default navbar-pf" role="navigation">
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+        </a>
+      </div>
+      <div class="collapse navbar-collapse navbar-collapse-1">
+        <ul class="nav navbar-nav navbar-utility">
+          <li class="dropdown">
+            <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+              <span title="Help" class="fa pficon-help"></span>
+              <span class="caret"></span>
+            </a>
+            <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+              <li><a href="#0">Help</a></li>
+              <li><a href="#0">About</a></li>
+            </ul>
+          </li>
+          <li class="dropdown">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+              <span class="pficon pficon-user"></span>
+              Brian Johnson <b class="caret"></b>
+            </a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-submenu">
+                <a tabindex="-1" href="#0">More options</a>
+                <ul class="dropdown-menu">
+                  <li>
+                    <a href="#0">Link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Another link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Something else here</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li class="dropdown-header">Nav header</li>
+                  <li>
+                    <a href="#0">Separated link</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li>
+                    <a href="#0">One more separated link</a>
+                  </li>
+                </ul>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+        <ul class="nav navbar-nav navbar-primary">
+          <li>
+            <a href="basic.html">Basic</a>
+          </li>
+          <li>
+            <a href="bootstrap-treeview-2.html">Tree View</a>
+          </li>
+          <li>
+            <a href="dashboard.html">Dashboard</a>
+          </li>
+          <li>
+            <a href="form.html">Form</a>
+          </li>
+          <li>
+            <a href="tab.html">Tab</a>
+          </li>
+          <li>
+            <a href="typography-2.html">Typography</a>
+          </li>
+          <li>
+            <a href="card-view-multi-select.html">Card View - Multi Select</a>
+          </li>
+          <li>
+            <a href="card-view-single-select.html">Card View - Single Select</a>
+          </li>
+          <li>
+            <a href="cards.html">Cards</a>
+          </li>
+          <li class="active">
+            <a href="pagination-card-view.html" class="active">Pagination - Card View</a>
+          </li>
+        </ul>
+      </div>
+    </nav>
+
+      <div class="container-fluid">
+        <div class="row toolbar-pf">
+          <div class="col-sm-12">
+            <form class="toolbar-pf-actions">
+              <div class="form-group toolbar-pf-filter">
+                <label class="sr-only" for="filter">Name</label>
+                <div class="input-group">
+                  <div class="input-group-btn">
+                    <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
+                    <ul class="dropdown-menu">
+                      <li class="selected"><a href="#">Name</a></li>
+                      <li><a href="#">Type</a></li>
+                      <li><a href="#">Color</a></li>
+                    </ul>
+                  </div><!-- /btn-group -->
+                  <input type="text" class="form-control" id="filter" placeholder="Filter By Name...">
+                </div><!-- /input-group -->
+              </div>
+              <div class="form-group">
+                <div class="dropdown btn-group">
+                  <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
+                  <ul class="dropdown-menu">
+                    <li class="selected"><a href="#">Name</a></li>
+                    <li><a href="#">Type</a></li>
+                    <li><a href="#">Last Modified</a></li>
+                  </ul>
+                </div>
+                <button class="btn btn-link" type="button">
+                  <span class="fa fa-sort-alpha-asc"></span>
+                </button>
+              </div>
+              <div class="form-group">
+                <button class="btn btn-default" type="button">Action</button>
+                <button class="btn btn-default" type="button">Action</button>
+                <div class="dropdown btn-group  dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebab" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu " aria-labelledby="dropdownKebab">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+              </div>
+              <div class="toolbar-pf-action-right">
+                <div class="form-group toolbar-pf-find">
+                  <button class="btn btn-link btn-find" type="button">
+                    <span class="fa fa-search"></span>
+                  </button>
+                  <div class="find-pf-dropdown-container">
+                    <input type="text" class="form-control" id="find" placeholder="Find By Keyword...">
+                    <div class="find-pf-buttons">
+                      <span class="find-pf-nums">1 of 3</span>
+                      <button class="btn btn-link" type="button">
+                        <span class="fa fa-angle-up"></span>
+                      </button>
+                      <button class="btn btn-link" type="button">
+                        <span class="fa fa-angle-down"></span>
+                      </button>
+                      <button class="btn btn-link btn-find-close" type="button">
+                        <span class="pficon pficon-close"></span>
+                      </button>
+                    </div>
+                  </div>
+                </div>
+                <div class="form-group toolbar-pf-view-selector">
+                  <button class="btn btn-link "><i class="fa fa-th"></i></button>
+                  <button class="btn btn-link active"><i class="fa fa-th-large"></i></button>
+                  <button class="btn btn-link "><i class="fa fa-th-list"></i></button>
+                </div>
+              </div>
+            </form>
+            <div class="row toolbar-pf-results">
+              <div class="col-sm-12">
+                <h5>40 Results</h5>
+                <p>Active filters:</p>
+                <ul class="list-inline">
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                </ul>
+                <p><a href="#">Clear All Filters</a></p>
+              </div><!-- /col -->
+            </div><!-- /row -->
+          </div><!-- /col -->
+        </div><!-- /row -->
+      </div><!-- /container -->
+
+<div class="container-fluid container-cards-pf">
+  <div class="row row-cards-pf">
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+      <div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+      <div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+      <div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+      <div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+      <div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+      <div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+      <div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+      <div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+      <div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+    <div class="col-xs-12 col-sm-4 col-md-3 col-lg-2">
+      <div class="card-pf card-pf-view card-pf-view-select card-pf-view-multi-select">
+  <div class="card-pf-body">
+    <div class="card-pf-top-element">
+      <span class="fa fa-birthday-cake card-pf-icon-circle"></span>
+    </div>
+    <h2 class="card-pf-title text-center">
+      Cake Service
+    </h2>
+    <div class="card-pf-items text-center">
+      <div class="card-pf-item">
+        <span class="pficon pficon-screen"></span>
+        <span class="card-pf-item-text">8</span>
+      </div>
+      <div class="card-pf-item">
+        <span class="fa fa-check"></span>
+      </div>
+    </div>
+    <p class="card-pf-info text-center"><strong>Created On</strong> 2015-03-01 02:00 AM <br/> Never Expires</p>
+  </div>
+  <div class="card-pf-view-checkbox">
+    <input type="checkbox">
+  </div>
+</div>
+    </div>
+  </div>
+  <form class="content-view-pf-pagination card-view-pf-pagination clearfix" id="">
+  <div class="form-group">
+    <select class="selectpicker pagination-pf-pagesize">
+      <option value="6">6</option>
+      <option value="10" selected="selected">10</option>
+      <option value="15" >15</option>
+      <option value="25">25</option>
+      <option value="50">50</option>
+    </select>
+    <span>per page</span>
+  </div>
+  <div class="form-group">
+    <span><span class="pagination-pf-items-current">1-15</span> of <span class="pagination-pf-items-total">75</span></span>
+    <ul class="pagination pagination-pf-back">
+      <li class="disabled"><a href="#" title="First Page"><span class="i fa fa-angle-double-left"></span></a></li>
+      <li class="disabled"><a href="#" title="Previous Page"><span class="i fa fa-angle-left"></span></a></li>
+    </ul>
+    <label for="-page" class="sr-only">Current Page</label>
+    <input class="pagination-pf-page" type="text" value="1" id="-page"/>
+    <span>of <span class="pagination-pf-pages">5</span></span>
+    <ul class="pagination pagination-pf-forward">
+      <li><a href="#" title="Next Page"><span class="i fa fa-angle-right"></span></a></li>
+      <li><a href="#" title="Last Page"><span class="i fa fa-angle-double-right"></span></a></li>
+    </ul>
+  </div>
+</form>
+
+</div>
+<script>
+  $(function() {
+    // matchHeight the contents of each .card-pf and then the .card-pf itself
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight();
+  });
+  $(document).ready(function() {
+    // Card Multi Select
+    $('input[type=checkbox]').click(function() {
+      if ($(this).parent().parent().hasClass('active'))
+      { $(this).parent().parent().removeClass('active'); }
+      else
+      { $(this).parent().parent().addClass('active'); }
+    });
+  });
+</script>
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/pagination-list-view.html b/themes/src/main/node_modules/rcue/tests/pagination-list-view.html
new file mode 100644
index 0000000..583a285
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/pagination-list-view.html
@@ -0,0 +1,1211 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Pagination - List View - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body>
+    <nav class="navbar navbar-default navbar-pf" role="navigation">
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+        </a>
+      </div>
+      <div class="collapse navbar-collapse navbar-collapse-1">
+        <ul class="nav navbar-nav navbar-utility">
+          <li class="dropdown">
+            <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+              <span title="Help" class="fa pficon-help"></span>
+              <span class="caret"></span>
+            </a>
+            <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+              <li><a href="#0">Help</a></li>
+              <li><a href="#0">About</a></li>
+            </ul>
+          </li>
+          <li class="dropdown">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+              <span class="pficon pficon-user"></span>
+              Brian Johnson <b class="caret"></b>
+            </a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-submenu">
+                <a tabindex="-1" href="#0">More options</a>
+                <ul class="dropdown-menu">
+                  <li>
+                    <a href="#0">Link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Another link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Something else here</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li class="dropdown-header">Nav header</li>
+                  <li>
+                    <a href="#0">Separated link</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li>
+                    <a href="#0">One more separated link</a>
+                  </li>
+                </ul>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+        <ul class="nav navbar-nav navbar-primary">
+          <li>
+            <a href="basic.html">Basic</a>
+          </li>
+          <li>
+            <a href="bootstrap-treeview-2.html">Tree View</a>
+          </li>
+          <li>
+            <a href="dashboard.html">Dashboard</a>
+          </li>
+          <li>
+            <a href="form.html">Form</a>
+          </li>
+          <li>
+            <a href="tab.html">Tab</a>
+          </li>
+          <li>
+            <a href="typography-2.html">Typography</a>
+          </li>
+          <li>
+            <a href="card-view-multi-select.html">Card View - Multi Select</a>
+          </li>
+          <li>
+            <a href="card-view-single-select.html">Card View - Single Select</a>
+          </li>
+          <li>
+            <a href="cards.html">Cards</a>
+          </li>
+          <li>
+            <a href="pagination-card-view.html">Pagination - Card View</a>
+          </li>
+        </ul>
+      </div>
+    </nav>
+
+      <div class="container-fluid">
+        <div class="row toolbar-pf">
+          <div class="col-sm-12">
+            <form class="toolbar-pf-actions">
+              <div class="form-group toolbar-pf-filter">
+                <label class="sr-only" for="filter">Name</label>
+                <div class="input-group">
+                  <div class="input-group-btn">
+                    <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
+                    <ul class="dropdown-menu">
+                      <li class="selected"><a href="#">Name</a></li>
+                      <li><a href="#">Type</a></li>
+                      <li><a href="#">Color</a></li>
+                    </ul>
+                  </div><!-- /btn-group -->
+                  <input type="text" class="form-control" id="filter" placeholder="Filter By Name...">
+                </div><!-- /input-group -->
+              </div>
+              <div class="form-group">
+                <div class="dropdown btn-group">
+                  <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
+                  <ul class="dropdown-menu">
+                    <li class="selected"><a href="#">Name</a></li>
+                    <li><a href="#">Type</a></li>
+                    <li><a href="#">Last Modified</a></li>
+                  </ul>
+                </div>
+                <button class="btn btn-link" type="button">
+                  <span class="fa fa-sort-alpha-asc"></span>
+                </button>
+              </div>
+              <div class="form-group">
+                <button class="btn btn-default" type="button">Action</button>
+                <button class="btn btn-default" type="button">Action</button>
+                <div class="dropdown btn-group  dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebab" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu " aria-labelledby="dropdownKebab">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+              </div>
+              <div class="toolbar-pf-action-right">
+                <div class="form-group toolbar-pf-find">
+                  <button class="btn btn-link btn-find" type="button">
+                    <span class="fa fa-search"></span>
+                  </button>
+                  <div class="find-pf-dropdown-container">
+                    <input type="text" class="form-control" id="find" placeholder="Find By Keyword...">
+                    <div class="find-pf-buttons">
+                      <span class="find-pf-nums">1 of 3</span>
+                      <button class="btn btn-link" type="button">
+                        <span class="fa fa-angle-up"></span>
+                      </button>
+                      <button class="btn btn-link" type="button">
+                        <span class="fa fa-angle-down"></span>
+                      </button>
+                      <button class="btn btn-link btn-find-close" type="button">
+                        <span class="pficon pficon-close"></span>
+                      </button>
+                    </div>
+                  </div>
+                </div>
+                <div class="form-group toolbar-pf-view-selector">
+                  <button class="btn btn-link "><i class="fa fa-th"></i></button>
+                  <button class="btn btn-link "><i class="fa fa-th-large"></i></button>
+                  <button class="btn btn-link active"><i class="fa fa-th-list"></i></button>
+                </div>
+              </div>
+            </form>
+            <div class="row toolbar-pf-results">
+              <div class="col-sm-12">
+                <h5>40 Results</h5>
+                <p>Active filters:</p>
+                <ul class="list-inline">
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                </ul>
+                <p><a href="#">Clear All Filters</a></p>
+              </div><!-- /col -->
+            </div><!-- /row -->
+          </div><!-- /col -->
+        </div><!-- /row -->
+      </div><!-- /container -->
+
+<div class="container-fluid">
+<!-- <div class="list-group list-view-pf list-view-pf-view">
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight9" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight9">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-plane list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event One
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>8</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>6</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>8</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight10" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight10">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-magic list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Two
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>11</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight11">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-gamepad list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Three
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight12">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-linux list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Four
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight13">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-briefcase list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Five
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight14">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-coffee list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Six
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  $(document).ready(function () {
+    // Row Checkbox Selection
+    $("input[type='checkbox']").change(function (e) {
+      if ($(this).is(":checked")) {
+        $(this).closest('.list-group-item').addClass("active");
+      } else {
+        $(this).closest('.list-group-item').removeClass("active");
+      }
+    });
+    // toggle dropdown menu
+    $('.list-view-pf-actions').on('show.bs.dropdown', function () {
+      var $this = $(this);
+      var $dropdown = $this.find('.dropdown');
+      var space = $(window).height() - $dropdown[0].getBoundingClientRect().top - $this.find('.dropdown-menu').outerHeight(true);
+      $dropdown.toggleClass('dropup', space < 10);
+    });
+    // allow users to select multiple list items with shift key
+    $('.list-group').on('click', '.list-view-pf-checkbox>input', function(event) {
+      var $list = $('.list-group');
+      var prevIndex = $list.data('preIndex');
+      var $listItems = $list.children('.list-group-item');
+      var $currentItem = $(this).closest('.list-group-item');
+      if(event.shiftKey && prevIndex > -1 && this.checked) {
+        var currentIndex = $listItems.index($currentItem);
+        var $selectScope = currentIndex - prevIndex > 0
+          ? $currentItem.prevAll().not($listItems.eq(prevIndex).prevAll().addBack())
+          : $listItems.eq(prevIndex).prevAll().not($currentItem.prevAll().addBack());
+        $selectScope.addClass('active').find('.list-view-pf-checkbox').children('input').prop('checked', true);
+      }
+      $list.data('preIndex', this.checked ? $listItems.index($currentItem) : -1);
+    });
+
+  });
+</script> -->
+<div class="list-group list-view-pf list-view-pf-view">
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight11">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-plane list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event One
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>8</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>6</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>8</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight12">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-magic list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Two
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>11</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight13">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-gamepad list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Three
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight14">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-linux list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Four
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight15">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-briefcase list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Five
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight16" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight16">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-coffee list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Six
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight17" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight17">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-plane list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event One
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>8</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>6</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>8</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight18" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight18">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-magic list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Two
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>11</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight19" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight19">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-gamepad list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Three
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <div class="list-group-item">
+    <div class="list-view-pf-checkbox">
+      <input type="checkbox">
+    </div>
+    <div class="list-view-pf-actions">
+      <button class="btn btn-default">Action</button>
+      <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight20" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight20">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    </div>
+    <div class="list-view-pf-main-info">
+      <div class="list-view-pf-left">
+        <span class="fa fa-linux list-view-pf-icon-sm"></span>
+      </div>
+      <div class="list-view-pf-body">
+        <div class="list-view-pf-description">
+          <div class="list-group-item-heading">
+            Event Four
+          </div>
+          <div class="list-group-item-text">
+            The following snippet of text is <a href="#">rendered as link text</a>.
+          </div>
+        </div>
+        <div class="list-view-pf-additional-info">
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-screen"></span>
+            <strong>4</strong> Hosts
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-cluster"></span>
+            <strong>2</strong> Clusters
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-container-node"></span>
+            <strong>10</strong> Nodes
+          </div>
+          <div class="list-view-pf-additional-info-item">
+            <span class="pficon pficon-image"></span>
+            <strong>6</strong> Images
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+  <form class="content-view-pf-pagination list-view-pf-pagination clearfix" id="">
+  <div class="form-group">
+    <select class="selectpicker pagination-pf-pagesize">
+      <option value="6">6</option>
+      <option value="10" selected="selected">10</option>
+      <option value="15" >15</option>
+      <option value="25">25</option>
+      <option value="50">50</option>
+    </select>
+    <span>per page</span>
+  </div>
+  <div class="form-group">
+    <span><span class="pagination-pf-items-current">1-15</span> of <span class="pagination-pf-items-total">75</span></span>
+    <ul class="pagination pagination-pf-back">
+      <li class="disabled"><a href="#" title="First Page"><span class="i fa fa-angle-double-left"></span></a></li>
+      <li class="disabled"><a href="#" title="Previous Page"><span class="i fa fa-angle-left"></span></a></li>
+    </ul>
+    <label for="-page" class="sr-only">Current Page</label>
+    <input class="pagination-pf-page" type="text" value="1" id="-page"/>
+    <span>of <span class="pagination-pf-pages">5</span></span>
+    <ul class="pagination pagination-pf-forward">
+      <li><a href="#" title="Next Page"><span class="i fa fa-angle-right"></span></a></li>
+      <li><a href="#" title="Last Page"><span class="i fa fa-angle-double-right"></span></a></li>
+    </ul>
+  </div>
+</form>
+
+</div>
+<script>
+  $(document).ready(function () {
+    // Row Checkbox Selection
+    $("input[type='checkbox']").change(function (e) {
+      if ($(this).is(":checked")) {
+        $(this).closest('.list-group-item').addClass("active");
+      } else {
+        $(this).closest('.list-group-item').removeClass("active");
+      }
+    });
+    // toggle dropdown menu
+    $('.list-view-pf-actions').on('show.bs.dropdown', function () {
+      var $this = $(this);
+      var $dropdown = $this.find('.dropdown');
+      var space = $(window).height() - $dropdown[0].getBoundingClientRect().top - $this.find('.dropdown-menu').outerHeight(true);
+      $dropdown.toggleClass('dropup', space < 10);
+    });
+  });
+</script>
+
+</div>
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/pagination-table-view.html b/themes/src/main/node_modules/rcue/tests/pagination-table-view.html
new file mode 100644
index 0000000..ed1a991
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/pagination-table-view.html
@@ -0,0 +1,821 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Pagination - Table View - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="//cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js"></script>
+    <script src="//cdn.datatables.net/select/1.2.0/js/dataTables.select.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfEmpty.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfFilter.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfPagination.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfResize.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfSelect.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+<!-- Navbar -->
+    <nav class="navbar navbar-default navbar-pf" role="navigation">
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+        </a>
+      </div>
+      <div class="collapse navbar-collapse navbar-collapse-1">
+        <ul class="nav navbar-nav navbar-utility">
+          <li class="dropdown">
+            <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+              <span title="Help" class="fa pficon-help"></span>
+              <span class="caret"></span>
+            </a>
+            <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+              <li><a href="#0">Help</a></li>
+              <li><a href="#0">About</a></li>
+            </ul>
+          </li>
+          <li class="dropdown">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+              <span class="pficon pficon-user"></span>
+              Brian Johnson <b class="caret"></b>
+            </a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-submenu">
+                <a tabindex="-1" href="#0">More options</a>
+                <ul class="dropdown-menu">
+                  <li>
+                    <a href="#0">Link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Another link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Something else here</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li class="dropdown-header">Nav header</li>
+                  <li>
+                    <a href="#0">Separated link</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li>
+                    <a href="#0">One more separated link</a>
+                  </li>
+                </ul>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+        <ul class="nav navbar-nav navbar-primary">
+          <li>
+            <a href="basic.html">Basic</a>
+          </li>
+          <li>
+            <a href="bootstrap-treeview-2.html">Tree View</a>
+          </li>
+          <li>
+            <a href="dashboard.html">Dashboard</a>
+          </li>
+          <li>
+            <a href="form.html">Form</a>
+          </li>
+          <li>
+            <a href="tab.html">Tab</a>
+          </li>
+          <li>
+            <a href="typography-2.html">Typography</a>
+          </li>
+          <li>
+            <a href="card-view-multi-select.html">Card View - Multi Select</a>
+          </li>
+          <li>
+            <a href="card-view-single-select.html">Card View - Single Select</a>
+          </li>
+          <li>
+            <a href="cards.html">Cards</a>
+          </li>
+          <li>
+            <a href="pagination-card-view.html">Pagination - Card View</a>
+          </li>
+        </ul>
+      </div>
+    </nav>
+
+<!-- Toolbar -->
+<div class="container-fluid">
+  <div class="row toolbar-pf table-view-pf-toolbar-external" id="toolbar1">
+    <div class="col-sm-12">
+      <form class="toolbar-pf-actions">
+        <div class="form-group toolbar-pf-filter">
+          <label class="sr-only" for="filter">Rendering Engine</label>
+          <div class="input-group">
+            <div class="input-group-btn">
+              <button type="button" class="btn btn-default dropdown-toggle" id="filter" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Rendering Engine <span class="caret"></span></button>
+              <ul class="dropdown-menu">
+                <li><a href="#" id="filter1">Rendering Engine</a></li>
+                <li><a href="#" id="filter2">Browser</a></li>
+                <li><a href="#" id="filter3">Platform(s)</a></li>
+                <li><a href="#" id="filter4">Engine Version</a></li>
+                <li><a href="#" id="filter5">CSS Grade</a></li>
+              </ul>
+            </div>
+            <input type="text" class="form-control" placeholder="Filter By Rendering Engine..." autocomplete="off">
+          </div>
+        </div>
+        <div class="form-group">
+          <div class="dropdown btn-group">
+            <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Rendering Engine <span class="caret"></span></button>
+            <ul class="dropdown-menu">
+              <li><a href="#">Rendering Engine</a></li>
+              <li><a href="#">Browser</a></li>
+              <li><a href="#">Platform(s)</a></li>
+              <li><a href="#">Engine Version</a></li>
+              <li><a href="#">CSS Grade</a></li>
+            </ul>
+          </div>
+          <button class="btn btn-link" type="button">
+            <span class="fa fa-sort-alpha-asc"></span>
+          </button>
+          <div class="dropdown btn-group">
+            <button class="btn btn-link dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+              <span class="fa fa-columns"></span>
+            </button>
+            <ul class="dropdown-menu table-view-pf-colvis-menu">
+              <li><input type="checkbox" value="1" checked><label>Rendering Engine</label></li>
+              <li><input type="checkbox" value="2" checked><label>Browser</label></li>
+              <li><input type="checkbox" value="3" checked><label>Platform(s)</label></li>
+              <li><input type="checkbox" value="4" checked><label>Engine Version</label></li>
+              <li><input type="checkbox" value="5" checked><label>CSS Grade</label></li>
+            </ul>
+          </div>
+        </div>
+        <div class="form-group">
+          <button class="btn btn-default" type="button" id="deleteRows1">Delete Rows</button>
+          <button class="btn btn-default" type="button" id="restoreRows1" disabled>Restore Rows</button>
+          <div class="dropdown btn-group  dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebab" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu " aria-labelledby="dropdownKebab">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+        </div>
+        <div class="toolbar-pf-action-right">
+          <div class="form-group toolbar-pf-find">
+            <button class="btn btn-link btn-find" type="button">
+              <span class="fa fa-search"></span>
+            </button>
+            <div class="find-pf-dropdown-container">
+              <input type="text" class="form-control" id="find" placeholder="Find By Keyword...">
+              <div class="find-pf-buttons">
+                <span class="find-pf-nums">1 of 3</span>
+                <button class="btn btn-link" type="button">
+                  <span class="fa fa-angle-up"></span>
+                </button>
+                <button class="btn btn-link" type="button">
+                  <span class="fa fa-angle-down"></span>
+                </button>
+                <button class="btn btn-link btn-find-close" type="button">
+                  <span class="pficon pficon-close"></span>
+                </button>
+              </div>
+            </div>
+          </div>
+          <div class="form-group toolbar-pf-view-selector">
+            <button class="btn btn-link active"><i class="fa fa-th"></i></button>
+            <button class="btn btn-link"><i class="fa fa-th-large"></i></button>
+            <button class="btn btn-link"><i class="fa fa-th-list"></i></button>
+          </div>
+        </div>
+      </form>
+      <div class="row toolbar-pf-results">
+        <div class="col-sm-9">
+          <div class="hidden">
+            <h5>0 Results</h5>
+            <p>Active filters:</p>
+            <ul class="list-inline"></ul>
+            <p><a href="#">Clear All Filters</a></p>
+          </div>
+        </div>
+        <div class="col-sm-3 table-view-pf-select-results">
+          <strong>0</strong> of <strong>0</strong> selected
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+<div class="col-sm-12">
+<!-- Table HTML -->
+<table class="table table-striped table-bordered table-hover" id="table1">
+  <thead>
+    <tr>
+      <th><label class="sr-only" for="selectAll">Select all rows</label><input type="checkbox" id="selectAll" name="selectAll"></th>
+      <th>Rendering Engine</th>
+      <th>Browser</th>
+      <th>Platform(s)</th>
+      <th>Engine Version</th>
+      <th>CSS Grade</th>
+      <th colspan="2">Actions</th>
+    </tr>
+  </thead>
+</table>
+
+<form class="content-view-pf-pagination table-view-pf-pagination clearfix" id="pagination1">
+  <div class="form-group">
+    <select class="selectpicker pagination-pf-pagesize">
+      <option value="6">6</option>
+      <option value="10" >10</option>
+      <option value="15" selected="selected">15</option>
+      <option value="25">25</option>
+      <option value="50">50</option>
+    </select>
+    <span>per page</span>
+  </div>
+  <div class="form-group">
+    <span><span class="pagination-pf-items-current">1-15</span> of <span class="pagination-pf-items-total">75</span></span>
+    <ul class="pagination pagination-pf-back">
+      <li class="disabled"><a href="#" title="First Page"><span class="i fa fa-angle-double-left"></span></a></li>
+      <li class="disabled"><a href="#" title="Previous Page"><span class="i fa fa-angle-left"></span></a></li>
+    </ul>
+    <label for="pagination1-page" class="sr-only">Current Page</label>
+    <input class="pagination-pf-page" type="text" value="1" id="pagination1-page"/>
+    <span>of <span class="pagination-pf-pages">5</span></span>
+    <ul class="pagination pagination-pf-forward">
+      <li><a href="#" title="Next Page"><span class="i fa fa-angle-right"></span></a></li>
+      <li><a href="#" title="Last Page"><span class="i fa fa-angle-double-right"></span></a></li>
+    </ul>
+  </div>
+</form>
+
+<!-- Blank Slate HTML -->
+<div class="blank-slate-pf table-view-pf-empty hidden" id="emptyState1">
+  <div class="blank-slate-pf-icon">
+    <span class="pficon pficon pficon-add-circle-o"></span>
+  </div>
+  <h1>
+    Empty State Title
+  </h1>
+  <p>
+    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
+  </p>
+  <p>
+    Learn more about this <a href="#">on the documentation</a>.
+  </p>
+  <div class="blank-slate-pf-main-action">
+    <button class="btn btn-primary btn-lg"> Main Action </button>
+  </div>
+  <div class="blank-slate-pf-secondary-action">
+    <button class="btn btn-default">Secondary Action</button>
+    <button class="btn btn-default">Secondary Action</button>
+  </div>
+</div>
+
+</div>
+<script>
+$(document).ready(function() {
+
+// JSON data for Table View
+var dataSet = [{
+  engine: "Trident",
+  browser: "Internet Explorer 4.0",
+  platforms: "Win 95+",
+  version: "4",
+  grade: "X"
+},{
+  engine: "Trident",
+  browser: "Internet Explorer 5.0",
+  platforms: "Win 95+",
+  version: "5",
+  grade: "C"
+}, {
+  engine: "Trident",
+  browser: "Internet Explorer 5.5",
+  platforms: "Win 95+",
+  version: "5.5",
+  grade: "A"
+}, {
+  engine: "Trident",
+  browser: "Internet Explorer 6",
+  platforms: "Win 98+",
+  version: "6",
+  grade: "A"
+}, {
+  engine: "Trident",
+  browser: "Internet Explorer 7",
+  platforms: "Win XP SP2+",
+  version: "7",
+  grade: "A"
+}, {
+  engine: "Trident",
+  browser: "AOL browser (AOL desktop)",
+  platforms: "Win XP",
+  version: "6",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 1.0",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 1.5",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 2.0",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 3.0",
+  platforms: "Win 2k+ / OSX.3+",
+  version: "1.9",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Camino 1.0",
+  platforms: "OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Camino 1.5",
+  platforms: "OSX.3+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Netscape 7.2",
+  platforms: "Win 95+ / Mac OS 8.6-9.2",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Netscape Browser 8",
+  platforms: "Win 98SE+",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Netscape Navigator 9",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.0",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.1",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.1",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.2",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.2",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.3",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.3",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.4",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.4",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.5",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.5",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.6",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.6",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.7",
+  platforms: "Win 98+ / OSX.1+",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.8",
+  platforms: "Win 98+ / OSX.1+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Seamonkey 1.1",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Epiphany 2.20",
+  platforms: "Gnome",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 1.2",
+  platforms: "OSX.3",
+  version: "125.5",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 1.3",
+  platforms: "OSX.3",
+  version: "312.8",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 2.0",
+  platforms: "OSX.4+",
+  version: "419.3",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 3.0",
+  platforms: "OSX.4+",
+  version: "522.1",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "OmniWeb 5.5",
+  platforms: "OSX.4+",
+  version: "420",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "iPod Touch / iPhone",
+  platforms: "iPod",
+  version: "420.1",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "S60",
+  platforms: "S60",
+  version: "413",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 7.0",
+  platforms: "Win 95+ / OSX.1+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 7.5",
+  platforms: "Win 95+ / OSX.2+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 8.0",
+  platforms: "Win 95+ / OSX.2+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 8.5",
+  platforms: "Win 95+ / OSX.2+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 9.0",
+  platforms: "Win 95+ / OSX.3+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 9.2",
+  platforms: "Win 88+ / OSX.3+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 9.5",
+  platforms: "Win 88+ / OSX.3+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera for Wii",
+  platforms: "Wii",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Nokia N800",
+  platforms: "N800",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Nintendo DS browser",
+  platforms: "Nintendo DS",
+  version: "8.5",
+  grade: "C/A<sup>1</sup>"
+}, {
+  engine: "KHTML",
+  browser: "Konqureror 3.1",
+  platforms: "KDE 3.1",
+  version: "3.1",
+  grade: "C"
+}, {
+  engine: "KHTML",
+  browser: "Konqureror 3.3",
+  platforms: "KDE 3.3",
+  version: "3.3",
+  grade: "A"
+}, {
+  engine: "KHTML",
+  browser: "Konqureror 3.5",
+  platforms: "KDE 3.5",
+  version: "3.5",
+  grade: "A"
+}, {
+  engine: "Tasman",
+  browser: "Internet Explorer 4.5",
+  platforms: "Mac OS 8-9",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Tasman",
+  browser: "Internet Explorer 5.1",
+  platforms: "Mac OS 7.6-9",
+  version: "1",
+  grade: "C"
+}, {
+  engine: "Tasman",
+  browser: "Internet Explorer 5.2",
+  platforms: "Mac OS 8-X",
+  version: "1",
+  grade: "C"
+}, {
+  engine: "Misc",
+  browser: "NetFront 3.1",
+  platforms: "Embedded devices",
+  version: "-",
+  grade: "C"
+}, {
+  engine: "Misc",
+  browser: "NetFront 3.4",
+  platforms: "Embedded devices",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Misc",
+  browser: "Dillo 0.8",
+  platforms: "Embedded devices",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Misc",
+  browser: "Links",
+  platforms: "Text only",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Misc",
+  browser: "Lynx",
+  platforms: "Text only",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Misc",
+  browser: "IE Mobile",
+  platforms: "Windows Mobile 6",
+  version: "-",
+  grade: "C"
+}, {
+  engine: "Misc",
+  browser: "PSP browser",
+  platforms: "PSP",
+  version: "-",
+  grade: "C"
+}, {
+  engine: "Other browsers",
+  browser: "All others",
+  platforms: "-",
+  version: "-",
+  grade: "U"
+}];
+
+// DataTable Config
+$("#table1").DataTable({
+  columns: [
+    { data: null,
+      className: "table-view-pf-select",
+      render: function (data, type, full, meta) {
+        // Select row checkbox renderer
+        var id = "select" + meta.row;
+        return '<label class="sr-only" for="' + id + '">Select row ' + meta.row +
+          '</label><input type="checkbox" id="' + id + '" name="' + id + '">';
+      },
+      sortable: false
+    },
+    { data: "engine" },
+    { data: "browser" },
+    { data: "platforms" },
+    { data: "version" },
+    { data: "grade"},
+    { data: null,
+      className: "table-view-pf-actions",
+      render: function (data, type, full, meta) {
+        // Inline action button renderer
+        return '<div class="table-view-pf-btn"><button class="btn btn-default" type="button">Actions</button></div>';
+      }
+    }, {
+      data: null,
+      className: "table-view-pf-actions",
+      render: function (data, type, full, meta) {
+        // Inline action kebab renderer
+        return '<div class="dropdown dropdown-kebab-pf">' +
+          '<button class="btn btn-default dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">' +
+          '<span class="fa fa-ellipsis-v"></span></button>' +
+          '<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight">' +
+          '<li><a href="#">Action</a></li>' +
+          '<li><a href="#">Another action</a></li>' +
+          '<li><a href="#">Something else here</a></li>' +
+          '<li role="separator" class="divider"></li>' +
+          '<li><a href="#">Separated link</a></li></ul></div>';
+      }
+    }
+  ],
+  data: dataSet,
+  dom: "t",
+  language: {
+    zeroRecords: "No records found"
+  },
+  order: [[ 1, 'asc' ]],
+  pfConfig: {
+    emptyStateSelector: "#emptyState1",
+    filterCaseInsensitive: true,
+    filterCols: [
+      null,
+      {
+        default: true,
+        optionSelector: "#filter1",
+        placeholder: "Filter By Rendering Engine..."
+      }, {
+        optionSelector: "#filter2",
+        placeholder: "Filter By Browser..."
+      }, {
+        optionSelector: "#filter3",
+        placeholder: "Filter By Platform(s)..."
+      }, {
+        optionSelector: "#filter4",
+        placeholder: "Filter By Engine Version..."
+      }, {
+        optionSelector: "#filter5",
+        placeholder: "Filter By CSS Grade..."
+      }
+    ],
+    paginationSelector: "#pagination1",
+    toolbarSelector: "#toolbar1",
+    selectAllSelector: 'th:first-child input[type="checkbox"]',
+    colvisMenuSelector: '.table-view-pf-colvis-menu'
+  },
+  select: {
+    selector: 'td:first-child input[type="checkbox"]',
+    style: 'multi'
+  },
+});
+
+/**
+ * Utility to show empty Table View
+ *
+ * @param {object} config - Config properties associated with a Table View
+ * @param {object} config.data - Data set for DataTable
+ * @param {string} config.deleteRowsSelector - Selector for delete rows control
+ * @param {string} config.restoreRowsSelector - Selector for restore rows control
+ * @param {string} config.tableSelector - Selector for the HTML table
+ */
+var emptyTableViewUtil = function (config) {
+  var self = this;
+
+  this.dt = $(config.tableSelector).DataTable(); // DataTable
+  this.deleteRows = $(config.deleteRowsSelector); // Delete rows control
+  this.restoreRows = $(config.restoreRowsSelector); // Restore rows control
+
+  // Handle click on delete rows control
+  this.deleteRows.on('click', function() {
+    self.dt.clear().draw();
+    $(self.restoreRows).prop("disabled", false);
+  });
+
+  // Handle click on restore rows control
+  this.restoreRows.on('click', function() {
+    self.dt.rows.add(config.data).draw();
+    $(this).prop("disabled", true);
+  });
+
+  // Initialize restore rows
+  if (this.dt.data().length === 0) {
+    $(this.restoreRows).prop("disabled", false);
+  }
+};
+
+// Initialize empty Table View util
+new emptyTableViewUtil({
+  data: dataSet,
+  deleteRowsSelector: "#deleteRows1",
+  restoreRowsSelector: "#restoreRows1",
+  tableSelector: "#table1"
+});
+
+/**
+ * Utility to find items in Table View
+ */
+var findTableViewUtil = function (config) {
+  // Upon clicking the find button, show the find dropdown content
+  $(".btn-find").click(function () {
+    $(this).parent().find(".find-pf-dropdown-container").toggle();
+  });
+
+  // Upon clicking the find close button, hide the find dropdown content
+  $(".btn-find-close").click(function () {
+    $(".find-pf-dropdown-container").hide();
+  });
+};
+
+// Initialize find util
+new findTableViewUtil();
+
+});
+</script>
+
+
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/panels.html b/themes/src/main/node_modules/rcue/tests/panels.html
new file mode 100644
index 0000000..2e90cb7
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/panels.html
@@ -0,0 +1,113 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Panels - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Panels</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <div class="panel panel-default">
+        <div class="panel-heading">Panel heading without title</div>
+        <div class="panel-body">
+          Panel content
+        </div>
+      </div>
+      <hr>
+      <div class="panel panel-default">
+        <div class="panel-heading">
+          <h3 class="panel-title">Panel title</h3>
+        </div>
+        <div class="panel-body">
+          Panel content
+        </div>
+      </div>
+      <hr>
+      <div class="panel panel-default">
+        <div class="panel-body">
+          Panel content
+        </div>
+        <div class="panel-footer">Panel footer</div>
+      </div>
+      <hr>
+      <div class="panel panel-primary">
+        <div class="panel-heading">
+          <h3 class="panel-title">Panel title</h3>
+        </div>
+        <div class="panel-body">
+          Panel content
+        </div>
+      </div>
+      <hr>
+      <div class="panel panel-success">
+        <div class="panel-heading">
+          <h3 class="panel-title">Panel title</h3>
+        </div>
+        <div class="panel-body">
+          Panel content
+        </div>
+      </div>
+      <hr>
+      <div class="panel panel-info">
+        <div class="panel-heading">
+          <h3 class="panel-title">Panel title</h3>
+        </div>
+        <div class="panel-body">
+          Panel content
+        </div>
+      </div>
+      <hr>
+      <div class="panel panel-warning">
+        <div class="panel-heading">
+          <h3 class="panel-title">Panel title</h3>
+        </div>
+        <div class="panel-body">
+          Panel content
+        </div>
+      </div>
+      <hr>
+      <div class="panel panel-danger">
+        <div class="panel-heading">
+          <h3 class="panel-title">Panel title</h3>
+        </div>
+        <div class="panel-body">
+          Panel content
+        </div>
+      </div>
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/pie-charts.html b/themes/src/main/node_modules/rcue/tests/pie-charts.html
new file mode 100644
index 0000000..cfe8875
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/pie-charts.html
@@ -0,0 +1,180 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Pie Charts - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Pie Charts</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://c3js.org/">http://c3js.org/</a>
+      </div>
+      <hr>
+<style>
+  .example-pie-chart, .example-pie-chart-right-legend, .example-pie-chart-bottom-legend {
+    width: 440px;
+  }
+
+  .example-pie-chart {
+    margin-left: 10px;
+  }
+
+  .example-pie-chart-right-legend {
+    margin-left: 27px;
+  }
+
+  .example-pie-chart-bottom-legend {
+    margin-left: -50px;
+  }
+
+  .example-pie-chart-mini {
+    margin-left: 23px;
+  }
+</style>
+<div>
+  <h2>Donut Chart - Relationship to a Whole</h2>
+  <div>
+    <div id="donut-chart-no-legend" class="example-pie-chart"></div>
+<div id="donut-chart-right-legend" class="example-pie-chart-right-legend"></div>
+<div id="donut-chart-bottom-legend" class="example-pie-chart-bottom-legend"></div>
+<script>
+  var c3ChartDefaults = $().c3ChartDefaults();
+
+  var pieData = {
+    type : 'pie',
+    colors: {
+      Dogs: $.pfPaletteColors.red,
+      Cats: $.pfPaletteColors.blue,
+      Fish: $.pfPaletteColors.orange,
+      Hamsters: $.pfPaletteColors.green
+    },
+    columns: [
+      ['Dogs', 3],
+      ['Cats', 2],
+      ['Fish', 10],
+      ['Hamsters', 2]
+    ],
+    onclick: function (d, i) { console.log("onclick", d, i); },
+    onmouseover: function (d, i) { console.log("onmouseover", d, i); },
+    onmouseout: function (d, i) { console.log("onmouseout", d, i); }
+  };
+
+  // Pie Chart without Legend
+  var pieChartConfig = c3ChartDefaults.getDefaultPieConfig();
+  pieChartConfig.bindto = '#donut-chart-no-legend';
+  pieChartConfig.data = pieData;
+  pieChartConfig.size = {
+    width: 200,
+    height: 171
+  };
+  var pieChartNoLegend = c3.generate(pieChartConfig);
+
+  // Right Legend
+  var pieChartRightConfig = c3ChartDefaults.getDefaultPieConfig();
+  pieChartRightConfig.bindto = '#donut-chart-right-legend';
+  pieChartRightConfig.data = pieData;
+  pieChartRightConfig.legend = {
+    show: true,
+    position: 'right'
+  };
+  pieChartRightConfig.size = {
+    width: 251,
+    height: 161
+  };
+  var pieChartRightLegend = c3.generate(pieChartRightConfig);
+
+  // Pie Chart Bottom Legend
+  var pieChartBottomConfig = c3ChartDefaults.getDefaultPieConfig();
+  pieChartBottomConfig.bindto = '#donut-chart-bottom-legend';
+  pieChartBottomConfig.data = pieData;
+  pieChartBottomConfig.legend = {
+    show: true,
+    position: 'bottom'
+  };
+  pieChartBottomConfig.size = {
+    width: 321,
+    height: 191
+  };
+  var pieChartBottomLegend = c3.generate(pieChartBottomConfig);
+</script>
+
+  </div>
+  <h2>Pie Chart - Small</h2>
+  <div>
+    <div id="smallDonutChart" class="pie-chart-pf example-pie-chart-mini"></div>
+<div style="text-align: center; width: 220px;">Animals</div>
+<script>
+  var pieData = {
+    type : 'pie',
+    colors: {
+      Dogs: $.pfPaletteColors.red,
+      Cats: $.pfPaletteColors.blue,
+      Fish: $.pfPaletteColors.orange,
+      Hamsters: $.pfPaletteColors.green
+    },
+    columns: [
+      ['Dogs', 3],
+      ['Cats', 2],
+      ['Fish', 10],
+      ['Hamsters', 2]
+    ],
+    onclick: function (d, i) { console.log("onclick", d, i); },
+    onmouseover: function (d, i) { console.log("onmouseover", d, i); },
+    onmouseout: function (d, i) { console.log("onmouseout", d, i); }
+  };
+
+  var c3ChartDefaults = $().c3ChartDefaults();
+  var pieChartSmallConfig = c3ChartDefaults.getDefaultPieConfig();
+  pieChartSmallConfig.bindto = '#smallDonutChart';
+  pieChartSmallConfig.data = pieData;
+  pieChartSmallConfig.legend = {
+    show: true,
+    position: 'right'
+  };
+  pieChartSmallConfig.size = {
+    width: 260,
+    height: 115
+  };
+
+  var pieChartSmall = c3.generate(pieChartSmallConfig);
+</script>
+
+  </div>
+</div>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/popovers.html b/themes/src/main/node_modules/rcue/tests/popovers.html
new file mode 100644
index 0000000..be1b1b1
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/popovers.html
@@ -0,0 +1,118 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Popovers - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Popovers</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <p>Note: To display the close (X) icon in popovers, add data attribute <strong>data-close="true"</strong> to the trigger button element.</p>
+      <div class="bs-example" style="margin-top: 40px;">
+        <a href="#" class="btn btn-default" data-toggle="popover" data-html="true" title="Popover on right with title and close button" data-content="This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy." data-close="true">Popover on right with title and close button</a>
+      </div>
+      <div class="bs-example" style="margin-top: 40px;">
+        <a href="#" class="btn btn-default" data-toggle="popover" data-html="true" title="" data-content="Close icon with no Title text. This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy." data-close="true">Popover on right with close button</a>
+      </div>
+      <div class="bs-example" style="margin: 40px 0;">
+        <a href="#" class="btn btn-default" data-toggle="popover" data-html="true" title="Popover on right with title" data-content="Popover with no Close icon.<br>This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy.">Popover on right with title</a>
+      </div>
+      <div class="bs-example" style="margin: 40px 0;">
+        <a href="#" class="btn btn-default" data-toggle="popover" data-html="true" title="" data-content="Empty Title example.<br>This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy.">Popover on right</a>
+      </div>
+      <hr>
+      <div class="bs-example" style="margin-top: 40px;">
+        <a href="#" class="btn btn-default" data-toggle="popover" data-html="true" title="Popover on left with title and close button" data-content="This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy." data-close="true" data-placement="left">Popover on left with title and close button</a>
+      </div>
+      <div class="bs-example" style="margin-top: 40px;">
+        <a href="#" class="btn btn-default" data-toggle="popover" data-html="true" title="" data-content="Close icon with no Title text. This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy." data-close="true" data-placement="left">Popover on left with close button</a>
+      </div>
+      <div class="bs-example" style="margin: 40px 0;">
+        <a href="#" class="btn btn-default" data-toggle="popover" data-html="true" title="Popover on left with title" data-content="Popover with no Close icon.<br>This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy." data-placement="left">Popover on left with title</a>
+      </div>
+      <div class="bs-example" style="margin: 40px 0;">
+        <a href="#" class="btn btn-default" data-toggle="popover" data-html="true" title="" data-content="Empty Title example.<br>This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy." data-placement="left">Popover on left</a>
+      </div>
+      <hr>
+      <div class="bs-example" style="margin-top: 40px;">
+        <a href="#" class="btn btn-default" data-toggle="popover" data-html="true" title="Popover on left with title and close button" data-content="This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy." data-close="true" data-placement="top">Popover on top with title and close button</a>
+      </div>
+      <div class="bs-example" style="margin-top: 40px;">
+        <a href="#" class="btn btn-default" data-toggle="popover" data-html="true" title="" data-content="Close icon with no Title text. This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy." data-close="true" data-placement="top">Popover on top with close button</a>
+      </div>
+      <div class="bs-example" style="margin: 40px 0;">
+        <a href="#" class="btn btn-default" data-toggle="popover" data-html="true" title="Popover on top with title" data-content="Popover with no Close icon.<br>This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy." data-placement="top">Popover on top with title</a>
+      </div>
+      <div class="bs-example" style="margin: 40px 0;">
+        <a href="#" class="btn btn-default" data-toggle="popover" data-html="true" title="" data-content="Empty Title example.<br>This is more information about a smartproxy. This is more information about a smartproxy. This is more information about dataa smartproxy." data-placement="top">Popover on top</a>
+      </div>
+      <hr>
+      <div class="bs-example" style="margin-top: 40px;">
+        <a href="#" class="btn btn-default" data-toggle="popover" data-html="true" title="Popover on left with title and close button" data-content="This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy." data-close="true" data-placement="bottom">Popover on bottom with title and close button</a>
+      </div>
+      <div class="bs-example" style="margin-top: 40px;">
+        <a href="#" class="btn btn-default" data-toggle="popover" data-html="true" title="" data-content="Close icon with no Title text. This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy." data-close="true" data-placement="bottom">Popover on bottom with close button</a>
+      </div>
+      <div class="bs-example" style="margin: 40px 0;">
+        <a href="#" class="btn btn-default" data-toggle="popover" data-html="true" title="Popover on bottom with title" data-content="Popover with no Close icon.<br>This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy." data-placement="bottom">Popover on bottom with title</a>
+      </div>
+      <div class="bs-example" style="margin: 40px 0;">
+        <a href="#" class="btn btn-default" data-toggle="popover" data-html="true" title="" data-content="Empty Title example.<br>This is more information about a smartproxy. This is more information about a smartproxy. This is more information about a smartproxy." data-placement="bottom">Popover on bottom</a>
+      </div>
+      <hr>
+      <form class="form-horizontal">
+  <div class="form-group">
+    <label class="col-sm-3 control-label" for="fieldlevelhelp">Default <a tabindex="0" role="button" data-toggle="popover" data-trigger="focus" data-html="true" title="" data-content="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et <a href='#'>dolore magna aliqua</a>." data-placement="top"><span class="pficon pficon-info"></span></a></label>
+    <div class="col-sm-9">
+      <input type="text" id="fieldlevelhelp" class="form-control">
+    </div>
+  </div>
+</form>
+<script>
+  // Initialize Popovers
+  $(document).ready(function() {
+    $('[data-toggle=popover]').popovers()
+      .on('hidden.bs.popover', function (e) {
+        $(e.target).data('bs.popover').inState.click = false;
+      });
+  });
+</script>
+
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/progress-bars.html b/themes/src/main/node_modules/rcue/tests/progress-bars.html
new file mode 100644
index 0000000..282c82a
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/progress-bars.html
@@ -0,0 +1,335 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Progress Bars - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Progress Bars</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <h2>Basic Example</h2>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
+          <span class="sr-only">60% Complete</span>
+        </div>
+      </div>
+      <h2>With Label</h2>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
+          <span>60% Complete</span>
+        </div>
+      </div>
+      <h2>Contextual Alternatives</h2>
+      <div class="progress">
+        <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
+          <span class="sr-only">40% Complete (success)</span>
+        </div>
+      </div>
+      <div class="progress">
+        <div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%">
+          <span class="sr-only">20% Complete</span>
+        </div>
+      </div>
+      <div class="progress">
+        <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%">
+          <span class="sr-only">60% Complete (warning)</span>
+        </div>
+      </div>
+      <div class="progress">
+        <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
+          <span class="sr-only">80% Complete</span>
+        </div>
+      </div>
+      <h2>Striped</h2>
+      <div class="progress progress-striped">
+        <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
+          <span class="sr-only">40% Complete (success)</span>
+        </div>
+      </div>
+      <div class="progress progress-striped">
+        <div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%">
+          <span class="sr-only">20% Complete</span>
+        </div>
+      </div>
+      <div class="progress progress-striped">
+        <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%">
+          <span class="sr-only">60% Complete (warning)</span>
+        </div>
+      </div>
+      <div class="progress progress-striped">
+        <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%">
+          <span class="sr-only">80% Complete (danger)</span>
+        </div>
+      </div>
+      <h2>Animated</h2>
+      <div class="progress progress-striped active">
+        <div class="progress-bar"  role="progressbar" aria-valuenow="45" aria-valuemin="0" aria-valuemax="100" style="width: 45%">
+          <span class="sr-only">45% Complete</span>
+        </div>
+      </div>
+      <h2>Stacked</h2>
+      <div class="progress">
+        <div class="progress-bar progress-bar-success" style="width: 35%">
+          <span class="sr-only">35% Complete (success)</span>
+        </div>
+        <div class="progress-bar progress-bar-warning" style="width: 20%">
+          <span class="sr-only">20% Complete (warning)</span>
+        </div>
+        <div class="progress-bar progress-bar-danger" style="width: 10%">
+          <span class="sr-only">10% Complete (danger)</span>
+        </div>
+      </div>
+      <h2>PatternFly Examples</h2>
+      <h3>Sizes</h3>
+      <h4>Small</h4>
+      <div class="progress progress-sm">
+        <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
+          <span class="sr-only">60% Complete</span>
+        </div>
+      </div>
+      <div class="progress progress-sm progress-striped active">
+        <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
+          <span class="sr-only">60% Complete</span>
+        </div>
+      </div>
+      <h4>Extra Small</h4>
+      <div class="progress progress-xs">
+        <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
+          <span class="sr-only">60% Complete</span>
+        </div>
+      </div>
+      <div class="progress progress-xs progress-striped active">
+        <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
+          <span class="sr-only">60% Complete</span>
+        </div>
+      </div>
+      <h3>With Label</h3>
+      <h4>Left</h4>
+      <div class="progress progress-label-left">
+        <div class="progress-bar" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;">
+          <span>5%</span>
+        </div>
+      </div>
+      <div class="progress progress-label-left">
+        <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
+          <span>60%</span>
+        </div>
+      </div>
+      <div class="progress progress-label-left">
+        <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;">
+          <span>100%</span>
+        </div>
+      </div>
+      <div class="progress progress-sm progress-label-left">
+        <div class="progress-bar" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;">
+          <span>5%</span>
+        </div>
+      </div>
+      <div class="progress progress-sm progress-label-left">
+        <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
+          <span>60%</span>
+        </div>
+      </div>
+      <div class="progress progress-sm progress-label-left">
+        <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;">
+          <span>100%</span>
+        </div>
+      </div>
+      <h4>Top Left Description and Top Right Label</h4>
+      <div class="progress-description">
+        Network Capacity
+      </div>
+      <div class="progress progress-label-top-right">
+        <div class="progress-bar" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;">
+          <span>5%</span>
+        </div>
+      </div>
+      <div class="progress-description">
+        <div class="spinner spinner-xs spinner-inline"></div> <strong>Downloading:</strong>  Product Repositories
+      </div>
+      <div class="progress progress-label-top-right">
+        <div class="progress-bar" role="progressbar" aria-valuenow="42.7" aria-valuemin="0" aria-valuemax="100" style="width: 42.7%;">
+          <span>42.7% (35 of 82MB)</span>
+        </div>
+      </div>
+      <div class="progress-description">
+        <span class="count">46,512</span> <strong>Downloading:</strong>  Product Repositories
+      </div>
+      <div class="progress progress-label-top-right">
+        <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;">
+          <span>100%</span>
+        </div>
+      </div>
+      <div class="progress-description">
+        <span class="pficon pficon-ok" data-toggle="tooltip" data-placement="top" title="Lorem ipsum dolor sit amet, consectetur adipiscing elit."></span> <strong>Network Activity:</strong>  10.10.121.02
+      </div>
+      <div class="progress progress-label-top-right">
+        <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;">
+          <span>100%</span>
+        </div>
+      </div>
+      <div class="progress-description">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        <strong>Network Activity:</strong>  10.10.121.02
+      </div>
+      <div class="progress progress-label-top-right">
+        <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;">
+          <span>75%</span>
+        </div>
+      </div>
+      <div class="progress-description">
+        <span class="pficon pficon-error-circle-o"></span>
+        <strong>Network Activity:</strong>  10.10.121.02
+      </div>
+      <div class="progress progress-label-top-right">
+        <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="10" aria-valuemin="0" aria-valuemax="100" style="width: 10%;">
+          <span>10%</span>
+        </div>
+      </div>
+      <h4>Left Description</h4>
+      <div class="progress-container progress-description-left">
+        <div class="progress-description">
+          CPU
+        </div>
+        <div class="progress">
+          <div class="progress-bar" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;">
+            <span class="sr-only"><strong>25 of 460</strong> MHz</span>
+          </div>
+        </div>
+      </div>
+      <div class="progress-container progress-description-left">
+        <div class="progress-description">
+          Network Capacity
+        </div>
+        <div class="progress">
+          <div class="progress-bar" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;">
+            <span class="sr-only"><strong>250 of 4600</strong> MHz</span>
+          </div>
+        </div>
+      </div>
+      <h4>Left Description and Right Label</h4>
+      <div class="progress-container progress-description-left progress-label-right">
+        <div class="progress-description">
+          CPU
+        </div>
+        <div class="progress">
+          <div class="progress-bar" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;">
+          <span><strong>25 of 460</strong> MHz</span>
+          </div>
+        </div>
+      </div>
+      <div class="progress-container progress-description-left progress-label-right">
+        <div class="progress-description">
+          Network Capacity
+        </div>
+        <div class="progress">
+          <div class="progress-bar" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;">
+          <span><strong>250 of 4600</strong> MHz</span>
+          </div>
+        </div>
+      </div>
+      <h3>In Table Cell</h3>
+      <table class="table table-bordered table-striped">
+        <thead>
+          <tr>
+            <th>Column heading</th>
+            <th>Column heading</th>
+            <th>Column heading</th>
+          </tr>
+        </thead>
+        <tbody>
+          <tr>
+            <td>Column content</td>
+            <td>
+              <div class="progress progress-sm progress-label-left progress-striped">
+                <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;">
+                  <span>5%</span>
+                </div>
+              </div>
+            </td>
+            <td>Column content</td>
+          </tr>
+          <tr>
+            <td>Column content</td>
+            <td>
+              <div class="progress progress-sm progress-label-left progress-striped">
+                <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
+                  <span>60%</span>
+                </div>
+              </div>
+            </td>
+            <td>Column content</td>
+          </tr>
+          <tr>
+            <td>Column content</td>
+            <td>
+              <div class="progress progress-sm progress-label-left progress-striped">
+                <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;">
+                  <span>100%</span>
+                </div>
+              </div>
+            </td>
+            <td>Column content</td>
+          </tr>
+        </tbody>
+      </table>
+      <h3>With Tooltip</h3>
+      <h4>On Filled Bar</h4>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;" data-toggle="tooltip" title="60% Used">
+          <span class="sr-only">60% Used</span>
+        </div>
+      </div>
+      <h4>On Filled Bar and Negative Space</h4>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;" data-toggle="tooltip" title="60% Used">
+          <span class="sr-only">60% Used</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%;" data-toggle="tooltip" title="40% Available">
+          <span class="sr-only">40% Available</span>
+        </div>
+      </div>
+      <script>
+        // Initialize Tooltip
+        jQuery(document).ready(function() {
+          jQuery('[data-toggle="tooltip"]').tooltip();
+        });
+      </script>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/search.html b/themes/src/main/node_modules/rcue/tests/search.html
new file mode 100644
index 0000000..57a5d58
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/search.html
@@ -0,0 +1,171 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Search - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Search</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <form role="form" class="search-pf has-button">
+        <div class="form-group has-clear">
+          <div class="search-pf-input-group">
+            <label for="search1" class="sr-only">Search</label>
+            <input id="search1" type="search" class="form-control" placeholder="Search">
+            <button type="button" class="clear" aria-hidden="true"><span class="pficon pficon-close"></span></button>
+          </div>
+        </div>
+        <div class="form-group">
+          <button class="btn btn-default" type="submit"><span class="fa fa-search"></span></button>
+        </div>
+      </form>
+      <h2>Pre-populated</h2>
+      <form role="form" class="search-pf has-button">
+        <div class="form-group has-clear">
+          <div class="search-pf-input-group">
+            <label for="search2" class="sr-only">Search</label>
+            <input id="search2" type="search" class="form-control" placeholder="Search" value="Search term">
+            <button type="button" class="clear" aria-hidden="true"><span class="pficon pficon-close"></span></button>
+          </div>
+        </div>
+        <div class="form-group">
+          <button class="btn btn-default" type="submit"><span class="fa fa-search"></span></button>
+        </div>
+      </form>
+      <h2>Without Button</h2>
+      <form role="form" class="search-pf">
+        <div class="form-group has-clear">
+          <div class="search-pf-input-group">
+            <label for="search3" class="sr-only">Search</label>
+            <input id="search3" type="search" class="form-control" placeholder="Search">
+            <button type="button" class="clear" aria-hidden="true"><span class="pficon pficon-close"></span></button>
+          </div>
+        </div>
+      </form>
+      <h2>Without Clear</h2>
+      <form role="form" class="search-pf has-button">
+        <div class="form-group">
+          <div class="search-pf-input-group">
+            <label for="search4" class="sr-only">Search</label>
+            <input id="search4" type="search" class="form-control" placeholder="Search">
+          </div>
+        </div>
+        <div class="form-group">
+          <button class="btn btn-default" type="submit"><span class="fa fa-search"></span></button>
+        </div>
+      </form>
+      <h2>Sizes</h2>
+      <form role="form" class="search-pf has-button">
+        <div class="form-group has-clear">
+          <div class="search-pf-input-group">
+            <label for="search-lg" class="sr-only">Search</label>
+            <input id="search-lg" type="search" class="form-control input-lg" placeholder="Search">
+            <button type="button" class="clear" aria-hidden="true"><span class="pficon pficon-close"></span></button>
+          </div>
+        </div>
+        <div class="form-group">
+          <button class="btn btn-default btn-lg" type="submit"><span class="fa fa-search"></span></button>
+        </div>
+      </form>
+      <br />
+      <form role="form" class="search-pf has-button">
+        <div class="form-group has-clear">
+          <div class="search-pf-input-group">
+            <label for="search5" class="sr-only">Search</label>
+            <input id="search5" type="search" class="form-control" placeholder="Search">
+            <button type="button" class="clear" aria-hidden="true"><span class="pficon pficon-close"></span></button>
+          </div>
+        </div>
+        <div class="form-group">
+          <button class="btn btn-default" type="submit"><span class="fa fa-search"></span></button>
+        </div>
+      </form>
+      <br />
+      <form role="form" class="search-pf has-button">
+        <div class="form-group has-clear">
+          <div class="search-pf-input-group">
+            <label for="search-sm" class="sr-only">Search</label>
+            <input id="search-sm" type="search" class="form-control input-sm" placeholder="Search">
+            <button type="button" class="clear" aria-hidden="true"><span class="pficon pficon-close"></span></button>
+          </div>
+        </div>
+        <div class="form-group">
+          <button class="btn btn-default btn-sm" type="submit"><span class="fa fa-search"></span></button>
+        </div>
+      </form>
+      <h2>Within the grid</h2>
+      <div class="row">
+        <div class="col-md-6">
+          <form role="form" class="search-pf has-button">
+            <div class="form-group has-clear">
+              <div class="search-pf-input-group">
+                <label for="search6" class="sr-only">Search</label>
+                <input id="search6" type="search" class="form-control" placeholder="Search">
+                <button type="button" class="clear" aria-hidden="true"><span class="pficon pficon-close"></span></button>
+              </div>
+            </div>
+            <div class="form-group">
+              <button class="btn btn-default" type="submit"><span class="fa fa-search"></span></button>
+            </div>
+          </form>
+        </div>
+      </div>
+      <script>
+        (function($) {
+          $(document).ready(function() {
+            // Hide the clear button if the search input is empty
+            $(".search-pf .has-clear .clear").each(function() {
+              if (!$(this).prev('.form-control').val()) {
+                $(this).hide();
+              }
+            });
+            // Show the clear button upon entering text in the search input
+            $(".search-pf .has-clear .form-control").keyup(function () {
+              var t = $(this);
+              t.next('button').toggle(Boolean(t.val()));
+            });
+            // Upon clicking the clear button, empty the entered text and hide the clear button
+            $(".search-pf .has-clear .clear").click(function () {
+              $(this).prev('.form-control').val('').focus();
+              $(this).hide();
+            });
+          });
+        })(jQuery);
+      </script>
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/skip-to-content.html b/themes/src/main/node_modules/rcue/tests/skip-to-content.html
new file mode 100644
index 0000000..c79cf73
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/skip-to-content.html
@@ -0,0 +1,49 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Skip to content link - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Skip to content link</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+    <a class="skiplink-pf btn btn-primary" href="#main">Skip to main content</a>
+    <p>When tabbing through the page this link should appear first in order to skip straight to the main content.</p>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/spinner.html b/themes/src/main/node_modules/rcue/tests/spinner.html
new file mode 100644
index 0000000..7849e73
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/spinner.html
@@ -0,0 +1,77 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Spinner - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Spinner</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <div class="spinner"></div>
+      <h2>Sizes</h2>
+      <div class="spinner spinner-lg"></div>
+      <div class="spinner"></div>
+      <div class="spinner spinner-sm"></div>
+      <div class="spinner spinner-xs"></div>
+      <h2>Inline</h2>
+      <h1>
+        <div class="spinner spinner-lg spinner-inline"></div>
+        Inside an &lt;h1&gt;
+      </h1>
+      <h2>
+        <div class="spinner spinner-inline"></div>
+        Inside an &lt;h2&gt;
+      </h2>
+      <h3>
+        <div class="spinner spinner-sm spinner-inline"></div>
+        Inside an &lt;h3&gt;
+      </h3>
+      <p>
+        <div class="spinner spinner-xs spinner-inline"></div>
+        Inside a &lt;p&gt;
+      </p>
+      <h2>On black</h2>
+      <div style="background-color: black; padding: 15px; width: 100px; margin-bottom: 10px;">
+        <div class="spinner spinner-inverse"></div>
+      </div>
+      <p class="text-info">
+        <strong>Note:</strong>  IE9 requires a conditional class on &lt;html&gt; in order to display an animated gif fallback as it doesn't support CSS animation.  View source on this page and see lines 2-5.
+      </p>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/tab.html b/themes/src/main/node_modules/rcue/tests/tab.html
new file mode 100644
index 0000000..66fdd30
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/tab.html
@@ -0,0 +1,850 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Tab - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="//cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js"></script>
+    <script src="//cdn.datatables.net/select/1.2.0/js/dataTables.select.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfEmpty.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfFilter.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfResize.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfSelect.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body>
+    <nav class="navbar navbar-default navbar-pf" role="navigation">
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+        </a>
+      </div>
+      <div class="collapse navbar-collapse navbar-collapse-1">
+        <ul class="nav navbar-nav navbar-utility">
+          <li class="dropdown">
+            <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+              <span title="Help" class="fa pficon-help"></span>
+              <span class="caret"></span>
+            </a>
+            <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+              <li><a href="#0">Help</a></li>
+              <li><a href="#0">About</a></li>
+            </ul>
+          </li>
+          <li class="dropdown">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+              <span class="pficon pficon-user"></span>
+              Brian Johnson <b class="caret"></b>
+            </a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-submenu">
+                <a tabindex="-1" href="#0">More options</a>
+                <ul class="dropdown-menu">
+                  <li>
+                    <a href="#0">Link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Another link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Something else here</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li class="dropdown-header">Nav header</li>
+                  <li>
+                    <a href="#0">Separated link</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li>
+                    <a href="#0">One more separated link</a>
+                  </li>
+                </ul>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+        <ul class="nav navbar-nav navbar-primary">
+          <li>
+            <a href="basic.html">Basic</a>
+          </li>
+          <li>
+            <a href="bootstrap-treeview-2.html">Tree View</a>
+          </li>
+          <li>
+            <a href="dashboard.html">Dashboard</a>
+          </li>
+          <li>
+            <a href="form.html">Form</a>
+          </li>
+          <li class="active">
+            <a href="tab.html" class="active">Tab</a>
+          </li>
+          <li>
+            <a href="typography-2.html">Typography</a>
+          </li>
+          <li>
+            <a href="card-view-multi-select.html">Card View - Multi Select</a>
+          </li>
+          <li>
+            <a href="card-view-single-select.html">Card View - Single Select</a>
+          </li>
+          <li>
+            <a href="cards.html">Cards</a>
+          </li>
+          <li>
+            <a href="pagination-card-view.html">Pagination - Card View</a>
+          </li>
+        </ul>
+      </div>
+    </nav>
+
+    <div class="container-fluid">
+      <div class="row">
+        <div class="col-sm-9 col-md-10 col-sm-push-3 col-md-push-2">
+          <ol class="breadcrumb">
+            <li><a href="#">Home</a></li>
+            <li>Tab</li>
+          </ol>
+          <h1>Tab</h1>
+           <!--Note: the markup semantics used to create "nested" tabs are sub-optimal in order to easily achieve a responsive layout.-->
+           <ul class="nav nav-tabs">
+            <li class="active"><a href="#">Tab One</a></li>
+            <li><a href="#">Tab Two</a></li>
+            <li><a href="#">Tab Three</a></li>
+            <li><a href="#">Tab Four</a></li>
+            <li><a href="#">Tab Five</a></li>
+            <li><a href="#">Tab Six</a></li>
+            <li><a href="#">Tab Seven</a></li>
+          </ul>
+          <ul class="nav nav-tabs nav-tabs-pf">
+            <li class="active"><a href="#">Secondary Tab One</a></li>
+            <li><a href="#">Secondary Tab Two</a></li>
+            <li><a href="#">Secondary Tab Three</a></li>
+            <li><a href="#">Secondary Tab Four</a></li>
+            <li><a href="#">Secondary Tab Five</a></li>
+          </ul>
+<!-- Toolbar -->
+<div class="row toolbar-pf table-view-pf-toolbar" id="toolbar1">
+  <div class="col-sm-12">
+    <form class="toolbar-pf-actions">
+      <div class="form-group toolbar-pf-filter">
+        <label class="sr-only" for="filter">Rendering Engine</label>
+        <div class="input-group">
+          <div class="input-group-btn">
+            <button type="button" class="btn btn-default dropdown-toggle" id="filter" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Rendering Engine <span class="caret"></span></button>
+            <ul class="dropdown-menu">
+              <li><a href="#" id="filter1">Rendering Engine</a></li>
+              <li><a href="#" id="filter2">Browser</a></li>
+              <li><a href="#" id="filter3">Platform(s)</a></li>
+              <li><a href="#" id="filter4">Engine Version</a></li>
+              <li><a href="#" id="filter5">CSS Grade</a></li>
+            </ul>
+          </div>
+          <input type="text" class="form-control" placeholder="Filter By Rendering Engine..." autocomplete="off" id="filterInput">
+        </div>
+      </div>
+      <div class="form-group">
+        <button class="btn btn-default" type="button" id="deleteRows1">Delete Rows</button>
+        <button class="btn btn-default" type="button" id="restoreRows1" disabled>Restore Rows</button>
+        <div class="dropdown btn-group  dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebab" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu " aria-labelledby="dropdownKebab">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+      </div>
+      <div class="toolbar-pf-action-right">
+        <div class="form-group toolbar-pf-find">
+          <button class="btn btn-link btn-find" type="button">
+            <span class="fa fa-search"></span>
+          </button>
+          <div class="find-pf-dropdown-container">
+            <input type="text" class="form-control" id="find" placeholder="Find By Keyword...">
+            <div class="find-pf-buttons">
+              <span class="find-pf-nums">1 of 3</span>
+              <button class="btn btn-link" type="button">
+                <span class="fa fa-angle-up"></span>
+              </button>
+              <button class="btn btn-link" type="button">
+                <span class="fa fa-angle-down"></span>
+              </button>
+              <button class="btn btn-link btn-find-close" type="button">
+                <span class="pficon pficon-close"></span>
+              </button>
+            </div>
+          </div>
+        </div>
+      </div>
+    </form>
+    <div class="row toolbar-pf-results">
+      <div class="col-sm-9">
+        <div class="hidden">
+          <h5>0 Results</h5>
+          <p>Active filters:</p>
+          <ul class="list-inline"></ul>
+          <p><a href="#">Clear All Filters</a></p>
+        </div>
+      </div>
+      <div class="col-sm-3 table-view-pf-select-results">
+        <strong>0</strong> of <strong>0</strong> selected
+      </div>
+    </div>
+  </div>
+</div>
+
+<!-- Table HTML -->
+<table class="table table-striped table-bordered table-hover" id="table1">
+  <thead>
+    <tr>
+      <th><label class="sr-only" for="selectAll">Select all rows</label><input type="checkbox" id="selectAll" name="selectAll"></th>
+      <th>Rendering Engine</th>
+      <th>Browser</th>
+      <th>Platform(s)</th>
+      <th>Engine Version</th>
+      <th>CSS Grade</th>
+      <th colspan="2">Actions</th>
+    </tr>
+  </thead>
+</table>
+
+<form class="content-view-pf-pagination table-view-pf-pagination clearfix" id="pagination1">
+  <div class="form-group">
+    <select class="selectpicker pagination-pf-pagesize">
+      <option value="6">6</option>
+      <option value="10" >10</option>
+      <option value="15" selected="selected">15</option>
+      <option value="25">25</option>
+      <option value="50">50</option>
+    </select>
+    <span>per page</span>
+  </div>
+  <div class="form-group">
+    <span><span class="pagination-pf-items-current">1-15</span> of <span class="pagination-pf-items-total">75</span></span>
+    <ul class="pagination pagination-pf-back">
+      <li class="disabled"><a href="#" title="First Page"><span class="i fa fa-angle-double-left"></span></a></li>
+      <li class="disabled"><a href="#" title="Previous Page"><span class="i fa fa-angle-left"></span></a></li>
+    </ul>
+    <label for="pagination1-page" class="sr-only">Current Page</label>
+    <input class="pagination-pf-page" type="text" value="1" id="pagination1-page"/>
+    <span>of <span class="pagination-pf-pages">5</span></span>
+    <ul class="pagination pagination-pf-forward">
+      <li><a href="#" title="Next Page"><span class="i fa fa-angle-right"></span></a></li>
+      <li><a href="#" title="Last Page"><span class="i fa fa-angle-double-right"></span></a></li>
+    </ul>
+  </div>
+</form>
+
+<!-- Blank Slate HTML -->
+<div class="blank-slate-pf table-view-pf-empty hidden" id="emptyState1">
+  <div class="blank-slate-pf-icon">
+    <span class="pficon pficon pficon-add-circle-o"></span>
+  </div>
+  <h1>
+    Empty State Title
+  </h1>
+  <p>
+    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
+  </p>
+  <p>
+    Learn more about this <a href="#">on the documentation</a>.
+  </p>
+  <div class="blank-slate-pf-main-action">
+    <button class="btn btn-primary btn-lg"> Main Action </button>
+  </div>
+  <div class="blank-slate-pf-secondary-action">
+    <button class="btn btn-default">Secondary Action</button>
+    <button class="btn btn-default">Secondary Action</button>
+  </div>
+</div>
+
+<script>
+$(document).ready(function() {
+
+// JSON data for Table View
+var dataSet = [{
+  engine: "Trident",
+  browser: "Internet Explorer 4.0",
+  platforms: "Win 95+",
+  version: "4",
+  grade: "X"
+},{
+  engine: "Trident",
+  browser: "Internet Explorer 5.0",
+  platforms: "Win 95+",
+  version: "5",
+  grade: "C"
+}, {
+  engine: "Trident",
+  browser: "Internet Explorer 5.5",
+  platforms: "Win 95+",
+  version: "5.5",
+  grade: "A"
+}, {
+  engine: "Trident",
+  browser: "Internet Explorer 6",
+  platforms: "Win 98+",
+  version: "6",
+  grade: "A"
+}, {
+  engine: "Trident",
+  browser: "Internet Explorer 7",
+  platforms: "Win XP SP2+",
+  version: "7",
+  grade: "A"
+}, {
+  engine: "Trident",
+  browser: "AOL browser (AOL desktop)",
+  platforms: "Win XP",
+  version: "6",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 1.0",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 1.5",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 2.0",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 3.0",
+  platforms: "Win 2k+ / OSX.3+",
+  version: "1.9",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Camino 1.0",
+  platforms: "OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Camino 1.5",
+  platforms: "OSX.3+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Netscape 7.2",
+  platforms: "Win 95+ / Mac OS 8.6-9.2",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Netscape Browser 8",
+  platforms: "Win 98SE+",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Netscape Navigator 9",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.0",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.1",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.1",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.2",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.2",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.3",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.3",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.4",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.4",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.5",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.5",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.6",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.6",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.7",
+  platforms: "Win 98+ / OSX.1+",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.8",
+  platforms: "Win 98+ / OSX.1+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Seamonkey 1.1",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Epiphany 2.20",
+  platforms: "Gnome",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 1.2",
+  platforms: "OSX.3",
+  version: "125.5",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 1.3",
+  platforms: "OSX.3",
+  version: "312.8",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 2.0",
+  platforms: "OSX.4+",
+  version: "419.3",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 3.0",
+  platforms: "OSX.4+",
+  version: "522.1",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "OmniWeb 5.5",
+  platforms: "OSX.4+",
+  version: "420",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "iPod Touch / iPhone",
+  platforms: "iPod",
+  version: "420.1",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "S60",
+  platforms: "S60",
+  version: "413",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 7.0",
+  platforms: "Win 95+ / OSX.1+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 7.5",
+  platforms: "Win 95+ / OSX.2+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 8.0",
+  platforms: "Win 95+ / OSX.2+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 8.5",
+  platforms: "Win 95+ / OSX.2+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 9.0",
+  platforms: "Win 95+ / OSX.3+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 9.2",
+  platforms: "Win 88+ / OSX.3+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 9.5",
+  platforms: "Win 88+ / OSX.3+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera for Wii",
+  platforms: "Wii",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Nokia N800",
+  platforms: "N800",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Nintendo DS browser",
+  platforms: "Nintendo DS",
+  version: "8.5",
+  grade: "C/A<sup>1</sup>"
+}, {
+  engine: "KHTML",
+  browser: "Konqureror 3.1",
+  platforms: "KDE 3.1",
+  version: "3.1",
+  grade: "C"
+}, {
+  engine: "KHTML",
+  browser: "Konqureror 3.3",
+  platforms: "KDE 3.3",
+  version: "3.3",
+  grade: "A"
+}, {
+  engine: "KHTML",
+  browser: "Konqureror 3.5",
+  platforms: "KDE 3.5",
+  version: "3.5",
+  grade: "A"
+}, {
+  engine: "Tasman",
+  browser: "Internet Explorer 4.5",
+  platforms: "Mac OS 8-9",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Tasman",
+  browser: "Internet Explorer 5.1",
+  platforms: "Mac OS 7.6-9",
+  version: "1",
+  grade: "C"
+}, {
+  engine: "Tasman",
+  browser: "Internet Explorer 5.2",
+  platforms: "Mac OS 8-X",
+  version: "1",
+  grade: "C"
+}, {
+  engine: "Misc",
+  browser: "NetFront 3.1",
+  platforms: "Embedded devices",
+  version: "-",
+  grade: "C"
+}, {
+  engine: "Misc",
+  browser: "NetFront 3.4",
+  platforms: "Embedded devices",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Misc",
+  browser: "Dillo 0.8",
+  platforms: "Embedded devices",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Misc",
+  browser: "Links",
+  platforms: "Text only",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Misc",
+  browser: "Lynx",
+  platforms: "Text only",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Misc",
+  browser: "IE Mobile",
+  platforms: "Windows Mobile 6",
+  version: "-",
+  grade: "C"
+}, {
+  engine: "Misc",
+  browser: "PSP browser",
+  platforms: "PSP",
+  version: "-",
+  grade: "C"
+}, {
+  engine: "Other browsers",
+  browser: "All others",
+  platforms: "-",
+  version: "-",
+  grade: "U"
+}];
+
+// DataTable Config
+$("#table1").DataTable({
+  columns: [
+    { data: null,
+      className: "table-view-pf-select",
+      render: function (data, type, full, meta) {
+        // Select row checkbox renderer
+        var id = "select" + meta.row;
+        return '<label class="sr-only" for="' + id + '">Select row ' + meta.row +
+          '</label><input type="checkbox" id="' + id + '" name="' + id + '">';
+      },
+      sortable: false
+    },
+    { data: "engine" },
+    { data: "browser" },
+    { data: "platforms" },
+    { data: "version" },
+    { data: "grade"},
+    { data: null,
+      className: "table-view-pf-actions",
+      render: function (data, type, full, meta) {
+        // Inline action button renderer
+        return '<div class="table-view-pf-btn"><button class="btn btn-default" type="button">Actions</button></div>';
+      }
+    }, {
+      data: null,
+      className: "table-view-pf-actions",
+      render: function (data, type, full, meta) {
+        // Inline action kebab renderer
+        return '<div class="dropdown dropdown-kebab-pf">' +
+          '<button class="btn btn-default dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">' +
+          '<span class="fa fa-ellipsis-v"></span></button>' +
+          '<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight">' +
+          '<li><a href="#">Action</a></li>' +
+          '<li><a href="#">Another action</a></li>' +
+          '<li><a href="#">Something else here</a></li>' +
+          '<li role="separator" class="divider"></li>' +
+          '<li><a href="#">Separated link</a></li></ul></div>';
+      }
+    }
+  ],
+  data: dataSet,
+  dom: "t",
+  language: {
+    zeroRecords: "No records found"
+  },
+  order: [[ 1, 'asc' ]],
+  pfConfig: {
+    emptyStateSelector: "#emptyState1",
+    filterCaseInsensitive: true,
+    filterCols: [
+      null,
+      {
+        default: true,
+        optionSelector: "#filter1",
+        placeholder: "Filter By Rendering Engine..."
+      }, {
+        optionSelector: "#filter2",
+        placeholder: "Filter By Browser..."
+      }, {
+        optionSelector: "#filter3",
+        placeholder: "Filter By Platform(s)..."
+      }, {
+        optionSelector: "#filter4",
+        placeholder: "Filter By Engine Version..."
+      }, {
+        optionSelector: "#filter5",
+        placeholder: "Filter By CSS Grade..."
+      }
+    ],
+    paginationSelector: "#pagination1",
+    toolbarSelector: "#toolbar1",
+    selectAllSelector: 'th:first-child input[type="checkbox"]',
+    colvisMenuSelector: '.table-view-pf-colvis-menu'
+  },
+  select: {
+    selector: 'td:first-child input[type="checkbox"]',
+    style: 'multi'
+  },
+});
+
+/**
+ * Utility to show empty Table View
+ *
+ * @param {object} config - Config properties associated with a Table View
+ * @param {object} config.data - Data set for DataTable
+ * @param {string} config.deleteRowsSelector - Selector for delete rows control
+ * @param {string} config.restoreRowsSelector - Selector for restore rows control
+ * @param {string} config.tableSelector - Selector for the HTML table
+ */
+var emptyTableViewUtil = function (config) {
+  var self = this;
+
+  this.dt = $(config.tableSelector).DataTable(); // DataTable
+  this.deleteRows = $(config.deleteRowsSelector); // Delete rows control
+  this.restoreRows = $(config.restoreRowsSelector); // Restore rows control
+
+  // Handle click on delete rows control
+  this.deleteRows.on('click', function() {
+    self.dt.clear().draw();
+    $(self.restoreRows).prop("disabled", false);
+  });
+
+  // Handle click on restore rows control
+  this.restoreRows.on('click', function() {
+    self.dt.rows.add(config.data).draw();
+    $(this).prop("disabled", true);
+  });
+
+  // Initialize restore rows
+  if (this.dt.data().length === 0) {
+    $(this.restoreRows).prop("disabled", false);
+  }
+};
+
+// Initialize empty Table View util
+new emptyTableViewUtil({
+  data: dataSet,
+  deleteRowsSelector: "#deleteRows1",
+  restoreRowsSelector: "#restoreRows1",
+  tableSelector: "#table1"
+});
+
+/**
+ * Utility to find items in Table View
+ */
+var findTableViewUtil = function (config) {
+  // Upon clicking the find button, show the find dropdown content
+  $(".btn-find").click(function () {
+    $(this).parent().find(".find-pf-dropdown-container").toggle();
+  });
+
+  // Upon clicking the find close button, hide the find dropdown content
+  $(".btn-find-close").click(function () {
+    $(".find-pf-dropdown-container").hide();
+  });
+};
+
+// Initialize find util
+new findTableViewUtil();
+
+});
+</script>
+
+
+          <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vestibulum eget eros tincidunt, semper ante nec, dapibus ante.</p>
+        </div><!-- /col -->
+        <div class="col-sm-3 col-md-2 col-sm-pull-9 col-md-pull-10 sidebar-pf sidebar-pf-left">
+          <div class="nav-category">
+            <h2>First Category</h2>
+            <ul class="nav nav-pills nav-stacked">
+              <li class="active"><a href="#"><i class="fa fa-desktop"></i>System Information</a></li>
+              <li><a href="#"><i class="fa fa-cog"></i>System Services</a></li>
+              <li><a href="#"><i class="fa fa-file-text-o"></i>Journal</a></li>
+              <li><a href="#"><i class="fa fa-cloud"></i>Storage</a></li>
+            </ul>
+          </div>
+          <div class="nav-category">
+            <h2>Second Category</h2>
+            <ul class="nav nav-pills nav-stacked">
+              <li><a href="#">User Accounts</a></li>
+              <li><a href="#">Containers</a></li>
+              <li><a href="#">Shutdown and Reboot</a></li>
+            </ul>
+          </div>
+        </div><!-- /col -->
+      </div><!-- /row -->
+    </div><!-- /container -->
+    <script>
+      $(document).ready(function () {
+        $("#table1").DataTable().on("draw.dt", function () {
+          // if .sidebar-pf exists, call sidebar() after the data table is drawn
+          if ($('.sidebar-pf').length > 0) {
+            $(document).sidebar();
+          }
+        });
+      });
+    </script>
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/tables.html b/themes/src/main/node_modules/rcue/tests/tables.html
new file mode 100644
index 0000000..55e7b76
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/tables.html
@@ -0,0 +1,540 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Tables - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Tables</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <h2>PatternFly recommendation:  Bootstrap striped, bordered, hover, and responsive</h2>
+      <div class="table-responsive">
+        <table class="table table-striped table-bordered table-hover">
+          <thead>
+            <tr>
+              <th>Session</th>
+              <th class="text-right">Course Number</th>
+              <th>Title</th>
+              <th>Level</th>
+              <th>Course Format</th>
+              <th>Days</th>
+              <th class="text-right">CRN</th>
+            </tr>
+          </thead>
+          <tbody>
+            <tr>
+              <td><a href="#">Winter 2014 Full-Term Session</a></td>
+              <td class="text-right">CMN 6020</td>
+              <td>Ethical Issues in Organizational Communication</td>
+              <td>Graduate</td>
+              <td>Online</td>
+              <td>T </td>
+              <td class="text-right">20115</td>
+            </tr>
+            <tr>
+              <td><a href="#">Winter 2014 Full-Term Session</a></td>
+              <td class="text-right">CMN 6020</td>
+              <td>Ethical Issues in Organizational Communication</td>
+              <td>Graduate</td>
+              <td>Online</td>
+              <td>W </td>
+              <td class="text-right">21509</td>
+            </tr>
+            <tr>
+              <td><a href="#">Winter 2014 Full-Term Session</a></td>
+              <td class="text-right">CMN 6050</td>
+              <td>Crisis Communication</td>
+              <td>Graduate</td>
+              <td>Online</td>
+              <td>W </td>
+              <td class="text-right">20915</td>
+            </tr>
+            <tr>
+              <td><a href="#">Winter 2014 Full-Term Session</a></td>
+              <td class="text-right">CMN 6050</td>
+              <td>Crisis Communication</td>
+              <td>Graduate</td>
+              <td>Online</td>
+              <td>Th </td>
+              <td class="text-right">21550</td>
+            </tr>
+            <tr>
+              <td><a href="#">Winter 2014 Full-Term Session</a></td>
+              <td class="text-right">CMN 6060</td>
+              <td>Negotiation, Mediation, and Facilitation</td>
+              <td>Graduate</td>
+              <td>Online</td>
+              <td>Th </td>
+              <td class="text-right">20119</td>
+            </tr>
+            <tr>
+              <td><a href="#">Winter 2014 Full-Term Session</a></td>
+              <td class="text-right">CMN 6060</td>
+              <td>Negotiation, Mediation, and Facilitation</td>
+              <td>Graduate</td>
+              <td>Online</td>
+              <td>T </td>
+              <td class="text-right">20122</td>
+            </tr>
+            <tr>
+              <td><a href="#">Winter 2014 Full-Term Session</a></td>
+              <td class="text-right">CMN 6060</td>
+              <td>Negotiation, Mediation, and Facilitation</td>
+              <td>Graduate</td>
+              <td>Online</td>
+              <td>T </td>
+              <td class="text-right">21511</td>
+            </tr>
+            <tr>
+              <td><a href="#">Winter 2014 Full-Term Session</a></td>
+              <td class="text-right">CMN 6060</td>
+              <td>Negotiation, Mediation, and Facilitation</td>
+              <td>Graduate</td>
+              <td>Online</td>
+              <td>Th </td>
+              <td class="text-right">21330</td>
+            </tr>
+            <tr>
+              <td><a href="#">Winter 2014 Full-Term Session</a></td>
+              <td class="text-right">CMN 6061</td>
+              <td>Personal Branding</td>
+              <td>Graduate</td>
+              <td>Online</td>
+              <td>Th </td>
+              <td class="text-right">20124</td>
+            </tr>
+            <tr>
+              <td><a href="#">Winter 2014 Full-Term Session</a></td>
+              <td class="text-right">CMN 6080</td>
+              <td>Intercultural Communication</td>
+              <td>Graduate</td>
+              <td>Online</td>
+              <td>W </td>
+              <td class="text-right">20126</td>
+            </tr>
+          </tbody>
+        </table>
+      </div>
+      <hr>
+      <h2>TreeGrid tables</h2>
+      <div class="table-responsive">
+        <table class="table table-bordered table-hover table-treegrid">
+          <thead>
+            <tr>
+              <th>Column heading</th>
+              <th>Column heading</th>
+              <th>Column heading</th>
+              <th>Column heading</th>
+            </tr>
+          </thead>
+          <tbody>
+            <tr>
+              <td class="treegrid-node">
+                <span class="icon node-icon fa fa-folder"></span>
+                Parent 1
+              </td>
+              <td>Column content</td>
+              <td>Column content</td>
+              <td>Column content</td>
+            </tr>
+            <tr data-parent="0">
+              <td class="treegrid-node">
+                <span class="icon node-icon fa fa-file-o"></span>
+                Child 1
+              </td>
+              <td>Column content</td>
+              <td>Column content</td>
+              <td>Column content</td>
+            </tr>
+            <tr data-parent="1">
+              <td class="treegrid-node">
+                <span class="icon node-icon fa fa-file-o"></span>
+                Grandchild 1
+              </td>
+              <td>Column content</td>
+              <td>Column content</td>
+              <td>Column content</td>
+            </tr>
+            <tr data-parent="1">
+              <td class="treegrid-node">
+                <span class="icon node-icon fa fa-file-o"></span>
+                Grandchild 2
+              </td>
+              <td>Column content</td>
+              <td>Column content</td>
+              <td>Column content</td>
+            </tr>
+            <tr data-parent="1">
+              <td class="treegrid-node">
+                <span class="icon node-icon fa fa-file-o"></span>
+                Grandchild 3
+              </td>
+              <td>Column content</td>
+              <td>Column content</td>
+              <td>Column content</td>
+            </tr>
+            <tr data-parent="0">
+              <td class="treegrid-node">
+                <span class="icon node-icon fa fa-file-o"></span>
+                Child 2
+              </td>
+              <td>Column content</td>
+              <td>Column content</td>
+              <td>Column content</td>
+            </tr>
+            <tr>
+              <td class="treegrid-node">
+                <span class="icon node-icon fa fa-folder"></span>
+                Parent 2
+              </td>
+              <td>Column content</td>
+              <td>Column content</td>
+              <td>Column content</td>
+            </tr>
+            <tr id="parent-3">
+              <td class="treegrid-node">
+                <span class="icon node-icon fa fa-folder"></span>
+                Parent 3
+              </td>
+              <td>Column content</td>
+              <td>Column content</td>
+              <td>Column content</td>
+            </tr>
+            <tr data-parent="#parent-3">
+              <td class="treegrid-node">
+                <span class="icon node-icon fa fa-file-o"></span>
+                Child 3
+              </td>
+              <td>Column content</td>
+              <td>Column content</td>
+              <td>Column content</td>
+            </tr>
+            <tr id="parent-4" class="collapsed">
+              <td class="treegrid-node">
+                <span class="icon node-icon fa fa-folder"></span>
+                Parent 4
+              </td>
+              <td>Column content</td>
+              <td>Column content</td>
+              <td>Column content</td>
+            </tr>
+            <tr data-parent="#parent-4" id="child-4">
+              <td class="treegrid-node">
+                <span class="icon node-icon fa fa-file-o"></span>
+                Child 4
+              </td>
+              <td>Column content</td>
+              <td>Column content</td>
+              <td>Column content</td>
+            </tr>
+            <tr data-parent="#child-4">
+              <td class="treegrid-node">
+                <span class="icon node-icon fa fa-file-o"></span>
+                Grandchild 4
+              </td>
+              <td>Column content</td>
+              <td>Column content</td>
+              <td>Column content</td>
+            </tr>
+          </tbody>
+        </table>
+      </div>
+      <script>
+        $('.table-treegrid').treegrid();
+      </script>
+      <hr>
+      <h2>Bootstrap examples</h2>
+      <h3>Basic example</h3>
+      <table class="table">
+        <caption>Optional table caption.</caption>
+        <thead>
+          <tr>
+            <th>#</th>
+            <th>First Name</th>
+            <th>Last Name</th>
+            <th>Username</th>
+          </tr>
+        </thead>
+        <tbody>
+          <tr>
+            <th scope="row">1</th>
+            <td>Mark</td>
+            <td>Otto</td>
+            <td>@mdo</td>
+          </tr>
+          <tr>
+            <th scope="row">2</th>
+            <td>Jacob</td>
+            <td>Thornton</td>
+            <td>@fat</td>
+          </tr>
+          <tr>
+            <th scope="row">3</th>
+            <td>Larry</td>
+            <td>the Bird</td>
+            <td>@twitter</td>
+          </tr>
+        </tbody>
+      </table>
+      <h3>Striped rows</h3>
+      <table class="table table-striped">
+        <thead>
+          <tr>
+            <th>#</th>
+            <th>First Name</th>
+            <th>Last Name</th>
+            <th>Username</th>
+          </tr>
+        </thead>
+        <tbody>
+          <tr>
+            <th scope="row">1</th>
+            <td>Mark</td>
+            <td>Otto</td>
+            <td>@mdo</td>
+          </tr>
+          <tr>
+            <th scope="row">2</th>
+            <td>Jacob</td>
+            <td>Thornton</td>
+            <td>@fat</td>
+          </tr>
+          <tr>
+            <th scope="row">3</th>
+            <td>Larry</td>
+            <td>the Bird</td>
+            <td>@twitter</td>
+          </tr>
+        </tbody>
+      </table>
+      <h3>Bordered table</h3>
+      <table class="table table-bordered">
+        <thead>
+          <tr>
+            <th>#</th>
+            <th>First Name</th>
+            <th>Last Name</th>
+            <th>Username</th>
+          </tr>
+        </thead>
+        <tbody>
+          <tr>
+            <th scope="row">1</th>
+            <td>Mark</td>
+            <td>Otto</td>
+            <td>@mdo</td>
+          </tr>
+          <tr>
+            <th scope="row">2</th>
+            <td>Jacob</td>
+            <td>Thornton</td>
+            <td>@fat</td>
+          </tr>
+          <tr>
+            <th scope="row">3</th>
+            <td>Larry</td>
+            <td>the Bird</td>
+            <td>@twitter</td>
+          </tr>
+        </tbody>
+      </table>
+      <h3>Hover rows</h3>
+      <table class="table table-hover">
+        <thead>
+          <tr>
+            <th>#</th>
+            <th>First Name</th>
+            <th>Last Name</th>
+            <th>Username</th>
+          </tr>
+        </thead>
+        <tbody>
+          <tr>
+            <th scope="row">1</th>
+            <td>Mark</td>
+            <td>Otto</td>
+            <td>@mdo</td>
+          </tr>
+          <tr>
+            <th scope="row">2</th>
+            <td>Jacob</td>
+            <td>Thornton</td>
+            <td>@fat</td>
+          </tr>
+          <tr>
+            <th scope="row">3</th>
+            <td>Larry</td>
+            <td>the Bird</td>
+            <td>@twitter</td>
+          </tr>
+        </tbody>
+      </table>
+      <h3>Condensed table</h3>
+      <table class="table table-condensed">
+        <thead>
+          <tr>
+            <th>#</th>
+            <th>First Name</th>
+            <th>Last Name</th>
+            <th>Username</th>
+          </tr>
+        </thead>
+        <tbody>
+          <tr>
+            <th scope="row">1</th>
+            <td>Mark</td>
+            <td>Otto</td>
+            <td>@mdo</td>
+          </tr>
+          <tr>
+            <th scope="row">2</th>
+            <td>Jacob</td>
+            <td>Thornton</td>
+            <td>@fat</td>
+          </tr>
+          <tr>
+            <th scope="row">3</th>
+            <td>Larry</td>
+            <td>the Bird</td>
+            <td>@twitter</td>
+          </tr>
+        </tbody>
+      </table>
+      <h3>Contextual classes</h3>
+      <table class="table">
+        <thead>
+          <tr>
+            <th>#</th>
+            <th>Column heading</th>
+            <th>Column heading</th>
+            <th>Column heading</th>
+          </tr>
+        </thead>
+        <tbody>
+          <tr class="active">
+            <td>1</td>
+            <td>Column content</td>
+            <td>Column content</td>
+            <td>Column content</td>
+          </tr>
+          <tr>
+            <td>2</td>
+            <td>Column content</td>
+            <td>Column content</td>
+            <td>Column content</td>
+          </tr>
+          <tr class="success">
+            <td>3</td>
+            <td>Column content</td>
+            <td>Column content</td>
+            <td>Column content</td>
+          </tr>
+          <tr>
+            <td>4</td>
+            <td>Column content</td>
+            <td>Column content</td>
+            <td>Column content</td>
+          </tr>
+          <tr class="warning">
+            <td>5</td>
+            <td>Column content</td>
+            <td>Column content</td>
+            <td>Column content</td>
+          </tr>
+          <tr>
+            <td>6</td>
+            <td>Column content</td>
+            <td>Column content</td>
+            <td>Column content</td>
+          </tr>
+          <tr class="danger">
+            <td>7</td>
+            <td>Column content</td>
+            <td>Column content</td>
+            <td>Column content</td>
+          </tr>
+        </tbody>
+      </table>
+      <h3>Responsive tables</h3>
+      <div class="table-responsive">
+        <table class="table">
+          <thead>
+            <tr>
+              <th>#</th>
+              <th>Table heading</th>
+              <th>Table heading</th>
+              <th>Table heading</th>
+              <th>Table heading</th>
+              <th>Table heading</th>
+              <th>Table heading</th>
+            </tr>
+          </thead>
+          <tbody>
+            <tr>
+              <th scope="row">1</th>
+              <td>Table cell</td>
+              <td>Table cell</td>
+              <td>Table cell</td>
+              <td>Table cell</td>
+              <td>Table cell</td>
+              <td>Table cell</td>
+            </tr>
+            <tr>
+              <th scope="row">2</th>
+              <td>Table cell</td>
+              <td>Table cell</td>
+              <td>Table cell</td>
+              <td>Table cell</td>
+              <td>Table cell</td>
+              <td>Table cell</td>
+            </tr>
+            <tr>
+              <th scope="row">3</th>
+              <td>Table cell</td>
+              <td>Table cell</td>
+              <td>Table cell</td>
+              <td>Table cell</td>
+              <td>Table cell</td>
+              <td>Table cell</td>
+            </tr>
+          </tbody>
+        </table>
+      </div>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/table-view.html b/themes/src/main/node_modules/rcue/tests/table-view.html
new file mode 100644
index 0000000..33e6f26
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/table-view.html
@@ -0,0 +1,689 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Table View - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="//cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js"></script>
+    <script src="//cdn.datatables.net/select/1.2.0/js/dataTables.select.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfEmpty.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfFilter.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfPagination.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfResize.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfSelect.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Table View</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://datatables.net" class="alert-link">http://datatables.net</a>.
+      </div>
+      <hr>
+<!-- Toolbar -->
+<div class="row toolbar-pf table-view-pf-toolbar" id="toolbar1">
+  <div class="col-sm-12">
+    <form class="toolbar-pf-actions">
+      <div class="form-group toolbar-pf-filter">
+        <label class="sr-only" for="filter">Rendering Engine</label>
+        <div class="input-group">
+          <div class="input-group-btn">
+            <button type="button" class="btn btn-default dropdown-toggle" id="filter" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Rendering Engine <span class="caret"></span></button>
+            <ul class="dropdown-menu">
+              <li><a href="#" id="filter1">Rendering Engine</a></li>
+              <li><a href="#" id="filter2">Browser</a></li>
+              <li><a href="#" id="filter3">Platform(s)</a></li>
+              <li><a href="#" id="filter4">Engine Version</a></li>
+              <li><a href="#" id="filter5">CSS Grade</a></li>
+            </ul>
+          </div>
+          <input type="text" class="form-control" placeholder="Filter By Rendering Engine..." autocomplete="off" id="filterInput">
+        </div>
+      </div>
+      <div class="form-group">
+        <button class="btn btn-default" type="button" id="deleteRows1">Delete Rows</button>
+        <button class="btn btn-default" type="button" id="restoreRows1" disabled>Restore Rows</button>
+        <div class="dropdown btn-group  dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebab" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu " aria-labelledby="dropdownKebab">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+      </div>
+      <div class="toolbar-pf-action-right">
+        <div class="form-group toolbar-pf-find">
+          <button class="btn btn-link btn-find" type="button">
+            <span class="fa fa-search"></span>
+          </button>
+          <div class="find-pf-dropdown-container">
+            <input type="text" class="form-control" id="find" placeholder="Find By Keyword...">
+            <div class="find-pf-buttons">
+              <span class="find-pf-nums">1 of 3</span>
+              <button class="btn btn-link" type="button">
+                <span class="fa fa-angle-up"></span>
+              </button>
+              <button class="btn btn-link" type="button">
+                <span class="fa fa-angle-down"></span>
+              </button>
+              <button class="btn btn-link btn-find-close" type="button">
+                <span class="pficon pficon-close"></span>
+              </button>
+            </div>
+          </div>
+        </div>
+      </div>
+    </form>
+    <div class="row toolbar-pf-results">
+      <div class="col-sm-9">
+        <div class="hidden">
+          <h5>0 Results</h5>
+          <p>Active filters:</p>
+          <ul class="list-inline"></ul>
+          <p><a href="#">Clear All Filters</a></p>
+        </div>
+      </div>
+      <div class="col-sm-3 table-view-pf-select-results">
+        <strong>0</strong> of <strong>0</strong> selected
+      </div>
+    </div>
+  </div>
+</div>
+
+<!-- Table HTML -->
+<table class="table table-striped table-bordered table-hover" id="table1">
+  <thead>
+    <tr>
+      <th><label class="sr-only" for="selectAll">Select all rows</label><input type="checkbox" id="selectAll" name="selectAll"></th>
+      <th>Rendering Engine</th>
+      <th>Browser</th>
+      <th>Platform(s)</th>
+      <th>Engine Version</th>
+      <th>CSS Grade</th>
+      <th colspan="2">Actions</th>
+    </tr>
+  </thead>
+</table>
+
+<form class="content-view-pf-pagination table-view-pf-pagination clearfix" id="pagination1">
+  <div class="form-group">
+    <select class="selectpicker pagination-pf-pagesize">
+      <option value="6">6</option>
+      <option value="10" >10</option>
+      <option value="15" selected="selected">15</option>
+      <option value="25">25</option>
+      <option value="50">50</option>
+    </select>
+    <span>per page</span>
+  </div>
+  <div class="form-group">
+    <span><span class="pagination-pf-items-current">1-15</span> of <span class="pagination-pf-items-total">75</span></span>
+    <ul class="pagination pagination-pf-back">
+      <li class="disabled"><a href="#" title="First Page"><span class="i fa fa-angle-double-left"></span></a></li>
+      <li class="disabled"><a href="#" title="Previous Page"><span class="i fa fa-angle-left"></span></a></li>
+    </ul>
+    <label for="pagination1-page" class="sr-only">Current Page</label>
+    <input class="pagination-pf-page" type="text" value="1" id="pagination1-page"/>
+    <span>of <span class="pagination-pf-pages">5</span></span>
+    <ul class="pagination pagination-pf-forward">
+      <li><a href="#" title="Next Page"><span class="i fa fa-angle-right"></span></a></li>
+      <li><a href="#" title="Last Page"><span class="i fa fa-angle-double-right"></span></a></li>
+    </ul>
+  </div>
+</form>
+
+<!-- Blank Slate HTML -->
+<div class="blank-slate-pf table-view-pf-empty hidden" id="emptyState1">
+  <div class="blank-slate-pf-icon">
+    <span class="pficon pficon pficon-add-circle-o"></span>
+  </div>
+  <h1>
+    Empty State Title
+  </h1>
+  <p>
+    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
+  </p>
+  <p>
+    Learn more about this <a href="#">on the documentation</a>.
+  </p>
+  <div class="blank-slate-pf-main-action">
+    <button class="btn btn-primary btn-lg"> Main Action </button>
+  </div>
+  <div class="blank-slate-pf-secondary-action">
+    <button class="btn btn-default">Secondary Action</button>
+    <button class="btn btn-default">Secondary Action</button>
+  </div>
+</div>
+
+<script>
+$(document).ready(function() {
+
+// JSON data for Table View
+var dataSet = [{
+  engine: "Trident",
+  browser: "Internet Explorer 4.0",
+  platforms: "Win 95+",
+  version: "4",
+  grade: "X"
+},{
+  engine: "Trident",
+  browser: "Internet Explorer 5.0",
+  platforms: "Win 95+",
+  version: "5",
+  grade: "C"
+}, {
+  engine: "Trident",
+  browser: "Internet Explorer 5.5",
+  platforms: "Win 95+",
+  version: "5.5",
+  grade: "A"
+}, {
+  engine: "Trident",
+  browser: "Internet Explorer 6",
+  platforms: "Win 98+",
+  version: "6",
+  grade: "A"
+}, {
+  engine: "Trident",
+  browser: "Internet Explorer 7",
+  platforms: "Win XP SP2+",
+  version: "7",
+  grade: "A"
+}, {
+  engine: "Trident",
+  browser: "AOL browser (AOL desktop)",
+  platforms: "Win XP",
+  version: "6",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 1.0",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 1.5",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 2.0",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 3.0",
+  platforms: "Win 2k+ / OSX.3+",
+  version: "1.9",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Camino 1.0",
+  platforms: "OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Camino 1.5",
+  platforms: "OSX.3+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Netscape 7.2",
+  platforms: "Win 95+ / Mac OS 8.6-9.2",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Netscape Browser 8",
+  platforms: "Win 98SE+",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Netscape Navigator 9",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.0",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.1",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.1",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.2",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.2",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.3",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.3",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.4",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.4",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.5",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.5",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.6",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.6",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.7",
+  platforms: "Win 98+ / OSX.1+",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.8",
+  platforms: "Win 98+ / OSX.1+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Seamonkey 1.1",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Epiphany 2.20",
+  platforms: "Gnome",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 1.2",
+  platforms: "OSX.3",
+  version: "125.5",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 1.3",
+  platforms: "OSX.3",
+  version: "312.8",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 2.0",
+  platforms: "OSX.4+",
+  version: "419.3",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 3.0",
+  platforms: "OSX.4+",
+  version: "522.1",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "OmniWeb 5.5",
+  platforms: "OSX.4+",
+  version: "420",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "iPod Touch / iPhone",
+  platforms: "iPod",
+  version: "420.1",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "S60",
+  platforms: "S60",
+  version: "413",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 7.0",
+  platforms: "Win 95+ / OSX.1+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 7.5",
+  platforms: "Win 95+ / OSX.2+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 8.0",
+  platforms: "Win 95+ / OSX.2+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 8.5",
+  platforms: "Win 95+ / OSX.2+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 9.0",
+  platforms: "Win 95+ / OSX.3+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 9.2",
+  platforms: "Win 88+ / OSX.3+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 9.5",
+  platforms: "Win 88+ / OSX.3+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera for Wii",
+  platforms: "Wii",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Nokia N800",
+  platforms: "N800",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Nintendo DS browser",
+  platforms: "Nintendo DS",
+  version: "8.5",
+  grade: "C/A<sup>1</sup>"
+}, {
+  engine: "KHTML",
+  browser: "Konqureror 3.1",
+  platforms: "KDE 3.1",
+  version: "3.1",
+  grade: "C"
+}, {
+  engine: "KHTML",
+  browser: "Konqureror 3.3",
+  platforms: "KDE 3.3",
+  version: "3.3",
+  grade: "A"
+}, {
+  engine: "KHTML",
+  browser: "Konqureror 3.5",
+  platforms: "KDE 3.5",
+  version: "3.5",
+  grade: "A"
+}, {
+  engine: "Tasman",
+  browser: "Internet Explorer 4.5",
+  platforms: "Mac OS 8-9",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Tasman",
+  browser: "Internet Explorer 5.1",
+  platforms: "Mac OS 7.6-9",
+  version: "1",
+  grade: "C"
+}, {
+  engine: "Tasman",
+  browser: "Internet Explorer 5.2",
+  platforms: "Mac OS 8-X",
+  version: "1",
+  grade: "C"
+}, {
+  engine: "Misc",
+  browser: "NetFront 3.1",
+  platforms: "Embedded devices",
+  version: "-",
+  grade: "C"
+}, {
+  engine: "Misc",
+  browser: "NetFront 3.4",
+  platforms: "Embedded devices",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Misc",
+  browser: "Dillo 0.8",
+  platforms: "Embedded devices",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Misc",
+  browser: "Links",
+  platforms: "Text only",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Misc",
+  browser: "Lynx",
+  platforms: "Text only",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Misc",
+  browser: "IE Mobile",
+  platforms: "Windows Mobile 6",
+  version: "-",
+  grade: "C"
+}, {
+  engine: "Misc",
+  browser: "PSP browser",
+  platforms: "PSP",
+  version: "-",
+  grade: "C"
+}, {
+  engine: "Other browsers",
+  browser: "All others",
+  platforms: "-",
+  version: "-",
+  grade: "U"
+}];
+
+// DataTable Config
+$("#table1").DataTable({
+  columns: [
+    { data: null,
+      className: "table-view-pf-select",
+      render: function (data, type, full, meta) {
+        // Select row checkbox renderer
+        var id = "select" + meta.row;
+        return '<label class="sr-only" for="' + id + '">Select row ' + meta.row +
+          '</label><input type="checkbox" id="' + id + '" name="' + id + '">';
+      },
+      sortable: false
+    },
+    { data: "engine" },
+    { data: "browser" },
+    { data: "platforms" },
+    { data: "version" },
+    { data: "grade"},
+    { data: null,
+      className: "table-view-pf-actions",
+      render: function (data, type, full, meta) {
+        // Inline action button renderer
+        return '<div class="table-view-pf-btn"><button class="btn btn-default" type="button">Actions</button></div>';
+      }
+    }, {
+      data: null,
+      className: "table-view-pf-actions",
+      render: function (data, type, full, meta) {
+        // Inline action kebab renderer
+        return '<div class="dropdown dropdown-kebab-pf">' +
+          '<button class="btn btn-default dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">' +
+          '<span class="fa fa-ellipsis-v"></span></button>' +
+          '<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight">' +
+          '<li><a href="#">Action</a></li>' +
+          '<li><a href="#">Another action</a></li>' +
+          '<li><a href="#">Something else here</a></li>' +
+          '<li role="separator" class="divider"></li>' +
+          '<li><a href="#">Separated link</a></li></ul></div>';
+      }
+    }
+  ],
+  data: dataSet,
+  dom: "t",
+  language: {
+    zeroRecords: "No records found"
+  },
+  order: [[ 1, 'asc' ]],
+  pfConfig: {
+    emptyStateSelector: "#emptyState1",
+    filterCaseInsensitive: true,
+    filterCols: [
+      null,
+      {
+        default: true,
+        optionSelector: "#filter1",
+        placeholder: "Filter By Rendering Engine..."
+      }, {
+        optionSelector: "#filter2",
+        placeholder: "Filter By Browser..."
+      }, {
+        optionSelector: "#filter3",
+        placeholder: "Filter By Platform(s)..."
+      }, {
+        optionSelector: "#filter4",
+        placeholder: "Filter By Engine Version..."
+      }, {
+        optionSelector: "#filter5",
+        placeholder: "Filter By CSS Grade..."
+      }
+    ],
+    paginationSelector: "#pagination1",
+    toolbarSelector: "#toolbar1",
+    selectAllSelector: 'th:first-child input[type="checkbox"]',
+    colvisMenuSelector: '.table-view-pf-colvis-menu'
+  },
+  select: {
+    selector: 'td:first-child input[type="checkbox"]',
+    style: 'multi'
+  },
+});
+
+/**
+ * Utility to show empty Table View
+ *
+ * @param {object} config - Config properties associated with a Table View
+ * @param {object} config.data - Data set for DataTable
+ * @param {string} config.deleteRowsSelector - Selector for delete rows control
+ * @param {string} config.restoreRowsSelector - Selector for restore rows control
+ * @param {string} config.tableSelector - Selector for the HTML table
+ */
+var emptyTableViewUtil = function (config) {
+  var self = this;
+
+  this.dt = $(config.tableSelector).DataTable(); // DataTable
+  this.deleteRows = $(config.deleteRowsSelector); // Delete rows control
+  this.restoreRows = $(config.restoreRowsSelector); // Restore rows control
+
+  // Handle click on delete rows control
+  this.deleteRows.on('click', function() {
+    self.dt.clear().draw();
+    $(self.restoreRows).prop("disabled", false);
+  });
+
+  // Handle click on restore rows control
+  this.restoreRows.on('click', function() {
+    self.dt.rows.add(config.data).draw();
+    $(this).prop("disabled", true);
+  });
+
+  // Initialize restore rows
+  if (this.dt.data().length === 0) {
+    $(this.restoreRows).prop("disabled", false);
+  }
+};
+
+// Initialize empty Table View util
+new emptyTableViewUtil({
+  data: dataSet,
+  deleteRowsSelector: "#deleteRows1",
+  restoreRowsSelector: "#restoreRows1",
+  tableSelector: "#table1"
+});
+
+/**
+ * Utility to find items in Table View
+ */
+var findTableViewUtil = function (config) {
+  // Upon clicking the find button, show the find dropdown content
+  $(".btn-find").click(function () {
+    $(this).parent().find(".find-pf-dropdown-container").toggle();
+  });
+
+  // Upon clicking the find close button, hide the find dropdown content
+  $(".btn-find-close").click(function () {
+    $(".find-pf-dropdown-container").hide();
+  });
+};
+
+// Initialize find util
+new findTableViewUtil();
+
+});
+</script>
+
+
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/table-view-columns.html b/themes/src/main/node_modules/rcue/tests/table-view-columns.html
new file mode 100644
index 0000000..0a3c020
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/table-view-columns.html
@@ -0,0 +1,495 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Table View [Deprecated example] with column visibility, reordering - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="//cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js"></script>
+    <script src="//cdn.datatables.net/colvis/1.1.2/js/dataTables.colVis.min.js"></script>
+    <script src="//cdn.datatables.net/colreorder/1.3.2/js/dataTables.colReorder.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Table View [Deprecated example] with column visibility, reordering</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://datatables.net" class="alert-link">http://datatables.net</a>.
+      </div>
+      <hr>
+<table class="table table-striped table-bordered">
+  <thead>
+    <tr>
+      <th>Rendering Engine</th>
+      <th>Browser</th>
+      <th>Platform(s)</th>
+      <th>Engine Version</th>
+      <th>CSS Grade</th>
+    </tr>
+  </thead>
+  <tbody>
+    <tr>
+      <td>Trident</td>
+      <td>
+        Internet
+         Explorer 
+        4.0
+        </td>
+      <td>Win 95+</td>
+      <td>4</td>
+      <td>X</td>
+    </tr>
+    <tr>
+      <td>Trident</td>
+      <td>Internet
+         Explorer 5.0</td>
+      <td>Win 95+</td>
+      <td>5</td>
+      <td>C</td>
+    </tr>
+    <tr>
+      <td>Trident</td>
+      <td>Internet
+         Explorer 5.5</td>
+      <td>Win 95+</td>
+      <td>5.5</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Trident</td>
+      <td>Internet
+         Explorer 6</td>
+      <td>Win 98+</td>
+      <td>6</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Trident</td>
+      <td>Internet Explorer 7</td>
+      <td>Win XP SP2+</td>
+      <td>7</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Trident</td>
+      <td>AOL browser (AOL desktop)</td>
+      <td>Win XP</td>
+      <td>6</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Firefox 1.0</td>
+      <td>Win 98+ / OSX.2+</td>
+      <td>1.7</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Firefox 1.5</td>
+      <td>Win 98+ / OSX.2+</td>
+      <td>1.8</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Firefox 2.0</td>
+      <td>Win 98+ / OSX.2+</td>
+      <td>1.8</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Firefox 3.0</td>
+      <td>Win 2k+ / OSX.3+</td>
+      <td>1.9</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Camino 1.0</td>
+      <td>OSX.2+</td>
+      <td>1.8</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Camino 1.5</td>
+      <td>OSX.3+</td>
+      <td>1.8</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Netscape 7.2</td>
+      <td>Win 95+ / Mac OS 8.6-9.2</td>
+      <td>1.7</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Netscape Browser 8</td>
+      <td>Win 98SE+</td>
+      <td>1.7</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Netscape Navigator 9</td>
+      <td>Win 98+ / OSX.2+</td>
+      <td>1.8</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Mozilla 1.0</td>
+      <td>Win 95+ / OSX.1+</td>
+      <td>1</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Mozilla 1.1</td>
+      <td>Win 95+ / OSX.1+</td>
+      <td>1.1</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Mozilla 1.2</td>
+      <td>Win 95+ / OSX.1+</td>
+      <td>1.2</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Mozilla 1.3</td>
+      <td>Win 95+ / OSX.1+</td>
+      <td>1.3</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Mozilla 1.4</td>
+      <td>Win 95+ / OSX.1+</td>
+      <td>1.4</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Mozilla 1.5</td>
+      <td>Win 95+ / OSX.1+</td>
+      <td>1.5</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Mozilla 1.6</td>
+      <td>Win 95+ / OSX.1+</td>
+      <td>1.6</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Mozilla 1.7</td>
+      <td>Win 98+ / OSX.1+</td>
+      <td>1.7</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Mozilla 1.8</td>
+      <td>Win 98+ / OSX.1+</td>
+      <td>1.8</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Seamonkey 1.1</td>
+      <td>Win 98+ / OSX.2+</td>
+      <td>1.8</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Gecko</td>
+      <td>Epiphany 2.20</td>
+      <td>Gnome</td>
+      <td>1.8</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Webkit</td>
+      <td>Safari 1.2</td>
+      <td>OSX.3</td>
+      <td>125.5</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Webkit</td>
+      <td>Safari 1.3</td>
+      <td>OSX.3</td>
+      <td>312.8</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Webkit</td>
+      <td>Safari 2.0</td>
+      <td>OSX.4+</td>
+      <td>419.3</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Webkit</td>
+      <td>Safari 3.0</td>
+      <td>OSX.4+</td>
+      <td>522.1</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Webkit</td>
+      <td>OmniWeb 5.5</td>
+      <td>OSX.4+</td>
+      <td>420</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Webkit</td>
+      <td>iPod Touch / iPhone</td>
+      <td>iPod</td>
+      <td>420.1</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Webkit</td>
+      <td>S60</td>
+      <td>S60</td>
+      <td>413</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Presto</td>
+      <td>Opera 7.0</td>
+      <td>Win 95+ / OSX.1+</td>
+      <td>-</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Presto</td>
+      <td>Opera 7.5</td>
+      <td>Win 95+ / OSX.2+</td>
+      <td>-</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Presto</td>
+      <td>Opera 8.0</td>
+      <td>Win 95+ / OSX.2+</td>
+      <td>-</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Presto</td>
+      <td>Opera 8.5</td>
+      <td>Win 95+ / OSX.2+</td>
+      <td>-</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Presto</td>
+      <td>Opera 9.0</td>
+      <td>Win 95+ / OSX.3+</td>
+      <td>-</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Presto</td>
+      <td>Opera 9.2</td>
+      <td>Win 88+ / OSX.3+</td>
+      <td>-</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Presto</td>
+      <td>Opera 9.5</td>
+      <td>Win 88+ / OSX.3+</td>
+      <td>-</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Presto</td>
+      <td>Opera for Wii</td>
+      <td>Wii</td>
+      <td>-</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Presto</td>
+      <td>Nokia N800</td>
+      <td>N800</td>
+      <td>-</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Presto</td>
+      <td>Nintendo DS browser</td>
+      <td>Nintendo DS</td>
+      <td>8.5</td>
+      <td>C/A<sup>1</sup></td>
+    </tr>
+    <tr>
+      <td>KHTML</td>
+      <td>Konqureror 3.1</td>
+      <td>KDE 3.1</td>
+      <td>3.1</td>
+      <td>C</td>
+    </tr>
+    <tr>
+      <td>KHTML</td>
+      <td>Konqureror 3.3</td>
+      <td>KDE 3.3</td>
+      <td>3.3</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>KHTML</td>
+      <td>Konqureror 3.5</td>
+      <td>KDE 3.5</td>
+      <td>3.5</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Tasman</td>
+      <td>Internet Explorer 4.5</td>
+      <td>Mac OS 8-9</td>
+      <td>-</td>
+      <td>X</td>
+    </tr>
+    <tr>
+      <td>Tasman</td>
+      <td>Internet Explorer 5.1</td>
+      <td>Mac OS 7.6-9</td>
+      <td>1</td>
+      <td>C</td>
+    </tr>
+    <tr>
+      <td>Tasman</td>
+      <td>Internet Explorer 5.2</td>
+      <td>Mac OS 8-X</td>
+      <td>1</td>
+      <td>C</td>
+    </tr>
+    <tr>
+      <td>Misc</td>
+      <td>NetFront 3.1</td>
+      <td>Embedded devices</td>
+      <td>-</td>
+      <td>C</td>
+    </tr>
+    <tr>
+      <td>Misc</td>
+      <td>NetFront 3.4</td>
+      <td>Embedded devices</td>
+      <td>-</td>
+      <td>A</td>
+    </tr>
+    <tr>
+      <td>Misc</td>
+      <td>Dillo 0.8</td>
+      <td>Embedded devices</td>
+      <td>-</td>
+      <td>X</td>
+    </tr>
+    <tr>
+      <td>Misc</td>
+      <td>Links</td>
+      <td>Text only</td>
+      <td>-</td>
+      <td>X</td>
+    </tr>
+    <tr>
+      <td>Misc</td>
+      <td>Lynx</td>
+      <td>Text only</td>
+      <td>-</td>
+      <td>X</td>
+    </tr>
+    <tr>
+      <td>Misc</td>
+      <td>IE Mobile</td>
+      <td>Windows Mobile 6</td>
+      <td>-</td>
+      <td>C</td>
+    </tr>
+    <tr>
+      <td>Misc</td>
+      <td>PSP browser</td>
+      <td>PSP</td>
+      <td>-</td>
+      <td>C</td>
+    </tr>
+    <tr>
+      <td>Other browsers</td>
+      <td>All others</td>
+      <td>-</td>
+      <td>-</td>
+      <td>U</td>
+    </tr>
+  </tbody>
+</table>
+
+      <script>
+        $(document).ready(function() {
+          // Initialize Datatables
+          var table = $('table').DataTable({
+            // Customize the header and footer
+            "dom": 'R<"dataTables_header"fCi>t<"dataTables_footer"p>',
+            // Customize the ColVis button text so it's an icon and align the dropdown to the right side
+            "colVis": {
+              "buttonText": "<i class='fa fa-columns'></i>",
+              "sAlign": "right"
+            }
+          });
+          // On click of ColVis_Button, add Bootstrap classes and...
+          $(".ColVis_Button").addClass("btn btn-default dropdown-toggle").click(function() {
+            // Add Bootstrap classes to ColVis_Button's parent
+            $(this).parent(".ColVis").addClass("btn-group open");
+            // Add Bootstrap classes to the checkboxes
+            $(".ColVis_collection label").addClass("checkbox");
+            // Remove class from ColVis when clicking outside ColVis_Collection
+            $(".ColVis_collectionBackground, .ColVis_catcher").click(function() {
+              $(".ColVis").removeClass("open");
+            });
+          });
+        });
+      </script>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/table-view-navbar.html b/themes/src/main/node_modules/rcue/tests/table-view-navbar.html
new file mode 100644
index 0000000..4897f34
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/table-view-navbar.html
@@ -0,0 +1,822 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Table View with Navbar - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="//cdn.datatables.net/1.10.15/js/jquery.dataTables.min.js"></script>
+    <script src="//cdn.datatables.net/select/1.2.0/js/dataTables.select.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfEmpty.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfFilter.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfColVis.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfPagination.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfResize.js"></script>
+    <script src="../../dist/js/patternfly.dataTables.pfSelect.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+<!-- Navbar -->
+    <nav class="navbar navbar-default navbar-pf" role="navigation">
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+        </a>
+      </div>
+      <div class="collapse navbar-collapse navbar-collapse-1">
+        <ul class="nav navbar-nav navbar-utility">
+          <li class="dropdown">
+            <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+              <span title="Help" class="fa pficon-help"></span>
+              <span class="caret"></span>
+            </a>
+            <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+              <li><a href="#0">Help</a></li>
+              <li><a href="#0">About</a></li>
+            </ul>
+          </li>
+          <li class="dropdown">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+              <span class="pficon pficon-user"></span>
+              Brian Johnson <b class="caret"></b>
+            </a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-submenu">
+                <a tabindex="-1" href="#0">More options</a>
+                <ul class="dropdown-menu">
+                  <li>
+                    <a href="#0">Link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Another link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Something else here</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li class="dropdown-header">Nav header</li>
+                  <li>
+                    <a href="#0">Separated link</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li>
+                    <a href="#0">One more separated link</a>
+                  </li>
+                </ul>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+        <ul class="nav navbar-nav navbar-primary">
+          <li>
+            <a href="basic.html">Basic</a>
+          </li>
+          <li>
+            <a href="bootstrap-treeview-2.html">Tree View</a>
+          </li>
+          <li>
+            <a href="dashboard.html">Dashboard</a>
+          </li>
+          <li>
+            <a href="form.html">Form</a>
+          </li>
+          <li>
+            <a href="tab.html">Tab</a>
+          </li>
+          <li>
+            <a href="typography-2.html">Typography</a>
+          </li>
+          <li>
+            <a href="card-view-multi-select.html">Card View - Multi Select</a>
+          </li>
+          <li>
+            <a href="card-view-single-select.html">Card View - Single Select</a>
+          </li>
+          <li>
+            <a href="cards.html">Cards</a>
+          </li>
+          <li>
+            <a href="pagination-card-view.html">Pagination - Card View</a>
+          </li>
+        </ul>
+      </div>
+    </nav>
+
+<!-- Toolbar -->
+<div class="container-fluid">
+  <div class="row toolbar-pf table-view-pf-toolbar-external" id="toolbar1">
+    <div class="col-sm-12">
+      <form class="toolbar-pf-actions">
+        <div class="form-group toolbar-pf-filter">
+          <label class="sr-only" for="filter">Rendering Engine</label>
+          <div class="input-group">
+            <div class="input-group-btn">
+              <button type="button" class="btn btn-default dropdown-toggle" id="filter" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Rendering Engine <span class="caret"></span></button>
+              <ul class="dropdown-menu">
+                <li><a href="#" id="filter1">Rendering Engine</a></li>
+                <li><a href="#" id="filter2">Browser</a></li>
+                <li><a href="#" id="filter3">Platform(s)</a></li>
+                <li><a href="#" id="filter4">Engine Version</a></li>
+                <li><a href="#" id="filter5">CSS Grade</a></li>
+              </ul>
+            </div>
+            <input type="text" class="form-control" placeholder="Filter By Rendering Engine..." autocomplete="off">
+          </div>
+        </div>
+        <div class="form-group">
+          <div class="dropdown btn-group">
+            <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Rendering Engine <span class="caret"></span></button>
+            <ul class="dropdown-menu">
+              <li><a href="#">Rendering Engine</a></li>
+              <li><a href="#">Browser</a></li>
+              <li><a href="#">Platform(s)</a></li>
+              <li><a href="#">Engine Version</a></li>
+              <li><a href="#">CSS Grade</a></li>
+            </ul>
+          </div>
+          <button class="btn btn-link" type="button">
+            <span class="fa fa-sort-alpha-asc"></span>
+          </button>
+          <div class="dropdown btn-group">
+            <button class="btn btn-link dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
+              <span class="fa fa-columns"></span>
+            </button>
+            <ul class="dropdown-menu table-view-pf-colvis-menu">
+              <li><input type="checkbox" value="1" checked><label>Rendering Engine</label></li>
+              <li><input type="checkbox" value="2" checked><label>Browser</label></li>
+              <li><input type="checkbox" value="3" checked><label>Platform(s)</label></li>
+              <li><input type="checkbox" value="4" checked><label>Engine Version</label></li>
+              <li><input type="checkbox" value="5" checked><label>CSS Grade</label></li>
+            </ul>
+          </div>
+        </div>
+        <div class="form-group">
+          <button class="btn btn-default" type="button" id="deleteRows1">Delete Rows</button>
+          <button class="btn btn-default" type="button" id="restoreRows1" disabled>Restore Rows</button>
+          <div class="dropdown btn-group  dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebab" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu " aria-labelledby="dropdownKebab">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+        </div>
+        <div class="toolbar-pf-action-right">
+          <div class="form-group toolbar-pf-find">
+            <button class="btn btn-link btn-find" type="button">
+              <span class="fa fa-search"></span>
+            </button>
+            <div class="find-pf-dropdown-container">
+              <input type="text" class="form-control" id="find" placeholder="Find By Keyword...">
+              <div class="find-pf-buttons">
+                <span class="find-pf-nums">1 of 3</span>
+                <button class="btn btn-link" type="button">
+                  <span class="fa fa-angle-up"></span>
+                </button>
+                <button class="btn btn-link" type="button">
+                  <span class="fa fa-angle-down"></span>
+                </button>
+                <button class="btn btn-link btn-find-close" type="button">
+                  <span class="pficon pficon-close"></span>
+                </button>
+              </div>
+            </div>
+          </div>
+          <div class="form-group toolbar-pf-view-selector">
+            <button class="btn btn-link active"><i class="fa fa-th"></i></button>
+            <button class="btn btn-link"><i class="fa fa-th-large"></i></button>
+            <button class="btn btn-link"><i class="fa fa-th-list"></i></button>
+          </div>
+        </div>
+      </form>
+      <div class="row toolbar-pf-results">
+        <div class="col-sm-9">
+          <div class="hidden">
+            <h5>0 Results</h5>
+            <p>Active filters:</p>
+            <ul class="list-inline"></ul>
+            <p><a href="#">Clear All Filters</a></p>
+          </div>
+        </div>
+        <div class="col-sm-3 table-view-pf-select-results">
+          <strong>0</strong> of <strong>0</strong> selected
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+<div class="col-sm-12">
+<!-- Table HTML -->
+<table class="table table-striped table-bordered table-hover" id="table1">
+  <thead>
+    <tr>
+      <th><label class="sr-only" for="selectAll">Select all rows</label><input type="checkbox" id="selectAll" name="selectAll"></th>
+      <th>Rendering Engine</th>
+      <th>Browser</th>
+      <th>Platform(s)</th>
+      <th>Engine Version</th>
+      <th>CSS Grade</th>
+      <th colspan="2">Actions</th>
+    </tr>
+  </thead>
+</table>
+
+<form class="content-view-pf-pagination table-view-pf-pagination clearfix" id="pagination1">
+  <div class="form-group">
+    <select class="selectpicker pagination-pf-pagesize">
+      <option value="6">6</option>
+      <option value="10" >10</option>
+      <option value="15" selected="selected">15</option>
+      <option value="25">25</option>
+      <option value="50">50</option>
+    </select>
+    <span>per page</span>
+  </div>
+  <div class="form-group">
+    <span><span class="pagination-pf-items-current">1-15</span> of <span class="pagination-pf-items-total">75</span></span>
+    <ul class="pagination pagination-pf-back">
+      <li class="disabled"><a href="#" title="First Page"><span class="i fa fa-angle-double-left"></span></a></li>
+      <li class="disabled"><a href="#" title="Previous Page"><span class="i fa fa-angle-left"></span></a></li>
+    </ul>
+    <label for="pagination1-page" class="sr-only">Current Page</label>
+    <input class="pagination-pf-page" type="text" value="1" id="pagination1-page"/>
+    <span>of <span class="pagination-pf-pages">5</span></span>
+    <ul class="pagination pagination-pf-forward">
+      <li><a href="#" title="Next Page"><span class="i fa fa-angle-right"></span></a></li>
+      <li><a href="#" title="Last Page"><span class="i fa fa-angle-double-right"></span></a></li>
+    </ul>
+  </div>
+</form>
+
+<!-- Blank Slate HTML -->
+<div class="blank-slate-pf table-view-pf-empty hidden" id="emptyState1">
+  <div class="blank-slate-pf-icon">
+    <span class="pficon pficon pficon-add-circle-o"></span>
+  </div>
+  <h1>
+    Empty State Title
+  </h1>
+  <p>
+    Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
+  </p>
+  <p>
+    Learn more about this <a href="#">on the documentation</a>.
+  </p>
+  <div class="blank-slate-pf-main-action">
+    <button class="btn btn-primary btn-lg"> Main Action </button>
+  </div>
+  <div class="blank-slate-pf-secondary-action">
+    <button class="btn btn-default">Secondary Action</button>
+    <button class="btn btn-default">Secondary Action</button>
+  </div>
+</div>
+
+</div>
+<script>
+$(document).ready(function() {
+
+// JSON data for Table View
+var dataSet = [{
+  engine: "Trident",
+  browser: "Internet Explorer 4.0",
+  platforms: "Win 95+",
+  version: "4",
+  grade: "X"
+},{
+  engine: "Trident",
+  browser: "Internet Explorer 5.0",
+  platforms: "Win 95+",
+  version: "5",
+  grade: "C"
+}, {
+  engine: "Trident",
+  browser: "Internet Explorer 5.5",
+  platforms: "Win 95+",
+  version: "5.5",
+  grade: "A"
+}, {
+  engine: "Trident",
+  browser: "Internet Explorer 6",
+  platforms: "Win 98+",
+  version: "6",
+  grade: "A"
+}, {
+  engine: "Trident",
+  browser: "Internet Explorer 7",
+  platforms: "Win XP SP2+",
+  version: "7",
+  grade: "A"
+}, {
+  engine: "Trident",
+  browser: "AOL browser (AOL desktop)",
+  platforms: "Win XP",
+  version: "6",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 1.0",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 1.5",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 2.0",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Firefox 3.0",
+  platforms: "Win 2k+ / OSX.3+",
+  version: "1.9",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Camino 1.0",
+  platforms: "OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Camino 1.5",
+  platforms: "OSX.3+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Netscape 7.2",
+  platforms: "Win 95+ / Mac OS 8.6-9.2",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Netscape Browser 8",
+  platforms: "Win 98SE+",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Netscape Navigator 9",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.0",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.1",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.1",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.2",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.2",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.3",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.3",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.4",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.4",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.5",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.5",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.6",
+  platforms: "Win 95+ / OSX.1+",
+  version: "1.6",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.7",
+  platforms: "Win 98+ / OSX.1+",
+  version: "1.7",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Mozilla 1.8",
+  platforms: "Win 98+ / OSX.1+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Seamonkey 1.1",
+  platforms: "Win 98+ / OSX.2+",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Gecko",
+  browser: "Epiphany 2.20",
+  platforms: "Gnome",
+  version: "1.8",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 1.2",
+  platforms: "OSX.3",
+  version: "125.5",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 1.3",
+  platforms: "OSX.3",
+  version: "312.8",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 2.0",
+  platforms: "OSX.4+",
+  version: "419.3",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "Safari 3.0",
+  platforms: "OSX.4+",
+  version: "522.1",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "OmniWeb 5.5",
+  platforms: "OSX.4+",
+  version: "420",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "iPod Touch / iPhone",
+  platforms: "iPod",
+  version: "420.1",
+  grade: "A"
+}, {
+  engine: "Webkit",
+  browser: "S60",
+  platforms: "S60",
+  version: "413",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 7.0",
+  platforms: "Win 95+ / OSX.1+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 7.5",
+  platforms: "Win 95+ / OSX.2+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 8.0",
+  platforms: "Win 95+ / OSX.2+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 8.5",
+  platforms: "Win 95+ / OSX.2+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 9.0",
+  platforms: "Win 95+ / OSX.3+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 9.2",
+  platforms: "Win 88+ / OSX.3+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera 9.5",
+  platforms: "Win 88+ / OSX.3+",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Opera for Wii",
+  platforms: "Wii",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Nokia N800",
+  platforms: "N800",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Presto",
+  browser: "Nintendo DS browser",
+  platforms: "Nintendo DS",
+  version: "8.5",
+  grade: "C/A<sup>1</sup>"
+}, {
+  engine: "KHTML",
+  browser: "Konqureror 3.1",
+  platforms: "KDE 3.1",
+  version: "3.1",
+  grade: "C"
+}, {
+  engine: "KHTML",
+  browser: "Konqureror 3.3",
+  platforms: "KDE 3.3",
+  version: "3.3",
+  grade: "A"
+}, {
+  engine: "KHTML",
+  browser: "Konqureror 3.5",
+  platforms: "KDE 3.5",
+  version: "3.5",
+  grade: "A"
+}, {
+  engine: "Tasman",
+  browser: "Internet Explorer 4.5",
+  platforms: "Mac OS 8-9",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Tasman",
+  browser: "Internet Explorer 5.1",
+  platforms: "Mac OS 7.6-9",
+  version: "1",
+  grade: "C"
+}, {
+  engine: "Tasman",
+  browser: "Internet Explorer 5.2",
+  platforms: "Mac OS 8-X",
+  version: "1",
+  grade: "C"
+}, {
+  engine: "Misc",
+  browser: "NetFront 3.1",
+  platforms: "Embedded devices",
+  version: "-",
+  grade: "C"
+}, {
+  engine: "Misc",
+  browser: "NetFront 3.4",
+  platforms: "Embedded devices",
+  version: "-",
+  grade: "A"
+}, {
+  engine: "Misc",
+  browser: "Dillo 0.8",
+  platforms: "Embedded devices",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Misc",
+  browser: "Links",
+  platforms: "Text only",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Misc",
+  browser: "Lynx",
+  platforms: "Text only",
+  version: "-",
+  grade: "X"
+}, {
+  engine: "Misc",
+  browser: "IE Mobile",
+  platforms: "Windows Mobile 6",
+  version: "-",
+  grade: "C"
+}, {
+  engine: "Misc",
+  browser: "PSP browser",
+  platforms: "PSP",
+  version: "-",
+  grade: "C"
+}, {
+  engine: "Other browsers",
+  browser: "All others",
+  platforms: "-",
+  version: "-",
+  grade: "U"
+}];
+
+// DataTable Config
+$("#table1").DataTable({
+  columns: [
+    { data: null,
+      className: "table-view-pf-select",
+      render: function (data, type, full, meta) {
+        // Select row checkbox renderer
+        var id = "select" + meta.row;
+        return '<label class="sr-only" for="' + id + '">Select row ' + meta.row +
+          '</label><input type="checkbox" id="' + id + '" name="' + id + '">';
+      },
+      sortable: false
+    },
+    { data: "engine" },
+    { data: "browser" },
+    { data: "platforms" },
+    { data: "version" },
+    { data: "grade"},
+    { data: null,
+      className: "table-view-pf-actions",
+      render: function (data, type, full, meta) {
+        // Inline action button renderer
+        return '<div class="table-view-pf-btn"><button class="btn btn-default" type="button">Actions</button></div>';
+      }
+    }, {
+      data: null,
+      className: "table-view-pf-actions",
+      render: function (data, type, full, meta) {
+        // Inline action kebab renderer
+        return '<div class="dropdown dropdown-kebab-pf">' +
+          '<button class="btn btn-default dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">' +
+          '<span class="fa fa-ellipsis-v"></span></button>' +
+          '<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight">' +
+          '<li><a href="#">Action</a></li>' +
+          '<li><a href="#">Another action</a></li>' +
+          '<li><a href="#">Something else here</a></li>' +
+          '<li role="separator" class="divider"></li>' +
+          '<li><a href="#">Separated link</a></li></ul></div>';
+      }
+    }
+  ],
+  data: dataSet,
+  dom: "t",
+  language: {
+    zeroRecords: "No records found"
+  },
+  order: [[ 1, 'asc' ]],
+  pfConfig: {
+    emptyStateSelector: "#emptyState1",
+    filterCaseInsensitive: true,
+    filterCols: [
+      null,
+      {
+        default: true,
+        optionSelector: "#filter1",
+        placeholder: "Filter By Rendering Engine..."
+      }, {
+        optionSelector: "#filter2",
+        placeholder: "Filter By Browser..."
+      }, {
+        optionSelector: "#filter3",
+        placeholder: "Filter By Platform(s)..."
+      }, {
+        optionSelector: "#filter4",
+        placeholder: "Filter By Engine Version..."
+      }, {
+        optionSelector: "#filter5",
+        placeholder: "Filter By CSS Grade..."
+      }
+    ],
+    paginationSelector: "#pagination1",
+    toolbarSelector: "#toolbar1",
+    selectAllSelector: 'th:first-child input[type="checkbox"]',
+    colvisMenuSelector: '.table-view-pf-colvis-menu'
+  },
+  select: {
+    selector: 'td:first-child input[type="checkbox"]',
+    style: 'multi'
+  },
+});
+
+/**
+ * Utility to show empty Table View
+ *
+ * @param {object} config - Config properties associated with a Table View
+ * @param {object} config.data - Data set for DataTable
+ * @param {string} config.deleteRowsSelector - Selector for delete rows control
+ * @param {string} config.restoreRowsSelector - Selector for restore rows control
+ * @param {string} config.tableSelector - Selector for the HTML table
+ */
+var emptyTableViewUtil = function (config) {
+  var self = this;
+
+  this.dt = $(config.tableSelector).DataTable(); // DataTable
+  this.deleteRows = $(config.deleteRowsSelector); // Delete rows control
+  this.restoreRows = $(config.restoreRowsSelector); // Restore rows control
+
+  // Handle click on delete rows control
+  this.deleteRows.on('click', function() {
+    self.dt.clear().draw();
+    $(self.restoreRows).prop("disabled", false);
+  });
+
+  // Handle click on restore rows control
+  this.restoreRows.on('click', function() {
+    self.dt.rows.add(config.data).draw();
+    $(this).prop("disabled", true);
+  });
+
+  // Initialize restore rows
+  if (this.dt.data().length === 0) {
+    $(this.restoreRows).prop("disabled", false);
+  }
+};
+
+// Initialize empty Table View util
+new emptyTableViewUtil({
+  data: dataSet,
+  deleteRowsSelector: "#deleteRows1",
+  restoreRowsSelector: "#restoreRows1",
+  tableSelector: "#table1"
+});
+
+/**
+ * Utility to find items in Table View
+ */
+var findTableViewUtil = function (config) {
+  // Upon clicking the find button, show the find dropdown content
+  $(".btn-find").click(function () {
+    $(this).parent().find(".find-pf-dropdown-container").toggle();
+  });
+
+  // Upon clicking the find close button, hide the find dropdown content
+  $(".btn-find-close").click(function () {
+    $(".find-pf-dropdown-container").hide();
+  });
+};
+
+// Initialize find util
+new findTableViewUtil();
+
+});
+</script>
+
+
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/tabs.html b/themes/src/main/node_modules/rcue/tests/tabs.html
new file mode 100644
index 0000000..daee3a8
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/tabs.html
@@ -0,0 +1,308 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Tabs - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Tabs</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <ul class="nav nav-tabs">
+        <li class="active"><a href="javascript:void(0);">Home</a></li>
+        <li><a href="javascript:void(0);">Profile</a></li>
+        <li><a href="javascript:void(0);">Messages</a></li>
+      </ul>
+      <br />
+      <ul class="nav nav-tabs">
+        <li><a href="javascript:void(0);">Home</a></li>
+        <li class="active"><a href="javascript:void(0);">Profile</a></li>
+        <li><a href="javascript:void(0);">Messages</a></li>
+      </ul>
+      <br />
+      <ul class="nav nav-tabs">
+        <li><a href="javascript:void(0);">Home</a></li>
+        <li><a href="javascript:void(0);">Profile</a></li>
+        <li class="active"><a href="javascript:void(0);">Messages</a></li>
+      </ul>
+      <h3>Justified</h3>
+      <ul class="nav nav-tabs nav-justified">
+        <li class="active"><a href="javascript:void(0);">Home</a></li>
+        <li><a href="javascript:void(0);">Profile</a></li>
+        <li><a href="javascript:void(0);">Messages</a></li>
+      </ul>
+      <br />
+      <ul class="nav nav-tabs nav-justified">
+        <li><a href="javascript:void(0);">Home</a></li>
+        <li class="active"><a href="javascript:void(0);">Profile</a></li>
+        <li><a href="javascript:void(0);">Messages</a></li>
+      </ul>
+      <br />
+      <ul class="nav nav-tabs nav-justified">
+        <li><a href="javascript:void(0);">Home</a></li>
+        <li><a href="javascript:void(0);">Profile</a></li>
+        <li class="active"><a href="javascript:void(0);">Messages</a></li>
+      </ul>
+      <h3>Tabs with dropdowns</h3>
+      <ul class="nav nav-tabs">
+        <li class="active"><a href="javascript:void(0);">Home</a></li>
+        <li><a href="javascript:void(0);">Help</a></li>
+        <li class="dropdown">
+          <a class="dropdown-toggle" data-toggle="dropdown" href="#">
+            Dropdown <span class="caret"></span>
+          </a>
+          <ul class="dropdown-menu" role="menu">
+            <li><a href="javascript:void(0);">Action</a></li>
+            <li><a href="javascript:void(0);">Another action</a></li>
+            <li><a href="javascript:void(0);">Something else here</a></li>
+            <li class="divider"></li>
+            <li><a href="javascript:void(0);">Separated link</a></li>
+          </ul>
+        </li>
+      </ul>
+      <br />
+      <ul class="nav nav-tabs">
+        <li><a href="javascript:void(0);">Home</a></li>
+        <li class="active"><a href="javascript:void(0);">Help</a></li>
+        <li class="dropdown">
+          <a class="dropdown-toggle" data-toggle="dropdown" href="#">
+            Dropdown <span class="caret"></span>
+          </a>
+          <ul class="dropdown-menu pull-right" role="menu">
+            <li><a href="javascript:void(0);">Action</a></li>
+            <li><a href="javascript:void(0);">Another action</a></li>
+            <li><a href="javascript:void(0);">Something else here</a></li>
+            <li class="divider"></li>
+            <li><a href="javascript:void(0);">Separated link</a></li>
+          </ul>
+        </li>
+      </ul>
+      <br />
+      <ul class="nav nav-tabs">
+        <li><a href="javascript:void(0);">Home</a></li>
+        <li><a href="javascript:void(0);">Help</a></li>
+        <li class="active dropdown">
+          <a class="dropdown-toggle" data-toggle="dropdown" href="#">
+            Dropdown <span class="caret"></span>
+          </a>
+          <ul class="dropdown-menu" role="menu">
+            <li><a href="javascript:void(0);">Action</a></li>
+            <li><a href="javascript:void(0);">Another action</a></li>
+            <li><a href="javascript:void(0);">Something else here</a></li>
+            <li class="divider"></li>
+            <li><a href="javascript:void(0);">Separated link</a></li>
+          </ul>
+        </li>
+      </ul>
+      <h2>PatternFly Examples</h2>
+      <ul class="nav nav-tabs nav-tabs-pf">
+        <li class="active"><a href="javascript:void(0);">Home</a></li>
+        <li><a href="javascript:void(0);">Profile</a></li>
+        <li><a href="javascript:void(0);">Messages</a></li>
+      </ul>
+      <br />
+      <ul class="nav nav-tabs nav-tabs-pf">
+        <li><a href="javascript:void(0);">Home</a></li>
+        <li class="active"><a href="javascript:void(0);">Profile</a></li>
+        <li><a href="javascript:void(0);">Messages</a></li>
+      </ul>
+      <br />
+      <ul class="nav nav-tabs nav-tabs-pf">
+        <li><a href="javascript:void(0);">Home</a></li>
+        <li><a href="javascript:void(0);">Profile</a></li>
+        <li class="active"><a href="javascript:void(0);">Messages</a></li>
+      </ul>
+      <h3>Justified</h3>
+      <ul class="nav nav-tabs nav-tabs-pf nav-justified">
+        <li class="active"><a href="javascript:void(0);">Home</a></li>
+        <li><a href="javascript:void(0);">Profile</a></li>
+        <li><a href="javascript:void(0);">Messages</a></li>
+      </ul>
+      <br />
+      <ul class="nav nav-tabs nav-tabs-pf nav-justified">
+        <li><a href="javascript:void(0);">Home</a></li>
+        <li class="active"><a href="javascript:void(0);">Profile</a></li>
+        <li><a href="javascript:void(0);">Messages</a></li>
+      </ul>
+      <br />
+      <ul class="nav nav-tabs nav-tabs-pf nav-justified">
+        <li><a href="javascript:void(0);">Home</a></li>
+        <li><a href="javascript:void(0);">Profile</a></li>
+        <li class="active"><a href="javascript:void(0);">Messages</a></li>
+      </ul>
+      <h3>Tabs with dropdowns</h3>
+      <ul class="nav nav-tabs nav-tabs-pf">
+        <li class="active"><a href="javascript:void(0);">Home</a></li>
+        <li><a href="javascript:void(0);">Help</a></li>
+        <li class="dropdown">
+          <a class="dropdown-toggle" data-toggle="dropdown" href="#">
+            Dropdown <span class="caret"></span>
+          </a>
+          <ul class="dropdown-menu" role="menu">
+            <li><a href="javascript:void(0);">Action</a></li>
+            <li><a href="javascript:void(0);">Another action</a></li>
+            <li><a href="javascript:void(0);">Something else here</a></li>
+            <li class="divider"></li>
+            <li><a href="javascript:void(0);">Separated link</a></li>
+          </ul>
+        </li>
+      </ul>
+      <br />
+      <ul class="nav nav-tabs nav-tabs-pf">
+        <li><a href="javascript:void(0);">Home</a></li>
+        <li class="active"><a href="javascript:void(0);">Help</a></li>
+        <li class="dropdown">
+          <a class="dropdown-toggle" data-toggle="dropdown" href="#">
+            Dropdown <span class="caret"></span>
+          </a>
+          <ul class="dropdown-menu pull-right" role="menu">
+            <li><a href="javascript:void(0);">Action</a></li>
+            <li><a href="javascript:void(0);">Another action</a></li>
+            <li><a href="javascript:void(0);">Something else here</a></li>
+            <li class="divider"></li>
+            <li><a href="javascript:void(0);">Separated link</a></li>
+          </ul>
+        </li>
+      </ul>
+      <br />
+      <ul class="nav nav-tabs nav-tabs-pf">
+        <li><a href="javascript:void(0);">Home</a></li>
+        <li><a href="javascript:void(0);">Help</a></li>
+        <li class="active dropdown">
+          <a class="dropdown-toggle" data-toggle="dropdown" href="#">
+            Dropdown <span class="caret"></span>
+          </a>
+          <ul class="dropdown-menu" role="menu">
+            <li><a href="javascript:void(0);">Action</a></li>
+            <li><a href="javascript:void(0);">Another action</a></li>
+            <li><a href="javascript:void(0);">Something else here</a></li>
+            <li class="divider"></li>
+            <li><a href="javascript:void(0);">Separated link</a></li>
+          </ul>
+        </li>
+      </ul>
+      <h3>.nav-tabs + .nav-tabs-pf</h3>
+      <p class="text-info">
+        <strong>Note:</strong> the markup semantics used here are sub-optimal in order to easily achieve a responsive layout.
+      </p>
+      <ul class="nav nav-tabs">
+        <li class="active"><a href="javascript:void(0);">Tab One</a></li>
+        <li><a href="javascript:void(0);">Tab Two</a></li>
+        <li><a href="javascript:void(0);">Tab Three</a></li>
+        <li><a href="javascript:void(0);">Tab Four</a></li>
+        <li><a href="javascript:void(0);">Tab Five</a></li>
+        <li><a href="javascript:void(0);">Tab Six</a></li>
+        <li><a href="javascript:void(0);">Tab Seven</a></li>
+      </ul>
+      <ul class="nav nav-tabs nav-tabs-pf">
+        <li class="active"><a href="javascript:void(0);">Secondary Tab One</a></li>
+        <li><a href="javascript:void(0);">Secondary Tab Two</a></li>
+        <li><a href="javascript:void(0);">Secondary Tab Three</a></li>
+        <li><a href="javascript:void(0);">Secondary Tab Four</a></li>
+        <li><a href="javascript:void(0);">Secondary Tab Five</a></li>
+        <li><a href="javascript:void(0);">Secondary Tab Six</a></li>
+        <li><a href="javascript:void(0);">Secondary Tab Seven</a></li>
+      </ul>
+      <br />
+      <ul class="nav nav-tabs">
+        <li class="active"><a href="javascript:void(0);">Tab One</a></li>
+        <li><a href="javascript:void(0);">Tab Two</a></li>
+        <li><a href="javascript:void(0);">Tab Three</a></li>
+        <li><a href="javascript:void(0);">Tab Four</a></li>
+        <li><a href="javascript:void(0);">Tab Five</a></li>
+        <li><a href="javascript:void(0);">Tab Six</a></li>
+        <li><a href="javascript:void(0);">Tab Seven</a></li>
+      </ul>
+      <ul class="nav nav-tabs nav-tabs-pf">
+        <li><a href="javascript:void(0);">Secondary Tab One</a></li>
+        <li class="active"><a href="javascript:void(0);">Secondary Tab Two</a></li>
+        <li><a href="javascript:void(0);">Secondary Tab Three</a></li>
+        <li><a href="javascript:void(0);">Secondary Tab Four</a></li>
+        <li><a href="javascript:void(0);">Secondary Tab Five</a></li>
+        <li><a href="javascript:void(0);">Secondary Tab Six</a></li>
+        <li><a href="javascript:void(0);">Secondary Tab Seven</a></li>
+      </ul>
+      <br />
+      <ul class="nav nav-tabs">
+        <li><a href="javascript:void(0);">Tab One</a></li>
+        <li class="active"><a href="javascript:void(0);">Tab Two</a></li>
+        <li><a href="javascript:void(0);">Tab Three</a></li>
+        <li><a href="javascript:void(0);">Tab Four</a></li>
+        <li><a href="javascript:void(0);">Tab Five</a></li>
+        <li><a href="javascript:void(0);">Tab Six</a></li>
+        <li><a href="javascript:void(0);">Tab Seven</a></li>
+      </ul>
+      <ul class="nav nav-tabs nav-tabs-pf">
+        <li><a href="javascript:void(0);">Secondary Tab One</a></li>
+        <li class="active"><a href="javascript:void(0);">Secondary Tab Two</a></li>
+        <li><a href="javascript:void(0);">Secondary Tab Three</a></li>
+        <li><a href="javascript:void(0);">Secondary Tab Four</a></li>
+        <li><a href="javascript:void(0);">Secondary Tab Five</a></li>
+        <li><a href="javascript:void(0);">Secondary Tab Six</a></li>
+        <li><a href="javascript:void(0);">Secondary Tab Seven</a></li>
+      </ul>
+      <h3>.nav-tabs.nav-tabs-pf-secondary</h3>
+      <ul class="nav nav-tabs">
+        <li class="active"><a href="#tab1" data-toggle="tab">Tab One</a></li>
+        <li><a href="#tab2" data-toggle="tab">Tab Two</a></li>
+        <li><a href="#tab3" data-toggle="tab">Tab Three</a></li>
+      </ul>
+      <div class="tab-content">
+        <div class="tab-pane active" id="tab1">
+          <ul class="nav nav-tabs nav-tabs-pf nav-tabs-pf-secondary">
+            <li class="active"><a href="javascript:void(0);">Secondary Tab A</a></li>
+            <li><a href="javascript:void(0);">Secondary Tab B</a></li>
+            <li><a href="javascript:void(0);">Secondary Tab C</a></li>
+          </ul>
+        </div>
+        <div class="tab-pane" id="tab2">
+          <ul class="nav nav-tabs nav-tabs-pf nav-tabs-pf-secondary">
+            <li class="active"><a href="javascript:void(0);">Secondary Tab D</a></li>
+            <li><a href="javascript:void(0);">Secondary Tab E</a></li>
+            <li><a href="javascript:void(0);">Secondary Tab F</a></li>
+          </ul>
+        </div>
+        <div class="tab-pane" id="tab3">
+          <ul class="nav nav-tabs nav-tabs-pf nav-tabs-pf-secondary">
+            <li class="active"><a href="javascript:void(0);">Secondary Tab G</a></li>
+            <li><a href="javascript:void(0);">Secondary Tab H</a></li>
+            <li><a href="javascript:void(0);">Secondary Tab I</a></li>
+          </ul>
+        </div>
+      </div>
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/tests.css b/themes/src/main/node_modules/rcue/tests/tests.css
new file mode 100644
index 0000000..ffaeab3
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/tests.css
@@ -0,0 +1,16 @@
+body {
+  padding-bottom: 100px;
+}
+
+.icons .fa, .icons .glyphicon, .icons .pficon {
+  font-size: 14px;
+  margin-right: 5px;
+  text-align: center;
+  width: 14px;
+}
+.icons .icon-class {
+  display: inline-block;
+}
+.icons li {
+  margin: 0 0 7px;
+}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/tests/time-picker.html b/themes/src/main/node_modules/rcue/tests/time-picker.html
new file mode 100644
index 0000000..86fa0b8
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/time-picker.html
@@ -0,0 +1,75 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Time Picker - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.14.1/moment.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.47/js/bootstrap-datetimepicker.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Time Picker</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://eonasdan.github.io/bootstrap-datetimepicker/#custom-formats">http://eonasdan.github.io/bootstrap-datetimepicker/#custom-formats</a>.
+      </div>
+      <hr>
+<h3>Component</h3>
+<div class="row">
+  <div class="col-lg-4 col-md-5 col-sm-6">
+    <div class="input-group time-picker-pf" id="timepicker1">
+  <input type="text" class="form-control">
+      <span class="input-group-addon btn btn-default">
+        <span class="fa fa-clock-o"></span>
+      </span>
+</div>
+<script>
+  $(function () {
+    $('#timepicker1').datetimepicker({
+      format: 'LT',
+      keyBinds: {
+        enter: function () {
+          $('#timepicker1').find('input').trigger('change');
+          this.hide();
+        }
+      }
+    });
+    $('#timepicker1').data('DateTimePicker').clear();
+  });
+</script>
+
+  </div>
+</div>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/toast.html b/themes/src/main/node_modules/rcue/tests/toast.html
new file mode 100644
index 0000000..77c5194
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/toast.html
@@ -0,0 +1,87 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Toast Notifications - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Toast Notifications</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+<div class="toast-notifications-list-pf">
+  <div class="toast-pf alert alert-success">
+    <div class="pull-right toast-pf-action">
+      <a href="#">Start Server</a>
+    </div>
+    <span class="pficon pficon-ok"></span>
+    <strong>server</strong> has been added.
+  </div>
+  <div class="toast-pf alert alert-danger alert-dismissable">
+    <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+      <span class="pficon pficon-close"></span>
+    </button>
+    <span class="pficon pficon-error-circle-o"></span>
+    Failed to add <strong>server_abc</strong>.
+  </div>
+  <div class="toast-pf alert alert-warning">
+    <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+    <div class="pull-right toast-pf-action">
+      <a href="#">Reload Server</a>
+    </div>
+    <span class="pficon pficon-warning-triangle-o"></span>
+    The server configuration changed.
+  </div>
+  <div class="toast-pf alert alert-info">
+    <span class="pficon pficon-info"></span>
+    Praesent sagittis est et arcu fringilla placerat. Cras erat ante, dapibus non mauris ac, volutpat sollicitudin ligula. Morbi gravida nisl vel risus tempor, sit amet luctus erat tempus. Curabitur blandit sem non pretium bibendum. Donec eleifend non turpis vitae vestibulum. Vestibulum ut sem ac nunc posuere blandit sed porta lorem. Cras rutrum velit vel leo iaculis imperdiet.
+  </div>
+</div>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/toolbar.html b/themes/src/main/node_modules/rcue/tests/toolbar.html
new file mode 100644
index 0000000..addea1e
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/toolbar.html
@@ -0,0 +1,275 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Toolbar - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Toolbar</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <h2>Toolbar with Horizontal Navigation</h2>
+    <nav class="navbar navbar-default navbar-pf" role="navigation">
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+        </a>
+      </div>
+      <div class="collapse navbar-collapse navbar-collapse-1">
+        <ul class="nav navbar-nav navbar-utility">
+          <li class="dropdown">
+            <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+              <span title="Help" class="fa pficon-help"></span>
+              <span class="caret"></span>
+            </a>
+            <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+              <li><a href="#0">Help</a></li>
+              <li><a href="#0">About</a></li>
+            </ul>
+          </li>
+          <li class="dropdown">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+              <span class="pficon pficon-user"></span>
+              Brian Johnson <b class="caret"></b>
+            </a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-submenu">
+                <a tabindex="-1" href="#0">More options</a>
+                <ul class="dropdown-menu">
+                  <li>
+                    <a href="#0">Link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Another link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Something else here</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li class="dropdown-header">Nav header</li>
+                  <li>
+                    <a href="#0">Separated link</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li>
+                    <a href="#0">One more separated link</a>
+                  </li>
+                </ul>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+        <ul class="nav navbar-nav navbar-primary">
+          <li>
+            <a href="basic.html">Basic</a>
+          </li>
+          <li>
+            <a href="bootstrap-treeview-2.html">Tree View</a>
+          </li>
+          <li>
+            <a href="dashboard.html">Dashboard</a>
+          </li>
+          <li>
+            <a href="form.html">Form</a>
+          </li>
+          <li>
+            <a href="tab.html">Tab</a>
+          </li>
+          <li>
+            <a href="typography-2.html">Typography</a>
+          </li>
+          <li>
+            <a href="card-view-multi-select.html">Card View - Multi Select</a>
+          </li>
+          <li>
+            <a href="card-view-single-select.html">Card View - Single Select</a>
+          </li>
+          <li>
+            <a href="cards.html">Cards</a>
+          </li>
+          <li>
+            <a href="pagination-card-view.html">Pagination - Card View</a>
+          </li>
+        </ul>
+      </div>
+    </nav>
+
+      <div class="container-fluid">
+        <div class="row toolbar-pf">
+          <div class="col-sm-12">
+            <form class="toolbar-pf-actions">
+              <div class="form-group toolbar-pf-filter">
+                <label class="sr-only" for="filter">Name</label>
+                <div class="input-group">
+                  <div class="input-group-btn">
+                    <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
+                    <ul class="dropdown-menu">
+                      <li class="selected"><a href="#">Name</a></li>
+                      <li><a href="#">Type</a></li>
+                      <li><a href="#">Color</a></li>
+                    </ul>
+                  </div><!-- /btn-group -->
+                  <input type="text" class="form-control" id="filter" placeholder="Filter By Name...">
+                </div><!-- /input-group -->
+              </div>
+              <div class="form-group">
+                <div class="dropdown btn-group">
+                  <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Name <span class="caret"></span></button>
+                  <ul class="dropdown-menu">
+                    <li class="selected"><a href="#">Name</a></li>
+                    <li><a href="#">Type</a></li>
+                    <li><a href="#">Last Modified</a></li>
+                  </ul>
+                </div>
+                <button class="btn btn-link" type="button">
+                  <span class="fa fa-sort-alpha-asc"></span>
+                </button>
+              </div>
+              <div class="form-group">
+                <button class="btn btn-default" type="button">Action</button>
+                <button class="btn btn-default" type="button">Action</button>
+                <div class="dropdown btn-group  dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebab" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu " aria-labelledby="dropdownKebab">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+              </div>
+              <div class="toolbar-pf-action-right">
+                <div class="form-group toolbar-pf-find">
+                  <button class="btn btn-link btn-find" type="button">
+                    <span class="fa fa-search"></span>
+                  </button>
+                  <div class="find-pf-dropdown-container">
+                    <input type="text" class="form-control" id="find" placeholder="Find By Keyword...">
+                    <div class="find-pf-buttons">
+                      <span class="find-pf-nums">1 of 3</span>
+                      <button class="btn btn-link" type="button">
+                        <span class="fa fa-angle-up"></span>
+                      </button>
+                      <button class="btn btn-link" type="button">
+                        <span class="fa fa-angle-down"></span>
+                      </button>
+                      <button class="btn btn-link btn-find-close" type="button">
+                        <span class="pficon pficon-close"></span>
+                      </button>
+                    </div>
+                  </div>
+                </div>
+                <div class="form-group toolbar-pf-view-selector">
+                  <button class="btn btn-link active"><i class="fa fa-th"></i></button>
+                  <button class="btn btn-link "><i class="fa fa-th-large"></i></button>
+                  <button class="btn btn-link "><i class="fa fa-th-list"></i></button>
+                </div>
+              </div>
+            </form>
+            <div class="row toolbar-pf-results">
+              <div class="col-sm-12">
+                <h5>40 Results</h5>
+                <p>Active filters:</p>
+                <ul class="list-inline">
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                  <li>
+                    <span class="label label-info">
+                      Name: nameofthething
+                      <a href="#"><span class="pficon pficon-close"></span></a>
+                    </span>
+                  </li>
+                </ul>
+                <p><a href="#">Clear All Filters</a></p>
+              </div><!-- /col -->
+            </div><!-- /row -->
+          </div><!-- /col -->
+        </div><!-- /row -->
+      </div><!-- /container -->
+
+      <script>
+      (function($) {
+        $(document).ready(function() {
+          // Upon clicking the find button, show the find dropdown content
+          $(".btn-find").click(function () {
+            $(this).parent().find(".find-pf-dropdown-container").toggle();
+          });
+          // Upon clicking the find close button, hide the find dropdown content
+          $(".btn-find-close").click(function () {
+            $(".find-pf-dropdown-container").hide();
+          });
+
+        });
+      })(jQuery);
+    </script>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/tooltip.html b/themes/src/main/node_modules/rcue/tests/tooltip.html
new file mode 100644
index 0000000..5246679
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/tooltip.html
@@ -0,0 +1,71 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Tooltip - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Tooltip</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <div class="tooltip-demo">
+        <a href="#" class="btn btn-default" data-toggle="tooltip" title="Caribbean Monk Seal, Barbary Lion, Seaside Sparrow">Caribbean Monk Seal, Barbary L...</a>
+      </div>
+      <br>
+      <h2>Tooltip Directions</h2>
+      <div class="tooltip-demo">
+        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis pretium mi at ante luctus dapibus. Fusce in tempus felis. Suspendisse tristique diam vel.</p>
+        <div class="bs-example-tooltips">
+          <button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="left" title="Tooltip on left">Tooltip on left</button>
+          <button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Tooltip on top">Tooltip on top</button>
+          <button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Tooltip on bottom">Tooltip on bottom</button>
+          <button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Tooltip on right">Tooltip on right</button>
+        </div>
+        <p style="margin-top: 10px;">Suspendisse tristique diam vel hendrerit aliquet. Vestibulum laoreet nisi ac egestas porttitor. Donec tempus elit convallis.</p>
+      </div>
+      <script>
+        // Initialize Tooltip
+        $(document).ready(function() {
+          $('.tooltip-demo').tooltip({
+            selector: "[data-toggle=tooltip]",
+            container: "body"
+          });
+        });
+      </script>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/typography.html b/themes/src/main/node_modules/rcue/tests/typography.html
new file mode 100644
index 0000000..83e52d7
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/typography.html
@@ -0,0 +1,212 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Typography - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Typography</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+      <h2>Headings</h2>
+      <h1>h1. Bootstrap heading</h1>
+      <h2>h2. Bootstrap heading</h2>
+      <h3>h3. Bootstrap heading</h3>
+      <h4>h4. Bootstrap heading</h4>
+      <h5>h5. Bootstrap heading</h5>
+      <h6>h6. Bootstrap heading</h6>
+      <h1>h1. Bootstrap heading <small>Secondary text</small></h1>
+      <h2>h2. Bootstrap heading <small>Secondary text</small></h2>
+      <h3>h3. Bootstrap heading <small>Secondary text</small></h3>
+      <h4>h4. Bootstrap heading <small>Secondary text</small></h4>
+      <h5>h5. Bootstrap heading <small>Secondary text</small></h5>
+      <h6>h6. Bootstrap heading <small>Secondary text</small></h6>
+      <hr>
+      <h2>Body Copy</h2>
+      <p>Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.</p>
+      <p>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla.</p>
+      <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.</p>
+      <h3>Lead Body Copy</h3>
+      <p class="lead">Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.</p>
+      <hr>
+      <h2>Emphasis</h2>
+      <h3>Small Text</h3>
+      <small>This line of text is meant to be treated as fine print.</small>
+      <h3>Bold</h3>
+      <p>The following snippet of text is <strong>rendered as bold text</strong>.</p>
+      <h3>Italics</h3>
+      <p>The following snippet of text is <em>rendered as italicized text</em>.</p>
+      <h3>Alignment classes</h3>
+      <p class="text-left">Left aligned text.</p>
+      <p class="text-center">Center aligned text.</p>
+      <p class="text-right">Right aligned text.</p>
+      <p class="text-justify">Justified text.</p>
+      <hr>
+      <h2>Abbreviations</h2>
+      <h3>Basic abbreviation</h3>
+      <p>An abbreviation of the word attribute is <abbr title="attribute">attr</abbr>.</p>
+      <h3>Initialism</h3>
+      <p><abbr title="HyperText Markup Language" class="initialism">HTML</abbr> is the best thing since sliced bread.</p>
+      <hr>
+      <h2>Addresses</h2>
+      <address>
+        <strong>Twitter, Inc.</strong><br>
+        795 Folsom Ave, Suite 600<br>
+        San Francisco, CA 94107<br>
+        <abbr title="Phone">P:</abbr> (123) 456-7890
+      </address>
+      <address>
+        <strong>Full Name</strong><br>
+        <a href="mailto:#">first.last@example.com</a>
+      </address>
+      <hr>
+      <h2>Blockquotes</h2>
+      <h3>Default blockquote</h3>
+      <blockquote>
+        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
+      </blockquote>
+      <h3>Blockquote options</h3>
+      <blockquote>
+        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
+        <footer>Someone famous in <cite title="Source Title">Source Title</cite></footer>
+      </blockquote>
+      <blockquote class="blockquote-reverse">
+        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
+        <footer>Someone famous in <cite title="Source Title">Source Title</cite></footer>
+      </blockquote>
+      <hr>
+      <h2>Lists</h2>
+      <h3>Unordered</h3>
+      <ul>
+        <li>Lorem ipsum dolor sit amet</li>
+        <li>Consectetur adipiscing elit</li>
+        <li>Integer molestie lorem at massa</li>
+        <li>Facilisis in pretium nisl aliquet</li>
+        <li>Nulla volutpat aliquam velit
+          <ul>
+            <li>Phasellus iaculis neque</li>
+            <li>Purus sodales ultricies</li>
+            <li>Vestibulum laoreet porttitor sem</li>
+            <li>Ac tristique libero volutpat at</li>
+          </ul>
+        </li>
+        <li>Faucibus porta lacus fringilla vel</li>
+        <li>Aenean sit amet erat nunc</li>
+        <li>Eget porttitor lorem</li>
+      </ul>
+      <h3>Ordered</h3>
+      <ol>
+        <li>Lorem ipsum dolor sit amet</li>
+        <li>Consectetur adipiscing elit</li>
+        <li>Integer molestie lorem at massa</li>
+        <li>Facilisis in pretium nisl aliquet</li>
+        <li>Nulla volutpat aliquam velit</li>
+        <li>Faucibus porta lacus fringilla vel</li>
+        <li>Aenean sit amet erat nunc</li>
+        <li>Eget porttitor lorem</li>
+      </ol>
+      <h3>Unstyled</h3>
+      <ul class="list-unstyled">
+        <li>Lorem ipsum dolor sit amet</li>
+        <li>Consectetur adipiscing elit</li>
+        <li>Integer molestie lorem at massa</li>
+        <li>Facilisis in pretium nisl aliquet</li>
+        <li>Nulla volutpat aliquam velit
+          <ul>
+            <li>Phasellus iaculis neque</li>
+            <li>Purus sodales ultricies</li>
+            <li>Vestibulum laoreet porttitor sem</li>
+            <li>Ac tristique libero volutpat at</li>
+          </ul>
+        </li>
+        <li>Faucibus porta lacus fringilla vel</li>
+        <li>Aenean sit amet erat nunc</li>
+        <li>Eget porttitor lorem</li>
+       </ul>
+      <h3>Inline</h3>
+      <ul class="list-inline">
+        <li>Lorem ipsum</li>
+        <li>Phasellus iaculis</li>
+        <li>Nulla volutpat</li>
+      </ul>
+      <h3>Description</h3>
+      <dl>
+        <dt>Description lists</dt>
+        <dd>A description list is perfect for defining terms.</dd>
+        <dt>Euismod</dt>
+        <dd>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd>
+        <dd>Donec id elit non mi porta gravida at eget metus.</dd>
+        <dt>Malesuada porta</dt>
+        <dd>Etiam porta sem malesuada magna mollis euismod.</dd>
+      </dl>
+      <dl class="dl-horizontal">
+        <dt>Description lists</dt>
+        <dd>A description list is perfect for defining terms.</dd>
+        <dt>Euismod</dt>
+        <dd>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd>
+        <dd>Donec id elit non mi porta gravida at eget metus.</dd>
+        <dt>Malesuada porta</dt>
+        <dd>Etiam porta sem malesuada magna mollis euismod.</dd>
+        <dt>Felis euismod semper eget lacinia</dt>
+        <dd>Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</dd>
+      </dl>
+      <hr>
+      <div class="page-header">
+        <h1>Page Header</h1>
+      </div>
+      <h2>Font Weights</h2>
+      <ul>
+        <li style="font-weight: 300;">OpenSans Light 300</li>
+        <li style="font-weight: 300;"><i>OpenSans Light Italic 300</i></li>
+        <li>OpenSans Regular 400</li>
+        <li><i>OpenSans Regular Italic 400</i></li>
+        <li style="font-weight: 600;">OpenSans SemiBold 500</li>
+        <li style="font-weight: 600;"><i>OpenSans SemiBold Italic 500</i></li>
+        <li style="font-weight: 700;">OpenSans Bold 600</li>
+        <li style="font-weight: 700;"><i>OpenSans Bold Italic 600</i></li>
+        <li style="font-weight: 800;">OpenSans ExtraBold 700</li>
+        <li style="font-weight: 800;"><i>OpenSans ExtraBold Italic 700</i></li>
+      </ul>
+      <h2>Diacritics</h2>
+      <p>L'avantage d'utiliser le lorem ipsum est bien évidemment de pouvoir créer des maquettes ou de remplir un site internet de contenus qui présentent un rendu s'approchant un maximum du rendu final. Par défaut lorem ipsum ne contient pas d'accent ni de caractères spéciaux contrairement à la langue française qui en contient beaucoup. C'est sur ce critère que nous proposons une solution avec cet outil qui générant du faux-texte lorem ipsum mais avec en plus, des caractères spéciaux tel que les accents ou certains symboles utiles pour la langue française. L'utilisation du lorem standard est facile d’utilisation mais lorsque le futur client utilisera votre logiciel il se peut que certains caractères spéciaux ou qu'un accent ne soient pas codés correctement. Cette page a pour but donc de pouvoir perdre le moins de temps possible et donc de tester directement si tous les encodages de base de donnée ou des sites sont les bons de plus il permet de récuperer un code css avec le texte formaté !</p>
+
+      <p>Příliš žluťoučký kůň úpěl ďábelské ódy.</p>
+      <p>Lorem Ipsum - это текст-"рыба", часто используемый в печати и вэб-дизайне. Lorem Ipsum является стандартной "рыбой" для текстов на латинице с начала XVI века. В то время некий безымянный печатник создал большую коллекцию размеров и форм шрифтов, используя Lorem Ipsum для распечатки образцов. Lorem Ipsum не только успешно пережил без заметных изменений пять веков, но и перешагнул в электронный дизайн. Его популяризации в новое время послужили публикация листов Letraset с образцами Lorem Ipsum в 60-х годах и, в более недавнее время, программы электронной вёрстки типа Aldus PageMaker, в шаблонах которых используется Lorem Ipsum.</p>
+      <h3>caractères spéciaux</h3>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/typography-2.css b/themes/src/main/node_modules/rcue/tests/typography-2.css
new file mode 100644
index 0000000..32b30d4
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/typography-2.css
@@ -0,0 +1,10 @@
+/* Custom styles for typography-2.html */
+
+@media (min-width: 768px) {
+.border-right {
+  border-right: 1px solid #d1d1d1;
+}
+
+section + section {
+  margin: 4em 0;
+}
\ No newline at end of file
diff --git a/themes/src/main/node_modules/rcue/tests/typography-2.html b/themes/src/main/node_modules/rcue/tests/typography-2.html
new file mode 100644
index 0000000..57243a8
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/typography-2.html
@@ -0,0 +1,320 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Typography - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="typography-2.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body>
+    <nav class="navbar navbar-default navbar-pf" role="navigation">
+      <div class="navbar-header">
+        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse-1">
+          <span class="sr-only">Toggle navigation</span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+          <span class="icon-bar"></span>
+        </button>
+        <a class="navbar-brand" href="/">
+          <img src="/dist/img/brand.svg" alt="Red Hat&reg; Common User Experience" />
+        </a>
+      </div>
+      <div class="collapse navbar-collapse navbar-collapse-1">
+        <ul class="nav navbar-nav navbar-utility">
+          <li class="dropdown">
+            <a href="#0" class="nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+              <span title="Help" class="fa pficon-help"></span>
+              <span class="caret"></span>
+            </a>
+            <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+              <li><a href="#0">Help</a></li>
+              <li><a href="#0">About</a></li>
+            </ul>
+          </li>
+          <li class="dropdown">
+            <a href="#0" class="dropdown-toggle" data-toggle="dropdown">
+              <span class="pficon pficon-user"></span>
+              Brian Johnson <b class="caret"></b>
+            </a>
+            <ul class="dropdown-menu">
+              <li>
+                <a href="#0">Link</a>
+              </li>
+              <li>
+                <a href="#0">Another link</a>
+              </li>
+              <li>
+                <a href="#0">Something else here</a>
+              </li>
+              <li class="divider"></li>
+              <li class="dropdown-submenu">
+                <a tabindex="-1" href="#0">More options</a>
+                <ul class="dropdown-menu">
+                  <li>
+                    <a href="#0">Link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Another link</a>
+                  </li>
+                  <li>
+                    <a href="#0">Something else here</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li class="dropdown-header">Nav header</li>
+                  <li>
+                    <a href="#0">Separated link</a>
+                  </li>
+                  <li class="divider"></li>
+                  <li>
+                    <a href="#0">One more separated link</a>
+                  </li>
+                </ul>
+              </li>
+              <li class="divider"></li>
+              <li>
+                <a href="#0">One more separated link</a>
+              </li>
+            </ul>
+          </li>
+        </ul>
+        <ul class="nav navbar-nav navbar-primary">
+          <li>
+            <a href="basic.html">Basic</a>
+          </li>
+          <li>
+            <a href="bootstrap-treeview-2.html">Tree View</a>
+          </li>
+          <li>
+            <a href="dashboard.html">Dashboard</a>
+          </li>
+          <li>
+            <a href="form.html">Form</a>
+          </li>
+          <li>
+            <a href="tab.html">Tab</a>
+          </li>
+          <li class="active">
+            <a href="typography-2.html" class="active">Typography</a>
+          </li>
+          <li>
+            <a href="card-view-multi-select.html">Card View - Multi Select</a>
+          </li>
+          <li>
+            <a href="card-view-single-select.html">Card View - Single Select</a>
+          </li>
+          <li>
+            <a href="cards.html">Cards</a>
+          </li>
+          <li>
+            <a href="pagination-card-view.html">Pagination - Card View</a>
+          </li>
+        </ul>
+      </div>
+    </nav>
+
+    <div class="container-fluid">
+      <div class="row">
+        <div class="col-md-12">
+          <ol class="breadcrumb">
+            <li><a href="#">Home</a></li>
+            <li>Typography</li>
+          </ol>
+          <h1>Application Heading h1</h1>
+          <section>
+            <h2>Body Copy h2</h2>
+            <p>Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.</p>
+            <p>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla.</p>
+            <p>Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.</p>
+            <h3>Lead Body Copy h3</h3>
+            <p class="lead">Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.</p>
+          </section>
+          <section>
+            <h2>Emphasis</h2>
+            <div class="row">
+              <div class="col-sm-6 col-md-5">
+                <h3>Small Text</h3>
+                <small>This line of text is meant to be treated as fine print.</small>
+                <h3>Bold</h3>
+                <p>The following snippet of text is <strong>rendered as bold text</strong>.</p>
+                <h3>Italics</h3>
+                <p>The following snippet of text is <em>rendered as italicized text</em>.</p>
+                <h3>Link Text</h3>
+                <p>The follong snippet of text is <a href="#">rendered as link text</a>.</p>
+              </div><!-- /col -->
+              <div class="col-sm-6 col-md-7">
+                <h3>Description</h3>
+                <dl>
+                  <dt>Description lists</dt>
+                  <dd>A description list is perfect for defining terms.</dd>
+                  <dt>Euismod</dt>
+                  <dd>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd>
+                  <dd>Donec id elit non mi porta gravida at eget metus.</dd>
+                  <dt>Malesuada porta</dt>
+                  <dd>Etiam porta sem malesuada magna mollis euismod.</dd>
+                </dl>
+                <dl class="dl-horizontal">
+                  <dt>Description lists</dt>
+                  <dd>A description list is perfect for defining terms.</dd>
+                  <dt>Euismod</dt>
+                  <dd>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd>
+                  <dd>Donec id elit non mi porta gravida at eget metus.</dd>
+                  <dt>Malesuada porta</dt>
+                  <dd>Etiam porta sem malesuada magna mollis euismod.</dd>
+                  <dt>Felis euismod semper eget lacinia</dt>
+                  <dd>Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</dd>
+                </dl>
+              </div><!-- /col -->
+            </div><!-- /row -->
+            <h3>Alignment classes</h3>
+            <table class="table table-bordered">
+              <tr>
+                <td class="text-left">
+                  Left aligned text.
+                </td>
+                <td class="text-center">
+                  Center aligned text.
+                </td>
+                <td class="text-right">
+                  Right aligned text.
+                </td>
+              </tr>
+            </table>
+          </section>
+          <section>
+            <h2>Lists</h2>
+            <div class="row">
+              <div class="col-sm-6 col-md-3">
+                <h3>Unordered</h3>
+                <ul>
+                  <li>Lorem ipsum dolor sit amet</li>
+                  <li>Consectetur adipiscing elit</li>
+                  <li>Integer molestie lorem at massa</li>
+                  <li>Facilisis in pretium nisl aliquet</li>
+                  <li>Nulla volutpat aliquam velit
+                    <ul>
+                      <li>Phasellus iaculis neque</li>
+                      <li>Purus sodales ultricies</li>
+                      <li>Vestibulum laoreet porttitor sem</li>
+                      <li>Ac tristique libero volutpat at</li>
+                    </ul>
+                  </li>
+                  <li>Faucibus porta lacus fringilla vel</li>
+                  <li>Aenean sit amet erat nunc</li>
+                  <li>Eget porttitor lorem</li>
+                </ul>
+              </div><!-- /col -->
+              <div class="col-sm-6 col-md-3">
+                <h3>Ordered</h3>
+                <ol>
+                  <li>Lorem ipsum dolor sit amet</li>
+                  <li>Consectetur adipiscing elit</li>
+                  <li>Integer molestie lorem at massa</li>
+                  <li>Facilisis in pretium nisl aliquet</li>
+                  <li>Nulla volutpat aliquam velit</li>
+                  <li>Faucibus porta lacus fringilla vel</li>
+                  <li>Aenean sit amet erat nunc</li>
+                  <li>Eget porttitor lorem</li>
+                </ol>
+               </div><!-- /col -->
+               <div class="clearfix visible-sm"></div>
+               <div class="col-sm-6 col-md-3">
+                <h3>Unstyled</h3>
+                <ul class="list-unstyled">
+                  <li>Lorem ipsum dolor sit amet</li>
+                  <li>Consectetur adipiscing elit</li>
+                  <li>Integer molestie lorem at massa</li>
+                  <li>Facilisis in pretium nisl aliquet</li>
+                  <li>Nulla volutpat aliquam velit
+                    <ul>
+                      <li>Phasellus iaculis neque</li>
+                      <li>Purus sodales ultricies</li>
+                      <li>Vestibulum laoreet porttitor sem</li>
+                      <li>Ac tristique libero volutpat at</li>
+                    </ul>
+                  </li>
+                  <li>Faucibus porta lacus fringilla vel</li>
+                  <li>Aenean sit amet erat nunc</li>
+                  <li>Eget porttitor lorem</li>
+                 </ul>
+                </div><!-- /col -->
+                <div class="col-sm-6 col-md-3">
+                  <h3>Inline</h3>
+                  <ul class="list-inline">
+                    <li>Lorem ipsum</li>
+                    <li>Phasellus iaculis</li>
+                    <li>Nulla volutpat</li>
+                  </ul>
+               </div><!-- /col -->
+            </div><!-- /row -->
+          </section>
+          <section>
+            <h2>Power Management</h2>
+            <div class="row">
+              <div class="col-sm-8 col-md-8 border-right">
+                <dl class="dl-horizontal">
+                  <dt>Name</dt>
+                  <dd>07efaldskj-asdpa-sdf-ads-5</dd>
+                  <dt>Hostname</dt>
+                  <dd>Local.host/default</dd>
+                  <dt>IP Address</dt>
+                  <dd>10.110.11.0</dd>
+                </dl>
+                <p>Natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla.  Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.</p>
+              </div><!-- /col -->
+              <div class="col-sm-4 col-md-4">
+                <dl>
+                  <dt>System-1a1a1a</dt>
+                  <dd>System never checked in | OS: x86_64</dd>
+                  <dt>System-2b2b2b</dt>
+                  <dd class="text-muted"><em>System unavaliable | OS: N/A</em></dd>
+                  <dt>System-3c3c3c3</dt>
+                  <dd>System never checked in | OS: x86_64</dd>
+                  <dt>System-4d4d4d</dt>
+                  <dd>System never checked in | OS: x86_64</dd>
+                </dl>
+              </div><!-- /col -->
+            </div><!-- /row -->
+          </section>
+          <p class="text-info">
+            <strong>Note:</strong>  This layout utilizes custom CSS.  See <a href="typography-2.css">typography-2.css</a>.
+          </p>
+        </div><!-- /col -->
+      </div><!-- /row -->
+    </div><!-- /container -->
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/utilization-bar-charts.html b/themes/src/main/node_modules/rcue/tests/utilization-bar-charts.html
new file mode 100644
index 0000000..1732793
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/utilization-bar-charts.html
@@ -0,0 +1,69 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Utilization Bar Charts - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Utilization Bar Charts</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a>, <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>, and <a href="http://c3js.org/">http://c3js.org/</a>
+      </div>
+      <hr>
+<h2>Utilization Bar Chart</h2>
+<div class="row">
+  <div class="col-xs-8 col-sm-6 col-md-6">
+    <div class="progress">
+  <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
+    <span class="sr-only">25% Used</span>
+  </div>
+  <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
+    <span class="sr-only">75% Available</span>
+  </div>
+</div>
+<script>
+  // Initialize Tooltip
+  jQuery(document).ready(function() {
+    jQuery('[data-toggle="tooltip"]').tooltip();
+  });
+</script>
+
+  </div>
+</div>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/vertical-navigation-primary-only.html b/themes/src/main/node_modules/rcue/tests/vertical-navigation-primary-only.html
new file mode 100644
index 0000000..9384a29
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/vertical-navigation-primary-only.html
@@ -0,0 +1,1711 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 layout-pf layout-pf-fixed"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="layout-pf layout-pf-fixed">
+  <!--<![endif]-->
+    <head>
+    <title>Vertical Navigation with Primary Only - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body class="cards-pf">
+    
+
+  
+
+<nav class="navbar navbar-pf-vertical">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a href="/" class="navbar-brand">
+      <img class="navbar-brand-icon" src="/dist/img/logo.svg" alt=""/><img class="navbar-brand-name" src="/dist/img/brand-alt.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+    
+  </div>
+  <nav class="collapse navbar-collapse">
+    <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
+      
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Username" class="fa pficon-user"></span>
+          Brian Johnson <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
+          <li><a href="#0">Preferences</a></li>
+          <li><a href="#0">Logout</a></li>
+        </ul>
+      </li>
+    </ul>
+  </nav>
+  
+  <div class="drawer-pf hide drawer-pf-notifications-non-clickable">
+  <div class="drawer-pf-title">
+    <a class="drawer-pf-toggle-expand fa fa-angle-double-left hidden-xs"></a>
+    <a  class="drawer-pf-close pficon pficon-close"></a>
+    <h3 class="text-center">Notifications Drawer</h3>
+  </div>
+  <div class="panel-group" id="notification-drawer-accordion">
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseOne">
+            Notification Tab 1
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseOne" class="panel-collapse collapse in">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight11">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight21" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight21">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight31" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight31">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight41" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight41">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseTwo">
+            Notification Tab 2
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseTwo" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight12">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight22" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight22">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight32" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight32">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight42" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight42">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight13">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight23" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight23">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight33" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight33">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight43" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight43">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight14">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight24" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight24">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight34" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight34">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight44" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight44">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-loading text-center">
+            <span class="spinner spinner-xs spinner-inline"></span> Loading More
+          </div>
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseThree">
+            Notification Tab 3
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseThree" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight15">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight25" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight25">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight35" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight35">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight45" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight45">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight16" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight16">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight26" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight26">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight36" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight36">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight46" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight46">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight17" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight17">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight27" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight27">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight37" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight37">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight47" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight47">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  $(document).ready(function() {
+    // Initialize to unread notifications
+    // TODO: add badge for unread notifications
+
+    // Show/Hide Notifications Drawer
+    $('.drawer-pf-trigger').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $(this).toggleClass('open');
+      if ($drawer.hasClass('hide')) {
+        $drawer.removeClass('hide');
+        setTimeout(function () {
+          if (window.dispatchEvent) {
+            window.dispatchEvent(new Event('resize'));
+          }
+          // Special case for IE
+          if ($(document).fireEvent) {
+            $(document).fireEvent('onresize');
+          }
+        }, 100);
+      } else {
+        $drawer.addClass('hide');
+      }
+      // Special case, close navigation menu in mobile mode
+     if ($('.container-pf-nav-pf-vertical').hasClass('hidden-nav')) {
+       $('.nav-pf-vertical').removeClass('show-mobile-nav');
+     }
+    });
+    $('.drawer-pf-close').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $('.drawer-pf-trigger').removeClass('open');
+      $drawer.addClass('hide');
+    });
+    $('.drawer-pf-toggle-expand').click(function() {
+      var $drawer = $('.drawer-pf');
+      var $drawerNotifications = $drawer.find('.drawer-pf-notification');
+
+      if ($drawer.hasClass('drawer-pf-expanded')) {
+        $drawer.removeClass('drawer-pf-expanded');
+        $drawerNotifications.removeClass('expanded-notification');
+      } else {
+        $drawer.addClass('drawer-pf-expanded');
+        $drawerNotifications.addClass('expanded-notification');
+      }
+    });
+
+    // Mark All Read / Clear All
+    $('.panel-collapse').each(function (index, panel) {
+      var $panel = $(panel);
+      var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+      $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+
+      if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+        // TODO: remove badge for unread indicator
+      }
+
+      $panel.on('click', '.drawer-pf-action [data-toggle="mark-all-read"] .btn', function() {
+        $panel.find('.unread').removeClass('unread');
+        $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          $('.drawer-pf-trigger').removeClass('unread');
+        }
+      });
+      $panel.on('click', '.drawer-pf-action [data-toggle="clear-all"] .btn', function() {
+        $panel.find('.panel-body .drawer-pf-notification').remove();
+        $panel.find('.drawer-pf-action').remove();
+        $panel.find('.blank-slate-pf').removeClass('hidden');
+        $panel.find('.drawer-pf-loading').addClass('hidden');
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          // TODO: remove badge for unread indicator
+        }
+      });
+
+      $panel.find('.drawer-pf-notification').each(function (index, notification) {
+        var $notification = $(notification);
+        $notification.on('click', '.drawer-pf-notification-content', function() {
+          $notification.removeClass('unread');
+          var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+          $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+          if (unreadCount === 0) {
+            $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+            if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+              // TODO: remove badge for unread indicator
+            }
+          }
+        });
+      });
+    });
+
+    $('#notification-drawer-accordion').initCollapseHeights('.panel-body');
+  });
+</script>
+
+  
+</nav> <!--/.navbar-->
+
+
+<div class="nav-pf-vertical nav-pf-vertical-with-sub-menus
+     
+     
+     
+     ">
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-dashboard" data-toggle="tooltip" title="Dashboard"></span>
+        <span class="list-group-item-value">Dashboard</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-shield" data-toggle="tooltip" title="Dolor"></span>
+        <span class="list-group-item-value">Dolor</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item active " data-target="#ipsum-secondary">
+      <a href="#0">
+        <span class="fa fa-space-shuttle" data-toggle="tooltip" title="Ipsum"></span>
+        <span class="list-group-item-value">Ipsum</span>
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#amet-secondary">
+      <a href="#0">
+        <span class="fa fa-paper-plane" data-toggle="tooltip" title="Amet"></span>
+        <span class="list-group-item-value">Amet</span>
+      </a>
+      
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-graduation-cap" data-toggle="tooltip" title="Adipscing"></span>
+        <span class="list-group-item-value">Adipscing</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-gamepad" data-toggle="tooltip" title="Lorem"></span>
+        <span class="list-group-item-value">Lorem</span>
+      </a>
+    </li>
+    
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block">
+      <a href="#0">
+        <span class="pficon pficon-user" data-toggle="tooltip" title="" data-original-title="User"></span>
+        <span class="list-group-item-value">User</span>
+      </a>
+      <div id="user-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>User</span>
+        </div>
+
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Preferences</span>
+            </a>
+          </li>
+
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Logout</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block" data-target="#amet-secondary">
+      <a href="#0">
+        <span class="pficon pficon-help" data-toggle="tooltip" title="" data-original-title="Help"></span>
+        <span class="list-group-item-value">Help</span>
+      </a>
+      <div id="help-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>Help</span>
+        </div>
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Help</span>
+            </a>
+          </li>
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">About</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+
+  </ul>
+
+</div>
+<div class="container-fluid container-cards-pf container-pf-nav-pf-vertical
+     
+     
+     ">
+
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">20</span> Amet</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-warning-triangle-o"></span>1</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">9</span> Adipiscing</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status">
+            <h2 class="card-pf-title">
+              <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">12</span> Lorem</a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <span class="fa fa-rebel"></span>
+    <span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="fa fa-paper-plane"></span>
+      <span class="card-pf-aggregate-status-count">20</span> Amet
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="pficon pficon-cluster"></span>
+      <span class="card-pf-aggregate-status-count">9</span> Adipiscing
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+            <h2 class="card-pf-title">
+              <a href="#">
+                <span class="pficon pficon-image"></span>
+                <span class="card-pf-aggregate-status-count">12</span> Lorem
+              </a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Top Utilized Clusters
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-description">
+      RHOS6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 95%;"  data-toggle="tooltip" title="95% Used">
+        <span><strong>190.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;" data-toggle="tooltip" title="5% Available">
+        <span class="sr-only">5% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      CFMEQE-Cluster
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;"  data-toggle="tooltip" title="50% Used">
+        <span><strong>100.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Available">
+        <span class="sr-only">50% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHOS-Undercloud
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;"  data-toggle="tooltip" title="70% Used">
+        <span><strong>140.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width: 30%;" data-toggle="tooltip" title="30% Available">
+        <span class="sr-only">30% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHEL6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="76.5" aria-valuemin="0" aria-valuemax="100" style="width: 76.5%;"  data-toggle="tooltip" title="76.5% Used">
+        <span><strong>153.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="23.5" aria-valuemin="0" aria-valuemax="100" style="width: 23.5%;" data-toggle="tooltip" title="23.5% Available">
+        <span class="sr-only">23.5% Available</span>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Quotas
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        CPU
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
+          <span><strong>115 of 460</strong> MHz</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
+          <span class="sr-only">75% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Memory
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Used">
+          <span><strong>8 of 16</strong> GB</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Available">
+          <span class="sr-only">50% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Pods
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="62.5" aria-valuemin="0" aria-valuemax="100" style="width: 62.5%;" data-toggle="tooltip" title="62.5% Used">
+          <span><strong>5 of 8</strong> Total</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="37.5" aria-valuemin="0" aria-valuemax="100" style="width: 37.5%;" data-toggle="tooltip" title="37.5% Available">
+          <span class="sr-only">37.5% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Services
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;" data-toggle="tooltip" title="100% Used">
+          <span><strong>2 of 2</strong> Total</span>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-md-12">
+<div class="card-pf card-pf-utilization">
+  <div class="card-pf-heading">
+    <p class="card-pf-heading-details">Last 30 days</p>
+    <h2 class="card-pf-title">
+      Utilization
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="row">
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">CPU</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">50</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1000 MHz</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-1"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-1"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-1';
+          donutConfig.color =  {
+            pattern: ["#cc0000","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 95],
+              ["Available", 5]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' MHz ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart1 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-1").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("950").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("MHz Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-1';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 10, 50, 28, 20, 31, 27, 60, 36, 52, 55, 62, 68, 69, 88, 74, 88, 95],
+            ],
+            type: 'area'
+          };
+          var chart2 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Memory</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">256</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 432 GB</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-2"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-2"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-2';
+          donutConfig.color =  {
+            pattern: ["#3f9c35","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 41],
+              ["Available", 59]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' GB ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart3 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-2").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("176").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("GB Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-2';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 35, 36, 20, 30, 31, 22, 44, 36, 40, 41, 55, 52, 48, 48, 50, 40, 41],
+            ],
+            type: 'area'
+          };
+          var chart4 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Network</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">200</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-3"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-3"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-3';
+          donutConfig.color =  {
+            pattern: ["#EC7A08","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 85],
+              ["Available", 15]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart5 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-3").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-3';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+            ],
+            type: 'area'
+          };
+          var chart6 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-xs-12 col-sm-4 col-md-4">
+<div class="card-pf card-pf-utilization">
+  <h2 class="card-pf-title">
+    Network
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-utilization-details">
+      <span class="card-pf-utilization-card-details-count">200</span>
+        <span class="card-pf-utilization-card-details-description">
+          <span class="card-pf-utilization-card-details-line-1">Available</span>
+          <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+        </span>
+    </p>
+    <div id="chart-pf-donut-4"></div>
+    <div class="chart-pf-sparkline" id="chart-pf-sparkline-4"></div>
+    <script>
+      var c3ChartDefaults = $().c3ChartDefaults();
+
+      var donutConfig = c3ChartDefaults.getDefaultDonutConfig('A');
+      donutConfig.bindto = '#chart-pf-donut-4';
+      donutConfig.color =  {
+        pattern: ["#EC7A08","#D1D1D1"]
+      };
+      donutConfig.data = {
+        type: "donut",
+        columns: [
+          ["Used", 85],
+          ["Available", 15]
+        ],
+        groups: [
+          ["used", "available"]
+        ],
+        order: null
+      };
+      donutConfig.tooltip = {
+        contents: function (d) {
+          return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                  Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                  '</span>';
+        }
+      };
+
+      var chart1 = c3.generate(donutConfig);
+      var donutChartTitle = d3.select("#chart-pf-donut-4").select('text.c3-chart-arcs-title');
+      donutChartTitle.text("");
+      donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+      donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+      var sparklineConfig = c3ChartDefaults.getDefaultSparklineConfig();
+      sparklineConfig.bindto = '#chart-pf-sparkline-4';
+      sparklineConfig.data = {
+        columns: [
+          ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+        ],
+        type: 'area'
+      };
+
+      var chart2 = c3.generate(sparklineConfig);
+    </script>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-5">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <h2 class="card-pf-title">
+      Card Title
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-7">
+<div class="card-pf">
+  <h2 class="card-pf-title">
+    Card Title
+  </h2>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+  <div class="card-pf-footer">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <p>
+      <a href="#" class="card-pf-link-with-icon">
+        <span class="pficon pficon-add-circle-o"></span>Add New Cluster
+      </a>
+    </p>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-5 col-md-5">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <div class="dropdown card-pf-time-frame-filter">
+                <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+                  Last 30 Days <span class="caret"></span>
+                </button>
+                <ul class="dropdown-menu dropdown-menu-right" role="menu">
+                  <li class="selected"><a href="#">Last 30 Days</a></li>
+                  <li><a href="#">Last 60 Days</a></li>
+                  <li><a href="#">Last 90 Days</a></li>
+                </ul>
+              </div>
+              <p>
+                <a href="#" class="card-pf-link-with-icon">
+                  <span class="pficon pficon-flag"></span>View CPU Events
+                </a>
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-12 col-sm-7 col-md-7">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-8 col-md-8">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-4">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+
+</div>
+<script>
+  $(document).ready(function() {
+    // matchHeight the contents of each .card-pf and then the .card-pf itself
+    $(".row-cards-pf > [class*='col'] > .card-pf .card-pf-title").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-footer").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf").matchHeight();
+
+    // Initialize the vertical navigation
+    $().setupVerticalNavigation(true);
+  });
+</script>
+
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/vertical-navigation-with-badges.html b/themes/src/main/node_modules/rcue/tests/vertical-navigation-with-badges.html
new file mode 100644
index 0000000..516527d
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/vertical-navigation-with-badges.html
@@ -0,0 +1,2062 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 layout-pf layout-pf-fixed"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="layout-pf layout-pf-fixed">
+  <!--<![endif]-->
+    <head>
+    <title>Vertical Navigation with Tertiary Navigation (badges) - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body class="cards-pf">
+    
+
+  
+
+<nav class="navbar navbar-pf-vertical">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a href="/" class="navbar-brand">
+      <img class="navbar-brand-icon" src="/dist/img/logo.svg" alt=""/><img class="navbar-brand-name" src="/dist/img/brand-alt.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+    
+  </div>
+  <nav class="collapse navbar-collapse">
+    <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
+      
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Username" class="fa pficon-user"></span>
+          Brian Johnson <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
+          <li><a href="#0">Preferences</a></li>
+          <li><a href="#0">Logout</a></li>
+        </ul>
+      </li>
+    </ul>
+  </nav>
+  
+  <div class="drawer-pf hide drawer-pf-notifications-non-clickable">
+  <div class="drawer-pf-title">
+    <a class="drawer-pf-toggle-expand fa fa-angle-double-left hidden-xs"></a>
+    <a  class="drawer-pf-close pficon pficon-close"></a>
+    <h3 class="text-center">Notifications Drawer</h3>
+  </div>
+  <div class="panel-group" id="notification-drawer-accordion">
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseOne">
+            Notification Tab 1
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseOne" class="panel-collapse collapse in">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight11">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight21" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight21">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight31" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight31">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight41" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight41">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseTwo">
+            Notification Tab 2
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseTwo" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight12">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight22" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight22">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight32" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight32">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight42" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight42">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight13">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight23" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight23">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight33" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight33">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight43" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight43">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight14">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight24" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight24">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight34" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight34">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight44" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight44">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-loading text-center">
+            <span class="spinner spinner-xs spinner-inline"></span> Loading More
+          </div>
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseThree">
+            Notification Tab 3
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseThree" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight15">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight25" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight25">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight35" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight35">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight45" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight45">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight16" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight16">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight26" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight26">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight36" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight36">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight46" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight46">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight17" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight17">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight27" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight27">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight37" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight37">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight47" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight47">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  $(document).ready(function() {
+    // Initialize to unread notifications
+    // TODO: add badge for unread notifications
+
+    // Show/Hide Notifications Drawer
+    $('.drawer-pf-trigger').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $(this).toggleClass('open');
+      if ($drawer.hasClass('hide')) {
+        $drawer.removeClass('hide');
+        setTimeout(function () {
+          if (window.dispatchEvent) {
+            window.dispatchEvent(new Event('resize'));
+          }
+          // Special case for IE
+          if ($(document).fireEvent) {
+            $(document).fireEvent('onresize');
+          }
+        }, 100);
+      } else {
+        $drawer.addClass('hide');
+      }
+      // Special case, close navigation menu in mobile mode
+     if ($('.container-pf-nav-pf-vertical').hasClass('hidden-nav')) {
+       $('.nav-pf-vertical').removeClass('show-mobile-nav');
+     }
+    });
+    $('.drawer-pf-close').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $('.drawer-pf-trigger').removeClass('open');
+      $drawer.addClass('hide');
+    });
+    $('.drawer-pf-toggle-expand').click(function() {
+      var $drawer = $('.drawer-pf');
+      var $drawerNotifications = $drawer.find('.drawer-pf-notification');
+
+      if ($drawer.hasClass('drawer-pf-expanded')) {
+        $drawer.removeClass('drawer-pf-expanded');
+        $drawerNotifications.removeClass('expanded-notification');
+      } else {
+        $drawer.addClass('drawer-pf-expanded');
+        $drawerNotifications.addClass('expanded-notification');
+      }
+    });
+
+    // Mark All Read / Clear All
+    $('.panel-collapse').each(function (index, panel) {
+      var $panel = $(panel);
+      var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+      $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+
+      if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+        // TODO: remove badge for unread indicator
+      }
+
+      $panel.on('click', '.drawer-pf-action [data-toggle="mark-all-read"] .btn', function() {
+        $panel.find('.unread').removeClass('unread');
+        $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          $('.drawer-pf-trigger').removeClass('unread');
+        }
+      });
+      $panel.on('click', '.drawer-pf-action [data-toggle="clear-all"] .btn', function() {
+        $panel.find('.panel-body .drawer-pf-notification').remove();
+        $panel.find('.drawer-pf-action').remove();
+        $panel.find('.blank-slate-pf').removeClass('hidden');
+        $panel.find('.drawer-pf-loading').addClass('hidden');
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          // TODO: remove badge for unread indicator
+        }
+      });
+
+      $panel.find('.drawer-pf-notification').each(function (index, notification) {
+        var $notification = $(notification);
+        $notification.on('click', '.drawer-pf-notification-content', function() {
+          $notification.removeClass('unread');
+          var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+          $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+          if (unreadCount === 0) {
+            $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+            if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+              // TODO: remove badge for unread indicator
+            }
+          }
+        });
+      });
+    });
+
+    $('#notification-drawer-accordion').initCollapseHeights('.panel-body');
+  });
+</script>
+
+  
+</nav> <!--/.navbar-->
+
+
+<div class="nav-pf-vertical nav-pf-vertical-with-sub-menus
+     
+     
+     
+     nav-pf-vertical-with-badges">
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-dashboard" data-toggle="tooltip" title="Dashboard"></span>
+        <span class="list-group-item-value">Dashboard</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-shield" data-toggle="tooltip" title="Dolor"></span>
+        <span class="list-group-item-value">Dolor</span>
+        
+        <div class="badge-container-pf">
+          <span class="badge">1283</span>
+        </div>
+        
+      </a>
+    </li>
+    <li class="list-group-item active secondary-nav-item-pf" data-target="#ipsum-secondary">
+      <a href="#0">
+        <span class="fa fa-space-shuttle" data-toggle="tooltip" title="Ipsum"></span>
+        <span class="list-group-item-value">Ipsum</span>
+      </a>
+      
+      <div id="-secondary" class="nav-pf-secondary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+    <span>Ipsum</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item active tertiary-nav-item-pf" data-target="#ipsum-intellegam-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Intellegam</span>
+      </a>
+      
+      <div id="compute-containers-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Intellegam</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item active">
+      <a href="#0">
+        <span id="compute-containers-users-nav-item" class="list-group-item-value">Recteque</span>
+        
+        <div class="badge-container-pf">
+          <div class="badge">
+            <span class="pficon pficon-error-circle-o"></span>
+            <span>10</span>
+          </div>
+          <div class="badge">
+            <span class="pficon pficon-warning-triangle-o"></span>
+            <span>4</span>
+          </div>
+        </div>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span id="compute-containers-groups-nav-item" class="list-group-item-value">Suavitate</span>
+        
+        <div class="badge-container-pf">
+          <div class="badge">
+            <span class="pficon pficon-error-circle-o"></span>
+            <span>1</span>
+          </div>
+          <div class="badge">
+            <span class="pficon pficon-warning-triangle-o"></span>
+            <span>3</span>
+          </div>
+        </div>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span id="compute-containers-roles-nav-item" class="list-group-item-value">Vituperatoribus</span>
+        
+        <div class="badge-container-pf">
+          <div class="badge">
+            <span class="pficon pficon-error-circle-o"></span>
+            <span>3</span>
+          </div>
+          <div class="badge">
+            <span class="pficon pficon-warning-triangle-o"></span>
+            <span>1</span>
+          </div>
+        </div>
+        
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item tertiary-nav-item-pf" data-target="#ipsum-copiosae-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Copiosae</span>
+      </a>
+      
+      <div id="compute-infrastructure-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Copiosae</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Exerci</span>
+        
+        <div class="badge-container-pf">
+          <span class="badge">10</span>
+        </div>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Quaeque</span>
+        
+        <div class="badge-container-pf">
+          <span class="badge">3</span>
+        </div>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Utroque</span>
+        
+        <div class="badge-container-pf">
+          <span class="badge">5</span>
+        </div>
+        
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item tertiary-nav-item-pf" data-target="#ipsum-patrioque-tertiary">
+      <a href="#0" >
+        <span class="list-group-item-value">Patrioque</span>
+      </a>
+      
+      <div id="compute-clouds-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Patrioque</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Novum</span>
+        
+        <div class="badge-container-pf">
+          <span class="badge">10</span>
+        </div>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Pericula</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Gubergren</span>
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Accumsan</span>
+        
+        <div class="badge-container-pf">
+          <span class="badge">5</span>
+        </div>
+        
+      </a>
+    </li>
+    
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item secondary-nav-item-pf" data-target="#amet-secondary">
+      <a href="#0">
+        <span class="fa fa-paper-plane" data-toggle="tooltip" title="Amet"></span>
+        <span class="list-group-item-value">Amet</span>
+      </a>
+      
+      <div id="amet-secondary" class="nav-pf-secondary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+    <span>Amet</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item tertiary-nav-item-pf" data-target="#amet-detracto-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Detracto Suscipiantur</span>
+        
+      </a>
+      
+      <div id="amet-detracto-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Detracto</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Delicatissimi</span>
+        
+        <div class="badge-container-pf">
+          <span class="badge">10</span>
+        </div>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Aliquam</span>
+        
+        <div class="badge-container-pf">
+          <span class="badge">3</span>
+        </div>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Principes</span>
+        
+        <div class="badge-container-pf">
+          <span class="badge">5</span>
+        </div>
+        
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item tertiary-nav-item-pf" data-target="#amet-mediocrem-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Mediocrem</span>
+        
+      </a>
+      
+      <div id="amet-mediocrem-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Mediocrem</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Convenire</span>
+        
+        <div class="badge-container-pf">
+          <span class="badge">10</span>
+        </div>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Nonumy</span>
+        
+        <div class="badge-container-pf">
+          <span class="badge">3</span>
+        </div>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Deserunt</span>
+        
+        <div class="badge-container-pf">
+          <span class="badge">5</span>
+        </div>
+        
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item tertiary-nav-item-pf" data-target="#amet-corrumpit-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Corrumpit Cupidatat Proident Deserunt</span>
+        
+      </a>
+      
+      <div id="amet-corrumpit-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Corrumpit</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Aeque</span>
+        
+        <div class="badge-container-pf">
+          <span class="badge">10</span>
+        </div>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Delenit</span>
+        
+        <div class="badge-container-pf">
+          <span class="badge">3</span>
+        </div>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Qualisque</span>
+        
+        <div class="badge-container-pf">
+          <span class="badge">5</span>
+        </div>
+        
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Urbanitas Habitant Morbi Tristique</span>
+        
+        <div class="badge-container-pf">
+          <span class="badge">5</span>
+          <span class="badge">5</span>
+          <span class="badge">5</span>
+        </div>
+        
+      </a>
+    </li>
+    
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-graduation-cap" data-toggle="tooltip" title="Adipscing"></span>
+        <span class="list-group-item-value">Adipscing</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-gamepad" data-toggle="tooltip" title="Lorem"></span>
+        <span class="list-group-item-value">Lorem</span>
+      </a>
+    </li>
+    
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block">
+      <a href="#0">
+        <span class="pficon pficon-user" data-toggle="tooltip" title="" data-original-title="User"></span>
+        <span class="list-group-item-value">User</span>
+      </a>
+      <div id="user-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>User</span>
+        </div>
+
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Preferences</span>
+            </a>
+          </li>
+
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Logout</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block" data-target="#amet-secondary">
+      <a href="#0">
+        <span class="pficon pficon-help" data-toggle="tooltip" title="" data-original-title="Help"></span>
+        <span class="list-group-item-value">Help</span>
+      </a>
+      <div id="help-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>Help</span>
+        </div>
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Help</span>
+            </a>
+          </li>
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">About</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+
+  </ul>
+
+</div>
+<div class="container-fluid container-cards-pf container-pf-nav-pf-vertical
+     
+     nav-pf-vertical-with-badges
+     ">
+
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">20</span> Amet</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-warning-triangle-o"></span>1</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">9</span> Adipiscing</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status">
+            <h2 class="card-pf-title">
+              <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">12</span> Lorem</a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <span class="fa fa-rebel"></span>
+    <span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="fa fa-paper-plane"></span>
+      <span class="card-pf-aggregate-status-count">20</span> Amet
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="pficon pficon-cluster"></span>
+      <span class="card-pf-aggregate-status-count">9</span> Adipiscing
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+            <h2 class="card-pf-title">
+              <a href="#">
+                <span class="pficon pficon-image"></span>
+                <span class="card-pf-aggregate-status-count">12</span> Lorem
+              </a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Top Utilized Clusters
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-description">
+      RHOS6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 95%;"  data-toggle="tooltip" title="95% Used">
+        <span><strong>190.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;" data-toggle="tooltip" title="5% Available">
+        <span class="sr-only">5% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      CFMEQE-Cluster
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;"  data-toggle="tooltip" title="50% Used">
+        <span><strong>100.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Available">
+        <span class="sr-only">50% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHOS-Undercloud
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;"  data-toggle="tooltip" title="70% Used">
+        <span><strong>140.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width: 30%;" data-toggle="tooltip" title="30% Available">
+        <span class="sr-only">30% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHEL6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="76.5" aria-valuemin="0" aria-valuemax="100" style="width: 76.5%;"  data-toggle="tooltip" title="76.5% Used">
+        <span><strong>153.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="23.5" aria-valuemin="0" aria-valuemax="100" style="width: 23.5%;" data-toggle="tooltip" title="23.5% Available">
+        <span class="sr-only">23.5% Available</span>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Quotas
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        CPU
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
+          <span><strong>115 of 460</strong> MHz</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
+          <span class="sr-only">75% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Memory
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Used">
+          <span><strong>8 of 16</strong> GB</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Available">
+          <span class="sr-only">50% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Pods
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="62.5" aria-valuemin="0" aria-valuemax="100" style="width: 62.5%;" data-toggle="tooltip" title="62.5% Used">
+          <span><strong>5 of 8</strong> Total</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="37.5" aria-valuemin="0" aria-valuemax="100" style="width: 37.5%;" data-toggle="tooltip" title="37.5% Available">
+          <span class="sr-only">37.5% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Services
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;" data-toggle="tooltip" title="100% Used">
+          <span><strong>2 of 2</strong> Total</span>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-md-12">
+<div class="card-pf card-pf-utilization">
+  <div class="card-pf-heading">
+    <p class="card-pf-heading-details">Last 30 days</p>
+    <h2 class="card-pf-title">
+      Utilization
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="row">
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">CPU</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">50</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1000 MHz</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-1"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-1"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-1';
+          donutConfig.color =  {
+            pattern: ["#cc0000","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 95],
+              ["Available", 5]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' MHz ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart1 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-1").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("950").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("MHz Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-1';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 10, 50, 28, 20, 31, 27, 60, 36, 52, 55, 62, 68, 69, 88, 74, 88, 95],
+            ],
+            type: 'area'
+          };
+          var chart2 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Memory</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">256</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 432 GB</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-2"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-2"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-2';
+          donutConfig.color =  {
+            pattern: ["#3f9c35","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 41],
+              ["Available", 59]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' GB ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart3 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-2").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("176").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("GB Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-2';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 35, 36, 20, 30, 31, 22, 44, 36, 40, 41, 55, 52, 48, 48, 50, 40, 41],
+            ],
+            type: 'area'
+          };
+          var chart4 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Network</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">200</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-3"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-3"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-3';
+          donutConfig.color =  {
+            pattern: ["#EC7A08","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 85],
+              ["Available", 15]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart5 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-3").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-3';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+            ],
+            type: 'area'
+          };
+          var chart6 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-xs-12 col-sm-4 col-md-4">
+<div class="card-pf card-pf-utilization">
+  <h2 class="card-pf-title">
+    Network
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-utilization-details">
+      <span class="card-pf-utilization-card-details-count">200</span>
+        <span class="card-pf-utilization-card-details-description">
+          <span class="card-pf-utilization-card-details-line-1">Available</span>
+          <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+        </span>
+    </p>
+    <div id="chart-pf-donut-4"></div>
+    <div class="chart-pf-sparkline" id="chart-pf-sparkline-4"></div>
+    <script>
+      var c3ChartDefaults = $().c3ChartDefaults();
+
+      var donutConfig = c3ChartDefaults.getDefaultDonutConfig('A');
+      donutConfig.bindto = '#chart-pf-donut-4';
+      donutConfig.color =  {
+        pattern: ["#EC7A08","#D1D1D1"]
+      };
+      donutConfig.data = {
+        type: "donut",
+        columns: [
+          ["Used", 85],
+          ["Available", 15]
+        ],
+        groups: [
+          ["used", "available"]
+        ],
+        order: null
+      };
+      donutConfig.tooltip = {
+        contents: function (d) {
+          return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                  Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                  '</span>';
+        }
+      };
+
+      var chart1 = c3.generate(donutConfig);
+      var donutChartTitle = d3.select("#chart-pf-donut-4").select('text.c3-chart-arcs-title');
+      donutChartTitle.text("");
+      donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+      donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+      var sparklineConfig = c3ChartDefaults.getDefaultSparklineConfig();
+      sparklineConfig.bindto = '#chart-pf-sparkline-4';
+      sparklineConfig.data = {
+        columns: [
+          ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+        ],
+        type: 'area'
+      };
+
+      var chart2 = c3.generate(sparklineConfig);
+    </script>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-5">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <h2 class="card-pf-title">
+      Card Title
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-7">
+<div class="card-pf">
+  <h2 class="card-pf-title">
+    Card Title
+  </h2>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+  <div class="card-pf-footer">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <p>
+      <a href="#" class="card-pf-link-with-icon">
+        <span class="pficon pficon-add-circle-o"></span>Add New Cluster
+      </a>
+    </p>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-5 col-md-5">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <div class="dropdown card-pf-time-frame-filter">
+                <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+                  Last 30 Days <span class="caret"></span>
+                </button>
+                <ul class="dropdown-menu dropdown-menu-right" role="menu">
+                  <li class="selected"><a href="#">Last 30 Days</a></li>
+                  <li><a href="#">Last 60 Days</a></li>
+                  <li><a href="#">Last 90 Days</a></li>
+                </ul>
+              </div>
+              <p>
+                <a href="#" class="card-pf-link-with-icon">
+                  <span class="pficon pficon-flag"></span>View CPU Events
+                </a>
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-12 col-sm-7 col-md-7">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-8 col-md-8">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-4">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+
+</div>
+<script>
+  $(document).ready(function() {
+    // matchHeight the contents of each .card-pf and then the .card-pf itself
+    $(".row-cards-pf > [class*='col'] > .card-pf .card-pf-title").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-footer").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf").matchHeight();
+
+    // Initialize the vertical navigation
+    $().setupVerticalNavigation(true);
+  });
+</script>
+
+<script>
+  const currentUrl = new URL(window.location.href);
+  const currentEnvironment = currentUrl.searchParams.get('environment');
+
+  if (currentEnvironment === 'regressions') {
+    let verticalNavEl = document.querySelector('div.nav-pf-vertical');
+    let ipsumEl = document.querySelector('[data-target="#ipsum-secondary"]');
+    ipsumEl.className = `${ipsumEl.className} is-hover`;
+    verticalNavEl.className = `${verticalNavEl.className} nav-pf-vertical-with-submenus hover-secondary-nav-pf`;
+  }
+</script>
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/vertical-navigation-with-secondary.html b/themes/src/main/node_modules/rcue/tests/vertical-navigation-with-secondary.html
new file mode 100644
index 0000000..2358183
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/vertical-navigation-with-secondary.html
@@ -0,0 +1,1789 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 layout-pf layout-pf-fixed"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="layout-pf layout-pf-fixed">
+  <!--<![endif]-->
+    <head>
+    <title>Vertical Navigation with Secondary - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body class="cards-pf">
+    
+
+  
+
+<nav class="navbar navbar-pf-vertical">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a href="/" class="navbar-brand">
+      <img class="navbar-brand-icon" src="/dist/img/logo.svg" alt=""/><img class="navbar-brand-name" src="/dist/img/brand-alt.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+    
+  </div>
+  <nav class="collapse navbar-collapse">
+    <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
+      
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Username" class="fa pficon-user"></span>
+          Brian Johnson <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
+          <li><a href="#0">Preferences</a></li>
+          <li><a href="#0">Logout</a></li>
+        </ul>
+      </li>
+    </ul>
+  </nav>
+  
+  <div class="drawer-pf hide drawer-pf-notifications-non-clickable">
+  <div class="drawer-pf-title">
+    <a class="drawer-pf-toggle-expand fa fa-angle-double-left hidden-xs"></a>
+    <a  class="drawer-pf-close pficon pficon-close"></a>
+    <h3 class="text-center">Notifications Drawer</h3>
+  </div>
+  <div class="panel-group" id="notification-drawer-accordion">
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseOne">
+            Notification Tab 1
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseOne" class="panel-collapse collapse in">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight11">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight21" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight21">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight31" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight31">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight41" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight41">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseTwo">
+            Notification Tab 2
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseTwo" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight12">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight22" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight22">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight32" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight32">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight42" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight42">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight13">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight23" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight23">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight33" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight33">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight43" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight43">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight14">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight24" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight24">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight34" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight34">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight44" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight44">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-loading text-center">
+            <span class="spinner spinner-xs spinner-inline"></span> Loading More
+          </div>
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseThree">
+            Notification Tab 3
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseThree" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight15">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight25" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight25">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight35" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight35">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight45" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight45">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight16" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight16">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight26" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight26">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight36" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight36">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight46" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight46">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight17" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight17">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight27" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight27">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight37" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight37">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight47" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight47">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  $(document).ready(function() {
+    // Initialize to unread notifications
+    // TODO: add badge for unread notifications
+
+    // Show/Hide Notifications Drawer
+    $('.drawer-pf-trigger').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $(this).toggleClass('open');
+      if ($drawer.hasClass('hide')) {
+        $drawer.removeClass('hide');
+        setTimeout(function () {
+          if (window.dispatchEvent) {
+            window.dispatchEvent(new Event('resize'));
+          }
+          // Special case for IE
+          if ($(document).fireEvent) {
+            $(document).fireEvent('onresize');
+          }
+        }, 100);
+      } else {
+        $drawer.addClass('hide');
+      }
+      // Special case, close navigation menu in mobile mode
+     if ($('.container-pf-nav-pf-vertical').hasClass('hidden-nav')) {
+       $('.nav-pf-vertical').removeClass('show-mobile-nav');
+     }
+    });
+    $('.drawer-pf-close').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $('.drawer-pf-trigger').removeClass('open');
+      $drawer.addClass('hide');
+    });
+    $('.drawer-pf-toggle-expand').click(function() {
+      var $drawer = $('.drawer-pf');
+      var $drawerNotifications = $drawer.find('.drawer-pf-notification');
+
+      if ($drawer.hasClass('drawer-pf-expanded')) {
+        $drawer.removeClass('drawer-pf-expanded');
+        $drawerNotifications.removeClass('expanded-notification');
+      } else {
+        $drawer.addClass('drawer-pf-expanded');
+        $drawerNotifications.addClass('expanded-notification');
+      }
+    });
+
+    // Mark All Read / Clear All
+    $('.panel-collapse').each(function (index, panel) {
+      var $panel = $(panel);
+      var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+      $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+
+      if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+        // TODO: remove badge for unread indicator
+      }
+
+      $panel.on('click', '.drawer-pf-action [data-toggle="mark-all-read"] .btn', function() {
+        $panel.find('.unread').removeClass('unread');
+        $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          $('.drawer-pf-trigger').removeClass('unread');
+        }
+      });
+      $panel.on('click', '.drawer-pf-action [data-toggle="clear-all"] .btn', function() {
+        $panel.find('.panel-body .drawer-pf-notification').remove();
+        $panel.find('.drawer-pf-action').remove();
+        $panel.find('.blank-slate-pf').removeClass('hidden');
+        $panel.find('.drawer-pf-loading').addClass('hidden');
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          // TODO: remove badge for unread indicator
+        }
+      });
+
+      $panel.find('.drawer-pf-notification').each(function (index, notification) {
+        var $notification = $(notification);
+        $notification.on('click', '.drawer-pf-notification-content', function() {
+          $notification.removeClass('unread');
+          var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+          $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+          if (unreadCount === 0) {
+            $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+            if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+              // TODO: remove badge for unread indicator
+            }
+          }
+        });
+      });
+    });
+
+    $('#notification-drawer-accordion').initCollapseHeights('.panel-body');
+  });
+</script>
+
+  
+</nav> <!--/.navbar-->
+
+
+<div class="nav-pf-vertical nav-pf-vertical-with-sub-menus
+     
+     
+     
+     ">
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-dashboard" data-toggle="tooltip" title="Dashboard"></span>
+        <span class="list-group-item-value">Dashboard</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-shield" data-toggle="tooltip" title="Dolor"></span>
+        <span class="list-group-item-value">Dolor</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item active secondary-nav-item-pf" data-target="#ipsum-secondary">
+      <a href="#0">
+        <span class="fa fa-space-shuttle" data-toggle="tooltip" title="Ipsum"></span>
+        <span class="list-group-item-value">Ipsum</span>
+      </a>
+      
+      <div id="-secondary" class="nav-pf-secondary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+    <span>Ipsum</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item active " data-target="#ipsum-intellegam-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Intellegam</span>
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#ipsum-copiosae-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Copiosae</span>
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#ipsum-patrioque-tertiary">
+      <a href="#0" >
+        <span class="list-group-item-value">Patrioque</span>
+      </a>
+      
+    </li>
+    
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item secondary-nav-item-pf" data-target="#amet-secondary">
+      <a href="#0">
+        <span class="fa fa-paper-plane" data-toggle="tooltip" title="Amet"></span>
+        <span class="list-group-item-value">Amet</span>
+      </a>
+      
+      <div id="amet-secondary" class="nav-pf-secondary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+    <span>Amet</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item " data-target="#amet-detracto-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Detracto Suscipiantur</span>
+        
+        
+        
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#amet-mediocrem-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Mediocrem</span>
+        
+        
+        
+      </a>
+      
+    </li>
+    <li class="list-group-item " data-target="#amet-corrumpit-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Corrumpit Cupidatat Proident Deserunt</span>
+        
+        
+        
+      </a>
+      
+    </li>
+    
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-graduation-cap" data-toggle="tooltip" title="Adipscing"></span>
+        <span class="list-group-item-value">Adipscing</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-gamepad" data-toggle="tooltip" title="Lorem"></span>
+        <span class="list-group-item-value">Lorem</span>
+      </a>
+    </li>
+    
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block">
+      <a href="#0">
+        <span class="pficon pficon-user" data-toggle="tooltip" title="" data-original-title="User"></span>
+        <span class="list-group-item-value">User</span>
+      </a>
+      <div id="user-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>User</span>
+        </div>
+
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Preferences</span>
+            </a>
+          </li>
+
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Logout</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block" data-target="#amet-secondary">
+      <a href="#0">
+        <span class="pficon pficon-help" data-toggle="tooltip" title="" data-original-title="Help"></span>
+        <span class="list-group-item-value">Help</span>
+      </a>
+      <div id="help-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>Help</span>
+        </div>
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Help</span>
+            </a>
+          </li>
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">About</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+
+  </ul>
+
+</div>
+<div class="container-fluid container-cards-pf container-pf-nav-pf-vertical
+     
+     
+     ">
+
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">20</span> Amet</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-warning-triangle-o"></span>1</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">9</span> Adipiscing</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status">
+            <h2 class="card-pf-title">
+              <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">12</span> Lorem</a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <span class="fa fa-rebel"></span>
+    <span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="fa fa-paper-plane"></span>
+      <span class="card-pf-aggregate-status-count">20</span> Amet
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="pficon pficon-cluster"></span>
+      <span class="card-pf-aggregate-status-count">9</span> Adipiscing
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+            <h2 class="card-pf-title">
+              <a href="#">
+                <span class="pficon pficon-image"></span>
+                <span class="card-pf-aggregate-status-count">12</span> Lorem
+              </a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Top Utilized Clusters
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-description">
+      RHOS6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 95%;"  data-toggle="tooltip" title="95% Used">
+        <span><strong>190.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;" data-toggle="tooltip" title="5% Available">
+        <span class="sr-only">5% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      CFMEQE-Cluster
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;"  data-toggle="tooltip" title="50% Used">
+        <span><strong>100.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Available">
+        <span class="sr-only">50% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHOS-Undercloud
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;"  data-toggle="tooltip" title="70% Used">
+        <span><strong>140.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width: 30%;" data-toggle="tooltip" title="30% Available">
+        <span class="sr-only">30% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHEL6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="76.5" aria-valuemin="0" aria-valuemax="100" style="width: 76.5%;"  data-toggle="tooltip" title="76.5% Used">
+        <span><strong>153.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="23.5" aria-valuemin="0" aria-valuemax="100" style="width: 23.5%;" data-toggle="tooltip" title="23.5% Available">
+        <span class="sr-only">23.5% Available</span>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Quotas
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        CPU
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
+          <span><strong>115 of 460</strong> MHz</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
+          <span class="sr-only">75% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Memory
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Used">
+          <span><strong>8 of 16</strong> GB</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Available">
+          <span class="sr-only">50% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Pods
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="62.5" aria-valuemin="0" aria-valuemax="100" style="width: 62.5%;" data-toggle="tooltip" title="62.5% Used">
+          <span><strong>5 of 8</strong> Total</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="37.5" aria-valuemin="0" aria-valuemax="100" style="width: 37.5%;" data-toggle="tooltip" title="37.5% Available">
+          <span class="sr-only">37.5% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Services
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;" data-toggle="tooltip" title="100% Used">
+          <span><strong>2 of 2</strong> Total</span>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-md-12">
+<div class="card-pf card-pf-utilization">
+  <div class="card-pf-heading">
+    <p class="card-pf-heading-details">Last 30 days</p>
+    <h2 class="card-pf-title">
+      Utilization
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="row">
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">CPU</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">50</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1000 MHz</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-1"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-1"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-1';
+          donutConfig.color =  {
+            pattern: ["#cc0000","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 95],
+              ["Available", 5]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' MHz ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart1 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-1").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("950").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("MHz Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-1';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 10, 50, 28, 20, 31, 27, 60, 36, 52, 55, 62, 68, 69, 88, 74, 88, 95],
+            ],
+            type: 'area'
+          };
+          var chart2 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Memory</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">256</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 432 GB</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-2"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-2"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-2';
+          donutConfig.color =  {
+            pattern: ["#3f9c35","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 41],
+              ["Available", 59]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' GB ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart3 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-2").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("176").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("GB Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-2';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 35, 36, 20, 30, 31, 22, 44, 36, 40, 41, 55, 52, 48, 48, 50, 40, 41],
+            ],
+            type: 'area'
+          };
+          var chart4 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Network</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">200</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-3"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-3"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-3';
+          donutConfig.color =  {
+            pattern: ["#EC7A08","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 85],
+              ["Available", 15]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart5 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-3").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-3';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+            ],
+            type: 'area'
+          };
+          var chart6 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-xs-12 col-sm-4 col-md-4">
+<div class="card-pf card-pf-utilization">
+  <h2 class="card-pf-title">
+    Network
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-utilization-details">
+      <span class="card-pf-utilization-card-details-count">200</span>
+        <span class="card-pf-utilization-card-details-description">
+          <span class="card-pf-utilization-card-details-line-1">Available</span>
+          <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+        </span>
+    </p>
+    <div id="chart-pf-donut-4"></div>
+    <div class="chart-pf-sparkline" id="chart-pf-sparkline-4"></div>
+    <script>
+      var c3ChartDefaults = $().c3ChartDefaults();
+
+      var donutConfig = c3ChartDefaults.getDefaultDonutConfig('A');
+      donutConfig.bindto = '#chart-pf-donut-4';
+      donutConfig.color =  {
+        pattern: ["#EC7A08","#D1D1D1"]
+      };
+      donutConfig.data = {
+        type: "donut",
+        columns: [
+          ["Used", 85],
+          ["Available", 15]
+        ],
+        groups: [
+          ["used", "available"]
+        ],
+        order: null
+      };
+      donutConfig.tooltip = {
+        contents: function (d) {
+          return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                  Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                  '</span>';
+        }
+      };
+
+      var chart1 = c3.generate(donutConfig);
+      var donutChartTitle = d3.select("#chart-pf-donut-4").select('text.c3-chart-arcs-title');
+      donutChartTitle.text("");
+      donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+      donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+      var sparklineConfig = c3ChartDefaults.getDefaultSparklineConfig();
+      sparklineConfig.bindto = '#chart-pf-sparkline-4';
+      sparklineConfig.data = {
+        columns: [
+          ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+        ],
+        type: 'area'
+      };
+
+      var chart2 = c3.generate(sparklineConfig);
+    </script>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-5">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <h2 class="card-pf-title">
+      Card Title
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-7">
+<div class="card-pf">
+  <h2 class="card-pf-title">
+    Card Title
+  </h2>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+  <div class="card-pf-footer">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <p>
+      <a href="#" class="card-pf-link-with-icon">
+        <span class="pficon pficon-add-circle-o"></span>Add New Cluster
+      </a>
+    </p>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-5 col-md-5">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <div class="dropdown card-pf-time-frame-filter">
+                <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+                  Last 30 Days <span class="caret"></span>
+                </button>
+                <ul class="dropdown-menu dropdown-menu-right" role="menu">
+                  <li class="selected"><a href="#">Last 30 Days</a></li>
+                  <li><a href="#">Last 60 Days</a></li>
+                  <li><a href="#">Last 90 Days</a></li>
+                </ul>
+              </div>
+              <p>
+                <a href="#" class="card-pf-link-with-icon">
+                  <span class="pficon pficon-flag"></span>View CPU Events
+                </a>
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-12 col-sm-7 col-md-7">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-8 col-md-8">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-4">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+
+</div>
+<script>
+  $(document).ready(function() {
+    // matchHeight the contents of each .card-pf and then the .card-pf itself
+    $(".row-cards-pf > [class*='col'] > .card-pf .card-pf-title").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-footer").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf").matchHeight();
+
+    // Initialize the vertical navigation
+    $().setupVerticalNavigation(true);
+  });
+</script>
+
+<script>
+  const currentUrl = new URL(window.location.href);
+  const currentEnvironment = currentUrl.searchParams.get('environment');
+
+  if (currentEnvironment === 'regressions') {
+    let verticalNavEl = document.querySelector('div.nav-pf-vertical');
+    let ipsumEl = document.querySelector('[data-target="#ipsum-secondary"]');
+    ipsumEl.className = `${ipsumEl.className} is-hover`;
+    verticalNavEl.className = `${verticalNavEl.className} nav-pf-vertical-with-submenus hover-secondary-nav-pf`;
+  }
+</script>
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/vertical-navigation-with-tertiary-no-icons.html b/themes/src/main/node_modules/rcue/tests/vertical-navigation-with-tertiary-no-icons.html
new file mode 100644
index 0000000..6f1997b
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/vertical-navigation-with-tertiary-no-icons.html
@@ -0,0 +1,1965 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 layout-pf layout-pf-fixed"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="layout-pf layout-pf-fixed">
+  <!--<![endif]-->
+    <head>
+    <title>Vertical Navigation with Tertiary Navigation (no icons) - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body class="cards-pf">
+    
+
+  
+
+<nav class="navbar navbar-pf-vertical">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a href="/" class="navbar-brand">
+      <img class="navbar-brand-icon" src="/dist/img/logo.svg" alt=""/><img class="navbar-brand-name" src="/dist/img/brand-alt.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+    
+  </div>
+  <nav class="collapse navbar-collapse">
+    <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
+      
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Username" class="fa pficon-user"></span>
+          Brian Johnson <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
+          <li><a href="#0">Preferences</a></li>
+          <li><a href="#0">Logout</a></li>
+        </ul>
+      </li>
+    </ul>
+  </nav>
+  
+  <div class="drawer-pf hide drawer-pf-notifications-non-clickable">
+  <div class="drawer-pf-title">
+    <a class="drawer-pf-toggle-expand fa fa-angle-double-left hidden-xs"></a>
+    <a  class="drawer-pf-close pficon pficon-close"></a>
+    <h3 class="text-center">Notifications Drawer</h3>
+  </div>
+  <div class="panel-group" id="notification-drawer-accordion">
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseOne">
+            Notification Tab 1
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseOne" class="panel-collapse collapse in">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight11">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight21" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight21">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight31" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight31">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight41" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight41">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseTwo">
+            Notification Tab 2
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseTwo" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight12">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight22" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight22">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight32" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight32">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight42" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight42">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight13">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight23" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight23">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight33" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight33">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight43" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight43">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight14">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight24" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight24">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight34" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight34">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight44" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight44">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-loading text-center">
+            <span class="spinner spinner-xs spinner-inline"></span> Loading More
+          </div>
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseThree">
+            Notification Tab 3
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseThree" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight15">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight25" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight25">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight35" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight35">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight45" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight45">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight16" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight16">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight26" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight26">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight36" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight36">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight46" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight46">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight17" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight17">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight27" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight27">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight37" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight37">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight47" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight47">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  $(document).ready(function() {
+    // Initialize to unread notifications
+    // TODO: add badge for unread notifications
+
+    // Show/Hide Notifications Drawer
+    $('.drawer-pf-trigger').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $(this).toggleClass('open');
+      if ($drawer.hasClass('hide')) {
+        $drawer.removeClass('hide');
+        setTimeout(function () {
+          if (window.dispatchEvent) {
+            window.dispatchEvent(new Event('resize'));
+          }
+          // Special case for IE
+          if ($(document).fireEvent) {
+            $(document).fireEvent('onresize');
+          }
+        }, 100);
+      } else {
+        $drawer.addClass('hide');
+      }
+      // Special case, close navigation menu in mobile mode
+     if ($('.container-pf-nav-pf-vertical').hasClass('hidden-nav')) {
+       $('.nav-pf-vertical').removeClass('show-mobile-nav');
+     }
+    });
+    $('.drawer-pf-close').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $('.drawer-pf-trigger').removeClass('open');
+      $drawer.addClass('hide');
+    });
+    $('.drawer-pf-toggle-expand').click(function() {
+      var $drawer = $('.drawer-pf');
+      var $drawerNotifications = $drawer.find('.drawer-pf-notification');
+
+      if ($drawer.hasClass('drawer-pf-expanded')) {
+        $drawer.removeClass('drawer-pf-expanded');
+        $drawerNotifications.removeClass('expanded-notification');
+      } else {
+        $drawer.addClass('drawer-pf-expanded');
+        $drawerNotifications.addClass('expanded-notification');
+      }
+    });
+
+    // Mark All Read / Clear All
+    $('.panel-collapse').each(function (index, panel) {
+      var $panel = $(panel);
+      var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+      $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+
+      if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+        // TODO: remove badge for unread indicator
+      }
+
+      $panel.on('click', '.drawer-pf-action [data-toggle="mark-all-read"] .btn', function() {
+        $panel.find('.unread').removeClass('unread');
+        $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          $('.drawer-pf-trigger').removeClass('unread');
+        }
+      });
+      $panel.on('click', '.drawer-pf-action [data-toggle="clear-all"] .btn', function() {
+        $panel.find('.panel-body .drawer-pf-notification').remove();
+        $panel.find('.drawer-pf-action').remove();
+        $panel.find('.blank-slate-pf').removeClass('hidden');
+        $panel.find('.drawer-pf-loading').addClass('hidden');
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          // TODO: remove badge for unread indicator
+        }
+      });
+
+      $panel.find('.drawer-pf-notification').each(function (index, notification) {
+        var $notification = $(notification);
+        $notification.on('click', '.drawer-pf-notification-content', function() {
+          $notification.removeClass('unread');
+          var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+          $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+          if (unreadCount === 0) {
+            $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+            if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+              // TODO: remove badge for unread indicator
+            }
+          }
+        });
+      });
+    });
+
+    $('#notification-drawer-accordion').initCollapseHeights('.panel-body');
+  });
+</script>
+
+  
+</nav> <!--/.navbar-->
+
+
+<div class="nav-pf-vertical nav-pf-vertical-with-sub-menus
+     
+     
+     hidden-icons-pf
+     ">
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-dashboard" data-toggle="tooltip" title="Dashboard"></span>
+        <span class="list-group-item-value">Dashboard</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-shield" data-toggle="tooltip" title="Dolor"></span>
+        <span class="list-group-item-value">Dolor</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item active secondary-nav-item-pf" data-target="#ipsum-secondary">
+      <a href="#0">
+        <span class="fa fa-space-shuttle" data-toggle="tooltip" title="Ipsum"></span>
+        <span class="list-group-item-value">Ipsum</span>
+      </a>
+      
+      <div id="-secondary" class="nav-pf-secondary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+    <span>Ipsum</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item active tertiary-nav-item-pf" data-target="#ipsum-intellegam-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Intellegam</span>
+      </a>
+      
+      <div id="compute-containers-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Intellegam</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item active">
+      <a href="#0">
+        <span id="compute-containers-users-nav-item" class="list-group-item-value">Recteque</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span id="compute-containers-groups-nav-item" class="list-group-item-value">Suavitate</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span id="compute-containers-roles-nav-item" class="list-group-item-value">Vituperatoribus</span>
+        
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item tertiary-nav-item-pf" data-target="#ipsum-copiosae-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Copiosae</span>
+      </a>
+      
+      <div id="compute-infrastructure-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Copiosae</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Exerci</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Quaeque</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Utroque</span>
+        
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item tertiary-nav-item-pf" data-target="#ipsum-patrioque-tertiary">
+      <a href="#0" >
+        <span class="list-group-item-value">Patrioque</span>
+      </a>
+      
+      <div id="compute-clouds-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Patrioque</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Novum</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Pericula</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Gubergren</span>
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Accumsan</span>
+        
+      </a>
+    </li>
+    
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item secondary-nav-item-pf" data-target="#amet-secondary">
+      <a href="#0">
+        <span class="fa fa-paper-plane" data-toggle="tooltip" title="Amet"></span>
+        <span class="list-group-item-value">Amet</span>
+      </a>
+      
+      <div id="amet-secondary" class="nav-pf-secondary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+    <span>Amet</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item tertiary-nav-item-pf" data-target="#amet-detracto-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Detracto Suscipiantur</span>
+        
+      </a>
+      
+      <div id="amet-detracto-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Detracto</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Delicatissimi</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Aliquam</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Principes</span>
+        
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item tertiary-nav-item-pf" data-target="#amet-mediocrem-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Mediocrem</span>
+        
+      </a>
+      
+      <div id="amet-mediocrem-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Mediocrem</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Convenire</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Nonumy</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Deserunt</span>
+        
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item tertiary-nav-item-pf" data-target="#amet-corrumpit-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Corrumpit Cupidatat Proident Deserunt</span>
+        
+      </a>
+      
+      <div id="amet-corrumpit-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Corrumpit</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Aeque</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Delenit</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Qualisque</span>
+        
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Urbanitas Habitant Morbi Tristique</span>
+        
+      </a>
+    </li>
+    
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-graduation-cap" data-toggle="tooltip" title="Adipscing"></span>
+        <span class="list-group-item-value">Adipscing</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-gamepad" data-toggle="tooltip" title="Lorem"></span>
+        <span class="list-group-item-value">Lorem</span>
+      </a>
+    </li>
+    
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block">
+      <a href="#0">
+        <span class="pficon pficon-user" data-toggle="tooltip" title="" data-original-title="User"></span>
+        <span class="list-group-item-value">User</span>
+      </a>
+      <div id="user-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>User</span>
+        </div>
+
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Preferences</span>
+            </a>
+          </li>
+
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Logout</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block" data-target="#amet-secondary">
+      <a href="#0">
+        <span class="pficon pficon-help" data-toggle="tooltip" title="" data-original-title="Help"></span>
+        <span class="list-group-item-value">Help</span>
+      </a>
+      <div id="help-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>Help</span>
+        </div>
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Help</span>
+            </a>
+          </li>
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">About</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+
+  </ul>
+
+</div>
+<div class="container-fluid container-cards-pf container-pf-nav-pf-vertical
+     
+     
+     hidden-icons-pf">
+
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">20</span> Amet</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-warning-triangle-o"></span>1</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">9</span> Adipiscing</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status">
+            <h2 class="card-pf-title">
+              <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">12</span> Lorem</a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <span class="fa fa-rebel"></span>
+    <span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="fa fa-paper-plane"></span>
+      <span class="card-pf-aggregate-status-count">20</span> Amet
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="pficon pficon-cluster"></span>
+      <span class="card-pf-aggregate-status-count">9</span> Adipiscing
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+            <h2 class="card-pf-title">
+              <a href="#">
+                <span class="pficon pficon-image"></span>
+                <span class="card-pf-aggregate-status-count">12</span> Lorem
+              </a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Top Utilized Clusters
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-description">
+      RHOS6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 95%;"  data-toggle="tooltip" title="95% Used">
+        <span><strong>190.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;" data-toggle="tooltip" title="5% Available">
+        <span class="sr-only">5% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      CFMEQE-Cluster
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;"  data-toggle="tooltip" title="50% Used">
+        <span><strong>100.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Available">
+        <span class="sr-only">50% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHOS-Undercloud
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;"  data-toggle="tooltip" title="70% Used">
+        <span><strong>140.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width: 30%;" data-toggle="tooltip" title="30% Available">
+        <span class="sr-only">30% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHEL6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="76.5" aria-valuemin="0" aria-valuemax="100" style="width: 76.5%;"  data-toggle="tooltip" title="76.5% Used">
+        <span><strong>153.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="23.5" aria-valuemin="0" aria-valuemax="100" style="width: 23.5%;" data-toggle="tooltip" title="23.5% Available">
+        <span class="sr-only">23.5% Available</span>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Quotas
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        CPU
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
+          <span><strong>115 of 460</strong> MHz</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
+          <span class="sr-only">75% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Memory
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Used">
+          <span><strong>8 of 16</strong> GB</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Available">
+          <span class="sr-only">50% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Pods
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="62.5" aria-valuemin="0" aria-valuemax="100" style="width: 62.5%;" data-toggle="tooltip" title="62.5% Used">
+          <span><strong>5 of 8</strong> Total</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="37.5" aria-valuemin="0" aria-valuemax="100" style="width: 37.5%;" data-toggle="tooltip" title="37.5% Available">
+          <span class="sr-only">37.5% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Services
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;" data-toggle="tooltip" title="100% Used">
+          <span><strong>2 of 2</strong> Total</span>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-md-12">
+<div class="card-pf card-pf-utilization">
+  <div class="card-pf-heading">
+    <p class="card-pf-heading-details">Last 30 days</p>
+    <h2 class="card-pf-title">
+      Utilization
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="row">
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">CPU</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">50</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1000 MHz</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-1"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-1"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-1';
+          donutConfig.color =  {
+            pattern: ["#cc0000","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 95],
+              ["Available", 5]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' MHz ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart1 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-1").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("950").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("MHz Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-1';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 10, 50, 28, 20, 31, 27, 60, 36, 52, 55, 62, 68, 69, 88, 74, 88, 95],
+            ],
+            type: 'area'
+          };
+          var chart2 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Memory</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">256</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 432 GB</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-2"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-2"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-2';
+          donutConfig.color =  {
+            pattern: ["#3f9c35","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 41],
+              ["Available", 59]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' GB ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart3 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-2").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("176").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("GB Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-2';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 35, 36, 20, 30, 31, 22, 44, 36, 40, 41, 55, 52, 48, 48, 50, 40, 41],
+            ],
+            type: 'area'
+          };
+          var chart4 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Network</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">200</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-3"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-3"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-3';
+          donutConfig.color =  {
+            pattern: ["#EC7A08","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 85],
+              ["Available", 15]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart5 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-3").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-3';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+            ],
+            type: 'area'
+          };
+          var chart6 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-xs-12 col-sm-4 col-md-4">
+<div class="card-pf card-pf-utilization">
+  <h2 class="card-pf-title">
+    Network
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-utilization-details">
+      <span class="card-pf-utilization-card-details-count">200</span>
+        <span class="card-pf-utilization-card-details-description">
+          <span class="card-pf-utilization-card-details-line-1">Available</span>
+          <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+        </span>
+    </p>
+    <div id="chart-pf-donut-4"></div>
+    <div class="chart-pf-sparkline" id="chart-pf-sparkline-4"></div>
+    <script>
+      var c3ChartDefaults = $().c3ChartDefaults();
+
+      var donutConfig = c3ChartDefaults.getDefaultDonutConfig('A');
+      donutConfig.bindto = '#chart-pf-donut-4';
+      donutConfig.color =  {
+        pattern: ["#EC7A08","#D1D1D1"]
+      };
+      donutConfig.data = {
+        type: "donut",
+        columns: [
+          ["Used", 85],
+          ["Available", 15]
+        ],
+        groups: [
+          ["used", "available"]
+        ],
+        order: null
+      };
+      donutConfig.tooltip = {
+        contents: function (d) {
+          return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                  Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                  '</span>';
+        }
+      };
+
+      var chart1 = c3.generate(donutConfig);
+      var donutChartTitle = d3.select("#chart-pf-donut-4").select('text.c3-chart-arcs-title');
+      donutChartTitle.text("");
+      donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+      donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+      var sparklineConfig = c3ChartDefaults.getDefaultSparklineConfig();
+      sparklineConfig.bindto = '#chart-pf-sparkline-4';
+      sparklineConfig.data = {
+        columns: [
+          ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+        ],
+        type: 'area'
+      };
+
+      var chart2 = c3.generate(sparklineConfig);
+    </script>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-5">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <h2 class="card-pf-title">
+      Card Title
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-7">
+<div class="card-pf">
+  <h2 class="card-pf-title">
+    Card Title
+  </h2>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+  <div class="card-pf-footer">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <p>
+      <a href="#" class="card-pf-link-with-icon">
+        <span class="pficon pficon-add-circle-o"></span>Add New Cluster
+      </a>
+    </p>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-5 col-md-5">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <div class="dropdown card-pf-time-frame-filter">
+                <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+                  Last 30 Days <span class="caret"></span>
+                </button>
+                <ul class="dropdown-menu dropdown-menu-right" role="menu">
+                  <li class="selected"><a href="#">Last 30 Days</a></li>
+                  <li><a href="#">Last 60 Days</a></li>
+                  <li><a href="#">Last 90 Days</a></li>
+                </ul>
+              </div>
+              <p>
+                <a href="#" class="card-pf-link-with-icon">
+                  <span class="pficon pficon-flag"></span>View CPU Events
+                </a>
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-12 col-sm-7 col-md-7">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-8 col-md-8">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-4">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+
+</div>
+<script>
+  $(document).ready(function() {
+    // matchHeight the contents of each .card-pf and then the .card-pf itself
+    $(".row-cards-pf > [class*='col'] > .card-pf .card-pf-title").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-footer").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf").matchHeight();
+
+    // Initialize the vertical navigation
+    $().setupVerticalNavigation(true);
+  });
+</script>
+
+<script>
+  const currentUrl = new URL(window.location.href);
+  const currentEnvironment = currentUrl.searchParams.get('environment');
+
+  if (currentEnvironment === 'regressions') {
+    let verticalNavEl = document.querySelector('div.nav-pf-vertical');
+    let ipsumEl = document.querySelector('[data-target="#ipsum-secondary"]');
+    let tertiaryNavItemEl = document.querySelector('.list-group-item.active.tertiary-nav-item-pf')
+    verticalNavEl.className = `${verticalNavEl.className} nav-pf-vertical-with-submenus hidden-icons-pf hover-secondary-nav-pf hover-tertiary-nav-pf`;
+    ipsumEl.className = `${ipsumEl.className} is-hover`;
+    tertiaryNavItemEl.className = `${tertiaryNavItemEl.className} is-hover`;
+  }
+</script>
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/vertical-navigation-with-tertiary-pins.html b/themes/src/main/node_modules/rcue/tests/vertical-navigation-with-tertiary-pins.html
new file mode 100644
index 0000000..92f21f0
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/vertical-navigation-with-tertiary-pins.html
@@ -0,0 +1,1965 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9 layout-pf layout-pf-fixed"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us" class="layout-pf layout-pf-fixed">
+  <!--<![endif]-->
+    <head>
+    <title>Vertical Navigation with Tertiary Navigation (pinnable) - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.2/jquery.matchHeight-min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.11/c3.min.js"></script>
+    <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+  <div class="toast-notifications-list-pf">
+    <div class="toast-pf alert alert-warning alert-dismissable">
+      <button type="button" class="close" data-dismiss="alert" aria-hidden="true">
+        <span class="pficon pficon-close"></span>
+      </button>
+      <span class="pficon pficon-warning-triangle-o"></span>
+      These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+    </div>
+  </div>
+
+  <body class="cards-pf">
+    
+
+  
+
+<nav class="navbar navbar-pf-vertical">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle">
+      <span class="sr-only">Toggle navigation</span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a href="/" class="navbar-brand">
+      <img class="navbar-brand-icon" src="/dist/img/logo.svg" alt=""/><img class="navbar-brand-name" src="/dist/img/brand-alt.svg" alt="Red Hat&reg; Common User Experience" />
+    </a>
+    
+  </div>
+  <nav class="collapse navbar-collapse">
+    <ul class="nav navbar-nav navbar-right navbar-iconic navbar-utility">
+      
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Help" class="fa pficon-help"></span>
+          <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
+          <li><a href="#0">Help</a></li>
+          <li><a href="#0">About</a></li>
+        </ul>
+      </li>
+      <li class="dropdown">
+        <a href="#0" class="dropdown-toggle nav-item-iconic" id="dropdownMenu2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+          <span title="Username" class="fa pficon-user"></span>
+          Brian Johnson <span class="caret"></span>
+        </a>
+        <ul class="dropdown-menu" aria-labelledby="dropdownMenu2">
+          <li><a href="#0">Preferences</a></li>
+          <li><a href="#0">Logout</a></li>
+        </ul>
+      </li>
+    </ul>
+  </nav>
+  
+  <div class="drawer-pf hide drawer-pf-notifications-non-clickable">
+  <div class="drawer-pf-title">
+    <a class="drawer-pf-toggle-expand fa fa-angle-double-left hidden-xs"></a>
+    <a  class="drawer-pf-close pficon pficon-close"></a>
+    <h3 class="text-center">Notifications Drawer</h3>
+  </div>
+  <div class="panel-group" id="notification-drawer-accordion">
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseOne">
+            Notification Tab 1
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseOne" class="panel-collapse collapse in">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight11" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight11">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight21" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight21">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight31" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight31">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight41" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight41">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseTwo">
+            Notification Tab 2
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseTwo" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight12" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight12">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight22" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight22">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight32" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight32">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight42" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight42">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight13" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight13">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight23" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight23">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight33" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight33">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight43" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight43">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight14" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight14">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight24" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight24">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight34" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight34">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight44" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight44">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-loading text-center">
+            <span class="spinner spinner-xs spinner-inline"></span> Loading More
+          </div>
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+    <div class="panel panel-default">
+      <div class="panel-heading" data-component="collapse-heading">
+        <h4 class="panel-title">
+          <a class="collapsed" data-toggle="collapse" data-parent="#notification-drawer-accordion" href="#fixedCollapseThree">
+            Notification Tab 3
+          </a>
+        </h4>
+        <span class="panel-counter">5 New Events</span>
+      </div>
+      <div id="fixedCollapseThree" class="panel-collapse collapse">
+        <div class="panel-body">
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight15" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight15">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight25" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight25">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight35" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight35">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight45" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight45">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight16" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight16">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight26" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight26">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight36" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight36">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight46" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight46">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+          <div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight17" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight17">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-info pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">A New Event! Huzzah! Bold!</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification unread">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight27" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight27">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-ok pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight37" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight37">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-warning-triangle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification that is really long to see how it reacts on smaller screens sizes.</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+<div class="drawer-pf-notification">
+  
+  <div class="dropdown pull-right dropdown-kebab-pf">
+  <button class="btn btn-link dropdown-toggle" type="button" id="dropdownKebabRight47" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
+    <span class="fa fa-ellipsis-v"></span>
+  </button>
+  <ul class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownKebabRight47">
+    <li><a href="#">Action</a></li>
+    <li><a href="#">Another Action</a></li>
+    <li><a href="#">Something Else Here</a></li>
+    <li role="separator" class="divider"></li>
+    <li><a href="#">Separated Link</a></li>
+  </ul>
+</div>
+
+  <span class="pficon pficon-error-circle-o pull-left"></span>
+  <div class="drawer-pf-notification-content">
+    <span class="drawer-pf-notification-message">Another Event Notification</span>
+    <div class="drawer-pf-notification-info">
+      <span class="date">3/31/16</span>
+      <span class="time">12:12:44 PM</span>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="blank-slate-pf hidden">
+          <div class="blank-slate-pf-icon">
+            <span class="pficon-info"></span>
+          </div>
+          <h1>There are no notifications to display.</h1>
+        </div>
+        <div class="drawer-pf-action">
+          <div class="drawer-pf-action-link" data-toggle="mark-all-read">
+            <button class="btn btn-link">Mark All Read</button>
+          </div>
+          <div class="drawer-pf-action-link" data-toggle="clear-all">
+            <button class="btn btn-link">
+              <span class="pficon pficon-close"></span>
+              Clear All
+            </button>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+<script>
+  $(document).ready(function() {
+    // Initialize to unread notifications
+    // TODO: add badge for unread notifications
+
+    // Show/Hide Notifications Drawer
+    $('.drawer-pf-trigger').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $(this).toggleClass('open');
+      if ($drawer.hasClass('hide')) {
+        $drawer.removeClass('hide');
+        setTimeout(function () {
+          if (window.dispatchEvent) {
+            window.dispatchEvent(new Event('resize'));
+          }
+          // Special case for IE
+          if ($(document).fireEvent) {
+            $(document).fireEvent('onresize');
+          }
+        }, 100);
+      } else {
+        $drawer.addClass('hide');
+      }
+      // Special case, close navigation menu in mobile mode
+     if ($('.container-pf-nav-pf-vertical').hasClass('hidden-nav')) {
+       $('.nav-pf-vertical').removeClass('show-mobile-nav');
+     }
+    });
+    $('.drawer-pf-close').click(function() {
+      var $drawer = $('.drawer-pf');
+
+      $('.drawer-pf-trigger').removeClass('open');
+      $drawer.addClass('hide');
+    });
+    $('.drawer-pf-toggle-expand').click(function() {
+      var $drawer = $('.drawer-pf');
+      var $drawerNotifications = $drawer.find('.drawer-pf-notification');
+
+      if ($drawer.hasClass('drawer-pf-expanded')) {
+        $drawer.removeClass('drawer-pf-expanded');
+        $drawerNotifications.removeClass('expanded-notification');
+      } else {
+        $drawer.addClass('drawer-pf-expanded');
+        $drawerNotifications.addClass('expanded-notification');
+      }
+    });
+
+    // Mark All Read / Clear All
+    $('.panel-collapse').each(function (index, panel) {
+      var $panel = $(panel);
+      var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+      $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+
+      if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+        // TODO: remove badge for unread indicator
+      }
+
+      $panel.on('click', '.drawer-pf-action [data-toggle="mark-all-read"] .btn', function() {
+        $panel.find('.unread').removeClass('unread');
+        $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          $('.drawer-pf-trigger').removeClass('unread');
+        }
+      });
+      $panel.on('click', '.drawer-pf-action [data-toggle="clear-all"] .btn', function() {
+        $panel.find('.panel-body .drawer-pf-notification').remove();
+        $panel.find('.drawer-pf-action').remove();
+        $panel.find('.blank-slate-pf').removeClass('hidden');
+        $panel.find('.drawer-pf-loading').addClass('hidden');
+        $(panel.parentElement).find('.panel-counter').text('0 New Events');
+        if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+          // TODO: remove badge for unread indicator
+        }
+      });
+
+      $panel.find('.drawer-pf-notification').each(function (index, notification) {
+        var $notification = $(notification);
+        $notification.on('click', '.drawer-pf-notification-content', function() {
+          $notification.removeClass('unread');
+          var unreadCount = $panel.find('.drawer-pf-notification.unread').length;
+          $(panel.parentElement).find('.panel-counter').text(unreadCount + ' New Event' + (unreadCount !== 1 ? 's' : ''));
+          if (unreadCount === 0) {
+            $panel.find('.drawer-pf-action [data-toggle="mark-all-read"]').remove();
+            if ($('.drawer-pf .panel-collapse .unread').length === 0) {
+              // TODO: remove badge for unread indicator
+            }
+          }
+        });
+      });
+    });
+
+    $('#notification-drawer-accordion').initCollapseHeights('.panel-body');
+  });
+</script>
+
+  
+</nav> <!--/.navbar-->
+
+
+<div class="nav-pf-vertical nav-pf-vertical-with-sub-menus
+     
+     nav-pf-vertical-collapsible-menus
+     
+     ">
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-dashboard" data-toggle="tooltip" title="Dashboard"></span>
+        <span class="list-group-item-value">Dashboard</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-shield" data-toggle="tooltip" title="Dolor"></span>
+        <span class="list-group-item-value">Dolor</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item active secondary-nav-item-pf" data-target="#ipsum-secondary">
+      <a href="#0">
+        <span class="fa fa-space-shuttle" data-toggle="tooltip" title="Ipsum"></span>
+        <span class="list-group-item-value">Ipsum</span>
+      </a>
+      
+      <div id="-secondary" class="nav-pf-secondary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+    <span>Ipsum</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item active tertiary-nav-item-pf" data-target="#ipsum-intellegam-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Intellegam</span>
+      </a>
+      
+      <div id="compute-containers-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Intellegam</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item active">
+      <a href="#0">
+        <span id="compute-containers-users-nav-item" class="list-group-item-value">Recteque</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span id="compute-containers-groups-nav-item" class="list-group-item-value">Suavitate</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span id="compute-containers-roles-nav-item" class="list-group-item-value">Vituperatoribus</span>
+        
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item tertiary-nav-item-pf" data-target="#ipsum-copiosae-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Copiosae</span>
+      </a>
+      
+      <div id="compute-infrastructure-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Copiosae</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Exerci</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Quaeque</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Utroque</span>
+        
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item tertiary-nav-item-pf" data-target="#ipsum-patrioque-tertiary">
+      <a href="#0" >
+        <span class="list-group-item-value">Patrioque</span>
+      </a>
+      
+      <div id="compute-clouds-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Patrioque</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Novum</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Pericula</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Gubergren</span>
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Accumsan</span>
+        
+      </a>
+    </li>
+    
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item secondary-nav-item-pf" data-target="#amet-secondary">
+      <a href="#0">
+        <span class="fa fa-paper-plane" data-toggle="tooltip" title="Amet"></span>
+        <span class="list-group-item-value">Amet</span>
+      </a>
+      
+      <div id="amet-secondary" class="nav-pf-secondary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+    <span>Amet</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item tertiary-nav-item-pf" data-target="#amet-detracto-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Detracto Suscipiantur</span>
+        
+      </a>
+      
+      <div id="amet-detracto-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Detracto</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Delicatissimi</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Aliquam</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Principes</span>
+        
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item tertiary-nav-item-pf" data-target="#amet-mediocrem-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Mediocrem</span>
+        
+      </a>
+      
+      <div id="amet-mediocrem-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Mediocrem</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Convenire</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Nonumy</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Deserunt</span>
+        
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item tertiary-nav-item-pf" data-target="#amet-corrumpit-tertiary">
+      <a href="#0">
+        <span class="list-group-item-value">Corrumpit Cupidatat Proident Deserunt</span>
+        
+      </a>
+      
+      <div id="amet-corrumpit-tertiary" class="nav-pf-tertiary-nav">
+  <div class="nav-item-pf-header">
+    <a href="#0" class="tertiary-collapse-toggle-pf" data-toggle="collapse-tertiary-nav"></a>
+    <span>Corrumpit</span>
+  </div>
+  <ul class="list-group">
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Aeque</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Delenit</span>
+        
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Qualisque</span>
+        
+      </a>
+    </li>
+  </ul>
+</div>
+
+      
+    </li>
+    
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="list-group-item-value">Urbanitas Habitant Morbi Tristique</span>
+        
+      </a>
+    </li>
+    
+  </ul>
+</div>
+
+      
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-graduation-cap" data-toggle="tooltip" title="Adipscing"></span>
+        <span class="list-group-item-value">Adipscing</span>
+      </a>
+    </li>
+    <li class="list-group-item">
+      <a href="#0">
+        <span class="fa fa-gamepad" data-toggle="tooltip" title="Lorem"></span>
+        <span class="list-group-item-value">Lorem</span>
+      </a>
+    </li>
+    
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block">
+      <a href="#0">
+        <span class="pficon pficon-user" data-toggle="tooltip" title="" data-original-title="User"></span>
+        <span class="list-group-item-value">User</span>
+      </a>
+      <div id="user-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>User</span>
+        </div>
+
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Preferences</span>
+            </a>
+          </li>
+
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Logout</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+    <li class="list-group-item secondary-nav-item-pf mobile-nav-item-pf visible-xs-block" data-target="#amet-secondary">
+      <a href="#0">
+        <span class="pficon pficon-help" data-toggle="tooltip" title="" data-original-title="Help"></span>
+        <span class="list-group-item-value">Help</span>
+      </a>
+      <div id="help-secondary" class="nav-pf-secondary-nav">
+        <div class="nav-item-pf-header">
+          <a href="#0" class="secondary-collapse-toggle-pf" data-toggle="collapse-secondary-nav"></a>
+          <span>Help</span>
+        </div>
+        <ul class="list-group">
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">Help</span>
+            </a>
+          </li>
+          <li class="list-group-item">
+            <a href="#0">
+              <span class="list-group-item-value">About</span>
+            </a>
+          </li>
+        </ul>
+      </div>
+    </li>
+
+  </ul>
+
+</div>
+<div class="container-fluid container-cards-pf container-pf-nav-pf-vertical
+     
+     
+     ">
+
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">20</span> Amet</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-warning-triangle-o"></span>1</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status">
+  <h2 class="card-pf-title">
+    <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">9</span> Adipiscing</a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status">
+            <h2 class="card-pf-title">
+              <a href="#"><span class="fa fa-shield"></span><span class="card-pf-aggregate-status-count">12</span> Lorem</a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <span class="fa fa-rebel"></span>
+    <span class="card-pf-aggregate-status-count">0</span> Ipsum
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#" class="add" data-toggle="tooltip" data-placement="top" title="Add Ipsum"><span class="pficon pficon-add-circle-o"></span></a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="fa fa-paper-plane"></span>
+      <span class="card-pf-aggregate-status-count">20</span> Amet
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><a href="#"><span class="pficon pficon-error-circle-o"></span>4</a></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+<div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+  <h2 class="card-pf-title">
+    <a href="#">
+      <span class="pficon pficon-cluster"></span>
+      <span class="card-pf-aggregate-status-count">9</span> Adipiscing
+    </a>
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-aggregate-status-notifications">
+      <span class="card-pf-aggregate-status-notification"><span class="pficon pficon-ok"></span></span>
+    </p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-3">
+          <div class="card-pf card-pf-accented card-pf-aggregate-status card-pf-aggregate-status-mini">
+            <h2 class="card-pf-title">
+              <a href="#">
+                <span class="pficon pficon-image"></span>
+                <span class="card-pf-aggregate-status-count">12</span> Lorem
+              </a>
+            </h2>
+            <div class="card-pf-body">
+              <p class="card-pf-aggregate-status-notifications">
+                <a href="#"><span class="card-pf-aggregate-status-notification"><span class="pficon pficon-error-circle-o"></span>1</span></a>
+              </p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Top Utilized Clusters
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-description">
+      RHOS6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 95%;"  data-toggle="tooltip" title="95% Used">
+        <span><strong>190.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="5" aria-valuemin="0" aria-valuemax="100" style="width: 5%;" data-toggle="tooltip" title="5% Available">
+        <span class="sr-only">5% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      CFMEQE-Cluster
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;"  data-toggle="tooltip" title="50% Used">
+        <span><strong>100.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="50% Available">
+        <span class="sr-only">50% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHOS-Undercloud
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;"  data-toggle="tooltip" title="70% Used">
+        <span><strong>140.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="width: 30%;" data-toggle="tooltip" title="30% Available">
+        <span class="sr-only">30% Available</span>
+      </div>
+    </div>
+    <div class="progress-description">
+      RHEL6-Controller
+    </div>
+    <div class="progress progress-label-top-right">
+      <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="76.5" aria-valuemin="0" aria-valuemax="100" style="width: 76.5%;"  data-toggle="tooltip" title="76.5% Used">
+        <span><strong>153.0 of 200.0 GB</strong> Used</span>
+      </div>
+      <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="23.5" aria-valuemin="0" aria-valuemax="100" style="width: 23.5%;" data-toggle="tooltip" title="23.5% Available">
+        <span class="sr-only">23.5% Available</span>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <h2 class="card-pf-title">
+      Quotas
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        CPU
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="width: 25%;" data-toggle="tooltip" title="25% Used">
+          <span><strong>115 of 460</strong> MHz</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%;" data-toggle="tooltip" title="75% Available">
+          <span class="sr-only">75% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Memory
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Used">
+          <span><strong>8 of 16</strong> GB</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;" data-toggle="tooltip" title="8 GB Available">
+          <span class="sr-only">50% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Pods
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="62.5" aria-valuemin="0" aria-valuemax="100" style="width: 62.5%;" data-toggle="tooltip" title="62.5% Used">
+          <span><strong>5 of 8</strong> Total</span>
+        </div>
+        <div class="progress-bar progress-bar-remaining" role="progressbar" aria-valuenow="37.5" aria-valuemin="0" aria-valuemax="100" style="width: 37.5%;" data-toggle="tooltip" title="37.5% Available">
+          <span class="sr-only">37.5% Available</span>
+        </div>
+      </div>
+    </div>
+    <div class="progress-container progress-description-left progress-label-right">
+      <div class="progress-description">
+        Services
+      </div>
+      <div class="progress">
+        <div class="progress-bar" role="progressbar" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100" style="width: 100%;" data-toggle="tooltip" title="100% Used">
+          <span><strong>2 of 2</strong> Total</span>
+        </div>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-md-12">
+<div class="card-pf card-pf-utilization">
+  <div class="card-pf-heading">
+    <p class="card-pf-heading-details">Last 30 days</p>
+    <h2 class="card-pf-title">
+      Utilization
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <div class="row">
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">CPU</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">50</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1000 MHz</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-1"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-1"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-1';
+          donutConfig.color =  {
+            pattern: ["#cc0000","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 95],
+              ["Available", 5]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' MHz ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart1 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-1").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("950").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("MHz Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-1';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 10, 50, 28, 20, 31, 27, 60, 36, 52, 55, 62, 68, 69, 88, 74, 88, 95],
+            ],
+            type: 'area'
+          };
+          var chart2 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Memory</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">256</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 432 GB</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-2"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-2"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-2';
+          donutConfig.color =  {
+            pattern: ["#3f9c35","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 41],
+              ["Available", 59]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' GB ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart3 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-2").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("176").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("GB Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-2';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 35, 36, 20, 30, 31, 22, 44, 36, 40, 41, 55, 52, 48, 48, 50, 40, 41],
+            ],
+            type: 'area'
+          };
+          var chart4 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+      <div class="col-xs-12 col-sm-4 col-md-4">
+        <h3 class="card-pf-subtitle">Network</h3>
+        <p class="card-pf-utilization-details">
+          <span class="card-pf-utilization-card-details-count">200</span>
+            <span class="card-pf-utilization-card-details-description">
+              <span class="card-pf-utilization-card-details-line-1">Available</span>
+              <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+            </span>
+        </p>
+        <div id="chart-pf-donut-3"></div>
+        <div class="chart-pf-sparkline" id="chart-pf-sparkline-3"></div>
+        <script>
+          var donutConfig = $().c3ChartDefaults().getDefaultDonutConfig('A');
+          donutConfig.bindto = '#chart-pf-donut-3';
+          donutConfig.color =  {
+            pattern: ["#EC7A08","#D1D1D1"]
+          };
+          donutConfig.data = {
+            type: "donut",
+            columns: [
+              ["Used", 85],
+              ["Available", 15]
+            ],
+            groups: [
+              ["used", "available"]
+            ],
+            order: null
+          };
+          donutConfig.tooltip = {
+            contents: function (d) {
+              return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                      Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                      '</span>';
+            }
+          };
+
+          var chart5 = c3.generate(donutConfig);
+          var donutChartTitle = d3.select("#chart-pf-donut-3").select('text.c3-chart-arcs-title');
+          donutChartTitle.text("");
+          donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+          donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+          var sparklineConfig = $().c3ChartDefaults().getDefaultSparklineConfig();
+          sparklineConfig.bindto = '#chart-pf-sparkline-3';
+          sparklineConfig.data = {
+            columns: [
+              ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+            ],
+            type: 'area'
+          };
+          var chart6 = c3.generate(sparklineConfig);
+        </script>
+      </div>
+    </div>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+        <div class="col-xs-12 col-sm-4 col-md-4">
+<div class="card-pf card-pf-utilization">
+  <h2 class="card-pf-title">
+    Network
+  </h2>
+  <div class="card-pf-body">
+    <p class="card-pf-utilization-details">
+      <span class="card-pf-utilization-card-details-count">200</span>
+        <span class="card-pf-utilization-card-details-description">
+          <span class="card-pf-utilization-card-details-line-1">Available</span>
+          <span class="card-pf-utilization-card-details-line-2">of 1300 Gbps</span>
+        </span>
+    </p>
+    <div id="chart-pf-donut-4"></div>
+    <div class="chart-pf-sparkline" id="chart-pf-sparkline-4"></div>
+    <script>
+      var c3ChartDefaults = $().c3ChartDefaults();
+
+      var donutConfig = c3ChartDefaults.getDefaultDonutConfig('A');
+      donutConfig.bindto = '#chart-pf-donut-4';
+      donutConfig.color =  {
+        pattern: ["#EC7A08","#D1D1D1"]
+      };
+      donutConfig.data = {
+        type: "donut",
+        columns: [
+          ["Used", 85],
+          ["Available", 15]
+        ],
+        groups: [
+          ["used", "available"]
+        ],
+        order: null
+      };
+      donutConfig.tooltip = {
+        contents: function (d) {
+          return '<span class="donut-tooltip-pf" style="white-space: nowrap;">' +
+                  Math.round(d[0].ratio * 100) + '%' + ' Gbps ' + d[0].name +
+                  '</span>';
+        }
+      };
+
+      var chart1 = c3.generate(donutConfig);
+      var donutChartTitle = d3.select("#chart-pf-donut-4").select('text.c3-chart-arcs-title');
+      donutChartTitle.text("");
+      donutChartTitle.insert('tspan').text("1100").classed('donut-title-big-pf', true).attr('dy', 0).attr('x', 0);
+      donutChartTitle.insert('tspan').text("Gbps Used").classed('donut-title-small-pf', true).attr('dy', 20).attr('x', 0);
+
+      var sparklineConfig = c3ChartDefaults.getDefaultSparklineConfig();
+      sparklineConfig.bindto = '#chart-pf-sparkline-4';
+      sparklineConfig.data = {
+        columns: [
+          ['%', 60, 55, 70, 44, 31, 67, 54, 46, 58, 75, 62, 68, 69, 88, 74, 88, 85],
+        ],
+        type: 'area'
+      };
+
+      var chart2 = c3.generate(sparklineConfig);
+    </script>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-6 col-md-5">
+<div class="card-pf">
+  <div class="card-pf-heading">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <h2 class="card-pf-title">
+      Card Title
+    </h2>
+  </div>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+</div>
+
+        </div>
+        <div class="col-xs-12 col-sm-6 col-md-7">
+<div class="card-pf">
+  <h2 class="card-pf-title">
+    Card Title
+  </h2>
+  <div class="card-pf-body">
+    <p>[card contents]</p>
+  </div>
+  <div class="card-pf-footer">
+    <div class="dropdown card-pf-time-frame-filter">
+      <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+        Last 30 Days <span class="caret"></span>
+      </button>
+      <ul class="dropdown-menu dropdown-menu-right" role="menu">
+        <li class="selected"><a href="#">Last 30 Days</a></li>
+        <li><a href="#">Last 60 Days</a></li>
+        <li><a href="#">Last 90 Days</a></li>
+      </ul>
+    </div>
+    <p>
+      <a href="#" class="card-pf-link-with-icon">
+        <span class="pficon pficon-add-circle-o"></span>Add New Cluster
+      </a>
+    </p>
+  </div>
+</div>
+
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-12 col-sm-5 col-md-5">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <div class="dropdown card-pf-time-frame-filter">
+                <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
+                  Last 30 Days <span class="caret"></span>
+                </button>
+                <ul class="dropdown-menu dropdown-menu-right" role="menu">
+                  <li class="selected"><a href="#">Last 30 Days</a></li>
+                  <li><a href="#">Last 60 Days</a></li>
+                  <li><a href="#">Last 90 Days</a></li>
+                </ul>
+              </div>
+              <p>
+                <a href="#" class="card-pf-link-with-icon">
+                  <span class="pficon pficon-flag"></span>View CPU Events
+                </a>
+              </p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-12 col-sm-7 col-md-7">
+          <div class="card-pf">
+            <h2 class="card-pf-title">
+              Card Title
+            </h2>
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div>
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-8 col-md-8">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-4 col-md-4">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+            <div class="card-pf-footer">
+              <p><a href="#">Footer link</a></p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+      <div class="row row-cards-pf">
+      <!-- Important:  if you need to nest additional .row within a .row.row-cards-pf, do *not* use .row-cards-pf on the nested .row  -->
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+        <div class="col-xs-6 col-sm-6 col-md-6">
+          <div class="card-pf">
+            <div class="card-pf-body">
+              <p>[card contents]</p>
+            </div>
+          </div>
+        </div>
+      </div><!-- /row -->
+
+</div>
+<script>
+  $(document).ready(function() {
+    // matchHeight the contents of each .card-pf and then the .card-pf itself
+    $(".row-cards-pf > [class*='col'] > .card-pf .card-pf-title").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-body").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf > .card-pf-footer").matchHeight();
+    $(".row-cards-pf > [class*='col'] > .card-pf").matchHeight();
+
+    // Initialize the vertical navigation
+    $().setupVerticalNavigation(true);
+  });
+</script>
+
+<script>
+  const currentUrl = new URL(window.location.href);
+  const currentEnvironment = currentUrl.searchParams.get('environment');
+
+  if (currentEnvironment === 'regressions') {
+    let verticalNavEl = document.querySelector('div.nav-pf-vertical');
+    let ipsumEl = document.querySelector('[data-target="#ipsum-secondary"]');
+    let tertiaryNavItemEl = document.querySelector('.list-group-item.active.tertiary-nav-item-pf')
+    verticalNavEl.className = `${verticalNavEl.className} nav-pf-vertical-with-submenus hidden-icons-pf hover-secondary-nav-pf hover-tertiary-nav-pf`;
+    ipsumEl.className = `${ipsumEl.className} is-hover`;
+    tertiaryNavItemEl.className = `${tertiaryNavItemEl.className} is-hover`;
+  }
+</script>
+
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/wizard(old).html b/themes/src/main/node_modules/rcue/tests/wizard(old).html
new file mode 100644
index 0000000..83888a8
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/wizard(old).html
@@ -0,0 +1,886 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Wizard (old) - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Wizard (old)</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+<h2>Complete Wizard</h2>
+<button class="btn btn-default wizard-pf-open wizard-pf-complete" data-target="#complete">Launch wizard</button>
+<div class="modal" id="complete" tabindex="-1" role="dialog">
+  <div class="modal-dialog modal-lg wizard-pf">
+    <div class="modal-content">
+      <div class="modal-header">
+        <button type="button" class="close" data-dismiss="modal" aria-hidden="true" aria-label="Close">
+          <span class="pficon pficon-close"></span>
+        </button>
+        <h4 class="modal-title">Wizard Title</h4>
+      </div>
+      <div class="modal-body wizard-pf-body clearfix">
+        <div class="wizard-pf-steps hidden">
+          <ul class="wizard-pf-steps-indicator wizard-pf-steps-alt-indicator active">
+
+            <li class="wizard-pf-step active">
+              <a href="#"><span class="wizard-pf-step-number">1</span><span class="wizard-pf-step-title">First Step</span>
+                <span class="wizard-pf-step-title-substep active">details</span>
+                <span class="wizard-pf-step-title-substep">Settings</span>
+              </a>
+            </li>
+
+            <li class="wizard-pf-step">
+              <a href="#">
+                <span class="wizard-pf-step-number">2</span>
+                <span class="wizard-pf-step-title">Second Step</span>
+                <span class="wizard-pf-step-title-substep">details</span>
+                <span class="wizard-pf-step-title-substep">settings</span>
+              </a>
+            </li>
+
+            <li class="wizard-pf-step">
+              <a href="#">
+                <span class="wizard-pf-step-number">3</span>
+                <span class="wizard-pf-step-title">Review</span>
+                <span class="wizard-pf-step-title-substep">summary</span>
+                <span class="wizard-pf-step-title-substep">progress</span>
+              </a>
+            </li>
+          </ul>
+
+          <ul class="wizard-pf-steps-alt">
+            <li class="wizard-pf-step-alt viewed">
+              <a href="#">
+                <span class="wizard-pf-step-alt-number">1</span>
+                <span class="wizard-pf-step-alt-title">First Step</span>
+              </a>
+                  <ul>
+                    <li class="wizard-pf-step-alt-substep active"><a href="">1A. Details</a></li>
+                    <li class="wizard-pf-step-alt-substep disabled"><a href="#">1B. Settings</a></li>
+                  </ul>
+            </li>
+
+            <li class="wizard-pf-step-alt">
+              <a href="#">
+                <span class="wizard-pf-step-alt-number">2</span>
+                <span class="wizard-pf-step-alt-title">Second Step</span>
+              </a>
+                  <ul class="hidden">
+                    <li class="wizard-pf-step-alt-substep disabled"><a href="#">2A. Details</a></li>
+                    <li class="wizard-pf-step-alt-substep disabled"><a href="#">2B. Settings</a></li>
+                  </ul>
+            </li>
+
+            <li class="wizard-pf-step-alt">
+              <a  href="#">
+                <span class="wizard-pf-step-alt-number">3</span>
+                <span class="wizard-pf-step-alt-title">Review</span>
+              </a>
+              <ul class="hidden">
+                <li class="wizard-pf-step-alt-substep disabled"><a href="#">3A. Summary</a></li>
+                <li class="wizard-pf-step-alt-substep disabled"><a href="#">3B. Progress</a></li>
+              </ul>
+            </li>
+
+          </ul>
+
+        </div>
+
+        <div class="wizard-pf-row">
+          <div class="wizard-pf-sidebar hidden">
+            <ul class="list-group">
+              <li class="list-group-item active">
+                <a href="#">
+                  <span class="wizard-pf-substep-number">1A.</span>
+                  <span class="wizard-pf-substep-title">Details</span>
+                </a>
+              </li>
+              <li class="list-group-item">
+                <a href="#">
+                  <span class="wizard-pf-substep-number">1B.</span>
+                  <span class="wizard-pf-substep-title">Settings</span>
+                </a>
+              </li>
+            </ul>
+            <ul class="list-group hidden">
+              <li class="list-group-item">
+                <a href="#">
+                  <span class="wizard-pf-substep-number">2A.</span>
+                  <span class="wizard-pf-substep-title">Details</span>
+                </a>
+              </li>
+              <li class="list-group-item">
+                <a href="#">
+                  <span class="wizard-pf-substep-number">2B.</span>
+                  <span class="wizard-pf-substep-title">Settings</span>
+                </a>
+              </li>
+            </ul>
+            <ul class="list-group hidden">
+              <li class="list-group-item">
+                <a>
+                  <span class="wizard-pf-substep-number">3A.</span>
+                  <span class="wizard-pf-substep-title">Summary</span>
+                </a>
+              </li>
+              <li class="list-group-item">
+                <a>
+                  <span class="wizard-pf-substep-number">3B.</span>
+                  <span class="wizard-pf-substep-title">Progress</span>
+                </a>
+              </li>
+            </ul>
+          </div> <!-- /.wizard-pf-sidebar -->
+          <div class="wizard-pf-main">
+            <div class="wizard-pf-loading blank-slate-pf">
+              <div class="spinner spinner-lg blank-slate-pf-icon"></div>
+              <h3 class="blank-slate-pf-main-action">Loading Wizard</h3>
+              <p class="blank-slate-pf-secondary-action">Lorem ipsum dolor sit amet, porta at suspendisse ac, ut wisi
+                vivamus, lorem sociosqu eget nunc amet. </p>
+            </div>
+            <div class="wizard-pf-contents hidden">
+              <form class="form-horizontal">
+                <!-- replacing id with data-id to pass build errors -->
+                <div class="form-group required">
+                  <label class="col-sm-2 control-label" for="textInput-markup" required>Name</label>
+                  <div class="col-sm-10">
+                    <input id="detailsName" type="text" data-id="textInput-markup" class="form-control">
+                  </div>
+                </div>
+                <div class="form-group">
+                  <label class="col-sm-2 control-label" for="descriptionInput-markup">Description (Optional)</label>
+                  <div class="col-sm-10">
+                    <textarea data-id="descriptionInput-markup" class="form-control" rows="2"></textarea>
+                  </div>
+                </div>
+              </form>
+            </div>
+            <div class="wizard-pf-contents hidden">
+              <form class="form-horizontal">
+                <div class="form-group required">
+                  <label class="col-sm-2 control-label" for="lorem">Lorem ipsum</label>
+                  <div class="col-sm-10">
+                    <input type="text" id="lorem" class="form-control">
+                  </div>
+                </div>
+                <div class="form-group">
+                  <label class="col-sm-2 control-label" for="dolor">Dolor (Optional)</label>
+                  <div class="col-sm-10">
+                    <textarea id="dolor" class="form-control" rows="2"></textarea>
+                  </div>
+                </div>
+              </form>
+            </div>
+            <div class="wizard-pf-contents hidden">
+              <form class="form-horizontal">
+                <div class="form-group required">
+                  <label class="col-sm-2 control-label" for="aliquam">Aliquam</label>
+                  <div class="col-sm-10">
+                    <input type="text" id="aliquam" class="form-control">
+                  </div>
+                </div>
+                <div class="form-group">
+                  <label class="col-sm-2 control-label" for="fermentum">Fermentum</label>
+                  <div class="col-sm-10">
+                    <textarea id="fermentum" class="form-control" rows="2"></textarea>
+                  </div>
+                </div>
+              </form>
+            </div>
+            <div class="wizard-pf-contents hidden">
+              <form class="form-horizontal">
+                <div class="form-group required">
+                  <label class="col-sm-2 control-label" for="consectetur">Consectetur</label>
+                  <div class="col-sm-10">
+                    <input type="text" id="consectetur" class="form-control">
+                  </div>
+                </div>
+                <div class="form-group">
+                  <label class="col-sm-2 control-label" for="adipiscing">Adipiscing</label>
+                  <div class="col-sm-10">
+                    <textarea id="adipiscing" class="form-control" rows="2"></textarea>
+                  </div>
+                </div>
+              </form>
+            </div>
+            <div class="wizard-pf-contents hidden">
+              <div class="wizard-pf-review-steps">
+                <ul class="list-group">
+                  <li class="list-group-item">
+                    <a onclick="$(this).toggleClass('collapsed'); $('#reviewStep1').toggleClass('collapse');">First Step</a>
+                    <div id="reviewStep1" class="wizard-pf-review-substeps">
+                      <ul class="list-group">
+                        <li class="list-group-item">
+                          <a onclick="$(this).toggleClass('collapsed'); $('#reviewStep1Substep1').toggleClass('collapse');">
+                            <span class="wizard-pf-substep-number">1A.</span>
+                            <span class="wizard-pf-substep-title">Details</span>
+                          </a>
+                          <div id="reviewStep1Substep1" class="wizard-pf-review-content">
+                            <form class="form">
+                              <div class="wizard-pf-review-item">
+                                <span class="wizard-pf-review-item-label">Name:</span>
+                                <span class="wizard-pf-review-item-value">First Last</span>
+                              </div>
+                              <div class="wizard-pf-review-item">
+                                <span class="wizard-pf-review-item-label">Description:</span>
+                                <span class="wizard-pf-review-item-value">This is the description</span>
+                              </div>
+                            </form>
+                          </div>
+                        </li>
+                        <li class="list-group-item">
+                          <a onclick="$(this).toggleClass('collapsed'); $('#reviewStep1Substep2').toggleClass('collapse');">
+                            <span class="wizard-pf-substep-number">1B.</span>
+                            <span class="wizard-pf-substep-title">Settings</span>
+                          </a>
+                          <div id="reviewStep1Substep2" class="wizard-pf-review-content">
+                            <form class="form">
+                              <div class="wizard-pf-review-item">
+                                <div class="wizard-pf-review-item-field">Setting A</div>
+                                <div class="wizard-pf-review-item-field">Setting B</div>
+                              </div>
+                            </form>
+                          </div>
+                        </li>
+                      </ul>
+                    </div>
+                  </li>
+                  <li class="list-group-item">
+                    <a onclick="$(this).toggleClass('collapsed'); $('#reviewStep2').toggleClass('collapse');">Second Step</a>
+                    <div id="reviewStep2" class="wizard-pf-review-substeps">
+                      <ul class="list-group">
+                        <li class="list-group-item">
+                          <a onclick="$(this).toggleClass('collapsed'); $('#reviewStep2Substep1').toggleClass('collapse');">
+                            <span class="wizard-pf-substep-number">2A.</span>
+                            <span class="wizard-pf-substep-title">Details</span>
+                          </a>
+                          <div id="reviewStep2Substep1" class="wizard-pf-review-content">
+                            <form class="form">
+                              <div class="wizard-pf-review-item">
+                                <span class="wizard-pf-review-item-label">Name:</span>
+                                <span class="wizard-pf-review-item-value">First Last</span>
+                              </div>
+                              <div class="wizard-pf-review-item">
+                                <span class="wizard-pf-review-item-label">Description:</span>
+                                <span class="wizard-pf-review-item-value">This is the description</span>
+                              </div>
+                            </form>
+                          </div>
+                        </li>
+                        <li class="list-group-item">
+                          <a onclick="$(this).toggleClass('collapsed'); $('#reviewStep2Substep2').toggleClass('collapse');">
+                            <span class="wizard-pf-substep-number">2B.</span>
+                            <span class="wizard-pf-substep-title">Settings</span>
+                          </a>
+                          <div id="reviewStep2Substep2" class="wizard-pf-review-content">
+                            <form class="form">
+                              <div class="wizard-pf-review-item">
+                                <div class="wizard-pf-review-item-field">Setting A</div>
+                                <div class="wizard-pf-review-item-field">Setting B</div>
+                              </div>
+                            </form>
+                          </div>
+                        </li>
+                      </ul>
+                    </div>
+                  </li>
+                </ul>
+              </div>
+            </div>
+            <div class="wizard-pf-contents hidden">
+              <div class="wizard-pf-process blank-slate-pf">
+                <div class="spinner spinner-lg blank-slate-pf-icon"></div>
+                <h3 class="blank-slate-pf-main-action">Deployment in progress</h3>
+                <p class="blank-slate-pf-secondary-action">Lorem ipsum dolor sit amet, porta at suspendisse ac, ut wisi
+                  vivamus, lorem sociosqu eget nunc amet. </p>
+              </div>
+              <div class="wizard-pf-complete blank-slate-pf hidden">
+                <div class="wizard-pf-success-icon"><span class="glyphicon glyphicon-ok-circle"></span></div>
+                <h3 class="blank-slate-pf-main-action">Deployment was successful</h3>
+                <p class="blank-slate-pf-secondary-action">Lorem ipsum dolor sit amet, porta at suspendisse ac, ut wisi
+                  vivamus, lorem sociosqu eget nunc amet. </p>
+                <button type="button" class="btn btn-lg btn-primary">
+                  View Deployment
+                </button>
+
+              </div>
+            </div>
+          </div><!-- /.wizard-pf-main -->
+        </div>
+
+      </div><!-- /.wizard-pf-body -->
+
+      <div class="modal-footer wizard-pf-footer">
+        <button type="button" class="btn btn-default btn-cancel wizard-pf-cancel wizard-pf-dismiss">Cancel</button>
+        <button type="button" class="btn btn-default wizard-pf-back disabled">
+          <span class="i fa fa-angle-left"></span>
+          Back
+        </button>
+        <button type="button" class="btn btn-primary wizard-pf-next disabled">
+          Next
+          <span class="i fa fa-angle-right"></span>
+        </button>
+        <button type="button" class="btn btn-primary hidden wizard-pf-finish">
+          Deploy
+          <span class="i fa fa-angle-right"></span>
+        </button>
+        <button type="button" class="btn btn-primary hidden wizard-pf-close wizard-pf-dismiss">Close</button>
+
+      </div><!-- /.wizard-pf-footer -->
+
+    </div><!-- /.modal-content -->
+  </div><!-- /.modal-dialog -->
+</div><!-- /.modal -->
+
+<script>
+
+  $(document).ready(function() {
+    //initialize wizard
+    var completeWizard = new wizard(".btn.wizard-pf-complete");
+  });
+
+  var wizard = function(id) {
+    var self = this, modal, tabs, tabCount, tabLast, currentGroup, currentTab, contents;
+    self.id = id;
+
+    $(self.id).click(function() {
+        self.init(this)
+    });
+
+    this.init = function(button){
+      // get id of open modal
+      self.modal = $(button).data("target");
+
+      self.resetToInitialState();
+
+      // open modal
+      $(self.modal).modal('show');
+
+      // assign data attribute to all tabs
+      $(self.modal + " .wizard-pf-sidebar .list-group-item").each(function() {
+          // set the first digit (i.e. n.0) equal to the index of the parent tab group
+          // set the second digit (i.e. 0.n) equal to the index of the tab within the tab group
+          $(this).attr("data-tab", ($(this).parent().index() +1 + ($(this).index()/10 + .1)));
+      });
+      // assign data attribute to all tabgroups
+      $(self.modal + " .wizard-pf-sidebar .list-group").each(function() {
+          // set the value equal to the index of the tab group
+          $(this).attr("data-tabgroup", ($(this).index() +1));
+      });
+
+      // assign data attribute to all step indicator steps
+      $(self.modal + " .wizard-pf-steps-indicator  .wizard-pf-step").each(function() {
+        // set the value equal to the index of the tab group
+        $(this).attr("data-tabgroup", ($(this).index() +1));
+      });
+      // assign data attribute to all step indicator substeps
+      $(self.modal + " .wizard-pf-steps-indicator .wizard-pf-step-title-substep").each(function() {
+        // set the first digit (i.e. n.0) equal to the index of the parent tab group
+        // set the second digit (i.e. 0.n) equal to the index of the tab within the tab group
+        $(this).attr("data-tab", ($(this).parent().parent().index() + 1 + (($(this).index() - 2)/10 + .1)));
+      });
+
+      // assign data attribute to all alt step indicator steps
+      $(self.modal + " .wizard-pf-steps-alt .wizard-pf-step-alt").each(function() {
+        // set the value equal to the index of the tab group
+        var tabGroup = $(this).index() + 1;
+        $(this).attr("data-tabgroup", tabGroup);
+        $(this).find('.wizard-pf-step-alt-substep').each(function() {
+          $(this).attr("data-tab", (tabGroup + (($(this).index() + 1)/10)));
+        });
+      });
+
+      // assign active and hidden states to teh steps alt classes
+      $(self.modal + " .wizard-pf-steps-alt-indicator").removeClass('active');
+      $(self.modal + " .wizard-pf-steps-alt").addClass('hidden');
+      $(self.modal + " .wizard-pf-steps-alt-indicator").on('click', function() {
+        $(self.modal + ' .wizard-pf-steps-alt-indicator').toggleClass('active');
+        $(self.modal + ' .wizard-pf-steps-alt').toggleClass('hidden');
+      });
+      $(self.modal + " .wizard-pf-step-alt > ul").addClass("hidden");
+
+      // create array of all tabs, using the data attribute, and determine the last tab
+      self.tabs = $(self.modal + " .wizard-pf-sidebar .list-group-item" ).map(function()
+        {
+          return $(this).data("tab");
+        }
+      );
+      self.tabCount = self.tabs.length;
+      self.tabSummary = self.tabs[self.tabCount - 2]; // second to last tab displays summary
+      self.tabLast = self.tabs[self.tabCount - 1]; // last tab displays progress
+      // set first tab group and tab as current tab
+      // if someone wants to target a specific tab, that could be handled here
+      self.currentGroup = 1;
+      self.currentTab = 1.1;
+
+      setTimeout(function() {
+        // hide loading message
+        $(self.modal + " .wizard-pf-loading").addClass("hidden");
+        // show tabs and tab groups
+        $(self.modal + " .wizard-pf-steps").removeClass("hidden");
+        $(self.modal + " .wizard-pf-sidebar").removeClass("hidden");
+        // remove active class from all tabs
+        $(self.modal + " .wizard-pf-sidebar .list-group-item.active").removeClass("active");
+
+        self.updateToCurrentPage();
+      }, 3000);
+
+      //initialize click listeners
+      self.tabGroupSelect();
+      self.tabSelect();
+      self.altStepClick();
+      self.altSubStepClick();
+      self.backBtnClicked();
+      self.nextBtnClicked();
+      self.finishBtnClick();
+      self.cancelBtnClick();
+
+      // Listen for required value change
+      self.detailsNameChange();
+    };
+
+    // update which tab group is active
+    this.updateTabGroup = function() {
+      $(self.modal + " .wizard-pf-step.active").removeClass("active");
+      $(self.modal + " .wizard-pf-step[data-tabgroup='" + self.currentGroup + "']").addClass("active");
+      $(self.modal + " .wizard-pf-sidebar .list-group").addClass("hidden");
+      $(self.modal + " .list-group[data-tabgroup='" + self.currentGroup + "']").removeClass("hidden");
+      $(self.modal + " .wizard-pf-step-alt[data-tabgroup='" + self.currentGroup + "']").addClass("viewed");
+      $(self.modal + " .wizard-pf-step-alt > ul").addClass("hidden");
+      $(self.modal + " .wizard-pf-step-alt[data-tabgroup='" + self.currentGroup + "'] > ul").removeClass("hidden");
+    };
+
+    // update which tab is active
+    this.updateActiveTab = function() {
+      $(self.modal + " .list-group-item.active").removeClass("active");
+      $(self.modal + " .list-group-item[data-tab='" + self.currentTab + "']").addClass("active");
+
+      // Update steps indicator to handle mobile mode
+      $(self.modal + " .wizard-pf-steps-indicator .wizard-pf-step-title-substep").removeClass("active");
+      $(self.modal + " .wizard-pf-steps-indicator .wizard-pf-step-title-substep[data-tab='" + self.currentTab + "']").addClass("active");
+
+      // Update steps alt indicator to handle mobile mode
+      $(self.modal + " .wizard-pf-step-alt .wizard-pf-step-alt-substep").removeClass("active");
+      $(self.modal + " .wizard-pf-step-alt .wizard-pf-step-alt-substep[data-tab='" + self.currentTab + "']").addClass("active");
+
+      self.updateVisibleContents();
+    };
+
+    // update which contents are visible
+    this.updateVisibleContents = function() {
+      var tabIndex = ($.inArray(self.currentTab, self.tabs));
+      // displaying contents associated with currentTab
+      $(self.modal + " .wizard-pf-contents").addClass("hidden");
+      $(self.modal + " .wizard-pf-contents:eq(" + tabIndex + ")").removeClass("hidden");
+      // setting focus to first form field in active contents
+      setTimeout (function() {
+        $(".wizard-pf-contents:not(.hidden) form input, .wizard-pf-contents:not(.hidden) form textarea, .wizard-pf-contents:not(.hidden) form select").first().focus(); // this does not account for disabled or read-only inputs
+      }, 100);
+    };
+
+    // update display state of Back button
+    this.updateBackBtnDisplay = function() {
+      if (self.currentTab == self.tabs[0]) {
+        $(self.modal + " .wizard-pf-back").addClass("disabled");
+      }
+    };
+
+    // update display state of next/finish button
+    this.updateNextBtnDisplay = function() {
+      if (self.currentTab == self.tabSummary) {
+        $(self.modal + " .wizard-pf-next").addClass("hidden");
+        $(self.modal + " .wizard-pf-finish").removeClass("hidden");
+      } else {
+        $(self.modal + " .wizard-pf-finish").addClass("hidden");
+        $(self.modal + " .wizard-pf-next").removeClass("hidden");
+      }
+    };
+
+    // update display state of buttons in the footer
+    this.updateWizardFooterDisplay = function() {
+      self.updateBackBtnDisplay();
+      self.updateNextBtnDisplay();
+    };
+
+
+    this.updateToCurrentPage = function() {
+      self.updateTabGroup();
+      self.updateActiveTab();
+
+      self.updateVisibleContents();
+
+      if (self.currentTab === self.tabLast) {
+        $(self.modal + " .wizard-pf-next").addClass("hidden");
+        $(self.modal + " .wizard-pf-finish").removeClass("hidden");
+        self.finish();
+      } else {
+        // show/hide/disable/enable buttons if needed
+        self.updateWizardFooterDisplay();
+      }
+    };
+
+    // when the user clicks a step, then the tab group for that step is displayed
+    this.tabGroupSelect = function() {
+      $(self.modal + " .wizard-pf-step>a").click(function() {
+        self.currentGroup = $(this).parent().data("tabgroup");
+        // update value for currentTab -- if a tab is already marked as active
+        // for the new tab group, use that, otherwise set it to the first tab
+        // in the tab group
+        self.currentTab = $(self.modal + " .list-group[data-tabgroup='" + self.currentGroup + "'] .list-group-item.active").data("tab");
+        if (self.currentTab === undefined) {
+          self.currentTab = self.currentGroup + 0.1;
+        }
+
+        self.updateToCurrentPage();
+      });
+    };
+
+    // when the user clicks a tab, then the tab contents are displayed
+    this.tabSelect = function() {
+      $(self.modal + " .wizard-pf-sidebar .list-group-item>a").click(function() {
+        // update value of currentTab to new active tab
+        self.currentTab = $(this).parent().data("tab");
+        self.updateToCurrentPage();
+      });
+    };
+
+    this.altStepClick = function() {
+      $(self.modal + " .wizard-pf-step-alt").each(function() {
+        var $this = $(this);
+        $this.find('> a').on('click', function() {
+          var subStepList = $this.find('> ul');
+          if (subStepList && (subStepList.length > 0)) {
+            $this.find('> ul').toggleClass('hidden');
+          } else {
+            self.currentGroup = $this.data("tabgroup");
+          }
+        });
+      });
+    };
+
+    this.altSubStepClick = function() {
+      $(self.modal + " .wizard-pf-step-alt .wizard-pf-step-alt-substep > a").on('click', function() {
+        // update value of currentTab to new active tab
+        self.currentTab = $(this).parent().data("tab");
+        self.currentGroup = $(this).parent().parent().parent().data("tabgroup");
+
+        self.updateToCurrentPage();
+      });
+    };
+    // Back button clicked
+    this.backBtnClicked = function() {
+      $(self.modal + " .wizard-pf-back").click(function() {
+        // if not the first page
+        if (self.currentTab != self.tabs[0]) {
+          // go back a page (i.e. -1)
+          self.wizardPaging(-1);
+          // show/hide/disable/enable buttons if needed
+          self.updateWizardFooterDisplay();
+        }
+      });
+    };
+
+    // Next button clicked
+    this.nextBtnClicked = function() {
+      $(self.modal + " .wizard-pf-next").click(function() {
+        // go forward a page (i.e. +1)
+        self.wizardPaging(1);
+        // show/hide/disable/enable buttons if needed
+        self.updateWizardFooterDisplay();
+      });
+    };
+
+    // Finish button clicked
+    // Deploy/Finish button would only display during the second to last step.
+    this.finishBtnClick = function() {
+      $(self.modal + " .wizard-pf-finish").click(function() {
+        self.wizardPaging(1);
+        self.finish();
+      });
+    };
+
+    this.detailsNameChange = function() {
+      $(self.modal + " #detailsName").on('change', function() {
+        if ($(self.modal + " #detailsName").val()) {
+          $(self.modal + " .wizard-pf-step-alt-substep").removeClass('disabled');
+          $(self.modal + " .wizard-pf-next").removeClass("disabled");
+        } else {
+          $(self.modal + " .wizard-pf-step-alt-substep").addClass('disabled');
+          $(self.modal + " .wizard-pf-step-alt-substep.active").removeClass('disabled');
+          $(self.modal + " .wizard-pf-next").addClass("disabled");
+        }
+      });
+    };
+
+    this.resetToInitialState = function() {
+      // drop click event listeners
+      $(self.modal + " .wizard-pf-step>a").off("click");
+      $(self.modal + " .wizard-pf-sidebar .list-group-item>a").off("click");
+      $(self.modal + " .wizard-pf-steps-alt-indicator").off('click');
+      $(self.modal + " .wizard-pf-step-alt > a").off('click');
+      $(self.modal + " .wizard-pf-back").off("click");
+      $(self.modal + " .wizard-pf-next").off("click");
+      $(self.modal + " .wizard-pf-finish").off("click");
+      $(self.modal + " .wizard-pf-dismiss").off("click");
+
+      $(self.modal + " #detailsName").off('change');
+
+      // reset final step
+      $(self.modal + " .wizard-pf-process").removeClass("hidden");
+      $(self.modal + " .wizard-pf-complete").addClass("hidden");
+      // reset loading message
+      $(self.modal + " .wizard-pf-contents").addClass("hidden");
+      $(self.modal + " .wizard-pf-loading").removeClass("hidden");
+      // remove tabs and tab groups
+      $(self.modal + " .wizard-pf-steps").addClass("hidden");
+      $(self.modal + " .wizard-pf-sidebar").addClass("hidden");
+      // reset buttons in final step
+      $(self.modal + " .wizard-pf-close").addClass("hidden");
+      $(self.modal + " .wizard-pf-cancel").removeClass("hidden");
+    };
+
+    // Cancel/Close button clicked
+    this.cancelBtnClick = function() {
+      $(self.modal + " .wizard-pf-dismiss").click(function() {
+        // close the modal
+        $(self.modal).modal('hide');
+        self.resetToInitialState();
+      });
+    };
+
+    // when the user clicks Next/Back, then the next/previous tab and contents display
+    this.wizardPaging = function(direction) {
+      // get n.n value of next tab using the index of next tab in tabs array
+      var tabIndex = ($.inArray(self.currentTab, self.tabs)) + direction;
+      var newTab = self.tabs[tabIndex];
+      // add/remove active class from current tab group
+      // included math.round to trim off extra .000000000002 that was getting added
+      if (newTab != Math.round(10*(direction*.1 + self.currentTab))/10) {
+        // this statement is true when the next tab is in the next tab group
+        // if next tab is in next tab group (e.g. next tab data-tab value is
+        // not equal to current tab +.1) then apply active class to next
+        // tab group and step, and update the value for var currentGroup +/-1
+        self.currentGroup = self.currentGroup + direction;
+        self.updateTabGroup();
+      }
+      self.currentTab = newTab;
+      // remove active class from active tab in current tab group
+      $(self.modal + " .list-group[data-tabgroup='" + self.currentGroup + "'] .list-group-item.active").removeClass("active");
+      // apply active class to new current tab and associated contents
+      self.updateActiveTab();
+    };
+
+    // This code keeps the same contents div active, but switches out what
+    // contents display in that div (i.e. replaces process message with
+    // success message).
+    this.finish = function() {
+      $(self.modal + " .wizard-pf-back").addClass("disabled"); // if Back remains enabled during this step, then the Close button needs to be removed when the user clicks Back
+      $(self.modal + " .wizard-pf-finish").addClass("disabled");
+      // code for kicking off process goes here
+      // the next code is just to simulate the expected experience, in that
+      // when the process is complete, the success message etc. would display
+      setTimeout (function() {
+        $(self.modal + " .wizard-pf-cancel").addClass("hidden");
+        $(self.modal + " .wizard-pf-finish").addClass("hidden");
+        $(self.modal + " .wizard-pf-close").removeClass("hidden");
+        $(self.modal + " .wizard-pf-process").addClass("hidden");
+        $(self.modal + " .wizard-pf-complete").removeClass("hidden");
+      }, 3000);
+    };
+
+  };
+
+</script>
+
+
+<h2>Initializing</h2>
+<button class="btn btn-default" data-toggle="modal" data-target="#initializing">Launch wizard showing initialization
+  state
+</button>
+<div class="modal" id="initializing" tabindex="-1" role="dialog">
+  <div class="modal-dialog modal-lg wizard-pf">
+    <div class="modal-content">
+      <div class="modal-header">
+        <button type="button" class="close" data-dismiss="modal" aria-hidden="true" aria-label="Close">
+          <span class="pficon pficon-close"></span>
+        </button>
+        <h4 class="modal-title">Wizard Title</h4>
+      </div>
+      <div class="modal-body wizard-pf-body clearfix">
+        <div class="wizard-pf-steps hidden">
+          <ul class="wizard-pf-steps-indicator">
+            <li>
+              <a><span class="wizard-pf-step-number">1</span><span class="wizard-pf-step-title">First Step</span></a>
+            </li>
+            <li>
+              <a><span class="wizard-pf-step-number">2</span><span class="wizard-pf-step-title">Second Step</span></a>
+            </li>
+            <li>
+              <a><span class="wizard-pf-step-number">3</span><span class="wizard-pf-step-title">Review</span></a>
+            </li>
+          </ul>
+        </div>
+
+        <div class="wizard-pf-sidebar hidden">
+          <ul class="list-group">
+            <li class="list-group-item active">
+              <a>
+                <span class="wizard-pf-substep-number">1A.</span>
+                <span class="wizard-pf-substep-title">General</span>
+              </a>
+            </li>
+            <li class="list-group-item">
+              <a>
+                <span class="wizard-pf-substep-number">1B.</span>
+                <span class="wizard-pf-substep-title">Masters &amp; Nodes</span>
+              </a>
+            </li>
+            <li class="list-group-item">
+              <a>
+                <span class="wizard-pf-substep-number">1C.</span>
+                <span class="wizard-pf-substep-title">CDN Channel</span>
+              </a>
+            </li>
+          </ul>
+        </div><!-- /.wizard-pf-sidebar -->
+
+        <div class="wizard-pf-main" style="margin-left: 0px">
+          <div class="blank-slate-pf">
+            <div class="spinner spinner-lg blank-slate-pf-icon"></div>
+            <h3 class="blank-slate-pf-main-action">Loading Wizard</h3>
+            <p class="blank-slate-pf-secondary-action">Lorem ipsum dolor sit amet, porta at suspendisse ac, ut wisi
+              vivamus, lorem sociosqu eget nunc amet. </p>
+          </div>
+
+        </div>
+
+      </div><!-- /.wizard-pf-body -->
+
+      <!-- TODO: disable buttons -->
+      <div class="modal-footer wizard-pf-footer">
+        <button type="button" class="btn btn-default btn-cancel" data-dismiss="modal">Cancel</button>
+        <button type="button" class="btn btn-default disabled" data-dismiss="modal">
+          <span class="i fa fa-angle-left"></span>
+          Back
+        </button>
+        <button type="button" class="btn btn-primary disabled" data-dismiss="modal">
+          Next
+          <span class="i fa fa-angle-right"></span>
+        </button>
+      </div><!-- /.wizard-pf-footer -->
+
+    </div><!-- /.modal-content -->
+  </div><!-- /.modal-dialog -->
+</div><!-- /.modal -->
+
+<h2>Last Step</h2>
+<button class="btn btn-default" data-toggle="modal" data-target="#done">Launch wizard showing finalizing
+state
+</button>
+<div class="modal" id="done" tabindex="-1" role="dialog">
+  <div class="modal-dialog modal-lg wizard-pf">
+    <div class="modal-content">
+      <div class="modal-header">
+        <button type="button" class="close" data-dismiss="modal" aria-hidden="true" aria-label="Close">
+          <span class="pficon pficon-close"></span>
+        </button>
+        <h4 class="modal-title">Wizard Title</h4>
+      </div>
+      <div class="modal-body wizard-pf-body clearfix">
+        <div class="wizard-pf-steps">
+          <ul class="wizard-pf-steps-indicator">
+            <li class="viewed-pf">
+              <a><span class="wizard-pf-step-number">1</span><span class="wizard-pf-step-title">First Step</span></a>
+            </li>
+            <li class="viewed-pf">
+              <a><span class="wizard-pf-step-number">2</span><span class="wizard-pf-step-title">Second Step</span></a>
+            </li>
+            <li class="active">
+              <a><span class="wizard-pf-step-number">3</span><span class="wizard-pf-step-title">Review</span></a>
+            </li>
+          </ul>
+        </div>
+        <div class="wizard-pf-row">
+          <div class="wizard-pf-sidebar">
+            <ul class="list-group">
+              <li class="list-group-item">
+                <a>
+                  <span class="wizard-pf-substep-number">3A.</span>
+                  <span class="wizard-pf-substep-title">Summary</span>
+                </a>
+              </li>
+              <li class="list-group-item active">
+                <a>
+                  <span class="wizard-pf-substep-number">3B.</span>
+                  <span class="wizard-pf-substep-title">Progress</span>
+                </a>
+              </li>
+            </ul>
+          </div><!-- /.wizard-pf-sidebar -->
+
+          <div class="wizard-pf-main">
+            <div class="blank-slate-pf">
+              <div class="spinner spinner-lg blank-slate-pf-icon"></div>
+              <h3 class="blank-slate-pf-main-action">Deployment in progress</h3>
+              <p class="blank-slate-pf-secondary-action">Lorem ipsum dolor sit amet, porta at suspendisse ac, ut wisi
+                vivamus, lorem sociosqu eget nunc amet. </p>
+            </div>
+
+          </div>
+        </div>
+      </div><!-- /.wizard-pf-body -->
+
+      <!-- TODO: disable buttons -->
+      <div class="modal-footer wizard-pf-footer">
+        <button type="button" class="btn btn-default btn-cancel" data-dismiss="modal">Cancel</button>
+        <button type="button" class="btn btn-default disabled" data-dismiss="modal">
+          <span class="i fa fa-angle-left"></span>
+          Back
+        </button>
+        <button type="button" class="btn btn-primary disabled" data-dismiss="modal">
+          Deploy
+          <span class="i fa fa-angle-right"></span>
+        </button>
+      </div><!-- /.wizard-pf-footer -->
+
+    </div><!-- /.modal-content -->
+  </div><!-- /.modal-dialog -->
+</div><!-- /.modal -->
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/node_modules/rcue/tests/wizard.html b/themes/src/main/node_modules/rcue/tests/wizard.html
new file mode 100644
index 0000000..7865070
--- /dev/null
+++ b/themes/src/main/node_modules/rcue/tests/wizard.html
@@ -0,0 +1,953 @@
+<!DOCTYPE html>
+<!--[if IE 9]><html lang="en-us" class="ie9"><![endif]-->
+<!--[if gt IE 9]><!-->
+<html lang="en-us">
+<!--<![endif]-->
+  <head>
+    <title>Wizard - Red Hat&reg; Common User Experience</title>
+    <meta charset="UTF-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <link rel="shortcut icon" href="/img/favicon.ico">
+    <!-- iPad retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/img/apple-touch-icon-precomposed-152.png">
+    <!-- iPad retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/img/apple-touch-icon-precomposed-144.png">
+    <!-- iPad non-retina icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/img/apple-touch-icon-precomposed-76.png">
+    <!-- iPad non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/apple-touch-icon-precomposed-72.png">
+    <!-- iPhone 6 Plus icon -->
+    <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/img/apple-touch-icon-precomposed-180.png">
+    <!-- iPhone retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-precomposed-114.png">
+    <!-- iPhone non-retina icon (iOS < 7) -->
+    <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/img/apple-touch-icon-precomposed-57.png">
+    <link rel="stylesheet" href="../dist/css/rcue.min.css" >
+    <link rel="stylesheet" href="../dist/css/rcue-additions.min.css" >
+      <link href="tests.css" rel="stylesheet" media="screen, print">
+    <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
+    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
+    <script src="../components/patternfly/dist/js/patternfly.min.js"></script>
+  </head>
+
+  <body>
+    <div class="container">
+      <div class="page-header">
+        <h1>Wizard</h1>
+      </div>
+      <div class="alert alert-warning">
+        <span class="pficon pficon-warning-triangle-o"></span>
+        These examples are included for development testing purposes.  For official documentation, see <a href="https://www.patternfly.org" class="alert-link">https://www.patternfly.org</a> and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.
+      </div>
+      <hr>
+<h2>Complete Wizard</h2>
+<button class="btn btn-default wizard-pf-open wizard-pf-complete" data-target="#complete">Launch wizard</button>
+<div class="modal" id="complete" tabindex="-1" role="dialog">
+  <div class="modal-dialog modal-lg wizard-pf">
+    <div class="modal-content">
+      <div class="modal-header">
+        <button type="button" class="close" data-dismiss="modal" aria-hidden="true" aria-label="Close">
+          <span class="pficon pficon-close"></span>
+        </button>
+        <h4 class="modal-title">Wizard Title</h4>
+      </div>
+      <div class="modal-body wizard-pf-body clearfix">
+        <div class="wizard-pf-steps hidden">
+          <ul class="wizard-pf-steps-indicator wizard-pf-steps-alt-indicator active">
+
+            <li class="wizard-pf-step active">
+              <a href="#"><span class="wizard-pf-step-number">1</span><span class="wizard-pf-step-title">First Step</span>
+                <span class="wizard-pf-step-title-substep active">details</span>
+                <span class="wizard-pf-step-title-substep">Settings</span>
+              </a>
+            </li>
+
+            <li class="wizard-pf-step">
+              <a href="#">
+                <span class="wizard-pf-step-number">2</span>
+                <span class="wizard-pf-step-title">Second Step</span>
+                <span class="wizard-pf-step-title-substep">details</span>
+                <span class="wizard-pf-step-title-substep">settings</span>
+              </a>
+            </li>
+
+            <li class="wizard-pf-step">
+              <a href="#">
+                <span class="wizard-pf-step-number">3</span>
+                <span class="wizard-pf-step-title">Review</span>
+                <span class="wizard-pf-step-title-substep">summary</span>
+                <span class="wizard-pf-step-title-substep">progress</span>
+              </a>
+            </li>
+          </ul>
+
+          <ul class="wizard-pf-steps-alt">
+            <li class="wizard-pf-step-alt viewed">
+              <a href="#">
+                <span class="wizard-pf-step-alt-number">1</span>
+                <span class="wizard-pf-step-alt-title">First Step</span>
+              </a>
+                  <ul>
+                    <li class="wizard-pf-step-alt-substep active"><a href="">1A. Details</a></li>
+                    <li class="wizard-pf-step-alt-substep disabled"><a href="#">1B. Settings</a></li>
+                  </ul>
+            </li>
+
+            <li class="wizard-pf-step-alt">
+              <a href="#">
+                <span class="wizard-pf-step-alt-number">2</span>
+                <span class="wizard-pf-step-alt-title">Second Step</span>
+              </a>
+                  <ul class="hidden">
+                    <li class="wizard-pf-step-alt-substep disabled"><a href="#">2A. Details</a></li>
+                    <li class="wizard-pf-step-alt-substep disabled"><a href="#">2B. Settings</a></li>
+                  </ul>
+            </li>
+
+            <li class="wizard-pf-step-alt">
+              <a  href="#">
+                <span class="wizard-pf-step-alt-number">3</span>
+                <span class="wizard-pf-step-alt-title">Review</span>
+              </a>
+              <ul class="hidden">
+                <li class="wizard-pf-step-alt-substep disabled"><a href="#">3A. Summary</a></li>
+                <li class="wizard-pf-step-alt-substep disabled"><a href="#">3B. Progress</a></li>
+              </ul>
+            </li>
+
+          </ul>
+
+        </div>
+
+        <div class="wizard-pf-row">
+          <div class="wizard-pf-sidebar hidden">
+            <ul class="list-group">
+              <li class="list-group-item active">
+                <a href="#">
+                  <span class="wizard-pf-substep-number">1A.</span>
+                  <span class="wizard-pf-substep-title">Details</span>
+                </a>
+              </li>
+              <li class="list-group-item">
+                <a href="#">
+                  <span class="wizard-pf-substep-number">1B.</span>
+                  <span class="wizard-pf-substep-title">Settings</span>
+                </a>
+              </li>
+            </ul>
+            <ul class="list-group hidden">
+              <li class="list-group-item">
+                <a href="#">
+                  <span class="wizard-pf-substep-number">2A.</span>
+                  <span class="wizard-pf-substep-title">Details</span>
+                </a>
+              </li>
+              <li class="list-group-item">
+                <a href="#">
+                  <span class="wizard-pf-substep-number">2B.</span>
+                  <span class="wizard-pf-substep-title">Settings</span>
+                </a>
+              </li>
+            </ul>
+            <ul class="list-group hidden">
+              <li class="list-group-item">
+                <a>
+                  <span class="wizard-pf-substep-number">3A.</span>
+                  <span class="wizard-pf-substep-title">Summary</span>
+                </a>
+              </li>
+              <li class="list-group-item">
+                <a>
+                  <span class="wizard-pf-substep-number">3B.</span>
+                  <span class="wizard-pf-substep-title">Progress</span>
+                </a>
+              </li>
+            </ul>
+          </div> <!-- /.wizard-pf-sidebar -->
+          <div class="wizard-pf-main">
+            <div class="wizard-pf-loading blank-slate-pf">
+              <div class="spinner spinner-lg blank-slate-pf-icon"></div>
+              <h3 class="blank-slate-pf-main-action">Loading Wizard</h3>
+              <p class="blank-slate-pf-secondary-action">Lorem ipsum dolor sit amet, porta at suspendisse ac, ut wisi
+                vivamus, lorem sociosqu eget nunc amet. </p>
+            </div>
+            <div class="wizard-pf-contents hidden">
+              <form class="form-horizontal">
+                <!-- replacing id with data-id to pass build errors -->
+                <div class="form-group required">
+                  <label class="col-sm-2 control-label" for="textInput-markup" required>Name</label>
+                  <div class="col-sm-10">
+                    <input id="detailsName" type="text" data-id="textInput-markup" class="form-control">
+                  </div>
+                </div>
+                <div class="form-group">
+                  <label class="col-sm-2 control-label" for="descriptionInput-markup">Description (Optional)</label>
+                  <div class="col-sm-10">
+                    <textarea data-id="descriptionInput-markup" class="form-control" rows="2"></textarea>
+                  </div>
+                </div>
+              </form>
+            </div>
+            <div class="wizard-pf-contents hidden">
+              <form class="form-horizontal">
+                <div class="form-group required">
+                  <label class="col-sm-2 control-label" for="lorem">Lorem ipsum</label>
+                  <div class="col-sm-10">
+                    <input type="text" id="lorem" class="form-control">
+                  </div>
+                </div>
+                <div class="form-group">
+                  <label class="col-sm-2 control-label" for="dolor">Dolor (Optional)</label>
+                  <div class="col-sm-10">
+                    <textarea id="dolor" class="form-control" rows="2"></textarea>
+                  </div>
+                </div>
+              </form>
+            </div>
+            <div class="wizard-pf-contents hidden">
+              <form class="form-horizontal">
+                <div class="form-group required">
+                  <label class="col-sm-2 control-label" for="aliquam">Aliquam</label>
+                  <div class="col-sm-10">
+                    <input type="text" id="aliquam" class="form-control">
+                  </div>
+                </div>
+                <div class="form-group">
+                  <label class="col-sm-2 control-label" for="fermentum">Fermentum</label>
+                  <div class="col-sm-10">
+                    <textarea id="fermentum" class="form-control" rows="2"></textarea>
+                  </div>
+                </div>
+              </form>
+            </div>
+            <div class="wizard-pf-contents hidden">
+              <form class="form-horizontal">
+                <div class="form-group required">
+                  <label class="col-sm-2 control-label" for="consectetur">Consectetur</label>
+                  <div class="col-sm-10">
+                    <input type="text" id="consectetur" class="form-control">
+                  </div>
+                </div>
+                <div class="form-group">
+                  <label class="col-sm-2 control-label" for="adipiscing">Adipiscing</label>
+                  <div class="col-sm-10">
+                    <textarea id="adipiscing" class="form-control" rows="2"></textarea>
+                  </div>
+                </div>
+              </form>
+            </div>
+            <div class="wizard-pf-contents hidden">
+              <div class="wizard-pf-review-steps">
+                <ul class="list-group">
+                  <li class="list-group-item">
+                    <a onclick="$(this).toggleClass('collapsed'); $('#reviewStep1').toggleClass('collapse');">First Step</a>
+                    <div id="reviewStep1" class="wizard-pf-review-substeps">
+                      <ul class="list-group">
+                        <li class="list-group-item">
+                          <a onclick="$(this).toggleClass('collapsed'); $('#reviewStep1Substep1').toggleClass('collapse');">
+                            <span class="wizard-pf-substep-number">1A.</span>
+                            <span class="wizard-pf-substep-title">Details</span>
+                          </a>
+                          <div id="reviewStep1Substep1" class="wizard-pf-review-content">
+                            <form class="form">
+                              <div class="wizard-pf-review-item">
+                                <span class="wizard-pf-review-item-label">Name:</span>
+                                <span class="wizard-pf-review-item-value">First Last</span>
+                              </div>
+                              <div class="wizard-pf-review-item">
+                                <span class="wizard-pf-review-item-label">Description:</span>
+                                <span class="wizard-pf-review-item-value">This is the description</span>
+                              </div>
+                            </form>
+                          </div>
+                        </li>
+                        <li class="list-group-item">
+                          <a onclick="$(this).toggleClass('collapsed'); $('#reviewStep1Substep2').toggleClass('collapse');">
+                            <span class="wizard-pf-substep-number">1B.</span>
+                            <span class="wizard-pf-substep-title">Settings</span>
+                          </a>
+                          <div id="reviewStep1Substep2" class="wizard-pf-review-content">
+                            <form class="form">
+                              <div class="wizard-pf-review-item">
+                                <div class="wizard-pf-review-item-field">Setting A</div>
+                                <div class="wizard-pf-review-item-field">Setting B</div>
+                              </div>
+                            </form>
+                          </div>
+                        </li>
+                      </ul>
+                    </div>
+                  </li>
+                  <li class="list-group-item">
+                    <a onclick="$(this).toggleClass('collapsed'); $('#reviewStep2').toggleClass('collapse');">Second Step</a>
+                    <div id="reviewStep2" class="wizard-pf-review-substeps">
+                      <ul class="list-group">
+                        <li class="list-group-item">
+                          <a onclick="$(this).toggleClass('collapsed'); $('#reviewStep2Substep1').toggleClass('collapse');">
+                            <span class="wizard-pf-substep-number">2A.</span>
+                            <span class="wizard-pf-substep-title">Details</span>
+                          </a>
+                          <div id="reviewStep2Substep1" class="wizard-pf-review-content">
+                            <form class="form">
+                              <div class="wizard-pf-review-item">
+                                <span class="wizard-pf-review-item-label">Name:</span>
+                                <span class="wizard-pf-review-item-value">First Last</span>
+                              </div>
+                              <div class="wizard-pf-review-item">
+                                <span class="wizard-pf-review-item-label">Description:</span>
+                                <span class="wizard-pf-review-item-value">This is the description</span>
+                              </div>
+                            </form>
+                          </div>
+                        </li>
+                        <li class="list-group-item">
+                          <a onclick="$(this).toggleClass('collapsed'); $('#reviewStep2Substep2').toggleClass('collapse');">
+                            <span class="wizard-pf-substep-number">2B.</span>
+                            <span class="wizard-pf-substep-title">Settings</span>
+                          </a>
+                          <div id="reviewStep2Substep2" class="wizard-pf-review-content">
+                            <form class="form">
+                              <div class="wizard-pf-review-item">
+                                <div class="wizard-pf-review-item-field">Setting A</div>
+                                <div class="wizard-pf-review-item-field">Setting B</div>
+                              </div>
+                            </form>
+                          </div>
+                        </li>
+                      </ul>
+                    </div>
+                  </li>
+                </ul>
+              </div>
+            </div>
+            <div class="wizard-pf-contents hidden">
+              <div class="wizard-pf-process blank-slate-pf">
+                <div class="spinner spinner-lg blank-slate-pf-icon"></div>
+                <h3 class="blank-slate-pf-main-action">Deployment in progress</h3>
+                <p class="blank-slate-pf-secondary-action">Lorem ipsum dolor sit amet, porta at suspendisse ac, ut wisi
+                  vivamus, lorem sociosqu eget nunc amet. </p>
+              </div>
+              <div class="wizard-pf-complete blank-slate-pf hidden">
+                <div class="wizard-pf-success-icon"><span class="glyphicon glyphicon-ok-circle"></span></div>
+                <h3 class="blank-slate-pf-main-action">Deployment was successful</h3>
+                <p class="blank-slate-pf-secondary-action">Lorem ipsum dolor sit amet, porta at suspendisse ac, ut wisi
+                  vivamus, lorem sociosqu eget nunc amet. </p>
+                <button type="button" class="btn btn-lg btn-primary">
+                  View Deployment
+                </button>
+
+              </div>
+            </div>
+          </div><!-- /.wizard-pf-main -->
+        </div>
+
+      </div><!-- /.wizard-pf-body -->
+
+      <div class="modal-footer wizard-pf-footer">
+        <button type="button" class="btn btn-default btn-cancel wizard-pf-cancel wizard-pf-dismiss">Cancel</button>
+        <button type="button" class="btn btn-default wizard-pf-back disabled">
+          <span class="i fa fa-angle-left"></span>
+          Back
+        </button>
+        <button type="button" class="btn btn-primary wizard-pf-next disabled">
+          Next
+          <span class="i fa fa-angle-right"></span>
+        </button>
+        <button type="button" class="btn btn-primary hidden wizard-pf-finish">
+          Deploy
+          <span class="i fa fa-angle-right"></span>
+        </button>
+        <button type="button" class="btn btn-primary hidden wizard-pf-close wizard-pf-dismiss">Close</button>
+
+      </div><!-- /.wizard-pf-footer -->
+
+    </div><!-- /.modal-content -->
+  </div><!-- /.modal-dialog -->
+</div><!-- /.modal -->
+
+<script>
+
+  $(document).ready(function() {
+    //initialize wizard
+    var completeWizard = new wizard(".btn.wizard-pf-complete");
+  });
+
+  var wizard = function(id) {
+    var self = this, modal, tabs, tabCount, tabLast, currentGroup, currentTab, contents;
+    self.id = id;
+
+    $(self.id).click(function() {
+        self.init(this)
+    });
+
+    this.init = function(button){
+      // get id of open modal
+      self.modal = $(button).data("target");
+
+      self.resetToInitialState();
+
+      // open modal
+      $(self.modal).modal('show');
+
+      // assign data attribute to all tabs
+      $(self.modal + " .wizard-pf-sidebar .list-group-item").each(function() {
+          // set the first digit (i.e. n.0) equal to the index of the parent tab group
+          // set the second digit (i.e. 0.n) equal to the index of the tab within the tab group
+          $(this).attr("data-tab", ($(this).parent().index() +1 + ($(this).index()/10 + .1)));
+      });
+      // assign data attribute to all tabgroups
+      $(self.modal + " .wizard-pf-sidebar .list-group").each(function() {
+          // set the value equal to the index of the tab group
+          $(this).attr("data-tabgroup", ($(this).index() +1));
+      });
+
+      // assign data attribute to all step indicator steps
+      $(self.modal + " .wizard-pf-steps-indicator  .wizard-pf-step").each(function() {
+        // set the value equal to the index of the tab group
+        $(this).attr("data-tabgroup", ($(this).index() +1));
+      });
+      // assign data attribute to all step indicator substeps
+      $(self.modal + " .wizard-pf-steps-indicator .wizard-pf-step-title-substep").each(function() {
+        // set the first digit (i.e. n.0) equal to the index of the parent tab group
+        // set the second digit (i.e. 0.n) equal to the index of the tab within the tab group
+        $(this).attr("data-tab", ($(this).parent().parent().index() + 1 + (($(this).index() - 2)/10 + .1)));
+      });
+
+      // assign data attribute to all alt step indicator steps
+      $(self.modal + " .wizard-pf-steps-alt .wizard-pf-step-alt").each(function() {
+        // set the value equal to the index of the tab group
+        var tabGroup = $(this).index() + 1;
+        $(this).attr("data-tabgroup", tabGroup);
+        $(this).find('.wizard-pf-step-alt-substep').each(function() {
+          $(this).attr("data-tab", (tabGroup + (($(this).index() + 1)/10)));
+        });
+      });
+
+      // assign active and hidden states to teh steps alt classes
+      $(self.modal + " .wizard-pf-steps-alt-indicator").removeClass('active');
+      $(self.modal + " .wizard-pf-steps-alt").addClass('hidden');
+      $(self.modal + " .wizard-pf-steps-alt-indicator").on('click', function() {
+        $(self.modal + ' .wizard-pf-steps-alt-indicator').toggleClass('active');
+        $(self.modal + ' .wizard-pf-steps-alt').toggleClass('hidden');
+      });
+      $(self.modal + " .wizard-pf-step-alt > ul").addClass("hidden");
+
+      // create array of all tabs, using the data attribute, and determine the last tab
+      self.tabs = $(self.modal + " .wizard-pf-sidebar .list-group-item" ).map(function()
+        {
+          return $(this).data("tab");
+        }
+      );
+      self.tabCount = self.tabs.length;
+      self.tabSummary = self.tabs[self.tabCount - 2]; // second to last tab displays summary
+      self.tabLast = self.tabs[self.tabCount - 1]; // last tab displays progress
+      // set first tab group and tab as current tab
+      // if someone wants to target a specific tab, that could be handled here
+      self.currentGroup = 1;
+      self.currentTab = 1.1;
+
+      setTimeout(function() {
+        // hide loading message
+        $(self.modal + " .wizard-pf-loading").addClass("hidden");
+        // show tabs and tab groups
+        $(self.modal + " .wizard-pf-steps").removeClass("hidden");
+        $(self.modal + " .wizard-pf-sidebar").removeClass("hidden");
+        // remove active class from all tabs
+        $(self.modal + " .wizard-pf-sidebar .list-group-item.active").removeClass("active");
+
+        self.updateToCurrentPage();
+      }, 3000);
+
+      //initialize click listeners
+      self.tabGroupSelect();
+      self.tabSelect();
+      self.altStepClick();
+      self.altSubStepClick();
+      self.backBtnClicked();
+      self.nextBtnClicked();
+      self.finishBtnClick();
+      self.cancelBtnClick();
+
+      // Listen for required value change
+      self.detailsNameChange();
+    };
+
+    // update which tab group is active
+    this.updateTabGroup = function() {
+      $(self.modal + " .wizard-pf-step.active").removeClass("active");
+      $(self.modal + " .wizard-pf-step[data-tabgroup='" + self.currentGroup + "']").addClass("active");
+      $(self.modal + " .wizard-pf-sidebar .list-group").addClass("hidden");
+      $(self.modal + " .list-group[data-tabgroup='" + self.currentGroup + "']").removeClass("hidden");
+      $(self.modal + " .wizard-pf-step-alt[data-tabgroup='" + self.currentGroup + "']").addClass("viewed");
+      $(self.modal + " .wizard-pf-step-alt > ul").addClass("hidden");
+      $(self.modal + " .wizard-pf-step-alt[data-tabgroup='" + self.currentGroup + "'] > ul").removeClass("hidden");
+    };
+
+    // update which tab is active
+    this.updateActiveTab = function() {
+      $(self.modal + " .list-group-item.active").removeClass("active");
+      $(self.modal + " .list-group-item[data-tab='" + self.currentTab + "']").addClass("active");
+
+      // Update steps indicator to handle mobile mode
+      $(self.modal + " .wizard-pf-steps-indicator .wizard-pf-step-title-substep").removeClass("active");
+      $(self.modal + " .wizard-pf-steps-indicator .wizard-pf-step-title-substep[data-tab='" + self.currentTab + "']").addClass("active");
+
+      // Update steps alt indicator to handle mobile mode
+      $(self.modal + " .wizard-pf-step-alt .wizard-pf-step-alt-substep").removeClass("active");
+      $(self.modal + " .wizard-pf-step-alt .wizard-pf-step-alt-substep[data-tab='" + self.currentTab + "']").addClass("active");
+
+      self.updateVisibleContents();
+    };
+
+    // update which contents are visible
+    this.updateVisibleContents = function() {
+      var tabIndex = ($.inArray(self.currentTab, self.tabs));
+      // displaying contents associated with currentTab
+      $(self.modal + " .wizard-pf-contents").addClass("hidden");
+      $(self.modal + " .wizard-pf-contents:eq(" + tabIndex + ")").removeClass("hidden");
+      // setting focus to first form field in active contents
+      setTimeout (function() {
+        $(".wizard-pf-contents:not(.hidden) form input, .wizard-pf-contents:not(.hidden) form textarea, .wizard-pf-contents:not(.hidden) form select").first().focus(); // this does not account for disabled or read-only inputs
+      }, 100);
+    };
+
+    // update display state of Back button
+    this.updateBackBtnDisplay = function() {
+      if (self.currentTab == self.tabs[0]) {
+        $(self.modal + " .wizard-pf-back").addClass("disabled");
+      }
+    };
+
+    // update display state of next/finish button
+    this.updateNextBtnDisplay = function() {
+      if (self.currentTab == self.tabSummary) {
+        $(self.modal + " .wizard-pf-next").addClass("hidden");
+        $(self.modal + " .wizard-pf-finish").removeClass("hidden");
+      } else {
+        $(self.modal + " .wizard-pf-finish").addClass("hidden");
+        $(self.modal + " .wizard-pf-next").removeClass("hidden");
+      }
+    };
+
+    // update display state of buttons in the footer
+    this.updateWizardFooterDisplay = function() {
+      self.updateBackBtnDisplay();
+      self.updateNextBtnDisplay();
+    };
+
+
+    this.updateToCurrentPage = function() {
+      self.updateTabGroup();
+      self.updateActiveTab();
+
+      self.updateVisibleContents();
+
+      if (self.currentTab === self.tabLast) {
+        $(self.modal + " .wizard-pf-next").addClass("hidden");
+        $(self.modal + " .wizard-pf-finish").removeClass("hidden");
+        self.finish();
+      } else {
+        // show/hide/disable/enable buttons if needed
+        self.updateWizardFooterDisplay();
+      }
+    };
+
+    // when the user clicks a step, then the tab group for that step is displayed
+    this.tabGroupSelect = function() {
+      $(self.modal + " .wizard-pf-step>a").click(function() {
+        self.currentGroup = $(this).parent().data("tabgroup");
+        // update value for currentTab -- if a tab is already marked as active
+        // for the new tab group, use that, otherwise set it to the first tab
+        // in the tab group
+        self.currentTab = $(self.modal + " .list-group[data-tabgroup='" + self.currentGroup + "'] .list-group-item.active").data("tab");
+        if (self.currentTab === undefined) {
+          self.currentTab = self.currentGroup + 0.1;
+        }
+
+        self.updateToCurrentPage();
+      });
+    };
+
+    // when the user clicks a tab, then the tab contents are displayed
+    this.tabSelect = function() {
+      $(self.modal + " .wizard-pf-sidebar .list-group-item>a").click(function() {
+        // update value of currentTab to new active tab
+        self.currentTab = $(this).parent().data("tab");
+        self.updateToCurrentPage();
+      });
+    };
+
+    this.altStepClick = function() {
+      $(self.modal + " .wizard-pf-step-alt").each(function() {
+        var $this = $(this);
+        $this.find('> a').on('click', function() {
+          var subStepList = $this.find('> ul');
+          if (subStepList && (subStepList.length > 0)) {
+            $this.find('> ul').toggleClass('hidden');
+          } else {
+            self.currentGroup = $this.data("tabgroup");
+          }
+        });
+      });
+    };
+
+    this.altSubStepClick = function() {
+      $(self.modal + " .wizard-pf-step-alt .wizard-pf-step-alt-substep > a").on('click', function() {
+        // update value of currentTab to new active tab
+        self.currentTab = $(this).parent().data("tab");
+        self.currentGroup = $(this).parent().parent().parent().data("tabgroup");
+
+        self.updateToCurrentPage();
+      });
+    };
+    // Back button clicked
+    this.backBtnClicked = function() {
+      $(self.modal + " .wizard-pf-back").click(function() {
+        // if not the first page
+        if (self.currentTab != self.tabs[0]) {
+          // go back a page (i.e. -1)
+          self.wizardPaging(-1);
+          // show/hide/disable/enable buttons if needed
+          self.updateWizardFooterDisplay();
+        }
+      });
+    };
+
+    // Next button clicked
+    this.nextBtnClicked = function() {
+      $(self.modal + " .wizard-pf-next").click(function() {
+        // go forward a page (i.e. +1)
+        self.wizardPaging(1);
+        // show/hide/disable/enable buttons if needed
+        self.updateWizardFooterDisplay();
+      });
+    };
+
+    // Finish button clicked
+    // Deploy/Finish button would only display during the second to last step.
+    this.finishBtnClick = function() {
+      $(self.modal + " .wizard-pf-finish").click(function() {
+        self.wizardPaging(1);
+        self.finish();
+      });
+    };
+
+    this.detailsNameChange = function() {
+      $(self.modal + " #detailsName").on('change', function() {
+        if ($(self.modal + " #detailsName").val()) {
+          $(self.modal + " .wizard-pf-step-alt-substep").removeClass('disabled');
+          $(self.modal + " .wizard-pf-next").removeClass("disabled");
+        } else {
+          $(self.modal + " .wizard-pf-step-alt-substep").addClass('disabled');
+          $(self.modal + " .wizard-pf-step-alt-substep.active").removeClass('disabled');
+          $(self.modal + " .wizard-pf-next").addClass("disabled");
+        }
+      });
+    };
+
+    this.resetToInitialState = function() {
+      // drop click event listeners
+      $(self.modal + " .wizard-pf-step>a").off("click");
+      $(self.modal + " .wizard-pf-sidebar .list-group-item>a").off("click");
+      $(self.modal + " .wizard-pf-steps-alt-indicator").off('click');
+      $(self.modal + " .wizard-pf-step-alt > a").off('click');
+      $(self.modal + " .wizard-pf-back").off("click");
+      $(self.modal + " .wizard-pf-next").off("click");
+      $(self.modal + " .wizard-pf-finish").off("click");
+      $(self.modal + " .wizard-pf-dismiss").off("click");
+
+      $(self.modal + " #detailsName").off('change');
+
+      // reset final step
+      $(self.modal + " .wizard-pf-process").removeClass("hidden");
+      $(self.modal + " .wizard-pf-complete").addClass("hidden");
+      // reset loading message
+      $(self.modal + " .wizard-pf-contents").addClass("hidden");
+      $(self.modal + " .wizard-pf-loading").removeClass("hidden");
+      // remove tabs and tab groups
+      $(self.modal + " .wizard-pf-steps").addClass("hidden");
+      $(self.modal + " .wizard-pf-sidebar").addClass("hidden");
+      // reset buttons in final step
+      $(self.modal + " .wizard-pf-close").addClass("hidden");
+      $(self.modal + " .wizard-pf-cancel").removeClass("hidden");
+    };
+
+    // Cancel/Close button clicked
+    this.cancelBtnClick = function() {
+      $(self.modal + " .wizard-pf-dismiss").click(function() {
+        // close the modal
+        $(self.modal).modal('hide');
+        self.resetToInitialState();
+      });
+    };
+
+    // when the user clicks Next/Back, then the next/previous tab and contents display
+    this.wizardPaging = function(direction) {
+      // get n.n value of next tab using the index of next tab in tabs array
+      var tabIndex = ($.inArray(self.currentTab, self.tabs)) + direction;
+      var newTab = self.tabs[tabIndex];
+      // add/remove active class from current tab group
+      // included math.round to trim off extra .000000000002 that was getting added
+      if (newTab != Math.round(10*(direction*.1 + self.currentTab))/10) {
+        // this statement is true when the next tab is in the next tab group
+        // if next tab is in next tab group (e.g. next tab data-tab value is
+        // not equal to current tab +.1) then apply active class to next
+        // tab group and step, and update the value for var currentGroup +/-1
+        self.currentGroup = self.currentGroup + direction;
+        self.updateTabGroup();
+      }
+      self.currentTab = newTab;
+      // remove active class from active tab in current tab group
+      $(self.modal + " .list-group[data-tabgroup='" + self.currentGroup + "'] .list-group-item.active").removeClass("active");
+      // apply active class to new current tab and associated contents
+      self.updateActiveTab();
+    };
+
+    // This code keeps the same contents div active, but switches out what
+    // contents display in that div (i.e. replaces process message with
+    // success message).
+    this.finish = function() {
+      $(self.modal + " .wizard-pf-back").addClass("disabled"); // if Back remains enabled during this step, then the Close button needs to be removed when the user clicks Back
+      $(self.modal + " .wizard-pf-finish").addClass("disabled");
+      // code for kicking off process goes here
+      // the next code is just to simulate the expected experience, in that
+      // when the process is complete, the success message etc. would display
+      setTimeout (function() {
+        $(self.modal + " .wizard-pf-cancel").addClass("hidden");
+        $(self.modal + " .wizard-pf-finish").addClass("hidden");
+        $(self.modal + " .wizard-pf-close").removeClass("hidden");
+        $(self.modal + " .wizard-pf-process").addClass("hidden");
+        $(self.modal + " .wizard-pf-complete").removeClass("hidden");
+      }, 3000);
+    };
+
+  };
+
+</script>
+
+
+<h2>Initializing</h2>
+<button class="btn btn-default" data-toggle="modal" data-target="#initializing">Launch wizard showing initialization
+  state
+</button>
+<div class="modal" id="initializing" tabindex="-1" role="dialog">
+  <div class="modal-dialog modal-lg wizard-pf">
+    <div class="modal-content">
+      <div class="modal-header">
+        <button type="button" class="close" data-dismiss="modal" aria-hidden="true" aria-label="Close">
+          <span class="pficon pficon-close"></span>
+        </button>
+        <h4 class="modal-title">Wizard Title</h4>
+      </div>
+      <div class="modal-body wizard-pf-body clearfix">
+        <div class="wizard-pf-steps hidden">
+          <ul class="wizard-pf-steps-indicator">
+            <li>
+              <a><span class="wizard-pf-step-number">1</span><span class="wizard-pf-step-title">First Step</span></a>
+            </li>
+            <li>
+              <a><span class="wizard-pf-step-number">2</span><span class="wizard-pf-step-title">Second Step</span></a>
+            </li>
+            <li>
+              <a><span class="wizard-pf-step-number">3</span><span class="wizard-pf-step-title">Review</span></a>
+            </li>
+          </ul>
+        </div>
+
+        <div class="wizard-pf-sidebar hidden">
+          <ul class="list-group">
+            <li class="list-group-item active">
+              <a>
+                <span class="wizard-pf-substep-number">1A.</span>
+                <span class="wizard-pf-substep-title">First Step</span>
+              </a>
+            </li>
+            <li class="list-group-item">
+              <a>
+                <span class="wizard-pf-substep-number">1B.</span>
+                <span class="wizard-pf-substep-title">Masters &amp; Nodes</span>
+              </a>
+            </li>
+            <li class="list-group-item">
+              <a>
+                <span class="wizard-pf-substep-number">1C.</span>
+                <span class="wizard-pf-substep-title">CDN Channel</span>
+              </a>
+            </li>
+          </ul>
+        </div><!-- /.wizard-pf-sidebar -->
+
+        <div class="wizard-pf-main" style="margin-left: 0px">
+          <div class="blank-slate-pf">
+            <div class="spinner spinner-lg blank-slate-pf-icon"></div>
+            <h3 class="blank-slate-pf-main-action">Loading Wizard</h3>
+            <p class="blank-slate-pf-secondary-action">Lorem ipsum dolor sit amet, porta at suspendisse ac, ut wisi
+              vivamus, lorem sociosqu eget nunc amet. </p>
+          </div>
+
+        </div>
+
+      </div><!-- /.wizard-pf-body -->
+
+      <!-- TODO: disable buttons -->
+      <div class="modal-footer wizard-pf-footer">
+        <button type="button" class="btn btn-default btn-cancel" data-dismiss="modal">Cancel</button>
+        <button type="button" class="btn btn-default disabled" data-dismiss="modal">
+          <span class="i fa fa-angle-left"></span>
+          Back
+        </button>
+        <button type="button" class="btn btn-primary disabled" data-dismiss="modal">
+          Next
+          <span class="i fa fa-angle-right"></span>
+        </button>
+      </div><!-- /.wizard-pf-footer -->
+
+    </div><!-- /.modal-content -->
+  </div><!-- /.modal-dialog -->
+</div><!-- /.modal -->
+
+<h2>Last Step</h2>
+<button id="doneButton" class="btn btn-default" data-toggle="modal" data-target="#done">Launch wizard showing finalizing
+state
+</button>
+<div class="modal" id="done" tabindex="-1" role="dialog">
+  <div class="modal-dialog modal-lg wizard-pf">
+    <div class="modal-content">
+      <div class="modal-header">
+        <button type="button" class="close" data-dismiss="modal" aria-hidden="true" aria-label="Close">
+          <span class="pficon pficon-close"></span>
+        </button>
+        <h4 class="modal-title">Wizard Title</h4>
+      </div>
+      <div class="modal-body wizard-pf-body clearfix">
+        <div class="wizard-pf-steps">
+          <ul class="wizard-pf-steps-indicator wizard-pf-steps-alt-indicator active">
+
+            <li class="wizard-pf-step" data-tabgroup="1">
+              <a><span class="wizard-pf-step-number">1</span><span class="wizard-pf-step-title">First Step</span>
+                <span class="wizard-pf-step-title-substep active">details</span>
+                <span class="wizard-pf-step-title-substep">Settings</span>
+              </a>
+            </li>
+
+            <li class="wizard-pf-step viewed" data-tabgroup="2">
+              <a>
+                <span class="wizard-pf-step-number">2</span>
+                <span class="wizard-pf-step-title">Second Step</span>
+                <span class="wizard-pf-step-title-substep">details</span>
+                <span class="wizard-pf-step-title-substep">settings</span>
+              </a>
+            </li>
+
+            <li class="wizard-pf-step active" data-tabgroup="3">
+              <a>
+                <span class="wizard-pf-step-number">3</span>
+                <span class="wizard-pf-step-title">Review</span>
+                <span class="wizard-pf-step-title-substep">summary</span>
+                <span class="wizard-pf-step-title-substep active">progress</span>
+              </a>
+            </li>
+          </ul>
+
+          <ul class="wizard-pf-steps-alt">
+            <li class="wizard-pf-step-alt viewed">
+              <a href="javascript:void(0);" class="disabled">
+                <span class="wizard-pf-step-alt-number">1</span>
+                <span class="wizard-pf-step-alt-title">First Step</span>
+              </a>
+              <ul class="hidden">
+                <li class="wizard-pf-step-alt-substep"><a href="">1A. Details</a></li>
+                <li class="wizard-pf-step-alt-substep"><a class="disabled" href="#">1B. Settings</a></li>
+              </ul>
+            </li>
+
+            <li class="wizard-pf-step-alt viewed disabled">
+              <a href="javascript:void(0);" class="disabled">
+                <span class="wizard-pf-step-alt-number">2</span>
+                <span class="wizard-pf-step-alt-title">Second Step</span>
+              </a>
+              <ul class="hidden">
+                <li class="wizard-pf-step-alt-substep"><a class="disabled" href="#">2A. Details</a></li>
+                <li class="wizard-pf-step-alt-substep"><a class="disabled" href="#">2B. Settings</a></li>
+              </ul>
+            </li>
+
+            <li class="wizard-pf-step-alt active">
+              <a href="javascript:void(0);">
+                <span class="wizard-pf-step-alt-number">3</span>
+                <span class="wizard-pf-step-alt-title">Review</span>
+              </a>
+              <ul>
+                <li class="wizard-pf-step-alt-substep"><a class="disabled" href="#">3A. Summary</a></li>
+                <li class="wizard-pf-step-alt-substep active"><a class="disabled" href="#">3B. Progress</a></li>
+              </ul>
+            </li>
+          </ul>
+        </div>
+        <div class="wizard-pf-row">
+          <div class="wizard-pf-sidebar">
+            <ul class="list-group">
+              <li class="list-group-item">
+                <a>
+                  <span class="wizard-pf-substep-number">3A.</span>
+                  <span class="wizard-pf-substep-title">Summary</span>
+                </a>
+              </li>
+              <li class="list-group-item active">
+                <a>
+                  <span class="wizard-pf-substep-number">3B.</span>
+                  <span class="wizard-pf-substep-title">Progress</span>
+                </a>
+              </li>
+            </ul>
+          </div><!-- /.wizard-pf-sidebar -->
+
+          <div class="wizard-pf-main">
+            <div class="blank-slate-pf">
+              <div class="spinner spinner-lg blank-slate-pf-icon"></div>
+              <h3 class="blank-slate-pf-main-action">Deployment in progress</h3>
+              <p class="blank-slate-pf-secondary-action">Lorem ipsum dolor sit amet, porta at suspendisse ac, ut wisi
+                vivamus, lorem sociosqu eget nunc amet. </p>
+            </div>
+
+          </div>
+        </div>
+      </div><!-- /.wizard-pf-body -->
+
+      <!-- TODO: disable buttons -->
+      <div class="modal-footer wizard-pf-footer">
+        <button type="button" class="btn btn-default btn-cancel" data-dismiss="modal">Cancel</button>
+        <button type="button" class="btn btn-default disabled" data-dismiss="modal">
+          <span class="i fa fa-angle-left"></span>
+          Back
+        </button>
+        <button type="button" class="btn btn-primary disabled" data-dismiss="modal">
+          Deploy
+          <span class="i fa fa-angle-right"></span>
+        </button>
+      </div><!-- /.wizard-pf-footer -->
+
+    </div><!-- /.modal-content -->
+  </div><!-- /.modal-dialog -->
+</div><!-- /.modal -->
+
+<script>
+
+  $(document).ready(function() {
+    var beenClicked = false;
+    $('#doneButton').click(function() {
+      if (!beenClicked) {
+        beenClicked = true;
+        $('#done .wizard-pf-steps-alt-indicator').on('click', function() {
+          $('#done .wizard-pf-steps-alt-indicator').toggleClass('active');
+          $('#done .wizard-pf-steps-alt').toggleClass('hidden');
+        });
+      }
+    });
+  });
+</script>
+
+    </div><!-- /container -->
+  </body>
+</html>
diff --git a/themes/src/main/package.json b/themes/src/main/package.json
index 13012a9..a8d8be6 100644
--- a/themes/src/main/package.json
+++ b/themes/src/main/package.json
@@ -20,7 +20,8 @@
     "font-awesome": "4.7.0",
     "jquery": "3.2.1",
     "ng-file-upload": "12.2.13",
-    "patternfly": "3.38.1",
+    "patternfly": "3.41.6",
+    "rcue": "3.41.6",
     "select2": "3.5.1",
     "text-security": "1.0.1"
   }
diff --git a/themes/src/main/package-lock.json b/themes/src/main/package-lock.json
index 43efe86..43b7794 100644
--- a/themes/src/main/package-lock.json
+++ b/themes/src/main/package-lock.json
@@ -108,9 +108,9 @@
       "integrity": "sha1-AYAPOHLlJvlTEPhHfpnk8S0NjRQ="
     },
     "patternfly": {
-      "version": "3.38.1",
-      "resolved": "https://registry.npmjs.org/patternfly/-/patternfly-3.38.1.tgz",
-      "integrity": "sha1-/9wvykGxjJvkgRg7c5+ZoSPN4xQ=",
+      "version": "3.41.6",
+      "resolved": "https://registry.npmjs.org/patternfly/-/patternfly-3.41.6.tgz",
+      "integrity": "sha1-4GDPda0Ri8UYWaBdjnMGHIgER+8=",
       "requires": {
         "bootstrap": "3.3.7",
         "bootstrap-datepicker": "1.7.1",
@@ -330,6 +330,439 @@
         }
       }
     },
+    "rcue": {
+      "version": "3.41.6",
+      "resolved": "https://registry.npmjs.org/rcue/-/rcue-3.41.6.tgz",
+      "integrity": "sha1-8t224IWD1e1jlklbX5AkhHWmwfc=",
+      "requires": {
+        "bootstrap": "3.3.7",
+        "bootstrap-datepicker": "1.7.1",
+        "bootstrap-select": "1.12.4",
+        "bootstrap-slider": "9.10.0",
+        "bootstrap-switch": "3.3.4",
+        "bootstrap-touchspin": "3.1.1",
+        "c3": "0.4.21",
+        "d3": "3.5.17",
+        "datatables.net": "1.10.16",
+        "datatables.net-colreorder": "1.4.1",
+        "datatables.net-colreorder-bs": "1.3.3",
+        "datatables.net-select": "1.2.5",
+        "drmonty-datatables-colvis": "1.1.2",
+        "eonasdan-bootstrap-datetimepicker": "4.17.47",
+        "font-awesome": "4.7.0",
+        "google-code-prettify": "1.0.5",
+        "jquery": "3.2.1",
+        "jquery-match-height": "0.7.2",
+        "moment": "2.21.0",
+        "moment-timezone": "0.4.1",
+        "patternfly": "3.41.6",
+        "patternfly-bootstrap-combobox": "1.1.7",
+        "patternfly-bootstrap-treeview": "2.1.5"
+      },
+      "dependencies": {
+        "bootstrap": {
+          "version": "3.3.7",
+          "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.3.7.tgz",
+          "integrity": "sha1-WjiTlFSfIzMIdaOxUGVldPip63E="
+        },
+        "bootstrap-datepicker": {
+          "version": "1.7.1",
+          "resolved": "https://registry.npmjs.org/bootstrap-datepicker/-/bootstrap-datepicker-1.7.1.tgz",
+          "integrity": "sha1-Tuf680iI2+x4NPv52+fEJ34B3a8=",
+          "optional": true,
+          "requires": {
+            "jquery": "3.2.1"
+          }
+        },
+        "bootstrap-select": {
+          "version": "1.12.4",
+          "resolved": "https://registry.npmjs.org/bootstrap-select/-/bootstrap-select-1.12.4.tgz",
+          "integrity": "sha1-fxXTwM6XiGjZwJxw+WYk9V+gLuE=",
+          "optional": true,
+          "requires": {
+            "jquery": "3.2.1"
+          }
+        },
+        "bootstrap-slider": {
+          "version": "9.10.0",
+          "resolved": "https://registry.npmjs.org/bootstrap-slider/-/bootstrap-slider-9.10.0.tgz",
+          "integrity": "sha1-EQPWvADPv6jPyaJZmrUYxVZD2j8=",
+          "optional": true
+        },
+        "bootstrap-switch": {
+          "version": "3.3.4",
+          "resolved": "https://registry.npmjs.org/bootstrap-switch/-/bootstrap-switch-3.3.4.tgz",
+          "integrity": "sha1-cOCusqh3wNx2aZHeEI4hcPwpov8=",
+          "optional": true
+        },
+        "bootstrap-touchspin": {
+          "version": "3.1.1",
+          "resolved": "https://registry.npmjs.org/bootstrap-touchspin/-/bootstrap-touchspin-3.1.1.tgz",
+          "integrity": "sha1-l3nerHKq9Xfl52K4USx0fIcdlZc=",
+          "optional": true
+        },
+        "c3": {
+          "version": "0.4.21",
+          "resolved": "https://registry.npmjs.org/c3/-/c3-0.4.21.tgz",
+          "integrity": "sha512-UZt0RWxVDJJrAGBojz2OJ9v88uDIP+WMVrydXCSvYM+bX2CyL+tTEA7gD5htzZeVMLcBYc7DZpDnskdH2fEOdw==",
+          "optional": true,
+          "requires": {
+            "d3": "3.5.17"
+          }
+        },
+        "d3": {
+          "version": "3.5.17",
+          "resolved": "https://registry.npmjs.org/d3/-/d3-3.5.17.tgz",
+          "integrity": "sha1-vEZ0gAQ3iyGjYMn8fPUjF5B2L7g=",
+          "optional": true
+        },
+        "datatables.net": {
+          "version": "1.10.16",
+          "resolved": "https://registry.npmjs.org/datatables.net/-/datatables.net-1.10.16.tgz",
+          "integrity": "sha1-SwUtEIKCQmG2ju2dInQbcR09JGk=",
+          "requires": {
+            "jquery": "3.2.1"
+          }
+        },
+        "datatables.net-bs": {
+          "version": "1.10.16",
+          "resolved": "https://registry.npmjs.org/datatables.net-bs/-/datatables.net-bs-1.10.16.tgz",
+          "integrity": "sha1-sIVPWzdPcTrj20FWx86op2DD3nY=",
+          "optional": true,
+          "requires": {
+            "datatables.net": "1.10.16",
+            "jquery": "3.2.1"
+          }
+        },
+        "datatables.net-colreorder": {
+          "version": "1.4.1",
+          "resolved": "https://registry.npmjs.org/datatables.net-colreorder/-/datatables.net-colreorder-1.4.1.tgz",
+          "integrity": "sha1-OJ5LGidOIDl5o3GNhsWITQoBZrY=",
+          "optional": true,
+          "requires": {
+            "datatables.net": "1.10.16",
+            "jquery": "3.2.1"
+          }
+        },
+        "datatables.net-colreorder-bs": {
+          "version": "1.3.3",
+          "resolved": "https://registry.npmjs.org/datatables.net-colreorder-bs/-/datatables.net-colreorder-bs-1.3.3.tgz",
+          "integrity": "sha1-Op3LCN7r612FQHlZHgbkk615OlM=",
+          "optional": true,
+          "requires": {
+            "datatables.net-bs": "1.10.16",
+            "datatables.net-colreorder": "1.4.1",
+            "jquery": "3.2.1"
+          }
+        },
+        "datatables.net-select": {
+          "version": "1.2.5",
+          "resolved": "https://registry.npmjs.org/datatables.net-select/-/datatables.net-select-1.2.5.tgz",
+          "integrity": "sha1-T3ZGabRk1VdqWcV2wSUKXQaaouk=",
+          "optional": true,
+          "requires": {
+            "datatables.net": "1.10.16",
+            "jquery": "3.2.1"
+          }
+        },
+        "drmonty-datatables-colvis": {
+          "version": "1.1.2",
+          "resolved": "https://registry.npmjs.org/drmonty-datatables-colvis/-/drmonty-datatables-colvis-1.1.2.tgz",
+          "integrity": "sha1-lque37SGQ8wu3aP4e4iTPN7oEnw=",
+          "optional": true,
+          "requires": {
+            "jquery": "3.2.1"
+          }
+        },
+        "eonasdan-bootstrap-datetimepicker": {
+          "version": "4.17.47",
+          "resolved": "https://registry.npmjs.org/eonasdan-bootstrap-datetimepicker/-/eonasdan-bootstrap-datetimepicker-4.17.47.tgz",
+          "integrity": "sha1-ekmXAEQGUnbnll79Fvgic1IZ5zU=",
+          "optional": true,
+          "requires": {
+            "bootstrap": "3.3.7",
+            "jquery": "3.2.1",
+            "moment": "2.21.0",
+            "moment-timezone": "0.4.1"
+          }
+        },
+        "font-awesome": {
+          "version": "4.7.0",
+          "resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz",
+          "integrity": "sha1-j6jPBBGhoxr9B7BtKQK7n8gVoTM="
+        },
+        "google-code-prettify": {
+          "version": "1.0.5",
+          "resolved": "https://registry.npmjs.org/google-code-prettify/-/google-code-prettify-1.0.5.tgz",
+          "integrity": "sha1-n0d/Ik2/piNy5e+AOn4VdBBAAIQ=",
+          "optional": true
+        },
+        "jquery": {
+          "version": "3.2.1",
+          "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.2.1.tgz",
+          "integrity": "sha1-XE2d5lKvbNCncBVKYxu6ErAVx4c="
+        },
+        "jquery-match-height": {
+          "version": "0.7.2",
+          "resolved": "https://registry.npmjs.org/jquery-match-height/-/jquery-match-height-0.7.2.tgz",
+          "integrity": "sha1-+NnzulMU2qsQnPB0CGdL4gS+Xw4=",
+          "optional": true
+        },
+        "moment": {
+          "version": "2.21.0",
+          "resolved": "https://registry.npmjs.org/moment/-/moment-2.21.0.tgz",
+          "integrity": "sha512-TCZ36BjURTeFTM/CwRcViQlfkMvL1/vFISuNLO5GkcVm1+QHfbSiNqZuWeMFjj1/3+uAjXswgRk30j1kkLYJBQ=="
+        },
+        "moment-timezone": {
+          "version": "0.4.1",
+          "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.4.1.tgz",
+          "integrity": "sha1-gfWYw61eIs2teWtn7NjYjQ9bqgY=",
+          "optional": true,
+          "requires": {
+            "moment": "2.21.0"
+          }
+        },
+        "patternfly": {
+          "version": "3.41.6",
+          "resolved": "https://registry.npmjs.org/patternfly/-/patternfly-3.41.6.tgz",
+          "integrity": "sha1-4GDPda0Ri8UYWaBdjnMGHIgER+8=",
+          "requires": {
+            "bootstrap": "3.3.7",
+            "bootstrap-datepicker": "1.7.1",
+            "bootstrap-sass": "3.3.7",
+            "bootstrap-select": "1.12.4",
+            "bootstrap-slider": "9.10.0",
+            "bootstrap-switch": "3.3.4",
+            "bootstrap-touchspin": "3.1.1",
+            "c3": "0.4.18",
+            "d3": "3.5.17",
+            "datatables.net": "1.10.16",
+            "datatables.net-colreorder": "1.4.1",
+            "datatables.net-colreorder-bs": "1.3.3",
+            "datatables.net-select": "1.2.3",
+            "drmonty-datatables-colvis": "1.1.2",
+            "eonasdan-bootstrap-datetimepicker": "4.17.47",
+            "font-awesome": "4.7.0",
+            "font-awesome-sass": "4.7.0",
+            "google-code-prettify": "1.0.5",
+            "jquery": "3.2.1",
+            "jquery-match-height": "0.7.2",
+            "moment": "2.20.1",
+            "moment-timezone": "0.4.1",
+            "patternfly-bootstrap-combobox": "1.1.7",
+            "patternfly-bootstrap-treeview": "2.1.5"
+          },
+          "dependencies": {
+            "bootstrap": {
+              "version": "3.3.7",
+              "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.3.7.tgz",
+              "integrity": "sha1-WjiTlFSfIzMIdaOxUGVldPip63E="
+            },
+            "bootstrap-datepicker": {
+              "version": "1.7.1",
+              "resolved": "https://registry.npmjs.org/bootstrap-datepicker/-/bootstrap-datepicker-1.7.1.tgz",
+              "integrity": "sha1-Tuf680iI2+x4NPv52+fEJ34B3a8=",
+              "optional": true,
+              "requires": {
+                "jquery": "3.2.1"
+              }
+            },
+            "bootstrap-sass": {
+              "version": "3.3.7",
+              "resolved": "https://registry.npmjs.org/bootstrap-sass/-/bootstrap-sass-3.3.7.tgz",
+              "integrity": "sha1-ZZbHq0D2Y3OTMjqwvIDQZPxjBJg=",
+              "optional": true
+            },
+            "bootstrap-select": {
+              "version": "1.12.4",
+              "resolved": "https://registry.npmjs.org/bootstrap-select/-/bootstrap-select-1.12.4.tgz",
+              "integrity": "sha1-fxXTwM6XiGjZwJxw+WYk9V+gLuE=",
+              "optional": true,
+              "requires": {
+                "jquery": "3.2.1"
+              }
+            },
+            "bootstrap-slider": {
+              "version": "9.10.0",
+              "resolved": "https://registry.npmjs.org/bootstrap-slider/-/bootstrap-slider-9.10.0.tgz",
+              "integrity": "sha1-EQPWvADPv6jPyaJZmrUYxVZD2j8=",
+              "optional": true
+            },
+            "bootstrap-switch": {
+              "version": "3.3.4",
+              "resolved": "https://registry.npmjs.org/bootstrap-switch/-/bootstrap-switch-3.3.4.tgz",
+              "integrity": "sha1-cOCusqh3wNx2aZHeEI4hcPwpov8=",
+              "optional": true
+            },
+            "bootstrap-touchspin": {
+              "version": "3.1.1",
+              "resolved": "https://registry.npmjs.org/bootstrap-touchspin/-/bootstrap-touchspin-3.1.1.tgz",
+              "integrity": "sha1-l3nerHKq9Xfl52K4USx0fIcdlZc=",
+              "optional": true
+            },
+            "c3": {
+              "version": "0.4.18",
+              "resolved": "https://registry.npmjs.org/c3/-/c3-0.4.18.tgz",
+              "integrity": "sha512-37TiFeCrbe69gg7SxFpTBOLDwulnk+opKp1AFDi43mONtErpRoUIZfGSimGiSYQmNu6Zh9W2yNOx0066UikqSg==",
+              "optional": true,
+              "requires": {
+                "d3": "3.5.17"
+              }
+            },
+            "d3": {
+              "version": "3.5.17",
+              "resolved": "https://registry.npmjs.org/d3/-/d3-3.5.17.tgz",
+              "integrity": "sha1-vEZ0gAQ3iyGjYMn8fPUjF5B2L7g=",
+              "optional": true
+            },
+            "datatables.net": {
+              "version": "1.10.16",
+              "resolved": "https://registry.npmjs.org/datatables.net/-/datatables.net-1.10.16.tgz",
+              "integrity": "sha1-SwUtEIKCQmG2ju2dInQbcR09JGk=",
+              "requires": {
+                "jquery": "3.2.1"
+              }
+            },
+            "datatables.net-bs": {
+              "version": "1.10.16",
+              "resolved": "https://registry.npmjs.org/datatables.net-bs/-/datatables.net-bs-1.10.16.tgz",
+              "integrity": "sha1-sIVPWzdPcTrj20FWx86op2DD3nY=",
+              "optional": true,
+              "requires": {
+                "datatables.net": "1.10.16",
+                "jquery": "3.2.1"
+              }
+            },
+            "datatables.net-colreorder": {
+              "version": "1.4.1",
+              "resolved": "https://registry.npmjs.org/datatables.net-colreorder/-/datatables.net-colreorder-1.4.1.tgz",
+              "integrity": "sha1-OJ5LGidOIDl5o3GNhsWITQoBZrY=",
+              "optional": true,
+              "requires": {
+                "datatables.net": "1.10.16",
+                "jquery": "3.2.1"
+              }
+            },
+            "datatables.net-colreorder-bs": {
+              "version": "1.3.3",
+              "resolved": "https://registry.npmjs.org/datatables.net-colreorder-bs/-/datatables.net-colreorder-bs-1.3.3.tgz",
+              "integrity": "sha1-Op3LCN7r612FQHlZHgbkk615OlM=",
+              "optional": true,
+              "requires": {
+                "datatables.net-bs": "1.10.16",
+                "datatables.net-colreorder": "1.4.1",
+                "jquery": "3.2.1"
+              }
+            },
+            "datatables.net-select": {
+              "version": "1.2.3",
+              "resolved": "https://registry.npmjs.org/datatables.net-select/-/datatables.net-select-1.2.3.tgz",
+              "integrity": "sha1-fCcugXMqQSFOEBtlb1Ul037Dcog=",
+              "optional": true,
+              "requires": {
+                "datatables.net": "1.10.16",
+                "jquery": "3.2.1"
+              }
+            },
+            "drmonty-datatables-colvis": {
+              "version": "1.1.2",
+              "resolved": "https://registry.npmjs.org/drmonty-datatables-colvis/-/drmonty-datatables-colvis-1.1.2.tgz",
+              "integrity": "sha1-lque37SGQ8wu3aP4e4iTPN7oEnw=",
+              "optional": true,
+              "requires": {
+                "jquery": "3.2.1"
+              }
+            },
+            "eonasdan-bootstrap-datetimepicker": {
+              "version": "4.17.47",
+              "resolved": "https://registry.npmjs.org/eonasdan-bootstrap-datetimepicker/-/eonasdan-bootstrap-datetimepicker-4.17.47.tgz",
+              "integrity": "sha1-ekmXAEQGUnbnll79Fvgic1IZ5zU=",
+              "optional": true,
+              "requires": {
+                "bootstrap": "3.3.7",
+                "jquery": "3.2.1",
+                "moment": "2.20.1",
+                "moment-timezone": "0.4.1"
+              }
+            },
+            "font-awesome": {
+              "version": "4.7.0",
+              "resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz",
+              "integrity": "sha1-j6jPBBGhoxr9B7BtKQK7n8gVoTM="
+            },
+            "font-awesome-sass": {
+              "version": "4.7.0",
+              "resolved": "https://registry.npmjs.org/font-awesome-sass/-/font-awesome-sass-4.7.0.tgz",
+              "integrity": "sha1-TtppPpFQCc4Asijglk3F7Km8NOE=",
+              "optional": true
+            },
+            "google-code-prettify": {
+              "version": "1.0.5",
+              "resolved": "https://registry.npmjs.org/google-code-prettify/-/google-code-prettify-1.0.5.tgz",
+              "integrity": "sha1-n0d/Ik2/piNy5e+AOn4VdBBAAIQ=",
+              "optional": true
+            },
+            "jquery": {
+              "version": "3.2.1",
+              "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.2.1.tgz",
+              "integrity": "sha1-XE2d5lKvbNCncBVKYxu6ErAVx4c="
+            },
+            "jquery-match-height": {
+              "version": "0.7.2",
+              "resolved": "https://registry.npmjs.org/jquery-match-height/-/jquery-match-height-0.7.2.tgz",
+              "integrity": "sha1-+NnzulMU2qsQnPB0CGdL4gS+Xw4=",
+              "optional": true
+            },
+            "moment": {
+              "version": "2.20.1",
+              "resolved": "https://registry.npmjs.org/moment/-/moment-2.20.1.tgz",
+              "integrity": "sha512-Yh9y73JRljxW5QxN08Fner68eFLxM5ynNOAw2LbIB1YAGeQzZT8QFSUvkAz609Zf+IHhhaUxqZK8dG3W/+HEvg=="
+            },
+            "moment-timezone": {
+              "version": "0.4.1",
+              "resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.4.1.tgz",
+              "integrity": "sha1-gfWYw61eIs2teWtn7NjYjQ9bqgY=",
+              "optional": true,
+              "requires": {
+                "moment": "2.20.1"
+              }
+            },
+            "patternfly-bootstrap-combobox": {
+              "version": "1.1.7",
+              "resolved": "https://registry.npmjs.org/patternfly-bootstrap-combobox/-/patternfly-bootstrap-combobox-1.1.7.tgz",
+              "integrity": "sha1-al48zRFwwhs8S0qhaKdBPh3btuE=",
+              "optional": true
+            },
+            "patternfly-bootstrap-treeview": {
+              "version": "2.1.5",
+              "resolved": "https://registry.npmjs.org/patternfly-bootstrap-treeview/-/patternfly-bootstrap-treeview-2.1.5.tgz",
+              "integrity": "sha1-TCnyWC+4ovKPCpKPLw0yTSHWmQ0=",
+              "optional": true,
+              "requires": {
+                "bootstrap": "3.3.7",
+                "jquery": "3.2.1"
+              }
+            }
+          }
+        },
+        "patternfly-bootstrap-combobox": {
+          "version": "1.1.7",
+          "resolved": "https://registry.npmjs.org/patternfly-bootstrap-combobox/-/patternfly-bootstrap-combobox-1.1.7.tgz",
+          "integrity": "sha1-al48zRFwwhs8S0qhaKdBPh3btuE=",
+          "optional": true
+        },
+        "patternfly-bootstrap-treeview": {
+          "version": "2.1.5",
+          "resolved": "https://registry.npmjs.org/patternfly-bootstrap-treeview/-/patternfly-bootstrap-treeview-2.1.5.tgz",
+          "integrity": "sha1-TCnyWC+4ovKPCpKPLw0yTSHWmQ0=",
+          "optional": true,
+          "requires": {
+            "bootstrap": "3.3.7",
+            "jquery": "3.2.1"
+          }
+        }
+      }
+    },
     "safename": {
       "version": "0.0.4",
       "resolved": "https://registry.npmjs.org/safename/-/safename-0.0.4.tgz",
diff --git a/themes/src/main/resources/theme/base/login/code.ftl b/themes/src/main/resources/theme/base/login/code.ftl
index f266bda..6830fc4 100755
--- a/themes/src/main/resources/theme/base/login/code.ftl
+++ b/themes/src/main/resources/theme/base/login/code.ftl
@@ -1,6 +1,6 @@
 <#import "template.ftl" as layout>
 <@layout.registrationLayout; section>
-    <#if section = "title">
+    <#if section = "header">
         <#if code.success>
             ${msg("codeSuccessTitle")}
         <#else>
diff --git a/themes/src/main/resources/theme/base/login/error.ftl b/themes/src/main/resources/theme/base/login/error.ftl
index 84ff388..23468c5 100755
--- a/themes/src/main/resources/theme/base/login/error.ftl
+++ b/themes/src/main/resources/theme/base/login/error.ftl
@@ -1,9 +1,7 @@
 <#import "template.ftl" as layout>
 <@layout.registrationLayout displayMessage=false; section>
-    <#if section = "title">
+    <#if section = "header">
         ${msg("errorTitle")}
-    <#elseif section = "header">
-        ${msg("errorTitleHtml")?no_esc}
     <#elseif section = "form">
         <div id="kc-error-message">
             <p class="instruction">${message.summary}</p>
diff --git a/themes/src/main/resources/theme/base/login/info.ftl b/themes/src/main/resources/theme/base/login/info.ftl
index 2fddf88..ab8c567 100755
--- a/themes/src/main/resources/theme/base/login/info.ftl
+++ b/themes/src/main/resources/theme/base/login/info.ftl
@@ -1,9 +1,7 @@
 <#import "template.ftl" as layout>
 <@layout.registrationLayout displayMessage=false; section>
-    <#if section = "title">
-    ${message.summary}
-    <#elseif section = "header">
-    ${message.summary}
+    <#if section = "header">
+        ${message.summary}
     <#elseif section = "form">
     <div id="kc-info-message">
         <p class="instruction">${message.summary}<#if requiredActions??><#list requiredActions>: <b><#items as reqActionItem>${msg("requiredAction.${reqActionItem}")}<#sep>, </#items></b></#list><#else></#if></p>
diff --git a/themes/src/main/resources/theme/base/login/login.ftl b/themes/src/main/resources/theme/base/login/login.ftl
index ead4ec5..ebd5ffd 100755
--- a/themes/src/main/resources/theme/base/login/login.ftl
+++ b/themes/src/main/resources/theme/base/login/login.ftl
@@ -1,38 +1,29 @@
 <#import "template.ftl" as layout>
-<@layout.registrationLayout displayInfo=social.displayInfo; section>
-    <#if section = "title">
-        ${msg("loginTitle",(realm.displayName!''))}
-    <#elseif section = "header">
-        ${msg("loginTitleHtml",(realm.displayNameHtml!''))?no_esc}
+<@layout.registrationLayout displayInfo=social.displayInfo displayWide=(realm.password && social.providers??); section>
+    <#if section = "header">
+        ${msg("doLogIn")}
     <#elseif section = "form">
+    <div id="kc-form" <#if realm.password && social.providers??>class="${properties.kcContentWrapperClass!}"</#if>>
+      <div id="kc-form-wrapper" <#if realm.password && social.providers??>class="${properties.kcFormSocialAccountContentClass!} ${properties.kcFormSocialAccountClass!}"</#if>>
         <#if realm.password>
-            <form id="kc-form-login" class="${properties.kcFormClass!}" onsubmit="login.disabled = true; return true;" action="${url.loginAction}" method="post">
+            <form id="kc-form-login" onsubmit="login.disabled = true; return true;" action="${url.loginAction}" method="post">
                 <div class="${properties.kcFormGroupClass!}">
-                    <div class="${properties.kcLabelWrapperClass!}">
-                        <label for="username" class="${properties.kcLabelClass!}"><#if !realm.loginWithEmailAllowed>${msg("username")}<#elseif !realm.registrationEmailAsUsername>${msg("usernameOrEmail")}<#else>${msg("email")}</#if></label>
-                    </div>
+                    <label for="username" class="${properties.kcLabelClass!}"><#if !realm.loginWithEmailAllowed>${msg("username")}<#elseif !realm.registrationEmailAsUsername>${msg("usernameOrEmail")}<#else>${msg("email")}</#if></label>
 
-                    <div class="${properties.kcInputWrapperClass!}">
-                        <#if usernameEditDisabled??>
-                            <input tabindex="1" id="username" class="${properties.kcInputClass!}" name="username" value="${(login.username!'')}" type="text" disabled />
-                        <#else>
-                            <input tabindex="1" id="username" class="${properties.kcInputClass!}" name="username" value="${(login.username!'')}" type="text" autofocus autocomplete="off" />
-                        </#if>
-                    </div>
+                    <#if usernameEditDisabled??>
+                        <input tabindex="1" id="username" class="${properties.kcInputClass!}" name="username" value="${(login.username!'')}" type="text" disabled />
+                    <#else>
+                        <input tabindex="1" id="username" class="${properties.kcInputClass!}" name="username" value="${(login.username!'')}"  type="text" autofocus autocomplete="off" />
+                    </#if>
                 </div>
 
                 <div class="${properties.kcFormGroupClass!}">
-                    <div class="${properties.kcLabelWrapperClass!}">
-                        <label for="password" class="${properties.kcLabelClass!}">${msg("password")}</label>
-                    </div>
-
-                    <div class="${properties.kcInputWrapperClass!}">
-                        <input tabindex="2" id="password" class="${properties.kcInputClass!}" name="password" type="password" autocomplete="off" />
-                    </div>
+                    <label for="password" class="${properties.kcLabelClass!}">${msg("password")}</label>
+                    <input tabindex="2" id="password" class="${properties.kcInputClass!}" name="password" type="password" autocomplete="off" />
                 </div>
 
-                <div class="${properties.kcFormGroupClass!}">
-                    <div id="kc-form-options" class="${properties.kcFormOptionsClass!}">
+                <div class="${properties.kcFormGroupClass!} ${properties.kcFormSettingClass!}">
+                    <div id="kc-form-options">
                         <#if realm.rememberMe && !usernameEditDisabled??>
                             <div class="checkbox">
                                 <label>
@@ -44,36 +35,38 @@
                                 </label>
                             </div>
                         </#if>
+                        </div>
                         <div class="${properties.kcFormOptionsWrapperClass!}">
                             <#if realm.resetPasswordAllowed>
                                 <span><a tabindex="5" href="${url.loginResetCredentialsUrl}">${msg("doForgotPassword")}</a></span>
                             </#if>
                         </div>
-                    </div>
 
-                    <div id="kc-form-buttons" class="${properties.kcFormButtonsClass!}">
-                        <div class="${properties.kcFormButtonsWrapperClass!}">
-                            <input tabindex="4" class="${properties.kcButtonClass!} ${properties.kcButtonPrimaryClass!} ${properties.kcButtonLargeClass!}" name="login" id="kc-login" type="submit" value="${msg("doLogIn")}"/>
-                        </div>
-                     </div>
+                  </div>
+
+                  <div id="kc-form-buttons" class="${properties.kcFormGroupClass!}">
+                    <input tabindex="4" class="${properties.kcButtonClass!} ${properties.kcButtonPrimaryClass!} ${properties.kcButtonBlockClass!} ${properties.kcButtonLargeClass!}" name="login" id="kc-login" type="submit" value="${msg("doLogIn")}"/>
+                  </div>
                 </div>
             </form>
         </#if>
-    <#elseif section = "info" >
-        <#if realm.password && realm.registrationAllowed && !usernameEditDisabled??>
-            <div id="kc-registration">
-                <span>${msg("noAccount")} <a tabindex="6" href="${url.registrationUrl}">${msg("doRegister")}</a></span>
-            </div>
-        </#if>
-
         <#if realm.password && social.providers??>
-            <div id="kc-social-providers">
-                <ul>
+            <div id="kc-social-providers" class="${properties.kcFormSocialAccountContentClass!} ${properties.kcFormSocialAccountClass!}">
+                <ul class="${properties.kcFormSocialAccountListClass!} <#if social.providers?size gt 4>${properties.kcFormSocialAccountDoubleListClass!}</#if>">
                     <#list social.providers as p>
-                        <li><a href="${p.loginUrl}" id="zocial-${p.alias}" class="zocial ${p.providerId}"> <span class="text">${p.displayName}</span></a></li>
+                        <li class="${properties.kcFormSocialAccountListLinkClass!}"><a href="${p.loginUrl}" id="zocial-${p.alias}" class="zocial ${p.providerId}"> <span>${p.displayName}</span></a></li>
                     </#list>
                 </ul>
             </div>
         </#if>
+        </div>
+      </div>
+    <#elseif section = "info" >
+        <#if realm.password && realm.registrationAllowed && !usernameEditDisabled??>
+            <div id="kc-registration">
+                <span>${msg("noAccount")} <a tabindex="6" href="${url.registrationUrl}">${msg("doRegister")}</a></span>
+            </div>
+        </#if>
     </#if>
+
 </@layout.registrationLayout>
diff --git a/themes/src/main/resources/theme/base/login/login-config-totp.ftl b/themes/src/main/resources/theme/base/login/login-config-totp.ftl
index bd53b27..f4dc921 100755
--- a/themes/src/main/resources/theme/base/login/login-config-totp.ftl
+++ b/themes/src/main/resources/theme/base/login/login-config-totp.ftl
@@ -1,8 +1,6 @@
 <#import "template.ftl" as layout>
 <@layout.registrationLayout displayInfo=true; section>
-    <#if section = "title">
-        ${msg("loginTotpTitle")}
-    <#elseif section = "header">
+    <#if section = "header">
         ${msg("loginTotpTitle")}
     <#elseif section = "form">
 
@@ -26,16 +24,18 @@
             </li>
             <li>
                 <p>${msg("loginTotpManualStep3")}</p>
-                <ul>
-                    <li id="kc-totp-type">${msg("loginTotpType")}: ${msg("loginTotp." + totp.policy.type)}</li>
-                    <li id="kc-totp-algorithm">${msg("loginTotpAlgorithm")}: ${totp.policy.getAlgorithmKey()}</li>
-                    <li id="kc-totp-digits">${msg("loginTotpDigits")}: ${totp.policy.digits}</li>
-                    <#if totp.policy.type = "totp">
-                        <li id="kc-totp-period">${msg("loginTotpInterval")}: ${totp.policy.period}</li>
-                    <#elseif totp.policy.type = "hotp">
-                        <li id="kc-totp-counter">${msg("loginTotpCounter")}: ${totp.policy.initialCounter}</li>
-                    </#if>
-                </ul>
+                <p>
+                    <ul>
+                        <li id="kc-totp-type">${msg("loginTotpType")}: ${msg("loginTotp." + totp.policy.type)}</li>
+                        <li id="kc-totp-algorithm">${msg("loginTotpAlgorithm")}: ${totp.policy.getAlgorithmKey()}</li>
+                        <li id="kc-totp-digits">${msg("loginTotpDigits")}: ${totp.policy.digits}</li>
+                        <#if totp.policy.type = "totp">
+                            <li id="kc-totp-period">${msg("loginTotpInterval")}: ${totp.policy.period}</li>
+                        <#elseif totp.policy.type = "hotp">
+                            <li id="kc-totp-counter">${msg("loginTotpCounter")}: ${totp.policy.initialCounter}</li>
+                        </#if>
+                    </ul>
+                </p>
             </li>
         <#else>
             <li>
@@ -57,7 +57,7 @@
             <input type="hidden" id="totpSecret" name="totpSecret" value="${totp.totpSecret}" />
         </div>
 
-        <input class="${properties.kcButtonClass!} ${properties.kcButtonPrimaryClass!} ${properties.kcButtonLargeClass!}" type="submit" value="${msg("doSubmit")}"/>
+        <input class="${properties.kcButtonClass!} ${properties.kcButtonPrimaryClass!} ${properties.kcButtonBlockClass!} ${properties.kcButtonLargeClass!}" type="submit" value="${msg("doSubmit")}"/>
     </form>
     </#if>
 </@layout.registrationLayout>
diff --git a/themes/src/main/resources/theme/base/login/login-idp-link-confirm.ftl b/themes/src/main/resources/theme/base/login/login-idp-link-confirm.ftl
index 29ee2ae..f3d38f2 100644
--- a/themes/src/main/resources/theme/base/login/login-idp-link-confirm.ftl
+++ b/themes/src/main/resources/theme/base/login/login-idp-link-confirm.ftl
@@ -1,9 +1,7 @@
 <#import "template.ftl" as layout>
 <@layout.registrationLayout; section>
-    <#if section = "title">
+    <#if section = "header">
         ${msg("confirmLinkIdpTitle")}
-    <#elseif section = "header">
-         ${msg("confirmLinkIdpTitle")}
     <#elseif section = "form">
         <form id="kc-register-form" class="${properties.kcFormClass!}" action="${url.loginAction}" method="post">
             <button type="submit" class="${properties.kcButtonClass!} ${properties.kcButtonDefaultClass!} ${properties.kcButtonLargeClass!}" name="submitAction" id="updateProfile" value="updateProfile">${msg("confirmLinkIdpReviewProfile")}</button>
diff --git a/themes/src/main/resources/theme/base/login/login-idp-link-email.ftl b/themes/src/main/resources/theme/base/login/login-idp-link-email.ftl
index 1dbd43d..6462550 100644
--- a/themes/src/main/resources/theme/base/login/login-idp-link-email.ftl
+++ b/themes/src/main/resources/theme/base/login/login-idp-link-email.ftl
@@ -1,8 +1,6 @@
 <#import "template.ftl" as layout>
 <@layout.registrationLayout; section>
-    <#if section = "title">
-        ${msg("emailLinkIdpTitle", idpAlias)}
-    <#elseif section = "header">
+    <#if section = "header">
         ${msg("emailLinkIdpTitle", idpAlias)}
     <#elseif section = "form">
         <p id="instruction1" class="instruction">
diff --git a/themes/src/main/resources/theme/base/login/login-oauth-grant.ftl b/themes/src/main/resources/theme/base/login/login-oauth-grant.ftl
index dc423c4..8413db6 100755
--- a/themes/src/main/resources/theme/base/login/login-oauth-grant.ftl
+++ b/themes/src/main/resources/theme/base/login/login-oauth-grant.ftl
@@ -1,9 +1,11 @@
 <#import "template.ftl" as layout>
 <@layout.registrationLayout bodyClass="oauth"; section>
-    <#if section = "title">
-        ${msg("oauthGrantTitle")}
-    <#elseif section = "header">
-    ${msg("oauthGrantTitleHtml",(realm.displayNameHtml!''))?no_esc} <strong><#if client.name??>${advancedMsg(client.name)}<#else>${client.clientId}</#if></strong>.
+    <#if section = "header">
+        <#if client.name?has_content>
+            ${msg("oauthGrantTitle",advancedMsg(client.name))}
+        <#else>
+            ${msg("oauthGrantTitle",client.clientId)}
+        </#if>
     <#elseif section = "form">
         <div id="kc-oauth" class="content-area">
             <h3>${msg("oauthGrantRequest")}</h3>
@@ -11,7 +13,7 @@
                 <#if oauth.claimsRequested??>
                     <li>
                         <span>
-                            ${msg("personalInfo")}&nbsp;
+                            <strong>${msg("personalInfo")}</strong>&nbsp;
                             <#list oauth.claimsRequested as claim>
                                 ${advancedMsg(claim)}<#if claim_has_next>,&nbsp;</#if>
                             </#list>
@@ -47,12 +49,12 @@
             <form class="form-actions" action="${url.oauthAction}" method="POST">
                 <input type="hidden" name="code" value="${oauth.code}">
                 <div class="${properties.kcFormGroupClass!}">
-                    <div id="kc-form-options" class="${properties.kcFormOptionsClass!}">
+                    <div id="kc-form-options">
                         <div class="${properties.kcFormOptionsWrapperClass!}">
                         </div>
                     </div>
 
-                    <div id="kc-form-buttons" class="${properties.kcFormButtonsClass!}">
+                    <div id="kc-form-buttons">
                         <div class="${properties.kcFormButtonsWrapperClass!}">
                             <input class="${properties.kcButtonClass!} ${properties.kcButtonPrimaryClass!} ${properties.kcButtonLargeClass!}" name="accept" id="kc-login" type="submit" value="${msg("doYes")}"/>
                             <input class="${properties.kcButtonClass!} ${properties.kcButtonDefaultClass!} ${properties.kcButtonLargeClass!}" name="cancel" id="kc-cancel" type="submit" value="${msg("doNo")}"/>
@@ -60,6 +62,7 @@
                     </div>
                 </div>
             </form>
+            <div class="clearfix"></div>
         </div>
     </#if>
-</@layout.registrationLayout>
\ No newline at end of file
+</@layout.registrationLayout>
diff --git a/themes/src/main/resources/theme/base/login/login-page-expired.ftl b/themes/src/main/resources/theme/base/login/login-page-expired.ftl
index f58c25d..2b470e0 100644
--- a/themes/src/main/resources/theme/base/login/login-page-expired.ftl
+++ b/themes/src/main/resources/theme/base/login/login-page-expired.ftl
@@ -1,13 +1,11 @@
 <#import "template.ftl" as layout>
 <@layout.registrationLayout; section>
-    <#if section = "title">
-        ${msg("pageExpiredTitle")}
-    <#elseif section = "header">
+    <#if section = "header">
         ${msg("pageExpiredTitle")}
     <#elseif section = "form">
         <p id="instruction1" class="instruction">
-            ${msg("pageExpiredMsg1")} <a id="loginRestartLink" href="${url.loginRestartFlowUrl}">${msg("doClickHere")}</a> .
+            ${msg("pageExpiredMsg1")} <a id="loginRestartLink" href="${url.loginRestartFlowUrl}">${msg("doClickHere")}</a> .<br/>
             ${msg("pageExpiredMsg2")} <a id="loginContinueLink" href="${url.loginAction}">${msg("doClickHere")}</a> .
         </p>
     </#if>
-</@layout.registrationLayout>
\ No newline at end of file
+</@layout.registrationLayout>
diff --git a/themes/src/main/resources/theme/base/login/login-reset-password.ftl b/themes/src/main/resources/theme/base/login/login-reset-password.ftl
index a6c1568..79481bc 100755
--- a/themes/src/main/resources/theme/base/login/login-reset-password.ftl
+++ b/themes/src/main/resources/theme/base/login/login-reset-password.ftl
@@ -1,8 +1,6 @@
 <#import "template.ftl" as layout>
 <@layout.registrationLayout displayInfo=true; section>
-    <#if section = "title">
-        ${msg("emailForgotTitle")}
-    <#elseif section = "header">
+    <#if section = "header">
         ${msg("emailForgotTitle")}
     <#elseif section = "form">
         <form id="kc-reset-password-form" class="${properties.kcFormClass!}" action="${url.loginAction}" method="post">
@@ -15,7 +13,7 @@
                 </div>
             </div>
 
-            <div class="${properties.kcFormGroupClass!}">
+            <div class="${properties.kcFormGroupClass!} ${properties.kcFormSettingClass!}">
                 <div id="kc-form-options" class="${properties.kcFormOptionsClass!}">
                     <div class="${properties.kcFormOptionsWrapperClass!}">
                         <span><a href="${url.loginUrl}">${msg("backToLogin")?no_esc}</a></span>
@@ -23,7 +21,7 @@
                 </div>
 
                 <div id="kc-form-buttons" class="${properties.kcFormButtonsClass!}">
-                    <input class="${properties.kcButtonClass!} ${properties.kcButtonPrimaryClass!} ${properties.kcButtonLargeClass!}" type="submit" value="${msg("doSubmit")}"/>
+                    <input class="${properties.kcButtonClass!} ${properties.kcButtonPrimaryClass!} ${properties.kcButtonBlockClass!} ${properties.kcButtonLargeClass!}" type="submit" value="${msg("doSubmit")}"/>
                 </div>
             </div>
         </form>
diff --git a/themes/src/main/resources/theme/base/login/login-totp.ftl b/themes/src/main/resources/theme/base/login/login-totp.ftl
index d0450e2..2c31e61 100755
--- a/themes/src/main/resources/theme/base/login/login-totp.ftl
+++ b/themes/src/main/resources/theme/base/login/login-totp.ftl
@@ -1,9 +1,7 @@
 <#import "template.ftl" as layout>
 <@layout.registrationLayout; section>
-    <#if section = "title">
-        ${msg("loginTitle",realm.displayName)}
-    <#elseif section = "header">
-        ${msg("loginTitleHtml",realm.displayNameHtml)?no_esc}
+    <#if section = "header">
+        ${msg("doLogIn")}
     <#elseif section = "form">
         <form id="kc-totp-login-form" class="${properties.kcFormClass!}" action="${url.loginAction}" method="post">
             <div class="${properties.kcFormGroupClass!}">
diff --git a/themes/src/main/resources/theme/base/login/login-update-password.ftl b/themes/src/main/resources/theme/base/login/login-update-password.ftl
index 2ec37fb..c393613 100755
--- a/themes/src/main/resources/theme/base/login/login-update-password.ftl
+++ b/themes/src/main/resources/theme/base/login/login-update-password.ftl
@@ -1,8 +1,6 @@
 <#import "template.ftl" as layout>
 <@layout.registrationLayout displayInfo=true; section>
-    <#if section = "title">
-        ${msg("updatePasswordTitle")}
-    <#elseif section = "header">
+    <#if section = "header">
         ${msg("updatePasswordTitle")}
     <#elseif section = "form">
         <form id="kc-passwd-update-form" class="${properties.kcFormClass!}" action="${url.loginAction}" method="post">
@@ -34,7 +32,7 @@
                 </div>
 
                 <div id="kc-form-buttons" class="${properties.kcFormButtonsClass!}">
-                    <input class="${properties.kcButtonClass!} ${properties.kcButtonPrimaryClass!} ${properties.kcButtonLargeClass!}" type="submit" value="${msg("doSubmit")}"/>
+                    <input class="${properties.kcButtonClass!} ${properties.kcButtonPrimaryClass!} ${properties.kcButtonBlockClass!} ${properties.kcButtonLargeClass!}" type="submit" value="${msg("doSubmit")}"/>
                 </div>
             </div>
         </form>
diff --git a/themes/src/main/resources/theme/base/login/login-update-profile.ftl b/themes/src/main/resources/theme/base/login/login-update-profile.ftl
index c57c877..45007ca 100755
--- a/themes/src/main/resources/theme/base/login/login-update-profile.ftl
+++ b/themes/src/main/resources/theme/base/login/login-update-profile.ftl
@@ -1,8 +1,6 @@
 <#import "template.ftl" as layout>
 <@layout.registrationLayout; section>
-    <#if section = "title">
-        ${msg("loginProfileTitle")}
-    <#elseif section = "header">
+    <#if section = "header">
         ${msg("loginProfileTitle")}
     <#elseif section = "form">
         <form id="kc-update-profile-form" class="${properties.kcFormClass!}" action="${url.loginAction}" method="post">
@@ -50,9 +48,9 @@
                 </div>
 
                 <div id="kc-form-buttons" class="${properties.kcFormButtonsClass!}">
-                    <input class="${properties.kcButtonClass!} ${properties.kcButtonPrimaryClass!} ${properties.kcButtonLargeClass!}" type="submit" value="${msg("doSubmit")}" />
+                    <input class="${properties.kcButtonClass!} ${properties.kcButtonPrimaryClass!} ${properties.kcButtonBlockClass!} ${properties.kcButtonLargeClass!}" type="submit" value="${msg("doSubmit")}" />
                 </div>
             </div>
         </form>
     </#if>
-</@layout.registrationLayout>
\ No newline at end of file
+</@layout.registrationLayout>
diff --git a/themes/src/main/resources/theme/base/login/login-verify-email.ftl b/themes/src/main/resources/theme/base/login/login-verify-email.ftl
index 53caaa3..e69a9fe 100755
--- a/themes/src/main/resources/theme/base/login/login-verify-email.ftl
+++ b/themes/src/main/resources/theme/base/login/login-verify-email.ftl
@@ -1,8 +1,6 @@
 <#import "template.ftl" as layout>
 <@layout.registrationLayout; section>
-    <#if section = "title">
-        ${msg("emailVerifyTitle")}
-    <#elseif section = "header">
+    <#if section = "header">
         ${msg("emailVerifyTitle")}
     <#elseif section = "form">
         <p class="instruction">
diff --git a/themes/src/main/resources/theme/base/login/login-x509-info.ftl b/themes/src/main/resources/theme/base/login/login-x509-info.ftl
index 47d6aad..c3ff2fd 100644
--- a/themes/src/main/resources/theme/base/login/login-x509-info.ftl
+++ b/themes/src/main/resources/theme/base/login/login-x509-info.ftl
@@ -1,9 +1,7 @@
 <#import "template.ftl" as layout>
 <@layout.registrationLayout; section>
-    <#if section = "title">
-        ${msg("loginTitle",(realm.displayName!''))}
-    <#elseif section = "header">
-        ${msg("loginTitleHtml",(realm.displayNameHtml!''))?no_esc}
+    <#if section = "header">
+        ${msg("doLogIn")}
     <#elseif section = "form">
 
         <form id="kc-x509-login-info" class="${properties.kcFormClass!}" action="${url.loginAction}" method="post">
diff --git a/themes/src/main/resources/theme/base/login/messages/messages_en.properties b/themes/src/main/resources/theme/base/login/messages/messages_en.properties
index 3e61043..d4c12e4 100755
--- a/themes/src/main/resources/theme/base/login/messages/messages_en.properties
+++ b/themes/src/main/resources/theme/base/login/messages/messages_en.properties
@@ -1,4 +1,4 @@
-doLogIn=Log in
+doLogIn=Log In
 doRegister=Register
 doCancel=Cancel
 doSubmit=Submit
@@ -15,8 +15,7 @@ kerberosNotConfigured=Kerberos Not Configured
 kerberosNotConfiguredTitle=Kerberos Not Configured
 bypassKerberosDetail=Either you are not logged in via Kerberos or your browser is not set up for Kerberos login.  Please click continue to login in through other means
 kerberosNotSetUp=Kerberos is not set up.  You cannot login.
-registerWithTitle=Register with {0}
-registerWithTitleHtml={0}
+registerTitle=Register
 loginTitle=Log in to {0}
 loginTitleHtml={0}
 impersonateTitle={0} Impersonate User
@@ -26,7 +25,7 @@ unknownUser=Unknown user
 loginTotpTitle=Mobile Authenticator Setup
 loginProfileTitle=Update Account Information
 loginTimeout=You took too long to login.  Login process starting from beginning.
-oauthGrantTitle=Grant Access
+oauthGrantTitle=Grant Access to {0}
 oauthGrantTitleHtml={0}
 errorTitle=We''re sorry...
 errorTitleHtml=We''re <strong>sorry</strong> ...
@@ -37,7 +36,6 @@ codeSuccessTitle=Success code
 codeErrorTitle=Error code\: {0}
 
 termsTitle=Terms and Conditions
-termsTitleHtml=Terms and Conditions
 termsText=<p>Terms and conditions to be defined</p>
 
 recaptchaFailed=Invalid Recaptcha
diff --git a/themes/src/main/resources/theme/base/login/register.ftl b/themes/src/main/resources/theme/base/login/register.ftl
index 0ac0ab3..fcf8aa9 100755
--- a/themes/src/main/resources/theme/base/login/register.ftl
+++ b/themes/src/main/resources/theme/base/login/register.ftl
@@ -1,9 +1,7 @@
 <#import "template.ftl" as layout>
 <@layout.registrationLayout; section>
-    <#if section = "title">
-        ${msg("registerWithTitle",(realm.displayName!''))}
-    <#elseif section = "header">
-        ${msg("registerWithTitleHtml",(realm.displayNameHtml!''))?no_esc}
+    <#if section = "header">
+        ${msg("registerTitle")}
     <#elseif section = "form">
         <form id="kc-register-form" class="${properties.kcFormClass!}" action="${url.registrationAction}" method="post">
             <div class="${properties.kcFormGroupClass!} ${messagesPerField.printIfExists('firstName',properties.kcFormGroupErrorClass!)}">
@@ -80,9 +78,9 @@
                 </div>
 
                 <div id="kc-form-buttons" class="${properties.kcFormButtonsClass!}">
-                    <input class="${properties.kcButtonClass!} ${properties.kcButtonPrimaryClass!} ${properties.kcButtonLargeClass!}" type="submit" value="${msg("doRegister")}"/>
+                    <input class="${properties.kcButtonClass!} ${properties.kcButtonPrimaryClass!} ${properties.kcButtonBlockClass!} ${properties.kcButtonLargeClass!}" type="submit" value="${msg("doRegister")}"/>
                 </div>
             </div>
         </form>
     </#if>
-</@layout.registrationLayout>
\ No newline at end of file
+</@layout.registrationLayout>
diff --git a/themes/src/main/resources/theme/base/login/template.ftl b/themes/src/main/resources/theme/base/login/template.ftl
old mode 100755
new mode 100644
index d4bb937..a713071
--- a/themes/src/main/resources/theme/base/login/template.ftl
+++ b/themes/src/main/resources/theme/base/login/template.ftl
@@ -1,4 +1,4 @@
-<#macro registrationLayout bodyClass="" displayInfo=false displayMessage=true>
+<#macro registrationLayout bodyClass="" displayInfo=false displayMessage=true displayWide=false>
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml" class="${properties.kcHtmlClass!}">
 
@@ -12,7 +12,7 @@
             <meta name="${meta?split('==')[0]}" content="${meta?split('==')[1]}"/>
         </#list>
     </#if>
-    <title><#nested "title"></title>
+    <title>${msg("loginTitle",(realm.displayName!''))}</title>
     <link rel="icon" href="${url.resourcesPath}/img/favicon.ico" />
     <#if properties.styles?has_content>
         <#list properties.styles?split(' ') as style>
@@ -32,62 +32,55 @@
 </head>
 
 <body class="${properties.kcBodyClass!}">
-    <div id="kc-logo"><a href="${properties.kcLogoLink!'#'}"><div id="kc-logo-wrapper"></div></a></div>
-
-    <div id="kc-container" class="${properties.kcContainerClass!}">
-        <div id="kc-container-wrapper" class="${properties.kcContainerWrapperClass!}">
-
-            <div id="kc-header" class="${properties.kcHeaderClass!}">
-                <div id="kc-header-wrapper" class="${properties.kcHeaderWrapperClass!}"><#nested "header"></div>
-            </div>
-
-            <#if realm.internationalizationEnabled>
-                <div id="kc-locale" class="${properties.kcLocaleClass!}">
-                    <div id="kc-locale-wrapper" class="${properties.kcLocaleWrapperClass!}">
-                        <div class="kc-dropdown" id="kc-locale-dropdown">
-                            <a href="#" id="kc-current-locale-link">${locale.current}</a>
-                            <ul>
-                                <#list locale.supported as l>
-                                    <li class="kc-dropdown-item"><a href="${l.url}">${l.label}</a></li>
-                                </#list>
-                            </ul>
-                        </div>
+  <div class="${properties.kcLoginClass!}">
+    <div id="kc-header" class="${properties.kcHeaderClass!}">
+      <div id="kc-header-wrapper" class="${properties.kcHeaderWrapperClass!}">${msg("loginTitleHtml",(realm.displayNameHtml!''))?no_esc}</div>
+    </div>
+    <div class="${properties.kcFormCardClass!} <#if displayWide>${properties.kcFormCardAccountClass!}</#if>">
+      <header class="${properties.kcFormHeaderClass!}">
+        <#if realm.internationalizationEnabled  && locale.supported?size gt 1>
+            <div id="kc-locale">
+                <div id="kc-locale-wrapper" class="${properties.kcLocaleWrapperClass!}">
+                    <div class="kc-dropdown" id="kc-locale-dropdown">
+                        <a href="#" id="kc-current-locale-link">${locale.current}</a>
+                        <ul>
+                            <#list locale.supported as l>
+                                <li class="kc-dropdown-item"><a href="${l.url}">${l.label}</a></li>
+                            </#list>
+                        </ul>
                     </div>
                 </div>
-            </#if>
-
-            <div id="kc-content" class="${properties.kcContentClass!}">
-                <div id="kc-content-wrapper" class="${properties.kcContentWrapperClass!}">
+            </div>
+        </#if>
+        <h1 id="kc-page-title"><#nested "header"></h1>
+      </header>
+      <div id="kc-content">
+        <div id="kc-content-wrapper">
 
-                    <#if displayMessage && message?has_content>
-                        <div class="${properties.kcFeedbackAreaClass!}">
-                            <div class="alert alert-${message.type}">
-                                <#if message.type = 'success'><span class="${properties.kcFeedbackSuccessIcon!}"></span></#if>
-                                <#if message.type = 'warning'><span class="${properties.kcFeedbackWarningIcon!}"></span></#if>
-                                <#if message.type = 'error'><span class="${properties.kcFeedbackErrorIcon!}"></span></#if>
-                                <#if message.type = 'info'><span class="${properties.kcFeedbackInfoIcon!}"></span></#if>
-                                <span class="kc-feedback-text">${message.summary?no_esc}</span>
-                            </div>
-                        </div>
-                    </#if>
+          <#if displayMessage && message?has_content>
+              <div class="alert alert-${message.type}">
+                  <#if message.type = 'success'><span class="${properties.kcFeedbackSuccessIcon!}"></span></#if>
+                  <#if message.type = 'warning'><span class="${properties.kcFeedbackWarningIcon!}"></span></#if>
+                  <#if message.type = 'error'><span class="${properties.kcFeedbackErrorIcon!}"></span></#if>
+                  <#if message.type = 'info'><span class="${properties.kcFeedbackInfoIcon!}"></span></#if>
+                  <span class="kc-feedback-text">${message.summary?no_esc}</span>
+              </div>
+          </#if>
 
-                    <div id="kc-form" class="${properties.kcFormAreaClass!}">
-                        <div id="kc-form-wrapper" class="${properties.kcFormAreaWrapperClass!}">
-                            <#nested "form">
-                        </div>
-                    </div>
+          <#nested "form">
 
-                    <#if displayInfo>
-                        <div id="kc-info" class="${properties.kcInfoAreaClass!}">
-                            <div id="kc-info-wrapper" class="${properties.kcInfoAreaWrapperClass!}">
-                                <#nested "info">
-                            </div>
-                        </div>
-                    </#if>
-                </div>
-            </div>
+          <#if displayInfo>
+              <div id="kc-info" class="${properties.kcSignUpClass!}">
+                  <div id="kc-info-wrapper" class="${properties.kcInfoAreaWrapperClass!}">
+                      <#nested "info">
+                  </div>
+              </div>
+          </#if>
         </div>
+      </div>
+
     </div>
+  </div>
 </body>
 </html>
 </#macro>
diff --git a/themes/src/main/resources/theme/base/login/terms.ftl b/themes/src/main/resources/theme/base/login/terms.ftl
index 6762081..daed9ec 100755
--- a/themes/src/main/resources/theme/base/login/terms.ftl
+++ b/themes/src/main/resources/theme/base/login/terms.ftl
@@ -1,9 +1,7 @@
 <#import "template.ftl" as layout>
 <@layout.registrationLayout displayMessage=false; section>
-    <#if section = "title">
-    ${msg("termsTitle")}
-    <#elseif section = "header">
-    ${msg("termsTitleHtml")}
+    <#if section = "header">
+        ${msg("termsTitle")}
     <#elseif section = "form">
     <div id="kc-terms-text">
         ${msg("termsText")?no_esc}
@@ -12,5 +10,6 @@
         <input class="${properties.kcButtonClass!} ${properties.kcButtonPrimaryClass!} ${properties.kcButtonLargeClass!}" name="accept" id="kc-accept" type="submit" value="${msg("doAccept")}"/>
         <input class="${properties.kcButtonClass!} ${properties.kcButtonDefaultClass!} ${properties.kcButtonLargeClass!}" name="cancel" id="kc-decline" type="submit" value="${msg("doDecline")}"/>
     </form>
+    <div class="clearfix"></div>
     </#if>
-</@layout.registrationLayout>
\ No newline at end of file
+</@layout.registrationLayout>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/_config.yml b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/_config.yml
new file mode 100644
index 0000000..6f5d5cc
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/_config.yml
@@ -0,0 +1,17 @@
+# Site settings
+alert-message: ' and <a href="http://getbootstrap.com" class="alert-link">http://getbootstrap.com</a>.'
+category-list: [Widgets, Charts, Layouts, Alternate Layouts]
+company: 'Red Hat&reg;'
+title: 'Red Hat&reg; Common User Experience'
+title-product: 'Red Hat&reg; Common User Experience'
+url-css-additions: '../dist/css/rcue-additions.min.css'
+url-css-extra: 'tests.css'
+url-css-main: '../dist/css/rcue.min.css'
+url-img: 'img/'
+url-js: '../components/patternfly/dist/js/patternfly.min.js'
+navbar-pf-navbar-brand-icon: true
+navbar-pf-alt-navbar-brand-icon: true
+navbar-logo-icon: 'dist/img/logo.svg'
+navbar-logo-alt-icon: 'dist/img/logo.svg'
+navbar-brand-icon: 'dist/img/brand.svg'
+navbar-brand-alt-icon: 'dist/img/brand-alt.svg'
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue.css b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue.css
new file mode 100644
index 0000000..44e7c20
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue.css
@@ -0,0 +1,10662 @@
+/* Red Hat Common User Experience (RCUE) */
+/* PatternFly */
+@font-face {
+  font-family: "Open Sans";
+  font-style: normal;
+  font-weight: 300;
+  src: url("../fonts/OpenSans-Light-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Light"), local("OpenSans-Light"), url("../fonts/OpenSans-Light-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-Light-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-Light-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-Light-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-Light-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: normal;
+  font-weight: 400;
+  src: url("../fonts/OpenSans-Regular-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans"), local("OpenSans"), url("../fonts/OpenSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-Regular-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-Regular-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-Regular-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-Regular-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: italic;
+  font-weight: 300;
+  src: url("../fonts/OpenSans-LightItalic-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Light Italic"), local("OpenSansLight-Italic"), url("../fonts/OpenSans-LightItalic-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-LightItalic-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-LightItalic-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-LightItalic-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-LightItalic-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: italic;
+  font-weight: 400;
+  src: url("../fonts/OpenSans-Italic-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Italic"), local("OpenSans-Italic"), url("../fonts/OpenSans-Italic-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-Italic-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-Italic-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-Italic-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-Italic-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: normal;
+  font-weight: 600;
+  src: url("../fonts/OpenSans-Semibold-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Semibold"), local("OpenSans-Semibold-webfont"), url("../fonts/OpenSans-Semibold-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-Semibold-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-Semibold-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-Semibold-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-Semibold-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: italic;
+  font-weight: 600;
+  src: url("../fonts/OpenSans-SemiboldItalic-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Semibold Italic"), local("OpenSans-SemiboldItalic-webfont"), url("../fonts/OpenSans-SemiboldItalic-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-SemiboldItalic-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-SemiboldItalic-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-SemiboldItalic-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-SemiboldItalic-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: normal;
+  font-weight: 700;
+  src: url("../fonts/OpenSans-Bold-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("../fonts/OpenSans-Bold-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-Bold-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-Bold-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-Bold-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-Bold-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: italic;
+  font-weight: 700;
+  src: url("../fonts/OpenSans-BoldItalic-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Bold Italic"), local("OpenSans-BoldItalic"), url("../fonts/OpenSans-BoldItalic-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-BoldItalic-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-BoldItalic-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-BoldItalic-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-BoldItalic-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: italic;
+  font-weight: 800;
+  src: url("../fonts/OpenSans-ExtraBoldItalic-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Extrabold Italic"), local("OpenSans-ExtraboldItalic"), url("../fonts/OpenSans-ExtraBoldItalic-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-ExtraBoldItalic-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-ExtraBoldItalic-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-ExtraBoldItalic-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-ExtraBoldItalic-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+@font-face {
+  font-family: "Open Sans";
+  font-style: normal;
+  font-weight: 800;
+  src: url("../fonts/OpenSans-ExtraBold-webfont.eot");
+  /* IE9 Compat Modes */
+  src: local("Open Sans Extrabold"), local("OpenSans-Extrabold"), url("../fonts/OpenSans-ExtraBold-webfont.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */ url("../fonts/OpenSans-ExtraBold-webfont.woff2") format("woff2"), /* Super Modern Browsers */ url("../fonts/OpenSans-ExtraBold-webfont.woff") format("woff"), /* Modern Browsers */ url("../fonts/OpenSans-ExtraBold-webfont.ttf") format("truetype"), /* Safari, Android, iOS */ url("../fonts/OpenSans-ExtraBold-webfont.svg#OpenSans") format("svg");
+  /* Legacy iOS */
+}
+/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
+html {
+  font-family: sans-serif;
+  -ms-text-size-adjust: 100%;
+  -webkit-text-size-adjust: 100%;
+}
+body {
+  margin: 0;
+}
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+main,
+menu,
+nav,
+section,
+summary {
+  display: block;
+}
+audio,
+canvas,
+progress,
+video {
+  display: inline-block;
+  vertical-align: baseline;
+}
+audio:not([controls]) {
+  display: none;
+  height: 0;
+}
+[hidden],
+template {
+  display: none;
+}
+a {
+  background-color: transparent;
+}
+a:active,
+a:hover {
+  outline: 0;
+}
+abbr[title] {
+  border-bottom: 1px dotted;
+}
+b,
+strong {
+  font-weight: bold;
+}
+dfn {
+  font-style: italic;
+}
+h1 {
+  font-size: 2em;
+  margin: 0.67em 0;
+}
+mark {
+  background: #ff0;
+  color: #000;
+}
+small {
+  font-size: 80%;
+}
+sub,
+sup {
+  font-size: 75%;
+  line-height: 0;
+  position: relative;
+  vertical-align: baseline;
+}
+sup {
+  top: -0.5em;
+}
+sub {
+  bottom: -0.25em;
+}
+img {
+  border: 0;
+}
+svg:not(:root) {
+  overflow: hidden;
+}
+figure {
+  margin: 1em 40px;
+}
+hr {
+  box-sizing: content-box;
+  height: 0;
+}
+pre {
+  overflow: auto;
+}
+code,
+kbd,
+pre,
+samp {
+  font-family: monospace, monospace;
+  font-size: 1em;
+}
+button,
+input,
+optgroup,
+select,
+textarea {
+  color: inherit;
+  font: inherit;
+  margin: 0;
+}
+button {
+  overflow: visible;
+}
+button,
+select {
+  text-transform: none;
+}
+button,
+html input[type="button"],
+input[type="reset"],
+input[type="submit"] {
+  -webkit-appearance: button;
+  cursor: pointer;
+}
+button[disabled],
+html input[disabled] {
+  cursor: default;
+}
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+  border: 0;
+  padding: 0;
+}
+input {
+  line-height: normal;
+}
+input[type="checkbox"],
+input[type="radio"] {
+  box-sizing: border-box;
+  padding: 0;
+}
+input[type="number"]::-webkit-inner-spin-button,
+input[type="number"]::-webkit-outer-spin-button {
+  height: auto;
+}
+input[type="search"] {
+  -webkit-appearance: textfield;
+  box-sizing: content-box;
+}
+input[type="search"]::-webkit-search-cancel-button,
+input[type="search"]::-webkit-search-decoration {
+  -webkit-appearance: none;
+}
+fieldset {
+  border: 1px solid #c0c0c0;
+  margin: 0 2px;
+  padding: 0.35em 0.625em 0.75em;
+}
+legend {
+  border: 0;
+  padding: 0;
+}
+textarea {
+  overflow: auto;
+}
+optgroup {
+  font-weight: bold;
+}
+table {
+  border-collapse: collapse;
+  border-spacing: 0;
+}
+td,
+th {
+  padding: 0;
+}
+/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
+@media print {
+  *,
+  *:before,
+  *:after {
+    background: transparent !important;
+    color: #000 !important;
+    box-shadow: none !important;
+    text-shadow: none !important;
+  }
+  a,
+  a:visited {
+    text-decoration: underline;
+  }
+  a[href]:after {
+    content: " (" attr(href) ")";
+  }
+  abbr[title]:after {
+    content: " (" attr(title) ")";
+  }
+  a[href^="#"]:after,
+  a[href^="javascript:"]:after {
+    content: "";
+  }
+  pre,
+  blockquote {
+    border: 1px solid #999;
+    page-break-inside: avoid;
+  }
+  thead {
+    display: table-header-group;
+  }
+  tr,
+  img {
+    page-break-inside: avoid;
+  }
+  img {
+    max-width: 100% !important;
+  }
+  p,
+  h2,
+  h3 {
+    orphans: 3;
+    widows: 3;
+  }
+  h2,
+  h3 {
+    page-break-after: avoid;
+  }
+  .navbar {
+    display: none;
+  }
+  .btn > .caret,
+  .dropup > .btn > .caret {
+    border-top-color: #000 !important;
+  }
+  .label {
+    border: 1px solid #000;
+  }
+  .table {
+    border-collapse: collapse !important;
+  }
+  .table td,
+  .table th {
+    background-color: #fff !important;
+  }
+  .table-bordered th,
+  .table-bordered td {
+    border: 1px solid #ddd !important;
+  }
+}
+@font-face {
+  font-family: 'Glyphicons Halflings';
+  src: url('../fonts/glyphicons-halflings-regular.eot');
+  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
+}
+.glyphicon {
+  position: relative;
+  top: 1px;
+  display: inline-block;
+  font-family: 'Glyphicons Halflings';
+  font-style: normal;
+  font-weight: normal;
+  line-height: 1;
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+}
+.glyphicon-asterisk:before {
+  content: "\002a";
+}
+.glyphicon-plus:before {
+  content: "\002b";
+}
+.glyphicon-euro:before,
+.glyphicon-eur:before {
+  content: "\20ac";
+}
+.glyphicon-minus:before {
+  content: "\2212";
+}
+.glyphicon-cloud:before {
+  content: "\2601";
+}
+.glyphicon-envelope:before {
+  content: "\2709";
+}
+.glyphicon-pencil:before {
+  content: "\270f";
+}
+.glyphicon-glass:before {
+  content: "\e001";
+}
+.glyphicon-music:before {
+  content: "\e002";
+}
+.glyphicon-search:before {
+  content: "\e003";
+}
+.glyphicon-heart:before {
+  content: "\e005";
+}
+.glyphicon-star:before {
+  content: "\e006";
+}
+.glyphicon-star-empty:before {
+  content: "\e007";
+}
+.glyphicon-user:before {
+  content: "\e008";
+}
+.glyphicon-film:before {
+  content: "\e009";
+}
+.glyphicon-th-large:before {
+  content: "\e010";
+}
+.glyphicon-th:before {
+  content: "\e011";
+}
+.glyphicon-th-list:before {
+  content: "\e012";
+}
+.glyphicon-ok:before {
+  content: "\e013";
+}
+.glyphicon-remove:before {
+  content: "\e014";
+}
+.glyphicon-zoom-in:before {
+  content: "\e015";
+}
+.glyphicon-zoom-out:before {
+  content: "\e016";
+}
+.glyphicon-off:before {
+  content: "\e017";
+}
+.glyphicon-signal:before {
+  content: "\e018";
+}
+.glyphicon-cog:before {
+  content: "\e019";
+}
+.glyphicon-trash:before {
+  content: "\e020";
+}
+.glyphicon-home:before {
+  content: "\e021";
+}
+.glyphicon-file:before {
+  content: "\e022";
+}
+.glyphicon-time:before {
+  content: "\e023";
+}
+.glyphicon-road:before {
+  content: "\e024";
+}
+.glyphicon-download-alt:before {
+  content: "\e025";
+}
+.glyphicon-download:before {
+  content: "\e026";
+}
+.glyphicon-upload:before {
+  content: "\e027";
+}
+.glyphicon-inbox:before {
+  content: "\e028";
+}
+.glyphicon-play-circle:before {
+  content: "\e029";
+}
+.glyphicon-repeat:before {
+  content: "\e030";
+}
+.glyphicon-refresh:before {
+  content: "\e031";
+}
+.glyphicon-list-alt:before {
+  content: "\e032";
+}
+.glyphicon-lock:before {
+  content: "\e033";
+}
+.glyphicon-flag:before {
+  content: "\e034";
+}
+.glyphicon-headphones:before {
+  content: "\e035";
+}
+.glyphicon-volume-off:before {
+  content: "\e036";
+}
+.glyphicon-volume-down:before {
+  content: "\e037";
+}
+.glyphicon-volume-up:before {
+  content: "\e038";
+}
+.glyphicon-qrcode:before {
+  content: "\e039";
+}
+.glyphicon-barcode:before {
+  content: "\e040";
+}
+.glyphicon-tag:before {
+  content: "\e041";
+}
+.glyphicon-tags:before {
+  content: "\e042";
+}
+.glyphicon-book:before {
+  content: "\e043";
+}
+.glyphicon-bookmark:before {
+  content: "\e044";
+}
+.glyphicon-print:before {
+  content: "\e045";
+}
+.glyphicon-camera:before {
+  content: "\e046";
+}
+.glyphicon-font:before {
+  content: "\e047";
+}
+.glyphicon-bold:before {
+  content: "\e048";
+}
+.glyphicon-italic:before {
+  content: "\e049";
+}
+.glyphicon-text-height:before {
+  content: "\e050";
+}
+.glyphicon-text-width:before {
+  content: "\e051";
+}
+.glyphicon-align-left:before {
+  content: "\e052";
+}
+.glyphicon-align-center:before {
+  content: "\e053";
+}
+.glyphicon-align-right:before {
+  content: "\e054";
+}
+.glyphicon-align-justify:before {
+  content: "\e055";
+}
+.glyphicon-list:before {
+  content: "\e056";
+}
+.glyphicon-indent-left:before {
+  content: "\e057";
+}
+.glyphicon-indent-right:before {
+  content: "\e058";
+}
+.glyphicon-facetime-video:before {
+  content: "\e059";
+}
+.glyphicon-picture:before {
+  content: "\e060";
+}
+.glyphicon-map-marker:before {
+  content: "\e062";
+}
+.glyphicon-adjust:before {
+  content: "\e063";
+}
+.glyphicon-tint:before {
+  content: "\e064";
+}
+.glyphicon-edit:before {
+  content: "\e065";
+}
+.glyphicon-share:before {
+  content: "\e066";
+}
+.glyphicon-check:before {
+  content: "\e067";
+}
+.glyphicon-move:before {
+  content: "\e068";
+}
+.glyphicon-step-backward:before {
+  content: "\e069";
+}
+.glyphicon-fast-backward:before {
+  content: "\e070";
+}
+.glyphicon-backward:before {
+  content: "\e071";
+}
+.glyphicon-play:before {
+  content: "\e072";
+}
+.glyphicon-pause:before {
+  content: "\e073";
+}
+.glyphicon-stop:before {
+  content: "\e074";
+}
+.glyphicon-forward:before {
+  content: "\e075";
+}
+.glyphicon-fast-forward:before {
+  content: "\e076";
+}
+.glyphicon-step-forward:before {
+  content: "\e077";
+}
+.glyphicon-eject:before {
+  content: "\e078";
+}
+.glyphicon-chevron-left:before {
+  content: "\e079";
+}
+.glyphicon-chevron-right:before {
+  content: "\e080";
+}
+.glyphicon-plus-sign:before {
+  content: "\e081";
+}
+.glyphicon-minus-sign:before {
+  content: "\e082";
+}
+.glyphicon-remove-sign:before {
+  content: "\e083";
+}
+.glyphicon-ok-sign:before {
+  content: "\e084";
+}
+.glyphicon-question-sign:before {
+  content: "\e085";
+}
+.glyphicon-info-sign:before {
+  content: "\e086";
+}
+.glyphicon-screenshot:before {
+  content: "\e087";
+}
+.glyphicon-remove-circle:before {
+  content: "\e088";
+}
+.glyphicon-ok-circle:before {
+  content: "\e089";
+}
+.glyphicon-ban-circle:before {
+  content: "\e090";
+}
+.glyphicon-arrow-left:before {
+  content: "\e091";
+}
+.glyphicon-arrow-right:before {
+  content: "\e092";
+}
+.glyphicon-arrow-up:before {
+  content: "\e093";
+}
+.glyphicon-arrow-down:before {
+  content: "\e094";
+}
+.glyphicon-share-alt:before {
+  content: "\e095";
+}
+.glyphicon-resize-full:before {
+  content: "\e096";
+}
+.glyphicon-resize-small:before {
+  content: "\e097";
+}
+.glyphicon-exclamation-sign:before {
+  content: "\e101";
+}
+.glyphicon-gift:before {
+  content: "\e102";
+}
+.glyphicon-leaf:before {
+  content: "\e103";
+}
+.glyphicon-fire:before {
+  content: "\e104";
+}
+.glyphicon-eye-open:before {
+  content: "\e105";
+}
+.glyphicon-eye-close:before {
+  content: "\e106";
+}
+.glyphicon-warning-sign:before {
+  content: "\e107";
+}
+.glyphicon-plane:before {
+  content: "\e108";
+}
+.glyphicon-calendar:before {
+  content: "\e109";
+}
+.glyphicon-random:before {
+  content: "\e110";
+}
+.glyphicon-comment:before {
+  content: "\e111";
+}
+.glyphicon-magnet:before {
+  content: "\e112";
+}
+.glyphicon-chevron-up:before {
+  content: "\e113";
+}
+.glyphicon-chevron-down:before {
+  content: "\e114";
+}
+.glyphicon-retweet:before {
+  content: "\e115";
+}
+.glyphicon-shopping-cart:before {
+  content: "\e116";
+}
+.glyphicon-folder-close:before {
+  content: "\e117";
+}
+.glyphicon-folder-open:before {
+  content: "\e118";
+}
+.glyphicon-resize-vertical:before {
+  content: "\e119";
+}
+.glyphicon-resize-horizontal:before {
+  content: "\e120";
+}
+.glyphicon-hdd:before {
+  content: "\e121";
+}
+.glyphicon-bullhorn:before {
+  content: "\e122";
+}
+.glyphicon-bell:before {
+  content: "\e123";
+}
+.glyphicon-certificate:before {
+  content: "\e124";
+}
+.glyphicon-thumbs-up:before {
+  content: "\e125";
+}
+.glyphicon-thumbs-down:before {
+  content: "\e126";
+}
+.glyphicon-hand-right:before {
+  content: "\e127";
+}
+.glyphicon-hand-left:before {
+  content: "\e128";
+}
+.glyphicon-hand-up:before {
+  content: "\e129";
+}
+.glyphicon-hand-down:before {
+  content: "\e130";
+}
+.glyphicon-circle-arrow-right:before {
+  content: "\e131";
+}
+.glyphicon-circle-arrow-left:before {
+  content: "\e132";
+}
+.glyphicon-circle-arrow-up:before {
+  content: "\e133";
+}
+.glyphicon-circle-arrow-down:before {
+  content: "\e134";
+}
+.glyphicon-globe:before {
+  content: "\e135";
+}
+.glyphicon-wrench:before {
+  content: "\e136";
+}
+.glyphicon-tasks:before {
+  content: "\e137";
+}
+.glyphicon-filter:before {
+  content: "\e138";
+}
+.glyphicon-briefcase:before {
+  content: "\e139";
+}
+.glyphicon-fullscreen:before {
+  content: "\e140";
+}
+.glyphicon-dashboard:before {
+  content: "\e141";
+}
+.glyphicon-paperclip:before {
+  content: "\e142";
+}
+.glyphicon-heart-empty:before {
+  content: "\e143";
+}
+.glyphicon-link:before {
+  content: "\e144";
+}
+.glyphicon-phone:before {
+  content: "\e145";
+}
+.glyphicon-pushpin:before {
+  content: "\e146";
+}
+.glyphicon-usd:before {
+  content: "\e148";
+}
+.glyphicon-gbp:before {
+  content: "\e149";
+}
+.glyphicon-sort:before {
+  content: "\e150";
+}
+.glyphicon-sort-by-alphabet:before {
+  content: "\e151";
+}
+.glyphicon-sort-by-alphabet-alt:before {
+  content: "\e152";
+}
+.glyphicon-sort-by-order:before {
+  content: "\e153";
+}
+.glyphicon-sort-by-order-alt:before {
+  content: "\e154";
+}
+.glyphicon-sort-by-attributes:before {
+  content: "\e155";
+}
+.glyphicon-sort-by-attributes-alt:before {
+  content: "\e156";
+}
+.glyphicon-unchecked:before {
+  content: "\e157";
+}
+.glyphicon-expand:before {
+  content: "\e158";
+}
+.glyphicon-collapse-down:before {
+  content: "\e159";
+}
+.glyphicon-collapse-up:before {
+  content: "\e160";
+}
+.glyphicon-log-in:before {
+  content: "\e161";
+}
+.glyphicon-flash:before {
+  content: "\e162";
+}
+.glyphicon-log-out:before {
+  content: "\e163";
+}
+.glyphicon-new-window:before {
+  content: "\e164";
+}
+.glyphicon-record:before {
+  content: "\e165";
+}
+.glyphicon-save:before {
+  content: "\e166";
+}
+.glyphicon-open:before {
+  content: "\e167";
+}
+.glyphicon-saved:before {
+  content: "\e168";
+}
+.glyphicon-import:before {
+  content: "\e169";
+}
+.glyphicon-export:before {
+  content: "\e170";
+}
+.glyphicon-send:before {
+  content: "\e171";
+}
+.glyphicon-floppy-disk:before {
+  content: "\e172";
+}
+.glyphicon-floppy-saved:before {
+  content: "\e173";
+}
+.glyphicon-floppy-remove:before {
+  content: "\e174";
+}
+.glyphicon-floppy-save:before {
+  content: "\e175";
+}
+.glyphicon-floppy-open:before {
+  content: "\e176";
+}
+.glyphicon-credit-card:before {
+  content: "\e177";
+}
+.glyphicon-transfer:before {
+  content: "\e178";
+}
+.glyphicon-cutlery:before {
+  content: "\e179";
+}
+.glyphicon-header:before {
+  content: "\e180";
+}
+.glyphicon-compressed:before {
+  content: "\e181";
+}
+.glyphicon-earphone:before {
+  content: "\e182";
+}
+.glyphicon-phone-alt:before {
+  content: "\e183";
+}
+.glyphicon-tower:before {
+  content: "\e184";
+}
+.glyphicon-stats:before {
+  content: "\e185";
+}
+.glyphicon-sd-video:before {
+  content: "\e186";
+}
+.glyphicon-hd-video:before {
+  content: "\e187";
+}
+.glyphicon-subtitles:before {
+  content: "\e188";
+}
+.glyphicon-sound-stereo:before {
+  content: "\e189";
+}
+.glyphicon-sound-dolby:before {
+  content: "\e190";
+}
+.glyphicon-sound-5-1:before {
+  content: "\e191";
+}
+.glyphicon-sound-6-1:before {
+  content: "\e192";
+}
+.glyphicon-sound-7-1:before {
+  content: "\e193";
+}
+.glyphicon-copyright-mark:before {
+  content: "\e194";
+}
+.glyphicon-registration-mark:before {
+  content: "\e195";
+}
+.glyphicon-cloud-download:before {
+  content: "\e197";
+}
+.glyphicon-cloud-upload:before {
+  content: "\e198";
+}
+.glyphicon-tree-conifer:before {
+  content: "\e199";
+}
+.glyphicon-tree-deciduous:before {
+  content: "\e200";
+}
+.glyphicon-cd:before {
+  content: "\e201";
+}
+.glyphicon-save-file:before {
+  content: "\e202";
+}
+.glyphicon-open-file:before {
+  content: "\e203";
+}
+.glyphicon-level-up:before {
+  content: "\e204";
+}
+.glyphicon-copy:before {
+  content: "\e205";
+}
+.glyphicon-paste:before {
+  content: "\e206";
+}
+.glyphicon-alert:before {
+  content: "\e209";
+}
+.glyphicon-equalizer:before {
+  content: "\e210";
+}
+.glyphicon-king:before {
+  content: "\e211";
+}
+.glyphicon-queen:before {
+  content: "\e212";
+}
+.glyphicon-pawn:before {
+  content: "\e213";
+}
+.glyphicon-bishop:before {
+  content: "\e214";
+}
+.glyphicon-knight:before {
+  content: "\e215";
+}
+.glyphicon-baby-formula:before {
+  content: "\e216";
+}
+.glyphicon-tent:before {
+  content: "\26fa";
+}
+.glyphicon-blackboard:before {
+  content: "\e218";
+}
+.glyphicon-bed:before {
+  content: "\e219";
+}
+.glyphicon-apple:before {
+  content: "\f8ff";
+}
+.glyphicon-erase:before {
+  content: "\e221";
+}
+.glyphicon-hourglass:before {
+  content: "\231b";
+}
+.glyphicon-lamp:before {
+  content: "\e223";
+}
+.glyphicon-duplicate:before {
+  content: "\e224";
+}
+.glyphicon-piggy-bank:before {
+  content: "\e225";
+}
+.glyphicon-scissors:before {
+  content: "\e226";
+}
+.glyphicon-bitcoin:before {
+  content: "\e227";
+}
+.glyphicon-btc:before {
+  content: "\e227";
+}
+.glyphicon-xbt:before {
+  content: "\e227";
+}
+.glyphicon-yen:before {
+  content: "\00a5";
+}
+.glyphicon-jpy:before {
+  content: "\00a5";
+}
+.glyphicon-ruble:before {
+  content: "\20bd";
+}
+.glyphicon-rub:before {
+  content: "\20bd";
+}
+.glyphicon-scale:before {
+  content: "\e230";
+}
+.glyphicon-ice-lolly:before {
+  content: "\e231";
+}
+.glyphicon-ice-lolly-tasted:before {
+  content: "\e232";
+}
+.glyphicon-education:before {
+  content: "\e233";
+}
+.glyphicon-option-horizontal:before {
+  content: "\e234";
+}
+.glyphicon-option-vertical:before {
+  content: "\e235";
+}
+.glyphicon-menu-hamburger:before {
+  content: "\e236";
+}
+.glyphicon-modal-window:before {
+  content: "\e237";
+}
+.glyphicon-oil:before {
+  content: "\e238";
+}
+.glyphicon-grain:before {
+  content: "\e239";
+}
+.glyphicon-sunglasses:before {
+  content: "\e240";
+}
+.glyphicon-text-size:before {
+  content: "\e241";
+}
+.glyphicon-text-color:before {
+  content: "\e242";
+}
+.glyphicon-text-background:before {
+  content: "\e243";
+}
+.glyphicon-object-align-top:before {
+  content: "\e244";
+}
+.glyphicon-object-align-bottom:before {
+  content: "\e245";
+}
+.glyphicon-object-align-horizontal:before {
+  content: "\e246";
+}
+.glyphicon-object-align-left:before {
+  content: "\e247";
+}
+.glyphicon-object-align-vertical:before {
+  content: "\e248";
+}
+.glyphicon-object-align-right:before {
+  content: "\e249";
+}
+.glyphicon-triangle-right:before {
+  content: "\e250";
+}
+.glyphicon-triangle-left:before {
+  content: "\e251";
+}
+.glyphicon-triangle-bottom:before {
+  content: "\e252";
+}
+.glyphicon-triangle-top:before {
+  content: "\e253";
+}
+.glyphicon-console:before {
+  content: "\e254";
+}
+.glyphicon-superscript:before {
+  content: "\e255";
+}
+.glyphicon-subscript:before {
+  content: "\e256";
+}
+.glyphicon-menu-left:before {
+  content: "\e257";
+}
+.glyphicon-menu-right:before {
+  content: "\e258";
+}
+.glyphicon-menu-down:before {
+  content: "\e259";
+}
+.glyphicon-menu-up:before {
+  content: "\e260";
+}
+* {
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box;
+}
+*:before,
+*:after {
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box;
+}
+html {
+  font-size: 10px;
+  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
+}
+body {
+  font-family: "Open Sans", Helvetica, Arial, sans-serif;
+  font-size: 12px;
+  line-height: 1.66666667;
+  color: #363636;
+  background-color: #fff;
+}
+input,
+button,
+select,
+textarea {
+  font-family: inherit;
+  font-size: inherit;
+  line-height: inherit;
+}
+a {
+  color: #0088ce;
+  text-decoration: none;
+}
+a:hover,
+a:focus {
+  color: #00659c;
+  text-decoration: underline;
+}
+a:focus {
+  outline: 5px auto -webkit-focus-ring-color;
+  outline-offset: -2px;
+}
+figure {
+  margin: 0;
+}
+img {
+  vertical-align: middle;
+}
+.img-responsive,
+.thumbnail > img,
+.thumbnail a > img,
+.carousel-inner > .item > img,
+.carousel-inner > .item > a > img {
+  display: block;
+  max-width: 100%;
+  height: auto;
+}
+.img-rounded {
+  border-radius: 1px;
+}
+.img-thumbnail {
+  padding: 4px;
+  line-height: 1.66666667;
+  background-color: #fff;
+  border: 1px solid #ddd;
+  border-radius: 1px;
+  -webkit-transition: all 0.2s ease-in-out;
+  -o-transition: all 0.2s ease-in-out;
+  transition: all 0.2s ease-in-out;
+  display: inline-block;
+  max-width: 100%;
+  height: auto;
+}
+.img-circle {
+  border-radius: 50%;
+}
+hr {
+  margin-top: 20px;
+  margin-bottom: 20px;
+  border: 0;
+  border-top: 1px solid #f1f1f1;
+}
+.sr-only {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+}
+.sr-only-focusable:active,
+.sr-only-focusable:focus {
+  position: static;
+  width: auto;
+  height: auto;
+  margin: 0;
+  overflow: visible;
+  clip: auto;
+}
+[role="button"] {
+  cursor: pointer;
+}
+h1,
+h2,
+h3,
+h4,
+h5,
+h6,
+.h1,
+.h2,
+.h3,
+.h4,
+.h5,
+.h6 {
+  font-family: inherit;
+  font-weight: 500;
+  line-height: 1.1;
+  color: inherit;
+}
+h1 small,
+h2 small,
+h3 small,
+h4 small,
+h5 small,
+h6 small,
+.h1 small,
+.h2 small,
+.h3 small,
+.h4 small,
+.h5 small,
+.h6 small,
+h1 .small,
+h2 .small,
+h3 .small,
+h4 .small,
+h5 .small,
+h6 .small,
+.h1 .small,
+.h2 .small,
+.h3 .small,
+.h4 .small,
+.h5 .small,
+.h6 .small {
+  font-weight: normal;
+  line-height: 1;
+  color: #9c9c9c;
+}
+h1,
+.h1,
+h2,
+.h2,
+h3,
+.h3 {
+  margin-top: 20px;
+  margin-bottom: 10px;
+}
+h1 small,
+.h1 small,
+h2 small,
+.h2 small,
+h3 small,
+.h3 small,
+h1 .small,
+.h1 .small,
+h2 .small,
+.h2 .small,
+h3 .small,
+.h3 .small {
+  font-size: 65%;
+}
+h4,
+.h4,
+h5,
+.h5,
+h6,
+.h6 {
+  margin-top: 10px;
+  margin-bottom: 10px;
+}
+h4 small,
+.h4 small,
+h5 small,
+.h5 small,
+h6 small,
+.h6 small,
+h4 .small,
+.h4 .small,
+h5 .small,
+.h5 .small,
+h6 .small,
+.h6 .small {
+  font-size: 75%;
+}
+h1,
+.h1 {
+  font-size: 24px;
+}
+h2,
+.h2 {
+  font-size: 22px;
+}
+h3,
+.h3 {
+  font-size: 16px;
+}
+h4,
+.h4 {
+  font-size: 15px;
+}
+h5,
+.h5 {
+  font-size: 13px;
+}
+h6,
+.h6 {
+  font-size: 11px;
+}
+p {
+  margin: 0 0 10px;
+}
+.lead {
+  margin-bottom: 20px;
+  font-size: 13px;
+  font-weight: 300;
+  line-height: 1.4;
+}
+@media (min-width: 768px) {
+  .lead {
+    font-size: 18px;
+  }
+}
+small,
+.small {
+  font-size: 91%;
+}
+mark,
+.mark {
+  background-color: #fcf8e3;
+  padding: .2em;
+}
+.text-left {
+  text-align: left;
+}
+.text-right {
+  text-align: right;
+}
+.text-center {
+  text-align: center;
+}
+.text-justify {
+  text-align: justify;
+}
+.text-nowrap {
+  white-space: nowrap;
+}
+.text-lowercase {
+  text-transform: lowercase;
+}
+.text-uppercase {
+  text-transform: uppercase;
+}
+.text-capitalize {
+  text-transform: capitalize;
+}
+.text-muted {
+  color: #9c9c9c;
+}
+.text-primary {
+  color: #39a5dc;
+}
+a.text-primary:hover,
+a.text-primary:focus {
+  color: #228bc0;
+}
+.text-success {
+  color: #3c763d;
+}
+a.text-success:hover,
+a.text-success:focus {
+  color: #2b542c;
+}
+.text-info {
+  color: #31708f;
+}
+a.text-info:hover,
+a.text-info:focus {
+  color: #245269;
+}
+.text-warning {
+  color: #ec7a08;
+}
+a.text-warning:hover,
+a.text-warning:focus {
+  color: #bb6106;
+}
+.text-danger {
+  color: #cc0000;
+}
+a.text-danger:hover,
+a.text-danger:focus {
+  color: #990000;
+}
+.bg-primary {
+  color: #fff;
+  background-color: #39a5dc;
+}
+a.bg-primary:hover,
+a.bg-primary:focus {
+  background-color: #228bc0;
+}
+.bg-success {
+  background-color: #dff0d8;
+}
+a.bg-success:hover,
+a.bg-success:focus {
+  background-color: #c1e2b3;
+}
+.bg-info {
+  background-color: #d9edf7;
+}
+a.bg-info:hover,
+a.bg-info:focus {
+  background-color: #afd9ee;
+}
+.bg-warning {
+  background-color: #fcf8e3;
+}
+a.bg-warning:hover,
+a.bg-warning:focus {
+  background-color: #f7ecb5;
+}
+.bg-danger {
+  background-color: #f2dede;
+}
+a.bg-danger:hover,
+a.bg-danger:focus {
+  background-color: #e4b9b9;
+}
+.page-header {
+  padding-bottom: 9px;
+  margin: 40px 0 20px;
+  border-bottom: 1px solid #f1f1f1;
+}
+ul,
+ol {
+  margin-top: 0;
+  margin-bottom: 10px;
+}
+ul ul,
+ol ul,
+ul ol,
+ol ol {
+  margin-bottom: 0;
+}
+.list-unstyled {
+  padding-left: 0;
+  list-style: none;
+}
+.list-inline {
+  padding-left: 0;
+  list-style: none;
+  margin-left: -5px;
+}
+.list-inline > li {
+  display: inline-block;
+  padding-left: 5px;
+  padding-right: 5px;
+}
+dl {
+  margin-top: 0;
+  margin-bottom: 20px;
+}
+dt,
+dd {
+  line-height: 1.66666667;
+}
+dt {
+  font-weight: bold;
+}
+dd {
+  margin-left: 0;
+}
+@media (min-width: 768px) {
+  .dl-horizontal dt {
+    float: left;
+    width: 160px;
+    clear: left;
+    text-align: right;
+    overflow: hidden;
+    text-overflow: ellipsis;
+    white-space: nowrap;
+  }
+  .dl-horizontal dd {
+    margin-left: 180px;
+  }
+}
+abbr[title],
+abbr[data-original-title] {
+  cursor: help;
+  border-bottom: 1px dotted #9c9c9c;
+}
+.initialism {
+  font-size: 90%;
+  text-transform: uppercase;
+}
+blockquote {
+  padding: 10px 20px;
+  margin: 0 0 20px;
+  font-size: 15px;
+  border-left: 5px solid #f1f1f1;
+}
+blockquote p:last-child,
+blockquote ul:last-child,
+blockquote ol:last-child {
+  margin-bottom: 0;
+}
+blockquote footer,
+blockquote small,
+blockquote .small {
+  display: block;
+  font-size: 80%;
+  line-height: 1.66666667;
+  color: #9c9c9c;
+}
+blockquote footer:before,
+blockquote small:before,
+blockquote .small:before {
+  content: '\2014 \00A0';
+}
+.blockquote-reverse,
+blockquote.pull-right {
+  padding-right: 15px;
+  padding-left: 0;
+  border-right: 5px solid #f1f1f1;
+  border-left: 0;
+  text-align: right;
+}
+.blockquote-reverse footer:before,
+blockquote.pull-right footer:before,
+.blockquote-reverse small:before,
+blockquote.pull-right small:before,
+.blockquote-reverse .small:before,
+blockquote.pull-right .small:before {
+  content: '';
+}
+.blockquote-reverse footer:after,
+blockquote.pull-right footer:after,
+.blockquote-reverse small:after,
+blockquote.pull-right small:after,
+.blockquote-reverse .small:after,
+blockquote.pull-right .small:after {
+  content: '\00A0 \2014';
+}
+address {
+  margin-bottom: 20px;
+  font-style: normal;
+  line-height: 1.66666667;
+}
+code,
+kbd,
+pre,
+samp {
+  font-family: Menlo, Monaco, Consolas, monospace;
+}
+code {
+  padding: 2px 4px;
+  font-size: 90%;
+  color: #004368;
+  background-color: #def3ff;
+  border-radius: 1px;
+}
+kbd {
+  padding: 2px 4px;
+  font-size: 90%;
+  color: #fff;
+  background-color: #333;
+  border-radius: 1px;
+  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+kbd kbd {
+  padding: 0;
+  font-size: 100%;
+  font-weight: bold;
+  box-shadow: none;
+}
+pre {
+  display: block;
+  padding: 9.5px;
+  margin: 0 0 10px;
+  font-size: 11px;
+  line-height: 1.66666667;
+  word-break: break-all;
+  word-wrap: break-word;
+  color: #363636;
+  background-color: #fafafa;
+  border: 1px solid #ccc;
+  border-radius: 1px;
+}
+pre code {
+  padding: 0;
+  font-size: inherit;
+  color: inherit;
+  white-space: pre-wrap;
+  background-color: transparent;
+  border-radius: 0;
+}
+.pre-scrollable {
+  max-height: 340px;
+  overflow-y: scroll;
+}
+.container {
+  margin-right: auto;
+  margin-left: auto;
+  padding-left: 20px;
+  padding-right: 20px;
+}
+@media (min-width: 768px) {
+  .container {
+    width: 760px;
+  }
+}
+@media (min-width: 992px) {
+  .container {
+    width: 980px;
+  }
+}
+@media (min-width: 1200px) {
+  .container {
+    width: 1180px;
+  }
+}
+.container-fluid {
+  margin-right: auto;
+  margin-left: auto;
+  padding-left: 20px;
+  padding-right: 20px;
+}
+.row {
+  margin-left: -20px;
+  margin-right: -20px;
+}
+.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
+  position: relative;
+  min-height: 1px;
+  padding-left: 20px;
+  padding-right: 20px;
+}
+.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
+  float: left;
+}
+.col-xs-12 {
+  width: 100%;
+}
+.col-xs-11 {
+  width: 91.66666667%;
+}
+.col-xs-10 {
+  width: 83.33333333%;
+}
+.col-xs-9 {
+  width: 75%;
+}
+.col-xs-8 {
+  width: 66.66666667%;
+}
+.col-xs-7 {
+  width: 58.33333333%;
+}
+.col-xs-6 {
+  width: 50%;
+}
+.col-xs-5 {
+  width: 41.66666667%;
+}
+.col-xs-4 {
+  width: 33.33333333%;
+}
+.col-xs-3 {
+  width: 25%;
+}
+.col-xs-2 {
+  width: 16.66666667%;
+}
+.col-xs-1 {
+  width: 8.33333333%;
+}
+.col-xs-pull-12 {
+  right: 100%;
+}
+.col-xs-pull-11 {
+  right: 91.66666667%;
+}
+.col-xs-pull-10 {
+  right: 83.33333333%;
+}
+.col-xs-pull-9 {
+  right: 75%;
+}
+.col-xs-pull-8 {
+  right: 66.66666667%;
+}
+.col-xs-pull-7 {
+  right: 58.33333333%;
+}
+.col-xs-pull-6 {
+  right: 50%;
+}
+.col-xs-pull-5 {
+  right: 41.66666667%;
+}
+.col-xs-pull-4 {
+  right: 33.33333333%;
+}
+.col-xs-pull-3 {
+  right: 25%;
+}
+.col-xs-pull-2 {
+  right: 16.66666667%;
+}
+.col-xs-pull-1 {
+  right: 8.33333333%;
+}
+.col-xs-pull-0 {
+  right: auto;
+}
+.col-xs-push-12 {
+  left: 100%;
+}
+.col-xs-push-11 {
+  left: 91.66666667%;
+}
+.col-xs-push-10 {
+  left: 83.33333333%;
+}
+.col-xs-push-9 {
+  left: 75%;
+}
+.col-xs-push-8 {
+  left: 66.66666667%;
+}
+.col-xs-push-7 {
+  left: 58.33333333%;
+}
+.col-xs-push-6 {
+  left: 50%;
+}
+.col-xs-push-5 {
+  left: 41.66666667%;
+}
+.col-xs-push-4 {
+  left: 33.33333333%;
+}
+.col-xs-push-3 {
+  left: 25%;
+}
+.col-xs-push-2 {
+  left: 16.66666667%;
+}
+.col-xs-push-1 {
+  left: 8.33333333%;
+}
+.col-xs-push-0 {
+  left: auto;
+}
+.col-xs-offset-12 {
+  margin-left: 100%;
+}
+.col-xs-offset-11 {
+  margin-left: 91.66666667%;
+}
+.col-xs-offset-10 {
+  margin-left: 83.33333333%;
+}
+.col-xs-offset-9 {
+  margin-left: 75%;
+}
+.col-xs-offset-8 {
+  margin-left: 66.66666667%;
+}
+.col-xs-offset-7 {
+  margin-left: 58.33333333%;
+}
+.col-xs-offset-6 {
+  margin-left: 50%;
+}
+.col-xs-offset-5 {
+  margin-left: 41.66666667%;
+}
+.col-xs-offset-4 {
+  margin-left: 33.33333333%;
+}
+.col-xs-offset-3 {
+  margin-left: 25%;
+}
+.col-xs-offset-2 {
+  margin-left: 16.66666667%;
+}
+.col-xs-offset-1 {
+  margin-left: 8.33333333%;
+}
+.col-xs-offset-0 {
+  margin-left: 0%;
+}
+@media (min-width: 768px) {
+  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
+    float: left;
+  }
+  .col-sm-12 {
+    width: 100%;
+  }
+  .col-sm-11 {
+    width: 91.66666667%;
+  }
+  .col-sm-10 {
+    width: 83.33333333%;
+  }
+  .col-sm-9 {
+    width: 75%;
+  }
+  .col-sm-8 {
+    width: 66.66666667%;
+  }
+  .col-sm-7 {
+    width: 58.33333333%;
+  }
+  .col-sm-6 {
+    width: 50%;
+  }
+  .col-sm-5 {
+    width: 41.66666667%;
+  }
+  .col-sm-4 {
+    width: 33.33333333%;
+  }
+  .col-sm-3 {
+    width: 25%;
+  }
+  .col-sm-2 {
+    width: 16.66666667%;
+  }
+  .col-sm-1 {
+    width: 8.33333333%;
+  }
+  .col-sm-pull-12 {
+    right: 100%;
+  }
+  .col-sm-pull-11 {
+    right: 91.66666667%;
+  }
+  .col-sm-pull-10 {
+    right: 83.33333333%;
+  }
+  .col-sm-pull-9 {
+    right: 75%;
+  }
+  .col-sm-pull-8 {
+    right: 66.66666667%;
+  }
+  .col-sm-pull-7 {
+    right: 58.33333333%;
+  }
+  .col-sm-pull-6 {
+    right: 50%;
+  }
+  .col-sm-pull-5 {
+    right: 41.66666667%;
+  }
+  .col-sm-pull-4 {
+    right: 33.33333333%;
+  }
+  .col-sm-pull-3 {
+    right: 25%;
+  }
+  .col-sm-pull-2 {
+    right: 16.66666667%;
+  }
+  .col-sm-pull-1 {
+    right: 8.33333333%;
+  }
+  .col-sm-pull-0 {
+    right: auto;
+  }
+  .col-sm-push-12 {
+    left: 100%;
+  }
+  .col-sm-push-11 {
+    left: 91.66666667%;
+  }
+  .col-sm-push-10 {
+    left: 83.33333333%;
+  }
+  .col-sm-push-9 {
+    left: 75%;
+  }
+  .col-sm-push-8 {
+    left: 66.66666667%;
+  }
+  .col-sm-push-7 {
+    left: 58.33333333%;
+  }
+  .col-sm-push-6 {
+    left: 50%;
+  }
+  .col-sm-push-5 {
+    left: 41.66666667%;
+  }
+  .col-sm-push-4 {
+    left: 33.33333333%;
+  }
+  .col-sm-push-3 {
+    left: 25%;
+  }
+  .col-sm-push-2 {
+    left: 16.66666667%;
+  }
+  .col-sm-push-1 {
+    left: 8.33333333%;
+  }
+  .col-sm-push-0 {
+    left: auto;
+  }
+  .col-sm-offset-12 {
+    margin-left: 100%;
+  }
+  .col-sm-offset-11 {
+    margin-left: 91.66666667%;
+  }
+  .col-sm-offset-10 {
+    margin-left: 83.33333333%;
+  }
+  .col-sm-offset-9 {
+    margin-left: 75%;
+  }
+  .col-sm-offset-8 {
+    margin-left: 66.66666667%;
+  }
+  .col-sm-offset-7 {
+    margin-left: 58.33333333%;
+  }
+  .col-sm-offset-6 {
+    margin-left: 50%;
+  }
+  .col-sm-offset-5 {
+    margin-left: 41.66666667%;
+  }
+  .col-sm-offset-4 {
+    margin-left: 33.33333333%;
+  }
+  .col-sm-offset-3 {
+    margin-left: 25%;
+  }
+  .col-sm-offset-2 {
+    margin-left: 16.66666667%;
+  }
+  .col-sm-offset-1 {
+    margin-left: 8.33333333%;
+  }
+  .col-sm-offset-0 {
+    margin-left: 0%;
+  }
+}
+@media (min-width: 992px) {
+  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
+    float: left;
+  }
+  .col-md-12 {
+    width: 100%;
+  }
+  .col-md-11 {
+    width: 91.66666667%;
+  }
+  .col-md-10 {
+    width: 83.33333333%;
+  }
+  .col-md-9 {
+    width: 75%;
+  }
+  .col-md-8 {
+    width: 66.66666667%;
+  }
+  .col-md-7 {
+    width: 58.33333333%;
+  }
+  .col-md-6 {
+    width: 50%;
+  }
+  .col-md-5 {
+    width: 41.66666667%;
+  }
+  .col-md-4 {
+    width: 33.33333333%;
+  }
+  .col-md-3 {
+    width: 25%;
+  }
+  .col-md-2 {
+    width: 16.66666667%;
+  }
+  .col-md-1 {
+    width: 8.33333333%;
+  }
+  .col-md-pull-12 {
+    right: 100%;
+  }
+  .col-md-pull-11 {
+    right: 91.66666667%;
+  }
+  .col-md-pull-10 {
+    right: 83.33333333%;
+  }
+  .col-md-pull-9 {
+    right: 75%;
+  }
+  .col-md-pull-8 {
+    right: 66.66666667%;
+  }
+  .col-md-pull-7 {
+    right: 58.33333333%;
+  }
+  .col-md-pull-6 {
+    right: 50%;
+  }
+  .col-md-pull-5 {
+    right: 41.66666667%;
+  }
+  .col-md-pull-4 {
+    right: 33.33333333%;
+  }
+  .col-md-pull-3 {
+    right: 25%;
+  }
+  .col-md-pull-2 {
+    right: 16.66666667%;
+  }
+  .col-md-pull-1 {
+    right: 8.33333333%;
+  }
+  .col-md-pull-0 {
+    right: auto;
+  }
+  .col-md-push-12 {
+    left: 100%;
+  }
+  .col-md-push-11 {
+    left: 91.66666667%;
+  }
+  .col-md-push-10 {
+    left: 83.33333333%;
+  }
+  .col-md-push-9 {
+    left: 75%;
+  }
+  .col-md-push-8 {
+    left: 66.66666667%;
+  }
+  .col-md-push-7 {
+    left: 58.33333333%;
+  }
+  .col-md-push-6 {
+    left: 50%;
+  }
+  .col-md-push-5 {
+    left: 41.66666667%;
+  }
+  .col-md-push-4 {
+    left: 33.33333333%;
+  }
+  .col-md-push-3 {
+    left: 25%;
+  }
+  .col-md-push-2 {
+    left: 16.66666667%;
+  }
+  .col-md-push-1 {
+    left: 8.33333333%;
+  }
+  .col-md-push-0 {
+    left: auto;
+  }
+  .col-md-offset-12 {
+    margin-left: 100%;
+  }
+  .col-md-offset-11 {
+    margin-left: 91.66666667%;
+  }
+  .col-md-offset-10 {
+    margin-left: 83.33333333%;
+  }
+  .col-md-offset-9 {
+    margin-left: 75%;
+  }
+  .col-md-offset-8 {
+    margin-left: 66.66666667%;
+  }
+  .col-md-offset-7 {
+    margin-left: 58.33333333%;
+  }
+  .col-md-offset-6 {
+    margin-left: 50%;
+  }
+  .col-md-offset-5 {
+    margin-left: 41.66666667%;
+  }
+  .col-md-offset-4 {
+    margin-left: 33.33333333%;
+  }
+  .col-md-offset-3 {
+    margin-left: 25%;
+  }
+  .col-md-offset-2 {
+    margin-left: 16.66666667%;
+  }
+  .col-md-offset-1 {
+    margin-left: 8.33333333%;
+  }
+  .col-md-offset-0 {
+    margin-left: 0%;
+  }
+}
+@media (min-width: 1200px) {
+  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
+    float: left;
+  }
+  .col-lg-12 {
+    width: 100%;
+  }
+  .col-lg-11 {
+    width: 91.66666667%;
+  }
+  .col-lg-10 {
+    width: 83.33333333%;
+  }
+  .col-lg-9 {
+    width: 75%;
+  }
+  .col-lg-8 {
+    width: 66.66666667%;
+  }
+  .col-lg-7 {
+    width: 58.33333333%;
+  }
+  .col-lg-6 {
+    width: 50%;
+  }
+  .col-lg-5 {
+    width: 41.66666667%;
+  }
+  .col-lg-4 {
+    width: 33.33333333%;
+  }
+  .col-lg-3 {
+    width: 25%;
+  }
+  .col-lg-2 {
+    width: 16.66666667%;
+  }
+  .col-lg-1 {
+    width: 8.33333333%;
+  }
+  .col-lg-pull-12 {
+    right: 100%;
+  }
+  .col-lg-pull-11 {
+    right: 91.66666667%;
+  }
+  .col-lg-pull-10 {
+    right: 83.33333333%;
+  }
+  .col-lg-pull-9 {
+    right: 75%;
+  }
+  .col-lg-pull-8 {
+    right: 66.66666667%;
+  }
+  .col-lg-pull-7 {
+    right: 58.33333333%;
+  }
+  .col-lg-pull-6 {
+    right: 50%;
+  }
+  .col-lg-pull-5 {
+    right: 41.66666667%;
+  }
+  .col-lg-pull-4 {
+    right: 33.33333333%;
+  }
+  .col-lg-pull-3 {
+    right: 25%;
+  }
+  .col-lg-pull-2 {
+    right: 16.66666667%;
+  }
+  .col-lg-pull-1 {
+    right: 8.33333333%;
+  }
+  .col-lg-pull-0 {
+    right: auto;
+  }
+  .col-lg-push-12 {
+    left: 100%;
+  }
+  .col-lg-push-11 {
+    left: 91.66666667%;
+  }
+  .col-lg-push-10 {
+    left: 83.33333333%;
+  }
+  .col-lg-push-9 {
+    left: 75%;
+  }
+  .col-lg-push-8 {
+    left: 66.66666667%;
+  }
+  .col-lg-push-7 {
+    left: 58.33333333%;
+  }
+  .col-lg-push-6 {
+    left: 50%;
+  }
+  .col-lg-push-5 {
+    left: 41.66666667%;
+  }
+  .col-lg-push-4 {
+    left: 33.33333333%;
+  }
+  .col-lg-push-3 {
+    left: 25%;
+  }
+  .col-lg-push-2 {
+    left: 16.66666667%;
+  }
+  .col-lg-push-1 {
+    left: 8.33333333%;
+  }
+  .col-lg-push-0 {
+    left: auto;
+  }
+  .col-lg-offset-12 {
+    margin-left: 100%;
+  }
+  .col-lg-offset-11 {
+    margin-left: 91.66666667%;
+  }
+  .col-lg-offset-10 {
+    margin-left: 83.33333333%;
+  }
+  .col-lg-offset-9 {
+    margin-left: 75%;
+  }
+  .col-lg-offset-8 {
+    margin-left: 66.66666667%;
+  }
+  .col-lg-offset-7 {
+    margin-left: 58.33333333%;
+  }
+  .col-lg-offset-6 {
+    margin-left: 50%;
+  }
+  .col-lg-offset-5 {
+    margin-left: 41.66666667%;
+  }
+  .col-lg-offset-4 {
+    margin-left: 33.33333333%;
+  }
+  .col-lg-offset-3 {
+    margin-left: 25%;
+  }
+  .col-lg-offset-2 {
+    margin-left: 16.66666667%;
+  }
+  .col-lg-offset-1 {
+    margin-left: 8.33333333%;
+  }
+  .col-lg-offset-0 {
+    margin-left: 0%;
+  }
+}
+table {
+  background-color: transparent;
+}
+caption {
+  padding-top: 10px;
+  padding-bottom: 10px;
+  color: #9c9c9c;
+  text-align: left;
+}
+th {
+  text-align: left;
+}
+.table {
+  width: 100%;
+  max-width: 100%;
+  margin-bottom: 20px;
+}
+.table > thead > tr > th,
+.table > tbody > tr > th,
+.table > tfoot > tr > th,
+.table > thead > tr > td,
+.table > tbody > tr > td,
+.table > tfoot > tr > td {
+  padding: 10px;
+  line-height: 1.66666667;
+  vertical-align: top;
+  border-top: 1px solid #d1d1d1;
+}
+.table > thead > tr > th {
+  vertical-align: bottom;
+  border-bottom: 2px solid #d1d1d1;
+}
+.table > caption + thead > tr:first-child > th,
+.table > colgroup + thead > tr:first-child > th,
+.table > thead:first-child > tr:first-child > th,
+.table > caption + thead > tr:first-child > td,
+.table > colgroup + thead > tr:first-child > td,
+.table > thead:first-child > tr:first-child > td {
+  border-top: 0;
+}
+.table > tbody + tbody {
+  border-top: 2px solid #d1d1d1;
+}
+.table .table {
+  background-color: #fff;
+}
+.table-condensed > thead > tr > th,
+.table-condensed > tbody > tr > th,
+.table-condensed > tfoot > tr > th,
+.table-condensed > thead > tr > td,
+.table-condensed > tbody > tr > td,
+.table-condensed > tfoot > tr > td {
+  padding: 5px;
+}
+.table-bordered {
+  border: 1px solid #d1d1d1;
+}
+.table-bordered > thead > tr > th,
+.table-bordered > tbody > tr > th,
+.table-bordered > tfoot > tr > th,
+.table-bordered > thead > tr > td,
+.table-bordered > tbody > tr > td,
+.table-bordered > tfoot > tr > td {
+  border: 1px solid #d1d1d1;
+}
+.table-bordered > thead > tr > th,
+.table-bordered > thead > tr > td {
+  border-bottom-width: 2px;
+}
+.table-striped > tbody > tr:nth-of-type(odd) {
+  background-color: #f5f5f5;
+}
+.table-hover > tbody > tr:hover {
+  background-color: #def3ff;
+}
+table col[class*="col-"] {
+  position: static;
+  float: none;
+  display: table-column;
+}
+table td[class*="col-"],
+table th[class*="col-"] {
+  position: static;
+  float: none;
+  display: table-cell;
+}
+.table > thead > tr > td.active,
+.table > tbody > tr > td.active,
+.table > tfoot > tr > td.active,
+.table > thead > tr > th.active,
+.table > tbody > tr > th.active,
+.table > tfoot > tr > th.active,
+.table > thead > tr.active > td,
+.table > tbody > tr.active > td,
+.table > tfoot > tr.active > td,
+.table > thead > tr.active > th,
+.table > tbody > tr.active > th,
+.table > tfoot > tr.active > th {
+  background-color: #def3ff;
+}
+.table-hover > tbody > tr > td.active:hover,
+.table-hover > tbody > tr > th.active:hover,
+.table-hover > tbody > tr.active:hover > td,
+.table-hover > tbody > tr:hover > .active,
+.table-hover > tbody > tr.active:hover > th {
+  background-color: #c4eaff;
+}
+.table > thead > tr > td.success,
+.table > tbody > tr > td.success,
+.table > tfoot > tr > td.success,
+.table > thead > tr > th.success,
+.table > tbody > tr > th.success,
+.table > tfoot > tr > th.success,
+.table > thead > tr.success > td,
+.table > tbody > tr.success > td,
+.table > tfoot > tr.success > td,
+.table > thead > tr.success > th,
+.table > tbody > tr.success > th,
+.table > tfoot > tr.success > th {
+  background-color: #dff0d8;
+}
+.table-hover > tbody > tr > td.success:hover,
+.table-hover > tbody > tr > th.success:hover,
+.table-hover > tbody > tr.success:hover > td,
+.table-hover > tbody > tr:hover > .success,
+.table-hover > tbody > tr.success:hover > th {
+  background-color: #d0e9c6;
+}
+.table > thead > tr > td.info,
+.table > tbody > tr > td.info,
+.table > tfoot > tr > td.info,
+.table > thead > tr > th.info,
+.table > tbody > tr > th.info,
+.table > tfoot > tr > th.info,
+.table > thead > tr.info > td,
+.table > tbody > tr.info > td,
+.table > tfoot > tr.info > td,
+.table > thead > tr.info > th,
+.table > tbody > tr.info > th,
+.table > tfoot > tr.info > th {
+  background-color: #d9edf7;
+}
+.table-hover > tbody > tr > td.info:hover,
+.table-hover > tbody > tr > th.info:hover,
+.table-hover > tbody > tr.info:hover > td,
+.table-hover > tbody > tr:hover > .info,
+.table-hover > tbody > tr.info:hover > th {
+  background-color: #c4e3f3;
+}
+.table > thead > tr > td.warning,
+.table > tbody > tr > td.warning,
+.table > tfoot > tr > td.warning,
+.table > thead > tr > th.warning,
+.table > tbody > tr > th.warning,
+.table > tfoot > tr > th.warning,
+.table > thead > tr.warning > td,
+.table > tbody > tr.warning > td,
+.table > tfoot > tr.warning > td,
+.table > thead > tr.warning > th,
+.table > tbody > tr.warning > th,
+.table > tfoot > tr.warning > th {
+  background-color: #fcf8e3;
+}
+.table-hover > tbody > tr > td.warning:hover,
+.table-hover > tbody > tr > th.warning:hover,
+.table-hover > tbody > tr.warning:hover > td,
+.table-hover > tbody > tr:hover > .warning,
+.table-hover > tbody > tr.warning:hover > th {
+  background-color: #faf2cc;
+}
+.table > thead > tr > td.danger,
+.table > tbody > tr > td.danger,
+.table > tfoot > tr > td.danger,
+.table > thead > tr > th.danger,
+.table > tbody > tr > th.danger,
+.table > tfoot > tr > th.danger,
+.table > thead > tr.danger > td,
+.table > tbody > tr.danger > td,
+.table > tfoot > tr.danger > td,
+.table > thead > tr.danger > th,
+.table > tbody > tr.danger > th,
+.table > tfoot > tr.danger > th {
+  background-color: #f2dede;
+}
+.table-hover > tbody > tr > td.danger:hover,
+.table-hover > tbody > tr > th.danger:hover,
+.table-hover > tbody > tr.danger:hover > td,
+.table-hover > tbody > tr:hover > .danger,
+.table-hover > tbody > tr.danger:hover > th {
+  background-color: #ebcccc;
+}
+.table-responsive {
+  overflow-x: auto;
+  min-height: 0.01%;
+}
+@media screen and (max-width: 767px) {
+  .table-responsive {
+    width: 100%;
+    margin-bottom: 15px;
+    overflow-y: hidden;
+    -ms-overflow-style: -ms-autohiding-scrollbar;
+    border: 1px solid #d1d1d1;
+  }
+  .table-responsive > .table {
+    margin-bottom: 0;
+  }
+  .table-responsive > .table > thead > tr > th,
+  .table-responsive > .table > tbody > tr > th,
+  .table-responsive > .table > tfoot > tr > th,
+  .table-responsive > .table > thead > tr > td,
+  .table-responsive > .table > tbody > tr > td,
+  .table-responsive > .table > tfoot > tr > td {
+    white-space: nowrap;
+  }
+  .table-responsive > .table-bordered {
+    border: 0;
+  }
+  .table-responsive > .table-bordered > thead > tr > th:first-child,
+  .table-responsive > .table-bordered > tbody > tr > th:first-child,
+  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
+  .table-responsive > .table-bordered > thead > tr > td:first-child,
+  .table-responsive > .table-bordered > tbody > tr > td:first-child,
+  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
+    border-left: 0;
+  }
+  .table-responsive > .table-bordered > thead > tr > th:last-child,
+  .table-responsive > .table-bordered > tbody > tr > th:last-child,
+  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
+  .table-responsive > .table-bordered > thead > tr > td:last-child,
+  .table-responsive > .table-bordered > tbody > tr > td:last-child,
+  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
+    border-right: 0;
+  }
+  .table-responsive > .table-bordered > tbody > tr:last-child > th,
+  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
+  .table-responsive > .table-bordered > tbody > tr:last-child > td,
+  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
+    border-bottom: 0;
+  }
+}
+fieldset {
+  padding: 0;
+  margin: 0;
+  border: 0;
+  min-width: 0;
+}
+legend {
+  display: block;
+  width: 100%;
+  padding: 0;
+  margin-bottom: 20px;
+  font-size: 18px;
+  line-height: inherit;
+  color: #363636;
+  border: 0;
+  border-bottom: 1px solid #e5e5e5;
+}
+label {
+  display: inline-block;
+  max-width: 100%;
+  margin-bottom: 5px;
+  font-weight: bold;
+}
+input[type="search"] {
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box;
+}
+input[type="radio"],
+input[type="checkbox"] {
+  margin: 4px 0 0;
+  margin-top: 1px \9;
+  line-height: normal;
+}
+input[type="file"] {
+  display: block;
+}
+input[type="range"] {
+  display: block;
+  width: 100%;
+}
+select[multiple],
+select[size] {
+  height: auto;
+}
+input[type="file"]:focus,
+input[type="radio"]:focus,
+input[type="checkbox"]:focus {
+  outline: 5px auto -webkit-focus-ring-color;
+  outline-offset: -2px;
+}
+output {
+  display: block;
+  padding-top: 3px;
+  font-size: 12px;
+  line-height: 1.66666667;
+  color: #363636;
+}
+.form-control {
+  display: block;
+  width: 100%;
+  height: 26px;
+  padding: 2px 6px;
+  font-size: 12px;
+  line-height: 1.66666667;
+  color: #363636;
+  background-color: #fff;
+  background-image: none;
+  border: 1px solid #bbb;
+  border-radius: 1px;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+}
+.form-control:focus {
+  border-color: #0088ce;
+  outline: 0;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 136, 206, 0.6);
+  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 136, 206, 0.6);
+}
+.form-control::-moz-placeholder {
+  color: #999;
+  opacity: 1;
+}
+.form-control:-ms-input-placeholder {
+  color: #999;
+}
+.form-control::-webkit-input-placeholder {
+  color: #999;
+}
+.form-control:-moz-placeholder {
+  color: #999;
+  font-style: italic;
+}
+.form-control::-moz-placeholder {
+  color: #999;
+  font-style: italic;
+  opacity: 1;
+}
+.form-control:-ms-input-placeholder {
+  color: #999;
+  font-style: italic;
+}
+.form-control::-webkit-input-placeholder {
+  color: #999;
+  font-style: italic;
+}
+.form-control::-ms-expand {
+  border: 0;
+  background-color: transparent;
+}
+.form-control[disabled],
+.form-control[readonly],
+fieldset[disabled] .form-control {
+  background-color: #f5f5f5;
+  opacity: 1;
+}
+.form-control[disabled],
+fieldset[disabled] .form-control {
+  cursor: not-allowed;
+}
+textarea.form-control {
+  height: auto;
+}
+input[type="search"] {
+  -webkit-appearance: none;
+}
+@media screen and (-webkit-min-device-pixel-ratio: 0) {
+  input[type="date"].form-control,
+  input[type="time"].form-control,
+  input[type="datetime-local"].form-control,
+  input[type="month"].form-control {
+    line-height: 26px;
+  }
+  input[type="date"].input-sm,
+  input[type="time"].input-sm,
+  input[type="datetime-local"].input-sm,
+  input[type="month"].input-sm,
+  .input-group-sm input[type="date"],
+  .input-group-sm input[type="time"],
+  .input-group-sm input[type="datetime-local"],
+  .input-group-sm input[type="month"] {
+    line-height: 22px;
+  }
+  input[type="date"].input-lg,
+  input[type="time"].input-lg,
+  input[type="datetime-local"].input-lg,
+  input[type="month"].input-lg,
+  .input-group-lg input[type="date"],
+  .input-group-lg input[type="time"],
+  .input-group-lg input[type="datetime-local"],
+  .input-group-lg input[type="month"] {
+    line-height: 33px;
+  }
+}
+.form-group {
+  margin-bottom: 15px;
+}
+.radio,
+.checkbox {
+  position: relative;
+  display: block;
+  margin-top: 10px;
+  margin-bottom: 10px;
+}
+.radio label,
+.checkbox label {
+  min-height: 20px;
+  padding-left: 20px;
+  margin-bottom: 0;
+  font-weight: normal;
+  cursor: pointer;
+}
+.radio input[type="radio"],
+.radio-inline input[type="radio"],
+.checkbox input[type="checkbox"],
+.checkbox-inline input[type="checkbox"] {
+  position: absolute;
+  margin-left: -20px;
+  margin-top: 4px \9;
+}
+.radio + .radio,
+.checkbox + .checkbox {
+  margin-top: -5px;
+}
+.radio-inline,
+.checkbox-inline {
+  position: relative;
+  display: inline-block;
+  padding-left: 20px;
+  margin-bottom: 0;
+  vertical-align: middle;
+  font-weight: normal;
+  cursor: pointer;
+}
+.radio-inline + .radio-inline,
+.checkbox-inline + .checkbox-inline {
+  margin-top: 0;
+  margin-left: 10px;
+}
+input[type="radio"][disabled],
+input[type="checkbox"][disabled],
+input[type="radio"].disabled,
+input[type="checkbox"].disabled,
+fieldset[disabled] input[type="radio"],
+fieldset[disabled] input[type="checkbox"] {
+  cursor: not-allowed;
+}
+.radio-inline.disabled,
+.checkbox-inline.disabled,
+fieldset[disabled] .radio-inline,
+fieldset[disabled] .checkbox-inline {
+  cursor: not-allowed;
+}
+.radio.disabled label,
+.checkbox.disabled label,
+fieldset[disabled] .radio label,
+fieldset[disabled] .checkbox label {
+  cursor: not-allowed;
+}
+.form-control-static {
+  padding-top: 3px;
+  padding-bottom: 3px;
+  margin-bottom: 0;
+  min-height: 32px;
+}
+.form-control-static.input-lg,
+.form-control-static.input-sm {
+  padding-left: 0;
+  padding-right: 0;
+}
+.input-sm {
+  height: 22px;
+  padding: 2px 6px;
+  font-size: 11px;
+  line-height: 1.5;
+  border-radius: 1px;
+}
+select.input-sm {
+  height: 22px;
+  line-height: 22px;
+}
+textarea.input-sm,
+select[multiple].input-sm {
+  height: auto;
+}
+.form-group-sm .form-control {
+  height: 22px;
+  padding: 2px 6px;
+  font-size: 11px;
+  line-height: 1.5;
+  border-radius: 1px;
+}
+.form-group-sm select.form-control {
+  height: 22px;
+  line-height: 22px;
+}
+.form-group-sm textarea.form-control,
+.form-group-sm select[multiple].form-control {
+  height: auto;
+}
+.form-group-sm .form-control-static {
+  height: 22px;
+  min-height: 31px;
+  padding: 3px 6px;
+  font-size: 11px;
+  line-height: 1.5;
+}
+.input-lg {
+  height: 33px;
+  padding: 6px 10px;
+  font-size: 14px;
+  line-height: 1.3333333;
+  border-radius: 1px;
+}
+select.input-lg {
+  height: 33px;
+  line-height: 33px;
+}
+textarea.input-lg,
+select[multiple].input-lg {
+  height: auto;
+}
+.form-group-lg .form-control {
+  height: 33px;
+  padding: 6px 10px;
+  font-size: 14px;
+  line-height: 1.3333333;
+  border-radius: 1px;
+}
+.form-group-lg select.form-control {
+  height: 33px;
+  line-height: 33px;
+}
+.form-group-lg textarea.form-control,
+.form-group-lg select[multiple].form-control {
+  height: auto;
+}
+.form-group-lg .form-control-static {
+  height: 33px;
+  min-height: 34px;
+  padding: 7px 10px;
+  font-size: 14px;
+  line-height: 1.3333333;
+}
+.has-feedback {
+  position: relative;
+}
+.has-feedback .form-control {
+  padding-right: 32.5px;
+}
+.form-control-feedback {
+  position: absolute;
+  top: 0;
+  right: 0;
+  z-index: 2;
+  display: block;
+  width: 26px;
+  height: 26px;
+  line-height: 26px;
+  text-align: center;
+  pointer-events: none;
+}
+.input-lg + .form-control-feedback,
+.input-group-lg + .form-control-feedback,
+.form-group-lg .form-control + .form-control-feedback {
+  width: 33px;
+  height: 33px;
+  line-height: 33px;
+}
+.input-sm + .form-control-feedback,
+.input-group-sm + .form-control-feedback,
+.form-group-sm .form-control + .form-control-feedback {
+  width: 22px;
+  height: 22px;
+  line-height: 22px;
+}
+.has-success .help-block,
+.has-success .control-label,
+.has-success .radio,
+.has-success .checkbox,
+.has-success .radio-inline,
+.has-success .checkbox-inline,
+.has-success.radio label,
+.has-success.checkbox label,
+.has-success.radio-inline label,
+.has-success.checkbox-inline label {
+  color: #3c763d;
+}
+.has-success .form-control {
+  border-color: #3c763d;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+}
+.has-success .form-control:focus {
+  border-color: #2b542c;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
+}
+.has-success .input-group-addon {
+  color: #3c763d;
+  border-color: #3c763d;
+  background-color: #dff0d8;
+}
+.has-success .form-control-feedback {
+  color: #3c763d;
+}
+.has-warning .help-block,
+.has-warning .control-label,
+.has-warning .radio,
+.has-warning .checkbox,
+.has-warning .radio-inline,
+.has-warning .checkbox-inline,
+.has-warning.radio label,
+.has-warning.checkbox label,
+.has-warning.radio-inline label,
+.has-warning.checkbox-inline label {
+  color: #ec7a08;
+}
+.has-warning .form-control {
+  border-color: #ec7a08;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+}
+.has-warning .form-control:focus {
+  border-color: #bb6106;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #faad60;
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #faad60;
+}
+.has-warning .input-group-addon {
+  color: #ec7a08;
+  border-color: #ec7a08;
+  background-color: #fcf8e3;
+}
+.has-warning .form-control-feedback {
+  color: #ec7a08;
+}
+.has-error .help-block,
+.has-error .control-label,
+.has-error .radio,
+.has-error .checkbox,
+.has-error .radio-inline,
+.has-error .checkbox-inline,
+.has-error.radio label,
+.has-error.checkbox label,
+.has-error.radio-inline label,
+.has-error.checkbox-inline label {
+  color: #cc0000;
+}
+.has-error .form-control {
+  border-color: #cc0000;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
+}
+.has-error .form-control:focus {
+  border-color: #990000;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff3333;
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ff3333;
+}
+.has-error .input-group-addon {
+  color: #cc0000;
+  border-color: #cc0000;
+  background-color: #f2dede;
+}
+.has-error .form-control-feedback {
+  color: #cc0000;
+}
+.has-feedback label ~ .form-control-feedback {
+  top: 25px;
+}
+.has-feedback label.sr-only ~ .form-control-feedback {
+  top: 0;
+}
+.help-block {
+  display: block;
+  margin-top: 5px;
+  margin-bottom: 10px;
+  color: #767676;
+}
+@media (min-width: 768px) {
+  .form-inline .form-group {
+    display: inline-block;
+    margin-bottom: 0;
+    vertical-align: middle;
+  }
+  .form-inline .form-control {
+    display: inline-block;
+    width: auto;
+    vertical-align: middle;
+  }
+  .form-inline .form-control-static {
+    display: inline-block;
+  }
+  .form-inline .input-group {
+    display: inline-table;
+    vertical-align: middle;
+  }
+  .form-inline .input-group .input-group-addon,
+  .form-inline .input-group .input-group-btn,
+  .form-inline .input-group .form-control {
+    width: auto;
+  }
+  .form-inline .input-group > .form-control {
+    width: 100%;
+  }
+  .form-inline .control-label {
+    margin-bottom: 0;
+    vertical-align: middle;
+  }
+  .form-inline .radio,
+  .form-inline .checkbox {
+    display: inline-block;
+    margin-top: 0;
+    margin-bottom: 0;
+    vertical-align: middle;
+  }
+  .form-inline .radio label,
+  .form-inline .checkbox label {
+    padding-left: 0;
+  }
+  .form-inline .radio input[type="radio"],
+  .form-inline .checkbox input[type="checkbox"] {
+    position: relative;
+    margin-left: 0;
+  }
+  .form-inline .has-feedback .form-control-feedback {
+    top: 0;
+  }
+}
+.form-horizontal .radio,
+.form-horizontal .checkbox,
+.form-horizontal .radio-inline,
+.form-horizontal .checkbox-inline {
+  margin-top: 0;
+  margin-bottom: 0;
+  padding-top: 3px;
+}
+.form-horizontal .radio,
+.form-horizontal .checkbox {
+  min-height: 23px;
+}
+.form-horizontal .form-group {
+  margin-left: -20px;
+  margin-right: -20px;
+}
+@media (min-width: 768px) {
+  .form-horizontal .control-label {
+    text-align: right;
+    margin-bottom: 0;
+    padding-top: 3px;
+  }
+}
+.form-horizontal .has-feedback .form-control-feedback {
+  right: 20px;
+}
+@media (min-width: 768px) {
+  .form-horizontal .form-group-lg .control-label {
+    padding-top: 7px;
+    font-size: 14px;
+  }
+}
+@media (min-width: 768px) {
+  .form-horizontal .form-group-sm .control-label {
+    padding-top: 3px;
+    font-size: 11px;
+  }
+}
+.btn {
+  display: inline-block;
+  margin-bottom: 0;
+  font-weight: 600;
+  text-align: center;
+  vertical-align: middle;
+  touch-action: manipulation;
+  cursor: pointer;
+  background-image: none;
+  border: 1px solid transparent;
+  white-space: nowrap;
+  padding: 2px 6px;
+  font-size: 12px;
+  line-height: 1.66666667;
+  border-radius: 1px;
+  -webkit-user-select: none;
+  -moz-user-select: none;
+  -ms-user-select: none;
+  user-select: none;
+}
+.btn:focus,
+.btn:active:focus,
+.btn.active:focus,
+.btn.focus,
+.btn:active.focus,
+.btn.active.focus {
+  outline: 5px auto -webkit-focus-ring-color;
+  outline-offset: -2px;
+}
+.btn:hover,
+.btn:focus,
+.btn.focus {
+  color: #4d5258;
+  text-decoration: none;
+}
+.btn:active,
+.btn.active {
+  outline: 0;
+  background-image: none;
+  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+}
+.btn.disabled,
+.btn[disabled],
+fieldset[disabled] .btn {
+  cursor: not-allowed;
+  opacity: 0.65;
+  filter: alpha(opacity=65);
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+a.btn.disabled,
+fieldset[disabled] a.btn {
+  pointer-events: none;
+}
+.btn-default {
+  color: #4d5258;
+  background-color: #f1f1f1;
+  border-color: #bbb;
+}
+.btn-default:focus,
+.btn-default.focus {
+  color: #4d5258;
+  background-color: #d8d8d8;
+  border-color: #7b7b7b;
+}
+.btn-default:hover {
+  color: #4d5258;
+  background-color: #d8d8d8;
+  border-color: #9c9c9c;
+}
+.btn-default:active,
+.btn-default.active,
+.open > .dropdown-toggle.btn-default {
+  color: #4d5258;
+  background-color: #d8d8d8;
+  border-color: #9c9c9c;
+}
+.btn-default:active:hover,
+.btn-default.active:hover,
+.open > .dropdown-toggle.btn-default:hover,
+.btn-default:active:focus,
+.btn-default.active:focus,
+.open > .dropdown-toggle.btn-default:focus,
+.btn-default:active.focus,
+.btn-default.active.focus,
+.open > .dropdown-toggle.btn-default.focus {
+  color: #4d5258;
+  background-color: #c6c6c6;
+  border-color: #7b7b7b;
+}
+.btn-default:active,
+.btn-default.active,
+.open > .dropdown-toggle.btn-default {
+  background-image: none;
+}
+.btn-default.disabled:hover,
+.btn-default[disabled]:hover,
+fieldset[disabled] .btn-default:hover,
+.btn-default.disabled:focus,
+.btn-default[disabled]:focus,
+fieldset[disabled] .btn-default:focus,
+.btn-default.disabled.focus,
+.btn-default[disabled].focus,
+fieldset[disabled] .btn-default.focus {
+  background-color: #f1f1f1;
+  border-color: #bbb;
+}
+.btn-default .badge {
+  color: #f1f1f1;
+  background-color: #4d5258;
+}
+.btn-primary {
+  color: #fff;
+  background-color: #0088ce;
+  border-color: #00659c;
+}
+.btn-primary:focus,
+.btn-primary.focus {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #00121d;
+}
+.btn-primary:hover {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #003d5f;
+}
+.btn-primary:active,
+.btn-primary.active,
+.open > .dropdown-toggle.btn-primary {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #003d5f;
+}
+.btn-primary:active:hover,
+.btn-primary.active:hover,
+.open > .dropdown-toggle.btn-primary:hover,
+.btn-primary:active:focus,
+.btn-primary.active:focus,
+.open > .dropdown-toggle.btn-primary:focus,
+.btn-primary:active.focus,
+.btn-primary.active.focus,
+.open > .dropdown-toggle.btn-primary.focus {
+  color: #fff;
+  background-color: #004f77;
+  border-color: #00121d;
+}
+.btn-primary:active,
+.btn-primary.active,
+.open > .dropdown-toggle.btn-primary {
+  background-image: none;
+}
+.btn-primary.disabled:hover,
+.btn-primary[disabled]:hover,
+fieldset[disabled] .btn-primary:hover,
+.btn-primary.disabled:focus,
+.btn-primary[disabled]:focus,
+fieldset[disabled] .btn-primary:focus,
+.btn-primary.disabled.focus,
+.btn-primary[disabled].focus,
+fieldset[disabled] .btn-primary.focus {
+  background-color: #0088ce;
+  border-color: #00659c;
+}
+.btn-primary .badge {
+  color: #0088ce;
+  background-color: #fff;
+}
+.btn-success {
+  color: #fff;
+  background-color: #3f9c35;
+  border-color: #37892f;
+}
+.btn-success:focus,
+.btn-success.focus {
+  color: #fff;
+  background-color: #307628;
+  border-color: #112a0e;
+}
+.btn-success:hover {
+  color: #fff;
+  background-color: #307628;
+  border-color: #255b1f;
+}
+.btn-success:active,
+.btn-success.active,
+.open > .dropdown-toggle.btn-success {
+  color: #fff;
+  background-color: #307628;
+  border-color: #255b1f;
+}
+.btn-success:active:hover,
+.btn-success.active:hover,
+.open > .dropdown-toggle.btn-success:hover,
+.btn-success:active:focus,
+.btn-success.active:focus,
+.open > .dropdown-toggle.btn-success:focus,
+.btn-success:active.focus,
+.btn-success.active.focus,
+.open > .dropdown-toggle.btn-success.focus {
+  color: #fff;
+  background-color: #255b1f;
+  border-color: #112a0e;
+}
+.btn-success:active,
+.btn-success.active,
+.open > .dropdown-toggle.btn-success {
+  background-image: none;
+}
+.btn-success.disabled:hover,
+.btn-success[disabled]:hover,
+fieldset[disabled] .btn-success:hover,
+.btn-success.disabled:focus,
+.btn-success[disabled]:focus,
+fieldset[disabled] .btn-success:focus,
+.btn-success.disabled.focus,
+.btn-success[disabled].focus,
+fieldset[disabled] .btn-success.focus {
+  background-color: #3f9c35;
+  border-color: #37892f;
+}
+.btn-success .badge {
+  color: #3f9c35;
+  background-color: #fff;
+}
+.btn-info {
+  color: #fff;
+  background-color: #00659c;
+  border-color: #005483;
+}
+.btn-info:focus,
+.btn-info.focus {
+  color: #fff;
+  background-color: #004469;
+  border-color: #000203;
+}
+.btn-info:hover {
+  color: #fff;
+  background-color: #004469;
+  border-color: #002d45;
+}
+.btn-info:active,
+.btn-info.active,
+.open > .dropdown-toggle.btn-info {
+  color: #fff;
+  background-color: #004469;
+  border-color: #002d45;
+}
+.btn-info:active:hover,
+.btn-info.active:hover,
+.open > .dropdown-toggle.btn-info:hover,
+.btn-info:active:focus,
+.btn-info.active:focus,
+.open > .dropdown-toggle.btn-info:focus,
+.btn-info:active.focus,
+.btn-info.active.focus,
+.open > .dropdown-toggle.btn-info.focus {
+  color: #fff;
+  background-color: #002d45;
+  border-color: #000203;
+}
+.btn-info:active,
+.btn-info.active,
+.open > .dropdown-toggle.btn-info {
+  background-image: none;
+}
+.btn-info.disabled:hover,
+.btn-info[disabled]:hover,
+fieldset[disabled] .btn-info:hover,
+.btn-info.disabled:focus,
+.btn-info[disabled]:focus,
+fieldset[disabled] .btn-info:focus,
+.btn-info.disabled.focus,
+.btn-info[disabled].focus,
+fieldset[disabled] .btn-info.focus {
+  background-color: #00659c;
+  border-color: #005483;
+}
+.btn-info .badge {
+  color: #00659c;
+  background-color: #fff;
+}
+.btn-warning {
+  color: #fff;
+  background-color: #ec7a08;
+  border-color: #d36d07;
+}
+.btn-warning:focus,
+.btn-warning.focus {
+  color: #fff;
+  background-color: #bb6106;
+  border-color: #582e03;
+}
+.btn-warning:hover {
+  color: #fff;
+  background-color: #bb6106;
+  border-color: #984f05;
+}
+.btn-warning:active,
+.btn-warning.active,
+.open > .dropdown-toggle.btn-warning {
+  color: #fff;
+  background-color: #bb6106;
+  border-color: #984f05;
+}
+.btn-warning:active:hover,
+.btn-warning.active:hover,
+.open > .dropdown-toggle.btn-warning:hover,
+.btn-warning:active:focus,
+.btn-warning.active:focus,
+.open > .dropdown-toggle.btn-warning:focus,
+.btn-warning:active.focus,
+.btn-warning.active.focus,
+.open > .dropdown-toggle.btn-warning.focus {
+  color: #fff;
+  background-color: #984f05;
+  border-color: #582e03;
+}
+.btn-warning:active,
+.btn-warning.active,
+.open > .dropdown-toggle.btn-warning {
+  background-image: none;
+}
+.btn-warning.disabled:hover,
+.btn-warning[disabled]:hover,
+fieldset[disabled] .btn-warning:hover,
+.btn-warning.disabled:focus,
+.btn-warning[disabled]:focus,
+fieldset[disabled] .btn-warning:focus,
+.btn-warning.disabled.focus,
+.btn-warning[disabled].focus,
+fieldset[disabled] .btn-warning.focus {
+  background-color: #ec7a08;
+  border-color: #d36d07;
+}
+.btn-warning .badge {
+  color: #ec7a08;
+  background-color: #fff;
+}
+.btn-danger {
+  color: #fff;
+  background-color: #a30000;
+  border-color: #8b0000;
+}
+.btn-danger:focus,
+.btn-danger.focus {
+  color: #fff;
+  background-color: #700000;
+  border-color: #0b0000;
+}
+.btn-danger:hover {
+  color: #fff;
+  background-color: #700000;
+  border-color: #4e0000;
+}
+.btn-danger:active,
+.btn-danger.active,
+.open > .dropdown-toggle.btn-danger {
+  color: #fff;
+  background-color: #700000;
+  border-color: #4e0000;
+}
+.btn-danger:active:hover,
+.btn-danger.active:hover,
+.open > .dropdown-toggle.btn-danger:hover,
+.btn-danger:active:focus,
+.btn-danger.active:focus,
+.open > .dropdown-toggle.btn-danger:focus,
+.btn-danger:active.focus,
+.btn-danger.active.focus,
+.open > .dropdown-toggle.btn-danger.focus {
+  color: #fff;
+  background-color: #4c0000;
+  border-color: #0b0000;
+}
+.btn-danger:active,
+.btn-danger.active,
+.open > .dropdown-toggle.btn-danger {
+  background-image: none;
+}
+.btn-danger.disabled:hover,
+.btn-danger[disabled]:hover,
+fieldset[disabled] .btn-danger:hover,
+.btn-danger.disabled:focus,
+.btn-danger[disabled]:focus,
+fieldset[disabled] .btn-danger:focus,
+.btn-danger.disabled.focus,
+.btn-danger[disabled].focus,
+fieldset[disabled] .btn-danger.focus {
+  background-color: #a30000;
+  border-color: #8b0000;
+}
+.btn-danger .badge {
+  color: #a30000;
+  background-color: #fff;
+}
+.btn-link {
+  color: #0088ce;
+  font-weight: normal;
+  border-radius: 0;
+}
+.btn-link,
+.btn-link:active,
+.btn-link.active,
+.btn-link[disabled],
+fieldset[disabled] .btn-link {
+  background-color: transparent;
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+.btn-link,
+.btn-link:hover,
+.btn-link:focus,
+.btn-link:active {
+  border-color: transparent;
+}
+.btn-link:hover,
+.btn-link:focus {
+  color: #00659c;
+  text-decoration: underline;
+  background-color: transparent;
+}
+.btn-link[disabled]:hover,
+fieldset[disabled] .btn-link:hover,
+.btn-link[disabled]:focus,
+fieldset[disabled] .btn-link:focus {
+  color: #9c9c9c;
+  text-decoration: none;
+}
+.btn-lg,
+.btn-group-lg > .btn {
+  padding: 6px 10px;
+  font-size: 14px;
+  line-height: 1.3333333;
+  border-radius: 1px;
+}
+.btn-sm,
+.btn-group-sm > .btn {
+  padding: 2px 6px;
+  font-size: 11px;
+  line-height: 1.5;
+  border-radius: 1px;
+}
+.btn-xs,
+.btn-group-xs > .btn {
+  padding: 1px 5px;
+  font-size: 11px;
+  line-height: 1.5;
+  border-radius: 1px;
+}
+.btn-block {
+  display: block;
+  width: 100%;
+}
+.btn-block + .btn-block {
+  margin-top: 5px;
+}
+input[type="submit"].btn-block,
+input[type="reset"].btn-block,
+input[type="button"].btn-block {
+  width: 100%;
+}
+.fade {
+  opacity: 0;
+  -webkit-transition: opacity 0.15s linear;
+  -o-transition: opacity 0.15s linear;
+  transition: opacity 0.15s linear;
+}
+.fade.in {
+  opacity: 1;
+}
+.collapse {
+  display: none;
+}
+.collapse.in {
+  display: block;
+}
+tr.collapse.in {
+  display: table-row;
+}
+tbody.collapse.in {
+  display: table-row-group;
+}
+.collapsing {
+  position: relative;
+  height: 0;
+  overflow: hidden;
+  -webkit-transition-property: height, visibility;
+  transition-property: height, visibility;
+  -webkit-transition-duration: 0.35s;
+  transition-duration: 0.35s;
+  -webkit-transition-timing-function: ease;
+  transition-timing-function: ease;
+}
+.caret {
+  display: inline-block;
+  width: 0;
+  height: 0;
+  margin-left: 2px;
+  vertical-align: middle;
+  border-top: 0 dashed;
+  border-top: 0 solid \9;
+  border-right: 0 solid transparent;
+  border-left: 0 solid transparent;
+}
+.dropup,
+.dropdown {
+  position: relative;
+}
+.dropdown-toggle:focus {
+  outline: 0;
+}
+.dropdown-menu {
+  position: absolute;
+  top: 100%;
+  left: 0;
+  z-index: 1000;
+  display: none;
+  float: left;
+  min-width: 160px;
+  padding: 5px 0;
+  margin: 2px 0 0;
+  list-style: none;
+  font-size: 12px;
+  text-align: left;
+  background-color: #fff;
+  border: 1px solid #bbb;
+  border-radius: 1px;
+  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
+  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
+  background-clip: padding-box;
+}
+.dropdown-menu.pull-right {
+  right: 0;
+  left: auto;
+}
+.dropdown-menu .divider {
+  margin: 9px 0;
+  background-color: #ededed;
+  height: 1px;
+  margin: 4px 1px;
+  overflow: hidden;
+}
+.dropdown-menu > li > a {
+  display: block;
+  padding: 3px 20px;
+  clear: both;
+  font-weight: normal;
+  line-height: 1.66666667;
+  color: #363636;
+  white-space: nowrap;
+}
+.dropdown-menu > li > a:hover,
+.dropdown-menu > li > a:focus {
+  text-decoration: none;
+  color: #4d5258;
+  background-color: #def3ff;
+}
+.dropdown-menu > .active > a,
+.dropdown-menu > .active > a:hover,
+.dropdown-menu > .active > a:focus {
+  color: #fff;
+  text-decoration: none;
+  outline: 0;
+  background-color: #0088ce;
+}
+.dropdown-menu > .disabled > a,
+.dropdown-menu > .disabled > a:hover,
+.dropdown-menu > .disabled > a:focus {
+  color: #9c9c9c;
+}
+.dropdown-menu > .disabled > a:hover,
+.dropdown-menu > .disabled > a:focus {
+  text-decoration: none;
+  background-color: transparent;
+  background-image: none;
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+  cursor: not-allowed;
+}
+.open > .dropdown-menu {
+  display: block;
+}
+.open > a {
+  outline: 0;
+}
+.dropdown-menu-right {
+  left: auto;
+  right: 0;
+}
+.dropdown-menu-left {
+  left: 0;
+  right: auto;
+}
+.dropdown-header {
+  display: block;
+  padding: 3px 20px;
+  font-size: 11px;
+  line-height: 1.66666667;
+  color: #9c9c9c;
+  white-space: nowrap;
+}
+.dropdown-backdrop {
+  position: fixed;
+  left: 0;
+  right: 0;
+  bottom: 0;
+  top: 0;
+  z-index: 990;
+}
+.pull-right > .dropdown-menu {
+  right: 0;
+  left: auto;
+}
+.dropup .caret,
+.navbar-fixed-bottom .dropdown .caret {
+  border-top: 0;
+  border-bottom: 0 dashed;
+  border-bottom: 0 solid \9;
+  content: "";
+}
+.dropup .dropdown-menu,
+.navbar-fixed-bottom .dropdown .dropdown-menu {
+  top: auto;
+  bottom: 100%;
+  margin-bottom: 2px;
+}
+@media (min-width: 768px) {
+  .navbar-right .dropdown-menu {
+    left: auto;
+    right: 0;
+  }
+  .navbar-right .dropdown-menu-left {
+    left: 0;
+    right: auto;
+  }
+}
+.btn-group,
+.btn-group-vertical {
+  position: relative;
+  display: inline-block;
+  vertical-align: middle;
+}
+.btn-group > .btn,
+.btn-group-vertical > .btn {
+  position: relative;
+  float: left;
+}
+.btn-group > .btn:hover,
+.btn-group-vertical > .btn:hover,
+.btn-group > .btn:focus,
+.btn-group-vertical > .btn:focus,
+.btn-group > .btn:active,
+.btn-group-vertical > .btn:active,
+.btn-group > .btn.active,
+.btn-group-vertical > .btn.active {
+  z-index: 2;
+}
+.btn-group .btn + .btn,
+.btn-group .btn + .btn-group,
+.btn-group .btn-group + .btn,
+.btn-group .btn-group + .btn-group {
+  margin-left: -1px;
+}
+.btn-toolbar {
+  margin-left: -5px;
+}
+.btn-toolbar .btn,
+.btn-toolbar .btn-group,
+.btn-toolbar .input-group {
+  float: left;
+}
+.btn-toolbar > .btn,
+.btn-toolbar > .btn-group,
+.btn-toolbar > .input-group {
+  margin-left: 5px;
+}
+.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
+  border-radius: 0;
+}
+.btn-group > .btn:first-child {
+  margin-left: 0;
+}
+.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
+  border-bottom-right-radius: 0;
+  border-top-right-radius: 0;
+}
+.btn-group > .btn:last-child:not(:first-child),
+.btn-group > .dropdown-toggle:not(:first-child) {
+  border-bottom-left-radius: 0;
+  border-top-left-radius: 0;
+}
+.btn-group > .btn-group {
+  float: left;
+}
+.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
+  border-radius: 0;
+}
+.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
+.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
+  border-bottom-right-radius: 0;
+  border-top-right-radius: 0;
+}
+.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
+  border-bottom-left-radius: 0;
+  border-top-left-radius: 0;
+}
+.btn-group .dropdown-toggle:active,
+.btn-group.open .dropdown-toggle {
+  outline: 0;
+}
+.btn-group > .btn + .dropdown-toggle {
+  padding-left: 8px;
+  padding-right: 8px;
+}
+.btn-group > .btn-lg + .dropdown-toggle {
+  padding-left: 12px;
+  padding-right: 12px;
+}
+.btn-group.open .dropdown-toggle {
+  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
+}
+.btn-group.open .dropdown-toggle.btn-link {
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+.btn .caret {
+  margin-left: 0;
+}
+.btn-lg .caret {
+  border-width: 0 0 0;
+  border-bottom-width: 0;
+}
+.dropup .btn-lg .caret {
+  border-width: 0 0 0;
+}
+.btn-group-vertical > .btn,
+.btn-group-vertical > .btn-group,
+.btn-group-vertical > .btn-group > .btn {
+  display: block;
+  float: none;
+  width: 100%;
+  max-width: 100%;
+}
+.btn-group-vertical > .btn-group > .btn {
+  float: none;
+}
+.btn-group-vertical > .btn + .btn,
+.btn-group-vertical > .btn + .btn-group,
+.btn-group-vertical > .btn-group + .btn,
+.btn-group-vertical > .btn-group + .btn-group {
+  margin-top: -1px;
+  margin-left: 0;
+}
+.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
+  border-radius: 0;
+}
+.btn-group-vertical > .btn:first-child:not(:last-child) {
+  border-top-right-radius: 1px;
+  border-top-left-radius: 1px;
+  border-bottom-right-radius: 0;
+  border-bottom-left-radius: 0;
+}
+.btn-group-vertical > .btn:last-child:not(:first-child) {
+  border-top-right-radius: 0;
+  border-top-left-radius: 0;
+  border-bottom-right-radius: 1px;
+  border-bottom-left-radius: 1px;
+}
+.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
+  border-radius: 0;
+}
+.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
+.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
+  border-bottom-right-radius: 0;
+  border-bottom-left-radius: 0;
+}
+.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
+  border-top-right-radius: 0;
+  border-top-left-radius: 0;
+}
+.btn-group-justified {
+  display: table;
+  width: 100%;
+  table-layout: fixed;
+  border-collapse: separate;
+}
+.btn-group-justified > .btn,
+.btn-group-justified > .btn-group {
+  float: none;
+  display: table-cell;
+  width: 1%;
+}
+.btn-group-justified > .btn-group .btn {
+  width: 100%;
+}
+.btn-group-justified > .btn-group .dropdown-menu {
+  left: auto;
+}
+[data-toggle="buttons"] > .btn input[type="radio"],
+[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
+[data-toggle="buttons"] > .btn input[type="checkbox"],
+[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
+  position: absolute;
+  clip: rect(0, 0, 0, 0);
+  pointer-events: none;
+}
+.input-group {
+  position: relative;
+  display: table;
+  border-collapse: separate;
+}
+.input-group[class*="col-"] {
+  float: none;
+  padding-left: 0;
+  padding-right: 0;
+}
+.input-group .form-control {
+  position: relative;
+  z-index: 2;
+  float: left;
+  width: 100%;
+  margin-bottom: 0;
+}
+.input-group .form-control:focus {
+  z-index: 3;
+}
+.input-group-lg > .form-control,
+.input-group-lg > .input-group-addon,
+.input-group-lg > .input-group-btn > .btn {
+  height: 33px;
+  padding: 6px 10px;
+  font-size: 14px;
+  line-height: 1.3333333;
+  border-radius: 1px;
+}
+select.input-group-lg > .form-control,
+select.input-group-lg > .input-group-addon,
+select.input-group-lg > .input-group-btn > .btn {
+  height: 33px;
+  line-height: 33px;
+}
+textarea.input-group-lg > .form-control,
+textarea.input-group-lg > .input-group-addon,
+textarea.input-group-lg > .input-group-btn > .btn,
+select[multiple].input-group-lg > .form-control,
+select[multiple].input-group-lg > .input-group-addon,
+select[multiple].input-group-lg > .input-group-btn > .btn {
+  height: auto;
+}
+.input-group-sm > .form-control,
+.input-group-sm > .input-group-addon,
+.input-group-sm > .input-group-btn > .btn {
+  height: 22px;
+  padding: 2px 6px;
+  font-size: 11px;
+  line-height: 1.5;
+  border-radius: 1px;
+}
+select.input-group-sm > .form-control,
+select.input-group-sm > .input-group-addon,
+select.input-group-sm > .input-group-btn > .btn {
+  height: 22px;
+  line-height: 22px;
+}
+textarea.input-group-sm > .form-control,
+textarea.input-group-sm > .input-group-addon,
+textarea.input-group-sm > .input-group-btn > .btn,
+select[multiple].input-group-sm > .form-control,
+select[multiple].input-group-sm > .input-group-addon,
+select[multiple].input-group-sm > .input-group-btn > .btn {
+  height: auto;
+}
+.input-group-addon,
+.input-group-btn,
+.input-group .form-control {
+  display: table-cell;
+}
+.input-group-addon:not(:first-child):not(:last-child),
+.input-group-btn:not(:first-child):not(:last-child),
+.input-group .form-control:not(:first-child):not(:last-child) {
+  border-radius: 0;
+}
+.input-group-addon,
+.input-group-btn {
+  width: 1%;
+  white-space: nowrap;
+  vertical-align: middle;
+}
+.input-group-addon {
+  padding: 2px 6px;
+  font-size: 12px;
+  font-weight: normal;
+  line-height: 1;
+  color: #363636;
+  text-align: center;
+  background-color: #f1f1f1;
+  border: 1px solid #bbb;
+  border-radius: 1px;
+}
+.input-group-addon.input-sm {
+  padding: 2px 6px;
+  font-size: 11px;
+  border-radius: 1px;
+}
+.input-group-addon.input-lg {
+  padding: 6px 10px;
+  font-size: 14px;
+  border-radius: 1px;
+}
+.input-group-addon input[type="radio"],
+.input-group-addon input[type="checkbox"] {
+  margin-top: 0;
+}
+.input-group .form-control:first-child,
+.input-group-addon:first-child,
+.input-group-btn:first-child > .btn,
+.input-group-btn:first-child > .btn-group > .btn,
+.input-group-btn:first-child > .dropdown-toggle,
+.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
+.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
+  border-bottom-right-radius: 0;
+  border-top-right-radius: 0;
+}
+.input-group-addon:first-child {
+  border-right: 0;
+}
+.input-group .form-control:last-child,
+.input-group-addon:last-child,
+.input-group-btn:last-child > .btn,
+.input-group-btn:last-child > .btn-group > .btn,
+.input-group-btn:last-child > .dropdown-toggle,
+.input-group-btn:first-child > .btn:not(:first-child),
+.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
+  border-bottom-left-radius: 0;
+  border-top-left-radius: 0;
+}
+.input-group-addon:last-child {
+  border-left: 0;
+}
+.input-group-btn {
+  position: relative;
+  font-size: 0;
+  white-space: nowrap;
+}
+.input-group-btn > .btn {
+  position: relative;
+}
+.input-group-btn > .btn + .btn {
+  margin-left: -1px;
+}
+.input-group-btn > .btn:hover,
+.input-group-btn > .btn:focus,
+.input-group-btn > .btn:active {
+  z-index: 2;
+}
+.input-group-btn:first-child > .btn,
+.input-group-btn:first-child > .btn-group {
+  margin-right: -1px;
+}
+.input-group-btn:last-child > .btn,
+.input-group-btn:last-child > .btn-group {
+  z-index: 2;
+  margin-left: -1px;
+}
+.nav {
+  margin-bottom: 0;
+  padding-left: 0;
+  list-style: none;
+}
+.nav > li {
+  position: relative;
+  display: block;
+}
+.nav > li > a {
+  position: relative;
+  display: block;
+  padding: 10px 15px;
+}
+.nav > li > a:hover,
+.nav > li > a:focus {
+  text-decoration: none;
+  background-color: #f1f1f1;
+}
+.nav > li.disabled > a {
+  color: #9c9c9c;
+}
+.nav > li.disabled > a:hover,
+.nav > li.disabled > a:focus {
+  color: #9c9c9c;
+  text-decoration: none;
+  background-color: transparent;
+  cursor: not-allowed;
+}
+.nav .open > a,
+.nav .open > a:hover,
+.nav .open > a:focus {
+  background-color: #f1f1f1;
+  border-color: #0088ce;
+}
+.nav .nav-divider {
+  margin: 9px 0;
+  background-color: #e5e5e5;
+  background-color: #ededed;
+  height: 1px;
+  margin: 4px 1px;
+  overflow: hidden;
+}
+.nav > li > a > img {
+  max-width: none;
+}
+.nav-tabs {
+  border-bottom: 1px solid #ededed;
+}
+.nav-tabs > li {
+  float: left;
+  margin-bottom: -1px;
+}
+.nav-tabs > li > a {
+  margin-right: 2px;
+  line-height: 1.66666667;
+  border: 1px solid transparent;
+  border-radius: 1px 1px 0 0;
+}
+.nav-tabs > li > a:hover {
+  border-color: transparent transparent #ededed;
+}
+.nav-tabs > li.active > a,
+.nav-tabs > li.active > a:hover,
+.nav-tabs > li.active > a:focus {
+  color: #0088ce;
+  background-color: #fff;
+  border: 1px solid #ddd;
+  border-bottom-color: transparent;
+  cursor: default;
+}
+.nav-tabs.nav-justified {
+  width: 100%;
+  border-bottom: 0;
+}
+.nav-tabs.nav-justified > li {
+  float: none;
+}
+.nav-tabs.nav-justified > li > a {
+  text-align: center;
+  margin-bottom: 5px;
+}
+.nav-tabs.nav-justified > .dropdown .dropdown-menu {
+  top: auto;
+  left: auto;
+}
+@media (min-width: 768px) {
+  .nav-tabs.nav-justified > li {
+    display: table-cell;
+    width: 1%;
+  }
+  .nav-tabs.nav-justified > li > a {
+    margin-bottom: 0;
+  }
+}
+.nav-tabs.nav-justified > li > a {
+  margin-right: 0;
+  border-radius: 1px;
+}
+.nav-tabs.nav-justified > .active > a,
+.nav-tabs.nav-justified > .active > a:hover,
+.nav-tabs.nav-justified > .active > a:focus {
+  border: 1px solid #ededed;
+}
+@media (min-width: 768px) {
+  .nav-tabs.nav-justified > li > a {
+    border-bottom: 1px solid #ededed;
+    border-radius: 1px 1px 0 0;
+  }
+  .nav-tabs.nav-justified > .active > a,
+  .nav-tabs.nav-justified > .active > a:hover,
+  .nav-tabs.nav-justified > .active > a:focus {
+    border-bottom-color: #fff;
+  }
+}
+.nav-pills > li {
+  float: left;
+}
+.nav-pills > li > a {
+  border-radius: 1px;
+}
+.nav-pills > li + li {
+  margin-left: 2px;
+}
+.nav-pills > li.active > a,
+.nav-pills > li.active > a:hover,
+.nav-pills > li.active > a:focus {
+  color: #fff;
+  background-color: #39a5dc;
+}
+.nav-stacked > li {
+  float: none;
+}
+.nav-stacked > li + li {
+  margin-top: 2px;
+  margin-left: 0;
+}
+.nav-justified {
+  width: 100%;
+}
+.nav-justified > li {
+  float: none;
+}
+.nav-justified > li > a {
+  text-align: center;
+  margin-bottom: 5px;
+}
+.nav-justified > .dropdown .dropdown-menu {
+  top: auto;
+  left: auto;
+}
+@media (min-width: 768px) {
+  .nav-justified > li {
+    display: table-cell;
+    width: 1%;
+  }
+  .nav-justified > li > a {
+    margin-bottom: 0;
+  }
+}
+.nav-tabs-justified {
+  border-bottom: 0;
+}
+.nav-tabs-justified > li > a {
+  margin-right: 0;
+  border-radius: 1px;
+}
+.nav-tabs-justified > .active > a,
+.nav-tabs-justified > .active > a:hover,
+.nav-tabs-justified > .active > a:focus {
+  border: 1px solid #ededed;
+}
+@media (min-width: 768px) {
+  .nav-tabs-justified > li > a {
+    border-bottom: 1px solid #ededed;
+    border-radius: 1px 1px 0 0;
+  }
+  .nav-tabs-justified > .active > a,
+  .nav-tabs-justified > .active > a:hover,
+  .nav-tabs-justified > .active > a:focus {
+    border-bottom-color: #fff;
+  }
+}
+.tab-content > .tab-pane {
+  display: none;
+}
+.tab-content > .active {
+  display: block;
+}
+.nav-tabs .dropdown-menu {
+  margin-top: -1px;
+  border-top-right-radius: 0;
+  border-top-left-radius: 0;
+}
+.navbar {
+  position: relative;
+  min-height: 50px;
+  margin-bottom: 20px;
+  border: 1px solid transparent;
+}
+@media (min-width: 768px) {
+  .navbar {
+    border-radius: 1px;
+  }
+}
+@media (min-width: 768px) {
+  .navbar-header {
+    float: left;
+  }
+}
+.navbar-collapse {
+  overflow-x: visible;
+  padding-right: 20px;
+  padding-left: 20px;
+  border-top: 1px solid transparent;
+  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
+  -webkit-overflow-scrolling: touch;
+}
+.navbar-collapse.in {
+  overflow-y: auto;
+}
+@media (min-width: 768px) {
+  .navbar-collapse {
+    width: auto;
+    border-top: 0;
+    box-shadow: none;
+  }
+  .navbar-collapse.collapse {
+    display: block !important;
+    height: auto !important;
+    padding-bottom: 0;
+    overflow: visible !important;
+  }
+  .navbar-collapse.in {
+    overflow-y: visible;
+  }
+  .navbar-fixed-top .navbar-collapse,
+  .navbar-static-top .navbar-collapse,
+  .navbar-fixed-bottom .navbar-collapse {
+    padding-left: 0;
+    padding-right: 0;
+  }
+}
+.navbar-fixed-top .navbar-collapse,
+.navbar-fixed-bottom .navbar-collapse {
+  max-height: 340px;
+}
+@media (max-device-width: 480px) and (orientation: landscape) {
+  .navbar-fixed-top .navbar-collapse,
+  .navbar-fixed-bottom .navbar-collapse {
+    max-height: 200px;
+  }
+}
+.container > .navbar-header,
+.container-fluid > .navbar-header,
+.container > .navbar-collapse,
+.container-fluid > .navbar-collapse {
+  margin-right: -20px;
+  margin-left: -20px;
+}
+@media (min-width: 768px) {
+  .container > .navbar-header,
+  .container-fluid > .navbar-header,
+  .container > .navbar-collapse,
+  .container-fluid > .navbar-collapse {
+    margin-right: 0;
+    margin-left: 0;
+  }
+}
+.navbar-static-top {
+  z-index: 1000;
+  border-width: 0 0 1px;
+}
+@media (min-width: 768px) {
+  .navbar-static-top {
+    border-radius: 0;
+  }
+}
+.navbar-fixed-top,
+.navbar-fixed-bottom {
+  position: fixed;
+  right: 0;
+  left: 0;
+  z-index: 1030;
+}
+@media (min-width: 768px) {
+  .navbar-fixed-top,
+  .navbar-fixed-bottom {
+    border-radius: 0;
+  }
+}
+.navbar-fixed-top {
+  top: 0;
+  border-width: 0 0 1px;
+}
+.navbar-fixed-bottom {
+  bottom: 0;
+  margin-bottom: 0;
+  border-width: 1px 0 0;
+}
+.navbar-brand {
+  float: left;
+  padding: 15px 20px;
+  font-size: 14px;
+  line-height: 20px;
+  height: 50px;
+}
+.navbar-brand:hover,
+.navbar-brand:focus {
+  text-decoration: none;
+}
+.navbar-brand > img {
+  display: block;
+}
+@media (min-width: 768px) {
+  .navbar > .container .navbar-brand,
+  .navbar > .container-fluid .navbar-brand {
+    margin-left: -20px;
+  }
+}
+.navbar-toggle {
+  position: relative;
+  float: right;
+  margin-right: 20px;
+  padding: 9px 10px;
+  margin-top: 8px;
+  margin-bottom: 8px;
+  background-color: transparent;
+  background-image: none;
+  border: 1px solid transparent;
+  border-radius: 1px;
+}
+.navbar-toggle:focus {
+  outline: 0;
+}
+.navbar-toggle .icon-bar {
+  display: block;
+  width: 22px;
+  height: 2px;
+  border-radius: 1px;
+}
+.navbar-toggle .icon-bar + .icon-bar {
+  margin-top: 4px;
+}
+@media (min-width: 768px) {
+  .navbar-toggle {
+    display: none;
+  }
+}
+.navbar-nav {
+  margin: 7.5px -20px;
+}
+.navbar-nav > li > a {
+  padding-top: 10px;
+  padding-bottom: 10px;
+  line-height: 20px;
+}
+@media (max-width: 767px) {
+  .navbar-nav .open .dropdown-menu {
+    position: static;
+    float: none;
+    width: auto;
+    margin-top: 0;
+    background-color: transparent;
+    border: 0;
+    box-shadow: none;
+  }
+  .navbar-nav .open .dropdown-menu > li > a,
+  .navbar-nav .open .dropdown-menu .dropdown-header {
+    padding: 5px 15px 5px 25px;
+  }
+  .navbar-nav .open .dropdown-menu > li > a {
+    line-height: 20px;
+  }
+  .navbar-nav .open .dropdown-menu > li > a:hover,
+  .navbar-nav .open .dropdown-menu > li > a:focus {
+    background-image: none;
+  }
+}
+@media (min-width: 768px) {
+  .navbar-nav {
+    float: left;
+    margin: 0;
+  }
+  .navbar-nav > li {
+    float: left;
+  }
+  .navbar-nav > li > a {
+    padding-top: 15px;
+    padding-bottom: 15px;
+  }
+}
+.navbar-form {
+  margin-left: -20px;
+  margin-right: -20px;
+  padding: 10px 20px;
+  border-top: 1px solid transparent;
+  border-bottom: 1px solid transparent;
+  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
+  margin-top: 12px;
+  margin-bottom: 12px;
+}
+@media (min-width: 768px) {
+  .navbar-form .form-group {
+    display: inline-block;
+    margin-bottom: 0;
+    vertical-align: middle;
+  }
+  .navbar-form .form-control {
+    display: inline-block;
+    width: auto;
+    vertical-align: middle;
+  }
+  .navbar-form .form-control-static {
+    display: inline-block;
+  }
+  .navbar-form .input-group {
+    display: inline-table;
+    vertical-align: middle;
+  }
+  .navbar-form .input-group .input-group-addon,
+  .navbar-form .input-group .input-group-btn,
+  .navbar-form .input-group .form-control {
+    width: auto;
+  }
+  .navbar-form .input-group > .form-control {
+    width: 100%;
+  }
+  .navbar-form .control-label {
+    margin-bottom: 0;
+    vertical-align: middle;
+  }
+  .navbar-form .radio,
+  .navbar-form .checkbox {
+    display: inline-block;
+    margin-top: 0;
+    margin-bottom: 0;
+    vertical-align: middle;
+  }
+  .navbar-form .radio label,
+  .navbar-form .checkbox label {
+    padding-left: 0;
+  }
+  .navbar-form .radio input[type="radio"],
+  .navbar-form .checkbox input[type="checkbox"] {
+    position: relative;
+    margin-left: 0;
+  }
+  .navbar-form .has-feedback .form-control-feedback {
+    top: 0;
+  }
+}
+@media (max-width: 767px) {
+  .navbar-form .form-group {
+    margin-bottom: 5px;
+  }
+  .navbar-form .form-group:last-child {
+    margin-bottom: 0;
+  }
+}
+@media (min-width: 768px) {
+  .navbar-form {
+    width: auto;
+    border: 0;
+    margin-left: 0;
+    margin-right: 0;
+    padding-top: 0;
+    padding-bottom: 0;
+    -webkit-box-shadow: none;
+    box-shadow: none;
+  }
+}
+.navbar-nav > li > .dropdown-menu {
+  margin-top: 0;
+  border-top-right-radius: 0;
+  border-top-left-radius: 0;
+}
+.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
+  margin-bottom: 0;
+  border-top-right-radius: 1px;
+  border-top-left-radius: 1px;
+  border-bottom-right-radius: 0;
+  border-bottom-left-radius: 0;
+}
+.navbar-btn {
+  margin-top: 12px;
+  margin-bottom: 12px;
+}
+.navbar-btn.btn-sm {
+  margin-top: 14px;
+  margin-bottom: 14px;
+}
+.navbar-btn.btn-xs {
+  margin-top: 14px;
+  margin-bottom: 14px;
+}
+.navbar-text {
+  margin-top: 15px;
+  margin-bottom: 15px;
+}
+@media (min-width: 768px) {
+  .navbar-text {
+    float: left;
+    margin-left: 20px;
+    margin-right: 20px;
+  }
+}
+@media (min-width: 768px) {
+  .navbar-left {
+    float: left !important;
+    float: left;
+  }
+  .navbar-right {
+    float: right !important;
+    float: right;
+    margin-right: -20px;
+  }
+  .navbar-right ~ .navbar-right {
+    margin-right: 0;
+  }
+}
+.navbar-default {
+  background-color: #f8f8f8;
+  border-color: #e7e7e7;
+}
+.navbar-default .navbar-brand {
+  color: #777;
+}
+.navbar-default .navbar-brand:hover,
+.navbar-default .navbar-brand:focus {
+  color: #5e5e5e;
+  background-color: transparent;
+}
+.navbar-default .navbar-text {
+  color: #777;
+}
+.navbar-default .navbar-nav > li > a {
+  color: #777;
+}
+.navbar-default .navbar-nav > li > a:hover,
+.navbar-default .navbar-nav > li > a:focus {
+  color: #333;
+  background-color: transparent;
+}
+.navbar-default .navbar-nav > .active > a,
+.navbar-default .navbar-nav > .active > a:hover,
+.navbar-default .navbar-nav > .active > a:focus {
+  color: #555;
+  background-color: #e7e7e7;
+}
+.navbar-default .navbar-nav > .disabled > a,
+.navbar-default .navbar-nav > .disabled > a:hover,
+.navbar-default .navbar-nav > .disabled > a:focus {
+  color: #ccc;
+  background-color: transparent;
+}
+.navbar-default .navbar-toggle {
+  border-color: #ddd;
+}
+.navbar-default .navbar-toggle:hover,
+.navbar-default .navbar-toggle:focus {
+  background-color: #ddd;
+}
+.navbar-default .navbar-toggle .icon-bar {
+  background-color: #888;
+}
+.navbar-default .navbar-collapse,
+.navbar-default .navbar-form {
+  border-color: #e7e7e7;
+}
+.navbar-default .navbar-nav > .open > a,
+.navbar-default .navbar-nav > .open > a:hover,
+.navbar-default .navbar-nav > .open > a:focus {
+  background-color: #e7e7e7;
+  color: #555;
+}
+@media (max-width: 767px) {
+  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
+    color: #777;
+  }
+  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
+  .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
+    color: #333;
+    background-color: transparent;
+  }
+  .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
+  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
+  .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
+    color: #555;
+    background-color: #e7e7e7;
+  }
+  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
+  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
+  .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
+    color: #ccc;
+    background-color: transparent;
+  }
+}
+.navbar-default .navbar-link {
+  color: #777;
+}
+.navbar-default .navbar-link:hover {
+  color: #333;
+}
+.navbar-default .btn-link {
+  color: #777;
+}
+.navbar-default .btn-link:hover,
+.navbar-default .btn-link:focus {
+  color: #333;
+}
+.navbar-default .btn-link[disabled]:hover,
+fieldset[disabled] .navbar-default .btn-link:hover,
+.navbar-default .btn-link[disabled]:focus,
+fieldset[disabled] .navbar-default .btn-link:focus {
+  color: #ccc;
+}
+.navbar-inverse {
+  background-color: #222;
+  border-color: #080808;
+}
+.navbar-inverse .navbar-brand {
+  color: #c2c2c2;
+}
+.navbar-inverse .navbar-brand:hover,
+.navbar-inverse .navbar-brand:focus {
+  color: #fff;
+  background-color: transparent;
+}
+.navbar-inverse .navbar-text {
+  color: #c2c2c2;
+}
+.navbar-inverse .navbar-nav > li > a {
+  color: #c2c2c2;
+}
+.navbar-inverse .navbar-nav > li > a:hover,
+.navbar-inverse .navbar-nav > li > a:focus {
+  color: #fff;
+  background-color: transparent;
+}
+.navbar-inverse .navbar-nav > .active > a,
+.navbar-inverse .navbar-nav > .active > a:hover,
+.navbar-inverse .navbar-nav > .active > a:focus {
+  color: #fff;
+  background-color: #080808;
+}
+.navbar-inverse .navbar-nav > .disabled > a,
+.navbar-inverse .navbar-nav > .disabled > a:hover,
+.navbar-inverse .navbar-nav > .disabled > a:focus {
+  color: #444;
+  background-color: transparent;
+}
+.navbar-inverse .navbar-toggle {
+  border-color: #333;
+}
+.navbar-inverse .navbar-toggle:hover,
+.navbar-inverse .navbar-toggle:focus {
+  background-color: #333;
+}
+.navbar-inverse .navbar-toggle .icon-bar {
+  background-color: #fff;
+}
+.navbar-inverse .navbar-collapse,
+.navbar-inverse .navbar-form {
+  border-color: #101010;
+}
+.navbar-inverse .navbar-nav > .open > a,
+.navbar-inverse .navbar-nav > .open > a:hover,
+.navbar-inverse .navbar-nav > .open > a:focus {
+  background-color: #080808;
+  color: #fff;
+}
+@media (max-width: 767px) {
+  .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
+    border-color: #080808;
+  }
+  .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
+    background-color: #080808;
+  }
+  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
+    color: #c2c2c2;
+  }
+  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
+  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
+    color: #fff;
+    background-color: transparent;
+  }
+  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
+  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
+  .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
+    color: #fff;
+    background-color: #080808;
+  }
+  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
+  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
+  .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
+    color: #444;
+    background-color: transparent;
+  }
+}
+.navbar-inverse .navbar-link {
+  color: #c2c2c2;
+}
+.navbar-inverse .navbar-link:hover {
+  color: #fff;
+}
+.navbar-inverse .btn-link {
+  color: #c2c2c2;
+}
+.navbar-inverse .btn-link:hover,
+.navbar-inverse .btn-link:focus {
+  color: #fff;
+}
+.navbar-inverse .btn-link[disabled]:hover,
+fieldset[disabled] .navbar-inverse .btn-link:hover,
+.navbar-inverse .btn-link[disabled]:focus,
+fieldset[disabled] .navbar-inverse .btn-link:focus {
+  color: #444;
+}
+.breadcrumb {
+  padding: 8px 15px;
+  margin-bottom: 20px;
+  list-style: none;
+  background-color: transparent;
+  border-radius: 1px;
+}
+.breadcrumb > li {
+  display: inline-block;
+}
+.breadcrumb > li + li:before {
+  content: "\f105\00a0";
+  padding: 0 5px;
+  color: #4d5258;
+}
+.breadcrumb > .active {
+  color: #4d5258;
+}
+.pagination {
+  display: inline-block;
+  padding-left: 0;
+  margin: 20px 0;
+  border-radius: 1px;
+}
+.pagination > li {
+  display: inline;
+}
+.pagination > li > a,
+.pagination > li > span {
+  position: relative;
+  float: left;
+  padding: 2px 6px;
+  line-height: 1.66666667;
+  text-decoration: none;
+  color: #0088ce;
+  background-color: #f5f5f5;
+  border: 1px solid #bbb;
+  margin-left: -1px;
+}
+.pagination > li:first-child > a,
+.pagination > li:first-child > span {
+  margin-left: 0;
+  border-bottom-left-radius: 1px;
+  border-top-left-radius: 1px;
+}
+.pagination > li:last-child > a,
+.pagination > li:last-child > span {
+  border-bottom-right-radius: 1px;
+  border-top-right-radius: 1px;
+}
+.pagination > li > a:hover,
+.pagination > li > span:hover,
+.pagination > li > a:focus,
+.pagination > li > span:focus {
+  z-index: 2;
+  color: #00659c;
+  background-color: #ededed;
+  border-color: #ddd;
+}
+.pagination > .active > a,
+.pagination > .active > span,
+.pagination > .active > a:hover,
+.pagination > .active > span:hover,
+.pagination > .active > a:focus,
+.pagination > .active > span:focus {
+  z-index: 3;
+  color: #fff;
+  background-color: #39a5dc;
+  border-color: #39a5dc;
+  cursor: default;
+}
+.pagination > .disabled > span,
+.pagination > .disabled > span:hover,
+.pagination > .disabled > span:focus,
+.pagination > .disabled > a,
+.pagination > .disabled > a:hover,
+.pagination > .disabled > a:focus {
+  color: #9c9c9c;
+  background-color: #fff;
+  border-color: #ddd;
+  cursor: not-allowed;
+}
+.pagination-lg > li > a,
+.pagination-lg > li > span {
+  padding: 6px 10px;
+  font-size: 14px;
+  line-height: 1.3333333;
+}
+.pagination-lg > li:first-child > a,
+.pagination-lg > li:first-child > span {
+  border-bottom-left-radius: 1px;
+  border-top-left-radius: 1px;
+}
+.pagination-lg > li:last-child > a,
+.pagination-lg > li:last-child > span {
+  border-bottom-right-radius: 1px;
+  border-top-right-radius: 1px;
+}
+.pagination-sm > li > a,
+.pagination-sm > li > span {
+  padding: 2px 6px;
+  font-size: 11px;
+  line-height: 1.5;
+}
+.pagination-sm > li:first-child > a,
+.pagination-sm > li:first-child > span {
+  border-bottom-left-radius: 1px;
+  border-top-left-radius: 1px;
+}
+.pagination-sm > li:last-child > a,
+.pagination-sm > li:last-child > span {
+  border-bottom-right-radius: 1px;
+  border-top-right-radius: 1px;
+}
+.pager {
+  padding-left: 0;
+  margin: 20px 0;
+  list-style: none;
+  text-align: center;
+}
+.pager li {
+  display: inline;
+}
+.pager li > a,
+.pager li > span {
+  display: inline-block;
+  padding: 5px 14px;
+  background-color: #f5f5f5;
+  border: 1px solid #bbb;
+  border-radius: 0;
+}
+.pager li > a:hover,
+.pager li > a:focus {
+  text-decoration: none;
+  background-color: #ededed;
+}
+.pager .next > a,
+.pager .next > span {
+  float: right;
+}
+.pager .previous > a,
+.pager .previous > span {
+  float: left;
+}
+.pager .disabled > a,
+.pager .disabled > a:hover,
+.pager .disabled > a:focus,
+.pager .disabled > span {
+  color: #8b8d8f;
+  background-color: #f5f5f5;
+  cursor: not-allowed;
+}
+.label {
+  display: inline;
+  padding: .2em .6em .3em;
+  font-size: 75%;
+  font-weight: bold;
+  line-height: 1;
+  color: #fff;
+  text-align: center;
+  white-space: nowrap;
+  vertical-align: baseline;
+  border-radius: .25em;
+}
+a.label:hover,
+a.label:focus {
+  color: #fff;
+  text-decoration: none;
+  cursor: pointer;
+}
+.label:empty {
+  display: none;
+}
+.btn .label {
+  position: relative;
+  top: -1px;
+}
+.label-default {
+  background-color: #9c9c9c;
+}
+.label-default[href]:hover,
+.label-default[href]:focus {
+  background-color: #838383;
+}
+.label-primary {
+  background-color: #39a5dc;
+}
+.label-primary[href]:hover,
+.label-primary[href]:focus {
+  background-color: #228bc0;
+}
+.label-success {
+  background-color: #3f9c35;
+}
+.label-success[href]:hover,
+.label-success[href]:focus {
+  background-color: #307628;
+}
+.label-info {
+  background-color: #00659c;
+}
+.label-info[href]:hover,
+.label-info[href]:focus {
+  background-color: #004469;
+}
+.label-warning {
+  background-color: #ec7a08;
+}
+.label-warning[href]:hover,
+.label-warning[href]:focus {
+  background-color: #bb6106;
+}
+.label-danger {
+  background-color: #cc0000;
+}
+.label-danger[href]:hover,
+.label-danger[href]:focus {
+  background-color: #990000;
+}
+.badge {
+  display: inline-block;
+  min-width: 10px;
+  padding: 3px 7px;
+  font-size: 11px;
+  font-weight: bold;
+  color: #fff;
+  line-height: 1;
+  vertical-align: middle;
+  white-space: nowrap;
+  text-align: center;
+  background-color: #9c9c9c;
+  border-radius: 1px;
+}
+.badge:empty {
+  display: none;
+}
+.btn .badge {
+  position: relative;
+  top: -1px;
+}
+.btn-xs .badge,
+.btn-group-xs > .btn .badge {
+  top: 0;
+  padding: 1px 5px;
+}
+a.badge:hover,
+a.badge:focus {
+  color: #fff;
+  text-decoration: none;
+  cursor: pointer;
+}
+.list-group-item.active > .badge,
+.nav-pills > .active > a > .badge {
+  color: #0088ce;
+  background-color: #fff;
+}
+.list-group-item > .badge {
+  float: right;
+}
+.list-group-item > .badge + .badge {
+  margin-right: 5px;
+}
+.nav-pills > li > a > .badge {
+  margin-left: 3px;
+}
+.jumbotron {
+  padding-top: 30px;
+  padding-bottom: 30px;
+  margin-bottom: 30px;
+  color: inherit;
+  background-color: #f1f1f1;
+}
+.jumbotron h1,
+.jumbotron .h1 {
+  color: inherit;
+}
+.jumbotron p {
+  margin-bottom: 15px;
+  font-size: 18px;
+  font-weight: 200;
+}
+.jumbotron > hr {
+  border-top-color: #d8d8d8;
+}
+.container .jumbotron,
+.container-fluid .jumbotron {
+  border-radius: 1px;
+  padding-left: 20px;
+  padding-right: 20px;
+}
+.jumbotron .container {
+  max-width: 100%;
+}
+@media screen and (min-width: 768px) {
+  .jumbotron {
+    padding-top: 48px;
+    padding-bottom: 48px;
+  }
+  .container .jumbotron,
+  .container-fluid .jumbotron {
+    padding-left: 60px;
+    padding-right: 60px;
+  }
+  .jumbotron h1,
+  .jumbotron .h1 {
+    font-size: 54px;
+  }
+}
+.thumbnail {
+  display: block;
+  padding: 4px;
+  margin-bottom: 20px;
+  line-height: 1.66666667;
+  background-color: #fff;
+  border: 1px solid #ddd;
+  border-radius: 1px;
+  -webkit-transition: border 0.2s ease-in-out;
+  -o-transition: border 0.2s ease-in-out;
+  transition: border 0.2s ease-in-out;
+}
+.thumbnail > img,
+.thumbnail a > img {
+  margin-left: auto;
+  margin-right: auto;
+}
+a.thumbnail:hover,
+a.thumbnail:focus,
+a.thumbnail.active {
+  border-color: #0088ce;
+}
+.thumbnail .caption {
+  padding: 9px;
+  color: #363636;
+}
+.alert {
+  padding: 11px;
+  margin-bottom: 20px;
+  border: 1px solid transparent;
+  border-radius: 1px;
+}
+.alert h4 {
+  margin-top: 0;
+  color: inherit;
+}
+.alert .alert-link {
+  font-weight: 500;
+}
+.alert > p,
+.alert > ul {
+  margin-bottom: 0;
+}
+.alert > p + p {
+  margin-top: 5px;
+}
+.alert-dismissable,
+.alert-dismissible {
+  padding-right: 31px;
+}
+.alert-dismissable .close,
+.alert-dismissible .close {
+  position: relative;
+  top: -2px;
+  right: -21px;
+  color: inherit;
+}
+.alert-success {
+  background-color: #e9f4e9;
+  border-color: #3f9c35;
+  color: #363636;
+}
+.alert-success hr {
+  border-top-color: #37892f;
+}
+.alert-success .alert-link {
+  color: #1d1d1d;
+}
+.alert-info {
+  background-color: #f5f5f5;
+  border-color: #8b8d8f;
+  color: #363636;
+}
+.alert-info hr {
+  border-top-color: #7e8082;
+}
+.alert-info .alert-link {
+  color: #1d1d1d;
+}
+.alert-warning {
+  background-color: #fdf2e5;
+  border-color: #ec7a08;
+  color: #363636;
+}
+.alert-warning hr {
+  border-top-color: #d36d07;
+}
+.alert-warning .alert-link {
+  color: #1d1d1d;
+}
+.alert-danger {
+  background-color: #ffe6e6;
+  border-color: #cc0000;
+  color: #363636;
+}
+.alert-danger hr {
+  border-top-color: #b30000;
+}
+.alert-danger .alert-link {
+  color: #1d1d1d;
+}
+@-webkit-keyframes progress-bar-stripes {
+  from {
+    background-position: 40px 0;
+  }
+  to {
+    background-position: 0 0;
+  }
+}
+@keyframes progress-bar-stripes {
+  from {
+    background-position: 40px 0;
+  }
+  to {
+    background-position: 0 0;
+  }
+}
+.progress {
+  overflow: hidden;
+  height: 20px;
+  margin-bottom: 20px;
+  background-color: #ededed;
+  border-radius: 1px;
+  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+}
+.progress-bar {
+  float: left;
+  width: 0%;
+  height: 100%;
+  font-size: 11px;
+  line-height: 20px;
+  color: #fff;
+  text-align: center;
+  background-color: #39a5dc;
+  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+  -webkit-transition: width 0.6s ease;
+  -o-transition: width 0.6s ease;
+  transition: width 0.6s ease;
+}
+.progress-striped .progress-bar,
+.progress-bar-striped {
+  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(-45deg, rgba(3, 3, 3, 0.15) 25%, rgba(3, 3, 3, 0.15) 26%, transparent 27%, transparent 49%, rgba(3, 3, 3, 0.15) 50%, rgba(3, 3, 3, 0.15) 51%, transparent 52%, transparent 74%, rgba(3, 3, 3, 0.15) 75%, rgba(3, 3, 3, 0.15) 76%, transparent 77%);
+  background-size: 40px 40px;
+}
+.progress.active .progress-bar,
+.progress-bar.active {
+  -webkit-animation: progress-bar-stripes 2s linear infinite;
+  -o-animation: progress-bar-stripes 2s linear infinite;
+  animation: progress-bar-stripes 2s linear infinite;
+}
+.progress-bar-success {
+  background-color: #3f9c35;
+}
+.progress-striped .progress-bar-success {
+  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(-45deg, rgba(3, 3, 3, 0.15) 25%, rgba(3, 3, 3, 0.15) 26%, transparent 27%, transparent 49%, rgba(3, 3, 3, 0.15) 50%, rgba(3, 3, 3, 0.15) 51%, transparent 52%, transparent 74%, rgba(3, 3, 3, 0.15) 75%, rgba(3, 3, 3, 0.15) 76%, transparent 77%);
+}
+.progress-bar-info {
+  background-color: #00659c;
+}
+.progress-striped .progress-bar-info {
+  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(-45deg, rgba(3, 3, 3, 0.15) 25%, rgba(3, 3, 3, 0.15) 26%, transparent 27%, transparent 49%, rgba(3, 3, 3, 0.15) 50%, rgba(3, 3, 3, 0.15) 51%, transparent 52%, transparent 74%, rgba(3, 3, 3, 0.15) 75%, rgba(3, 3, 3, 0.15) 76%, transparent 77%);
+}
+.progress-bar-warning {
+  background-color: #ec7a08;
+}
+.progress-striped .progress-bar-warning {
+  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(-45deg, rgba(3, 3, 3, 0.15) 25%, rgba(3, 3, 3, 0.15) 26%, transparent 27%, transparent 49%, rgba(3, 3, 3, 0.15) 50%, rgba(3, 3, 3, 0.15) 51%, transparent 52%, transparent 74%, rgba(3, 3, 3, 0.15) 75%, rgba(3, 3, 3, 0.15) 76%, transparent 77%);
+}
+.progress-bar-danger {
+  background-color: #cc0000;
+}
+.progress-striped .progress-bar-danger {
+  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
+  background-image: linear-gradient(-45deg, rgba(3, 3, 3, 0.15) 25%, rgba(3, 3, 3, 0.15) 26%, transparent 27%, transparent 49%, rgba(3, 3, 3, 0.15) 50%, rgba(3, 3, 3, 0.15) 51%, transparent 52%, transparent 74%, rgba(3, 3, 3, 0.15) 75%, rgba(3, 3, 3, 0.15) 76%, transparent 77%);
+}
+.media {
+  margin-top: 15px;
+}
+.media:first-child {
+  margin-top: 0;
+}
+.media,
+.media-body {
+  zoom: 1;
+  overflow: hidden;
+}
+.media-body {
+  width: 10000px;
+}
+.media-object {
+  display: block;
+}
+.media-object.img-thumbnail {
+  max-width: none;
+}
+.media-right,
+.media > .pull-right {
+  padding-left: 10px;
+}
+.media-left,
+.media > .pull-left {
+  padding-right: 10px;
+}
+.media-left,
+.media-right,
+.media-body {
+  display: table-cell;
+  vertical-align: top;
+}
+.media-middle {
+  vertical-align: middle;
+}
+.media-bottom {
+  vertical-align: bottom;
+}
+.media-heading {
+  margin-top: 0;
+  margin-bottom: 5px;
+}
+.media-list {
+  padding-left: 0;
+  list-style: none;
+}
+.list-group {
+  margin-bottom: 20px;
+  padding-left: 0;
+}
+.list-group-item {
+  position: relative;
+  display: block;
+  padding: 10px 15px;
+  margin-bottom: -1px;
+  background-color: #fff;
+  border: 1px solid #f5f5f5;
+}
+.list-group-item:first-child {
+  border-top-right-radius: 0;
+  border-top-left-radius: 0;
+}
+.list-group-item:last-child {
+  margin-bottom: 0;
+  border-bottom-right-radius: 0;
+  border-bottom-left-radius: 0;
+}
+a.list-group-item,
+button.list-group-item {
+  color: #555;
+}
+a.list-group-item .list-group-item-heading,
+button.list-group-item .list-group-item-heading {
+  color: #333;
+}
+a.list-group-item:hover,
+button.list-group-item:hover,
+a.list-group-item:focus,
+button.list-group-item:focus {
+  text-decoration: none;
+  color: #555;
+  background-color: #def3ff;
+}
+button.list-group-item {
+  width: 100%;
+  text-align: left;
+}
+.list-group-item.disabled,
+.list-group-item.disabled:hover,
+.list-group-item.disabled:focus {
+  background-color: #f1f1f1;
+  color: #9c9c9c;
+  cursor: not-allowed;
+}
+.list-group-item.disabled .list-group-item-heading,
+.list-group-item.disabled:hover .list-group-item-heading,
+.list-group-item.disabled:focus .list-group-item-heading {
+  color: inherit;
+}
+.list-group-item.disabled .list-group-item-text,
+.list-group-item.disabled:hover .list-group-item-text,
+.list-group-item.disabled:focus .list-group-item-text {
+  color: #9c9c9c;
+}
+.list-group-item.active,
+.list-group-item.active:hover,
+.list-group-item.active:focus {
+  z-index: 2;
+  color: #fff;
+  background-color: #39a5dc;
+  border-color: #39a5dc;
+}
+.list-group-item.active .list-group-item-heading,
+.list-group-item.active:hover .list-group-item-heading,
+.list-group-item.active:focus .list-group-item-heading,
+.list-group-item.active .list-group-item-heading > small,
+.list-group-item.active:hover .list-group-item-heading > small,
+.list-group-item.active:focus .list-group-item-heading > small,
+.list-group-item.active .list-group-item-heading > .small,
+.list-group-item.active:hover .list-group-item-heading > .small,
+.list-group-item.active:focus .list-group-item-heading > .small {
+  color: inherit;
+}
+.list-group-item.active .list-group-item-text,
+.list-group-item.active:hover .list-group-item-text,
+.list-group-item.active:focus .list-group-item-text {
+  color: #e6f4fb;
+}
+.list-group-item-success {
+  color: #3c763d;
+  background-color: #dff0d8;
+}
+a.list-group-item-success,
+button.list-group-item-success {
+  color: #3c763d;
+}
+a.list-group-item-success .list-group-item-heading,
+button.list-group-item-success .list-group-item-heading {
+  color: inherit;
+}
+a.list-group-item-success:hover,
+button.list-group-item-success:hover,
+a.list-group-item-success:focus,
+button.list-group-item-success:focus {
+  color: #3c763d;
+  background-color: #d0e9c6;
+}
+a.list-group-item-success.active,
+button.list-group-item-success.active,
+a.list-group-item-success.active:hover,
+button.list-group-item-success.active:hover,
+a.list-group-item-success.active:focus,
+button.list-group-item-success.active:focus {
+  color: #fff;
+  background-color: #3c763d;
+  border-color: #3c763d;
+}
+.list-group-item-info {
+  color: #31708f;
+  background-color: #d9edf7;
+}
+a.list-group-item-info,
+button.list-group-item-info {
+  color: #31708f;
+}
+a.list-group-item-info .list-group-item-heading,
+button.list-group-item-info .list-group-item-heading {
+  color: inherit;
+}
+a.list-group-item-info:hover,
+button.list-group-item-info:hover,
+a.list-group-item-info:focus,
+button.list-group-item-info:focus {
+  color: #31708f;
+  background-color: #c4e3f3;
+}
+a.list-group-item-info.active,
+button.list-group-item-info.active,
+a.list-group-item-info.active:hover,
+button.list-group-item-info.active:hover,
+a.list-group-item-info.active:focus,
+button.list-group-item-info.active:focus {
+  color: #fff;
+  background-color: #31708f;
+  border-color: #31708f;
+}
+.list-group-item-warning {
+  color: #ec7a08;
+  background-color: #fcf8e3;
+}
+a.list-group-item-warning,
+button.list-group-item-warning {
+  color: #ec7a08;
+}
+a.list-group-item-warning .list-group-item-heading,
+button.list-group-item-warning .list-group-item-heading {
+  color: inherit;
+}
+a.list-group-item-warning:hover,
+button.list-group-item-warning:hover,
+a.list-group-item-warning:focus,
+button.list-group-item-warning:focus {
+  color: #ec7a08;
+  background-color: #faf2cc;
+}
+a.list-group-item-warning.active,
+button.list-group-item-warning.active,
+a.list-group-item-warning.active:hover,
+button.list-group-item-warning.active:hover,
+a.list-group-item-warning.active:focus,
+button.list-group-item-warning.active:focus {
+  color: #fff;
+  background-color: #ec7a08;
+  border-color: #ec7a08;
+}
+.list-group-item-danger {
+  color: #cc0000;
+  background-color: #f2dede;
+}
+a.list-group-item-danger,
+button.list-group-item-danger {
+  color: #cc0000;
+}
+a.list-group-item-danger .list-group-item-heading,
+button.list-group-item-danger .list-group-item-heading {
+  color: inherit;
+}
+a.list-group-item-danger:hover,
+button.list-group-item-danger:hover,
+a.list-group-item-danger:focus,
+button.list-group-item-danger:focus {
+  color: #cc0000;
+  background-color: #ebcccc;
+}
+a.list-group-item-danger.active,
+button.list-group-item-danger.active,
+a.list-group-item-danger.active:hover,
+button.list-group-item-danger.active:hover,
+a.list-group-item-danger.active:focus,
+button.list-group-item-danger.active:focus {
+  color: #fff;
+  background-color: #cc0000;
+  border-color: #cc0000;
+}
+.list-group-item-heading {
+  margin-top: 0;
+  margin-bottom: 5px;
+}
+.list-group-item-text {
+  margin-bottom: 0;
+  line-height: 1.3;
+}
+.panel {
+  margin-bottom: 20px;
+  background-color: #fff;
+  border: 1px solid transparent;
+  border-radius: 1px;
+  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
+  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
+}
+.panel-body {
+  padding: 15px;
+}
+.panel-heading {
+  padding: 10px 15px;
+  border-bottom: 1px solid transparent;
+  border-top-right-radius: 0px;
+  border-top-left-radius: 0px;
+}
+.panel-heading > .dropdown .dropdown-toggle {
+  color: inherit;
+}
+.panel-title {
+  margin-top: 0;
+  margin-bottom: 0;
+  font-size: 14px;
+  color: inherit;
+}
+.panel-title > a,
+.panel-title > small,
+.panel-title > .small,
+.panel-title > small > a,
+.panel-title > .small > a {
+  color: inherit;
+}
+.panel-footer {
+  padding: 10px 15px;
+  background-color: #f5f5f5;
+  border-top: 1px solid #d1d1d1;
+  border-bottom-right-radius: 0px;
+  border-bottom-left-radius: 0px;
+}
+.panel > .list-group,
+.panel > .panel-collapse > .list-group {
+  margin-bottom: 0;
+}
+.panel > .list-group .list-group-item,
+.panel > .panel-collapse > .list-group .list-group-item {
+  border-width: 1px 0;
+  border-radius: 0;
+}
+.panel > .list-group:first-child .list-group-item:first-child,
+.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
+  border-top: 0;
+  border-top-right-radius: 0px;
+  border-top-left-radius: 0px;
+}
+.panel > .list-group:last-child .list-group-item:last-child,
+.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
+  border-bottom: 0;
+  border-bottom-right-radius: 0px;
+  border-bottom-left-radius: 0px;
+}
+.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
+  border-top-right-radius: 0;
+  border-top-left-radius: 0;
+}
+.panel-heading + .list-group .list-group-item:first-child {
+  border-top-width: 0;
+}
+.list-group + .panel-footer {
+  border-top-width: 0;
+}
+.panel > .table,
+.panel > .table-responsive > .table,
+.panel > .panel-collapse > .table {
+  margin-bottom: 0;
+}
+.panel > .table caption,
+.panel > .table-responsive > .table caption,
+.panel > .panel-collapse > .table caption {
+  padding-left: 15px;
+  padding-right: 15px;
+}
+.panel > .table:first-child,
+.panel > .table-responsive:first-child > .table:first-child {
+  border-top-right-radius: 0px;
+  border-top-left-radius: 0px;
+}
+.panel > .table:first-child > thead:first-child > tr:first-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
+  border-top-left-radius: 0px;
+  border-top-right-radius: 0px;
+}
+.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
+.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
+  border-top-left-radius: 0px;
+}
+.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
+.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
+.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
+.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
+.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
+  border-top-right-radius: 0px;
+}
+.panel > .table:last-child,
+.panel > .table-responsive:last-child > .table:last-child {
+  border-bottom-right-radius: 0px;
+  border-bottom-left-radius: 0px;
+}
+.panel > .table:last-child > tbody:last-child > tr:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
+  border-bottom-left-radius: 0px;
+  border-bottom-right-radius: 0px;
+}
+.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
+.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
+  border-bottom-left-radius: 0px;
+}
+.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
+.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
+.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
+.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
+  border-bottom-right-radius: 0px;
+}
+.panel > .panel-body + .table,
+.panel > .panel-body + .table-responsive,
+.panel > .table + .panel-body,
+.panel > .table-responsive + .panel-body {
+  border-top: 1px solid #d1d1d1;
+}
+.panel > .table > tbody:first-child > tr:first-child th,
+.panel > .table > tbody:first-child > tr:first-child td {
+  border-top: 0;
+}
+.panel > .table-bordered,
+.panel > .table-responsive > .table-bordered {
+  border: 0;
+}
+.panel > .table-bordered > thead > tr > th:first-child,
+.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
+.panel > .table-bordered > tbody > tr > th:first-child,
+.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
+.panel > .table-bordered > tfoot > tr > th:first-child,
+.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
+.panel > .table-bordered > thead > tr > td:first-child,
+.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
+.panel > .table-bordered > tbody > tr > td:first-child,
+.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
+.panel > .table-bordered > tfoot > tr > td:first-child,
+.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
+  border-left: 0;
+}
+.panel > .table-bordered > thead > tr > th:last-child,
+.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
+.panel > .table-bordered > tbody > tr > th:last-child,
+.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
+.panel > .table-bordered > tfoot > tr > th:last-child,
+.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
+.panel > .table-bordered > thead > tr > td:last-child,
+.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
+.panel > .table-bordered > tbody > tr > td:last-child,
+.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
+.panel > .table-bordered > tfoot > tr > td:last-child,
+.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
+  border-right: 0;
+}
+.panel > .table-bordered > thead > tr:first-child > td,
+.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
+.panel > .table-bordered > tbody > tr:first-child > td,
+.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
+.panel > .table-bordered > thead > tr:first-child > th,
+.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
+.panel > .table-bordered > tbody > tr:first-child > th,
+.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
+  border-bottom: 0;
+}
+.panel > .table-bordered > tbody > tr:last-child > td,
+.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
+.panel > .table-bordered > tfoot > tr:last-child > td,
+.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
+.panel > .table-bordered > tbody > tr:last-child > th,
+.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
+.panel > .table-bordered > tfoot > tr:last-child > th,
+.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
+  border-bottom: 0;
+}
+.panel > .table-responsive {
+  border: 0;
+  margin-bottom: 0;
+}
+.panel-group {
+  margin-bottom: 20px;
+}
+.panel-group .panel {
+  margin-bottom: 0;
+  border-radius: 1px;
+}
+.panel-group .panel + .panel {
+  margin-top: 5px;
+}
+.panel-group .panel-heading {
+  border-bottom: 0;
+}
+.panel-group .panel-heading + .panel-collapse > .panel-body,
+.panel-group .panel-heading + .panel-collapse > .list-group {
+  border-top: 1px solid #d1d1d1;
+}
+.panel-group .panel-footer {
+  border-top: 0;
+}
+.panel-group .panel-footer + .panel-collapse .panel-body {
+  border-bottom: 1px solid #d1d1d1;
+}
+.panel-default {
+  border-color: #ddd;
+}
+.panel-default > .panel-heading {
+  color: #363636;
+  background-color: #f5f5f5;
+  border-color: #ddd;
+}
+.panel-default > .panel-heading + .panel-collapse > .panel-body {
+  border-top-color: #ddd;
+}
+.panel-default > .panel-heading .badge {
+  color: #f5f5f5;
+  background-color: #363636;
+}
+.panel-default > .panel-footer + .panel-collapse > .panel-body {
+  border-bottom-color: #ddd;
+}
+.panel-primary {
+  border-color: #39a5dc;
+}
+.panel-primary > .panel-heading {
+  color: #fff;
+  background-color: #39a5dc;
+  border-color: #39a5dc;
+}
+.panel-primary > .panel-heading + .panel-collapse > .panel-body {
+  border-top-color: #39a5dc;
+}
+.panel-primary > .panel-heading .badge {
+  color: #39a5dc;
+  background-color: #fff;
+}
+.panel-primary > .panel-footer + .panel-collapse > .panel-body {
+  border-bottom-color: #39a5dc;
+}
+.panel-success {
+  border-color: #3f9c35;
+}
+.panel-success > .panel-heading {
+  color: #fff;
+  background-color: #3f9c35;
+  border-color: #3f9c35;
+}
+.panel-success > .panel-heading + .panel-collapse > .panel-body {
+  border-top-color: #3f9c35;
+}
+.panel-success > .panel-heading .badge {
+  color: #3f9c35;
+  background-color: #fff;
+}
+.panel-success > .panel-footer + .panel-collapse > .panel-body {
+  border-bottom-color: #3f9c35;
+}
+.panel-info {
+  border-color: #00659c;
+}
+.panel-info > .panel-heading {
+  color: #fff;
+  background-color: #00659c;
+  border-color: #00659c;
+}
+.panel-info > .panel-heading + .panel-collapse > .panel-body {
+  border-top-color: #00659c;
+}
+.panel-info > .panel-heading .badge {
+  color: #00659c;
+  background-color: #fff;
+}
+.panel-info > .panel-footer + .panel-collapse > .panel-body {
+  border-bottom-color: #00659c;
+}
+.panel-warning {
+  border-color: #ec7a08;
+}
+.panel-warning > .panel-heading {
+  color: #fff;
+  background-color: #ec7a08;
+  border-color: #ec7a08;
+}
+.panel-warning > .panel-heading + .panel-collapse > .panel-body {
+  border-top-color: #ec7a08;
+}
+.panel-warning > .panel-heading .badge {
+  color: #ec7a08;
+  background-color: #fff;
+}
+.panel-warning > .panel-footer + .panel-collapse > .panel-body {
+  border-bottom-color: #ec7a08;
+}
+.panel-danger {
+  border-color: #cc0000;
+}
+.panel-danger > .panel-heading {
+  color: #fff;
+  background-color: #cc0000;
+  border-color: #cc0000;
+}
+.panel-danger > .panel-heading + .panel-collapse > .panel-body {
+  border-top-color: #cc0000;
+}
+.panel-danger > .panel-heading .badge {
+  color: #cc0000;
+  background-color: #fff;
+}
+.panel-danger > .panel-footer + .panel-collapse > .panel-body {
+  border-bottom-color: #cc0000;
+}
+.embed-responsive {
+  position: relative;
+  display: block;
+  height: 0;
+  padding: 0;
+  overflow: hidden;
+}
+.embed-responsive .embed-responsive-item,
+.embed-responsive iframe,
+.embed-responsive embed,
+.embed-responsive object,
+.embed-responsive video {
+  position: absolute;
+  top: 0;
+  left: 0;
+  bottom: 0;
+  height: 100%;
+  width: 100%;
+  border: 0;
+}
+.embed-responsive-16by9 {
+  padding-bottom: 56.25%;
+}
+.embed-responsive-4by3 {
+  padding-bottom: 75%;
+}
+.well {
+  min-height: 20px;
+  padding: 19px;
+  margin-bottom: 20px;
+  background-color: #f5f5f5;
+  border: 1px solid #e3e3e3;
+  border-radius: 1px;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
+}
+.well blockquote {
+  border-color: #ddd;
+  border-color: rgba(0, 0, 0, 0.15);
+}
+.well-lg {
+  padding: 24px;
+  border-radius: 1px;
+}
+.well-sm {
+  padding: 9px;
+  border-radius: 1px;
+}
+.close {
+  float: right;
+  font-size: 18px;
+  font-weight: bold;
+  line-height: 1;
+  color: #000;
+  text-shadow: 0 1px 0 #fff;
+  opacity: 0.2;
+  filter: alpha(opacity=20);
+}
+.close:hover,
+.close:focus {
+  color: #000;
+  text-decoration: none;
+  cursor: pointer;
+  opacity: 0.5;
+  filter: alpha(opacity=50);
+}
+button.close {
+  padding: 0;
+  cursor: pointer;
+  background: transparent;
+  border: 0;
+  -webkit-appearance: none;
+}
+.modal-open {
+  overflow: hidden;
+}
+.modal {
+  display: none;
+  overflow: hidden;
+  position: fixed;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: 1050;
+  -webkit-overflow-scrolling: touch;
+  outline: 0;
+}
+.modal.fade .modal-dialog {
+  -webkit-transform: translate(0, -25%);
+  -ms-transform: translate(0, -25%);
+  -o-transform: translate(0, -25%);
+  transform: translate(0, -25%);
+  -webkit-transition: -webkit-transform 0.3s ease-out;
+  -moz-transition: -moz-transform 0.3s ease-out;
+  -o-transition: -o-transform 0.3s ease-out;
+  transition: transform 0.3s ease-out;
+}
+.modal.in .modal-dialog {
+  -webkit-transform: translate(0, 0);
+  -ms-transform: translate(0, 0);
+  -o-transform: translate(0, 0);
+  transform: translate(0, 0);
+}
+.modal-open .modal {
+  overflow-x: hidden;
+  overflow-y: auto;
+}
+.modal-dialog {
+  position: relative;
+  width: auto;
+  margin: 10px;
+}
+.modal-content {
+  position: relative;
+  background-color: #fff;
+  border: 1px solid #999;
+  border: 1px solid rgba(0, 0, 0, 0.2);
+  border-radius: 1px;
+  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
+  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
+  background-clip: padding-box;
+  outline: 0;
+}
+.modal-backdrop {
+  position: fixed;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  left: 0;
+  z-index: 1040;
+  background-color: #000;
+}
+.modal-backdrop.fade {
+  opacity: 0;
+  filter: alpha(opacity=0);
+}
+.modal-backdrop.in {
+  opacity: 0.5;
+  filter: alpha(opacity=50);
+}
+.modal-header {
+  padding: 15px;
+  border-bottom: 1px solid #e5e5e5;
+}
+.modal-header .close {
+  margin-top: -2px;
+}
+.modal-title {
+  margin: 0;
+  line-height: 1.66666667;
+}
+.modal-body {
+  position: relative;
+  padding: 15px;
+}
+.modal-footer {
+  padding: 15px;
+  text-align: right;
+  border-top: 1px solid #e5e5e5;
+}
+.modal-footer .btn + .btn {
+  margin-left: 5px;
+  margin-bottom: 0;
+}
+.modal-footer .btn-group .btn + .btn {
+  margin-left: -1px;
+}
+.modal-footer .btn-block + .btn-block {
+  margin-left: 0;
+}
+.modal-scrollbar-measure {
+  position: absolute;
+  top: -9999px;
+  width: 50px;
+  height: 50px;
+  overflow: scroll;
+}
+@media (min-width: 768px) {
+  .modal-dialog {
+    width: 600px;
+    margin: 30px auto;
+  }
+  .modal-content {
+    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
+    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
+  }
+  .modal-sm {
+    width: 300px;
+  }
+}
+@media (min-width: 992px) {
+  .modal-lg {
+    width: 900px;
+  }
+}
+.tooltip {
+  position: absolute;
+  z-index: 1070;
+  display: block;
+  font-family: "Open Sans", Helvetica, Arial, sans-serif;
+  font-style: normal;
+  font-weight: normal;
+  letter-spacing: normal;
+  line-break: auto;
+  line-height: 1.66666667;
+  text-align: left;
+  text-align: start;
+  text-decoration: none;
+  text-shadow: none;
+  text-transform: none;
+  white-space: normal;
+  word-break: normal;
+  word-spacing: normal;
+  word-wrap: normal;
+  font-size: 11px;
+  opacity: 0;
+  filter: alpha(opacity=0);
+}
+.tooltip.in {
+  opacity: 0.9;
+  filter: alpha(opacity=90);
+}
+.tooltip.top {
+  margin-top: -3px;
+  padding: 8px 0;
+}
+.tooltip.right {
+  margin-left: 3px;
+  padding: 0 8px;
+}
+.tooltip.bottom {
+  margin-top: 3px;
+  padding: 8px 0;
+}
+.tooltip.left {
+  margin-left: -3px;
+  padding: 0 8px;
+}
+.tooltip-inner {
+  max-width: 220px;
+  padding: 3px 8px;
+  color: #fff;
+  text-align: center;
+  background-color: #393f44;
+  border-radius: 1px;
+}
+.tooltip-arrow {
+  position: absolute;
+  width: 0;
+  height: 0;
+  border-color: transparent;
+  border-style: solid;
+}
+.tooltip.top .tooltip-arrow {
+  bottom: 0;
+  left: 50%;
+  margin-left: -8px;
+  border-width: 8px 8px 0;
+  border-top-color: #393f44;
+}
+.tooltip.top-left .tooltip-arrow {
+  bottom: 0;
+  right: 8px;
+  margin-bottom: -8px;
+  border-width: 8px 8px 0;
+  border-top-color: #393f44;
+}
+.tooltip.top-right .tooltip-arrow {
+  bottom: 0;
+  left: 8px;
+  margin-bottom: -8px;
+  border-width: 8px 8px 0;
+  border-top-color: #393f44;
+}
+.tooltip.right .tooltip-arrow {
+  top: 50%;
+  left: 0;
+  margin-top: -8px;
+  border-width: 8px 8px 8px 0;
+  border-right-color: #393f44;
+}
+.tooltip.left .tooltip-arrow {
+  top: 50%;
+  right: 0;
+  margin-top: -8px;
+  border-width: 8px 0 8px 8px;
+  border-left-color: #393f44;
+}
+.tooltip.bottom .tooltip-arrow {
+  top: 0;
+  left: 50%;
+  margin-left: -8px;
+  border-width: 0 8px 8px;
+  border-bottom-color: #393f44;
+}
+.tooltip.bottom-left .tooltip-arrow {
+  top: 0;
+  right: 8px;
+  margin-top: -8px;
+  border-width: 0 8px 8px;
+  border-bottom-color: #393f44;
+}
+.tooltip.bottom-right .tooltip-arrow {
+  top: 0;
+  left: 8px;
+  margin-top: -8px;
+  border-width: 0 8px 8px;
+  border-bottom-color: #393f44;
+}
+.popover {
+  position: absolute;
+  top: 0;
+  left: 0;
+  z-index: 1060;
+  display: none;
+  max-width: 220px;
+  padding: 1px;
+  font-family: "Open Sans", Helvetica, Arial, sans-serif;
+  font-style: normal;
+  font-weight: normal;
+  letter-spacing: normal;
+  line-break: auto;
+  line-height: 1.66666667;
+  text-align: left;
+  text-align: start;
+  text-decoration: none;
+  text-shadow: none;
+  text-transform: none;
+  white-space: normal;
+  word-break: normal;
+  word-spacing: normal;
+  word-wrap: normal;
+  font-size: 12px;
+  background-color: #fff;
+  background-clip: padding-box;
+  border: 1px solid #ccc;
+  border: 1px solid #bbb;
+  border-radius: 1px;
+  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
+}
+.popover.top {
+  margin-top: -10px;
+}
+.popover.right {
+  margin-left: 10px;
+}
+.popover.bottom {
+  margin-top: 10px;
+}
+.popover.left {
+  margin-left: -10px;
+}
+.popover-title {
+  margin: 0;
+  padding: 8px 14px;
+  font-size: 12px;
+  background-color: #f5f5f5;
+  border-bottom: 1px solid #e8e8e8;
+  border-radius: 0px 0px 0 0;
+}
+.popover-content {
+  padding: 9px 14px;
+}
+.popover > .arrow,
+.popover > .arrow:after {
+  position: absolute;
+  display: block;
+  width: 0;
+  height: 0;
+  border-color: transparent;
+  border-style: solid;
+}
+.popover > .arrow {
+  border-width: 11px;
+}
+.popover > .arrow:after {
+  border-width: 10px;
+  content: "";
+}
+.popover.top > .arrow {
+  left: 50%;
+  margin-left: -11px;
+  border-bottom-width: 0;
+  border-top-color: #999999;
+  border-top-color: #bbb;
+  bottom: -11px;
+}
+.popover.top > .arrow:after {
+  content: " ";
+  bottom: 1px;
+  margin-left: -10px;
+  border-bottom-width: 0;
+  border-top-color: #fff;
+}
+.popover.right > .arrow {
+  top: 50%;
+  left: -11px;
+  margin-top: -11px;
+  border-left-width: 0;
+  border-right-color: #999999;
+  border-right-color: #bbb;
+}
+.popover.right > .arrow:after {
+  content: " ";
+  left: 1px;
+  bottom: -10px;
+  border-left-width: 0;
+  border-right-color: #fff;
+}
+.popover.bottom > .arrow {
+  left: 50%;
+  margin-left: -11px;
+  border-top-width: 0;
+  border-bottom-color: #999999;
+  border-bottom-color: #bbb;
+  top: -11px;
+}
+.popover.bottom > .arrow:after {
+  content: " ";
+  top: 1px;
+  margin-left: -10px;
+  border-top-width: 0;
+  border-bottom-color: #fff;
+}
+.popover.left > .arrow {
+  top: 50%;
+  right: -11px;
+  margin-top: -11px;
+  border-right-width: 0;
+  border-left-color: #999999;
+  border-left-color: #bbb;
+}
+.popover.left > .arrow:after {
+  content: " ";
+  right: 1px;
+  border-right-width: 0;
+  border-left-color: #fff;
+  bottom: -10px;
+}
+.carousel {
+  position: relative;
+}
+.carousel-inner {
+  position: relative;
+  overflow: hidden;
+  width: 100%;
+}
+.carousel-inner > .item {
+  display: none;
+  position: relative;
+  -webkit-transition: 0.6s ease-in-out left;
+  -o-transition: 0.6s ease-in-out left;
+  transition: 0.6s ease-in-out left;
+}
+.carousel-inner > .item > img,
+.carousel-inner > .item > a > img {
+  line-height: 1;
+}
+@media all and (transform-3d), (-webkit-transform-3d) {
+  .carousel-inner > .item {
+    -webkit-transition: -webkit-transform 0.6s ease-in-out;
+    -moz-transition: -moz-transform 0.6s ease-in-out;
+    -o-transition: -o-transform 0.6s ease-in-out;
+    transition: transform 0.6s ease-in-out;
+    -webkit-backface-visibility: hidden;
+    -moz-backface-visibility: hidden;
+    backface-visibility: hidden;
+    -webkit-perspective: 1000px;
+    -moz-perspective: 1000px;
+    perspective: 1000px;
+  }
+  .carousel-inner > .item.next,
+  .carousel-inner > .item.active.right {
+    -webkit-transform: translate3d(100%, 0, 0);
+    transform: translate3d(100%, 0, 0);
+    left: 0;
+  }
+  .carousel-inner > .item.prev,
+  .carousel-inner > .item.active.left {
+    -webkit-transform: translate3d(-100%, 0, 0);
+    transform: translate3d(-100%, 0, 0);
+    left: 0;
+  }
+  .carousel-inner > .item.next.left,
+  .carousel-inner > .item.prev.right,
+  .carousel-inner > .item.active {
+    -webkit-transform: translate3d(0, 0, 0);
+    transform: translate3d(0, 0, 0);
+    left: 0;
+  }
+}
+.carousel-inner > .active,
+.carousel-inner > .next,
+.carousel-inner > .prev {
+  display: block;
+}
+.carousel-inner > .active {
+  left: 0;
+}
+.carousel-inner > .next,
+.carousel-inner > .prev {
+  position: absolute;
+  top: 0;
+  width: 100%;
+}
+.carousel-inner > .next {
+  left: 100%;
+}
+.carousel-inner > .prev {
+  left: -100%;
+}
+.carousel-inner > .next.left,
+.carousel-inner > .prev.right {
+  left: 0;
+}
+.carousel-inner > .active.left {
+  left: -100%;
+}
+.carousel-inner > .active.right {
+  left: 100%;
+}
+.carousel-control {
+  position: absolute;
+  top: 0;
+  left: 0;
+  bottom: 0;
+  width: 15%;
+  opacity: 0.5;
+  filter: alpha(opacity=50);
+  font-size: 20px;
+  color: #fff;
+  text-align: center;
+  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
+  background-color: rgba(0, 0, 0, 0);
+}
+.carousel-control.left {
+  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
+  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
+  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
+}
+.carousel-control.right {
+  left: auto;
+  right: 0;
+  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
+  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
+  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
+}
+.carousel-control:hover,
+.carousel-control:focus {
+  outline: 0;
+  color: #fff;
+  text-decoration: none;
+  opacity: 0.9;
+  filter: alpha(opacity=90);
+}
+.carousel-control .icon-prev,
+.carousel-control .icon-next,
+.carousel-control .glyphicon-chevron-left,
+.carousel-control .glyphicon-chevron-right {
+  position: absolute;
+  top: 50%;
+  margin-top: -10px;
+  z-index: 5;
+  display: inline-block;
+}
+.carousel-control .icon-prev,
+.carousel-control .glyphicon-chevron-left {
+  left: 50%;
+  margin-left: -10px;
+}
+.carousel-control .icon-next,
+.carousel-control .glyphicon-chevron-right {
+  right: 50%;
+  margin-right: -10px;
+}
+.carousel-control .icon-prev,
+.carousel-control .icon-next {
+  width: 20px;
+  height: 20px;
+  line-height: 1;
+  font-family: serif;
+}
+.carousel-control .icon-prev:before {
+  content: '\2039';
+}
+.carousel-control .icon-next:before {
+  content: '\203a';
+}
+.carousel-indicators {
+  position: absolute;
+  bottom: 10px;
+  left: 50%;
+  z-index: 15;
+  width: 60%;
+  margin-left: -30%;
+  padding-left: 0;
+  list-style: none;
+  text-align: center;
+}
+.carousel-indicators li {
+  display: inline-block;
+  width: 10px;
+  height: 10px;
+  margin: 1px;
+  text-indent: -999px;
+  border: 1px solid #fff;
+  border-radius: 10px;
+  cursor: pointer;
+  background-color: #000 \9;
+  background-color: rgba(0, 0, 0, 0);
+}
+.carousel-indicators .active {
+  margin: 0;
+  width: 12px;
+  height: 12px;
+  background-color: #fff;
+}
+.carousel-caption {
+  position: absolute;
+  left: 15%;
+  right: 15%;
+  bottom: 20px;
+  z-index: 10;
+  padding-top: 20px;
+  padding-bottom: 20px;
+  color: #fff;
+  text-align: center;
+  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
+}
+.carousel-caption .btn {
+  text-shadow: none;
+}
+@media screen and (min-width: 768px) {
+  .carousel-control .glyphicon-chevron-left,
+  .carousel-control .glyphicon-chevron-right,
+  .carousel-control .icon-prev,
+  .carousel-control .icon-next {
+    width: 30px;
+    height: 30px;
+    margin-top: -10px;
+    font-size: 30px;
+  }
+  .carousel-control .glyphicon-chevron-left,
+  .carousel-control .icon-prev {
+    margin-left: -10px;
+  }
+  .carousel-control .glyphicon-chevron-right,
+  .carousel-control .icon-next {
+    margin-right: -10px;
+  }
+  .carousel-caption {
+    left: 20%;
+    right: 20%;
+    padding-bottom: 30px;
+  }
+  .carousel-indicators {
+    bottom: 20px;
+  }
+}
+.clearfix:before,
+.clearfix:after,
+.dl-horizontal dd:before,
+.dl-horizontal dd:after,
+.container:before,
+.container:after,
+.container-fluid:before,
+.container-fluid:after,
+.row:before,
+.row:after,
+.form-horizontal .form-group:before,
+.form-horizontal .form-group:after,
+.btn-toolbar:before,
+.btn-toolbar:after,
+.btn-group-vertical > .btn-group:before,
+.btn-group-vertical > .btn-group:after,
+.nav:before,
+.nav:after,
+.navbar:before,
+.navbar:after,
+.navbar-header:before,
+.navbar-header:after,
+.navbar-collapse:before,
+.navbar-collapse:after,
+.pager:before,
+.pager:after,
+.panel-body:before,
+.panel-body:after,
+.modal-header:before,
+.modal-header:after,
+.modal-footer:before,
+.modal-footer:after {
+  content: " ";
+  display: table;
+}
+.clearfix:after,
+.dl-horizontal dd:after,
+.container:after,
+.container-fluid:after,
+.row:after,
+.form-horizontal .form-group:after,
+.btn-toolbar:after,
+.btn-group-vertical > .btn-group:after,
+.nav:after,
+.navbar:after,
+.navbar-header:after,
+.navbar-collapse:after,
+.pager:after,
+.panel-body:after,
+.modal-header:after,
+.modal-footer:after {
+  clear: both;
+}
+.center-block {
+  display: block;
+  margin-left: auto;
+  margin-right: auto;
+}
+.pull-right {
+  float: right !important;
+}
+.pull-left {
+  float: left !important;
+}
+.hide {
+  display: none !important;
+}
+.show {
+  display: block !important;
+}
+.invisible {
+  visibility: hidden;
+}
+.text-hide {
+  font: 0/0 a;
+  color: transparent;
+  text-shadow: none;
+  background-color: transparent;
+  border: 0;
+}
+.hidden {
+  display: none !important;
+}
+.affix {
+  position: fixed;
+}
+@-ms-viewport {
+  width: device-width;
+}
+.visible-xs,
+.visible-sm,
+.visible-md,
+.visible-lg {
+  display: none !important;
+}
+.visible-xs-block,
+.visible-xs-inline,
+.visible-xs-inline-block,
+.visible-sm-block,
+.visible-sm-inline,
+.visible-sm-inline-block,
+.visible-md-block,
+.visible-md-inline,
+.visible-md-inline-block,
+.visible-lg-block,
+.visible-lg-inline,
+.visible-lg-inline-block {
+  display: none !important;
+}
+@media (max-width: 767px) {
+  .visible-xs {
+    display: block !important;
+  }
+  table.visible-xs {
+    display: table !important;
+  }
+  tr.visible-xs {
+    display: table-row !important;
+  }
+  th.visible-xs,
+  td.visible-xs {
+    display: table-cell !important;
+  }
+}
+@media (max-width: 767px) {
+  .visible-xs-block {
+    display: block !important;
+  }
+}
+@media (max-width: 767px) {
+  .visible-xs-inline {
+    display: inline !important;
+  }
+}
+@media (max-width: 767px) {
+  .visible-xs-inline-block {
+    display: inline-block !important;
+  }
+}
+@media (min-width: 768px) and (max-width: 991px) {
+  .visible-sm {
+    display: block !important;
+  }
+  table.visible-sm {
+    display: table !important;
+  }
+  tr.visible-sm {
+    display: table-row !important;
+  }
+  th.visible-sm,
+  td.visible-sm {
+    display: table-cell !important;
+  }
+}
+@media (min-width: 768px) and (max-width: 991px) {
+  .visible-sm-block {
+    display: block !important;
+  }
+}
+@media (min-width: 768px) and (max-width: 991px) {
+  .visible-sm-inline {
+    display: inline !important;
+  }
+}
+@media (min-width: 768px) and (max-width: 991px) {
+  .visible-sm-inline-block {
+    display: inline-block !important;
+  }
+}
+@media (min-width: 992px) and (max-width: 1199px) {
+  .visible-md {
+    display: block !important;
+  }
+  table.visible-md {
+    display: table !important;
+  }
+  tr.visible-md {
+    display: table-row !important;
+  }
+  th.visible-md,
+  td.visible-md {
+    display: table-cell !important;
+  }
+}
+@media (min-width: 992px) and (max-width: 1199px) {
+  .visible-md-block {
+    display: block !important;
+  }
+}
+@media (min-width: 992px) and (max-width: 1199px) {
+  .visible-md-inline {
+    display: inline !important;
+  }
+}
+@media (min-width: 992px) and (max-width: 1199px) {
+  .visible-md-inline-block {
+    display: inline-block !important;
+  }
+}
+@media (min-width: 1200px) {
+  .visible-lg {
+    display: block !important;
+  }
+  table.visible-lg {
+    display: table !important;
+  }
+  tr.visible-lg {
+    display: table-row !important;
+  }
+  th.visible-lg,
+  td.visible-lg {
+    display: table-cell !important;
+  }
+}
+@media (min-width: 1200px) {
+  .visible-lg-block {
+    display: block !important;
+  }
+}
+@media (min-width: 1200px) {
+  .visible-lg-inline {
+    display: inline !important;
+  }
+}
+@media (min-width: 1200px) {
+  .visible-lg-inline-block {
+    display: inline-block !important;
+  }
+}
+@media (max-width: 767px) {
+  .hidden-xs {
+    display: none !important;
+  }
+}
+@media (min-width: 768px) and (max-width: 991px) {
+  .hidden-sm {
+    display: none !important;
+  }
+}
+@media (min-width: 992px) and (max-width: 1199px) {
+  .hidden-md {
+    display: none !important;
+  }
+}
+@media (min-width: 1200px) {
+  .hidden-lg {
+    display: none !important;
+  }
+}
+.visible-print {
+  display: none !important;
+}
+@media print {
+  .visible-print {
+    display: block !important;
+  }
+  table.visible-print {
+    display: table !important;
+  }
+  tr.visible-print {
+    display: table-row !important;
+  }
+  th.visible-print,
+  td.visible-print {
+    display: table-cell !important;
+  }
+}
+.visible-print-block {
+  display: none !important;
+}
+@media print {
+  .visible-print-block {
+    display: block !important;
+  }
+}
+.visible-print-inline {
+  display: none !important;
+}
+@media print {
+  .visible-print-inline {
+    display: inline !important;
+  }
+}
+.visible-print-inline-block {
+  display: none !important;
+}
+@media print {
+  .visible-print-inline-block {
+    display: inline-block !important;
+  }
+}
+@media print {
+  .hidden-print {
+    display: none !important;
+  }
+}
+/*!
+ *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
+ *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */
+/* FONT PATH
+ * -------------------------- */
+@font-face {
+  font-family: 'FontAwesome';
+  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
+  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
+  font-weight: normal;
+  font-style: normal;
+}
+.fa {
+  display: inline-block;
+  font: normal normal normal 14px/1 FontAwesome;
+  font-size: inherit;
+  text-rendering: auto;
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+}
+/* makes the font 33% larger relative to the icon container */
+.fa-lg {
+  font-size: 1.33333333em;
+  line-height: 0.75em;
+  vertical-align: -15%;
+}
+.fa-2x {
+  font-size: 2em;
+}
+.fa-3x {
+  font-size: 3em;
+}
+.fa-4x {
+  font-size: 4em;
+}
+.fa-5x {
+  font-size: 5em;
+}
+.fa-fw {
+  width: 1.28571429em;
+  text-align: center;
+}
+.fa-ul {
+  padding-left: 0;
+  margin-left: 2.14285714em;
+  list-style-type: none;
+}
+.fa-ul > li {
+  position: relative;
+}
+.fa-li {
+  position: absolute;
+  left: -2.14285714em;
+  width: 2.14285714em;
+  top: 0.14285714em;
+  text-align: center;
+}
+.fa-li.fa-lg {
+  left: -1.85714286em;
+}
+.fa-border {
+  padding: .2em .25em .15em;
+  border: solid 0.08em #eee;
+  border-radius: .1em;
+}
+.fa-pull-left {
+  float: left;
+}
+.fa-pull-right {
+  float: right;
+}
+.fa.fa-pull-left {
+  margin-right: .3em;
+}
+.fa.fa-pull-right {
+  margin-left: .3em;
+}
+/* Deprecated as of 4.4.0 */
+.pull-right {
+  float: right;
+}
+.pull-left {
+  float: left;
+}
+.fa.pull-left {
+  margin-right: .3em;
+}
+.fa.pull-right {
+  margin-left: .3em;
+}
+.fa-spin {
+  -webkit-animation: fa-spin 2s infinite linear;
+  animation: fa-spin 2s infinite linear;
+}
+.fa-pulse {
+  -webkit-animation: fa-spin 1s infinite steps(8);
+  animation: fa-spin 1s infinite steps(8);
+}
+@-webkit-keyframes fa-spin {
+  0% {
+    -webkit-transform: rotate(0deg);
+    transform: rotate(0deg);
+  }
+  100% {
+    -webkit-transform: rotate(359deg);
+    transform: rotate(359deg);
+  }
+}
+@keyframes fa-spin {
+  0% {
+    -webkit-transform: rotate(0deg);
+    transform: rotate(0deg);
+  }
+  100% {
+    -webkit-transform: rotate(359deg);
+    transform: rotate(359deg);
+  }
+}
+.fa-rotate-90 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
+  -webkit-transform: rotate(90deg);
+  -ms-transform: rotate(90deg);
+  transform: rotate(90deg);
+}
+.fa-rotate-180 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
+  -webkit-transform: rotate(180deg);
+  -ms-transform: rotate(180deg);
+  transform: rotate(180deg);
+}
+.fa-rotate-270 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
+  -webkit-transform: rotate(270deg);
+  -ms-transform: rotate(270deg);
+  transform: rotate(270deg);
+}
+.fa-flip-horizontal {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
+  -webkit-transform: scale(-1, 1);
+  -ms-transform: scale(-1, 1);
+  transform: scale(-1, 1);
+}
+.fa-flip-vertical {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
+  -webkit-transform: scale(1, -1);
+  -ms-transform: scale(1, -1);
+  transform: scale(1, -1);
+}
+:root .fa-rotate-90,
+:root .fa-rotate-180,
+:root .fa-rotate-270,
+:root .fa-flip-horizontal,
+:root .fa-flip-vertical {
+  filter: none;
+}
+.fa-stack {
+  position: relative;
+  display: inline-block;
+  width: 2em;
+  height: 2em;
+  line-height: 2em;
+  vertical-align: middle;
+}
+.fa-stack-1x,
+.fa-stack-2x {
+  position: absolute;
+  left: 0;
+  width: 100%;
+  text-align: center;
+}
+.fa-stack-1x {
+  line-height: inherit;
+}
+.fa-stack-2x {
+  font-size: 2em;
+}
+.fa-inverse {
+  color: #fff;
+}
+/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
+   readers do not read off random characters that represent icons */
+.fa-glass:before {
+  content: "\f000";
+}
+.fa-music:before {
+  content: "\f001";
+}
+.fa-search:before {
+  content: "\f002";
+}
+.fa-envelope-o:before {
+  content: "\f003";
+}
+.fa-heart:before {
+  content: "\f004";
+}
+.fa-star:before {
+  content: "\f005";
+}
+.fa-star-o:before {
+  content: "\f006";
+}
+.fa-user:before {
+  content: "\f007";
+}
+.fa-film:before {
+  content: "\f008";
+}
+.fa-th-large:before {
+  content: "\f009";
+}
+.fa-th:before {
+  content: "\f00a";
+}
+.fa-th-list:before {
+  content: "\f00b";
+}
+.fa-check:before {
+  content: "\f00c";
+}
+.fa-remove:before,
+.fa-close:before,
+.fa-times:before {
+  content: "\f00d";
+}
+.fa-search-plus:before {
+  content: "\f00e";
+}
+.fa-search-minus:before {
+  content: "\f010";
+}
+.fa-power-off:before {
+  content: "\f011";
+}
+.fa-signal:before {
+  content: "\f012";
+}
+.fa-gear:before,
+.fa-cog:before {
+  content: "\f013";
+}
+.fa-trash-o:before {
+  content: "\f014";
+}
+.fa-home:before {
+  content: "\f015";
+}
+.fa-file-o:before {
+  content: "\f016";
+}
+.fa-clock-o:before {
+  content: "\f017";
+}
+.fa-road:before {
+  content: "\f018";
+}
+.fa-download:before {
+  content: "\f019";
+}
+.fa-arrow-circle-o-down:before {
+  content: "\f01a";
+}
+.fa-arrow-circle-o-up:before {
+  content: "\f01b";
+}
+.fa-inbox:before {
+  content: "\f01c";
+}
+.fa-play-circle-o:before {
+  content: "\f01d";
+}
+.fa-rotate-right:before,
+.fa-repeat:before {
+  content: "\f01e";
+}
+.fa-refresh:before {
+  content: "\f021";
+}
+.fa-list-alt:before {
+  content: "\f022";
+}
+.fa-lock:before {
+  content: "\f023";
+}
+.fa-flag:before {
+  content: "\f024";
+}
+.fa-headphones:before {
+  content: "\f025";
+}
+.fa-volume-off:before {
+  content: "\f026";
+}
+.fa-volume-down:before {
+  content: "\f027";
+}
+.fa-volume-up:before {
+  content: "\f028";
+}
+.fa-qrcode:before {
+  content: "\f029";
+}
+.fa-barcode:before {
+  content: "\f02a";
+}
+.fa-tag:before {
+  content: "\f02b";
+}
+.fa-tags:before {
+  content: "\f02c";
+}
+.fa-book:before {
+  content: "\f02d";
+}
+.fa-bookmark:before {
+  content: "\f02e";
+}
+.fa-print:before {
+  content: "\f02f";
+}
+.fa-camera:before {
+  content: "\f030";
+}
+.fa-font:before {
+  content: "\f031";
+}
+.fa-bold:before {
+  content: "\f032";
+}
+.fa-italic:before {
+  content: "\f033";
+}
+.fa-text-height:before {
+  content: "\f034";
+}
+.fa-text-width:before {
+  content: "\f035";
+}
+.fa-align-left:before {
+  content: "\f036";
+}
+.fa-align-center:before {
+  content: "\f037";
+}
+.fa-align-right:before {
+  content: "\f038";
+}
+.fa-align-justify:before {
+  content: "\f039";
+}
+.fa-list:before {
+  content: "\f03a";
+}
+.fa-dedent:before,
+.fa-outdent:before {
+  content: "\f03b";
+}
+.fa-indent:before {
+  content: "\f03c";
+}
+.fa-video-camera:before {
+  content: "\f03d";
+}
+.fa-photo:before,
+.fa-image:before,
+.fa-picture-o:before {
+  content: "\f03e";
+}
+.fa-pencil:before {
+  content: "\f040";
+}
+.fa-map-marker:before {
+  content: "\f041";
+}
+.fa-adjust:before {
+  content: "\f042";
+}
+.fa-tint:before {
+  content: "\f043";
+}
+.fa-edit:before,
+.fa-pencil-square-o:before {
+  content: "\f044";
+}
+.fa-share-square-o:before {
+  content: "\f045";
+}
+.fa-check-square-o:before {
+  content: "\f046";
+}
+.fa-arrows:before {
+  content: "\f047";
+}
+.fa-step-backward:before {
+  content: "\f048";
+}
+.fa-fast-backward:before {
+  content: "\f049";
+}
+.fa-backward:before {
+  content: "\f04a";
+}
+.fa-play:before {
+  content: "\f04b";
+}
+.fa-pause:before {
+  content: "\f04c";
+}
+.fa-stop:before {
+  content: "\f04d";
+}
+.fa-forward:before {
+  content: "\f04e";
+}
+.fa-fast-forward:before {
+  content: "\f050";
+}
+.fa-step-forward:before {
+  content: "\f051";
+}
+.fa-eject:before {
+  content: "\f052";
+}
+.fa-chevron-left:before {
+  content: "\f053";
+}
+.fa-chevron-right:before {
+  content: "\f054";
+}
+.fa-plus-circle:before {
+  content: "\f055";
+}
+.fa-minus-circle:before {
+  content: "\f056";
+}
+.fa-times-circle:before {
+  content: "\f057";
+}
+.fa-check-circle:before {
+  content: "\f058";
+}
+.fa-question-circle:before {
+  content: "\f059";
+}
+.fa-info-circle:before {
+  content: "\f05a";
+}
+.fa-crosshairs:before {
+  content: "\f05b";
+}
+.fa-times-circle-o:before {
+  content: "\f05c";
+}
+.fa-check-circle-o:before {
+  content: "\f05d";
+}
+.fa-ban:before {
+  content: "\f05e";
+}
+.fa-arrow-left:before {
+  content: "\f060";
+}
+.fa-arrow-right:before {
+  content: "\f061";
+}
+.fa-arrow-up:before {
+  content: "\f062";
+}
+.fa-arrow-down:before {
+  content: "\f063";
+}
+.fa-mail-forward:before,
+.fa-share:before {
+  content: "\f064";
+}
+.fa-expand:before {
+  content: "\f065";
+}
+.fa-compress:before {
+  content: "\f066";
+}
+.fa-plus:before {
+  content: "\f067";
+}
+.fa-minus:before {
+  content: "\f068";
+}
+.fa-asterisk:before {
+  content: "\f069";
+}
+.fa-exclamation-circle:before {
+  content: "\f06a";
+}
+.fa-gift:before {
+  content: "\f06b";
+}
+.fa-leaf:before {
+  content: "\f06c";
+}
+.fa-fire:before {
+  content: "\f06d";
+}
+.fa-eye:before {
+  content: "\f06e";
+}
+.fa-eye-slash:before {
+  content: "\f070";
+}
+.fa-warning:before,
+.fa-exclamation-triangle:before {
+  content: "\f071";
+}
+.fa-plane:before {
+  content: "\f072";
+}
+.fa-calendar:before {
+  content: "\f073";
+}
+.fa-random:before {
+  content: "\f074";
+}
+.fa-comment:before {
+  content: "\f075";
+}
+.fa-magnet:before {
+  content: "\f076";
+}
+.fa-chevron-up:before {
+  content: "\f077";
+}
+.fa-chevron-down:before {
+  content: "\f078";
+}
+.fa-retweet:before {
+  content: "\f079";
+}
+.fa-shopping-cart:before {
+  content: "\f07a";
+}
+.fa-folder:before {
+  content: "\f07b";
+}
+.fa-folder-open:before {
+  content: "\f07c";
+}
+.fa-arrows-v:before {
+  content: "\f07d";
+}
+.fa-arrows-h:before {
+  content: "\f07e";
+}
+.fa-bar-chart-o:before,
+.fa-bar-chart:before {
+  content: "\f080";
+}
+.fa-twitter-square:before {
+  content: "\f081";
+}
+.fa-facebook-square:before {
+  content: "\f082";
+}
+.fa-camera-retro:before {
+  content: "\f083";
+}
+.fa-key:before {
+  content: "\f084";
+}
+.fa-gears:before,
+.fa-cogs:before {
+  content: "\f085";
+}
+.fa-comments:before {
+  content: "\f086";
+}
+.fa-thumbs-o-up:before {
+  content: "\f087";
+}
+.fa-thumbs-o-down:before {
+  content: "\f088";
+}
+.fa-star-half:before {
+  content: "\f089";
+}
+.fa-heart-o:before {
+  content: "\f08a";
+}
+.fa-sign-out:before {
+  content: "\f08b";
+}
+.fa-linkedin-square:before {
+  content: "\f08c";
+}
+.fa-thumb-tack:before {
+  content: "\f08d";
+}
+.fa-external-link:before {
+  content: "\f08e";
+}
+.fa-sign-in:before {
+  content: "\f090";
+}
+.fa-trophy:before {
+  content: "\f091";
+}
+.fa-github-square:before {
+  content: "\f092";
+}
+.fa-upload:before {
+  content: "\f093";
+}
+.fa-lemon-o:before {
+  content: "\f094";
+}
+.fa-phone:before {
+  content: "\f095";
+}
+.fa-square-o:before {
+  content: "\f096";
+}
+.fa-bookmark-o:before {
+  content: "\f097";
+}
+.fa-phone-square:before {
+  content: "\f098";
+}
+.fa-twitter:before {
+  content: "\f099";
+}
+.fa-facebook-f:before,
+.fa-facebook:before {
+  content: "\f09a";
+}
+.fa-github:before {
+  content: "\f09b";
+}
+.fa-unlock:before {
+  content: "\f09c";
+}
+.fa-credit-card:before {
+  content: "\f09d";
+}
+.fa-feed:before,
+.fa-rss:before {
+  content: "\f09e";
+}
+.fa-hdd-o:before {
+  content: "\f0a0";
+}
+.fa-bullhorn:before {
+  content: "\f0a1";
+}
+.fa-bell:before {
+  content: "\f0f3";
+}
+.fa-certificate:before {
+  content: "\f0a3";
+}
+.fa-hand-o-right:before {
+  content: "\f0a4";
+}
+.fa-hand-o-left:before {
+  content: "\f0a5";
+}
+.fa-hand-o-up:before {
+  content: "\f0a6";
+}
+.fa-hand-o-down:before {
+  content: "\f0a7";
+}
+.fa-arrow-circle-left:before {
+  content: "\f0a8";
+}
+.fa-arrow-circle-right:before {
+  content: "\f0a9";
+}
+.fa-arrow-circle-up:before {
+  content: "\f0aa";
+}
+.fa-arrow-circle-down:before {
+  content: "\f0ab";
+}
+.fa-globe:before {
+  content: "\f0ac";
+}
+.fa-wrench:before {
+  content: "\f0ad";
+}
+.fa-tasks:before {
+  content: "\f0ae";
+}
+.fa-filter:before {
+  content: "\f0b0";
+}
+.fa-briefcase:before {
+  content: "\f0b1";
+}
+.fa-arrows-alt:before {
+  content: "\f0b2";
+}
+.fa-group:before,
+.fa-users:before {
+  content: "\f0c0";
+}
+.fa-chain:before,
+.fa-link:before {
+  content: "\f0c1";
+}
+.fa-cloud:before {
+  content: "\f0c2";
+}
+.fa-flask:before {
+  content: "\f0c3";
+}
+.fa-cut:before,
+.fa-scissors:before {
+  content: "\f0c4";
+}
+.fa-copy:before,
+.fa-files-o:before {
+  content: "\f0c5";
+}
+.fa-paperclip:before {
+  content: "\f0c6";
+}
+.fa-save:before,
+.fa-floppy-o:before {
+  content: "\f0c7";
+}
+.fa-square:before {
+  content: "\f0c8";
+}
+.fa-navicon:before,
+.fa-reorder:before,
+.fa-bars:before {
+  content: "\f0c9";
+}
+.fa-list-ul:before {
+  content: "\f0ca";
+}
+.fa-list-ol:before {
+  content: "\f0cb";
+}
+.fa-strikethrough:before {
+  content: "\f0cc";
+}
+.fa-underline:before {
+  content: "\f0cd";
+}
+.fa-table:before {
+  content: "\f0ce";
+}
+.fa-magic:before {
+  content: "\f0d0";
+}
+.fa-truck:before {
+  content: "\f0d1";
+}
+.fa-pinterest:before {
+  content: "\f0d2";
+}
+.fa-pinterest-square:before {
+  content: "\f0d3";
+}
+.fa-google-plus-square:before {
+  content: "\f0d4";
+}
+.fa-google-plus:before {
+  content: "\f0d5";
+}
+.fa-money:before {
+  content: "\f0d6";
+}
+.fa-caret-down:before {
+  content: "\f0d7";
+}
+.fa-caret-up:before {
+  content: "\f0d8";
+}
+.fa-caret-left:before {
+  content: "\f0d9";
+}
+.fa-caret-right:before {
+  content: "\f0da";
+}
+.fa-columns:before {
+  content: "\f0db";
+}
+.fa-unsorted:before,
+.fa-sort:before {
+  content: "\f0dc";
+}
+.fa-sort-down:before,
+.fa-sort-desc:before {
+  content: "\f0dd";
+}
+.fa-sort-up:before,
+.fa-sort-asc:before {
+  content: "\f0de";
+}
+.fa-envelope:before {
+  content: "\f0e0";
+}
+.fa-linkedin:before {
+  content: "\f0e1";
+}
+.fa-rotate-left:before,
+.fa-undo:before {
+  content: "\f0e2";
+}
+.fa-legal:before,
+.fa-gavel:before {
+  content: "\f0e3";
+}
+.fa-dashboard:before,
+.fa-tachometer:before {
+  content: "\f0e4";
+}
+.fa-comment-o:before {
+  content: "\f0e5";
+}
+.fa-comments-o:before {
+  content: "\f0e6";
+}
+.fa-flash:before,
+.fa-bolt:before {
+  content: "\f0e7";
+}
+.fa-sitemap:before {
+  content: "\f0e8";
+}
+.fa-umbrella:before {
+  content: "\f0e9";
+}
+.fa-paste:before,
+.fa-clipboard:before {
+  content: "\f0ea";
+}
+.fa-lightbulb-o:before {
+  content: "\f0eb";
+}
+.fa-exchange:before {
+  content: "\f0ec";
+}
+.fa-cloud-download:before {
+  content: "\f0ed";
+}
+.fa-cloud-upload:before {
+  content: "\f0ee";
+}
+.fa-user-md:before {
+  content: "\f0f0";
+}
+.fa-stethoscope:before {
+  content: "\f0f1";
+}
+.fa-suitcase:before {
+  content: "\f0f2";
+}
+.fa-bell-o:before {
+  content: "\f0a2";
+}
+.fa-coffee:before {
+  content: "\f0f4";
+}
+.fa-cutlery:before {
+  content: "\f0f5";
+}
+.fa-file-text-o:before {
+  content: "\f0f6";
+}
+.fa-building-o:before {
+  content: "\f0f7";
+}
+.fa-hospital-o:before {
+  content: "\f0f8";
+}
+.fa-ambulance:before {
+  content: "\f0f9";
+}
+.fa-medkit:before {
+  content: "\f0fa";
+}
+.fa-fighter-jet:before {
+  content: "\f0fb";
+}
+.fa-beer:before {
+  content: "\f0fc";
+}
+.fa-h-square:before {
+  content: "\f0fd";
+}
+.fa-plus-square:before {
+  content: "\f0fe";
+}
+.fa-angle-double-left:before {
+  content: "\f100";
+}
+.fa-angle-double-right:before {
+  content: "\f101";
+}
+.fa-angle-double-up:before {
+  content: "\f102";
+}
+.fa-angle-double-down:before {
+  content: "\f103";
+}
+.fa-angle-left:before {
+  content: "\f104";
+}
+.fa-angle-right:before {
+  content: "\f105";
+}
+.fa-angle-up:before {
+  content: "\f106";
+}
+.fa-angle-down:before {
+  content: "\f107";
+}
+.fa-desktop:before {
+  content: "\f108";
+}
+.fa-laptop:before {
+  content: "\f109";
+}
+.fa-tablet:before {
+  content: "\f10a";
+}
+.fa-mobile-phone:before,
+.fa-mobile:before {
+  content: "\f10b";
+}
+.fa-circle-o:before {
+  content: "\f10c";
+}
+.fa-quote-left:before {
+  content: "\f10d";
+}
+.fa-quote-right:before {
+  content: "\f10e";
+}
+.fa-spinner:before {
+  content: "\f110";
+}
+.fa-circle:before {
+  content: "\f111";
+}
+.fa-mail-reply:before,
+.fa-reply:before {
+  content: "\f112";
+}
+.fa-github-alt:before {
+  content: "\f113";
+}
+.fa-folder-o:before {
+  content: "\f114";
+}
+.fa-folder-open-o:before {
+  content: "\f115";
+}
+.fa-smile-o:before {
+  content: "\f118";
+}
+.fa-frown-o:before {
+  content: "\f119";
+}
+.fa-meh-o:before {
+  content: "\f11a";
+}
+.fa-gamepad:before {
+  content: "\f11b";
+}
+.fa-keyboard-o:before {
+  content: "\f11c";
+}
+.fa-flag-o:before {
+  content: "\f11d";
+}
+.fa-flag-checkered:before {
+  content: "\f11e";
+}
+.fa-terminal:before {
+  content: "\f120";
+}
+.fa-code:before {
+  content: "\f121";
+}
+.fa-mail-reply-all:before,
+.fa-reply-all:before {
+  content: "\f122";
+}
+.fa-star-half-empty:before,
+.fa-star-half-full:before,
+.fa-star-half-o:before {
+  content: "\f123";
+}
+.fa-location-arrow:before {
+  content: "\f124";
+}
+.fa-crop:before {
+  content: "\f125";
+}
+.fa-code-fork:before {
+  content: "\f126";
+}
+.fa-unlink:before,
+.fa-chain-broken:before {
+  content: "\f127";
+}
+.fa-question:before {
+  content: "\f128";
+}
+.fa-info:before {
+  content: "\f129";
+}
+.fa-exclamation:before {
+  content: "\f12a";
+}
+.fa-superscript:before {
+  content: "\f12b";
+}
+.fa-subscript:before {
+  content: "\f12c";
+}
+.fa-eraser:before {
+  content: "\f12d";
+}
+.fa-puzzle-piece:before {
+  content: "\f12e";
+}
+.fa-microphone:before {
+  content: "\f130";
+}
+.fa-microphone-slash:before {
+  content: "\f131";
+}
+.fa-shield:before {
+  content: "\f132";
+}
+.fa-calendar-o:before {
+  content: "\f133";
+}
+.fa-fire-extinguisher:before {
+  content: "\f134";
+}
+.fa-rocket:before {
+  content: "\f135";
+}
+.fa-maxcdn:before {
+  content: "\f136";
+}
+.fa-chevron-circle-left:before {
+  content: "\f137";
+}
+.fa-chevron-circle-right:before {
+  content: "\f138";
+}
+.fa-chevron-circle-up:before {
+  content: "\f139";
+}
+.fa-chevron-circle-down:before {
+  content: "\f13a";
+}
+.fa-html5:before {
+  content: "\f13b";
+}
+.fa-css3:before {
+  content: "\f13c";
+}
+.fa-anchor:before {
+  content: "\f13d";
+}
+.fa-unlock-alt:before {
+  content: "\f13e";
+}
+.fa-bullseye:before {
+  content: "\f140";
+}
+.fa-ellipsis-h:before {
+  content: "\f141";
+}
+.fa-ellipsis-v:before {
+  content: "\f142";
+}
+.fa-rss-square:before {
+  content: "\f143";
+}
+.fa-play-circle:before {
+  content: "\f144";
+}
+.fa-ticket:before {
+  content: "\f145";
+}
+.fa-minus-square:before {
+  content: "\f146";
+}
+.fa-minus-square-o:before {
+  content: "\f147";
+}
+.fa-level-up:before {
+  content: "\f148";
+}
+.fa-level-down:before {
+  content: "\f149";
+}
+.fa-check-square:before {
+  content: "\f14a";
+}
+.fa-pencil-square:before {
+  content: "\f14b";
+}
+.fa-external-link-square:before {
+  content: "\f14c";
+}
+.fa-share-square:before {
+  content: "\f14d";
+}
+.fa-compass:before {
+  content: "\f14e";
+}
+.fa-toggle-down:before,
+.fa-caret-square-o-down:before {
+  content: "\f150";
+}
+.fa-toggle-up:before,
+.fa-caret-square-o-up:before {
+  content: "\f151";
+}
+.fa-toggle-right:before,
+.fa-caret-square-o-right:before {
+  content: "\f152";
+}
+.fa-euro:before,
+.fa-eur:before {
+  content: "\f153";
+}
+.fa-gbp:before {
+  content: "\f154";
+}
+.fa-dollar:before,
+.fa-usd:before {
+  content: "\f155";
+}
+.fa-rupee:before,
+.fa-inr:before {
+  content: "\f156";
+}
+.fa-cny:before,
+.fa-rmb:before,
+.fa-yen:before,
+.fa-jpy:before {
+  content: "\f157";
+}
+.fa-ruble:before,
+.fa-rouble:before,
+.fa-rub:before {
+  content: "\f158";
+}
+.fa-won:before,
+.fa-krw:before {
+  content: "\f159";
+}
+.fa-bitcoin:before,
+.fa-btc:before {
+  content: "\f15a";
+}
+.fa-file:before {
+  content: "\f15b";
+}
+.fa-file-text:before {
+  content: "\f15c";
+}
+.fa-sort-alpha-asc:before {
+  content: "\f15d";
+}
+.fa-sort-alpha-desc:before {
+  content: "\f15e";
+}
+.fa-sort-amount-asc:before {
+  content: "\f160";
+}
+.fa-sort-amount-desc:before {
+  content: "\f161";
+}
+.fa-sort-numeric-asc:before {
+  content: "\f162";
+}
+.fa-sort-numeric-desc:before {
+  content: "\f163";
+}
+.fa-thumbs-up:before {
+  content: "\f164";
+}
+.fa-thumbs-down:before {
+  content: "\f165";
+}
+.fa-youtube-square:before {
+  content: "\f166";
+}
+.fa-youtube:before {
+  content: "\f167";
+}
+.fa-xing:before {
+  content: "\f168";
+}
+.fa-xing-square:before {
+  content: "\f169";
+}
+.fa-youtube-play:before {
+  content: "\f16a";
+}
+.fa-dropbox:before {
+  content: "\f16b";
+}
+.fa-stack-overflow:before {
+  content: "\f16c";
+}
+.fa-instagram:before {
+  content: "\f16d";
+}
+.fa-flickr:before {
+  content: "\f16e";
+}
+.fa-adn:before {
+  content: "\f170";
+}
+.fa-bitbucket:before {
+  content: "\f171";
+}
+.fa-bitbucket-square:before {
+  content: "\f172";
+}
+.fa-tumblr:before {
+  content: "\f173";
+}
+.fa-tumblr-square:before {
+  content: "\f174";
+}
+.fa-long-arrow-down:before {
+  content: "\f175";
+}
+.fa-long-arrow-up:before {
+  content: "\f176";
+}
+.fa-long-arrow-left:before {
+  content: "\f177";
+}
+.fa-long-arrow-right:before {
+  content: "\f178";
+}
+.fa-apple:before {
+  content: "\f179";
+}
+.fa-windows:before {
+  content: "\f17a";
+}
+.fa-android:before {
+  content: "\f17b";
+}
+.fa-linux:before {
+  content: "\f17c";
+}
+.fa-dribbble:before {
+  content: "\f17d";
+}
+.fa-skype:before {
+  content: "\f17e";
+}
+.fa-foursquare:before {
+  content: "\f180";
+}
+.fa-trello:before {
+  content: "\f181";
+}
+.fa-female:before {
+  content: "\f182";
+}
+.fa-male:before {
+  content: "\f183";
+}
+.fa-gittip:before,
+.fa-gratipay:before {
+  content: "\f184";
+}
+.fa-sun-o:before {
+  content: "\f185";
+}
+.fa-moon-o:before {
+  content: "\f186";
+}
+.fa-archive:before {
+  content: "\f187";
+}
+.fa-bug:before {
+  content: "\f188";
+}
+.fa-vk:before {
+  content: "\f189";
+}
+.fa-weibo:before {
+  content: "\f18a";
+}
+.fa-renren:before {
+  content: "\f18b";
+}
+.fa-pagelines:before {
+  content: "\f18c";
+}
+.fa-stack-exchange:before {
+  content: "\f18d";
+}
+.fa-arrow-circle-o-right:before {
+  content: "\f18e";
+}
+.fa-arrow-circle-o-left:before {
+  content: "\f190";
+}
+.fa-toggle-left:before,
+.fa-caret-square-o-left:before {
+  content: "\f191";
+}
+.fa-dot-circle-o:before {
+  content: "\f192";
+}
+.fa-wheelchair:before {
+  content: "\f193";
+}
+.fa-vimeo-square:before {
+  content: "\f194";
+}
+.fa-turkish-lira:before,
+.fa-try:before {
+  content: "\f195";
+}
+.fa-plus-square-o:before {
+  content: "\f196";
+}
+.fa-space-shuttle:before {
+  content: "\f197";
+}
+.fa-slack:before {
+  content: "\f198";
+}
+.fa-envelope-square:before {
+  content: "\f199";
+}
+.fa-wordpress:before {
+  content: "\f19a";
+}
+.fa-openid:before {
+  content: "\f19b";
+}
+.fa-institution:before,
+.fa-bank:before,
+.fa-university:before {
+  content: "\f19c";
+}
+.fa-mortar-board:before,
+.fa-graduation-cap:before {
+  content: "\f19d";
+}
+.fa-yahoo:before {
+  content: "\f19e";
+}
+.fa-google:before {
+  content: "\f1a0";
+}
+.fa-reddit:before {
+  content: "\f1a1";
+}
+.fa-reddit-square:before {
+  content: "\f1a2";
+}
+.fa-stumbleupon-circle:before {
+  content: "\f1a3";
+}
+.fa-stumbleupon:before {
+  content: "\f1a4";
+}
+.fa-delicious:before {
+  content: "\f1a5";
+}
+.fa-digg:before {
+  content: "\f1a6";
+}
+.fa-pied-piper-pp:before {
+  content: "\f1a7";
+}
+.fa-pied-piper-alt:before {
+  content: "\f1a8";
+}
+.fa-drupal:before {
+  content: "\f1a9";
+}
+.fa-joomla:before {
+  content: "\f1aa";
+}
+.fa-language:before {
+  content: "\f1ab";
+}
+.fa-fax:before {
+  content: "\f1ac";
+}
+.fa-building:before {
+  content: "\f1ad";
+}
+.fa-child:before {
+  content: "\f1ae";
+}
+.fa-paw:before {
+  content: "\f1b0";
+}
+.fa-spoon:before {
+  content: "\f1b1";
+}
+.fa-cube:before {
+  content: "\f1b2";
+}
+.fa-cubes:before {
+  content: "\f1b3";
+}
+.fa-behance:before {
+  content: "\f1b4";
+}
+.fa-behance-square:before {
+  content: "\f1b5";
+}
+.fa-steam:before {
+  content: "\f1b6";
+}
+.fa-steam-square:before {
+  content: "\f1b7";
+}
+.fa-recycle:before {
+  content: "\f1b8";
+}
+.fa-automobile:before,
+.fa-car:before {
+  content: "\f1b9";
+}
+.fa-cab:before,
+.fa-taxi:before {
+  content: "\f1ba";
+}
+.fa-tree:before {
+  content: "\f1bb";
+}
+.fa-spotify:before {
+  content: "\f1bc";
+}
+.fa-deviantart:before {
+  content: "\f1bd";
+}
+.fa-soundcloud:before {
+  content: "\f1be";
+}
+.fa-database:before {
+  content: "\f1c0";
+}
+.fa-file-pdf-o:before {
+  content: "\f1c1";
+}
+.fa-file-word-o:before {
+  content: "\f1c2";
+}
+.fa-file-excel-o:before {
+  content: "\f1c3";
+}
+.fa-file-powerpoint-o:before {
+  content: "\f1c4";
+}
+.fa-file-photo-o:before,
+.fa-file-picture-o:before,
+.fa-file-image-o:before {
+  content: "\f1c5";
+}
+.fa-file-zip-o:before,
+.fa-file-archive-o:before {
+  content: "\f1c6";
+}
+.fa-file-sound-o:before,
+.fa-file-audio-o:before {
+  content: "\f1c7";
+}
+.fa-file-movie-o:before,
+.fa-file-video-o:before {
+  content: "\f1c8";
+}
+.fa-file-code-o:before {
+  content: "\f1c9";
+}
+.fa-vine:before {
+  content: "\f1ca";
+}
+.fa-codepen:before {
+  content: "\f1cb";
+}
+.fa-jsfiddle:before {
+  content: "\f1cc";
+}
+.fa-life-bouy:before,
+.fa-life-buoy:before,
+.fa-life-saver:before,
+.fa-support:before,
+.fa-life-ring:before {
+  content: "\f1cd";
+}
+.fa-circle-o-notch:before {
+  content: "\f1ce";
+}
+.fa-ra:before,
+.fa-resistance:before,
+.fa-rebel:before {
+  content: "\f1d0";
+}
+.fa-ge:before,
+.fa-empire:before {
+  content: "\f1d1";
+}
+.fa-git-square:before {
+  content: "\f1d2";
+}
+.fa-git:before {
+  content: "\f1d3";
+}
+.fa-y-combinator-square:before,
+.fa-yc-square:before,
+.fa-hacker-news:before {
+  content: "\f1d4";
+}
+.fa-tencent-weibo:before {
+  content: "\f1d5";
+}
+.fa-qq:before {
+  content: "\f1d6";
+}
+.fa-wechat:before,
+.fa-weixin:before {
+  content: "\f1d7";
+}
+.fa-send:before,
+.fa-paper-plane:before {
+  content: "\f1d8";
+}
+.fa-send-o:before,
+.fa-paper-plane-o:before {
+  content: "\f1d9";
+}
+.fa-history:before {
+  content: "\f1da";
+}
+.fa-circle-thin:before {
+  content: "\f1db";
+}
+.fa-header:before {
+  content: "\f1dc";
+}
+.fa-paragraph:before {
+  content: "\f1dd";
+}
+.fa-sliders:before {
+  content: "\f1de";
+}
+.fa-share-alt:before {
+  content: "\f1e0";
+}
+.fa-share-alt-square:before {
+  content: "\f1e1";
+}
+.fa-bomb:before {
+  content: "\f1e2";
+}
+.fa-soccer-ball-o:before,
+.fa-futbol-o:before {
+  content: "\f1e3";
+}
+.fa-tty:before {
+  content: "\f1e4";
+}
+.fa-binoculars:before {
+  content: "\f1e5";
+}
+.fa-plug:before {
+  content: "\f1e6";
+}
+.fa-slideshare:before {
+  content: "\f1e7";
+}
+.fa-twitch:before {
+  content: "\f1e8";
+}
+.fa-yelp:before {
+  content: "\f1e9";
+}
+.fa-newspaper-o:before {
+  content: "\f1ea";
+}
+.fa-wifi:before {
+  content: "\f1eb";
+}
+.fa-calculator:before {
+  content: "\f1ec";
+}
+.fa-paypal:before {
+  content: "\f1ed";
+}
+.fa-google-wallet:before {
+  content: "\f1ee";
+}
+.fa-cc-visa:before {
+  content: "\f1f0";
+}
+.fa-cc-mastercard:before {
+  content: "\f1f1";
+}
+.fa-cc-discover:before {
+  content: "\f1f2";
+}
+.fa-cc-amex:before {
+  content: "\f1f3";
+}
+.fa-cc-paypal:before {
+  content: "\f1f4";
+}
+.fa-cc-stripe:before {
+  content: "\f1f5";
+}
+.fa-bell-slash:before {
+  content: "\f1f6";
+}
+.fa-bell-slash-o:before {
+  content: "\f1f7";
+}
+.fa-trash:before {
+  content: "\f1f8";
+}
+.fa-copyright:before {
+  content: "\f1f9";
+}
+.fa-at:before {
+  content: "\f1fa";
+}
+.fa-eyedropper:before {
+  content: "\f1fb";
+}
+.fa-paint-brush:before {
+  content: "\f1fc";
+}
+.fa-birthday-cake:before {
+  content: "\f1fd";
+}
+.fa-area-chart:before {
+  content: "\f1fe";
+}
+.fa-pie-chart:before {
+  content: "\f200";
+}
+.fa-line-chart:before {
+  content: "\f201";
+}
+.fa-lastfm:before {
+  content: "\f202";
+}
+.fa-lastfm-square:before {
+  content: "\f203";
+}
+.fa-toggle-off:before {
+  content: "\f204";
+}
+.fa-toggle-on:before {
+  content: "\f205";
+}
+.fa-bicycle:before {
+  content: "\f206";
+}
+.fa-bus:before {
+  content: "\f207";
+}
+.fa-ioxhost:before {
+  content: "\f208";
+}
+.fa-angellist:before {
+  content: "\f209";
+}
+.fa-cc:before {
+  content: "\f20a";
+}
+.fa-shekel:before,
+.fa-sheqel:before,
+.fa-ils:before {
+  content: "\f20b";
+}
+.fa-meanpath:before {
+  content: "\f20c";
+}
+.fa-buysellads:before {
+  content: "\f20d";
+}
+.fa-connectdevelop:before {
+  content: "\f20e";
+}
+.fa-dashcube:before {
+  content: "\f210";
+}
+.fa-forumbee:before {
+  content: "\f211";
+}
+.fa-leanpub:before {
+  content: "\f212";
+}
+.fa-sellsy:before {
+  content: "\f213";
+}
+.fa-shirtsinbulk:before {
+  content: "\f214";
+}
+.fa-simplybuilt:before {
+  content: "\f215";
+}
+.fa-skyatlas:before {
+  content: "\f216";
+}
+.fa-cart-plus:before {
+  content: "\f217";
+}
+.fa-cart-arrow-down:before {
+  content: "\f218";
+}
+.fa-diamond:before {
+  content: "\f219";
+}
+.fa-ship:before {
+  content: "\f21a";
+}
+.fa-user-secret:before {
+  content: "\f21b";
+}
+.fa-motorcycle:before {
+  content: "\f21c";
+}
+.fa-street-view:before {
+  content: "\f21d";
+}
+.fa-heartbeat:before {
+  content: "\f21e";
+}
+.fa-venus:before {
+  content: "\f221";
+}
+.fa-mars:before {
+  content: "\f222";
+}
+.fa-mercury:before {
+  content: "\f223";
+}
+.fa-intersex:before,
+.fa-transgender:before {
+  content: "\f224";
+}
+.fa-transgender-alt:before {
+  content: "\f225";
+}
+.fa-venus-double:before {
+  content: "\f226";
+}
+.fa-mars-double:before {
+  content: "\f227";
+}
+.fa-venus-mars:before {
+  content: "\f228";
+}
+.fa-mars-stroke:before {
+  content: "\f229";
+}
+.fa-mars-stroke-v:before {
+  content: "\f22a";
+}
+.fa-mars-stroke-h:before {
+  content: "\f22b";
+}
+.fa-neuter:before {
+  content: "\f22c";
+}
+.fa-genderless:before {
+  content: "\f22d";
+}
+.fa-facebook-official:before {
+  content: "\f230";
+}
+.fa-pinterest-p:before {
+  content: "\f231";
+}
+.fa-whatsapp:before {
+  content: "\f232";
+}
+.fa-server:before {
+  content: "\f233";
+}
+.fa-user-plus:before {
+  content: "\f234";
+}
+.fa-user-times:before {
+  content: "\f235";
+}
+.fa-hotel:before,
+.fa-bed:before {
+  content: "\f236";
+}
+.fa-viacoin:before {
+  content: "\f237";
+}
+.fa-train:before {
+  content: "\f238";
+}
+.fa-subway:before {
+  content: "\f239";
+}
+.fa-medium:before {
+  content: "\f23a";
+}
+.fa-yc:before,
+.fa-y-combinator:before {
+  content: "\f23b";
+}
+.fa-optin-monster:before {
+  content: "\f23c";
+}
+.fa-opencart:before {
+  content: "\f23d";
+}
+.fa-expeditedssl:before {
+  content: "\f23e";
+}
+.fa-battery-4:before,
+.fa-battery:before,
+.fa-battery-full:before {
+  content: "\f240";
+}
+.fa-battery-3:before,
+.fa-battery-three-quarters:before {
+  content: "\f241";
+}
+.fa-battery-2:before,
+.fa-battery-half:before {
+  content: "\f242";
+}
+.fa-battery-1:before,
+.fa-battery-quarter:before {
+  content: "\f243";
+}
+.fa-battery-0:before,
+.fa-battery-empty:before {
+  content: "\f244";
+}
+.fa-mouse-pointer:before {
+  content: "\f245";
+}
+.fa-i-cursor:before {
+  content: "\f246";
+}
+.fa-object-group:before {
+  content: "\f247";
+}
+.fa-object-ungroup:before {
+  content: "\f248";
+}
+.fa-sticky-note:before {
+  content: "\f249";
+}
+.fa-sticky-note-o:before {
+  content: "\f24a";
+}
+.fa-cc-jcb:before {
+  content: "\f24b";
+}
+.fa-cc-diners-club:before {
+  content: "\f24c";
+}
+.fa-clone:before {
+  content: "\f24d";
+}
+.fa-balance-scale:before {
+  content: "\f24e";
+}
+.fa-hourglass-o:before {
+  content: "\f250";
+}
+.fa-hourglass-1:before,
+.fa-hourglass-start:before {
+  content: "\f251";
+}
+.fa-hourglass-2:before,
+.fa-hourglass-half:before {
+  content: "\f252";
+}
+.fa-hourglass-3:before,
+.fa-hourglass-end:before {
+  content: "\f253";
+}
+.fa-hourglass:before {
+  content: "\f254";
+}
+.fa-hand-grab-o:before,
+.fa-hand-rock-o:before {
+  content: "\f255";
+}
+.fa-hand-stop-o:before,
+.fa-hand-paper-o:before {
+  content: "\f256";
+}
+.fa-hand-scissors-o:before {
+  content: "\f257";
+}
+.fa-hand-lizard-o:before {
+  content: "\f258";
+}
+.fa-hand-spock-o:before {
+  content: "\f259";
+}
+.fa-hand-pointer-o:before {
+  content: "\f25a";
+}
+.fa-hand-peace-o:before {
+  content: "\f25b";
+}
+.fa-trademark:before {
+  content: "\f25c";
+}
+.fa-registered:before {
+  content: "\f25d";
+}
+.fa-creative-commons:before {
+  content: "\f25e";
+}
+.fa-gg:before {
+  content: "\f260";
+}
+.fa-gg-circle:before {
+  content: "\f261";
+}
+.fa-tripadvisor:before {
+  content: "\f262";
+}
+.fa-odnoklassniki:before {
+  content: "\f263";
+}
+.fa-odnoklassniki-square:before {
+  content: "\f264";
+}
+.fa-get-pocket:before {
+  content: "\f265";
+}
+.fa-wikipedia-w:before {
+  content: "\f266";
+}
+.fa-safari:before {
+  content: "\f267";
+}
+.fa-chrome:before {
+  content: "\f268";
+}
+.fa-firefox:before {
+  content: "\f269";
+}
+.fa-opera:before {
+  content: "\f26a";
+}
+.fa-internet-explorer:before {
+  content: "\f26b";
+}
+.fa-tv:before,
+.fa-television:before {
+  content: "\f26c";
+}
+.fa-contao:before {
+  content: "\f26d";
+}
+.fa-500px:before {
+  content: "\f26e";
+}
+.fa-amazon:before {
+  content: "\f270";
+}
+.fa-calendar-plus-o:before {
+  content: "\f271";
+}
+.fa-calendar-minus-o:before {
+  content: "\f272";
+}
+.fa-calendar-times-o:before {
+  content: "\f273";
+}
+.fa-calendar-check-o:before {
+  content: "\f274";
+}
+.fa-industry:before {
+  content: "\f275";
+}
+.fa-map-pin:before {
+  content: "\f276";
+}
+.fa-map-signs:before {
+  content: "\f277";
+}
+.fa-map-o:before {
+  content: "\f278";
+}
+.fa-map:before {
+  content: "\f279";
+}
+.fa-commenting:before {
+  content: "\f27a";
+}
+.fa-commenting-o:before {
+  content: "\f27b";
+}
+.fa-houzz:before {
+  content: "\f27c";
+}
+.fa-vimeo:before {
+  content: "\f27d";
+}
+.fa-black-tie:before {
+  content: "\f27e";
+}
+.fa-fonticons:before {
+  content: "\f280";
+}
+.fa-reddit-alien:before {
+  content: "\f281";
+}
+.fa-edge:before {
+  content: "\f282";
+}
+.fa-credit-card-alt:before {
+  content: "\f283";
+}
+.fa-codiepie:before {
+  content: "\f284";
+}
+.fa-modx:before {
+  content: "\f285";
+}
+.fa-fort-awesome:before {
+  content: "\f286";
+}
+.fa-usb:before {
+  content: "\f287";
+}
+.fa-product-hunt:before {
+  content: "\f288";
+}
+.fa-mixcloud:before {
+  content: "\f289";
+}
+.fa-scribd:before {
+  content: "\f28a";
+}
+.fa-pause-circle:before {
+  content: "\f28b";
+}
+.fa-pause-circle-o:before {
+  content: "\f28c";
+}
+.fa-stop-circle:before {
+  content: "\f28d";
+}
+.fa-stop-circle-o:before {
+  content: "\f28e";
+}
+.fa-shopping-bag:before {
+  content: "\f290";
+}
+.fa-shopping-basket:before {
+  content: "\f291";
+}
+.fa-hashtag:before {
+  content: "\f292";
+}
+.fa-bluetooth:before {
+  content: "\f293";
+}
+.fa-bluetooth-b:before {
+  content: "\f294";
+}
+.fa-percent:before {
+  content: "\f295";
+}
+.fa-gitlab:before {
+  content: "\f296";
+}
+.fa-wpbeginner:before {
+  content: "\f297";
+}
+.fa-wpforms:before {
+  content: "\f298";
+}
+.fa-envira:before {
+  content: "\f299";
+}
+.fa-universal-access:before {
+  content: "\f29a";
+}
+.fa-wheelchair-alt:before {
+  content: "\f29b";
+}
+.fa-question-circle-o:before {
+  content: "\f29c";
+}
+.fa-blind:before {
+  content: "\f29d";
+}
+.fa-audio-description:before {
+  content: "\f29e";
+}
+.fa-volume-control-phone:before {
+  content: "\f2a0";
+}
+.fa-braille:before {
+  content: "\f2a1";
+}
+.fa-assistive-listening-systems:before {
+  content: "\f2a2";
+}
+.fa-asl-interpreting:before,
+.fa-american-sign-language-interpreting:before {
+  content: "\f2a3";
+}
+.fa-deafness:before,
+.fa-hard-of-hearing:before,
+.fa-deaf:before {
+  content: "\f2a4";
+}
+.fa-glide:before {
+  content: "\f2a5";
+}
+.fa-glide-g:before {
+  content: "\f2a6";
+}
+.fa-signing:before,
+.fa-sign-language:before {
+  content: "\f2a7";
+}
+.fa-low-vision:before {
+  content: "\f2a8";
+}
+.fa-viadeo:before {
+  content: "\f2a9";
+}
+.fa-viadeo-square:before {
+  content: "\f2aa";
+}
+.fa-snapchat:before {
+  content: "\f2ab";
+}
+.fa-snapchat-ghost:before {
+  content: "\f2ac";
+}
+.fa-snapchat-square:before {
+  content: "\f2ad";
+}
+.fa-pied-piper:before {
+  content: "\f2ae";
+}
+.fa-first-order:before {
+  content: "\f2b0";
+}
+.fa-yoast:before {
+  content: "\f2b1";
+}
+.fa-themeisle:before {
+  content: "\f2b2";
+}
+.fa-google-plus-circle:before,
+.fa-google-plus-official:before {
+  content: "\f2b3";
+}
+.fa-fa:before,
+.fa-font-awesome:before {
+  content: "\f2b4";
+}
+.fa-handshake-o:before {
+  content: "\f2b5";
+}
+.fa-envelope-open:before {
+  content: "\f2b6";
+}
+.fa-envelope-open-o:before {
+  content: "\f2b7";
+}
+.fa-linode:before {
+  content: "\f2b8";
+}
+.fa-address-book:before {
+  content: "\f2b9";
+}
+.fa-address-book-o:before {
+  content: "\f2ba";
+}
+.fa-vcard:before,
+.fa-address-card:before {
+  content: "\f2bb";
+}
+.fa-vcard-o:before,
+.fa-address-card-o:before {
+  content: "\f2bc";
+}
+.fa-user-circle:before {
+  content: "\f2bd";
+}
+.fa-user-circle-o:before {
+  content: "\f2be";
+}
+.fa-user-o:before {
+  content: "\f2c0";
+}
+.fa-id-badge:before {
+  content: "\f2c1";
+}
+.fa-drivers-license:before,
+.fa-id-card:before {
+  content: "\f2c2";
+}
+.fa-drivers-license-o:before,
+.fa-id-card-o:before {
+  content: "\f2c3";
+}
+.fa-quora:before {
+  content: "\f2c4";
+}
+.fa-free-code-camp:before {
+  content: "\f2c5";
+}
+.fa-telegram:before {
+  content: "\f2c6";
+}
+.fa-thermometer-4:before,
+.fa-thermometer:before,
+.fa-thermometer-full:before {
+  content: "\f2c7";
+}
+.fa-thermometer-3:before,
+.fa-thermometer-three-quarters:before {
+  content: "\f2c8";
+}
+.fa-thermometer-2:before,
+.fa-thermometer-half:before {
+  content: "\f2c9";
+}
+.fa-thermometer-1:before,
+.fa-thermometer-quarter:before {
+  content: "\f2ca";
+}
+.fa-thermometer-0:before,
+.fa-thermometer-empty:before {
+  content: "\f2cb";
+}
+.fa-shower:before {
+  content: "\f2cc";
+}
+.fa-bathtub:before,
+.fa-s15:before,
+.fa-bath:before {
+  content: "\f2cd";
+}
+.fa-podcast:before {
+  content: "\f2ce";
+}
+.fa-window-maximize:before {
+  content: "\f2d0";
+}
+.fa-window-minimize:before {
+  content: "\f2d1";
+}
+.fa-window-restore:before {
+  content: "\f2d2";
+}
+.fa-times-rectangle:before,
+.fa-window-close:before {
+  content: "\f2d3";
+}
+.fa-times-rectangle-o:before,
+.fa-window-close-o:before {
+  content: "\f2d4";
+}
+.fa-bandcamp:before {
+  content: "\f2d5";
+}
+.fa-grav:before {
+  content: "\f2d6";
+}
+.fa-etsy:before {
+  content: "\f2d7";
+}
+.fa-imdb:before {
+  content: "\f2d8";
+}
+.fa-ravelry:before {
+  content: "\f2d9";
+}
+.fa-eercast:before {
+  content: "\f2da";
+}
+.fa-microchip:before {
+  content: "\f2db";
+}
+.fa-snowflake-o:before {
+  content: "\f2dc";
+}
+.fa-superpowers:before {
+  content: "\f2dd";
+}
+.fa-wpexplorer:before {
+  content: "\f2de";
+}
+.fa-meetup:before {
+  content: "\f2e0";
+}
+.sr-only {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  padding: 0;
+  margin: -1px;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+}
+.sr-only-focusable:active,
+.sr-only-focusable:focus {
+  position: static;
+  width: auto;
+  height: auto;
+  margin: 0;
+  overflow: visible;
+  clip: auto;
+}
+.sr-only-focusable:active,
+.sr-only-focusable:focus {
+  position: static;
+  width: auto;
+  height: auto;
+  margin: 0;
+  overflow: visible;
+  clip: auto;
+}
+.text-overflow-pf {
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  word-wrap: normal;
+}
+.alert {
+  border-width: 1px;
+  padding-left: 47px;
+  padding-right: 14px;
+  position: relative;
+  word-wrap: break-word;
+}
+.alert .alert-link {
+  color: #0088ce;
+}
+.alert .alert-link:hover {
+  color: #00659c;
+}
+.alert > .btn.pull-right {
+  margin-top: -3px;
+}
+.alert > .pficon {
+  font-size: 22px;
+  position: absolute;
+  left: 13px;
+  top: 10px;
+}
+.alert .close {
+  opacity: 0.85;
+  filter: alpha(opacity=85);
+}
+.alert .close:hover,
+.alert .close:focus {
+  opacity: 1;
+  filter: alpha(opacity=100);
+}
+.alert .pficon-info {
+  color: #4d5258;
+}
+.alert-dismissable {
+  padding-right: 28px;
+}
+.alert-dismissable .close {
+  right: -13px;
+  top: 1px;
+}
+.badge {
+  margin-left: 6px;
+}
+.nav-pills > li > a > .badge {
+  margin-left: 6px;
+}
+.breadcrumb {
+  padding-left: 0;
+}
+.breadcrumb > .active strong {
+  font-weight: 600;
+}
+.breadcrumb > li {
+  display: inline;
+  /* IE8 */
+}
+.breadcrumb > li + li:before {
+  color: #9c9c9c;
+  content: "\f105";
+  font-family: "FontAwesome";
+  font-size: 11px;
+  padding: 0 9px 0 7px;
+}
+.btn {
+  -webkit-box-shadow: 0 2px 3px rgba(3, 3, 3, 0.1);
+  box-shadow: 0 2px 3px rgba(3, 3, 3, 0.1);
+}
+.btn:active {
+  -webkit-box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
+  box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
+}
+.btn.disabled,
+.btn[disabled],
+fieldset[disabled] .btn {
+  background-color: #fafafa !important;
+  background-image: none !important;
+  border-color: #d1d1d1 !important;
+  color: #8b8d8f !important;
+  opacity: 1;
+}
+.btn.disabled:active,
+.btn[disabled]:active,
+fieldset[disabled] .btn:active {
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+.btn.disabled.btn-link,
+.btn[disabled].btn-link,
+fieldset[disabled] .btn.btn-link {
+  background-color: transparent !important;
+  border: 0;
+}
+.btn-danger {
+  background-color: #a30000;
+  background-image: -webkit-linear-gradient(top, #cc0000 0%, #a30000 100%);
+  background-image: -o-linear-gradient(top, #cc0000 0%, #a30000 100%);
+  background-image: linear-gradient(to bottom, #cc0000 0%, #a30000 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffcc0000', endColorstr='#ffa30000', GradientType=0);
+  border-color: #8b0000;
+  color: #fff;
+}
+.btn-danger:hover,
+.btn-danger:focus,
+.btn-danger:active,
+.btn-danger.active,
+.open .dropdown-toggle.btn-danger {
+  background-color: #a30000;
+  background-image: none;
+  border-color: #8b0000;
+  color: #fff;
+}
+.btn-danger:active,
+.btn-danger.active,
+.open .dropdown-toggle.btn-danger {
+  background-image: none;
+}
+.btn-danger:active:hover,
+.btn-danger.active:hover,
+.open .dropdown-toggle.btn-danger:hover,
+.btn-danger:active:focus,
+.btn-danger.active:focus,
+.open .dropdown-toggle.btn-danger:focus,
+.btn-danger:active.focus,
+.btn-danger.active.focus,
+.open .dropdown-toggle.btn-danger.focus {
+  background-color: #8a0000;
+  border-color: #670000;
+}
+.btn-danger.disabled,
+.btn-danger[disabled],
+fieldset[disabled] .btn-danger,
+.btn-danger.disabled:hover,
+.btn-danger[disabled]:hover,
+fieldset[disabled] .btn-danger:hover,
+.btn-danger.disabled:focus,
+.btn-danger[disabled]:focus,
+fieldset[disabled] .btn-danger:focus,
+.btn-danger.disabled:active,
+.btn-danger[disabled]:active,
+fieldset[disabled] .btn-danger:active,
+.btn-danger.disabled.active,
+.btn-danger[disabled].active,
+fieldset[disabled] .btn-danger.active {
+  background-color: #a30000;
+  border-color: #8b0000;
+}
+.btn-default {
+  background-color: #f1f1f1;
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+  border-color: #bbb;
+  color: #4d5258;
+}
+.btn-default:hover,
+.btn-default:focus,
+.btn-default:active,
+.btn-default.active,
+.open .dropdown-toggle.btn-default {
+  background-color: #f1f1f1;
+  background-image: none;
+  border-color: #bbb;
+  color: #4d5258;
+}
+.btn-default:active,
+.btn-default.active,
+.open .dropdown-toggle.btn-default {
+  background-image: none;
+}
+.btn-default:active:hover,
+.btn-default.active:hover,
+.open .dropdown-toggle.btn-default:hover,
+.btn-default:active:focus,
+.btn-default.active:focus,
+.open .dropdown-toggle.btn-default:focus,
+.btn-default:active.focus,
+.btn-default.active.focus,
+.open .dropdown-toggle.btn-default.focus {
+  background-color: #e5e5e5;
+  border-color: #a9a9a9;
+}
+.btn-default.disabled,
+.btn-default[disabled],
+fieldset[disabled] .btn-default,
+.btn-default.disabled:hover,
+.btn-default[disabled]:hover,
+fieldset[disabled] .btn-default:hover,
+.btn-default.disabled:focus,
+.btn-default[disabled]:focus,
+fieldset[disabled] .btn-default:focus,
+.btn-default.disabled:active,
+.btn-default[disabled]:active,
+fieldset[disabled] .btn-default:active,
+.btn-default.disabled.active,
+.btn-default[disabled].active,
+fieldset[disabled] .btn-default.active {
+  background-color: #f1f1f1;
+  border-color: #bbb;
+}
+.btn-link,
+.btn-link:active {
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+.btn-primary {
+  background-color: #0088ce;
+  background-image: -webkit-linear-gradient(top, #39a5dc 0%, #0088ce 100%);
+  background-image: -o-linear-gradient(top, #39a5dc 0%, #0088ce 100%);
+  background-image: linear-gradient(to bottom, #39a5dc 0%, #0088ce 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff39a5dc', endColorstr='#ff0088ce', GradientType=0);
+  border-color: #00659c;
+  color: #fff;
+}
+.btn-primary:hover,
+.btn-primary:focus,
+.btn-primary:active,
+.btn-primary.active,
+.open .dropdown-toggle.btn-primary {
+  background-color: #0088ce;
+  background-image: none;
+  border-color: #00659c;
+  color: #fff;
+}
+.btn-primary:active,
+.btn-primary.active,
+.open .dropdown-toggle.btn-primary {
+  background-image: none;
+}
+.btn-primary:active:hover,
+.btn-primary.active:hover,
+.open .dropdown-toggle.btn-primary:hover,
+.btn-primary:active:focus,
+.btn-primary.active:focus,
+.open .dropdown-toggle.btn-primary:focus,
+.btn-primary:active.focus,
+.btn-primary.active.focus,
+.open .dropdown-toggle.btn-primary.focus {
+  background-color: #0077b5;
+  border-color: #004e78;
+}
+.btn-primary.disabled,
+.btn-primary[disabled],
+fieldset[disabled] .btn-primary,
+.btn-primary.disabled:hover,
+.btn-primary[disabled]:hover,
+fieldset[disabled] .btn-primary:hover,
+.btn-primary.disabled:focus,
+.btn-primary[disabled]:focus,
+fieldset[disabled] .btn-primary:focus,
+.btn-primary.disabled:active,
+.btn-primary[disabled]:active,
+fieldset[disabled] .btn-primary:active,
+.btn-primary.disabled.active,
+.btn-primary[disabled].active,
+fieldset[disabled] .btn-primary.active {
+  background-color: #0088ce;
+  border-color: #00659c;
+}
+.btn-xs,
+.btn-group-xs .btn,
+.btn-group-xs > .btn {
+  font-weight: 400;
+}
+.caret {
+  font-family: "FontAwesome";
+  font-weight: normal;
+  height: 9px;
+  position: relative;
+  vertical-align: baseline;
+  width: 12px;
+}
+.caret:before {
+  bottom: 0;
+  content: "\f107";
+  left: 0;
+  line-height: 12px;
+  position: absolute;
+  text-align: center;
+  top: -1px;
+  right: 0;
+}
+.dropup .caret:before {
+  content: "\f106";
+}
+.dropdown-toggle:focus {
+  outline: 5px auto -webkit-focus-ring-color;
+  outline-offset: -2px;
+}
+.dropdown-menu .divider {
+  background-color: #ededed;
+  height: 1px;
+  margin: 4px 1px;
+  overflow: hidden;
+}
+.dropdown-menu > li > a {
+  border-color: transparent;
+  border-style: solid;
+  border-width: 1px 0;
+  padding: 1px 10px;
+}
+.dropdown-menu > li > a:hover,
+.dropdown-menu > li > a:focus {
+  border-color: #bee1f4;
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+}
+.dropdown-menu > li > a:active {
+  background-color: #0088ce;
+  border-color: #0088ce;
+  color: #fff !important;
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+}
+.dropdown-menu > .active > a,
+.dropdown-menu > .active > a:hover,
+.dropdown-menu > .active > a:focus {
+  background-color: #0088ce !important;
+  border-color: #0088ce !important;
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+}
+.dropdown-menu > .disabled > a,
+.dropdown-menu > .disabled > a:hover,
+.dropdown-menu > .disabled > a:focus {
+  border-color: transparent;
+}
+.dropdown-menu > .selected > a {
+  background-color: #0088ce;
+  border-color: #0088ce;
+  color: #fff;
+}
+.dropdown-menu > .selected > a small {
+  color: rgba(255, 255, 255, 0.5);
+}
+.dropdown-menu > .disabled > a:hover,
+.dropdown-menu > .disabled > a:focus {
+  border-color: transparent;
+}
+.dropdown-header {
+  padding-left: 10px;
+  padding-right: 10px;
+  text-transform: uppercase;
+}
+.btn-group > .dropdown-menu,
+.dropdown > .dropdown-menu,
+.input-group-btn > .dropdown-menu {
+  margin-top: -1px;
+}
+.dropup .dropdown-menu {
+  margin-bottom: -1px;
+}
+.dropdown-submenu {
+  position: relative;
+}
+.dropdown-submenu:hover > a {
+  background-color: #def3ff;
+  border-color: #bee1f4;
+}
+.dropdown-submenu:hover > .dropdown-menu {
+  display: block;
+}
+.dropdown-submenu.pull-left {
+  float: none !important;
+}
+.dropdown-submenu.pull-left > .dropdown-menu {
+  left: auto;
+  margin-left: 10px;
+  right: 100%;
+}
+.dropdown-submenu > a {
+  padding-right: 20px !important;
+}
+.dropdown-submenu > a:after {
+  content: "\f105";
+  font-family: "FontAwesome";
+  display: block;
+  position: absolute;
+  right: 10px;
+  top: 2px;
+}
+.dropdown-submenu > .dropdown-menu {
+  left: 100%;
+  margin-top: 0;
+  top: -6px;
+}
+.dropup .dropdown-submenu > .dropdown-menu {
+  bottom: -5px;
+  top: auto;
+}
+.open .dropdown-submenu.active > .dropdown-menu {
+  display: block;
+}
+.dropdown-kebab-pf.btn-group > .btn:first-child,
+.dropdown-kebab-pf .btn-link {
+  color: #252525;
+  font-size: 16px;
+  line-height: 1;
+  padding: 4px 10px;
+  margin-left: -10px;
+  margin-right: -10px;
+}
+.dropdown-kebab-pf.btn-group > .btn:first-child:active,
+.dropdown-kebab-pf .btn-link:active,
+.dropdown-kebab-pf.btn-group > .btn:first-child:focus,
+.dropdown-kebab-pf .btn-link:focus,
+.dropdown-kebab-pf.btn-group > .btn:first-child:hover,
+.dropdown-kebab-pf .btn-link:hover {
+  color: #0088ce;
+}
+.dropdown-kebab-pf.btn-group {
+  margin-left: 10px;
+}
+.dropdown-kebab-pf .dropdown-menu {
+  left: -15px;
+  margin-top: 11px;
+}
+.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right {
+  left: auto;
+  right: -15px;
+}
+.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:after,
+.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:before {
+  left: auto;
+  right: 6px;
+}
+.dropdown-kebab-pf .dropdown-menu:after,
+.dropdown-kebab-pf .dropdown-menu:before {
+  border-bottom-color: #bbb;
+  border-bottom-style: solid;
+  border-bottom-width: 10px;
+  border-left: 10px solid transparent;
+  border-right: 10px solid transparent;
+  content: "";
+  display: inline-block;
+  left: 6px;
+  position: absolute;
+  top: -11px;
+}
+.dropdown-kebab-pf .dropdown-menu:after {
+  border-bottom-color: #fff;
+  top: -10px;
+}
+.dropdown-kebab-pf.dropup .dropdown-menu {
+  margin-bottom: 11px;
+  margin-top: 0;
+}
+.dropdown-kebab-pf.dropup .dropdown-menu:after,
+.dropdown-kebab-pf.dropup .dropdown-menu:before {
+  border-bottom: none;
+  border-top-color: #bbb;
+  border-top-style: solid;
+  border-top-width: 10px;
+  bottom: -11px;
+  top: auto;
+}
+.dropdown-kebab-pf.dropup .dropdown-menu:after {
+  border-top-color: #fff;
+  bottom: -10px;
+}
+.chars-remaining-pf span {
+  font-weight: 600;
+  padding-right: 5px;
+}
+.chars-warn-remaining-pf {
+  color: #cc0000;
+}
+.fields-status-pf {
+  color: #8b8d8f;
+  margin-bottom: 15px;
+}
+.form-control[disabled],
+.form-control[readonly],
+fieldset[disabled] .form-control {
+  -webkit-box-shadow: none;
+  box-shadow: none;
+  color: #8b8d8f;
+}
+.form-control[disabled]:hover,
+.form-control[readonly]:hover,
+fieldset[disabled] .form-control:hover {
+  border-color: #bbb;
+}
+.form-control:hover {
+  border-color: #7dc3e8;
+}
+.has-error .form-control:hover {
+  border-color: #990000;
+}
+.has-success .form-control:hover {
+  border-color: #2b542c;
+}
+.has-warning .form-control:hover {
+  border-color: #bb6106;
+}
+.has-error .checkbox,
+.has-success .checkbox,
+.has-warning .checkbox,
+.has-error .checkbox-inline,
+.has-success .checkbox-inline,
+.has-warning .checkbox-inline,
+.has-error .control-label,
+.has-success .control-label,
+.has-warning .control-label,
+.has-error .radio,
+.has-success .radio,
+.has-warning .radio,
+.has-error .radio-inline,
+.has-success .radio-inline,
+.has-warning .radio-inline,
+.has-error.checkbox label,
+.has-success.checkbox label,
+.has-warning.checkbox label,
+.has-error.checkbox-inline label,
+.has-success.checkbox-inline label,
+.has-warning.checkbox-inline label,
+.has-error.radio label,
+.has-success.radio label,
+.has-warning.radio label,
+.has-error.radio-inline label,
+.has-success.radio-inline label,
+.has-warning.radio-inline label {
+  color: #363636;
+}
+.help-block {
+  margin-bottom: 0px;
+}
+.input-group .input-group-btn .btn {
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+label {
+  font-weight: 600;
+}
+label.required-pf:after {
+  color: #cc0000;
+  content: "*";
+  margin-left: 3px;
+}
+span.required-pf {
+  color: #cc0000;
+}
+.fields-section-pf {
+  border-color: #ededed;
+  border-style: solid;
+  border-width: 1px 0 0;
+  margin-top: 25px;
+  padding: 15px 0 0;
+}
+.fields-section-header-pf {
+  border: none;
+  font-size: 12px;
+  margin: 0;
+  padding-right: 10px;
+  width: auto;
+}
+.fields-section-header-pf .fa-angle-right {
+  cursor: pointer;
+  font-size: 14px;
+  width: 14px;
+}
+.label {
+  border-radius: 0;
+  font-size: 100%;
+  font-weight: 600;
+}
+h1 .label,
+h2 .label,
+h3 .label,
+h4 .label,
+h5 .label,
+h6 .label {
+  font-size: 75%;
+}
+.list-group {
+  border-top: 1px solid #ededed;
+}
+.list-group .list-group-item:first-child {
+  border-top: 0;
+}
+.list-group-item {
+  border-left: 0;
+  border-right: 0;
+}
+.list-group-item-heading {
+  font-weight: 600;
+}
+.modal-header {
+  background-color: #f5f5f5;
+  border-bottom: none;
+  padding: 10px 18px;
+}
+.modal-header .close {
+  margin-top: 2px;
+}
+.modal-title {
+  font-size: 13px;
+  font-weight: 700;
+}
+.modal-footer {
+  border-top: none;
+  margin-top: 15px;
+  padding: 14px 15px 15px;
+}
+.modal-footer > .btn {
+  padding-left: 10px;
+  padding-right: 10px;
+}
+.modal-footer > .btn > .fa-angle-left {
+  margin-right: 5px;
+}
+.modal-footer > .btn > .fa-angle-right {
+  margin-left: 5px;
+}
+.pager li > a,
+.pager li > span {
+  background-color: #f1f1f1;
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+  border-color: #bbb;
+  color: #4d5258;
+  font-weight: 600;
+  line-height: 22px;
+  padding: 2px 14px;
+}
+.pager li > a:hover,
+.pager li > span:hover,
+.pager li > a:focus,
+.pager li > span:focus,
+.pager li > a:active,
+.pager li > span:active,
+.pager li > a.active,
+.pager li > span.active,
+.open .dropdown-toggle.pager li > a,
+.open .dropdown-toggle.pager li > span {
+  background-color: #f1f1f1;
+  background-image: none;
+  border-color: #bbb;
+  color: #4d5258;
+}
+.pager li > a:active,
+.pager li > span:active,
+.pager li > a.active,
+.pager li > span.active,
+.open .dropdown-toggle.pager li > a,
+.open .dropdown-toggle.pager li > span {
+  background-image: none;
+}
+.pager li > a:active:hover,
+.pager li > span:active:hover,
+.pager li > a.active:hover,
+.pager li > span.active:hover,
+.open .dropdown-toggle.pager li > a:hover,
+.open .dropdown-toggle.pager li > span:hover,
+.pager li > a:active:focus,
+.pager li > span:active:focus,
+.pager li > a.active:focus,
+.pager li > span.active:focus,
+.open .dropdown-toggle.pager li > a:focus,
+.open .dropdown-toggle.pager li > span:focus,
+.pager li > a:active.focus,
+.pager li > span:active.focus,
+.pager li > a.active.focus,
+.pager li > span.active.focus,
+.open .dropdown-toggle.pager li > a.focus,
+.open .dropdown-toggle.pager li > span.focus {
+  background-color: #e5e5e5;
+  border-color: #a9a9a9;
+}
+.pager li > a.disabled,
+.pager li > span.disabled,
+.pager li > a[disabled],
+.pager li > span[disabled],
+fieldset[disabled] .pager li > a,
+fieldset[disabled] .pager li > span,
+.pager li > a.disabled:hover,
+.pager li > span.disabled:hover,
+.pager li > a[disabled]:hover,
+.pager li > span[disabled]:hover,
+fieldset[disabled] .pager li > a:hover,
+fieldset[disabled] .pager li > span:hover,
+.pager li > a.disabled:focus,
+.pager li > span.disabled:focus,
+.pager li > a[disabled]:focus,
+.pager li > span[disabled]:focus,
+fieldset[disabled] .pager li > a:focus,
+fieldset[disabled] .pager li > span:focus,
+.pager li > a.disabled:active,
+.pager li > span.disabled:active,
+.pager li > a[disabled]:active,
+.pager li > span[disabled]:active,
+fieldset[disabled] .pager li > a:active,
+fieldset[disabled] .pager li > span:active,
+.pager li > a.disabled.active,
+.pager li > span.disabled.active,
+.pager li > a[disabled].active,
+.pager li > span[disabled].active,
+fieldset[disabled] .pager li > a.active,
+fieldset[disabled] .pager li > span.active {
+  background-color: #f1f1f1;
+  border-color: #bbb;
+}
+.pager li > a > .i,
+.pager li > span > .i {
+  font-size: 18px;
+  vertical-align: top;
+  margin: 2px 0;
+}
+.pager li a:active {
+  background-image: none;
+  -webkit-box-shadow: inset 0 3px 5px rgba(3, 3, 3, 0.125);
+  box-shadow: inset 0 3px 5px rgba(3, 3, 3, 0.125);
+  outline: 0;
+}
+.pager .disabled > a,
+.pager .disabled > a:hover,
+.pager .disabled > a:focus,
+.pager .disabled > a:active,
+.pager .disabled > span {
+  background: #f5f5f5;
+  -webkit-box-shadow: none;
+  box-shadow: none;
+  color: #8b8d8f;
+  cursor: not-allowed;
+}
+.pager .next > a > .i,
+.pager .next > span > .i {
+  margin-left: 5px;
+}
+.pager .previous > a > .i,
+.pager .previous > span > .i {
+  margin-right: 5px;
+}
+.pager-sm li > a,
+.pager-sm li > span {
+  font-weight: 400;
+  line-height: 16px;
+  padding: 1px 10px;
+}
+.pager-sm li > a > .i,
+.pager-sm li > span > .i {
+  font-size: 12px;
+}
+.pagination > li > a,
+.pagination > li > span {
+  background-color: #f1f1f1;
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+  border-color: #bbb;
+  color: #4d5258;
+  cursor: default;
+  font-weight: 600;
+  padding: 2px 10px;
+}
+.pagination > li > a:hover,
+.pagination > li > span:hover,
+.pagination > li > a:focus,
+.pagination > li > span:focus,
+.pagination > li > a:active,
+.pagination > li > span:active,
+.pagination > li > a.active,
+.pagination > li > span.active,
+.open .dropdown-toggle.pagination > li > a,
+.open .dropdown-toggle.pagination > li > span {
+  background-color: #f1f1f1;
+  background-image: none;
+  border-color: #bbb;
+  color: #4d5258;
+}
+.pagination > li > a:active,
+.pagination > li > span:active,
+.pagination > li > a.active,
+.pagination > li > span.active,
+.open .dropdown-toggle.pagination > li > a,
+.open .dropdown-toggle.pagination > li > span {
+  background-image: none;
+}
+.pagination > li > a:active:hover,
+.pagination > li > span:active:hover,
+.pagination > li > a.active:hover,
+.pagination > li > span.active:hover,
+.open .dropdown-toggle.pagination > li > a:hover,
+.open .dropdown-toggle.pagination > li > span:hover,
+.pagination > li > a:active:focus,
+.pagination > li > span:active:focus,
+.pagination > li > a.active:focus,
+.pagination > li > span.active:focus,
+.open .dropdown-toggle.pagination > li > a:focus,
+.open .dropdown-toggle.pagination > li > span:focus,
+.pagination > li > a:active.focus,
+.pagination > li > span:active.focus,
+.pagination > li > a.active.focus,
+.pagination > li > span.active.focus,
+.open .dropdown-toggle.pagination > li > a.focus,
+.open .dropdown-toggle.pagination > li > span.focus {
+  background-color: #e5e5e5;
+  border-color: #a9a9a9;
+}
+.pagination > li > a.disabled,
+.pagination > li > span.disabled,
+.pagination > li > a[disabled],
+.pagination > li > span[disabled],
+fieldset[disabled] .pagination > li > a,
+fieldset[disabled] .pagination > li > span,
+.pagination > li > a.disabled:hover,
+.pagination > li > span.disabled:hover,
+.pagination > li > a[disabled]:hover,
+.pagination > li > span[disabled]:hover,
+fieldset[disabled] .pagination > li > a:hover,
+fieldset[disabled] .pagination > li > span:hover,
+.pagination > li > a.disabled:focus,
+.pagination > li > span.disabled:focus,
+.pagination > li > a[disabled]:focus,
+.pagination > li > span[disabled]:focus,
+fieldset[disabled] .pagination > li > a:focus,
+fieldset[disabled] .pagination > li > span:focus,
+.pagination > li > a.disabled:active,
+.pagination > li > span.disabled:active,
+.pagination > li > a[disabled]:active,
+.pagination > li > span[disabled]:active,
+fieldset[disabled] .pagination > li > a:active,
+fieldset[disabled] .pagination > li > span:active,
+.pagination > li > a.disabled.active,
+.pagination > li > span.disabled.active,
+.pagination > li > a[disabled].active,
+.pagination > li > span[disabled].active,
+fieldset[disabled] .pagination > li > a.active,
+fieldset[disabled] .pagination > li > span.active {
+  background-color: #f1f1f1;
+  border-color: #bbb;
+}
+.pagination > li > a > .i,
+.pagination > li > span > .i {
+  font-size: 15px;
+  vertical-align: top;
+  margin: 2px 0;
+}
+.pagination > li > a:active,
+.pagination > li > span:active {
+  -webkit-box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
+  box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
+}
+.pagination > .active > a,
+.pagination > .active > span,
+.pagination > .active > a:hover,
+.pagination > .active > span:hover,
+.pagination > .active > a:focus,
+.pagination > .active > span:focus {
+  background-color: #f1f1f1;
+  border-color: #bbb;
+  -webkit-box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
+  box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
+  color: #4d5258;
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+}
+.pagination > .disabled > span,
+.pagination > .disabled > span:hover,
+.pagination > .disabled > span:focus,
+.pagination > .disabled > a,
+.pagination > .disabled > a:hover,
+.pagination > .disabled > a:focus {
+  -webkit-box-shadow: none;
+  box-shadow: none;
+  cursor: not-allowed;
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+}
+.pagination-sm > li > a,
+.pagination-sm > li > span {
+  padding: 2px 6px;
+  font-size: 11px;
+  line-height: 1.5;
+}
+.pagination-sm > li:first-child > a,
+.pagination-sm > li:first-child > span {
+  border-bottom-left-radius: 1px;
+  border-top-left-radius: 1px;
+}
+.pagination-sm > li:last-child > a,
+.pagination-sm > li:last-child > span {
+  border-bottom-right-radius: 1px;
+  border-top-right-radius: 1px;
+}
+.pagination-sm > li > a,
+.pagination-sm > li > span {
+  font-weight: 400;
+}
+.pagination-sm > li > a > .i,
+.pagination-sm > li > span > .i {
+  font-size: 12px;
+  margin-top: 2px;
+}
+.content-view-pf-pagination {
+  background-color: #f5f5f5;
+  border: 1px solid #d1d1d1;
+  display: flex;
+  flex-wrap: wrap;
+  justify-content: space-between;
+}
+.content-view-pf-pagination.table-view-pf-pagination {
+  border-top: none;
+}
+.content-view-pf-pagination .form-group {
+  align-items: baseline;
+  display: flex;
+  flex-grow: 1;
+  float: left;
+  margin: 5px;
+}
+@supports (display: flex) {
+  .content-view-pf-pagination .form-group {
+    float: none;
+  }
+}
+.content-view-pf-pagination .form-group:last-child {
+  justify-content: flex-end;
+  float: right;
+}
+@supports (display: flex) {
+  .content-view-pf-pagination .form-group:last-child {
+    float: none;
+  }
+}
+.content-view-pf-pagination .form-group .pagination-pf-pagesize.bootstrap-select.btn-group,
+.content-view-pf-pagination .form-group .pagination-pf-pagesize.btn-group {
+  display: flex;
+  float: none;
+  margin-bottom: 0;
+  margin-left: 0;
+  margin-right: 5px;
+  width: auto;
+}
+.content-view-pf-pagination .form-group .dropdown-menu {
+  min-width: auto;
+}
+.content-view-pf-pagination .pagination-pf-page {
+  margin-left: 10px;
+  margin-right: 5px;
+  padding: 0 2px 2px;
+  text-align: right;
+  width: 2.5em;
+}
+.content-view-pf-pagination .pagination {
+  display: flex;
+  margin: 0 0 0 10px;
+}
+.content-view-pf-pagination .pagination a {
+  float: none;
+}
+@supports (display: flex) {
+  .content-view-pf-pagination .pagination a {
+    display: block;
+  }
+}
+.panel-title {
+  font-weight: 700;
+}
+.panel-group .panel {
+  color: #4d5258;
+}
+.panel-group .panel + .panel {
+  margin-top: -1px;
+}
+.panel-group .panel-default {
+  border-color: #bbb;
+  border-top-color: #bbb;
+}
+.panel-group .panel-default .panel-heading {
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+}
+.panel-group .panel-default .panel-heading + .panel-collapse .panel-body {
+  border-top: 1px solid #d1d1d1;
+}
+.panel-group .panel-info {
+  border-color: #00659c;
+}
+.panel-group .panel-info .panel-heading {
+  background-color: #dae5f4;
+}
+.panel-group .panel-info + .panel-default {
+  border-top-color: #00659c;
+}
+.panel-group .panel-primary {
+  border-color: #39a5dc;
+}
+.panel-group .panel-primary .panel-heading {
+  background-color: #def0f9;
+}
+.panel-group .panel-primary + .panel-default {
+  border-top-color: #39a5dc;
+}
+.panel-group .panel-primary + .panel-info {
+  border-top-color: #39a5dc;
+}
+.panel-group .panel-success {
+  border-color: #3f9c35;
+}
+.panel-group .panel-success .panel-heading {
+  background-color: #e9f4e9;
+}
+.panel-group .panel-success + .panel-default {
+  border-top-color: #3f9c35;
+}
+.panel-group .panel-success + .panel-info {
+  border-top-color: #3f9c35;
+}
+.panel-group .panel-success + .panel-primary {
+  border-top-color: #3f9c35;
+}
+.panel-group .panel-warning {
+  border-color: #ec7a08;
+}
+.panel-group .panel-warning .panel-heading {
+  background-color: #fdf2e5;
+}
+.panel-group .panel-warning + .panel-default {
+  border-top-color: #ec7a08;
+}
+.panel-group .panel-warning + .panel-info {
+  border-top-color: #ec7a08;
+}
+.panel-group .panel-warning + .panel-primary {
+  border-top-color: #ec7a08;
+}
+.panel-group .panel-warning + .panel-success {
+  border-top-color: #ec7a08;
+}
+.panel-group .panel-danger {
+  border-color: #cc0000;
+}
+.panel-group .panel-danger .panel-heading {
+  background-color: #ffe6e6;
+}
+.panel-group .panel-danger + .panel-default {
+  border-top-color: #cc0000;
+}
+.panel-group .panel-danger + .panel-info {
+  border-top-color: #cc0000;
+}
+.panel-group .panel-danger + .panel-primary {
+  border-top-color: #cc0000;
+}
+.panel-group .panel-danger + .panel-success {
+  border-top-color: #cc0000;
+}
+.panel-group .panel-danger + .panel-warning {
+  border-top-color: #cc0000;
+}
+.panel-group .panel-title {
+  font-weight: 500;
+  line-height: 1;
+}
+.panel-group .panel-title > a {
+  color: #4d5258;
+  font-weight: 600;
+}
+.panel-group .panel-title > a:before {
+  content: "\f107";
+  display: inline-block;
+  font-family: "FontAwesome";
+  font-size: 13px;
+  margin-right: 5px;
+  text-align: center;
+  vertical-align: 0;
+  width: 8px;
+}
+.panel-group .panel-title > a:focus {
+  outline: none;
+  text-decoration: none;
+}
+.panel-group .panel-title > a:hover {
+  text-decoration: none;
+}
+.panel-group .panel-title > a.collapsed:before {
+  content: "\f105";
+}
+.popover {
+  -webkit-box-shadow: 0 2px 2px rgba(3, 3, 3, 0.08);
+  box-shadow: 0 2px 2px rgba(3, 3, 3, 0.08);
+  padding: 0;
+}
+.popover-content {
+  color: #4d5258;
+  line-height: 18px;
+  padding: 10px 14px;
+}
+.popover-title {
+  border-bottom: none;
+  border-radius: 0;
+  color: #4d5258;
+  font-size: 13px;
+  font-weight: 700;
+  min-height: 34px;
+}
+.popover-title .close {
+  height: 22px;
+  position: absolute;
+  right: 8px;
+  top: 6px;
+}
+.popover-title.closable {
+  padding-right: 30px;
+}
+@keyframes progress-bar-stripes {
+  from {
+    background-position: 0 0;
+  }
+  to {
+    background-position: 40px 0;
+  }
+}
+.progress {
+  -webkit-box-shadow: inset 0 0 1px rgba(3, 3, 3, 0.25);
+  box-shadow: inset 0 0 1px rgba(3, 3, 3, 0.25);
+}
+.progress.progress-label-left,
+.progress.progress-label-top-right {
+  overflow: visible;
+  position: relative;
+}
+.progress.progress-label-left {
+  margin-left: 40px;
+}
+.progress.progress-sm {
+  height: 14px;
+  margin-bottom: 14px;
+}
+.progress.progress-xs {
+  height: 6px;
+  margin-bottom: 6px;
+}
+td > .progress:first-child:last-child {
+  margin-bottom: 0;
+  margin-top: 3px;
+}
+.progress-bar {
+  box-shadow: none;
+}
+.progress-label-left .progress-bar span,
+.progress-label-right .progress-bar span,
+.progress-label-top-right .progress-bar span {
+  color: #363636;
+  position: absolute;
+  text-align: right;
+}
+.progress-label-left .progress-bar span {
+  font-size: 14px;
+  left: -40px;
+  top: 0;
+  width: 35px;
+}
+.progress-label-right .progress-bar span,
+.progress-label-top-right .progress-bar span {
+  font-size: 11px;
+  overflow: hidden;
+  right: 0;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+}
+.progress-label-right .progress-bar span strong,
+.progress-label-top-right .progress-bar span strong {
+  font-weight: 600;
+}
+.progress-label-right .progress-bar span {
+  max-width: 85px;
+  top: 0;
+}
+.progress-label-top-right .progress-bar span {
+  max-width: 47%;
+  top: -30px;
+}
+.progress-label-left.progress-sm .progress-bar span,
+.progress-label-top-right.progress-sm .progress-bar span {
+  font-size: 12px;
+}
+.progress-sm .progress-bar {
+  line-height: 14px;
+}
+.progress-xs .progress-bar {
+  line-height: 6px;
+}
+.progress-bar-remaining {
+  background: transparent;
+}
+.progress-container {
+  position: relative;
+}
+.progress-container.progress-description-left {
+  padding-left: 90px;
+}
+.progress-container.progress-label-right {
+  padding-right: 90px;
+}
+.progress-description {
+  margin-bottom: 10px;
+  max-width: 52%;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+}
+.progress-description .count {
+  font-size: 20.004px;
+  font-weight: 300;
+  line-height: 1;
+  margin-right: 5px;
+}
+.progress-description .fa,
+.progress-description .pficon {
+  font-size: 14px;
+  margin-right: 3px;
+}
+.progress-description-left .progress-description {
+  left: 0;
+  margin-bottom: 0;
+  max-width: 85px;
+  position: absolute;
+  top: 0;
+}
+.progress-description .tooltip {
+  white-space: normal;
+}
+.table > thead > tr > th,
+.table > tbody > tr > th,
+.table > tfoot > tr > th,
+.table > thead > tr > td,
+.table > tbody > tr > td,
+.table > tfoot > tr > td {
+  padding: 2px 10px 3px;
+}
+.table > thead > tr > th > a:hover,
+.table > tbody > tr > th > a:hover,
+.table > tfoot > tr > th > a:hover,
+.table > thead > tr > td > a:hover,
+.table > tbody > tr > td > a:hover,
+.table > tfoot > tr > td > a:hover {
+  text-decoration: none;
+}
+.table > thead > tr > th,
+.table > tbody > tr > th,
+.table > tfoot > tr > th {
+  font-family: "Open Sans";
+  font-style: normal;
+  font-weight: 600;
+}
+.table > thead {
+  background-clip: padding-box;
+  background-color: #f5f5f5;
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+}
+.table-bordered {
+  border: 1px solid #d1d1d1;
+}
+.table-bordered > thead > tr > th,
+.table-bordered > tbody > tr > th,
+.table-bordered > tfoot > tr > th,
+.table-bordered > thead > tr > td,
+.table-bordered > tbody > tr > td,
+.table-bordered > tfoot > tr > td {
+  border: 1px solid #d1d1d1;
+}
+.table-bordered > thead > tr > th,
+.table-bordered > thead > tr > td {
+  border-bottom-width: 1px;
+}
+.table-striped > tbody > tr:nth-of-type(even) {
+  background-color: #f5f5f5;
+}
+.table-striped > tbody > tr:nth-of-type(odd) {
+  background-color: transparent;
+}
+.table-hover > tbody > tr:hover > td,
+.table-hover > tbody > tr:hover > th {
+  background-color: #def3ff;
+  border-bottom-color: #7dc3e8;
+}
+.table-treegrid span.indent {
+  margin-left: 10px;
+  margin-right: 10px;
+}
+.table-treegrid span.icon {
+  display: inline-block;
+  font-size: 13px;
+  margin-right: 5px;
+  min-width: 10px;
+  text-align: center;
+}
+.table-treegrid span.expand-icon,
+.table-treegrid span.collapse-icon {
+  cursor: pointer;
+}
+.table-treegrid > tbody > tr.odd {
+  background-color: #f5f5f5;
+}
+.nav-tabs {
+  font-size: 14px;
+}
+.nav-tabs > li > a {
+  color: #4d5258;
+  margin-right: -1px;
+  padding-bottom: 5px;
+  padding-top: 5px;
+}
+.nav-tabs > li > a:active,
+.nav-tabs > li > a:focus,
+.nav-tabs > li > a:hover {
+  background: transparent;
+  border-color: #ededed;
+  color: #252525;
+}
+.nav-tabs > li > .dropdown-menu {
+  border-top: 0;
+  border-color: #ededed;
+}
+.nav-tabs > li > .dropdown-menu.pull-right {
+  right: -1px;
+}
+.nav-tabs + .nav-tabs-pf,
+.nav-tabs.nav-tabs-pf-secondary {
+  font-size: 12px;
+}
+.nav-tabs + .nav-tabs-pf > li:first-child > a,
+.nav-tabs.nav-tabs-pf-secondary > li:first-child > a {
+  padding-left: 15px;
+}
+.nav-tabs + .nav-tabs-pf > li:first-child > a:before,
+.nav-tabs.nav-tabs-pf-secondary > li:first-child > a:before {
+  left: 15px !important;
+}
+.nav-tabs .open > a,
+.nav-tabs .open > a:hover,
+.nav-tabs .open > a:focus {
+  background-color: transparent;
+  border-color: #ededed;
+}
+@media (min-width: 768px) {
+  .nav-tabs-pf.nav-justified {
+    border-bottom: 1px solid #ededed;
+  }
+}
+.nav-tabs-pf.nav-justified > li:first-child > a {
+  padding-left: 15px;
+}
+.nav-tabs-pf.nav-justified > li > a {
+  border-bottom: 0;
+}
+.nav-tabs-pf.nav-justified > li > a:before {
+  left: 0 !important;
+  right: 0 !important;
+}
+.nav-tabs-pf > li {
+  margin-bottom: 0;
+}
+.nav-tabs-pf > li.active > a:before {
+  background: #0088ce;
+  bottom: -1px;
+  content: "";
+  display: block;
+  height: 2px;
+  left: 15px;
+  position: absolute;
+  right: 15px;
+}
+.nav-tabs-pf > li.active > a,
+.nav-tabs-pf > li.active > a:active,
+.nav-tabs-pf > li.active > a:focus,
+.nav-tabs-pf > li.active > a:hover {
+  background-color: transparent;
+  border: 0 !important;
+  color: #0088ce;
+}
+.nav-tabs-pf > li.active > a:before,
+.nav-tabs-pf > li.active > a:active:before,
+.nav-tabs-pf > li.active > a:focus:before,
+.nav-tabs-pf > li.active > a:hover:before {
+  background: #0088ce;
+}
+.nav-tabs-pf > li:first-child > a {
+  padding-left: 0;
+}
+.nav-tabs-pf > li:first-child > a:before {
+  left: 0 !important;
+}
+.nav-tabs-pf > li > a {
+  border: 0;
+  line-height: 1;
+  margin-right: 0;
+  padding-bottom: 10px;
+  padding-top: 10px;
+}
+.nav-tabs-pf > li > a:active:before,
+.nav-tabs-pf > li > a:focus:before,
+.nav-tabs-pf > li > a:hover:before {
+  background: #bbb;
+  bottom: -1px;
+  content: "";
+  display: block;
+  height: 2px;
+  left: 15px;
+  position: absolute;
+  right: 15px;
+}
+.nav-tabs-pf > li > .dropdown-menu {
+  left: 15px;
+  margin-top: 1px;
+}
+.nav-tabs-pf > li > .dropdown-menu.pull-right {
+  left: auto;
+  right: 15px;
+}
+.nav-tabs-pf .open > a,
+.nav-tabs-pf .open > a:hover,
+.nav-tabs-pf .open > a:focus {
+  background-color: transparent;
+}
+.tooltip {
+  font-size: 12px;
+  line-height: 1.4;
+}
+.tooltip-inner {
+  padding: 7px 12px;
+  text-align: left;
+}
+h1,
+.h1,
+h2,
+.h2 {
+  font-weight: 300;
+}
+.page-header .actions {
+  margin-top: 8px;
+}
+.page-header .actions a > .pficon {
+  margin-right: 4px;
+}
+@media (min-width: 767px) {
+  .page-header-bleed-left {
+    margin-left: -20px;
+  }
+  .page-header-bleed-right {
+    margin-right: -20px;
+  }
+  .page-header-bleed-right .actions {
+    margin-right: 20px;
+  }
+}
+/* RCUE-specific */
+/*# sourceMappingURL=rcue.css.map */
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue.css.map b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue.css.map
new file mode 100644
index 0000000..c33b644
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["node_modules/patternfly/dist/less/fonts.less","node_modules/bootstrap/less/normalize.less","node_modules/bootstrap/less/print.less","node_modules/bootstrap/less/glyphicons.less","node_modules/bootstrap/less/scaffolding.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","node_modules/patternfly/dist/less/variables.less","node_modules/bootstrap/less/mixins/tab-focus.less","node_modules/bootstrap/less/thumbnails.less","node_modules/bootstrap/less/carousel.less","node_modules/bootstrap/less/mixins/image.less","node_modules/bootstrap/less/type.less","node_modules/bootstrap/less/mixins/text-emphasis.less","node_modules/bootstrap/less/mixins/background-variant.less","node_modules/bootstrap/less/mixins/text-overflow.less","node_modules/bootstrap/less/code.less","node_modules/bootstrap/less/grid.less","node_modules/bootstrap/less/mixins/grid.less","node_modules/bootstrap/less/mixins/grid-framework.less","node_modules/bootstrap/less/tables.less","node_modules/bootstrap/less/mixins/table-row.less","node_modules/bootstrap/less/forms.less","node_modules/bootstrap/less/mixins/forms.less","node_modules/patternfly/dist/less/bootstrap-mixin-overrides.less","node_modules/bootstrap/less/buttons.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap/less/button-groups.less","node_modules/bootstrap/less/component-animations.less","node_modules/bootstrap/less/dropdowns.less","node_modules/bootstrap/less/mixins/nav-divider.less","node_modules/bootstrap/less/mixins/reset-filter.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/input-groups.less","node_modules/bootstrap/less/navs.less","node_modules/bootstrap/less/navbar.less","node_modules/bootstrap/less/mixins/nav-vertical-align.less","node_modules/bootstrap/less/utilities.less","node_modules/font-awesome/less/bordered-pulled.less","node_modules/bootstrap/less/breadcrumbs.less","node_modules/bootstrap/less/pagination.less","node_modules/bootstrap/less/mixins/pagination.less","node_modules/bootstrap/less/pager.less","node_modules/bootstrap/less/labels.less","node_modules/bootstrap/less/mixins/labels.less","node_modules/bootstrap/less/badges.less","node_modules/bootstrap/less/jumbotron.less","node_modules/bootstrap/less/alerts.less","node_modules/bootstrap/less/mixins/alerts.less","node_modules/bootstrap/less/progress-bars.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/progress-bar.less","node_modules/bootstrap/less/media.less","node_modules/bootstrap/less/list-group.less","node_modules/bootstrap/less/mixins/list-group.less","node_modules/bootstrap/less/panels.less","node_modules/bootstrap/less/mixins/panels.less","node_modules/bootstrap/less/responsive-embed.less","node_modules/bootstrap/less/wells.less","node_modules/bootstrap/less/close.less","node_modules/bootstrap/less/modals.less","node_modules/bootstrap/less/tooltip.less","node_modules/bootstrap/less/mixins/reset-text.less","node_modules/bootstrap/less/popovers.less","node_modules/bootstrap/less/mixins/clearfix.less","node_modules/bootstrap/less/mixins/center-block.less","node_modules/bootstrap/less/mixins/hide-text.less","node_modules/bootstrap/less/responsive-utilities.less","node_modules/bootstrap/less/mixins/responsive-visibility.less","node_modules/font-awesome/less/path.less","node_modules/font-awesome/less/core.less","node_modules/font-awesome/less/larger.less","node_modules/font-awesome/less/fixed-width.less","node_modules/font-awesome/less/list.less","node_modules/font-awesome/less/animated.less","node_modules/font-awesome/less/rotated-flipped.less","node_modules/font-awesome/less/mixins.less","node_modules/font-awesome/less/stacked.less","node_modules/font-awesome/less/icons.less","node_modules/font-awesome/less/variables.less","node_modules/font-awesome/less/screen-reader.less","node_modules/patternfly/dist/less/mixins.less","node_modules/patternfly/dist/less/alerts.less","node_modules/patternfly/dist/less/badges.less","node_modules/patternfly/dist/less/breadcrumbs.less","node_modules/patternfly/dist/less/buttons.less","node_modules/patternfly/dist/less/dropdowns.less","node_modules/patternfly/dist/less/forms.less","node_modules/patternfly/dist/less/labels.less","node_modules/patternfly/dist/less/list-group.less","node_modules/patternfly/dist/less/modals.less","node_modules/patternfly/dist/less/pager.less","node_modules/patternfly/dist/less/pagination.less","node_modules/patternfly/dist/less/panels.less","node_modules/patternfly/dist/less/popovers.less","node_modules/patternfly/dist/less/progress-bars.less","node_modules/patternfly/dist/less/tables.less","node_modules/patternfly/dist/less/tabs.less","node_modules/patternfly/dist/less/tooltip.less","node_modules/patternfly/dist/less/type.less"],"names":[],"mappings":";;AAIA;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,sCAAT;;EACA,KAAK,MAAM,oBAAoB,MAAM,uBAC5B,8CAAkD,OAAO,wCACzD,yCAA6C,OAAO,0CACpD,wCAA4C,OAAO,mCACnD,uCAA2C,OAAO,4CAClD,gDAAoD,OAAO,MALpE;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,wCAAT;;EACA,KAAK,MAAM,cAAc,MAAM,iBACtB,gDAAoD,OAAO,wCAC3D,2CAA+C,OAAO,0CACtD,0CAA8C,OAAO,mCACrD,yCAA6C,OAAO,4CACpD,kDAAsD,OAAO,MALtE;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,4CAAT;;EACA,KAAK,MAAM,2BAA2B,MAAM,6BACnC,oDAAwD,OAAO,wCAC/D,+CAAmD,OAAO,0CAC1D,8CAAkD,OAAO,mCACzD,6CAAiD,OAAO,4CACxD,sDAA0D,OAAO,MAL1E;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,uCAAT;;EACA,KAAK,MAAM,qBAAqB,MAAM,wBAC7B,+CAAmD,OAAO,wCAC1D,0CAA8C,OAAO,0CACrD,yCAA6C,OAAO,mCACpD,wCAA4C,OAAO,4CACnD,iDAAqD,OAAO,MALrE;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,yCAAT;;EACA,KAAK,MAAM,uBAAuB,MAAM,kCAC/B,iDAAqD,OAAO,wCAC5D,4CAAgD,OAAO,0CACvD,2CAA+C,OAAO,mCACtD,0CAA8C,OAAO,4CACrD,mDAAuD,OAAO,MALvE;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,+CAAT;;EACA,KAAK,MAAM,8BAA8B,MAAM,wCACtC,uDAA2D,OAAO,wCAClE,kDAAsD,OAAO,0CAC7D,iDAAqD,OAAO,mCAC5D,gDAAoD,OAAO,4CAC3D,yDAA6D,OAAO,MAL7E;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,qCAAT;;EACA,KAAK,MAAM,mBAAmB,MAAM,sBAC3B,6CAAiD,OAAO,wCACxD,wCAA4C,OAAO,0CACnD,uCAA2C,OAAO,mCAClD,sCAA0C,OAAO,4CACjD,+CAAmD,OAAO,MALnE;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,2CAAT;;EACA,KAAK,MAAM,0BAA0B,MAAM,4BAClC,mDAAuD,OAAO,wCAC9D,8CAAkD,OAAO,0CACzD,6CAAiD,OAAO,mCACxD,4CAAgD,OAAO,4CACvD,qDAAyD,OAAO,MALzE;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,gDAAT;;EACA,KAAK,MAAM,+BAA+B,MAAM,iCACvC,wDAA4D,OAAO,wCACnE,mDAAuD,OAAO,0CAC9D,kDAAsD,OAAO,mCAC7D,iDAAqD,OAAO,4CAC5D,0DAA8D,OAAO,MAL9E;;;AAOF;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;EACA,SAAS,0CAAT;;EACA,KAAK,MAAM,wBAAwB,MAAM,2BAChC,kDAAsD,OAAO,wCAC7D,6CAAiD,OAAO,0CACxD,4CAAgD,OAAO,mCACvD,2CAA+C,OAAO,4CACtD,oDAAwD,OAAO,MALxE;;;;;;;;;AC7GF;EACE,uBAAA;EACA,0BAAA;EACA,8BAAA;;AAOF;EACE,SAAA;;AAaF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,cAAA;;AAQF;AACA;AACA;AACA;EACE,qBAAA;EACA,wBAAA;;AAQF,KAAK,IAAI;EACP,aAAA;EACA,SAAA;;AAQF;AACA;EACE,aAAA;;AAUF;EACE,6BAAA;;AAQF,CAAC;AACD,CAAC;EACC,UAAA;;AAUF,IAAI;EACF,yBAAA;;AAOF;AACA;EACE,iBAAA;;AAOF;EACE,kBAAA;;AAQF;EACE,cAAA;EACA,gBAAA;;AAOF;EACE,gBAAA;EACA,WAAA;;AAOF;EACE,cAAA;;AAOF;AACA;EACE,cAAA;EACA,cAAA;EACA,kBAAA;EACA,wBAAA;;AAGF;EACE,WAAA;;AAGF;EACE,eAAA;;AAUF;EACE,SAAA;;AAOF,GAAG,IAAI;EACL,gBAAA;;AAUF;EACE,gBAAA;;AAOF;EACE,uBAAA;EACA,SAAA;;AAOF;EACE,cAAA;;AAOF;AACA;AACA;AACA;EACE,iCAAA;EACA,cAAA;;AAkBF;AACA;AACA;AACA;AACA;EACE,cAAA;EACA,aAAA;EACA,SAAA;;AAOF;EACE,iBAAA;;AAUF;AACA;EACE,oBAAA;;AAWF;AACA,IAAK,MAAK;AACV,KAAK;AACL,KAAK;EACH,0BAAA;EACA,eAAA;;AAOF,MAAM;AACN,IAAK,MAAK;EACR,eAAA;;AAOF,MAAM;AACN,KAAK;EACH,SAAA;EACA,UAAA;;AAQF;EACE,mBAAA;;AAWF,KAAK;AACL,KAAK;EACH,sBAAA;EACA,UAAA;;AASF,KAAK,eAAe;AACpB,KAAK,eAAe;EAClB,YAAA;;AAQF,KAAK;EACH,6BAAA;EACA,uBAAA;;AASF,KAAK,eAAe;AACpB,KAAK,eAAe;EAClB,wBAAA;;AAOF;EACE,yBAAA;EACA,aAAA;EACA,8BAAA;;AAQF;EACE,SAAA;EACA,UAAA;;AAOF;EACE,cAAA;;AAQF;EACE,iBAAA;;AAUF;EACE,yBAAA;EACA,iBAAA;;AAGF;AACA;EACE,UAAA;;;AC/ZF;EACI;EACA,CAAC;EACD,CAAC;IACG,kCAAA;IACA,sBAAA;IACA,2BAAA;IACA,4BAAA;;EAGJ;EACA,CAAC;IACG,0BAAA;;EAGJ,CAAC,MAAM;IACH,SAAS,KAAK,WAAW,GAAzB;;EAGJ,IAAI,OAAO;IACP,SAAS,KAAK,YAAY,GAA1B;;EAKJ,CAAC,WAAW;EACZ,CAAC,qBAAqB;IAClB,SAAS,EAAT;;EAGJ;EACA;IACI,sBAAA;IACA,wBAAA;;EAGJ;IACI,2BAAA;;EAGJ;EACA;IACI,wBAAA;;EAGJ;IACI,0BAAA;;EAGJ;EACA;EACA;IACI,UAAA;IACA,SAAA;;EAGJ;EACA;IACI,uBAAA;;EAMJ;IACI,aAAA;;EAEJ,IAEI;EADJ,OAAQ,OACJ;IACI,iCAAA;;EAGR;IACI,sBAAA;;EAGJ;IACI,oCAAA;;EADJ,MAGI;EAHJ,MAII;IACI,iCAAA;;EAGR,eACI;EADJ,eAEI;IACI,iCAAA;;;ACrFZ;EACE,aAAa,sBAAb;EACA,SAAS,4CAAT;EACA,SAAS,oDAAiD,OAAO,0BACxD,+CAA4C,OAAO,cACnD,8CAA2C,OAAO,aAClD,6CAA0C,OAAO,iBACjD,yEAA8D,OAAO,MAJ9E;;AAQF;EACE,kBAAA;EACA,QAAA;EACA,qBAAA;EACA,aAAa,sBAAb;EACA,kBAAA;EACA,mBAAA;EACA,cAAA;EACA,mCAAA;EACA,kCAAA;;AAIkC,mBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AAEX,eAAC;AAAD,cAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,aAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,aAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,yBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,2BAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,0BAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,6BAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,0BAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,2BAAC;EAAU,SAAS,OAAT;;AACX,+BAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,6BAAC;EAAU,SAAS,OAAT;;AACX,iCAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,yBAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,yBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,yBAAC;EAAU,SAAS,OAAT;;AACX,aAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AASX,gBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,iBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,eAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,mBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,2BAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,0BAAC;EAAU,SAAS,OAAT;;AACX,yBAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,cAAC;EAAU,SAAS,OAAT;;AACX,gBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,0BAAC;EAAU,SAAS,OAAT;;AACX,2BAAC;EAAU,SAAS,OAAT;;AACX,8BAAC;EAAU,SAAS,OAAT;;AACX,kCAAC;EAAU,SAAS,OAAT;;AACX,4BAAC;EAAU,SAAS,OAAT;;AACX,gCAAC;EAAU,SAAS,OAAT;;AACX,6BAAC;EAAU,SAAS,OAAT;;AACX,yBAAC;EAAU,SAAS,OAAT;;AACX,wBAAC;EAAU,SAAS,OAAT;;AACX,0BAAC;EAAU,SAAS,OAAT;;AACX,uBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;AACX,sBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,qBAAC;EAAU,SAAS,OAAT;;AACX,oBAAC;EAAU,SAAS,OAAT;;AACX,kBAAC;EAAU,SAAS,OAAT;;ACtS/C;ECgEE,8BAAA;EACG,2BAAA;EACK,sBAAA;;AD/DV,CAAC;AACD,CAAC;EC4DC,8BAAA;EACG,2BAAA;EACK,sBAAA;;ADvDV;EACE,eAAA;EACA,6CAAA;;AAGF;EACE,aEsakE,yCFtalE;EACA,eAAA;EACA,uBAAA;EACA,cAAA;EACA,sBAAA;;AAIF;AACA;AACA;AACA;EACE,oBAAA;EACA,kBAAA;EACA,oBAAA;;AAMF;EACE,cAAA;EACA,qBAAA;;AAEA,CAAC;AACD,CAAC;EACC,cAAA;EACA,0BAAA;;AAGF,CAAC;EGnDD,0CAAA;EACA,oBAAA;;AH6DF;EACE,SAAA;;AAMF;EACE,sBAAA;;AAIF;AI1EA,UAUE;AAVF,UAWE,EAAE;ACPJ,eAKE,QAME;AAXJ,eAKE,QAOE,IAAI;ECbN,cAAA;EACA,eAAA;EACA,YAAA;;AN0EF;EACE,kBAAA;;AAMF;EACE,YAAA;EACA,uBAAA;EACA,sBAAA;EACA,sBAAA;EACA,kBAAA;EC6FA,wCAAA;EACK,mCAAA;EACG,gCAAA;EKvLR,qBAAA;EACA,eAAA;EACA,YAAA;;AN8FF;EACE,kBAAA;;AAMF;EACE,gBAAA;EACA,mBAAA;EACA,SAAA;EACA,6BAAA;;AAQF;EACE,kBAAA;EACA,UAAA;EACA,WAAA;EACA,YAAA;EACA,UAAA;EACA,gBAAA;EACA,MAAM,gBAAN;EACA,SAAA;;AAQA,kBAAC;AACD,kBAAC;EACC,gBAAA;EACA,WAAA;EACA,YAAA;EACA,SAAA;EACA,iBAAA;EACA,UAAA;;AAWJ;EACE,eAAA;;AOvJF;AAAI;AAAI;AAAI;AAAI;AAAI;AACpB;AAAK;AAAK;AAAK;AAAK;AAAK;EACvB,oBAAA;EACA,gBAAA;EACA,gBAAA;EACA,cAAA;;AALF,EAOE;AAPE,EAOF;AAPM,EAON;AAPU,EAOV;AAPc,EAOd;AAPkB,EAOlB;AANF,GAME;AANG,GAMH;AANQ,GAMR;AANa,GAMb;AANkB,GAMlB;AANuB,GAMvB;AAPF,EAQE;AARE,EAQF;AARM,EAQN;AARU,EAQV;AARc,EAQd;AARkB,EAQlB;AAPF,GAOE;AAPG,GAOH;AAPQ,GAOR;AAPa,GAOb;AAPkB,GAOlB;AAPuB,GAOvB;EACE,mBAAA;EACA,cAAA;EACA,cAAA;;AAIJ;AAAI;AACJ;AAAI;AACJ;AAAI;EACF,gBAAA;EACA,mBAAA;;AAJF,EAME;AANE,GAMF;AALF,EAKE;AALE,GAKF;AAJF,EAIE;AAJE,GAIF;AANF,EAOE;AAPE,GAOF;AANF,EAME;AANE,GAMF;AALF,EAKE;AALE,GAKF;EACE,cAAA;;AAGJ;AAAI;AACJ;AAAI;AACJ;AAAI;EACF,gBAAA;EACA,mBAAA;;AAJF,EAME;AANE,GAMF;AALF,EAKE;AALE,GAKF;AAJF,EAIE;AAJE,GAIF;AANF,EAOE;AAPE,GAOF;AANF,EAME;AANE,GAMF;AALF,EAKE;AALE,GAKF;EACE,cAAA;;AAIJ;AAAI;EAAM,eAAA;;AACV;AAAI;EAAM,eAAA;;AACV;AAAI;EAAM,eAAA;;AACV;AAAI;EAAM,eAAA;;AACV;AAAI;EAAM,eAAA;;AACV;AAAI;EAAM,eAAA;;AAMV;EACE,gBAAA;;AAGF;EACE,mBAAA;EACA,eAAA;EACA,gBAAA;EACA,gBAAA;;AAEA,QAAmC;EA2OrC;IA1OI,eAAA;;;AASJ;AACA;EACE,cAAA;;AAGF;AACA;EACE,yBAAA;EACA,aAAA;;AAIF;EAAuB,gBAAA;;AACvB;EAAuB,iBAAA;;AACvB;EAAuB,kBAAA;;AACvB;EAAuB,mBAAA;;AACvB;EAAuB,mBAAA;;AAGvB;EAAuB,yBAAA;;AACvB;EAAuB,yBAAA;;AACvB;EAAuB,0BAAA;;AAGvB;EACE,cAAA;;AAEF;ECrGE,cAAA;;AACA,CAAC,aAAC;AACF,CAAC,aAAC;EACA,cAAA;;ADqGJ;ECxGE,cAAA;;AACA,CAAC,aAAC;AACF,CAAC,aAAC;EACA,cAAA;;ADwGJ;EC3GE,cAAA;;AACA,CAAC,UAAC;AACF,CAAC,UAAC;EACA,cAAA;;AD2GJ;EC9GE,cAAA;;AACA,CAAC,aAAC;AACF,CAAC,aAAC;EACA,cAAA;;AD8GJ;ECjHE,cAAA;;AACA,CAAC,YAAC;AACF,CAAC,YAAC;EACA,cAAA;;ADqHJ;EAGE,WAAA;EE3HA,yBAAA;;AACA,CAAC,WAAC;AACF,CAAC,WAAC;EACA,yBAAA;;AF2HJ;EE9HE,yBAAA;;AACA,CAAC,WAAC;AACF,CAAC,WAAC;EACA,yBAAA;;AF8HJ;EEjIE,yBAAA;;AACA,CAAC,QAAC;AACF,CAAC,QAAC;EACA,yBAAA;;AFiIJ;EEpIE,yBAAA;;AACA,CAAC,WAAC;AACF,CAAC,WAAC;EACA,yBAAA;;AFoIJ;EEvIE,yBAAA;;AACA,CAAC,UAAC;AACF,CAAC,UAAC;EACA,yBAAA;;AF4IJ;EACE,mBAAA;EACA,mBAAA;EACA,gCAAA;;AAQF;AACA;EACE,aAAA;EACA,mBAAA;;AAHF,EAIE;AAHF,EAGE;AAJF,EAKE;AAJF,EAIE;EACE,gBAAA;;AAOJ;EACE,eAAA;EACA,gBAAA;;AAIF;EALE,eAAA;EACA,gBAAA;EAMA,iBAAA;;AAFF,YAIE;EACE,qBAAA;EACA,iBAAA;EACA,kBAAA;;AAKJ;EACE,aAAA;EACA,mBAAA;;AAEF;AACA;EACE,uBAAA;;AAEF;EACE,iBAAA;;AAEF;EACE,cAAA;;AAaA,QAA8C;EAyFhD,cAxFI;IACE,WAAA;IACA,YAAA;IACA,WAAA;IACA,iBAAA;IGtNJ,gBAAA;IACA,uBAAA;IACA,mBAAA;;EHwSF,cAjFI;IACE,kBAAA;;;AAUN,IAAI;AAEJ,IAAI;EACF,YAAA;EACA,iCAAA;;AAEF;EACE,cAAA;EA9IqB,yBAAA;;AAmJvB;EACE,kBAAA;EACA,gBAAA;EACA,eAAA;EACA,8BAAA;;AAKE,UAHF,EAGG;AAAD,UAFF,GAEG;AAAD,UADF,GACG;EACC,gBAAA;;AAVN,UAgBE;AAhBF,UAiBE;AAjBF,UAkBE;EACE,cAAA;EACA,cAAA;EACA,uBAAA;EACA,cAAA;;AAEA,UARF,OAQG;AAAD,UAPF,MAOG;AAAD,UANF,OAMG;EACC,SAAS,aAAT;;AAQN;AACA,UAAU;EACR,mBAAA;EACA,eAAA;EACA,+BAAA;EACA,cAAA;EACA,iBAAA;;AAME,mBAHF,OAGG;AAAD,UAXM,WAQR,OAGG;AAAD,mBAFF,MAEG;AAAD,UAXM,WASR,MAEG;AAAD,mBADF,OACG;AAAD,UAXM,WAUR,OACG;EAAU,SAAS,EAAT;;AACX,mBAJF,OAIG;AAAD,UAZM,WAQR,OAIG;AAAD,mBAHF,MAGG;AAAD,UAZM,WASR,MAGG;AAAD,mBAFF,OAEG;AAAD,UAZM,WAUR,OAEG;EACC,SAAS,aAAT;;AAMN;EACE,mBAAA;EACA,kBAAA;EACA,uBAAA;;AItSF;AACA;AACA;AACA;EACE,+CAAA;;AAIF;EACE,gBAAA;EACA,cAAA;EACA,cAAA;EACA,yBAAA;EACA,kBAAA;;AAIF;EACE,gBAAA;EACA,cAAA;EACA,WAAA;EACA,sBAAA;EACA,kBAAA;EACA,8CAAA;;AANF,GAQE;EACE,UAAA;EACA,eAAA;EACA,iBAAA;EACA,gBAAA;;AAKJ;EACE,cAAA;EACA,cAAA;EACA,gBAAA;EACA,eAAA;EACA,uBAAA;EACA,qBAAA;EACA,qBAAA;EACA,cAAA;EACA,yBAAA;EACA,sBAAA;EACA,kBAAA;;AAXF,GAcE;EACE,UAAA;EACA,kBAAA;EACA,cAAA;EACA,qBAAA;EACA,6BAAA;EACA,gBAAA;;AAKJ;EACE,iBAAA;EACA,kBAAA;;AC1DF;ECHE,kBAAA;EACA,iBAAA;EACA,kBAAA;EACA,mBAAA;;ADGA,QAAmC;EAwErC;IAvEI,YAAA;;;AAEF,QAAmC;EAqErC;IApEI,YAAA;;;AAEF,QAAmC;EAkErC;IAjEI,aAAA;;;AAUJ;ECvBE,kBAAA;EACA,iBAAA;EACA,kBAAA;EACA,mBAAA;;AD6BF;ECvBE,kBAAA;EACA,mBAAA;;ACAE;EACE,kBAAA;EAEA,eAAA;EAEA,kBAAA;EACA,mBAAA;;AAgBF;EACE,WAAA;;AAOJ,KAAK,EAAQ,CAAC;EACZ,WAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,UAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,UAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,UAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,mBAAA;;AADF,KAAK,EAAQ,CAAC;EACZ,kBAAA;;AAcF,KAAK,EAAQ,MAAM;EACjB,WAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,UAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,UAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,UAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,mBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AAIF,KAAK,EAAQ;EACX,WAAA;;AAhBF,KAAK,EAAQ,MAAM;EACjB,UAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,SAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,SAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,SAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,kBAAA;;AADF,KAAK,EAAQ,MAAM;EACjB,iBAAA;;AAIF,KAAK,EAAQ;EACX,UAAA;;AAcF,KAAK,EAAQ,QAAQ;EACnB,iBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,gBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,gBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,gBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,yBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,wBAAA;;AADF,KAAK,EAAQ,QAAQ;EACnB,eAAA;;AFTJ,QAAmC;EEzB/B;IACE,WAAA;;EAOJ,KAAK,EAAQ,CAAC;IACZ,WAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,kBAAA;;EAcF,KAAK,EAAQ,MAAM;IACjB,WAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EAIF,KAAK,EAAQ;IACX,WAAA;;EAhBF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,iBAAA;;EAIF,KAAK,EAAQ;IACX,UAAA;;EAcF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,wBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,eAAA;;;AFAJ,QAAmC;EElC/B;IACE,WAAA;;EAOJ,KAAK,EAAQ,CAAC;IACZ,WAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,kBAAA;;EAcF,KAAK,EAAQ,MAAM;IACjB,WAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EAIF,KAAK,EAAQ;IACX,WAAA;;EAhBF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,iBAAA;;EAIF,KAAK,EAAQ;IACX,UAAA;;EAcF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,wBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,eAAA;;;AFSJ,QAAmC;EE3C/B;IACE,WAAA;;EAOJ,KAAK,EAAQ,CAAC;IACZ,WAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,UAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,mBAAA;;EADF,KAAK,EAAQ,CAAC;IACZ,kBAAA;;EAcF,KAAK,EAAQ,MAAM;IACjB,WAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,mBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EAIF,KAAK,EAAQ;IACX,WAAA;;EAhBF,KAAK,EAAQ,MAAM;IACjB,UAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,SAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,kBAAA;;EADF,KAAK,EAAQ,MAAM;IACjB,iBAAA;;EAIF,KAAK,EAAQ;IACX,UAAA;;EAcF,KAAK,EAAQ,QAAQ;IACnB,iBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,gBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,yBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,wBAAA;;EADF,KAAK,EAAQ,QAAQ;IACnB,eAAA;;;ACnEJ;EACE,6BAAA;;AAEF;EACE,iBAAA;EACA,oBAAA;EACA,cAAA;EACA,gBAAA;;AAEF;EACE,gBAAA;;AAMF;EACE,WAAA;EACA,eAAA;EACA,mBAAA;;AAHF,MAKE,QAGE,KACE;AATN,MAME,QAEE,KACE;AATN,MAOE,QACE,KACE;AATN,MAKE,QAGE,KAEE;AAVN,MAME,QAEE,KAEE;AAVN,MAOE,QACE,KAEE;EACE,aAAA;EACA,uBAAA;EACA,mBAAA;EACA,6BAAA;;AAdR,MAmBE,QAAQ,KAAK;EACX,sBAAA;EACA,gCAAA;;AArBJ,MAwBE,UAAU,QAGR,KAAI,YACF;AA5BN,MAyBE,WAAW,QAET,KAAI,YACF;AA5BN,MA0BE,QAAO,YACL,KAAI,YACF;AA5BN,MAwBE,UAAU,QAGR,KAAI,YAEF;AA7BN,MAyBE,WAAW,QAET,KAAI,YAEF;AA7BN,MA0BE,QAAO,YACL,KAAI,YAEF;EACE,aAAA;;AA9BR,MAmCE,QAAQ;EACN,6BAAA;;AApCJ,MAwCE;EACE,sBAAA;;AAOJ,gBACE,QAGE,KACE;AALN,gBAEE,QAEE,KACE;AALN,gBAGE,QACE,KACE;AALN,gBACE,QAGE,KAEE;AANN,gBAEE,QAEE,KAEE;AANN,gBAGE,QACE,KAEE;EACE,YAAA;;AAWR;EACE,yBAAA;;AADF,eAEE,QAGE,KACE;AANN,eAGE,QAEE,KACE;AANN,eAIE,QACE,KACE;AANN,eAEE,QAGE,KAEE;AAPN,eAGE,QAEE,KAEE;AAPN,eAIE,QACE,KAEE;EACE,yBAAA;;AARR,eAYE,QAAQ,KACN;AAbJ,eAYE,QAAQ,KAEN;EACE,wBAAA;;AAUN,cACE,QAAQ,KAAI,YAAY;EACtB,yBAAA;;AASJ,YACE,QAAQ,KAAI;EACV,yBAAA;;AASJ,KAAM,IAAG;EACP,gBAAA;EACA,WAAA;EACA,qBAAA;;AAKE,KAFF,GAEG;AAAD,KADF,GACG;EACC,gBAAA;EACA,WAAA;EACA,mBAAA;;AC5IJ,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AADP,MAAO,QAAQ,KACb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAIb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AACL,MALK,QAAQ,KAKZ,CAAC,MAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,MAAS;AAAX,MAHK,QAAQ,KAGZ,CAAC,MAAS;AACX,MANK,QAAQ,KAMZ,CAAC,MAAS;AAAX,MALK,QAAQ,KAKZ,CAAC,MAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,MAAS;EACT,yBAAA;;AAMJ,YAAa,QAAQ,KACnB,KAAI,CAAC,MAAQ;AADf,YAAa,QAAQ,KAEnB,KAAI,CAAC,MAAQ;AACb,YAHW,QAAQ,KAGlB,CAAC,MAAQ,MAAO;AACjB,YAJW,QAAQ,KAIlB,MAAO,IAAG;AACX,YALW,QAAQ,KAKlB,CAAC,MAAQ,MAAO;EACf,yBAAA;;AAnBJ,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AADP,MAAO,QAAQ,KACb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAIb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AACL,MALK,QAAQ,KAKZ,CAAC,OAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,OAAS;AAAX,MAHK,QAAQ,KAGZ,CAAC,OAAS;AACX,MANK,QAAQ,KAMZ,CAAC,OAAS;AAAX,MALK,QAAQ,KAKZ,CAAC,OAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,OAAS;EACT,yBAAA;;AAMJ,YAAa,QAAQ,KACnB,KAAI,CAAC,OAAQ;AADf,YAAa,QAAQ,KAEnB,KAAI,CAAC,OAAQ;AACb,YAHW,QAAQ,KAGlB,CAAC,OAAQ,MAAO;AACjB,YAJW,QAAQ,KAIlB,MAAO,IAAG;AACX,YALW,QAAQ,KAKlB,CAAC,OAAQ,MAAO;EACf,yBAAA;;AAnBJ,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AADP,MAAO,QAAQ,KACb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAIb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AACL,MALK,QAAQ,KAKZ,CAAC,IAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,IAAS;AAAX,MAHK,QAAQ,KAGZ,CAAC,IAAS;AACX,MANK,QAAQ,KAMZ,CAAC,IAAS;AAAX,MALK,QAAQ,KAKZ,CAAC,IAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,IAAS;EACT,yBAAA;;AAMJ,YAAa,QAAQ,KACnB,KAAI,CAAC,IAAQ;AADf,YAAa,QAAQ,KAEnB,KAAI,CAAC,IAAQ;AACb,YAHW,QAAQ,KAGlB,CAAC,IAAQ,MAAO;AACjB,YAJW,QAAQ,KAIlB,MAAO,IAAG;AACX,YALW,QAAQ,KAKlB,CAAC,IAAQ,MAAO;EACf,yBAAA;;AAnBJ,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AADP,MAAO,QAAQ,KACb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAIb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AACL,MALK,QAAQ,KAKZ,CAAC,OAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,OAAS;AAAX,MAHK,QAAQ,KAGZ,CAAC,OAAS;AACX,MANK,QAAQ,KAMZ,CAAC,OAAS;AAAX,MALK,QAAQ,KAKZ,CAAC,OAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,OAAS;EACT,yBAAA;;AAMJ,YAAa,QAAQ,KACnB,KAAI,CAAC,OAAQ;AADf,YAAa,QAAQ,KAEnB,KAAI,CAAC,OAAQ;AACb,YAHW,QAAQ,KAGlB,CAAC,OAAQ,MAAO;AACjB,YAJW,QAAQ,KAIlB,MAAO,IAAG;AACX,YALW,QAAQ,KAKlB,CAAC,OAAQ,MAAO;EACf,yBAAA;;AAnBJ,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AADP,MAAO,QAAQ,KACb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAIb,KAAI,CAAC;AAHP,MAAO,QAAQ,KAGb,KAAI,CAAC;AAFP,MAAO,QAAQ,KAEb,KAAI,CAAC;AACL,MALK,QAAQ,KAKZ,CAAC,MAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,MAAS;AAAX,MAHK,QAAQ,KAGZ,CAAC,MAAS;AACX,MANK,QAAQ,KAMZ,CAAC,MAAS;AAAX,MALK,QAAQ,KAKZ,CAAC,MAAS;AAAX,MAJK,QAAQ,KAIZ,CAAC,MAAS;EACT,yBAAA;;AAMJ,YAAa,QAAQ,KACnB,KAAI,CAAC,MAAQ;AADf,YAAa,QAAQ,KAEnB,KAAI,CAAC,MAAQ;AACb,YAHW,QAAQ,KAGlB,CAAC,MAAQ,MAAO;AACjB,YAJW,QAAQ,KAIlB,MAAO,IAAG;AACX,YALW,QAAQ,KAKlB,CAAC,MAAQ,MAAO;EACf,yBAAA;;ADkJN;EACE,gBAAA;EACA,iBAAA;;AAEA,mBAA8C;EA4DhD;IA3DI,WAAA;IACA,mBAAA;IACA,kBAAA;IACA,4CAAA;IACA,yBAAA;;EAuDJ,iBApDI;IACE,gBAAA;;EAmDN,iBApDI,SAIE,QAGE,KACE;EA4CV,iBApDI,SAKE,QAEE,KACE;EA4CV,iBApDI,SAME,QACE,KACE;EA4CV,iBApDI,SAIE,QAGE,KAEE;EA2CV,iBApDI,SAKE,QAEE,KAEE;EA2CV,iBApDI,SAME,QACE,KAEE;IACE,mBAAA;;EA0CZ,iBAnCI;IACE,SAAA;;EAkCN,iBAnCI,kBAIE,QAGE,KACE,KAAI;EA2Bd,iBAnCI,kBAKE,QAEE,KACE,KAAI;EA2Bd,iBAnCI,kBAME,QACE,KACE,KAAI;EA2Bd,iBAnCI,kBAIE,QAGE,KAEE,KAAI;EA0Bd,iBAnCI,kBAKE,QAEE,KAEE,KAAI;EA0Bd,iBAnCI,kBAME,QACE,KAEE,KAAI;IACF,cAAA;;EAyBZ,iBAnCI,kBAIE,QAGE,KAKE,KAAI;EAuBd,iBAnCI,kBAKE,QAEE,KAKE,KAAI;EAuBd,iBAnCI,kBAME,QACE,KAKE,KAAI;EAuBd,iBAnCI,kBAIE,QAGE,KAME,KAAI;EAsBd,iBAnCI,kBAKE,QAEE,KAME,KAAI;EAsBd,iBAnCI,kBAME,QACE,KAME,KAAI;IACF,eAAA;;EAqBZ,iBAnCI,kBAsBE,QAEE,KAAI,WACF;EAUV,iBAnCI,kBAuBE,QACE,KAAI,WACF;EAUV,iBAnCI,kBAsBE,QAEE,KAAI,WAEF;EASV,iBAnCI,kBAuBE,QACE,KAAI,WAEF;IACE,gBAAA;;;AEzNZ;EACE,UAAA;EACA,SAAA;EACA,SAAA;EAIA,YAAA;;AAGF;EACE,cAAA;EACA,WAAA;EACA,UAAA;EACA,mBAAA;EACA,eAAA;EACA,oBAAA;EACA,cAAA;EACA,SAAA;EACA,gCAAA;;AAGF;EACE,qBAAA;EACA,eAAA;EACA,kBAAA;EACA,iBAAA;;AAWF,KAAK;EhB4BH,8BAAA;EACG,2BAAA;EACK,sBAAA;;AgBzBV,KAAK;AACL,KAAK;EACH,eAAA;EACA,kBAAA;EACA,mBAAA;;AAGF,KAAK;EACH,cAAA;;AAIF,KAAK;EACH,cAAA;EACA,WAAA;;AAIF,MAAM;AACN,MAAM;EACJ,YAAA;;AAIF,KAAK,aAAa;AAClB,KAAK,cAAc;AACnB,KAAK,iBAAiB;EdvEpB,0CAAA;EACA,oBAAA;;Ac2EF;EACE,cAAA;EACA,gBAAA;EACA,eAAA;EACA,uBAAA;EACA,cAAA;;AA0BF;EACE,cAAA;EACA,WAAA;EACA,YAAA;EACA,gBAAA;EACA,eAAA;EACA,uBAAA;EACA,cAAA;EACA,sBAAA;EACA,sBAAA;EACA,sBAAA;EACA,kBAAA;EhBxDA,wDAAA;EACQ,gDAAA;EAyHR,8EAAA;EACK,yEAAA;EACG,sEAAA;;AiBxIR,aAAC;EACC,qBAAA;EACA,UAAA;EjBUF,oFAAA;EACQ,4EAAA;;AAiCR,aAAC;EACC,WAAA;EACA,UAAA;;AAEF,aAAC;EAAyB,WAAA;;AAC1B,aAAC;EAA+B,WAAA;;AkB7EhC,aAAC;EAA+B,WAAA;EAAe,kBAAA;;AAC/C,aAAC;EAA+B,WAAA;EAAe,kBAAA;EAAoB,UAAA;;AACnE,aAAC;EAA+B,WAAA;EAAe,kBAAA;;AAC/C,aAAC;EAA+B,WAAA;EAAe,kBAAA;;AFsG/C,aAAC;EACC,SAAA;EACA,6BAAA;;AAQF,aAAC;AACD,aAAC;AACD,QAAQ,UAAW;EACjB,yBAAA;EACA,UAAA;;AAGF,aAAC;AACD,QAAQ,UAAW;EACjB,mBAAA;;AAIF,QAAQ;EACN,YAAA;;AAYJ,KAAK;EACH,wBAAA;;AAaF,mBAAsD;EAKlD,KAJG,aAIF;EAAD,KAHG,aAGF;EAAD,KAFG,uBAEF;EAAD,KADG,cACF;IACC,iBAAA;;EAGF,KARG,aAQF;EAAD,KAPG,aAOF;EAAD,KANG,uBAMF;EAAD,KALG,cAKF;EACD,eAAgB,MATb;EASH,eAAgB,MARb;EAQH,eAAgB,MAPb;EAOH,eAAgB,MANb;IAOD,iBAAA;;EAGF,KAbG,aAaF;EAAD,KAZG,aAYF;EAAD,KAXG,uBAWF;EAAD,KAVG,cAUF;EACD,eAAgB,MAdb;EAcH,eAAgB,MAbb;EAaH,eAAgB,MAZb;EAYH,eAAgB,MAXb;IAYD,iBAAA;;;AAWN;EACE,mBAAA;;AAQF;AACA;EACE,kBAAA;EACA,cAAA;EACA,gBAAA;EACA,mBAAA;;AALF,MAOE;AANF,SAME;EACE,gBAAA;EACA,kBAAA;EACA,gBAAA;EACA,mBAAA;EACA,eAAA;;AAGJ,MAAO,MAAK;AACZ,aAAc,MAAK;AACnB,SAAU,MAAK;AACf,gBAAiB,MAAK;EACpB,kBAAA;EACA,kBAAA;EACA,kBAAA;;AAGF,MAAO;AACP,SAAU;EACR,gBAAA;;AAIF;AACA;EACE,kBAAA;EACA,qBAAA;EACA,kBAAA;EACA,gBAAA;EACA,sBAAA;EACA,mBAAA;EACA,eAAA;;AAEF,aAAc;AACd,gBAAiB;EACf,aAAA;EACA,iBAAA;;AASA,KAFG,cAEF;AAAD,KADG,iBACF;AACD,KAHG,cAGF;AAAD,KAFG,iBAEF;AACD,QAAQ,UAAW,MAJhB;AAIH,QAAQ,UAAW,MAHhB;EAID,mBAAA;;AAMF,aAAC;AAAD,gBAAC;AACD,QAAQ,UAAW;AAAnB,QAAQ,UAAW;EACjB,mBAAA;;AAMF,MAAC,SAEC;AAFF,SAAC,SAEC;AADF,QAAQ,UAAW,OACjB;AADF,QAAQ,UAAW,UACjB;EACE,mBAAA;;AAWN;EAEE,gBAAA;EACA,mBAAA;EAEA,gBAAA;EACA,gBAAA;;AAEA,oBAAC;AACD,oBAAC;EACC,eAAA;EACA,gBAAA;;AAaJ;ECnQE,YAAA;EACA,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AAEA,MAAM;EACJ,YAAA;EACA,iBAAA;;AAGF,QAAQ;AACR,MAAM,UAAU;EACd,YAAA;;ADyPJ,cACE;EACE,YAAA;EACA,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AANJ,cAQE,OAAM;EACJ,YAAA;EACA,iBAAA;;AAVJ,cAYE,SAAQ;AAZV,cAaE,OAAM,UAAU;EACd,YAAA;;AAdJ,cAgBE;EACE,YAAA;EACA,gBAAA;EACA,gBAAA;EACA,eAAA;EACA,gBAAA;;AAIJ;EC/RE,YAAA;EACA,iBAAA;EACA,eAAA;EACA,sBAAA;EACA,kBAAA;;AAEA,MAAM;EACJ,YAAA;EACA,iBAAA;;AAGF,QAAQ;AACR,MAAM,UAAU;EACd,YAAA;;ADqRJ,cACE;EACE,YAAA;EACA,iBAAA;EACA,eAAA;EACA,sBAAA;EACA,kBAAA;;AANJ,cAQE,OAAM;EACJ,YAAA;EACA,iBAAA;;AAVJ,cAYE,SAAQ;AAZV,cAaE,OAAM,UAAU;EACd,YAAA;;AAdJ,cAgBE;EACE,YAAA;EACA,gBAAA;EACA,iBAAA;EACA,eAAA;EACA,sBAAA;;AASJ;EAEE,kBAAA;;AAFF,aAKE;EACE,qBAAA;;AAIJ;EACE,kBAAA;EACA,MAAA;EACA,QAAA;EACA,UAAA;EACA,cAAA;EACA,WAAA;EACA,YAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;;AAEF,SAAU;AACV,eAAgB;AAChB,cAAe,cAAc;EAC3B,WAAA;EACA,YAAA;EACA,iBAAA;;AAEF,SAAU;AACV,eAAgB;AAChB,cAAe,cAAc;EAC3B,WAAA;EACA,YAAA;EACA,iBAAA;;AAIF,YCpaE;ADoaF,YCnaE;ADmaF,YClaE;ADkaF,YCjaE;ADiaF,YChaE;ADgaF,YC/ZE;AACA,YAAC,MAAO;AACR,YAAC,SAAU;AACX,YAAC,aAAc;AACf,YAAC,gBAAiB;EAChB,cAAA;;AD0ZJ,YCvZE;EACE,qBAAA;EjB+CF,wDAAA;EACQ,gDAAA;;AiB9CN,YAHF,cAGG;EACC,qBAAA;EjB4CJ,yEAAA;EACQ,iEAAA;;AgBsWV,YC7YE;EACE,cAAA;EACA,qBAAA;EACA,yBAAA;;AD0YJ,YCvYE;EACE,cAAA;;ADyYJ,YCvaE;ADuaF,YCtaE;ADsaF,YCraE;ADqaF,YCpaE;ADoaF,YCnaE;ADmaF,YClaE;AACA,YAAC,MAAO;AACR,YAAC,SAAU;AACX,YAAC,aAAc;AACf,YAAC,gBAAiB;EAChB,cAAA;;AD6ZJ,YC1ZE;EACE,qBAAA;EjB+CF,wDAAA;EACQ,gDAAA;;AiB9CN,YAHF,cAGG;EACC,qBAAA;EjB4CJ,yEAAA;EACQ,iEAAA;;AgByWV,YChZE;EACE,cAAA;EACA,qBAAA;EACA,yBAAA;;AD6YJ,YC1YE;EACE,cAAA;;AD4YJ,UC1aE;AD0aF,UCzaE;ADyaF,UCxaE;ADwaF,UCvaE;ADuaF,UCtaE;ADsaF,UCraE;AACA,UAAC,MAAO;AACR,UAAC,SAAU;AACX,UAAC,aAAc;AACf,UAAC,gBAAiB;EAChB,cAAA;;ADgaJ,UC7ZE;EACE,qBAAA;EjB+CF,wDAAA;EACQ,gDAAA;;AiB9CN,UAHF,cAGG;EACC,qBAAA;EjB4CJ,yEAAA;EACQ,iEAAA;;AgB4WV,UCnZE;EACE,cAAA;EACA,qBAAA;EACA,yBAAA;;ADgZJ,UC7YE;EACE,cAAA;;ADmZF,aAFY,MAEV;EACA,SAAA;;AAEF,aALY,MAKX,QAAS;EACR,MAAA;;AAUJ;EACE,cAAA;EACA,eAAA;EACA,mBAAA;EACA,cAAA;;AAkBA,QAAmC;EAyIrC,YAvII;IACE,qBAAA;IACA,gBAAA;IACA,sBAAA;;EAoIN,YAhII;IACE,qBAAA;IACA,WAAA;IACA,sBAAA;;EA6HN,YAzHI;IACE,qBAAA;;EAwHN,YArHI;IACE,qBAAA;IACA,sBAAA;;EAmHN,YArHI,aAIE;EAiHN,YArHI,aAKE;EAgHN,YArHI,aAME;IACE,WAAA;;EA8GR,YAzGI,aAAa;IACX,WAAA;;EAwGN,YArGI;IACE,gBAAA;IACA,sBAAA;;EAmGN,YA9FI;EA8FJ,YA7FI;IACE,qBAAA;IACA,aAAA;IACA,gBAAA;IACA,sBAAA;;EAyFN,YA9FI,OAOE;EAuFN,YA7FI,UAME;IACE,eAAA;;EAsFR,YAnFI,OAAO,MAAK;EAmFhB,YAlFI,UAAU,MAAK;IACb,kBAAA;IACA,cAAA;;EAgFN,YA5EI,cAAc;IACZ,MAAA;;;AAWN,gBAKE;AALF,gBAME;AANF,gBAOE;AAPF,gBAQE;EACE,aAAA;EACA,gBAAA;EACA,gBAAA;;AAXJ,gBAeE;AAfF,gBAgBE;EACE,gBAAA;;AAjBJ,gBAqBE;EJ3iBA,kBAAA;EACA,mBAAA;;AIgjBA,QAAmC;EAqCrC,gBApCI;IACE,iBAAA;IACA,gBAAA;IACA,gBAAA;;;AA/BN,gBAuCE,cAAc;EACZ,WAAA;;AAQA,QAAmC;EAgBvC,gBAjBE,eAEI;IACE,gBAAA;IACA,eAAA;;;AAKJ,QAAmC;EAQvC,gBATE,eAEI;IACE,gBAAA;IACA,eAAA;;;AGxlBR;EACE,qBAAA;EACA,gBAAA;EACA,gBAAA;EACA,kBAAA;EACA,sBAAA;EACA,0BAAA;EACA,eAAA;EACA,sBAAA;EACA,6BAAA;EACA,mBAAA;EC0CA,gBAAA;EACA,eAAA;EACA,uBAAA;EACA,kBAAA;EpB+JA,yBAAA;EACG,sBAAA;EACC,qBAAA;EACI,iBAAA;;AmBxMN,IAAC;AAAD,IAFD,OAEE;AAAD,IADD,OACE;AACD,IAAC;AAAD,IAHD,OAGE;AAAD,IAFD,OAEE;EjBpBH,0CAAA;EACA,oBAAA;;AiBwBA,IAAC;AACD,IAAC;AACD,IAAC;EACC,cAAA;EACA,qBAAA;;AAGF,IAAC;AACD,IAAC;EACC,UAAA;EACA,sBAAA;EnB2BF,wDAAA;EACQ,gDAAA;;AmBxBR,IAAC;AACD,IAAC;AACD,QAAQ,UAAW;EACjB,mBAAA;EE7CF,aAAA;EAGA,yBAAA;ErB8DA,wBAAA;EACQ,gBAAA;;AmBfN,CADD,IACE;AACD,QAAQ,UAAW,EAFpB;EAGG,oBAAA;;AASN;EC3DE,cAAA;EACA,yBAAA;EACA,kBAAA;;AAEA,YAAC;AACD,YAAC;EACC,cAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;EACC,cAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;AACD,YAAC;AACD,KAAM,mBAAkB;EACtB,cAAA;EACA,yBAAA;EACI,qBAAA;;AAEJ,YAPD,OAOE;AAAD,YAND,OAME;AAAD,KALI,mBAAkB,YAKrB;AACD,YARD,OAQE;AAAD,YAPD,OAOE;AAAD,KANI,mBAAkB,YAMrB;AACD,YATD,OASE;AAAD,YARD,OAQE;AAAD,KAPI,mBAAkB,YAOrB;EACC,cAAA;EACA,yBAAA;EACI,qBAAA;;AAGR,YAAC;AACD,YAAC;AACD,KAAM,mBAAkB;EACtB,sBAAA;;AAKA,YAHD,SAGE;AAAD,YAFD,UAEE;AAAD,QADM,UAAW,aAChB;AACD,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;EACC,yBAAA;EACI,kBAAA;;ADiBV,YCbE;EACE,cAAA;EACA,yBAAA;;ADcJ;EC9DE,WAAA;EACA,yBAAA;EACA,qBAAA;;AAEA,YAAC;AACD,YAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;AACD,YAAC;AACD,KAAM,mBAAkB;EACtB,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEJ,YAPD,OAOE;AAAD,YAND,OAME;AAAD,KALI,mBAAkB,YAKrB;AACD,YARD,OAQE;AAAD,YAPD,OAOE;AAAD,KANI,mBAAkB,YAMrB;AACD,YATD,OASE;AAAD,YARD,OAQE;AAAD,KAPI,mBAAkB,YAOrB;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAGR,YAAC;AACD,YAAC;AACD,KAAM,mBAAkB;EACtB,sBAAA;;AAKA,YAHD,SAGE;AAAD,YAFD,UAEE;AAAD,QADM,UAAW,aAChB;AACD,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;EACC,yBAAA;EACI,qBAAA;;ADoBV,YChBE;EACE,cAAA;EACA,sBAAA;;ADkBJ;EClEE,WAAA;EACA,yBAAA;EACA,qBAAA;;AAEA,YAAC;AACD,YAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;AACD,YAAC;AACD,KAAM,mBAAkB;EACtB,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEJ,YAPD,OAOE;AAAD,YAND,OAME;AAAD,KALI,mBAAkB,YAKrB;AACD,YARD,OAQE;AAAD,YAPD,OAOE;AAAD,KANI,mBAAkB,YAMrB;AACD,YATD,OASE;AAAD,YARD,OAQE;AAAD,KAPI,mBAAkB,YAOrB;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAGR,YAAC;AACD,YAAC;AACD,KAAM,mBAAkB;EACtB,sBAAA;;AAKA,YAHD,SAGE;AAAD,YAFD,UAEE;AAAD,QADM,UAAW,aAChB;AACD,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;EACC,yBAAA;EACI,qBAAA;;ADwBV,YCpBE;EACE,cAAA;EACA,sBAAA;;ADsBJ;ECtEE,WAAA;EACA,yBAAA;EACA,qBAAA;;AAEA,SAAC;AACD,SAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,SAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,SAAC;AACD,SAAC;AACD,KAAM,mBAAkB;EACtB,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEJ,SAPD,OAOE;AAAD,SAND,OAME;AAAD,KALI,mBAAkB,SAKrB;AACD,SARD,OAQE;AAAD,SAPD,OAOE;AAAD,KANI,mBAAkB,SAMrB;AACD,SATD,OASE;AAAD,SARD,OAQE;AAAD,KAPI,mBAAkB,SAOrB;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAGR,SAAC;AACD,SAAC;AACD,KAAM,mBAAkB;EACtB,sBAAA;;AAKA,SAHD,SAGE;AAAD,SAFD,UAEE;AAAD,QADM,UAAW,UAChB;AACD,SAJD,SAIE;AAAD,SAHD,UAGE;AAAD,QAFM,UAAW,UAEhB;AACD,SALD,SAKE;AAAD,SAJD,UAIE;AAAD,QAHM,UAAW,UAGhB;EACC,yBAAA;EACI,qBAAA;;AD4BV,SCxBE;EACE,cAAA;EACA,sBAAA;;AD0BJ;EC1EE,WAAA;EACA,yBAAA;EACA,qBAAA;;AAEA,YAAC;AACD,YAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,YAAC;AACD,YAAC;AACD,KAAM,mBAAkB;EACtB,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEJ,YAPD,OAOE;AAAD,YAND,OAME;AAAD,KALI,mBAAkB,YAKrB;AACD,YARD,OAQE;AAAD,YAPD,OAOE;AAAD,KANI,mBAAkB,YAMrB;AACD,YATD,OASE;AAAD,YARD,OAQE;AAAD,KAPI,mBAAkB,YAOrB;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAGR,YAAC;AACD,YAAC;AACD,KAAM,mBAAkB;EACtB,sBAAA;;AAKA,YAHD,SAGE;AAAD,YAFD,UAEE;AAAD,QADM,UAAW,aAChB;AACD,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;EACC,yBAAA;EACI,qBAAA;;ADgCV,YC5BE;EACE,cAAA;EACA,sBAAA;;AD8BJ;EC9EE,WAAA;EACA,yBAAA;EACA,qBAAA;;AAEA,WAAC;AACD,WAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,WAAC;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEN,WAAC;AACD,WAAC;AACD,KAAM,mBAAkB;EACtB,WAAA;EACA,yBAAA;EACI,qBAAA;;AAEJ,WAPD,OAOE;AAAD,WAND,OAME;AAAD,KALI,mBAAkB,WAKrB;AACD,WARD,OAQE;AAAD,WAPD,OAOE;AAAD,KANI,mBAAkB,WAMrB;AACD,WATD,OASE;AAAD,WARD,OAQE;AAAD,KAPI,mBAAkB,WAOrB;EACC,WAAA;EACA,yBAAA;EACI,qBAAA;;AAGR,WAAC;AACD,WAAC;AACD,KAAM,mBAAkB;EACtB,sBAAA;;AAKA,WAHD,SAGE;AAAD,WAFD,UAEE;AAAD,QADM,UAAW,YAChB;AACD,WAJD,SAIE;AAAD,WAHD,UAGE;AAAD,QAFM,UAAW,YAEhB;AACD,WALD,SAKE;AAAD,WAJD,UAIE;AAAD,QAHM,UAAW,YAGhB;EACC,yBAAA;EACI,qBAAA;;ADoCV,WChCE;EACE,cAAA;EACA,sBAAA;;ADuCJ;EACE,cAAA;EACA,mBAAA;EACA,gBAAA;;AAEA;AACA,SAAC;AACD,SAAC;AACD,SAAC;AACD,QAAQ,UAAW;EACjB,6BAAA;EnBnCF,wBAAA;EACQ,gBAAA;;AmBqCR;AACA,SAAC;AACD,SAAC;AACD,SAAC;EACC,yBAAA;;AAEF,SAAC;AACD,SAAC;EACC,cAAA;EACA,0BAAA;EACA,6BAAA;;AAIA,SAFD,UAEE;AAAD,QADM,UAAW,UAChB;AACD,SAHD,UAGE;AAAD,QAFM,UAAW,UAEhB;EACC,cAAA;EACA,qBAAA;;AASN;AGnCA,aAAc;EFrCZ,iBAAA;EACA,eAAA;EACA,sBAAA;EACA,kBAAA;;ADyEF;AGxCA,aAAc;EFpCZ,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AD6EF;AG7CA,aAAc;EFnCZ,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;ADqFF;EACE,cAAA;EACA,WAAA;;AAIF,UAAW;EACT,eAAA;;AAOA,KAHG,eAGF;AAAD,KAFG,cAEF;AAAD,KADG,eACF;EACC,WAAA;;AI1JJ;EACE,UAAA;EvBoLA,wCAAA;EACK,mCAAA;EACG,gCAAA;;AuBpLR,KAAC;EACC,UAAA;;AAIJ;EACE,aAAA;;AAEA,SAAC;EAAW,cAAA;;AACZ,EAAE,SAAC;EAAS,kBAAA;;AACZ,KAAK,SAAC;EAAM,wBAAA;;AAGd;EACE,kBAAA;EACA,SAAA;EACA,gBAAA;EvBuKA,+CAAA;EACQ,uCAAA;EAOR,kCAAA;EACQ,0BAAA;EAGR,wCAAA;EACQ,gCAAA;;AwB1MV;EACE,qBAAA;EACA,QAAA;EACA,SAAA;EACA,gBAAA;EACA,sBAAA;EACA,oBAAA;EACA,sBAAA;EACA,iCAAA;EACA,gCAAA;;AAIF;AACA;EACE,kBAAA;;AAIF,gBAAgB;EACd,UAAA;;AAIF;EACE,kBAAA;EACA,SAAA;EACA,OAAA;EACA,aAAA;EACA,aAAA;EACA,WAAA;EACA,gBAAA;EACA,cAAA;EACA,eAAA;EACA,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,sBAAA;EAEA,sBAAA;EACA,kBAAA;ExBsBA,mDAAA;EACQ,2CAAA;EwBrBR,4BAAA;;AAKA,cAAC;EACC,QAAA;EACA,UAAA;;AAzBJ,cA6BE;ECrDA,aAAA;EPgBA,yBAAA;EACA,WAAA;EACA,eAAA;EACA,gBAAA;;AMKF,cAkCE,KAAK;EACH,cAAA;EACA,iBAAA;EACA,WAAA;EACA,mBAAA;EACA,uBAAA;EACA,cAAA;EACA,mBAAA;;AAMF,cADa,KAAK,IACjB;AACD,cAFa,KAAK,IAEjB;EACC,qBAAA;EACA,cAAA;EACA,yBAAA;;AAMF,cADa,UAAU;AAEvB,cAFa,UAAU,IAEtB;AACD,cAHa,UAAU,IAGtB;EACC,WAAA;EACA,qBAAA;EACA,UAAA;EACA,yBAAA;;AASF,cADa,YAAY;AAEzB,cAFa,YAAY,IAExB;AACD,cAHa,YAAY,IAGxB;EACC,cAAA;;AAIF,cARa,YAAY,IAQxB;AACD,cATa,YAAY,IASxB;EACC,qBAAA;EACA,6BAAA;EACA,sBAAA;EE3GF,QAAQ,2DAAR;EF6GE,mBAAA;;AAKJ,KAEE;EACE,cAAA;;AAHJ,KAOE;EACE,UAAA;;AAQJ;EACE,UAAA;EACA,QAAA;;AAQF;EACE,OAAA;EACA,WAAA;;AAIF;EACE,cAAA;EACA,iBAAA;EACA,eAAA;EACA,uBAAA;EACA,cAAA;EACA,mBAAA;;AAIF;EACE,eAAA;EACA,OAAA;EACA,QAAA;EACA,SAAA;EACA,MAAA;EACA,YAAA;;AAIF,WAAY;EACV,QAAA;EACA,UAAA;;AAQF,OAGE;AAFF,oBAAqB,UAEnB;EACE,aAAA;EACA,uBAAA;EACA,yBAAA;EACA,SAAS,EAAT;;AAPJ,OAUE;AATF,oBAAqB,UASnB;EACE,SAAA;EACA,YAAA;EACA,kBAAA;;AASJ,QAA2C;EACzC,aACE;IArEF,UAAA;IACA,QAAA;;EAmEA,aAME;IAhEF,OAAA;IACA,WAAA;;;AF/IF;AACA;EACE,kBAAA;EACA,qBAAA;EACA,sBAAA;;AAJF,UAKE;AAJF,mBAIE;EACE,kBAAA;EACA,WAAA;;AAEA,UAJF,OAIG;AAAD,mBAJF,OAIG;AACD,UALF,OAKG;AAAD,mBALF,OAKG;AACD,UANF,OAMG;AAAD,mBANF,OAMG;AACD,UAPF,OAOG;AAAD,mBAPF,OAOG;EACC,UAAA;;AAMN,UACE,KAAK;AADP,UAEE,KAAK;AAFP,UAGE,WAAW;AAHb,UAIE,WAAW;EACT,iBAAA;;AAKJ;EACE,iBAAA;;AADF,YAIE;AAJF,YAKE;AALF,YAME;EACE,WAAA;;AAPJ,YASE;AATF,YAUE;AAVF,YAWE;EACE,gBAAA;;AAIJ,UAAW,OAAM,IAAI,cAAc,IAAI,aAAa,IAAI;EACtD,gBAAA;;AAIF,UAAW,OAAM;EACf,cAAA;;AACA,UAFS,OAAM,YAEd,IAAI,aAAa,IAAI;EKlDtB,6BAAA;EACG,0BAAA;;ALsDL,UAAW,OAAM,WAAW,IAAI;AAChC,UAAW,mBAAkB,IAAI;EKhD/B,4BAAA;EACG,yBAAA;;ALoDL,UAAW;EACT,WAAA;;AAEF,UAAW,aAAY,IAAI,cAAc,IAAI,aAAc;EACzD,gBAAA;;AAEF,UAAW,aAAY,YAAY,IAAI,aACrC,OAAM;AADR,UAAW,aAAY,YAAY,IAAI,aAErC;EKrEA,6BAAA;EACG,0BAAA;;ALwEL,UAAW,aAAY,WAAW,IAAI,cAAe,OAAM;EKjEzD,4BAAA;EACG,yBAAA;;ALqEL,UAAW,iBAAgB;AAC3B,UAAU,KAAM;EACd,UAAA;;AAiBF,UAAW,OAAO;EAChB,iBAAA;EACA,kBAAA;;AAEF,UAAW,UAAU;EACnB,kBAAA;EACA,mBAAA;;AAKF,UAAU,KAAM;EtB/Cd,wDAAA;EACQ,gDAAA;;AsBkDR,UAJQ,KAAM,iBAIb;EtBnDD,wBAAA;EACQ,gBAAA;;AsByDV,IAAK;EACH,cAAA;;AAGF,OAAQ;EACN,mBAAA;EACA,sBAAA;;AAGF,OAAQ,QAAQ;EACd,mBAAA;;AAOF,mBACE;AADF,mBAEE;AAFF,mBAGE,aAAa;EACX,cAAA;EACA,WAAA;EACA,WAAA;EACA,eAAA;;AAPJ,mBAWE,aAEE;EACE,WAAA;;AAdN,mBAkBE,OAAO;AAlBT,mBAmBE,OAAO;AAnBT,mBAoBE,aAAa;AApBf,mBAqBE,aAAa;EACX,gBAAA;EACA,cAAA;;AAKF,mBADkB,OACjB,IAAI,cAAc,IAAI;EACrB,gBAAA;;AAEF,mBAJkB,OAIjB,YAAY,IAAI;EK3KjB,4BAAA;EACC,2BAAA;EAOD,6BAAA;EACC,4BAAA;;ALsKD,mBARkB,OAQjB,WAAW,IAAI;EK/KhB,0BAAA;EACC,yBAAA;EAOD,+BAAA;EACC,8BAAA;;AL2KH,mBAAoB,aAAY,IAAI,cAAc,IAAI,aAAc;EAClE,gBAAA;;AAEF,mBAAoB,aAAY,YAAY,IAAI,aAC9C,OAAM;AADR,mBAAoB,aAAY,YAAY,IAAI,aAE9C;EKjLA,6BAAA;EACC,4BAAA;;ALoLH,mBAAoB,aAAY,WAAW,IAAI,cAAe,OAAM;EK7LlE,0BAAA;EACC,yBAAA;;ALoMH;EACE,cAAA;EACA,WAAA;EACA,mBAAA;EACA,yBAAA;;AAJF,oBAKE;AALF,oBAME;EACE,WAAA;EACA,mBAAA;EACA,SAAA;;AATJ,oBAWE,aAAa;EACX,WAAA;;AAZJ,oBAeE,aAAa;EACX,UAAA;;AAiBJ,uBACE,OAEE,MAAK;AAHT,uBAEE,aAAa,OACX,MAAK;AAHT,uBACE,OAGE,MAAK;AAJT,uBAEE,aAAa,OAEX,MAAK;EACH,kBAAA;EACA,MAAM,gBAAN;EACA,oBAAA;;AM1ON;EACE,kBAAA;EACA,cAAA;EACA,yBAAA;;AAGA,YAAC;EACC,WAAA;EACA,eAAA;EACA,gBAAA;;AATJ,YAYE;EAGE,kBAAA;EACA,UAAA;EAKA,WAAA;EAEA,WAAA;EACA,gBAAA;;AAEA,YAdF,cAcG;EACC,UAAA;;AAUN,eAAgB;AAChB,eAAgB;AAChB,eAAgB,mBAAmB;EXwBjC,YAAA;EACA,iBAAA;EACA,eAAA;EACA,sBAAA;EACA,kBAAA;;AAEA,MAAM,eWhCQ;AXgCd,MAAM,eW/BQ;AX+Bd,MAAM,eW9BQ,mBAAmB;EX+B/B,YAAA;EACA,iBAAA;;AAGF,QAAQ,eWrCM;AXqCd,QAAQ,eWpCM;AXoCd,QAAQ,eWnCM,mBAAmB;AXoCjC,MAAM,UAAU,eWtCF;AXsCd,MAAM,UAAU,eWrCF;AXqCd,MAAM,UAAU,eWpCF,mBAAmB;EXqC/B,YAAA;;AWlCJ,eAAgB;AAChB,eAAgB;AAChB,eAAgB,mBAAmB;EXmBjC,YAAA;EACA,gBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AAEA,MAAM,eW3BQ;AX2Bd,MAAM,eW1BQ;AX0Bd,MAAM,eWzBQ,mBAAmB;EX0B/B,YAAA;EACA,iBAAA;;AAGF,QAAQ,eWhCM;AXgCd,QAAQ,eW/BM;AX+Bd,QAAQ,eW9BM,mBAAmB;AX+BjC,MAAM,UAAU,eWjCF;AXiCd,MAAM,UAAU,eWhCF;AXgCd,MAAM,UAAU,eW/BF,mBAAmB;EXgC/B,YAAA;;AWzBJ;AACA;AACA,YAAa;EACX,mBAAA;;AAEA,kBAAC,IAAI,cAAc,IAAI;AAAvB,gBAAC,IAAI,cAAc,IAAI;AAAvB,YAHW,cAGV,IAAI,cAAc,IAAI;EACrB,gBAAA;;AAIJ;AACA;EACE,SAAA;EACA,mBAAA;EACA,sBAAA;;AAKF;EACE,gBAAA;EACA,eAAA;EACA,mBAAA;EACA,cAAA;EACA,cAAA;EACA,kBAAA;EACA,yBAAA;EACA,sBAAA;EACA,kBAAA;;AAGA,kBAAC;EACC,gBAAA;EACA,eAAA;EACA,kBAAA;;AAEF,kBAAC;EACC,iBAAA;EACA,eAAA;EACA,kBAAA;;AApBJ,kBAwBE,MAAK;AAxBP,kBAyBE,MAAK;EACH,aAAA;;AAKJ,YAAa,cAAa;AAC1B,kBAAkB;AAClB,gBAAgB,YAAa;AAC7B,gBAAgB,YAAa,aAAa;AAC1C,gBAAgB,YAAa;AAC7B,gBAAgB,WAAY,OAAM,IAAI,aAAa,IAAI;AACvD,gBAAgB,WAAY,aAAY,IAAI,aAAc;ED1GxD,6BAAA;EACG,0BAAA;;AC4GL,kBAAkB;EAChB,eAAA;;AAEF,YAAa,cAAa;AAC1B,kBAAkB;AAClB,gBAAgB,WAAY;AAC5B,gBAAgB,WAAY,aAAa;AACzC,gBAAgB,WAAY;AAC5B,gBAAgB,YAAa,OAAM,IAAI;AACvC,gBAAgB,YAAa,aAAY,IAAI,cAAe;ED9G1D,4BAAA;EACG,yBAAA;;ACgHL,kBAAkB;EAChB,cAAA;;AAKF;EACE,kBAAA;EAGA,YAAA;EACA,mBAAA;;AALF,gBASE;EACE,kBAAA;;AAVJ,gBASE,OAEE;EACE,iBAAA;;AAGF,gBANF,OAMG;AACD,gBAPF,OAOG;AACD,gBARF,OAQG;EACC,UAAA;;AAKJ,gBAAC,YACC;AADF,gBAAC,YAEC;EACE,kBAAA;;AAGJ,gBAAC,WACC;AADF,gBAAC,WAEC;EACE,UAAA;EACA,iBAAA;;AC/JN;EACE,gBAAA;EACA,eAAA;EACA,gBAAA;;AAHF,IAME;EACE,kBAAA;EACA,cAAA;;AARJ,IAME,KAIE;EACE,kBAAA;EACA,cAAA;EACA,kBAAA;;AACA,IARJ,KAIE,IAIG;AACD,IATJ,KAIE,IAKG;EACC,qBAAA;EACA,yBAAA;;AAKJ,IAhBF,KAgBG,SAAU;EACT,cAAA;;AAEA,IAnBJ,KAgBG,SAAU,IAGR;AACD,IApBJ,KAgBG,SAAU,IAIR;EACC,cAAA;EACA,qBAAA;EACA,6BAAA;EACA,mBAAA;;AAOJ,IADF,MAAM;AAEJ,IAFF,MAAM,IAEH;AACD,IAHF,MAAM,IAGH;EACC,yBAAA;EACA,qBAAA;;AAzCN,IAkDE;EJpDA,aAAA;EAEA,yBAAA;EPcA,yBAAA;EACA,WAAA;EACA,eAAA;EACA,gBAAA;;AWjBF,IAyDE,KAAK,IAAI;EACP,eAAA;;AASJ;EACE,gCAAA;;AADF,SAEE;EACE,WAAA;EAEA,mBAAA;;AALJ,SAEE,KAME;EACE,iBAAA;EACA,uBAAA;EACA,6BAAA;EACA,0BAAA;;AACA,SAXJ,KAME,IAKG;EACC,6CAAA;;AAMF,SAlBJ,KAiBG,OAAQ;AAEP,SAnBJ,KAiBG,OAAQ,IAEN;AACD,SApBJ,KAiBG,OAAQ,IAGN;EACC,cAAA;EACA,sBAAA;EACA,sBAAA;EACA,gCAAA;EACA,eAAA;;AAKN,SAAC;EAqDD,WAAA;EA8BA,gBAAA;;AAnFA,SAAC,cAuDD;EACE,WAAA;;AAxDF,SAAC,cAuDD,KAEE;EACE,kBAAA;EACA,kBAAA;;AA3DJ,SAAC,cA+DD,YAAY;EACV,SAAA;EACA,UAAA;;AAGF,QAAmC;EAmErC,SAvIG,cAqEC;IACE,mBAAA;IACA,SAAA;;EAgEN,SAvIG,cAqEC,KAGE;IACE,gBAAA;;;AAzEN,SAAC,cAqFD,KAAK;EAEH,eAAA;EACA,kBAAA;;AAxFF,SAAC,cA2FD,UAAU;AA3FV,SAAC,cA4FD,UAAU,IAAG;AA5Fb,SAAC,cA6FD,UAAU,IAAG;EACX,yBAAA;;AAGF,QAAmC;EAsCrC,SAvIG,cAkGC,KAAK;IACH,gCAAA;IACA,0BAAA;;EAmCN,SAvIG,cAsGC,UAAU;EAiCd,SAvIG,cAuGC,UAAU,IAAG;EAgCjB,SAvIG,cAwGC,UAAU,IAAG;IACX,yBAAA;;;AAhGN,UACE;EACE,WAAA;;AAFJ,UACE,KAIE;EACE,kBAAA;;AANN,UACE,KAOE;EACE,gBAAA;;AAKA,UAbJ,KAYG,OAAQ;AAEP,UAdJ,KAYG,OAAQ,IAEN;AACD,UAfJ,KAYG,OAAQ,IAGN;EACC,WAAA;EACA,yBAAA;;AAQR,YACE;EACE,WAAA;;AAFJ,YACE,KAEE;EACE,eAAA;EACA,cAAA;;AAYN;EACE,WAAA;;AADF,cAGE;EACE,WAAA;;AAJJ,cAGE,KAEE;EACE,kBAAA;EACA,kBAAA;;AAPN,cAWE,YAAY;EACV,SAAA;EACA,UAAA;;AAGF,QAAmC;EAmErC,cAlEI;IACE,mBAAA;IACA,SAAA;;EAgEN,cAlEI,KAGE;IACE,gBAAA;;;AASR;EACE,gBAAA;;AADF,mBAGE,KAAK;EAEH,eAAA;EACA,kBAAA;;AANJ,mBASE,UAAU;AATZ,mBAUE,UAAU,IAAG;AAVf,mBAWE,UAAU,IAAG;EACX,yBAAA;;AAGF,QAAmC;EAsCrC,mBArCI,KAAK;IACH,gCAAA;IACA,0BAAA;;EAmCN,mBAjCI,UAAU;EAiCd,mBAhCI,UAAU,IAAG;EAgCjB,mBA/BI,UAAU,IAAG;IACX,yBAAA;;;AAUN,YACE;EACE,aAAA;;AAFJ,YAIE;EACE,cAAA;;AASJ,SAAU;EAER,gBAAA;EF3OA,0BAAA;EACC,yBAAA;;AGMH;EACE,kBAAA;EACA,gBAAA;EACA,mBAAA;EACA,6BAAA;;AAKA,QAA2C;EAioB7C;IAhoBI,kBAAA;;;AAaF,QAA2C;EAmnB7C;IAlnBI,WAAA;;;AAeJ;EACE,mBAAA;EACA,mBAAA;EACA,kBAAA;EACA,iCAAA;EACA,kDAAA;EAEA,iCAAA;;AAEA,gBAAC;EACC,gBAAA;;AAGF,QAA2C;EAslB7C;IArlBI,WAAA;IACA,aAAA;IACA,gBAAA;;EAEA,gBAAC;IACC,yBAAA;IACA,uBAAA;IACA,iBAAA;IACA,4BAAA;;EAGF,gBAAC;IACC,mBAAA;;EAKF,iBAAkB;EAClB,kBAAmB;EACnB,oBAAqB;IACnB,eAAA;IACA,gBAAA;;;AAKN,iBAEE;AADF,oBACE;EACE,iBAAA;;AAEA,QAA0C,8BAA6B;EAsjB3E,iBAzjBE;EAyjBF,oBAzjBE;IAII,iBAAA;;;AAUN,UAEE;AADF,gBACE;AAFF,UAGE;AAFF,gBAEE;EACE,mBAAA;EACA,kBAAA;;AAEA,QAA2C;EAoiB/C,UAziBE;EAyiBF,gBAziBE;EAyiBF,UAxiBE;EAwiBF,gBAxiBE;IAKI,eAAA;IACA,cAAA;;;AAaN;EACE,aAAA;EACA,qBAAA;;AAEA,QAA2C;EAihB7C;IAhhBI,gBAAA;;;AAKJ;AACA;EACE,eAAA;EACA,QAAA;EACA,OAAA;EACA,aAAA;;AAGA,QAA2C;EAmgB7C;EAAA;IAlgBI,gBAAA;;;AAGJ;EACE,MAAA;EACA,qBAAA;;AAEF;EACE,SAAA;EACA,gBAAA;EACA,qBAAA;;AAMF;EACE,WAAA;EACA,kBAAA;EACA,eAAA;EACA,iBAAA;EACA,YAAA;;AAEA,aAAC;AACD,aAAC;EACC,qBAAA;;AATJ,aAYE;EACE,cAAA;;AAGF,QAA2C;EACzC,OAAQ,aAAa;EACrB,OAAQ,mBAAmB;IACzB,kBAAA;;;AAWN;EACE,kBAAA;EACA,YAAA;EACA,kBAAA;EACA,iBAAA;EC9LA,eAAA;EACA,kBAAA;ED+LA,6BAAA;EACA,sBAAA;EACA,6BAAA;EACA,kBAAA;;AAIA,cAAC;EACC,UAAA;;AAdJ,cAkBE;EACE,cAAA;EACA,WAAA;EACA,WAAA;EACA,kBAAA;;AAtBJ,cAwBE,UAAU;EACR,eAAA;;AAGF,QAA2C;EAwb7C;IAvbI,aAAA;;;AAUJ;EACE,mBAAA;;AADF,WAGE,KAAK;EACH,iBAAA;EACA,oBAAA;EACA,iBAAA;;AAGF,QAA+C;EAoajD,WAlaI,MAAM;IACJ,gBAAA;IACA,WAAA;IACA,WAAA;IACA,aAAA;IACA,6BAAA;IACA,SAAA;IACA,gBAAA;;EA2ZN,WAlaI,MAAM,eAQJ,KAAK;EA0ZX,WAlaI,MAAM,eASJ;IACE,0BAAA;;EAwZR,WAlaI,MAAM,eAYJ,KAAK;IACH,iBAAA;;EACA,WAdJ,MAAM,eAYJ,KAAK,IAEF;EACD,WAfJ,MAAM,eAYJ,KAAK,IAGF;IACC,sBAAA;;;AAOR,QAA2C;EA2Y7C;IA1YI,WAAA;IACA,SAAA;;EAyYJ,WAvYI;IACE,WAAA;;EAsYN,WAvYI,KAEE;IACE,iBAAA;IACA,oBAAA;;;AAYR;EACE,kBAAA;EACA,mBAAA;EACA,kBAAA;EACA,iCAAA;EACA,oCAAA;E9B9NA,4FAAA;EACQ,oFAAA;E+B/DR,gBAAA;EACA,mBAAA;;AfqdA,QAAmC;EAyIrC,YAvII;IACE,qBAAA;IACA,gBAAA;IACA,sBAAA;;EAoIN,YAhII;IACE,qBAAA;IACA,WAAA;IACA,sBAAA;;EA6HN,YAzHI;IACE,qBAAA;;EAwHN,YArHI;IACE,qBAAA;IACA,sBAAA;;EAmHN,YArHI,aAIE;EAiHN,YArHI,aAKE;EAgHN,YArHI,aAME;IACE,WAAA;;EA8GR,YAzGI,aAAa;IACX,WAAA;;EAwGN,YArGI;IACE,gBAAA;IACA,sBAAA;;EAmGN,YA9FI;EA8FJ,YA7FI;IACE,qBAAA;IACA,aAAA;IACA,gBAAA;IACA,sBAAA;;EAyFN,YA9FI,OAOE;EAuFN,YA7FI,UAME;IACE,eAAA;;EAsFR,YAnFI,OAAO,MAAK;EAmFhB,YAlFI,UAAU,MAAK;IACb,kBAAA;IACA,cAAA;;EAgFN,YA5EI,cAAc;IACZ,MAAA;;;AchPF,QAA+C;EA0WnD,YA3WE;IAEI,kBAAA;;EAEA,YAJJ,YAIK;IACC,gBAAA;;;AASN,QAA2C;EA6V7C;IA5VI,WAAA;IACA,SAAA;IACA,cAAA;IACA,eAAA;IACA,cAAA;IACA,iBAAA;I9BzPF,wBAAA;IACQ,gBAAA;;;A8BiQV,WAAY,KAAK;EACf,aAAA;EHpUA,0BAAA;EACC,yBAAA;;AGuUH,oBAAqB,YAAY,KAAK;EACpC,gBAAA;EHzUA,4BAAA;EACC,2BAAA;EAOD,6BAAA;EACC,4BAAA;;AG0UH;EChVE,gBAAA;EACA,mBAAA;;ADkVA,WAAC;ECnVD,gBAAA;EACA,mBAAA;;ADqVA,WAAC;ECtVD,gBAAA;EACA,mBAAA;;AD+VF;EChWE,gBAAA;EACA,mBAAA;;ADkWA,QAA2C;EA2S7C;IA1SI,WAAA;IACA,iBAAA;IACA,kBAAA;;;AAaJ,QAA2C;EACzC;IExWA,sBAAA;ICCW,WAAA;;EHwWX;IE5WA,uBAAA;ICGY,YAAA;IH2WV,mBAAA;;EAFF,aAIE;IACE,eAAA;;;AAUN;EACE,yBAAA;EACA,qBAAA;;AAFF,eAIE;EACE,WAAA;;AACA,eAFF,cAEG;AACD,eAHF,cAGG;EACC,cAAA;EACA,6BAAA;;AATN,eAaE;EACE,WAAA;;AAdJ,eAiBE,YACE,KAAK;EACH,WAAA;;AAEA,eAJJ,YACE,KAAK,IAGF;AACD,eALJ,YACE,KAAK,IAIF;EACC,WAAA;EACA,6BAAA;;AAIF,eAXJ,YAUE,UAAU;AAER,eAZJ,YAUE,UAAU,IAEP;AACD,eAbJ,YAUE,UAAU,IAGP;EACC,WAAA;EACA,yBAAA;;AAIF,eAnBJ,YAkBE,YAAY;AAEV,eApBJ,YAkBE,YAAY,IAET;AACD,eArBJ,YAkBE,YAAY,IAGT;EACC,WAAA;EACA,6BAAA;;AAxCR,eA6CE;EACE,kBAAA;;AACA,eAFF,eAEG;AACD,eAHF,eAGG;EACC,sBAAA;;AAjDN,eA6CE,eAME;EACE,sBAAA;;AApDN,eAwDE;AAxDF,eAyDE;EACE,qBAAA;;AAOE,eAHJ,YAEE,QAAQ;AAEN,eAJJ,YAEE,QAAQ,IAEL;AACD,eALJ,YAEE,QAAQ,IAGL;EACC,yBAAA;EACA,WAAA;;AAIJ,QAA+C;EAiMnD,eA5ME,YAaI,MAAM,eACJ,KAAK;IACH,WAAA;;EACA,eAhBR,YAaI,MAAM,eACJ,KAAK,IAEF;EACD,eAjBR,YAaI,MAAM,eACJ,KAAK,IAGF;IACC,WAAA;IACA,6BAAA;;EAIF,eAvBR,YAaI,MAAM,eASJ,UAAU;EAER,eAxBR,YAaI,MAAM,eASJ,UAAU,IAEP;EACD,eAzBR,YAaI,MAAM,eASJ,UAAU,IAGP;IACC,WAAA;IACA,yBAAA;;EAIF,eA/BR,YAaI,MAAM,eAiBJ,YAAY;EAEV,eAhCR,YAaI,MAAM,eAiBJ,YAAY,IAET;EACD,eAjCR,YAaI,MAAM,eAiBJ,YAAY,IAGT;IACC,WAAA;IACA,6BAAA;;;AAjGZ,eA6GE;EACE,WAAA;;AACA,eAFF,aAEG;EACC,WAAA;;AAhHN,eAoHE;EACE,WAAA;;AACA,eAFF,UAEG;AACD,eAHF,UAGG;EACC,WAAA;;AAIA,eARJ,UAMG,UAEE;AAAD,QADM,UAAW,gBAPrB,UAQK;AACD,eATJ,UAMG,UAGE;AAAD,QAFM,UAAW,gBAPrB,UASK;EACC,WAAA;;AAQR;EACE,sBAAA;EACA,qBAAA;;AAFF,eAIE;EACE,cAAA;;AACA,eAFF,cAEG;AACD,eAHF,cAGG;EACC,WAAA;EACA,6BAAA;;AATN,eAaE;EACE,cAAA;;AAdJ,eAiBE,YACE,KAAK;EACH,cAAA;;AAEA,eAJJ,YACE,KAAK,IAGF;AACD,eALJ,YACE,KAAK,IAIF;EACC,WAAA;EACA,6BAAA;;AAIF,eAXJ,YAUE,UAAU;AAER,eAZJ,YAUE,UAAU,IAEP;AACD,eAbJ,YAUE,UAAU,IAGP;EACC,WAAA;EACA,yBAAA;;AAIF,eAnBJ,YAkBE,YAAY;AAEV,eApBJ,YAkBE,YAAY,IAET;AACD,eArBJ,YAkBE,YAAY,IAGT;EACC,WAAA;EACA,6BAAA;;AAxCR,eA8CE;EACE,kBAAA;;AACA,eAFF,eAEG;AACD,eAHF,eAGG;EACC,sBAAA;;AAlDN,eA8CE,eAME;EACE,sBAAA;;AArDN,eAyDE;AAzDF,eA0DE;EACE,qBAAA;;AAME,eAFJ,YACE,QAAQ;AAEN,eAHJ,YACE,QAAQ,IAEL;AACD,eAJJ,YACE,QAAQ,IAGL;EACC,yBAAA;EACA,WAAA;;AAIJ,QAA+C;EA2DnD,eArEE,YAYI,MAAM,eACJ;IACE,qBAAA;;EAuDV,eArEE,YAYI,MAAM,eAIJ;IACE,yBAAA;;EAoDV,eArEE,YAYI,MAAM,eAOJ,KAAK;IACH,cAAA;;EACA,eArBR,YAYI,MAAM,eAOJ,KAAK,IAEF;EACD,eAtBR,YAYI,MAAM,eAOJ,KAAK,IAGF;IACC,WAAA;IACA,6BAAA;;EAIF,eA5BR,YAYI,MAAM,eAeJ,UAAU;EAER,eA7BR,YAYI,MAAM,eAeJ,UAAU,IAEP;EACD,eA9BR,YAYI,MAAM,eAeJ,UAAU,IAGP;IACC,WAAA;IACA,yBAAA;;EAIF,eApCR,YAYI,MAAM,eAuBJ,YAAY;EAEV,eArCR,YAYI,MAAM,eAuBJ,YAAY,IAET;EACD,eAtCR,YAYI,MAAM,eAuBJ,YAAY,IAGT;IACC,WAAA;IACA,6BAAA;;;AAvGZ,eA8GE;EACE,cAAA;;AACA,eAFF,aAEG;EACC,WAAA;;AAjHN,eAqHE;EACE,cAAA;;AACA,eAFF,UAEG;AACD,eAHF,UAGG;EACC,WAAA;;AAIA,eARJ,UAMG,UAEE;AAAD,QADM,UAAW,gBAPrB,UAQK;AACD,eATJ,UAMG,UAGE;AAAD,QAFM,UAAW,gBAPrB,UASK;EACC,WAAA;;AI1oBR;EACE,iBAAA;EACA,mBAAA;EACA,gBAAA;EACA,6BAAA;EACA,kBAAA;;AALF,WAOE;EACE,qBAAA;;AARJ,WAOE,KAGE,KAAI;EACF,SAAS,YAAT;EACA,cAAA;EACA,cAAA;;AAbN,WAiBE;EACE,cAAA;;ACpBJ;EACE,qBAAA;EACA,eAAA;EACA,cAAA;EACA,kBAAA;;AAJF,WAME;EACE,eAAA;;AAPJ,WAME,KAEE;AARJ,WAME,KAGE;EACE,kBAAA;EACA,WAAA;EACA,gBAAA;EACA,uBAAA;EACA,qBAAA;EACA,cAAA;EACA,yBAAA;EACA,sBAAA;EACA,iBAAA;;AAEF,WAdF,KAcG,YACC;AADF,WAdF,KAcG,YAEC;EACE,cAAA;ERXN,8BAAA;EACG,2BAAA;;AQcD,WArBF,KAqBG,WACC;AADF,WArBF,KAqBG,WAEC;ERzBJ,+BAAA;EACG,4BAAA;;AQgCD,WAFF,KAAK,IAEF;AAAD,WADF,KAAK,OACF;AACD,WAHF,KAAK,IAGF;AAAD,WAFF,KAAK,OAEF;EACC,UAAA;EACA,cAAA;EACA,yBAAA;EACA,kBAAA;;AAMF,WAFF,UAAU;AAER,WADF,UAAU;AAER,WAHF,UAAU,IAGP;AAAD,WAFF,UAAU,OAEP;AACD,WAJF,UAAU,IAIP;AAAD,WAHF,UAAU,OAGP;EACC,UAAA;EACA,WAAA;EACA,yBAAA;EACA,qBAAA;EACA,eAAA;;AAvDN,WA2DE,YACE;AA5DJ,WA2DE,YAEE,OAAM;AA7DV,WA2DE,YAGE,OAAM;AA9DV,WA2DE,YAIE;AA/DJ,WA2DE,YAKE,IAAG;AAhEP,WA2DE,YAME,IAAG;EACD,cAAA;EACA,sBAAA;EACA,kBAAA;EACA,mBAAA;;AASN,cC9EE,KACE;AD6EJ,cC9EE,KAEE;EACE,iBAAA;EACA,eAAA;EACA,sBAAA;;AAEF,cAPF,KAOG,YACC;AADF,cAPF,KAOG,YAEC;ETGJ,8BAAA;EACG,2BAAA;;ASAD,cAbF,KAaG,WACC;AADF,cAbF,KAaG,WAEC;ETXJ,+BAAA;EACG,4BAAA;;AQ8EL,cCnFE,KACE;ADkFJ,cCnFE,KAEE;EACE,gBAAA;EACA,eAAA;EACA,gBAAA;;AAEF,cAPF,KAOG,YACC;AADF,cAPF,KAOG,YAEC;ETGJ,8BAAA;EACG,2BAAA;;ASAD,cAbF,KAaG,WACC;AADF,cAbF,KAaG,WAEC;ETXJ,+BAAA;EACG,4BAAA;;AUHL;EACE,eAAA;EACA,cAAA;EACA,gBAAA;EACA,kBAAA;;AAJF,MAME;EACE,eAAA;;AAPJ,MAME,GAEE;AARJ,MAME,GAGE;EACE,qBAAA;EACA,iBAAA;EACA,yBAAA;EACA,sBAAA;EACA,gBAAA;;AAdN,MAME,GAWE,IAAG;AAjBP,MAME,GAYE,IAAG;EACD,qBAAA;EACA,yBAAA;;AApBN,MAwBE,MACE;AAzBJ,MAwBE,MAEE;EACE,YAAA;;AA3BN,MA+BE,UACE;AAhCJ,MA+BE,UAEE;EACE,WAAA;;AAlCN,MAsCE,UACE;AAvCJ,MAsCE,UAEE,IAAG;AAxCP,MAsCE,UAGE,IAAG;AAzCP,MAsCE,UAIE;EACE,cAAA;EACA,yBAAA;EACA,mBAAA;;AC9CN;EACE,eAAA;EACA,uBAAA;EACA,cAAA;EACA,iBAAA;EACA,cAAA;EACA,WAAA;EACA,kBAAA;EACA,mBAAA;EACA,wBAAA;EACA,oBAAA;;AAIE,CADD,MACE;AACD,CAFD,MAEE;EACC,WAAA;EACA,qBAAA;EACA,eAAA;;AAKJ,MAAC;EACC,aAAA;;AAIF,IAAK;EACH,kBAAA;EACA,SAAA;;AAOJ;ECtCE,yBAAA;;AAGE,cADD,MACE;AACD,cAFD,MAEE;EACC,yBAAA;;ADqCN;EC1CE,yBAAA;;AAGE,cADD,MACE;AACD,cAFD,MAEE;EACC,yBAAA;;ADyCN;EC9CE,yBAAA;;AAGE,cADD,MACE;AACD,cAFD,MAEE;EACC,yBAAA;;AD6CN;EClDE,yBAAA;;AAGE,WADD,MACE;AACD,WAFD,MAEE;EACC,yBAAA;;ADiDN;ECtDE,yBAAA;;AAGE,cADD,MACE;AACD,cAFD,MAEE;EACC,yBAAA;;ADqDN;EC1DE,yBAAA;;AAGE,aADD,MACE;AACD,aAFD,MAEE;EACC,yBAAA;;ACFN;EACE,qBAAA;EACA,eAAA;EACA,gBAAA;EACA,eAAA;EACA,iBAAA;EACA,WAAA;EACA,cAAA;EACA,sBAAA;EACA,mBAAA;EACA,kBAAA;EACA,yBAAA;EACA,kBAAA;;AAGA,MAAC;EACC,aAAA;;AAIF,IAAK;EACH,kBAAA;EACA,SAAA;;AAGF,OAAQ;AACR,aAAc,OAAO;EACnB,MAAA;EACA,gBAAA;;AAKA,CADD,MACE;AACD,CAFD,MAEE;EACC,WAAA;EACA,qBAAA;EACA,eAAA;;AAKJ,gBAAgB,OAAQ;AACxB,UAAW,UAAU,IAAI;EACvB,cAAA;EACA,sBAAA;;AAGF,gBAAiB;EACf,YAAA;;AAGF,gBAAiB,SAAI;EACnB,iBAAA;;AAGF,UAAW,KAAK,IAAI;EAClB,gBAAA;;AC1DJ;EACE,iBAAA;EACA,oBAAA;EACA,mBAAA;EACA,cAAA;EACA,yBAAA;;AALF,UAOE;AAPF,UAQE;EACE,cAAA;;AATJ,UAYE;EACE,mBAAA;EACA,eAAA;EACA,gBAAA;;AAfJ,UAkBE;EACE,yBAAA;;AAGF,UAAW;AACX,gBAAiB;EACf,kBAAA;EACA,kBAAA;EACA,mBAAA;;AA1BJ,UA6BE;EACE,eAAA;;AAGF,mBAA8C;EAgBhD;IAfI,iBAAA;IACA,oBAAA;;EAEA,UAAW;EACX,gBAAiB;IACf,kBAAA;IACA,mBAAA;;EASN,UANI;EAMJ,UALI;IACE,eAAA;;;AtC5CN;EACE,cAAA;EACA,YAAA;EACA,mBAAA;EACA,uBAAA;EACA,sBAAA;EACA,sBAAA;EACA,kBAAA;EHiLA,2CAAA;EACK,sCAAA;EACG,mCAAA;;AG1LV,UAUE;AAVF,UAWE,EAAE;EAEA,iBAAA;EACA,kBAAA;;AAIF,CAAC,UAAC;AACF,CAAC,UAAC;AACF,CAAC,UAAC;EACA,qBAAA;;AArBJ,UAyBE;EACE,YAAA;EACA,cAAA;;AuCzBJ;EACE,aAAA;EACA,mBAAA;EACA,6BAAA;EACA,kBAAA;;AAJF,MAOE;EACE,aAAA;EAEA,cAAA;;AAVJ,MAcE;EACE,gBAAA;;AAfJ,MAmBE;AAnBF,MAoBE;EACE,gBAAA;;AArBJ,MAwBE,IAAI;EACF,eAAA;;AAQJ;AACA;EACE,mBAAA;;AAFF,kBAKE;AAJF,kBAIE;EACE,kBAAA;EACA,SAAA;EACA,YAAA;EACA,cAAA;;AAQJ;ECvDE,yBAAA;EACA,qBAAA;EACA,cAAA;;ADqDF,cCnDE;EACE,yBAAA;;ADkDJ,cChDE;EACE,cAAA;;ADmDJ;EC3DE,yBAAA;EACA,qBAAA;EACA,cAAA;;ADyDF,WCvDE;EACE,yBAAA;;ADsDJ,WCpDE;EACE,cAAA;;ADuDJ;EC/DE,yBAAA;EACA,qBAAA;EACA,cAAA;;AD6DF,cC3DE;EACE,yBAAA;;AD0DJ,cCxDE;EACE,cAAA;;AD2DJ;ECnEE,yBAAA;EACA,qBAAA;EACA,cAAA;;ADiEF,aC/DE;EACE,yBAAA;;AD8DJ,aC5DE;EACE,cAAA;;ACFJ;EACE;IAAQ,2BAAA;;EACR;IAAQ,wBAAA;;;AAIV;EACE;IAAQ,2BAAA;;EACR;IAAQ,wBAAA;;;AAQV;EACE,gBAAA;EACA,YAAA;EACA,mBAAA;EACA,yBAAA;EACA,kBAAA;E5CsCA,sDAAA;EACQ,8CAAA;;A4ClCV;EACE,WAAA;EACA,SAAA;EACA,YAAA;EACA,eAAA;EACA,iBAAA;EACA,WAAA;EACA,kBAAA;EACA,yBAAA;E5CyBA,sDAAA;EACQ,8CAAA;EAyHR,mCAAA;EACK,8BAAA;EACG,2BAAA;;A4C3IV,iBAAkB;AAClB;ECAI,kBAAkB,2LAAlB;EACA,kBAAkB,sLAAlB;EACA,kBAAkB,mLAAlB;E3BxCA,kBAAkB,kQAAlB;E0BwCF,0BAAA;;AAOF,SAAS,OAAQ;AACjB,aAAa;E5C7CX,0DAAA;EACK,qDAAA;EACG,kDAAA;;A4CmDV;EErEE,yBAAA;;AAGA,iBAAkB;EDgDhB,kBAAkB,2LAAlB;EACA,kBAAkB,sLAAlB;EACA,kBAAkB,mLAAlB;E3BxCA,kBAAkB,kQAAlB;;A0B4DJ;EEzEE,yBAAA;;AAGA,iBAAkB;EDgDhB,kBAAkB,2LAAlB;EACA,kBAAkB,sLAAlB;EACA,kBAAkB,mLAAlB;E3BxCA,kBAAkB,kQAAlB;;A0BgEJ;EE7EE,yBAAA;;AAGA,iBAAkB;EDgDhB,kBAAkB,2LAAlB;EACA,kBAAkB,sLAAlB;EACA,kBAAkB,mLAAlB;E3BxCA,kBAAkB,kQAAlB;;A0BoEJ;EEjFE,yBAAA;;AAGA,iBAAkB;EDgDhB,kBAAkB,2LAAlB;EACA,kBAAkB,sLAAlB;EACA,kBAAkB,mLAAlB;E3BxCA,kBAAkB,kQAAlB;;A6BhBJ;EAEE,gBAAA;;AAEA,MAAC;EACC,aAAA;;AAIJ;AACA;EACE,OAAA;EACA,gBAAA;;AAGF;EACE,cAAA;;AAGF;EACE,cAAA;;AAGA,aAAC;EACC,eAAA;;AAIJ;AACA,MAAO;EACL,kBAAA;;AAGF;AACA,MAAO;EACL,mBAAA;;AAGF;AACA;AACA;EACE,mBAAA;EACA,mBAAA;;AAGF;EACE,sBAAA;;AAGF;EACE,sBAAA;;AAIF;EACE,aAAA;EACA,kBAAA;;AAMF;EACE,eAAA;EACA,gBAAA;;ACvDF;EAEE,mBAAA;EACA,eAAA;;AAQF;EACE,kBAAA;EACA,cAAA;EACA,kBAAA;EAEA,mBAAA;EACA,sBAAA;EACA,yBAAA;;AAGA,gBAAC;ErB3BD,0BAAA;EACC,yBAAA;;AqB6BD,gBAAC;EACC,gBAAA;ErBvBF,6BAAA;EACC,4BAAA;;AqBiCH,CAAC;AACD,MAAM;EACJ,WAAA;;AAFF,CAAC,gBAIC;AAHF,MAAM,gBAGJ;EACE,WAAA;;AAIF,CATD,gBASE;AAAD,MARI,gBAQH;AACD,CAVD,gBAUE;AAAD,MATI,gBASH;EACC,qBAAA;EACA,WAAA;EACA,yBAAA;;AAIJ,MAAM;EACJ,WAAA;EACA,gBAAA;;AAKA,gBAAC;AACD,gBAAC,SAAS;AACV,gBAAC,SAAS;EACR,yBAAA;EACA,cAAA;EACA,mBAAA;;AALF,gBAAC,SAQC;AAPF,gBAAC,SAAS,MAOR;AANF,gBAAC,SAAS,MAMR;EACE,cAAA;;AATJ,gBAAC,SAWC;AAVF,gBAAC,SAAS,MAUR;AATF,gBAAC,SAAS,MASR;EACE,cAAA;;AAKJ,gBAAC;AACD,gBAAC,OAAO;AACR,gBAAC,OAAO;EACN,UAAA;EACA,WAAA;EACA,yBAAA;EACA,qBAAA;;AANF,gBAAC,OASC;AARF,gBAAC,OAAO,MAQN;AAPF,gBAAC,OAAO,MAON;AATF,gBAAC,OAUC,yBAAyB;AAT3B,gBAAC,OAAO,MASN,yBAAyB;AAR3B,gBAAC,OAAO,MAQN,yBAAyB;AAV3B,gBAAC,OAWC,yBAAyB;AAV3B,gBAAC,OAAO,MAUN,yBAAyB;AAT3B,gBAAC,OAAO,MASN,yBAAyB;EACvB,cAAA;;AAZJ,gBAAC,OAcC;AAbF,gBAAC,OAAO,MAaN;AAZF,gBAAC,OAAO,MAYN;EACE,cAAA;;AClGJ,iBAAiB;EACf,cAAA;EACA,yBAAA;;AAEA,CAAC,iBAJc;AAKf,MAAM,iBALS;EAMb,cAAA;;AAFF,CAAC,iBAJc,OAQb;AAHF,MAAM,iBALS,OAQb;EACE,cAAA;;AAGF,CARD,iBAJc,OAYZ;AAAD,MAPI,iBALS,OAYZ;AACD,CATD,iBAJc,OAaZ;AAAD,MARI,iBALS,OAaZ;EACC,cAAA;EACA,yBAAA;;AAEF,CAbD,iBAJc,OAiBZ;AAAD,MAZI,iBALS,OAiBZ;AACD,CAdD,iBAJc,OAkBZ,OAAO;AAAR,MAbI,iBALS,OAkBZ,OAAO;AACR,CAfD,iBAJc,OAmBZ,OAAO;AAAR,MAdI,iBALS,OAmBZ,OAAO;EACN,WAAA;EACA,yBAAA;EACA,qBAAA;;AAtBN,iBAAiB;EACf,cAAA;EACA,yBAAA;;AAEA,CAAC,iBAJc;AAKf,MAAM,iBALS;EAMb,cAAA;;AAFF,CAAC,iBAJc,IAQb;AAHF,MAAM,iBALS,IAQb;EACE,cAAA;;AAGF,CARD,iBAJc,IAYZ;AAAD,MAPI,iBALS,IAYZ;AACD,CATD,iBAJc,IAaZ;AAAD,MARI,iBALS,IAaZ;EACC,cAAA;EACA,yBAAA;;AAEF,CAbD,iBAJc,IAiBZ;AAAD,MAZI,iBALS,IAiBZ;AACD,CAdD,iBAJc,IAkBZ,OAAO;AAAR,MAbI,iBALS,IAkBZ,OAAO;AACR,CAfD,iBAJc,IAmBZ,OAAO;AAAR,MAdI,iBALS,IAmBZ,OAAO;EACN,WAAA;EACA,yBAAA;EACA,qBAAA;;AAtBN,iBAAiB;EACf,cAAA;EACA,yBAAA;;AAEA,CAAC,iBAJc;AAKf,MAAM,iBALS;EAMb,cAAA;;AAFF,CAAC,iBAJc,OAQb;AAHF,MAAM,iBALS,OAQb;EACE,cAAA;;AAGF,CARD,iBAJc,OAYZ;AAAD,MAPI,iBALS,OAYZ;AACD,CATD,iBAJc,OAaZ;AAAD,MARI,iBALS,OAaZ;EACC,cAAA;EACA,yBAAA;;AAEF,CAbD,iBAJc,OAiBZ;AAAD,MAZI,iBALS,OAiBZ;AACD,CAdD,iBAJc,OAkBZ,OAAO;AAAR,MAbI,iBALS,OAkBZ,OAAO;AACR,CAfD,iBAJc,OAmBZ,OAAO;AAAR,MAdI,iBALS,OAmBZ,OAAO;EACN,WAAA;EACA,yBAAA;EACA,qBAAA;;AAtBN,iBAAiB;EACf,cAAA;EACA,yBAAA;;AAEA,CAAC,iBAJc;AAKf,MAAM,iBALS;EAMb,cAAA;;AAFF,CAAC,iBAJc,MAQb;AAHF,MAAM,iBALS,MAQb;EACE,cAAA;;AAGF,CARD,iBAJc,MAYZ;AAAD,MAPI,iBALS,MAYZ;AACD,CATD,iBAJc,MAaZ;AAAD,MARI,iBALS,MAaZ;EACC,cAAA;EACA,yBAAA;;AAEF,CAbD,iBAJc,MAiBZ;AAAD,MAZI,iBALS,MAiBZ;AACD,CAdD,iBAJc,MAkBZ,OAAO;AAAR,MAbI,iBALS,MAkBZ,OAAO;AACR,CAfD,iBAJc,MAmBZ,OAAO;AAAR,MAdI,iBALS,MAmBZ,OAAO;EACN,WAAA;EACA,yBAAA;EACA,qBAAA;;ADiGR;EACE,aAAA;EACA,kBAAA;;AAEF;EACE,gBAAA;EACA,gBAAA;;AE1HF;EACE,mBAAA;EACA,sBAAA;EACA,6BAAA;EACA,kBAAA;ElD0DA,iDAAA;EACQ,yCAAA;;AkDtDV;EACE,aAAA;;AAKF;EACE,kBAAA;EACA,oCAAA;EvBpBA,4BAAA;EACC,2BAAA;;AuBiBH,cAKE,YAAY;EACV,cAAA;;AAKJ;EACE,aAAA;EACA,gBAAA;EACA,eAAA;EACA,cAAA;;AAJF,YAME;AANF,YAOE;AAPF,YAQE;AARF,YASE,QAAQ;AATV,YAUE,SAAS;EACP,cAAA;;AAKJ;EACE,kBAAA;EACA,yBAAA;EACA,6BAAA;EvBxCA,+BAAA;EACC,8BAAA;;AuBiDH,MACE;AADF,MAEE,kBAAkB;EAChB,gBAAA;;AAHJ,MACE,cAIE;AALJ,MAEE,kBAAkB,cAGhB;EACE,mBAAA;EACA,gBAAA;;AAIF,MAVF,cAUG,YACC,iBAAgB;AADlB,MATF,kBAAkB,cASf,YACC,iBAAgB;EACd,aAAA;EvBvEN,4BAAA;EACC,2BAAA;;AuB4EC,MAlBF,cAkBG,WACC,iBAAgB;AADlB,MAjBF,kBAAkB,cAiBf,WACC,iBAAgB;EACd,gBAAA;EvBvEN,+BAAA;EACC,8BAAA;;AuBiDH,MA0BE,iBAAiB,kBAAkB,cACjC,iBAAgB;EvBrFlB,0BAAA;EACC,yBAAA;;AuB0FH,cAAe,cACb,iBAAgB;EACd,mBAAA;;AAGJ,WAAY;EACV,mBAAA;;AAQF,MACE;AADF,MAEE,oBAAoB;AAFtB,MAGE,kBAAkB;EAChB,gBAAA;;AAJJ,MACE,SAKE;AANJ,MAEE,oBAAoB,SAIlB;AANJ,MAGE,kBAAkB,SAGhB;EACE,kBAAA;EACA,mBAAA;;AARN,MAYE,SAAQ;AAZV,MAaE,oBAAmB,YAAa,SAAQ;EvBtHxC,4BAAA;EACC,2BAAA;;AuBwGH,MAYE,SAAQ,YAIN,QAAO,YAEL,KAAI;AAlBV,MAaE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YAEL,KAAI;AAlBV,MAYE,SAAQ,YAKN,QAAO,YACL,KAAI;AAlBV,MAaE,oBAAmB,YAAa,SAAQ,YAItC,QAAO,YACL,KAAI;EACF,2BAAA;EACA,4BAAA;;AApBR,MAYE,SAAQ,YAIN,QAAO,YAEL,KAAI,YAIF,GAAE;AAtBV,MAaE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YAEL,KAAI,YAIF,GAAE;AAtBV,MAYE,SAAQ,YAKN,QAAO,YACL,KAAI,YAIF,GAAE;AAtBV,MAaE,oBAAmB,YAAa,SAAQ,YAItC,QAAO,YACL,KAAI,YAIF,GAAE;AAtBV,MAYE,SAAQ,YAIN,QAAO,YAEL,KAAI,YAKF,GAAE;AAvBV,MAaE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YAEL,KAAI,YAKF,GAAE;AAvBV,MAYE,SAAQ,YAKN,QAAO,YACL,KAAI,YAKF,GAAE;AAvBV,MAaE,oBAAmB,YAAa,SAAQ,YAItC,QAAO,YACL,KAAI,YAKF,GAAE;EACA,2BAAA;;AAxBV,MAYE,SAAQ,YAIN,QAAO,YAEL,KAAI,YAQF,GAAE;AA1BV,MAaE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YAEL,KAAI,YAQF,GAAE;AA1BV,MAYE,SAAQ,YAKN,QAAO,YACL,KAAI,YAQF,GAAE;AA1BV,MAaE,oBAAmB,YAAa,SAAQ,YAItC,QAAO,YACL,KAAI,YAQF,GAAE;AA1BV,MAYE,SAAQ,YAIN,QAAO,YAEL,KAAI,YASF,GAAE;AA3BV,MAaE,oBAAmB,YAAa,SAAQ,YAGtC,QAAO,YAEL,KAAI,YASF,GAAE;AA3BV,MAYE,SAAQ,YAKN,QAAO,YACL,KAAI,YASF,GAAE;AA3BV,MAaE,oBAAmB,YAAa,SAAQ,YAItC,QAAO,YACL,KAAI,YASF,GAAE;EACA,4BAAA;;AA5BV,MAkCE,SAAQ;AAlCV,MAmCE,oBAAmB,WAAY,SAAQ;EvBpIvC,+BAAA;EACC,8BAAA;;AuBgGH,MAkCE,SAAQ,WAIN,QAAO,WAEL,KAAI;AAxCV,MAmCE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WAEL,KAAI;AAxCV,MAkCE,SAAQ,WAKN,QAAO,WACL,KAAI;AAxCV,MAmCE,oBAAmB,WAAY,SAAQ,WAIrC,QAAO,WACL,KAAI;EACF,8BAAA;EACA,+BAAA;;AA1CR,MAkCE,SAAQ,WAIN,QAAO,WAEL,KAAI,WAIF,GAAE;AA5CV,MAmCE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WAEL,KAAI,WAIF,GAAE;AA5CV,MAkCE,SAAQ,WAKN,QAAO,WACL,KAAI,WAIF,GAAE;AA5CV,MAmCE,oBAAmB,WAAY,SAAQ,WAIrC,QAAO,WACL,KAAI,WAIF,GAAE;AA5CV,MAkCE,SAAQ,WAIN,QAAO,WAEL,KAAI,WAKF,GAAE;AA7CV,MAmCE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WAEL,KAAI,WAKF,GAAE;AA7CV,MAkCE,SAAQ,WAKN,QAAO,WACL,KAAI,WAKF,GAAE;AA7CV,MAmCE,oBAAmB,WAAY,SAAQ,WAIrC,QAAO,WACL,KAAI,WAKF,GAAE;EACA,8BAAA;;AA9CV,MAkCE,SAAQ,WAIN,QAAO,WAEL,KAAI,WAQF,GAAE;AAhDV,MAmCE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WAEL,KAAI,WAQF,GAAE;AAhDV,MAkCE,SAAQ,WAKN,QAAO,WACL,KAAI,WAQF,GAAE;AAhDV,MAmCE,oBAAmB,WAAY,SAAQ,WAIrC,QAAO,WACL,KAAI,WAQF,GAAE;AAhDV,MAkCE,SAAQ,WAIN,QAAO,WAEL,KAAI,WASF,GAAE;AAjDV,MAmCE,oBAAmB,WAAY,SAAQ,WAGrC,QAAO,WAEL,KAAI,WASF,GAAE;AAjDV,MAkCE,SAAQ,WAKN,QAAO,WACL,KAAI,WASF,GAAE;AAjDV,MAmCE,oBAAmB,WAAY,SAAQ,WAIrC,QAAO,WACL,KAAI,WASF,GAAE;EACA,+BAAA;;AAlDV,MAuDE,cAAc;AAvDhB,MAwDE,cAAc;AAxDhB,MAyDE,SAAS;AAzDX,MA0DE,oBAAoB;EAClB,6BAAA;;AA3DJ,MA6DE,SAAS,QAAO,YAAa,KAAI,YAAa;AA7DhD,MA8DE,SAAS,QAAO,YAAa,KAAI,YAAa;EAC5C,aAAA;;AA/DJ,MAiEE;AAjEF,MAkEE,oBAAoB;EAClB,SAAA;;AAnEJ,MAiEE,kBAGE,QAGE,KACE,KAAI;AAxEZ,MAkEE,oBAAoB,kBAElB,QAGE,KACE,KAAI;AAxEZ,MAiEE,kBAIE,QAEE,KACE,KAAI;AAxEZ,MAkEE,oBAAoB,kBAGlB,QAEE,KACE,KAAI;AAxEZ,MAiEE,kBAKE,QACE,KACE,KAAI;AAxEZ,MAkEE,oBAAoB,kBAIlB,QACE,KACE,KAAI;AAxEZ,MAiEE,kBAGE,QAGE,KAEE,KAAI;AAzEZ,MAkEE,oBAAoB,kBAElB,QAGE,KAEE,KAAI;AAzEZ,MAiEE,kBAIE,QAEE,KAEE,KAAI;AAzEZ,MAkEE,oBAAoB,kBAGlB,QAEE,KAEE,KAAI;AAzEZ,MAiEE,kBAKE,QACE,KAEE,KAAI;AAzEZ,MAkEE,oBAAoB,kBAIlB,QACE,KAEE,KAAI;EACF,cAAA;;AA1EV,MAiEE,kBAGE,QAGE,KAKE,KAAI;AA5EZ,MAkEE,oBAAoB,kBAElB,QAGE,KAKE,KAAI;AA5EZ,MAiEE,kBAIE,QAEE,KAKE,KAAI;AA5EZ,MAkEE,oBAAoB,kBAGlB,QAEE,KAKE,KAAI;AA5EZ,MAiEE,kBAKE,QACE,KAKE,KAAI;AA5EZ,MAkEE,oBAAoB,kBAIlB,QACE,KAKE,KAAI;AA5EZ,MAiEE,kBAGE,QAGE,KAME,KAAI;AA7EZ,MAkEE,oBAAoB,kBAElB,QAGE,KAME,KAAI;AA7EZ,MAiEE,kBAIE,QAEE,KAME,KAAI;AA7EZ,MAkEE,oBAAoB,kBAGlB,QAEE,KAME,KAAI;AA7EZ,MAiEE,kBAKE,QACE,KAME,KAAI;AA7EZ,MAkEE,oBAAoB,kBAIlB,QACE,KAME,KAAI;EACF,eAAA;;AA9EV,MAiEE,kBAiBE,QAEE,KAAI,YACF;AArFR,MAkEE,oBAAoB,kBAgBlB,QAEE,KAAI,YACF;AArFR,MAiEE,kBAkBE,QACE,KAAI,YACF;AArFR,MAkEE,oBAAoB,kBAiBlB,QACE,KAAI,YACF;AArFR,MAiEE,kBAiBE,QAEE,KAAI,YAEF;AAtFR,MAkEE,oBAAoB,kBAgBlB,QAEE,KAAI,YAEF;AAtFR,MAiEE,kBAkBE,QACE,KAAI,YAEF;AAtFR,MAkEE,oBAAoB,kBAiBlB,QACE,KAAI,YAEF;EACE,gBAAA;;AAvFV,MAiEE,kBA0BE,QAEE,KAAI,WACF;AA9FR,MAkEE,oBAAoB,kBAyBlB,QAEE,KAAI,WACF;AA9FR,MAiEE,kBA2BE,QACE,KAAI,WACF;AA9FR,MAkEE,oBAAoB,kBA0BlB,QACE,KAAI,WACF;AA9FR,MAiEE,kBA0BE,QAEE,KAAI,WAEF;AA/FR,MAkEE,oBAAoB,kBAyBlB,QAEE,KAAI,WAEF;AA/FR,MAiEE,kBA2BE,QACE,KAAI,WAEF;AA/FR,MAkEE,oBAAoB,kBA0BlB,QACE,KAAI,WAEF;EACE,gBAAA;;AAhGV,MAqGE;EACE,SAAA;EACA,gBAAA;;AAUJ;EACE,mBAAA;;AADF,YAIE;EACE,gBAAA;EACA,kBAAA;;AANJ,YAIE,OAIE;EACE,eAAA;;AATN,YAaE;EACE,gBAAA;;AAdJ,YAaE,eAGE,kBAAkB;AAhBtB,YAaE,eAIE,kBAAkB;EAChB,6BAAA;;AAlBN,YAsBE;EACE,aAAA;;AAvBJ,YAsBE,cAEE,kBAAkB;EAChB,gCAAA;;AAON;EC1PE,kBAAA;;AAEA,cAAE;EACA,cAAA;EACA,yBAAA;EACA,kBAAA;;AAHF,cAAE,iBAKA,kBAAkB;EAChB,sBAAA;;AANJ,cAAE,iBAQA;EACE,cAAA;EACA,yBAAA;;AAGJ,cAAE,gBACA,kBAAkB;EAChB,yBAAA;;AD4ON;EC7PE,qBAAA;;AAEA,cAAE;EACA,WAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,cAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AANJ,cAAE,iBAQA;EACE,cAAA;EACA,sBAAA;;AAGJ,cAAE,gBACA,kBAAkB;EAChB,4BAAA;;AD+ON;EChQE,qBAAA;;AAEA,cAAE;EACA,WAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,cAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AANJ,cAAE,iBAQA;EACE,cAAA;EACA,sBAAA;;AAGJ,cAAE,gBACA,kBAAkB;EAChB,4BAAA;;ADkPN;ECnQE,qBAAA;;AAEA,WAAE;EACA,WAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,WAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AANJ,WAAE,iBAQA;EACE,cAAA;EACA,sBAAA;;AAGJ,WAAE,gBACA,kBAAkB;EAChB,4BAAA;;ADqPN;ECtQE,qBAAA;;AAEA,cAAE;EACA,WAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,cAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AANJ,cAAE,iBAQA;EACE,cAAA;EACA,sBAAA;;AAGJ,cAAE,gBACA,kBAAkB;EAChB,4BAAA;;ADwPN;ECzQE,qBAAA;;AAEA,aAAE;EACA,WAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,aAAE,iBAKA,kBAAkB;EAChB,yBAAA;;AANJ,aAAE,iBAQA;EACE,cAAA;EACA,sBAAA;;AAGJ,aAAE,gBACA,kBAAkB;EAChB,4BAAA;;AChBN;EACE,kBAAA;EACA,cAAA;EACA,SAAA;EACA,UAAA;EACA,gBAAA;;AALF,iBAOE;AAPF,iBAQE;AARF,iBASE;AATF,iBAUE;AAVF,iBAWE;EACE,kBAAA;EACA,MAAA;EACA,OAAA;EACA,SAAA;EACA,YAAA;EACA,WAAA;EACA,SAAA;;AAKJ;EACE,sBAAA;;AAIF;EACE,mBAAA;;AC3BF;EACE,gBAAA;EACA,aAAA;EACA,mBAAA;EACA,yBAAA;EACA,yBAAA;EACA,kBAAA;ErDwDA,uDAAA;EACQ,+CAAA;;AqD/DV,KAQE;EACE,kBAAA;EACA,iCAAA;;AAKJ;EACE,aAAA;EACA,kBAAA;;AAEF;EACE,YAAA;EACA,kBAAA;;ACtBF;EACE,YAAA;EACA,eAAA;EACA,iBAAA;EACA,cAAA;EACA,WAAA;EACA,yBAAA;EjCRA,YAAA;EAGA,yBAAA;;AiCQA,MAAC;AACD,MAAC;EACC,WAAA;EACA,qBAAA;EACA,eAAA;EjCfF,YAAA;EAGA,yBAAA;;AiCoBA,MAAM;EACJ,UAAA;EACA,eAAA;EACA,uBAAA;EACA,SAAA;EACA,wBAAA;;ACrBJ;EACE,gBAAA;;AAIF;EACE,aAAA;EACA,gBAAA;EACA,eAAA;EACA,MAAA;EACA,QAAA;EACA,SAAA;EACA,OAAA;EACA,aAAA;EACA,iCAAA;EAIA,UAAA;;AAGA,MAAC,KAAM;EvD+GP,mBAAmB,kBAAnB;EACI,eAAe,kBAAf;EACC,cAAc,kBAAd;EACG,WAAW,kBAAX;EAkER,mDAAA;EACG,6CAAA;EACE,yCAAA;EACG,mCAAA;;AuDnLR,MAAC,GAAI;EvD2GL,mBAAmB,eAAnB;EACI,eAAe,eAAf;EACC,cAAc,eAAd;EACG,WAAW,eAAX;;AuD5GV,WAAY;EACV,kBAAA;EACA,gBAAA;;AAIF;EACE,kBAAA;EACA,WAAA;EACA,YAAA;;AAIF;EACE,kBAAA;EACA,sBAAA;EACA,sBAAA;EACA,oCAAA;EACA,kBAAA;EvDaA,gDAAA;EACQ,wCAAA;EuDZR,4BAAA;EAEA,UAAA;;AAIF;EACE,eAAA;EACA,MAAA;EACA,QAAA;EACA,SAAA;EACA,OAAA;EACA,aAAA;EACA,sBAAA;;AAEA,eAAC;ElCrED,UAAA;EAGA,wBAAA;;AkCmEA,eAAC;ElCtED,YAAA;EAGA,yBAAA;;AkCwEF;EACE,aAAA;EACA,gCAAA;;AAIF,aAAc;EACZ,gBAAA;;AAIF;EACE,SAAA;EACA,uBAAA;;AAKF;EACE,kBAAA;EACA,aAAA;;AAIF;EACE,aAAA;EACA,iBAAA;EACA,6BAAA;;AAHF,aAOE,KAAK;EACH,gBAAA;EACA,gBAAA;;AATJ,aAYE,WAAW,KAAK;EACd,iBAAA;;AAbJ,aAgBE,WAAW;EACT,cAAA;;AAKJ;EACE,kBAAA;EACA,YAAA;EACA,WAAA;EACA,YAAA;EACA,gBAAA;;AAIF,QAAmC;EAEjC;IACE,YAAA;IACA,iBAAA;;EAEF;IvDvEA,iDAAA;IACQ,yCAAA;;EuD2ER;IAAY,YAAA;;;AAGd,QAAmC;EACjC;IAAY,YAAA;;;AC9Id;EACE,kBAAA;EACA,aAAA;EACA,cAAA;ECRA,axDgckE,yCwDhclE;EAEA,kBAAA;EACA,mBAAA;EACA,sBAAA;EACA,gBAAA;EACA,uBAAA;EACA,gBAAA;EACA,iBAAA;EACA,qBAAA;EACA,iBAAA;EACA,oBAAA;EACA,mBAAA;EACA,kBAAA;EACA,oBAAA;EACA,iBAAA;EDHA,eAAA;EnCVA,UAAA;EAGA,wBAAA;;AmCWA,QAAC;EnCdD,YAAA;EAGA,yBAAA;;AmCYA,QAAC;EAAU,gBAAA;EAAmB,cAAA;;AAC9B,QAAC;EAAU,gBAAA;EAAmB,cAAA;;AAC9B,QAAC;EAAU,eAAA;EAAmB,cAAA;;AAC9B,QAAC;EAAU,iBAAA;EAAmB,cAAA;;AAIhC;EACE,gBAAA;EACA,gBAAA;EACA,WAAA;EACA,kBAAA;EACA,yBAAA;EACA,kBAAA;;AAIF;EACE,kBAAA;EACA,QAAA;EACA,SAAA;EACA,yBAAA;EACA,mBAAA;;AAIA,QAAC,IAAK;EACJ,SAAA;EACA,SAAA;EACA,iBAAA;EACA,uBAAA;EACA,yBAAA;;AAEF,QAAC,SAAU;EACT,SAAA;EACA,UAAA;EACA,mBAAA;EACA,uBAAA;EACA,yBAAA;;AAEF,QAAC,UAAW;EACV,SAAA;EACA,SAAA;EACA,mBAAA;EACA,uBAAA;EACA,yBAAA;;AAEF,QAAC,MAAO;EACN,QAAA;EACA,OAAA;EACA,gBAAA;EACA,2BAAA;EACA,2BAAA;;AAEF,QAAC,KAAM;EACL,QAAA;EACA,QAAA;EACA,gBAAA;EACA,2BAAA;EACA,0BAAA;;AAEF,QAAC,OAAQ;EACP,MAAA;EACA,SAAA;EACA,iBAAA;EACA,uBAAA;EACA,4BAAA;;AAEF,QAAC,YAAa;EACZ,MAAA;EACA,UAAA;EACA,gBAAA;EACA,uBAAA;EACA,4BAAA;;AAEF,QAAC,aAAc;EACb,MAAA;EACA,SAAA;EACA,gBAAA;EACA,uBAAA;EACA,4BAAA;;AE7FJ;EACE,kBAAA;EACA,MAAA;EACA,OAAA;EACA,aAAA;EACA,aAAA;EACA,gBAAA;EACA,YAAA;EDXA,axDgckE,yCwDhclE;EAEA,kBAAA;EACA,mBAAA;EACA,sBAAA;EACA,gBAAA;EACA,uBAAA;EACA,gBAAA;EACA,iBAAA;EACA,qBAAA;EACA,iBAAA;EACA,oBAAA;EACA,mBAAA;EACA,kBAAA;EACA,oBAAA;EACA,iBAAA;ECAA,eAAA;EAEA,sBAAA;EACA,4BAAA;EACA,sBAAA;EACA,sBAAA;EACA,kBAAA;E1D8CA,iDAAA;EACQ,yCAAA;;A0D3CR,QAAC;EAAW,iBAAA;;AACZ,QAAC;EAAW,iBAAA;;AACZ,QAAC;EAAW,gBAAA;;AACZ,QAAC;EAAW,kBAAA;;AAGd;EACE,SAAA;EACA,iBAAA;EACA,eAAA;EACA,yBAAA;EACA,gCAAA;EACA,0BAAA;;AAGF;EACE,iBAAA;;AAQA,QADO;AAEP,QAFO,SAEN;EACC,kBAAA;EACA,cAAA;EACA,QAAA;EACA,SAAA;EACA,yBAAA;EACA,mBAAA;;AAGJ,QAAS;EACP,kBAAA;;AAEF,QAAS,SAAQ;EACf,kBAAA;EACA,SAAS,EAAT;;AAIA,QAAC,IAAK;EACJ,SAAA;EACA,kBAAA;EACA,sBAAA;EACA,yBAAA;EACA,sBAAA;EACA,aAAA;;AACA,QAPD,IAAK,SAOH;EACC,SAAS,GAAT;EACA,WAAA;EACA,kBAAA;EACA,sBAAA;EACA,sBAAA;;AAGJ,QAAC,MAAO;EACN,QAAA;EACA,WAAA;EACA,iBAAA;EACA,oBAAA;EACA,2BAAA;EACA,wBAAA;;AACA,QAPD,MAAO,SAOL;EACC,SAAS,GAAT;EACA,SAAA;EACA,aAAA;EACA,oBAAA;EACA,wBAAA;;AAGJ,QAAC,OAAQ;EACP,SAAA;EACA,kBAAA;EACA,mBAAA;EACA,4BAAA;EACA,yBAAA;EACA,UAAA;;AACA,QAPD,OAAQ,SAON;EACC,SAAS,GAAT;EACA,QAAA;EACA,kBAAA;EACA,mBAAA;EACA,yBAAA;;AAIJ,QAAC,KAAM;EACL,QAAA;EACA,YAAA;EACA,iBAAA;EACA,qBAAA;EACA,0BAAA;EACA,uBAAA;;AACA,QAPD,KAAM,SAOJ;EACC,SAAS,GAAT;EACA,UAAA;EACA,qBAAA;EACA,uBAAA;EACA,aAAA;;AtDzHN;EACE,kBAAA;;AAGF;EACE,kBAAA;EACA,gBAAA;EACA,WAAA;;AAHF,eAKE;EACE,aAAA;EACA,kBAAA;EJ6KF,yCAAA;EACK,oCAAA;EACG,iCAAA;;AItLV,eAKE,QAME;AAXJ,eAKE,QAOE,IAAI;EAEF,cAAA;;AAIF;EAkPJ,eA/PE;IJoMA,sDAAA;IACG,gDAAA;IACE,4CAAA;IACG,sCAAA;IA7JR,mCAAA;IACG,gCAAA;IACK,2BAAA;IA+GR,2BAAA;IACG,wBAAA;IACK,mBAAA;;EI3IJ,eAlBJ,QAkBK;EACD,eAnBJ,QAmBK,OAAO;IJkHZ,mBAAmB,uBAAnB;IACQ,WAAW,uBAAX;IIjHF,OAAA;;EAEF,eAvBJ,QAuBK;EACD,eAxBJ,QAwBK,OAAO;IJ6GZ,mBAAmB,wBAAnB;IACQ,WAAW,wBAAX;II5GF,OAAA;;EAEF,eA5BJ,QA4BK,KAAK;EACN,eA7BJ,QA6BK,KAAK;EACN,eA9BJ,QA8BK;IJuGL,mBAAmB,oBAAnB;IACQ,WAAW,oBAAX;IItGF,OAAA;;;AArCR,eA0CE;AA1CF,eA2CE;AA3CF,eA4CE;EACE,cAAA;;AA7CJ,eAgDE;EACE,OAAA;;AAjDJ,eAoDE;AApDF,eAqDE;EACE,kBAAA;EACA,MAAA;EACA,WAAA;;AAxDJ,eA2DE;EACE,UAAA;;AA5DJ,eA8DE;EACE,WAAA;;AA/DJ,eAiEE,QAAO;AAjET,eAkEE,QAAO;EACL,OAAA;;AAnEJ,eAsEE,UAAS;EACP,WAAA;;AAvEJ,eAyEE,UAAS;EACP,UAAA;;AAQJ;EACE,kBAAA;EACA,MAAA;EACA,OAAA;EACA,SAAA;EACA,UAAA;EiB9FA,YAAA;EAGA,yBAAA;EjB6FA,eAAA;EACA,WAAA;EACA,kBAAA;EACA,yCAAA;EACA,kCAAA;;AAKA,iBAAC;EyCnGC,kBAAkB,gFAAlB;EACA,kBAAkB,2EAAlB;EACA,kBAAkB,4EAAlB;EACA,2BAAA;EACA,QAAQ,8GAAR;;AzCkGF,iBAAC;EACC,UAAA;EACA,QAAA;EyCxGA,kBAAkB,gFAAlB;EACA,kBAAkB,2EAAlB;EACA,kBAAkB,4EAAlB;EACA,2BAAA;EACA,QAAQ,8GAAR;;AzCyGF,iBAAC;AACD,iBAAC;EACC,UAAA;EACA,WAAA;EACA,qBAAA;EiBvHF,YAAA;EAGA,yBAAA;;AjBsFF,iBAmCE;AAnCF,iBAoCE;AApCF,iBAqCE;AArCF,iBAsCE;EACE,kBAAA;EACA,QAAA;EACA,iBAAA;EACA,UAAA;EACA,qBAAA;;AA3CJ,iBA6CE;AA7CF,iBA8CE;EACE,SAAA;EACA,kBAAA;;AAhDJ,iBAkDE;AAlDF,iBAmDE;EACE,UAAA;EACA,mBAAA;;AArDJ,iBAuDE;AAvDF,iBAwDE;EACE,WAAA;EACA,YAAA;EACA,cAAA;EACA,kBAAA;;AAKA,iBADF,WACG;EACC,SAAS,OAAT;;AAIF,iBADF,WACG;EACC,SAAS,OAAT;;AAUN;EACE,kBAAA;EACA,YAAA;EACA,SAAA;EACA,WAAA;EACA,UAAA;EACA,iBAAA;EACA,eAAA;EACA,gBAAA;EACA,kBAAA;;AATF,oBAWE;EACE,qBAAA;EACA,WAAA;EACA,YAAA;EACA,WAAA;EACA,mBAAA;EACA,sBAAA;EACA,mBAAA;EACA,eAAA;EAWA,yBAAA;EACA,kCAAA;;AA/BJ,oBAiCE;EACE,SAAA;EACA,WAAA;EACA,YAAA;EACA,sBAAA;;AAOJ;EACE,kBAAA;EACA,SAAA;EACA,UAAA;EACA,YAAA;EACA,WAAA;EACA,iBAAA;EACA,oBAAA;EACA,WAAA;EACA,kBAAA;EACA,yCAAA;;AACA,iBAAE;EACA,iBAAA;;AAMJ,mBAA8C;EAG5C,iBACE;EADF,iBAEE;EAFF,iBAGE;EAHF,iBAIE;IACE,WAAA;IACA,YAAA;IACA,iBAAA;IACA,eAAA;;EARJ,iBAUE;EAVF,iBAWE;IACE,kBAAA;;EAZJ,iBAcE;EAdF,iBAeE;IACE,mBAAA;;EAKJ;IACE,SAAA;IACA,UAAA;IACA,oBAAA;;EAIF;IACE,YAAA;;;AuD9PF,SAAC;AACD,SAAC;ArDkMH,cACE,GqDpMC;ArDmMH,cACE,GqDnMC;AhDLH,UgDIG;AhDJH,UgDKG;AhDeH,gBgDhBG;AhDgBH,gBgDfG;AhDwBH,IgDzBG;AhDyBH,IgDxBG;A3CuhBH,gBAqBE,Y2C7iBC;A3CwhBH,gBAqBE,Y2C5iBC;ArCoBH,YqCrBG;ArCqBH,YqCpBG;ArCiIH,mBAWE,aqC7IC;ArCkIH,mBAWE,aqC5IC;A9BNH,I8BKG;A9BLH,I8BMG;A7BJH,O6BGG;A7BHH,O6BIG;A7BgBH,c6BjBG;A7BiBH,c6BhBG;A7BmCH,gB6BpCG;A7BoCH,gB6BnCG;AtBTH,MsBQG;AtBRH,MsBSG;ATCH,WSFG;ATEH,WSDG;AJgEH,aIjEG;AJiEH,aIhEG;AJwFH,aIzFG;AJyFH,aIxFG;EACC,SAAS,GAAT;EACA,cAAA;;AAEF,SAAC;ArD8LH,cACE,GqD/LC;AhDTH,UgDSG;AhDWH,gBgDXG;AhDoBH,IgDpBG;A3CmhBH,gBAqBE,Y2CxiBC;ArCgBH,YqChBG;ArC6HH,mBAWE,aqCxIC;A9BVH,I8BUG;A7BRH,O6BQG;A7BYH,c6BZG;A7B+BH,gB6B/BG;AtBbH,MsBaG;ATHH,WSGG;AJ4DH,aI5DG;AJoFH,aIpFG;EACC,WAAA;;A3BRJ;E4BRE,cAAA;EACA,iBAAA;EACA,kBAAA;;A5BSF;EACE,uBAAA;;AAEF;EACE,sBAAA;;AAQF;EACE,wBAAA;;AAEF;EACE,yBAAA;;AAEF;EACE,kBAAA;;AAEF;E6BzBE,WAAA;EACA,kBAAA;EACA,iBAAA;EACA,6BAAA;EACA,SAAA;;A7B8BF;EACE,wBAAA;;AAOF;EACE,eAAA;;A8BjCF;EACE,mBAAA;;AAMF;AACA;AACA;AACA;ECjBE,wBAAA;;ADqBF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;EACE,wBAAA;;AAIA,QAAmC;EAgJrC;IC7LE,yBAAA;;EACA,KAAK;IAAK,yBAAA;;EACV,EAAE;IAAQ,kBAAA;;EACV,EAAE;EACF,EAAE;IAAQ,mBAAA;;;AD8CV,QAAmC;EA2IrC;IA1II,yBAAA;;;AAIF,QAAmC;EAsIrC;IArII,0BAAA;;;AAIF,QAAmC;EAiIrC;IAhII,qBAAA;;;AAKF,QAAmC,uBAAgC;EA2HrE;IC7LE,yBAAA;;EACA,KAAK;IAAK,yBAAA;;EACV,EAAE;IAAQ,kBAAA;;EACV,EAAE;EACF,EAAE;IAAQ,mBAAA;;;ADmEV,QAAmC,uBAAgC;EAsHrE;IArHI,yBAAA;;;AAIF,QAAmC,uBAAgC;EAiHrE;IAhHI,0BAAA;;;AAIF,QAAmC,uBAAgC;EA4GrE;IA3GI,qBAAA;;;AAKF,QAAmC,uBAAgC;EAsGrE;IC7LE,yBAAA;;EACA,KAAK;IAAK,yBAAA;;EACV,EAAE;IAAQ,kBAAA;;EACV,EAAE;EACF,EAAE;IAAQ,mBAAA;;;ADwFV,QAAmC,uBAAgC;EAiGrE;IAhGI,yBAAA;;;AAIF,QAAmC,uBAAgC;EA4FrE;IA3FI,0BAAA;;;AAIF,QAAmC,uBAAgC;EAuFrE;IAtFI,qBAAA;;;AAKF,QAAmC;EAiFrC;IC7LE,yBAAA;;EACA,KAAK;IAAK,yBAAA;;EACV,EAAE;IAAQ,kBAAA;;EACV,EAAE;EACF,EAAE;IAAQ,mBAAA;;;AD6GV,QAAmC;EA4ErC;IA3EI,yBAAA;;;AAIF,QAAmC;EAuErC;IAtEI,0BAAA;;;AAIF,QAAmC;EAkErC;IAjEI,qBAAA;;;AAKF,QAAmC;EA4DrC;ICrLE,wBAAA;;;AD8HA,QAAmC,uBAAgC;EAuDrE;ICrLE,wBAAA;;;ADmIA,QAAmC,uBAAgC;EAkDrE;ICrLE,wBAAA;;;ADwIA,QAAmC;EA6CrC;ICrLE,wBAAA;;;ADmJF;ECnJE,wBAAA;;ADsJA;EA+BF;IC7LE,yBAAA;;EACA,KAAK;IAAK,yBAAA;;EACV,EAAE;IAAQ,kBAAA;;EACV,EAAE;EACF,EAAE;IAAQ,mBAAA;;;AD8JZ;EACE,wBAAA;;AAEA;EAwBF;IAvBI,yBAAA;;;AAGJ;EACE,wBAAA;;AAEA;EAiBF;IAhBI,0BAAA;;;AAGJ;EACE,wBAAA;;AAEA;EAUF;IATI,qBAAA;;;AAKF;EAIF;ICrLE,wBAAA;;;;;;;;;ACVF;EACE,aAAa,aAAb;EACA,SAAS,2CAAT;EACA,SAAS,mDAAkE,OAAO,0BAC5E,8CAA6D,OAAO,cACpE,6CAA4D,OAAO,aACnE,4CAA2D,OAAO,iBAClE,+DAA8E,OAAO,MAJ3F;EAMA,mBAAA;EACA,kBAAA;;ACVF,CAAC;EACC,qBAAA;EACA,6CAAA;EACA,kBAAA;EACA,oBAAA;EACA,mCAAA;EACA,kCAAA;;;ACLF,CAAC,EAAgB;EACf,uBAAA;EACA,mBAAA;EACA,oBAAA;;AAEF,CAAC,EAAgB;EAAM,cAAA;;AACvB,CAAC,EAAgB;EAAM,cAAA;;AACvB,CAAC,EAAgB;EAAM,cAAA;;AACvB,CAAC,EAAgB;EAAM,cAAA;;ACVvB,CAAC,EAAgB;EACf,mBAAA;EACA,kBAAA;;ACDF,CAAC,EAAgB;EACf,eAAA;EACA,yBAAA;EACA,qBAAA;;AAHF,CAAC,EAAgB,GAIf;EAAO,kBAAA;;AAET,CAAC,EAAgB;EACf,kBAAA;EACA,mBAAA;EACA,mBAAA;EACA,iBAAA;EACA,kBAAA;;AACA,CAND,EAAgB,GAMd,CAAC,EAAgB;EAChB,mBAAA;;AnCbJ,CAAC,EAAgB;EACf,yBAAA;EACA,yBAAA;EACA,mBAAA;;AAGF,CAAC,EAAgB;EAAa,WAAA;;AAC9B,CAAC,EAAgB;EAAc,YAAA;;AAG7B,CADD,EACE,CAAC,EAAgB;EAAa,kBAAA;;AAC/B,CAFD,EAEE,CAAC,EAAgB;EAAc,iBAAA;;;AAIlC;EAAc,YAAA;;AACd;EAAa,WAAA;;AAGX,CADD,EACE;EAAa,kBAAA;;AACd,CAFD,EAEE;EAAc,iBAAA;;AoCpBjB,CAAC,EAAgB;EACf,6CAAA;EACQ,qCAAA;;AAGV,CAAC,EAAgB;EACf,uCAAuC,QAAvC;EACQ,+BAA+B,QAA/B;;AAGV;EACE;IACE,mBAAmB,YAAnB;IACQ,WAAW,YAAX;;EAEV;IACE,mBAAmB,cAAnB;IACQ,WAAW,cAAX;;;AAIZ;EACE;IACE,mBAAmB,YAAnB;IACQ,WAAW,YAAX;;EAEV;IACE,mBAAmB,cAAnB;IACQ,WAAW,cAAX;;;AC5BZ,CAAC,EAAgB;ECWf,YAAY,0DAAZ;EACA,mBAAmB,aAAnB;EACI,eAAe,aAAf;EACI,WAAW,aAAX;;ADbV,CAAC,EAAgB;ECUf,YAAY,0DAAZ;EACA,mBAAmB,cAAnB;EACI,eAAe,cAAf;EACI,WAAW,cAAX;;ADZV,CAAC,EAAgB;ECSf,YAAY,0DAAZ;EACA,mBAAmB,cAAnB;EACI,eAAe,cAAf;EACI,WAAW,cAAX;;ADVV,CAAC,EAAgB;ECcf,YAAY,oEAAZ;EACA,mBAAmB,YAAnB;EACI,eAAe,YAAf;EACI,WAAW,YAAX;;ADhBV,CAAC,EAAgB;ECaf,YAAY,oEAAZ;EACA,mBAAmB,YAAnB;EACI,eAAe,YAAf;EACI,WAAW,YAAX;;ADXV,KAAM,EAAC,EAAgB;AACvB,KAAM,EAAC,EAAgB;AACvB,KAAM,EAAC,EAAgB;AACvB,KAAM,EAAC,EAAgB;AACvB,KAAM,EAAC,EAAgB;EACrB,YAAA;;AEfF,CAAC,EAAgB;EACf,kBAAA;EACA,qBAAA;EACA,UAAA;EACA,WAAA;EACA,gBAAA;EACA,sBAAA;;AAEF,CAAC,EAAgB;AAAW,CAAC,EAAgB;EAC3C,kBAAA;EACA,OAAA;EACA,WAAA;EACA,kBAAA;;AAEF,CAAC,EAAgB;EAAY,oBAAA;;AAC7B,CAAC,EAAgB;EAAY,cAAA;;AAC7B,CAAC,EAAgB;EAAW,WAAA;;;;AChB5B,CAAC,EAAgB,MAAM;EAAU,SCwUlB,ODxUkB;;AACjC,CAAC,EAAgB,MAAM;EAAU,SC2dlB,OD3dkB;;AACjC,CAAC,EAAgB,OAAO;EAAU,SC0jBlB,OD1jBkB;;AAClC,CAAC,EAAgB,WAAW;EAAU,SCsOlB,ODtOkB;;AACtC,CAAC,EAAgB,MAAM;EAAU,SCuWlB,ODvWkB;;AACjC,CAAC,EAAgB,KAAK;EAAU,SCknBlB,ODlnBkB;;AAChC,CAAC,EAAgB,OAAO;EAAU,SCsnBlB,ODtnBkB;;AAClC,CAAC,EAAgB,KAAK;EAAU,SCytBlB,ODztBkB;;AAChC,CAAC,EAAgB,KAAK;EAAU,SCmRlB,ODnRkB;;AAChC,CAAC,EAAgB,SAAS;EAAU,SCupBlB,ODvpBkB;;AACpC,CAAC,EAAgB,GAAG;EAAU,SCqpBlB,ODrpBkB;;AAC9B,CAAC,EAAgB,QAAQ;EAAU,SCspBlB,ODtpBkB;;AACnC,CAAC,EAAgB,MAAM;EAAU,SCyIlB,ODzIkB;;AACjC,CAAC,EAAgB,OAAO;AACxB,CAAC,EAAgB,MAAM;AACvB,CAAC,EAAgB,MAAM;EAAU,SCqqBlB,ODrqBkB;;AACjC,CAAC,EAAgB,YAAY;EAAU,SC8iBlB,OD9iBkB;;AACvC,CAAC,EAAgB,aAAa;EAAU,SC4iBlB,OD5iBkB;;AACxC,CAAC,EAAgB,UAAU;EAAU,SC4flB,OD5fkB;;AACrC,CAAC,EAAgB,OAAO;EAAU,SCikBlB,ODjkBkB;;AAClC,CAAC,EAAgB,KAAK;AACtB,CAAC,EAAgB,IAAI;EAAU,SCgKlB,ODhKkB;;AAC/B,CAAC,EAAgB,QAAQ;EAAU,SC+qBlB,OD/qBkB;;AACnC,CAAC,EAAgB,KAAK;EAAU,SCwVlB,ODxVkB;;AAChC,CAAC,EAAgB,OAAO;EAAU,SCuPlB,ODvPkB;;AAClC,CAAC,EAAgB,QAAQ;EAAU,SCgJlB,ODhJkB;;AACnC,CAAC,EAAgB,KAAK;EAAU,SCmhBlB,ODnhBkB;;AAChC,CAAC,EAAgB,SAAS;EAAU,SCgMlB,ODhMkB;;AACpC,CAAC,EAAgB,oBAAoB;EAAU,SCYlB,ODZkB;;AAC/C,CAAC,EAAgB,kBAAkB;EAAU,SCclB,ODdkB;;AAC7C,CAAC,EAAgB,MAAM;EAAU,SCqWlB,ODrWkB;;AACjC,CAAC,EAAgB,cAAc;EAAU,SCwelB,ODxekB;;AACzC,CAAC,EAAgB,aAAa;AAC9B,CAAC,EAAgB,OAAO;EAAU,SCsgBlB,ODtgBkB;;AAClC,CAAC,EAAgB,QAAQ;EAAU,SCggBlB,ODhgBkB;;AACnC,CAAC,EAAgB,SAAS;EAAU,SCwYlB,ODxYkB;;AACpC,CAAC,EAAgB,KAAK;EAAU,SC2YlB,OD3YkB;;AAChC,CAAC,EAAgB,KAAK;EAAU,SC4PlB,OD5PkB;;AAChC,CAAC,EAAgB,WAAW;EAAU,SCoUlB,ODpUkB;;AACtC,CAAC,EAAgB,WAAW;EAAU,SCitBlB,ODjtBkB;;AACtC,CAAC,EAAgB,YAAY;EAAU,SC+sBlB,OD/sBkB;;AACvC,CAAC,EAAgB,UAAU;EAAU,SCgtBlB,ODhtBkB;;AACrC,CAAC,EAAgB,OAAO;EAAU,SCyelB,ODzekB;;AAClC,CAAC,EAAgB,QAAQ;EAAU,SCwBlB,ODxBkB;;AACnC,CAAC,EAAgB,IAAI;EAAU,SCymBlB,ODzmBkB;;AAC/B,CAAC,EAAgB,KAAK;EAAU,SCymBlB,ODzmBkB;;AAChC,CAAC,EAAgB,KAAK;EAAU,SCyDlB,ODzDkB;;AAChC,CAAC,EAAgB,SAAS;EAAU,SCyDlB,ODzDkB;;AACpC,CAAC,EAAgB,MAAM;EAAU,SC+dlB,OD/dkB;;AACjC,CAAC,EAAgB,OAAO;EAAU,SC2ElB,OD3EkB;;AAClC,CAAC,EAAgB,KAAK;EAAU,SC0PlB,OD1PkB;;AAChC,CAAC,EAAgB,KAAK;EAAU,SCiDlB,ODjDkB;;AAChC,CAAC,EAAgB,OAAO;EAAU,SC0VlB,OD1VkB;;AAClC,CAAC,EAAgB,YAAY;EAAU,SCwmBlB,ODxmBkB;;AACvC,CAAC,EAAgB,WAAW;EAAU,SCwmBlB,ODxmBkB;;AACtC,CAAC,EAAgB,WAAW;EAAU,SCpClB,ODoCkB;;AACtC,CAAC,EAAgB,aAAa;EAAU,SCvClB,ODuCkB;;AACxC,CAAC,EAAgB,YAAY;EAAU,SCrClB,ODqCkB;;AACvC,CAAC,EAAgB,cAAc;EAAU,SCxClB,ODwCkB;;AACzC,CAAC,EAAgB,KAAK;EAAU,SC+WlB,OD/WkB;;AAChC,CAAC,EAAgB,OAAO;AACxB,CAAC,EAAgB,QAAQ;EAAU,SC2alB,OD3akB;;AACnC,CAAC,EAAgB,OAAO;EAAU,SCsUlB,ODtUkB;;AAClC,CAAC,EAAgB,aAAa;EAAU,SCkrBlB,ODlrBkB;;AACxC,CAAC,EAAgB,MAAM;AACvB,CAAC,EAAgB,MAAM;AACvB,CAAC,EAAgB,UAAU;EAAU,SC0blB,OD1bkB;;AACrC,CAAC,EAAgB,OAAO;EAAU,SCkblB,ODlbkB;;AAClC,CAAC,EAAgB,WAAW;EAAU,SCwXlB,ODxXkB;;AACtC,CAAC,EAAgB,OAAO;EAAU,SCtDlB,ODsDkB;;AAClC,CAAC,EAAgB,KAAK;EAAU,SCmnBlB,ODnnBkB;;AAChC,CAAC,EAAgB,KAAK;AACtB,CAAC,EAAgB,gBAAgB;EAAU,SC+alB,OD/akB;;AAC3C,CAAC,EAAgB,eAAe;EAAU,SC8flB,OD9fkB;;AAC1C,CAAC,EAAgB,eAAe;EAAU,SC+ElB,OD/EkB;;AAC1C,CAAC,EAAgB,OAAO;EAAU,SCzBlB,ODyBkB;;AAClC,CAAC,EAAgB,cAAc;EAAU,SCmjBlB,ODnjBkB;;AACzC,CAAC,EAAgB,cAAc;EAAU,SCqLlB,ODrLkB;;AACzC,CAAC,EAAgB,SAAS;EAAU,SClBlB,ODkBkB;;AACpC,CAAC,EAAgB,KAAK;EAAU,SCsblB,ODtbkB;;AAChC,CAAC,EAAgB,MAAM;EAAU,SCgalB,ODhakB;;AACjC,CAAC,EAAgB,KAAK;EAAU,SCmjBlB,ODnjBkB;;AAChC,CAAC,EAAgB,QAAQ;EAAU,SC+NlB,OD/NkB;;AACnC,CAAC,EAAgB,aAAa;EAAU,SCgLlB,ODhLkB;;AACxC,CAAC,EAAgB,aAAa;EAAU,SC4iBlB,OD5iBkB;;AACxC,CAAC,EAAgB,MAAM;EAAU,SC+IlB,OD/IkB;;AACjC,CAAC,EAAgB,aAAa;EAAU,SCyElB,ODzEkB;;AACxC,CAAC,EAAgB,cAAc;EAAU,SCyElB,ODzEkB;;AACzC,CAAC,EAAgB,YAAY;EAAU,SCkblB,ODlbkB;;AACvC,CAAC,EAAgB,aAAa;EAAU,SCuXlB,ODvXkB;;AACxC,CAAC,EAAgB,aAAa;EAAU,SC2lBlB,OD3lBkB;;AACxC,CAAC,EAAgB,aAAa;EAAU,SC2DlB,OD3DkB;;AACxC,CAAC,EAAgB,gBAAgB;EAAU,SCyblB,ODzbkB;;AAC3C,CAAC,EAAgB,YAAY;EAAU,SC0SlB,OD1SkB;;AACvC,CAAC,EAAgB,WAAW;EAAU,SC0GlB,OD1GkB;;AACtC,CAAC,EAAgB,eAAe;EAAU,SCulBlB,ODvlBkB;;AAC1C,CAAC,EAAgB,eAAe;EAAU,SCuDlB,ODvDkB;;AAC1C,CAAC,EAAgB,IAAI;EAAU,SCnClB,ODmCkB;;AAC/B,CAAC,EAAgB,WAAW;EAAU,SCnDlB,ODmDkB;;AACtC,CAAC,EAAgB,YAAY;EAAU,SCnDlB,ODmDkB;;AACvC,CAAC,EAAgB,SAAS;EAAU,SCnDlB,ODmDkB;;AACpC,CAAC,EAAgB,WAAW;EAAU,SCvDlB,ODuDkB;;AACtC,CAAC,EAAgB,aAAa;AAC9B,CAAC,EAAgB,MAAM;EAAU,SC4dlB,OD5dkB;;AACjC,CAAC,EAAgB,OAAO;EAAU,SC8IlB,OD9IkB;;AAClC,CAAC,EAAgB,SAAS;EAAU,SCsFlB,ODtFkB;;AACpC,CAAC,EAAgB,KAAK;EAAU,SC+ZlB,OD/ZkB;;AAChC,CAAC,EAAgB,MAAM;EAAU,SCoWlB,ODpWkB;;AACjC,CAAC,EAAgB,SAAS;EAAU,SCpDlB,ODoDkB;;AACpC,CAAC,EAAgB,mBAAmB;EAAU,SCuIlB,ODvIkB;;AAC9C,CAAC,EAAgB,KAAK;EAAU,SCkNlB,ODlNkB;;AAChC,CAAC,EAAgB,KAAK;EAAU,SC0SlB,OD1SkB;;AAChC,CAAC,EAAgB,KAAK;EAAU,SC6KlB,OD7KkB;;AAChC,CAAC,EAAgB,IAAI;EAAU,SCyIlB,ODzIkB;;AAC/B,CAAC,EAAgB,UAAU;EAAU,SCyIlB,ODzIkB;;AACrC,CAAC,EAAgB,QAAQ;AACzB,CAAC,EAAgB,qBAAqB;EAAU,SCiIlB,ODjIkB;;AAChD,CAAC,EAAgB,MAAM;EAAU,SC+YlB,OD/YkB;;AACjC,CAAC,EAAgB,SAAS;EAAU,SCAlB,ODAkB;;AACpC,CAAC,EAAgB,OAAO;EAAU,SCoalB,ODpakB;;AAClC,CAAC,EAAgB,QAAQ;EAAU,SCgElB,ODhEkB;;AACnC,CAAC,EAAgB,OAAO;EAAU,SC6TlB,OD7TkB;;AAClC,CAAC,EAAgB,WAAW;EAAU,SCuClB,ODvCkB;;AACtC,CAAC,EAAgB,aAAa;EAAU,SCmClB,ODnCkB;;AACxC,CAAC,EAAgB,QAAQ;EAAU,SC+alB,OD/akB;;AACnC,CAAC,EAAgB,cAAc;EAAU,SCkdlB,ODldkB;;AACzC,CAAC,EAAgB,OAAO;EAAU,SC0KlB,OD1KkB;;AAClC,CAAC,EAAgB,YAAY;EAAU,SC2KlB,OD3KkB;;AACvC,CAAC,EAAgB,SAAS;EAAU,SC3ElB,OD2EkB;;AACpC,CAAC,EAAgB,SAAS;EAAU,SC7ElB,OD6EkB;;AACpC,CAAC,EAAgB,YAAY;AAC7B,CAAC,EAAgB,UAAU;EAAU,SClElB,ODkEkB;;AACrC,CAAC,EAAgB,eAAe;EAAU,SC+kBlB,OD/kBkB;;AAC1C,CAAC,EAAgB,gBAAgB;EAAU,SC4HlB,OD5HkB;;AAC3C,CAAC,EAAgB,aAAa;EAAU,SCTlB,ODSkB;;AACxC,CAAC,EAAgB,IAAI;EAAU,SC2QlB,OD3QkB;;AAC/B,CAAC,EAAgB,MAAM;AACvB,CAAC,EAAgB,KAAK;EAAU,SC6ClB,OD7CkB;;AAChC,CAAC,EAAgB,SAAS;EAAU,SCkDlB,ODlDkB;;AACpC,CAAC,EAAgB,YAAY;EAAU,SCsiBlB,ODtiBkB;;AACvC,CAAC,EAAgB,cAAc;EAAU,SCoiBlB,ODpiBkB;;AACzC,CAAC,EAAgB,UAAU;EAAU,SC2elB,OD3ekB;;AACrC,CAAC,EAAgB,QAAQ;EAAU,SC8NlB,OD9NkB;;AACnC,CAAC,EAAgB,SAAS;EAAU,SCoclB,ODpckB;;AACpC,CAAC,EAAgB,gBAAgB;EAAU,SCuRlB,ODvRkB;;AAC3C,CAAC,EAAgB,WAAW;EAAU,SC6hBlB,OD7hBkB;;AACtC,CAAC,EAAgB,cAAc;EAAU,SCsGlB,ODtGkB;;AACzC,CAAC,EAAgB,QAAQ;EAAU,SC8blB,OD9bkB;;AACnC,CAAC,EAAgB,OAAO;EAAU,SCqjBlB,ODrjBkB;;AAClC,CAAC,EAAgB,cAAc;EAAU,SCgLlB,ODhLkB;;AACzC,CAAC,EAAgB,OAAO;EAAU,SCukBlB,ODvkBkB;;AAClC,CAAC,EAAgB,QAAQ;EAAU,SCqQlB,ODrQkB;;AACnC,CAAC,EAAgB,MAAM;EAAU,SCiWlB,ODjWkB;;AACjC,CAAC,EAAgB,SAAS;EAAU,SC2dlB,OD3dkB;;AACpC,CAAC,EAAgB,WAAW;EAAU,SCjDlB,ODiDkB;;AACtC,CAAC,EAAgB,aAAa;EAAU,SC+VlB,OD/VkB;;AACxC,CAAC,EAAgB,QAAQ;EAAU,SCsjBlB,ODtjBkB;;AACnC,CAAC,EAAgB,WAAW;AAC5B,CAAC,EAAgB,SAAS;EAAU,SCgGlB,ODhGkB;;AACpC,CAAC,EAAgB,OAAO;EAAU,SCoKlB,ODpKkB;;AAClC,CAAC,EAAgB,OAAO;EAAU,SC0jBlB,OD1jBkB;;AAClC,CAAC,EAAgB,YAAY;EAAU,SCoClB,ODpCkB;;AACvC,CAAC,EAAgB,KAAK;AACtB,CAAC,EAAgB,IAAI;EAAU,SC+YlB,OD/YkB;;AAC/B,CAAC,EAAgB,MAAM;EAAU,SCoMlB,ODpMkB;;AACjC,CAAC,EAAgB,SAAS;EAAU,SCrDlB,ODqDkB;;AACpC,CAAC,EAAgB,KAAK;EAAU,SChFlB,ODgFkB;;AAChC,CAAC,EAAgB,YAAY;EAAU,SCrBlB,ODqBkB;;AACvC,CAAC,EAAgB,aAAa;EAAU,SCoLlB,ODpLkB;;AACxC,CAAC,EAAgB,YAAY;EAAU,SCkLlB,ODlLkB;;AACvC,CAAC,EAAgB,UAAU;EAAU,SCmLlB,ODnLkB;;AACrC,CAAC,EAAgB,YAAY;EAAU,SC+KlB,OD/KkB;;AACvC,CAAC,EAAgB,kBAAkB;EAAU,SCrIlB,ODqIkB;;AAC7C,CAAC,EAAgB,mBAAmB;EAAU,SCjIlB,ODiIkB;;AAC9C,CAAC,EAAgB,gBAAgB;EAAU,SCjIlB,ODiIkB;;AAC3C,CAAC,EAAgB,kBAAkB;EAAU,SCzIlB,ODyIkB;;AAC7C,CAAC,EAAgB,MAAM;EAAU,SC2JlB,OD3JkB;;AACjC,CAAC,EAAgB,OAAO;EAAU,SC6lBlB,OD7lBkB;;AAClC,CAAC,EAAgB,MAAM;EAAU,SCqelB,ODrekB;;AACjC,CAAC,EAAgB,OAAO;EAAU,SCyGlB,ODzGkB;;AAClC,CAAC,EAAgB,UAAU;EAAU,SCzElB,ODyEkB;;AACrC,CAAC,EAAgB,WAAW;EAAU,SClIlB,ODkIkB;;AACtC,CAAC,EAAgB,MAAM;AACvB,CAAC,EAAgB,MAAM;EAAU,SCijBlB,ODjjBkB;;AACjC,CAAC,EAAgB,MAAM;AACvB,CAAC,EAAgB,KAAK;EAAU,SC4OlB,OD5OkB;;AAChC,CAAC,EAAgB,MAAM;EAAU,SCdlB,ODckB;;AACjC,CAAC,EAAgB,MAAM;EAAU,SC0GlB,OD1GkB;;AACjC,CAAC,EAAgB,IAAI;AACrB,CAAC,EAAgB,SAAS;EAAU,SC6XlB,OD7XkB;;AACpC,CAAC,EAAgB,KAAK;AACtB,CAAC,EAAgB,QAAQ;EAAU,SC2FlB,OD3FkB;;AACnC,CAAC,EAAgB,UAAU;EAAU,SC6SlB,OD7SkB;;AACrC,CAAC,EAAgB,KAAK;AACtB,CAAC,EAAgB,SAAS;EAAU,SCqGlB,ODrGkB;;AACpC,CAAC,EAAgB,OAAO;EAAU,SCgblB,ODhbkB;;AAClC,CAAC,EAAgB,QAAQ;AACzB,CAAC,EAAgB,QAAQ;AACzB,CAAC,EAAgB,KAAK;EAAU,SClIlB,ODkIkB;;AAChC,CAAC,EAAgB,QAAQ;EAAU,SCsOlB,ODtOkB;;AACnC,CAAC,EAAgB,QAAQ;EAAU,SCoOlB,ODpOkB;;AACnC,CAAC,EAAgB,cAAc;EAAU,SC+blB,OD/bkB;;AACzC,CAAC,EAAgB,UAAU;EAAU,SC2gBlB,OD3gBkB;;AACrC,CAAC,EAAgB,MAAM;EAAU,SCuclB,ODvckB;;AACjC,CAAC,EAAgB,MAAM;EAAU,SCyOlB,ODzOkB;;AACjC,CAAC,EAAgB,MAAM;EAAU,SC6flB,OD7fkB;;AACjC,CAAC,EAAgB,UAAU;EAAU,SCmTlB,ODnTkB;;AACrC,CAAC,EAAgB,iBAAiB;EAAU,SCoTlB,ODpTkB;;AAC5C,CAAC,EAAgB,mBAAmB;EAAU,SCgIlB,ODhIkB;;AAC9C,CAAC,EAAgB,YAAY;EAAU,SC4HlB,OD5HkB;;AACvC,CAAC,EAAgB,MAAM;EAAU,SCqQlB,ODrQkB;;AACjC,CAAC,EAAgB,WAAW;EAAU,SCpFlB,ODoFkB;;AACtC,CAAC,EAAgB,SAAS;EAAU,SC9ElB,OD8EkB;;AACpC,CAAC,EAAgB,WAAW;EAAU,SCrFlB,ODqFkB;;AACtC,CAAC,EAAgB,YAAY;EAAU,SCrFlB,ODqFkB;;AACvC,CAAC,EAAgB,QAAQ;EAAU,SChClB,ODgCkB;;AACnC,CAAC,EAAgB,SAAS;AAC1B,CAAC,EAAgB,KAAK;EAAU,SC0YlB,OD1YkB;;AAChC,CAAC,EAAgB,UAAU;AAC3B,CAAC,EAAgB,UAAU;EAAU,SC8YlB,OD9YkB;;AACrC,CAAC,EAAgB,QAAQ;AACzB,CAAC,EAAgB,SAAS;EAAU,SC2YlB,OD3YkB;;AACpC,CAAC,EAAgB,SAAS;EAAU,SCUlB,ODVkB;;AACpC,CAAC,EAAgB,SAAS;EAAU,SCuMlB,ODvMkB;;AACpC,CAAC,EAAgB,YAAY;AAC7B,CAAC,EAAgB,KAAK;EAAU,SCqflB,ODrfkB;;AAChC,CAAC,EAAgB,MAAM;AACvB,CAAC,EAAgB,MAAM;EAAU,SCoFlB,ODpFkB;;AACjC,CAAC,EAAgB,UAAU;AAC3B,CAAC,EAAgB,WAAW;EAAU,SC+alB,OD/akB;;AACtC,CAAC,EAAgB,UAAU;EAAU,SC7ClB,OD6CkB;;AACrC,CAAC,EAAgB,WAAW;EAAU,SC1ClB,OD0CkB;;AACtC,CAAC,EAAgB,MAAM;AACvB,CAAC,EAAgB,KAAK;EAAU,SCpIlB,ODoIkB;;AAChC,CAAC,EAAgB,QAAQ;EAAU,SC6WlB,OD7WkB;;AACnC,CAAC,EAAgB,SAAS;EAAU,SCyelB,ODzekB;;AACpC,CAAC,EAAgB,MAAM;AACvB,CAAC,EAAgB,UAAU;EAAU,SCrElB,ODqEkB;;AACrC,CAAC,EAAgB,YAAY;EAAU,SCqLlB,ODrLkB;;AACvC,CAAC,EAAgB,SAAS;EAAU,SCGlB,ODHkB;;AACpC,CAAC,EAAgB,eAAe;EAAU,SCnElB,ODmEkB;;AAC1C,CAAC,EAAgB,aAAa;EAAU,SCnElB,ODmEkB;;AACxC,CAAC,EAAgB,QAAQ;EAAU,SCiflB,ODjfkB;;AACnC,CAAC,EAAgB,YAAY;EAAU,SC8YlB,OD9YkB;;AACvC,CAAC,EAAgB,SAAS;EAAU,SCyZlB,ODzZkB;;AACpC,CAAC,EAAgB,OAAO;EAAU,SC9JlB,OD8JkB;;AAClC,CAAC,EAAgB,OAAO;EAAU,SClElB,ODkEkB;;AAClC,CAAC,EAAgB,QAAQ;EAAU,SC1ClB,OD0CkB;;AACnC,CAAC,EAAgB,YAAY;EAAU,SC8BlB,OD9BkB;;AACvC,CAAC,EAAgB,WAAW;EAAU,SC1IlB,OD0IkB;;AACtC,CAAC,EAAgB,WAAW;EAAU,SCsHlB,ODtHkB;;AACtC,CAAC,EAAgB,UAAU;EAAU,SCrOlB,ODqOkB;;AACrC,CAAC,EAAgB,OAAO;EAAU,SC4MlB,OD5MkB;;AAClC,CAAC,EAAgB,YAAY;EAAU,SCUlB,ODVkB;;AACvC,CAAC,EAAgB,KAAK;EAAU,SC3KlB,OD2KkB;;AAChC,CAAC,EAAgB,SAAS;EAAU,SCuFlB,ODvFkB;;AACpC,CAAC,EAAgB,YAAY;EAAU,SC2QlB,OD3QkB;;AACvC,CAAC,EAAgB,kBAAkB;EAAU,SCrOlB,ODqOkB;;AAC7C,CAAC,EAAgB,mBAAmB;EAAU,SCrOlB,ODqOkB;;AAC9C,CAAC,EAAgB,gBAAgB;EAAU,SCrOlB,ODqOkB;;AAC3C,CAAC,EAAgB,kBAAkB;EAAU,SCzOlB,ODyOkB;;AAC7C,CAAC,EAAgB,WAAW;EAAU,SCrOlB,ODqOkB;;AACtC,CAAC,EAAgB,YAAY;EAAU,SCrOlB,ODqOkB;;AACvC,CAAC,EAAgB,SAAS;EAAU,SCrOlB,ODqOkB;;AACpC,CAAC,EAAgB,WAAW;EAAU,SCzOlB,ODyOkB;;AACtC,CAAC,EAAgB,QAAQ;EAAU,SCpDlB,ODoDkB;;AACnC,CAAC,EAAgB,OAAO;EAAU,SC4IlB,OD5IkB;;AAClC,CAAC,EAAgB,OAAO;EAAU,SCwYlB,ODxYkB;;AAClC,CAAC,EAAgB,aAAa;AAC9B,CAAC,EAAgB,OAAO;EAAU,SCuMlB,ODvMkB;;AAClC,CAAC,EAAgB,SAAS;EAAU,SCzGlB,ODyGkB;;AACpC,CAAC,EAAgB,WAAW;EAAU,SCyQlB,ODzQkB;;AACtC,CAAC,EAAgB,YAAY;EAAU,SCyQlB,ODzQkB;;AACvC,CAAC,EAAgB,QAAQ;EAAU,SC+VlB,OD/VkB;;AACnC,CAAC,EAAgB,OAAO;EAAU,SC9GlB,OD8GkB;;AAClC,CAAC,EAAgB,WAAW;AAC5B,CAAC,EAAgB,MAAM;EAAU,SCoRlB,ODpRkB;;AACjC,CAAC,EAAgB,WAAW;EAAU,SC+ClB,OD/CkB;;AACtC,CAAC,EAAgB,SAAS;EAAU,SCmBlB,ODnBkB;;AACpC,CAAC,EAAgB,cAAc;EAAU,SCoBlB,ODpBkB;;AACzC,CAAC,EAAgB,QAAQ;EAAU,SCqUlB,ODrUkB;;AACnC,CAAC,EAAgB,QAAQ;EAAU,SC2BlB,OD3BkB;;AACnC,CAAC,EAAgB,MAAM;EAAU,SCgLlB,ODhLkB;;AACjC,CAAC,EAAgB,QAAQ;EAAU,SC2BlB,OD3BkB;;AACnC,CAAC,EAAgB,WAAW;EAAU,SCuHlB,ODvHkB;;AACtC,CAAC,EAAgB,OAAO;EAAU,SCMlB,ODNkB;;AAClC,CAAC,EAAgB,eAAe;EAAU,SCIlB,ODJkB;;AAC1C,CAAC,EAAgB,SAAS;EAAU,SC6XlB,OD7XkB;;AACpC,CAAC,EAAgB,KAAK;EAAU,SChHlB,ODgHkB;;AAChC,CAAC,EAAgB,eAAe;AAChC,CAAC,EAAgB,UAAU;EAAU,SCuQlB,ODvQkB;;AACrC,CAAC,EAAgB,gBAAgB;AACjC,CAAC,EAAgB,eAAe;AAChC,CAAC,EAAgB,YAAY;EAAU,SCsVlB,ODtVkB;;AACvC,CAAC,EAAgB,eAAe;EAAU,SCwIlB,ODxIkB;;AAC1C,CAAC,EAAgB,KAAK;EAAU,SChGlB,ODgGkB;;AAChC,CAAC,EAAgB,UAAU;EAAU,SCvHlB,ODuHkB;;AACrC,CAAC,EAAgB,OAAO;AACxB,CAAC,EAAgB,aAAa;EAAU,SCtJlB,ODsJkB;;AACxC,CAAC,EAAgB,SAAS;EAAU,SCyOlB,ODzOkB;;AACpC,CAAC,EAAgB,KAAK;EAAU,SC0FlB,OD1FkB;;AAChC,CAAC,EAAgB,YAAY;EAAU,SC1DlB,OD0DkB;;AACvC,CAAC,EAAgB,YAAY;EAAU,SCkWlB,ODlWkB;;AACvC,CAAC,EAAgB,UAAU;EAAU,SC4VlB,OD5VkB;;AACrC,CAAC,EAAgB,OAAO;EAAU,SClElB,ODkEkB;;AAClC,CAAC,EAAgB,aAAa;EAAU,SCgOlB,ODhOkB;;AACxC,CAAC,EAAgB,WAAW;EAAU,SC2JlB,OD3JkB;;AACtC,CAAC,EAAgB,iBAAiB;EAAU,SC2JlB,OD3JkB;;AAC5C,CAAC,EAAgB,OAAO;EAAU,SCsRlB,ODtRkB;;AAClC,CAAC,EAAgB,WAAW;EAAU,SC5LlB,OD4LkB;;AACtC,CAAC,EAAgB,kBAAkB;EAAU,SCxBlB,ODwBkB;;AAC7C,CAAC,EAAgB,OAAO;EAAU,SCuPlB,ODvPkB;;AAClC,CAAC,EAAgB,OAAO;EAAU,SC6IlB,OD7IkB;;AAClC,CAAC,EAAgB,oBAAoB;EAAU,SC9JlB,OD8JkB;;AAC/C,CAAC,EAAgB,qBAAqB;EAAU,SC9JlB,OD8JkB;;AAChD,CAAC,EAAgB,kBAAkB;EAAU,SC9JlB,OD8JkB;;AAC7C,CAAC,EAAgB,oBAAoB;EAAU,SClKlB,ODkKkB;;AAC/C,CAAC,EAAgB,MAAM;EAAU,SC8DlB,OD9DkB;;AACjC,CAAC,EAAgB,KAAK;EAAU,SCrHlB,ODqHkB;;AAChC,CAAC,EAAgB,OAAO;EAAU,SCvSlB,ODuSkB;;AAClC,CAAC,EAAgB,WAAW;EAAU,SC2ZlB,OD3ZkB;;AACtC,CAAC,EAAgB,SAAS;EAAU,SChNlB,ODgNkB;;AACpC,CAAC,EAAgB,WAAW;EAAU,SC7FlB,OD6FkB;;AACtC,CAAC,EAAgB,WAAW;EAAU,SC7FlB,OD6FkB;;AACtC,CAAC,EAAgB,WAAW;EAAU,SC+OlB,OD/OkB;;AACtC,CAAC,EAAgB,YAAY;EAAU,SCiMlB,ODjMkB;;AACvC,CAAC,EAAgB,OAAO;EAAU,SC6WlB,OD7WkB;;AAClC,CAAC,EAAgB,aAAa;EAAU,SC0IlB,OD1IkB;;AACxC,CAAC,EAAgB,eAAe;EAAU,SC0IlB,OD1IkB;;AAC1C,CAAC,EAAgB,SAAS;EAAU,SCqFlB,ODrFkB;;AACpC,CAAC,EAAgB,WAAW;EAAU,SCmFlB,ODnFkB;;AACtC,CAAC,EAAgB,aAAa;EAAU,SCnLlB,ODmLkB;;AACxC,CAAC,EAAgB,cAAc;EAAU,SC0KlB,OD1KkB;;AACzC,CAAC,EAAgB,qBAAqB;EAAU,SCpFlB,ODoFkB;;AAChD,CAAC,EAAgB,aAAa;EAAU,SCwPlB,ODxPkB;;AACxC,CAAC,EAAgB,QAAQ;EAAU,SCjJlB,ODiJkB;;AACnC,CAAC,EAAgB,YAAY;AAC7B,CAAC,EAAgB,oBAAoB;EAAU,SC/MlB,OD+MkB;;AAC/C,CAAC,EAAgB,UAAU;AAC3B,CAAC,EAAgB,kBAAkB;EAAU,SC9MlB,OD8MkB;;AAC7C,CAAC,EAAgB,aAAa;AAC9B,CAAC,EAAgB,qBAAqB;EAAU,SCjNlB,ODiNkB;;AAChD,CAAC,EAAgB,KAAK;AACtB,CAAC,EAAgB,IAAI;EAAU,SCvGlB,ODuGkB;;AAC/B,CAAC,EAAgB,IAAI;EAAU,SChClB,ODgCkB;;AAC/B,CAAC,EAAgB,OAAO;AACxB,CAAC,EAAgB,IAAI;EAAU,SCqYlB,ODrYkB;;AAC/B,CAAC,EAAgB,MAAM;AACvB,CAAC,EAAgB,IAAI;EAAU,SC4ClB,OD5CkB;;AAC/B,CAAC,EAAgB,IAAI;AACrB,CAAC,EAAgB,IAAI;AACrB,CAAC,EAAgB,IAAI;AACrB,CAAC,EAAgB,IAAI;EAAU,SCgDlB,ODhDkB;;AAC/B,CAAC,EAAgB,MAAM;AACvB,CAAC,EAAgB,OAAO;AACxB,CAAC,EAAgB,IAAI;EAAU,SCiNlB,ODjNkB;;AAC/B,CAAC,EAAgB,IAAI;AACrB,CAAC,EAAgB,IAAI;EAAU,SC+ClB,OD/CkB;;AAC/B,CAAC,EAAgB,QAAQ;AACzB,CAAC,EAAgB,IAAI;EAAU,SC3PlB,OD2PkB;;AAC/B,CAAC,EAAgB,KAAK;EAAU,SChGlB,ODgGkB;;AAChC,CAAC,EAAgB,UAAU;EAAU,SCpFlB,ODoFkB;;AACrC,CAAC,EAAgB,eAAe;EAAU,SC0PlB,OD1PkB;;AAC1C,CAAC,EAAgB,gBAAgB;EAAU,SC0PlB,OD1PkB;;AAC3C,CAAC,EAAgB,gBAAgB;EAAU,SC0PlB,OD1PkB;;AAC3C,CAAC,EAAgB,iBAAiB;EAAU,SC0PlB,OD1PkB;;AAC5C,CAAC,EAAgB,iBAAiB;EAAU,SC6PlB,OD7PkB;;AAC5C,CAAC,EAAgB,kBAAkB;EAAU,SC6PlB,OD7PkB;;AAC7C,CAAC,EAAgB,UAAU;EAAU,SCkUlB,ODlUkB;;AACrC,CAAC,EAAgB,YAAY;EAAU,SC8TlB,OD9TkB;;AACvC,CAAC,EAAgB,eAAe;EAAU,SCyalB,ODzakB;;AAC1C,CAAC,EAAgB,QAAQ;EAAU,SCsalB,ODtakB;;AACnC,CAAC,EAAgB,KAAK;EAAU,SC2ZlB,OD3ZkB;;AAChC,CAAC,EAAgB,YAAY;EAAU,SC2ZlB,OD3ZkB;;AACvC,CAAC,EAAgB,aAAa;EAAU,SCoalB,ODpakB;;AACxC,CAAC,EAAgB,QAAQ;EAAU,SCxJlB,ODwJkB;;AACnC,CAAC,EAAgB,eAAe;EAAU,SC8PlB,OD9PkB;;AAC1C,CAAC,EAAgB,UAAU;EAAU,SCgBlB,ODhBkB;;AACrC,CAAC,EAAgB,OAAO;EAAU,SCpFlB,ODoFkB;;AAClC,CAAC,EAAgB,IAAI;EAAU,SC3WlB,OD2WkB;;AAC/B,CAAC,EAAgB,UAAU;EAAU,SC/RlB,OD+RkB;;AACrC,CAAC,EAAgB,iBAAiB;EAAU,SC/RlB,OD+RkB;;AAC5C,CAAC,EAAgB,OAAO;EAAU,SC+UlB,OD/UkB;;AAClC,CAAC,EAAgB,cAAc;EAAU,SC+UlB,OD/UkB;;AACzC,CAAC,EAAgB,gBAAgB;EAAU,SCgDlB,ODhDkB;;AAC3C,CAAC,EAAgB,cAAc;EAAU,SCkDlB,ODlDkB;;AACzC,CAAC,EAAgB,gBAAgB;EAAU,SC+ClB,OD/CkB;;AAC3C,CAAC,EAAgB,iBAAiB;EAAU,SC+ClB,OD/CkB;;AAC5C,CAAC,EAAgB,MAAM;EAAU,SCjWlB,ODiWkB;;AACjC,CAAC,EAAgB,QAAQ;EAAU,SCmYlB,ODnYkB;;AACnC,CAAC,EAAgB,QAAQ;EAAU,SC7WlB,OD6WkB;;AACnC,CAAC,EAAgB,MAAM;EAAU,SCkClB,ODlCkB;;AACjC,CAAC,EAAgB,SAAS;EAAU,SC5KlB,OD4KkB;;AACpC,CAAC,EAAgB,MAAM;EAAU,SCgNlB,ODhNkB;;AACjC,CAAC,EAAgB,WAAW;EAAU,SCxFlB,ODwFkB;;AACtC,CAAC,EAAgB,OAAO;EAAU,SC4TlB,OD5TkB;;AAClC,CAAC,EAAgB,OAAO;EAAU,SCtIlB,ODsIkB;;AAClC,CAAC,EAAgB,KAAK;EAAU,SC6ClB,OD7CkB;;AAChC,CAAC,EAAgB,OAAO;AACxB,CAAC,EAAgB,SAAS;EAAU,SC5DlB,OD4DkB;;AACpC,CAAC,EAAgB,MAAM;EAAU,SC8PlB,OD9PkB;;AACjC,CAAC,EAAgB,OAAO;EAAU,SCuElB,ODvEkB;;AAClC,CAAC,EAAgB,QAAQ;EAAU,SC9WlB,OD8WkB;;AACnC,CAAC,EAAgB,IAAI;EAAU,SCtSlB,ODsSkB;;AAC/B,CAAC,EAAgB,GAAG;EAAU,SCiWlB,ODjWkB;;AAC9B,CAAC,EAAgB,MAAM;EAAU,SCuWlB,ODvWkB;;AACjC,CAAC,EAAgB,OAAO;EAAU,SC+IlB,OD/IkB;;AAClC,CAAC,EAAgB,UAAU;EAAU,SCkFlB,ODlFkB;;AACrC,CAAC,EAAgB,eAAe;EAAU,SC6NlB,OD7NkB;;AAC1C,CAAC,EAAgB,qBAAqB;EAAU,SC/WlB,OD+WkB;;AAChD,CAAC,EAAgB,oBAAoB;EAAU,SCjXlB,ODiXkB;;AAC/C,CAAC,EAAgB,YAAY;AAC7B,CAAC,EAAgB,oBAAoB;EAAU,SCzRlB,ODyRkB;;AAC/C,CAAC,EAAgB,aAAa;EAAU,SCnMlB,ODmMkB;;AACxC,CAAC,EAAgB,WAAW;EAAU,SCiWlB,ODjWkB;;AACtC,CAAC,EAAgB,aAAa;EAAU,SCoVlB,ODpVkB;;AACxC,CAAC,EAAgB,aAAa;AAC9B,CAAC,EAAgB,IAAI;EAAU,SC0SlB,OD1SkB;;AAC/B,CAAC,EAAgB,cAAc;EAAU,SC0GlB,OD1GkB;;AACzC,CAAC,EAAgB,cAAc;EAAU,SC4MlB,OD5MkB;;AACzC,CAAC,EAAgB,MAAM;EAAU,SCsLlB,ODtLkB;;AACjC,CAAC,EAAgB,gBAAgB;EAAU,SCzLlB,ODyLkB;;AAC3C,CAAC,EAAgB,UAAU;EAAU,SCoWlB,ODpWkB;;AACrC,CAAC,EAAgB,OAAO;EAAU,SC8DlB,OD9DkB;;AAClC,CAAC,EAAgB,YAAY;AAC7B,CAAC,EAAgB,KAAK;AACtB,CAAC,EAAgB,WAAW;EAAU,SC8SlB,OD9SkB;;AACtC,CAAC,EAAgB,aAAa;AAC9B,CAAC,EAAgB,eAAe;EAAU,SC1FlB,OD0FkB;;AAC1C,CAAC,EAAgB,MAAM;EAAU,SCsWlB,ODtWkB;;AACjC,CAAC,EAAgB,OAAO;EAAU,SClGlB,ODkGkB;;AAClC,CAAC,EAAgB,OAAO;EAAU,SCgHlB,ODhHkB;;AAClC,CAAC,EAAgB,cAAc;EAAU,SCiHlB,ODjHkB;;AACzC,CAAC,EAAgB,mBAAmB;EAAU,SCyNlB,ODzNkB;;AAC9C,CAAC,EAAgB,YAAY;EAAU,SCuNlB,ODvNkB;;AACvC,CAAC,EAAgB,UAAU;EAAU,SC/NlB,OD+NkB;;AACrC,CAAC,EAAgB,KAAK;EAAU,SC5NlB,OD4NkB;;AAChC,CAAC,EAAgB,cAAc;EAAU,SC2ElB,OD3EkB;;AACzC,CAAC,EAAgB,eAAe;EAAU,SCyElB,ODzEkB;;AAC1C,CAAC,EAAgB,OAAO;EAAU,SCvNlB,ODuNkB;;AAClC,CAAC,EAAgB,OAAO;EAAU,SCzClB,ODyCkB;;AAClC,CAAC,EAAgB,SAAS;EAAU,SCpClB,ODoCkB;;AACpC,CAAC,EAAgB,IAAI;EAAU,SCtLlB,ODsLkB;;AAC/B,CAAC,EAAgB,SAAS;EAAU,SC7UlB,OD6UkB;;AACpC,CAAC,EAAgB,MAAM;EAAU,SC1RlB,OD0RkB;;AACjC,CAAC,EAAgB,IAAI;EAAU,SCsDlB,ODtDkB;;AAC/B,CAAC,EAAgB,MAAM;EAAU,SCmLlB,ODnLkB;;AACjC,CAAC,EAAgB,KAAK;EAAU,SCrPlB,ODqPkB;;AAChC,CAAC,EAAgB,MAAM;EAAU,SCrPlB,ODqPkB;;AACjC,CAAC,EAAgB,QAAQ;EAAU,SC7WlB,OD6WkB;;AACnC,CAAC,EAAgB,eAAe;EAAU,SC7WlB,OD6WkB;;AAC1C,CAAC,EAAgB,MAAM;EAAU,SC0LlB,OD1LkB;;AACjC,CAAC,EAAgB,aAAa;EAAU,SC0LlB,OD1LkB;;AACxC,CAAC,EAAgB,QAAQ;EAAU,SCyFlB,ODzFkB;;AACnC,CAAC,EAAgB,WAAW;AAC5B,CAAC,EAAgB,IAAI;EAAU,SCzUlB,ODyUkB;;AAC/B,CAAC,EAAgB,IAAI;AACrB,CAAC,EAAgB,KAAK;EAAU,SC+MlB,OD/MkB;;AAChC,CAAC,EAAgB,KAAK;EAAU,SC4PlB,OD5PkB;;AAChC,CAAC,EAAgB,QAAQ;EAAU,SCuKlB,ODvKkB;;AACnC,CAAC,EAAgB,WAAW;EAAU,SCtPlB,ODsPkB;;AACtC,CAAC,EAAgB,WAAW;EAAU,SCiKlB,ODjKkB;;AACtC,CAAC,EAAgB,SAAS;EAAU,SC9PlB,OD8PkB;;AACpC,CAAC,EAAgB,WAAW;EAAU,SC/LlB,OD+LkB;;AACtC,CAAC,EAAgB,YAAY;EAAU,SCxLlB,ODwLkB;;AACvC,CAAC,EAAgB,aAAa;EAAU,SCrMlB,ODqMkB;;AACxC,CAAC,EAAgB,kBAAkB;EAAU,SC/LlB,OD+LkB;;AAC7C,CAAC,EAAgB,aAAa;AAC9B,CAAC,EAAgB,eAAe;AAChC,CAAC,EAAgB,aAAa;EAAU,SCxMlB,ODwMkB;;AACxC,CAAC,EAAgB,WAAW;AAC5B,CAAC,EAAgB,eAAe;EAAU,SC9MlB,OD8MkB;;AAC1C,CAAC,EAAgB,aAAa;AAC9B,CAAC,EAAgB,aAAa;EAAU,SC/MlB,OD+MkB;;AACxC,CAAC,EAAgB,aAAa;AAC9B,CAAC,EAAgB,aAAa;EAAU,SCpMlB,ODoMkB;;AACxC,CAAC,EAAgB,YAAY;EAAU,SCjNlB,ODiNkB;;AACvC,CAAC,EAAgB,KAAK;EAAU,SCuRlB,ODvRkB;;AAChC,CAAC,EAAgB,QAAQ;EAAU,SC5SlB,OD4SkB;;AACnC,CAAC,EAAgB,SAAS;EAAU,SC9ElB,OD8EkB;;AACpC,CAAC,EAAgB,UAAU;AAC3B,CAAC,EAAgB,UAAU;AAC3B,CAAC,EAAgB,WAAW;AAC5B,CAAC,EAAgB,QAAQ;AACzB,CAAC,EAAgB,UAAU;EAAU,SCnElB,ODmEkB;;AACrC,CAAC,EAAgB,eAAe;EAAU,SC/TlB,OD+TkB;;AAC1C,CAAC,EAAgB,GAAG;AACpB,CAAC,EAAgB,WAAW;AAC5B,CAAC,EAAgB,MAAM;EAAU,SCqDlB,ODrDkB;;AACjC,CAAC,EAAgB,GAAG;AACpB,CAAC,EAAgB,OAAO;EAAU,SCnQlB,ODmQkB;;AAClC,CAAC,EAAgB,WAAW;EAAU,SCzKlB,ODyKkB;;AACtC,CAAC,EAAgB,IAAI;EAAU,SC3KlB,OD2KkB;;AAC/B,CAAC,EAAgB,oBAAoB;AACrC,CAAC,EAAgB,UAAU;AAC3B,CAAC,EAAgB,YAAY;EAAU,SCxJlB,ODwJkB;;AACvC,CAAC,EAAgB,cAAc;EAAU,SC2KlB,OD3KkB;;AACzC,CAAC,EAAgB,GAAG;EAAU,SCiClB,ODjCkB;;AAC9B,CAAC,EAAgB,OAAO;AACxB,CAAC,EAAgB,OAAO;EAAU,SC0QlB,OD1QkB;;AAClC,CAAC,EAAgB,KAAK;AACtB,CAAC,EAAgB,YAAY;EAAU,SCVlB,ODUkB;;AACvC,CAAC,EAAgB,OAAO;AACxB,CAAC,EAAgB,cAAc;EAAU,SCXlB,ODWkB;;AACzC,CAAC,EAAgB,QAAQ;EAAU,SC1IlB,OD0IkB;;AACnC,CAAC,EAAgB,YAAY;EAAU,SClVlB,ODkVkB;;AACvC,CAAC,EAAgB,OAAO;EAAU,SCjJlB,ODiJkB;;AAClC,CAAC,EAAgB,UAAU;EAAU,SCblB,ODakB;;AACrC,CAAC,EAAgB,QAAQ;EAAU,SC+FlB,OD/FkB;;AACnC,CAAC,EAAgB,UAAU;EAAU,SCuElB,ODvEkB;;AACrC,CAAC,EAAgB,iBAAiB;EAAU,SCuElB,ODvEkB;;AAC5C,CAAC,EAAgB,KAAK;EAAU,SCzZlB,ODyZkB;;AAChC,CAAC,EAAgB,cAAc;AAC/B,CAAC,EAAgB,SAAS;EAAU,SC5MlB,OD4MkB;;AACpC,CAAC,EAAgB,IAAI;EAAU,SC0MlB,OD1MkB;;AAC/B,CAAC,EAAgB,WAAW;EAAU,SCxalB,ODwakB;;AACtC,CAAC,EAAgB,KAAK;EAAU,SCIlB,ODJkB;;AAChC,CAAC,EAAgB,WAAW;EAAU,SCuFlB,ODvFkB;;AACtC,CAAC,EAAgB,OAAO;EAAU,SC2MlB,OD3MkB;;AAClC,CAAC,EAAgB,KAAK;EAAU,SC+QlB,OD/QkB;;AAChC,CAAC,EAAgB,YAAY;EAAU,SCzClB,ODyCkB;;AACvC,CAAC,EAAgB,KAAK;EAAU,SCwPlB,ODxPkB;;AAChC,CAAC,EAAgB,WAAW;EAAU,SCrZlB,ODqZkB;;AACtC,CAAC,EAAgB,OAAO;EAAU,SCvBlB,ODuBkB;;AAClC,CAAC,EAAgB,cAAc;EAAU,SC3LlB,OD2LkB;;AACzC,CAAC,EAAgB,QAAQ;EAAU,SC5XlB,OD4XkB;;AACnC,CAAC,EAAgB,cAAc;EAAU,SChYlB,ODgYkB;;AACzC,CAAC,EAAgB,YAAY;EAAU,SCnYlB,ODmYkB;;AACvC,CAAC,EAAgB,QAAQ;EAAU,SCtYlB,ODsYkB;;AACnC,CAAC,EAAgB,UAAU;EAAU,SClYlB,ODkYkB;;AACrC,CAAC,EAAgB,UAAU;EAAU,SClYlB,ODkYkB;;AACrC,CAAC,EAAgB,WAAW;EAAU,SC3blB,OD2bkB;;AACtC,CAAC,EAAgB,aAAa;EAAU,SC3blB,OD2bkB;;AACxC,CAAC,EAAgB,MAAM;EAAU,SC+KlB,OD/KkB;;AACjC,CAAC,EAAgB,UAAU;EAAU,SCnVlB,ODmVkB;;AACrC,CAAC,EAAgB,GAAG;EAAU,SC9dlB,OD8dkB;;AAC9B,CAAC,EAAgB,WAAW;EAAU,SC5RlB,OD4RkB;;AACtC,CAAC,EAAgB,YAAY;EAAU,SC/ClB,OD+CkB;;AACvC,CAAC,EAAgB,cAAc;EAAU,SC9blB,OD8bkB;;AACzC,CAAC,EAAgB,WAAW;EAAU,SCtflB,ODsfkB;;AACtC,CAAC,EAAgB,UAAU;EAAU,SC/BlB,OD+BkB;;AACrC,CAAC,EAAgB,WAAW;EAAU,SCzHlB,ODyHkB;;AACtC,CAAC,EAAgB,OAAO;EAAU,SCvIlB,ODuIkB;;AAClC,CAAC,EAAgB,cAAc;EAAU,SCvIlB,ODuIkB;;AACzC,CAAC,EAAgB,WAAW;EAAU,SC4JlB,OD5JkB;;AACtC,CAAC,EAAgB,UAAU;EAAU,SC4JlB,OD5JkB;;AACrC,CAAC,EAAgB,QAAQ;EAAU,SCxclB,ODwckB;;AACnC,CAAC,EAAgB,IAAI;EAAU,SCjblB,ODibkB;;AAC/B,CAAC,EAAgB,QAAQ;EAAU,SCvJlB,ODuJkB;;AACnC,CAAC,EAAgB,UAAU;EAAU,SC3gBlB,OD2gBkB;;AACrC,CAAC,EAAgB,GAAG;EAAU,SC7ZlB,OD6ZkB;;AAC9B,CAAC,EAAgB,OAAO;AACxB,CAAC,EAAgB,OAAO;AACxB,CAAC,EAAgB,IAAI;EAAU,SCzKlB,ODyKkB;;AAC/B,CAAC,EAAgB,SAAS;EAAU,SCpGlB,ODoGkB;;AACpC,CAAC,EAAgB,WAAW;EAAU,SCxblB,ODwbkB;;AACtC,CAAC,EAAgB,eAAe;EAAU,SC5WlB,OD4WkB;;AAC1C,CAAC,EAAgB,SAAS;EAAU,SC9VlB,OD8VkB;;AACpC,CAAC,EAAgB,SAAS;EAAU,SC9PlB,OD8PkB;;AACpC,CAAC,EAAgB,QAAQ;EAAU,SCrJlB,ODqJkB;;AACnC,CAAC,EAAgB,OAAO;EAAU,SCelB,ODfkB;;AAClC,CAAC,EAAgB,aAAa;EAAU,SC2BlB,OD3BkB;;AACxC,CAAC,EAAgB,YAAY;EAAU,SCoClB,ODpCkB;;AACvC,CAAC,EAAgB,SAAS;EAAU,SCqClB,ODrCkB;;AACpC,CAAC,EAAgB,UAAU;EAAU,SC5alB,OD4akB;;AACrC,CAAC,EAAgB,gBAAgB;EAAU,SC9alB,OD8akB;;AAC3C,CAAC,EAAgB,QAAQ;EAAU,SC/VlB,OD+VkB;;AACnC,CAAC,EAAgB,KAAK;EAAU,SCoBlB,ODpBkB;;AAChC,CAAC,EAAgB,YAAY;EAAU,SC8KlB,OD9KkB;;AACvC,CAAC,EAAgB,WAAW;EAAU,SC/FlB,OD+FkB;;AACtC,CAAC,EAAgB,YAAY;EAAU,SC6ElB,OD7EkB;;AACvC,CAAC,EAAgB,UAAU;EAAU,SC9MlB,OD8MkB;;AACrC,CAAC,EAAgB,MAAM;EAAU,SC+KlB,OD/KkB;;AACjC,CAAC,EAAgB,KAAK;EAAU,SC7HlB,OD6HkB;;AAChC,CAAC,EAAgB,QAAQ;EAAU,SCnHlB,ODmHkB;;AACnC,CAAC,EAAgB,SAAS;AAC1B,CAAC,EAAgB,YAAY;EAAU,SCkIlB,ODlIkB;;AACvC,CAAC,EAAgB,gBAAgB;EAAU,SCkIlB,ODlIkB;;AAC3C,CAAC,EAAgB,aAAa;EAAU,SC0KlB,OD1KkB;;AACxC,CAAC,EAAgB,YAAY;EAAU,SClIlB,ODkIkB;;AACvC,CAAC,EAAgB,WAAW;EAAU,SCyKlB,ODzKkB;;AACtC,CAAC,EAAgB,YAAY;EAAU,SCnIlB,ODmIkB;;AACvC,CAAC,EAAgB,cAAc;EAAU,SClIlB,ODkIkB;;AACzC,CAAC,EAAgB,cAAc;EAAU,SCpIlB,ODoIkB;;AACzC,CAAC,EAAgB,OAAO;EAAU,SC1GlB,OD0GkB;;AAClC,CAAC,EAAgB,WAAW;EAAU,SC7QlB,OD6QkB;;AACtC,CAAC,EAAgB,kBAAkB;EAAU,SC1UlB,OD0UkB;;AAC7C,CAAC,EAAgB,YAAY;EAAU,SCzElB,ODyEkB;;AACvC,CAAC,EAAgB,SAAS;EAAU,SCkLlB,ODlLkB;;AACpC,CAAC,EAAgB,OAAO;EAAU,SCXlB,ODWkB;;AAClC,CAAC,EAAgB,UAAU;EAAU,SCuJlB,ODvJkB;;AACrC,CAAC,EAAgB,WAAW;EAAU,SCwJlB,ODxJkB;;AACtC,CAAC,EAAgB,MAAM;AACvB,CAAC,EAAgB,IAAI;EAAU,SC/flB,OD+fkB;;AAC/B,CAAC,EAAgB,QAAQ;EAAU,SC4JlB,OD5JkB;;AACnC,CAAC,EAAgB,MAAM;EAAU,SC8GlB,OD9GkB;;AACjC,CAAC,EAAgB,OAAO;EAAU,SCwDlB,ODxDkB;;AAClC,CAAC,EAAgB,OAAO;EAAU,SC9IlB,OD8IkB;;AAClC,CAAC,EAAgB,GAAG;AACpB,CAAC,EAAgB,aAAa;EAAU,SC0LlB,OD1LkB;;AACxC,CAAC,EAAgB,cAAc;EAAU,SCjHlB,ODiHkB;;AACzC,CAAC,EAAgB,SAAS;EAAU,SCrHlB,ODqHkB;;AACpC,CAAC,EAAgB,aAAa;EAAU,SCnWlB,ODmWkB;;AACxC,CAAC,EAAgB,UAAU;AAC3B,CAAC,EAAgB,QAAQ;AACzB,CAAC,EAAgB,aAAa;EAAU,SC/gBlB,OD+gBkB;;AACxC,CAAC,EAAgB,UAAU;AAC3B,CAAC,EAAgB,uBAAuB;EAAU,SC9gBlB,OD8gBkB;;AAClD,CAAC,EAAgB,UAAU;AAC3B,CAAC,EAAgB,aAAa;EAAU,SClhBlB,ODkhBkB;;AACxC,CAAC,EAAgB,UAAU;AAC3B,CAAC,EAAgB,gBAAgB;EAAU,SCnhBlB,ODmhBkB;;AAC3C,CAAC,EAAgB,UAAU;AAC3B,CAAC,EAAgB,cAAc;EAAU,SCxhBlB,ODwhBkB;;AACzC,CAAC,EAAgB,cAAc;EAAU,SC3IlB,OD2IkB;;AACzC,CAAC,EAAgB,SAAS;EAAU,SC3OlB,OD2OkB;;AACpC,CAAC,EAAgB,aAAa;EAAU,SCxIlB,ODwIkB;;AACxC,CAAC,EAAgB,eAAe;EAAU,SCxIlB,ODwIkB;;AAC1C,CAAC,EAAgB,YAAY;EAAU,SCwBlB,ODxBkB;;AACvC,CAAC,EAAgB,cAAc;EAAU,SCwBlB,ODxBkB;;AACzC,CAAC,EAAgB,OAAO;EAAU,SC/dlB,OD+dkB;;AAClC,CAAC,EAAgB,eAAe;EAAU,SClelB,ODkekB;;AAC1C,CAAC,EAAgB,MAAM;EAAU,SCpclB,ODockB;;AACjC,CAAC,EAAgB,cAAc;EAAU,SCljBlB,ODkjBkB;;AACzC,CAAC,EAAgB,YAAY;EAAU,SCxPlB,ODwPkB;;AACvC,CAAC,EAAgB,YAAY;AAC7B,CAAC,EAAgB,gBAAgB;EAAU,SCzPlB,ODyPkB;;AAC3C,CAAC,EAAgB,YAAY;AAC7B,CAAC,EAAgB,eAAe;EAAU,SC7PlB,OD6PkB;;AAC1C,CAAC,EAAgB,YAAY;AAC7B,CAAC,EAAgB,cAAc;EAAU,SChQlB,ODgQkB;;AACzC,CAAC,EAAgB,UAAU;EAAU,SCrQlB,ODqQkB;;AACrC,CAAC,EAAgB,YAAY;AAC7B,CAAC,EAAgB,YAAY;EAAU,SCxRlB,ODwRkB;;AACvC,CAAC,EAAgB,YAAY;AAC7B,CAAC,EAAgB,aAAa;EAAU,SC7RlB,OD6RkB;;AACxC,CAAC,EAAgB,gBAAgB;EAAU,SC1RlB,OD0RkB;;AAC3C,CAAC,EAAgB,cAAc;EAAU,SCpSlB,ODoSkB;;AACzC,CAAC,EAAgB,aAAa;EAAU,SC3RlB,OD2RkB;;AACxC,CAAC,EAAgB,eAAe;EAAU,SC/RlB,OD+RkB;;AAC1C,CAAC,EAAgB,aAAa;EAAU,SCjSlB,ODiSkB;;AACxC,CAAC,EAAgB,UAAU;EAAU,SC+DlB,OD/DkB;;AACrC,CAAC,EAAgB,WAAW;EAAU,SC/FlB,OD+FkB;;AACtC,CAAC,EAAgB,iBAAiB;EAAU,SC/blB,OD+bkB;;AAC5C,CAAC,EAAgB,GAAG;EAAU,SCtUlB,ODsUkB;;AAC9B,CAAC,EAAgB,UAAU;EAAU,SCtUlB,ODsUkB;;AACrC,CAAC,EAAgB,YAAY;EAAU,SCkElB,ODlEkB;;AACvC,CAAC,EAAgB,cAAc;EAAU,SCrKlB,ODqKkB;;AACzC,CAAC,EAAgB,qBAAqB;EAAU,SCrKlB,ODqKkB;;AAChD,CAAC,EAAgB,WAAW;EAAU,SC5UlB,OD4UkB;;AACtC,CAAC,EAAgB,YAAY;EAAU,SCwHlB,ODxHkB;;AACvC,CAAC,EAAgB,OAAO;EAAU,SCnFlB,ODmFkB;;AAClC,CAAC,EAAgB,OAAO;EAAU,SCzelB,ODyekB;;AAClC,CAAC,EAAgB,QAAQ;EAAU,SC9WlB,OD8WkB;;AACnC,CAAC,EAAgB,MAAM;EAAU,SCxKlB,ODwKkB;;AACjC,CAAC,EAAgB,kBAAkB;EAAU,SCpQlB,ODoQkB;;AAC7C,CAAC,EAAgB,GAAG;AACpB,CAAC,EAAgB,WAAW;EAAU,SCSlB,ODTkB;;AACtC,CAAC,EAAgB,OAAO;EAAU,SCjdlB,ODidkB;;AAClC,CAAC,EAAgB,MAAM;EAAU,SCzoBlB,ODyoBkB;;AACjC,CAAC,EAAgB,OAAO;EAAU,SC/nBlB,OD+nBkB;;AAClC,CAAC,EAAgB,gBAAgB;EAAU,SC3hBlB,OD2hBkB;;AAC3C,CAAC,EAAgB,iBAAiB;EAAU,SC9hBlB,OD8hBkB;;AAC5C,CAAC,EAAgB,iBAAiB;EAAU,SC5hBlB,OD4hBkB;;AAC5C,CAAC,EAAgB,iBAAiB;EAAU,SCjiBlB,ODiiBkB;;AAC5C,CAAC,EAAgB,SAAS;EAAU,SCpRlB,ODoRkB;;AACpC,CAAC,EAAgB,QAAQ;EAAU,SC5NlB,OD4NkB;;AACnC,CAAC,EAAgB,UAAU;EAAU,SC5NlB,OD4NkB;;AACrC,CAAC,EAAgB,MAAM;EAAU,SC/NlB,OD+NkB;;AACjC,CAAC,EAAgB,IAAI;EAAU,SClOlB,ODkOkB;;AAC/B,CAAC,EAAgB,WAAW;EAAU,SCpelB,ODoekB;;AACtC,CAAC,EAAgB,aAAa;EAAU,SCpelB,ODoekB;;AACxC,CAAC,EAAgB,MAAM;EAAU,SCtSlB,ODsSkB;;AACjC,CAAC,EAAgB,MAAM;EAAU,SCiFlB,ODjFkB;;AACjC,CAAC,EAAgB,UAAU;EAAU,SClkBlB,ODkkBkB;;AACrC,CAAC,EAAgB,UAAU;EAAU,SCrXlB,ODqXkB;;AACrC,CAAC,EAAgB,aAAa;EAAU,SCpIlB,ODoIkB;;AACxC,CAAC,EAAgB,KAAK;EAAU,SCpclB,ODockB;;AAChC,CAAC,EAAgB,gBAAgB;EAAU,SChelB,ODgekB;;AAC3C,CAAC,EAAgB,SAAS;EAAU,SCpflB,ODofkB;;AACpC,CAAC,EAAgB,KAAK;EAAU,SClNlB,ODkNkB;;AAChC,CAAC,EAAgB,aAAa;EAAU,SC1XlB,OD0XkB;;AACxC,CAAC,EAAgB,IAAI;EAAU,SCoDlB,ODpDkB;;AAC/B,CAAC,EAAgB,aAAa;EAAU,SC3JlB,OD2JkB;;AACxC,CAAC,EAAgB,SAAS;EAAU,SCzNlB,ODyNkB;;AACpC,CAAC,EAAgB,OAAO;EAAU,SClHlB,ODkHkB;;AAClC,CAAC,EAAgB,aAAa;EAAU,SC7LlB,OD6LkB;;AACxC,CAAC,EAAgB,eAAe;EAAU,SC7LlB,OD6LkB;;AAC1C,CAAC,EAAgB,YAAY;EAAU,SC3ClB,OD2CkB;;AACvC,CAAC,EAAgB,cAAc;EAAU,SC3ClB,OD2CkB;;AACzC,CAAC,EAAgB,aAAa;EAAU,SCrGlB,ODqGkB;;AACxC,CAAC,EAAgB,gBAAgB;EAAU,SCrGlB,ODqGkB;;AAC3C,CAAC,EAAgB,QAAQ;EAAU,SC7UlB,OD6UkB;;AACnC,CAAC,EAAgB,UAAU;EAAU,SCnlBlB,ODmlBkB;;AACrC,CAAC,EAAgB,YAAY;EAAU,SCnlBlB,ODmlBkB;;AACvC,CAAC,EAAgB,QAAQ;EAAU,SC/LlB,OD+LkB;;AACnC,CAAC,EAAgB,OAAO;EAAU,SClXlB,ODkXkB;;AAClC,CAAC,EAAgB,WAAW;EAAU,SCkFlB,ODlFkB;;AACtC,CAAC,EAAgB,QAAQ;EAAU,SCmFlB,ODnFkB;;AACnC,CAAC,EAAgB,OAAO;EAAU,SC9clB,OD8ckB;;AAClC,CAAC,EAAgB,iBAAiB;EAAU,SC2BlB,OD3BkB;;AAC5C,CAAC,EAAgB,eAAe;EAAU,SCmElB,ODnEkB;;AAC1C,CAAC,EAAgB,kBAAkB;EAAU,SCxKlB,ODwKkB;;AAC7C,CAAC,EAAgB,MAAM;EAAU,SC9lBlB,OD8lBkB;;AACjC,CAAC,EAAgB,kBAAkB;EAAU,SCtoBlB,ODsoBkB;;AAC7C,CAAC,EAAgB,qBAAqB;EAAU,SCqDlB,ODrDkB;;AAChD,CAAC,EAAgB,QAAQ;EAAU,SCxlBlB,ODwlBkB;;AACnC,CAAC,EAAgB,4BAA4B;EAAU,SC5oBlB,OD4oBkB;;AACvD,CAAC,EAAgB,iBAAiB;AAClC,CAAC,EAAgB,oCAAoC;EAAU,SC9qBlB,OD8qBkB;;AAC/D,CAAC,EAAgB,SAAS;AAC1B,CAAC,EAAgB,gBAAgB;AACjC,CAAC,EAAgB,KAAK;EAAU,SCvflB,ODufkB;;AAChC,CAAC,EAAgB,MAAM;EAAU,SChYlB,ODgYkB;;AACjC,CAAC,EAAgB,QAAQ;EAAU,SChYlB,ODgYkB;;AACnC,CAAC,EAAgB,QAAQ;AACzB,CAAC,EAAgB,cAAc;EAAU,SC1HlB,OD0HkB;;AACzC,CAAC,EAAgB,WAAW;EAAU,SCzRlB,ODyRkB;;AACtC,CAAC,EAAgB,OAAO;EAAU,SCiClB,ODjCkB;;AAClC,CAAC,EAAgB,cAAc;EAAU,SCiClB,ODjCkB;;AACzC,CAAC,EAAgB,SAAS;EAAU,SClHlB,ODkHkB;;AACpC,CAAC,EAAgB,eAAe;EAAU,SClHlB,ODkHkB;;AAC1C,CAAC,EAAgB,gBAAgB;EAAU,SClHlB,ODkHkB;;AAC3C,CAAC,EAAgB,WAAW;EAAU,SCrNlB,ODqNkB;;AACtC,CAAC,EAAgB,YAAY;EAAU,SCpblB,ODobkB;;AACvC,CAAC,EAAgB,MAAM;EAAU,SCmElB,ODnEkB;;AACjC,CAAC,EAAgB,UAAU;EAAU,SCpDlB,ODoDkB;;AACrC,CAAC,EAAgB,mBAAmB;AACpC,CAAC,EAAgB,qBAAqB;EAAU,SCzYlB,ODyYkB;;AAChD,CAAC,EAAgB,GAAG;AACpB,CAAC,EAAgB,aAAa;EAAU,SC7alB,OD6akB;;AACxC,CAAC,EAAgB,YAAY;EAAU,SCtXlB,ODsXkB;;AACvC,CAAC,EAAgB,cAAc;EAAU,SClflB,ODkfkB;;AACzC,CAAC,EAAgB,gBAAgB;EAAU,SClflB,ODkfkB;;AAC3C,CAAC,EAAgB,OAAO;EAAU,SCtTlB,ODsTkB;;AAClC,CAAC,EAAgB,aAAa;EAAU,SCptBlB,ODotBkB;;AACxC,CAAC,EAAgB,eAAe;EAAU,SCptBlB,ODotBkB;;AAC1C,CAAC,EAAgB,MAAM;AACvB,CAAC,EAAgB,aAAa;EAAU,SCrtBlB,ODqtBkB;;AACxC,CAAC,EAAgB,QAAQ;AACzB,CAAC,EAAgB,eAAe;EAAU,SCttBlB,ODstBkB;;AAC1C,CAAC,EAAgB,YAAY;EAAU,SCJlB,ODIkB;;AACvC,CAAC,EAAgB,cAAc;EAAU,SCJlB,ODIkB;;AACzC,CAAC,EAAgB,OAAO;EAAU,SCHlB,ODGkB;;AAClC,CAAC,EAAgB,SAAS;EAAU,SC3WlB,OD2WkB;;AACpC,CAAC,EAAgB,gBAAgB;AACjC,CAAC,EAAgB,QAAQ;EAAU,SC5WlB,OD4WkB;;AACnC,CAAC,EAAgB,kBAAkB;AACnC,CAAC,EAAgB,UAAU;EAAU,SC7WlB,OD6WkB;;AACrC,CAAC,EAAgB,MAAM;EAAU,SCtNlB,ODsNkB;;AACjC,CAAC,EAAgB,eAAe;EAAU,SC3blB,OD2bkB;;AAC1C,CAAC,EAAgB,SAAS;EAAU,SCtFlB,ODsFkB;;AACpC,CAAC,EAAgB,cAAc;AAC/B,CAAC,EAAgB,YAAY;AAC7B,CAAC,EAAgB,iBAAiB;EAAU,SCxElB,ODwEkB;;AAC5C,CAAC,EAAgB,cAAc;AAC/B,CAAC,EAAgB,2BAA2B;EAAU,SCvElB,ODuEkB;;AACtD,CAAC,EAAgB,cAAc;AAC/B,CAAC,EAAgB,iBAAiB;EAAU,SC3ElB,OD2EkB;;AAC5C,CAAC,EAAgB,cAAc;AAC/B,CAAC,EAAgB,oBAAoB;EAAU,SC5ElB,OD4EkB;;AAC/C,CAAC,EAAgB,cAAc;AAC/B,CAAC,EAAgB,kBAAkB;EAAU,SCjFlB,ODiFkB;;AAC7C,CAAC,EAAgB,OAAO;EAAU,SC3KlB,OD2KkB;;AAClC,CAAC,EAAgB,QAAQ;AACzB,CAAC,EAAgB,IAAI;AACrB,CAAC,EAAgB,KAAK;EAAU,SCzrBlB,ODyrBkB;;AAChC,CAAC,EAAgB,QAAQ;EAAU,SClPlB,ODkPkB;;AACnC,CAAC,EAAgB,gBAAgB;EAAU,SCKlB,ODLkB;;AAC3C,CAAC,EAAgB,gBAAgB;EAAU,SCKlB,ODLkB;;AAC3C,CAAC,EAAgB,eAAe;EAAU,SCKlB,ODLkB;;AAC1C,CAAC,EAAgB,gBAAgB;AACjC,CAAC,EAAgB,aAAa;EAAU,SCDlB,ODCkB;;AACxC,CAAC,EAAgB,kBAAkB;AACnC,CAAC,EAAgB,eAAe;EAAU,SCFlB,ODEkB;;AAC1C,CAAC,EAAgB,SAAS;EAAU,SCxsBlB,ODwsBkB;;AACpC,CAAC,EAAgB,KAAK;EAAU,SCpblB,ODobkB;;AAChC,CAAC,EAAgB,KAAK;EAAU,SC1hBlB,OD0hBkB;;AAChC,CAAC,EAAgB,KAAK;EAAU,SCxYlB,ODwYkB;;AAChC,CAAC,EAAgB,QAAQ;EAAU,SC/OlB,OD+OkB;;AACnC,CAAC,EAAgB,QAAQ;EAAU,SCziBlB,ODyiBkB;;AACnC,CAAC,EAAgB,UAAU;EAAU,SCjUlB,ODiUkB;;AACrC,CAAC,EAAgB,YAAY;EAAU,SC7KlB,OD6KkB;;AACvC,CAAC,EAAgB,YAAY;EAAU,SChIlB,ODgIkB;;AACvC,CAAC,EAAgB,WAAW;EAAU,SCJlB,ODIkB;;AACtC,CAAC,EAAgB,OAAO;EAAU,SCxUlB,ODwUkB;;AEjxBlC;EJ8BE,kBAAA;EACA,UAAA;EACA,WAAA;EACA,UAAA;EACA,YAAA;EACA,gBAAA;EACA,MAAM,gBAAN;EACA,SAAA;;AxEoGA,kBAAC;AACD,kBAAC;EACC,gBAAA;EACA,WAAA;EACA,YAAA;EACA,SAAA;EACA,iBAAA;EACA,UAAA;;AwEjGF,kBAAC;AACD,kBAAC;EACC,gBAAA;EACA,WAAA;EACA,YAAA;EACA,SAAA;EACA,iBAAA;EACA,UAAA;;AKkBJ;EACE,gBAAA;EACA,uBAAA;EACA,mBAAA;EACA,iBAAA;;AC3EF;EACE,iBAAA;EACA,kBAAA;EACA,mBAAA;EACA,kBAAA;EACA,qBAAA;;AALF,MAME;EACE,cAAA;;AACA,MAFF,YAEG;EACC,cAAA;;AATN,MAYE,OAAM;EACJ,gBAAA;;AAbJ,MAeE;EACE,eAAA;EACA,kBAAA;EACA,UAAA;EACA,SAAA;;AAnBJ,MAqBE;ExDtBA,aAAA;EAGA,yBAAA;;AwDqBE,MAFF,OAEG;AACD,MAHF,OAGG;ExDzBH,UAAA;EAGA,0BAAA;;AwDFF,MA4BE;EACE,cAAA;;AAIJ;EACE,mBAAA;;AADF,kBAEE;EACE,YAAA;EACA,QAAA;;ACrCJ;EACE,gBAAA;;AAGF,UAAW,KAAK,IAAI;EAClB,gBAAA;;ACLF;EACE,eAAA;;AADF,WAEE,UAAU;EACR,gBAAA;;AAHJ,WAKE;EACI,eAAA;;;AANN,WAKE,KAEI,KAAI;EACJ,cAAA;EACA,SLuBe,OKvBf;EACA,a9EqD8D,a8ErD9D;EACA,eAAA;EACA,oBAAA;;ACZN;EhFgEE,gDAAA;EACQ,wCAAA;;AgF/DR,IAAC;EhF8DD,sDAAA;EACQ,8CAAA;;AgF5DR,IAAC;AACD,IAAC;AACD,QAAQ,UAAW;EACjB,yBAAA;EACA,iCAAA;EACA,qBAAA;EACA,cAAA;EACA,UAAA;;AACA,IARD,SAQE;AAAD,IAPD,UAOE;AAAD,QANM,UAAW,KAMhB;EhFmDH,wBAAA;EACQ,gBAAA;;AgFjDN,IAXD,SAWE;AAAD,IAVD,UAUE;AAAD,QATM,UAAW,KAShB;EACC,wCAAA;EACA,SAAA;;AAKN;EJpBE,yBAAA;E/BcE,kBAAkB,sDAAlB;EACA,kBAAkB,iDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,QAAQ,8GAAR;E+BhBF,qBAAA;EACA,WAAA;;AAEA,WAAC;AACD,WAAC;AACD,WAAC;AACD,WAAC;AACD,KAAM,iBAAgB;EACpB,yBAAA;EACA,sBAAA;EACA,qBAAA;EACA,WAAA;;AAEF,WAAC;AACD,WAAC;AACD,KAAM,iBAAgB;EACpB,sBAAA;;AACA,WAJD,OAIE;AAAD,WAHD,OAGE;AAAD,KAFI,iBAAgB,WAEnB;AACD,WALD,OAKE;AAAD,WAJD,OAIE;AAAD,KAHI,iBAAgB,WAGnB;AACD,WAND,OAME;AAAD,WALD,OAKE;AAAD,KAJI,iBAAgB,WAInB;EACC,yBAAA;EACI,qBAAA;;AAMN,WAHD;AAGC,WAFD;AAEC,QADM,UAAW;AAEjB,WAJD,SAIE;AAAD,WAHD,UAGE;AAAD,QAFM,UAAW,YAEhB;AACD,WALD,SAKE;AAAD,WAJD,UAIE;AAAD,QAHM,UAAW,YAGhB;AACD,WAND,SAME;AAAD,WALD,UAKE;AAAD,QAJM,UAAW,YAIhB;AACD,WAPD,SAOE;AAAD,WAND,UAME;AAAD,QALM,UAAW,YAKhB;EACC,yBAAA;EACA,qBAAA;;AIXN;EJxBE,yBAAA;E/BcE,kBAAkB,sDAAlB;EACA,kBAAkB,iDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,QAAQ,8GAAR;E+BhBF,kBAAA;EACA,cAAA;;AAEA,YAAC;AACD,YAAC;AACD,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,yBAAA;EACA,sBAAA;EACA,kBAAA;EACA,cAAA;;AAEF,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,sBAAA;;AACA,YAJD,OAIE;AAAD,YAHD,OAGE;AAAD,KAFI,iBAAgB,YAEnB;AACD,YALD,OAKE;AAAD,YAJD,OAIE;AAAD,KAHI,iBAAgB,YAGnB;AACD,YAND,OAME;AAAD,YALD,OAKE;AAAD,KAJI,iBAAgB,YAInB;EACC,yBAAA;EACI,qBAAA;;AAMN,YAHD;AAGC,YAFD;AAEC,QADM,UAAW;AAEjB,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;AACD,YAND,SAME;AAAD,YALD,UAKE;AAAD,QAJM,UAAW,aAIhB;AACD,YAPD,SAOE;AAAD,YAND,UAME;AAAD,QALM,UAAW,aAKhB;EACC,yBAAA;EACA,kBAAA;;AINJ;AACA,SAAC;EhF+BD,wBAAA;EACQ,gBAAA;;AgF3BV;EJnCE,yBAAA;E/BcE,kBAAkB,sDAAlB;EACA,kBAAkB,iDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,QAAQ,8GAAR;E+BhBF,qBAAA;EACA,WAAA;;AAEA,YAAC;AACD,YAAC;AACD,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,yBAAA;EACA,sBAAA;EACA,qBAAA;EACA,WAAA;;AAEF,YAAC;AACD,YAAC;AACD,KAAM,iBAAgB;EACpB,sBAAA;;AACA,YAJD,OAIE;AAAD,YAHD,OAGE;AAAD,KAFI,iBAAgB,YAEnB;AACD,YALD,OAKE;AAAD,YAJD,OAIE;AAAD,KAHI,iBAAgB,YAGnB;AACD,YAND,OAME;AAAD,YALD,OAKE;AAAD,KAJI,iBAAgB,YAInB;EACC,yBAAA;EACI,qBAAA;;AAMN,YAHD;AAGC,YAFD;AAEC,QADM,UAAW;AAEjB,YAJD,SAIE;AAAD,YAHD,UAGE;AAAD,QAFM,UAAW,aAEhB;AACD,YALD,SAKE;AAAD,YAJD,UAIE;AAAD,QAHM,UAAW,aAGhB;AACD,YAND,SAME;AAAD,YALD,UAKE;AAAD,QAJM,UAAW,aAIhB;AACD,YAPD,SAOE;AAAD,YAND,UAME;AAAD,QALM,UAAW,aAKhB;EACC,yBAAA;EACA,qBAAA;;AIIN;AACA,aAAc;A1DgDd,aAAc;E0D/CZ,gBAAA;;ACzCF;EACE,ahF2DkE,agF3DlE;EACA,mBAAA;EACA,WAAA;EACA,kBAAA;EACA,wBAAA;EACA,WAAA;;AACA,MAAC;EACC,SAAA;EACA,SPkBgB,OOlBhB;EACA,OAAA;EACA,iBAAA;EACA,kBAAA;EACA,kBAAA;EACA,SAAA;EACA,QAAA;;AAGA,OADM,OACL;EACC,SPWY,OOXZ;;AAMN,gBAAgB;E/E1Bd,0CAAA;EACA,oBAAA;;A+E8BF,cAEE;E/DjBA,yBAAA;EACA,WAAA;EACA,eAAA;EACA,gBAAA;;A+DYF,cAME,KAAK;EACH,yBAAA;EACA,mBAAA;EACA,mBAAA;EACA,iBAAA;;AAMF,cADa,KAAK,IACjB;AACD,cAFa,KAAK,IAEjB;EACC,qBAAA;EvDjDF,QAAQ,2DAAR;;AuDoDA,cANa,KAAK,IAMjB;EACC,yBAAA;EACA,qBAAA;EACA,WAAA;EvDvDF,QAAQ,2DAAR;;AuD8DA,cADa,UAAU;AAEvB,cAFa,UAAU,IAEtB;AACD,cAHa,UAAU,IAGtB;EACC,yBAAA;EACA,qBAAA;EvDlEF,QAAQ,2DAAR;;AuDyEA,cADa,YAAY;AAEzB,cAFa,YAAY,IAExB;AACD,cAHa,YAAY,IAGxB;EACC,yBAAA;;AAKJ,cAAe,YAAY;EACzB,yBAAA;EACA,qBAAA;EACA,WAAA;;AAHF,cAAe,YAAY,IAIzB;EACE,+BAAA;;AAMF,cADa,YAAY,IACxB;AACD,cAFa,YAAY,IAExB;EACC,yBAAA;;AAKJ;EACE,kBAAA;EACA,mBAAA;EACA,yBAAA;;AAIF,UAGE;AAFF,SAEE;AADF,gBACE;EACE,gBAAA;;AAKJ,OAAQ;EACN,mBAAA;;AAIF;EACE,kBAAA;;AACA,iBAAC,MACC;EACE,yBAAA;EACA,qBAAA;;AAHJ,iBAAC,MAKC;EACE,cAAA;;AAGJ,iBAAC;EACC,sBAAA;;AADF,iBAAC,UAEC;EACE,UAAA;EACA,iBAAA;EACA,WAAA;;AAhBN,iBAmBE;EACE,8BAAA;;AACA,iBAFF,IAEG;EACC,SPhHe,OOgHf;EACA,ahFlF8D,agFkF9D;EACA,cAAA;EACA,kBAAA;EACA,WAAA;EACA,QAAA;;AA3BN,iBA8BE;EACE,UAAA;EACA,aAAA;EACA,SAAA;;AAEF,OAAQ,kBAAE;EACR,YAAA;EACA,SAAA;;AAEF,KAAM,kBAAC,OAAQ;EACb,cAAA;;AAMF,kBAAC,UAAW,OAAM;AADpB,kBAEE;EACE,cAAA;EACA,eAAA;EACA,cAAA;EACA,iBAAA;EACA,kBAAA;EACA,mBAAA;;AACA,kBARD,UAAW,OAAM,YAQf;AAAD,kBAPF,UAOG;AACD,kBATD,UAAW,OAAM,YASf;AAAD,kBARF,UAQG;AACD,kBAVD,UAAW,OAAM,YAUf;AAAD,kBATF,UASG;EACC,cAAA;;AAGJ,kBAAC;EAAa,iBAAA;;AAfhB,kBAgBE;EACE,WAAA;EACA,gBAAA;;AACA,kBAHF,eAGG;EACC,UAAA;EACA,YAAA;;AACA,kBANJ,eAGG,oBAGE;AACD,kBAPJ,eAGG,oBAIE;EACC,UAAA;EACA,UAAA;;AAGJ,kBAZF,eAYG;AACD,kBAbF,eAaG;EACC,yBAAA;EACA,0BAAA;EACA,yBAAA;EACA,mCAAA;EACA,oCAAA;EACA,SAAS,EAAT;EACA,qBAAA;EACA,SAAA;EACA,kBAAA;EACA,UAAA;;AAEF,kBAzBF,eAyBG;EACC,yBAAA;EACA,UAAA;;AAGJ,kBAAC,OAAQ;EACP,mBAAA;EACA,aAAA;;AACA,kBAHD,OAAQ,eAGN;AACD,kBAJD,OAAQ,eAIN;EACC,mBAAA;EACA,sBAAA;EACA,uBAAA;EACA,sBAAA;EACA,aAAA;EACA,SAAA;;AAEF,kBAZD,OAAQ,eAYN;EACC,sBAAA;EACA,aAAA;;ACpON,mBAAoB;EAClB,gBAAA;EACA,kBAAA;;AAGF;EACE,cAAA;;AAGF;EACE,cAAA;EACA,mBAAA;;AAIA,aAAC;AACD,aAAC;AACD,QAAQ,UAAW;ElFgDnB,wBAAA;EACQ,gBAAA;EkF/CN,cAAA;;AACA,aALD,UAKE;AAAD,aAJD,UAIE;AAAD,QAHM,UAAW,cAGhB;EACC,kBAAA;;AAGJ,aAAC;EACC,qBAAA;;AACA,UAAW,cAFZ;EAGG,qBAAA;;AAEF,YAAa,cALd;EAMG,qBAAA;;AAEF,YAAa,cARd;EASG,qBAAA;;AAKN,UACE;AADU,YACV;AADwB,YACxB;AADF,UAEE;AAFU,YAEV;AAFwB,YAExB;AAFF,UAGE;AAHU,YAGV;AAHwB,YAGxB;AAHF,UAIE;AAJU,YAIV;AAJwB,YAIxB;AAJF,UAKE;AALU,YAKV;AALwB,YAKxB;AACA,UAAC,SAAU;AAAX,YAAC,SAAU;AAAX,YAAC,SAAU;AACX,UAAC,gBAAiB;AAAlB,YAAC,gBAAiB;AAAlB,YAAC,gBAAiB;AAClB,UAAC,MAAO;AAAR,YAAC,MAAO;AAAR,YAAC,MAAO;AACR,UAAC,aAAc;AAAf,YAAC,aAAc;AAAf,YAAC,aAAc;EACb,cAAA;;AAIJ;EACE,kBAAA;;AAGF,YAAa,iBAAiB;ElFS5B,wBAAA;EACQ,gBAAA;;AkFNV;EACE,gBAAA;;AACA,KAAC,YAAY;EACX,cAAA;EACA,SAAS,GAAT;EACA,gBAAA;;AAIJ,IAAI;EACF,cAAA;;AAGF;EACE,qBAAA;EACA,mBAAA;EACA,qBAAA;EACA,gBAAA;EACA,iBAAA;;AAEF;EACE,YAAA;EACA,eAAA;EACA,SAAA;EACA,mBAAA;EACA,WAAA;;AALF,yBAME;EACE,eAAA;EACA,eAAA;EACA,WAAA;;ACxFJ;EACE,gBAAA;EACA,eAAA;EACA,gBAAA;;AACA,EAAG;AACH,EAAG;AACH,EAAG;AACH,EAAG;AACH,EAAG;AACH,EAAG;EACD,cAAA;;ACVJ;EACE,6BAAA;;AADF,WAEE,iBAAgB;EACd,aAAA;;AAGJ;EACE,cAAA;EACA,eAAA;;AAGF;EACE,gBAAA;;ACVF;EACE,yBAAA;EACA,mBAAA;EACA,kBAAA;;AAGF,aAAc;EACZ,eAAA;;AAIF;EACE,eAAA;EACA,gBAAA;;AAIF;EACE,gBAAA;EACA,gBAAA;EACA,uBAAA;;AAHF,aAIE;EACE,kBAAA;EACA,mBAAA;;AANJ,aAIE,OAGE;EACE,iBAAA;;AARN,aAIE,OAME;EACE,gBAAA;;AC9BN,MACE,GACE;AAFJ,MACE,GAEE;EVAF,yBAAA;E/BcE,kBAAkB,sDAAlB;EACA,kBAAkB,iDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,QAAQ,8GAAR;E+BhBF,kBAAA;EUAI,cAAA;EACA,gBAAA;EACA,iBAAA;EACA,iBAAA;;AVAJ,MUPA,GACE,IVMD;AAAD,MUPA,GAEE,OVKD;AACD,MURA,GACE,IVOD;AAAD,MURA,GAEE,OVMD;AACD,MUTA,GACE,IVQD;AAAD,MUTA,GAEE,OVOD;AACD,MUVA,GACE,IVSD;AAAD,MUVA,GAEE,OVQD;AACD,KAAM,iBAAgB,MUXtB,GACE;AVUF,KAAM,iBAAgB,MUXtB,GAEE;EVUA,yBAAA;EACA,sBAAA;EACA,kBAAA;EACA,cAAA;;AAEF,MUjBA,GACE,IVgBD;AAAD,MUjBA,GAEE,OVeD;AACD,MUlBA,GACE,IViBD;AAAD,MUlBA,GAEE,OVgBD;AACD,KAAM,iBAAgB,MUnBtB,GACE;AVkBF,KAAM,iBAAgB,MUnBtB,GAEE;EVkBA,sBAAA;;AACA,MUrBF,GACE,IVgBD,OAIE;AAAD,MUrBF,GAEE,OVeD,OAIE;AAAD,MUrBF,GACE,IViBD,OAGE;AAAD,MUrBF,GAEE,OVgBD,OAGE;AAAD,KAFI,iBAAgB,MUnBtB,GACE,IVoBC;AAAD,KAFI,iBAAgB,MUnBtB,GAEE,OVmBC;AACD,MUtBF,GACE,IVgBD,OAKE;AAAD,MUtBF,GAEE,OVeD,OAKE;AAAD,MUtBF,GACE,IViBD,OAIE;AAAD,MUtBF,GAEE,OVgBD,OAIE;AAAD,KAHI,iBAAgB,MUnBtB,GACE,IVqBC;AAAD,KAHI,iBAAgB,MUnBtB,GAEE,OVoBC;AACD,MUvBF,GACE,IVgBD,OAME;AAAD,MUvBF,GAEE,OVeD,OAME;AAAD,MUvBF,GACE,IViBD,OAKE;AAAD,MUvBF,GAEE,OVgBD,OAKE;AAAD,KAJI,iBAAgB,MUnBtB,GACE,IVsBC;AAAD,KAJI,iBAAgB,MUnBtB,GAEE,OVqBC;EACC,yBAAA;EACI,qBAAA;;AAMN,MU/BF,GACE,IV2BD;AAGC,MU/BF,GAEE,OV0BD;AAGC,MU/BF,GACE,IV4BD;AAEC,MU/BF,GAEE,OV2BD;AAEC,QADM,UAAW,OU9BnB,GACE;AV8BA,QADM,UAAW,OU9BnB,GAEE;AV8BA,MUhCF,GACE,IV2BD,SAIE;AAAD,MUhCF,GAEE,OV0BD,SAIE;AAAD,MUhCF,GACE,IV4BD,UAGE;AAAD,MUhCF,GAEE,OV2BD,UAGE;AAAD,QAFM,UAAW,OU9BnB,GACE,IV+BC;AAAD,QAFM,UAAW,OU9BnB,GAEE,OV8BC;AACD,MUjCF,GACE,IV2BD,SAKE;AAAD,MUjCF,GAEE,OV0BD,SAKE;AAAD,MUjCF,GACE,IV4BD,UAIE;AAAD,MUjCF,GAEE,OV2BD,UAIE;AAAD,QAHM,UAAW,OU9BnB,GACE,IVgCC;AAAD,QAHM,UAAW,OU9BnB,GAEE,OV+BC;AACD,MUlCF,GACE,IV2BD,SAME;AAAD,MUlCF,GAEE,OV0BD,SAME;AAAD,MUlCF,GACE,IV4BD,UAKE;AAAD,MUlCF,GAEE,OV2BD,UAKE;AAAD,QAJM,UAAW,OU9BnB,GACE,IViCC;AAAD,QAJM,UAAW,OU9BnB,GAEE,OVgCC;AACD,MUnCF,GACE,IV2BD,SAOE;AAAD,MUnCF,GAEE,OV0BD,SAOE;AAAD,MUnCF,GACE,IV4BD,UAME;AAAD,MUnCF,GAEE,OV2BD,UAME;AAAD,QALM,UAAW,OU9BnB,GACE,IVkCC;AAAD,QALM,UAAW,OU9BnB,GAEE,OViCC;EACC,yBAAA;EACA,kBAAA;;AUtCN,MACE,GACE,IAOE;AATN,MACE,GAEE,OAME;EACE,eAAA;EACA,mBAAA;EACA,aAAA;;AAZR,MACE,GAcE,EAAC;EACC,sBAAA;EtFgDJ,wDAAA;EACQ,gDAAA;EsF/CJ,UAAA;;AAlBN,MAqBE,UACE;AAtBJ,MAqBE,UAEE,IAAG;AAvBP,MAqBE,UAGE,IAAG;AAxBP,MAqBE,UAIE,IAAG;AAzBP,MAqBE,UAKE;EACE,mBAAA;EtFqCJ,wBAAA;EACQ,gBAAA;EsFpCJ,cAAA;EACA,mBAAA;;AA9BN,MAiCE,MACG,IAEE;AApCP,MAiCE,MAEG,OACE;EACG,gBAAA;;AArCV,MAyCE,UACG,IAEE;AA5CP,MAyCE,UAEG,OACE;EACG,iBAAA;;AAMV,SACE,GACE;AAFJ,SACE,GAEE;EACE,gBAAA;EACA,iBAAA;EACA,iBAAA;;AANN,SACE,GACE,IAKE;AAPN,SACE,GAEE,OAIE;EACE,eAAA;;AC3DR,WACE,KACE;AAFJ,WACE,KAEE;EXAF,yBAAA;E/BcE,kBAAkB,sDAAlB;EACA,kBAAkB,iDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,QAAQ,8GAAR;E+BhBF,kBAAA;EACA,cAAA;EWDI,eAAA;EACA,gBAAA;EACA,iBAAA;;AXCJ,WWPA,KACE,IXMD;AAAD,WWPA,KAEE,OXKD;AACD,WWRA,KACE,IXOD;AAAD,WWRA,KAEE,OXMD;AACD,WWTA,KACE,IXQD;AAAD,WWTA,KAEE,OXOD;AACD,WWVA,KACE,IXSD;AAAD,WWVA,KAEE,OXQD;AACD,KAAM,iBAAgB,WWXtB,KACE;AXUF,KAAM,iBAAgB,WWXtB,KAEE;EXUA,yBAAA;EACA,sBAAA;EACA,kBAAA;EACA,cAAA;;AAEF,WWjBA,KACE,IXgBD;AAAD,WWjBA,KAEE,OXeD;AACD,WWlBA,KACE,IXiBD;AAAD,WWlBA,KAEE,OXgBD;AACD,KAAM,iBAAgB,WWnBtB,KACE;AXkBF,KAAM,iBAAgB,WWnBtB,KAEE;EXkBA,sBAAA;;AACA,WWrBF,KACE,IXgBD,OAIE;AAAD,WWrBF,KAEE,OXeD,OAIE;AAAD,WWrBF,KACE,IXiBD,OAGE;AAAD,WWrBF,KAEE,OXgBD,OAGE;AAAD,KAFI,iBAAgB,WWnBtB,KACE,IXoBC;AAAD,KAFI,iBAAgB,WWnBtB,KAEE,OXmBC;AACD,WWtBF,KACE,IXgBD,OAKE;AAAD,WWtBF,KAEE,OXeD,OAKE;AAAD,WWtBF,KACE,IXiBD,OAIE;AAAD,WWtBF,KAEE,OXgBD,OAIE;AAAD,KAHI,iBAAgB,WWnBtB,KACE,IXqBC;AAAD,KAHI,iBAAgB,WWnBtB,KAEE,OXoBC;AACD,WWvBF,KACE,IXgBD,OAME;AAAD,WWvBF,KAEE,OXeD,OAME;AAAD,WWvBF,KACE,IXiBD,OAKE;AAAD,WWvBF,KAEE,OXgBD,OAKE;AAAD,KAJI,iBAAgB,WWnBtB,KACE,IXsBC;AAAD,KAJI,iBAAgB,WWnBtB,KAEE,OXqBC;EACC,yBAAA;EACI,qBAAA;;AAMN,WW/BF,KACE,IX2BD;AAGC,WW/BF,KAEE,OX0BD;AAGC,WW/BF,KACE,IX4BD;AAEC,WW/BF,KAEE,OX2BD;AAEC,QADM,UAAW,YW9BnB,KACE;AX8BA,QADM,UAAW,YW9BnB,KAEE;AX8BA,WWhCF,KACE,IX2BD,SAIE;AAAD,WWhCF,KAEE,OX0BD,SAIE;AAAD,WWhCF,KACE,IX4BD,UAGE;AAAD,WWhCF,KAEE,OX2BD,UAGE;AAAD,QAFM,UAAW,YW9BnB,KACE,IX+BC;AAAD,QAFM,UAAW,YW9BnB,KAEE,OX8BC;AACD,WWjCF,KACE,IX2BD,SAKE;AAAD,WWjCF,KAEE,OX0BD,SAKE;AAAD,WWjCF,KACE,IX4BD,UAIE;AAAD,WWjCF,KAEE,OX2BD,UAIE;AAAD,QAHM,UAAW,YW9BnB,KACE,IXgCC;AAAD,QAHM,UAAW,YW9BnB,KAEE,OX+BC;AACD,WWlCF,KACE,IX2BD,SAME;AAAD,WWlCF,KAEE,OX0BD,SAME;AAAD,WWlCF,KACE,IX4BD,UAKE;AAAD,WWlCF,KAEE,OX2BD,UAKE;AAAD,QAJM,UAAW,YW9BnB,KACE,IXiCC;AAAD,QAJM,UAAW,YW9BnB,KAEE,OXgCC;AACD,WWnCF,KACE,IX2BD,SAOE;AAAD,WWnCF,KAEE,OX0BD,SAOE;AAAD,WWnCF,KACE,IX4BD,UAME;AAAD,WWnCF,KAEE,OX2BD,UAME;AAAD,QALM,UAAW,YW9BnB,KACE,IXkCC;AAAD,QALM,UAAW,YW9BnB,KAEE,OXiCC;EACC,yBAAA;EACA,kBAAA;;AWtCN,WACE,KACE,IAME;AARN,WACE,KAEE,OAKE;EACE,eAAA;EACA,mBAAA;EACA,aAAA;;AAMJ,WAFF,KAAK,IAEF;AAAD,WADF,KAAK,OACF;EvF+CH,sDAAA;EACQ,8CAAA;;AuF1CN,WAFF,UAAU;AAER,WADF,UAAU;AAER,WAHF,UAAU,IAGP;AAAD,WAFF,UAAU,OAEP;AACD,WAJF,UAAU,IAIP;AAAD,WAHF,UAAU,OAGP;EACC,yBAAA;EACA,kBAAA;EvFqCJ,sDAAA;EACQ,8CAAA;EuFpCJ,cAAA;E1CZF,kBAAkB,sDAAlB;EACA,kBAAkB,iDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,QAAQ,8GAAR;;A0CrBJ,WAiCE,YACE;AAlCJ,WAiCE,YAEE,OAAM;AAnCV,WAiCE,YAGE,OAAM;AApCV,WAiCE,YAIE;AArCJ,WAiCE,YAKE,IAAG;AAtCP,WAiCE,YAME,IAAG;EvFyBL,wBAAA;EACQ,gBAAA;EuFxBJ,mBAAA;E1CxBF,kBAAkB,sDAAlB;EACA,kBAAkB,iDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,QAAQ,8GAAR;;A0C0BJ,cnDhDE,KACE;AmD+CJ,cnDhDE,KAEE;EACE,gBAAA;EACA,eAAA;EACA,gBAAA;;AAEF,cAPF,KAOG,YACC;AADF,cAPF,KAOG,YAEC;ETGJ,8BAAA;EACG,2BAAA;;ASAD,cAbF,KAaG,WACC;AADF,cAbF,KAaG,WAEC;ETXJ,+BAAA;EACG,4BAAA;;A4D2CL,cAEE,KACE;AAHJ,cAEE,KAEE;EACE,gBAAA;;AALN,cAEE,KACE,IAGE;AANN,cAEE,KAEE,OAEE;EACE,eAAA;EACA,eAAA;;AAMR;EACE,yBAAA;EACA,yBAAA;EACA,aAAA;EACA,eAAA;EACA,8BAAA;;AACA,2BAAC;EACC,gBAAA;;AAPJ,2BASE;EACE,qBAAA;EACA,aAAA;EACA,YAAA;EACA,WAAA;EAIA,WAAA;;AAHA;EA0CJ,2BA/CE;IAMI,WAAA;;;AAGF,2BATF,YASG;EACC,yBAAA;EACA,YAAA;;AACA;EAmCN,2BA/CE,YASG;IAIG,WAAA;;;AAtBR,2BASE,YAgBE,wBAAuB,iBAAiB;AAzB5C,2BASE,YAiBE,wBAAuB;EACrB,aAAA;EACA,WAAA;EACA,gBAAA;EACA,cAAA;EACA,iBAAA;EACA,WAAA;;AAhCN,2BASE,YAyBE;EACE,eAAA;;AAnCN,2BAsCE;EACE,iBAAA;EACA,iBAAA;EACA,kBAAA;EACA,iBAAA;EACA,YAAA;;AA3CJ,2BA6CE;EACE,aAAA;EACA,kBAAA;;AA/CJ,2BA6CE,YAGE;EACE,WAAA;;AACA;EAMN,2BAXE,YAGE;IAGI,cAAA;;;AChHR;EACE,gBAAA;;AAOF,YACE;EACE,cAAA;;AAFJ,YACE,OAEE;EACE,gBAAA;;AAJN,YAOE;EACE,kBAAA;EACA,sBAAA;;AATJ,YAOE,eAGE;E3CDA,kBAAkB,sDAAlB;EACA,kBAAkB,iDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,QAAQ,8GAAR;;A2CbJ,YAOE,eAGE,eAEE,kBAAkB;EAChB,6BAAA;;AAbR,YAkBE;EACE,qBAAA;;AAnBJ,YAkBE,YAEE;EACE,yBAAA;;AArBN,YAkBE,YAKE;EACE,yBAAA;;AAxBN,YA2BE;EACE,qBAAA;;AA5BJ,YA2BE,eAEE;EACE,yBAAA;;AA9BN,YA2BE,eAKE;EACE,yBAAA;;AAjCN,YA2BE,eAQE;EACE,yBAAA;;AApCN,YAuCE;EACE,qBAAA;;AAxCJ,YAuCE,eAEE;EACE,yBAAA;;AA1CN,YAuCE,eAKE;EACE,yBAAA;;AA7CN,YAuCE,eAQE;EACE,yBAAA;;AAhDN,YAuCE,eAWE;EACE,yBAAA;;AAnDN,YAsDE;EACE,qBAAA;;AAvDJ,YAsDE,eAEE;EACE,yBAAA;;AAzDN,YAsDE,eAKE;EACE,yBAAA;;AA5DN,YAsDE,eAQE;EACE,yBAAA;;AA/DN,YAsDE,eAWE;EACE,yBAAA;;AAlEN,YAsDE,eAcE;EACE,yBAAA;;AArEN,YAwEE;EACE,qBAAA;;AAzEJ,YAwEE,cAEE;EACE,yBAAA;;AA3EN,YAwEE,cAKE;EACE,yBAAA;;AA9EN,YAwEE,cAQE;EACE,yBAAA;;AAjFN,YAwEE,cAWE;EACE,yBAAA;;AApFN,YAwEE,cAcE;EACE,yBAAA;;AAvFN,YAwEE,cAiBE;EACE,yBAAA;;AA1FN,YA6FE;EACE,gBAAA;EACA,cAAA;;AA/FJ,YA6FE,aAGE;EACE,cAAA;EACA,gBAAA;;AACA,YANJ,aAGE,IAGG;EACC,SAAS,OAAT;EACA,qBAAA;EACA,avF/C4D,auF+C5D;EACA,eAAA;EACA,iBAAA;EACA,kBAAA;EACA,iBAAA;EACA,UAAA;;AAEF,YAhBJ,aAGE,IAaG;EACC,aAAA;EACA,qBAAA;;AAEF,YApBJ,aAGE,IAiBG;EACC,qBAAA;;AAEF,YAvBJ,aAGE,IAoBG,UAAU;EACT,SAAS,OAAT;;AC7HR;EzFgEE,iDAAA;EACQ,yCAAA;EyF/DR,UAAA;;AAGF;EACE,cAAA;EACA,iBAAA;EACA,kBAAA;;AAGF;EACE,mBAAA;EACA,gBAAA;EACA,cAAA;EACA,eAAA;EACA,gBAAA;EACA,gBAAA;;AANF,cAOE;EACE,YAAA;EACA,kBAAA;EACA,UAAA;EACA,QAAA;;AAEF,cAAC;EACC,mBAAA;;ACzBJ;EACE;IAAQ,wBAAA;;EACR;IAAQ,2BAAA;;;AAGV;E1F2DE,qDAAA;EACQ,6CAAA;;A0F1DR,SAAC;AACD,SAAC;EACC,iBAAA;EACA,kBAAA;;AAEF,SAAC;EACC,iBAAA;;AAEF,SAAC;EACC,YAAA;EACA,mBAAA;;AAEF,SAAC;EACC,WAAA;EACA,kBAAA;;AAEF,EAAG,YAAG,YAAY;EAChB,gBAAA;EACA,eAAA;;AAIJ;EACE,gBAAA;;AACA,oBAAqB,cAAE;AACvB,qBAAsB,cAAE;AACxB,yBAA0B,cAAE;EAC1B,cAAA;EACA,kBAAA;EACA,iBAAA;;AAEF,oBAAqB,cAAE;EACrB,eAAA;EACA,WAAA;EACA,MAAA;EACA,WAAA;;AAEF,qBAAsB,cAAE;AACxB,yBAA0B,cAAE;EAC1B,eAAA;EACA,gBAAA;EACA,QAAA;EACA,uBAAA;EACA,mBAAA;;AANF,qBAAsB,cAAE,KAOtB;AANF,yBAA0B,cAAE,KAM1B;EACE,gBAAA;;AAGJ,qBAAsB,cAAE;EACtB,eAAA;EACA,MAAA;;AAEF,yBAA0B,cAAE;EAC1B,cAAA;EACA,UAAA;;AAEF,oBAAoB,YAAa,cAAE;AACnC,yBAAyB,YAAa,cAAE;EACtC,eAAA;;AAEF,YAAa;EACX,iBAAA;;AAEF,YAAa;EACX,gBAAA;;AAIJ;EACE,uBAAA;;AAGF;EACE,kBAAA;;AACA,mBAAC;EACC,kBAAA;;AAEF,mBAAC;EACC,mBAAA;;AAIJ;EACE,mBAAA;EACA,cAAA;EACA,gBAAA;EACA,uBAAA;EACA,mBAAA;;AALF,qBAME;EACE,mBAAA;EACA,gBAAA;EACA,cAAA;EACA,iBAAA;;AAVJ,qBAYE;AAZF,qBAaE;EACE,eAAA;EACA,iBAAA;;AAEF,0BAA2B;EACzB,OAAA;EACA,gBAAA;EACA,eAAA;EACA,kBAAA;EACA,MAAA;;AAtBJ,qBAwBE;EACE,mBAAA;;AClHJ,MACE,QAGE,KACE;AALN,MAEE,QAEE,KACE;AALN,MAGE,QACE,KACE;AALN,MACE,QAGE,KAEE;AANN,MAEE,QAEE,KAEE;AANN,MAGE,QACE,KAEE;EACE,qBAAA;;AAPR,MACE,QAGE,KACE,KAGE,IAAG;AARX,MAEE,QAEE,KACE,KAGE,IAAG;AARX,MAGE,QACE,KACE,KAGE,IAAG;AARX,MACE,QAGE,KAEE,KAEE,IAAG;AARX,MAEE,QAEE,KAEE,KAEE,IAAG;AARX,MAGE,QACE,KAEE,KAEE,IAAG;EACD,qBAAA;;AATV,MACE,QAGE,KAQE;AAZN,MAEE,QAEE,KAQE;AAZN,MAGE,QACE,KAQE;EACE,aAAa,WAAb;EACA,kBAAA;EACA,gBAAA;;AAfR,MAmBE;EACE,4BAAA;EACA,yBAAA;E9CJA,kBAAkB,sDAAlB;EACA,kBAAkB,iDAAlB;EACA,kBAAkB,oDAAlB;EACA,2BAAA;EACA,QAAQ,8GAAR;;A8CKJ;EACE,yBAAA;;AADF,eAEE,QAGE,KACE;AANN,eAGE,QAEE,KACE;AANN,eAIE,QACE,KACE;AANN,eAEE,QAGE,KAEE;AAPN,eAGE,QAEE,KAEE;AAPN,eAIE,QACE,KAEE;EACE,yBAAA;;AARR,eAYE,QAAQ,KACN;AAbJ,eAYE,QAAQ,KAEN;EACE,wBAAA;;AAOF,cADF,QAAQ,KACL,YAAY;EACX,yBAAA;;AAEF,cAJF,QAAQ,KAIL,YAAY;EACX,6BAAA;;AAKN,YACE,QAAQ,KAAI,MACV;AAFJ,YACE,QAAQ,KAAI,MAEV;EACE,yBAAA;EACA,4BAAA;;AAKN,eACE,KAAI;EACF,iBAAA;EACA,kBAAA;;AAHJ,eAKE,KAAI;EACF,qBAAA;EACA,eAAA;EACA,iBAAA;EACA,eAAA;EACA,kBAAA;;AAVJ,eAYE,KAAI;AAZN,eAYoB,KAAI;EACpB,eAAA;;AAbJ,eAeE,QAAQ,KAAI;EACV,yBAAA;;ACnFJ;EACE,eAAA;;AADF,SAEE,KACE;EACE,cAAA;EACA,kBAAA;EACA,mBAAA;EACA,gBAAA;;AACA,SANJ,KACE,IAKG;AACD,SAPJ,KACE,IAMG;AACD,SARJ,KACE,IAOG;EACC,uBAAA;EACA,qBAAA;EACA,cAAA;;AAbR,SAEE,KAcE;EACE,aAAA;EACA,qBAAA;;AACA,SAjBJ,KAcE,iBAGG;EACC,WAAA;;AApBR,SAwBE;AAAgB,SAAC;EACf,eAAA;;AAzBJ,SAwBE,eAEE,KAAI,YAAa;AAFH,SAAC,sBAEf,KAAI,YAAa;EACf,kBAAA;;AACA,SAJJ,eAEE,KAAI,YAAa,IAEd;AAAD,SAJa,sBAEf,KAAI,YAAa,IAEd;EACC,qBAAA;;AAKJ,SADF,MAAM;AAEJ,SAFF,MAAM,IAEH;AACD,SAHF,MAAM,IAGH;EACC,6BAAA;EACA,qBAAA;;AAOF,QAA2C;EAqE/C,YAtEG;IAEG,gCAAA;;;AAGA,YALH,cAIC,KACG,YAAa;EACZ,kBAAA;;AANN,YAAC,cAIC,KAIE;EACE,gBAAA;;AACA,YAVL,cAIC,KAIE,IAEG;EACC,kBAAA;EACA,mBAAA;;AAbV,YAkBE;EACE,gBAAA;;AhBJF,YgBGA,KAEG,OAAQ,IhBLV;EACC,mBAAA;EACA,YAAA;EACA,SAAS,EAAT;EACA,cAAA;EACA,WAAA;EACA,UAAA;EACA,kBAAA;EACA,WAAA;;AgBDE,YAJJ,KAEG,OAAQ;AAGP,YALJ,KAEG,OAAQ,IAGN;AACD,YANJ,KAEG,OAAQ,IAIN;AACD,YAPJ,KAEG,OAAQ,IAKN;EACC,6BAAA;EACA,oBAAA;EACA,cAAA;;AACA,YAXN,KAEG,OAAQ,IASJ;AAAD,YAXN,KAEG,OAAQ,IAGN,OAME;AAAD,YAXN,KAEG,OAAQ,IAIN,MAKE;AAAD,YAXN,KAEG,OAAQ,IAKN,MAIE;EACC,mBAAA;;AAIN,YAhBF,KAgBG,YACC;EACE,eAAA;;AACA,YAnBN,KAgBG,YACC,IAEG;EACC,kBAAA;;AAtCV,YAkBE,KAwBE;EACE,SAAA;EACA,cAAA;EACA,eAAA;EACA,oBAAA;EACA,iBAAA;;AhBhCJ,YgBGA,KAwBE,IAMG,OhBjCJ;AAAD,YgBGA,KAwBE,IAOG,MhBlCJ;AAAD,YgBGA,KAwBE,IAQG,MhBnCJ;EACC,gBAAA;EACA,YAAA;EACA,SAAS,EAAT;EACA,cAAA;EACA,WAAA;EACA,UAAA;EACA,kBAAA;EACA,WAAA;;AgBvBJ,YAkBE,KAoCE;EACE,UAAA;EACA,eAAA;;AACA,YAvCJ,KAoCE,iBAGG;EACC,UAAA;EACA,WAAA;;AAKJ,YADF,MAAM;AAEJ,YAFF,MAAM,IAEH;AACD,YAHF,MAAM,IAGH;EACC,6BAAA;;AC7GN;EACE,eAAA;EACA,gBAAA;;AAIF;EACE,iBAAA;EACA,gBAAA;;ACTF;AACA;AACA;AACA;EACE,gBAAA;;AAGF,YAAa;EACX,eAAA;;AADF,YAAa,SAEX,EAAE;EACA,iBAAA;;AAIJ,QAA+C;EAC7C;IACE,kBAAA;;EAEF;IACE,mBAAA;;EADF,wBAEE;IACE,kBAAA","sourcesContent":["//\n// Fonts\n// --------------------------------------------------\n\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 300;\n  src: url(\"@{font-path}/OpenSans-Light-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Light\"), local(\"OpenSans-Light\"),\n       url(\"@{font-path}/OpenSans-Light-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Light-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Light-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Light-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Light-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 400;\n  src: url(\"@{font-path}/OpenSans-Regular-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans\"), local(\"OpenSans\"),\n       url(\"@{font-path}/OpenSans-Regular-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Regular-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Regular-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Regular-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Regular-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 300;\n  src: url(\"@{font-path}/OpenSans-LightItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Light Italic\"), local(\"OpenSansLight-Italic\"),\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-LightItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 400;\n  src: url(\"@{font-path}/OpenSans-Italic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Italic\"), local(\"OpenSans-Italic\"),\n       url(\"@{font-path}/OpenSans-Italic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Italic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Italic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Italic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Italic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 600;\n  src: url(\"@{font-path}/OpenSans-Semibold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Semibold\"), local(\"OpenSans-Semibold-webfont\"),\n       url(\"@{font-path}/OpenSans-Semibold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Semibold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 600;\n  src: url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Semibold Italic\"), local(\"OpenSans-SemiboldItalic-webfont\"),\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-SemiboldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 700;\n  src: url(\"@{font-path}/OpenSans-Bold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Bold\"), local(\"OpenSans-Bold\"),\n       url(\"@{font-path}/OpenSans-Bold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-Bold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-Bold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-Bold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-Bold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 700;\n  src: url(\"@{font-path}/OpenSans-BoldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Bold Italic\"), local(\"OpenSans-BoldItalic\"),\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-BoldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: italic;\n  font-weight: 800;\n  src: url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Extrabold Italic\"), local(\"OpenSans-ExtraboldItalic\"),\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-ExtraBoldItalic-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n@font-face {\n  font-family: \"Open Sans\";\n  font-style: normal;\n  font-weight: 800;\n  src: url(\"@{font-path}/OpenSans-ExtraBold-webfont.eot\"); /* IE9 Compat Modes */\n  src: local(\"Open Sans Extrabold\"), local(\"OpenSans-Extrabold\"),\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.eot?#iefix\") format(\"embedded-opentype\"), /* IE6-IE8 */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.woff2\") format(\"woff2\"), /* Super Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.woff\") format(\"woff\"), /* Modern Browsers */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.ttf\") format(\"truetype\"), /* Safari, Android, iOS */\n       url(\"@{font-path}/OpenSans-ExtraBold-webfont.svg#OpenSans\") format(\"svg\"); /* Legacy iOS */\n}\n","/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS and IE text size adjust after device orientation change,\n//    without disabling user zoom.\n//\n\nhtml {\n  font-family: sans-serif; // 1\n  -ms-text-size-adjust: 100%; // 2\n  -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n  margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n  display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n  display: inline-block; // 1\n  vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n  display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n  background-color: transparent;\n}\n\n//\n// Improve readability of focused elements when they are also in an\n// active/hover state.\n//\n\na:active,\na:hover {\n  outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n  border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n  font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n  font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n  background: #ff0;\n  color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n  font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\n\nsup {\n  top: -0.5em;\n}\n\nsub {\n  bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n  border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n  overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n  margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n  box-sizing: content-box;\n  height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n  overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace, monospace;\n  font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n//    Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  color: inherit; // 1\n  font: inherit; // 2\n  margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n  overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n  text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n//    and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n//    `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n  -webkit-appearance: button; // 2\n  cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n  cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n  border: 0;\n  padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n  line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n  box-sizing: border-box; // 1\n  padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.\n//\n\ninput[type=\"search\"] {\n  -webkit-appearance: textfield; // 1\n  box-sizing: content-box; //2\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n  border: 1px solid #c0c0c0;\n  margin: 0 2px;\n  padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n  border: 0; // 1\n  padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n  overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n  font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n  border-collapse: collapse;\n  border-spacing: 0;\n}\n\ntd,\nth {\n  padding: 0;\n}\n","/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n    *,\n    *:before,\n    *:after {\n        background: transparent !important;\n        color: #000 !important; // Black prints faster: h5bp.com/s\n        box-shadow: none !important;\n        text-shadow: none !important;\n    }\n\n    a,\n    a:visited {\n        text-decoration: underline;\n    }\n\n    a[href]:after {\n        content: \" (\" attr(href) \")\";\n    }\n\n    abbr[title]:after {\n        content: \" (\" attr(title) \")\";\n    }\n\n    // Don't show links that are fragment identifiers,\n    // or use the `javascript:` pseudo protocol\n    a[href^=\"#\"]:after,\n    a[href^=\"javascript:\"]:after {\n        content: \"\";\n    }\n\n    pre,\n    blockquote {\n        border: 1px solid #999;\n        page-break-inside: avoid;\n    }\n\n    thead {\n        display: table-header-group; // h5bp.com/t\n    }\n\n    tr,\n    img {\n        page-break-inside: avoid;\n    }\n\n    img {\n        max-width: 100% !important;\n    }\n\n    p,\n    h2,\n    h3 {\n        orphans: 3;\n        widows: 3;\n    }\n\n    h2,\n    h3 {\n        page-break-after: avoid;\n    }\n\n    // Bootstrap specific changes start\n\n    // Bootstrap components\n    .navbar {\n        display: none;\n    }\n    .btn,\n    .dropup > .btn {\n        > .caret {\n            border-top-color: #000 !important;\n        }\n    }\n    .label {\n        border: 1px solid #000;\n    }\n\n    .table {\n        border-collapse: collapse !important;\n\n        td,\n        th {\n            background-color: #fff !important;\n        }\n    }\n    .table-bordered {\n        th,\n        td {\n            border: 1px solid #ddd !important;\n        }\n    }\n\n    // Bootstrap specific changes end\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// <a href=\"#\"><span class=\"glyphicon glyphicon-star\"></span> Star</a>\n\n// Import the fonts\n@font-face {\n  font-family: 'Glyphicons Halflings';\n  src: url('@{icon-font-path}@{icon-font-name}.eot');\n  src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),\n       url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),\n       url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),\n       url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),\n       url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');\n}\n\n// Catchall baseclass\n.glyphicon {\n  position: relative;\n  top: 1px;\n  display: inline-block;\n  font-family: 'Glyphicons Halflings';\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk               { &:before { content: \"\\002a\"; } }\n.glyphicon-plus                   { &:before { content: \"\\002b\"; } }\n.glyphicon-euro,\n.glyphicon-eur                    { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus                  { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud                  { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope               { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil                 { &:before { content: \"\\270f\"; } }\n.glyphicon-glass                  { &:before { content: \"\\e001\"; } }\n.glyphicon-music                  { &:before { content: \"\\e002\"; } }\n.glyphicon-search                 { &:before { content: \"\\e003\"; } }\n.glyphicon-heart                  { &:before { content: \"\\e005\"; } }\n.glyphicon-star                   { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty             { &:before { content: \"\\e007\"; } }\n.glyphicon-user                   { &:before { content: \"\\e008\"; } }\n.glyphicon-film                   { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large               { &:before { content: \"\\e010\"; } }\n.glyphicon-th                     { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list                { &:before { content: \"\\e012\"; } }\n.glyphicon-ok                     { &:before { content: \"\\e013\"; } }\n.glyphicon-remove                 { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in                { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out               { &:before { content: \"\\e016\"; } }\n.glyphicon-off                    { &:before { content: \"\\e017\"; } }\n.glyphicon-signal                 { &:before { content: \"\\e018\"; } }\n.glyphicon-cog                    { &:before { content: \"\\e019\"; } }\n.glyphicon-trash                  { &:before { content: \"\\e020\"; } }\n.glyphicon-home                   { &:before { content: \"\\e021\"; } }\n.glyphicon-file                   { &:before { content: \"\\e022\"; } }\n.glyphicon-time                   { &:before { content: \"\\e023\"; } }\n.glyphicon-road                   { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt           { &:before { content: \"\\e025\"; } }\n.glyphicon-download               { &:before { content: \"\\e026\"; } }\n.glyphicon-upload                 { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox                  { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle            { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat                 { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh                { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt               { &:before { content: \"\\e032\"; } }\n.glyphicon-lock                   { &:before { content: \"\\e033\"; } }\n.glyphicon-flag                   { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones             { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off             { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down            { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up              { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode                 { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode                { &:before { content: \"\\e040\"; } }\n.glyphicon-tag                    { &:before { content: \"\\e041\"; } }\n.glyphicon-tags                   { &:before { content: \"\\e042\"; } }\n.glyphicon-book                   { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark               { &:before { content: \"\\e044\"; } }\n.glyphicon-print                  { &:before { content: \"\\e045\"; } }\n.glyphicon-camera                 { &:before { content: \"\\e046\"; } }\n.glyphicon-font                   { &:before { content: \"\\e047\"; } }\n.glyphicon-bold                   { &:before { content: \"\\e048\"; } }\n.glyphicon-italic                 { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height            { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width             { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left             { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center           { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right            { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify          { &:before { content: \"\\e055\"; } }\n.glyphicon-list                   { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left            { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right           { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video         { &:before { content: \"\\e059\"; } }\n.glyphicon-picture                { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker             { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust                 { &:before { content: \"\\e063\"; } }\n.glyphicon-tint                   { &:before { content: \"\\e064\"; } }\n.glyphicon-edit                   { &:before { content: \"\\e065\"; } }\n.glyphicon-share                  { &:before { content: \"\\e066\"; } }\n.glyphicon-check                  { &:before { content: \"\\e067\"; } }\n.glyphicon-move                   { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward          { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward          { &:before { content: \"\\e070\"; } }\n.glyphicon-backward               { &:before { content: \"\\e071\"; } }\n.glyphicon-play                   { &:before { content: \"\\e072\"; } }\n.glyphicon-pause                  { &:before { content: \"\\e073\"; } }\n.glyphicon-stop                   { &:before { content: \"\\e074\"; } }\n.glyphicon-forward                { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward           { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward           { &:before { content: \"\\e077\"; } }\n.glyphicon-eject                  { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left           { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right          { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign              { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign             { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign            { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign                { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign          { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign              { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot             { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle          { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle              { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle             { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left             { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right            { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up               { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down             { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt              { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full            { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small           { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign       { &:before { content: \"\\e101\"; } }\n.glyphicon-gift                   { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf                   { &:before { content: \"\\e103\"; } }\n.glyphicon-fire                   { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open               { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close              { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign           { &:before { content: \"\\e107\"; } }\n.glyphicon-plane                  { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar               { &:before { content: \"\\e109\"; } }\n.glyphicon-random                 { &:before { content: \"\\e110\"; } }\n.glyphicon-comment                { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet                 { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up             { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down           { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet                { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart          { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close           { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open            { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical        { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal      { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd                    { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn               { &:before { content: \"\\e122\"; } }\n.glyphicon-bell                   { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate            { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up              { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down            { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right             { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left              { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up                { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down              { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right     { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left      { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up        { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down      { &:before { content: \"\\e134\"; } }\n.glyphicon-globe                  { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench                 { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks                  { &:before { content: \"\\e137\"; } }\n.glyphicon-filter                 { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase              { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen             { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard              { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip              { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty            { &:before { content: \"\\e143\"; } }\n.glyphicon-link                   { &:before { content: \"\\e144\"; } }\n.glyphicon-phone                  { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin                { &:before { content: \"\\e146\"; } }\n.glyphicon-usd                    { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp                    { &:before { content: \"\\e149\"; } }\n.glyphicon-sort                   { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet       { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt   { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order          { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt      { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes     { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked              { &:before { content: \"\\e157\"; } }\n.glyphicon-expand                 { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down          { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up            { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in                 { &:before { content: \"\\e161\"; } }\n.glyphicon-flash                  { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out                { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window             { &:before { content: \"\\e164\"; } }\n.glyphicon-record                 { &:before { content: \"\\e165\"; } }\n.glyphicon-save                   { &:before { content: \"\\e166\"; } }\n.glyphicon-open                   { &:before { content: \"\\e167\"; } }\n.glyphicon-saved                  { &:before { content: \"\\e168\"; } }\n.glyphicon-import                 { &:before { content: \"\\e169\"; } }\n.glyphicon-export                 { &:before { content: \"\\e170\"; } }\n.glyphicon-send                   { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk            { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved           { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove          { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save            { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open            { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card            { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer               { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery                { &:before { content: \"\\e179\"; } }\n.glyphicon-header                 { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed             { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone               { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt              { &:before { content: \"\\e183\"; } }\n.glyphicon-tower                  { &:before { content: \"\\e184\"; } }\n.glyphicon-stats                  { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video               { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video               { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles              { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo           { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby            { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1              { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1              { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1              { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark         { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark      { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download         { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload           { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer           { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous         { &:before { content: \"\\e200\"; } }\n.glyphicon-cd                     { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file              { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file              { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up               { &:before { content: \"\\e204\"; } }\n.glyphicon-copy                   { &:before { content: \"\\e205\"; } }\n.glyphicon-paste                  { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door                   { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key                    { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert                  { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer              { &:before { content: \"\\e210\"; } }\n.glyphicon-king                   { &:before { content: \"\\e211\"; } }\n.glyphicon-queen                  { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn                   { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop                 { &:before { content: \"\\e214\"; } }\n.glyphicon-knight                 { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula           { &:before { content: \"\\e216\"; } }\n.glyphicon-tent                   { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard             { &:before { content: \"\\e218\"; } }\n.glyphicon-bed                    { &:before { content: \"\\e219\"; } }\n.glyphicon-apple                  { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase                  { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass              { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp                   { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate              { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank             { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors               { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin                { &:before { content: \"\\e227\"; } }\n.glyphicon-btc                    { &:before { content: \"\\e227\"; } }\n.glyphicon-xbt                    { &:before { content: \"\\e227\"; } }\n.glyphicon-yen                    { &:before { content: \"\\00a5\"; } }\n.glyphicon-jpy                    { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble                  { &:before { content: \"\\20bd\"; } }\n.glyphicon-rub                    { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale                  { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly              { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted       { &:before { content: \"\\e232\"; } }\n.glyphicon-education              { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal      { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical        { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger         { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window           { &:before { content: \"\\e237\"; } }\n.glyphicon-oil                    { &:before { content: \"\\e238\"; } }\n.glyphicon-grain                  { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses             { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size              { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color             { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background        { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top       { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom    { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left      { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical  { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right     { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right         { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left          { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom        { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top           { &:before { content: \"\\e253\"; } }\n.glyphicon-console                { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript            { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript              { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left              { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right             { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down              { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up                { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n  .box-sizing(border-box);\n}\n*:before,\n*:after {\n  .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n  font-size: 10px;\n  -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n  font-family: @font-family-base;\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @text-color;\n  background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n  font-family: inherit;\n  font-size: inherit;\n  line-height: inherit;\n}\n\n\n// Links\n\na {\n  color: @link-color;\n  text-decoration: none;\n\n  &:hover,\n  &:focus {\n    color: @link-hover-color;\n    text-decoration: @link-hover-decoration;\n  }\n\n  &:focus {\n    .tab-focus();\n  }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n  margin: 0;\n}\n\n\n// Images\n\nimg {\n  vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n  .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n  border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n  padding: @thumbnail-padding;\n  line-height: @line-height-base;\n  background-color: @thumbnail-bg;\n  border: 1px solid @thumbnail-border;\n  border-radius: @thumbnail-border-radius;\n  .transition(all .2s ease-in-out);\n\n  // Keep them at most 100% wide\n  .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n  border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n  margin-top:    @line-height-computed;\n  margin-bottom: @line-height-computed;\n  border: 0;\n  border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content\n\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n  &:active,\n  &:focus {\n    position: static;\n    width: auto;\n    height: auto;\n    margin: 0;\n    overflow: visible;\n    clip: auto;\n  }\n}\n\n\n// iOS \"clickable elements\" fix for role=\"button\"\n//\n// Fixes \"clickability\" issue (and more generally, the firing of events such as focus as well)\n// for traditionally non-focusable elements with role=\"button\"\n// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n\n[role=\"button\"] {\n  cursor: pointer;\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n  -webkit-animation: @animation;\n       -o-animation: @animation;\n          animation: @animation;\n}\n.animation-name(@name) {\n  -webkit-animation-name: @name;\n          animation-name: @name;\n}\n.animation-duration(@duration) {\n  -webkit-animation-duration: @duration;\n          animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n  -webkit-animation-timing-function: @timing-function;\n          animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n  -webkit-animation-delay: @delay;\n          animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n  -webkit-animation-iteration-count: @iteration-count;\n          animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n  -webkit-animation-direction: @direction;\n          animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n  -webkit-animation-fill-mode: @fill-mode;\n          animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n  -webkit-backface-visibility: @visibility;\n     -moz-backface-visibility: @visibility;\n          backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n          box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n  -webkit-box-sizing: @boxmodel;\n     -moz-box-sizing: @boxmodel;\n          box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n  -webkit-column-count: @column-count;\n     -moz-column-count: @column-count;\n          column-count: @column-count;\n  -webkit-column-gap: @column-gap;\n     -moz-column-gap: @column-gap;\n          column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n  word-wrap: break-word;\n  -webkit-hyphens: @mode;\n     -moz-hyphens: @mode;\n      -ms-hyphens: @mode; // IE10+\n       -o-hyphens: @mode;\n          hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  // Firefox\n  &::-moz-placeholder {\n    color: @color;\n    opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n  }\n  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n  -webkit-transform: scale(@ratio);\n      -ms-transform: scale(@ratio); // IE9 only\n       -o-transform: scale(@ratio);\n          transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n  -webkit-transform: scale(@ratioX, @ratioY);\n      -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n       -o-transform: scale(@ratioX, @ratioY);\n          transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n  -webkit-transform: scaleX(@ratio);\n      -ms-transform: scaleX(@ratio); // IE9 only\n       -o-transform: scaleX(@ratio);\n          transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n  -webkit-transform: scaleY(@ratio);\n      -ms-transform: scaleY(@ratio); // IE9 only\n       -o-transform: scaleY(@ratio);\n          transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n  -webkit-transform: skewX(@x) skewY(@y);\n      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n       -o-transform: skewX(@x) skewY(@y);\n          transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n  -webkit-transform: translate(@x, @y);\n      -ms-transform: translate(@x, @y); // IE9 only\n       -o-transform: translate(@x, @y);\n          transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n  -webkit-transform: translate3d(@x, @y, @z);\n          transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees); // IE9 only\n       -o-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n  -webkit-transform: rotateX(@degrees);\n      -ms-transform: rotateX(@degrees); // IE9 only\n       -o-transform: rotateX(@degrees);\n          transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n  -webkit-transform: rotateY(@degrees);\n      -ms-transform: rotateY(@degrees); // IE9 only\n       -o-transform: rotateY(@degrees);\n          transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n  -webkit-perspective: @perspective;\n     -moz-perspective: @perspective;\n          perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n  -webkit-perspective-origin: @perspective;\n     -moz-perspective-origin: @perspective;\n          perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n  -webkit-transform-origin: @origin;\n     -moz-transform-origin: @origin;\n      -ms-transform-origin: @origin; // IE9 only\n          transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n  -webkit-transition: @transition;\n       -o-transition: @transition;\n          transition: @transition;\n}\n.transition-property(@transition-property) {\n  -webkit-transition-property: @transition-property;\n          transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n  -webkit-transition-delay: @transition-delay;\n          transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n  -webkit-transition-duration: @transition-duration;\n          transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n  -webkit-transition-timing-function: @timing-function;\n          transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n  -webkit-transition: -webkit-transform @transition;\n     -moz-transition: -moz-transform @transition;\n       -o-transition: -o-transform @transition;\n          transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n  -webkit-user-select: @select;\n     -moz-user-select: @select;\n      -ms-user-select: @select; // IE10+\n          user-select: @select;\n}\n","//\n// Variables\n// --------------------------------------------------\n// Bootstrap overrides and PatternFly-specific variables\n\n// Sass compass/sprockets asset helper flag\n// ----------------------\n@pf-sass-asset-helper:                                              false;\n\n// PatternFly-specific\n// -------------------\n@import \"color-variables.less\";\n\n@applauncher-pf-dropdown-menu-border-width:                         1px;\n@applauncher-pf-dropdown-menu-padding:                              9px;\n@applauncher-pf-dropdown-menu-width:                                220px;\n@applauncher-pf-dropdown-toggle-padding:                            7px 10px;\n@applauncher-pf-icon-padding-right:                                 4px;\n@applauncher-pf-menu-link-border-color:                             @color-pf-white;\n@applauncher-pf-menu-link-border-color-hover:                       @color-pf-black-400;\n@applauncher-pf-menu-link-border-width:                             1px;\n@applauncher-pf-menu-link-color:                                    @color-pf-black-300;\n@applauncher-pf-menu-link-color-disabled:                           @color-pf-black-500;\n@applauncher-pf-menu-link-color-hover:                              @color-pf-blue-400;\n@applauncher-pf-menu-link-padding:                                  7px 10px;\n@applauncher-pf-menu-link-padding-block-list:                       15px 10px;\n@applauncher-pf-menu-link-background-color-hover:                   @color-pf-black-150;\n@applauncher-pf-menu-link-shadow:                                   @color-pf-black-300;\n@applauncher-pf-menu-link-icon-font-size:                           2em;\n@applauncher-pf-menu-link-icon-width:                               ((9 * @applauncher-pf-menu-link-icon-font-size) / 14); //Numbers to imitate fa-fw class\n@bootstrap-switch-handle-default-bg-color:                          @color-pf-black-100;\n@bootstrap-treeview-highlight-color:                                @color-pf-blue-300;\n@btn-default-bg-img-start:                                          @color-pf-black-100;\n@btn-default-bg-img-stop:                                           @color-pf-black-200;\n@btn-xs-font-weight:                                                400;\n@card-pf-accented-border-top-color:                                 @color-pf-blue-300;\n@card-pf-aggregate-status-title-icon-color:                         @color-pf-black-900;\n@card-pf-bg-color:                                                  @color-pf-white;\n@card-pf-border-color:                                              @color-pf-black-300;\n@card-pf-border-top-color:                                          transparent;\n@card-pf-container-bg-color:                                        @color-pf-black-150;\n@card-pf-footer-bg-color:                                           @color-pf-black-100;\n@card-pf-selected-border-color:                                     @color-pf-blue-300;\n@contextselector-pf-margin-left:                                    10px;\n@contextselector-pf-nav-item-iconic-padding:                        23px 20px 18px 10px;\n@contextselector-title-width-mobile:                                170px;\n@contextselector-title-width-desktop:                               210px;\n@contextselector-pf-form-group-margin:                              0 5px 5px 5px;\n@contextselector-pf-list-max-height:                                200px;\n@contextselector-pf-list-li-padding:                                1px 10px;\n@contextselector-pf-list-li-border-width:                           1px 0;\n@donut-font-size-big:                                               30px;\n@drawer-pf-top-vertical:                                            58px;\n@drawer-pf-top-horizontal:                                          26px;\n@dropdown-divider-margin:                                           4px 1px;\n@dropdown-link-active-border-color:                                 @color-pf-blue;\n@dropdown-link-hover-border-color:                                  @color-pf-blue-100;\n@dropdown-link-focus-color:                                         @color-pf-white;\n@flyout-transition-pf:                                              all 200ms cubic-bezier(.35, 0, .25, 1);\n@font-family-monospace:                                             Menlo, Monaco, Consolas, monospace;\n@font-path:                                                         \"../fonts\";\n@footer-pf-bg-color:                                                @color-pf-black;\n@footer-pf-padding-left:                                            25px;\n@footer-pf-padding-top:                                             10px;\n@footer-pf-height:                                                  37px;\n@gray-light-pf:                                                     @color-pf-black-400;\n@gray-pf:                                                           @color-pf-black-700;\n@icon-font-name-fa:                                                 \"FontAwesome\";\n@icon-font-name-pf:                                                 \"PatternFlyIcons-webfont\";\n@icon-prefix:                                                       pficon;\n@img-bg-login:                                                      \"bg-login.jpg\";\n@img-path:                                                          \"../img\";\n@img-spinner:                                                       \"spinner.gif\";\n@img-spinner-inverse:                                               \"spinner-inverse.gif\";\n@img-spinner-inverse-lg:                                            \"spinner-inverse-lg.gif\";\n@img-spinner-inverse-sm:                                            \"spinner-inverse-sm.gif\";\n@img-spinner-inverse-xs:                                            \"spinner-inverse-xs.gif\";\n@img-spinner-lg:                                                    \"spinner-lg.gif\";\n@img-spinner-sm:                                                    \"spinner-sm.gif\";\n@img-spinner-xs:                                                    \"spinner-xs.gif\";\n@input-border-hover:                                                @color-pf-blue-200;\n@input-border-focus:                                                @color-pf-blue-400;\n@list-pf-border-color:                                              @color-pf-black-200;\n@list-pf-active-border-color:                                       @color-pf-black-400;\n@list-pf-header-background-color:                                   @color-pf-black-200;\n@list-pf-hover-background-color:                                    @color-pf-blue-25;\n@list-pf-main-content-width:                                        70%; // sets the proportional width of the main content vs the additional content\n@list-pf-padding:                                                   20px;\n@list-view-accented-border:                                         @color-pf-blue-300;\n@list-view-active-bg:                                               @color-pf-blue-50;\n@list-view-active-border:                                           @color-pf-black-400;\n@list-view-divider:                                                 @color-pf-black-300;\n@list-view-hover-bg:                                                @color-pf-blue-25;\n@list-group-top-border:                                             @color-pf-black-200;\n@login-bg-color:                                                    @color-pf-black;\n@login-container-bg-color-rgba:                                     fade(@color-pf-white, 5.5%);\n@modal-about-pf-bg-img:                                             \"bg-modal-about-pf.png\";\n@modal-title-padding-horizontal:                                    18px;\n@modal-title-padding-vertical:                                      10px;\n@navbar-pf-active-color:                                            @color-pf-black-150;\n@navbar-pf-alt-active-color:                                        @color-pf-white;\n@navbar-pf-alt-bg-color:                                            @color-pf-black;\n@navbar-pf-alt-bg-img:                                              \"bg-navbar-pf-alt.svg\";\n@navbar-pf-bg-color:                                                @color-pf-black;\n@navbar-pf-border-color:                                            @color-pf-blue-300;\n@navbar-pf-color:                                                   @color-pf-black-300;\n@navbar-pf-height:                                                  60px;\n@navbar-pf-icon-bar-bg-color:                                       @color-pf-white;\n@navbar-pf-navbar-navbar-brand-min-width:                           270px;\n@navbar-pf-navbar-navbar-brand-padding:                             8px 0 7px;\n@navbar-pf-navbar-navbar-persistent-bg-color:                       @color-pf-black-150;\n@navbar-pf-navbar-navbar-persistent-border-color:                   @color-pf-black-300;\n@navbar-pf-vertical-active-color:                                   @color-pf-white;\n@navbar-pf-vertical-bg-color:                                       #1d1d1d;\n@navbar-pf-vertical-bg-repeat:                                      no-repeat;\n@navbar-pf-vertical-bg-size:                                        auto 100%;\n@navbar-pf-vertical-border-color:                                   @color-pf-blue-300;\n@navbar-pf-vertical-border-style:                                   solid;\n@navbar-pf-vertical-border-width:                                   2px;\n@navbar-pf-vertical-color:                                          @color-pf-black-300;\n@navbar-pf-vertical-height:                                         60px;\n@navbar-pf-vertical-icon-bar-bg-color:                              @color-pf-white;\n@navbar-pf-vertical-navbar-brand-color:                             @color-pf-white;\n@navbar-pf-vertical-navbar-brand-icon-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-margin:                            0 0 0 25px;\n@navbar-pf-vertical-navbar-brand-min-height:                        35px;\n@navbar-pf-vertical-navbar-brand-max-height:                        35px;\n@navbar-pf-vertical-navbar-brand-line-height:                       34px;\n@navbar-pf-vertical-navbar-brand-name-breakpoint:                   480px;\n@navbar-pf-vertical-navbar-brand-name-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-padding:                           11px 0 12px;\n@navbar-pf-vertical-navbar-toggle-margin:                           13px 15px;\n@navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg:                @color-pf-white;\n@navbar-pf-vertical-nav-item-iconic-padding:                        21px 12px;\n@nav-pf-container-transition-period:                                250ms;\n@nav-pf-menu-transition-period:                                     100ms;\n@nav-pf-vertical-active-color:                                      @color-pf-white;\n@nav-pf-vertical-active-before-color:                               @color-pf-blue-300;\n@nav-pf-vertical-active-bg-color:                                   @color-pf-black-800;\n@nav-pf-vertical-active-border-color:                               @color-pf-black-900;\n@nav-pf-vertical-active-font-weight:                                600;\n@nav-pf-vertical-active-icon-color:                                 @color-pf-blue-300;\n@nav-pf-vertical-badge-color:                                       @color-pf-white;\n@nav-pf-vertical-badge-bg-color:                                    @color-pf-black-900;\n@nav-pf-vertical-bg-color:                                          @color-pf-black-900;\n@nav-pf-vertical-border-color:                                      @color-pf-black-900;\n@nav-pf-vertical-collapsed-width:                                   75px;\n@nav-pf-vertical-color:                                             @color-pf-black-300;\n@nav-pf-vertical-font-weight:                                       400;\n@nav-pf-vertical-icon-color:                                        @color-pf-black-600;\n@nav-pf-vertical-icon-width:                                        24px;\n@nav-pf-vertical-item-border-color:                                 @color-pf-black;\n@nav-pf-vertical-link-height:                                       63px;\n@nav-pf-vertical-link-padding:                                      17px 20px 17px 25px;\n@nav-pf-vertical-secondary-active-color:                            @color-pf-white;\n@nav-pf-vertical-secondary-active-bg-color:                         @color-pf-black-700;\n@nav-pf-vertical-secondary-active-icon-color:                       @color-pf-blue-300;\n@nav-pf-vertical-secondary-badge-color:                             @color-pf-white;\n@nav-pf-vertical-secondary-badge-bg-color:                          @color-pf-black-900;\n@nav-pf-vertical-secondary-border-color:                            @color-pf-blue-300;\n@nav-pf-vertical-secondary-color:                                   @color-pf-white;\n@nav-pf-vertical-secondary-header-margin:                           18px 20px 10px 20px;\n@nav-pf-vertical-secondary-indicator-color:                         @color-pf-black-600;\n@nav-pf-vertical-secondary-indicator-padding:                       14px 0;\n@nav-pf-vertical-secondary-item-color:                              @color-pf-black-300;\n@nav-pf-vertical-secondary-item-padding:                            0 0 5px 0;\n@nav-pf-vertical-secondary-link-height:                             63px;\n@nav-pf-vertical-secondary-link-padding:                            4px 0 2px 0;\n@nav-pf-vertical-secondary-list-header-margin:                      30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-active-color:                             @color-pf-white;\n@nav-pf-vertical-tertiary-active-bg-color:                          @color-pf-black-800;\n@nav-pf-vertical-tertiary-indicator-padding:                        0;\n@nav-pf-vertical-tertiary-bg-color:                                 @color-pf-black-700;\n@nav-pf-vertical-tertiary-color:                                    #fff;\n@nav-pf-vertical-tertiary-header-margin:                            18px 20px 10px 20px;\n@nav-pf-vertical-tertiary-list-header-margin:                       30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-item-padding:                             0 0 5px 0;\n@nav-pf-vertical-tertiary-item-color:                               @color-pf-black-300;\n@nav-pf-vertical-tertiary-link-margin:                              0 20px 0 20px;\n@nav-pf-vertical-tertiary-link-padding:                             4px 0 2px 0;\n@nav-pf-vertical-tertiary-badge-color:                              @color-pf-white;\n@nav-pf-vertical-tertiary-badge-bg-color:                           @color-pf-black-900;\n@nav-pf-vertical-width:                                             200px;\n@toast-notification-top:                                            80px;\n@pagination-padding-small-vertical:                                 0;\n@panel-default-border-color:                                        @color-pf-black-400;\n@pficon-var-add-circle-o:                                           \"\\e61b\";\n@pficon-var-applications:                                           \"\\e936\";\n@pficon-var-arrow:                                                  \"\\e929\";\n@pficon-var-asleep:                                                 \"\\e925\";\n@pficon-var-automation:                                             \"\\e937\";\n@pficon-var-blueprint:                                              \"\\e915\";\n@pficon-var-build:                                                  \"\\e902\";\n@pficon-var-builder-image:                                          \"\\e800\";\n@pficon-var-bundle:                                                 \"\\e918\";\n@pficon-var-catalog:                                                \"\\e939\";\n@pficon-var-chat:                                                   \"\\e928\";\n@pficon-var-close:                                                  \"\\e60b\";\n@pficon-var-cloud-security:                                         \"\\e903\";\n@pficon-var-cloud-tenant:                                           \"\\e904\";\n@pficon-var-cluster:                                                \"\\e620\";\n@pficon-var-connected:                                              \"\\e938\";\n@pficon-var-container-node:                                         \"\\e621\";\n@pficon-var-cpu:                                                    \"\\e927\";\n@pficon-var-degraded:                                               \"\\e91b\";\n@pficon-var-delete:                                                 \"\\e611\";\n@pficon-var-disconnected:                                           \"\\e93c\";\n@pficon-var-domain:                                                 \"\\e919\";\n@pficon-var-edit:                                                   \"\\e60a\";\n@pficon-var-enhancement:                                            \"\\e93a\";\n@pficon-var-enterprise:                                             \"\\e906\";\n@pficon-var-equalizer:                                              \"\\e610\";\n@pficon-var-error-circle-o:                                         \"\\e926\";\n@pficon-var-export:                                                 \"\\e616\";\n@pficon-var-flag:                                                   \"\\e603\";\n@pficon-var-flavor:                                                 \"\\e907\";\n@pficon-var-filter:                                                 \"\\e943\";\n@pficon-var-folder-close:                                           \"\\e607\";\n@pficon-var-folder-open:                                            \"\\e606\";\n@pficon-var-help:                                                   \"\\e605\";\n@pficon-var-history:                                                \"\\e93b\";\n@pficon-var-home:                                                   \"\\e618\";\n@pficon-var-image:                                                  \"\\e61f\";\n@pficon-var-import:                                                 \"\\e615\";\n@pficon-var-info:                                                   \"\\e92b\";\n@pficon-var-infrastructure:                                         \"\\e93d\";\n@pficon-var-integration:                                            \"\\e948\";\n@pficon-var-in-progress:                                            \"\\e92c\";\n@pficon-var-key:                                                    \"\\e924\";\n@pficon-var-kubernetes:                                             \"\\e627\";\n@pficon-var-locked:                                                 \"\\e923\";\n@pficon-var-maintenance:                                            \"\\e92d\";\n@pficon-var-memory:                                                 \"\\e908\";\n@pficon-var-messages:                                               \"\\e603\";\n@pficon-var-middleware:                                             \"\\e917\";\n@pficon-var-migration:                                              \"\\e92e\";\n@pficon-var-monitoring:                                             \"\\e944\";\n@pficon-var-network:                                                \"\\e909\";\n@pficon-var-network-range:                                          \"\\e94a\";\n@pficon-var-off:                                                    \"\\e92f\";\n@pficon-var-ok:                                                     \"\\e602\";\n@pficon-var-on:                                                     \"\\e931\";\n@pficon-var-on-running:                                             \"\\e930\";\n@pficon-var-openshift:                                              \"\\e626\";\n@pficon-var-optimize:                                               \"\\e93e\";\n@pficon-var-orders:                                                 \"\\e93f\";\n@pficon-var-paused:                                                 \"\\e932\";\n@pficon-var-pending:                                                \"\\e933\";\n@pficon-var-plugged:                                                \"\\e940\";\n@pficon-var-port:                                                   \"\\e945\";\n@pficon-var-private:                                                \"\\e914\";\n@pficon-var-print:                                                  \"\\e612\";\n@pficon-var-process-automation:                                     \"\\e949\";\n@pficon-var-project:                                                \"\\e905\";\n@pficon-var-rebalance:                                              \"\\e91c\";\n@pficon-var-rebooting:                                              \"\\e934\";\n@pficon-var-regions:                                                \"\\e90a\";\n@pficon-var-registry:                                               \"\\e623\";\n@pficon-var-remove:                                                 \"\\e611\";\n@pficon-var-replicator:                                             \"\\e624\";\n@pficon-var-repository:                                             \"\\e90b\";\n@pficon-var-resource-pool:                                          \"\\e90c\";\n@pficon-var-resources-almost-empty:                                 \"\\e91d\";\n@pficon-var-resources-almost-full:                                  \"\\e912\";\n@pficon-var-resources-full:                                         \"\\e92a\";\n@pficon-var-restart:                                                \"\\e617\";\n@pficon-var-route:                                                  \"\\e625\";\n@pficon-var-running:                                                \"\\e614\";\n@pficon-var-save:                                                   \"\\e601\";\n@pficon-var-satellite:                                              \"\\e94b\";\n@pficon-var-screen:                                                 \"\\e600\";\n@pficon-var-search:                                                 \"\\e921\";\n@pficon-var-security:                                               \"\\e946\";\n@pficon-var-server:                                                 \"\\e90d\";\n@pficon-var-server-group:                                           \"\\e91a\";\n@pficon-var-service:                                                \"\\e61e\";\n@pficon-var-service-catalog:                                        \"\\e941\";\n@pficon-var-services:                                               \"\\e947\";\n@pficon-var-settings:                                               \"\\e610\";\n@pficon-var-spinner:                                                \"\\e614\";\n@pficon-var-spinner2:                                               \"\\e613\";\n@pficon-var-storage-domain:                                         \"\\e90e\";\n@pficon-var-template:                                               \"\\e94c\";\n@pficon-var-tenant:                                                 \"\\e916\";\n@pficon-var-thumb-tack-o:                                           \"\\e920\";\n@pficon-var-topology:                                               \"\\e608\";\n@pficon-var-trend-down:                                             \"\\e900\";\n@pficon-var-trend-up:                                               \"\\e901\";\n@pficon-var-unlocked:                                               \"\\e922\";\n@pficon-var-unplugged:                                              \"\\e942\";\n@pficon-var-unknown:                                                \"\\e935\";\n@pficon-var-user:                                                   \"\\e91e\";\n@pficon-var-users:                                                  \"\\e91f\";\n@pficon-var-vcenter:                                                \"\\e94d\";\n@pficon-var-virtual-machine:                                        \"\\e90f\";\n@pficon-var-volume:                                                 \"\\e910\";\n@pficon-var-warning-triangle-o:                                     \"\\e913\";\n@pficon-var-zone:                                                   \"\\e911\";\n@progress-description-label-width:                                  85px;\n@sidebar-pf-bg:                                                     @color-pf-black-100;\n@sidebar-pf-border-color:                                           @color-pf-black-300;\n@skiplink-pf-top:                                                   12px;\n@skiplink-pf-left:                                                  10px;\n@table-border-hover:                                                @color-pf-blue-200;\n@table-cell-padding-bottom:                                         3px;\n@table-cell-padding-top:                                            2px;\n// Reference variables declared in block above\n@bootstrap-switch-bg-color-start:                                   @btn-default-bg-img-start;\n@bootstrap-switch-bg-color-stop:                                    @btn-default-bg-img-stop;\n@fa-font-path:                                                      @font-path;\n@navbar-pf-navbar-header-border-color:                              lighten(@navbar-pf-bg-color, 15%);\n@navbar-pf-navbar-nav-active-active-bg-color:                       lighten(@navbar-pf-bg-color, 8%);\n@navbar-pf-navbar-nav-active-active-open-bg-color:                  lighten(@navbar-pf-bg-color, 11%);\n@navbar-pf-navbar-nav-active-bg-color:                              lighten(@navbar-pf-bg-color, 12.5%);\n@navbar-pf-navbar-primary-bg-color-start:                           lighten(@navbar-pf-bg-color, 10%); // #474C50\n@navbar-pf-navbar-primary-bg-color-stop:                            @navbar-pf-bg-color; // #383F43\n@navbar-pf-navbar-utility-border-color:                             lighten(@navbar-pf-bg-color, 15.5%);\n@navbar-pf-navbar-utility-color:                                    @navbar-pf-color;\n@navbar-pf-navbar-utility-hover-bg-color:                           lighten(@navbar-pf-bg-color, 12.5%);\n@nav-pf-vertical-secondary-bg-color:                                @nav-pf-vertical-active-bg-color;\n@nav-tabs-color:                                                    @gray-pf;\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-bg-color-start:                   lighten(@navbar-pf-navbar-primary-bg-color-start, 8.5%);\n@navbar-pf-navbar-primary-context-bg-color-stop:                    lighten(@navbar-pf-navbar-primary-bg-color-stop, 11%);\n@navbar-pf-navbar-primary-hover-bg-color-start:                     lighten(@navbar-pf-navbar-primary-bg-color-start, 10%);\n@navbar-pf-navbar-primary-hover-bg-color-stop:                      lighten(@navbar-pf-navbar-primary-bg-color-stop, 10%);\n@navbar-pf-navbar-primary-hover-border-color:                       lighten(@navbar-pf-navbar-header-border-color, 20%);\n@navbar-pf-navbar-primary-context-border-color:                     lighten(@navbar-pf-navbar-header-border-color, 8%);\n@navbar-pf-navbar-primary-context-border-top-color:                 lighten(@navbar-pf-navbar-header-border-color, 7%);\n@navbar-pf-navbar-utility-hover-border-color:                       lighten(@navbar-pf-navbar-utility-border-color, 5%);\n@navbar-pf-navbar-utility-open-bg-color:                            lighten(@navbar-pf-navbar-utility-hover-bg-color, 7.5%);\n@navbar-pf-navbar-utility-open-border-color:                        lighten(@navbar-pf-navbar-utility-hover-border-color, 5%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-active-bg-color-start:                    lighten(@navbar-pf-navbar-primary-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-active-bg-color-stop:                     lighten(@navbar-pf-navbar-primary-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-active-border-color:                      lighten(@navbar-pf-navbar-primary-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-start:             lighten(@navbar-pf-navbar-primary-context-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-stop:              lighten(@navbar-pf-navbar-primary-context-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-hover-border-color:               lighten(@navbar-pf-navbar-primary-context-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-border-top-color:           lighten(@navbar-pf-navbar-primary-context-border-top-color, 6%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-active-bg-color-start:            lighten(@navbar-pf-navbar-primary-context-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-active-bg-color-stop:             lighten(@navbar-pf-navbar-primary-context-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-active-border-color:              lighten(@navbar-pf-navbar-primary-context-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-active-border-top-color:          lighten(@navbar-pf-navbar-primary-context-hover-border-top-color, 6%);\n// References variable declared in block above\n@navbar-pf-navbar-primary-context-active-border-right-color:        @navbar-pf-navbar-primary-context-active-border-color;\n@slider-line-height:                                                16px;\n@slider-horizontal-width:                                           100%;\n@slider-primary-top:                                                @color-pf-black-100;\n@slider-primary-bottom:                                             @color-pf-black-200;\n@slider-secondary-top:                                              @color-pf-blue-400;\n@slider-secondary-bottom:                                           @color-pf-blue-300;\n\n// Alternate navigation layout - Kept for backwards compatibility\n// --------------------------------------------------------------\n@footer-pf-alt-bg-color:                                            @footer-pf-bg-color;\n@footer-pf-alt-padding-left:                                        @footer-pf-padding-left;\n@footer-pf-alt-padding-top:                                         @footer-pf-padding-top;\n@footer-pf-alt-height:                                              @footer-pf-height;\n@img-path-alt:                                                      @img-path;\n@nav-pf-vertical-alt-active-color:                                  @color-pf-blue-300;\n@nav-pf-vertical-alt-bg-color:                                      @color-pf-white;\n@nav-pf-vertical-alt-badge-color:                                   @color-pf-white;\n@nav-pf-vertical-alt-border-color:                                  @sidebar-pf-border-color;\n@nav-pf-vertical-alt-collapsed-width:                               75px;\n@nav-pf-vertical-alt-link-height:                                   63px;\n@nav-pf-vertical-alt-link-padding:                                  17px 20px 17px 25px;\n@nav-pf-vertical-alt-width:                                         250px;\n@navbar-pf-alt-bg-repeat:                                           @navbar-pf-vertical-bg-repeat;\n@navbar-pf-alt-bg-size:                                             @navbar-pf-vertical-bg-size;\n@navbar-pf-alt-border-color:                                        @navbar-pf-vertical-border-color;\n@navbar-pf-alt-border-style:                                        @navbar-pf-vertical-border-style;\n@navbar-pf-alt-border-width:                                        @navbar-pf-vertical-border-width;\n@navbar-pf-alt-color:                                               @navbar-pf-vertical-color;\n@navbar-pf-alt-height:                                              @navbar-pf-vertical-height;\n@navbar-pf-alt-nav-item-iconic-padding:                             @navbar-pf-vertical-nav-item-iconic-padding;\n@navbar-pf-alt-navbar-brand-color:                                  @navbar-pf-vertical-navbar-brand-color;\n@navbar-pf-alt-navbar-brand-icon-margin:                            @navbar-pf-vertical-navbar-brand-icon-margin;\n@navbar-pf-alt-navbar-brand-margin:                                 @navbar-pf-vertical-navbar-brand-margin;\n@navbar-pf-alt-navbar-brand-min-height:                             @navbar-pf-vertical-navbar-brand-min-height;\n@navbar-pf-alt-navbar-brand-name-breakpoint:                        @navbar-pf-vertical-navbar-brand-name-breakpoint;\n@navbar-pf-alt-navbar-brand-name-margin:                            @navbar-pf-vertical-navbar-brand-name-margin;\n@navbar-pf-alt-navbar-brand-padding:                                @navbar-pf-vertical-navbar-brand-padding;\n@navbar-pf-alt-navbar-toggle-margin:                                @navbar-pf-vertical-navbar-toggle-margin;\n@navbar-pf-alt-navbar-toggle-icon-bar-hover-bg:                     @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n\n// Login page\n// -------------------\n@login-pf-brand-margin-top:                                               20px;\n@login-pf-brand-desktop-margin-top:                                       62px;\n@login-pf-page-header-margin-bottom:                                      20px;\n@login-pf-page-header-desktop-margin-bottom:                              40px;\n@login-pf-page-header-paragraph-margin-top:                               20px;\n@login-pf-card-pf-padding:                                 10px 20px 30px 20px;\n@login-pf-card-pf-desktop-padding:                         20px 40px 30px 40px;\n@login-pf-card-pf-max-width:                                             840px;\n@login-pf-checkbox-label-margin-bottom:                                   15px;\n@login-pf-dropdown-toggle-padding-right:                                  15px;\n@login-pf-btn-primary-margin-top:                                         40px;\n@login-pf-header-margin-bottom:                                           20px;\n@login-pf-header-desktop-margin-bottom:                                   30px;\n@login-pf-signup-margin-top:                                              40px;\n@login-pf-signup-a-margin-left:                                           10px;\n@login-pf-page-footer-links-margin-top:                                   60px;\n@login-pf-page-footer-links-li-margin-right:                              20px;\n@login-pf-page-footer-sso-margin-top:                                     40px;\n@login-pf-page-footer-sso-logos-li-margin:                                5px;\n@login-pf-page-accounts-margin:                                           20px;\n@login-pf-accounts-section-heading-margin-top:                            30px;\n@login-pf-accounts-section-heading-margin-bottom:                         30px;\n@login-pf-accounts-section-heading-desktop-margin-bottom:                 15px;\n@login-pf-accounts-section-heading-desktop-padding-right:                 40px;\n@login-pf-accounts-section-heading-desktop-padding-left:                  40px;\n@login-pf-accounts-link-margin-bottom:                                    15px;\n@login-pf-accounts-link-img-margin-right:                                 10px;\n@login-pf-accounts-link-a-padding:                                        7px;\n@login-pf-accounts-more-caret-margin-left:                                5px;\n@login-pf-social-margin:                                           40px 0 0 0;\n\n\n// Bootstrap overrides\n// -------------------\n@alert-info-border:                                                 @color-pf-black-500;\n@alert-link-font-weight:                                            500;\n@alert-padding:                                                     11px;\n@body-bg:                                                           @color-pf-white;\n@border-radius-base:                                                1px;\n@brand-danger:                                                      @color-pf-red;\n@brand-info:                                                        @color-pf-blue-500;\n@brand-primary:                                                     @color-pf-blue-300;\n@brand-success:                                                     @color-pf-green;\n@brand-warning:                                                     @color-pf-orange;\n@breadcrumb-bg:                                                     transparent;\n@breadcrumb-separator:                                              \"\\f105\";\n@bs-datetimepicker-timepicker-font-size:                            1em;\n@bs-datetimepicker-btn-hover-bg:                                    transparent;\n@btn-danger-bg:                                                     @color-pf-red-200;\n@btn-danger-border:                                                 @color-pf-red-300;\n@btn-default-border:                                                @color-pf-black-400;\n@btn-font-weight:                                                   600;\n@btn-primary-bg:                                                    @color-pf-blue;\n@btn-primary-border:                                                @color-pf-blue-500;\n@caret-width-base:                                                  0;\n@code-bg:                                                           @color-pf-blue-50;\n@dropdown-border:                                                   @color-pf-black-400;\n@dropdown-divider-bg:                                               @color-pf-black-200;\n@dropdown-link-active-color:                                        @color-pf-white;\n@dropdown-link-hover-bg:                                            @color-pf-blue-50;\n@font-family-base:                                                  \"Open Sans\", Helvetica, Arial, sans-serif;\n@font-size-base:                                                    12px;\n@gray-dark:                                                         lighten(@color-pf-black, 20%);   // #333\n@gray-darker:                                                       lighten(@color-pf-black, 13.5%); // #222\n@gray-light:                                                        lighten(@color-pf-black, 60%);   // #999\n@gray-lighter:                                                      lighten(@color-pf-black, 93.5%); // #eee\n@grid-gutter-width:                                                 40px;\n@icon-font-path:                                                    \"../fonts/\";\n@input-bg-disabled:                                                 @color-pf-black-150;\n@input-border:                                                      @color-pf-black-400;\n@line-height-base:                                                  1.66666667; // 20/12\n@link-color:                                                        @color-pf-blue;\n@list-group-border:                                                 @color-pf-black-150;\n@list-group-border-radius:                                          0;\n@list-group-hover-bg:                                               @color-pf-blue-50;\n@link-hover-color:                                                  @color-pf-blue-500;\n@nav-tabs-border-color:                                             @color-pf-black-200;\n@nav-tabs-link-hover-border-color:                                  transparent;\n@padding-large-horizontal:                                          10px;\n@padding-base-horizontal:                                           6px;\n@padding-base-vertical:                                             2px;\n@padding-large-vertical:                                            6px;\n@pager-border-radius:                                               0;\n@pager-disabled-color:                                              @color-pf-black-500;\n@pagination-bg:                                                     @color-pf-black-150;\n@pagination-border:                                                 @color-pf-black-400;\n@pagination-hover-bg:                                               @color-pf-black-200;\n@panel-inner-border:                                                @color-pf-black-300;\n@popover-arrow-color:                                               @color-pf-white;\n@popover-arrow-outer-color:                                         @color-pf-black-400;\n@popover-border-color:                                              @color-pf-black-400;\n@popover-max-width:                                                 220px;\n@popover-title-bg:                                                  @color-pf-black-150;\n@pre-bg:                                                            @color-pf-black-100;\n@progress-bg:                                                       @color-pf-black-200;\n@table-bg-accent:                                                   @color-pf-black-150;\n@table-bg-hover:                                                    @color-pf-blue-50;\n@table-border-color:                                                @color-pf-black-300;\n@table-cell-padding:                                                10px;\n@tooltip-arrow-width:                                               8px;\n@tooltip-bg:                                                        @color-pf-black-800;\n@tooltip-max-width:                                                 220px;\n// Reference variables declared in block above\n@alert-danger-bg:                                                   lighten(@color-pf-red-100, 55%);\n@alert-danger-border:                                               @brand-danger;\n@alert-danger-text:                                                 @gray-dark;\n@alert-info-bg:                                                     @color-pf-black-150;\n@alert-info-text:                                                   @gray-dark;\n@alert-success-bg:                                                  lighten(@color-pf-green-100, 8%);\n@alert-success-border:                                              @brand-success;\n@alert-success-text:                                                @gray-dark;\n@alert-warning-bg:                                                  lighten(@color-pf-orange-100, 8%);\n@alert-warning-border:                                              @brand-warning;\n@alert-warning-text:                                                @gray-dark;\n@badge-border-radius:                                               @border-radius-base;\n@border-radius-large:                                               @border-radius-base;\n@border-radius-small:                                               @border-radius-base;\n@breadcrumb-active-color:                                           @gray-pf;\n@breadcrumb-color:                                                  @gray-pf;\n@btn-default-bg:                                                    @gray-lighter;\n@btn-default-color:                                                 @gray-pf;\n@caret-width-large:                                                 @caret-width-base;\n@code-color:                                                        @color-pf-blue-600;\n@dropdown-fallback-border:                                          @dropdown-border;\n@dropdown-link-active-bg:                                           @link-color;\n@dropdown-link-hover-color:                                         @gray-pf;\n@font-size-h1:                                                      ceil((@font-size-base * 2)); // ~24px\n@font-size-h2:                                                      ceil((@font-size-base * 1.8333)); // ~22px\n@font-size-h3:                                                      ceil((@font-size-base * 1.3333)); // ~16px\n@font-size-h5:                                                      ceil((@font-size-base * 1.0833)); // ~13px\n@font-size-large:                                                   ceil((@font-size-base * 1.1666)); // ~14px\n@font-size-small:                                                   ceil((@font-size-base * .9166)); // ~11px\n@input-color:                                                       @gray-dark;\n@nav-tabs-active-link-hover-color:                                  @link-color;\n@nav-tabs-justified-link-border-color:                              @nav-tabs-border-color;\n@nav-pf-vertical-badges-width:                                      (@nav-pf-vertical-width + 50px);\n@padding-small-horizontal:                                          @padding-base-horizontal;\n@padding-small-vertical:                                            @padding-base-vertical;\n@panel-group-pf-danger-heading-bg:                                  @alert-danger-bg;\n@panel-group-pf-primary-heading-bg:                                 lighten(@brand-primary, 38%);\n@panel-group-pf-success-heading-bg:                                 @alert-success-bg;\n@panel-group-pf-warning-heading-bg:                                 @alert-warning-bg;\n@panel-group-pf-info-heading-bg:                                    lighten(desaturate(spin(@brand-info, 13), 45), 60%);\n@panel-danger-border:                                               @brand-danger;\n@panel-danger-heading-bg:                                           @brand-danger;\n@panel-info-border:                                                 @brand-info;\n@panel-info-heading-bg:                                             @brand-info;\n@panel-primary-border:                                              @brand-primary;\n@panel-primary-text:                                                @body-bg;\n@panel-success-border:                                              @brand-success;\n@panel-success-heading-bg:                                          @brand-success;\n@panel-warning-border:                                              @brand-warning;\n@panel-warning-heading-bg:                                          @brand-warning;\n@state-warning-text:                                                @brand-warning;\n@state-danger-text:                                                 @brand-danger;\n// Reference variable declared in block above\n@panel-danger-text:                                                 @panel-primary-text;\n@panel-info-text:                                                   @panel-primary-text;\n@panel-success-text:                                                @panel-primary-text;\n@panel-warning-text:                                                @panel-primary-text;\n\n// PatternFly-specific variables based on Bootstrap overides\n// ---------------------------------------------------------\n@bootstrap-switch-bg-color:                                         @btn-default-bg;\n@btn-danger-bg-img-start:                                           @brand-danger;\n@btn-danger-bg-img-stop:                                            @btn-danger-bg;\n@btn-primary-bg-img-start:                                          @brand-primary;\n@btn-primary-bg-img-stop:                                           @btn-primary-bg;\n@dropdown-link-focus-bg:                                            @link-color;\n@line-height-computed:                                              floor((@font-size-base * @line-height-base));\n@nav-pf-vertical-icon-size:                                         (@font-size-base + 8);\n@notification-badge-color:                                          @color-pf-blue-400;\n@progress-sm:                                                       (@line-height-computed - 6);\n@progress-xs:                                                       (@line-height-computed - 14);\n@syntax-1:                                                          @btn-danger-bg;\n@syntax-2:                                                          @gray-dark;\n@syntax-3:                                                          @brand-success;\n@syntax-4:                                                          @brand-info;\n@tooltip-font-size:                                                 @font-size-base;\n","// WebKit-style focus\n\n.tab-focus() {\n  // WebKit-specific. Other browsers will keep their default outline style.\n  // (Initially tried to also force default via `outline: initial`,\n  // but that seems to erroneously remove the outline in Firefox altogether.)\n  outline: 5px auto -webkit-focus-ring-color;\n  outline-offset: -2px;\n}\n","//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n  display: block;\n  padding: @thumbnail-padding;\n  margin-bottom: @line-height-computed;\n  line-height: @line-height-base;\n  background-color: @thumbnail-bg;\n  border: 1px solid @thumbnail-border;\n  border-radius: @thumbnail-border-radius;\n  .transition(border .2s ease-in-out);\n\n  > img,\n  a > img {\n    &:extend(.img-responsive);\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  // Add a hover state for linked versions only\n  a&:hover,\n  a&:focus,\n  a&.active {\n    border-color: @link-color;\n  }\n\n  // Image captions\n  .caption {\n    padding: @thumbnail-caption-padding;\n    color: @thumbnail-caption-color;\n  }\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n  position: relative;\n}\n\n.carousel-inner {\n  position: relative;\n  overflow: hidden;\n  width: 100%;\n\n  > .item {\n    display: none;\n    position: relative;\n    .transition(.6s ease-in-out left);\n\n    // Account for jankitude on images\n    > img,\n    > a > img {\n      &:extend(.img-responsive);\n      line-height: 1;\n    }\n\n    // WebKit CSS3 transforms for supported devices\n    @media all and (transform-3d), (-webkit-transform-3d) {\n      .transition-transform(~'0.6s ease-in-out');\n      .backface-visibility(~'hidden');\n      .perspective(1000px);\n\n      &.next,\n      &.active.right {\n        .translate3d(100%, 0, 0);\n        left: 0;\n      }\n      &.prev,\n      &.active.left {\n        .translate3d(-100%, 0, 0);\n        left: 0;\n      }\n      &.next.left,\n      &.prev.right,\n      &.active {\n        .translate3d(0, 0, 0);\n        left: 0;\n      }\n    }\n  }\n\n  > .active,\n  > .next,\n  > .prev {\n    display: block;\n  }\n\n  > .active {\n    left: 0;\n  }\n\n  > .next,\n  > .prev {\n    position: absolute;\n    top: 0;\n    width: 100%;\n  }\n\n  > .next {\n    left: 100%;\n  }\n  > .prev {\n    left: -100%;\n  }\n  > .next.left,\n  > .prev.right {\n    left: 0;\n  }\n\n  > .active.left {\n    left: -100%;\n  }\n  > .active.right {\n    left: 100%;\n  }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n  position: absolute;\n  top: 0;\n  left: 0;\n  bottom: 0;\n  width: @carousel-control-width;\n  .opacity(@carousel-control-opacity);\n  font-size: @carousel-control-font-size;\n  color: @carousel-control-color;\n  text-align: center;\n  text-shadow: @carousel-text-shadow;\n  background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug\n  // We can't have this transition here because WebKit cancels the carousel\n  // animation if you trip this while in the middle of another animation.\n\n  // Set gradients for backgrounds\n  &.left {\n    #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n  }\n  &.right {\n    left: auto;\n    right: 0;\n    #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n  }\n\n  // Hover/focus state\n  &:hover,\n  &:focus {\n    outline: 0;\n    color: @carousel-control-color;\n    text-decoration: none;\n    .opacity(.9);\n  }\n\n  // Toggles\n  .icon-prev,\n  .icon-next,\n  .glyphicon-chevron-left,\n  .glyphicon-chevron-right {\n    position: absolute;\n    top: 50%;\n    margin-top: -10px;\n    z-index: 5;\n    display: inline-block;\n  }\n  .icon-prev,\n  .glyphicon-chevron-left {\n    left: 50%;\n    margin-left: -10px;\n  }\n  .icon-next,\n  .glyphicon-chevron-right {\n    right: 50%;\n    margin-right: -10px;\n  }\n  .icon-prev,\n  .icon-next {\n    width:  20px;\n    height: 20px;\n    line-height: 1;\n    font-family: serif;\n  }\n\n\n  .icon-prev {\n    &:before {\n      content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n    }\n  }\n  .icon-next {\n    &:before {\n      content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n    }\n  }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n  position: absolute;\n  bottom: 10px;\n  left: 50%;\n  z-index: 15;\n  width: 60%;\n  margin-left: -30%;\n  padding-left: 0;\n  list-style: none;\n  text-align: center;\n\n  li {\n    display: inline-block;\n    width:  10px;\n    height: 10px;\n    margin: 1px;\n    text-indent: -999px;\n    border: 1px solid @carousel-indicator-border-color;\n    border-radius: 10px;\n    cursor: pointer;\n\n    // IE8-9 hack for event handling\n    //\n    // Internet Explorer 8-9 does not support clicks on elements without a set\n    // `background-color`. We cannot use `filter` since that's not viewed as a\n    // background color by the browser. Thus, a hack is needed.\n    // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer\n    //\n    // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n    // set alpha transparency for the best results possible.\n    background-color: #000 \\9; // IE8\n    background-color: rgba(0,0,0,0); // IE9\n  }\n  .active {\n    margin: 0;\n    width:  12px;\n    height: 12px;\n    background-color: @carousel-indicator-active-bg;\n  }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n  position: absolute;\n  left: 15%;\n  right: 15%;\n  bottom: 20px;\n  z-index: 10;\n  padding-top: 20px;\n  padding-bottom: 20px;\n  color: @carousel-caption-color;\n  text-align: center;\n  text-shadow: @carousel-text-shadow;\n  & .btn {\n    text-shadow: none; // No shadow for button elements in carousel-caption\n  }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n  // Scale up the controls a smidge\n  .carousel-control {\n    .glyphicon-chevron-left,\n    .glyphicon-chevron-right,\n    .icon-prev,\n    .icon-next {\n      width: (@carousel-control-font-size * 1.5);\n      height: (@carousel-control-font-size * 1.5);\n      margin-top: (@carousel-control-font-size / -2);\n      font-size: (@carousel-control-font-size * 1.5);\n    }\n    .glyphicon-chevron-left,\n    .icon-prev {\n      margin-left: (@carousel-control-font-size / -2);\n    }\n    .glyphicon-chevron-right,\n    .icon-next {\n      margin-right: (@carousel-control-font-size / -2);\n    }\n  }\n\n  // Show and left align the captions\n  .carousel-caption {\n    left: 20%;\n    right: 20%;\n    padding-bottom: 30px;\n  }\n\n  // Move up the indicators\n  .carousel-indicators {\n    bottom: 20px;\n  }\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n  display: @display;\n  max-width: 100%; // Part 1: Set a maximum relative to the parent\n  height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n  background-image: url(\"@{file-1x}\");\n\n  @media\n  only screen and (-webkit-min-device-pixel-ratio: 2),\n  only screen and (   min--moz-device-pixel-ratio: 2),\n  only screen and (     -o-min-device-pixel-ratio: 2/1),\n  only screen and (        min-device-pixel-ratio: 2),\n  only screen and (                min-resolution: 192dpi),\n  only screen and (                min-resolution: 2dppx) {\n    background-image: url(\"@{file-2x}\");\n    background-size: @width-1x @height-1x;\n  }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n  font-family: @headings-font-family;\n  font-weight: @headings-font-weight;\n  line-height: @headings-line-height;\n  color: @headings-color;\n\n  small,\n  .small {\n    font-weight: normal;\n    line-height: 1;\n    color: @headings-small-color;\n  }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n  margin-top: @line-height-computed;\n  margin-bottom: (@line-height-computed / 2);\n\n  small,\n  .small {\n    font-size: 65%;\n  }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n  margin-top: (@line-height-computed / 2);\n  margin-bottom: (@line-height-computed / 2);\n\n  small,\n  .small {\n    font-size: 75%;\n  }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n  margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n  margin-bottom: @line-height-computed;\n  font-size: floor((@font-size-base * 1.15));\n  font-weight: 300;\n  line-height: 1.4;\n\n  @media (min-width: @screen-sm-min) {\n    font-size: (@font-size-base * 1.5);\n  }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n  font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n  background-color: @state-warning-bg;\n  padding: .2em;\n}\n\n// Alignment\n.text-left           { text-align: left; }\n.text-right          { text-align: right; }\n.text-center         { text-align: center; }\n.text-justify        { text-align: justify; }\n.text-nowrap         { white-space: nowrap; }\n\n// Transformation\n.text-lowercase      { text-transform: lowercase; }\n.text-uppercase      { text-transform: uppercase; }\n.text-capitalize     { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n  color: @text-muted;\n}\n.text-primary {\n  .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n  .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n  .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n  .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n  .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n  // Given the contrast here, this is the only class to have its color inverted\n  // automatically.\n  color: #fff;\n  .bg-variant(@brand-primary);\n}\n.bg-success {\n  .bg-variant(@state-success-bg);\n}\n.bg-info {\n  .bg-variant(@state-info-bg);\n}\n.bg-warning {\n  .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n  .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n  padding-bottom: ((@line-height-computed / 2) - 1);\n  margin: (@line-height-computed * 2) 0 @line-height-computed;\n  border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n  margin-top: 0;\n  margin-bottom: (@line-height-computed / 2);\n  ul,\n  ol {\n    margin-bottom: 0;\n  }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n  padding-left: 0;\n  list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n  .list-unstyled();\n  margin-left: -5px;\n\n  > li {\n    display: inline-block;\n    padding-left: 5px;\n    padding-right: 5px;\n  }\n}\n\n// Description Lists\ndl {\n  margin-top: 0; // Remove browser default\n  margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n  line-height: @line-height-base;\n}\ndt {\n  font-weight: bold;\n}\ndd {\n  margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n  dd {\n    &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n  }\n\n  @media (min-width: @dl-horizontal-breakpoint) {\n    dt {\n      float: left;\n      width: (@dl-horizontal-offset - 20);\n      clear: left;\n      text-align: right;\n      .text-overflow();\n    }\n    dd {\n      margin-left: @dl-horizontal-offset;\n    }\n  }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n  cursor: help;\n  border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n  font-size: 90%;\n  .text-uppercase();\n}\n\n// Blockquotes\nblockquote {\n  padding: (@line-height-computed / 2) @line-height-computed;\n  margin: 0 0 @line-height-computed;\n  font-size: @blockquote-font-size;\n  border-left: 5px solid @blockquote-border-color;\n\n  p,\n  ul,\n  ol {\n    &:last-child {\n      margin-bottom: 0;\n    }\n  }\n\n  // Note: Deprecated small and .small as of v3.1.0\n  // Context: https://github.com/twbs/bootstrap/issues/11660\n  footer,\n  small,\n  .small {\n    display: block;\n    font-size: 80%; // back to default font-size\n    line-height: @line-height-base;\n    color: @blockquote-small-color;\n\n    &:before {\n      content: '\\2014 \\00A0'; // em dash, nbsp\n    }\n  }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n  padding-right: 15px;\n  padding-left: 0;\n  border-right: 5px solid @blockquote-border-color;\n  border-left: 0;\n  text-align: right;\n\n  // Account for citation\n  footer,\n  small,\n  .small {\n    &:before { content: ''; }\n    &:after {\n      content: '\\00A0 \\2014'; // nbsp, em dash\n    }\n  }\n}\n\n// Addresses\naddress {\n  margin-bottom: @line-height-computed;\n  font-style: normal;\n  line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n  color: @color;\n  a&:hover,\n  a&:focus {\n    color: darken(@color, 10%);\n  }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n  background-color: @color;\n  a&:hover,\n  a&:focus {\n    background-color: darken(@color, 10%);\n  }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n  font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: @code-color;\n  background-color: @code-bg;\n  border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n  padding: 2px 4px;\n  font-size: 90%;\n  color: @kbd-color;\n  background-color: @kbd-bg;\n  border-radius: @border-radius-small;\n  box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n\n  kbd {\n    padding: 0;\n    font-size: 100%;\n    font-weight: bold;\n    box-shadow: none;\n  }\n}\n\n// Blocks of code\npre {\n  display: block;\n  padding: ((@line-height-computed - 1) / 2);\n  margin: 0 0 (@line-height-computed / 2);\n  font-size: (@font-size-base - 1); // 14px to 13px\n  line-height: @line-height-base;\n  word-break: break-all;\n  word-wrap: break-word;\n  color: @pre-color;\n  background-color: @pre-bg;\n  border: 1px solid @pre-border-color;\n  border-radius: @border-radius-base;\n\n  // Account for some code outputs that place code tags in pre tags\n  code {\n    padding: 0;\n    font-size: inherit;\n    color: inherit;\n    white-space: pre-wrap;\n    background-color: transparent;\n    border-radius: 0;\n  }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n  max-height: @pre-scrollable-max-height;\n  overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n  .container-fixed();\n\n  @media (min-width: @screen-sm-min) {\n    width: @container-sm;\n  }\n  @media (min-width: @screen-md-min) {\n    width: @container-md;\n  }\n  @media (min-width: @screen-lg-min) {\n    width: @container-lg;\n  }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n  .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n  .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n  .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n  .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n  .make-grid(lg);\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @grid-gutter-width) {\n  margin-right: auto;\n  margin-left: auto;\n  padding-left:  floor((@gutter / 2));\n  padding-right: ceil((@gutter / 2));\n  &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n  margin-left:  ceil((@gutter / -2));\n  margin-right: floor((@gutter / -2));\n  &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  float: left;\n  width: percentage((@columns / @grid-columns));\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n  margin-left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-push(@columns) {\n  left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-pull(@columns) {\n  right: percentage((@columns / @grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-sm-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-offset(@columns) {\n  @media (min-width: @screen-sm-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-push(@columns) {\n  @media (min-width: @screen-sm-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-sm-column-pull(@columns) {\n  @media (min-width: @screen-sm-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-md-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-offset(@columns) {\n  @media (min-width: @screen-md-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-push(@columns) {\n  @media (min-width: @screen-md-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-md-column-pull(@columns) {\n  @media (min-width: @screen-md-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n  position: relative;\n  min-height: 1px;\n  padding-left:  (@gutter / 2);\n  padding-right: (@gutter / 2);\n\n  @media (min-width: @screen-lg-min) {\n    float: left;\n    width: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-offset(@columns) {\n  @media (min-width: @screen-lg-min) {\n    margin-left: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-push(@columns) {\n  @media (min-width: @screen-lg-min) {\n    left: percentage((@columns / @grid-columns));\n  }\n}\n.make-lg-column-pull(@columns) {\n  @media (min-width: @screen-lg-min) {\n    right: percentage((@columns / @grid-columns));\n  }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n  // Common styles for all sizes of grid columns, widths 1-12\n  .col(@index) { // initial\n    @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n    .col((@index + 1), @item);\n  }\n  .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n    @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n    .col((@index + 1), ~\"@{list}, @{item}\");\n  }\n  .col(@index, @list) when (@index > @grid-columns) { // terminal\n    @{list} {\n      position: relative;\n      // Prevent columns from collapsing when empty\n      min-height: 1px;\n      // Inner gutter via padding\n      padding-left:  ceil((@grid-gutter-width / 2));\n      padding-right: floor((@grid-gutter-width / 2));\n    }\n  }\n  .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n  .col(@index) { // initial\n    @item: ~\".col-@{class}-@{index}\";\n    .col((@index + 1), @item);\n  }\n  .col(@index, @list) when (@index =< @grid-columns) { // general\n    @item: ~\".col-@{class}-@{index}\";\n    .col((@index + 1), ~\"@{list}, @{item}\");\n  }\n  .col(@index, @list) when (@index > @grid-columns) { // terminal\n    @{list} {\n      float: left;\n    }\n  }\n  .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n  .col-@{class}-@{index} {\n    width: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n  .col-@{class}-push-@{index} {\n    left: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n  .col-@{class}-push-0 {\n    left: auto;\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n  .col-@{class}-pull-@{index} {\n    right: percentage((@index / @grid-columns));\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n  .col-@{class}-pull-0 {\n    right: auto;\n  }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n  .col-@{class}-offset-@{index} {\n    margin-left: percentage((@index / @grid-columns));\n  }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n  .calc-grid-column(@index, @class, @type);\n  // next iteration\n  .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n  .float-grid-columns(@class);\n  .loop-grid-columns(@grid-columns, @class, width);\n  .loop-grid-columns(@grid-columns, @class, pull);\n  .loop-grid-columns(@grid-columns, @class, push);\n  .loop-grid-columns(@grid-columns, @class, offset);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n  background-color: @table-bg;\n}\ncaption {\n  padding-top: @table-cell-padding;\n  padding-bottom: @table-cell-padding;\n  color: @text-muted;\n  text-align: left;\n}\nth {\n  text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n  width: 100%;\n  max-width: 100%;\n  margin-bottom: @line-height-computed;\n  // Cells\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-cell-padding;\n        line-height: @line-height-base;\n        vertical-align: top;\n        border-top: 1px solid @table-border-color;\n      }\n    }\n  }\n  // Bottom align for column headings\n  > thead > tr > th {\n    vertical-align: bottom;\n    border-bottom: 2px solid @table-border-color;\n  }\n  // Remove top border from thead by default\n  > caption + thead,\n  > colgroup + thead,\n  > thead:first-child {\n    > tr:first-child {\n      > th,\n      > td {\n        border-top: 0;\n      }\n    }\n  }\n  // Account for multiple tbody instances\n  > tbody + tbody {\n    border-top: 2px solid @table-border-color;\n  }\n\n  // Nesting\n  .table {\n    background-color: @body-bg;\n  }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-condensed-cell-padding;\n      }\n    }\n  }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n  border: 1px solid @table-border-color;\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        border: 1px solid @table-border-color;\n      }\n    }\n  }\n  > thead > tr {\n    > th,\n    > td {\n      border-bottom-width: 2px;\n    }\n  }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n  > tbody > tr:nth-of-type(odd) {\n    background-color: @table-bg-accent;\n  }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n  > tbody > tr:hover {\n    background-color: @table-bg-hover;\n  }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n  position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n  float: none;\n  display: table-column;\n}\ntable {\n  td,\n  th {\n    &[class*=\"col-\"] {\n      position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n      float: none;\n      display: table-cell;\n    }\n  }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n  overflow-x: auto;\n  min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n\n  @media screen and (max-width: @screen-xs-max) {\n    width: 100%;\n    margin-bottom: (@line-height-computed * 0.75);\n    overflow-y: hidden;\n    -ms-overflow-style: -ms-autohiding-scrollbar;\n    border: 1px solid @table-border-color;\n\n    // Tighten up spacing\n    > .table {\n      margin-bottom: 0;\n\n      // Ensure the content doesn't wrap\n      > thead,\n      > tbody,\n      > tfoot {\n        > tr {\n          > th,\n          > td {\n            white-space: nowrap;\n          }\n        }\n      }\n    }\n\n    // Special overrides for the bordered tables\n    > .table-bordered {\n      border: 0;\n\n      // Nuke the appropriate borders so that the parent can handle them\n      > thead,\n      > tbody,\n      > tfoot {\n        > tr {\n          > th:first-child,\n          > td:first-child {\n            border-left: 0;\n          }\n          > th:last-child,\n          > td:last-child {\n            border-right: 0;\n          }\n        }\n      }\n\n      // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n      // chances are there will be only one `tr` in a `thead` and that would\n      // remove the border altogether.\n      > tbody,\n      > tfoot {\n        > tr:last-child {\n          > th,\n          > td {\n            border-bottom: 0;\n          }\n        }\n      }\n\n    }\n  }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n  // Exact selectors below required to override `.table-striped` and prevent\n  // inheritance to nested tables.\n  .table > thead > tr,\n  .table > tbody > tr,\n  .table > tfoot > tr {\n    > td.@{state},\n    > th.@{state},\n    &.@{state} > td,\n    &.@{state} > th {\n      background-color: @background;\n    }\n  }\n\n  // Hover states for `.table-hover`\n  // Note: this is not available for cells or rows within `thead` or `tfoot`.\n  .table-hover > tbody > tr {\n    > td.@{state}:hover,\n    > th.@{state}:hover,\n    &.@{state}:hover > td,\n    &:hover > .@{state},\n    &.@{state}:hover > th {\n      background-color: darken(@background, 5%);\n    }\n  }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n  padding: 0;\n  margin: 0;\n  border: 0;\n  // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n  // so we reset that to ensure it behaves more like a standard block element.\n  // See https://github.com/twbs/bootstrap/issues/12359.\n  min-width: 0;\n}\n\nlegend {\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin-bottom: @line-height-computed;\n  font-size: (@font-size-base * 1.5);\n  line-height: inherit;\n  color: @legend-color;\n  border: 0;\n  border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n  display: inline-block;\n  max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n  margin-bottom: 5px;\n  font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n  .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  margin: 4px 0 0;\n  margin-top: 1px \\9; // IE8-9\n  line-height: normal;\n}\n\ninput[type=\"file\"] {\n  display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n  display: block;\n  width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n  height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n  .tab-focus();\n}\n\n// Adjust output element\noutput {\n  display: block;\n  padding-top: (@padding-base-vertical + 1);\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n  display: block;\n  width: 100%;\n  height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n  padding: @padding-base-vertical @padding-base-horizontal;\n  font-size: @font-size-base;\n  line-height: @line-height-base;\n  color: @input-color;\n  background-color: @input-bg;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid @input-border;\n  border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.\n  .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n  .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n  // Customize the `:focus` state to imitate native WebKit styles.\n  .form-control-focus();\n\n  // Placeholder\n  .placeholder();\n\n  // Unstyle the caret on `<select>`s in IE10+.\n  &::-ms-expand {\n    border: 0;\n    background-color: transparent;\n  }\n\n  // Disabled and read-only inputs\n  //\n  // HTML5 says that controls under a fieldset > legend:first-child won't be\n  // disabled if the fieldset is disabled. Due to implementation difficulty, we\n  // don't honor that edge case; we style them as disabled anyway.\n  &[disabled],\n  &[readonly],\n  fieldset[disabled] & {\n    background-color: @input-bg-disabled;\n    opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655\n  }\n\n  &[disabled],\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n\n  // Reset height for `textarea`s\n  textarea& {\n    height: auto;\n  }\n}\n\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n  -webkit-appearance: none;\n}\n\n\n// Special styles for iOS temporal inputs\n//\n// In Mobile Safari, setting `display: block` on temporal inputs causes the\n// text within the input to become vertically misaligned. As a workaround, we\n// set a pixel line-height that matches the given height of the input, but only\n// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848\n//\n// Note that as of 9.3, iOS doesn't support `week`.\n\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n  input[type=\"date\"],\n  input[type=\"time\"],\n  input[type=\"datetime-local\"],\n  input[type=\"month\"] {\n    &.form-control {\n      line-height: @input-height-base;\n    }\n\n    &.input-sm,\n    .input-group-sm & {\n      line-height: @input-height-small;\n    }\n\n    &.input-lg,\n    .input-group-lg & {\n      line-height: @input-height-large;\n    }\n  }\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n  margin-bottom: @form-group-margin-bottom;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n  position: relative;\n  display: block;\n  margin-top: 10px;\n  margin-bottom: 10px;\n\n  label {\n    min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text\n    padding-left: 20px;\n    margin-bottom: 0;\n    font-weight: normal;\n    cursor: pointer;\n  }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n  position: absolute;\n  margin-left: -20px;\n  margin-top: 4px \\9;\n}\n\n.radio + .radio,\n.checkbox + .checkbox {\n  margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n  position: relative;\n  display: inline-block;\n  padding-left: 20px;\n  margin-bottom: 0;\n  vertical-align: middle;\n  font-weight: normal;\n  cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n  margin-top: 0;\n  margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n// Some special care is needed because <label>s don't inherit their parent's `cursor`.\n//\n// Note: Neither radios nor checkboxes can be readonly.\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n  &[disabled],\n  &.disabled,\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n}\n// These classes are used directly on <label>s\n.radio-inline,\n.checkbox-inline {\n  &.disabled,\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n  }\n}\n// These classes are used on elements with <label> descendants\n.radio,\n.checkbox {\n  &.disabled,\n  fieldset[disabled] & {\n    label {\n      cursor: @cursor-disabled;\n    }\n  }\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n.form-control-static {\n  // Size it appropriately next to real form controls\n  padding-top: (@padding-base-vertical + 1);\n  padding-bottom: (@padding-base-vertical + 1);\n  // Remove default margin from `p`\n  margin-bottom: 0;\n  min-height: (@line-height-computed + @font-size-base);\n\n  &.input-lg,\n  &.input-sm {\n    padding-left: 0;\n    padding-right: 0;\n  }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n//\n// The `.form-group-* form-control` variations are sadly duplicated to avoid the\n// issue documented in https://github.com/twbs/bootstrap/issues/15074.\n\n.input-sm {\n  .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);\n}\n.form-group-sm {\n  .form-control {\n    height: @input-height-small;\n    padding: @padding-small-vertical @padding-small-horizontal;\n    font-size: @font-size-small;\n    line-height: @line-height-small;\n    border-radius: @input-border-radius-small;\n  }\n  select.form-control {\n    height: @input-height-small;\n    line-height: @input-height-small;\n  }\n  textarea.form-control,\n  select[multiple].form-control {\n    height: auto;\n  }\n  .form-control-static {\n    height: @input-height-small;\n    min-height: (@line-height-computed + @font-size-small);\n    padding: (@padding-small-vertical + 1) @padding-small-horizontal;\n    font-size: @font-size-small;\n    line-height: @line-height-small;\n  }\n}\n\n.input-lg {\n  .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);\n}\n.form-group-lg {\n  .form-control {\n    height: @input-height-large;\n    padding: @padding-large-vertical @padding-large-horizontal;\n    font-size: @font-size-large;\n    line-height: @line-height-large;\n    border-radius: @input-border-radius-large;\n  }\n  select.form-control {\n    height: @input-height-large;\n    line-height: @input-height-large;\n  }\n  textarea.form-control,\n  select[multiple].form-control {\n    height: auto;\n  }\n  .form-control-static {\n    height: @input-height-large;\n    min-height: (@line-height-computed + @font-size-large);\n    padding: (@padding-large-vertical + 1) @padding-large-horizontal;\n    font-size: @font-size-large;\n    line-height: @line-height-large;\n  }\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n.has-feedback {\n  // Enable absolute positioning\n  position: relative;\n\n  // Ensure icons don't overlap text\n  .form-control {\n    padding-right: (@input-height-base * 1.25);\n  }\n}\n// Feedback icon (requires .glyphicon classes)\n.form-control-feedback {\n  position: absolute;\n  top: 0;\n  right: 0;\n  z-index: 2; // Ensure icon is above input groups\n  display: block;\n  width: @input-height-base;\n  height: @input-height-base;\n  line-height: @input-height-base;\n  text-align: center;\n  pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n  width: @input-height-large;\n  height: @input-height-large;\n  line-height: @input-height-large;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n  width: @input-height-small;\n  height: @input-height-small;\n  line-height: @input-height-small;\n}\n\n// Feedback states\n.has-success {\n  .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n.has-warning {\n  .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);\n}\n.has-error {\n  .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);\n}\n\n// Reposition feedback icon if input has visible label above\n.has-feedback label {\n\n  & ~ .form-control-feedback {\n    top: (@line-height-computed + 5); // Height of the `label` and its margin\n  }\n  &.sr-only ~ .form-control-feedback {\n    top: 0;\n  }\n}\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n  display: block; // account for any element using help-block\n  margin-top: 5px;\n  margin-bottom: 10px;\n  color: lighten(@text-color, 25%); // lighten the text some for contrast\n}\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n  // Kick in the inline\n  @media (min-width: @screen-sm-min) {\n    // Inline-block all the things for \"inline\"\n    .form-group {\n      display: inline-block;\n      margin-bottom: 0;\n      vertical-align: middle;\n    }\n\n    // In navbar-form, allow folks to *not* use `.form-group`\n    .form-control {\n      display: inline-block;\n      width: auto; // Prevent labels from stacking above inputs in `.form-group`\n      vertical-align: middle;\n    }\n\n    // Make static controls behave like regular ones\n    .form-control-static {\n      display: inline-block;\n    }\n\n    .input-group {\n      display: inline-table;\n      vertical-align: middle;\n\n      .input-group-addon,\n      .input-group-btn,\n      .form-control {\n        width: auto;\n      }\n    }\n\n    // Input groups need that 100% width though\n    .input-group > .form-control {\n      width: 100%;\n    }\n\n    .control-label {\n      margin-bottom: 0;\n      vertical-align: middle;\n    }\n\n    // Remove default margin on radios/checkboxes that were used for stacking, and\n    // then undo the floating of radios and checkboxes to match.\n    .radio,\n    .checkbox {\n      display: inline-block;\n      margin-top: 0;\n      margin-bottom: 0;\n      vertical-align: middle;\n\n      label {\n        padding-left: 0;\n      }\n    }\n    .radio input[type=\"radio\"],\n    .checkbox input[type=\"checkbox\"] {\n      position: relative;\n      margin-left: 0;\n    }\n\n    // Re-override the feedback icon.\n    .has-feedback .form-control-feedback {\n      top: 0;\n    }\n  }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n  // Consistent vertical alignment of radios and checkboxes\n  //\n  // Labels also get some reset styles, but that is scoped to a media query below.\n  .radio,\n  .checkbox,\n  .radio-inline,\n  .checkbox-inline {\n    margin-top: 0;\n    margin-bottom: 0;\n    padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n  }\n  // Account for padding we're adding to ensure the alignment and of help text\n  // and other content below items\n  .radio,\n  .checkbox {\n    min-height: (@line-height-computed + (@padding-base-vertical + 1));\n  }\n\n  // Make form groups behave like rows\n  .form-group {\n    .make-row();\n  }\n\n  // Reset spacing and right align labels, but scope to media queries so that\n  // labels on narrow viewports stack the same as a default form example.\n  @media (min-width: @screen-sm-min) {\n    .control-label {\n      text-align: right;\n      margin-bottom: 0;\n      padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n    }\n  }\n\n  // Validation states\n  //\n  // Reposition the icon because it's now within a grid column and columns have\n  // `position: relative;` on them. Also accounts for the grid gutter padding.\n  .has-feedback .form-control-feedback {\n    right: floor((@grid-gutter-width / 2));\n  }\n\n  // Form group sizes\n  //\n  // Quick utility class for applying `.input-lg` and `.input-sm` styles to the\n  // inputs and labels within a `.form-group`.\n  .form-group-lg {\n    @media (min-width: @screen-sm-min) {\n      .control-label {\n        padding-top: (@padding-large-vertical + 1);\n        font-size: @font-size-large;\n      }\n    }\n  }\n  .form-group-sm {\n    @media (min-width: @screen-sm-min) {\n      .control-label {\n        padding-top: (@padding-small-vertical + 1);\n        font-size: @font-size-small;\n      }\n    }\n  }\n}\n","// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n  // Color the label and help text\n  .help-block,\n  .control-label,\n  .radio,\n  .checkbox,\n  .radio-inline,\n  .checkbox-inline,\n  &.radio label,\n  &.checkbox label,\n  &.radio-inline label,\n  &.checkbox-inline label  {\n    color: @text-color;\n  }\n  // Set the border and box shadow on specific inputs to match\n  .form-control {\n    border-color: @border-color;\n    .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n    &:focus {\n      border-color: darken(@border-color, 10%);\n      @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n      .box-shadow(@shadow);\n    }\n  }\n  // Set validation states also for addons\n  .input-group-addon {\n    color: @text-color;\n    border-color: @border-color;\n    background-color: @background-color;\n  }\n  // Optional feedback icon\n  .form-control-feedback {\n    color: @text-color;\n  }\n}\n\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-border-focus` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n.form-control-focus(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0;\n    .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  height: @input-height;\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n\n  select& {\n    height: @input-height;\n    line-height: @input-height;\n  }\n\n  textarea&,\n  select[multiple]& {\n    height: auto;\n  }\n}\n","// Mixins - Bootstrap overrides\n// -------------------\n\n// Form control outline\n.form-control-outline(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0 !important;\n    .box-shadow(~\"inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Gradients\n#gradient {\n  .striped(@color: fade(@color-pf-black, 15%); @angle: -45deg) {\n    background-image: linear-gradient(@angle, @color 25%, @color 26%, transparent 27%, transparent 49%, @color 50%, @color 51%, transparent 52%, transparent 74%, @color 75%, @color 76%, transparent 77%);\n  }\n}\n\n// Horizontal dividers\n.nav-divider(@color: @color-pf-black-200, @margin: 4px 1px) {\n  background-color: @color;\n  height: 1px;\n  margin: @margin;\n  overflow: hidden;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  &:-moz-placeholder            { color: @color; font-style: italic; } // Firefox 4-18\n  &::-moz-placeholder           { color: @color; font-style: italic; opacity: 1; } // Firefox 19+\n  &:-ms-input-placeholder       { color: @color; font-style: italic; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; font-style: italic; } // Safari and Chrome\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n  display: inline-block;\n  margin-bottom: 0; // For input.btn\n  font-weight: @btn-font-weight;\n  text-align: center;\n  vertical-align: middle;\n  touch-action: manipulation;\n  cursor: pointer;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid transparent;\n  white-space: nowrap;\n  .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);\n  .user-select(none);\n\n  &,\n  &:active,\n  &.active {\n    &:focus,\n    &.focus {\n      .tab-focus();\n    }\n  }\n\n  &:hover,\n  &:focus,\n  &.focus {\n    color: @btn-default-color;\n    text-decoration: none;\n  }\n\n  &:active,\n  &.active {\n    outline: 0;\n    background-image: none;\n    .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n  }\n\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    cursor: @cursor-disabled;\n    .opacity(.65);\n    .box-shadow(none);\n  }\n\n  a& {\n    &.disabled,\n    fieldset[disabled] & {\n      pointer-events: none; // Future-proof disabling of clicks on `<a>` elements\n    }\n  }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n  .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n  .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n  .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n  .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n  .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n  .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n  color: @link-color;\n  font-weight: normal;\n  border-radius: 0;\n\n  &,\n  &:active,\n  &.active,\n  &[disabled],\n  fieldset[disabled] & {\n    background-color: transparent;\n    .box-shadow(none);\n  }\n  &,\n  &:hover,\n  &:focus,\n  &:active {\n    border-color: transparent;\n  }\n  &:hover,\n  &:focus {\n    color: @link-hover-color;\n    text-decoration: @link-hover-decoration;\n    background-color: transparent;\n  }\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus {\n      color: @btn-link-disabled-color;\n      text-decoration: none;\n    }\n  }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n  // line-height: ensure even-numbered height of button next to large input\n  .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @btn-border-radius-large);\n}\n.btn-sm {\n  // line-height: ensure proper height of button next to small input\n  .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n.btn-xs {\n  .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n  display: block;\n  width: 100%;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n  margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n  &.btn-block {\n    width: 100%;\n  }\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n  color: @color;\n  background-color: @background;\n  border-color: @border;\n\n  &:focus,\n  &.focus {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 25%);\n  }\n  &:hover {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n\n    &:hover,\n    &:focus,\n    &.focus {\n      color: @color;\n      background-color: darken(@background, 17%);\n          border-color: darken(@border, 25%);\n    }\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    background-image: none;\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: @background;\n          border-color: @border;\n    }\n  }\n\n  .badge {\n    color: @background;\n    background-color: @color;\n  }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n  opacity: @opacity;\n  // IE8 filter\n  @opacity-ie: (@opacity * 100);\n  filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","//\n// Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n  position: relative;\n  display: inline-block;\n  vertical-align: middle; // match .btn alignment given font-size hack above\n  > .btn {\n    position: relative;\n    float: left;\n    // Bring the \"active\" button to the front\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      z-index: 2;\n    }\n  }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n  .btn + .btn,\n  .btn + .btn-group,\n  .btn-group + .btn,\n  .btn-group + .btn-group {\n    margin-left: -1px;\n  }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n  margin-left: -5px; // Offset the first child's margin\n  &:extend(.clearfix all);\n\n  .btn,\n  .btn-group,\n  .input-group {\n    float: left;\n  }\n  > .btn,\n  > .btn-group,\n  > .input-group {\n    margin-left: 5px;\n  }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n  border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n  margin-left: 0;\n  &:not(:last-child):not(.dropdown-toggle) {\n    .border-right-radius(0);\n  }\n}\n// Need .dropdown-toggle since :last-child doesn't apply, given that a .dropdown-menu is used immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n  .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n  float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) {\n  > .btn:last-child,\n  > .dropdown-toggle {\n    .border-right-radius(0);\n  }\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n  outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { &:extend(.btn-xs); }\n.btn-group-sm > .btn { &:extend(.btn-sm); }\n.btn-group-lg > .btn { &:extend(.btn-lg); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n  padding-left: 8px;\n  padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n  padding-left: 12px;\n  padding-right: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n  .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n\n  // Show no shadow for `.btn-link` since it has no other button styles.\n  &.btn-link {\n    .box-shadow(none);\n  }\n}\n\n\n// Reposition the caret\n.btn .caret {\n  margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n  border-width: @caret-width-large @caret-width-large 0;\n  border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n  border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n  > .btn,\n  > .btn-group,\n  > .btn-group > .btn {\n    display: block;\n    float: none;\n    width: 100%;\n    max-width: 100%;\n  }\n\n  // Clear floats so dropdown menus can be properly placed\n  > .btn-group {\n    &:extend(.clearfix all);\n    > .btn {\n      float: none;\n    }\n  }\n\n  > .btn + .btn,\n  > .btn + .btn-group,\n  > .btn-group + .btn,\n  > .btn-group + .btn-group {\n    margin-top: -1px;\n    margin-left: 0;\n  }\n}\n\n.btn-group-vertical > .btn {\n  &:not(:first-child):not(:last-child) {\n    border-radius: 0;\n  }\n  &:first-child:not(:last-child) {\n    .border-top-radius(@btn-border-radius-base);\n    .border-bottom-radius(0);\n  }\n  &:last-child:not(:first-child) {\n    .border-top-radius(0);\n    .border-bottom-radius(@btn-border-radius-base);\n  }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n  border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) {\n  > .btn:last-child,\n  > .dropdown-toggle {\n    .border-bottom-radius(0);\n  }\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n  .border-top-radius(0);\n}\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n  display: table;\n  width: 100%;\n  table-layout: fixed;\n  border-collapse: separate;\n  > .btn,\n  > .btn-group {\n    float: none;\n    display: table-cell;\n    width: 1%;\n  }\n  > .btn-group .btn {\n    width: 100%;\n  }\n\n  > .btn-group .dropdown-menu {\n    left: auto;\n  }\n}\n\n\n// Checkbox and radio options\n//\n// In order to support the browser's form validation feedback, powered by the\n// `required` attribute, we have to \"hide\" the inputs via `clip`. We cannot use\n// `display: none;` or `visibility: hidden;` as that also hides the popover.\n// Simply visually hiding the inputs via `opacity` would leave them clickable in\n// certain cases which is prevented by using `clip` and `pointer-events`.\n// This way, we ensure a DOM element is visible to position the popover from.\n//\n// See https://github.com/twbs/bootstrap/pull/12794 and\n// https://github.com/twbs/bootstrap/pull/14559 for more information.\n\n[data-toggle=\"buttons\"] {\n  > .btn,\n  > .btn-group > .btn {\n    input[type=\"radio\"],\n    input[type=\"checkbox\"] {\n      position: absolute;\n      clip: rect(0,0,0,0);\n      pointer-events: none;\n    }\n  }\n}\n","//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.\n\n.fade {\n  opacity: 0;\n  .transition(opacity .15s linear);\n  &.in {\n    opacity: 1;\n  }\n}\n\n.collapse {\n  display: none;\n\n  &.in      { display: block; }\n  tr&.in    { display: table-row; }\n  tbody&.in { display: table-row-group; }\n}\n\n.collapsing {\n  position: relative;\n  height: 0;\n  overflow: hidden;\n  .transition-property(~\"height, visibility\");\n  .transition-duration(.35s);\n  .transition-timing-function(ease);\n}\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n  display: inline-block;\n  width: 0;\n  height: 0;\n  margin-left: 2px;\n  vertical-align: middle;\n  border-top:   @caret-width-base dashed;\n  border-top:   @caret-width-base solid ~\"\\9\"; // IE8\n  border-right: @caret-width-base solid transparent;\n  border-left:  @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropup,\n.dropdown {\n  position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n  outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n  position: absolute;\n  top: 100%;\n  left: 0;\n  z-index: @zindex-dropdown;\n  display: none; // none by default, but block on \"open\" of the menu\n  float: left;\n  min-width: 160px;\n  padding: 5px 0;\n  margin: 2px 0 0; // override default ul\n  list-style: none;\n  font-size: @font-size-base;\n  text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n  background-color: @dropdown-bg;\n  border: 1px solid @dropdown-fallback-border; // IE8 fallback\n  border: 1px solid @dropdown-border;\n  border-radius: @border-radius-base;\n  .box-shadow(0 6px 12px rgba(0,0,0,.175));\n  background-clip: padding-box;\n\n  // Aligns the dropdown menu to right\n  //\n  // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n  &.pull-right {\n    right: 0;\n    left: auto;\n  }\n\n  // Dividers (basically an hr) within the dropdown\n  .divider {\n    .nav-divider(@dropdown-divider-bg);\n  }\n\n  // Links within the dropdown menu\n  > li > a {\n    display: block;\n    padding: 3px 20px;\n    clear: both;\n    font-weight: normal;\n    line-height: @line-height-base;\n    color: @dropdown-link-color;\n    white-space: nowrap; // prevent links from randomly breaking onto new lines\n  }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    color: @dropdown-link-hover-color;\n    background-color: @dropdown-link-hover-bg;\n  }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n  &,\n  &:hover,\n  &:focus {\n    color: @dropdown-link-active-color;\n    text-decoration: none;\n    outline: 0;\n    background-color: @dropdown-link-active-bg;\n  }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n  &,\n  &:hover,\n  &:focus {\n    color: @dropdown-link-disabled-color;\n  }\n\n  // Nuke hover/focus effects\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    background-color: transparent;\n    background-image: none; // Remove CSS gradient\n    .reset-filter();\n    cursor: @cursor-disabled;\n  }\n}\n\n// Open state for the dropdown\n.open {\n  // Show the menu\n  > .dropdown-menu {\n    display: block;\n  }\n\n  // Remove the outline when :focus is triggered\n  > a {\n    outline: 0;\n  }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n  left: auto; // Reset the default from `.dropdown-menu`\n  right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n  left: 0;\n  right: auto;\n}\n\n// Dropdown section headers\n.dropdown-header {\n  display: block;\n  padding: 3px 20px;\n  font-size: @font-size-small;\n  line-height: @line-height-base;\n  color: @dropdown-header-color;\n  white-space: nowrap; // as with > li > a\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n  position: fixed;\n  left: 0;\n  right: 0;\n  bottom: 0;\n  top: 0;\n  z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n  right: 0;\n  left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n  // Reverse the caret\n  .caret {\n    border-top: 0;\n    border-bottom: @caret-width-base dashed;\n    border-bottom: @caret-width-base solid ~\"\\9\"; // IE8\n    content: \"\";\n  }\n  // Different positioning for bottom up menu\n  .dropdown-menu {\n    top: auto;\n    bottom: 100%;\n    margin-bottom: 2px;\n  }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-right {\n    .dropdown-menu {\n      .dropdown-menu-right();\n    }\n    // Necessary for overrides of the default right aligned menu.\n    // Will remove come v4 in all likelihood.\n    .dropdown-menu-left {\n      .dropdown-menu-left();\n    }\n  }\n}\n","// Horizontal dividers\n//\n// Dividers (basically an hr) within dropdowns and nav lists\n\n.nav-divider(@color: #e5e5e5) {\n  height: 1px;\n  margin: ((@line-height-computed / 2) - 1) 0;\n  overflow: hidden;\n  background-color: @color;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n  filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n  border-top-right-radius: @radius;\n   border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n  border-bottom-right-radius: @radius;\n     border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n  border-bottom-right-radius: @radius;\n   border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n  border-bottom-left-radius: @radius;\n     border-top-left-radius: @radius;\n}\n","//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n  position: relative; // For dropdowns\n  display: table;\n  border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n  // Undo padding and float of grid classes\n  &[class*=\"col-\"] {\n    float: none;\n    padding-left: 0;\n    padding-right: 0;\n  }\n\n  .form-control {\n    // Ensure that the input is always above the *appended* addon button for\n    // proper border colors.\n    position: relative;\n    z-index: 2;\n\n    // IE9 fubars the placeholder attribute in text inputs and the arrows on\n    // select elements in input groups. To fix it, we float the input. Details:\n    // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n    float: left;\n\n    width: 100%;\n    margin-bottom: 0;\n\n    &:focus {\n      z-index: 3;\n    }\n  }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n  .input-lg();\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n  .input-sm();\n}\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n  display: table-cell;\n\n  &:not(:first-child):not(:last-child) {\n    border-radius: 0;\n  }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n  width: 1%;\n  white-space: nowrap;\n  vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n  padding: @padding-base-vertical @padding-base-horizontal;\n  font-size: @font-size-base;\n  font-weight: normal;\n  line-height: 1;\n  color: @input-color;\n  text-align: center;\n  background-color: @input-group-addon-bg;\n  border: 1px solid @input-group-addon-border-color;\n  border-radius: @input-border-radius;\n\n  // Sizing\n  &.input-sm {\n    padding: @padding-small-vertical @padding-small-horizontal;\n    font-size: @font-size-small;\n    border-radius: @input-border-radius-small;\n  }\n  &.input-lg {\n    padding: @padding-large-vertical @padding-large-horizontal;\n    font-size: @font-size-large;\n    border-radius: @input-border-radius-large;\n  }\n\n  // Nuke default margins from checkboxes and radios to vertically center within.\n  input[type=\"radio\"],\n  input[type=\"checkbox\"] {\n    margin-top: 0;\n  }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n  .border-right-radius(0);\n}\n.input-group-addon:first-child {\n  border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n  .border-left-radius(0);\n}\n.input-group-addon:last-child {\n  border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n  position: relative;\n  // Jankily prevent input button groups from wrapping with `white-space` and\n  // `font-size` in combination with `inline-block` on buttons.\n  font-size: 0;\n  white-space: nowrap;\n\n  // Negative margin for spacing, position for bringing hovered/focused/actived\n  // element above the siblings.\n  > .btn {\n    position: relative;\n    + .btn {\n      margin-left: -1px;\n    }\n    // Bring the \"active\" button to the front\n    &:hover,\n    &:focus,\n    &:active {\n      z-index: 2;\n    }\n  }\n\n  // Negative margin to only have a 1px border between the two\n  &:first-child {\n    > .btn,\n    > .btn-group {\n      margin-right: -1px;\n    }\n  }\n  &:last-child {\n    > .btn,\n    > .btn-group {\n      z-index: 2;\n      margin-left: -1px;\n    }\n  }\n}\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n  margin-bottom: 0;\n  padding-left: 0; // Override default ul/ol\n  list-style: none;\n  &:extend(.clearfix all);\n\n  > li {\n    position: relative;\n    display: block;\n\n    > a {\n      position: relative;\n      display: block;\n      padding: @nav-link-padding;\n      &:hover,\n      &:focus {\n        text-decoration: none;\n        background-color: @nav-link-hover-bg;\n      }\n    }\n\n    // Disabled state sets text to gray and nukes hover/tab effects\n    &.disabled > a {\n      color: @nav-disabled-link-color;\n\n      &:hover,\n      &:focus {\n        color: @nav-disabled-link-hover-color;\n        text-decoration: none;\n        background-color: transparent;\n        cursor: @cursor-disabled;\n      }\n    }\n  }\n\n  // Open dropdowns\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: @nav-link-hover-bg;\n      border-color: @link-color;\n    }\n  }\n\n  // Nav dividers (deprecated with v3.0.1)\n  //\n  // This should have been removed in v3 with the dropping of `.nav-list`, but\n  // we missed it. We don't currently support this anywhere, but in the interest\n  // of maintaining backward compatibility in case you use it, it's deprecated.\n  .nav-divider {\n    .nav-divider();\n  }\n\n  // Prevent IE8 from misplacing imgs\n  //\n  // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n  > li > a > img {\n    max-width: none;\n  }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n  border-bottom: 1px solid @nav-tabs-border-color;\n  > li {\n    float: left;\n    // Make the list-items overlay the bottom border\n    margin-bottom: -1px;\n\n    // Actual tabs (as links)\n    > a {\n      margin-right: 2px;\n      line-height: @line-height-base;\n      border: 1px solid transparent;\n      border-radius: @border-radius-base @border-radius-base 0 0;\n      &:hover {\n        border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n      }\n    }\n\n    // Active state, and its :hover to override normal :hover\n    &.active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @nav-tabs-active-link-hover-color;\n        background-color: @nav-tabs-active-link-hover-bg;\n        border: 1px solid @nav-tabs-active-link-hover-border-color;\n        border-bottom-color: transparent;\n        cursor: default;\n      }\n    }\n  }\n  // pulling this in mainly for less shorthand\n  &.nav-justified {\n    .nav-justified();\n    .nav-tabs-justified();\n  }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n  > li {\n    float: left;\n\n    // Links rendered as pills\n    > a {\n      border-radius: @nav-pills-border-radius;\n    }\n    + li {\n      margin-left: 2px;\n    }\n\n    // Active state\n    &.active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @nav-pills-active-link-hover-color;\n        background-color: @nav-pills-active-link-hover-bg;\n      }\n    }\n  }\n}\n\n\n// Stacked pills\n.nav-stacked {\n  > li {\n    float: none;\n    + li {\n      margin-top: 2px;\n      margin-left: 0; // no need for this gap between nav items\n    }\n  }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n  width: 100%;\n\n  > li {\n    float: none;\n    > a {\n      text-align: center;\n      margin-bottom: 5px;\n    }\n  }\n\n  > .dropdown .dropdown-menu {\n    top: auto;\n    left: auto;\n  }\n\n  @media (min-width: @screen-sm-min) {\n    > li {\n      display: table-cell;\n      width: 1%;\n      > a {\n        margin-bottom: 0;\n      }\n    }\n  }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n  border-bottom: 0;\n\n  > li > a {\n    // Override margin from .nav-tabs\n    margin-right: 0;\n    border-radius: @border-radius-base;\n  }\n\n  > .active > a,\n  > .active > a:hover,\n  > .active > a:focus {\n    border: 1px solid @nav-tabs-justified-link-border-color;\n  }\n\n  @media (min-width: @screen-sm-min) {\n    > li > a {\n      border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n      border-radius: @border-radius-base @border-radius-base 0 0;\n    }\n    > .active > a,\n    > .active > a:hover,\n    > .active > a:focus {\n      border-bottom-color: @nav-tabs-justified-active-link-border-color;\n    }\n  }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Hide tabbable panes to start, show them when `.active`\n.tab-content {\n  > .tab-pane {\n    display: none;\n  }\n  > .active {\n    display: block;\n  }\n}\n\n\n// Dropdowns\n// -------------------------\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n  // make dropdown border overlap tab border\n  margin-top: -1px;\n  // Remove the top rounded corners here since there is a hard edge above the menu\n  .border-top-radius(0);\n}\n","//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n  position: relative;\n  min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n  margin-bottom: @navbar-margin-bottom;\n  border: 1px solid transparent;\n\n  // Prevent floats from breaking the navbar\n  &:extend(.clearfix all);\n\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: @navbar-border-radius;\n  }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n  &:extend(.clearfix all);\n\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n  }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n  overflow-x: visible;\n  padding-right: @navbar-padding-horizontal;\n  padding-left:  @navbar-padding-horizontal;\n  border-top: 1px solid transparent;\n  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n  &:extend(.clearfix all);\n  -webkit-overflow-scrolling: touch;\n\n  &.in {\n    overflow-y: auto;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    width: auto;\n    border-top: 0;\n    box-shadow: none;\n\n    &.collapse {\n      display: block !important;\n      height: auto !important;\n      padding-bottom: 0; // Override default setting\n      overflow: visible !important;\n    }\n\n    &.in {\n      overflow-y: visible;\n    }\n\n    // Undo the collapse side padding for navbars with containers to ensure\n    // alignment of right-aligned contents.\n    .navbar-fixed-top &,\n    .navbar-static-top &,\n    .navbar-fixed-bottom & {\n      padding-left: 0;\n      padding-right: 0;\n    }\n  }\n}\n\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  .navbar-collapse {\n    max-height: @navbar-collapse-max-height;\n\n    @media (max-device-width: @screen-xs-min) and (orientation: landscape) {\n      max-height: 200px;\n    }\n  }\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container,\n.container-fluid {\n  > .navbar-header,\n  > .navbar-collapse {\n    margin-right: -@navbar-padding-horizontal;\n    margin-left:  -@navbar-padding-horizontal;\n\n    @media (min-width: @grid-float-breakpoint) {\n      margin-right: 0;\n      margin-left:  0;\n    }\n  }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n  z-index: @zindex-navbar;\n  border-width: 0 0 1px;\n\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: 0;\n  }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n  position: fixed;\n  right: 0;\n  left: 0;\n  z-index: @zindex-navbar-fixed;\n\n  // Undo the rounded corners\n  @media (min-width: @grid-float-breakpoint) {\n    border-radius: 0;\n  }\n}\n.navbar-fixed-top {\n  top: 0;\n  border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n  bottom: 0;\n  margin-bottom: 0; // override .navbar defaults\n  border-width: 1px 0 0;\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n  float: left;\n  padding: @navbar-padding-vertical @navbar-padding-horizontal;\n  font-size: @font-size-large;\n  line-height: @line-height-computed;\n  height: @navbar-height;\n\n  &:hover,\n  &:focus {\n    text-decoration: none;\n  }\n\n  > img {\n    display: block;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    .navbar > .container &,\n    .navbar > .container-fluid & {\n      margin-left: -@navbar-padding-horizontal;\n    }\n  }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n  position: relative;\n  float: right;\n  margin-right: @navbar-padding-horizontal;\n  padding: 9px 10px;\n  .navbar-vertical-align(34px);\n  background-color: transparent;\n  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n  border: 1px solid transparent;\n  border-radius: @border-radius-base;\n\n  // We remove the `outline` here, but later compensate by attaching `:hover`\n  // styles to `:focus`.\n  &:focus {\n    outline: 0;\n  }\n\n  // Bars\n  .icon-bar {\n    display: block;\n    width: 22px;\n    height: 2px;\n    border-radius: 1px;\n  }\n  .icon-bar + .icon-bar {\n    margin-top: 4px;\n  }\n\n  @media (min-width: @grid-float-breakpoint) {\n    display: none;\n  }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n  margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n  > li > a {\n    padding-top:    10px;\n    padding-bottom: 10px;\n    line-height: @line-height-computed;\n  }\n\n  @media (max-width: @grid-float-breakpoint-max) {\n    // Dropdowns get custom display when collapsed\n    .open .dropdown-menu {\n      position: static;\n      float: none;\n      width: auto;\n      margin-top: 0;\n      background-color: transparent;\n      border: 0;\n      box-shadow: none;\n      > li > a,\n      .dropdown-header {\n        padding: 5px 15px 5px 25px;\n      }\n      > li > a {\n        line-height: @line-height-computed;\n        &:hover,\n        &:focus {\n          background-image: none;\n        }\n      }\n    }\n  }\n\n  // Uncollapse the nav\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n    margin: 0;\n\n    > li {\n      float: left;\n      > a {\n        padding-top:    @navbar-padding-vertical;\n        padding-bottom: @navbar-padding-vertical;\n      }\n    }\n  }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n  margin-left: -@navbar-padding-horizontal;\n  margin-right: -@navbar-padding-horizontal;\n  padding: 10px @navbar-padding-horizontal;\n  border-top: 1px solid transparent;\n  border-bottom: 1px solid transparent;\n  @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);\n  .box-shadow(@shadow);\n\n  // Mixin behavior for optimum display\n  .form-inline();\n\n  .form-group {\n    @media (max-width: @grid-float-breakpoint-max) {\n      margin-bottom: 5px;\n\n      &:last-child {\n        margin-bottom: 0;\n      }\n    }\n  }\n\n  // Vertically center in expanded, horizontal navbar\n  .navbar-vertical-align(@input-height-base);\n\n  // Undo 100% width for pull classes\n  @media (min-width: @grid-float-breakpoint) {\n    width: auto;\n    border: 0;\n    margin-left: 0;\n    margin-right: 0;\n    padding-top: 0;\n    padding-bottom: 0;\n    .box-shadow(none);\n  }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n  margin-top: 0;\n  .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n  margin-bottom: 0;\n  .border-top-radius(@navbar-border-radius);\n  .border-bottom-radius(0);\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n  .navbar-vertical-align(@input-height-base);\n\n  &.btn-sm {\n    .navbar-vertical-align(@input-height-small);\n  }\n  &.btn-xs {\n    .navbar-vertical-align(22);\n  }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n  .navbar-vertical-align(@line-height-computed);\n\n  @media (min-width: @grid-float-breakpoint) {\n    float: left;\n    margin-left: @navbar-padding-horizontal;\n    margin-right: @navbar-padding-horizontal;\n  }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n//\n// Declared after the navbar components to ensure more specificity on the margins.\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-left  { .pull-left(); }\n  .navbar-right {\n    .pull-right();\n    margin-right: -@navbar-padding-horizontal;\n\n    ~ .navbar-right {\n      margin-right: 0;\n    }\n  }\n}\n\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n  background-color: @navbar-default-bg;\n  border-color: @navbar-default-border;\n\n  .navbar-brand {\n    color: @navbar-default-brand-color;\n    &:hover,\n    &:focus {\n      color: @navbar-default-brand-hover-color;\n      background-color: @navbar-default-brand-hover-bg;\n    }\n  }\n\n  .navbar-text {\n    color: @navbar-default-color;\n  }\n\n  .navbar-nav {\n    > li > a {\n      color: @navbar-default-link-color;\n\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-hover-color;\n        background-color: @navbar-default-link-hover-bg;\n      }\n    }\n    > .active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-active-color;\n        background-color: @navbar-default-link-active-bg;\n      }\n    }\n    > .disabled > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-disabled-color;\n        background-color: @navbar-default-link-disabled-bg;\n      }\n    }\n  }\n\n  .navbar-toggle {\n    border-color: @navbar-default-toggle-border-color;\n    &:hover,\n    &:focus {\n      background-color: @navbar-default-toggle-hover-bg;\n    }\n    .icon-bar {\n      background-color: @navbar-default-toggle-icon-bar-bg;\n    }\n  }\n\n  .navbar-collapse,\n  .navbar-form {\n    border-color: @navbar-default-border;\n  }\n\n  // Dropdown menu items\n  .navbar-nav {\n    // Remove background color from open dropdown\n    > .open > a {\n      &,\n      &:hover,\n      &:focus {\n        background-color: @navbar-default-link-active-bg;\n        color: @navbar-default-link-active-color;\n      }\n    }\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      // Dropdowns get custom display when collapsed\n      .open .dropdown-menu {\n        > li > a {\n          color: @navbar-default-link-color;\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-hover-color;\n            background-color: @navbar-default-link-hover-bg;\n          }\n        }\n        > .active > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-active-color;\n            background-color: @navbar-default-link-active-bg;\n          }\n        }\n        > .disabled > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-default-link-disabled-color;\n            background-color: @navbar-default-link-disabled-bg;\n          }\n        }\n      }\n    }\n  }\n\n\n  // Links in navbars\n  //\n  // Add a class to ensure links outside the navbar nav are colored correctly.\n\n  .navbar-link {\n    color: @navbar-default-link-color;\n    &:hover {\n      color: @navbar-default-link-hover-color;\n    }\n  }\n\n  .btn-link {\n    color: @navbar-default-link-color;\n    &:hover,\n    &:focus {\n      color: @navbar-default-link-hover-color;\n    }\n    &[disabled],\n    fieldset[disabled] & {\n      &:hover,\n      &:focus {\n        color: @navbar-default-link-disabled-color;\n      }\n    }\n  }\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n  background-color: @navbar-inverse-bg;\n  border-color: @navbar-inverse-border;\n\n  .navbar-brand {\n    color: @navbar-inverse-brand-color;\n    &:hover,\n    &:focus {\n      color: @navbar-inverse-brand-hover-color;\n      background-color: @navbar-inverse-brand-hover-bg;\n    }\n  }\n\n  .navbar-text {\n    color: @navbar-inverse-color;\n  }\n\n  .navbar-nav {\n    > li > a {\n      color: @navbar-inverse-link-color;\n\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-hover-color;\n        background-color: @navbar-inverse-link-hover-bg;\n      }\n    }\n    > .active > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-active-color;\n        background-color: @navbar-inverse-link-active-bg;\n      }\n    }\n    > .disabled > a {\n      &,\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-disabled-color;\n        background-color: @navbar-inverse-link-disabled-bg;\n      }\n    }\n  }\n\n  // Darken the responsive nav toggle\n  .navbar-toggle {\n    border-color: @navbar-inverse-toggle-border-color;\n    &:hover,\n    &:focus {\n      background-color: @navbar-inverse-toggle-hover-bg;\n    }\n    .icon-bar {\n      background-color: @navbar-inverse-toggle-icon-bar-bg;\n    }\n  }\n\n  .navbar-collapse,\n  .navbar-form {\n    border-color: darken(@navbar-inverse-bg, 7%);\n  }\n\n  // Dropdowns\n  .navbar-nav {\n    > .open > a {\n      &,\n      &:hover,\n      &:focus {\n        background-color: @navbar-inverse-link-active-bg;\n        color: @navbar-inverse-link-active-color;\n      }\n    }\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      // Dropdowns get custom display\n      .open .dropdown-menu {\n        > .dropdown-header {\n          border-color: @navbar-inverse-border;\n        }\n        .divider {\n          background-color: @navbar-inverse-border;\n        }\n        > li > a {\n          color: @navbar-inverse-link-color;\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-hover-color;\n            background-color: @navbar-inverse-link-hover-bg;\n          }\n        }\n        > .active > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-active-color;\n            background-color: @navbar-inverse-link-active-bg;\n          }\n        }\n        > .disabled > a {\n          &,\n          &:hover,\n          &:focus {\n            color: @navbar-inverse-link-disabled-color;\n            background-color: @navbar-inverse-link-disabled-bg;\n          }\n        }\n      }\n    }\n  }\n\n  .navbar-link {\n    color: @navbar-inverse-link-color;\n    &:hover {\n      color: @navbar-inverse-link-hover-color;\n    }\n  }\n\n  .btn-link {\n    color: @navbar-inverse-link-color;\n    &:hover,\n    &:focus {\n      color: @navbar-inverse-link-hover-color;\n    }\n    &[disabled],\n    fieldset[disabled] & {\n      &:hover,\n      &:focus {\n        color: @navbar-inverse-link-disabled-color;\n      }\n    }\n  }\n}\n","// Navbar vertical align\n//\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n\n.navbar-vertical-align(@element-height) {\n  margin-top: ((@navbar-height - @element-height) / 2);\n  margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n","//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n  .clearfix();\n}\n.center-block {\n  .center-block();\n}\n.pull-right {\n  float: right !important;\n}\n.pull-left {\n  float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1\n.hide {\n  display: none !important;\n}\n.show {\n  display: block !important;\n}\n.invisible {\n  visibility: hidden;\n}\n.text-hide {\n  .text-hide();\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n  display: none !important;\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n  position: fixed;\n}\n","// Bordered & Pulled\n// -------------------------\n\n.@{fa-css-prefix}-border {\n  padding: .2em .25em .15em;\n  border: solid .08em @fa-border-color;\n  border-radius: .1em;\n}\n\n.@{fa-css-prefix}-pull-left { float: left; }\n.@{fa-css-prefix}-pull-right { float: right; }\n\n.@{fa-css-prefix} {\n  &.@{fa-css-prefix}-pull-left { margin-right: .3em; }\n  &.@{fa-css-prefix}-pull-right { margin-left: .3em; }\n}\n\n/* Deprecated as of 4.4.0 */\n.pull-right { float: right; }\n.pull-left { float: left; }\n\n.@{fa-css-prefix} {\n  &.pull-left { margin-right: .3em; }\n  &.pull-right { margin-left: .3em; }\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n  padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n  margin-bottom: @line-height-computed;\n  list-style: none;\n  background-color: @breadcrumb-bg;\n  border-radius: @border-radius-base;\n\n  > li {\n    display: inline-block;\n\n    + li:before {\n      content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n      padding: 0 5px;\n      color: @breadcrumb-color;\n    }\n  }\n\n  > .active {\n    color: @breadcrumb-active-color;\n  }\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n  display: inline-block;\n  padding-left: 0;\n  margin: @line-height-computed 0;\n  border-radius: @border-radius-base;\n\n  > li {\n    display: inline; // Remove list-style and block-level defaults\n    > a,\n    > span {\n      position: relative;\n      float: left; // Collapse white-space\n      padding: @padding-base-vertical @padding-base-horizontal;\n      line-height: @line-height-base;\n      text-decoration: none;\n      color: @pagination-color;\n      background-color: @pagination-bg;\n      border: 1px solid @pagination-border;\n      margin-left: -1px;\n    }\n    &:first-child {\n      > a,\n      > span {\n        margin-left: 0;\n        .border-left-radius(@border-radius-base);\n      }\n    }\n    &:last-child {\n      > a,\n      > span {\n        .border-right-radius(@border-radius-base);\n      }\n    }\n  }\n\n  > li > a,\n  > li > span {\n    &:hover,\n    &:focus {\n      z-index: 2;\n      color: @pagination-hover-color;\n      background-color: @pagination-hover-bg;\n      border-color: @pagination-hover-border;\n    }\n  }\n\n  > .active > a,\n  > .active > span {\n    &,\n    &:hover,\n    &:focus {\n      z-index: 3;\n      color: @pagination-active-color;\n      background-color: @pagination-active-bg;\n      border-color: @pagination-active-border;\n      cursor: default;\n    }\n  }\n\n  > .disabled {\n    > span,\n    > span:hover,\n    > span:focus,\n    > a,\n    > a:hover,\n    > a:focus {\n      color: @pagination-disabled-color;\n      background-color: @pagination-disabled-bg;\n      border-color: @pagination-disabled-border;\n      cursor: @cursor-disabled;\n    }\n  }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n  .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n  .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n","// Pagination\n\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  > li {\n    > a,\n    > span {\n      padding: @padding-vertical @padding-horizontal;\n      font-size: @font-size;\n      line-height: @line-height;\n    }\n    &:first-child {\n      > a,\n      > span {\n        .border-left-radius(@border-radius);\n      }\n    }\n    &:last-child {\n      > a,\n      > span {\n        .border-right-radius(@border-radius);\n      }\n    }\n  }\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n  padding-left: 0;\n  margin: @line-height-computed 0;\n  list-style: none;\n  text-align: center;\n  &:extend(.clearfix all);\n  li {\n    display: inline;\n    > a,\n    > span {\n      display: inline-block;\n      padding: 5px 14px;\n      background-color: @pager-bg;\n      border: 1px solid @pager-border;\n      border-radius: @pager-border-radius;\n    }\n\n    > a:hover,\n    > a:focus {\n      text-decoration: none;\n      background-color: @pager-hover-bg;\n    }\n  }\n\n  .next {\n    > a,\n    > span {\n      float: right;\n    }\n  }\n\n  .previous {\n    > a,\n    > span {\n      float: left;\n    }\n  }\n\n  .disabled {\n    > a,\n    > a:hover,\n    > a:focus,\n    > span {\n      color: @pager-disabled-color;\n      background-color: @pager-bg;\n      cursor: @cursor-disabled;\n    }\n  }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n  display: inline;\n  padding: .2em .6em .3em;\n  font-size: 75%;\n  font-weight: bold;\n  line-height: 1;\n  color: @label-color;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: baseline;\n  border-radius: .25em;\n\n  // Add hover effects, but only for links\n  a& {\n    &:hover,\n    &:focus {\n      color: @label-link-hover-color;\n      text-decoration: none;\n      cursor: pointer;\n    }\n  }\n\n  // Empty labels collapse automatically (not available in IE8)\n  &:empty {\n    display: none;\n  }\n\n  // Quick fix for labels in buttons\n  .btn & {\n    position: relative;\n    top: -1px;\n  }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n  .label-variant(@label-default-bg);\n}\n\n.label-primary {\n  .label-variant(@label-primary-bg);\n}\n\n.label-success {\n  .label-variant(@label-success-bg);\n}\n\n.label-info {\n  .label-variant(@label-info-bg);\n}\n\n.label-warning {\n  .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n  .label-variant(@label-danger-bg);\n}\n","// Labels\n\n.label-variant(@color) {\n  background-color: @color;\n\n  &[href] {\n    &:hover,\n    &:focus {\n      background-color: darken(@color, 10%);\n    }\n  }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base class\n.badge {\n  display: inline-block;\n  min-width: 10px;\n  padding: 3px 7px;\n  font-size: @font-size-small;\n  font-weight: @badge-font-weight;\n  color: @badge-color;\n  line-height: @badge-line-height;\n  vertical-align: middle;\n  white-space: nowrap;\n  text-align: center;\n  background-color: @badge-bg;\n  border-radius: @badge-border-radius;\n\n  // Empty badges collapse automatically (not available in IE8)\n  &:empty {\n    display: none;\n  }\n\n  // Quick fix for badges in buttons\n  .btn & {\n    position: relative;\n    top: -1px;\n  }\n\n  .btn-xs &,\n  .btn-group-xs > .btn & {\n    top: 0;\n    padding: 1px 5px;\n  }\n\n  // Hover state, but only for links\n  a& {\n    &:hover,\n    &:focus {\n      color: @badge-link-hover-color;\n      text-decoration: none;\n      cursor: pointer;\n    }\n  }\n\n  // Account for badges in navs\n  .list-group-item.active > &,\n  .nav-pills > .active > a > & {\n    color: @badge-active-color;\n    background-color: @badge-active-bg;\n  }\n\n  .list-group-item > & {\n    float: right;\n  }\n\n  .list-group-item > & + & {\n    margin-right: 5px;\n  }\n\n  .nav-pills > li > a > & {\n    margin-left: 3px;\n  }\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n  padding-top:    @jumbotron-padding;\n  padding-bottom: @jumbotron-padding;\n  margin-bottom: @jumbotron-padding;\n  color: @jumbotron-color;\n  background-color: @jumbotron-bg;\n\n  h1,\n  .h1 {\n    color: @jumbotron-heading-color;\n  }\n\n  p {\n    margin-bottom: (@jumbotron-padding / 2);\n    font-size: @jumbotron-font-size;\n    font-weight: 200;\n  }\n\n  > hr {\n    border-top-color: darken(@jumbotron-bg, 10%);\n  }\n\n  .container &,\n  .container-fluid & {\n    border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n    padding-left:  (@grid-gutter-width / 2);\n    padding-right: (@grid-gutter-width / 2);\n  }\n\n  .container {\n    max-width: 100%;\n  }\n\n  @media screen and (min-width: @screen-sm-min) {\n    padding-top:    (@jumbotron-padding * 1.6);\n    padding-bottom: (@jumbotron-padding * 1.6);\n\n    .container &,\n    .container-fluid & {\n      padding-left:  (@jumbotron-padding * 2);\n      padding-right: (@jumbotron-padding * 2);\n    }\n\n    h1,\n    .h1 {\n      font-size: @jumbotron-heading-font-size;\n    }\n  }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n  padding: @alert-padding;\n  margin-bottom: @line-height-computed;\n  border: 1px solid transparent;\n  border-radius: @alert-border-radius;\n\n  // Headings for larger alerts\n  h4 {\n    margin-top: 0;\n    // Specified for the h4 to prevent conflicts of changing @headings-color\n    color: inherit;\n  }\n\n  // Provide class for links that match alerts\n  .alert-link {\n    font-weight: @alert-link-font-weight;\n  }\n\n  // Improve alignment and spacing of inner content\n  > p,\n  > ul {\n    margin-bottom: 0;\n  }\n\n  > p + p {\n    margin-top: 5px;\n  }\n}\n\n// Dismissible alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.\n.alert-dismissible {\n  padding-right: (@alert-padding + 20);\n\n  // Adjust close link position\n  .close {\n    position: relative;\n    top: -2px;\n    right: -21px;\n    color: inherit;\n  }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n  .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n\n.alert-info {\n  .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n\n.alert-warning {\n  .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n\n.alert-danger {\n  .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","// Alerts\n\n.alert-variant(@background; @border; @text-color) {\n  background-color: @background;\n  border-color: @border;\n  color: @text-color;\n\n  hr {\n    border-top-color: darken(@border, 5%);\n  }\n  .alert-link {\n    color: darken(@text-color, 10%);\n  }\n}\n","//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// WebKit\n@-webkit-keyframes progress-bar-stripes {\n  from  { background-position: 40px 0; }\n  to    { background-position: 0 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n  from  { background-position: 40px 0; }\n  to    { background-position: 0 0; }\n}\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n  overflow: hidden;\n  height: @line-height-computed;\n  margin-bottom: @line-height-computed;\n  background-color: @progress-bg;\n  border-radius: @progress-border-radius;\n  .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n}\n\n// Bar of progress\n.progress-bar {\n  float: left;\n  width: 0%;\n  height: 100%;\n  font-size: @font-size-small;\n  line-height: @line-height-computed;\n  color: @progress-bar-color;\n  text-align: center;\n  background-color: @progress-bar-bg;\n  .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n  .transition(width .6s ease);\n}\n\n// Striped bars\n//\n// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar-striped` class, which you just add to an existing\n// `.progress-bar`.\n.progress-striped .progress-bar,\n.progress-bar-striped {\n  #gradient > .striped();\n  background-size: 40px 40px;\n}\n\n// Call animation for the active one\n//\n// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar.active` approach.\n.progress.active .progress-bar,\n.progress-bar.active {\n  .animation(progress-bar-stripes 2s linear infinite);\n}\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n  .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n  .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n  .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n  .progress-bar-variant(@progress-bar-danger-bg);\n}\n","// Gradients\n\n#gradient {\n\n  // Horizontal gradient, from left to right\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  // Vertical gradient, from top to bottom\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12\n    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n    background-repeat: repeat-x;\n    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n  }\n  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .radial(@inner-color: #555; @outer-color: #333) {\n    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n    background-image: radial-gradient(circle, @inner-color, @outer-color);\n    background-repeat: no-repeat;\n  }\n  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n  }\n}\n","// Progress bars\n\n.progress-bar-variant(@color) {\n  background-color: @color;\n\n  // Deprecated parent class requirement as of v3.2.0\n  .progress-striped & {\n    #gradient > .striped();\n  }\n}\n",".media {\n  // Proper spacing between instances of .media\n  margin-top: 15px;\n\n  &:first-child {\n    margin-top: 0;\n  }\n}\n\n.media,\n.media-body {\n  zoom: 1;\n  overflow: hidden;\n}\n\n.media-body {\n  width: 10000px;\n}\n\n.media-object {\n  display: block;\n\n  // Fix collapse in webkit from max-width: 100% and display: table-cell.\n  &.img-thumbnail {\n    max-width: none;\n  }\n}\n\n.media-right,\n.media > .pull-right {\n  padding-left: 10px;\n}\n\n.media-left,\n.media > .pull-left {\n  padding-right: 10px;\n}\n\n.media-left,\n.media-right,\n.media-body {\n  display: table-cell;\n  vertical-align: top;\n}\n\n.media-middle {\n  vertical-align: middle;\n}\n\n.media-bottom {\n  vertical-align: bottom;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n\n// Media list variation\n//\n// Undo default ul/ol styles\n.media-list {\n  padding-left: 0;\n  list-style: none;\n}\n","//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n  // No need to set list-style: none; since .list-group-item is block level\n  margin-bottom: 20px;\n  padding-left: 0; // reset padding because ul and ol\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n  // Place the border on the list items and negative margin up for better styling\n  margin-bottom: -1px;\n  background-color: @list-group-bg;\n  border: 1px solid @list-group-border;\n\n  // Round the first and last items\n  &:first-child {\n    .border-top-radius(@list-group-border-radius);\n  }\n  &:last-child {\n    margin-bottom: 0;\n    .border-bottom-radius(@list-group-border-radius);\n  }\n}\n\n\n// Interactive list items\n//\n// Use anchor or button elements instead of `li`s or `div`s to create interactive items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item,\nbutton.list-group-item {\n  color: @list-group-link-color;\n\n  .list-group-item-heading {\n    color: @list-group-link-heading-color;\n  }\n\n  // Hover state\n  &:hover,\n  &:focus {\n    text-decoration: none;\n    color: @list-group-link-hover-color;\n    background-color: @list-group-hover-bg;\n  }\n}\n\nbutton.list-group-item {\n  width: 100%;\n  text-align: left;\n}\n\n.list-group-item {\n  // Disabled state\n  &.disabled,\n  &.disabled:hover,\n  &.disabled:focus {\n    background-color: @list-group-disabled-bg;\n    color: @list-group-disabled-color;\n    cursor: @cursor-disabled;\n\n    // Force color to inherit for custom content\n    .list-group-item-heading {\n      color: inherit;\n    }\n    .list-group-item-text {\n      color: @list-group-disabled-text-color;\n    }\n  }\n\n  // Active class on item itself, not parent\n  &.active,\n  &.active:hover,\n  &.active:focus {\n    z-index: 2; // Place active items above their siblings for proper border styling\n    color: @list-group-active-color;\n    background-color: @list-group-active-bg;\n    border-color: @list-group-active-border;\n\n    // Force color to inherit for custom content\n    .list-group-item-heading,\n    .list-group-item-heading > small,\n    .list-group-item-heading > .small {\n      color: inherit;\n    }\n    .list-group-item-text {\n      color: @list-group-active-text-color;\n    }\n  }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.list-group-item-text {\n  margin-bottom: 0;\n  line-height: 1.3;\n}\n","// List Groups\n\n.list-group-item-variant(@state; @background; @color) {\n  .list-group-item-@{state} {\n    color: @color;\n    background-color: @background;\n\n    a&,\n    button& {\n      color: @color;\n\n      .list-group-item-heading {\n        color: inherit;\n      }\n\n      &:hover,\n      &:focus {\n        color: @color;\n        background-color: darken(@background, 5%);\n      }\n      &.active,\n      &.active:hover,\n      &.active:focus {\n        color: #fff;\n        background-color: @color;\n        border-color: @color;\n      }\n    }\n  }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n  margin-bottom: @line-height-computed;\n  background-color: @panel-bg;\n  border: 1px solid transparent;\n  border-radius: @panel-border-radius;\n  .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n  padding: @panel-body-padding;\n  &:extend(.clearfix all);\n}\n\n// Optional heading\n.panel-heading {\n  padding: @panel-heading-padding;\n  border-bottom: 1px solid transparent;\n  .border-top-radius((@panel-border-radius - 1));\n\n  > .dropdown .dropdown-toggle {\n    color: inherit;\n  }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n  margin-top: 0;\n  margin-bottom: 0;\n  font-size: ceil((@font-size-base * 1.125));\n  color: inherit;\n\n  > a,\n  > small,\n  > .small,\n  > small > a,\n  > .small > a {\n    color: inherit;\n  }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n  padding: @panel-footer-padding;\n  background-color: @panel-footer-bg;\n  border-top: 1px solid @panel-inner-border;\n  .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n  > .list-group,\n  > .panel-collapse > .list-group {\n    margin-bottom: 0;\n\n    .list-group-item {\n      border-width: 1px 0;\n      border-radius: 0;\n    }\n\n    // Add border top radius for first one\n    &:first-child {\n      .list-group-item:first-child {\n        border-top: 0;\n        .border-top-radius((@panel-border-radius - 1));\n      }\n    }\n\n    // Add border bottom radius for last one\n    &:last-child {\n      .list-group-item:last-child {\n        border-bottom: 0;\n        .border-bottom-radius((@panel-border-radius - 1));\n      }\n    }\n  }\n  > .panel-heading + .panel-collapse > .list-group {\n    .list-group-item:first-child {\n      .border-top-radius(0);\n    }\n  }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n  .list-group-item:first-child {\n    border-top-width: 0;\n  }\n}\n.list-group + .panel-footer {\n  border-top-width: 0;\n}\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n  > .table,\n  > .table-responsive > .table,\n  > .panel-collapse > .table {\n    margin-bottom: 0;\n\n    caption {\n      padding-left: @panel-body-padding;\n      padding-right: @panel-body-padding;\n    }\n  }\n  // Add border top radius for first one\n  > .table:first-child,\n  > .table-responsive:first-child > .table:first-child {\n    .border-top-radius((@panel-border-radius - 1));\n\n    > thead:first-child,\n    > tbody:first-child {\n      > tr:first-child {\n        border-top-left-radius: (@panel-border-radius - 1);\n        border-top-right-radius: (@panel-border-radius - 1);\n\n        td:first-child,\n        th:first-child {\n          border-top-left-radius: (@panel-border-radius - 1);\n        }\n        td:last-child,\n        th:last-child {\n          border-top-right-radius: (@panel-border-radius - 1);\n        }\n      }\n    }\n  }\n  // Add border bottom radius for last one\n  > .table:last-child,\n  > .table-responsive:last-child > .table:last-child {\n    .border-bottom-radius((@panel-border-radius - 1));\n\n    > tbody:last-child,\n    > tfoot:last-child {\n      > tr:last-child {\n        border-bottom-left-radius: (@panel-border-radius - 1);\n        border-bottom-right-radius: (@panel-border-radius - 1);\n\n        td:first-child,\n        th:first-child {\n          border-bottom-left-radius: (@panel-border-radius - 1);\n        }\n        td:last-child,\n        th:last-child {\n          border-bottom-right-radius: (@panel-border-radius - 1);\n        }\n      }\n    }\n  }\n  > .panel-body + .table,\n  > .panel-body + .table-responsive,\n  > .table + .panel-body,\n  > .table-responsive + .panel-body {\n    border-top: 1px solid @table-border-color;\n  }\n  > .table > tbody:first-child > tr:first-child th,\n  > .table > tbody:first-child > tr:first-child td {\n    border-top: 0;\n  }\n  > .table-bordered,\n  > .table-responsive > .table-bordered {\n    border: 0;\n    > thead,\n    > tbody,\n    > tfoot {\n      > tr {\n        > th:first-child,\n        > td:first-child {\n          border-left: 0;\n        }\n        > th:last-child,\n        > td:last-child {\n          border-right: 0;\n        }\n      }\n    }\n    > thead,\n    > tbody {\n      > tr:first-child {\n        > td,\n        > th {\n          border-bottom: 0;\n        }\n      }\n    }\n    > tbody,\n    > tfoot {\n      > tr:last-child {\n        > td,\n        > th {\n          border-bottom: 0;\n        }\n      }\n    }\n  }\n  > .table-responsive {\n    border: 0;\n    margin-bottom: 0;\n  }\n}\n\n\n// Collapsible panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n  margin-bottom: @line-height-computed;\n\n  // Tighten up margin so it's only between panels\n  .panel {\n    margin-bottom: 0;\n    border-radius: @panel-border-radius;\n\n    + .panel {\n      margin-top: 5px;\n    }\n  }\n\n  .panel-heading {\n    border-bottom: 0;\n\n    + .panel-collapse > .panel-body,\n    + .panel-collapse > .list-group {\n      border-top: 1px solid @panel-inner-border;\n    }\n  }\n\n  .panel-footer {\n    border-top: 0;\n    + .panel-collapse .panel-body {\n      border-bottom: 1px solid @panel-inner-border;\n    }\n  }\n}\n\n\n// Contextual variations\n.panel-default {\n  .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n  .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n  .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n  .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n  .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n  .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","// Panels\n\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n  border-color: @border;\n\n  & > .panel-heading {\n    color: @heading-text-color;\n    background-color: @heading-bg-color;\n    border-color: @heading-border;\n\n    + .panel-collapse > .panel-body {\n      border-top-color: @border;\n    }\n    .badge {\n      color: @heading-bg-color;\n      background-color: @heading-text-color;\n    }\n  }\n  & > .panel-footer {\n    + .panel-collapse > .panel-body {\n      border-bottom-color: @border;\n    }\n  }\n}\n","// Embeds responsive\n//\n// Credit: Nicolas Gallagher and SUIT CSS.\n\n.embed-responsive {\n  position: relative;\n  display: block;\n  height: 0;\n  padding: 0;\n  overflow: hidden;\n\n  .embed-responsive-item,\n  iframe,\n  embed,\n  object,\n  video {\n    position: absolute;\n    top: 0;\n    left: 0;\n    bottom: 0;\n    height: 100%;\n    width: 100%;\n    border: 0;\n  }\n}\n\n// Modifier class for 16:9 aspect ratio\n.embed-responsive-16by9 {\n  padding-bottom: 56.25%;\n}\n\n// Modifier class for 4:3 aspect ratio\n.embed-responsive-4by3 {\n  padding-bottom: 75%;\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n  min-height: 20px;\n  padding: 19px;\n  margin-bottom: 20px;\n  background-color: @well-bg;\n  border: 1px solid @well-border;\n  border-radius: @border-radius-base;\n  .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n  blockquote {\n    border-color: #ddd;\n    border-color: rgba(0,0,0,.15);\n  }\n}\n\n// Sizes\n.well-lg {\n  padding: 24px;\n  border-radius: @border-radius-large;\n}\n.well-sm {\n  padding: 9px;\n  border-radius: @border-radius-small;\n}\n","//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n  float: right;\n  font-size: (@font-size-base * 1.5);\n  font-weight: @close-font-weight;\n  line-height: 1;\n  color: @close-color;\n  text-shadow: @close-text-shadow;\n  .opacity(.2);\n\n  &:hover,\n  &:focus {\n    color: @close-color;\n    text-decoration: none;\n    cursor: pointer;\n    .opacity(.5);\n  }\n\n  // Additional properties for button version\n  // iOS requires the button element instead of an anchor tag.\n  // If you want the anchor version, it requires `href=\"#\"`.\n  // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n  button& {\n    padding: 0;\n    cursor: pointer;\n    background: transparent;\n    border: 0;\n    -webkit-appearance: none;\n  }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open      - body class for killing the scroll\n// .modal           - container to scroll within\n// .modal-dialog    - positioning shell for the actual modal\n// .modal-content   - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n  overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n  display: none;\n  overflow: hidden;\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: @zindex-modal;\n  -webkit-overflow-scrolling: touch;\n\n  // Prevent Chrome on Windows from adding a focus outline. For details, see\n  // https://github.com/twbs/bootstrap/pull/10951.\n  outline: 0;\n\n  // When fading in the modal, animate it to slide down\n  &.fade .modal-dialog {\n    .translate(0, -25%);\n    .transition-transform(~\"0.3s ease-out\");\n  }\n  &.in .modal-dialog { .translate(0, 0) }\n}\n.modal-open .modal {\n  overflow-x: hidden;\n  overflow-y: auto;\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n  position: relative;\n  width: auto;\n  margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n  position: relative;\n  background-color: @modal-content-bg;\n  border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n  border: 1px solid @modal-content-border-color;\n  border-radius: @border-radius-large;\n  .box-shadow(0 3px 9px rgba(0,0,0,.5));\n  background-clip: padding-box;\n  // Remove focus outline from opened modal\n  outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: @zindex-modal-background;\n  background-color: @modal-backdrop-bg;\n  // Fade for backdrop\n  &.fade { .opacity(0); }\n  &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n  padding: @modal-title-padding;\n  border-bottom: 1px solid @modal-header-border-color;\n  &:extend(.clearfix all);\n}\n// Close icon\n.modal-header .close {\n  margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n  margin: 0;\n  line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n  position: relative;\n  padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n  padding: @modal-inner-padding;\n  text-align: right; // right align buttons\n  border-top: 1px solid @modal-footer-border-color;\n  &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n  // Properly space out buttons\n  .btn + .btn {\n    margin-left: 5px;\n    margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n  }\n  // but override that for button groups\n  .btn-group .btn + .btn {\n    margin-left: -1px;\n  }\n  // and override it for block buttons as well\n  .btn-block + .btn-block {\n    margin-left: 0;\n  }\n}\n\n// Measure scrollbar width for padding body during modal show/hide\n.modal-scrollbar-measure {\n  position: absolute;\n  top: -9999px;\n  width: 50px;\n  height: 50px;\n  overflow: scroll;\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n  // Automatically set modal's width for larger viewports\n  .modal-dialog {\n    width: @modal-md;\n    margin: 30px auto;\n  }\n  .modal-content {\n    .box-shadow(0 5px 15px rgba(0,0,0,.5));\n  }\n\n  // Modal sizes\n  .modal-sm { width: @modal-sm; }\n}\n\n@media (min-width: @screen-md-min) {\n  .modal-lg { width: @modal-lg; }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n  position: absolute;\n  z-index: @zindex-tooltip;\n  display: block;\n  // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n  // So reset our font and text properties to avoid inheriting weird values.\n  .reset-text();\n  font-size: @font-size-small;\n\n  .opacity(0);\n\n  &.in     { .opacity(@tooltip-opacity); }\n  &.top    { margin-top:  -3px; padding: @tooltip-arrow-width 0; }\n  &.right  { margin-left:  3px; padding: 0 @tooltip-arrow-width; }\n  &.bottom { margin-top:   3px; padding: @tooltip-arrow-width 0; }\n  &.left   { margin-left: -3px; padding: 0 @tooltip-arrow-width; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n  max-width: @tooltip-max-width;\n  padding: 3px 8px;\n  color: @tooltip-color;\n  text-align: center;\n  background-color: @tooltip-bg;\n  border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n  position: absolute;\n  width: 0;\n  height: 0;\n  border-color: transparent;\n  border-style: solid;\n}\n// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1\n.tooltip {\n  &.top .tooltip-arrow {\n    bottom: 0;\n    left: 50%;\n    margin-left: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.top-left .tooltip-arrow {\n    bottom: 0;\n    right: @tooltip-arrow-width;\n    margin-bottom: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.top-right .tooltip-arrow {\n    bottom: 0;\n    left: @tooltip-arrow-width;\n    margin-bottom: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-top-color: @tooltip-arrow-color;\n  }\n  &.right .tooltip-arrow {\n    top: 50%;\n    left: 0;\n    margin-top: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n    border-right-color: @tooltip-arrow-color;\n  }\n  &.left .tooltip-arrow {\n    top: 50%;\n    right: 0;\n    margin-top: -@tooltip-arrow-width;\n    border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-left-color: @tooltip-arrow-color;\n  }\n  &.bottom .tooltip-arrow {\n    top: 0;\n    left: 50%;\n    margin-left: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n  &.bottom-left .tooltip-arrow {\n    top: 0;\n    right: @tooltip-arrow-width;\n    margin-top: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n  &.bottom-right .tooltip-arrow {\n    top: 0;\n    left: @tooltip-arrow-width;\n    margin-top: -@tooltip-arrow-width;\n    border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n    border-bottom-color: @tooltip-arrow-color;\n  }\n}\n",".reset-text() {\n  font-family: @font-family-base;\n  // We deliberately do NOT reset font-size.\n  font-style: normal;\n  font-weight: normal;\n  letter-spacing: normal;\n  line-break: auto;\n  line-height: @line-height-base;\n  text-align: left; // Fallback for where `start` is not supported\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  white-space: normal;\n  word-break: normal;\n  word-spacing: normal;\n  word-wrap: normal;\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n  position: absolute;\n  top: 0;\n  left: 0;\n  z-index: @zindex-popover;\n  display: none;\n  max-width: @popover-max-width;\n  padding: 1px;\n  // Our parent element can be arbitrary since popovers are by default inserted as a sibling of their target element.\n  // So reset our font and text properties to avoid inheriting weird values.\n  .reset-text();\n  font-size: @font-size-base;\n\n  background-color: @popover-bg;\n  background-clip: padding-box;\n  border: 1px solid @popover-fallback-border-color;\n  border: 1px solid @popover-border-color;\n  border-radius: @border-radius-large;\n  .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n  // Offset the popover to account for the popover arrow\n  &.top     { margin-top: -@popover-arrow-width; }\n  &.right   { margin-left: @popover-arrow-width; }\n  &.bottom  { margin-top: @popover-arrow-width; }\n  &.left    { margin-left: -@popover-arrow-width; }\n}\n\n.popover-title {\n  margin: 0; // reset heading margin\n  padding: 8px 14px;\n  font-size: @font-size-base;\n  background-color: @popover-title-bg;\n  border-bottom: 1px solid darken(@popover-title-bg, 5%);\n  border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;\n}\n\n.popover-content {\n  padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover > .arrow {\n  &,\n  &:after {\n    position: absolute;\n    display: block;\n    width: 0;\n    height: 0;\n    border-color: transparent;\n    border-style: solid;\n  }\n}\n.popover > .arrow {\n  border-width: @popover-arrow-outer-width;\n}\n.popover > .arrow:after {\n  border-width: @popover-arrow-width;\n  content: \"\";\n}\n\n.popover {\n  &.top > .arrow {\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    border-bottom-width: 0;\n    border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-top-color: @popover-arrow-outer-color;\n    bottom: -@popover-arrow-outer-width;\n    &:after {\n      content: \" \";\n      bottom: 1px;\n      margin-left: -@popover-arrow-width;\n      border-bottom-width: 0;\n      border-top-color: @popover-arrow-color;\n    }\n  }\n  &.right > .arrow {\n    top: 50%;\n    left: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    border-left-width: 0;\n    border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-right-color: @popover-arrow-outer-color;\n    &:after {\n      content: \" \";\n      left: 1px;\n      bottom: -@popover-arrow-width;\n      border-left-width: 0;\n      border-right-color: @popover-arrow-color;\n    }\n  }\n  &.bottom > .arrow {\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    border-top-width: 0;\n    border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-bottom-color: @popover-arrow-outer-color;\n    top: -@popover-arrow-outer-width;\n    &:after {\n      content: \" \";\n      top: 1px;\n      margin-left: -@popover-arrow-width;\n      border-top-width: 0;\n      border-bottom-color: @popover-arrow-color;\n    }\n  }\n\n  &.left > .arrow {\n    top: 50%;\n    right: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    border-right-width: 0;\n    border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n    border-left-color: @popover-arrow-outer-color;\n    &:after {\n      content: \" \";\n      right: 1px;\n      border-right-width: 0;\n      border-left-color: @popover-arrow-color;\n      bottom: -@popover-arrow-width;\n    }\n  }\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n//    contenteditable attribute is included anywhere else in the document.\n//    Otherwise it causes space to appear at the top and bottom of elements\n//    that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n//    `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n  &:before,\n  &:after {\n    content: \" \"; // 1\n    display: table; // 2\n  }\n  &:after {\n    clear: both;\n  }\n}\n","// Center-align a block level element\n\n.center-block() {\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n","// CSS image replacement\n//\n// Heads up! v3 launched with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (has been removed in v4)\n.hide-text() {\n  font: ~\"0/0\" a;\n  color: transparent;\n  text-shadow: none;\n  background-color: transparent;\n  border: 0;\n}\n\n// New mixin to use as of v3.0.1\n.text-hide() {\n  .hide-text();\n}\n","//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#support-ie10-width\n// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n  width: device-width;\n}\n\n\n// Visibility utilities\n// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n  .responsive-invisibility();\n}\n\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n  display: none !important;\n}\n\n.visible-xs {\n  @media (max-width: @screen-xs-max) {\n    .responsive-visibility();\n  }\n}\n.visible-xs-block {\n  @media (max-width: @screen-xs-max) {\n    display: block !important;\n  }\n}\n.visible-xs-inline {\n  @media (max-width: @screen-xs-max) {\n    display: inline !important;\n  }\n}\n.visible-xs-inline-block {\n  @media (max-width: @screen-xs-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-sm {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    .responsive-visibility();\n  }\n}\n.visible-sm-block {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: block !important;\n  }\n}\n.visible-sm-inline {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: inline !important;\n  }\n}\n.visible-sm-inline-block {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-md {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    .responsive-visibility();\n  }\n}\n.visible-md-block {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: block !important;\n  }\n}\n.visible-md-inline {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: inline !important;\n  }\n}\n.visible-md-inline-block {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    display: inline-block !important;\n  }\n}\n\n.visible-lg {\n  @media (min-width: @screen-lg-min) {\n    .responsive-visibility();\n  }\n}\n.visible-lg-block {\n  @media (min-width: @screen-lg-min) {\n    display: block !important;\n  }\n}\n.visible-lg-inline {\n  @media (min-width: @screen-lg-min) {\n    display: inline !important;\n  }\n}\n.visible-lg-inline-block {\n  @media (min-width: @screen-lg-min) {\n    display: inline-block !important;\n  }\n}\n\n.hidden-xs {\n  @media (max-width: @screen-xs-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-sm {\n  @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-md {\n  @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n    .responsive-invisibility();\n  }\n}\n.hidden-lg {\n  @media (min-width: @screen-lg-min) {\n    .responsive-invisibility();\n  }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n// Note: Deprecated .visible-print as of v3.2.0\n.visible-print {\n  .responsive-invisibility();\n\n  @media print {\n    .responsive-visibility();\n  }\n}\n.visible-print-block {\n  display: none !important;\n\n  @media print {\n    display: block !important;\n  }\n}\n.visible-print-inline {\n  display: none !important;\n\n  @media print {\n    display: inline !important;\n  }\n}\n.visible-print-inline-block {\n  display: none !important;\n\n  @media print {\n    display: inline-block !important;\n  }\n}\n\n.hidden-print {\n  @media print {\n    .responsive-invisibility();\n  }\n}\n","// Responsive utilities\n\n//\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n  display: block !important;\n  table&  { display: table !important; }\n  tr&     { display: table-row !important; }\n  th&,\n  td&     { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n  display: none !important;\n}\n","/* FONT PATH\n * -------------------------- */\n\n@font-face {\n  font-family: 'FontAwesome';\n  src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}');\n  src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'),\n    url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'),\n    url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'),\n    url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'),\n    url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg');\n  // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts\n  font-weight: normal;\n  font-style: normal;\n}\n","// Base Class Definition\n// -------------------------\n\n.@{fa-css-prefix} {\n  display: inline-block;\n  font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration\n  font-size: inherit; // can't have font-size inherit on line above, so need to override\n  text-rendering: auto; // optimizelegibility throws things off #1094\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n\n}\n","// Icon Sizes\n// -------------------------\n\n/* makes the font 33% larger relative to the icon container */\n.@{fa-css-prefix}-lg {\n  font-size: (4em / 3);\n  line-height: (3em / 4);\n  vertical-align: -15%;\n}\n.@{fa-css-prefix}-2x { font-size: 2em; }\n.@{fa-css-prefix}-3x { font-size: 3em; }\n.@{fa-css-prefix}-4x { font-size: 4em; }\n.@{fa-css-prefix}-5x { font-size: 5em; }\n","// Fixed Width Icons\n// -------------------------\n.@{fa-css-prefix}-fw {\n  width: (18em / 14);\n  text-align: center;\n}\n","// List Icons\n// -------------------------\n\n.@{fa-css-prefix}-ul {\n  padding-left: 0;\n  margin-left: @fa-li-width;\n  list-style-type: none;\n  > li { position: relative; }\n}\n.@{fa-css-prefix}-li {\n  position: absolute;\n  left: -@fa-li-width;\n  width: @fa-li-width;\n  top: (2em / 14);\n  text-align: center;\n  &.@{fa-css-prefix}-lg {\n    left: (-@fa-li-width + (4em / 14));\n  }\n}\n","// Animated Icons\n// --------------------------\n\n.@{fa-css-prefix}-spin {\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear;\n}\n\n.@{fa-css-prefix}-pulse {\n  -webkit-animation: fa-spin 1s infinite steps(8);\n          animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n            transform: rotate(359deg);\n  }\n}\n\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n            transform: rotate(359deg);\n  }\n}\n","// Rotated & Flipped Icons\n// -------------------------\n\n.@{fa-css-prefix}-rotate-90  { .fa-icon-rotate(90deg, 1);  }\n.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }\n.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }\n\n.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }\n.@{fa-css-prefix}-flip-vertical   { .fa-icon-flip(1, -1, 2); }\n\n// Hook for IE8-9\n// -------------------------\n\n:root .@{fa-css-prefix}-rotate-90,\n:root .@{fa-css-prefix}-rotate-180,\n:root .@{fa-css-prefix}-rotate-270,\n:root .@{fa-css-prefix}-flip-horizontal,\n:root .@{fa-css-prefix}-flip-vertical {\n  filter: none;\n}\n","// Mixins\n// --------------------------\n\n.fa-icon() {\n  display: inline-block;\n  font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration\n  font-size: inherit; // can't have font-size inherit on line above, so need to override\n  text-rendering: auto; // optimizelegibility throws things off #1094\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n\n}\n\n.fa-icon-rotate(@degrees, @rotation) {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})\";\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n\n.fa-icon-flip(@horiz, @vert, @rotation) {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)\";\n  -webkit-transform: scale(@horiz, @vert);\n      -ms-transform: scale(@horiz, @vert);\n          transform: scale(@horiz, @vert);\n}\n\n\n// Only display content to screen readers. A la Bootstrap 4.\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n//\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n//\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable() {\n  &:active,\n  &:focus {\n    position: static;\n    width: auto;\n    height: auto;\n    margin: 0;\n    overflow: visible;\n    clip: auto;\n  }\n}\n","// Stacked Icons\n// -------------------------\n\n.@{fa-css-prefix}-stack {\n  position: relative;\n  display: inline-block;\n  width: 2em;\n  height: 2em;\n  line-height: 2em;\n  vertical-align: middle;\n}\n.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {\n  position: absolute;\n  left: 0;\n  width: 100%;\n  text-align: center;\n}\n.@{fa-css-prefix}-stack-1x { line-height: inherit; }\n.@{fa-css-prefix}-stack-2x { font-size: 2em; }\n.@{fa-css-prefix}-inverse { color: @fa-inverse; }\n","/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n   readers do not read off random characters that represent icons */\n\n.@{fa-css-prefix}-glass:before { content: @fa-var-glass; }\n.@{fa-css-prefix}-music:before { content: @fa-var-music; }\n.@{fa-css-prefix}-search:before { content: @fa-var-search; }\n.@{fa-css-prefix}-envelope-o:before { content: @fa-var-envelope-o; }\n.@{fa-css-prefix}-heart:before { content: @fa-var-heart; }\n.@{fa-css-prefix}-star:before { content: @fa-var-star; }\n.@{fa-css-prefix}-star-o:before { content: @fa-var-star-o; }\n.@{fa-css-prefix}-user:before { content: @fa-var-user; }\n.@{fa-css-prefix}-film:before { content: @fa-var-film; }\n.@{fa-css-prefix}-th-large:before { content: @fa-var-th-large; }\n.@{fa-css-prefix}-th:before { content: @fa-var-th; }\n.@{fa-css-prefix}-th-list:before { content: @fa-var-th-list; }\n.@{fa-css-prefix}-check:before { content: @fa-var-check; }\n.@{fa-css-prefix}-remove:before,\n.@{fa-css-prefix}-close:before,\n.@{fa-css-prefix}-times:before { content: @fa-var-times; }\n.@{fa-css-prefix}-search-plus:before { content: @fa-var-search-plus; }\n.@{fa-css-prefix}-search-minus:before { content: @fa-var-search-minus; }\n.@{fa-css-prefix}-power-off:before { content: @fa-var-power-off; }\n.@{fa-css-prefix}-signal:before { content: @fa-var-signal; }\n.@{fa-css-prefix}-gear:before,\n.@{fa-css-prefix}-cog:before { content: @fa-var-cog; }\n.@{fa-css-prefix}-trash-o:before { content: @fa-var-trash-o; }\n.@{fa-css-prefix}-home:before { content: @fa-var-home; }\n.@{fa-css-prefix}-file-o:before { content: @fa-var-file-o; }\n.@{fa-css-prefix}-clock-o:before { content: @fa-var-clock-o; }\n.@{fa-css-prefix}-road:before { content: @fa-var-road; }\n.@{fa-css-prefix}-download:before { content: @fa-var-download; }\n.@{fa-css-prefix}-arrow-circle-o-down:before { content: @fa-var-arrow-circle-o-down; }\n.@{fa-css-prefix}-arrow-circle-o-up:before { content: @fa-var-arrow-circle-o-up; }\n.@{fa-css-prefix}-inbox:before { content: @fa-var-inbox; }\n.@{fa-css-prefix}-play-circle-o:before { content: @fa-var-play-circle-o; }\n.@{fa-css-prefix}-rotate-right:before,\n.@{fa-css-prefix}-repeat:before { content: @fa-var-repeat; }\n.@{fa-css-prefix}-refresh:before { content: @fa-var-refresh; }\n.@{fa-css-prefix}-list-alt:before { content: @fa-var-list-alt; }\n.@{fa-css-prefix}-lock:before { content: @fa-var-lock; }\n.@{fa-css-prefix}-flag:before { content: @fa-var-flag; }\n.@{fa-css-prefix}-headphones:before { content: @fa-var-headphones; }\n.@{fa-css-prefix}-volume-off:before { content: @fa-var-volume-off; }\n.@{fa-css-prefix}-volume-down:before { content: @fa-var-volume-down; }\n.@{fa-css-prefix}-volume-up:before { content: @fa-var-volume-up; }\n.@{fa-css-prefix}-qrcode:before { content: @fa-var-qrcode; }\n.@{fa-css-prefix}-barcode:before { content: @fa-var-barcode; }\n.@{fa-css-prefix}-tag:before { content: @fa-var-tag; }\n.@{fa-css-prefix}-tags:before { content: @fa-var-tags; }\n.@{fa-css-prefix}-book:before { content: @fa-var-book; }\n.@{fa-css-prefix}-bookmark:before { content: @fa-var-bookmark; }\n.@{fa-css-prefix}-print:before { content: @fa-var-print; }\n.@{fa-css-prefix}-camera:before { content: @fa-var-camera; }\n.@{fa-css-prefix}-font:before { content: @fa-var-font; }\n.@{fa-css-prefix}-bold:before { content: @fa-var-bold; }\n.@{fa-css-prefix}-italic:before { content: @fa-var-italic; }\n.@{fa-css-prefix}-text-height:before { content: @fa-var-text-height; }\n.@{fa-css-prefix}-text-width:before { content: @fa-var-text-width; }\n.@{fa-css-prefix}-align-left:before { content: @fa-var-align-left; }\n.@{fa-css-prefix}-align-center:before { content: @fa-var-align-center; }\n.@{fa-css-prefix}-align-right:before { content: @fa-var-align-right; }\n.@{fa-css-prefix}-align-justify:before { content: @fa-var-align-justify; }\n.@{fa-css-prefix}-list:before { content: @fa-var-list; }\n.@{fa-css-prefix}-dedent:before,\n.@{fa-css-prefix}-outdent:before { content: @fa-var-outdent; }\n.@{fa-css-prefix}-indent:before { content: @fa-var-indent; }\n.@{fa-css-prefix}-video-camera:before { content: @fa-var-video-camera; }\n.@{fa-css-prefix}-photo:before,\n.@{fa-css-prefix}-image:before,\n.@{fa-css-prefix}-picture-o:before { content: @fa-var-picture-o; }\n.@{fa-css-prefix}-pencil:before { content: @fa-var-pencil; }\n.@{fa-css-prefix}-map-marker:before { content: @fa-var-map-marker; }\n.@{fa-css-prefix}-adjust:before { content: @fa-var-adjust; }\n.@{fa-css-prefix}-tint:before { content: @fa-var-tint; }\n.@{fa-css-prefix}-edit:before,\n.@{fa-css-prefix}-pencil-square-o:before { content: @fa-var-pencil-square-o; }\n.@{fa-css-prefix}-share-square-o:before { content: @fa-var-share-square-o; }\n.@{fa-css-prefix}-check-square-o:before { content: @fa-var-check-square-o; }\n.@{fa-css-prefix}-arrows:before { content: @fa-var-arrows; }\n.@{fa-css-prefix}-step-backward:before { content: @fa-var-step-backward; }\n.@{fa-css-prefix}-fast-backward:before { content: @fa-var-fast-backward; }\n.@{fa-css-prefix}-backward:before { content: @fa-var-backward; }\n.@{fa-css-prefix}-play:before { content: @fa-var-play; }\n.@{fa-css-prefix}-pause:before { content: @fa-var-pause; }\n.@{fa-css-prefix}-stop:before { content: @fa-var-stop; }\n.@{fa-css-prefix}-forward:before { content: @fa-var-forward; }\n.@{fa-css-prefix}-fast-forward:before { content: @fa-var-fast-forward; }\n.@{fa-css-prefix}-step-forward:before { content: @fa-var-step-forward; }\n.@{fa-css-prefix}-eject:before { content: @fa-var-eject; }\n.@{fa-css-prefix}-chevron-left:before { content: @fa-var-chevron-left; }\n.@{fa-css-prefix}-chevron-right:before { content: @fa-var-chevron-right; }\n.@{fa-css-prefix}-plus-circle:before { content: @fa-var-plus-circle; }\n.@{fa-css-prefix}-minus-circle:before { content: @fa-var-minus-circle; }\n.@{fa-css-prefix}-times-circle:before { content: @fa-var-times-circle; }\n.@{fa-css-prefix}-check-circle:before { content: @fa-var-check-circle; }\n.@{fa-css-prefix}-question-circle:before { content: @fa-var-question-circle; }\n.@{fa-css-prefix}-info-circle:before { content: @fa-var-info-circle; }\n.@{fa-css-prefix}-crosshairs:before { content: @fa-var-crosshairs; }\n.@{fa-css-prefix}-times-circle-o:before { content: @fa-var-times-circle-o; }\n.@{fa-css-prefix}-check-circle-o:before { content: @fa-var-check-circle-o; }\n.@{fa-css-prefix}-ban:before { content: @fa-var-ban; }\n.@{fa-css-prefix}-arrow-left:before { content: @fa-var-arrow-left; }\n.@{fa-css-prefix}-arrow-right:before { content: @fa-var-arrow-right; }\n.@{fa-css-prefix}-arrow-up:before { content: @fa-var-arrow-up; }\n.@{fa-css-prefix}-arrow-down:before { content: @fa-var-arrow-down; }\n.@{fa-css-prefix}-mail-forward:before,\n.@{fa-css-prefix}-share:before { content: @fa-var-share; }\n.@{fa-css-prefix}-expand:before { content: @fa-var-expand; }\n.@{fa-css-prefix}-compress:before { content: @fa-var-compress; }\n.@{fa-css-prefix}-plus:before { content: @fa-var-plus; }\n.@{fa-css-prefix}-minus:before { content: @fa-var-minus; }\n.@{fa-css-prefix}-asterisk:before { content: @fa-var-asterisk; }\n.@{fa-css-prefix}-exclamation-circle:before { content: @fa-var-exclamation-circle; }\n.@{fa-css-prefix}-gift:before { content: @fa-var-gift; }\n.@{fa-css-prefix}-leaf:before { content: @fa-var-leaf; }\n.@{fa-css-prefix}-fire:before { content: @fa-var-fire; }\n.@{fa-css-prefix}-eye:before { content: @fa-var-eye; }\n.@{fa-css-prefix}-eye-slash:before { content: @fa-var-eye-slash; }\n.@{fa-css-prefix}-warning:before,\n.@{fa-css-prefix}-exclamation-triangle:before { content: @fa-var-exclamation-triangle; }\n.@{fa-css-prefix}-plane:before { content: @fa-var-plane; }\n.@{fa-css-prefix}-calendar:before { content: @fa-var-calendar; }\n.@{fa-css-prefix}-random:before { content: @fa-var-random; }\n.@{fa-css-prefix}-comment:before { content: @fa-var-comment; }\n.@{fa-css-prefix}-magnet:before { content: @fa-var-magnet; }\n.@{fa-css-prefix}-chevron-up:before { content: @fa-var-chevron-up; }\n.@{fa-css-prefix}-chevron-down:before { content: @fa-var-chevron-down; }\n.@{fa-css-prefix}-retweet:before { content: @fa-var-retweet; }\n.@{fa-css-prefix}-shopping-cart:before { content: @fa-var-shopping-cart; }\n.@{fa-css-prefix}-folder:before { content: @fa-var-folder; }\n.@{fa-css-prefix}-folder-open:before { content: @fa-var-folder-open; }\n.@{fa-css-prefix}-arrows-v:before { content: @fa-var-arrows-v; }\n.@{fa-css-prefix}-arrows-h:before { content: @fa-var-arrows-h; }\n.@{fa-css-prefix}-bar-chart-o:before,\n.@{fa-css-prefix}-bar-chart:before { content: @fa-var-bar-chart; }\n.@{fa-css-prefix}-twitter-square:before { content: @fa-var-twitter-square; }\n.@{fa-css-prefix}-facebook-square:before { content: @fa-var-facebook-square; }\n.@{fa-css-prefix}-camera-retro:before { content: @fa-var-camera-retro; }\n.@{fa-css-prefix}-key:before { content: @fa-var-key; }\n.@{fa-css-prefix}-gears:before,\n.@{fa-css-prefix}-cogs:before { content: @fa-var-cogs; }\n.@{fa-css-prefix}-comments:before { content: @fa-var-comments; }\n.@{fa-css-prefix}-thumbs-o-up:before { content: @fa-var-thumbs-o-up; }\n.@{fa-css-prefix}-thumbs-o-down:before { content: @fa-var-thumbs-o-down; }\n.@{fa-css-prefix}-star-half:before { content: @fa-var-star-half; }\n.@{fa-css-prefix}-heart-o:before { content: @fa-var-heart-o; }\n.@{fa-css-prefix}-sign-out:before { content: @fa-var-sign-out; }\n.@{fa-css-prefix}-linkedin-square:before { content: @fa-var-linkedin-square; }\n.@{fa-css-prefix}-thumb-tack:before { content: @fa-var-thumb-tack; }\n.@{fa-css-prefix}-external-link:before { content: @fa-var-external-link; }\n.@{fa-css-prefix}-sign-in:before { content: @fa-var-sign-in; }\n.@{fa-css-prefix}-trophy:before { content: @fa-var-trophy; }\n.@{fa-css-prefix}-github-square:before { content: @fa-var-github-square; }\n.@{fa-css-prefix}-upload:before { content: @fa-var-upload; }\n.@{fa-css-prefix}-lemon-o:before { content: @fa-var-lemon-o; }\n.@{fa-css-prefix}-phone:before { content: @fa-var-phone; }\n.@{fa-css-prefix}-square-o:before { content: @fa-var-square-o; }\n.@{fa-css-prefix}-bookmark-o:before { content: @fa-var-bookmark-o; }\n.@{fa-css-prefix}-phone-square:before { content: @fa-var-phone-square; }\n.@{fa-css-prefix}-twitter:before { content: @fa-var-twitter; }\n.@{fa-css-prefix}-facebook-f:before,\n.@{fa-css-prefix}-facebook:before { content: @fa-var-facebook; }\n.@{fa-css-prefix}-github:before { content: @fa-var-github; }\n.@{fa-css-prefix}-unlock:before { content: @fa-var-unlock; }\n.@{fa-css-prefix}-credit-card:before { content: @fa-var-credit-card; }\n.@{fa-css-prefix}-feed:before,\n.@{fa-css-prefix}-rss:before { content: @fa-var-rss; }\n.@{fa-css-prefix}-hdd-o:before { content: @fa-var-hdd-o; }\n.@{fa-css-prefix}-bullhorn:before { content: @fa-var-bullhorn; }\n.@{fa-css-prefix}-bell:before { content: @fa-var-bell; }\n.@{fa-css-prefix}-certificate:before { content: @fa-var-certificate; }\n.@{fa-css-prefix}-hand-o-right:before { content: @fa-var-hand-o-right; }\n.@{fa-css-prefix}-hand-o-left:before { content: @fa-var-hand-o-left; }\n.@{fa-css-prefix}-hand-o-up:before { content: @fa-var-hand-o-up; }\n.@{fa-css-prefix}-hand-o-down:before { content: @fa-var-hand-o-down; }\n.@{fa-css-prefix}-arrow-circle-left:before { content: @fa-var-arrow-circle-left; }\n.@{fa-css-prefix}-arrow-circle-right:before { content: @fa-var-arrow-circle-right; }\n.@{fa-css-prefix}-arrow-circle-up:before { content: @fa-var-arrow-circle-up; }\n.@{fa-css-prefix}-arrow-circle-down:before { content: @fa-var-arrow-circle-down; }\n.@{fa-css-prefix}-globe:before { content: @fa-var-globe; }\n.@{fa-css-prefix}-wrench:before { content: @fa-var-wrench; }\n.@{fa-css-prefix}-tasks:before { content: @fa-var-tasks; }\n.@{fa-css-prefix}-filter:before { content: @fa-var-filter; }\n.@{fa-css-prefix}-briefcase:before { content: @fa-var-briefcase; }\n.@{fa-css-prefix}-arrows-alt:before { content: @fa-var-arrows-alt; }\n.@{fa-css-prefix}-group:before,\n.@{fa-css-prefix}-users:before { content: @fa-var-users; }\n.@{fa-css-prefix}-chain:before,\n.@{fa-css-prefix}-link:before { content: @fa-var-link; }\n.@{fa-css-prefix}-cloud:before { content: @fa-var-cloud; }\n.@{fa-css-prefix}-flask:before { content: @fa-var-flask; }\n.@{fa-css-prefix}-cut:before,\n.@{fa-css-prefix}-scissors:before { content: @fa-var-scissors; }\n.@{fa-css-prefix}-copy:before,\n.@{fa-css-prefix}-files-o:before { content: @fa-var-files-o; }\n.@{fa-css-prefix}-paperclip:before { content: @fa-var-paperclip; }\n.@{fa-css-prefix}-save:before,\n.@{fa-css-prefix}-floppy-o:before { content: @fa-var-floppy-o; }\n.@{fa-css-prefix}-square:before { content: @fa-var-square; }\n.@{fa-css-prefix}-navicon:before,\n.@{fa-css-prefix}-reorder:before,\n.@{fa-css-prefix}-bars:before { content: @fa-var-bars; }\n.@{fa-css-prefix}-list-ul:before { content: @fa-var-list-ul; }\n.@{fa-css-prefix}-list-ol:before { content: @fa-var-list-ol; }\n.@{fa-css-prefix}-strikethrough:before { content: @fa-var-strikethrough; }\n.@{fa-css-prefix}-underline:before { content: @fa-var-underline; }\n.@{fa-css-prefix}-table:before { content: @fa-var-table; }\n.@{fa-css-prefix}-magic:before { content: @fa-var-magic; }\n.@{fa-css-prefix}-truck:before { content: @fa-var-truck; }\n.@{fa-css-prefix}-pinterest:before { content: @fa-var-pinterest; }\n.@{fa-css-prefix}-pinterest-square:before { content: @fa-var-pinterest-square; }\n.@{fa-css-prefix}-google-plus-square:before { content: @fa-var-google-plus-square; }\n.@{fa-css-prefix}-google-plus:before { content: @fa-var-google-plus; }\n.@{fa-css-prefix}-money:before { content: @fa-var-money; }\n.@{fa-css-prefix}-caret-down:before { content: @fa-var-caret-down; }\n.@{fa-css-prefix}-caret-up:before { content: @fa-var-caret-up; }\n.@{fa-css-prefix}-caret-left:before { content: @fa-var-caret-left; }\n.@{fa-css-prefix}-caret-right:before { content: @fa-var-caret-right; }\n.@{fa-css-prefix}-columns:before { content: @fa-var-columns; }\n.@{fa-css-prefix}-unsorted:before,\n.@{fa-css-prefix}-sort:before { content: @fa-var-sort; }\n.@{fa-css-prefix}-sort-down:before,\n.@{fa-css-prefix}-sort-desc:before { content: @fa-var-sort-desc; }\n.@{fa-css-prefix}-sort-up:before,\n.@{fa-css-prefix}-sort-asc:before { content: @fa-var-sort-asc; }\n.@{fa-css-prefix}-envelope:before { content: @fa-var-envelope; }\n.@{fa-css-prefix}-linkedin:before { content: @fa-var-linkedin; }\n.@{fa-css-prefix}-rotate-left:before,\n.@{fa-css-prefix}-undo:before { content: @fa-var-undo; }\n.@{fa-css-prefix}-legal:before,\n.@{fa-css-prefix}-gavel:before { content: @fa-var-gavel; }\n.@{fa-css-prefix}-dashboard:before,\n.@{fa-css-prefix}-tachometer:before { content: @fa-var-tachometer; }\n.@{fa-css-prefix}-comment-o:before { content: @fa-var-comment-o; }\n.@{fa-css-prefix}-comments-o:before { content: @fa-var-comments-o; }\n.@{fa-css-prefix}-flash:before,\n.@{fa-css-prefix}-bolt:before { content: @fa-var-bolt; }\n.@{fa-css-prefix}-sitemap:before { content: @fa-var-sitemap; }\n.@{fa-css-prefix}-umbrella:before { content: @fa-var-umbrella; }\n.@{fa-css-prefix}-paste:before,\n.@{fa-css-prefix}-clipboard:before { content: @fa-var-clipboard; }\n.@{fa-css-prefix}-lightbulb-o:before { content: @fa-var-lightbulb-o; }\n.@{fa-css-prefix}-exchange:before { content: @fa-var-exchange; }\n.@{fa-css-prefix}-cloud-download:before { content: @fa-var-cloud-download; }\n.@{fa-css-prefix}-cloud-upload:before { content: @fa-var-cloud-upload; }\n.@{fa-css-prefix}-user-md:before { content: @fa-var-user-md; }\n.@{fa-css-prefix}-stethoscope:before { content: @fa-var-stethoscope; }\n.@{fa-css-prefix}-suitcase:before { content: @fa-var-suitcase; }\n.@{fa-css-prefix}-bell-o:before { content: @fa-var-bell-o; }\n.@{fa-css-prefix}-coffee:before { content: @fa-var-coffee; }\n.@{fa-css-prefix}-cutlery:before { content: @fa-var-cutlery; }\n.@{fa-css-prefix}-file-text-o:before { content: @fa-var-file-text-o; }\n.@{fa-css-prefix}-building-o:before { content: @fa-var-building-o; }\n.@{fa-css-prefix}-hospital-o:before { content: @fa-var-hospital-o; }\n.@{fa-css-prefix}-ambulance:before { content: @fa-var-ambulance; }\n.@{fa-css-prefix}-medkit:before { content: @fa-var-medkit; }\n.@{fa-css-prefix}-fighter-jet:before { content: @fa-var-fighter-jet; }\n.@{fa-css-prefix}-beer:before { content: @fa-var-beer; }\n.@{fa-css-prefix}-h-square:before { content: @fa-var-h-square; }\n.@{fa-css-prefix}-plus-square:before { content: @fa-var-plus-square; }\n.@{fa-css-prefix}-angle-double-left:before { content: @fa-var-angle-double-left; }\n.@{fa-css-prefix}-angle-double-right:before { content: @fa-var-angle-double-right; }\n.@{fa-css-prefix}-angle-double-up:before { content: @fa-var-angle-double-up; }\n.@{fa-css-prefix}-angle-double-down:before { content: @fa-var-angle-double-down; }\n.@{fa-css-prefix}-angle-left:before { content: @fa-var-angle-left; }\n.@{fa-css-prefix}-angle-right:before { content: @fa-var-angle-right; }\n.@{fa-css-prefix}-angle-up:before { content: @fa-var-angle-up; }\n.@{fa-css-prefix}-angle-down:before { content: @fa-var-angle-down; }\n.@{fa-css-prefix}-desktop:before { content: @fa-var-desktop; }\n.@{fa-css-prefix}-laptop:before { content: @fa-var-laptop; }\n.@{fa-css-prefix}-tablet:before { content: @fa-var-tablet; }\n.@{fa-css-prefix}-mobile-phone:before,\n.@{fa-css-prefix}-mobile:before { content: @fa-var-mobile; }\n.@{fa-css-prefix}-circle-o:before { content: @fa-var-circle-o; }\n.@{fa-css-prefix}-quote-left:before { content: @fa-var-quote-left; }\n.@{fa-css-prefix}-quote-right:before { content: @fa-var-quote-right; }\n.@{fa-css-prefix}-spinner:before { content: @fa-var-spinner; }\n.@{fa-css-prefix}-circle:before { content: @fa-var-circle; }\n.@{fa-css-prefix}-mail-reply:before,\n.@{fa-css-prefix}-reply:before { content: @fa-var-reply; }\n.@{fa-css-prefix}-github-alt:before { content: @fa-var-github-alt; }\n.@{fa-css-prefix}-folder-o:before { content: @fa-var-folder-o; }\n.@{fa-css-prefix}-folder-open-o:before { content: @fa-var-folder-open-o; }\n.@{fa-css-prefix}-smile-o:before { content: @fa-var-smile-o; }\n.@{fa-css-prefix}-frown-o:before { content: @fa-var-frown-o; }\n.@{fa-css-prefix}-meh-o:before { content: @fa-var-meh-o; }\n.@{fa-css-prefix}-gamepad:before { content: @fa-var-gamepad; }\n.@{fa-css-prefix}-keyboard-o:before { content: @fa-var-keyboard-o; }\n.@{fa-css-prefix}-flag-o:before { content: @fa-var-flag-o; }\n.@{fa-css-prefix}-flag-checkered:before { content: @fa-var-flag-checkered; }\n.@{fa-css-prefix}-terminal:before { content: @fa-var-terminal; }\n.@{fa-css-prefix}-code:before { content: @fa-var-code; }\n.@{fa-css-prefix}-mail-reply-all:before,\n.@{fa-css-prefix}-reply-all:before { content: @fa-var-reply-all; }\n.@{fa-css-prefix}-star-half-empty:before,\n.@{fa-css-prefix}-star-half-full:before,\n.@{fa-css-prefix}-star-half-o:before { content: @fa-var-star-half-o; }\n.@{fa-css-prefix}-location-arrow:before { content: @fa-var-location-arrow; }\n.@{fa-css-prefix}-crop:before { content: @fa-var-crop; }\n.@{fa-css-prefix}-code-fork:before { content: @fa-var-code-fork; }\n.@{fa-css-prefix}-unlink:before,\n.@{fa-css-prefix}-chain-broken:before { content: @fa-var-chain-broken; }\n.@{fa-css-prefix}-question:before { content: @fa-var-question; }\n.@{fa-css-prefix}-info:before { content: @fa-var-info; }\n.@{fa-css-prefix}-exclamation:before { content: @fa-var-exclamation; }\n.@{fa-css-prefix}-superscript:before { content: @fa-var-superscript; }\n.@{fa-css-prefix}-subscript:before { content: @fa-var-subscript; }\n.@{fa-css-prefix}-eraser:before { content: @fa-var-eraser; }\n.@{fa-css-prefix}-puzzle-piece:before { content: @fa-var-puzzle-piece; }\n.@{fa-css-prefix}-microphone:before { content: @fa-var-microphone; }\n.@{fa-css-prefix}-microphone-slash:before { content: @fa-var-microphone-slash; }\n.@{fa-css-prefix}-shield:before { content: @fa-var-shield; }\n.@{fa-css-prefix}-calendar-o:before { content: @fa-var-calendar-o; }\n.@{fa-css-prefix}-fire-extinguisher:before { content: @fa-var-fire-extinguisher; }\n.@{fa-css-prefix}-rocket:before { content: @fa-var-rocket; }\n.@{fa-css-prefix}-maxcdn:before { content: @fa-var-maxcdn; }\n.@{fa-css-prefix}-chevron-circle-left:before { content: @fa-var-chevron-circle-left; }\n.@{fa-css-prefix}-chevron-circle-right:before { content: @fa-var-chevron-circle-right; }\n.@{fa-css-prefix}-chevron-circle-up:before { content: @fa-var-chevron-circle-up; }\n.@{fa-css-prefix}-chevron-circle-down:before { content: @fa-var-chevron-circle-down; }\n.@{fa-css-prefix}-html5:before { content: @fa-var-html5; }\n.@{fa-css-prefix}-css3:before { content: @fa-var-css3; }\n.@{fa-css-prefix}-anchor:before { content: @fa-var-anchor; }\n.@{fa-css-prefix}-unlock-alt:before { content: @fa-var-unlock-alt; }\n.@{fa-css-prefix}-bullseye:before { content: @fa-var-bullseye; }\n.@{fa-css-prefix}-ellipsis-h:before { content: @fa-var-ellipsis-h; }\n.@{fa-css-prefix}-ellipsis-v:before { content: @fa-var-ellipsis-v; }\n.@{fa-css-prefix}-rss-square:before { content: @fa-var-rss-square; }\n.@{fa-css-prefix}-play-circle:before { content: @fa-var-play-circle; }\n.@{fa-css-prefix}-ticket:before { content: @fa-var-ticket; }\n.@{fa-css-prefix}-minus-square:before { content: @fa-var-minus-square; }\n.@{fa-css-prefix}-minus-square-o:before { content: @fa-var-minus-square-o; }\n.@{fa-css-prefix}-level-up:before { content: @fa-var-level-up; }\n.@{fa-css-prefix}-level-down:before { content: @fa-var-level-down; }\n.@{fa-css-prefix}-check-square:before { content: @fa-var-check-square; }\n.@{fa-css-prefix}-pencil-square:before { content: @fa-var-pencil-square; }\n.@{fa-css-prefix}-external-link-square:before { content: @fa-var-external-link-square; }\n.@{fa-css-prefix}-share-square:before { content: @fa-var-share-square; }\n.@{fa-css-prefix}-compass:before { content: @fa-var-compass; }\n.@{fa-css-prefix}-toggle-down:before,\n.@{fa-css-prefix}-caret-square-o-down:before { content: @fa-var-caret-square-o-down; }\n.@{fa-css-prefix}-toggle-up:before,\n.@{fa-css-prefix}-caret-square-o-up:before { content: @fa-var-caret-square-o-up; }\n.@{fa-css-prefix}-toggle-right:before,\n.@{fa-css-prefix}-caret-square-o-right:before { content: @fa-var-caret-square-o-right; }\n.@{fa-css-prefix}-euro:before,\n.@{fa-css-prefix}-eur:before { content: @fa-var-eur; }\n.@{fa-css-prefix}-gbp:before { content: @fa-var-gbp; }\n.@{fa-css-prefix}-dollar:before,\n.@{fa-css-prefix}-usd:before { content: @fa-var-usd; }\n.@{fa-css-prefix}-rupee:before,\n.@{fa-css-prefix}-inr:before { content: @fa-var-inr; }\n.@{fa-css-prefix}-cny:before,\n.@{fa-css-prefix}-rmb:before,\n.@{fa-css-prefix}-yen:before,\n.@{fa-css-prefix}-jpy:before { content: @fa-var-jpy; }\n.@{fa-css-prefix}-ruble:before,\n.@{fa-css-prefix}-rouble:before,\n.@{fa-css-prefix}-rub:before { content: @fa-var-rub; }\n.@{fa-css-prefix}-won:before,\n.@{fa-css-prefix}-krw:before { content: @fa-var-krw; }\n.@{fa-css-prefix}-bitcoin:before,\n.@{fa-css-prefix}-btc:before { content: @fa-var-btc; }\n.@{fa-css-prefix}-file:before { content: @fa-var-file; }\n.@{fa-css-prefix}-file-text:before { content: @fa-var-file-text; }\n.@{fa-css-prefix}-sort-alpha-asc:before { content: @fa-var-sort-alpha-asc; }\n.@{fa-css-prefix}-sort-alpha-desc:before { content: @fa-var-sort-alpha-desc; }\n.@{fa-css-prefix}-sort-amount-asc:before { content: @fa-var-sort-amount-asc; }\n.@{fa-css-prefix}-sort-amount-desc:before { content: @fa-var-sort-amount-desc; }\n.@{fa-css-prefix}-sort-numeric-asc:before { content: @fa-var-sort-numeric-asc; }\n.@{fa-css-prefix}-sort-numeric-desc:before { content: @fa-var-sort-numeric-desc; }\n.@{fa-css-prefix}-thumbs-up:before { content: @fa-var-thumbs-up; }\n.@{fa-css-prefix}-thumbs-down:before { content: @fa-var-thumbs-down; }\n.@{fa-css-prefix}-youtube-square:before { content: @fa-var-youtube-square; }\n.@{fa-css-prefix}-youtube:before { content: @fa-var-youtube; }\n.@{fa-css-prefix}-xing:before { content: @fa-var-xing; }\n.@{fa-css-prefix}-xing-square:before { content: @fa-var-xing-square; }\n.@{fa-css-prefix}-youtube-play:before { content: @fa-var-youtube-play; }\n.@{fa-css-prefix}-dropbox:before { content: @fa-var-dropbox; }\n.@{fa-css-prefix}-stack-overflow:before { content: @fa-var-stack-overflow; }\n.@{fa-css-prefix}-instagram:before { content: @fa-var-instagram; }\n.@{fa-css-prefix}-flickr:before { content: @fa-var-flickr; }\n.@{fa-css-prefix}-adn:before { content: @fa-var-adn; }\n.@{fa-css-prefix}-bitbucket:before { content: @fa-var-bitbucket; }\n.@{fa-css-prefix}-bitbucket-square:before { content: @fa-var-bitbucket-square; }\n.@{fa-css-prefix}-tumblr:before { content: @fa-var-tumblr; }\n.@{fa-css-prefix}-tumblr-square:before { content: @fa-var-tumblr-square; }\n.@{fa-css-prefix}-long-arrow-down:before { content: @fa-var-long-arrow-down; }\n.@{fa-css-prefix}-long-arrow-up:before { content: @fa-var-long-arrow-up; }\n.@{fa-css-prefix}-long-arrow-left:before { content: @fa-var-long-arrow-left; }\n.@{fa-css-prefix}-long-arrow-right:before { content: @fa-var-long-arrow-right; }\n.@{fa-css-prefix}-apple:before { content: @fa-var-apple; }\n.@{fa-css-prefix}-windows:before { content: @fa-var-windows; }\n.@{fa-css-prefix}-android:before { content: @fa-var-android; }\n.@{fa-css-prefix}-linux:before { content: @fa-var-linux; }\n.@{fa-css-prefix}-dribbble:before { content: @fa-var-dribbble; }\n.@{fa-css-prefix}-skype:before { content: @fa-var-skype; }\n.@{fa-css-prefix}-foursquare:before { content: @fa-var-foursquare; }\n.@{fa-css-prefix}-trello:before { content: @fa-var-trello; }\n.@{fa-css-prefix}-female:before { content: @fa-var-female; }\n.@{fa-css-prefix}-male:before { content: @fa-var-male; }\n.@{fa-css-prefix}-gittip:before,\n.@{fa-css-prefix}-gratipay:before { content: @fa-var-gratipay; }\n.@{fa-css-prefix}-sun-o:before { content: @fa-var-sun-o; }\n.@{fa-css-prefix}-moon-o:before { content: @fa-var-moon-o; }\n.@{fa-css-prefix}-archive:before { content: @fa-var-archive; }\n.@{fa-css-prefix}-bug:before { content: @fa-var-bug; }\n.@{fa-css-prefix}-vk:before { content: @fa-var-vk; }\n.@{fa-css-prefix}-weibo:before { content: @fa-var-weibo; }\n.@{fa-css-prefix}-renren:before { content: @fa-var-renren; }\n.@{fa-css-prefix}-pagelines:before { content: @fa-var-pagelines; }\n.@{fa-css-prefix}-stack-exchange:before { content: @fa-var-stack-exchange; }\n.@{fa-css-prefix}-arrow-circle-o-right:before { content: @fa-var-arrow-circle-o-right; }\n.@{fa-css-prefix}-arrow-circle-o-left:before { content: @fa-var-arrow-circle-o-left; }\n.@{fa-css-prefix}-toggle-left:before,\n.@{fa-css-prefix}-caret-square-o-left:before { content: @fa-var-caret-square-o-left; }\n.@{fa-css-prefix}-dot-circle-o:before { content: @fa-var-dot-circle-o; }\n.@{fa-css-prefix}-wheelchair:before { content: @fa-var-wheelchair; }\n.@{fa-css-prefix}-vimeo-square:before { content: @fa-var-vimeo-square; }\n.@{fa-css-prefix}-turkish-lira:before,\n.@{fa-css-prefix}-try:before { content: @fa-var-try; }\n.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; }\n.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; }\n.@{fa-css-prefix}-slack:before { content: @fa-var-slack; }\n.@{fa-css-prefix}-envelope-square:before { content: @fa-var-envelope-square; }\n.@{fa-css-prefix}-wordpress:before { content: @fa-var-wordpress; }\n.@{fa-css-prefix}-openid:before { content: @fa-var-openid; }\n.@{fa-css-prefix}-institution:before,\n.@{fa-css-prefix}-bank:before,\n.@{fa-css-prefix}-university:before { content: @fa-var-university; }\n.@{fa-css-prefix}-mortar-board:before,\n.@{fa-css-prefix}-graduation-cap:before { content: @fa-var-graduation-cap; }\n.@{fa-css-prefix}-yahoo:before { content: @fa-var-yahoo; }\n.@{fa-css-prefix}-google:before { content: @fa-var-google; }\n.@{fa-css-prefix}-reddit:before { content: @fa-var-reddit; }\n.@{fa-css-prefix}-reddit-square:before { content: @fa-var-reddit-square; }\n.@{fa-css-prefix}-stumbleupon-circle:before { content: @fa-var-stumbleupon-circle; }\n.@{fa-css-prefix}-stumbleupon:before { content: @fa-var-stumbleupon; }\n.@{fa-css-prefix}-delicious:before { content: @fa-var-delicious; }\n.@{fa-css-prefix}-digg:before { content: @fa-var-digg; }\n.@{fa-css-prefix}-pied-piper-pp:before { content: @fa-var-pied-piper-pp; }\n.@{fa-css-prefix}-pied-piper-alt:before { content: @fa-var-pied-piper-alt; }\n.@{fa-css-prefix}-drupal:before { content: @fa-var-drupal; }\n.@{fa-css-prefix}-joomla:before { content: @fa-var-joomla; }\n.@{fa-css-prefix}-language:before { content: @fa-var-language; }\n.@{fa-css-prefix}-fax:before { content: @fa-var-fax; }\n.@{fa-css-prefix}-building:before { content: @fa-var-building; }\n.@{fa-css-prefix}-child:before { content: @fa-var-child; }\n.@{fa-css-prefix}-paw:before { content: @fa-var-paw; }\n.@{fa-css-prefix}-spoon:before { content: @fa-var-spoon; }\n.@{fa-css-prefix}-cube:before { content: @fa-var-cube; }\n.@{fa-css-prefix}-cubes:before { content: @fa-var-cubes; }\n.@{fa-css-prefix}-behance:before { content: @fa-var-behance; }\n.@{fa-css-prefix}-behance-square:before { content: @fa-var-behance-square; }\n.@{fa-css-prefix}-steam:before { content: @fa-var-steam; }\n.@{fa-css-prefix}-steam-square:before { content: @fa-var-steam-square; }\n.@{fa-css-prefix}-recycle:before { content: @fa-var-recycle; }\n.@{fa-css-prefix}-automobile:before,\n.@{fa-css-prefix}-car:before { content: @fa-var-car; }\n.@{fa-css-prefix}-cab:before,\n.@{fa-css-prefix}-taxi:before { content: @fa-var-taxi; }\n.@{fa-css-prefix}-tree:before { content: @fa-var-tree; }\n.@{fa-css-prefix}-spotify:before { content: @fa-var-spotify; }\n.@{fa-css-prefix}-deviantart:before { content: @fa-var-deviantart; }\n.@{fa-css-prefix}-soundcloud:before { content: @fa-var-soundcloud; }\n.@{fa-css-prefix}-database:before { content: @fa-var-database; }\n.@{fa-css-prefix}-file-pdf-o:before { content: @fa-var-file-pdf-o; }\n.@{fa-css-prefix}-file-word-o:before { content: @fa-var-file-word-o; }\n.@{fa-css-prefix}-file-excel-o:before { content: @fa-var-file-excel-o; }\n.@{fa-css-prefix}-file-powerpoint-o:before { content: @fa-var-file-powerpoint-o; }\n.@{fa-css-prefix}-file-photo-o:before,\n.@{fa-css-prefix}-file-picture-o:before,\n.@{fa-css-prefix}-file-image-o:before { content: @fa-var-file-image-o; }\n.@{fa-css-prefix}-file-zip-o:before,\n.@{fa-css-prefix}-file-archive-o:before { content: @fa-var-file-archive-o; }\n.@{fa-css-prefix}-file-sound-o:before,\n.@{fa-css-prefix}-file-audio-o:before { content: @fa-var-file-audio-o; }\n.@{fa-css-prefix}-file-movie-o:before,\n.@{fa-css-prefix}-file-video-o:before { content: @fa-var-file-video-o; }\n.@{fa-css-prefix}-file-code-o:before { content: @fa-var-file-code-o; }\n.@{fa-css-prefix}-vine:before { content: @fa-var-vine; }\n.@{fa-css-prefix}-codepen:before { content: @fa-var-codepen; }\n.@{fa-css-prefix}-jsfiddle:before { content: @fa-var-jsfiddle; }\n.@{fa-css-prefix}-life-bouy:before,\n.@{fa-css-prefix}-life-buoy:before,\n.@{fa-css-prefix}-life-saver:before,\n.@{fa-css-prefix}-support:before,\n.@{fa-css-prefix}-life-ring:before { content: @fa-var-life-ring; }\n.@{fa-css-prefix}-circle-o-notch:before { content: @fa-var-circle-o-notch; }\n.@{fa-css-prefix}-ra:before,\n.@{fa-css-prefix}-resistance:before,\n.@{fa-css-prefix}-rebel:before { content: @fa-var-rebel; }\n.@{fa-css-prefix}-ge:before,\n.@{fa-css-prefix}-empire:before { content: @fa-var-empire; }\n.@{fa-css-prefix}-git-square:before { content: @fa-var-git-square; }\n.@{fa-css-prefix}-git:before { content: @fa-var-git; }\n.@{fa-css-prefix}-y-combinator-square:before,\n.@{fa-css-prefix}-yc-square:before,\n.@{fa-css-prefix}-hacker-news:before { content: @fa-var-hacker-news; }\n.@{fa-css-prefix}-tencent-weibo:before { content: @fa-var-tencent-weibo; }\n.@{fa-css-prefix}-qq:before { content: @fa-var-qq; }\n.@{fa-css-prefix}-wechat:before,\n.@{fa-css-prefix}-weixin:before { content: @fa-var-weixin; }\n.@{fa-css-prefix}-send:before,\n.@{fa-css-prefix}-paper-plane:before { content: @fa-var-paper-plane; }\n.@{fa-css-prefix}-send-o:before,\n.@{fa-css-prefix}-paper-plane-o:before { content: @fa-var-paper-plane-o; }\n.@{fa-css-prefix}-history:before { content: @fa-var-history; }\n.@{fa-css-prefix}-circle-thin:before { content: @fa-var-circle-thin; }\n.@{fa-css-prefix}-header:before { content: @fa-var-header; }\n.@{fa-css-prefix}-paragraph:before { content: @fa-var-paragraph; }\n.@{fa-css-prefix}-sliders:before { content: @fa-var-sliders; }\n.@{fa-css-prefix}-share-alt:before { content: @fa-var-share-alt; }\n.@{fa-css-prefix}-share-alt-square:before { content: @fa-var-share-alt-square; }\n.@{fa-css-prefix}-bomb:before { content: @fa-var-bomb; }\n.@{fa-css-prefix}-soccer-ball-o:before,\n.@{fa-css-prefix}-futbol-o:before { content: @fa-var-futbol-o; }\n.@{fa-css-prefix}-tty:before { content: @fa-var-tty; }\n.@{fa-css-prefix}-binoculars:before { content: @fa-var-binoculars; }\n.@{fa-css-prefix}-plug:before { content: @fa-var-plug; }\n.@{fa-css-prefix}-slideshare:before { content: @fa-var-slideshare; }\n.@{fa-css-prefix}-twitch:before { content: @fa-var-twitch; }\n.@{fa-css-prefix}-yelp:before { content: @fa-var-yelp; }\n.@{fa-css-prefix}-newspaper-o:before { content: @fa-var-newspaper-o; }\n.@{fa-css-prefix}-wifi:before { content: @fa-var-wifi; }\n.@{fa-css-prefix}-calculator:before { content: @fa-var-calculator; }\n.@{fa-css-prefix}-paypal:before { content: @fa-var-paypal; }\n.@{fa-css-prefix}-google-wallet:before { content: @fa-var-google-wallet; }\n.@{fa-css-prefix}-cc-visa:before { content: @fa-var-cc-visa; }\n.@{fa-css-prefix}-cc-mastercard:before { content: @fa-var-cc-mastercard; }\n.@{fa-css-prefix}-cc-discover:before { content: @fa-var-cc-discover; }\n.@{fa-css-prefix}-cc-amex:before { content: @fa-var-cc-amex; }\n.@{fa-css-prefix}-cc-paypal:before { content: @fa-var-cc-paypal; }\n.@{fa-css-prefix}-cc-stripe:before { content: @fa-var-cc-stripe; }\n.@{fa-css-prefix}-bell-slash:before { content: @fa-var-bell-slash; }\n.@{fa-css-prefix}-bell-slash-o:before { content: @fa-var-bell-slash-o; }\n.@{fa-css-prefix}-trash:before { content: @fa-var-trash; }\n.@{fa-css-prefix}-copyright:before { content: @fa-var-copyright; }\n.@{fa-css-prefix}-at:before { content: @fa-var-at; }\n.@{fa-css-prefix}-eyedropper:before { content: @fa-var-eyedropper; }\n.@{fa-css-prefix}-paint-brush:before { content: @fa-var-paint-brush; }\n.@{fa-css-prefix}-birthday-cake:before { content: @fa-var-birthday-cake; }\n.@{fa-css-prefix}-area-chart:before { content: @fa-var-area-chart; }\n.@{fa-css-prefix}-pie-chart:before { content: @fa-var-pie-chart; }\n.@{fa-css-prefix}-line-chart:before { content: @fa-var-line-chart; }\n.@{fa-css-prefix}-lastfm:before { content: @fa-var-lastfm; }\n.@{fa-css-prefix}-lastfm-square:before { content: @fa-var-lastfm-square; }\n.@{fa-css-prefix}-toggle-off:before { content: @fa-var-toggle-off; }\n.@{fa-css-prefix}-toggle-on:before { content: @fa-var-toggle-on; }\n.@{fa-css-prefix}-bicycle:before { content: @fa-var-bicycle; }\n.@{fa-css-prefix}-bus:before { content: @fa-var-bus; }\n.@{fa-css-prefix}-ioxhost:before { content: @fa-var-ioxhost; }\n.@{fa-css-prefix}-angellist:before { content: @fa-var-angellist; }\n.@{fa-css-prefix}-cc:before { content: @fa-var-cc; }\n.@{fa-css-prefix}-shekel:before,\n.@{fa-css-prefix}-sheqel:before,\n.@{fa-css-prefix}-ils:before { content: @fa-var-ils; }\n.@{fa-css-prefix}-meanpath:before { content: @fa-var-meanpath; }\n.@{fa-css-prefix}-buysellads:before { content: @fa-var-buysellads; }\n.@{fa-css-prefix}-connectdevelop:before { content: @fa-var-connectdevelop; }\n.@{fa-css-prefix}-dashcube:before { content: @fa-var-dashcube; }\n.@{fa-css-prefix}-forumbee:before { content: @fa-var-forumbee; }\n.@{fa-css-prefix}-leanpub:before { content: @fa-var-leanpub; }\n.@{fa-css-prefix}-sellsy:before { content: @fa-var-sellsy; }\n.@{fa-css-prefix}-shirtsinbulk:before { content: @fa-var-shirtsinbulk; }\n.@{fa-css-prefix}-simplybuilt:before { content: @fa-var-simplybuilt; }\n.@{fa-css-prefix}-skyatlas:before { content: @fa-var-skyatlas; }\n.@{fa-css-prefix}-cart-plus:before { content: @fa-var-cart-plus; }\n.@{fa-css-prefix}-cart-arrow-down:before { content: @fa-var-cart-arrow-down; }\n.@{fa-css-prefix}-diamond:before { content: @fa-var-diamond; }\n.@{fa-css-prefix}-ship:before { content: @fa-var-ship; }\n.@{fa-css-prefix}-user-secret:before { content: @fa-var-user-secret; }\n.@{fa-css-prefix}-motorcycle:before { content: @fa-var-motorcycle; }\n.@{fa-css-prefix}-street-view:before { content: @fa-var-street-view; }\n.@{fa-css-prefix}-heartbeat:before { content: @fa-var-heartbeat; }\n.@{fa-css-prefix}-venus:before { content: @fa-var-venus; }\n.@{fa-css-prefix}-mars:before { content: @fa-var-mars; }\n.@{fa-css-prefix}-mercury:before { content: @fa-var-mercury; }\n.@{fa-css-prefix}-intersex:before,\n.@{fa-css-prefix}-transgender:before { content: @fa-var-transgender; }\n.@{fa-css-prefix}-transgender-alt:before { content: @fa-var-transgender-alt; }\n.@{fa-css-prefix}-venus-double:before { content: @fa-var-venus-double; }\n.@{fa-css-prefix}-mars-double:before { content: @fa-var-mars-double; }\n.@{fa-css-prefix}-venus-mars:before { content: @fa-var-venus-mars; }\n.@{fa-css-prefix}-mars-stroke:before { content: @fa-var-mars-stroke; }\n.@{fa-css-prefix}-mars-stroke-v:before { content: @fa-var-mars-stroke-v; }\n.@{fa-css-prefix}-mars-stroke-h:before { content: @fa-var-mars-stroke-h; }\n.@{fa-css-prefix}-neuter:before { content: @fa-var-neuter; }\n.@{fa-css-prefix}-genderless:before { content: @fa-var-genderless; }\n.@{fa-css-prefix}-facebook-official:before { content: @fa-var-facebook-official; }\n.@{fa-css-prefix}-pinterest-p:before { content: @fa-var-pinterest-p; }\n.@{fa-css-prefix}-whatsapp:before { content: @fa-var-whatsapp; }\n.@{fa-css-prefix}-server:before { content: @fa-var-server; }\n.@{fa-css-prefix}-user-plus:before { content: @fa-var-user-plus; }\n.@{fa-css-prefix}-user-times:before { content: @fa-var-user-times; }\n.@{fa-css-prefix}-hotel:before,\n.@{fa-css-prefix}-bed:before { content: @fa-var-bed; }\n.@{fa-css-prefix}-viacoin:before { content: @fa-var-viacoin; }\n.@{fa-css-prefix}-train:before { content: @fa-var-train; }\n.@{fa-css-prefix}-subway:before { content: @fa-var-subway; }\n.@{fa-css-prefix}-medium:before { content: @fa-var-medium; }\n.@{fa-css-prefix}-yc:before,\n.@{fa-css-prefix}-y-combinator:before { content: @fa-var-y-combinator; }\n.@{fa-css-prefix}-optin-monster:before { content: @fa-var-optin-monster; }\n.@{fa-css-prefix}-opencart:before { content: @fa-var-opencart; }\n.@{fa-css-prefix}-expeditedssl:before { content: @fa-var-expeditedssl; }\n.@{fa-css-prefix}-battery-4:before,\n.@{fa-css-prefix}-battery:before,\n.@{fa-css-prefix}-battery-full:before { content: @fa-var-battery-full; }\n.@{fa-css-prefix}-battery-3:before,\n.@{fa-css-prefix}-battery-three-quarters:before { content: @fa-var-battery-three-quarters; }\n.@{fa-css-prefix}-battery-2:before,\n.@{fa-css-prefix}-battery-half:before { content: @fa-var-battery-half; }\n.@{fa-css-prefix}-battery-1:before,\n.@{fa-css-prefix}-battery-quarter:before { content: @fa-var-battery-quarter; }\n.@{fa-css-prefix}-battery-0:before,\n.@{fa-css-prefix}-battery-empty:before { content: @fa-var-battery-empty; }\n.@{fa-css-prefix}-mouse-pointer:before { content: @fa-var-mouse-pointer; }\n.@{fa-css-prefix}-i-cursor:before { content: @fa-var-i-cursor; }\n.@{fa-css-prefix}-object-group:before { content: @fa-var-object-group; }\n.@{fa-css-prefix}-object-ungroup:before { content: @fa-var-object-ungroup; }\n.@{fa-css-prefix}-sticky-note:before { content: @fa-var-sticky-note; }\n.@{fa-css-prefix}-sticky-note-o:before { content: @fa-var-sticky-note-o; }\n.@{fa-css-prefix}-cc-jcb:before { content: @fa-var-cc-jcb; }\n.@{fa-css-prefix}-cc-diners-club:before { content: @fa-var-cc-diners-club; }\n.@{fa-css-prefix}-clone:before { content: @fa-var-clone; }\n.@{fa-css-prefix}-balance-scale:before { content: @fa-var-balance-scale; }\n.@{fa-css-prefix}-hourglass-o:before { content: @fa-var-hourglass-o; }\n.@{fa-css-prefix}-hourglass-1:before,\n.@{fa-css-prefix}-hourglass-start:before { content: @fa-var-hourglass-start; }\n.@{fa-css-prefix}-hourglass-2:before,\n.@{fa-css-prefix}-hourglass-half:before { content: @fa-var-hourglass-half; }\n.@{fa-css-prefix}-hourglass-3:before,\n.@{fa-css-prefix}-hourglass-end:before { content: @fa-var-hourglass-end; }\n.@{fa-css-prefix}-hourglass:before { content: @fa-var-hourglass; }\n.@{fa-css-prefix}-hand-grab-o:before,\n.@{fa-css-prefix}-hand-rock-o:before { content: @fa-var-hand-rock-o; }\n.@{fa-css-prefix}-hand-stop-o:before,\n.@{fa-css-prefix}-hand-paper-o:before { content: @fa-var-hand-paper-o; }\n.@{fa-css-prefix}-hand-scissors-o:before { content: @fa-var-hand-scissors-o; }\n.@{fa-css-prefix}-hand-lizard-o:before { content: @fa-var-hand-lizard-o; }\n.@{fa-css-prefix}-hand-spock-o:before { content: @fa-var-hand-spock-o; }\n.@{fa-css-prefix}-hand-pointer-o:before { content: @fa-var-hand-pointer-o; }\n.@{fa-css-prefix}-hand-peace-o:before { content: @fa-var-hand-peace-o; }\n.@{fa-css-prefix}-trademark:before { content: @fa-var-trademark; }\n.@{fa-css-prefix}-registered:before { content: @fa-var-registered; }\n.@{fa-css-prefix}-creative-commons:before { content: @fa-var-creative-commons; }\n.@{fa-css-prefix}-gg:before { content: @fa-var-gg; }\n.@{fa-css-prefix}-gg-circle:before { content: @fa-var-gg-circle; }\n.@{fa-css-prefix}-tripadvisor:before { content: @fa-var-tripadvisor; }\n.@{fa-css-prefix}-odnoklassniki:before { content: @fa-var-odnoklassniki; }\n.@{fa-css-prefix}-odnoklassniki-square:before { content: @fa-var-odnoklassniki-square; }\n.@{fa-css-prefix}-get-pocket:before { content: @fa-var-get-pocket; }\n.@{fa-css-prefix}-wikipedia-w:before { content: @fa-var-wikipedia-w; }\n.@{fa-css-prefix}-safari:before { content: @fa-var-safari; }\n.@{fa-css-prefix}-chrome:before { content: @fa-var-chrome; }\n.@{fa-css-prefix}-firefox:before { content: @fa-var-firefox; }\n.@{fa-css-prefix}-opera:before { content: @fa-var-opera; }\n.@{fa-css-prefix}-internet-explorer:before { content: @fa-var-internet-explorer; }\n.@{fa-css-prefix}-tv:before,\n.@{fa-css-prefix}-television:before { content: @fa-var-television; }\n.@{fa-css-prefix}-contao:before { content: @fa-var-contao; }\n.@{fa-css-prefix}-500px:before { content: @fa-var-500px; }\n.@{fa-css-prefix}-amazon:before { content: @fa-var-amazon; }\n.@{fa-css-prefix}-calendar-plus-o:before { content: @fa-var-calendar-plus-o; }\n.@{fa-css-prefix}-calendar-minus-o:before { content: @fa-var-calendar-minus-o; }\n.@{fa-css-prefix}-calendar-times-o:before { content: @fa-var-calendar-times-o; }\n.@{fa-css-prefix}-calendar-check-o:before { content: @fa-var-calendar-check-o; }\n.@{fa-css-prefix}-industry:before { content: @fa-var-industry; }\n.@{fa-css-prefix}-map-pin:before { content: @fa-var-map-pin; }\n.@{fa-css-prefix}-map-signs:before { content: @fa-var-map-signs; }\n.@{fa-css-prefix}-map-o:before { content: @fa-var-map-o; }\n.@{fa-css-prefix}-map:before { content: @fa-var-map; }\n.@{fa-css-prefix}-commenting:before { content: @fa-var-commenting; }\n.@{fa-css-prefix}-commenting-o:before { content: @fa-var-commenting-o; }\n.@{fa-css-prefix}-houzz:before { content: @fa-var-houzz; }\n.@{fa-css-prefix}-vimeo:before { content: @fa-var-vimeo; }\n.@{fa-css-prefix}-black-tie:before { content: @fa-var-black-tie; }\n.@{fa-css-prefix}-fonticons:before { content: @fa-var-fonticons; }\n.@{fa-css-prefix}-reddit-alien:before { content: @fa-var-reddit-alien; }\n.@{fa-css-prefix}-edge:before { content: @fa-var-edge; }\n.@{fa-css-prefix}-credit-card-alt:before { content: @fa-var-credit-card-alt; }\n.@{fa-css-prefix}-codiepie:before { content: @fa-var-codiepie; }\n.@{fa-css-prefix}-modx:before { content: @fa-var-modx; }\n.@{fa-css-prefix}-fort-awesome:before { content: @fa-var-fort-awesome; }\n.@{fa-css-prefix}-usb:before { content: @fa-var-usb; }\n.@{fa-css-prefix}-product-hunt:before { content: @fa-var-product-hunt; }\n.@{fa-css-prefix}-mixcloud:before { content: @fa-var-mixcloud; }\n.@{fa-css-prefix}-scribd:before { content: @fa-var-scribd; }\n.@{fa-css-prefix}-pause-circle:before { content: @fa-var-pause-circle; }\n.@{fa-css-prefix}-pause-circle-o:before { content: @fa-var-pause-circle-o; }\n.@{fa-css-prefix}-stop-circle:before { content: @fa-var-stop-circle; }\n.@{fa-css-prefix}-stop-circle-o:before { content: @fa-var-stop-circle-o; }\n.@{fa-css-prefix}-shopping-bag:before { content: @fa-var-shopping-bag; }\n.@{fa-css-prefix}-shopping-basket:before { content: @fa-var-shopping-basket; }\n.@{fa-css-prefix}-hashtag:before { content: @fa-var-hashtag; }\n.@{fa-css-prefix}-bluetooth:before { content: @fa-var-bluetooth; }\n.@{fa-css-prefix}-bluetooth-b:before { content: @fa-var-bluetooth-b; }\n.@{fa-css-prefix}-percent:before { content: @fa-var-percent; }\n.@{fa-css-prefix}-gitlab:before { content: @fa-var-gitlab; }\n.@{fa-css-prefix}-wpbeginner:before { content: @fa-var-wpbeginner; }\n.@{fa-css-prefix}-wpforms:before { content: @fa-var-wpforms; }\n.@{fa-css-prefix}-envira:before { content: @fa-var-envira; }\n.@{fa-css-prefix}-universal-access:before { content: @fa-var-universal-access; }\n.@{fa-css-prefix}-wheelchair-alt:before { content: @fa-var-wheelchair-alt; }\n.@{fa-css-prefix}-question-circle-o:before { content: @fa-var-question-circle-o; }\n.@{fa-css-prefix}-blind:before { content: @fa-var-blind; }\n.@{fa-css-prefix}-audio-description:before { content: @fa-var-audio-description; }\n.@{fa-css-prefix}-volume-control-phone:before { content: @fa-var-volume-control-phone; }\n.@{fa-css-prefix}-braille:before { content: @fa-var-braille; }\n.@{fa-css-prefix}-assistive-listening-systems:before { content: @fa-var-assistive-listening-systems; }\n.@{fa-css-prefix}-asl-interpreting:before,\n.@{fa-css-prefix}-american-sign-language-interpreting:before { content: @fa-var-american-sign-language-interpreting; }\n.@{fa-css-prefix}-deafness:before,\n.@{fa-css-prefix}-hard-of-hearing:before,\n.@{fa-css-prefix}-deaf:before { content: @fa-var-deaf; }\n.@{fa-css-prefix}-glide:before { content: @fa-var-glide; }\n.@{fa-css-prefix}-glide-g:before { content: @fa-var-glide-g; }\n.@{fa-css-prefix}-signing:before,\n.@{fa-css-prefix}-sign-language:before { content: @fa-var-sign-language; }\n.@{fa-css-prefix}-low-vision:before { content: @fa-var-low-vision; }\n.@{fa-css-prefix}-viadeo:before { content: @fa-var-viadeo; }\n.@{fa-css-prefix}-viadeo-square:before { content: @fa-var-viadeo-square; }\n.@{fa-css-prefix}-snapchat:before { content: @fa-var-snapchat; }\n.@{fa-css-prefix}-snapchat-ghost:before { content: @fa-var-snapchat-ghost; }\n.@{fa-css-prefix}-snapchat-square:before { content: @fa-var-snapchat-square; }\n.@{fa-css-prefix}-pied-piper:before { content: @fa-var-pied-piper; }\n.@{fa-css-prefix}-first-order:before { content: @fa-var-first-order; }\n.@{fa-css-prefix}-yoast:before { content: @fa-var-yoast; }\n.@{fa-css-prefix}-themeisle:before { content: @fa-var-themeisle; }\n.@{fa-css-prefix}-google-plus-circle:before,\n.@{fa-css-prefix}-google-plus-official:before { content: @fa-var-google-plus-official; }\n.@{fa-css-prefix}-fa:before,\n.@{fa-css-prefix}-font-awesome:before { content: @fa-var-font-awesome; }\n.@{fa-css-prefix}-handshake-o:before { content: @fa-var-handshake-o; }\n.@{fa-css-prefix}-envelope-open:before { content: @fa-var-envelope-open; }\n.@{fa-css-prefix}-envelope-open-o:before { content: @fa-var-envelope-open-o; }\n.@{fa-css-prefix}-linode:before { content: @fa-var-linode; }\n.@{fa-css-prefix}-address-book:before { content: @fa-var-address-book; }\n.@{fa-css-prefix}-address-book-o:before { content: @fa-var-address-book-o; }\n.@{fa-css-prefix}-vcard:before,\n.@{fa-css-prefix}-address-card:before { content: @fa-var-address-card; }\n.@{fa-css-prefix}-vcard-o:before,\n.@{fa-css-prefix}-address-card-o:before { content: @fa-var-address-card-o; }\n.@{fa-css-prefix}-user-circle:before { content: @fa-var-user-circle; }\n.@{fa-css-prefix}-user-circle-o:before { content: @fa-var-user-circle-o; }\n.@{fa-css-prefix}-user-o:before { content: @fa-var-user-o; }\n.@{fa-css-prefix}-id-badge:before { content: @fa-var-id-badge; }\n.@{fa-css-prefix}-drivers-license:before,\n.@{fa-css-prefix}-id-card:before { content: @fa-var-id-card; }\n.@{fa-css-prefix}-drivers-license-o:before,\n.@{fa-css-prefix}-id-card-o:before { content: @fa-var-id-card-o; }\n.@{fa-css-prefix}-quora:before { content: @fa-var-quora; }\n.@{fa-css-prefix}-free-code-camp:before { content: @fa-var-free-code-camp; }\n.@{fa-css-prefix}-telegram:before { content: @fa-var-telegram; }\n.@{fa-css-prefix}-thermometer-4:before,\n.@{fa-css-prefix}-thermometer:before,\n.@{fa-css-prefix}-thermometer-full:before { content: @fa-var-thermometer-full; }\n.@{fa-css-prefix}-thermometer-3:before,\n.@{fa-css-prefix}-thermometer-three-quarters:before { content: @fa-var-thermometer-three-quarters; }\n.@{fa-css-prefix}-thermometer-2:before,\n.@{fa-css-prefix}-thermometer-half:before { content: @fa-var-thermometer-half; }\n.@{fa-css-prefix}-thermometer-1:before,\n.@{fa-css-prefix}-thermometer-quarter:before { content: @fa-var-thermometer-quarter; }\n.@{fa-css-prefix}-thermometer-0:before,\n.@{fa-css-prefix}-thermometer-empty:before { content: @fa-var-thermometer-empty; }\n.@{fa-css-prefix}-shower:before { content: @fa-var-shower; }\n.@{fa-css-prefix}-bathtub:before,\n.@{fa-css-prefix}-s15:before,\n.@{fa-css-prefix}-bath:before { content: @fa-var-bath; }\n.@{fa-css-prefix}-podcast:before { content: @fa-var-podcast; }\n.@{fa-css-prefix}-window-maximize:before { content: @fa-var-window-maximize; }\n.@{fa-css-prefix}-window-minimize:before { content: @fa-var-window-minimize; }\n.@{fa-css-prefix}-window-restore:before { content: @fa-var-window-restore; }\n.@{fa-css-prefix}-times-rectangle:before,\n.@{fa-css-prefix}-window-close:before { content: @fa-var-window-close; }\n.@{fa-css-prefix}-times-rectangle-o:before,\n.@{fa-css-prefix}-window-close-o:before { content: @fa-var-window-close-o; }\n.@{fa-css-prefix}-bandcamp:before { content: @fa-var-bandcamp; }\n.@{fa-css-prefix}-grav:before { content: @fa-var-grav; }\n.@{fa-css-prefix}-etsy:before { content: @fa-var-etsy; }\n.@{fa-css-prefix}-imdb:before { content: @fa-var-imdb; }\n.@{fa-css-prefix}-ravelry:before { content: @fa-var-ravelry; }\n.@{fa-css-prefix}-eercast:before { content: @fa-var-eercast; }\n.@{fa-css-prefix}-microchip:before { content: @fa-var-microchip; }\n.@{fa-css-prefix}-snowflake-o:before { content: @fa-var-snowflake-o; }\n.@{fa-css-prefix}-superpowers:before { content: @fa-var-superpowers; }\n.@{fa-css-prefix}-wpexplorer:before { content: @fa-var-wpexplorer; }\n.@{fa-css-prefix}-meetup:before { content: @fa-var-meetup; }\n","// Variables\n// --------------------------\n\n@fa-font-path:        \"../fonts\";\n@fa-font-size-base:   14px;\n@fa-line-height-base: 1;\n//@fa-font-path:        \"//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts\"; // for referencing Bootstrap CDN font files directly\n@fa-css-prefix:       fa;\n@fa-version:          \"4.7.0\";\n@fa-border-color:     #eee;\n@fa-inverse:          #fff;\n@fa-li-width:         (30em / 14);\n\n@fa-var-500px: \"\\f26e\";\n@fa-var-address-book: \"\\f2b9\";\n@fa-var-address-book-o: \"\\f2ba\";\n@fa-var-address-card: \"\\f2bb\";\n@fa-var-address-card-o: \"\\f2bc\";\n@fa-var-adjust: \"\\f042\";\n@fa-var-adn: \"\\f170\";\n@fa-var-align-center: \"\\f037\";\n@fa-var-align-justify: \"\\f039\";\n@fa-var-align-left: \"\\f036\";\n@fa-var-align-right: \"\\f038\";\n@fa-var-amazon: \"\\f270\";\n@fa-var-ambulance: \"\\f0f9\";\n@fa-var-american-sign-language-interpreting: \"\\f2a3\";\n@fa-var-anchor: \"\\f13d\";\n@fa-var-android: \"\\f17b\";\n@fa-var-angellist: \"\\f209\";\n@fa-var-angle-double-down: \"\\f103\";\n@fa-var-angle-double-left: \"\\f100\";\n@fa-var-angle-double-right: \"\\f101\";\n@fa-var-angle-double-up: \"\\f102\";\n@fa-var-angle-down: \"\\f107\";\n@fa-var-angle-left: \"\\f104\";\n@fa-var-angle-right: \"\\f105\";\n@fa-var-angle-up: \"\\f106\";\n@fa-var-apple: \"\\f179\";\n@fa-var-archive: \"\\f187\";\n@fa-var-area-chart: \"\\f1fe\";\n@fa-var-arrow-circle-down: \"\\f0ab\";\n@fa-var-arrow-circle-left: \"\\f0a8\";\n@fa-var-arrow-circle-o-down: \"\\f01a\";\n@fa-var-arrow-circle-o-left: \"\\f190\";\n@fa-var-arrow-circle-o-right: \"\\f18e\";\n@fa-var-arrow-circle-o-up: \"\\f01b\";\n@fa-var-arrow-circle-right: \"\\f0a9\";\n@fa-var-arrow-circle-up: \"\\f0aa\";\n@fa-var-arrow-down: \"\\f063\";\n@fa-var-arrow-left: \"\\f060\";\n@fa-var-arrow-right: \"\\f061\";\n@fa-var-arrow-up: \"\\f062\";\n@fa-var-arrows: \"\\f047\";\n@fa-var-arrows-alt: \"\\f0b2\";\n@fa-var-arrows-h: \"\\f07e\";\n@fa-var-arrows-v: \"\\f07d\";\n@fa-var-asl-interpreting: \"\\f2a3\";\n@fa-var-assistive-listening-systems: \"\\f2a2\";\n@fa-var-asterisk: \"\\f069\";\n@fa-var-at: \"\\f1fa\";\n@fa-var-audio-description: \"\\f29e\";\n@fa-var-automobile: \"\\f1b9\";\n@fa-var-backward: \"\\f04a\";\n@fa-var-balance-scale: \"\\f24e\";\n@fa-var-ban: \"\\f05e\";\n@fa-var-bandcamp: \"\\f2d5\";\n@fa-var-bank: \"\\f19c\";\n@fa-var-bar-chart: \"\\f080\";\n@fa-var-bar-chart-o: \"\\f080\";\n@fa-var-barcode: \"\\f02a\";\n@fa-var-bars: \"\\f0c9\";\n@fa-var-bath: \"\\f2cd\";\n@fa-var-bathtub: \"\\f2cd\";\n@fa-var-battery: \"\\f240\";\n@fa-var-battery-0: \"\\f244\";\n@fa-var-battery-1: \"\\f243\";\n@fa-var-battery-2: \"\\f242\";\n@fa-var-battery-3: \"\\f241\";\n@fa-var-battery-4: \"\\f240\";\n@fa-var-battery-empty: \"\\f244\";\n@fa-var-battery-full: \"\\f240\";\n@fa-var-battery-half: \"\\f242\";\n@fa-var-battery-quarter: \"\\f243\";\n@fa-var-battery-three-quarters: \"\\f241\";\n@fa-var-bed: \"\\f236\";\n@fa-var-beer: \"\\f0fc\";\n@fa-var-behance: \"\\f1b4\";\n@fa-var-behance-square: \"\\f1b5\";\n@fa-var-bell: \"\\f0f3\";\n@fa-var-bell-o: \"\\f0a2\";\n@fa-var-bell-slash: \"\\f1f6\";\n@fa-var-bell-slash-o: \"\\f1f7\";\n@fa-var-bicycle: \"\\f206\";\n@fa-var-binoculars: \"\\f1e5\";\n@fa-var-birthday-cake: \"\\f1fd\";\n@fa-var-bitbucket: \"\\f171\";\n@fa-var-bitbucket-square: \"\\f172\";\n@fa-var-bitcoin: \"\\f15a\";\n@fa-var-black-tie: \"\\f27e\";\n@fa-var-blind: \"\\f29d\";\n@fa-var-bluetooth: \"\\f293\";\n@fa-var-bluetooth-b: \"\\f294\";\n@fa-var-bold: \"\\f032\";\n@fa-var-bolt: \"\\f0e7\";\n@fa-var-bomb: \"\\f1e2\";\n@fa-var-book: \"\\f02d\";\n@fa-var-bookmark: \"\\f02e\";\n@fa-var-bookmark-o: \"\\f097\";\n@fa-var-braille: \"\\f2a1\";\n@fa-var-briefcase: \"\\f0b1\";\n@fa-var-btc: \"\\f15a\";\n@fa-var-bug: \"\\f188\";\n@fa-var-building: \"\\f1ad\";\n@fa-var-building-o: \"\\f0f7\";\n@fa-var-bullhorn: \"\\f0a1\";\n@fa-var-bullseye: \"\\f140\";\n@fa-var-bus: \"\\f207\";\n@fa-var-buysellads: \"\\f20d\";\n@fa-var-cab: \"\\f1ba\";\n@fa-var-calculator: \"\\f1ec\";\n@fa-var-calendar: \"\\f073\";\n@fa-var-calendar-check-o: \"\\f274\";\n@fa-var-calendar-minus-o: \"\\f272\";\n@fa-var-calendar-o: \"\\f133\";\n@fa-var-calendar-plus-o: \"\\f271\";\n@fa-var-calendar-times-o: \"\\f273\";\n@fa-var-camera: \"\\f030\";\n@fa-var-camera-retro: \"\\f083\";\n@fa-var-car: \"\\f1b9\";\n@fa-var-caret-down: \"\\f0d7\";\n@fa-var-caret-left: \"\\f0d9\";\n@fa-var-caret-right: \"\\f0da\";\n@fa-var-caret-square-o-down: \"\\f150\";\n@fa-var-caret-square-o-left: \"\\f191\";\n@fa-var-caret-square-o-right: \"\\f152\";\n@fa-var-caret-square-o-up: \"\\f151\";\n@fa-var-caret-up: \"\\f0d8\";\n@fa-var-cart-arrow-down: \"\\f218\";\n@fa-var-cart-plus: \"\\f217\";\n@fa-var-cc: \"\\f20a\";\n@fa-var-cc-amex: \"\\f1f3\";\n@fa-var-cc-diners-club: \"\\f24c\";\n@fa-var-cc-discover: \"\\f1f2\";\n@fa-var-cc-jcb: \"\\f24b\";\n@fa-var-cc-mastercard: \"\\f1f1\";\n@fa-var-cc-paypal: \"\\f1f4\";\n@fa-var-cc-stripe: \"\\f1f5\";\n@fa-var-cc-visa: \"\\f1f0\";\n@fa-var-certificate: \"\\f0a3\";\n@fa-var-chain: \"\\f0c1\";\n@fa-var-chain-broken: \"\\f127\";\n@fa-var-check: \"\\f00c\";\n@fa-var-check-circle: \"\\f058\";\n@fa-var-check-circle-o: \"\\f05d\";\n@fa-var-check-square: \"\\f14a\";\n@fa-var-check-square-o: \"\\f046\";\n@fa-var-chevron-circle-down: \"\\f13a\";\n@fa-var-chevron-circle-left: \"\\f137\";\n@fa-var-chevron-circle-right: \"\\f138\";\n@fa-var-chevron-circle-up: \"\\f139\";\n@fa-var-chevron-down: \"\\f078\";\n@fa-var-chevron-left: \"\\f053\";\n@fa-var-chevron-right: \"\\f054\";\n@fa-var-chevron-up: \"\\f077\";\n@fa-var-child: \"\\f1ae\";\n@fa-var-chrome: \"\\f268\";\n@fa-var-circle: \"\\f111\";\n@fa-var-circle-o: \"\\f10c\";\n@fa-var-circle-o-notch: \"\\f1ce\";\n@fa-var-circle-thin: \"\\f1db\";\n@fa-var-clipboard: \"\\f0ea\";\n@fa-var-clock-o: \"\\f017\";\n@fa-var-clone: \"\\f24d\";\n@fa-var-close: \"\\f00d\";\n@fa-var-cloud: \"\\f0c2\";\n@fa-var-cloud-download: \"\\f0ed\";\n@fa-var-cloud-upload: \"\\f0ee\";\n@fa-var-cny: \"\\f157\";\n@fa-var-code: \"\\f121\";\n@fa-var-code-fork: \"\\f126\";\n@fa-var-codepen: \"\\f1cb\";\n@fa-var-codiepie: \"\\f284\";\n@fa-var-coffee: \"\\f0f4\";\n@fa-var-cog: \"\\f013\";\n@fa-var-cogs: \"\\f085\";\n@fa-var-columns: \"\\f0db\";\n@fa-var-comment: \"\\f075\";\n@fa-var-comment-o: \"\\f0e5\";\n@fa-var-commenting: \"\\f27a\";\n@fa-var-commenting-o: \"\\f27b\";\n@fa-var-comments: \"\\f086\";\n@fa-var-comments-o: \"\\f0e6\";\n@fa-var-compass: \"\\f14e\";\n@fa-var-compress: \"\\f066\";\n@fa-var-connectdevelop: \"\\f20e\";\n@fa-var-contao: \"\\f26d\";\n@fa-var-copy: \"\\f0c5\";\n@fa-var-copyright: \"\\f1f9\";\n@fa-var-creative-commons: \"\\f25e\";\n@fa-var-credit-card: \"\\f09d\";\n@fa-var-credit-card-alt: \"\\f283\";\n@fa-var-crop: \"\\f125\";\n@fa-var-crosshairs: \"\\f05b\";\n@fa-var-css3: \"\\f13c\";\n@fa-var-cube: \"\\f1b2\";\n@fa-var-cubes: \"\\f1b3\";\n@fa-var-cut: \"\\f0c4\";\n@fa-var-cutlery: \"\\f0f5\";\n@fa-var-dashboard: \"\\f0e4\";\n@fa-var-dashcube: \"\\f210\";\n@fa-var-database: \"\\f1c0\";\n@fa-var-deaf: \"\\f2a4\";\n@fa-var-deafness: \"\\f2a4\";\n@fa-var-dedent: \"\\f03b\";\n@fa-var-delicious: \"\\f1a5\";\n@fa-var-desktop: \"\\f108\";\n@fa-var-deviantart: \"\\f1bd\";\n@fa-var-diamond: \"\\f219\";\n@fa-var-digg: \"\\f1a6\";\n@fa-var-dollar: \"\\f155\";\n@fa-var-dot-circle-o: \"\\f192\";\n@fa-var-download: \"\\f019\";\n@fa-var-dribbble: \"\\f17d\";\n@fa-var-drivers-license: \"\\f2c2\";\n@fa-var-drivers-license-o: \"\\f2c3\";\n@fa-var-dropbox: \"\\f16b\";\n@fa-var-drupal: \"\\f1a9\";\n@fa-var-edge: \"\\f282\";\n@fa-var-edit: \"\\f044\";\n@fa-var-eercast: \"\\f2da\";\n@fa-var-eject: \"\\f052\";\n@fa-var-ellipsis-h: \"\\f141\";\n@fa-var-ellipsis-v: \"\\f142\";\n@fa-var-empire: \"\\f1d1\";\n@fa-var-envelope: \"\\f0e0\";\n@fa-var-envelope-o: \"\\f003\";\n@fa-var-envelope-open: \"\\f2b6\";\n@fa-var-envelope-open-o: \"\\f2b7\";\n@fa-var-envelope-square: \"\\f199\";\n@fa-var-envira: \"\\f299\";\n@fa-var-eraser: \"\\f12d\";\n@fa-var-etsy: \"\\f2d7\";\n@fa-var-eur: \"\\f153\";\n@fa-var-euro: \"\\f153\";\n@fa-var-exchange: \"\\f0ec\";\n@fa-var-exclamation: \"\\f12a\";\n@fa-var-exclamation-circle: \"\\f06a\";\n@fa-var-exclamation-triangle: \"\\f071\";\n@fa-var-expand: \"\\f065\";\n@fa-var-expeditedssl: \"\\f23e\";\n@fa-var-external-link: \"\\f08e\";\n@fa-var-external-link-square: \"\\f14c\";\n@fa-var-eye: \"\\f06e\";\n@fa-var-eye-slash: \"\\f070\";\n@fa-var-eyedropper: \"\\f1fb\";\n@fa-var-fa: \"\\f2b4\";\n@fa-var-facebook: \"\\f09a\";\n@fa-var-facebook-f: \"\\f09a\";\n@fa-var-facebook-official: \"\\f230\";\n@fa-var-facebook-square: \"\\f082\";\n@fa-var-fast-backward: \"\\f049\";\n@fa-var-fast-forward: \"\\f050\";\n@fa-var-fax: \"\\f1ac\";\n@fa-var-feed: \"\\f09e\";\n@fa-var-female: \"\\f182\";\n@fa-var-fighter-jet: \"\\f0fb\";\n@fa-var-file: \"\\f15b\";\n@fa-var-file-archive-o: \"\\f1c6\";\n@fa-var-file-audio-o: \"\\f1c7\";\n@fa-var-file-code-o: \"\\f1c9\";\n@fa-var-file-excel-o: \"\\f1c3\";\n@fa-var-file-image-o: \"\\f1c5\";\n@fa-var-file-movie-o: \"\\f1c8\";\n@fa-var-file-o: \"\\f016\";\n@fa-var-file-pdf-o: \"\\f1c1\";\n@fa-var-file-photo-o: \"\\f1c5\";\n@fa-var-file-picture-o: \"\\f1c5\";\n@fa-var-file-powerpoint-o: \"\\f1c4\";\n@fa-var-file-sound-o: \"\\f1c7\";\n@fa-var-file-text: \"\\f15c\";\n@fa-var-file-text-o: \"\\f0f6\";\n@fa-var-file-video-o: \"\\f1c8\";\n@fa-var-file-word-o: \"\\f1c2\";\n@fa-var-file-zip-o: \"\\f1c6\";\n@fa-var-files-o: \"\\f0c5\";\n@fa-var-film: \"\\f008\";\n@fa-var-filter: \"\\f0b0\";\n@fa-var-fire: \"\\f06d\";\n@fa-var-fire-extinguisher: \"\\f134\";\n@fa-var-firefox: \"\\f269\";\n@fa-var-first-order: \"\\f2b0\";\n@fa-var-flag: \"\\f024\";\n@fa-var-flag-checkered: \"\\f11e\";\n@fa-var-flag-o: \"\\f11d\";\n@fa-var-flash: \"\\f0e7\";\n@fa-var-flask: \"\\f0c3\";\n@fa-var-flickr: \"\\f16e\";\n@fa-var-floppy-o: \"\\f0c7\";\n@fa-var-folder: \"\\f07b\";\n@fa-var-folder-o: \"\\f114\";\n@fa-var-folder-open: \"\\f07c\";\n@fa-var-folder-open-o: \"\\f115\";\n@fa-var-font: \"\\f031\";\n@fa-var-font-awesome: \"\\f2b4\";\n@fa-var-fonticons: \"\\f280\";\n@fa-var-fort-awesome: \"\\f286\";\n@fa-var-forumbee: \"\\f211\";\n@fa-var-forward: \"\\f04e\";\n@fa-var-foursquare: \"\\f180\";\n@fa-var-free-code-camp: \"\\f2c5\";\n@fa-var-frown-o: \"\\f119\";\n@fa-var-futbol-o: \"\\f1e3\";\n@fa-var-gamepad: \"\\f11b\";\n@fa-var-gavel: \"\\f0e3\";\n@fa-var-gbp: \"\\f154\";\n@fa-var-ge: \"\\f1d1\";\n@fa-var-gear: \"\\f013\";\n@fa-var-gears: \"\\f085\";\n@fa-var-genderless: \"\\f22d\";\n@fa-var-get-pocket: \"\\f265\";\n@fa-var-gg: \"\\f260\";\n@fa-var-gg-circle: \"\\f261\";\n@fa-var-gift: \"\\f06b\";\n@fa-var-git: \"\\f1d3\";\n@fa-var-git-square: \"\\f1d2\";\n@fa-var-github: \"\\f09b\";\n@fa-var-github-alt: \"\\f113\";\n@fa-var-github-square: \"\\f092\";\n@fa-var-gitlab: \"\\f296\";\n@fa-var-gittip: \"\\f184\";\n@fa-var-glass: \"\\f000\";\n@fa-var-glide: \"\\f2a5\";\n@fa-var-glide-g: \"\\f2a6\";\n@fa-var-globe: \"\\f0ac\";\n@fa-var-google: \"\\f1a0\";\n@fa-var-google-plus: \"\\f0d5\";\n@fa-var-google-plus-circle: \"\\f2b3\";\n@fa-var-google-plus-official: \"\\f2b3\";\n@fa-var-google-plus-square: \"\\f0d4\";\n@fa-var-google-wallet: \"\\f1ee\";\n@fa-var-graduation-cap: \"\\f19d\";\n@fa-var-gratipay: \"\\f184\";\n@fa-var-grav: \"\\f2d6\";\n@fa-var-group: \"\\f0c0\";\n@fa-var-h-square: \"\\f0fd\";\n@fa-var-hacker-news: \"\\f1d4\";\n@fa-var-hand-grab-o: \"\\f255\";\n@fa-var-hand-lizard-o: \"\\f258\";\n@fa-var-hand-o-down: \"\\f0a7\";\n@fa-var-hand-o-left: \"\\f0a5\";\n@fa-var-hand-o-right: \"\\f0a4\";\n@fa-var-hand-o-up: \"\\f0a6\";\n@fa-var-hand-paper-o: \"\\f256\";\n@fa-var-hand-peace-o: \"\\f25b\";\n@fa-var-hand-pointer-o: \"\\f25a\";\n@fa-var-hand-rock-o: \"\\f255\";\n@fa-var-hand-scissors-o: \"\\f257\";\n@fa-var-hand-spock-o: \"\\f259\";\n@fa-var-hand-stop-o: \"\\f256\";\n@fa-var-handshake-o: \"\\f2b5\";\n@fa-var-hard-of-hearing: \"\\f2a4\";\n@fa-var-hashtag: \"\\f292\";\n@fa-var-hdd-o: \"\\f0a0\";\n@fa-var-header: \"\\f1dc\";\n@fa-var-headphones: \"\\f025\";\n@fa-var-heart: \"\\f004\";\n@fa-var-heart-o: \"\\f08a\";\n@fa-var-heartbeat: \"\\f21e\";\n@fa-var-history: \"\\f1da\";\n@fa-var-home: \"\\f015\";\n@fa-var-hospital-o: \"\\f0f8\";\n@fa-var-hotel: \"\\f236\";\n@fa-var-hourglass: \"\\f254\";\n@fa-var-hourglass-1: \"\\f251\";\n@fa-var-hourglass-2: \"\\f252\";\n@fa-var-hourglass-3: \"\\f253\";\n@fa-var-hourglass-end: \"\\f253\";\n@fa-var-hourglass-half: \"\\f252\";\n@fa-var-hourglass-o: \"\\f250\";\n@fa-var-hourglass-start: \"\\f251\";\n@fa-var-houzz: \"\\f27c\";\n@fa-var-html5: \"\\f13b\";\n@fa-var-i-cursor: \"\\f246\";\n@fa-var-id-badge: \"\\f2c1\";\n@fa-var-id-card: \"\\f2c2\";\n@fa-var-id-card-o: \"\\f2c3\";\n@fa-var-ils: \"\\f20b\";\n@fa-var-image: \"\\f03e\";\n@fa-var-imdb: \"\\f2d8\";\n@fa-var-inbox: \"\\f01c\";\n@fa-var-indent: \"\\f03c\";\n@fa-var-industry: \"\\f275\";\n@fa-var-info: \"\\f129\";\n@fa-var-info-circle: \"\\f05a\";\n@fa-var-inr: \"\\f156\";\n@fa-var-instagram: \"\\f16d\";\n@fa-var-institution: \"\\f19c\";\n@fa-var-internet-explorer: \"\\f26b\";\n@fa-var-intersex: \"\\f224\";\n@fa-var-ioxhost: \"\\f208\";\n@fa-var-italic: \"\\f033\";\n@fa-var-joomla: \"\\f1aa\";\n@fa-var-jpy: \"\\f157\";\n@fa-var-jsfiddle: \"\\f1cc\";\n@fa-var-key: \"\\f084\";\n@fa-var-keyboard-o: \"\\f11c\";\n@fa-var-krw: \"\\f159\";\n@fa-var-language: \"\\f1ab\";\n@fa-var-laptop: \"\\f109\";\n@fa-var-lastfm: \"\\f202\";\n@fa-var-lastfm-square: \"\\f203\";\n@fa-var-leaf: \"\\f06c\";\n@fa-var-leanpub: \"\\f212\";\n@fa-var-legal: \"\\f0e3\";\n@fa-var-lemon-o: \"\\f094\";\n@fa-var-level-down: \"\\f149\";\n@fa-var-level-up: \"\\f148\";\n@fa-var-life-bouy: \"\\f1cd\";\n@fa-var-life-buoy: \"\\f1cd\";\n@fa-var-life-ring: \"\\f1cd\";\n@fa-var-life-saver: \"\\f1cd\";\n@fa-var-lightbulb-o: \"\\f0eb\";\n@fa-var-line-chart: \"\\f201\";\n@fa-var-link: \"\\f0c1\";\n@fa-var-linkedin: \"\\f0e1\";\n@fa-var-linkedin-square: \"\\f08c\";\n@fa-var-linode: \"\\f2b8\";\n@fa-var-linux: \"\\f17c\";\n@fa-var-list: \"\\f03a\";\n@fa-var-list-alt: \"\\f022\";\n@fa-var-list-ol: \"\\f0cb\";\n@fa-var-list-ul: \"\\f0ca\";\n@fa-var-location-arrow: \"\\f124\";\n@fa-var-lock: \"\\f023\";\n@fa-var-long-arrow-down: \"\\f175\";\n@fa-var-long-arrow-left: \"\\f177\";\n@fa-var-long-arrow-right: \"\\f178\";\n@fa-var-long-arrow-up: \"\\f176\";\n@fa-var-low-vision: \"\\f2a8\";\n@fa-var-magic: \"\\f0d0\";\n@fa-var-magnet: \"\\f076\";\n@fa-var-mail-forward: \"\\f064\";\n@fa-var-mail-reply: \"\\f112\";\n@fa-var-mail-reply-all: \"\\f122\";\n@fa-var-male: \"\\f183\";\n@fa-var-map: \"\\f279\";\n@fa-var-map-marker: \"\\f041\";\n@fa-var-map-o: \"\\f278\";\n@fa-var-map-pin: \"\\f276\";\n@fa-var-map-signs: \"\\f277\";\n@fa-var-mars: \"\\f222\";\n@fa-var-mars-double: \"\\f227\";\n@fa-var-mars-stroke: \"\\f229\";\n@fa-var-mars-stroke-h: \"\\f22b\";\n@fa-var-mars-stroke-v: \"\\f22a\";\n@fa-var-maxcdn: \"\\f136\";\n@fa-var-meanpath: \"\\f20c\";\n@fa-var-medium: \"\\f23a\";\n@fa-var-medkit: \"\\f0fa\";\n@fa-var-meetup: \"\\f2e0\";\n@fa-var-meh-o: \"\\f11a\";\n@fa-var-mercury: \"\\f223\";\n@fa-var-microchip: \"\\f2db\";\n@fa-var-microphone: \"\\f130\";\n@fa-var-microphone-slash: \"\\f131\";\n@fa-var-minus: \"\\f068\";\n@fa-var-minus-circle: \"\\f056\";\n@fa-var-minus-square: \"\\f146\";\n@fa-var-minus-square-o: \"\\f147\";\n@fa-var-mixcloud: \"\\f289\";\n@fa-var-mobile: \"\\f10b\";\n@fa-var-mobile-phone: \"\\f10b\";\n@fa-var-modx: \"\\f285\";\n@fa-var-money: \"\\f0d6\";\n@fa-var-moon-o: \"\\f186\";\n@fa-var-mortar-board: \"\\f19d\";\n@fa-var-motorcycle: \"\\f21c\";\n@fa-var-mouse-pointer: \"\\f245\";\n@fa-var-music: \"\\f001\";\n@fa-var-navicon: \"\\f0c9\";\n@fa-var-neuter: \"\\f22c\";\n@fa-var-newspaper-o: \"\\f1ea\";\n@fa-var-object-group: \"\\f247\";\n@fa-var-object-ungroup: \"\\f248\";\n@fa-var-odnoklassniki: \"\\f263\";\n@fa-var-odnoklassniki-square: \"\\f264\";\n@fa-var-opencart: \"\\f23d\";\n@fa-var-openid: \"\\f19b\";\n@fa-var-opera: \"\\f26a\";\n@fa-var-optin-monster: \"\\f23c\";\n@fa-var-outdent: \"\\f03b\";\n@fa-var-pagelines: \"\\f18c\";\n@fa-var-paint-brush: \"\\f1fc\";\n@fa-var-paper-plane: \"\\f1d8\";\n@fa-var-paper-plane-o: \"\\f1d9\";\n@fa-var-paperclip: \"\\f0c6\";\n@fa-var-paragraph: \"\\f1dd\";\n@fa-var-paste: \"\\f0ea\";\n@fa-var-pause: \"\\f04c\";\n@fa-var-pause-circle: \"\\f28b\";\n@fa-var-pause-circle-o: \"\\f28c\";\n@fa-var-paw: \"\\f1b0\";\n@fa-var-paypal: \"\\f1ed\";\n@fa-var-pencil: \"\\f040\";\n@fa-var-pencil-square: \"\\f14b\";\n@fa-var-pencil-square-o: \"\\f044\";\n@fa-var-percent: \"\\f295\";\n@fa-var-phone: \"\\f095\";\n@fa-var-phone-square: \"\\f098\";\n@fa-var-photo: \"\\f03e\";\n@fa-var-picture-o: \"\\f03e\";\n@fa-var-pie-chart: \"\\f200\";\n@fa-var-pied-piper: \"\\f2ae\";\n@fa-var-pied-piper-alt: \"\\f1a8\";\n@fa-var-pied-piper-pp: \"\\f1a7\";\n@fa-var-pinterest: \"\\f0d2\";\n@fa-var-pinterest-p: \"\\f231\";\n@fa-var-pinterest-square: \"\\f0d3\";\n@fa-var-plane: \"\\f072\";\n@fa-var-play: \"\\f04b\";\n@fa-var-play-circle: \"\\f144\";\n@fa-var-play-circle-o: \"\\f01d\";\n@fa-var-plug: \"\\f1e6\";\n@fa-var-plus: \"\\f067\";\n@fa-var-plus-circle: \"\\f055\";\n@fa-var-plus-square: \"\\f0fe\";\n@fa-var-plus-square-o: \"\\f196\";\n@fa-var-podcast: \"\\f2ce\";\n@fa-var-power-off: \"\\f011\";\n@fa-var-print: \"\\f02f\";\n@fa-var-product-hunt: \"\\f288\";\n@fa-var-puzzle-piece: \"\\f12e\";\n@fa-var-qq: \"\\f1d6\";\n@fa-var-qrcode: \"\\f029\";\n@fa-var-question: \"\\f128\";\n@fa-var-question-circle: \"\\f059\";\n@fa-var-question-circle-o: \"\\f29c\";\n@fa-var-quora: \"\\f2c4\";\n@fa-var-quote-left: \"\\f10d\";\n@fa-var-quote-right: \"\\f10e\";\n@fa-var-ra: \"\\f1d0\";\n@fa-var-random: \"\\f074\";\n@fa-var-ravelry: \"\\f2d9\";\n@fa-var-rebel: \"\\f1d0\";\n@fa-var-recycle: \"\\f1b8\";\n@fa-var-reddit: \"\\f1a1\";\n@fa-var-reddit-alien: \"\\f281\";\n@fa-var-reddit-square: \"\\f1a2\";\n@fa-var-refresh: \"\\f021\";\n@fa-var-registered: \"\\f25d\";\n@fa-var-remove: \"\\f00d\";\n@fa-var-renren: \"\\f18b\";\n@fa-var-reorder: \"\\f0c9\";\n@fa-var-repeat: \"\\f01e\";\n@fa-var-reply: \"\\f112\";\n@fa-var-reply-all: \"\\f122\";\n@fa-var-resistance: \"\\f1d0\";\n@fa-var-retweet: \"\\f079\";\n@fa-var-rmb: \"\\f157\";\n@fa-var-road: \"\\f018\";\n@fa-var-rocket: \"\\f135\";\n@fa-var-rotate-left: \"\\f0e2\";\n@fa-var-rotate-right: \"\\f01e\";\n@fa-var-rouble: \"\\f158\";\n@fa-var-rss: \"\\f09e\";\n@fa-var-rss-square: \"\\f143\";\n@fa-var-rub: \"\\f158\";\n@fa-var-ruble: \"\\f158\";\n@fa-var-rupee: \"\\f156\";\n@fa-var-s15: \"\\f2cd\";\n@fa-var-safari: \"\\f267\";\n@fa-var-save: \"\\f0c7\";\n@fa-var-scissors: \"\\f0c4\";\n@fa-var-scribd: \"\\f28a\";\n@fa-var-search: \"\\f002\";\n@fa-var-search-minus: \"\\f010\";\n@fa-var-search-plus: \"\\f00e\";\n@fa-var-sellsy: \"\\f213\";\n@fa-var-send: \"\\f1d8\";\n@fa-var-send-o: \"\\f1d9\";\n@fa-var-server: \"\\f233\";\n@fa-var-share: \"\\f064\";\n@fa-var-share-alt: \"\\f1e0\";\n@fa-var-share-alt-square: \"\\f1e1\";\n@fa-var-share-square: \"\\f14d\";\n@fa-var-share-square-o: \"\\f045\";\n@fa-var-shekel: \"\\f20b\";\n@fa-var-sheqel: \"\\f20b\";\n@fa-var-shield: \"\\f132\";\n@fa-var-ship: \"\\f21a\";\n@fa-var-shirtsinbulk: \"\\f214\";\n@fa-var-shopping-bag: \"\\f290\";\n@fa-var-shopping-basket: \"\\f291\";\n@fa-var-shopping-cart: \"\\f07a\";\n@fa-var-shower: \"\\f2cc\";\n@fa-var-sign-in: \"\\f090\";\n@fa-var-sign-language: \"\\f2a7\";\n@fa-var-sign-out: \"\\f08b\";\n@fa-var-signal: \"\\f012\";\n@fa-var-signing: \"\\f2a7\";\n@fa-var-simplybuilt: \"\\f215\";\n@fa-var-sitemap: \"\\f0e8\";\n@fa-var-skyatlas: \"\\f216\";\n@fa-var-skype: \"\\f17e\";\n@fa-var-slack: \"\\f198\";\n@fa-var-sliders: \"\\f1de\";\n@fa-var-slideshare: \"\\f1e7\";\n@fa-var-smile-o: \"\\f118\";\n@fa-var-snapchat: \"\\f2ab\";\n@fa-var-snapchat-ghost: \"\\f2ac\";\n@fa-var-snapchat-square: \"\\f2ad\";\n@fa-var-snowflake-o: \"\\f2dc\";\n@fa-var-soccer-ball-o: \"\\f1e3\";\n@fa-var-sort: \"\\f0dc\";\n@fa-var-sort-alpha-asc: \"\\f15d\";\n@fa-var-sort-alpha-desc: \"\\f15e\";\n@fa-var-sort-amount-asc: \"\\f160\";\n@fa-var-sort-amount-desc: \"\\f161\";\n@fa-var-sort-asc: \"\\f0de\";\n@fa-var-sort-desc: \"\\f0dd\";\n@fa-var-sort-down: \"\\f0dd\";\n@fa-var-sort-numeric-asc: \"\\f162\";\n@fa-var-sort-numeric-desc: \"\\f163\";\n@fa-var-sort-up: \"\\f0de\";\n@fa-var-soundcloud: \"\\f1be\";\n@fa-var-space-shuttle: \"\\f197\";\n@fa-var-spinner: \"\\f110\";\n@fa-var-spoon: \"\\f1b1\";\n@fa-var-spotify: \"\\f1bc\";\n@fa-var-square: \"\\f0c8\";\n@fa-var-square-o: \"\\f096\";\n@fa-var-stack-exchange: \"\\f18d\";\n@fa-var-stack-overflow: \"\\f16c\";\n@fa-var-star: \"\\f005\";\n@fa-var-star-half: \"\\f089\";\n@fa-var-star-half-empty: \"\\f123\";\n@fa-var-star-half-full: \"\\f123\";\n@fa-var-star-half-o: \"\\f123\";\n@fa-var-star-o: \"\\f006\";\n@fa-var-steam: \"\\f1b6\";\n@fa-var-steam-square: \"\\f1b7\";\n@fa-var-step-backward: \"\\f048\";\n@fa-var-step-forward: \"\\f051\";\n@fa-var-stethoscope: \"\\f0f1\";\n@fa-var-sticky-note: \"\\f249\";\n@fa-var-sticky-note-o: \"\\f24a\";\n@fa-var-stop: \"\\f04d\";\n@fa-var-stop-circle: \"\\f28d\";\n@fa-var-stop-circle-o: \"\\f28e\";\n@fa-var-street-view: \"\\f21d\";\n@fa-var-strikethrough: \"\\f0cc\";\n@fa-var-stumbleupon: \"\\f1a4\";\n@fa-var-stumbleupon-circle: \"\\f1a3\";\n@fa-var-subscript: \"\\f12c\";\n@fa-var-subway: \"\\f239\";\n@fa-var-suitcase: \"\\f0f2\";\n@fa-var-sun-o: \"\\f185\";\n@fa-var-superpowers: \"\\f2dd\";\n@fa-var-superscript: \"\\f12b\";\n@fa-var-support: \"\\f1cd\";\n@fa-var-table: \"\\f0ce\";\n@fa-var-tablet: \"\\f10a\";\n@fa-var-tachometer: \"\\f0e4\";\n@fa-var-tag: \"\\f02b\";\n@fa-var-tags: \"\\f02c\";\n@fa-var-tasks: \"\\f0ae\";\n@fa-var-taxi: \"\\f1ba\";\n@fa-var-telegram: \"\\f2c6\";\n@fa-var-television: \"\\f26c\";\n@fa-var-tencent-weibo: \"\\f1d5\";\n@fa-var-terminal: \"\\f120\";\n@fa-var-text-height: \"\\f034\";\n@fa-var-text-width: \"\\f035\";\n@fa-var-th: \"\\f00a\";\n@fa-var-th-large: \"\\f009\";\n@fa-var-th-list: \"\\f00b\";\n@fa-var-themeisle: \"\\f2b2\";\n@fa-var-thermometer: \"\\f2c7\";\n@fa-var-thermometer-0: \"\\f2cb\";\n@fa-var-thermometer-1: \"\\f2ca\";\n@fa-var-thermometer-2: \"\\f2c9\";\n@fa-var-thermometer-3: \"\\f2c8\";\n@fa-var-thermometer-4: \"\\f2c7\";\n@fa-var-thermometer-empty: \"\\f2cb\";\n@fa-var-thermometer-full: \"\\f2c7\";\n@fa-var-thermometer-half: \"\\f2c9\";\n@fa-var-thermometer-quarter: \"\\f2ca\";\n@fa-var-thermometer-three-quarters: \"\\f2c8\";\n@fa-var-thumb-tack: \"\\f08d\";\n@fa-var-thumbs-down: \"\\f165\";\n@fa-var-thumbs-o-down: \"\\f088\";\n@fa-var-thumbs-o-up: \"\\f087\";\n@fa-var-thumbs-up: \"\\f164\";\n@fa-var-ticket: \"\\f145\";\n@fa-var-times: \"\\f00d\";\n@fa-var-times-circle: \"\\f057\";\n@fa-var-times-circle-o: \"\\f05c\";\n@fa-var-times-rectangle: \"\\f2d3\";\n@fa-var-times-rectangle-o: \"\\f2d4\";\n@fa-var-tint: \"\\f043\";\n@fa-var-toggle-down: \"\\f150\";\n@fa-var-toggle-left: \"\\f191\";\n@fa-var-toggle-off: \"\\f204\";\n@fa-var-toggle-on: \"\\f205\";\n@fa-var-toggle-right: \"\\f152\";\n@fa-var-toggle-up: \"\\f151\";\n@fa-var-trademark: \"\\f25c\";\n@fa-var-train: \"\\f238\";\n@fa-var-transgender: \"\\f224\";\n@fa-var-transgender-alt: \"\\f225\";\n@fa-var-trash: \"\\f1f8\";\n@fa-var-trash-o: \"\\f014\";\n@fa-var-tree: \"\\f1bb\";\n@fa-var-trello: \"\\f181\";\n@fa-var-tripadvisor: \"\\f262\";\n@fa-var-trophy: \"\\f091\";\n@fa-var-truck: \"\\f0d1\";\n@fa-var-try: \"\\f195\";\n@fa-var-tty: \"\\f1e4\";\n@fa-var-tumblr: \"\\f173\";\n@fa-var-tumblr-square: \"\\f174\";\n@fa-var-turkish-lira: \"\\f195\";\n@fa-var-tv: \"\\f26c\";\n@fa-var-twitch: \"\\f1e8\";\n@fa-var-twitter: \"\\f099\";\n@fa-var-twitter-square: \"\\f081\";\n@fa-var-umbrella: \"\\f0e9\";\n@fa-var-underline: \"\\f0cd\";\n@fa-var-undo: \"\\f0e2\";\n@fa-var-universal-access: \"\\f29a\";\n@fa-var-university: \"\\f19c\";\n@fa-var-unlink: \"\\f127\";\n@fa-var-unlock: \"\\f09c\";\n@fa-var-unlock-alt: \"\\f13e\";\n@fa-var-unsorted: \"\\f0dc\";\n@fa-var-upload: \"\\f093\";\n@fa-var-usb: \"\\f287\";\n@fa-var-usd: \"\\f155\";\n@fa-var-user: \"\\f007\";\n@fa-var-user-circle: \"\\f2bd\";\n@fa-var-user-circle-o: \"\\f2be\";\n@fa-var-user-md: \"\\f0f0\";\n@fa-var-user-o: \"\\f2c0\";\n@fa-var-user-plus: \"\\f234\";\n@fa-var-user-secret: \"\\f21b\";\n@fa-var-user-times: \"\\f235\";\n@fa-var-users: \"\\f0c0\";\n@fa-var-vcard: \"\\f2bb\";\n@fa-var-vcard-o: \"\\f2bc\";\n@fa-var-venus: \"\\f221\";\n@fa-var-venus-double: \"\\f226\";\n@fa-var-venus-mars: \"\\f228\";\n@fa-var-viacoin: \"\\f237\";\n@fa-var-viadeo: \"\\f2a9\";\n@fa-var-viadeo-square: \"\\f2aa\";\n@fa-var-video-camera: \"\\f03d\";\n@fa-var-vimeo: \"\\f27d\";\n@fa-var-vimeo-square: \"\\f194\";\n@fa-var-vine: \"\\f1ca\";\n@fa-var-vk: \"\\f189\";\n@fa-var-volume-control-phone: \"\\f2a0\";\n@fa-var-volume-down: \"\\f027\";\n@fa-var-volume-off: \"\\f026\";\n@fa-var-volume-up: \"\\f028\";\n@fa-var-warning: \"\\f071\";\n@fa-var-wechat: \"\\f1d7\";\n@fa-var-weibo: \"\\f18a\";\n@fa-var-weixin: \"\\f1d7\";\n@fa-var-whatsapp: \"\\f232\";\n@fa-var-wheelchair: \"\\f193\";\n@fa-var-wheelchair-alt: \"\\f29b\";\n@fa-var-wifi: \"\\f1eb\";\n@fa-var-wikipedia-w: \"\\f266\";\n@fa-var-window-close: \"\\f2d3\";\n@fa-var-window-close-o: \"\\f2d4\";\n@fa-var-window-maximize: \"\\f2d0\";\n@fa-var-window-minimize: \"\\f2d1\";\n@fa-var-window-restore: \"\\f2d2\";\n@fa-var-windows: \"\\f17a\";\n@fa-var-won: \"\\f159\";\n@fa-var-wordpress: \"\\f19a\";\n@fa-var-wpbeginner: \"\\f297\";\n@fa-var-wpexplorer: \"\\f2de\";\n@fa-var-wpforms: \"\\f298\";\n@fa-var-wrench: \"\\f0ad\";\n@fa-var-xing: \"\\f168\";\n@fa-var-xing-square: \"\\f169\";\n@fa-var-y-combinator: \"\\f23b\";\n@fa-var-y-combinator-square: \"\\f1d4\";\n@fa-var-yahoo: \"\\f19e\";\n@fa-var-yc: \"\\f23b\";\n@fa-var-yc-square: \"\\f1d4\";\n@fa-var-yelp: \"\\f1e9\";\n@fa-var-yen: \"\\f157\";\n@fa-var-yoast: \"\\f2b1\";\n@fa-var-youtube: \"\\f167\";\n@fa-var-youtube-play: \"\\f16a\";\n@fa-var-youtube-square: \"\\f166\";\n\n","// Screen Readers\n// -------------------------\n\n.sr-only { .sr-only(); }\n.sr-only-focusable { .sr-only-focusable(); }\n","//\n// Patternfly Mixins\n// --------------------------------------------------\n// PatternFly-specific mixins\n\n// Patternfly button variants.\n.button-variant(@color; @background; @background-image-start; @background-image-stop; @border) {\n  background-color: @background;\n  #gradient > .vertical(@background-image-start, @background-image-stop);\n  border-color: @border;\n  color: @color;\n\n  &:hover,\n  &:focus,\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-color: @background;\n    background-image: none;\n    border-color: @border;\n    color: @color;\n  }\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-image: none;\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: darken(@background, 5%);\n          border-color: darken(@border, 7%);\n    }\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &,\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      background-color: @background;\n      border-color: @border;\n    }\n  }\n}\n\n// SASS CONVERSION FIX.\n// Allows inclusion of sr-only rules in nested media queries where @extends .sr-only\n// will not work.\n.sr-only-pf() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n\n.tab-indicator(@background: @gray-light-pf, @left: 15px, @right: 15px) {\n  &:before {\n    background: @background;\n    bottom: -1px;\n    content: \"\";\n    display: block;\n    height: 2px;\n    left: @left;\n    position: absolute;\n    right: @right;\n  }\n}\n\n// Ellipse overflow text\n.text-overflow-pf {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  word-wrap: normal;\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n.alert {\n  border-width: 1px;\n  padding-left: 47px;\n  padding-right: (@alert-padding + 3);\n  position: relative;\n  word-wrap: break-word;\n  .alert-link {\n    color: @link-color;\n    &:hover {\n      color: @link-hover-color;\n    }\n  }\n  > .btn.pull-right {\n    margin-top: -3px;\n  }\n  > .pficon {\n    font-size: 22px;\n    position: absolute;\n    left: 13px;\n    top: 10px;\n  }\n  .close {\n    .opacity(.85);\n    &:hover,\n    &:focus {\n      .opacity(1);\n    }\n  }\n  .pficon-info {\n    color: @color-pf-black-700;\n  }\n}\n\n.alert-dismissable {\n  padding-right: (@alert-padding + 17);\n  .close {\n    right: -13px;\n    top: 1px;\n  }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n.badge {\n  margin-left: 6px;\n}\n\n.nav-pills > li > a > .badge {\n  margin-left: 6px;\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n.breadcrumb {\n  padding-left: 0;\n  > .active strong {\n    font-weight: 600;\n  }\n  > li {\n      display: inline; /* IE8 */\n      + li:before {\n      color: @gray-light;\n      content: @fa-var-angle-right;\n      font-family: @icon-font-name-fa;\n      font-size: (@font-size-base - 1);\n      padding: 0 9px 0 7px;\n    }\n  }\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n.btn {\n  .box-shadow(0 2px 3px fade(@color-pf-black, 10%));\n  &:active {\n    .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    background-color: @color-pf-black-100 !important;\n    background-image: none !important;\n    border-color: @color-pf-black-300 !important;\n    color: @color-pf-black-500 !important;\n    opacity: 1;\n    &:active {\n      .box-shadow(none);\n    }\n    &.btn-link {\n      background-color: transparent !important;\n      border: 0;\n    }\n  }\n}\n\n.btn-danger {\n  .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-bg-img-start; @btn-danger-bg-img-stop; @btn-danger-border);\n}\n\n.btn-default {\n  .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n}\n\n.btn-link {\n  &,\n  &:active {\n    .box-shadow(none);\n  }\n}\n\n.btn-primary {\n  .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-bg-img-start; @btn-primary-bg-img-stop; @btn-primary-border);\n}\n\n.btn-xs,\n.btn-group-xs .btn {\n  font-weight: @btn-xs-font-weight;\n}\n","//\n// Dropdowns\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n// Modified to use Font Awesome's angle-down icon\n.caret {\n  font-family: @icon-font-name-fa;\n  font-weight: normal;\n  height: (@font-size-base - 3);\n  position: relative;\n  vertical-align: baseline;\n  width: @font-size-base;\n  &:before {\n    bottom: 0;\n    content: @fa-var-angle-down;\n    left: 0;\n    line-height: @font-size-base;\n    position: absolute;\n    text-align: center;\n    top: -1px;\n    right: 0;\n  }\n  .dropup & {\n    &:before {\n      content: @fa-var-angle-up;\n    }\n  }\n}\n\n// Bootstrap removes the focus ring on dropdowns; this replaces it for better accessibility\n.dropdown-toggle:focus {\n  .tab-focus();\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n  // Dividers (basically an hr) within the dropdown\n  .divider {\n    .nav-divider(@dropdown-divider-bg, @dropdown-divider-margin);\n  }\n  // Links within the dropdown menu\n  > li > a {\n    border-color: transparent;\n    border-style: solid;\n    border-width: 1px 0;\n    padding: 1px 10px;\n  }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n  &:hover,\n  &:focus {\n    border-color: @dropdown-link-hover-border-color;\n    .reset-filter();\n  }\n  &:active {\n    background-color: @dropdown-link-focus-bg;\n    border-color: @dropdown-link-active-border-color;\n    color: @dropdown-link-focus-color !important;\n    .reset-filter();\n  }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n  &,\n  &:hover,\n  &:focus {\n    background-color: @dropdown-link-active-bg !important;\n    border-color: @dropdown-link-active-border-color !important;\n    .reset-filter();\n  }\n}\n\n// Disabled state\n.dropdown-menu > .disabled > a {\n  &,\n  &:hover,\n  &:focus {\n    border-color: transparent;\n  }\n}\n\n// Selected state\n.dropdown-menu > .selected > a {\n  background-color: @dropdown-link-active-bg;\n  border-color: @dropdown-link-active-border-color;\n  color: @color-pf-white;\n  small {\n    color: fade(@color-pf-white, 50%);\n  }\n}\n\n// Nuke hover/focus effects\n.dropdown-menu > .disabled > a {\n  &:hover,\n  &:focus {\n    border-color: transparent;\n  }\n}\n\n// Dropdown section headers\n.dropdown-header {\n  padding-left: 10px;\n  padding-right: 10px;\n  text-transform: uppercase;\n}\n\n// Position Menu closer to button\n.btn-group,\n.dropdown,\n.input-group-btn {\n  > .dropdown-menu {\n    margin-top: -1px;\n  }\n}\n\n// Position Menu closer to button (dropup-menu)\n.dropup .dropdown-menu {\n  margin-bottom: -1px;\n}\n\n// Add back styles for dropdown-submenu\n.dropdown-submenu {\n  position:relative;\n  &:hover {\n    > a {\n      background-color: @dropdown-link-hover-bg;\n      border-color: @dropdown-link-hover-border-color;\n    }\n    > .dropdown-menu {\n      display: block;\n    }\n  }\n  &.pull-left {\n    float: none !important;\n    > .dropdown-menu {\n      left: auto;\n      margin-left: 10px;\n      right: 100%;\n    }\n  }\n  > a {\n    padding-right: 20px !important;\n    &:after {\n      content: @fa-var-angle-right;\n      font-family: @icon-font-name-fa;\n      display: block;\n      position: absolute;\n      right: 10px;\n      top: 2px;\n    }\n  }\n  > .dropdown-menu {\n    left: 100%;\n    margin-top: 0;\n    top: -6px;\n  }\n  .dropup & > .dropdown-menu {\n    bottom: -5px;\n    top: auto;\n  }\n  .open &.active > .dropdown-menu {\n    display: block;\n  }\n}\n\n// Kebab dropmenu\n.dropdown-kebab-pf {\n  &.btn-group > .btn:first-child,\n  .btn-link {\n    color: @gray-darker;\n    font-size: (@font-size-base + 4);\n    line-height: 1;\n    padding: 4px (@grid-gutter-width/4);\n    margin-left: (@grid-gutter-width/(-4));\n    margin-right: (@grid-gutter-width/(-4));\n    &:active,\n    &:focus,\n    &:hover {\n      color: @link-color;\n    }\n  }\n  &.btn-group { margin-left: (@grid-gutter-width/4); }\n  .dropdown-menu {\n    left: -15px;\n    margin-top: 11px;\n    &.dropdown-menu-right {\n      left: auto;\n      right: -15px;\n      &:after,\n      &:before {\n        left: auto;\n        right: 6px;\n      }\n    }\n    &:after,\n    &:before {\n      border-bottom-color: @dropdown-border;\n      border-bottom-style: solid;\n      border-bottom-width: 10px;\n      border-left: 10px solid transparent;\n      border-right: 10px solid transparent;\n      content: \"\";\n      display: inline-block;\n      left: 6px;\n      position: absolute;\n      top: -11px;\n    }\n    &:after {\n      border-bottom-color: @dropdown-bg;\n      top: -10px;\n    }\n  }\n  &.dropup .dropdown-menu {\n    margin-bottom: 11px;\n    margin-top: 0;\n    &:after,\n    &:before {\n      border-bottom: none;\n      border-top-color: @dropdown-border;\n      border-top-style: solid;\n      border-top-width: 10px;\n      bottom: -11px;\n      top: auto;\n    }\n    &:after {\n      border-top-color: @dropdown-bg;\n      bottom: -10px;\n    }\n  }\n}\n","//\n// Forms\n// --------------------------------------------------\n.chars-remaining-pf span {\n  font-weight: 600;\n  padding-right: 5px;\n}\n\n.chars-warn-remaining-pf {\n  color: @brand-danger;\n}\n\n.fields-status-pf {\n  color: @color-pf-black-500;\n  margin-bottom: 15px;\n}\n\n.form-control {\n  &[disabled],\n  &[readonly],\n  fieldset[disabled] & {\n    .box-shadow(none);\n    color: @color-pf-black-500;\n    &:hover {\n      border-color: @input-border;\n    }\n  }\n  &:hover {\n    border-color: @input-border-hover;\n    .has-error & {\n      border-color: darken(@state-danger-text, 10%);\n    }\n    .has-success & {\n      border-color: darken(@state-success-text, 10%);\n    }\n    .has-warning & {\n      border-color: darken(@state-warning-text, 10%);\n    }\n  }\n}\n\n.has-error, .has-success, .has-warning {\n  .checkbox,\n  .checkbox-inline,\n  .control-label,\n  .radio,\n  .radio-inline,\n  &.checkbox label,\n  &.checkbox-inline label,\n  &.radio label,\n  &.radio-inline label {\n    color: @text-color;\n  }\n}\n\n.help-block {\n  margin-bottom: 0px;\n}\n\n.input-group .input-group-btn .btn {\n  .box-shadow(none);\n}\n\nlabel {\n  font-weight: 600;\n  &.required-pf:after {\n    color: @brand-danger;\n    content: \"*\";\n    margin-left: 3px;\n  }\n}\n\nspan.required-pf {\n  color: @brand-danger;\n}\n\n.fields-section-pf {\n  border-color: @color-pf-black-200;\n  border-style: solid;\n  border-width: 1px 0 0;\n  margin-top: 25px;\n  padding: 15px 0 0;\n}\n.fields-section-header-pf {\n  border: none;\n  font-size: @font-size-base;\n  margin: 0;\n  padding-right: @padding-large-horizontal;\n  width: auto;\n  .fa-angle-right {\n    cursor: pointer;\n    font-size: @font-size-large;\n    width: @font-size-large;\n  }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n  border-radius: 0;\n  font-size: 100%;\n  font-weight: 600;\n  h1 &,\n  h2 &,\n  h3 &,\n  h4 &,\n  h5 &,\n  h6 & {\n    font-size: 75%;\n  }\n}\n","//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n  border-top: 1px solid @list-group-top-border;\n  .list-group-item:first-child {\n    border-top: 0;\n  }\n}\n.list-group-item {\n  border-left: 0;\n  border-right: 0;\n}\n\n.list-group-item-heading {\n  font-weight: 600;\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n  background-color: @color-pf-black-150;\n  border-bottom: none;\n  padding: @modal-title-padding-vertical @modal-title-padding-horizontal;\n}\n// Close icon\n.modal-header .close {\n  margin-top: 2px;\n}\n\n// Title text within header\n.modal-title {\n  font-size: 13px;\n  font-weight: 700;\n}\n\n// Footer (for actions)\n.modal-footer {\n  border-top: none;\n  margin-top: 15px;\n  padding: (@modal-inner-padding - 1) @modal-inner-padding @modal-inner-padding;\n  > .btn {\n    padding-left: 10px;\n    padding-right: 10px;\n    > .fa-angle-left {\n      margin-right: 5px;\n    }\n    > .fa-angle-right {\n      margin-left: 5px;\n    }\n  }\n}\n","//\n// Pager\n// --------------------------------------------------\n\n.pager {\n  li {\n    > a,\n    > span {\n      .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n      color: @gray-pf;\n      font-weight: 600;\n      line-height: 22px;\n      padding: 2px 14px;\n      > .i {\n        font-size: 18px;\n        vertical-align: top;\n        margin: 2px 0;\n      }\n    }\n    a:active {\n      background-image: none;\n      .box-shadow(inset 0 3px 5px fade(@color-pf-black, 12.5%));\n      outline: 0;\n    }\n  }\n  .disabled {\n    > a,\n    > a:hover,\n    > a:focus,\n    > a:active,\n    > span {\n      background: @pagination-bg;\n      .box-shadow(none);\n      color: @pager-disabled-color;\n      cursor: not-allowed;\n    }\n  }\n  .next {\n     > a,\n     > span {\n       > .i {\n          margin-left: 5px;\n       }\n     }\n  }\n  .previous {\n     > a,\n     > span {\n       > .i {\n          margin-right: 5px;\n       }\n     }\n  }\n}\n\n.pager-sm {\n  li {\n    > a,\n    > span {\n      font-weight: 400;\n      line-height: 16px;\n      padding: 1px 10px;\n      > .i {\n        font-size: 12px;\n      }\n    }\n  }\n}\n","//\n// Pagination\n// --------------------------------------------------\n\n.pagination {\n  > li {\n    > a,\n    > span {\n      .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n      cursor: default;\n      font-weight: 600;\n      padding: @padding-base-vertical @padding-large-horizontal;\n      > .i {\n        font-size: 15px;\n        vertical-align: top;\n        margin: 2px 0;\n      }\n    }\n  }\n  > li > a,\n  > li > span {\n    &:active {\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n    }\n  }\n  > .active > a,\n  > .active > span {\n    &,\n    &:hover,\n    &:focus {\n      background-color: @btn-default-bg;\n      border-color: @pagination-border;\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n      color: @btn-default-color;\n      #gradient > .vertical(@btn-default-bg-img-start; @btn-default-bg-img-stop);\n    }\n  }\n  > .disabled {\n    > span,\n    > span:hover,\n    > span:focus,\n    > a,\n    > a:hover,\n    > a:focus {\n      .box-shadow(none);\n      cursor: not-allowed;\n      #gradient > .vertical(@btn-default-bg-img-start; @btn-default-bg-img-stop);\n    }\n  }\n}\n\n.pagination-sm {\n  .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n  > li {\n    > a,\n    > span {\n      font-weight: 400;\n      > .i {\n        font-size: 12px;\n        margin-top: 2px;\n      }\n    }\n  }\n}\n\n.content-view-pf-pagination {\n  background-color: @table-bg-accent;\n  border: 1px solid @table-border-color;\n  display: flex;\n  flex-wrap: wrap;\n  justify-content: space-between;\n  &.table-view-pf-pagination {\n    border-top: none;\n  }\n  .form-group {\n    align-items: baseline;\n    display: flex;\n    flex-grow: 1;\n    float: left; //IE9 fallback\n    @supports (display: flex) {\n      float: none;\n    }\n    margin: 5px;\n    &:last-child {\n      justify-content: flex-end; // if pagination controls wrap, pagination buttons stay on the right\n      float: right; //IE9 fallback\n      @supports (display: flex) {\n        float: none;\n      }\n    }\n    .pagination-pf-pagesize.bootstrap-select.btn-group,\n    .pagination-pf-pagesize.btn-group {\n      display: flex;\n      float: none;\n      margin-bottom: 0;\n      margin-left: 0;\n      margin-right: 5px;\n      width: auto;\n    }\n    .dropdown-menu {\n      min-width: auto;\n    }\n  }\n  .pagination-pf-page {\n    margin-left: 10px;\n    margin-right: 5px;\n    padding: 0 2px 2px;\n    text-align: right;\n    width: 2.5em;\n  }\n  .pagination {\n    display: flex;\n    margin: 0 0 0 10px;\n    a {\n      float: none;\n      @supports (display: flex) {\n        display: block;\n      }\n    }\n  }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n.panel-title {\n  font-weight: 700;\n}\n\n//\n// Collapsable panels (aka, accordion)\n// --------------------------------------------------\n\n.panel-group {\n  .panel {\n    color: @gray-pf;\n    + .panel {\n      margin-top: -1px;\n    }\n  }\n  .panel-default {\n    border-color: @panel-default-border-color;\n    border-top-color: @panel-default-border-color;\n    .panel-heading {\n      #gradient > .vertical(@btn-default-bg-img-start, @btn-default-bg-img-stop);\n      + .panel-collapse .panel-body {\n        border-top: 1px solid @panel-inner-border;\n      }\n    }\n  }\n\n  .panel-info {\n    border-color: @panel-info-border;\n    .panel-heading {\n      background-color: @panel-group-pf-info-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-info-border;\n    }\n  }\n  .panel-primary {\n    border-color: @panel-primary-border;\n    .panel-heading {\n      background-color: @panel-group-pf-primary-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-primary-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-primary-border;\n    }\n  }\n  .panel-success {\n    border-color: @panel-success-border;\n    .panel-heading {\n      background-color: @panel-group-pf-success-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-success-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-success-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-success-border;\n    }\n  }\n  .panel-warning {\n    border-color: @panel-warning-border;\n    .panel-heading {\n      background-color: @panel-group-pf-warning-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-warning-border;\n    }\n    + .panel-success {\n      border-top-color: @panel-warning-border;\n    }\n  }\n  .panel-danger {\n    border-color: @panel-danger-border;\n    .panel-heading {\n      background-color: @panel-group-pf-danger-heading-bg;\n    }\n    + .panel-default {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-info {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-primary {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-success {\n      border-top-color: @panel-danger-border;\n    }\n    + .panel-warning {\n      border-top-color: @panel-danger-border;\n    }\n  }\n  .panel-title {\n    font-weight: 500;\n    line-height: 1;\n    > a {\n      color: @gray-pf;\n      font-weight: @btn-font-weight;\n      &:before {\n        content: \"\\f107\";\n        display: inline-block;\n        font-family: @icon-font-name-fa;\n        font-size: 13px;\n        margin-right: 5px;\n        text-align: center;\n        vertical-align: 0;\n        width: 8px;\n      }\n      &:focus {\n        outline: none;\n        text-decoration: none;\n      }\n      &:hover {\n        text-decoration: none;\n      }\n      &.collapsed:before {\n        content: \"\\f105\";\n      }\n    }\n  }\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n.popover {\n  .box-shadow(0 2px 2px fade(@color-pf-black, 8%));\n  padding: 0;\n}\n\n.popover-content {\n  color: @gray-pf;\n  line-height: 18px;\n  padding: 10px 14px;\n}\n\n.popover-title {\n  border-bottom: none;\n  border-radius: 0;\n  color: @gray-pf;\n  font-size: (@font-size-base + 1);\n  font-weight: 700;\n  min-height: 34px;\n  .close {\n    height: 22px;\n    position: absolute;\n    right: 8px;\n    top: 6px;\n  }\n  &.closable {\n    padding-right: 30px;\n  }\n}\n","//\n// Progress Bar\n// --------------------------------------------------\n\n@keyframes progress-bar-stripes {\n  from  { background-position: 0 0; }\n  to    { background-position: 40px 0; }\n}\n\n.progress {\n  .box-shadow(inset 0 0 1px fade(@color-pf-black, 25%));\n  &.progress-label-left,\n  &.progress-label-top-right {\n    overflow: visible;\n    position: relative;\n  }\n  &.progress-label-left {\n    margin-left: 40px;\n  }\n  &.progress-sm {\n    height: @progress-sm;\n    margin-bottom: @progress-sm;\n  }\n  &.progress-xs {\n    height: @progress-xs;\n    margin-bottom: @progress-xs;\n  }\n  td > &:first-child:last-child {\n    margin-bottom: 0;\n    margin-top: 3px;\n  }\n}\n\n.progress-bar {\n  box-shadow: none;\n  .progress-label-left & span,\n  .progress-label-right & span,\n  .progress-label-top-right & span {\n    color: @text-color;\n    position: absolute;\n    text-align: right;\n  }\n  .progress-label-left & span {\n    font-size: @font-size-large;\n    left: -40px;\n    top: 0;\n    width: 35px;\n  }\n  .progress-label-right & span,\n  .progress-label-top-right & span {\n    font-size: @font-size-small;\n    overflow: hidden;\n    right: 0;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    strong {\n      font-weight: 600;\n    }\n  }\n  .progress-label-right & span {\n    max-width: @progress-description-label-width;\n    top: 0;\n  }\n  .progress-label-top-right & span {\n    max-width: 47%;\n    top: (-(@line-height-computed * 1.5)); // -30px\n  }\n  .progress-label-left.progress-sm & span,\n  .progress-label-top-right.progress-sm & span {\n    font-size: @font-size-base;\n  }\n  .progress-sm & {\n    line-height: @progress-sm;\n  }\n  .progress-xs & {\n    line-height: @progress-xs;\n  }\n}\n\n.progress-bar-remaining {\n  background: transparent;\n}\n\n.progress-container {\n  position: relative;\n  &.progress-description-left {\n    padding-left :(@progress-description-label-width + 5);\n  }\n  &.progress-label-right {\n    padding-right :(@progress-description-label-width + 5);\n  }\n}\n\n.progress-description {\n  margin-bottom: (@line-height-computed / 2); // 10px\n  max-width: 52%;\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  .count {\n    font-size: (@font-size-base * 1.667); // 20px\n    font-weight: 300;\n    line-height: 1;\n    margin-right: 5px;\n  }\n  .fa,\n  .pficon {\n    font-size: 14px;\n    margin-right: 3px;\n  }\n  .progress-description-left & {\n    left: 0;\n    margin-bottom: 0;\n    max-width: @progress-description-label-width;\n    position: absolute;\n    top: 0;\n  }\n  .tooltip {\n    white-space: normal;\n  }\n}\n","//\n// Tables\n// --------------------------------------------------\n\n.table {\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        padding: @table-cell-padding-top @table-cell-padding @table-cell-padding-bottom;\n        > a:hover {\n          text-decoration: none;\n        }\n      }\n      > th {\n        font-family: \"Open Sans\";\n        font-style: normal;\n        font-weight: 600;\n      }\n    }\n  }\n  > thead {\n    background-clip: padding-box;\n    background-color: @color-pf-black-150;\n    #gradient > .vertical(@start-color: @color-pf-black-100; @end-color: @color-pf-black-200; @start-percent: 0%; @end-percent: 100%);\n  }\n}\n\n.table-bordered {\n  border: 1px solid @table-border-color;\n  > thead,\n  > tbody,\n  > tfoot {\n    > tr {\n      > th,\n      > td {\n        border: 1px solid @table-border-color;\n      }\n    }\n  }\n  > thead > tr {\n    > th,\n    > td {\n      border-bottom-width: 1px;\n    }\n  }\n}\n\n.table-striped {\n  > tbody > tr {\n    &:nth-of-type(even) {\n      background-color: @table-bg-accent;\n    }\n    &:nth-of-type(odd) {\n      background-color: transparent;\n    }\n  }\n}\n\n.table-hover {\n  > tbody > tr:hover {\n    > td,\n    > th {\n      background-color: @table-bg-hover;\n      border-bottom-color: @table-border-hover;\n    }\n  }\n}\n\n.table-treegrid {\n  span.indent {\n    margin-left: 10px;\n    margin-right: 10px;\n  }\n  span.icon {\n    display: inline-block;\n    font-size: 13px;\n    margin-right: 5px;\n    min-width: 10px;\n    text-align: center;\n  }\n  span.expand-icon, span.collapse-icon {\n    cursor: pointer;\n  }\n  > tbody > tr.odd {\n    background-color: @table-bg-accent;\n  }\n}\n","//\n// Tabs\n// --------------------------------------------------\n\n.nav-tabs {\n  font-size: @font-size-large;\n  > li {\n    > a {\n      color: @nav-tabs-color;\n      margin-right: -1px;\n      padding-bottom: 5px;\n      padding-top: 5px;\n      &:active,\n      &:focus,\n      &:hover {\n        background: transparent;\n        border-color: @nav-tabs-border-color;\n        color: @gray-darker;\n      }\n    }\n    > .dropdown-menu {\n      border-top: 0;\n      border-color: @nav-tabs-border-color;\n      &.pull-right {\n        right: -1px;\n      }\n    }\n  }\n  + .nav-tabs-pf, &.nav-tabs-pf-secondary {\n    font-size: @font-size-base;\n    > li:first-child > a {\n      padding-left: 15px;\n      &:before {\n        left: 15px !important;\n      }\n    }\n  }\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: transparent;\n      border-color: @nav-tabs-border-color;\n    }\n  }\n}\n\n.nav-tabs-pf {\n  &.nav-justified {\n    @media (min-width: @grid-float-breakpoint) {\n      border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n    }\n    > li {\n      &:first-child > a {\n        padding-left: 15px;\n      }\n      > a {\n        border-bottom: 0;\n        &:before {\n          left: 0 !important;\n          right: 0 !important;\n        }\n      }\n    }\n  }\n  > li {\n    margin-bottom: 0;\n    &.active > a {\n      .tab-indicator(@background: @nav-tabs-active-link-hover-color);\n      &,\n      &:active,\n      &:focus,\n      &:hover {\n        background-color: transparent;\n        border: 0 !important;\n        color: @link-color;\n        &:before {\n          background: @nav-tabs-active-link-hover-color;\n        }\n      }\n    }\n    &:first-child {\n      > a {\n        padding-left: 0;\n        &:before {\n          left: 0 !important;\n        }\n      }\n    }\n    > a {\n      border: 0;\n      line-height: 1;\n      margin-right: 0;\n      padding-bottom: 10px;\n      padding-top: 10px;\n      &:active,\n      &:focus,\n      &:hover {\n        .tab-indicator()\n      }\n    }\n    > .dropdown-menu {\n      left: 15px;\n      margin-top: 1px;\n      &.pull-right {\n        left: auto;\n        right: 15px;\n      }\n    }\n  }\n  .open > a {\n    &,\n    &:hover,\n    &:focus {\n      background-color: transparent;\n    }\n  }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n// Base class\n.tooltip {\n  font-size: @tooltip-font-size;\n  line-height: 1.4;\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n  padding: 7px 12px;\n  text-align: left;\n}\n","//\n// Typography\n// --------------------------------------------------\n\nh1,\n.h1,\nh2,\n.h2 {\n  font-weight: 300;\n}\n\n.page-header .actions {\n  margin-top: 8px;\n  a > .pficon {\n    margin-right: 4px;\n  }\n}\n\n@media (min-width: @grid-float-breakpoint-max) {\n  .page-header-bleed-left {\n    margin-left: (-(@grid-gutter-width / 2));\n  }\n  .page-header-bleed-right {\n    margin-right: ((-@grid-gutter-width / 2));\n    .actions {\n      margin-right: (@grid-gutter-width / 2);\n    }\n  }\n}\n"]}
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue.min.css b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue.min.css
new file mode 100644
index 0000000..97bdd55
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue.min.css
@@ -0,0 +1,9 @@
+@font-face{font-family:"Open Sans";font-style:normal;font-weight:300;src:url(../fonts/OpenSans-Light-webfont.eot);src:local("Open Sans Light"),local("OpenSans-Light"),url(../fonts/OpenSans-Light-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-Light-webfont.woff2) format("woff2"),url(../fonts/OpenSans-Light-webfont.woff) format("woff"),url(../fonts/OpenSans-Light-webfont.ttf) format("truetype"),url(../fonts/OpenSans-Light-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:400;src:url(../fonts/OpenSans-Regular-webfont.eot);src:local("Open Sans"),local("OpenSans"),url(../fonts/OpenSans-Regular-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-Regular-webfont.woff2) format("woff2"),url(../fonts/OpenSans-Regular-webfont.woff) format("woff"),url(../fonts/OpenSans-Regular-webfont.ttf) format("truetype"),url(../fonts/OpenSans-Regular-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:300;src:url(../fonts/OpenSans-LightItalic-webfont.eot);src:local("Open Sans Light Italic"),local("OpenSansLight-Italic"),url(../fonts/OpenSans-LightItalic-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-LightItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans-LightItalic-webfont.woff) format("woff"),url(../fonts/OpenSans-LightItalic-webfont.ttf) format("truetype"),url(../fonts/OpenSans-LightItalic-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:400;src:url(../fonts/OpenSans-Italic-webfont.eot);src:local("Open Sans Italic"),local("OpenSans-Italic"),url(../fonts/OpenSans-Italic-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-Italic-webfont.woff2) format("woff2"),url(../fonts/OpenSans-Italic-webfont.woff) format("woff"),url(../fonts/OpenSans-Italic-webfont.ttf) format("truetype"),url(../fonts/OpenSans-Italic-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:600;src:url(../fonts/OpenSans-Semibold-webfont.eot);src:local("Open Sans Semibold"),local("OpenSans-Semibold-webfont"),url(../fonts/OpenSans-Semibold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-Semibold-webfont.woff2) format("woff2"),url(../fonts/OpenSans-Semibold-webfont.woff) format("woff"),url(../fonts/OpenSans-Semibold-webfont.ttf) format("truetype"),url(../fonts/OpenSans-Semibold-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:600;src:url(../fonts/OpenSans-SemiboldItalic-webfont.eot);src:local("Open Sans Semibold Italic"),local("OpenSans-SemiboldItalic-webfont"),url(../fonts/OpenSans-SemiboldItalic-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-SemiboldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans-SemiboldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans-SemiboldItalic-webfont.ttf) format("truetype"),url(../fonts/OpenSans-SemiboldItalic-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:700;src:url(../fonts/OpenSans-Bold-webfont.eot);src:local("Open Sans Bold"),local("OpenSans-Bold"),url(../fonts/OpenSans-Bold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-Bold-webfont.woff2) format("woff2"),url(../fonts/OpenSans-Bold-webfont.woff) format("woff"),url(../fonts/OpenSans-Bold-webfont.ttf) format("truetype"),url(../fonts/OpenSans-Bold-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:700;src:url(../fonts/OpenSans-BoldItalic-webfont.eot);src:local("Open Sans Bold Italic"),local("OpenSans-BoldItalic"),url(../fonts/OpenSans-BoldItalic-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-BoldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans-BoldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans-BoldItalic-webfont.ttf) format("truetype"),url(../fonts/OpenSans-BoldItalic-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:italic;font-weight:800;src:url(../fonts/OpenSans-ExtraBoldItalic-webfont.eot);src:local("Open Sans Extrabold Italic"),local("OpenSans-ExtraboldItalic"),url(../fonts/OpenSans-ExtraBoldItalic-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-ExtraBoldItalic-webfont.woff2) format("woff2"),url(../fonts/OpenSans-ExtraBoldItalic-webfont.woff) format("woff"),url(../fonts/OpenSans-ExtraBoldItalic-webfont.ttf) format("truetype"),url(../fonts/OpenSans-ExtraBoldItalic-webfont.svg#OpenSans) format("svg")}@font-face{font-family:"Open Sans";font-style:normal;font-weight:800;src:url(../fonts/OpenSans-ExtraBold-webfont.eot);src:local("Open Sans Extrabold"),local("OpenSans-Extrabold"),url(../fonts/OpenSans-ExtraBold-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/OpenSans-ExtraBold-webfont.woff2) format("woff2"),url(../fonts/OpenSans-ExtraBold-webfont.woff) format("woff"),url(../fonts/OpenSans-ExtraBold-webfont.ttf) format("truetype"),url(../fonts/OpenSans-ExtraBold-webfont.svg#OpenSans) format("svg")}/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{background:0 0!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:"Open Sans",Helvetica,Arial,sans-serif;font-size:12px;line-height:1.66666667;color:#363636;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#0088ce;text-decoration:none}a:focus,a:hover{color:#00659c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:1px}.img-thumbnail{padding:4px;line-height:1.66666667;background-color:#fff;border:1px solid #ddd;border-radius:1px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #f1f1f1}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#9c9c9c}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:24px}.h2,h2{font-size:22px}.h3,h3{font-size:16px}.h4,h4{font-size:15px}.h5,h5{font-size:13px}.h6,h6{font-size:11px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:13px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:18px}}.small,small{font-size:91%}.mark,mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#9c9c9c}.text-primary{color:#39a5dc}a.text-primary:focus,a.text-primary:hover{color:#228bc0}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#ec7a08}a.text-warning:focus,a.text-warning:hover{color:#bb6106}.text-danger{color:#c00}a.text-danger:focus,a.text-danger:hover{color:#900}.bg-primary{color:#fff;background-color:#39a5dc}a.bg-primary:focus,a.bg-primary:hover{background-color:#228bc0}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #f1f1f1}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.66666667}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #9c9c9c}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:15px;border-left:5px solid #f1f1f1}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.66666667;color:#9c9c9c}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #f1f1f1;border-left:0;text-align:right}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.66666667}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,monospace}code{padding:2px 4px;font-size:90%;color:#004368;background-color:#def3ff;border-radius:1px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:1px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:11px;line-height:1.66666667;word-break:break-all;word-wrap:break-word;color:#363636;background-color:#fafafa;border:1px solid #ccc;border-radius:1px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:20px;padding-right:20px}@media (min-width:768px){.container{width:760px}}@media (min-width:992px){.container{width:980px}}@media (min-width:1200px){.container{width:1180px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:20px;padding-right:20px}.row{margin-left:-20px;margin-right:-20px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:20px;padding-right:20px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:10px;padding-bottom:10px;color:#9c9c9c;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:10px;line-height:1.66666667;vertical-align:top;border-top:1px solid #d1d1d1}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #d1d1d1}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #d1d1d1}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #d1d1d1}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #d1d1d1}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f5f5f5}.table-hover>tbody>tr:hover{background-color:#def3ff}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#def3ff}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#c4eaff}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #d1d1d1}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:18px;line-height:inherit;color:#363636;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:3px;font-size:12px;line-height:1.66666667;color:#363636}.form-control{display:block;width:100%;height:26px;padding:2px 6px;font-size:12px;line-height:1.66666667;color:#363636;background-color:#fff;background-image:none;border:1px solid #bbb;border-radius:1px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#0088ce;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,136,206,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,136,206,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control:-moz-placeholder{color:#999;font-style:italic}.form-control::-moz-placeholder{color:#999;font-style:italic;opacity:1}.form-control:-ms-input-placeholder{color:#999;font-style:italic}.form-control::-webkit-input-placeholder{color:#999;font-style:italic}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#f5f5f5;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:26px}.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:22px}.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:33px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{padding-top:3px;padding-bottom:3px;margin-bottom:0;min-height:32px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:22px;padding:2px 6px;font-size:11px;line-height:1.5;border-radius:1px}select.input-sm{height:22px;line-height:22px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:22px;padding:2px 6px;font-size:11px;line-height:1.5;border-radius:1px}.form-group-sm select.form-control{height:22px;line-height:22px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:22px;min-height:31px;padding:3px 6px;font-size:11px;line-height:1.5}.input-lg{height:33px;padding:6px 10px;font-size:14px;line-height:1.3333333;border-radius:1px}select.input-lg{height:33px;line-height:33px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:33px;padding:6px 10px;font-size:14px;line-height:1.3333333;border-radius:1px}.form-group-lg select.form-control{height:33px;line-height:33px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:33px;min-height:34px;padding:7px 10px;font-size:14px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:32.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:26px;height:26px;line-height:26px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:33px;height:33px;line-height:33px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:22px;height:22px;line-height:22px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#ec7a08}.has-warning .form-control{border-color:#ec7a08;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#bb6106;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #faad60;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #faad60}.has-warning .input-group-addon{color:#ec7a08;border-color:#ec7a08;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#ec7a08}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#c00}.has-error .form-control{border-color:#c00;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#900;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #f33;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #f33}.has-error .input-group-addon{color:#c00;border-color:#c00;background-color:#f2dede}.has-error .form-control-feedback{color:#c00}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#767676}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:3px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:23px}.form-horizontal .form-group{margin-left:-20px;margin-right:-20px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:3px}}.form-horizontal .has-feedback .form-control-feedback{right:20px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:7px;font-size:14px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:3px;font-size:11px}}.btn{display:inline-block;margin-bottom:0;font-weight:600;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:2px 6px;font-size:12px;line-height:1.66666667;border-radius:1px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#4d5258;text-decoration:none}.btn.active,.btn:active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#4d5258;background-color:#f1f1f1;border-color:#bbb}.btn-default.focus,.btn-default:focus{color:#4d5258;background-color:#d8d8d8;border-color:#7b7b7b}.btn-default:hover{color:#4d5258;background-color:#d8d8d8;border-color:#9c9c9c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#4d5258;background-color:#d8d8d8;border-color:#9c9c9c}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#4d5258;background-color:#c6c6c6;border-color:#7b7b7b}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#f1f1f1;border-color:#bbb}.btn-default .badge{color:#f1f1f1;background-color:#4d5258}.btn-primary{color:#fff;background-color:#0088ce;border-color:#00659c}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#00669b;border-color:#00121d}.btn-primary:hover{color:#fff;background-color:#00669b;border-color:#003d5f}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#00669b;border-color:#003d5f}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#004f77;border-color:#00121d}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#0088ce;border-color:#00659c}.btn-primary .badge{color:#0088ce;background-color:#fff}.btn-success{color:#fff;background-color:#3f9c35;border-color:#37892f}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#307628;border-color:#112a0e}.btn-success:hover{color:#fff;background-color:#307628;border-color:#255b1f}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#307628;border-color:#255b1f}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#255b1f;border-color:#112a0e}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#3f9c35;border-color:#37892f}.btn-success .badge{color:#3f9c35;background-color:#fff}.btn-info{color:#fff;background-color:#00659c;border-color:#005483}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#004469;border-color:#000203}.btn-info:hover{color:#fff;background-color:#004469;border-color:#002d45}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#004469;border-color:#002d45}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#002d45;border-color:#000203}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#00659c;border-color:#005483}.btn-info .badge{color:#00659c;background-color:#fff}.btn-warning{color:#fff;background-color:#ec7a08;border-color:#d36d07}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#bb6106;border-color:#582e03}.btn-warning:hover{color:#fff;background-color:#bb6106;border-color:#984f05}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#bb6106;border-color:#984f05}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#984f05;border-color:#582e03}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#ec7a08;border-color:#d36d07}.btn-warning .badge{color:#ec7a08;background-color:#fff}.btn-danger{color:#fff;background-color:#a30000;border-color:#8b0000}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#700000;border-color:#0b0000}.btn-danger:hover{color:#fff;background-color:#700000;border-color:#4e0000}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#700000;border-color:#4e0000}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#4c0000;border-color:#0b0000}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#a30000;border-color:#8b0000}.btn-danger .badge{color:#a30000;background-color:#fff}.btn-link{color:#0088ce;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#00659c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#9c9c9c;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:6px 10px;font-size:14px;line-height:1.3333333;border-radius:1px}.btn-group-sm>.btn,.btn-sm{padding:2px 6px;font-size:11px;line-height:1.5;border-radius:1px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:11px;line-height:1.5;border-radius:1px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:0 dashed;border-right:0 solid transparent;border-left:0 solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:12px;text-align:left;background-color:#fff;border:1px solid #bbb;border-radius:1px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{margin:9px 0;background-color:#ededed;height:1px;margin:4px 1px;overflow:hidden}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.66666667;color:#363636;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#4d5258;background-color:#def3ff}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#0088ce}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#9c9c9c}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:11px;line-height:1.66666667;color:#9c9c9c;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:0 dashed;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:0 0 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 0 0}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:1px;border-top-left-radius:1px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:33px;padding:6px 10px;font-size:14px;line-height:1.3333333;border-radius:1px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:33px;line-height:33px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:22px;padding:2px 6px;font-size:11px;line-height:1.5;border-radius:1px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:22px;line-height:22px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:2px 6px;font-size:12px;font-weight:400;line-height:1;color:#363636;text-align:center;background-color:#f1f1f1;border:1px solid #bbb;border-radius:1px}.input-group-addon.input-sm{padding:2px 6px;font-size:11px;border-radius:1px}.input-group-addon.input-lg{padding:6px 10px;font-size:14px;border-radius:1px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#f1f1f1}.nav>li.disabled>a{color:#9c9c9c}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#9c9c9c;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#f1f1f1;border-color:#0088ce}.nav .nav-divider{margin:9px 0;background-color:#e5e5e5;background-color:#ededed;height:1px;margin:4px 1px;overflow:hidden}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ededed}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.66666667;border:1px solid transparent;border-radius:1px 1px 0 0}.nav-tabs>li>a:hover{border-color:transparent transparent #ededed}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#0088ce;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:1px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ededed}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ededed;border-radius:1px 1px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:1px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#39a5dc}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:1px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ededed}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ededed;border-radius:1px 1px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:1px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:20px;padding-left:20px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-20px;margin-left:-20px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 20px;font-size:14px;line-height:20px;height:50px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-20px}}.navbar-toggle{position:relative;float:right;margin-right:20px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:1px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -20px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{margin-left:-20px;margin-right:-20px;padding:10px 20px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin-top:12px;margin-bottom:12px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:1px;border-top-left-radius:1px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:12px;margin-bottom:12px}.navbar-btn.btn-sm{margin-top:14px;margin-bottom:14px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:20px;margin-right:20px}}@media (min-width:768px){.navbar-left{float:left!important;float:left}.navbar-right{float:right!important;float:right;margin-right:-20px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#c2c2c2}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#c2c2c2}.navbar-inverse .navbar-nav>li>a{color:#c2c2c2}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#c2c2c2}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#c2c2c2}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#c2c2c2}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:transparent;border-radius:1px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"\f105\00a0";padding:0 5px;color:#4d5258}.breadcrumb>.active{color:#4d5258}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:1px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:2px 6px;line-height:1.66666667;text-decoration:none;color:#0088ce;background-color:#f5f5f5;border:1px solid #bbb;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#00659c;background-color:#ededed;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#39a5dc;border-color:#39a5dc;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#9c9c9c;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:6px 10px;font-size:14px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pagination-sm>li>a,.pagination-sm>li>span{padding:2px 6px;font-size:11px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#f5f5f5;border:1px solid #bbb;border-radius:0}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#ededed}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#8b8d8f;background-color:#f5f5f5;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#9c9c9c}.label-default[href]:focus,.label-default[href]:hover{background-color:#838383}.label-primary{background-color:#39a5dc}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#228bc0}.label-success{background-color:#3f9c35}.label-success[href]:focus,.label-success[href]:hover{background-color:#307628}.label-info{background-color:#00659c}.label-info[href]:focus,.label-info[href]:hover{background-color:#004469}.label-warning{background-color:#ec7a08}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#bb6106}.label-danger{background-color:#c00}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#900}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:11px;font-weight:700;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#9c9c9c;border-radius:1px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#0088ce;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#f1f1f1}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:18px;font-weight:200}.jumbotron>hr{border-top-color:#d8d8d8}.container .jumbotron,.container-fluid .jumbotron{border-radius:1px;padding-left:20px;padding-right:20px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:54px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.66666667;background-color:#fff;border:1px solid #ddd;border-radius:1px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-left:auto;margin-right:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#0088ce}.thumbnail .caption{padding:9px;color:#363636}.alert{padding:11px;margin-bottom:20px;border:1px solid transparent;border-radius:1px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:500}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:31px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#e9f4e9;border-color:#3f9c35;color:#363636}.alert-success hr{border-top-color:#37892f}.alert-success .alert-link{color:#1d1d1d}.alert-info{background-color:#f5f5f5;border-color:#8b8d8f;color:#363636}.alert-info hr{border-top-color:#7e8082}.alert-info .alert-link{color:#1d1d1d}.alert-warning{background-color:#fdf2e5;border-color:#ec7a08;color:#363636}.alert-warning hr{border-top-color:#d36d07}.alert-warning .alert-link{color:#1d1d1d}.alert-danger{background-color:#ffe6e6;border-color:#c00;color:#363636}.alert-danger hr{border-top-color:#b30000}.alert-danger .alert-link{color:#1d1d1d}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#ededed;border-radius:1px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0%;height:100%;font-size:11px;line-height:20px;color:#fff;text-align:center;background-color:#39a5dc;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%);background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#3f9c35}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%)}.progress-bar-info{background-color:#00659c}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%)}.progress-bar-warning{background-color:#ec7a08}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%)}.progress-bar-danger{background-color:#c00}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(3,3,3,.15) 25%,rgba(3,3,3,.15) 26%,transparent 27%,transparent 49%,rgba(3,3,3,.15) 50%,rgba(3,3,3,.15) 51%,transparent 52%,transparent 74%,rgba(3,3,3,.15) 75%,rgba(3,3,3,.15) 76%,transparent 77%)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #f5f5f5}.list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{text-decoration:none;color:#555;background-color:#def3ff}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#f1f1f1;color:#9c9c9c;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#9c9c9c}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#39a5dc;border-color:#39a5dc}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#e6f4fb}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#ec7a08;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#ec7a08}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#ec7a08;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#ec7a08;border-color:#ec7a08}.list-group-item-danger{color:#c00;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#c00}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#c00;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#c00;border-color:#c00}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:1px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:0;border-top-left-radius:0}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:14px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #d1d1d1;border-bottom-right-radius:0;border-bottom-left-radius:0}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:0;border-top-left-radius:0}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:0}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:0}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:0;border-bottom-left-radius:0}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:0;border-bottom-right-radius:0}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:0}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:0}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #d1d1d1}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:1px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #d1d1d1}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #d1d1d1}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#363636;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#363636}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#39a5dc}.panel-primary>.panel-heading{color:#fff;background-color:#39a5dc;border-color:#39a5dc}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#39a5dc}.panel-primary>.panel-heading .badge{color:#39a5dc;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#39a5dc}.panel-success{border-color:#3f9c35}.panel-success>.panel-heading{color:#fff;background-color:#3f9c35;border-color:#3f9c35}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#3f9c35}.panel-success>.panel-heading .badge{color:#3f9c35;background-color:#fff}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#3f9c35}.panel-info{border-color:#00659c}.panel-info>.panel-heading{color:#fff;background-color:#00659c;border-color:#00659c}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#00659c}.panel-info>.panel-heading .badge{color:#00659c;background-color:#fff}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#00659c}.panel-warning{border-color:#ec7a08}.panel-warning>.panel-heading{color:#fff;background-color:#ec7a08;border-color:#ec7a08}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ec7a08}.panel-warning>.panel-heading .badge{color:#ec7a08;background-color:#fff}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ec7a08}.panel-danger{border-color:#c00}.panel-danger>.panel-heading{color:#fff;background-color:#c00;border-color:#c00}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#c00}.panel-danger>.panel-heading .badge{color:#c00;background-color:#fff}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#c00}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:1px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:1px}.well-sm{padding:9px;border-radius:1px}.close{float:right;font-size:18px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:1px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.in{opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.66666667}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.66666667;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:11px;opacity:0}.tooltip.in{opacity:.9}.tooltip.top{margin-top:-3px;padding:8px 0}.tooltip.right{margin-left:3px;padding:0 8px}.tooltip.bottom{margin-top:3px;padding:8px 0}.tooltip.left{margin-left:-3px;padding:0 8px}.tooltip-inner{max-width:220px;padding:3px 8px;color:#fff;text-align:center;background-color:#393f44;border-radius:1px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-8px;border-width:8px 8px 0;border-top-color:#393f44}.tooltip.top-left .tooltip-arrow{bottom:0;right:8px;margin-bottom:-8px;border-width:8px 8px 0;border-top-color:#393f44}.tooltip.top-right .tooltip-arrow{bottom:0;left:8px;margin-bottom:-8px;border-width:8px 8px 0;border-top-color:#393f44}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-8px;border-width:8px 8px 8px 0;border-right-color:#393f44}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-8px;border-width:8px 0 8px 8px;border-left-color:#393f44}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-8px;border-width:0 8px 8px;border-bottom-color:#393f44}.tooltip.bottom-left .tooltip-arrow{top:0;right:8px;margin-top:-8px;border-width:0 8px 8px;border-bottom-color:#393f44}.tooltip.bottom-right .tooltip-arrow{top:0;left:8px;margin-top:-8px;border-width:0 8px 8px;border-bottom-color:#393f44}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:220px;padding:1px;font-family:"Open Sans",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.66666667;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid #bbb;border-radius:1px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:12px;background-color:#f5f5f5;border-bottom:1px solid #e8e8e8;border-radius:0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:#bbb;bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:#bbb}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:#bbb;top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:#bbb}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-moz-transition:-moz-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{content:" ";display:table}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}/*!
+ *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
+ *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
+ */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.7.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(../fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.text-overflow-pf{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.alert{border-width:1px;padding-left:47px;padding-right:14px;position:relative;word-wrap:break-word}.alert .alert-link{color:#0088ce}.alert .alert-link:hover{color:#00659c}.alert>.btn.pull-right{margin-top:-3px}.alert>.pficon{font-size:22px;position:absolute;left:13px;top:10px}.alert .close{opacity:.85}.alert .close:focus,.alert .close:hover{opacity:1}.alert .pficon-info{color:#4d5258}.alert-dismissable{padding-right:28px}.alert-dismissable .close{right:-13px;top:1px}.badge{margin-left:6px}.nav-pills>li>a>.badge{margin-left:6px}.breadcrumb{padding-left:0}.breadcrumb>.active strong{font-weight:600}.breadcrumb>li{display:inline}.breadcrumb>li+li:before{color:#9c9c9c;content:"\f105";font-family:FontAwesome;font-size:11px;padding:0 9px 0 7px}.btn{-webkit-box-shadow:0 2px 3px rgba(3,3,3,.1);box-shadow:0 2px 3px rgba(3,3,3,.1)}.btn:active{-webkit-box-shadow:inset 0 2px 8px rgba(3,3,3,.2);box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{background-color:#fafafa!important;background-image:none!important;border-color:#d1d1d1!important;color:#8b8d8f!important;opacity:1}.btn.disabled:active,.btn[disabled]:active,fieldset[disabled] .btn:active{-webkit-box-shadow:none;box-shadow:none}.btn.disabled.btn-link,.btn[disabled].btn-link,fieldset[disabled] .btn.btn-link{background-color:transparent!important;border:0}.btn-danger{background-color:#a30000;background-image:-webkit-linear-gradient(top,#c00 0,#a30000 100%);background-image:-o-linear-gradient(top,#c00 0,#a30000 100%);background-image:linear-gradient(to bottom,#c00 0,#a30000 100%);background-repeat:repeat-x;border-color:#8b0000;color:#fff}.btn-danger.active,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open .dropdown-toggle.btn-danger{background-color:#a30000;background-image:none;border-color:#8b0000;color:#fff}.btn-danger.active,.btn-danger:active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open .dropdown-toggle.btn-danger.focus,.open .dropdown-toggle.btn-danger:focus,.open .dropdown-toggle.btn-danger:hover{background-color:#8a0000;border-color:#670000}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#a30000;border-color:#8b0000}.btn-default{background-color:#f1f1f1;background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258}.btn-default.active,.btn-default:active,.btn-default:focus,.btn-default:hover,.open .dropdown-toggle.btn-default{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.btn-default.active,.btn-default:active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open .dropdown-toggle.btn-default.focus,.open .dropdown-toggle.btn-default:focus,.open .dropdown-toggle.btn-default:hover{background-color:#e5e5e5;border-color:#a9a9a9}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#f1f1f1;border-color:#bbb}.btn-link,.btn-link:active{-webkit-box-shadow:none;box-shadow:none}.btn-primary{background-color:#0088ce;background-image:-webkit-linear-gradient(top,#39a5dc 0,#0088ce 100%);background-image:-o-linear-gradient(top,#39a5dc 0,#0088ce 100%);background-image:linear-gradient(to bottom,#39a5dc 0,#0088ce 100%);background-repeat:repeat-x;border-color:#00659c;color:#fff}.btn-primary.active,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open .dropdown-toggle.btn-primary{background-color:#0088ce;background-image:none;border-color:#00659c;color:#fff}.btn-primary.active,.btn-primary:active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open .dropdown-toggle.btn-primary.focus,.open .dropdown-toggle.btn-primary:focus,.open .dropdown-toggle.btn-primary:hover{background-color:#0077b5;border-color:#004e78}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#0088ce;border-color:#00659c}.btn-group-xs .btn,.btn-group-xs>.btn,.btn-xs{font-weight:400}.caret{font-family:FontAwesome;font-weight:400;height:9px;position:relative;vertical-align:baseline;width:12px}.caret:before{bottom:0;content:"\f107";left:0;line-height:12px;position:absolute;text-align:center;top:-1px;right:0}.dropup .caret:before{content:"\f106"}.dropdown-toggle:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.dropdown-menu .divider{background-color:#ededed;height:1px;margin:4px 1px;overflow:hidden}.dropdown-menu>li>a{border-color:transparent;border-style:solid;border-width:1px 0;padding:1px 10px}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{border-color:#bee1f4}.dropdown-menu>li>a:active{background-color:#0088ce;border-color:#0088ce;color:#fff!important}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#0088ce!important;border-color:#0088ce!important}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{border-color:transparent}.dropdown-menu>.selected>a{background-color:#0088ce;border-color:#0088ce;color:#fff}.dropdown-menu>.selected>a small{color:rgba(255,255,255,.5)}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{border-color:transparent}.dropdown-header{padding-left:10px;padding-right:10px;text-transform:uppercase}.btn-group>.dropdown-menu,.dropdown>.dropdown-menu,.input-group-btn>.dropdown-menu{margin-top:-1px}.dropup .dropdown-menu{margin-bottom:-1px}.dropdown-submenu{position:relative}.dropdown-submenu:hover>a{background-color:#def3ff;border-color:#bee1f4}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropdown-submenu.pull-left{float:none!important}.dropdown-submenu.pull-left>.dropdown-menu{left:auto;margin-left:10px;right:100%}.dropdown-submenu>a{padding-right:20px!important}.dropdown-submenu>a:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:2px}.dropdown-submenu>.dropdown-menu{left:100%;margin-top:0;top:-6px}.dropup .dropdown-submenu>.dropdown-menu{bottom:-5px;top:auto}.open .dropdown-submenu.active>.dropdown-menu{display:block}.dropdown-kebab-pf .btn-link,.dropdown-kebab-pf.btn-group>.btn:first-child{color:#252525;font-size:16px;line-height:1;padding:4px 10px;margin-left:-10px;margin-right:-10px}.dropdown-kebab-pf .btn-link:active,.dropdown-kebab-pf .btn-link:focus,.dropdown-kebab-pf .btn-link:hover,.dropdown-kebab-pf.btn-group>.btn:first-child:active,.dropdown-kebab-pf.btn-group>.btn:first-child:focus,.dropdown-kebab-pf.btn-group>.btn:first-child:hover{color:#0088ce}.dropdown-kebab-pf.btn-group{margin-left:10px}.dropdown-kebab-pf .dropdown-menu{left:-15px;margin-top:11px}.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right{left:auto;right:-15px}.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:after,.dropdown-kebab-pf .dropdown-menu.dropdown-menu-right:before{left:auto;right:6px}.dropdown-kebab-pf .dropdown-menu:after,.dropdown-kebab-pf .dropdown-menu:before{border-bottom-color:#bbb;border-bottom-style:solid;border-bottom-width:10px;border-left:10px solid transparent;border-right:10px solid transparent;content:"";display:inline-block;left:6px;position:absolute;top:-11px}.dropdown-kebab-pf .dropdown-menu:after{border-bottom-color:#fff;top:-10px}.dropdown-kebab-pf.dropup .dropdown-menu{margin-bottom:11px;margin-top:0}.dropdown-kebab-pf.dropup .dropdown-menu:after,.dropdown-kebab-pf.dropup .dropdown-menu:before{border-bottom:none;border-top-color:#bbb;border-top-style:solid;border-top-width:10px;bottom:-11px;top:auto}.dropdown-kebab-pf.dropup .dropdown-menu:after{border-top-color:#fff;bottom:-10px}.chars-remaining-pf span{font-weight:600;padding-right:5px}.chars-warn-remaining-pf{color:#c00}.fields-status-pf{color:#8b8d8f;margin-bottom:15px}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{-webkit-box-shadow:none;box-shadow:none;color:#8b8d8f}.form-control[disabled]:hover,.form-control[readonly]:hover,fieldset[disabled] .form-control:hover{border-color:#bbb}.form-control:hover{border-color:#7dc3e8}.has-error .form-control:hover{border-color:#900}.has-success .form-control:hover{border-color:#2b542c}.has-warning .form-control:hover{border-color:#bb6106}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label,.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label,.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#363636}.help-block{margin-bottom:0}.input-group .input-group-btn .btn{-webkit-box-shadow:none;box-shadow:none}label{font-weight:600}label.required-pf:after{color:#c00;content:"*";margin-left:3px}span.required-pf{color:#c00}.fields-section-pf{border-color:#ededed;border-style:solid;border-width:1px 0 0;margin-top:25px;padding:15px 0 0}.fields-section-header-pf{border:none;font-size:12px;margin:0;padding-right:10px;width:auto}.fields-section-header-pf .fa-angle-right{cursor:pointer;font-size:14px;width:14px}.label{border-radius:0;font-size:100%;font-weight:600}h1 .label,h2 .label,h3 .label,h4 .label,h5 .label,h6 .label{font-size:75%}.list-group{border-top:1px solid #ededed}.list-group .list-group-item:first-child{border-top:0}.list-group-item{border-left:0;border-right:0}.list-group-item-heading{font-weight:600}.modal-header{background-color:#f5f5f5;border-bottom:none;padding:10px 18px}.modal-header .close{margin-top:2px}.modal-title{font-size:13px;font-weight:700}.modal-footer{border-top:none;margin-top:15px;padding:14px 15px 15px}.modal-footer>.btn{padding-left:10px;padding-right:10px}.modal-footer>.btn>.fa-angle-left{margin-right:5px}.modal-footer>.btn>.fa-angle-right{margin-left:5px}.pager li>a,.pager li>span{background-color:#f1f1f1;background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;font-weight:600;line-height:22px;padding:2px 14px}.open .dropdown-toggle.pager li>a,.open .dropdown-toggle.pager li>span,.pager li>a.active,.pager li>a:active,.pager li>a:focus,.pager li>a:hover,.pager li>span.active,.pager li>span:active,.pager li>span:focus,.pager li>span:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.open .dropdown-toggle.pager li>a,.open .dropdown-toggle.pager li>span,.pager li>a.active,.pager li>a:active,.pager li>span.active,.pager li>span:active{background-image:none}.open .dropdown-toggle.pager li>a.focus,.open .dropdown-toggle.pager li>a:focus,.open .dropdown-toggle.pager li>a:hover,.open .dropdown-toggle.pager li>span.focus,.open .dropdown-toggle.pager li>span:focus,.open .dropdown-toggle.pager li>span:hover,.pager li>a.active.focus,.pager li>a.active:focus,.pager li>a.active:hover,.pager li>a:active.focus,.pager li>a:active:focus,.pager li>a:active:hover,.pager li>span.active.focus,.pager li>span.active:focus,.pager li>span.active:hover,.pager li>span:active.focus,.pager li>span:active:focus,.pager li>span:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.pager li>a.disabled,.pager li>a.disabled.active,.pager li>a.disabled:active,.pager li>a.disabled:focus,.pager li>a.disabled:hover,.pager li>a[disabled],.pager li>a[disabled].active,.pager li>a[disabled]:active,.pager li>a[disabled]:focus,.pager li>a[disabled]:hover,.pager li>span.disabled,.pager li>span.disabled.active,.pager li>span.disabled:active,.pager li>span.disabled:focus,.pager li>span.disabled:hover,.pager li>span[disabled],.pager li>span[disabled].active,.pager li>span[disabled]:active,.pager li>span[disabled]:focus,.pager li>span[disabled]:hover,fieldset[disabled] .pager li>a,fieldset[disabled] .pager li>a.active,fieldset[disabled] .pager li>a:active,fieldset[disabled] .pager li>a:focus,fieldset[disabled] .pager li>a:hover,fieldset[disabled] .pager li>span,fieldset[disabled] .pager li>span.active,fieldset[disabled] .pager li>span:active,fieldset[disabled] .pager li>span:focus,fieldset[disabled] .pager li>span:hover{background-color:#f1f1f1;border-color:#bbb}.pager li>a>.i,.pager li>span>.i{font-size:18px;vertical-align:top;margin:2px 0}.pager li a:active{background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(3,3,3,.125);box-shadow:inset 0 3px 5px rgba(3,3,3,.125);outline:0}.pager .disabled>a,.pager .disabled>a:active,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{background:#f5f5f5;-webkit-box-shadow:none;box-shadow:none;color:#8b8d8f;cursor:not-allowed}.pager .next>a>.i,.pager .next>span>.i{margin-left:5px}.pager .previous>a>.i,.pager .previous>span>.i{margin-right:5px}.pager-sm li>a,.pager-sm li>span{font-weight:400;line-height:16px;padding:1px 10px}.pager-sm li>a>.i,.pager-sm li>span>.i{font-size:12px}.pagination>li>a,.pagination>li>span{background-color:#f1f1f1;background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;cursor:default;font-weight:600;padding:2px 10px}.open .dropdown-toggle.pagination>li>a,.open .dropdown-toggle.pagination>li>span,.pagination>li>a.active,.pagination>li>a:active,.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span.active,.pagination>li>span:active,.pagination>li>span:focus,.pagination>li>span:hover{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.open .dropdown-toggle.pagination>li>a,.open .dropdown-toggle.pagination>li>span,.pagination>li>a.active,.pagination>li>a:active,.pagination>li>span.active,.pagination>li>span:active{background-image:none}.open .dropdown-toggle.pagination>li>a.focus,.open .dropdown-toggle.pagination>li>a:focus,.open .dropdown-toggle.pagination>li>a:hover,.open .dropdown-toggle.pagination>li>span.focus,.open .dropdown-toggle.pagination>li>span:focus,.open .dropdown-toggle.pagination>li>span:hover,.pagination>li>a.active.focus,.pagination>li>a.active:focus,.pagination>li>a.active:hover,.pagination>li>a:active.focus,.pagination>li>a:active:focus,.pagination>li>a:active:hover,.pagination>li>span.active.focus,.pagination>li>span.active:focus,.pagination>li>span.active:hover,.pagination>li>span:active.focus,.pagination>li>span:active:focus,.pagination>li>span:active:hover{background-color:#e5e5e5;border-color:#a9a9a9}.pagination>li>a.disabled,.pagination>li>a.disabled.active,.pagination>li>a.disabled:active,.pagination>li>a.disabled:focus,.pagination>li>a.disabled:hover,.pagination>li>a[disabled],.pagination>li>a[disabled].active,.pagination>li>a[disabled]:active,.pagination>li>a[disabled]:focus,.pagination>li>a[disabled]:hover,.pagination>li>span.disabled,.pagination>li>span.disabled.active,.pagination>li>span.disabled:active,.pagination>li>span.disabled:focus,.pagination>li>span.disabled:hover,.pagination>li>span[disabled],.pagination>li>span[disabled].active,.pagination>li>span[disabled]:active,.pagination>li>span[disabled]:focus,.pagination>li>span[disabled]:hover,fieldset[disabled] .pagination>li>a,fieldset[disabled] .pagination>li>a.active,fieldset[disabled] .pagination>li>a:active,fieldset[disabled] .pagination>li>a:focus,fieldset[disabled] .pagination>li>a:hover,fieldset[disabled] .pagination>li>span,fieldset[disabled] .pagination>li>span.active,fieldset[disabled] .pagination>li>span:active,fieldset[disabled] .pagination>li>span:focus,fieldset[disabled] .pagination>li>span:hover{background-color:#f1f1f1;border-color:#bbb}.pagination>li>a>.i,.pagination>li>span>.i{font-size:15px;vertical-align:top;margin:2px 0}.pagination>li>a:active,.pagination>li>span:active{-webkit-box-shadow:inset 0 2px 8px rgba(3,3,3,.2);box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{background-color:#f1f1f1;border-color:#bbb;-webkit-box-shadow:inset 0 2px 8px rgba(3,3,3,.2);box-shadow:inset 0 2px 8px rgba(3,3,3,.2);color:#4d5258;background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{-webkit-box-shadow:none;box-shadow:none;cursor:not-allowed;background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.pagination-sm>li>a,.pagination-sm>li>span{padding:2px 6px;font-size:11px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:1px;border-top-left-radius:1px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:1px;border-top-right-radius:1px}.pagination-sm>li>a,.pagination-sm>li>span{font-weight:400}.pagination-sm>li>a>.i,.pagination-sm>li>span>.i{font-size:12px;margin-top:2px}.content-view-pf-pagination{background-color:#f5f5f5;border:1px solid #d1d1d1;display:flex;flex-wrap:wrap;justify-content:space-between}.content-view-pf-pagination.table-view-pf-pagination{border-top:none}.content-view-pf-pagination .form-group{align-items:baseline;display:flex;flex-grow:1;float:left;margin:5px}@supports (display:flex){.content-view-pf-pagination .form-group{float:none}}.content-view-pf-pagination .form-group:last-child{justify-content:flex-end;float:right}@supports (display:flex){.content-view-pf-pagination .form-group:last-child{float:none}}.content-view-pf-pagination .form-group .pagination-pf-pagesize.bootstrap-select.btn-group,.content-view-pf-pagination .form-group .pagination-pf-pagesize.btn-group{display:flex;float:none;margin-bottom:0;margin-left:0;margin-right:5px;width:auto}.content-view-pf-pagination .form-group .dropdown-menu{min-width:auto}.content-view-pf-pagination .pagination-pf-page{margin-left:10px;margin-right:5px;padding:0 2px 2px;text-align:right;width:2.5em}.content-view-pf-pagination .pagination{display:flex;margin:0 0 0 10px}.content-view-pf-pagination .pagination a{float:none}@supports (display:flex){.content-view-pf-pagination .pagination a{display:block}}.panel-title{font-weight:700}.panel-group .panel{color:#4d5258}.panel-group .panel+.panel{margin-top:-1px}.panel-group .panel-default{border-color:#bbb;border-top-color:#bbb}.panel-group .panel-default .panel-heading{background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.panel-group .panel-default .panel-heading+.panel-collapse .panel-body{border-top:1px solid #d1d1d1}.panel-group .panel-info{border-color:#00659c}.panel-group .panel-info .panel-heading{background-color:#dae5f4}.panel-group .panel-info+.panel-default{border-top-color:#00659c}.panel-group .panel-primary{border-color:#39a5dc}.panel-group .panel-primary .panel-heading{background-color:#def0f9}.panel-group .panel-primary+.panel-default{border-top-color:#39a5dc}.panel-group .panel-primary+.panel-info{border-top-color:#39a5dc}.panel-group .panel-success{border-color:#3f9c35}.panel-group .panel-success .panel-heading{background-color:#e9f4e9}.panel-group .panel-success+.panel-default{border-top-color:#3f9c35}.panel-group .panel-success+.panel-info{border-top-color:#3f9c35}.panel-group .panel-success+.panel-primary{border-top-color:#3f9c35}.panel-group .panel-warning{border-color:#ec7a08}.panel-group .panel-warning .panel-heading{background-color:#fdf2e5}.panel-group .panel-warning+.panel-default{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-info{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-primary{border-top-color:#ec7a08}.panel-group .panel-warning+.panel-success{border-top-color:#ec7a08}.panel-group .panel-danger{border-color:#c00}.panel-group .panel-danger .panel-heading{background-color:#ffe6e6}.panel-group .panel-danger+.panel-default{border-top-color:#c00}.panel-group .panel-danger+.panel-info{border-top-color:#c00}.panel-group .panel-danger+.panel-primary{border-top-color:#c00}.panel-group .panel-danger+.panel-success{border-top-color:#c00}.panel-group .panel-danger+.panel-warning{border-top-color:#c00}.panel-group .panel-title{font-weight:500;line-height:1}.panel-group .panel-title>a{color:#4d5258;font-weight:600}.panel-group .panel-title>a:before{content:"\f107";display:inline-block;font-family:FontAwesome;font-size:13px;margin-right:5px;text-align:center;vertical-align:0;width:8px}.panel-group .panel-title>a:focus{outline:0;text-decoration:none}.panel-group .panel-title>a:hover{text-decoration:none}.panel-group .panel-title>a.collapsed:before{content:"\f105"}.popover{-webkit-box-shadow:0 2px 2px rgba(3,3,3,.08);box-shadow:0 2px 2px rgba(3,3,3,.08);padding:0}.popover-content{color:#4d5258;line-height:18px;padding:10px 14px}.popover-title{border-bottom:none;border-radius:0;color:#4d5258;font-size:13px;font-weight:700;min-height:34px}.popover-title .close{height:22px;position:absolute;right:8px;top:6px}.popover-title.closable{padding-right:30px}@keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}.progress{-webkit-box-shadow:inset 0 0 1px rgba(3,3,3,.25);box-shadow:inset 0 0 1px rgba(3,3,3,.25)}.progress.progress-label-left,.progress.progress-label-top-right{overflow:visible;position:relative}.progress.progress-label-left{margin-left:40px}.progress.progress-sm{height:14px;margin-bottom:14px}.progress.progress-xs{height:6px;margin-bottom:6px}td>.progress:first-child:last-child{margin-bottom:0;margin-top:3px}.progress-bar{box-shadow:none}.progress-label-left .progress-bar span,.progress-label-right .progress-bar span,.progress-label-top-right .progress-bar span{color:#363636;position:absolute;text-align:right}.progress-label-left .progress-bar span{font-size:14px;left:-40px;top:0;width:35px}.progress-label-right .progress-bar span,.progress-label-top-right .progress-bar span{font-size:11px;overflow:hidden;right:0;text-overflow:ellipsis;white-space:nowrap}.progress-label-right .progress-bar span strong,.progress-label-top-right .progress-bar span strong{font-weight:600}.progress-label-right .progress-bar span{max-width:85px;top:0}.progress-label-top-right .progress-bar span{max-width:47%;top:-30px}.progress-label-left.progress-sm .progress-bar span,.progress-label-top-right.progress-sm .progress-bar span{font-size:12px}.progress-sm .progress-bar{line-height:14px}.progress-xs .progress-bar{line-height:6px}.progress-bar-remaining{background:0 0}.progress-container{position:relative}.progress-container.progress-description-left{padding-left:90px}.progress-container.progress-label-right{padding-right:90px}.progress-description{margin-bottom:10px;max-width:52%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.progress-description .count{font-size:20.004px;font-weight:300;line-height:1;margin-right:5px}.progress-description .fa,.progress-description .pficon{font-size:14px;margin-right:3px}.progress-description-left .progress-description{left:0;margin-bottom:0;max-width:85px;position:absolute;top:0}.progress-description .tooltip{white-space:normal}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:2px 10px 3px}.table>tbody>tr>td>a:hover,.table>tbody>tr>th>a:hover,.table>tfoot>tr>td>a:hover,.table>tfoot>tr>th>a:hover,.table>thead>tr>td>a:hover,.table>thead>tr>th>a:hover{text-decoration:none}.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>th{font-family:"Open Sans";font-style:normal;font-weight:600}.table>thead{background-clip:padding-box;background-color:#f5f5f5;background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x}.table-bordered{border:1px solid #d1d1d1}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #d1d1d1}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:1px}.table-striped>tbody>tr:nth-of-type(even){background-color:#f5f5f5}.table-striped>tbody>tr:nth-of-type(odd){background-color:transparent}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#def3ff;border-bottom-color:#7dc3e8}.table-treegrid span.indent{margin-left:10px;margin-right:10px}.table-treegrid span.icon{display:inline-block;font-size:13px;margin-right:5px;min-width:10px;text-align:center}.table-treegrid span.collapse-icon,.table-treegrid span.expand-icon{cursor:pointer}.table-treegrid>tbody>tr.odd{background-color:#f5f5f5}.nav-tabs{font-size:14px}.nav-tabs>li>a{color:#4d5258;margin-right:-1px;padding-bottom:5px;padding-top:5px}.nav-tabs>li>a:active,.nav-tabs>li>a:focus,.nav-tabs>li>a:hover{background:0 0;border-color:#ededed;color:#252525}.nav-tabs>li>.dropdown-menu{border-top:0;border-color:#ededed}.nav-tabs>li>.dropdown-menu.pull-right{right:-1px}.nav-tabs+.nav-tabs-pf,.nav-tabs.nav-tabs-pf-secondary{font-size:12px}.nav-tabs+.nav-tabs-pf>li:first-child>a,.nav-tabs.nav-tabs-pf-secondary>li:first-child>a{padding-left:15px}.nav-tabs+.nav-tabs-pf>li:first-child>a:before,.nav-tabs.nav-tabs-pf-secondary>li:first-child>a:before{left:15px!important}.nav-tabs .open>a,.nav-tabs .open>a:focus,.nav-tabs .open>a:hover{background-color:transparent;border-color:#ededed}@media (min-width:768px){.nav-tabs-pf.nav-justified{border-bottom:1px solid #ededed}}.nav-tabs-pf.nav-justified>li:first-child>a{padding-left:15px}.nav-tabs-pf.nav-justified>li>a{border-bottom:0}.nav-tabs-pf.nav-justified>li>a:before{left:0!important;right:0!important}.nav-tabs-pf>li{margin-bottom:0}.nav-tabs-pf>li.active>a:before{background:#0088ce;bottom:-1px;content:"";display:block;height:2px;left:15px;position:absolute;right:15px}.nav-tabs-pf>li.active>a,.nav-tabs-pf>li.active>a:active,.nav-tabs-pf>li.active>a:focus,.nav-tabs-pf>li.active>a:hover{background-color:transparent;border:0!important;color:#0088ce}.nav-tabs-pf>li.active>a:active:before,.nav-tabs-pf>li.active>a:before,.nav-tabs-pf>li.active>a:focus:before,.nav-tabs-pf>li.active>a:hover:before{background:#0088ce}.nav-tabs-pf>li:first-child>a{padding-left:0}.nav-tabs-pf>li:first-child>a:before{left:0!important}.nav-tabs-pf>li>a{border:0;line-height:1;margin-right:0;padding-bottom:10px;padding-top:10px}.nav-tabs-pf>li>a:active:before,.nav-tabs-pf>li>a:focus:before,.nav-tabs-pf>li>a:hover:before{background:#bbb;bottom:-1px;content:"";display:block;height:2px;left:15px;position:absolute;right:15px}.nav-tabs-pf>li>.dropdown-menu{left:15px;margin-top:1px}.nav-tabs-pf>li>.dropdown-menu.pull-right{left:auto;right:15px}.nav-tabs-pf .open>a,.nav-tabs-pf .open>a:focus,.nav-tabs-pf .open>a:hover{background-color:transparent}.tooltip{font-size:12px;line-height:1.4}.tooltip-inner{padding:7px 12px;text-align:left}.h1,.h2,h1,h2{font-weight:300}.page-header .actions{margin-top:8px}.page-header .actions a>.pficon{margin-right:4px}@media (min-width:767px){.page-header-bleed-left{margin-left:-20px}.page-header-bleed-right{margin-right:-20px}.page-header-bleed-right .actions{margin-right:20px}}
+/*# sourceMappingURL=rcue.min.css.map */
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue.min.css.map b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue.min.css.map
new file mode 100644
index 0000000..2bfb224
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["node_modules/patternfly/dist/less/fonts.less","dist/css/rcue.css","node_modules/bootstrap/less/normalize.less","node_modules/bootstrap/less/print.less","node_modules/bootstrap/less/glyphicons.less","node_modules/bootstrap/less/scaffolding.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","node_modules/patternfly/dist/less/variables.less","node_modules/bootstrap/less/mixins/tab-focus.less","node_modules/bootstrap/less/carousel.less","node_modules/bootstrap/less/thumbnails.less","node_modules/bootstrap/less/mixins/image.less","node_modules/bootstrap/less/type.less","node_modules/bootstrap/less/mixins/text-emphasis.less","node_modules/bootstrap/less/mixins/background-variant.less","node_modules/bootstrap/less/mixins/text-overflow.less","node_modules/bootstrap/less/code.less","node_modules/bootstrap/less/grid.less","node_modules/bootstrap/less/mixins/grid.less","node_modules/bootstrap/less/mixins/grid-framework.less","node_modules/bootstrap/less/tables.less","node_modules/bootstrap/less/mixins/table-row.less","node_modules/bootstrap/less/forms.less","node_modules/bootstrap/less/mixins/forms.less","node_modules/patternfly/dist/less/bootstrap-mixin-overrides.less","node_modules/bootstrap/less/buttons.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap/less/button-groups.less","node_modules/bootstrap/less/component-animations.less","node_modules/bootstrap/less/dropdowns.less","node_modules/bootstrap/less/mixins/nav-divider.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/input-groups.less","node_modules/bootstrap/less/navs.less","node_modules/bootstrap/less/navbar.less","node_modules/bootstrap/less/mixins/nav-vertical-align.less","node_modules/bootstrap/less/utilities.less","node_modules/font-awesome/less/bordered-pulled.less","node_modules/bootstrap/less/breadcrumbs.less","node_modules/bootstrap/less/pagination.less","node_modules/bootstrap/less/mixins/pagination.less","node_modules/bootstrap/less/pager.less","node_modules/bootstrap/less/labels.less","node_modules/bootstrap/less/mixins/labels.less","node_modules/bootstrap/less/badges.less","node_modules/bootstrap/less/jumbotron.less","node_modules/bootstrap/less/alerts.less","node_modules/bootstrap/less/mixins/alerts.less","node_modules/bootstrap/less/progress-bars.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/progress-bar.less","node_modules/bootstrap/less/media.less","node_modules/bootstrap/less/list-group.less","node_modules/bootstrap/less/mixins/list-group.less","node_modules/bootstrap/less/panels.less","node_modules/bootstrap/less/mixins/panels.less","node_modules/bootstrap/less/responsive-embed.less","node_modules/bootstrap/less/wells.less","node_modules/bootstrap/less/close.less","node_modules/bootstrap/less/modals.less","node_modules/bootstrap/less/tooltip.less","node_modules/bootstrap/less/mixins/reset-text.less","node_modules/bootstrap/less/popovers.less","node_modules/bootstrap/less/mixins/clearfix.less","node_modules/bootstrap/less/mixins/center-block.less","node_modules/bootstrap/less/mixins/hide-text.less","node_modules/bootstrap/less/responsive-utilities.less","node_modules/bootstrap/less/mixins/responsive-visibility.less","node_modules/font-awesome/less/path.less","node_modules/font-awesome/less/core.less","node_modules/font-awesome/less/larger.less","node_modules/font-awesome/less/fixed-width.less","node_modules/font-awesome/less/list.less","node_modules/font-awesome/less/animated.less","node_modules/font-awesome/less/rotated-flipped.less","node_modules/font-awesome/less/mixins.less","node_modules/font-awesome/less/stacked.less","node_modules/font-awesome/less/icons.less","node_modules/font-awesome/less/variables.less","node_modules/font-awesome/less/screen-reader.less","node_modules/patternfly/dist/less/mixins.less","node_modules/patternfly/dist/less/alerts.less","node_modules/patternfly/dist/less/badges.less","node_modules/patternfly/dist/less/breadcrumbs.less","node_modules/patternfly/dist/less/buttons.less","node_modules/patternfly/dist/less/dropdowns.less","node_modules/patternfly/dist/less/forms.less","node_modules/patternfly/dist/less/labels.less","node_modules/patternfly/dist/less/list-group.less","node_modules/patternfly/dist/less/modals.less","node_modules/patternfly/dist/less/pager.less","node_modules/patternfly/dist/less/pagination.less","node_modules/patternfly/dist/less/panels.less","node_modules/patternfly/dist/less/popovers.less","node_modules/patternfly/dist/less/progress-bars.less","node_modules/patternfly/dist/less/tables.less","node_modules/patternfly/dist/less/tabs.less","node_modules/patternfly/dist/less/tooltip.less","node_modules/patternfly/dist/less/type.less"],"names":[],"mappings":"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A,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,EFT+B,yBEzB/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GFA+B,yBElC/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GFS+B,0BE3C/B,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UACE,MAAA,KAOU,WACZ,MAAA,KADY,WACZ,MAAA,aADY,WACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,aADY,UACZ,MAAA,IADY,UACZ,MAAA,aADY,UACZ,MAAA,YAciB,gBACjB,MAAA,KADiB,gBACjB,MAAA,aADiB,gBACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,aADiB,eACjB,MAAA,IADiB,eACjB,MAAA,aADiB,eACjB,MAAA,YAIW,eACX,MAAA,KAhBiB,gBACjB,KAAA,KADiB,gBACjB,KAAA,aADiB,gBACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,aADiB,eACjB,KAAA,IADiB,eACjB,KAAA,aADiB,eACjB,KAAA,YAIW,eACX,KAAA,KAcmB,kBACnB,YAAA,KADmB,kBACnB,YAAA,aADmB,kBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,IADmB,iBACnB,YAAA,aADmB,iBACnB,YAAA,YADmB,iBACnB,YAAA,GCnEJ,MACE,iBAAA,YAEF,QACE,YAAA,KACA,eAAA,KAC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lB,QDlhBY,oBAAU,QCgMlB,QD/LmB,+BAAU,QCYlB,QDXM,6BAAU,QCclB,QDbJ,iBAAU,QCqWlB,QDpWgB,yBAAU,QCwelB,QDteC,kBADM,wBACI,QCsgBlB,QDrgBS,mBAAU,QCggBlB,QD/fS,oBAAU,QCwYlB,QDvYI,gBAAU,QC2YlB,QD1YQ,gBAAU,QC4PlB,QD3Pc,sBAAU,QCoUlB,QDnUQ,sBAAU,QCitBlB,QDhtBS,uBAAU,QC+sBlB,QD9sBM,qBAAU,QCgtBlB,QD/sBK,kBAAU,QCyelB,QDxeS,mBAAU,QCwBlB,QDvBI,eAAU,QCymBlB,QDxmBS,gBAAU,QCymBlB,QDxmBQ,gBAAU,QCyDlB,QDxDY,oBAAU,QCyDlB,QDxDK,iBAAU,QC+dlB,QD9dS,kBAAU,QC2ElB,QD1EM,gBAAU,QC0PlB,QDzPQ,gBAAU,QCiDlB,QDhDU,kBAAU,QC0VlB,QDzVa,uBAAU,QCwmBlB,QDvmBO,sBAAU,QCwmBlB,QDvmBQ,sBAAU,QCpClB,QDqCU,wBAAU,QCvClB,QDwCO,uBAAU,QCrClB,QDsCU,yBAAU,QCxClB,QDyCD,gBAAU,QC+WlB,QD9WU,kBACC,mBAAU,QC2alB,QD1aO,kBAAU,QCsUlB,QDrUc,wBAAU,QCkrBlB,QDhrBC,iBADA,iBAEI,qBAAU,QC0blB,QDzbK,kBAAU,QCkblB,QDjbY,sBAAU,QCwXlB,QDvXI,kBAAU,QCtDlB,QDuDM,gBAAU,QCmnBlB,QDlnBQ,gBACW,2BAAU,QC+alB,QD9aO,0BAAU,QC8flB,QD7fQ,0BAAU,QC+ElB,QD9EA,kBAAU,QCzBlB,QD0Be,yBAAU,QCmjBlB,QDljBQ,yBAAU,QCqLlB,QDpLG,oBAAU,QClBlB,QDmBI,gBAAU,QCsblB,QDrbS,iBAAU,QCgalB,QD/ZO,gBAAU,QCmjBlB,QDljBW,mBAAU,QC+NlB,QD9Na,wBAAU,QCgLlB,QD/KQ,wBAAU,QC4iBlB,QD3iBC,iBAAU,QC+IlB,QD9Ie,wBAAU,QCyElB,QDxES,yBAAU,QCyElB,QDxEM,uBAAU,QCkblB,QDjbS,wBAAU,QCuXlB,QDtXQ,wBAAU,QC2lBlB,QD1lBQ,wBAAU,QC2DlB,QD1DW,2BAAU,QCyblB,QDxbI,uBAAU,QC0SlB,QDzSO,sBAAU,QC0GlB,QDzGY,0BAAU,QCulBlB,QDtlBQ,0BAAU,QCuDlB,QDtDH,eAAU,QCnClB,QDoCe,sBAAU,QCnDlB,QDoDS,uBAAU,QCnDlB,QDoDK,oBAAU,QCnDlB,QDoDU,sBAAU,QCvDlB,QDwDU,wBACP,iBAAU,QC4dlB,QD3dS,kBAAU,QC8IlB,QD7IU,oBAAU,QCsFlB,QDrFI,gBAAU,QC+ZlB,QD9ZS,iBAAU,QCoWlB,QDnWW,oBAAU,QCpDlB,QDqDkB,8BAAU,QCuIlB,QDtIN,gBAAU,QCkNlB,QDjNQ,gBAAU,QC0SlB,QDzSQ,gBAAU,QC6KlB,QD5KO,eAAU,QCyIlB,QDxIc,qBAAU,QCyIlB,QDvImB,gCADb,mBACuB,QCiIlB,QDhIP,iBAAU,QC+YlB,QD9YW,oBAAU,QCAlB,QDCM,kBAAU,QCoalB,QDnaS,mBAAU,QCgElB,QD/DO,kBAAU,QC6TlB,QD5TY,sBAAU,QCuClB,QDtCU,wBAAU,QCmClB,QDlCG,mBAAU,QC+alB,QD9ac,yBAAU,QCkdlB,QDjdC,kBAAU,QC0KlB,QDzKa,uBAAU,QC2KlB,QD1KK,oBAAU,QC3ElB,QD4EQ,oBAAU,QC7ElB,QD8EW,uBACF,qBAAU,QClElB,QDmEa,0BAAU,QC+kBlB,QD9kBS,2BAAU,QC4HlB,QD3HK,wBAAU,QCTlB,QDUD,eAAU,QC2QlB,QDzQS,gBADC,iBACS,QC6ClB,QD5CY,oBAAU,QCkDlB,QDjDW,uBAAU,QCsiBlB,QDriBU,yBAAU,QCoiBlB,QDniBI,qBAAU,QC2elB,QD1eM,mBAAU,QC8NlB,QD7NS,oBAAU,QCoclB,QDnce,2BAAU,QCuRlB,QDtRG,sBAAU,QC6hBlB,QD5hBW,yBAAU,QCsGlB,QDrGE,mBAAU,QC8blB,QD7bO,kBAAU,QCqjBlB,QDpjBe,yBAAU,QCgLlB,QD/KC,kBAAU,QCukBlB,QDtkBS,mBAAU,QCqQlB,QDpQM,iBAAU,QCiWlB,QDhWW,oBAAU,QC2dlB,QD1dU,sBAAU,QCjDlB,QDkDU,wBAAU,QC+VlB,QD9VG,mBAAU,QCsjBlB,QDrjBW,sBACF,oBAAU,QCgGlB,QD/FM,kBAAU,QCoKlB,QDnKQ,kBAAU,QC0jBlB,QDzjBa,uBAAU,QCoClB,QDnCC,gBACD,eAAU,QC+YlB,QD9YU,iBAAU,QCoMlB,QDnMW,oBAAU,QCrDlB,QDsDI,gBAAU,QChFlB,QDiFe,uBAAU,QCrBlB,QDsBS,wBAAU,QCoLlB,QDnLO,uBAAU,QCkLlB,QDjLM,qBAAU,QCmLlB,QDlLU,uBAAU,QC+KlB,QD9Kc,6BAAU,QCrIlB,QDsIS,8BAAU,QCjIlB,QDkIK,2BAAU,QCjIlB,QDkIU,6BAAU,QCzIlB,QD0IJ,iBAAU,QC2JlB,QD1JS,kBAAU,QC6lBlB,QD5lBO,iBAAU,QCqelB,QDpeS,kBAAU,QCyGlB,QDxGW,qBAAU,QCzElB,QD0ES,sBAAU,QClIlB,QDmIG,iBACA,iBAAU,QCijBlB,QDhjBQ,iBACD,gBAAU,QC4OlB,QD3OS,iBAAU,QCdlB,QDeQ,iBAAU,QC0GlB,QDzGM,eACK,oBAAU,QC6XlB,QD5XI,gBACG,mBAAU,QC2FlB,QD1FU,qBAAU,QC6SlB,QD3SO,oBADJ,gBACc,QCqGlB,QDpGM,kBAAU,QCgblB,QD7aM,gBAFG,mBACA,mBACO,QClIlB,QDmIW,mBAAU,QCsOlB,QDrOQ,mBAAU,QCoOlB,QDnOc,yBAAU,QC+blB,QD9bI,qBAAU,QC2gBlB,QD1gBI,iBAAU,QCuclB,QDtcQ,iBAAU,QCyOlB,QDxOQ,iBAAU,QC6flB,QD5fY,qBAAU,QCmTlB,QDlTe,4BAAU,QCoTlB,QDnTU,8BAAU,QCgIlB,QD/HC,uBAAU,QC4HlB,QD3HE,iBAAU,QCqQlB,QDpQa,sBAAU,QCpFlB,QDqFM,oBAAU,QC9ElB,QD+EU,sBAAU,QCrFlB,QDsFS,uBAAU,QCrFlB,QDsFI,mBAAU,QChClB,QDkCK,gBADI,oBACM,QC0YlB,QDxYa,qBADA,qBACU,QC8YlB,QD5YO,oBADD,mBACW,QC2YlB,QD1YQ,oBAAU,QCUlB,QDTQ,oBAAU,QCuMlB,QDtMW,uBACP,gBAAU,QCqflB,QDnfS,iBADA,iBACU,QCoFlB,QDnFY,qBACC,sBAAU,QC+alB,QD9aO,qBAAU,QC7ClB,QD8CS,sBAAU,QC1ClB,QD4CE,gBADC,iBACS,QCpIlB,QDqIW,mBAAU,QC6WlB,QD5WS,oBAAU,QCyelB,QDveS,qBADJ,iBACc,QCrElB,QDsEU,uBAAU,QCqLlB,QDpLK,oBAAU,QCGlB,QDFc,0BAAU,QCnElB,QDoEM,wBAAU,QCnElB,QDoEG,mBAAU,QCiflB,QDhfY,uBAAU,QC8YlB,QD7YK,oBAAU,QCyZlB,QDxZM,kBAAU,QC9JlB,QD+JQ,kBAAU,QClElB,QDmES,mBAAU,QC1ClB,QD2CY,uBAAU,QC8BlB,QD7BO,sBAAU,QC1IlB,QD2IQ,sBAAU,QCsHlB,QDrHO,qBAAU,QCrOlB,QDsOK,kBAAU,QC4MlB,QD3Ma,uBAAU,QCUlB,QDTC,gBAAU,QC3KlB,QD4KY,oBAAU,QCuFlB,QDtFW,uBAAU,QC2QlB,QD1Qc,6BAAU,QCrOlB,QDsOS,8BAAU,QCrOlB,QDsOK,2BAAU,QCrOlB,QDsOU,6BAAU,QCzOlB,QD0OC,sBAAU,QCrOlB,QDsOS,uBAAU,QCrOlB,QDsOK,oBAAU,QCrOlB,QDsOU,sBAAU,QCzOlB,QD0OK,mBAAU,QCpDlB,QDqDO,kBAAU,QC4IlB,QD3IQ,kBAAU,QCwYlB,QDvYc,wBACN,kBAAU,QCuMlB,QDtMU,oBAAU,QCzGlB,QD0GU,sBAAU,QCyQlB,QDxQS,uBAAU,QCyQlB,QDxQI,mBAAU,QC+VlB,QD9VO,kBAAU,QC9GlB,QD+GY,sBACL,iBAAU,QCoRlB,QDnRa,sBAAU,QC+ClB,QD9CM,oBAAU,QCmBlB,QDlBa,yBAAU,QCoBlB,QDnBE,mBAAU,QCqUlB,QDpUQ,mBAAU,QC2BlB,QD1BM,iBAAU,QCgLlB,QD/KU,mBAAU,QC2BlB,QD1BW,sBAAU,QCuHlB,QDtHI,kBAAU,QCMlB,QDLgB,0BAAU,QCIlB,QDHE,oBAAU,QC6XlB,QD5XI,gBAAU,QChHlB,QDiHkB,0BACL,qBAAU,QCuQlB,QDtQc,2BACD,0BACH,uBAAU,QCsVlB,QDrVW,0BAAU,QCwIlB,QDvIF,gBAAU,QChGlB,QDiGa,qBAAU,QCvHlB,QDyHW,wBADN,kBACgB,QCtJlB,QDuJI,oBAAU,QCyOlB,QDxOI,gBAAU,QC0FlB,QDzFe,uBAAU,QC1DlB,QD2DQ,uBAAU,QCkWlB,QDjWM,qBAAU,QC4VlB,QD3VK,kBAAU,QClElB,QDmEc,wBAAU,QCgOlB,QD/NM,sBAAU,QC2JlB,QD1Jc,4BAAU,QC2JlB,QD1JF,kBAAU,QCsRlB,QDrRY,sBAAU,QC5LlB,QD6Le,6BAAU,QCxBlB,QDyBH,kBAAU,QCuPlB,QDtPQ,kBAAU,QC6IlB,QD5IqB,+BAAU,QC9JlB,QD+JS,gCAAU,QC9JlB,QD+JK,6BAAU,QC9JlB,QD+JU,+BAAU,QClKlB,QDmKN,iBAAU,QC8DlB,QD7DO,gBAAU,QCrHlB,QDsHU,kBAAU,QCvSlB,QDwSY,sBAAU,QC2ZlB,QD1ZM,oBAAU,QChNlB,QDiNU,sBAAU,QC7FlB,QD8FQ,sBAAU,QC7FlB,QD8FQ,sBAAU,QC+OlB,QD9OS,uBAAU,QCiMlB,QDhMG,kBAAU,QC6WlB,QD5Wc,wBAAU,QC0IlB,QDzIU,0BAAU,QC0IlB,QDzIE,oBAAU,QCqFlB,QDpFU,sBAAU,QCmFlB,QDlFU,wBAAU,QCnLlB,QDoLS,yBAAU,QC0KlB,QDzKe,gCAAU,QCpFlB,QDqFA,wBAAU,QCwPlB,QDvPG,mBAAU,QCjJlB,QDmJoB,+BADR,uBACkB,QC/MlB,QDiNM,6BADR,qBACkB,QC9MlB,QDgNW,gCADR,wBACkB,QCjNlB,QDmNT,eADC,gBACS,QCvGlB,QDwGQ,eAAU,QChClB,QDiCW,kBACH,eAAU,QCqYlB,QDnYQ,eADE,iBACQ,QC4ClB,QD3CQ,eAGA,eAFA,eACA,eACU,QCgDlB,QD9CW,kBACH,eAFE,iBAEQ,QCiNlB,QD/MQ,eADA,eACU,QC+ClB,QD9CY,mBACJ,eAAU,QC3PlB,QD4PS,gBAAU,QChGlB,QDiGa,qBAAU,QCpFlB,QDqFa,0BAAU,QC0PlB,QDzPS,2BAAU,QC0PlB,QDzPQ,2BAAU,QC0PlB,QDzPS,4BAAU,QC0PlB,QDzPQ,4BAAU,QC6PlB,QD5PS,6BAAU,QC6PlB,QD5PA,qBAAU,QCkUlB,QDjUU,uBAAU,QC8TlB,QD7TW,0BAAU,QCyalB,QDxaC,mBAAU,QCsalB,QDraK,gBAAU,QC2ZlB,QD1Ze,uBAAU,QC2ZlB,QD1ZS,wBAAU,QCoalB,QDnaG,mBAAU,QCxJlB,QDyJe,0BAAU,QC8PlB,QD7PG,qBAAU,QCgBlB,QDfK,kBAAU,QCpFlB,QDqFK,eAAU,QC3WlB,QD4Wc,qBAAU,QC/RlB,QDgSe,4BAAU,QC/RlB,QDgSF,kBAAU,QC+UlB,QD9Ue,yBAAU,QC+UlB,QD9UU,2BAAU,QCgDlB,QD/CM,yBAAU,QCkDlB,QDjDU,2BAAU,QC+ClB,QD9CS,4BAAU,QC+ClB,QD9CH,iBAAU,QCjWlB,QDkWU,mBAAU,QCmYlB,QDlYQ,mBAAU,QC7WlB,QD8WM,iBAAU,QCkClB,QDjCW,oBAAU,QC5KlB,QD6KK,iBAAU,QCgNlB,QD/Ma,sBAAU,QCxFlB,QDyFI,kBAAU,QC4TlB,QD3TQ,kBAAU,QCtIlB,QDuIM,gBAAU,QC6ClB,QD5CU,kBACE,oBAAU,QC5DlB,QD6DK,iBAAU,QC8PlB,QD7PS,kBAAU,QCuElB,QDtES,mBAAU,QC9WlB,QD+WI,eAAU,QCtSlB,QDuSO,cAAU,QCiWlB,QDhWW,iBAAU,QCuWlB,QDtWS,kBAAU,QC+IlB,QD9IW,qBAAU,QCkFlB,QDjFa,0BAAU,QC6NlB,QD5Nc,gCAAU,QC/WlB,QDgXO,+BAAU,QCjXlB,QDmXQ,+BADR,uBACkB,QCzRlB,QD0RC,wBAAU,QCnMlB,QDoMM,sBAAU,QCiWlB,QDhWU,wBAAU,QCoVlB,QDlVD,eADS,wBACC,QC0SlB,QDzSkB,yBAAU,QC0GlB,QDzGQ,yBAAU,QC4MlB,QD3MA,iBAAU,QCsLlB,QDrLkB,2BAAU,QCzLlB,QD0LE,qBAAU,QCoWlB,QDnWK,kBAAU,QC8DlB,QD5DM,gBADO,uBAED,sBAAU,QC8SlB,QD5SY,0BADF,wBACY,QC1FlB,QD2FD,iBAAU,QCsWlB,QDrWS,kBAAU,QClGlB,QDmGQ,kBAAU,QCgHlB,QD/Ge,yBAAU,QCiHlB,QDhHa,8BAAU,QCyNlB,QDxNC,uBAAU,QCuNlB,QDtNM,qBAAU,QC/NlB,QDgOG,gBAAU,QC5NlB,QD6NiB,yBAAU,QC2ElB,QD1ES,0BAAU,QCyElB,QDxEA,kBAAU,QCvNlB,QDwNQ,kBAAU,QCzClB,QD0CU,oBAAU,QCpClB,QDqCG,eAAU,QCtLlB,QDuLa,oBAAU,QC7UlB,QD8UK,iBAAU,QC1RlB,QD2RM,eAAU,QCsDlB,QDrDU,iBAAU,QCmLlB,QDlLO,gBAAU,QCrPlB,QDsPS,iBAAU,QCrPlB,QDsPU,mBAAU,QC7WlB,QD8We,0BAAU,QC7WlB,QD8WD,iBAAU,QC0LlB,QDzLe,wBAAU,QC0LlB,QDzLG,mBAAU,QCyFlB,QDxFW,sBACP,eAAU,QCzUlB,QD0UQ,eACC,gBAAU,QC+MlB,QD9MQ,gBAAU,QC4PlB,QD3PW,mBAAU,QCuKlB,QDtKW,sBAAU,QCtPlB,QDuPQ,sBAAU,QCiKlB,QDhKM,oBAAU,QC9PlB,QD+PU,sBAAU,QC/LlB,QDgMS,uBAAU,QCxLlB,QDyLS,wBAAU,QCrMlB,QDsMa,6BAAU,QC/LlB,QDkMG,wBAFA,wBACE,0BACQ,QCxMlB,QD0MU,0BADJ,sBACc,QC9MlB,QDgNM,wBADA,wBACU,QC/MlB,QDgNQ,wBACA,wBAAU,QCpMlB,QDqMO,uBAAU,QCjNlB,QDkNC,gBAAU,QCuRlB,QDtRW,mBAAU,QC5SlB,QD6SS,oBAAU,QC9ElB,QD+ES,qBACA,qBAGA,qBAFC,sBACH,mBACY,QCnElB,QDoEa,0BAAU,QC/TlB,QDgUJ,cAEG,iBADK,sBACK,QCqDlB,QDnDS,kBADJ,cACc,QCnQlB,QDoQY,sBAAU,QCzKlB,QD0KC,eAAU,QC3KlB,QD8KgB,uBAFQ,+BACV,qBACY,QCxJlB,QDyJU,yBAAU,QC2KlB,QD1KH,cAAU,QCiClB,QDhCY,kBACA,kBAAU,QC0QlB,QDxQa,uBADP,gBACiB,QCVlB,QDYU,yBADP,kBACiB,QCXlB,QDYE,mBAAU,QC1IlB,QD2IY,uBAAU,QClVlB,QDmVG,kBAAU,QCjJlB,QDkJW,qBAAU,QCblB,QDcM,mBAAU,QC+FlB,QD9FU,qBAAU,QCuElB,QDtEe,4BAAU,QCuElB,QDtEJ,gBAAU,QCzZlB,QD2ZY,oBADK,yBACK,QC5MlB,QD6MG,eAAU,QC0MlB,QDzMe,sBAAU,QCxalB,QDyaE,gBAAU,QCIlB,QDHc,sBAAU,QCuFlB,QDtFI,kBAAU,QC2MlB,QD1MM,gBAAU,QC+QlB,QD9Qe,uBAAU,QCzClB,QD0CC,gBAAU,QCwPlB,QDvPc,sBAAU,QCrZlB,QDsZI,kBAAU,QCvBlB,QDwBe,yBAAU,QC3LlB,QD4LE,mBAAU,QC5XlB,QD6Xc,yBAAU,QChYlB,QDiYM,uBAAU,QCnYlB,QDoYI,mBAAU,QCtYlB,QDuYU,qBAAU,QClYlB,QDmYQ,qBAAU,QClYlB,QDmYS,sBAAU,QC3blB,QD4bU,wBAAU,QC3blB,QD4bC,iBAAU,QC+KlB,QD9KY,qBAAU,QCnVlB,QDoVC,cAAU,QC9dlB,QD+dgB,sBAAU,QC5RlB,QD6RS,uBAAU,QC/ClB,QDgDU,yBAAU,QC9blB,QD+bK,sBAAU,QCtflB,QDufO,qBAAU,QC/BlB,QDgCS,sBAAU,QCzHlB,QD0HI,kBAAU,QCvIlB,QDwIe,yBAAU,QCvIlB,QDwIK,sBAAU,QC4JlB,QD3JO,qBAAU,QC4JlB,QD3JM,mBAAU,QCxclB,QDycI,eAAU,QCjblB,QDkbY,mBAAU,QCvJlB,QDwJU,qBAAU,QC3gBlB,QD4gBC,cAAU,QC7ZlB,QDgaS,eAFG,kBACA,kBACO,QCzKlB,QD0Ka,oBAAU,QCpGlB,QDqGU,sBAAU,QCxblB,QDybY,0BAAU,QC5WlB,QD6WE,oBAAU,QC9VlB,QD+VQ,oBAAU,QC9PlB,QD+PO,mBAAU,QCrJlB,QDsJO,kBAAU,QCelB,QDdc,wBAAU,QC2BlB,QD1BO,uBAAU,QCoClB,QDnCK,oBAAU,QCqClB,QDpCS,qBAAU,QC5alB,QD6ac,2BAAU,QC9alB,QD+aA,mBAAU,QC/VlB,QDgWK,gBAAU,QCoBlB,QDnBe,uBAAU,QC8KlB,QD7KO,sBAAU,QC/FlB,QDgGS,uBAAU,QC6ElB,QD5EM,qBAAU,QC9MlB,QD+MI,iBAAU,QC+KlB,QD9KO,gBAAU,QC7HlB,QD8HW,mBAAU,QCnHlB,QDoHS,oBACG,uBAAU,QCkIlB,QDjIY,2BAAU,QCkIlB,QDjIK,wBAAU,QC0KlB,QDzKO,uBAAU,QClIlB,QDmIO,sBAAU,QCyKlB,QDxKS,uBAAU,QCnIlB,QDoIU,yBAAU,QClIlB,QDmIQ,yBAAU,QCpIlB,QDqIC,kBAAU,QC1GlB,QD2GY,sBAAU,QC7QlB,QD8Qe,6BAAU,QC1UlB,QD2UE,uBAAU,QCzElB,QD0EK,oBAAU,QCkLlB,QDjLM,kBAAU,QCXlB,QDYW,qBAAU,QCuJlB,QDtJS,sBAAU,QCwJlB,QDtJC,eADE,iBACQ,QC/flB,QDggBY,mBAAU,QC4JlB,QD3JM,iBAAU,QC8GlB,QD7GS,kBAAU,QCwDlB,QDvDQ,kBAAU,QC9IlB,QDgJc,wBADV,cACoB,QC0LlB,QDzLS,yBAAU,QCjHlB,QDkHG,oBAAU,QCrHlB,QDsHY,wBAAU,QCnWlB,QDoWK,qBAEG,wBADL,mBACe,QC/gBlB,QDghBK,qBACa,kCAAU,QC9gBlB,QD+gBL,qBACG,wBAAU,QClhBlB,QDmhBK,qBACM,2BAAU,QCnhBlB,QDohBE,qBACI,yBAAU,QCxhBlB,QDyhBQ,yBAAU,QC3IlB,QD4IG,oBAAU,QC3OlB,QD4OY,wBAAU,QCxIlB,QDyIU,0BAAU,QCxIlB,QDyIK,uBAAU,QCwBlB,QDvBU,yBAAU,QCwBlB,QDvBC,kBAAU,QC/dlB,QDgegB,0BAAU,QClelB,QDmeD,iBAAU,QCpclB,QDqcgB,yBAAU,QCljBlB,QDmjBM,uBAAU,QCxPlB,QDyPQ,uBACI,2BAAU,QCzPlB,QD0PI,uBACG,0BAAU,QC7PlB,QD8PK,uBACE,yBAAU,QChQlB,QDiQI,qBAAU,QCrQlB,QDsQU,uBACA,uBAAU,QCxRlB,QD0RS,wBADD,uBACW,QC7RlB,QD8RW,2BAAU,QC1RlB,QD2RM,yBAAU,QCpSlB,QDqSO,wBAAU,QC3RlB,QD4RU,0BAAU,QC/RlB,QDgSM,wBAAU,QCjSlB,QDkSK,qBAAU,QC+DlB,QD9DS,sBAAU,QC/FlB,QDgGc,4BAAU,QC/blB,QDgcN,cAAU,QCtUlB,QDuUe,qBAAU,QCtUlB,QDuUU,uBAAU,QCkElB,QDjEU,yBAAU,QCrKlB,QDsKe,gCAAU,QCrKlB,QDsKF,sBAAU,QC5UlB,QD6US,uBAAU,QCwHlB,QDvHG,kBAAU,QCnFlB,QDoFQ,kBAAU,QCzelB,QD0eS,mBAAU,QC9WlB,QD+WM,iBAAU,QCxKlB,QDyKoB,6BAAU,QCpQlB,QDsQC,sBADR,cACkB,QCSlB,QDRI,kBAAU,QCjdlB,QDkdO,iBAAU,QCzoBlB,QD0oBS,kBAAU,QC/nBlB,QDgoBiB,2BAAU,QC3hBlB,QD4hBS,4BAAU,QC9hBlB,QD+hBQ,4BAAU,QC5hBlB,QD6hBQ,4BAAU,QCjiBlB,QDkiBA,oBAAU,QCpRlB,QDqRO,mBAAU,QC5NlB,QD6NU,qBAAU,QC5NlB,QD6NI,iBAAU,QC/NlB,QDgOM,eAAU,QClOlB,QDmOe,sBAAU,QCpelB,QDqeU,wBAAU,QCpelB,QDqeC,iBAAU,QCtSlB,QDuSQ,iBAAU,QCiFlB,QDhFY,qBAAU,QClkBlB,QDmkBQ,qBAAU,QCrXlB,QDsXW,wBAAU,QCpIlB,QDqIA,gBAAU,QCpclB,QDqcmB,2BAAU,QChelB,QDieC,oBAAU,QCpflB,QDqfI,gBAAU,QClNlB,QDmNgB,wBAAU,QC1XlB,QD2XD,eAAU,QCoDlB,QDnDiB,wBAAU,QC3JlB,QD4JI,oBAAU,QCzNlB,QD0NM,kBAAU,QClHlB,QDmHc,wBAAU,QC7LlB,QD8LU,0BAAU,QC7LlB,QD8LK,uBAAU,QC3ClB,QD4CU,yBAAU,QC3ClB,QD4CO,wBAAU,QCrGlB,QDsGW,2BAAU,QCrGlB,QDsGA,mBAAU,QC7UlB,QD8UU,qBAAU,QCnlBlB,QDolBU,uBAAU,QCnlBlB,QDolBI,mBAAU,QC/LlB,QDgMO,kBAAU,QClXlB,QDmXY,sBAAU,QCkFlB,QDjFK,mBAAU,QCmFlB,QDlFO,kBAAU,QC9clB,QD+ckB,4BAAU,QC2BlB,QD1BM,0BAAU,QCmElB,QDlEW,6BAAU,QCxKlB,QDyKJ,iBAAU,QC9lBlB,QD+lBoB,6BAAU,QCtoBlB,QDuoBW,gCAAU,QCqDlB,QDpDL,mBAAU,QCxlBlB,QDylB4B,uCAAU,QC5oBlB,QD8oBgB,+CADnB,4BAC6B,QC9qBlB,QDirBvB,gBAFI,oBACO,2BACD,QCvflB,QDwfS,iBAAU,QChYlB,QDiYU,mBAAU,QChYlB,QDkYc,yBADN,mBACgB,QC1HlB,QD2HK,sBAAU,QCzRlB,QD0RI,kBAAU,QCiClB,QDhCe,yBAAU,QCiClB,QDhCG,oBAAU,QClHlB,QDmHc,0BAAU,QClHlB,QDmHS,2BAAU,QClHlB,QDmHG,sBAAU,QCrNlB,QDsNS,uBAAU,QCpblB,QDqbE,iBAAU,QCmElB,QDlEY,qBAAU,QCpDlB,QDqDiB,8BACE,gCAAU,QCzYlB,QD0YV,cACU,wBAAU,QC7alB,QD8aO,uBAAU,QCtXlB,QDuXU,yBAAU,QClflB,QDmfU,2BAAU,QClflB,QDmfD,kBAAU,QCtTlB,QDuTc,wBAAU,QCptBlB,QDqtBU,0BAAU,QCptBlB,QDstBM,wBADP,iBACiB,QCrtBlB,QDutBU,0BADP,mBACiB,QCttBlB,QDutBK,uBAAU,QCJlB,QDKU,yBAAU,QCJlB,QDKC,kBAAU,QCHlB,QDIU,oBAAU,QC3WlB,QD4We,2BACR,mBAAU,QC5WlB,QD6WkB,6BACR,qBAAU,QC7WlB,QD8WI,iBAAU,QCtNlB,QDuNiB,0BAAU,QC3blB,QD4bE,oBAAU,QCtFlB,QDuFa,yBAEG,4BADL,uBACe,QCxElB,QDyEK,yBACa,sCAAU,QCvElB,QDwEL,yBACG,4BAAU,QC3ElB,QD4EK,yBACM,+BAAU,QC5ElB,QD6EE,yBACI,6BAAU,QCjFlB,QDkFH,kBAAU,QC3KlB,QD8KM,gBAFG,mBACJ,eACW,QCzrBlB,QD0rBW,mBAAU,QClPlB,QDmPgB,2BAAU,QCKlB,QDJQ,2BAAU,QCKlB,QDJO,0BAAU,QCKlB,QDJS,2BACH,wBAAU,QCDlB,QDEa,6BACH,0BAAU,QCFlB,QDGE,oBAAU,QCxsBlB,QDysBI,gBAAU,QCpblB,QDqbQ,gBAAU,QC1hBlB,QD2hBQ,gBAAU,QCxYlB,QDyYW,mBAAU,QC/OlB,QDgPQ,mBAAU,QCziBlB,QD0iBU,qBAAU,QCjUlB,QDkUU,uBAAU,QC7KlB,QD8KQ,uBAAU,QChIlB,QDiIO,sBAAU,QCJlB,QDKI,kBAAU,QCxUlB,QCzchB,SJ8BE,SAAA,SACA,MAAA,IACA,OAAA,IACA,QAAA,EACA,OAAA,KACA,SAAA,OACA,KAAM,cACN,OAAA,EvEoGC,0BACA,yBACC,SAAA,OACA,MA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"}
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue-additions.css b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue-additions.css
new file mode 100644
index 0000000..3d227fb
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue-additions.css
@@ -0,0 +1,8843 @@
+/* PatternFly additions to Bootstrap */
+.slider {
+  display: inline-block;
+  vertical-align: middle;
+  position: relative;
+}
+.slider.slider-horizontal {
+  width: 100%;
+  height: 16px;
+}
+.slider.slider-horizontal .slider-track {
+  height: 8px;
+  width: 100%;
+  margin-top: -4px;
+  top: 50%;
+  left: 0;
+}
+.slider.slider-horizontal .slider-selection,
+.slider.slider-horizontal .slider-track-low,
+.slider.slider-horizontal .slider-track-high {
+  height: 100%;
+  top: 0;
+  bottom: 0;
+}
+.slider.slider-horizontal .slider-tick,
+.slider.slider-horizontal .slider-handle {
+  margin-left: -8px;
+}
+.slider.slider-horizontal .slider-tick.triangle,
+.slider.slider-horizontal .slider-handle.triangle {
+  position: relative;
+  top: 50%;
+  transform: translateY(-50%);
+  border-width: 0 8px 8px 8px;
+  width: 0;
+  height: 0;
+  border-bottom-color: #ededed;
+  margin-top: 0;
+}
+.slider.slider-horizontal .slider-tick-container {
+  white-space: nowrap;
+  position: absolute;
+  top: 0;
+  left: 0;
+  width: 100%;
+}
+.slider.slider-horizontal .slider-tick-label-container {
+  white-space: nowrap;
+  margin-top: 16px;
+}
+.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
+  padding-top: 16px * 0.2;
+  display: inline-block;
+  text-align: center;
+}
+.slider.slider-horizontal.slider-rtl .slider-track {
+  left: initial;
+  right: 0;
+}
+.slider.slider-horizontal.slider-rtl .slider-tick,
+.slider.slider-horizontal.slider-rtl .slider-handle {
+  margin-left: initial;
+  margin-right: -8px;
+}
+.slider.slider-horizontal.slider-rtl .slider-tick-container {
+  left: initial;
+  right: 0;
+}
+.slider.slider-vertical {
+  height: 210px;
+  width: 16px;
+}
+.slider.slider-vertical .slider-track {
+  width: 8px;
+  height: 100%;
+  left: 25%;
+  top: 0;
+}
+.slider.slider-vertical .slider-selection {
+  width: 100%;
+  left: 0;
+  top: 0;
+  bottom: 0;
+}
+.slider.slider-vertical .slider-track-low,
+.slider.slider-vertical .slider-track-high {
+  width: 100%;
+  left: 0;
+  right: 0;
+}
+.slider.slider-vertical .slider-tick,
+.slider.slider-vertical .slider-handle {
+  margin-top: -8px;
+}
+.slider.slider-vertical .slider-tick.triangle,
+.slider.slider-vertical .slider-handle.triangle {
+  border-width: 8px 0 8px 8px;
+  width: 1px;
+  height: 1px;
+  border-left-color: #ededed;
+  border-right-color: #ededed;
+  margin-left: 0;
+  margin-right: 0;
+}
+.slider.slider-vertical .slider-tick-label-container {
+  white-space: nowrap;
+}
+.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
+  padding-left: 16px * 0.2;
+}
+.slider.slider-vertical.slider-rtl .slider-track {
+  left: initial;
+  right: 25%;
+}
+.slider.slider-vertical.slider-rtl .slider-selection {
+  left: initial;
+  right: 0;
+}
+.slider.slider-vertical.slider-rtl .slider-tick.triangle,
+.slider.slider-vertical.slider-rtl .slider-handle.triangle {
+  border-width: 8px 8px 8px 0;
+}
+.slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tick-label {
+  padding-left: initial;
+  padding-right: 16px * 0.2;
+}
+.slider.slider-disabled .slider-handle {
+  background-image: -webkit-linear-gradient(top, #DFDFDF 0%, #BEBEBE 100%);
+  background-image: -o-linear-gradient(top, #DFDFDF 0%, #BEBEBE 100%);
+  background-image: linear-gradient(to bottom, #DFDFDF 0%, #BEBEBE 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
+}
+.slider.slider-disabled .slider-track {
+  background-image: -webkit-linear-gradient(top, #E5E5E5 0%, #E9E9E9 100%);
+  background-image: -o-linear-gradient(top, #E5E5E5 0%, #E9E9E9 100%);
+  background-image: linear-gradient(to bottom, #E5E5E5 0%, #E9E9E9 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
+  cursor: not-allowed;
+}
+.slider input {
+  display: none;
+}
+.slider .tooltip.top {
+  margin-top: -36px;
+}
+.slider .tooltip-inner {
+  white-space: nowrap;
+  max-width: none;
+}
+.slider .hide {
+  display: none;
+}
+.slider-track {
+  position: absolute;
+  cursor: pointer;
+  background-image: -webkit-linear-gradient(top, #F5F5F5 0%, #F9F9F9 100%);
+  background-image: -o-linear-gradient(top, #F5F5F5 0%, #F9F9F9 100%);
+  background-image: linear-gradient(to bottom, #F5F5F5 0%, #F9F9F9 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
+  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
+  border-radius: 1px;
+}
+.slider-selection {
+  position: absolute;
+  background-image: -webkit-linear-gradient(top, #F9F9F9 0%, #F5F5F5 100%);
+  background-image: -o-linear-gradient(top, #F9F9F9 0%, #F5F5F5 100%);
+  background-image: linear-gradient(to bottom, #F9F9F9 0%, #F5F5F5 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
+  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box;
+  border-radius: 1px;
+}
+.slider-selection.tick-slider-selection {
+  background-image: -webkit-linear-gradient(top, #0088ce 0%, #39a5dc 100%);
+  background-image: -o-linear-gradient(top, #0088ce 0%, #39a5dc 100%);
+  background-image: linear-gradient(to bottom, #0088ce 0%, #39a5dc 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088ce', endColorstr='#ff39a5dc', GradientType=0);
+}
+.slider-track-low,
+.slider-track-high {
+  position: absolute;
+  background: transparent;
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box;
+  border-radius: 1px;
+}
+.slider-handle {
+  position: absolute;
+  top: 0;
+  width: 16px;
+  height: 16px;
+  background-color: #39a5dc;
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+  filter: none;
+  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
+  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
+  border: 0px solid transparent;
+}
+.slider-handle.round {
+  border-radius: 50%;
+}
+.slider-handle.triangle {
+  background: transparent none;
+}
+.slider-handle.custom {
+  background: transparent none;
+}
+.slider-handle.custom::before {
+  line-height: 16px;
+  font-size: 20px;
+  content: '\2605';
+  color: #726204;
+}
+.slider-tick {
+  position: absolute;
+  width: 16px;
+  height: 16px;
+  background-image: -webkit-linear-gradient(top, #F9F9F9 0%, #F5F5F5 100%);
+  background-image: -o-linear-gradient(top, #F9F9F9 0%, #F5F5F5 100%);
+  background-image: linear-gradient(to bottom, #F9F9F9 0%, #F5F5F5 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
+  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box;
+  filter: none;
+  opacity: 0.8;
+  border: 0px solid transparent;
+}
+.slider-tick.round {
+  border-radius: 50%;
+}
+.slider-tick.triangle {
+  background: transparent none;
+}
+.slider-tick.custom {
+  background: transparent none;
+}
+.slider-tick.custom::before {
+  line-height: 16px;
+  font-size: 20px;
+  content: '\2605';
+  color: #726204;
+}
+.slider-tick.in-selection {
+  background-image: -webkit-linear-gradient(top, #0088ce 0%, #39a5dc 100%);
+  background-image: -o-linear-gradient(top, #0088ce 0%, #39a5dc 100%);
+  background-image: linear-gradient(to bottom, #0088ce 0%, #39a5dc 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088ce', endColorstr='#ff39a5dc', GradientType=0);
+  opacity: 1;
+}
+@media (min-width: 768px) {
+  .form-search .combobox-container,
+  .form-inline .combobox-container {
+    display: inline-block;
+    margin-bottom: 0;
+    vertical-align: top;
+  }
+  .form-search .combobox-container .input-group-addon,
+  .form-inline .combobox-container .input-group-addon {
+    width: auto;
+  }
+}
+.combobox-selected .caret {
+  display: none;
+}
+/* :not doesn't work in IE8 */
+.combobox-container:not(.combobox-selected) .glyphicon-remove {
+  display: none;
+}
+.typeahead-long {
+  max-height: 300px;
+  overflow-y: auto;
+}
+.control-group.error .combobox-container .add-on {
+  color: #B94A48;
+  border-color: #B94A48;
+}
+.control-group.error .combobox-container .caret {
+  border-top-color: #B94A48;
+}
+.control-group.warning .combobox-container .add-on {
+  color: #C09853;
+  border-color: #C09853;
+}
+.control-group.warning .combobox-container .caret {
+  border-top-color: #C09853;
+}
+.control-group.success .combobox-container .add-on {
+  color: #468847;
+  border-color: #468847;
+}
+.control-group.success .combobox-container .caret {
+  border-top-color: #468847;
+}
+.datepicker {
+  border-radius: 1px;
+  direction: ltr;
+}
+.datepicker-inline {
+  width: 220px;
+}
+.datepicker-rtl {
+  direction: rtl;
+}
+.datepicker-rtl.dropdown-menu {
+  left: auto;
+}
+.datepicker-rtl table tr td span {
+  float: right;
+}
+.datepicker-dropdown {
+  top: 0;
+  left: 0;
+  padding: 4px;
+}
+.datepicker-dropdown:before {
+  content: '';
+  display: inline-block;
+  border-left: 7px solid transparent;
+  border-right: 7px solid transparent;
+  border-bottom: 7px solid #bbb;
+  border-top: 0;
+  border-bottom-color: rgba(0, 0, 0, 0.2);
+  position: absolute;
+}
+.datepicker-dropdown:after {
+  content: '';
+  display: inline-block;
+  border-left: 6px solid transparent;
+  border-right: 6px solid transparent;
+  border-bottom: 6px solid #fff;
+  border-top: 0;
+  position: absolute;
+}
+.datepicker-dropdown.datepicker-orient-left:before {
+  left: 6px;
+}
+.datepicker-dropdown.datepicker-orient-left:after {
+  left: 7px;
+}
+.datepicker-dropdown.datepicker-orient-right:before {
+  right: 6px;
+}
+.datepicker-dropdown.datepicker-orient-right:after {
+  right: 7px;
+}
+.datepicker-dropdown.datepicker-orient-bottom:before {
+  top: -7px;
+}
+.datepicker-dropdown.datepicker-orient-bottom:after {
+  top: -6px;
+}
+.datepicker-dropdown.datepicker-orient-top:before {
+  bottom: -7px;
+  border-bottom: 0;
+  border-top: 7px solid #bbb;
+}
+.datepicker-dropdown.datepicker-orient-top:after {
+  bottom: -6px;
+  border-bottom: 0;
+  border-top: 6px solid #fff;
+}
+.datepicker table {
+  margin: 0;
+  -webkit-touch-callout: none;
+  -webkit-user-select: none;
+  -khtml-user-select: none;
+  -moz-user-select: none;
+  -ms-user-select: none;
+  user-select: none;
+}
+.datepicker table tr td,
+.datepicker table tr th {
+  text-align: center;
+  width: 30px;
+  height: 30px;
+  border-radius: 4px;
+  border: none;
+}
+.table-striped .datepicker table tr td,
+.table-striped .datepicker table tr th {
+  background-color: transparent;
+}
+.datepicker table tr td.old,
+.datepicker table tr td.new {
+  color: #9c9c9c;
+}
+.datepicker table tr td.day:hover,
+.datepicker table tr td.focused {
+  background: #f1f1f1;
+  cursor: pointer;
+}
+.datepicker table tr td.disabled,
+.datepicker table tr td.disabled:hover {
+  background: none;
+  color: #9c9c9c;
+  cursor: default;
+}
+.datepicker table tr td.highlighted {
+  color: #000;
+  background-color: #d9edf7;
+  border-color: #85c5e5;
+  border-radius: 0;
+}
+.datepicker table tr td.highlighted:focus,
+.datepicker table tr td.highlighted.focus {
+  color: #000;
+  background-color: #afd9ee;
+  border-color: #298fc2;
+}
+.datepicker table tr td.highlighted:hover {
+  color: #000;
+  background-color: #afd9ee;
+  border-color: #52addb;
+}
+.datepicker table tr td.highlighted:active,
+.datepicker table tr td.highlighted.active,
+.open > .dropdown-toggle.datepicker table tr td.highlighted {
+  color: #000;
+  background-color: #afd9ee;
+  border-color: #52addb;
+}
+.datepicker table tr td.highlighted:active:hover,
+.datepicker table tr td.highlighted.active:hover,
+.open > .dropdown-toggle.datepicker table tr td.highlighted:hover,
+.datepicker table tr td.highlighted:active:focus,
+.datepicker table tr td.highlighted.active:focus,
+.open > .dropdown-toggle.datepicker table tr td.highlighted:focus,
+.datepicker table tr td.highlighted:active.focus,
+.datepicker table tr td.highlighted.active.focus,
+.open > .dropdown-toggle.datepicker table tr td.highlighted.focus {
+  color: #000;
+  background-color: #91cbe8;
+  border-color: #298fc2;
+}
+.datepicker table tr td.highlighted:active,
+.datepicker table tr td.highlighted.active,
+.open > .dropdown-toggle.datepicker table tr td.highlighted {
+  background-image: none;
+}
+.datepicker table tr td.highlighted.disabled:hover,
+.datepicker table tr td.highlighted[disabled]:hover,
+fieldset[disabled] .datepicker table tr td.highlighted:hover,
+.datepicker table tr td.highlighted.disabled:focus,
+.datepicker table tr td.highlighted[disabled]:focus,
+fieldset[disabled] .datepicker table tr td.highlighted:focus,
+.datepicker table tr td.highlighted.disabled.focus,
+.datepicker table tr td.highlighted[disabled].focus,
+fieldset[disabled] .datepicker table tr td.highlighted.focus {
+  background-color: #d9edf7;
+  border-color: #85c5e5;
+}
+.datepicker table tr td.highlighted .badge {
+  color: #d9edf7;
+  background-color: #000;
+}
+.datepicker table tr td.highlighted.focused {
+  background: #afd9ee;
+}
+.datepicker table tr td.highlighted.disabled,
+.datepicker table tr td.highlighted.disabled:active {
+  background: #d9edf7;
+  color: #9c9c9c;
+}
+.datepicker table tr td.today {
+  color: #000;
+  background-color: #ffdb99;
+  border-color: #ffb733;
+}
+.datepicker table tr td.today:focus,
+.datepicker table tr td.today.focus {
+  color: #000;
+  background-color: #ffc966;
+  border-color: #b37400;
+}
+.datepicker table tr td.today:hover {
+  color: #000;
+  background-color: #ffc966;
+  border-color: #f59e00;
+}
+.datepicker table tr td.today:active,
+.datepicker table tr td.today.active,
+.open > .dropdown-toggle.datepicker table tr td.today {
+  color: #000;
+  background-color: #ffc966;
+  border-color: #f59e00;
+}
+.datepicker table tr td.today:active:hover,
+.datepicker table tr td.today.active:hover,
+.open > .dropdown-toggle.datepicker table tr td.today:hover,
+.datepicker table tr td.today:active:focus,
+.datepicker table tr td.today.active:focus,
+.open > .dropdown-toggle.datepicker table tr td.today:focus,
+.datepicker table tr td.today:active.focus,
+.datepicker table tr td.today.active.focus,
+.open > .dropdown-toggle.datepicker table tr td.today.focus {
+  color: #000;
+  background-color: #ffbc42;
+  border-color: #b37400;
+}
+.datepicker table tr td.today:active,
+.datepicker table tr td.today.active,
+.open > .dropdown-toggle.datepicker table tr td.today {
+  background-image: none;
+}
+.datepicker table tr td.today.disabled:hover,
+.datepicker table tr td.today[disabled]:hover,
+fieldset[disabled] .datepicker table tr td.today:hover,
+.datepicker table tr td.today.disabled:focus,
+.datepicker table tr td.today[disabled]:focus,
+fieldset[disabled] .datepicker table tr td.today:focus,
+.datepicker table tr td.today.disabled.focus,
+.datepicker table tr td.today[disabled].focus,
+fieldset[disabled] .datepicker table tr td.today.focus {
+  background-color: #ffdb99;
+  border-color: #ffb733;
+}
+.datepicker table tr td.today .badge {
+  color: #ffdb99;
+  background-color: #000;
+}
+.datepicker table tr td.today.focused {
+  background: #ffc966;
+}
+.datepicker table tr td.today.disabled,
+.datepicker table tr td.today.disabled:active {
+  background: #ffdb99;
+  color: #9c9c9c;
+}
+.datepicker table tr td.range {
+  color: #000;
+  background-color: #f1f1f1;
+  border-color: #bebebe;
+  border-radius: 0;
+}
+.datepicker table tr td.range:focus,
+.datepicker table tr td.range.focus {
+  color: #000;
+  background-color: #d8d8d8;
+  border-color: #7f7f7f;
+}
+.datepicker table tr td.range:hover {
+  color: #000;
+  background-color: #d8d8d8;
+  border-color: #a0a0a0;
+}
+.datepicker table tr td.range:active,
+.datepicker table tr td.range.active,
+.open > .dropdown-toggle.datepicker table tr td.range {
+  color: #000;
+  background-color: #d8d8d8;
+  border-color: #a0a0a0;
+}
+.datepicker table tr td.range:active:hover,
+.datepicker table tr td.range.active:hover,
+.open > .dropdown-toggle.datepicker table tr td.range:hover,
+.datepicker table tr td.range:active:focus,
+.datepicker table tr td.range.active:focus,
+.open > .dropdown-toggle.datepicker table tr td.range:focus,
+.datepicker table tr td.range:active.focus,
+.datepicker table tr td.range.active.focus,
+.open > .dropdown-toggle.datepicker table tr td.range.focus {
+  color: #000;
+  background-color: #c6c6c6;
+  border-color: #7f7f7f;
+}
+.datepicker table tr td.range:active,
+.datepicker table tr td.range.active,
+.open > .dropdown-toggle.datepicker table tr td.range {
+  background-image: none;
+}
+.datepicker table tr td.range.disabled:hover,
+.datepicker table tr td.range[disabled]:hover,
+fieldset[disabled] .datepicker table tr td.range:hover,
+.datepicker table tr td.range.disabled:focus,
+.datepicker table tr td.range[disabled]:focus,
+fieldset[disabled] .datepicker table tr td.range:focus,
+.datepicker table tr td.range.disabled.focus,
+.datepicker table tr td.range[disabled].focus,
+fieldset[disabled] .datepicker table tr td.range.focus {
+  background-color: #f1f1f1;
+  border-color: #bebebe;
+}
+.datepicker table tr td.range .badge {
+  color: #f1f1f1;
+  background-color: #000;
+}
+.datepicker table tr td.range.focused {
+  background: #d8d8d8;
+}
+.datepicker table tr td.range.disabled,
+.datepicker table tr td.range.disabled:active {
+  background: #f1f1f1;
+  color: #9c9c9c;
+}
+.datepicker table tr td.range.highlighted {
+  color: #000;
+  background-color: #e5eff4;
+  border-color: #9dc3d6;
+}
+.datepicker table tr td.range.highlighted:focus,
+.datepicker table tr td.range.highlighted.focus {
+  color: #000;
+  background-color: #c1d9e5;
+  border-color: #488bac;
+}
+.datepicker table tr td.range.highlighted:hover {
+  color: #000;
+  background-color: #c1d9e5;
+  border-color: #72a9c4;
+}
+.datepicker table tr td.range.highlighted:active,
+.datepicker table tr td.range.highlighted.active,
+.open > .dropdown-toggle.datepicker table tr td.range.highlighted {
+  color: #000;
+  background-color: #c1d9e5;
+  border-color: #72a9c4;
+}
+.datepicker table tr td.range.highlighted:active:hover,
+.datepicker table tr td.range.highlighted.active:hover,
+.open > .dropdown-toggle.datepicker table tr td.range.highlighted:hover,
+.datepicker table tr td.range.highlighted:active:focus,
+.datepicker table tr td.range.highlighted.active:focus,
+.open > .dropdown-toggle.datepicker table tr td.range.highlighted:focus,
+.datepicker table tr td.range.highlighted:active.focus,
+.datepicker table tr td.range.highlighted.active.focus,
+.open > .dropdown-toggle.datepicker table tr td.range.highlighted.focus {
+  color: #000;
+  background-color: #a8cadb;
+  border-color: #488bac;
+}
+.datepicker table tr td.range.highlighted:active,
+.datepicker table tr td.range.highlighted.active,
+.open > .dropdown-toggle.datepicker table tr td.range.highlighted {
+  background-image: none;
+}
+.datepicker table tr td.range.highlighted.disabled:hover,
+.datepicker table tr td.range.highlighted[disabled]:hover,
+fieldset[disabled] .datepicker table tr td.range.highlighted:hover,
+.datepicker table tr td.range.highlighted.disabled:focus,
+.datepicker table tr td.range.highlighted[disabled]:focus,
+fieldset[disabled] .datepicker table tr td.range.highlighted:focus,
+.datepicker table tr td.range.highlighted.disabled.focus,
+.datepicker table tr td.range.highlighted[disabled].focus,
+fieldset[disabled] .datepicker table tr td.range.highlighted.focus {
+  background-color: #e5eff4;
+  border-color: #9dc3d6;
+}
+.datepicker table tr td.range.highlighted .badge {
+  color: #e5eff4;
+  background-color: #000;
+}
+.datepicker table tr td.range.highlighted.focused {
+  background: #c1d9e5;
+}
+.datepicker table tr td.range.highlighted.disabled,
+.datepicker table tr td.range.highlighted.disabled:active {
+  background: #e5eff4;
+  color: #9c9c9c;
+}
+.datepicker table tr td.range.today {
+  color: #000;
+  background-color: #f8cb79;
+  border-color: #f3a618;
+}
+.datepicker table tr td.range.today:focus,
+.datepicker table tr td.range.today.focus {
+  color: #000;
+  background-color: #f6b848;
+  border-color: #855807;
+}
+.datepicker table tr td.range.today:hover {
+  color: #000;
+  background-color: #f6b848;
+  border-color: #c4820a;
+}
+.datepicker table tr td.range.today:active,
+.datepicker table tr td.range.today.active,
+.open > .dropdown-toggle.datepicker table tr td.range.today {
+  color: #000;
+  background-color: #f6b848;
+  border-color: #c4820a;
+}
+.datepicker table tr td.range.today:active:hover,
+.datepicker table tr td.range.today.active:hover,
+.open > .dropdown-toggle.datepicker table tr td.range.today:hover,
+.datepicker table tr td.range.today:active:focus,
+.datepicker table tr td.range.today.active:focus,
+.open > .dropdown-toggle.datepicker table tr td.range.today:focus,
+.datepicker table tr td.range.today:active.focus,
+.datepicker table tr td.range.today.active.focus,
+.open > .dropdown-toggle.datepicker table tr td.range.today.focus {
+  color: #000;
+  background-color: #f4ab26;
+  border-color: #855807;
+}
+.datepicker table tr td.range.today:active,
+.datepicker table tr td.range.today.active,
+.open > .dropdown-toggle.datepicker table tr td.range.today {
+  background-image: none;
+}
+.datepicker table tr td.range.today.disabled:hover,
+.datepicker table tr td.range.today[disabled]:hover,
+fieldset[disabled] .datepicker table tr td.range.today:hover,
+.datepicker table tr td.range.today.disabled:focus,
+.datepicker table tr td.range.today[disabled]:focus,
+fieldset[disabled] .datepicker table tr td.range.today:focus,
+.datepicker table tr td.range.today.disabled.focus,
+.datepicker table tr td.range.today[disabled].focus,
+fieldset[disabled] .datepicker table tr td.range.today.focus {
+  background-color: #f8cb79;
+  border-color: #f3a618;
+}
+.datepicker table tr td.range.today .badge {
+  color: #f8cb79;
+  background-color: #000;
+}
+.datepicker table tr td.range.today.disabled,
+.datepicker table tr td.range.today.disabled:active {
+  background: #f8cb79;
+  color: #9c9c9c;
+}
+.datepicker table tr td.selected,
+.datepicker table tr td.selected.highlighted {
+  color: #fff;
+  background-color: #9c9c9c;
+  border-color: #555555;
+  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+.datepicker table tr td.selected:focus,
+.datepicker table tr td.selected.highlighted:focus,
+.datepicker table tr td.selected.focus,
+.datepicker table tr td.selected.highlighted.focus {
+  color: #fff;
+  background-color: #838383;
+  border-color: #161616;
+}
+.datepicker table tr td.selected:hover,
+.datepicker table tr td.selected.highlighted:hover {
+  color: #fff;
+  background-color: #838383;
+  border-color: #373737;
+}
+.datepicker table tr td.selected:active,
+.datepicker table tr td.selected.highlighted:active,
+.datepicker table tr td.selected.active,
+.datepicker table tr td.selected.highlighted.active,
+.open > .dropdown-toggle.datepicker table tr td.selected,
+.open > .dropdown-toggle.datepicker table tr td.selected.highlighted {
+  color: #fff;
+  background-color: #838383;
+  border-color: #373737;
+}
+.datepicker table tr td.selected:active:hover,
+.datepicker table tr td.selected.highlighted:active:hover,
+.datepicker table tr td.selected.active:hover,
+.datepicker table tr td.selected.highlighted.active:hover,
+.open > .dropdown-toggle.datepicker table tr td.selected:hover,
+.open > .dropdown-toggle.datepicker table tr td.selected.highlighted:hover,
+.datepicker table tr td.selected:active:focus,
+.datepicker table tr td.selected.highlighted:active:focus,
+.datepicker table tr td.selected.active:focus,
+.datepicker table tr td.selected.highlighted.active:focus,
+.open > .dropdown-toggle.datepicker table tr td.selected:focus,
+.open > .dropdown-toggle.datepicker table tr td.selected.highlighted:focus,
+.datepicker table tr td.selected:active.focus,
+.datepicker table tr td.selected.highlighted:active.focus,
+.datepicker table tr td.selected.active.focus,
+.datepicker table tr td.selected.highlighted.active.focus,
+.open > .dropdown-toggle.datepicker table tr td.selected.focus,
+.open > .dropdown-toggle.datepicker table tr td.selected.highlighted.focus {
+  color: #fff;
+  background-color: #717171;
+  border-color: #161616;
+}
+.datepicker table tr td.selected:active,
+.datepicker table tr td.selected.highlighted:active,
+.datepicker table tr td.selected.active,
+.datepicker table tr td.selected.highlighted.active,
+.open > .dropdown-toggle.datepicker table tr td.selected,
+.open > .dropdown-toggle.datepicker table tr td.selected.highlighted {
+  background-image: none;
+}
+.datepicker table tr td.selected.disabled:hover,
+.datepicker table tr td.selected.highlighted.disabled:hover,
+.datepicker table tr td.selected[disabled]:hover,
+.datepicker table tr td.selected.highlighted[disabled]:hover,
+fieldset[disabled] .datepicker table tr td.selected:hover,
+fieldset[disabled] .datepicker table tr td.selected.highlighted:hover,
+.datepicker table tr td.selected.disabled:focus,
+.datepicker table tr td.selected.highlighted.disabled:focus,
+.datepicker table tr td.selected[disabled]:focus,
+.datepicker table tr td.selected.highlighted[disabled]:focus,
+fieldset[disabled] .datepicker table tr td.selected:focus,
+fieldset[disabled] .datepicker table tr td.selected.highlighted:focus,
+.datepicker table tr td.selected.disabled.focus,
+.datepicker table tr td.selected.highlighted.disabled.focus,
+.datepicker table tr td.selected[disabled].focus,
+.datepicker table tr td.selected.highlighted[disabled].focus,
+fieldset[disabled] .datepicker table tr td.selected.focus,
+fieldset[disabled] .datepicker table tr td.selected.highlighted.focus {
+  background-color: #9c9c9c;
+  border-color: #555555;
+}
+.datepicker table tr td.selected .badge,
+.datepicker table tr td.selected.highlighted .badge {
+  color: #9c9c9c;
+  background-color: #fff;
+}
+.datepicker table tr td.active,
+.datepicker table tr td.active.highlighted {
+  color: #fff;
+  background-color: #0088ce;
+  border-color: #00659c;
+  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+.datepicker table tr td.active:focus,
+.datepicker table tr td.active.highlighted:focus,
+.datepicker table tr td.active.focus,
+.datepicker table tr td.active.highlighted.focus {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #00121d;
+}
+.datepicker table tr td.active:hover,
+.datepicker table tr td.active.highlighted:hover {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #003d5f;
+}
+.datepicker table tr td.active:active,
+.datepicker table tr td.active.highlighted:active,
+.datepicker table tr td.active.active,
+.datepicker table tr td.active.highlighted.active,
+.open > .dropdown-toggle.datepicker table tr td.active,
+.open > .dropdown-toggle.datepicker table tr td.active.highlighted {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #003d5f;
+}
+.datepicker table tr td.active:active:hover,
+.datepicker table tr td.active.highlighted:active:hover,
+.datepicker table tr td.active.active:hover,
+.datepicker table tr td.active.highlighted.active:hover,
+.open > .dropdown-toggle.datepicker table tr td.active:hover,
+.open > .dropdown-toggle.datepicker table tr td.active.highlighted:hover,
+.datepicker table tr td.active:active:focus,
+.datepicker table tr td.active.highlighted:active:focus,
+.datepicker table tr td.active.active:focus,
+.datepicker table tr td.active.highlighted.active:focus,
+.open > .dropdown-toggle.datepicker table tr td.active:focus,
+.open > .dropdown-toggle.datepicker table tr td.active.highlighted:focus,
+.datepicker table tr td.active:active.focus,
+.datepicker table tr td.active.highlighted:active.focus,
+.datepicker table tr td.active.active.focus,
+.datepicker table tr td.active.highlighted.active.focus,
+.open > .dropdown-toggle.datepicker table tr td.active.focus,
+.open > .dropdown-toggle.datepicker table tr td.active.highlighted.focus {
+  color: #fff;
+  background-color: #004f77;
+  border-color: #00121d;
+}
+.datepicker table tr td.active:active,
+.datepicker table tr td.active.highlighted:active,
+.datepicker table tr td.active.active,
+.datepicker table tr td.active.highlighted.active,
+.open > .dropdown-toggle.datepicker table tr td.active,
+.open > .dropdown-toggle.datepicker table tr td.active.highlighted {
+  background-image: none;
+}
+.datepicker table tr td.active.disabled:hover,
+.datepicker table tr td.active.highlighted.disabled:hover,
+.datepicker table tr td.active[disabled]:hover,
+.datepicker table tr td.active.highlighted[disabled]:hover,
+fieldset[disabled] .datepicker table tr td.active:hover,
+fieldset[disabled] .datepicker table tr td.active.highlighted:hover,
+.datepicker table tr td.active.disabled:focus,
+.datepicker table tr td.active.highlighted.disabled:focus,
+.datepicker table tr td.active[disabled]:focus,
+.datepicker table tr td.active.highlighted[disabled]:focus,
+fieldset[disabled] .datepicker table tr td.active:focus,
+fieldset[disabled] .datepicker table tr td.active.highlighted:focus,
+.datepicker table tr td.active.disabled.focus,
+.datepicker table tr td.active.highlighted.disabled.focus,
+.datepicker table tr td.active[disabled].focus,
+.datepicker table tr td.active.highlighted[disabled].focus,
+fieldset[disabled] .datepicker table tr td.active.focus,
+fieldset[disabled] .datepicker table tr td.active.highlighted.focus {
+  background-color: #0088ce;
+  border-color: #00659c;
+}
+.datepicker table tr td.active .badge,
+.datepicker table tr td.active.highlighted .badge {
+  color: #0088ce;
+  background-color: #fff;
+}
+.datepicker table tr td span {
+  display: block;
+  width: 23%;
+  height: 54px;
+  line-height: 54px;
+  float: left;
+  margin: 1%;
+  cursor: pointer;
+  border-radius: 4px;
+}
+.datepicker table tr td span:hover,
+.datepicker table tr td span.focused {
+  background: #f1f1f1;
+}
+.datepicker table tr td span.disabled,
+.datepicker table tr td span.disabled:hover {
+  background: none;
+  color: #9c9c9c;
+  cursor: default;
+}
+.datepicker table tr td span.active,
+.datepicker table tr td span.active:hover,
+.datepicker table tr td span.active.disabled,
+.datepicker table tr td span.active.disabled:hover {
+  color: #fff;
+  background-color: #0088ce;
+  border-color: #00659c;
+  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+.datepicker table tr td span.active:focus,
+.datepicker table tr td span.active:hover:focus,
+.datepicker table tr td span.active.disabled:focus,
+.datepicker table tr td span.active.disabled:hover:focus,
+.datepicker table tr td span.active.focus,
+.datepicker table tr td span.active:hover.focus,
+.datepicker table tr td span.active.disabled.focus,
+.datepicker table tr td span.active.disabled:hover.focus {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #00121d;
+}
+.datepicker table tr td span.active:hover,
+.datepicker table tr td span.active:hover:hover,
+.datepicker table tr td span.active.disabled:hover,
+.datepicker table tr td span.active.disabled:hover:hover {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #003d5f;
+}
+.datepicker table tr td span.active:active,
+.datepicker table tr td span.active:hover:active,
+.datepicker table tr td span.active.disabled:active,
+.datepicker table tr td span.active.disabled:hover:active,
+.datepicker table tr td span.active.active,
+.datepicker table tr td span.active:hover.active,
+.datepicker table tr td span.active.disabled.active,
+.datepicker table tr td span.active.disabled:hover.active,
+.open > .dropdown-toggle.datepicker table tr td span.active,
+.open > .dropdown-toggle.datepicker table tr td span.active:hover,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
+  color: #fff;
+  background-color: #00669b;
+  border-color: #003d5f;
+}
+.datepicker table tr td span.active:active:hover,
+.datepicker table tr td span.active:hover:active:hover,
+.datepicker table tr td span.active.disabled:active:hover,
+.datepicker table tr td span.active.disabled:hover:active:hover,
+.datepicker table tr td span.active.active:hover,
+.datepicker table tr td span.active:hover.active:hover,
+.datepicker table tr td span.active.disabled.active:hover,
+.datepicker table tr td span.active.disabled:hover.active:hover,
+.open > .dropdown-toggle.datepicker table tr td span.active:hover,
+.open > .dropdown-toggle.datepicker table tr td span.active:hover:hover,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover:hover,
+.datepicker table tr td span.active:active:focus,
+.datepicker table tr td span.active:hover:active:focus,
+.datepicker table tr td span.active.disabled:active:focus,
+.datepicker table tr td span.active.disabled:hover:active:focus,
+.datepicker table tr td span.active.active:focus,
+.datepicker table tr td span.active:hover.active:focus,
+.datepicker table tr td span.active.disabled.active:focus,
+.datepicker table tr td span.active.disabled:hover.active:focus,
+.open > .dropdown-toggle.datepicker table tr td span.active:focus,
+.open > .dropdown-toggle.datepicker table tr td span.active:hover:focus,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled:focus,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover:focus,
+.datepicker table tr td span.active:active.focus,
+.datepicker table tr td span.active:hover:active.focus,
+.datepicker table tr td span.active.disabled:active.focus,
+.datepicker table tr td span.active.disabled:hover:active.focus,
+.datepicker table tr td span.active.active.focus,
+.datepicker table tr td span.active:hover.active.focus,
+.datepicker table tr td span.active.disabled.active.focus,
+.datepicker table tr td span.active.disabled:hover.active.focus,
+.open > .dropdown-toggle.datepicker table tr td span.active.focus,
+.open > .dropdown-toggle.datepicker table tr td span.active:hover.focus,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled.focus,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover.focus {
+  color: #fff;
+  background-color: #004f77;
+  border-color: #00121d;
+}
+.datepicker table tr td span.active:active,
+.datepicker table tr td span.active:hover:active,
+.datepicker table tr td span.active.disabled:active,
+.datepicker table tr td span.active.disabled:hover:active,
+.datepicker table tr td span.active.active,
+.datepicker table tr td span.active:hover.active,
+.datepicker table tr td span.active.disabled.active,
+.datepicker table tr td span.active.disabled:hover.active,
+.open > .dropdown-toggle.datepicker table tr td span.active,
+.open > .dropdown-toggle.datepicker table tr td span.active:hover,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled,
+.open > .dropdown-toggle.datepicker table tr td span.active.disabled:hover {
+  background-image: none;
+}
+.datepicker table tr td span.active.disabled:hover,
+.datepicker table tr td span.active:hover.disabled:hover,
+.datepicker table tr td span.active.disabled.disabled:hover,
+.datepicker table tr td span.active.disabled:hover.disabled:hover,
+.datepicker table tr td span.active[disabled]:hover,
+.datepicker table tr td span.active:hover[disabled]:hover,
+.datepicker table tr td span.active.disabled[disabled]:hover,
+.datepicker table tr td span.active.disabled:hover[disabled]:hover,
+fieldset[disabled] .datepicker table tr td span.active:hover,
+fieldset[disabled] .datepicker table tr td span.active:hover:hover,
+fieldset[disabled] .datepicker table tr td span.active.disabled:hover,
+fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,
+.datepicker table tr td span.active.disabled:focus,
+.datepicker table tr td span.active:hover.disabled:focus,
+.datepicker table tr td span.active.disabled.disabled:focus,
+.datepicker table tr td span.active.disabled:hover.disabled:focus,
+.datepicker table tr td span.active[disabled]:focus,
+.datepicker table tr td span.active:hover[disabled]:focus,
+.datepicker table tr td span.active.disabled[disabled]:focus,
+.datepicker table tr td span.active.disabled:hover[disabled]:focus,
+fieldset[disabled] .datepicker table tr td span.active:focus,
+fieldset[disabled] .datepicker table tr td span.active:hover:focus,
+fieldset[disabled] .datepicker table tr td span.active.disabled:focus,
+fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,
+.datepicker table tr td span.active.disabled.focus,
+.datepicker table tr td span.active:hover.disabled.focus,
+.datepicker table tr td span.active.disabled.disabled.focus,
+.datepicker table tr td span.active.disabled:hover.disabled.focus,
+.datepicker table tr td span.active[disabled].focus,
+.datepicker table tr td span.active:hover[disabled].focus,
+.datepicker table tr td span.active.disabled[disabled].focus,
+.datepicker table tr td span.active.disabled:hover[disabled].focus,
+fieldset[disabled] .datepicker table tr td span.active.focus,
+fieldset[disabled] .datepicker table tr td span.active:hover.focus,
+fieldset[disabled] .datepicker table tr td span.active.disabled.focus,
+fieldset[disabled] .datepicker table tr td span.active.disabled:hover.focus {
+  background-color: #0088ce;
+  border-color: #00659c;
+}
+.datepicker table tr td span.active .badge,
+.datepicker table tr td span.active:hover .badge,
+.datepicker table tr td span.active.disabled .badge,
+.datepicker table tr td span.active.disabled:hover .badge {
+  color: #0088ce;
+  background-color: #fff;
+}
+.datepicker table tr td span.old,
+.datepicker table tr td span.new {
+  color: #9c9c9c;
+}
+.datepicker .datepicker-switch {
+  width: 145px;
+}
+.datepicker .datepicker-switch,
+.datepicker .prev,
+.datepicker .next,
+.datepicker tfoot tr th {
+  cursor: pointer;
+}
+.datepicker .datepicker-switch:hover,
+.datepicker .prev:hover,
+.datepicker .next:hover,
+.datepicker tfoot tr th:hover {
+  background: #f1f1f1;
+}
+.datepicker .prev.disabled,
+.datepicker .next.disabled {
+  visibility: hidden;
+}
+.datepicker .cw {
+  font-size: 10px;
+  width: 12px;
+  padding: 0 2px 0 5px;
+  vertical-align: middle;
+}
+.input-group.date .input-group-addon {
+  cursor: pointer;
+}
+.input-daterange {
+  width: 100%;
+}
+.input-daterange input {
+  text-align: center;
+}
+.input-daterange input:first-child {
+  border-radius: 3px 0 0 3px;
+}
+.input-daterange input:last-child {
+  border-radius: 0 3px 3px 0;
+}
+.input-daterange .input-group-addon {
+  width: auto;
+  min-width: 16px;
+  padding: 4px 5px;
+  line-height: 1.66666667;
+  text-shadow: 0 1px 0 #fff;
+  border-width: 1px 0;
+  margin-left: -5px;
+  margin-right: -5px;
+}
+select.bs-select-hidden,
+select.selectpicker {
+  display: none !important;
+}
+.bootstrap-select {
+  width: 220px \0;
+  /*IE9 and below*/
+}
+.bootstrap-select > .dropdown-toggle {
+  width: 100%;
+  padding-right: 25px;
+  z-index: 1;
+}
+.bootstrap-select > .dropdown-toggle.bs-placeholder,
+.bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
+.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
+.bootstrap-select > .dropdown-toggle.bs-placeholder:active {
+  color: #999;
+}
+.bootstrap-select > select {
+  position: absolute !important;
+  bottom: 0;
+  left: 50%;
+  display: block !important;
+  width: 0.5px !important;
+  height: 100% !important;
+  padding: 0 !important;
+  opacity: 0 !important;
+  border: none;
+}
+.bootstrap-select > select.mobile-device {
+  top: 0;
+  left: 0;
+  display: block !important;
+  width: 100% !important;
+  z-index: 2;
+}
+.has-error .bootstrap-select .dropdown-toggle,
+.error .bootstrap-select .dropdown-toggle {
+  border-color: #b94a48;
+}
+.bootstrap-select.fit-width {
+  width: auto !important;
+}
+.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
+  width: 220px;
+}
+.bootstrap-select .dropdown-toggle:focus {
+  outline: thin dotted #333333 !important;
+  outline: 5px auto -webkit-focus-ring-color !important;
+  outline-offset: -2px;
+}
+.bootstrap-select.form-control {
+  margin-bottom: 0;
+  padding: 0;
+  border: none;
+}
+.bootstrap-select.form-control:not([class*="col-"]) {
+  width: 100%;
+}
+.bootstrap-select.form-control.input-group-btn {
+  z-index: auto;
+}
+.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
+  border-radius: 0;
+}
+.bootstrap-select.btn-group:not(.input-group-btn),
+.bootstrap-select.btn-group[class*="col-"] {
+  float: none;
+  display: inline-block;
+  margin-left: 0;
+}
+.bootstrap-select.btn-group.dropdown-menu-right,
+.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
+.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
+  float: right;
+}
+.form-inline .bootstrap-select.btn-group,
+.form-horizontal .bootstrap-select.btn-group,
+.form-group .bootstrap-select.btn-group {
+  margin-bottom: 0;
+}
+.form-group-lg .bootstrap-select.btn-group.form-control,
+.form-group-sm .bootstrap-select.btn-group.form-control {
+  padding: 0;
+}
+.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,
+.form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
+  height: 100%;
+  font-size: inherit;
+  line-height: inherit;
+  border-radius: inherit;
+}
+.form-inline .bootstrap-select.btn-group .form-control {
+  width: 100%;
+}
+.bootstrap-select.btn-group.disabled,
+.bootstrap-select.btn-group > .disabled {
+  cursor: not-allowed;
+}
+.bootstrap-select.btn-group.disabled:focus,
+.bootstrap-select.btn-group > .disabled:focus {
+  outline: none !important;
+}
+.bootstrap-select.btn-group.bs-container {
+  position: absolute;
+  height: 0 !important;
+  padding: 0 !important;
+}
+.bootstrap-select.btn-group.bs-container .dropdown-menu {
+  z-index: 1060;
+}
+.bootstrap-select.btn-group .dropdown-toggle .filter-option {
+  display: inline-block;
+  overflow: hidden;
+  width: 100%;
+  text-align: left;
+}
+.bootstrap-select.btn-group .dropdown-toggle .caret {
+  position: absolute;
+  top: 50%;
+  right: 12px;
+  margin-top: -2px;
+  vertical-align: middle;
+}
+.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
+  width: 100%;
+}
+.bootstrap-select.btn-group .dropdown-menu {
+  min-width: 100%;
+  box-sizing: border-box;
+}
+.bootstrap-select.btn-group .dropdown-menu.inner {
+  position: static;
+  float: none;
+  border: 0;
+  padding: 0;
+  margin: 0;
+  border-radius: 0;
+  box-shadow: none;
+}
+.bootstrap-select.btn-group .dropdown-menu li {
+  position: relative;
+}
+.bootstrap-select.btn-group .dropdown-menu li.active small {
+  color: #fff;
+}
+.bootstrap-select.btn-group .dropdown-menu li.disabled a {
+  cursor: not-allowed;
+}
+.bootstrap-select.btn-group .dropdown-menu li a {
+  cursor: pointer;
+  user-select: none;
+}
+.bootstrap-select.btn-group .dropdown-menu li a.opt {
+  position: relative;
+  padding-left: 2.25em;
+}
+.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
+  display: none;
+}
+.bootstrap-select.btn-group .dropdown-menu li a span.text {
+  display: inline-block;
+}
+.bootstrap-select.btn-group .dropdown-menu li small {
+  padding-left: 0.5em;
+}
+.bootstrap-select.btn-group .dropdown-menu .notify {
+  position: absolute;
+  bottom: 5px;
+  width: 96%;
+  margin: 0 2%;
+  min-height: 26px;
+  padding: 3px 5px;
+  background: #f5f5f5;
+  border: 1px solid #e3e3e3;
+  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
+  pointer-events: none;
+  opacity: 0.9;
+  box-sizing: border-box;
+}
+.bootstrap-select.btn-group .no-results {
+  padding: 3px;
+  background: #f5f5f5;
+  margin: 0 5px;
+  white-space: nowrap;
+}
+.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
+  position: static;
+}
+.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
+  position: static;
+  top: auto;
+  margin-top: -1px;
+}
+.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
+  position: absolute;
+  display: inline-block;
+  right: 15px;
+  margin-top: 5px;
+}
+.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
+  margin-right: 34px;
+}
+.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
+  z-index: 1061;
+}
+.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
+  content: '';
+  border-left: 7px solid transparent;
+  border-right: 7px solid transparent;
+  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
+  position: absolute;
+  bottom: -4px;
+  left: 9px;
+  display: none;
+}
+.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
+  content: '';
+  border-left: 6px solid transparent;
+  border-right: 6px solid transparent;
+  border-bottom: 6px solid white;
+  position: absolute;
+  bottom: -4px;
+  left: 10px;
+  display: none;
+}
+.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
+  bottom: auto;
+  top: -3px;
+  border-top: 7px solid rgba(204, 204, 204, 0.2);
+  border-bottom: 0;
+}
+.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
+  bottom: auto;
+  top: -3px;
+  border-top: 6px solid white;
+  border-bottom: 0;
+}
+.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
+  right: 12px;
+  left: auto;
+}
+.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
+  right: 13px;
+  left: auto;
+}
+.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
+.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
+  display: block;
+}
+.bs-searchbox,
+.bs-actionsbox,
+.bs-donebutton {
+  padding: 4px 8px;
+}
+.bs-actionsbox {
+  width: 100%;
+  box-sizing: border-box;
+}
+.bs-actionsbox .btn-group button {
+  width: 50%;
+}
+.bs-donebutton {
+  float: left;
+  width: 100%;
+  box-sizing: border-box;
+}
+.bs-donebutton .btn-group button {
+  width: 100%;
+}
+.bs-searchbox + .bs-actionsbox {
+  padding: 0 8px 4px;
+}
+.bs-searchbox .form-control {
+  margin-bottom: 0;
+  width: 100%;
+  float: none;
+}
+.bootstrap-switch {
+  display: inline-block;
+  direction: ltr;
+  cursor: pointer;
+  border-radius: 1px;
+  border: 1px solid;
+  border-color: #bbb;
+  position: relative;
+  text-align: left;
+  overflow: hidden;
+  line-height: 8px;
+  z-index: 0;
+  -webkit-user-select: none;
+  -moz-user-select: none;
+  -ms-user-select: none;
+  user-select: none;
+  vertical-align: middle;
+  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+}
+.bootstrap-switch .bootstrap-switch-container {
+  display: inline-block;
+  top: 0;
+  border-radius: 1px;
+  -webkit-transform: translate3d(0, 0, 0);
+  transform: translate3d(0, 0, 0);
+}
+.bootstrap-switch .bootstrap-switch-handle-on,
+.bootstrap-switch .bootstrap-switch-handle-off,
+.bootstrap-switch .bootstrap-switch-label {
+  -webkit-box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  box-sizing: border-box;
+  cursor: pointer;
+  display: table-cell;
+  vertical-align: middle;
+  padding: 2px 6px;
+  font-size: 12px;
+  line-height: 20px;
+}
+.bootstrap-switch .bootstrap-switch-handle-on,
+.bootstrap-switch .bootstrap-switch-handle-off {
+  text-align: center;
+  z-index: 1;
+}
+.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
+.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
+  color: #fff;
+  background: #0088ce;
+}
+.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
+.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
+  color: #fff;
+  background: #00659c;
+}
+.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
+.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
+  color: #fff;
+  background: #3f9c35;
+}
+.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
+.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
+  background: #ec7a08;
+  color: #fff;
+}
+.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
+.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
+  color: #fff;
+  background: #a30000;
+}
+.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
+.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
+  color: #000;
+  background: #f1f1f1;
+}
+.bootstrap-switch .bootstrap-switch-label {
+  text-align: center;
+  margin-top: -1px;
+  margin-bottom: -1px;
+  z-index: 100;
+  color: #4d5258;
+  background: #f1f1f1;
+}
+.bootstrap-switch span::before {
+  content: "\200b";
+}
+.bootstrap-switch .bootstrap-switch-handle-on {
+  border-bottom-left-radius: 1px - 1;
+  border-top-left-radius: 1px - 1;
+}
+.bootstrap-switch .bootstrap-switch-handle-off {
+  border-bottom-right-radius: 1px - 1;
+  border-top-right-radius: 1px - 1;
+}
+.bootstrap-switch input[type='radio'],
+.bootstrap-switch input[type='checkbox'] {
+  position: absolute !important;
+  top: 0;
+  left: 0;
+  margin: 0;
+  z-index: -1;
+  opacity: 0;
+  filter: alpha(opacity=0);
+  visibility: hidden;
+}
+.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
+.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
+.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
+  padding: 1px 5px;
+  font-size: 11px;
+  line-height: 1.5;
+}
+.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
+.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
+.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
+  padding: 2px 6px;
+  font-size: 11px;
+  line-height: 1.5;
+}
+.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
+.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
+.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
+  padding: 2px 10px;
+  font-size: 14px;
+  line-height: 1.3333333;
+}
+.bootstrap-switch.bootstrap-switch-disabled,
+.bootstrap-switch.bootstrap-switch-readonly,
+.bootstrap-switch.bootstrap-switch-indeterminate {
+  cursor: default !important;
+}
+.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
+.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
+.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
+.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
+.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
+.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
+.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,
+.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,
+.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label {
+  opacity: 0.5;
+  filter: alpha(opacity=50);
+  cursor: default !important;
+}
+.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
+  -webkit-transition: margin-left 0.5s;
+  -o-transition: margin-left 0.5s;
+  transition: margin-left 0.5s;
+}
+.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {
+  border-bottom-left-radius: 0;
+  border-top-left-radius: 0;
+  border-bottom-right-radius: 1px - 1;
+  border-top-right-radius: 1px - 1;
+}
+.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {
+  border-bottom-right-radius: 0;
+  border-top-right-radius: 0;
+  border-bottom-left-radius: 1px - 1;
+  border-top-left-radius: 1px - 1;
+}
+.bootstrap-switch.bootstrap-switch-focused {
+  border-color: #0088ce;
+  outline: 0;
+  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 136, 206, 0.6);
+  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 136, 206, 0.6);
+}
+.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label,
+.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label {
+  border-bottom-right-radius: 1px - 1;
+  border-top-right-radius: 1px - 1;
+}
+.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label,
+.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label {
+  border-bottom-left-radius: 1px - 1;
+  border-top-left-radius: 1px - 1;
+}
+/*
+ *  Bootstrap TouchSpin - v3.1.1
+ *  A mobile and touch friendly input spinner component for Bootstrap 3.
+ *  http://www.virtuosoft.eu/code/bootstrap-touchspin/
+ *
+ *  Made by István Ujj-Mészáros
+ *  Under Apache License v2.0 License
+ */
+.bootstrap-touchspin .input-group-btn-vertical {
+  position: relative;
+  white-space: nowrap;
+  width: 1%;
+  vertical-align: middle;
+  display: table-cell;
+}
+.bootstrap-touchspin .input-group-btn-vertical > .btn {
+  display: block;
+  float: none;
+  width: 100%;
+  max-width: 100%;
+  padding: 8px 10px;
+  margin-left: -1px;
+  position: relative;
+}
+.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
+  border-radius: 0;
+  border-top-right-radius: 4px;
+}
+.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
+  margin-top: -2px;
+  border-radius: 0;
+  border-bottom-right-radius: 4px;
+}
+.bootstrap-touchspin .input-group-btn-vertical i {
+  position: absolute;
+  top: 3px;
+  left: 5px;
+  font-size: 9px;
+  font-weight: normal;
+}
+/*-- Chart --*/
+.c3 svg {
+  font: 10px sans-serif;
+  -webkit-tap-highlight-color: transparent;
+}
+.c3 path,
+.c3 line {
+  fill: none;
+  stroke: #000;
+}
+.c3 text {
+  -webkit-user-select: none;
+  -moz-user-select: none;
+  user-select: none;
+}
+.c3-legend-item-tile,
+.c3-xgrid-focus,
+.c3-ygrid,
+.c3-event-rect,
+.c3-bars path {
+  shape-rendering: crispEdges;
+}
+.c3-chart-arc path {
+  stroke: #fff;
+}
+.c3-chart-arc rect {
+  stroke: white;
+  stroke-width: 1;
+}
+.c3-chart-arc text {
+  fill: #fff;
+  font-size: 13px;
+}
+/*-- Axis --*/
+/*-- Grid --*/
+.c3-grid line {
+  stroke: #aaa;
+}
+.c3-grid text {
+  fill: #aaa;
+}
+.c3-xgrid,
+.c3-ygrid {
+  stroke-dasharray: 3 3;
+}
+/*-- Text on Chart --*/
+.c3-text.c3-empty {
+  fill: #808080;
+  font-size: 2em;
+}
+/*-- Line --*/
+.c3-line {
+  stroke-width: 1px;
+}
+/*-- Point --*/
+.c3-circle._expanded_ {
+  stroke-width: 1px;
+  stroke: white;
+}
+.c3-selected-circle {
+  fill: white;
+  stroke-width: 2px;
+}
+/*-- Bar --*/
+.c3-bar {
+  stroke-width: 0;
+}
+.c3-bar._expanded_ {
+  fill-opacity: 1;
+  fill-opacity: 0.75;
+}
+/*-- Focus --*/
+.c3-target.c3-focused {
+  opacity: 1;
+}
+.c3-target.c3-focused path.c3-line,
+.c3-target.c3-focused path.c3-step {
+  stroke-width: 2px;
+}
+.c3-target.c3-defocused {
+  opacity: 0.3 !important;
+}
+/*-- Region --*/
+.c3-region {
+  fill: steelblue;
+  fill-opacity: .1;
+}
+/*-- Brush --*/
+.c3-brush .extent {
+  fill-opacity: .1;
+}
+/*-- Select - Drag --*/
+/*-- Legend --*/
+.c3-legend-item {
+  font-size: 12px;
+}
+.c3-legend-item-hidden {
+  opacity: 0.15;
+}
+.c3-legend-background {
+  opacity: 0.75;
+  fill: white;
+  stroke: lightgray;
+  stroke-width: 1;
+}
+/*-- Title --*/
+.c3-title {
+  font: 14px sans-serif;
+}
+/*-- Tooltip --*/
+.c3-tooltip-container {
+  z-index: 10;
+}
+.c3-tooltip {
+  border-collapse: collapse;
+  border-spacing: 0;
+  background-color: #fff;
+  empty-cells: show;
+  -webkit-box-shadow: 7px 7px 12px -9px #777777;
+  -moz-box-shadow: 7px 7px 12px -9px #777777;
+  box-shadow: 7px 7px 12px -9px #777777;
+  opacity: 0.9;
+}
+.c3-tooltip tr {
+  border: 1px solid #CCC;
+}
+.c3-tooltip th {
+  background-color: #aaa;
+  font-size: 14px;
+  padding: 2px 5px;
+  text-align: left;
+  color: #FFF;
+}
+.c3-tooltip td {
+  font-size: 13px;
+  padding: 3px 6px;
+  background-color: #fff;
+  border-left: 1px dotted #999;
+}
+.c3-tooltip td > span {
+  display: inline-block;
+  width: 10px;
+  height: 10px;
+  margin-right: 6px;
+}
+.c3-tooltip td.value {
+  text-align: right;
+}
+/*-- Area --*/
+.c3-area {
+  stroke-width: 0;
+  opacity: 0.2;
+}
+/*-- Arc --*/
+.c3-chart-arcs-title {
+  dominant-baseline: middle;
+  font-size: 1.3em;
+}
+.c3-chart-arcs .c3-chart-arcs-background {
+  fill: #e0e0e0;
+  stroke: #FFF;
+}
+.c3-chart-arcs .c3-chart-arcs-gauge-unit {
+  fill: #000;
+  font-size: 16px;
+}
+.c3-chart-arcs .c3-chart-arcs-gauge-max {
+  fill: #777;
+}
+.c3-chart-arcs .c3-chart-arcs-gauge-min {
+  fill: #777;
+}
+.c3-chart-arc .c3-gauge-value {
+  fill: #000;
+  /*  font-size: 28px !important;*/
+}
+.c3-chart-arc.c3-target g path {
+  opacity: 1;
+}
+.c3-chart-arc.c3-target.c3-focused g path {
+  opacity: 1;
+}
+/*!
+ * Datetimepicker for Bootstrap 3
+ * version : 4.17.47
+ * https://github.com/Eonasdan/bootstrap-datetimepicker/
+ */
+.bootstrap-datetimepicker-widget {
+  list-style: none;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu {
+  display: block;
+  margin: 2px 0;
+  padding: 4px;
+  width: 19em;
+}
+@media (min-width: 768px) {
+  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
+    width: 38em;
+  }
+}
+@media (min-width: 992px) {
+  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
+    width: 38em;
+  }
+}
+@media (min-width: 1200px) {
+  .bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs {
+    width: 38em;
+  }
+}
+.bootstrap-datetimepicker-widget.dropdown-menu:before,
+.bootstrap-datetimepicker-widget.dropdown-menu:after {
+  content: '';
+  display: inline-block;
+  position: absolute;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before {
+  border-left: 7px solid transparent;
+  border-right: 7px solid transparent;
+  border-bottom: 7px solid #ccc;
+  border-bottom-color: rgba(0, 0, 0, 0.2);
+  top: -7px;
+  left: 7px;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after {
+  border-left: 6px solid transparent;
+  border-right: 6px solid transparent;
+  border-bottom: 6px solid white;
+  top: -6px;
+  left: 8px;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu.top:before {
+  border-left: 7px solid transparent;
+  border-right: 7px solid transparent;
+  border-top: 7px solid #ccc;
+  border-top-color: rgba(0, 0, 0, 0.2);
+  bottom: -7px;
+  left: 6px;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu.top:after {
+  border-left: 6px solid transparent;
+  border-right: 6px solid transparent;
+  border-top: 6px solid white;
+  bottom: -6px;
+  left: 7px;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before {
+  left: auto;
+  right: 6px;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after {
+  left: auto;
+  right: 7px;
+}
+.bootstrap-datetimepicker-widget .list-unstyled {
+  margin: 0;
+}
+.bootstrap-datetimepicker-widget a[data-action] {
+  padding: 6px 0;
+}
+.bootstrap-datetimepicker-widget a[data-action]:active {
+  box-shadow: none;
+}
+.bootstrap-datetimepicker-widget .timepicker-hour,
+.bootstrap-datetimepicker-widget .timepicker-minute,
+.bootstrap-datetimepicker-widget .timepicker-second {
+  width: 54px;
+  font-weight: bold;
+  font-size: 1em;
+  margin: 0;
+}
+.bootstrap-datetimepicker-widget button[data-action] {
+  padding: 6px;
+}
+.bootstrap-datetimepicker-widget .btn[data-action="incrementHours"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Increment Hours";
+}
+.bootstrap-datetimepicker-widget .btn[data-action="incrementMinutes"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Increment Minutes";
+}
+.bootstrap-datetimepicker-widget .btn[data-action="decrementHours"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Decrement Hours";
+}
+.bootstrap-datetimepicker-widget .btn[data-action="decrementMinutes"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Decrement Minutes";
+}
+.bootstrap-datetimepicker-widget .btn[data-action="showHours"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Show Hours";
+}
+.bootstrap-datetimepicker-widget .btn[data-action="showMinutes"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Show Minutes";
+}
+.bootstrap-datetimepicker-widget .btn[data-action="togglePeriod"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Toggle AM/PM";
+}
+.bootstrap-datetimepicker-widget .btn[data-action="clear"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Clear the picker";
+}
+.bootstrap-datetimepicker-widget .btn[data-action="today"]::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Set the date to today";
+}
+.bootstrap-datetimepicker-widget .picker-switch {
+  text-align: center;
+}
+.bootstrap-datetimepicker-widget .picker-switch::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Toggle Date and Time Screens";
+}
+.bootstrap-datetimepicker-widget .picker-switch td {
+  padding: 0;
+  margin: 0;
+  height: auto;
+  width: auto;
+  line-height: inherit;
+}
+.bootstrap-datetimepicker-widget .picker-switch td span {
+  line-height: 2.5;
+  height: 2.5em;
+  width: 100%;
+}
+.bootstrap-datetimepicker-widget table {
+  width: 100%;
+  margin: 0;
+}
+.bootstrap-datetimepicker-widget table td,
+.bootstrap-datetimepicker-widget table th {
+  text-align: center;
+  border-radius: 1px;
+}
+.bootstrap-datetimepicker-widget table th {
+  height: 20px;
+  line-height: 20px;
+  width: 20px;
+}
+.bootstrap-datetimepicker-widget table th.picker-switch {
+  width: 145px;
+}
+.bootstrap-datetimepicker-widget table th.disabled,
+.bootstrap-datetimepicker-widget table th.disabled:hover {
+  background: none;
+  color: #9c9c9c;
+  cursor: not-allowed;
+}
+.bootstrap-datetimepicker-widget table th.prev::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Previous Month";
+}
+.bootstrap-datetimepicker-widget table th.next::after {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+  content: "Next Month";
+}
+.bootstrap-datetimepicker-widget table thead tr:first-child th {
+  cursor: pointer;
+}
+.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
+  background: transparent;
+}
+.bootstrap-datetimepicker-widget table td {
+  height: 54px;
+  line-height: 54px;
+  width: 54px;
+}
+.bootstrap-datetimepicker-widget table td.cw {
+  font-size: .8em;
+  height: 20px;
+  line-height: 20px;
+  color: #9c9c9c;
+}
+.bootstrap-datetimepicker-widget table td.day {
+  height: 20px;
+  line-height: 20px;
+  width: 20px;
+}
+.bootstrap-datetimepicker-widget table td.day:hover,
+.bootstrap-datetimepicker-widget table td.hour:hover,
+.bootstrap-datetimepicker-widget table td.minute:hover,
+.bootstrap-datetimepicker-widget table td.second:hover {
+  background: transparent;
+  cursor: pointer;
+}
+.bootstrap-datetimepicker-widget table td.old,
+.bootstrap-datetimepicker-widget table td.new {
+  color: #9c9c9c;
+}
+.bootstrap-datetimepicker-widget table td.today {
+  position: relative;
+}
+.bootstrap-datetimepicker-widget table td.today:before {
+  content: '';
+  display: inline-block;
+  border: solid transparent;
+  border-width: 0 0 7px 7px;
+  border-bottom-color: #0088ce;
+  border-top-color: rgba(0, 0, 0, 0.2);
+  position: absolute;
+  bottom: 4px;
+  right: 4px;
+}
+.bootstrap-datetimepicker-widget table td.active,
+.bootstrap-datetimepicker-widget table td.active:hover {
+  background-color: #0088ce;
+  color: #fff;
+  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+.bootstrap-datetimepicker-widget table td.active.today:before {
+  border-bottom-color: #fff;
+}
+.bootstrap-datetimepicker-widget table td.disabled,
+.bootstrap-datetimepicker-widget table td.disabled:hover {
+  background: none;
+  color: #9c9c9c;
+  cursor: not-allowed;
+}
+.bootstrap-datetimepicker-widget table td span {
+  display: inline-block;
+  width: 54px;
+  height: 54px;
+  line-height: 54px;
+  margin: 2px 1.5px;
+  cursor: pointer;
+  border-radius: 1px;
+}
+.bootstrap-datetimepicker-widget table td span:hover {
+  background: transparent;
+}
+.bootstrap-datetimepicker-widget table td span.active {
+  background-color: #0088ce;
+  color: #fff;
+  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+.bootstrap-datetimepicker-widget table td span.old {
+  color: #9c9c9c;
+}
+.bootstrap-datetimepicker-widget table td span.disabled,
+.bootstrap-datetimepicker-widget table td span.disabled:hover {
+  background: none;
+  color: #9c9c9c;
+  cursor: not-allowed;
+}
+.bootstrap-datetimepicker-widget.usetwentyfour td.hour {
+  height: 27px;
+  line-height: 27px;
+}
+.bootstrap-datetimepicker-widget.wider {
+  width: 21em;
+}
+.bootstrap-datetimepicker-widget .datepicker-decades .decade {
+  line-height: 1.8em !important;
+}
+.input-group.date .input-group-addon {
+  cursor: pointer;
+}
+.sr-only {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+}
+.text-overflow-pf {
+  overflow: hidden;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+  word-wrap: normal;
+}
+.about-modal-pf {
+  background-color: #292e34;
+  background-image: url("../img/bg-modal-about-pf.png");
+  background-position: right bottom;
+  background-repeat: no-repeat;
+  background-size: 216px auto;
+}
+@media (min-width: 768px) {
+  .about-modal-pf {
+    background-size: auto;
+  }
+}
+.about-modal-pf .modal-body {
+  color: #fff;
+  padding-bottom: 16px;
+  padding-left: 40px;
+  padding-right: 40px;
+}
+@media (min-width: 768px) {
+  .about-modal-pf .modal-body {
+    padding-left: 80px;
+    padding-right: 80px;
+  }
+}
+.about-modal-pf .modal-header {
+  background-color: transparent;
+}
+.about-modal-pf .pficon-close {
+  color: #fff;
+}
+.product-versions-pf {
+  margin-bottom: 30px;
+  margin-top: 30px;
+}
+.product-versions-pf li strong {
+  margin-right: 10px;
+}
+.trademark-pf {
+  font-size: 11px;
+}
+.applauncher-pf {
+  display: inline-block;
+  overflow: visible;
+}
+.applauncher-pf .applauncher-pf-title {
+  position: absolute;
+  width: 1px;
+  height: 1px;
+  margin: -1px;
+  padding: 0;
+  overflow: hidden;
+  clip: rect(0, 0, 0, 0);
+  border: 0;
+}
+.applauncher-pf .dropdown-toggle.disabled {
+  cursor: not-allowed;
+}
+.applauncher-pf.open > .dropdown-menu {
+  display: flex;
+  flex-wrap: wrap;
+}
+.applauncher-pf .applauncher-pf-item {
+  width: 100%;
+}
+.applauncher-pf .applauncher-pf-link {
+  display: flex;
+  white-space: initial;
+  align-items: center;
+}
+@media (min-width: 768px) {
+  .applauncher-pf-block-list .applauncher-pf-item {
+    flex: 0 0 50%;
+  }
+}
+.applauncher-pf-block-list .applauncher-pf-link {
+  flex-wrap: wrap;
+}
+@media (min-width: 768px) {
+  .applauncher-pf-block-list .applauncher-pf-link {
+    flex-direction: column;
+    text-align: center;
+    padding: 15px 0;
+    height: 100%;
+  }
+}
+.applauncher-pf-block-list .applauncher-pf-link-icon {
+  padding: 0;
+}
+.applauncher-pf-block-list .applauncher-pf-link-title {
+  margin-top: auto;
+}
+@media (min-width: 768px) {
+  .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link {
+    padding: 9px;
+  }
+  .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon {
+    flex: 1 0 0;
+    text-align: left;
+  }
+  .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title {
+    flex: 3;
+  }
+}
+.applauncher-pf .dropdown-menu {
+  padding: 9px;
+  min-width: 220px;
+}
+.applauncher-pf .applauncher-pf-link {
+  border-style: solid;
+  border-width: 1px;
+  border-color: transparent;
+}
+.applauncher-pf .applauncher-pf-link:hover {
+  background-color: #f5f5f5;
+  border-color: #bbb;
+  color: #0088ce;
+  text-decoration: none;
+  -webkit-box-shadow: 0 0 2px 0 #d1d1d1;
+  box-shadow: 0 0 2px 0 #d1d1d1;
+}
+.applauncher-pf .applauncher-pf-link-icon {
+  font-size: 1.2em;
+  text-align: center;
+  width: 1.28571429em;
+}
+@media (min-width: 768px) {
+  .applauncher-pf .applauncher-pf-link-icon {
+    font-size: 2em;
+  }
+}
+.navbar-utility .applauncher-pf .dropdown-menu {
+  border-width: 1px !important;
+}
+@media (min-width: 768px) {
+  .navbar-utility .applauncher-pf .dropdown-menu {
+    margin-top: 3px;
+    right: 0;
+  }
+}
+.navbar-pf .navbar-utility .applauncher-pf.open > a,
+.navbar-pf-alt .navbar-utility .applauncher-pf.open > a,
+.navbar-pf .applauncher-pf.open > a,
+.navbar-pf-alt .applauncher-pf.open > a,
+.navbar-pf .navbar-utility .applauncher-pf.open > a:focus,
+.navbar-pf-alt .navbar-utility .applauncher-pf.open > a:focus,
+.navbar-pf .applauncher-pf.open > a:focus,
+.navbar-pf-alt .applauncher-pf.open > a:focus {
+  background-color: #454C53;
+  color: #fff;
+}
+@media (min-width: 768px) {
+  .navbar-pf .navbar-utility .applauncher-pf.open > a,
+  .navbar-pf-alt .navbar-utility .applauncher-pf.open > a,
+  .navbar-pf .applauncher-pf.open > a,
+  .navbar-pf-alt .applauncher-pf.open > a,
+  .navbar-pf .navbar-utility .applauncher-pf.open > a:focus,
+  .navbar-pf-alt .navbar-utility .applauncher-pf.open > a:focus,
+  .navbar-pf .applauncher-pf.open > a:focus,
+  .navbar-pf-alt .applauncher-pf.open > a:focus {
+    background-color: #5b6165;
+    border-color: #53565b;
+    color: #fff;
+  }
+}
+@media (max-width: 767px) {
+  .navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu > li > a,
+  .navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu > li > a,
+  .navbar-pf .applauncher-pf.open .dropdown-menu > li > a,
+  .navbar-pf-alt .applauncher-pf.open .dropdown-menu > li > a {
+    padding-left: 20px;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu > li > a .applauncher-pf-link-icon,
+  .navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu > li > a .applauncher-pf-link-icon,
+  .navbar-pf .applauncher-pf.open .dropdown-menu > li > a .applauncher-pf-link-icon,
+  .navbar-pf-alt .applauncher-pf.open .dropdown-menu > li > a .applauncher-pf-link-icon {
+    padding-right: 20px;
+  }
+}
+.navbar-pf .navbar-utility .applauncher-pf.dropdown > .dropdown-toggle,
+.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown > .dropdown-toggle,
+.navbar-pf .applauncher-pf.dropdown > .dropdown-toggle,
+.navbar-pf-alt .applauncher-pf.dropdown > .dropdown-toggle,
+.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,
+.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,
+.navbar-pf .applauncher-pf .dropdown-toggle,
+.navbar-pf-alt .applauncher-pf .dropdown-toggle {
+  background-color: inherit;
+  color: #d1d1d1;
+  text-align: left;
+  text-decoration: none;
+  border-width: 0;
+  display: block;
+  padding-left: 20px;
+}
+.navbar-pf .navbar-utility .applauncher-pf.dropdown > .dropdown-toggle.disabled,
+.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown > .dropdown-toggle.disabled,
+.navbar-pf .applauncher-pf.dropdown > .dropdown-toggle.disabled,
+.navbar-pf-alt .applauncher-pf.dropdown > .dropdown-toggle.disabled,
+.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,
+.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled,
+.navbar-pf .applauncher-pf .dropdown-toggle.disabled,
+.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled {
+  color: #8b8d8f !important;
+}
+@media (min-width: 768px) {
+  .navbar-pf .navbar-utility .applauncher-pf.dropdown > .dropdown-toggle,
+  .navbar-pf-alt .navbar-utility .applauncher-pf.dropdown > .dropdown-toggle,
+  .navbar-pf .applauncher-pf.dropdown > .dropdown-toggle,
+  .navbar-pf-alt .applauncher-pf.dropdown > .dropdown-toggle,
+  .navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,
+  .navbar-pf .applauncher-pf .dropdown-toggle,
+  .navbar-pf-alt .applauncher-pf .dropdown-toggle {
+    border-left: 1px solid #53565b;
+    padding: 7px 10px;
+    line-height: 1;
+  }
+}
+.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,
+.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon,
+.navbar-pf .applauncher-pf .applauncher-pf-icon,
+.navbar-pf-alt .applauncher-pf .applauncher-pf-icon {
+  padding-right: 4px;
+}
+@media (min-width: 768px) {
+  .navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon,
+  .navbar-pf .applauncher-pf .applauncher-pf-icon,
+  .navbar-pf-alt .applauncher-pf .applauncher-pf-icon {
+    padding: 0;
+  }
+}
+.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,
+.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title,
+.navbar-pf .applauncher-pf .applauncher-pf-title,
+.navbar-pf-alt .applauncher-pf .applauncher-pf-title {
+  display: inline;
+  position: relative;
+}
+.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,
+.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link,
+.navbar-pf .applauncher-pf .applauncher-pf-link,
+.navbar-pf-alt .applauncher-pf .applauncher-pf-link {
+  overflow: hidden;
+  width: 100%;
+}
+.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,
+.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover,
+.navbar-pf .applauncher-pf .applauncher-pf-link:hover,
+.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover {
+  background-color: transparent;
+  border-color: transparent;
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-title,
+.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-title,
+.navbar-pf .applauncher-pf .applauncher-pf-link-title,
+.navbar-pf-alt .applauncher-pf .applauncher-pf-link-title {
+  overflow: hidden;
+}
+@media (min-width: 768px) {
+  .navbar-pf .navbar-utility .applauncher-pf,
+  .navbar-pf-alt .navbar-utility .applauncher-pf,
+  .navbar-pf .applauncher-pf,
+  .navbar-pf-alt .applauncher-pf {
+    display: inline-block;
+    overflow: visible;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title,
+  .navbar-pf .applauncher-pf .applauncher-pf-title,
+  .navbar-pf-alt .applauncher-pf .applauncher-pf-title {
+    position: absolute;
+    width: 1px;
+    height: 1px;
+    margin: -1px;
+    padding: 0;
+    overflow: hidden;
+    clip: rect(0, 0, 0, 0);
+    border: 0;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled,
+  .navbar-pf .applauncher-pf .dropdown-toggle.disabled,
+  .navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled {
+    cursor: not-allowed;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf.open > .dropdown-menu,
+  .navbar-pf-alt .navbar-utility .applauncher-pf.open > .dropdown-menu,
+  .navbar-pf .applauncher-pf.open > .dropdown-menu,
+  .navbar-pf-alt .applauncher-pf.open > .dropdown-menu {
+    display: flex;
+    flex-wrap: wrap;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-item,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-item,
+  .navbar-pf .applauncher-pf .applauncher-pf-item,
+  .navbar-pf-alt .applauncher-pf .applauncher-pf-item {
+    width: 100%;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link,
+  .navbar-pf .applauncher-pf .applauncher-pf-link,
+  .navbar-pf-alt .applauncher-pf .applauncher-pf-link {
+    display: flex;
+    white-space: initial;
+    align-items: center;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,
+  .navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,
+  .navbar-pf .applauncher-pf-block-list .applauncher-pf-link,
+  .navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link {
+    flex-wrap: wrap;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon,
+  .navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon,
+  .navbar-pf .applauncher-pf-block-list .applauncher-pf-link-icon,
+  .navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-icon {
+    padding: 0;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-title,
+  .navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-title,
+  .navbar-pf .applauncher-pf-block-list .applauncher-pf-link-title,
+  .navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-title {
+    margin-top: auto;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf .dropdown-menu,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-menu,
+  .navbar-pf .applauncher-pf .dropdown-menu,
+  .navbar-pf-alt .applauncher-pf .dropdown-menu {
+    padding: 9px;
+    min-width: 220px;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link,
+  .navbar-pf .applauncher-pf .applauncher-pf-link,
+  .navbar-pf-alt .applauncher-pf .applauncher-pf-link {
+    border-style: solid;
+    border-width: 1px;
+    border-color: transparent;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover,
+  .navbar-pf .applauncher-pf .applauncher-pf-link:hover,
+  .navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover {
+    background-color: #f5f5f5;
+    border-color: #bbb;
+    color: #0088ce;
+    text-decoration: none;
+    -webkit-box-shadow: 0 0 2px 0 #d1d1d1;
+    box-shadow: 0 0 2px 0 #d1d1d1;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon,
+  .navbar-pf .applauncher-pf .applauncher-pf-link-icon,
+  .navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon {
+    font-size: 1.2em;
+    text-align: center;
+    width: 1.28571429em;
+  }
+}
+@media (min-width: 768px) and (min-width: 768px) {
+  .navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-item,
+  .navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-item,
+  .navbar-pf .applauncher-pf-block-list .applauncher-pf-item,
+  .navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-item {
+    flex: 0 0 50%;
+  }
+}
+@media (min-width: 768px) and (min-width: 768px) {
+  .navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,
+  .navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,
+  .navbar-pf .applauncher-pf-block-list .applauncher-pf-link,
+  .navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link {
+    flex-direction: column;
+    text-align: center;
+    padding: 15px 0;
+    height: 100%;
+  }
+}
+@media (min-width: 768px) and (min-width: 768px) {
+  .navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,
+  .navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,
+  .navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,
+  .navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link {
+    padding: 9px;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,
+  .navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,
+  .navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,
+  .navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon {
+    flex: 1 0 0;
+    text-align: left;
+  }
+  .navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,
+  .navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,
+  .navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,
+  .navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title {
+    flex: 3;
+  }
+}
+@media (min-width: 768px) and (min-width: 768px) {
+  .navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,
+  .navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon,
+  .navbar-pf .applauncher-pf .applauncher-pf-link-icon,
+  .navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon {
+    font-size: 2em;
+  }
+}
+@media (min-width: 768px) {
+  .navbar-iconic .navbar-utility .applauncher-pf.dropdown > .dropdown-toggle,
+  .navbar-iconic .applauncher-pf.dropdown > .dropdown-toggle,
+  .navbar-iconic .navbar-utility .applauncher-pf .dropdown-toggle,
+  .navbar-iconic .applauncher-pf .dropdown-toggle {
+    padding: 22px 10px;
+    line-height: inherit;
+  }
+}
+.blank-slate-pf {
+  background-color: #f5f5f5;
+  border: 1px solid #e3e3e3;
+  border-radius: 1px;
+  margin-bottom: 20px;
+  padding: 30px;
+  text-align: center;
+}
+@media (min-width: 768px) {
+  .blank-slate-pf {
+    padding: 60px 60px;
+  }
+}
+@media (min-width: 992px) {
+  .blank-slate-pf {
+    padding: 90px 120px;
+  }
+}
+.blank-slate-pf .blank-slate-pf-icon {
+  color: #9c9c9c;
+  font-size: 57.6px;
+  line-height: 57.6px;
+}
+.blank-slate-pf .blank-slate-pf-main-action {
+  margin-top: 20px;
+}
+.blank-slate-pf .blank-slate-pf-secondary-action {
+  margin-top: 20px;
+}
+.blank-slate-pf button {
+  margin-right: 5px;
+}
+.blank-slate-pf button:last-of-type {
+  margin-right: 0;
+}
+.combobox-container.combobox-selected .glyphicon-remove {
+  display: inline-block;
+}
+.combobox-container .caret {
+  margin-left: 0;
+}
+.combobox-container .combobox::-ms-clear {
+  display: none;
+}
+.combobox-container .dropdown-menu {
+  margin-top: -1px;
+  width: 100%;
+}
+.combobox-container .glyphicon-remove {
+  display: none;
+  top: auto;
+  width: 12px;
+}
+.combobox-container .glyphicon-remove:before {
+  content: "\e60b";
+  font-family: "PatternFlyIcons-webfont";
+}
+.combobox-container .input-group-addon {
+  background-color: #f1f1f1;
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+  border-color: #bbb;
+  color: #4d5258;
+  position: relative;
+}
+.combobox-container .input-group-addon:hover,
+.combobox-container .input-group-addon:focus,
+.combobox-container .input-group-addon:active,
+.combobox-container .input-group-addon.active,
+.open .dropdown-toggle.combobox-container .input-group-addon {
+  background-color: #f1f1f1;
+  background-image: none;
+  border-color: #bbb;
+  color: #4d5258;
+}
+.combobox-container .input-group-addon:active,
+.combobox-container .input-group-addon.active,
+.open .dropdown-toggle.combobox-container .input-group-addon {
+  background-image: none;
+}
+.combobox-container .input-group-addon:active:hover,
+.combobox-container .input-group-addon.active:hover,
+.open .dropdown-toggle.combobox-container .input-group-addon:hover,
+.combobox-container .input-group-addon:active:focus,
+.combobox-container .input-group-addon.active:focus,
+.open .dropdown-toggle.combobox-container .input-group-addon:focus,
+.combobox-container .input-group-addon:active.focus,
+.combobox-container .input-group-addon.active.focus,
+.open .dropdown-toggle.combobox-container .input-group-addon.focus {
+  background-color: #e5e5e5;
+  border-color: #a9a9a9;
+}
+.combobox-container .input-group-addon.disabled,
+.combobox-container .input-group-addon[disabled],
+fieldset[disabled] .combobox-container .input-group-addon,
+.combobox-container .input-group-addon.disabled:hover,
+.combobox-container .input-group-addon[disabled]:hover,
+fieldset[disabled] .combobox-container .input-group-addon:hover,
+.combobox-container .input-group-addon.disabled:focus,
+.combobox-container .input-group-addon[disabled]:focus,
+fieldset[disabled] .combobox-container .input-group-addon:focus,
+.combobox-container .input-group-addon.disabled:active,
+.combobox-container .input-group-addon[disabled]:active,
+fieldset[disabled] .combobox-container .input-group-addon:active,
+.combobox-container .input-group-addon.disabled.active,
+.combobox-container .input-group-addon[disabled].active,
+fieldset[disabled] .combobox-container .input-group-addon.active {
+  background-color: #f1f1f1;
+  border-color: #bbb;
+}
+.combobox-container .input-group-addon:active {
+  -webkit-box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
+  box-shadow: inset 0 2px 8px rgba(3, 3, 3, 0.2);
+}
+.bootstrap-datepicker.form-control[readonly] {
+  background-color: #fff;
+  border-color: #bbb !important;
+  color: #363636;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075);
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075);
+}
+.bootstrap-datepicker.form-control[readonly]:focus {
+  border-color: #0088ce;
+  outline: 0 !important;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px rgba(0, 136, 206, 0.6);
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px rgba(0, 136, 206, 0.6);
+}
+.bootstrap-datepicker.form-control[readonly]:focus {
+  border-color: #0088ce !important;
+}
+.has-error .bootstrap-datepicker.form-control[readonly]:focus {
+  border-color: #990000;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #ff3333;
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #ff3333;
+}
+.has-success .bootstrap-datepicker.form-control[readonly]:focus {
+  border-color: #2b542c;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #67b168;
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #67b168;
+}
+.has-warning .bootstrap-datepicker.form-control[readonly]:focus {
+  border-color: #bb6106;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #faad60;
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #faad60;
+}
+.bootstrap-datepicker.form-control[readonly]:hover {
+  border-color: #7dc3e8 !important;
+}
+.has-error .bootstrap-datepicker.form-control[readonly]:hover {
+  border-color: #990000 !important;
+}
+.has-success .bootstrap-datepicker.form-control[readonly]:hover {
+  border-color: #2b542c !important;
+}
+.has-warning .bootstrap-datepicker.form-control[readonly]:hover {
+  border-color: #bb6106 !important;
+}
+.has-error .bootstrap-datepicker.form-control[readonly] {
+  border-color: #cc0000 !important;
+}
+.has-success .bootstrap-datepicker.form-control[readonly] {
+  border-color: #3c763d !important;
+}
+.has-warning .bootstrap-datepicker.form-control[readonly] {
+  border-color: #ec7a08 !important;
+}
+.datepicker {
+  border-radius: 1px;
+}
+.datepicker .datepicker-switch,
+.datepicker tfoot .clear,
+.datepicker tfoot .today {
+  font-size: 14px;
+  font-weight: 500;
+}
+.datepicker .next,
+.datepicker .prev {
+  font-weight: 500;
+}
+.datepicker table tr td,
+.datepicker table tr th {
+  border-radius: 1px;
+}
+.datepicker table tr td.active,
+.datepicker table tr td.active:hover,
+.datepicker table tr td.active.disabled,
+.datepicker table tr td.active.disabled:hover {
+  background: #0088ce !important;
+  color: #fff !important;
+  text-shadow: none;
+}
+.datepicker table tr td.day:hover,
+.datepicker table tr td.day.focused {
+  background: #def3ff;
+}
+.datepicker table tr td.selected,
+.datepicker table tr td.selected:hover,
+.datepicker table tr td.selected.disabled,
+.datepicker table tr td.selected.disabled:hover {
+  text-shadow: none;
+}
+.datepicker table tr td span {
+  border-radius: 1px;
+}
+.datepicker table tr td span.active,
+.datepicker table tr td span.active:hover,
+.datepicker table tr td span.active.disabled,
+.datepicker table tr td span.active.disabled:hover {
+  background: #0088ce;
+  text-shadow: none;
+}
+.datepicker table tr td span:hover {
+  background: #def3ff;
+}
+.datepicker thead tr:first-child th:hover,
+.datepicker tfoot tr th:hover {
+  background: #def3ff;
+}
+.input-daterange input:first-child {
+  border-radius: 1px 0 0 1px;
+}
+.input-daterange input:last-child {
+  border-radius: 0 1px 1px 0;
+}
+.input-daterange .input-group-addon {
+  background-color: #f1f1f1;
+  border-color: #bbb;
+  line-height: 1.66666667;
+  padding: 2px 6px;
+}
+.bootstrap-select.btn-group.form-control {
+  margin-bottom: 0;
+}
+.bootstrap-select.btn-group .btn {
+  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
+}
+.bootstrap-select.btn-group .btn:hover {
+  border-color: #7dc3e8;
+}
+.bootstrap-select.btn-group .btn .caret {
+  margin-top: -4px;
+}
+.bootstrap-select.btn-group .btn:focus {
+  border-color: #0088ce;
+  outline: 0 !important;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px rgba(0, 136, 206, 0.6);
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px rgba(0, 136, 206, 0.6);
+}
+.has-error .bootstrap-select.btn-group .btn {
+  border-color: #cc0000;
+}
+.has-error .bootstrap-select.btn-group .btn:focus {
+  border-color: #990000;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #ff3333;
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #ff3333;
+}
+.has-success .bootstrap-select.btn-group .btn {
+  border-color: #3c763d;
+}
+.has-success .bootstrap-select.btn-group .btn:focus {
+  border-color: #2b542c;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #67b168;
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #67b168;
+}
+.has-warning .bootstrap-select.btn-group .btn {
+  border-color: #ec7a08;
+}
+.has-warning .bootstrap-select.btn-group .btn:focus {
+  border-color: #bb6106;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #faad60;
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 6px #faad60;
+}
+.bootstrap-select.btn-group .dropdown-menu > .active > a,
+.bootstrap-select.btn-group .dropdown-menu > .active > a:active {
+  background-color: #def3ff !important;
+  border-color: #bee1f4 !important;
+  color: #363636 !important;
+}
+.bootstrap-select.btn-group .dropdown-menu > .active > a small,
+.bootstrap-select.btn-group .dropdown-menu > .active > a:active small {
+  color: #9c9c9c !important;
+}
+.bootstrap-select.btn-group .dropdown-menu > .disabled > a {
+  color: #9c9c9c !important;
+}
+.bootstrap-select.btn-group .dropdown-menu > .selected > a {
+  background-color: #0088ce !important;
+  border-color: #0088ce !important;
+  color: #fff !important;
+}
+.bootstrap-select.btn-group .dropdown-menu > .selected > a small {
+  color: rgba(255, 255, 255, 0.5) !important;
+}
+.bootstrap-select.btn-group .dropdown-menu .divider {
+  background: #ededed !important;
+  margin: 4px 1px !important;
+}
+.bootstrap-select.btn-group .dropdown-menu dt {
+  color: #8b8d8f;
+  font-weight: normal;
+  padding: 1px 10px;
+}
+.bootstrap-select.btn-group .dropdown-menu li > a.opt {
+  padding: 1px 10px;
+}
+.bootstrap-select.btn-group .dropdown-menu li a:active small {
+  color: rgba(255, 255, 255, 0.5) !important;
+}
+.bootstrap-select.btn-group .dropdown-menu li a:hover small,
+.bootstrap-select.btn-group .dropdown-menu li a:focus small {
+  color: #9c9c9c;
+}
+.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:hover small,
+.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:focus small {
+  color: #9c9c9c;
+}
+.slider-tick-label-container {
+  display: flex;
+  justify-content: space-between;
+  margin-left: 0!important;
+}
+.slider-tick-label {
+  width: auto !important;
+}
+.slider .tooltip {
+  top: -10px;
+}
+.slider-track {
+  background-color: #ededed;
+  box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.1), 0 0px 2px #ededed;
+  border: 1px solid #bbb;
+}
+.slider-selection {
+  background-image: -webkit-linear-gradient(top, #0088ce 0%, #39a5dc 100%);
+  background-image: -o-linear-gradient(top, #0088ce 0%, #39a5dc 100%);
+  background-image: linear-gradient(to bottom, #0088ce 0%, #39a5dc 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088ce', endColorstr='#ff39a5dc', GradientType=0);
+}
+.slider-handle {
+  width: 16px;
+  height: 16px;
+  border: 1px solid #bbb;
+}
+.slider-tick {
+  background-color: transparent !important;
+  background-image: radial-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 2px, transparent 2px) !important;
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+.slider-pf {
+  display: flex;
+  align-items: center;
+}
+.slider-pf * {
+  margin-right: 10px;
+}
+.slider-pf *:last-child {
+  margin: 0;
+}
+.slider-pf .slider {
+  width: auto;
+  flex: 1 1 100%;
+}
+.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,
+.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {
+  background: #fafafa;
+}
+.bootstrap-switch .bootstrap-switch-label {
+  background: #f1f1f1;
+  box-shadow: 0 0 2px rgba(3, 3, 3, 0.4);
+  background-image: -webkit-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: -o-linear-gradient(top, #fafafa 0%, #ededed 100%);
+  background-image: linear-gradient(to bottom, #fafafa 0%, #ededed 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffededed', GradientType=0);
+  position: relative;
+  z-index: 9;
+}
+.bootstrap-touchspin .input-group-btn-vertical > .btn {
+  padding-bottom: 6px;
+  padding-top: 6px;
+}
+.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
+  border-bottom-right-radius: 1px;
+}
+.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
+  border-top-right-radius: 1px;
+}
+.bootstrap-touchspin .input-group-btn-vertical i {
+  font-size: 8px;
+  left: 6px;
+  top: 2px;
+}
+.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,
+.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up {
+  font-size: 12px;
+  line-height: 12px;
+  top: 0;
+}
+.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,
+.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up {
+  left: 7px;
+}
+.treeview .list-group {
+  border-top: 0;
+}
+.treeview .list-group-item {
+  background: transparent;
+  border-bottom: 1px solid transparent !important;
+  border-top: 1px solid transparent !important;
+  cursor: default !important;
+  margin-bottom: 0;
+  overflow: hidden;
+  padding: 0 10px;
+  text-overflow: ellipsis;
+  white-space: nowrap;
+}
+.treeview .list-group-item:hover {
+  background: none !important;
+}
+.treeview .list-group-item.node-selected {
+  background: none !important;
+  border-color: transparent !important;
+  color: inherit !important;
+}
+.treeview .list-group-item.node-check-changed span.node-icon,
+.treeview .list-group-item.node-check-changed span.text {
+  color: #39a5dc;
+}
+.treeview span.icon {
+  display: inline-block;
+  font-size: 13px;
+  min-width: 10px;
+  text-align: center;
+}
+.treeview span.icon > [class*="fa-angle"] {
+  font-size: 15px;
+}
+.treeview span.icon.check-icon {
+  margin-right: 10px;
+}
+.treeview span.icon.expand-icon {
+  cursor: pointer !important;
+}
+.treeview span.image {
+  background-repeat: no-repeat;
+  background-size: contain;
+  display: inline-block;
+  height: 1.19em;
+  line-height: 1em;
+  margin-right: 5px;
+  vertical-align: middle;
+  width: 12px;
+}
+.treeview span.indent {
+  margin-right: 5px;
+}
+.treeview .node-disabled {
+  color: #d1d1d1;
+  cursor: not-allowed;
+}
+.treeview .node-disabled span.expand-icon {
+  cursor: default !important;
+}
+.treeview .node-hidden {
+  display: none;
+}
+.treeview-pf-hover .list-group-item {
+  cursor: pointer !important;
+}
+.treeview-pf-hover .list-group-item:hover {
+  background-color: #def3ff !important;
+  border-color: #bee1f4 !important;
+}
+.treeview-pf-select .list-group-item {
+  cursor: pointer !important;
+}
+.treeview-pf-select .list-group-item.node-selected {
+  background: #0088ce !important;
+  border-color: #0088ce !important;
+  color: #fff !important;
+}
+.card-pf {
+  background: #fff;
+  border-top: 2px solid transparent;
+  -webkit-box-shadow: 0 1px 1px rgba(3, 3, 3, 0.175);
+  box-shadow: 0 1px 1px rgba(3, 3, 3, 0.175);
+  margin: 0 -10px 20px;
+  padding: 0 20px;
+}
+.card-pf.card-pf-accented {
+  border-top-color: #39a5dc;
+}
+.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a,
+.card-pf.card-pf-aggregate-status .card-pf-title a {
+  color: #363636;
+}
+.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add,
+.card-pf.card-pf-aggregate-status .card-pf-title a.add {
+  color: #0088ce;
+}
+.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add:hover,
+.card-pf.card-pf-aggregate-status .card-pf-title a.add:hover {
+  color: #00659c;
+}
+.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a:hover,
+.card-pf.card-pf-aggregate-status .card-pf-title a:hover {
+  color: #00659c;
+}
+.card-pf.card-pf-aggregate-status {
+  padding: 0 10px;
+  text-align: center;
+}
+.card-pf.card-pf-aggregate-status-mini {
+  padding-bottom: 10px;
+  position: relative;
+}
+@media (min-width: 768px) {
+  .card-pf.card-pf-bleed-left {
+    margin-left: -20px;
+  }
+  .card-pf.card-pf-bleed-right {
+    border-right: 1px solid #d1d1d1;
+    margin-right: -20px;
+  }
+}
+.card-pf-aggregate-status-notifications {
+  font-size: 24px;
+  font-weight: 300;
+}
+.card-pf-aggregate-status-mini .card-pf-aggregate-status-notifications {
+  line-height: 1;
+}
+.card-pf-aggregate-status-notifications .card-pf-aggregate-status-notification + .card-pf-aggregate-status-notification {
+  border-left: 1px solid #d1d1d1;
+  margin-left: 3px;
+  padding-left: 10px;
+}
+.card-pf-aggregate-status-notifications .fa,
+.card-pf-aggregate-status-notifications .pficon {
+  font-size: 18px;
+  margin-right: 7px;
+}
+.card-pf-body {
+  margin: 20px 0 0;
+  padding: 0 0 20px;
+}
+.card-pf-aggregate-status .card-pf-body {
+  margin-top: 10px;
+  padding-bottom: 10px;
+}
+.card-pf-aggregate-status-mini .card-pf-body {
+  margin-bottom: 0;
+  margin-top: 0;
+  padding-bottom: 0;
+  position: absolute;
+  right: 20px;
+  top: 15px;
+}
+.card-pf-utilization .card-pf-title + .card-pf-body {
+  margin-top: -8px;
+}
+.card-pf-body > *:last-child {
+  margin-bottom: 0;
+}
+.card-pf-footer {
+  background-color: #fafafa;
+  border-top: 1px solid #d1d1d1;
+  margin: 0 -20px !important;
+  padding: 20px 20px 10px;
+}
+.card-pf-footer a .fa,
+.card-pf-footer a .pficon {
+  margin-right: 5px;
+}
+.card-pf-footer .card-pf-time-frame-filter {
+  margin-top: -2px;
+}
+.card-pf-link-with-icon {
+  padding-left: 21px;
+  position: relative;
+}
+.card-pf-link-with-icon .fa,
+.card-pf-link-with-icon .pficon {
+  font-size: 16px;
+  left: 0;
+  position: absolute;
+  top: 0;
+}
+.card-pf-heading .card-pf-time-frame-filter,
+.card-pf-footer .card-pf-time-frame-filter {
+  float: right;
+  margin-left: 20px;
+}
+.card-pf-heading {
+  border-bottom: 1px solid #d1d1d1;
+  margin: 0 -20px 20px;
+  padding: 0 20px 0;
+}
+.card-pf-heading .card-pf-time-frame-filter {
+  margin-top: -5px;
+}
+.card-pf-heading-details {
+  float: right;
+  font-size: 10px;
+}
+.card-pf-subtitle {
+  font-size: 16px;
+  margin-top: 20px;
+  margin-bottom: 10px;
+}
+[class^="col"] .card-pf-subtitle {
+  margin-top: 0;
+}
+@media (max-width: 767px) {
+  .card-pf-body [class^="col"] + [class^="col"] > .card-pf-subtitle {
+    margin-top: 40px;
+  }
+}
+.card-pf-title {
+  font-size: 16px;
+  font-weight: 400;
+  margin: 20px 0;
+  padding: 0;
+}
+.card-pf-aggregate-status .card-pf-title {
+  font-size: 14px;
+  margin: 10px 0 0;
+}
+.card-pf-aggregate-status .card-pf-title .fa,
+.card-pf-aggregate-status .card-pf-title .pficon {
+  color: #292e34;
+  font-size: 16px;
+  margin-right: 7px;
+}
+.card-pf-title .card-pf-aggregate-status-count {
+  font-size: 16px;
+}
+.card-pf-aggregate-status-mini .card-pf-title .card-pf-aggregate-status-count {
+  display: block;
+  font-size: 24px;
+  font-weight: 300;
+  margin-bottom: 3px;
+}
+.card-pf-aggregate-status-mini .card-pf-title {
+  font-size: 12px;
+  margin-top: 5px;
+}
+.card-pf-aggregate-status-mini .card-pf-title a {
+  display: inline-block;
+}
+.card-pf-aggregate-status-mini .card-pf-title .fa,
+.card-pf-aggregate-status-mini .card-pf-title .pficon {
+  font-size: 26px;
+  margin-right: 0;
+  min-width: 26px;
+  position: absolute;
+  left: 20px;
+  text-align: center;
+  top: 15px;
+}
+.card-pf-utilization-details {
+  border-bottom: 1px solid #d1d1d1;
+  display: table;
+  margin: 12px 0 15px;
+  padding: 0 0 15px;
+  width: 100%;
+}
+.card-pf-utilization-details .card-pf-utilization-card-details-count,
+.card-pf-utilization-details .card-pf-utilization-card-details-description {
+  float: left;
+  line-height: 1;
+}
+.card-pf-utilization-details .card-pf-utilization-card-details-count {
+  font-size: 26px;
+  font-weight: 300;
+  margin-right: 10px;
+}
+.card-pf-utilization-details .card-pf-utilization-card-details-line-1,
+.card-pf-utilization-details .card-pf-utilization-card-details-line-2 {
+  display: block;
+}
+.card-pf-utilization-details .card-pf-utilization-card-details-line-1 {
+  font-size: 10px;
+  margin-bottom: 2px;
+}
+.cards-pf {
+  background: #f5f5f5;
+}
+.cards-pf .row-cards-pf {
+  padding: 0 20px;
+}
+.cards-pf .row-cards-pf:first-child {
+  padding-top: 20px;
+}
+.container-cards-pf {
+  margin-top: 20px;
+}
+.row-cards-pf {
+  margin-left: -10px;
+  margin-right: -10px;
+}
+.card-pf-view {
+  border: 2px solid transparent;
+}
+.card-pf-view .card-pf-heading-kebab .dropdown-kebab-pf {
+  margin-top: -3px;
+}
+.card-pf-view .card-pf-heading-kebab + .progress-pf-legend p {
+  margin-bottom: 0;
+}
+.card-pf-view .card-pf-heading-kebab + .progress-pf-legend .progress {
+  margin-bottom: 7px;
+  margin-top: 16px;
+}
+.card-pf-view .card-pf-info {
+  margin-top: 15px;
+}
+.card-pf-view .card-pf-info strong {
+  font-size: 13px;
+  margin-right: 10px;
+}
+.card-pf-view .card-pf-item {
+  display: inline-block;
+  font-size: 16px;
+  padding: 0 13px 0 15px;
+}
+.card-pf-view .card-pf-item:first-child {
+  padding-left: 0;
+}
+.card-pf-view .card-pf-item:last-child {
+  padding-right: 0;
+}
+.card-pf-view .card-pf-item + .card-pf-item {
+  border-left: 1px solid #d1d1d1;
+}
+.card-pf-view .card-pf-item .fa-check {
+  color: #3f9c35;
+}
+.card-pf-view .card-pf-item .fa + .card-pf-item-text,
+.card-pf-view .card-pf-item .pficon + .card-pf-item-text {
+  margin-left: 10px;
+}
+.card-pf-view .card-pf-items {
+  margin-top: 15px;
+}
+.card-pf-view .card-pf-title {
+  font-size: 20px;
+  font-weight: 300;
+  margin-bottom: 0;
+  margin-top: 15px;
+}
+.card-pf-view .card-pf-title .fa,
+.card-pf-view .card-pf-title .pficon {
+  font-size: 18px;
+  margin-right: 2px;
+}
+.col-lg-2 .card-pf-view .card-pf-title {
+  font-size: 16px;
+}
+.card-pf-view .card-pf-top-element .card-pf-icon-circle {
+  border: 2px solid #39a5dc;
+  border-radius: 50%;
+  display: block;
+  font-size: 46px;
+  height: 106px;
+  line-height: 102px;
+  margin: 0 auto;
+  text-align: center;
+  width: 106px;
+}
+.col-lg-2 .card-pf-view .card-pf-top-element .card-pf-icon-circle {
+  font-size: 23px;
+  height: 54px;
+  line-height: 50px;
+  width: 54px;
+}
+.card-pf-view .card-pf-view-checkbox {
+  position: absolute;
+  top: 11px;
+  left: 15px;
+}
+.card-pf-view .card-pf-view-checkbox input[type=checkbox] {
+  display: none;
+}
+.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox] {
+  display: block;
+}
+@media (min-width: 768px) {
+  .card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox] {
+    visibility: hidden;
+  }
+  .card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]:checked {
+    visibility: visible;
+  }
+}
+.card-pf-view.card-pf-view-multi-select:hover .card-pf-view-checkbox input[type=checkbox] {
+  visibility: visible;
+}
+.card-pf-view.card-pf-view-select {
+  position: relative;
+}
+.card-pf-view.card-pf-view-select:hover {
+  -webkit-box-shadow: 0 1px 6px rgba(3, 3, 3, 0.35);
+  box-shadow: 0 1px 6px rgba(3, 3, 3, 0.35);
+}
+.card-pf-view.card-pf-view-select.active {
+  border: 2px solid #39a5dc;
+}
+.card-pf-view.card-pf-view-single-select {
+  cursor: pointer;
+}
+.card-pf-view.card-pf-view-xs .card-pf-title {
+  font-size: 16px;
+  font-weight: normal;
+  margin-bottom: 10px;
+}
+.card-pf-view.card-pf-view-xs .card-pf-title .fa,
+.card-pf-view.card-pf-view-xs .card-pf-title .pficon {
+  font-size: 14px;
+  margin-right: 5px;
+}
+.c3 path {
+  stroke: #d1d1d1;
+}
+.c3 svg {
+  font-family: "Open Sans", Helvetica, Arial, sans-serif;
+}
+.c3-axis-x .tick line {
+  stroke: #d1d1d1;
+}
+.c3-axis-y .tick line {
+  display: none;
+}
+.c3-chart-arc path {
+  stroke: #fff;
+}
+.c3-grid line {
+  stroke: #d1d1d1;
+}
+.c3-line {
+  stroke-width: 2px;
+}
+.c3-tooltip {
+  background: #393f44;
+  -webkit-box-shadow: none;
+  box-shadow: none;
+  opacity: 0.9;
+  filter: alpha(opacity=90);
+}
+.c3-tooltip td {
+  background: transparent;
+  border: 0;
+  color: #fff;
+  font-size: 12px;
+  padding: 5px 10px;
+}
+.c3-tooltip th {
+  background: transparent;
+  font-size: 12px;
+  padding: 5px 10px 0;
+  border-bottom: solid 2px #030303;
+}
+.c3-tooltip tr {
+  border: 0;
+}
+.c3-tooltip tr + tr > td {
+  padding-top: 0;
+}
+.c3-tooltip-sparkline,
+.donut-tooltip-pf {
+  background: #393f44;
+  color: #fff;
+  opacity: 0.9;
+  filter: alpha(opacity=90);
+  padding: 2px 6px;
+}
+.c3-xgrid,
+.c3-ygrid {
+  stroke-dasharray: 0 0;
+}
+.chart-pf-sparkline {
+  margin-left: -5px;
+  margin-right: -5px;
+}
+.donut-title-big-pf {
+  font-size: 30px;
+  font-weight: 300;
+}
+.donut-title-small-pf {
+  font-size: 12px;
+  font-weight: 400;
+}
+.line-chart-pf .c3-zoom-rect {
+  opacity: 1 !important;
+  fill: #fafafa;
+  stroke: #d1d1d1;
+  stroke-width: 1px;
+}
+.pct-donut-chart-pf .pct-donut-chart-pf-label {
+  display: block;
+}
+.pct-donut-chart-pf.pct-donut-chart-pf-left,
+.pct-donut-chart-pf.pct-donut-chart-pf-right,
+.pct-donut-chart-pf .pct-donut-chart-pf-left,
+.pct-donut-chart-pf .pct-donut-chart-pf-right {
+  display: flex;
+  flex-direction: row;
+  justify-content: center;
+  align-items: center;
+}
+.pct-donut-chart-pf.pct-donut-chart-pf-left,
+.pct-donut-chart-pf.pct-donut-chart-pf-right {
+  display: inline-flex;
+}
+.pct-donut-chart-pf.pct-donut-chart-pf-left,
+.pct-donut-chart-pf .pct-donut-chart-pf-left {
+  flex-direction: row-reverse;
+}
+.close {
+  text-shadow: none;
+  z-index: 1;
+  position: relative;
+  opacity: 0.6;
+  filter: alpha(opacity=60);
+}
+.close:hover,
+.close:focus {
+  opacity: 0.9;
+  filter: alpha(opacity=90);
+}
+.layout-pf-fixed .navbar-pf-vertical.navbar-pf-contextselector {
+  z-index: 1040;
+}
+.navbar-pf-vertical .nav.contextselector-pf {
+  border-left: 1px solid #4d5258;
+}
+@media (min-width: 768px) {
+  .navbar-pf-vertical .nav.contextselector-pf {
+    margin-left: 10px;
+  }
+}
+.navbar-pf-vertical .nav.contextselector-pf .nav-item-iconic {
+  padding: 23px 20px 18px 10px;
+  display: flex;
+  align-items: center;
+}
+.contextselector-pf {
+  float: left;
+}
+.contextselector-pf-title {
+  width: 170px;
+  white-space: nowrap;
+  display: inline-block;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  line-height: normal;
+}
+@media (min-width: 480px) {
+  .contextselector-pf-title {
+    width: 210px;
+  }
+}
+.contextselector-pf .dropdown.open,
+.contextselector-pf .dropdown:hover {
+  background-color: #64686c;
+}
+.contextselector-pf .dropdown-menu {
+  width: 100%;
+  margin-top: 0;
+}
+.contextselector-pf .form-group {
+  margin: 0 5px 5px 5px;
+}
+@media (min-width: 768px) {
+  .contextselector-pf .contextselector-pf-list {
+    max-height: 200px;
+    overflow-y: auto;
+  }
+}
+.contextselector-pf .contextselector-pf-list li {
+  padding: 1px 10px;
+  border-width: 1px 0;
+  border-style: solid;
+  border-color: transparent;
+}
+.contextselector-pf .contextselector-pf-list li:hover {
+  background: #def3ff;
+  border-color: #bee1f4;
+}
+.contextselector-pf .contextselector-pf-list li:hover a {
+  text-decoration: none;
+}
+.contextselector-pf .contextselector-pf-list a {
+  color: #393f44;
+  display: block;
+}
+.ColVis_Button:active:focus {
+  outline: none;
+}
+.ColVis_catcher {
+  position: absolute;
+  z-index: 999;
+}
+.ColVis_collection {
+  background-color: #fff;
+  border: 1px solid #bbb;
+  border-radius: 1px;
+  -webkit-box-shadow: 0 6px 12px rgba(3, 3, 3, 0.175);
+  box-shadow: 0 6px 12px rgba(3, 3, 3, 0.175);
+  background-clip: padding-box;
+  list-style: none;
+  margin: -1px 0 0 0;
+  padding: 5px 10px;
+  width: 150px;
+  z-index: 1000;
+}
+.ColVis_collection label {
+  font-weight: normal;
+  margin-bottom: 5px;
+  margin-top: 5px;
+  padding-left: 20px;
+}
+.ColVis_collectionBackground {
+  background-color: #fff;
+  height: 100%;
+  left: 0;
+  position: fixed;
+  top: 0;
+  width: 100%;
+  z-index: 998;
+}
+.dataTables_header {
+  background-color: #f5f5f5;
+  border: 1px solid #d1d1d1;
+  border-bottom: none;
+  padding: 5px;
+  position: relative;
+  text-align: center;
+}
+.dataTables_header .btn {
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+.dataTables_header .ColVis {
+  position: absolute;
+  right: 5px;
+  text-align: left;
+  top: 5px;
+}
+.dataTables_header .ColVis + .dataTables_info {
+  padding-right: 30px;
+}
+.dataTables_header .dataTables_filter {
+  position: absolute;
+}
+.dataTables_header .dataTables_filter input {
+  border: 1px solid #bbb;
+  height: 24px;
+}
+@media (max-width: 767px) {
+  .dataTables_header .dataTables_filter input {
+    width: 100px;
+  }
+}
+.dataTables_header .dataTables_info {
+  padding: 2px 0;
+}
+@media (max-width: 480px) {
+  .dataTables_header .dataTables_info {
+    text-align: right;
+  }
+}
+.dataTables_header .dataTables_info b {
+  font-weight: bold;
+}
+.dataTables_footer {
+  background-color: #fff;
+  border: 1px solid #d1d1d1;
+  border-top: none;
+  overflow: hidden;
+}
+.dataTables_paginate {
+  background: #fafafa;
+  float: right;
+  margin: 0;
+}
+.dataTables_paginate .pagination {
+  float: left;
+  margin: 0;
+}
+.dataTables_paginate .pagination > li > span {
+  border-color: #fff #d1d1d1 #f5f5f5;
+  border-width: 0 1px;
+  font-size: 16px;
+  font-weight: normal;
+  padding: 0;
+  text-align: center;
+  width: 31px;
+}
+.dataTables_paginate .pagination > li > span:hover,
+.dataTables_paginate .pagination > li > span:focus {
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+}
+.dataTables_paginate .pagination > li.last > span {
+  border-right: none;
+}
+.dataTables_paginate .pagination > li.disabled > span {
+  background: #f5f5f5;
+  border-left-color: #ededed;
+  border-right-color: #ededed;
+  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
+}
+.dataTables_paginate .pagination-input {
+  float: left;
+  font-size: 12px;
+  line-height: 1em;
+  padding: 4px 15px 0;
+  text-align: right;
+}
+.dataTables_paginate .pagination-input .paginate_input {
+  border: 1px solid #d1d1d1;
+  -webkit-box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075);
+  box-shadow: inset 0 1px 1px rgba(3, 3, 3, 0.075);
+  font-size: 12px;
+  font-weight: 600;
+  height: 19px;
+  margin-right: 8px;
+  padding-right: 3px;
+  text-align: right;
+  width: 30px;
+}
+.dataTables_paginate .pagination-input .paginate_of {
+  position: relative;
+}
+.dataTables_paginate .pagination-input .paginate_of b {
+  margin-left: 3px;
+}
+.dataTables_empty {
+  background: #f5f5f5;
+}
+/* Might need this for pagination?
+.dataTables_wrapper {
+  margin: @line-height-computed 0;
+  @media (max-width: @screen-xs-max) {
+    .table-responsive {
+      margin-bottom: 0;
+    }
+  }
+}
+*/
+.DTCR_clonedTable {
+  background-color: rgba(255, 255, 255, 0.7);
+  z-index: 202;
+}
+.DTCR_pointer {
+  background-color: #0088ce;
+  width: 1px;
+  z-index: 201;
+}
+.experimental-pf > * {
+  border: 2px solid #92d400;
+}
+.experimental-pf-bar {
+  background-color: #92d400;
+  border: none;
+  text-align: center;
+  position: relative;
+}
+.experimental-pf-more-info {
+  background-color: #92d400;
+  border: 0;
+  color: #030303;
+  display: block;
+  width: 100%;
+  padding-top: 10px;
+  padding-bottom: 10px;
+  position: static;
+}
+@media (min-width: 992px) {
+  .experimental-pf-more-info {
+    padding: 0 10px;
+    position: absolute;
+    right: 0;
+    top: 0;
+    width: auto;
+  }
+}
+@media (min-width: 992px) {
+  .experimental-pf-text {
+    padding-left: 150px;
+    padding-right: 150px;
+  }
+}
+.experimental-pf-text a {
+  color: #030303;
+  text-decoration: underline;
+}
+.experimental-pf-text a:hover {
+  color: #030303;
+  cursor: pointer;
+}
+.btn-experimental-pf {
+  background-color: #92d400;
+  background-image: -webkit-linear-gradient(top, #ace12e 0%, #92d400 100%);
+  background-image: -o-linear-gradient(top, #ace12e 0%, #92d400 100%);
+  background-image: linear-gradient(to bottom, #ace12e 0%, #92d400 100%);
+  background-repeat: repeat-x;
+  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fface12e', endColorstr='#ff92d400', GradientType=0);
+  border-color: #92d400;
+  color: #4d5258;
+}
+.btn-experimental-pf:hover,
+.btn-experimental-pf:focus,
+.btn-experimental-pf:active,
+.btn-experimental-pf.active,
+.open .dropdown-toggle.btn-experimental-pf {
+  background-color: #92d400;
+  background-image: none;
+  border-color: #92d400;
+  color: #4d5258;
+}
+.btn-experimental-pf:active,
+.btn-experimental-pf.active,
+.open .dropdown-toggle.btn-experimental-pf {
+  background-image: none;
+}
+.btn-experimental-pf:active:hover,
+.btn-experimental-pf.active:hover,
+.open .dropdown-toggle.btn-experimental-pf:hover,
+.btn-experimental-pf:active:focus,
+.btn-experimental-pf.active:focus,
+.open .dropdown-toggle.btn-experimental-pf:focus,
+.btn-experimental-pf:active.focus,
+.btn-experimental-pf.active.focus,
+.open .dropdown-toggle.btn-experimental-pf.focus {
+  background-color: #80bb00;
+  border-color: #79b000;
+}
+.btn-experimental-pf.disabled,
+.btn-experimental-pf[disabled],
+fieldset[disabled] .btn-experimental-pf,
+.btn-experimental-pf.disabled:hover,
+.btn-experimental-pf[disabled]:hover,
+fieldset[disabled] .btn-experimental-pf:hover,
+.btn-experimental-pf.disabled:focus,
+.btn-experimental-pf[disabled]:focus,
+fieldset[disabled] .btn-experimental-pf:focus,
+.btn-experimental-pf.disabled:active,
+.btn-experimental-pf[disabled]:active,
+fieldset[disabled] .btn-experimental-pf:active,
+.btn-experimental-pf.disabled.active,
+.btn-experimental-pf[disabled].active,
+fieldset[disabled] .btn-experimental-pf.active {
+  background-color: #92d400;
+  border-color: #92d400;
+}
+.filter-pf-category-select {
+  display: flex;
+}
+.filter-pf-category-select-value {
+  border-left-width: 0;
+}
+.filter-pf-category-item {
+  margin-bottom: 5px;
+}
+.filter-pf-category-label {
+  font-weight: 700;
+  margin-right: 5px;
+  padding: 5px 0 6px 5px;
+}
+.filter-pf-select .caret {
+  position: absolute;
+  top: 50%;
+  right: 10px;
+  transform: translateY(-50%);
+}
+.filter-pf-select-dropdown {
+  background-color: #fff;
+  background-image: none;
+  color: #8b8d8f;
+  font-size: 12px;
+  font-style: italic;
+  font-weight: 400;
+  padding-right: 25px;
+  text-align: left;
+}
+.filter-pf-select-dropdown .caret {
+  font-style: normal;
+}
+.filter-pf-active-label {
+  margin-right: 5px;
+}
+.footer-pf-alt,
+.footer-pf {
+  background-color: #030303;
+  color: #9c9c9c;
+  font-size: 11px;
+  line-height: 17px;
+  padding-left: 25px;
+  padding-top: 10px;
+}
+.layout-pf-alt-fixed-with-footer .footer-pf-alt,
+.layout-pf-alt-fixed-with-footer .footer-pf,
+.layout-pf-fixed-with-footer .footer-pf-alt,
+.layout-pf-fixed-with-footer .footer-pf {
+  bottom: 0;
+  left: 0;
+  position: fixed;
+  right: 0;
+  z-index: 1030;
+}
+@font-face {
+  font-family: "PatternFlyIcons-webfont";
+  src: url("../fonts/PatternFlyIcons-webfont.eot");
+  src: url("../fonts/PatternFlyIcons-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/PatternFlyIcons-webfont.ttf") format("truetype"), url("../fonts/PatternFlyIcons-webfont.woff") format("woff"), url("../fonts/PatternFlyIcons-webfont.svg#PatternFlyIcons-webfont") format("svg");
+  font-weight: normal;
+  font-style: normal;
+}
+[class^="pficon-"],
+[class*=" pficon-"] {
+  display: inline-block;
+  font-family: "PatternFlyIcons-webfont";
+  font-style: normal;
+  font-variant: normal;
+  font-weight: normal;
+  line-height: 1;
+  speak: none;
+  text-transform: none;
+  /* Better Font Rendering =========== */
+  -moz-osx-font-smoothing: grayscale;
+  -webkit-font-smoothing: antialiased;
+}
+.pficon-add-circle-o:before {
+  content: "\e61b";
+}
+.pficon-applications:before {
+  content: "\e936";
+}
+.pficon-arrow:before {
+  content: "\e929";
+}
+.pficon-asleep:before {
+  content: "\e925";
+}
+.pficon-automation:before {
+  content: "\e937";
+}
+.pficon-build:before {
+  content: "\e902";
+}
+.pficon-builder-image:before {
+  content: "\e800";
+}
+.pficon-bundle:before {
+  content: "\e918";
+}
+.pficon-blueprint:before {
+  content: "\e915";
+}
+.pficon-catalog:before {
+  content: "\e939";
+}
+.pficon-chat:before {
+  content: "\e928";
+}
+.pficon-close:before {
+  content: "\e60b";
+}
+.pficon-cloud-security:before {
+  content: "\e903";
+}
+.pficon-cloud-tenant:before {
+  content: "\e904";
+}
+.pficon-cluster:before {
+  content: "\e620";
+}
+.pficon-connected:before {
+  content: "\e938";
+}
+.pficon-container-node:before {
+  content: "\e621";
+}
+.pficon-cpu:before {
+  content: "\e927";
+}
+.pficon-degraded:before {
+  content: "\e91b";
+}
+.pficon-delete:before {
+  content: "\e611";
+}
+.pficon-disconnected:before {
+  content: "\e93c";
+}
+.pficon-domain:before {
+  content: "\e919";
+}
+.pficon-edit:before {
+  content: "\e60a";
+}
+.pficon-enhancement:before {
+  content: "\e93a";
+}
+.pficon-enterprise:before {
+  content: "\e906";
+}
+.pficon-equalizer:before {
+  content: "\e610";
+}
+.pficon-error-circle-o:before {
+  color: #cc0000;
+  content: "\e926";
+}
+.pficon-export:before {
+  content: "\e616";
+}
+.pficon-flag:before,
+.pficon-messages:before {
+  content: "\e603";
+}
+.pficon-flavor:before {
+  content: "\e907";
+}
+.pficon-filter:before {
+  content: "\e943";
+}
+.pficon-folder-close:before {
+  content: "\e607";
+}
+.pficon-folder-open:before {
+  content: "\e606";
+}
+.pficon-help:before {
+  content: "\e605";
+}
+.pficon-history:before {
+  content: "\e93b";
+}
+.pficon-home:before {
+  content: "\e618";
+}
+.pficon-image:before {
+  content: "\e61f";
+}
+.pficon-import:before {
+  content: "\e615";
+}
+.pficon-in-progress:before {
+  content: "\e92c";
+}
+.pficon-info:before {
+  content: "\e92b";
+}
+.pficon-infrastructure:before {
+  content: "\e93d";
+}
+.pficon-integration:before {
+  content: "\e948";
+}
+.pficon-key:before {
+  content: "\e924";
+}
+.pficon-locked:before {
+  content: "\e923";
+}
+.pficon-maintenance:before {
+  content: "\e92d";
+}
+.pficon-memory:before {
+  content: "\e908";
+}
+.pficon-middleware:before {
+  content: "\e917";
+}
+.pficon-migration:before {
+  content: "\e92e";
+}
+.pficon-monitoring:before {
+  content: "\e944";
+}
+.pficon-network:before {
+  content: "\e909";
+}
+.pficon-network-range:before {
+  content: "\e94a";
+}
+.pficon-on:before {
+  content: "\e931";
+}
+.pficon-on-running:before {
+  content: "\e930";
+}
+.pficon-optimize:before {
+  content: "\e93e";
+}
+.pficon-orders:before {
+  content: "\e93f";
+}
+.pficon-off:before {
+  content: "\e92f";
+}
+.pficon-ok:before {
+  color: #3f9c35;
+  content: "\e602";
+}
+.pficon-paused:before {
+  content: "\e932";
+}
+.pficon-pending:before {
+  content: "\e933";
+}
+.pficon-plugged:before {
+  content: "\e940";
+}
+.pficon-port:before {
+  content: "\e945";
+}
+.pficon-print:before {
+  content: "\e612";
+}
+.pficon-process-automation:before {
+  content: "\e949";
+}
+.pficon-private:before {
+  content: "\e914";
+}
+.pficon-project:before {
+  content: "\e905";
+}
+.pficon-rebalance:before {
+  content: "\e91c";
+}
+.pficon-rebooting:before {
+  content: "\e934";
+}
+.pficon-refresh:before,
+.pficon-restart:before {
+  content: "\e617";
+}
+.pficon-regions:before {
+  content: "\e90a";
+}
+.pficon-registry:before {
+  content: "\e623";
+}
+.pficon-remove:before {
+  content: "\e611";
+}
+.pficon-replicator:before {
+  content: "\e624";
+}
+.pficon-repository:before {
+  content: "\e90b";
+}
+.pficon-resource-pool:before {
+  content: "\e90c";
+}
+.pficon-resources-almost-empty:before {
+  content: "\e91d";
+}
+.pficon-resources-almost-full:before {
+  content: "\e912";
+}
+.pficon-resources-full:before {
+  content: "\e92a";
+}
+.pficon-route:before {
+  content: "\e625";
+}
+.pficon-running:before {
+  content: "\e614";
+}
+.pficon-satellite:before {
+  content: "\e94b";
+}
+.pficon-save:before {
+  content: "\e601";
+}
+.pficon-screen:before {
+  content: "\e600";
+}
+.pficon-search:before {
+  content: "\e921";
+}
+.pficon-security:before {
+  content: "\e946";
+}
+.pficon-server:before {
+  content: "\e90d";
+}
+.pficon-server-group:before {
+  content: "\e91a";
+}
+.pficon-service:before {
+  content: "\e61e";
+}
+.pficon-services:before {
+  content: "\e947";
+}
+.pficon-service-catalog:before {
+  content: "\e941";
+}
+.pficon-settings:before {
+  content: "\e610";
+}
+.pficon-spinner:before {
+  content: "\e614";
+}
+.pficon-spinner2:before {
+  content: "\e613";
+}
+.pficon-storage-domain:before {
+  content: "\e90e";
+}
+.pficon-template:before {
+  content: "\e94c";
+}
+.pficon-tenant:before {
+  content: "\e916";
+}
+.pficon-thumb-tack-o:before {
+  content: "\e920";
+}
+.pficon-topology:before {
+  content: "\e608";
+}
+.pficon-trend-down:before {
+  content: "\e900";
+}
+.pficon-trend-up:before {
+  content: "\e901";
+}
+.pficon-unknown:before {
+  content: "\e935";
+}
+.pficon-user:before {
+  content: "\e91e";
+}
+.pficon-users:before {
+  content: "\e91f";
+}
+.pficon-unlocked:before {
+  content: "\e922";
+}
+.pficon-unplugged:before {
+  content: "\e942";
+}
+.pficon-vcenter:before {
+  content: "\e94d";
+}
+.pficon-virtual-machine:before {
+  content: "\e90f";
+}
+.pficon-volume:before {
+  content: "\e910";
+}
+.pficon-warning-triangle-o:before {
+  color: #ec7a08;
+  content: "\e913";
+}
+.pficon-zone:before {
+  content: "\e911";
+}
+.navbar-nav > li > .dropdown-menu.infotip {
+  border-top-width: 1px !important;
+  margin-top: 10px;
+}
+@media (max-width: 767px) {
+  .navbar-pf .navbar-nav .open .dropdown-menu.infotip {
+    background-color: #fff !important;
+    margin-top: 0;
+  }
+}
+.infotip {
+  min-width: 235px;
+  padding: 0;
+}
+.infotip .list-group {
+  border-top: 0;
+  margin: 0;
+  padding: 8px 0;
+}
+.infotip .list-group .list-group-item {
+  border: none;
+  margin: 0 15px 0 34px;
+  padding: 5px 0;
+}
+.infotip .list-group .list-group-item > .i {
+  color: #4d5258;
+  font-size: 13px;
+  left: -20px;
+  position: absolute;
+  top: 8px;
+}
+.infotip .list-group .list-group-item > a {
+  color: #4d5258;
+  line-height: 13px;
+}
+.infotip .list-group .list-group-item > .close {
+  float: right;
+}
+.infotip .footer {
+  background-color: #f5f5f5;
+  padding: 6px 15px;
+}
+.infotip .footer a:hover {
+  color: #0088ce;
+}
+.infotip .arrow,
+.infotip .arrow:after {
+  border-color: transparent;
+  border-style: solid;
+  display: block;
+  height: 0;
+  position: absolute;
+  width: 0;
+}
+.infotip .arrow {
+  border-width: 11px;
+}
+.infotip .arrow:after {
+  border-width: 10px;
+  content: "";
+}
+.infotip.bottom .arrow,
+.infotip.bottom-left .arrow,
+.infotip.bottom-right .arrow {
+  border-bottom-color: #bbb;
+  border-top-width: 0;
+  left: 50%;
+  margin-left: -11px;
+  top: -11px;
+}
+.infotip.bottom .arrow:after,
+.infotip.bottom-left .arrow:after,
+.infotip.bottom-right .arrow:after {
+  border-top-width: 0;
+  border-bottom-color: #fff;
+  content: " ";
+  margin-left: -10px;
+  top: 1px;
+}
+.infotip.bottom-left .arrow {
+  left: 20%;
+}
+.infotip.bottom-right .arrow {
+  left: 80%;
+}
+.infotip.top .arrow {
+  border-bottom-width: 0;
+  border-top-color: #bbb;
+  bottom: -11px;
+  left: 50%;
+  margin-left: -11px;
+}
+.infotip.top .arrow:after {
+  border-bottom-width: 0;
+  border-top-color: #f5f5f5;
+  bottom: 1px;
+  content: " ";
+  margin-left: -10px;
+}
+.infotip.right .arrow {
+  border-left-width: 0;
+  border-right-color: #bbb;
+  left: -11px;
+  margin-top: -11px;
+  top: 50%;
+}
+.infotip.right .arrow:after {
+  bottom: -10px;
+  border-left-width: 0;
+  border-right-color: #fff;
+  content: " ";
+  left: 1px;
+}
+.infotip.left .arrow {
+  border-left-color: #bbb;
+  border-right-width: 0;
+  margin-top: -11px;
+  right: -11px;
+  top: 50%;
+}
+.infotip.left .arrow:after {
+  border-left-color: #fff;
+  border-right-width: 0;
+  bottom: -10px;
+  content: " ";
+  right: 1px;
+}
+.layout-pf,
+.layout-pf body {
+  min-height: 100%;
+}
+.layout-pf.layout-pf-fixed.transitions .container-pf-nav-pf-vertical {
+  transition: all 200ms cubic-bezier(0.35, 0, 0.25, 1);
+}
+.layout-pf.layout-pf-fixed body {
+  padding-top: 60px;
+}
+.layout-pf.layout-pf-fixed .navbar-pf {
+  left: 0;
+  position: fixed;
+  top: 0;
+  right: 0;
+  z-index: 1030;
+}
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical {
+  margin-left: 200px;
+}
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-vertical-with-badges {
+  margin-left: 250px;
+}
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav {
+  margin-left: 75px;
+}
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav.hidden-icons-pf {
+  margin-left: 0;
+}
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hidden-nav {
+  margin-left: 0;
+}
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hide-nav-pf {
+  margin-left: 0 !important;
+}
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf,
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf {
+  margin-left: 200px;
+}
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges,
+.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges {
+  margin-left: 250px;
+}
+@media (min-width: 1200px) {
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf {
+    margin-left: 400px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges {
+    margin-left: 500px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hidden-nav {
+    margin-left: 0;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf {
+    margin-left: 200px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges {
+    margin-left: 250px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf {
+    margin-left: 200px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges {
+    margin-left: 250px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav {
+    margin-left: 275px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.nav-pf-vertical-with-badges {
+    margin-left: 325px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf {
+    margin-left: 200px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges {
+    margin-left: 250px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf {
+    margin-left: 200px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges {
+    margin-left: 250px;
+  }
+  .layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.hidden-icons-pf {
+    margin-left: 0;
+  }
+}
+.layout-pf.layout-pf-fixed-with-footer body {
+  padding-bottom: 37px;
+}
+.layout-pf-alt,
+.layout-pf-alt body {
+  min-height: 100%;
+}
+.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll,
+.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll body {
+  height: 100%;
+  min-height: 0;
+}
+.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt {
+  height: 100%;
+  overflow: auto;
+}
+.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt.container-cards-pf {
+  margin-top: 0;
+  padding-top: 20px;
+}
+.layout-pf-alt.layout-pf-alt-fixed.transitions .container-pf-alt-nav-pf-vertical-alt {
+  transition: all 200ms cubic-bezier(0.35, 0, 0.25, 1);
+}
+.layout-pf-alt.layout-pf-alt-fixed body {
+  padding-top: 60px;
+}
+.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt {
+  margin-left: 250px;
+}
+.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.collapsed-nav {
+  margin-left: 75px;
+}
+.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.hidden-nav {
+  margin-left: 0;
+}
+.layout-pf-alt.layout-pf-alt-fixed-with-footer body {
+  padding-bottom: 37px;
+}
+a.disabled {
+  color: #8b8d8f;
+  cursor: not-allowed;
+  text-decoration: none;
+}
+.list-pf {
+  border-bottom: 1px solid #ededed;
+}
+.list-pf-item {
+  border-color: #ededed;
+  border-left-color: #fff;
+  border-right-color: #fff;
+  border-style: solid;
+  border-width: 1px;
+  border-bottom: none;
+}
+.list-pf-item:hover {
+  background-color: #edf8ff;
+}
+.list-pf-item.active {
+  background-color: #ededed;
+  border-color: #bbb;
+  border-bottom-width: 1px;
+  border-bottom-style: solid;
+}
+.list-pf-expansion {
+  background-color: #fff;
+}
+.list-pf-container {
+  align-items: flex-start;
+  display: flex;
+  padding: 20px;
+}
+.list-pf-expansion .list-pf-container {
+  border-top: 1px solid #bbb;
+}
+@media (min-width: 992px) {
+  .list-pf:not(.list-pf-stacked) .list-pf-container {
+    align-items: center;
+  }
+}
+.list-pf-chevron {
+  min-width: 1.2em;
+}
+.list-pf-chevron,
+.list-pf-select {
+  margin-right: 10px;
+}
+.list-pf-chevron + .list-pf-content,
+.list-pf-select + .list-pf-content {
+  border-left: 1px solid #d1d1d1;
+  padding-left: 20px;
+}
+.list-pf-chevron .fa,
+.list-pf-select .fa {
+  font-size: 22px;
+}
+.list-pf-content-flex {
+  align-items: flex-start;
+  display: flex;
+  flex-grow: 1;
+  flex-wrap: nowrap;
+  justify-content: flex-start;
+  min-width: 0;
+}
+@media (min-width: 992px) {
+  .list-pf:not(.list-pf-stacked) .list-pf-content-flex {
+    align-items: center;
+  }
+}
+.list-pf-left {
+  flex-grow: 0;
+  margin-left: 0;
+  margin-right: 20px;
+}
+.list-pf-icon {
+  align-items: center;
+  display: flex;
+  justify-content: center;
+}
+.list-pf-icon-bordered {
+  border-radius: 50%;
+  border: 2px solid #39a5dc;
+}
+.list-pf-icon-small {
+  font-size: 1.4em;
+  height: 30px;
+  line-height: 30px;
+  width: 30px;
+}
+.list-pf-content-wrapper {
+  align-items: center;
+  display: flex;
+  flex-grow: 1;
+  flex-wrap: wrap;
+  min-width: 0;
+}
+@media (min-width: 992px) {
+  .list-pf-content-wrapper {
+    flex-wrap: nowrap;
+  }
+  .list-pf-content-wrapper > * + * {
+    margin-left: 40px;
+  }
+}
+.list-pf-stacked .list-pf-content-wrapper {
+  align-items: flex-start;
+}
+.list-pf-main-content {
+  align-items: center;
+  display: flex;
+  flex-basis: 70%;
+  flex-grow: 1;
+  flex-shrink: 1;
+  flex-wrap: wrap;
+  min-width: 0;
+}
+@media (min-width: 992px) {
+  .list-pf:not(.list-pf-stacked) .list-pf-main-content {
+    flex-wrap: nowrap;
+    width: auto;
+  }
+  .list-pf:not(.list-pf-stacked) .list-pf-main-content > * + * {
+    margin-left: 40px;
+  }
+}
+.list-pf-title {
+  flex-grow: 1;
+  flex-shrink: 1;
+  flex-basis: 100%;
+  font-weight: bold;
+  min-width: 0;
+  word-wrap: break-word;
+}
+.list-pf-description {
+  flex-grow: 1;
+  flex-shrink: 1;
+  flex-basis: 100%;
+  min-width: 0;
+  word-wrap: break-word;
+}
+.list-pf-additional-content {
+  display: flex;
+  flex-basis: 31%;
+  flex-grow: 1;
+  flex-shrink: 1;
+  flex-wrap: wrap;
+  justify-content: space-between;
+}
+.list-pf-actions {
+  display: flex;
+  align-items: flex-start;
+  flex-grow: 0;
+  margin-left: 40px;
+}
+.list-pf-actions > * + * {
+  margin-left: 10px;
+}
+.list-view-pf .list-group-item {
+  align-items: flex-start;
+  background-clip: padding-box;
+  border-color: transparent #fff;
+  border-style: solid;
+  border-width: 1px;
+  display: flex;
+  flex-wrap: wrap;
+  padding-bottom: 0;
+  padding-top: 0;
+}
+.list-view-pf .list-group-item:before,
+.list-view-pf .list-group-item:after {
+  content: " ";
+  display: table;
+}
+.list-view-pf .list-group-item:after {
+  clear: both;
+}
+.list-view-pf .list-group-item.list-view-pf-expand-active {
+  background-color: #edf8ff;
+  box-shadow: 0 2px 6px rgba(3, 3, 3, 0.2);
+  z-index: 1;
+}
+.list-view-pf .list-group-item.active {
+  color: #555;
+  background-color: #def3ff;
+  background-clip: border-box;
+  border-color: #bbb transparent transparent;
+  z-index: auto;
+}
+.list-view-pf .list-group-item:hover {
+  background-color: #edf8ff;
+  border-left-color: transparent;
+  border-right-color: transparent;
+}
+.list-view-pf .list-group-item.list-view-pf-expand-active {
+  border: solid 1px #bbb;
+}
+.list-view-pf .list-group-item.list-view-pf-expand-active:first-child {
+  border-top-color: #bbb;
+}
+.list-view-pf .list-group-item:first-child {
+  border-top: 1px solid transparent;
+}
+@media (min-width: 992px) {
+  .list-view-pf .list-group-item {
+    align-items: center;
+  }
+}
+.list-view-pf .list-group-item-heading {
+  font-size: 16px;
+}
+.list-view-pf .list-group-item-heading small {
+  display: block;
+  font-size: 9.6px;
+  font-weight: 400;
+}
+@media (min-width: 992px) {
+  .list-view-pf .list-group-item-heading {
+    flex: 1 0 calc(25% - 20px);
+    float: left;
+    font-size: 12px;
+    margin: 0 20px 0 0;
+    overflow: hidden;
+    text-overflow: ellipsis;
+    white-space: nowrap;
+    width: calc(25% - 20px);
+  }
+}
+.list-view-pf .list-group-item-text {
+  color: currentColor !important;
+  margin-bottom: 10px;
+}
+@media (min-width: 992px) {
+  .list-view-pf .list-group-item-text {
+    flex: 1 0 auto;
+    float: left;
+    margin: 0 40px 0 0;
+    width: calc(75% - 40px);
+  }
+}
+.list-view-pf .close {
+  float: none;
+  position: absolute;
+  right: 15px;
+}
+.list-view-pf-actions {
+  float: right;
+  margin-bottom: 20px;
+  margin-left: 20px;
+  margin-top: 20px;
+  order: 2;
+}
+.list-view-pf-actions button,
+.list-view-pf-actions > a,
+.list-view-pf-actions .dropdown-kebab-pf {
+  margin-left: 10px;
+}
+.list-view-pf-top-align .list-view-pf-actions {
+  align-self: flex-start;
+}
+.list-view-pf-additional-info {
+  align-items: center;
+  display: flex;
+  flex-wrap: wrap;
+}
+@media (min-width: 992px) {
+  .list-view-pf-additional-info {
+    flex: 1 0 auto;
+    float: left;
+    width: 50%;
+  }
+}
+.list-view-pf-additional-info-item {
+  align-items: center;
+  display: inline-block;
+  display: flex;
+  margin-right: 20px;
+  max-width: 100%;
+  text-align: center;
+}
+.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked {
+  text-align: center;
+  flex-direction: column;
+}
+.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked strong {
+  font-size: 13px;
+  line-height: 1em;
+}
+.list-view-pf-additional-info-item .pficon,
+.list-view-pf-additional-info-item .fa {
+  font-size: 16px;
+  margin-right: 10px;
+}
+.list-view-pf-additional-info-item strong {
+  font-size: 16px;
+  font-weight: 600;
+  margin-right: 5px;
+}
+.list-view-pf-additional-info-item:last-child {
+  margin-right: 0;
+}
+.list-view-pf-additional-info-item-donut-chart {
+  width: 60px;
+}
+.list-view-pf-body {
+  align-items: center;
+  display: table-cell;
+  flex: 1;
+  min-width: 0;
+  vertical-align: top;
+  width: 100%;
+}
+@media (min-width: 992px) {
+  .list-view-pf-body {
+    align-items: center;
+    display: flex;
+    flex-direction: row;
+  }
+}
+.list-view-pf-checkbox {
+  border-right: 1px solid #d1d1d1;
+  float: left;
+  margin-bottom: 20px;
+  margin-right: 15px;
+  margin-top: 20px;
+  padding: 3px 10px 3px 0;
+}
+.list-view-pf-top-align .list-view-pf-checkbox {
+  align-self: flex-start;
+}
+.list-view-pf-description {
+  flex: 1 0 50%;
+}
+.list-view-pf-stacked .list-view-pf-description {
+  display: block;
+  flex: none;
+}
+@media (min-width: 992px) {
+  .list-view-pf-description {
+    align-items: center;
+    display: flex;
+    float: left;
+    width: 50%;
+  }
+}
+.list-view-pf-left {
+  display: table-cell;
+  padding-right: 20px;
+  text-align: center;
+  vertical-align: top;
+}
+.list-view-pf-left .list-view-pf-calendar {
+  font-size: 11px;
+  line-height: 1em;
+}
+.list-view-pf-left .list-view-pf-calendar strong {
+  display: block;
+  font-size: 44px;
+  font-weight: 300;
+  line-height: 1em;
+}
+.list-view-pf-left .pficon,
+.list-view-pf-left .fa {
+  border-radius: 50%;
+  font-size: 2em;
+}
+.list-view-pf-left .pficon.list-view-pf-icon-md,
+.list-view-pf-left .fa.list-view-pf-icon-md {
+  background-color: #f5f5f5;
+  height: 50px;
+  line-height: 50px;
+  width: 50px;
+}
+.list-view-pf-left .pficon.list-view-pf-icon-danger,
+.list-view-pf-left .fa.list-view-pf-icon-danger {
+  background-color: #ffe6e6;
+  color: #cc0000;
+}
+.list-view-pf-left .pficon.list-view-pf-icon-info,
+.list-view-pf-left .fa.list-view-pf-icon-info {
+  color: #8b8d8f;
+}
+.list-view-pf-left .pficon.list-view-pf-icon-lg,
+.list-view-pf-left .fa.list-view-pf-icon-lg {
+  background-color: #f5f5f5;
+  height: 60px;
+  line-height: 60px;
+  width: 60px;
+}
+.list-view-pf-left .pficon.list-view-pf-icon-sm,
+.list-view-pf-left .fa.list-view-pf-icon-sm {
+  border: 2px solid #39a5dc;
+  font-size: 1.4em;
+  height: 30px;
+  line-height: 30px;
+  width: 30px;
+}
+.list-view-pf-left .pficon.list-view-pf-icon-sm:before,
+.list-view-pf-left .fa.list-view-pf-icon-sm:before {
+  display: block;
+  line-height: 26px;
+}
+.list-view-pf-left .pficon.list-view-pf-icon-success,
+.list-view-pf-left .fa.list-view-pf-icon-success {
+  background-color: #e9f4e9;
+  color: #3f9c35;
+}
+.list-view-pf-left .pficon.list-view-pf-icon-warning,
+.list-view-pf-left .fa.list-view-pf-icon-warning {
+  background-color: #fdf2e5;
+  color: #ec7a08;
+}
+.list-view-pf-main-info {
+  align-items: flex-start;
+  display: flex;
+  flex: 1;
+  min-width: 0;
+  padding-bottom: 20px;
+  padding-top: 20px;
+}
+@media (min-width: 992px) {
+  .list-view-pf-main-info {
+    align-items: center;
+  }
+  .list-view-pf-top-align .list-view-pf-main-info {
+    align-items: flex-start;
+  }
+}
+.list-view-pf-stacked .list-group-item-heading {
+  float: none;
+  font-size: 16px;
+  line-height: 1.2em;
+  margin-bottom: 5px;
+  margin-right: 40px;
+  width: auto;
+}
+.list-view-pf-stacked .list-group-item-text {
+  float: none;
+  width: auto;
+}
+.list-view-pf-view {
+  background: #ededed;
+  border: none;
+  margin-top: 30px;
+}
+.list-group-item-header {
+  box-sizing: content-box;
+  cursor: pointer;
+  margin: 0 -15px;
+  padding: 0 15px;
+  width: 100%;
+}
+.list-view-pf-expand {
+  cursor: pointer;
+  float: left;
+  margin-bottom: 20px;
+  margin-right: 2px;
+  margin-top: 20px;
+  padding: 3px 0;
+}
+.list-view-pf-expand.active,
+.list-view-pf-expand:hover {
+  color: #0088ce;
+}
+.list-view-pf-additional-info-item .list-view-pf-expand {
+  margin: 0;
+  padding: 0;
+}
+.list-view-pf-expand .fa-angle-right {
+  cursor: pointer;
+  font-size: 17px;
+  margin-right: 5px;
+  margin-top: 2px;
+  width: 10px;
+}
+.list-group-item-container {
+  background: #fff;
+  border-top: solid 1px #bbb;
+  box-sizing: content-box;
+  margin: -1px -15px 0;
+  order: 3;
+  padding: 15px;
+  position: relative;
+  width: 100%;
+}
+.list-view-pf-dnd .dndDragging.drag-original {
+  display: none;
+}
+.list-view-pf-dnd .dndDragging.drag-original .list-view-pf-dnd-original-items {
+  display: block;
+}
+.list-view-pf-dnd .dndDragging .list-view-pf-dnd-drag-items {
+  display: inline-block;
+}
+.list-view-pf-dnd .dndDragging .list-view-pf-dnd-original-items {
+  display: none;
+}
+.list-view-pf-dnd .dndPlaceholder {
+  background-color: #ededed;
+  padding: 20px 0;
+}
+.list-view-pf-dnd .list-group-item-header {
+  margin-left: -10px;
+}
+.list-view-pf-dnd .list-group-item-header:before {
+  background-image: linear-gradient(to bottom, #0088ce 60%, #fff 0%);
+  background-position: left;
+  background-repeat: repeat-y;
+  background-size: 2px 5px;
+  border: 4px solid #0088ce;
+  border-color: #00659c;
+  content: "";
+  height: 55px;
+  left: 4px;
+  position: absolute;
+  top: 5px;
+  width: 10px;
+}
+.list-view-pf-dnd-drag-items {
+  display: none;
+}
+.login-pf {
+  height: 100%;
+}
+.login-pf #brand {
+  position: relative;
+  top: -70px;
+}
+.login-pf #brand img {
+  display: block;
+  height: 18px;
+  margin: 0 auto;
+  max-width: 100%;
+}
+@media (min-width: 768px) {
+  .login-pf #brand img {
+    margin: 0;
+    text-align: left;
+  }
+}
+.login-pf #badge {
+  display: block;
+  margin: 20px auto 70px;
+  position: relative;
+  text-align: center;
+}
+@media (min-width: 768px) {
+  .login-pf #badge {
+    float: right;
+    margin-right: 64px;
+    margin-top: 50px;
+  }
+}
+.login-pf body {
+  background: #1a1a1a url("../img/bg-login.png") repeat-x 50% 0;
+  background-size: auto;
+}
+@media (min-width: 768px) {
+  .login-pf body {
+    background-size: 100% auto;
+  }
+}
+.login-pf .container {
+  background-color: transparent;
+  clear: right;
+  color: #fff;
+  padding-bottom: 40px;
+  padding-top: 20px;
+  width: auto;
+}
+@media (min-width: 768px) {
+  .login-pf .container {
+    bottom: 13%;
+    padding-left: 80px;
+    position: absolute;
+    width: 100%;
+  }
+}
+.login-pf .container .details p:first-child {
+  border-top: 1px solid rgba(255, 255, 255, 0.3);
+  padding-top: 25px;
+  margin-top: 25px;
+}
+@media (min-width: 768px) {
+  .login-pf .container .details {
+    border-left: 1px solid rgba(255, 255, 255, 0.3);
+    padding-left: 40px;
+  }
+  .login-pf .container .details p:first-child {
+    border-top: 0;
+    padding-top: 0;
+    margin-top: 0;
+  }
+}
+.login-pf .container .details p {
+  margin-bottom: 2px;
+}
+.login-pf .container .form-horizontal .control-label {
+  font-size: 13px;
+  font-weight: 400;
+  text-align: left;
+}
+.login-pf .container .form-horizontal .form-group:last-child,
+.login-pf .container .form-horizontal .form-group:last-child .help-block:last-child {
+  margin-bottom: 0;
+}
+.login-pf .container .help-block {
+  color: #fff;
+}
+@media (min-width: 768px) {
+  .login-pf .container .login {
+    padding-right: 40px;
+  }
+}
+.login-pf .container .submit {
+  text-align: right;
+}
+.login-pf-page .login-pf-brand {
+  margin-top: 20px;
+  max-width: 360px;
+  width: 70%;
+}
+@media (min-width: 768px) {
+  .login-pf-page .login-pf-brand {
+    margin-top: 62px;
+  }
+}
+.login-pf-page .login-pf-page-header {
+  margin-bottom: 20px;
+  text-align: center;
+}
+@media (min-width: 768px) {
+  .login-pf-page .login-pf-page-header {
+    margin-bottom: 40px;
+  }
+}
+.login-pf-page .login-pf-page-header p {
+  color: #fff;
+  font-size: 14px;
+  margin-left: auto;
+  margin-right: auto;
+  margin-top: 20px;
+}
+.login-pf-page .card-pf {
+  padding: 10px 20px 30px 20px;
+  margin-bottom: 0;
+}
+@media (min-width: 768px) {
+  .login-pf-page .card-pf {
+    padding: 20px 40px 30px 40px;
+  }
+}
+.login-pf-page .card-pf p {
+  color: #72767b;
+}
+.login-pf-page .form-control {
+  height: 36px;
+}
+.login-pf-page .checkbox-label {
+  color: #72767b;
+  font-weight: 300;
+  margin-bottom: 15px;
+}
+@media (min-width: 768px) {
+  .login-pf-page .checkbox-label {
+    margin: 0;
+  }
+}
+.login-pf-page .btn-primary {
+  margin-top: 40px;
+}
+.login-pf-page .login-pf-header {
+  margin-bottom: 20px;
+  display: flex;
+  flex-direction: column;
+}
+@media (min-width: 768px) {
+  .login-pf-page .login-pf-header {
+    margin-bottom: 30px;
+  }
+}
+.login-pf-page .login-pf-header h1,
+.login-pf-page .login-pf-header p {
+  text-align: center;
+}
+.login-pf-page .login-pf-header h1 {
+  font-size: 16px;
+}
+@media (min-width: 768px) {
+  .login-pf-page .login-pf-header h1 {
+    font-size: 24px;
+  }
+}
+.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
+  width: auto;
+  align-self: flex-end;
+}
+.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle {
+  color: #4d5258;
+  background: none;
+  padding: 0 15px 0 0;
+  font-weight: 300;
+}
+.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle:not(:focus) {
+  box-shadow: none;
+  border: 1px solid transparent;
+}
+.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle .caret {
+  right: 0;
+}
+.login-pf-page .login-pf-signup {
+  margin: 40px 0 0;
+  font-size: 15px;
+  text-align: center;
+}
+.login-pf-page .login-pf-signup a {
+  margin-left: 10px;
+}
+.login-pf-page .login-pf-settings {
+  display: flex;
+  justify-content: space-between;
+  flex-wrap: wrap;
+}
+.login-pf-page .login-pf-page-footer {
+  display: flex;
+  justify-content: center;
+  flex-wrap: wrap;
+}
+.login-pf-page .login-pf-page-footer-links {
+  display: flex;
+  margin: 60px 0 0 0;
+}
+.login-pf-page .login-pf-page-footer-links li:not(:last-of-type) {
+  position: relative;
+  margin: 0 20px 0 0;
+}
+.login-pf-page .login-pf-page-footer-links li:not(:last-of-type):after {
+  content: ".";
+  color: #fff;
+  position: absolute;
+  top: 0px;
+  right: -10px;
+}
+.login-pf-page .login-pf-page-footer-link {
+  color: #fff;
+  font-size: 14px;
+}
+.login-pf-page .login-pf-page-footer-sso-services {
+  flex: 1 0 100%;
+  margin-top: 40px;
+  text-align: center;
+  color: #fff;
+}
+.login-pf-page .login-pf-page-footer-sso-services-logos {
+  display: flex;
+  flex-wrap: wrap;
+  padding: 0;
+  margin: 0;
+  list-style: none;
+  justify-content: center;
+}
+.login-pf-page .login-pf-page-footer-sso-services-logos li {
+  margin: 0 5px 5px;
+}
+.login-pf-page.login-pf-page-accounts {
+  margin-left: 20px;
+  margin-right: 20px;
+}
+.login-pf-page .login-pf-accounts {
+  display: flex;
+  justify-content: space-between;
+  flex-wrap: wrap;
+  max-width: 840px;
+  margin-left: auto;
+  margin-right: auto;
+}
+.login-pf-page .login-pf-accounts .login-pf-header,
+.login-pf-page .login-pf-accounts .login-pf-signup {
+  flex-basis: 100%;
+}
+.login-pf-page .login-pf-social-section {
+  flex-basis: 100%;
+  padding: 0;
+}
+@media (min-width: 768px) {
+  .login-pf-page .login-pf-social-section {
+    flex: 0 1 50%;
+    max-width: 50%;
+  }
+}
+@media (min-width: 768px) {
+  .login-pf-page .login-pf-social-section:first-of-type {
+    padding-right: 40px;
+  }
+  .login-pf-page .login-pf-social-section:last-of-type {
+    padding-left: 39px;
+    border-left: 1px solid #d1d1d1;
+  }
+}
+.login-pf-page .login-pf-social {
+  margin: 40px 0 0 0;
+}
+@media (min-width: 768px) {
+  .login-pf-page .login-pf-social {
+    margin: 0;
+  }
+  .login-pf-page .login-pf-social-double-col {
+    flex-wrap: wrap;
+    display: flex;
+    justify-content: space-between;
+  }
+  .login-pf-page .login-pf-social-double-col .login-pf-social-link {
+    flex-basis: 48%;
+  }
+}
+.login-pf-page .login-pf-social:not(.login-pf-social-all) .login-pf-social-link-more {
+  display: none;
+}
+.login-pf-page .login-pf-social-link {
+  margin-bottom: 15px;
+}
+.login-pf-page .login-pf-social-link a {
+  display: block;
+  padding: 7px 0;
+  font-size: 14px;
+  background: #f5f5f5;
+  text-align: center;
+  color: #72767b;
+}
+.login-pf-page .login-pf-social-link a img {
+  margin: 0 10px 0 0;
+  width: 20px;
+  height: 20px;
+}
+.login-pf-page .login-pf-social-link a:hover {
+  text-decoration: none;
+  background: #ededed;
+}
+.login-pf-page .login-pf-social-toggle {
+  float: right;
+  padding: 0;
+}
+.login-pf-page .login-pf-social-toggle .caret {
+  margin-left: 5px;
+}
+.login-pf-page .login-pf-social-toggle-active .caret {
+  transform: rotate(-180deg);
+}
+.navbar-pf {
+  background: #393F45;
+  border: 0;
+  border-radius: 0;
+  border-top: 3px solid #cc0000;
+  margin-bottom: 0;
+  min-height: 0;
+}
+.navbar-pf .navbar-brand {
+  color: #fff;
+  height: auto;
+  padding: 12px 0;
+  margin: 0 0 0 20px;
+}
+.navbar-pf .navbar-brand img {
+  display: block;
+}
+.navbar-pf .navbar-collapse {
+  border-top: 0;
+  -webkit-box-shadow: none;
+  box-shadow: none;
+  padding: 0;
+}
+.navbar-pf .navbar-header {
+  border-bottom: 1px solid #53565b;
+  float: none;
+}
+.navbar-pf .navbar-nav {
+  margin: 0;
+}
+.navbar-pf .navbar-nav > .active > a,
+.navbar-pf .navbar-nav > .active > a:hover,
+.navbar-pf .navbar-nav > .active > a:focus {
+  background-color: #454C53;
+  color: #fff;
+}
+.navbar-pf .navbar-nav > li > a {
+  color: #dbdada;
+  line-height: 1;
+  padding: 10px 20px;
+  text-shadow: none;
+}
+.navbar-pf .navbar-nav > li > a:hover,
+.navbar-pf .navbar-nav > li > a:focus {
+  color: #fff;
+}
+.navbar-pf .navbar-nav > .open > a,
+.navbar-pf .navbar-nav > .open > a:hover,
+.navbar-pf .navbar-nav > .open > a:focus {
+  background-color: #454C53;
+  color: #fff;
+}
+.navbar-pf .navbar-nav .badge {
+  background-color: #0088ce;
+  border-radius: 20px;
+  color: #fff;
+  cursor: pointer;
+  font-size: 9px;
+  font-weight: 700;
+  left: 26px;
+  margin: 0;
+  padding: 2px 4px;
+  position: absolute;
+  min-width: 10px;
+  min-height: 10px;
+  top: 6px;
+}
+@media (min-width: 768px) {
+  .navbar-pf .navbar-nav .badge {
+    left: auto;
+    right: 6px;
+    top: 3px;
+  }
+}
+.navbar-pf .navbar-nav .badge.badge-pf-bordered {
+  border: 1px solid #393F45;
+}
+@media (max-width: 767px) {
+  .navbar-pf .navbar-nav .active .dropdown-menu,
+  .navbar-pf .navbar-nav .active .navbar-persistent,
+  .navbar-pf .navbar-nav .open .dropdown-menu {
+    background-color: #3c434a !important;
+    margin-left: 0;
+    padding-bottom: 0;
+    padding-top: 0;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu > .active > a,
+  .navbar-pf .navbar-nav .active .navbar-persistent > .active > a,
+  .navbar-pf .navbar-nav .open .dropdown-menu > .active > a,
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open > a,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open > a,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open > a,
+  .navbar-pf .navbar-nav .active .dropdown-menu > .active > a:hover,
+  .navbar-pf .navbar-nav .active .navbar-persistent > .active > a:hover,
+  .navbar-pf .navbar-nav .open .dropdown-menu > .active > a:hover,
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open > a:hover,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open > a:hover,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open > a:hover,
+  .navbar-pf .navbar-nav .active .dropdown-menu > .active > a:focus,
+  .navbar-pf .navbar-nav .active .navbar-persistent > .active > a:focus,
+  .navbar-pf .navbar-nav .open .dropdown-menu > .active > a:focus,
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open > a:focus,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open > a:focus,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open > a:focus {
+    background-color: #424950 !important;
+    color: #fff;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu > li > a,
+  .navbar-pf .navbar-nav .active .navbar-persistent > li > a,
+  .navbar-pf .navbar-nav .open .dropdown-menu > li > a {
+    background-color: transparent;
+    border: 0;
+    color: #dbdada;
+    outline: none;
+    padding-left: 30px;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu > li > a:hover,
+  .navbar-pf .navbar-nav .active .navbar-persistent > li > a:hover,
+  .navbar-pf .navbar-nav .open .dropdown-menu > li > a:hover {
+    color: #fff;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .divider,
+  .navbar-pf .navbar-nav .active .navbar-persistent .divider,
+  .navbar-pf .navbar-nav .open .dropdown-menu .divider {
+    background-color: #53565b;
+    margin: 0 1px;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-header,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-header,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-header {
+    padding-bottom: 0;
+    padding-left: 30px;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open .dropdown-toggle,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-toggle,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open .dropdown-toggle {
+    color: #fff;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.pull-left,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.pull-left,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.pull-left {
+    float: none !important;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu > a:after,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu > a:after,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu > a:after {
+    display: none;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-header,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-header,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-header {
+    padding-left: 45px;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu {
+    border: 0;
+    bottom: auto;
+    -webkit-box-shadow: none;
+    box-shadow: none;
+    display: block;
+    float: none;
+    margin: 0;
+    min-width: 0;
+    padding: 0;
+    position: relative;
+    left: auto;
+    right: auto;
+    top: auto;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu > li > a,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu > li > a,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu > li > a {
+    padding: 5px 15px 5px 45px;
+    line-height: 20px;
+  }
+  .navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu > li > a,
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu .dropdown-menu > li > a,
+  .navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu > li > a {
+    padding-left: 60px;
+  }
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-menu {
+    display: block;
+  }
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu > a:after {
+    display: inline-block !important;
+    position: relative;
+    right: auto;
+    top: 1px;
+  }
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu {
+    display: none;
+  }
+  .navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-submenu > a:after {
+    display: none !important;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu {
+    background-color: #fff !important;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .active > a,
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .active > a:active {
+    background-color: #def3ff !important;
+    border-color: #bee1f4 !important;
+    color: #363636 !important;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .active > a small,
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .active > a:active small {
+    color: #9c9c9c !important;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .disabled > a {
+    color: #9c9c9c !important;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .selected > a,
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .selected > a:active {
+    background-color: #0088ce !important;
+    border-color: #0088ce !important;
+    color: #fff !important;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .selected > a small,
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu > .selected > a:active small {
+    color: rgba(255, 255, 255, 0.5) !important;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu li > a.opt {
+    border-bottom: 1px solid transparent;
+    border-top: 1px solid transparent;
+    color: #363636;
+    padding-left: 10px;
+    padding-right: 10px;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu li a:active small {
+    color: rgba(255, 255, 255, 0.5) !important;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu li a:hover small,
+  .navbar-pf .navbar-nav .context-bootstrap-select .open > .dropdown-menu li a:focus small {
+    color: #9c9c9c;
+  }
+  .navbar-pf .navbar-nav .context-bootstrap-select > .open > .dropdown-menu {
+    padding-bottom: 5px;
+    padding-top: 5px;
+  }
+}
+.navbar-pf .navbar-persistent {
+  display: none;
+}
+.navbar-pf .active > .navbar-persistent {
+  display: block;
+}
+.navbar-pf .navbar-primary {
+  float: none;
+}
+.navbar-pf .navbar-primary .context {
+  border-bottom: 1px solid #53565b;
+}
+.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group,
+.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group[class*="span"] {
+  margin: 8px 20px 9px;
+  width: auto;
+}
+.navbar-pf .navbar-primary > li > .navbar-persistent > .dropdown-submenu > a {
+  position: relative;
+}
+.navbar-pf .navbar-primary > li > .navbar-persistent > .dropdown-submenu > a:after {
+  content: "\f107";
+  display: inline-block;
+  font-family: "FontAwesome";
+  font-weight: normal;
+}
+@media (max-width: 767px) {
+  .navbar-pf .navbar-primary > li > .navbar-persistent > .dropdown-submenu > a:after {
+    height: 10px;
+    margin-left: 4px;
+    vertical-align: baseline;
+  }
+}
+.navbar-pf .navbar-toggle {
+  border: 0;
+  margin: 0;
+  padding: 10px 20px;
+}
+.navbar-pf .navbar-toggle:hover,
+.navbar-pf .navbar-toggle:focus {
+  background-color: transparent;
+  outline: none;
+}
+.navbar-pf .navbar-toggle:hover .icon-bar,
+.navbar-pf .navbar-toggle:focus .icon-bar {
+  -webkit-box-shadow: 0 0 3px #fff;
+  box-shadow: 0 0 3px #fff;
+}
+.navbar-pf .navbar-toggle .icon-bar {
+  background-color: #fff;
+}
+.navbar-pf .navbar-utility {
+  border-bottom: 1px solid #53565b;
+}
+.navbar-pf .navbar-utility li.dropdown > .dropdown-toggle {
+  padding-left: 36px;
+  position: relative;
+}
+.navbar-pf .navbar-utility li.dropdown > .dropdown-toggle .pficon-user {
+  left: 20px;
+  position: absolute;
+  top: 10px;
+}
+@media (max-width: 767px) {
+  .navbar-pf .navbar-utility > li + li {
+    border-top: 1px solid #53565b;
+  }
+}
+@media (min-width: 768px) {
+  .navbar-pf .navbar-brand {
+    padding: 7px 0 8px;
+  }
+  .navbar-pf .navbar-nav > li > a {
+    padding-bottom: 14px;
+    padding-top: 14px;
+  }
+  .navbar-pf .navbar-persistent {
+    font-size: 14px;
+  }
+  .navbar-pf .navbar-primary {
+    font-size: 14px;
+    background-image: -webkit-linear-gradient(top, #474c50 0%, #383f43 100%);
+    background-image: -o-linear-gradient(top, #474c50 0%, #383f43 100%);
+    background-image: linear-gradient(to bottom, #474c50 0%, #383f43 100%);
+    background-repeat: repeat-x;
+    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff474c50', endColorstr='#ff383f43', GradientType=0);
+  }
+  .navbar-pf .navbar-primary.persistent-secondary .context .dropdown-menu {
+    top: auto;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary .dropup .dropdown-menu {
+    bottom: -5px;
+    top: auto;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li {
+    position: static;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li.active {
+    margin-bottom: 32px;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li.active > .navbar-persistent {
+    display: block;
+    left: 0;
+    position: absolute;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent {
+    background: #f6f6f6;
+    border-bottom: 1px solid #cecdcd;
+    padding: 0;
+    width: 100%;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent a {
+    text-decoration: none !important;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active:before,
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active:hover:before {
+    background: #0088ce;
+    bottom: -1px;
+    content: "";
+    display: block;
+    height: 2px;
+    left: 20px;
+    position: absolute;
+    right: 20px;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active > a,
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active > a:hover,
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active:hover > a {
+    color: #0088ce !important;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.active .active > a {
+    color: #fff;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.dropdown-submenu:hover > .dropdown-menu {
+    display: none;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.dropdown-submenu.open > .dropdown-menu {
+    display: block;
+    left: 20px;
+    margin-top: 1px;
+    top: 100%;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.dropdown-submenu.open > .dropdown-toggle {
+    color: #252525;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.dropdown-submenu.open > .dropdown-toggle:after {
+    border-top-color: #252525;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.dropdown-submenu > .dropdown-toggle {
+    padding-right: 35px !important;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.dropdown-submenu > .dropdown-toggle:after {
+    position: absolute;
+    right: 20px;
+    top: 10px;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li:hover:before,
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.open:before {
+    background: #bbb;
+    bottom: -1px;
+    content: "";
+    display: block;
+    height: 2px;
+    left: 20px;
+    position: absolute;
+    right: 20px;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li:hover > a,
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.open > a {
+    color: #252525;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li:hover > a:after,
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li.open > a:after {
+    border-top-color: #252525;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li > a {
+    background-color: transparent;
+    display: block;
+    line-height: 1;
+    padding: 9px 20px;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li > a.dropdown-toggle {
+    padding-right: 35px;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li > a.dropdown-toggle:after {
+    font-size: 15px;
+    position: absolute;
+    right: 20px;
+    top: 9px;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li > a:hover {
+    color: #252525;
+  }
+  .navbar-pf .navbar-primary.persistent-secondary > li > .navbar-persistent > li a {
+    color: #4d5258;
+  }
+  .navbar-pf .navbar-primary > li > a {
+    border-bottom: 1px solid transparent;
+    border-top: 1px solid transparent;
+    position: relative;
+    margin: -1px 0 0;
+  }
+  .navbar-pf .navbar-primary > li > a:hover {
+    background-color: #4b5053;
+    border-top-color: #949699;
+    color: #dbdada;
+    background-image: -webkit-linear-gradient(top, #5c6165 0%, #4b5053 100%);
+    background-image: -o-linear-gradient(top, #5c6165 0%, #4b5053 100%);
+    background-image: linear-gradient(to bottom, #5c6165 0%, #4b5053 100%);
+    background-repeat: repeat-x;
+    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5c6165', endColorstr='#ff4b5053', GradientType=0);
+  }
+  .navbar-pf .navbar-primary > .active > a,
+  .navbar-pf .navbar-primary > .active > a:hover,
+  .navbar-pf .navbar-primary > .active > a:focus,
+  .navbar-pf .navbar-primary > .open > a,
+  .navbar-pf .navbar-primary > .open > a:hover,
+  .navbar-pf .navbar-primary > .open > a:focus {
+    background-color: #64686c;
+    border-bottom-color: #64686c;
+    border-top-color: #949699;
+    -webkit-box-shadow: none;
+    box-shadow: none;
+    color: #fff;
+    background-image: -webkit-linear-gradient(top, #72757a 0%, #64686c 100%);
+    background-image: -o-linear-gradient(top, #72757a 0%, #64686c 100%);
+    background-image: linear-gradient(to bottom, #72757a 0%, #64686c 100%);
+    background-repeat: repeat-x;
+    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff72757a', endColorstr='#ff64686c', GradientType=0);
+  }
+  .navbar-pf .navbar-primary li.context.context-bootstrap-select .filter-option {
+    max-width: 160px;
+    text-overflow: ellipsis;
+  }
+  .navbar-pf .navbar-primary li.context.dropdown {
+    border-bottom: 0;
+  }
+  .navbar-pf .navbar-primary li.context > a,
+  .navbar-pf .navbar-primary li.context.context-bootstrap-select {
+    background-color: #505458;
+    border-bottom-color: #65696d;
+    border-right: 1px solid #65696d;
+    border-top-color: #64696d;
+    font-weight: 600;
+    background-image: -webkit-linear-gradient(top, #585d61 0%, #505458 100%);
+    background-image: -o-linear-gradient(top, #585d61 0%, #505458 100%);
+    background-image: linear-gradient(to bottom, #585d61 0%, #505458 100%);
+    background-repeat: repeat-x;
+    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff585d61', endColorstr='#ff505458', GradientType=0);
+  }
+  .navbar-pf .navbar-primary li.context > a:hover,
+  .navbar-pf .navbar-primary li.context.context-bootstrap-select:hover {
+    background-color: #5a5e62;
+    border-bottom-color: #6e7276;
+    border-right-color: #6e7276;
+    border-top-color: #6c7276;
+    background-image: -webkit-linear-gradient(top, #62676b 0%, #5a5e62 100%);
+    background-image: -o-linear-gradient(top, #62676b 0%, #5a5e62 100%);
+    background-image: linear-gradient(to bottom, #62676b 0%, #5a5e62 100%);
+    background-repeat: repeat-x;
+    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62676b', endColorstr='#ff5a5e62', GradientType=0);
+  }
+  .navbar-pf .navbar-primary li.context.open > a {
+    background-color: #65696d;
+    border-bottom-color: #6e7276;
+    border-right-color: #777a7e;
+    border-top-color: #767a7e;
+    background-image: -webkit-linear-gradient(top, #6b7175 0%, #65696d 100%);
+    background-image: -o-linear-gradient(top, #6b7175 0%, #65696d 100%);
+    background-image: linear-gradient(to bottom, #6b7175 0%, #65696d 100%);
+    background-repeat: repeat-x;
+    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6b7175', endColorstr='#ff65696d', GradientType=0);
+  }
+  .navbar-pf .navbar-utility {
+    border-bottom: 0;
+    font-size: 11px;
+    position: absolute;
+    right: 0;
+    top: 0;
+  }
+  .navbar-pf .navbar-utility > .active > a,
+  .navbar-pf .navbar-utility > .active > a:hover,
+  .navbar-pf .navbar-utility > .active > a:focus,
+  .navbar-pf .navbar-utility > .open > a,
+  .navbar-pf .navbar-utility > .open > a:hover,
+  .navbar-pf .navbar-utility > .open > a:focus {
+    background: #5b6165;
+    color: #fff;
+  }
+  .navbar-pf .navbar-utility > li > a {
+    border-left: 1px solid #53565b;
+    color: #fff !important;
+    padding: 7px 10px;
+  }
+  .navbar-pf .navbar-utility > li > a:hover {
+    background: #4a5053;
+    border-left-color: #636466;
+  }
+  .navbar-pf .navbar-utility > li.open > a {
+    border-left-color: #6c6e70;
+    color: #fff !important;
+  }
+  .navbar-pf .navbar-utility li.dropdown > .dropdown-toggle {
+    padding-left: 26px;
+  }
+  .navbar-pf .navbar-utility li.dropdown > .dropdown-toggle .pficon-user {
+    left: 10px;
+    top: 7px;
+  }
+  .navbar-pf .navbar-utility .open .dropdown-menu {
+    left: auto;
+    right: 0;
+  }
+  .navbar-pf .navbar-utility .open .dropdown-menu .dropdown-menu {
+    left: auto;
+    right: 100%;
+  }
+  .navbar-pf .navbar-utility .open .dropdown-menu {
+    border-top-width: 0;
+  }
+  .navbar-pf .open.bootstrap-select .dropdown-menu,
+  .navbar-pf .open .dropdown-submenu > .dropdown-menu {
+    border-top-width: 1px !important;
+  }
+}
+@media (max-width: 360px) {
+  .navbar-pf .navbar-brand {
+    margin-left: 10px;
+    width: 75%;
+  }
+  .navbar-pf .navbar-brand img {
+    height: auto;
+    max-width: 100%;
+  }
+  .navbar-pf .navbar-toggle {
+    padding-left: 0;
+  }
+}
+.navbar-pf-alt {
+  background-color: #030303;
+  background-image: "bg-navbar-pf-alt.svg";
+  background-repeat: no-repeat;
+  background-size: auto 100%;
+  border: none;
+  border-radius: 0;
+  border-top: 0 solid #cc0000;
+  margin-bottom: 0;
+}
+.navbar-pf-alt .infotip.bottom-right .arrow {
+  left: 90%;
+}
+.layout-pf-alt-fixed .navbar-pf-alt {
+  left: 0;
+  position: fixed;
+  right: 0;
+  top: 0;
+  z-index: 1030;
+}
+.navbar-pf-alt .nav.navbar-nav > li > .dropdown-menu.infotip {
+  margin-top: 0;
+}
+.navbar-pf-alt .nav .nav-item-iconic {
+  cursor: pointer;
+  line-height: 1;
+  max-height: 60px;
+  padding: 22px 12px;
+  position: relative;
+}
+.navbar-pf-alt .nav .nav-item-iconic:hover,
+.navbar-pf-alt .nav .nav-item-iconic:focus {
+  background-color: transparent;
+}
+.navbar-pf-alt .nav .nav-item-iconic:hover .caret,
+.navbar-pf-alt .nav .nav-item-iconic:focus .caret,
+.navbar-pf-alt .nav .nav-item-iconic:hover .fa,
+.navbar-pf-alt .nav .nav-item-iconic:focus .fa,
+.navbar-pf-alt .nav .nav-item-iconic:hover .glyphicon,
+.navbar-pf-alt .nav .nav-item-iconic:focus .glyphicon,
+.navbar-pf-alt .nav .nav-item-iconic:hover .pficon,
+.navbar-pf-alt .nav .nav-item-iconic:focus .pficon {
+  color: #fff;
+}
+.navbar-pf-alt .nav .nav-item-iconic .badge {
+  background-color: #0088ce;
+  border-radius: 20px;
+  color: #fff;
+  cursor: pointer;
+  font-size: 9px;
+  font-weight: 700;
+  margin: 0 0 -11px -12px;
+  min-width: 0;
+  padding: 2px 4px;
+}
+.navbar-pf-alt .nav .nav-item-iconic .caret,
+.navbar-pf-alt .nav .nav-item-iconic .fa,
+.navbar-pf-alt .nav .nav-item-iconic .pficon {
+  color: #d1d1d1;
+  font-size: 16px;
+}
+.navbar-pf-alt .nav .nav-item-iconic .caret {
+  font-size: 12px;
+  width: auto;
+}
+.navbar-pf-alt .nav .open > .nav-item-iconic,
+.navbar-pf-alt .nav .open > .nav-item-iconic:hover,
+.navbar-pf-alt .nav .open > .nav-item-iconic:focus {
+  background: transparent;
+}
+.navbar-pf-alt .nav .open > .nav-item-iconic .caret,
+.navbar-pf-alt .nav .open > .nav-item-iconic:hover .caret,
+.navbar-pf-alt .nav .open > .nav-item-iconic:focus .caret,
+.navbar-pf-alt .nav .open > .nav-item-iconic .fa,
+.navbar-pf-alt .nav .open > .nav-item-iconic:hover .fa,
+.navbar-pf-alt .nav .open > .nav-item-iconic:focus .fa,
+.navbar-pf-alt .nav .open > .nav-item-iconic .pficon,
+.navbar-pf-alt .nav .open > .nav-item-iconic:hover .pficon,
+.navbar-pf-alt .nav .open > .nav-item-iconic:focus .pficon {
+  color: #fff;
+}
+.navbar-pf-alt .navbar-brand {
+  color: #fff;
+  height: auto;
+  margin: 0 0 0 25px;
+  min-height: 35px;
+  padding: 18px 0 22px;
+}
+.navbar-pf-alt .navbar-brand .navbar-brand-name {
+  display: inline;
+  margin-left: 0 15px 0 0;
+  margin-right: 0 15px 0 0;
+}
+@media (max-width: 355px) {
+  .navbar-pf-alt .navbar-brand .navbar-brand-name {
+    display: none;
+  }
+}
+.navbar-pf-alt .navbar-brand .navbar-brand-icon {
+  display: inline;
+  margin-left: 0 15px 0 0;
+  margin-right: 0 15px 0 0;
+}
+.navbar-pf-alt .navbar-iconic {
+  margin-right: 0;
+}
+.navbar-pf-alt .navbar-toggle {
+  border: 0;
+  display: block;
+  float: left;
+  margin: 14px 15px;
+}
+.navbar-pf-alt .navbar-toggle:hover .icon-bar,
+.navbar-pf-alt .navbar-toggle:focus .icon-bar {
+  background: #fff;
+}
+.navbar-pf-alt .navbar-toggle + .navbar-brand {
+  margin-left: 0;
+}
+.navbar-pf-alt .navbar-toggle .icon-bar {
+  background: #d1d1d1;
+}
+.navbar-pf-vertical {
+  background-color: #1d1d1d;
+  border: none;
+  border-radius: 0;
+  border-top: 2px solid #cc0000;
+  margin-bottom: 0;
+}
+.navbar-pf-vertical .infotip.bottom-right .arrow {
+  left: 90%;
+}
+.layout-pf-fixed .navbar-pf-vertical {
+  left: 0;
+  position: fixed;
+  right: 0;
+  top: 0;
+  z-index: 1030;
+}
+.navbar-pf-vertical .nav.navbar-nav > li > .dropdown-menu.infotip {
+  margin-top: 0;
+}
+.navbar-pf-vertical .nav .nav-item-iconic {
+  color: #d1d1d1;
+  cursor: pointer;
+  line-height: 1;
+  max-height: 58px;
+  padding: 21px 12px;
+  position: relative;
+}
+.navbar-pf-vertical .nav .nav-item-iconic:hover,
+.navbar-pf-vertical .nav .nav-item-iconic:focus {
+  color: #fff;
+  background-color: transparent;
+}
+.navbar-pf-vertical .nav .nav-item-iconic:hover .caret,
+.navbar-pf-vertical .nav .nav-item-iconic:focus .caret,
+.navbar-pf-vertical .nav .nav-item-iconic:hover .fa,
+.navbar-pf-vertical .nav .nav-item-iconic:focus .fa,
+.navbar-pf-vertical .nav .nav-item-iconic:hover .glyphicon,
+.navbar-pf-vertical .nav .nav-item-iconic:focus .glyphicon,
+.navbar-pf-vertical .nav .nav-item-iconic:hover .pficon,
+.navbar-pf-vertical .nav .nav-item-iconic:focus .pficon {
+  color: #fff;
+}
+.navbar-pf-vertical .nav .nav-item-iconic .badge {
+  background-color: #0088ce;
+  border-radius: 20px;
+  color: #fff;
+  cursor: pointer;
+  font-size: 9px;
+  font-weight: 700;
+  left: 20px;
+  margin: 0;
+  padding: 2px 4px;
+  position: absolute;
+  min-width: 10px;
+  min-height: 10px;
+  top: 18px;
+}
+.navbar-pf-vertical .nav .nav-item-iconic .badge.badge-pf-bordered {
+  border: 1px solid #1d1d1d;
+}
+.navbar-pf-vertical .nav .nav-item-iconic .caret,
+.navbar-pf-vertical .nav .nav-item-iconic .fa,
+.navbar-pf-vertical .nav .nav-item-iconic .pficon {
+  color: #d1d1d1;
+  font-size: 16px;
+}
+.navbar-pf-vertical .nav .nav-item-iconic .caret {
+  font-size: 12px;
+  width: auto;
+}
+.navbar-pf-vertical .nav .open > .nav-item-iconic,
+.navbar-pf-vertical .nav .open > .nav-item-iconic:hover,
+.navbar-pf-vertical .nav .open > .nav-item-iconic:focus {
+  background: transparent;
+}
+.navbar-pf-vertical .nav .open > .nav-item-iconic .caret,
+.navbar-pf-vertical .nav .open > .nav-item-iconic:hover .caret,
+.navbar-pf-vertical .nav .open > .nav-item-iconic:focus .caret,
+.navbar-pf-vertical .nav .open > .nav-item-iconic .fa,
+.navbar-pf-vertical .nav .open > .nav-item-iconic:hover .fa,
+.navbar-pf-vertical .nav .open > .nav-item-iconic:focus .fa,
+.navbar-pf-vertical .nav .open > .nav-item-iconic .pficon,
+.navbar-pf-vertical .nav .open > .nav-item-iconic:hover .pficon,
+.navbar-pf-vertical .nav .open > .nav-item-iconic:focus .pficon {
+  color: #fff;
+}
+.navbar-pf-vertical .navbar-brand {
+  color: #fff;
+  height: auto;
+  margin: 0 0 0 25px;
+  min-height: 35px;
+  padding: 11px 0 12px;
+}
+.navbar-pf-vertical .navbar-brand .navbar-brand-name {
+  display: inline-block;
+  margin: 0 15px 0 0;
+}
+@media (max-width: 480px) {
+  .navbar-pf-vertical .navbar-brand .navbar-brand-name {
+    display: none;
+  }
+}
+.navbar-pf-vertical .navbar-brand .navbar-brand-icon {
+  display: inline-block;
+  margin: 0 15px 0 0;
+  max-height: 35px;
+}
+.navbar-pf-vertical .navbar-brand .navbar-brand-txt {
+  line-height: 34px;
+}
+.navbar-pf-vertical .navbar-iconic {
+  margin-right: 0;
+}
+.navbar-pf-vertical .navbar-toggle {
+  border: 0;
+  display: block;
+  float: left;
+  margin: 13px 15px;
+}
+.navbar-pf-vertical .navbar-toggle:hover .icon-bar,
+.navbar-pf-vertical .navbar-toggle:focus .icon-bar {
+  background: #fff;
+}
+.navbar-pf-vertical .navbar-toggle + .navbar-brand {
+  margin-left: 0;
+}
+.navbar-pf-vertical .navbar-toggle .icon-bar {
+  background: #d1d1d1;
+}
+.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt {
+  transition: all 200ms cubic-bezier(0.35, 0, 0.25, 1);
+}
+.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value {
+  transition: opacity 0ms 100ms, opacity 100ms linear;
+}
+.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .badge {
+  transition: all 200ms cubic-bezier(0.35, 0, 0.25, 1);
+}
+.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .list-group-item-value {
+  transition: opacity 500ms ease-out;
+  transition-delay: 150ms;
+}
+.nav-pf-vertical-alt {
+  background: #fff;
+}
+.ie9.layout-pf-alt-fixed .nav-pf-vertical-alt {
+  box-sizing: content-box;
+}
+.layout-pf-alt-fixed .nav-pf-vertical-alt {
+  border-right: 1px solid #d1d1d1;
+  bottom: 0;
+  overflow-x: hidden;
+  overflow-y: auto;
+  left: 0;
+  position: fixed;
+  top: 60px;
+  width: 250px;
+  z-index: 1030;
+}
+.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed {
+  width: 75px !important;
+}
+.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .badge {
+  padding: 2px 3px;
+  right: 21px;
+  top: 36px;
+}
+.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value {
+  opacity: 0;
+}
+.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden {
+  display: none;
+}
+.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden.show-mobile-nav {
+  box-shadow: 0 0 3px rgba(3, 3, 3, 0.15);
+  display: block !important;
+}
+.layout-pf-alt-fixed-with-footer .nav-pf-vertical-alt {
+  bottom: 37px;
+}
+.nav-pf-vertical-alt .list-group {
+  border-top: 0;
+  margin-bottom: 0;
+}
+.nav-pf-vertical-alt .list-group-item {
+  padding: 0;
+}
+.nav-pf-vertical-alt .list-group-item a {
+  color: #363636;
+  display: block;
+  font-size: 14px;
+  height: 63px;
+  padding: 17px 20px 17px 25px;
+  position: relative;
+  white-space: nowrap;
+}
+.nav-pf-vertical-alt .list-group-item a:focus {
+  color: #363636;
+  text-decoration: none;
+}
+.nav-pf-vertical-alt .list-group-item a:hover {
+  color: #39a5dc;
+  text-decoration: none;
+}
+.nav-pf-vertical-alt .list-group-item.active {
+  background-color: #fff;
+  border-color: #f5f5f5;
+}
+.nav-pf-vertical-alt .list-group-item.active:before {
+  background: #39a5dc;
+  content: " ";
+  display: block;
+  height: 100%;
+  left: 0;
+  position: absolute;
+  top: 0;
+  width: 5px;
+}
+.nav-pf-vertical-alt .list-group-item.active a {
+  color: #39a5dc;
+}
+.nav-pf-vertical-alt .list-group-item .badge {
+  background: #363636;
+  border: 1px solid #fff;
+  border-radius: 3px;
+  color: #fff;
+  font-weight: 700;
+  font-size: 9px;
+  padding: 5px;
+  position: absolute;
+  right: 15px;
+  text-align: center;
+  top: 21px;
+}
+.nav-pf-vertical-alt .list-group-item .badge.notifications {
+  background: #0088ce;
+}
+.nav-pf-vertical-alt .list-group-item .fa,
+.nav-pf-vertical-alt .list-group-item .glyphicon,
+.nav-pf-vertical-alt .list-group-item .pficon {
+  float: left;
+  font-size: 18px;
+  line-height: 30px;
+  margin-right: 10px;
+  text-align: center;
+  width: 18px;
+}
+.nav-pf-vertical-alt .list-group-item .list-group-item-value {
+  display: inline-block;
+  line-height: 30px;
+  opacity: 1;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  width: 140px;
+}
+.nav-pf-vertical-alt .list-group-item-separator {
+  border-top-width: 5px;
+}
+.sidebar-pf .nav-pf-vertical-alt {
+  margin-left: -20px;
+  margin-right: -20px;
+}
+.drawer-pf {
+  background-color: #fafafa;
+  border: 1px solid #d1d1d1;
+  -webkit-box-shadow: 0 6px 12px rgba(3, 3, 3, 0.175);
+  box-shadow: 0 6px 12px rgba(3, 3, 3, 0.175);
+  overflow-y: auto;
+  position: absolute;
+  right: 0;
+  width: 320px;
+  z-index: 2;
+}
+.drawer-pf .panel {
+  border-bottom: none;
+  border-left: none;
+  border-right: none;
+}
+.drawer-pf .panel-group .panel-heading + .panel-collapse .panel-body {
+  border-top: none;
+  border-bottom: 1px solid #d1d1d1;
+  padding: 0;
+}
+.drawer-pf .panel-counter {
+  display: block;
+  font-style: italic;
+  line-height: 1.2;
+  padding-left: 18px;
+  padding-top: 5px;
+}
+.drawer-pf .panel-heading {
+  border-bottom: 1px solid #d1d1d1;
+}
+.drawer-pf .panel-group {
+  bottom: 0;
+  margin-bottom: 0;
+  position: absolute;
+  top: 25px;
+  width: 100%;
+}
+.drawer-pf .panel-title a {
+  cursor: pointer;
+  display: block;
+}
+.drawer-pf.drawer-pf-expanded {
+  width: inherit;
+}
+@media (max-width: 767px) {
+  .drawer-pf.drawer-pf-expanded {
+    left: 0;
+    width: 100%;
+  }
+}
+@media (min-width: 767px) {
+  .drawer-pf.drawer-pf-expanded {
+    left: 270px;
+  }
+}
+.drawer-pf.drawer-pf-expanded .drawer-pf-toggle-expand:before {
+  content: "\f101";
+}
+.drawer-pf .blank-slate-pf {
+  border: 0;
+  margin-bottom: 0;
+  padding: 30px;
+}
+.drawer-pf .blank-slate-pf .blank-slate-pf-icon {
+  font-size: 3em;
+  line-height: 1em;
+}
+.drawer-pf .blank-slate-pf h1 {
+  font-size: 1em;
+  margin-bottom: 0;
+  margin-top: 15px;
+}
+.drawer-pf-close,
+.drawer-pf-toggle-expand {
+  color: #252525;
+  cursor: pointer;
+  line-height: inherit;
+  padding: 2px 10px;
+  position: absolute;
+}
+.drawer-pf-close:hover,
+.drawer-pf-toggle-expand:hover,
+.drawer-pf-close:focus,
+.drawer-pf-toggle-expand:focus {
+  color: #0088ce;
+  text-decoration: none;
+}
+.drawer-pf-toggle-expand {
+  left: 0;
+}
+.drawer-pf-toggle-expand:before {
+  content: "\f100";
+  font-family: "FontAwesome";
+}
+.drawer-pf-toggle-expand:hover {
+  color: #0088ce;
+}
+.drawer-pf-close {
+  right: 0;
+}
+.drawer-pf-action {
+  display: flex;
+  border-bottom: 1px solid #d1d1d1;
+}
+.drawer-pf-action .btn-link {
+  color: #0088ce;
+  padding: 10px 0;
+}
+.drawer-pf-action .btn-link .pficon,
+.drawer-pf-action .btn-link .fa {
+  margin-right: 3px;
+}
+.drawer-pf-action .btn-link .pficon-close {
+  position: relative;
+  top: 1px;
+}
+.drawer-pf-action .btn-link:hover {
+  color: #00659c;
+}
+.drawer-pf-action-link {
+  border-left: solid 1px #d1d1d1;
+  flex: 1 1 0%;
+  margin: 10px 0;
+  text-align: center;
+}
+.drawer-pf-action-link:first-of-type {
+  border-left-width: 0;
+}
+.drawer-pf-action-link .btn-link {
+  padding: 0;
+}
+.drawer-pf-loading {
+  color: #4d5258;
+  font-size: 14px;
+  padding: 20px 15px;
+}
+.drawer-pf-notification {
+  border-bottom: 1px solid #d1d1d1;
+  padding: 15px;
+}
+.drawer-pf-notification .date {
+  border-right: 1px solid #aaa;
+  display: inline-block;
+  line-height: 1;
+  margin-right: 5px;
+  padding-right: 9px;
+}
+.drawer-pf-notification > .dropdown-kebab-pf {
+  margin-top: -3px;
+}
+.drawer-pf-notification .pficon {
+  font-size: 14px;
+  margin-top: 3px;
+}
+.drawer-pf-notification:last-of-type {
+  border-bottom: none;
+}
+.drawer-pf-notification:hover {
+  background-color: #def3ff;
+}
+.drawer-pf-notification.unread .drawer-pf-notification-message {
+  font-weight: bold;
+  cursor: pointer;
+}
+.drawer-pf-notification.expanded-notification .date {
+  border-right: none;
+  padding-right: 0;
+}
+.drawer-pf-notification-content {
+  cursor: default;
+}
+.drawer-pf-notification-info,
+.drawer-pf-notification-message {
+  display: block;
+  padding-left: 27px;
+  padding-right: 19px;
+}
+.expanded-notification .drawer-pf-notification-info,
+.expanded-notification .drawer-pf-notification-message {
+  display: inline-block;
+}
+.drawer-pf-title {
+  background-color: #fafafa;
+  border-bottom: 1px solid #d1d1d1;
+  position: absolute;
+  width: 100%;
+}
+.drawer-pf-title h3 {
+  font-size: 12px;
+  margin: 0;
+  padding: 6px 15px;
+}
+.drawer-pf-notification.expanded-notification .drawer-pf-notification-content {
+  display: flex;
+}
+@media (max-width: 991px) {
+  .drawer-pf-notification.expanded-notification .drawer-pf-notification-content {
+    flex-direction: column;
+  }
+}
+.drawer-pf-notification.expanded-notification .drawer-pf-notification-content .drawer-pf-notification-message {
+  flex: 1 1;
+}
+/* Exclusive styles to work with Vertical Navigation */
+.navbar-pf-vertical .drawer-pf {
+  height: calc(100vh - 58px - 20px);
+  top: 58px;
+}
+@media (max-width: 767px) {
+  .navbar-pf-vertical .drawer-pf {
+    width: 100%;
+    height: calc(100vh - 58px);
+  }
+}
+.navbar-pf-vertical .nav .drawer-pf-trigger .drawer-pf-trigger-icon {
+  border-left: 1px solid #53565b;
+  border-right: 1px solid #53565b;
+  padding-left: 15px;
+  padding-right: 15px;
+}
+.navbar-pf-vertical .nav .drawer-pf-trigger.open .drawer-pf-trigger-icon {
+  background-color: #4a5053;
+}
+/* Exclusive styles to work with Horizontal Navigation */
+.navbar-pf .drawer-pf {
+  height: calc(100vh - 26px - 20px);
+  top: 26px;
+}
+@media (max-width: 767px) {
+  .navbar-pf .drawer-pf {
+    width: 100%;
+    height: calc(100vh - 26px - 32px);
+    top: calc(26px + 8px);
+  }
+}
+.navbar-pf .drawer-pf-trigger-icon {
+  cursor: pointer;
+}
+.search-pf.has-button {
+  border-collapse: separate;
+  display: table;
+}
+.search-pf.has-button .form-group {
+  display: table-cell;
+  width: 100%;
+}
+.search-pf.has-button .form-group .btn {
+  -webkit-box-shadow: none;
+  box-shadow: none;
+  float: left;
+  margin-left: -1px;
+}
+.search-pf.has-button .form-group .btn.btn-lg {
+  font-size: 14.5px;
+}
+.search-pf.has-button .form-group .btn.btn-sm {
+  font-size: 10.7px;
+}
+.search-pf.has-button .form-group .form-control {
+  float: left;
+}
+.search-pf .has-clear .clear {
+  background: rgba(255, 255, 255, 0);
+  border: 0;
+  height: 25px;
+  line-height: 1;
+  padding: 0;
+  position: absolute;
+  right: 1px;
+  top: 1px;
+  width: 28px;
+}
+.search-pf .has-clear .clear:focus {
+  outline: none;
+}
+.search-pf .has-clear .form-control {
+  padding-right: 30px;
+}
+.search-pf .has-clear .form-control::-ms-clear {
+  display: none;
+}
+.search-pf .has-clear .input-lg + .clear {
+  height: 31px;
+  width: 28px;
+}
+.search-pf .has-clear .input-sm + .clear {
+  height: 20px;
+  width: 28px;
+}
+.search-pf .has-clear .input-sm + .clear span {
+  font-size: 10px;
+}
+.search-pf .has-clear .search-pf-input-group {
+  position: relative;
+}
+.sidebar-header {
+  border-bottom: 1px solid #ececec;
+  padding-bottom: 11px;
+  margin: 50px 0 20px;
+}
+.sidebar-header .actions {
+  margin-top: -2px;
+}
+.sidebar-pf .sidebar-header + .list-group {
+  border-top: 0;
+  margin-top: -10px;
+}
+.sidebar-pf .sidebar-header + .list-group .list-group-item {
+  background: transparent;
+  border-color: #ececec;
+  padding-left: 0;
+}
+.sidebar-pf .sidebar-header + .list-group .list-group-item-heading {
+  font-size: 12px;
+}
+.sidebar-pf .nav-category h2 {
+  color: #9c9c9c;
+  font-size: 12px;
+  font-weight: 400;
+  line-height: 21px;
+  margin: 0;
+  padding: 8px 0;
+}
+.sidebar-pf .nav-category + .nav-category {
+  margin-top: 10px;
+}
+.sidebar-pf .nav-pills > li.active > a {
+  background: #0088ce !important;
+  border-color: #0088ce !important;
+  color: #fff;
+}
+@media (min-width: 768px) {
+  .sidebar-pf .nav-pills > li.active > a:after {
+    content: "\f105";
+    font-family: "FontAwesome";
+    display: block;
+    position: absolute;
+    right: 10px;
+    top: 1px;
+  }
+}
+.sidebar-pf .nav-pills > li.active > a .fa {
+  color: #fff;
+}
+.sidebar-pf .nav-pills > li > a {
+  border-bottom: 1px solid transparent;
+  border-radius: 0;
+  border-top: 1px solid transparent;
+  color: #363636;
+  font-size: 13px;
+  line-height: 21px;
+  padding: 1px 20px;
+}
+.sidebar-pf .nav-pills > li > a:hover {
+  background: #def3ff;
+  border-color: #bee1f4;
+}
+.sidebar-pf .nav-pills > li > a .fa {
+  color: #6a7079;
+  font-size: 15px;
+  margin-right: 10px;
+  text-align: center;
+  vertical-align: middle;
+  width: 15px;
+}
+.sidebar-pf .nav-stacked {
+  margin-left: -20px;
+  margin-right: -20px;
+}
+.sidebar-pf .nav-stacked li + li {
+  margin-top: 0;
+}
+.sidebar-pf .panel {
+  background: transparent;
+}
+.sidebar-pf .panel-body {
+  padding: 6px 20px;
+}
+.sidebar-pf .panel-body .nav-pills > li > a {
+  padding-left: 37px;
+}
+.sidebar-pf .panel-heading {
+  padding: 9px 20px;
+}
+.sidebar-pf .panel-title {
+  font-size: 12px;
+}
+.sidebar-pf .panel-title > a:before {
+  display: inline-block;
+  margin-left: 1px;
+  margin-right: 4px;
+  width: 9px;
+}
+.sidebar-pf .panel-title > a.collapsed:before {
+  margin-left: 3px;
+  margin-right: 2px;
+}
+@media (min-width: 767px) {
+  .sidebar-header-bleed-left {
+    margin-left: -20px;
+  }
+  .sidebar-header-bleed-left > h2 {
+    margin-left: 20px;
+  }
+  .sidebar-header-bleed-right {
+    margin-right: -20px;
+  }
+  .sidebar-header-bleed-right .actions {
+    margin-right: 20px;
+  }
+  .sidebar-header-bleed-right > h2 {
+    margin-right: 20px;
+  }
+  .sidebar-header-bleed-right + .list-group {
+    margin-right: -20px;
+  }
+  .sidebar-pf .panel-group .panel-default,
+  .sidebar-pf .treeview {
+    border-left: 0;
+    border-right: 0;
+    margin-left: -20px;
+    margin-right: -20px;
+  }
+  .sidebar-pf .treeview {
+    margin-top: 5px;
+  }
+  .sidebar-pf .treeview .list-group-item {
+    padding-left: 20px;
+    padding-right: 20px;
+  }
+  .sidebar-pf .treeview .list-group-item.node-selected:after {
+    content: "\f105";
+    font-family: "FontAwesome";
+    display: block;
+    position: absolute;
+    right: 10px;
+    top: 1px;
+  }
+}
+@media (min-width: 768px) {
+  .sidebar-pf {
+    background: #fafafa;
+  }
+  .sidebar-pf.sidebar-pf-left {
+    border-right: 1px solid #d1d1d1;
+  }
+  .sidebar-pf.sidebar-pf-right {
+    border-left: 1px solid #d1d1d1;
+  }
+  .sidebar-pf > .nav-category,
+  .sidebar-pf > .nav-stacked {
+    margin-top: 5px;
+  }
+}
+.skiplink-pf {
+  position: absolute;
+  top: 12px;
+  left: -300%;
+  /* moves off screen */
+  z-index: 1050;
+}
+.skiplink-pf:focus {
+  left: 10px;
+}
+@keyframes rotation {
+  from {
+    transform: rotate(0deg);
+  }
+  to {
+    transform: rotate(359deg);
+  }
+}
+.spinner {
+  animation: rotation 600ms infinite linear;
+  border-bottom: 4px solid rgba(3, 3, 3, 0.25);
+  border-left: 4px solid rgba(3, 3, 3, 0.25);
+  border-right: 4px solid rgba(3, 3, 3, 0.25);
+  border-radius: 100%;
+  border-top: 4px solid rgba(3, 3, 3, 0.75);
+  height: 24px;
+  margin: 0 auto;
+  position: relative;
+  width: 24px;
+}
+.spinner.spinner-inline {
+  display: inline-block;
+  margin-right: 3px;
+}
+.spinner.spinner-lg {
+  border-width: 5px;
+  height: 30px;
+  width: 30px;
+}
+.spinner.spinner-sm {
+  border-width: 3px;
+  height: 18px;
+  width: 18px;
+}
+.spinner.spinner-xs {
+  border-width: 2px;
+  height: 12px;
+  width: 12px;
+}
+.spinner.spinner-inverse {
+  border-bottom-color: rgba(255, 255, 255, 0.25);
+  border-left-color: rgba(255, 255, 255, 0.25);
+  border-right-color: rgba(255, 255, 255, 0.25);
+  border-top-color: rgba(255, 255, 255, 0.75);
+}
+.ie9 .spinner {
+  background: url("../img/spinner.gif") no-repeat;
+  border: 0;
+}
+.ie9 .spinner.spinner-inverse {
+  background-image: url("../img/spinner-inverse.gif");
+}
+.ie9 .spinner.spinner-inverse-lg {
+  background-image: url("../img/spinner-inverse-lg.gif");
+}
+.ie9 .spinner.spinner-inverse-sm {
+  background-image: url("../img/spinner-inverse-sm.gif");
+}
+.ie9 .spinner.spinner-inverse-xs {
+  background-image: url("../img/spinner-inverse-xs.gif");
+}
+.ie9 .spinner.spinner-lg {
+  background-image: url("../img/spinner-lg.gif");
+}
+.ie9 .spinner.spinner-sm {
+  background-image: url("../img/spinner-sm.gif");
+}
+.ie9 .spinner.spinner-xs {
+  background-image: url("../img/spinner-xs.gif");
+}
+.prettyprint .atn,
+.prettyprint .com,
+.prettyprint .fun,
+.prettyprint .var {
+  color: #3f9c35;
+}
+.prettyprint .atv,
+.prettyprint .str {
+  color: #a30000;
+}
+.prettyprint .clo,
+.prettyprint .dec,
+.prettyprint .kwd,
+.prettyprint .opn,
+.prettyprint .pln,
+.prettyprint .pun {
+  color: #363636;
+}
+.prettyprint .lit,
+.prettyprint .tag,
+.prettyprint .typ {
+  color: #00659c;
+}
+.prettyprint ol.linenums {
+  margin-bottom: 0;
+}
+table.dataTable {
+  height: 100%;
+  margin-bottom: 0;
+  max-width: none !important;
+}
+table.dataTable tbody > tr > td.table-view-pf-actions {
+  padding: 0;
+  vertical-align: middle;
+}
+table.dataTable tbody > tr:hover > td.table-view-pf-actions {
+  background-color: #f5f5f5;
+  border-bottom-color: #d1d1d1;
+}
+table.dataTable tbody > tr.selected {
+  color: #fff;
+  background-color: #0088ce;
+}
+table.dataTable tbody > tr.selected > td {
+  border-bottom-color: #00659c;
+}
+table.dataTable tbody > tr.selected > td.table-view-pf-actions {
+  background-color: #f5f5f5;
+  border-bottom-color: #d1d1d1;
+}
+table.dataTable tbody > tr.selected:hover > td {
+  background-color: inherit;
+  border-bottom-color: #00659c;
+}
+table.dataTable tbody > tr.selected:hover > td.table-view-pf-actions {
+  background-color: #f5f5f5;
+  border-bottom-color: #d1d1d1;
+}
+table.dataTable thead .sorting,
+table.dataTable thead .sorting_asc,
+table.dataTable thead .sorting_desc,
+table.dataTable thead .sorting_asc_disabled,
+table.dataTable thead .sorting_desc_disabled {
+  cursor: pointer;
+}
+table.dataTable thead .sorting_asc,
+table.dataTable thead .sorting_desc {
+  color: #0088ce !important;
+  position: relative;
+}
+table.dataTable thead .sorting_asc:after,
+table.dataTable thead .sorting_desc:after {
+  content: "\f107";
+  font-family: "FontAwesome";
+  font-size: 10px;
+  font-weight: normal;
+  height: 9px;
+  left: 7px;
+  line-height: 12px;
+  position: relative;
+  top: 2px;
+  vertical-align: baseline;
+  width: 12px;
+}
+table.dataTable thead .sorting_asc:before,
+table.dataTable thead .sorting_desc:before {
+  background: #0088ce;
+  content: "";
+  height: 2px;
+  position: absolute;
+  left: 0;
+  top: 0;
+  width: 100%;
+}
+table.dataTable thead .sorting_asc:after {
+  content: "\f106";
+  top: -3px;
+}
+table.dataTable th:active {
+  outline: none;
+}
+.table-view-pf-empty.blank-slate-pf {
+  background-color: #f5f5f5;
+  border: 1px solid #d1d1d1;
+  border-radius: 0;
+  margin-top: -1px;
+}
+.table-view-pf-toolbar.toolbar-pf {
+  background-color: #f5f5f5;
+  border-bottom: none;
+  border-left: 1px solid #d1d1d1;
+  border-right: 1px solid #d1d1d1;
+  border-top: 1px solid #d1d1d1;
+  box-shadow: none;
+  margin-left: 0px;
+  margin-right: 0px;
+}
+.table-view-pf-toolbar.toolbar-pf .toolbar-pf-results {
+  border-top: 1px solid #d1d1d1;
+  min-height: 40px;
+  line-height: 40px;
+}
+.table-view-pf-toolbar-external.toolbar-pf {
+  border-bottom: none;
+  border-top: none;
+  box-shadow: none;
+}
+.table-view-pf-toolbar-external.toolbar-pf .toolbar-pf-results {
+  border-top: 1px solid #d1d1d1;
+  min-height: 40px;
+  line-height: 40px;
+}
+.table-view-pf-colvis-menu > li {
+  padding: 5px 10px;
+}
+.table-view-pf-colvis-menu > li:hover {
+  background-color: #def3ff;
+}
+.table-view-pf-colvis-menu > li > input {
+  margin-top: 0;
+  margin-right: 10px;
+  vertical-align: middle;
+}
+.table-view-pf-colvis-menu > li > label {
+  margin-bottom: 0;
+}
+.table-view-pf-actions {
+  background-color: #f1f1f1;
+  height: 100%;
+}
+.table-view-pf-actions .btn,
+.table-view-pf-actions .dropdown-toggle {
+  border: none;
+  box-shadow: none;
+  height: 100%;
+  width: 100%;
+}
+.table-view-pf-actions .dropdown,
+.table-view-pf-actions .table-view-pf-btn {
+  height: 100%;
+}
+.table-view-pf-actions .dropdown-menu.dropdown-menu-right {
+  right: -5px;
+}
+.table-view-pf-actions:last-child {
+  width: 24px;
+}
+.table-view-pf-select {
+  width: 33px;
+}
+.table-view-pf-select-results {
+  text-align: right;
+}
+.bootstrap-datetimepicker-widget a[data-action] {
+  border: 0;
+  box-shadow: none;
+  color: #363636;
+  display: block;
+  padding-bottom: 4px;
+  padding-top: 4px;
+}
+.bootstrap-datetimepicker-widget a[data-action]:hover {
+  color: #0088ce;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu {
+  left: 0!important;
+  padding: 0;
+  width: calc(100% - 25px);
+}
+.bootstrap-datetimepicker-widget.dropdown-menu:before,
+.bootstrap-datetimepicker-widget.dropdown-menu:after {
+  content: none;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu.top {
+  margin-bottom: -1px;
+}
+.bootstrap-datetimepicker-widget.dropdown-menu.bottom {
+  margin-top: -1px;
+}
+.bootstrap-datetimepicker-widget .timepicker-hour {
+  width: 100%;
+}
+.bootstrap-datetimepicker-widget .timepicker-hour:after {
+  content: ":";
+  float: right;
+}
+.timepicker-hours table td,
+.timepicker-minutes table td {
+  font-weight: bold;
+  line-height: 30px;
+  height: 30px;
+}
+.timepicker-hours table td:hover,
+.timepicker-minutes table td:hover {
+  color: #0088ce;
+}
+.timepicker-hours .table-condensed > tbody > tr > td,
+.timepicker-minutes .table-condensed > tbody > tr > td {
+  padding: 0;
+}
+.time-picker-pf .input-group-addon .fa,
+.time-picker-pf .input-group-addon .pficon {
+  width: 12px;
+}
+.time-picker-pf .input-group-addon:not(.active) {
+  box-shadow: none;
+}
+.timepicker-picker table td span,
+.timepicker-picker table td a span {
+  height: 24px;
+  line-height: 24px;
+  margin: 0;
+  width: 100%;
+}
+.timepicker-picker .table-condensed > tbody > tr > td {
+  height: 25px;
+  line-height: 18px;
+  padding: 0;
+}
+.timepicker-picker button[data-action] {
+  padding-bottom: 0;
+  padding-top: 0;
+}
+.timepicker-picker .separator {
+  display: none;
+}
+.timepicker-picker tr:nth-child(2) td {
+  background-color: #def3ff;
+  border-color: #bee1f4;
+  border-style: solid;
+  border-width: 1px;
+  border-left: 0;
+  border-right: 0;
+}
+.toast-pf {
+  background-color: #fff;
+  border-color: #bbb;
+  box-shadow: 0 2px 6px rgba(3, 3, 3, 0.2);
+  padding-left: 68px;
+  margin-bottom: 5px;
+  /* Medium devices (desktops, 992px and up) */
+}
+.toast-pf.alert-danger > .pficon {
+  background-color: #cc0000;
+}
+.toast-pf.alert-info > .pficon {
+  background-color: #8b8d8f;
+}
+.toast-pf.alert-success > .pficon {
+  background-color: #3f9c35;
+}
+.toast-pf.alert-warning > .pficon {
+  background-color: #ec7a08;
+}
+.toast-pf .dropdown-kebab-pf {
+  margin-left: 10px;
+}
+.toast-pf > .pficon {
+  background-color: #4d5258;
+  bottom: -1px;
+  box-shadow: 2px 0 5px -2px rgba(3, 3, 3, 0.2);
+  left: -1px;
+  padding-top: 10px;
+  text-align: center;
+  top: -1px;
+  width: 53px;
+}
+.toast-pf > .pficon:before {
+  color: rgba(255, 255, 255, 0.74);
+}
+.toast-pf .toast-pf-action {
+  margin-left: 15px;
+}
+.toast-pf .dropdown-kebab-pf .btn-link {
+  padding-top: 0;
+  padding-bottom: 0;
+  vertical-align: text-bottom;
+}
+@media (min-width: 992px) {
+  .toast-pf {
+    display: inline-block;
+  }
+}
+@media (min-width: 992px) {
+  .toast-pf-max-width {
+    max-width: 31.1%;
+  }
+}
+.toast-pf-top-right {
+  left: 20px;
+  position: absolute;
+  right: 20px;
+  top: 12px;
+  z-index: 1055;
+  /* Medium devices (desktops, 992px and up) */
+}
+@media (min-width: 992px) {
+  .toast-pf-top-right {
+    left: auto;
+  }
+}
+.toast-notifications-list-pf {
+  margin-left: 20px;
+  position: fixed;
+  right: 20px;
+  top: 80px;
+  z-index: 1055;
+}
+.toast-notifications-list-pf .toast-pf {
+  clear: both;
+  float: right;
+}
+@media (min-width: 768px) {
+  .toast-notifications-list-pf {
+    max-width: calc(50%);
+  }
+}
+@media (min-width: 992px) {
+  .toast-notifications-list-pf {
+    max-width: calc(33.1%);
+  }
+}
+.toolbar-pf {
+  background: #fff;
+  border-bottom: 1px solid #d1d1d1;
+  box-shadow: 0 1px 0px rgba(3, 3, 3, 0.045);
+  padding-top: 10px;
+}
+.toolbar-pf .form-group {
+  margin-bottom: 10px;
+}
+@media (min-width: 768px) {
+  .toolbar-pf .form-group {
+    border-right: 1px solid #d1d1d1;
+    float: left;
+    margin-bottom: 0;
+    padding-left: 20px;
+    padding-right: 20px;
+  }
+}
+.toolbar-pf .form-group:last-child {
+  border-right: 0;
+  margin-bottom: 0;
+  padding-right: 0;
+}
+.toolbar-pf .form-group .btn + .btn,
+.toolbar-pf .form-group .btn-group + .btn,
+.toolbar-pf .form-group .btn + .btn-group,
+.toolbar-pf .form-group .btn-group + .btn-group {
+  margin-left: 5px;
+}
+.toolbar-pf .form-group .btn + .btn-link,
+.toolbar-pf .form-group .btn-group + .btn-link,
+.toolbar-pf .form-group .btn + .dropdown,
+.toolbar-pf .form-group .btn-group + .dropdown {
+  margin-left: 10px;
+}
+.toolbar-pf .form-group .btn-link {
+  color: #252525;
+  font-size: 16px;
+  line-height: 1;
+  padding: 4px 0;
+}
+.toolbar-pf .form-group .btn-link:active,
+.toolbar-pf .form-group .btn-link:focus,
+.toolbar-pf .form-group .btn-link:hover {
+  color: #0088ce;
+}
+.toolbar-pf .form-group .dropdown-kebab-pf .btn-link {
+  padding: 4px 10px;
+  margin-left: -10px;
+  margin-right: -10px;
+}
+.toolbar-pf-actions {
+  display: table;
+  margin-bottom: 10px;
+  width: 100%;
+}
+@media (min-width: 768px) {
+  .toolbar-pf-actions .toolbar-pf-filter {
+    padding-left: 0;
+  }
+}
+.toolbar-pf-view-selector {
+  font-size: 16px;
+}
+.toolbar-pf-view-selector .btn-link.active {
+  color: #0088ce;
+  cursor: default;
+}
+.toolbar-pf-action-right {
+  float: right;
+}
+@media (max-width: 768px) {
+  .toolbar-pf-action-right {
+    float: none;
+  }
+}
+.toolbar-pf-find {
+  font-size: 14px;
+  position: relative;
+}
+.find-pf-dropdown-container {
+  background: #fff;
+  border: solid 1px #bbb;
+  display: none;
+  right: -20px;
+  padding: 5px;
+  position: absolute;
+  top: 35px;
+  width: 300px;
+  z-index: 10000;
+}
+@media (max-width: 768px) {
+  .find-pf-dropdown-container {
+    left: 30px;
+    top: -5px;
+    width: calc(100% - 30px);
+  }
+}
+.find-pf-dropdown-container:before,
+.find-pf-dropdown-container:after {
+  content: "";
+  position: absolute;
+}
+.find-pf-dropdown-container:before {
+  border-bottom: 11px solid #bbb;
+  border-left: 11px solid transparent;
+  border-right: 11px solid transparent;
+  right: 35px;
+  top: -12px;
+}
+.toolbar-pf-find:last-child .find-pf-dropdown-container:before {
+  right: 15px;
+}
+@media (max-width: 768px) {
+  .find-pf-dropdown-container:before {
+    border-bottom: 11px solid transparent;
+    border-right: 11px solid #bbb;
+    border-top: 11px solid transparent;
+    left: -22px;
+    right: initial;
+    top: 8px;
+  }
+}
+.find-pf-dropdown-container:after {
+  border-bottom: 10px solid #fff;
+  border-left: 10px solid transparent;
+  border-right: 10px solid transparent;
+  right: 36px;
+  top: -10px;
+}
+.toolbar-pf-find:last-child .find-pf-dropdown-container:after {
+  right: 16px;
+}
+@media (max-width: 768px) {
+  .find-pf-dropdown-container:after {
+    border-bottom: 10px solid transparent;
+    border-right: 10px solid #fff;
+    border-top: 10px solid transparent;
+    left: -20px;
+    right: initial;
+    top: 9px;
+  }
+}
+.find-pf-dropdown-container input {
+  height: 30px;
+  padding: 5px 117px 5px 5px;
+  width: 100%;
+}
+.find-pf-dropdown-container .find-pf-buttons {
+  position: absolute;
+  right: 10px;
+  top: 5px;
+}
+.find-pf-dropdown-container .find-pf-buttons .btn {
+  border: none;
+  cursor: pointer;
+  margin-left: 0 !important;
+  padding: 0;
+  width: 18px;
+}
+.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-up,
+.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-down {
+  font-weight: bold;
+  font-size: 18px;
+}
+.find-pf-dropdown-container .find-pf-buttons .btn .pficon-close {
+  font-size: 14px;
+}
+.find-pf-dropdown-container .find-pf-buttons span {
+  height: 30px;
+  line-height: 30px;
+  vertical-align: middle;
+}
+.find-pf-dropdown-container .find-pf-buttons .find-pf-nums {
+  color: #8b8d8f;
+  margin-right: 3px;
+}
+.toolbar-pf-results {
+  border-top: 1px solid #d1d1d1;
+  margin-top: 10px;
+}
+.toolbar-pf-results h5,
+.toolbar-pf-results p,
+.toolbar-pf-results ul {
+  display: inline-block;
+  line-height: 26.66666667px;
+  margin-bottom: 0;
+  margin-top: 0;
+}
+@media (min-width: 768px) {
+  .toolbar-pf-results h5,
+  .toolbar-pf-results p,
+  .toolbar-pf-results ul {
+    line-height: 40px;
+  }
+}
+.toolbar-pf-results h5 {
+  font-weight: 700;
+  margin-right: 20px;
+}
+.toolbar-pf-results .label {
+  font-size: 11px;
+}
+.toolbar-pf-results .label a {
+  color: #fff;
+  display: inline-block;
+  margin-left: 5px;
+}
+.nav-pf-vertical {
+  background: #292e34;
+  border-right: 1px solid #292e34;
+  bottom: 0;
+  left: 0;
+  overflow-x: hidden;
+  overflow-y: auto;
+  position: fixed;
+  top: 60px;
+  width: 200px;
+  z-index: 1030;
+}
+.layout-pf-fixed-with-footer .nav-pf-vertical {
+  bottom: 37px;
+}
+.ie9.layout-pf-fixed .nav-pf-vertical {
+  box-sizing: content-box;
+}
+.nav-pf-vertical.hidden.show-mobile-nav {
+  box-shadow: 0 0 3px rgba(3, 3, 3, 0.15);
+  display: block !important;
+}
+.nav-pf-vertical.hide-nav-pf {
+  visibility: hidden !important;
+}
+.nav-pf-vertical .list-group {
+  border-top: 0;
+  margin-bottom: 0;
+}
+.nav-pf-vertical .list-group-item {
+  background-color: transparent;
+  border-color: #030303;
+  padding: 0;
+}
+.nav-pf-vertical .list-group-item > a {
+  background-color: transparent;
+  color: #d1d1d1;
+  cursor: pointer;
+  display: block;
+  font-size: 14px;
+  font-weight: 400;
+  height: 63px;
+  line-height: 26px;
+  padding: 17px 20px 17px 25px;
+  position: relative;
+  white-space: nowrap;
+  width: 200px;
+}
+@supports (display: flex) {
+  .nav-pf-vertical .list-group-item > a {
+    display: flex;
+    padding-right: 0;
+  }
+}
+.nav-pf-vertical .list-group-item > a .fa,
+.nav-pf-vertical .list-group-item > a .glyphicon,
+.nav-pf-vertical .list-group-item > a .pficon {
+  color: #72767b;
+  float: left;
+  font-size: 20px;
+  line-height: 26px;
+  margin-right: 10px;
+  text-align: center;
+  width: 24px;
+}
+.nav-pf-vertical .list-group-item > a:hover {
+  text-decoration: none;
+}
+.nav-pf-vertical .list-group-item.active > a,
+.nav-pf-vertical .list-group-item:hover > a {
+  background-color: #393f44;
+  color: #fff;
+  font-weight: 600;
+}
+.nav-pf-vertical .list-group-item.active > a .fa,
+.nav-pf-vertical .list-group-item:hover > a .fa,
+.nav-pf-vertical .list-group-item.active > a .glyphicon,
+.nav-pf-vertical .list-group-item:hover > a .glyphicon,
+.nav-pf-vertical .list-group-item.active > a .pficon,
+.nav-pf-vertical .list-group-item:hover > a .pficon {
+  color: #39a5dc;
+}
+.nav-pf-vertical .list-group-item.active > a:before {
+  background: #39a5dc;
+  content: " ";
+  height: 100%;
+  left: 0;
+  position: absolute;
+  top: 0;
+  width: 3px;
+}
+.nav-pf-vertical .list-group-item.active:hover {
+  background-color: transparent;
+  border-color: #030303;
+}
+.nav-pf-vertical .list-group-item .list-group-item-value {
+  display: block;
+  line-height: 25px;
+  max-width: 120px;
+  overflow: hidden;
+  text-overflow: ellipsis;
+}
+@supports (display: flex) {
+  .nav-pf-vertical .list-group-item .list-group-item-value {
+    flex: 1;
+    max-width: none;
+    padding-right: 15px;
+  }
+}
+.nav-pf-vertical .list-group-item-separator {
+  border-top-color: #030303;
+  border-top-width: 2px;
+}
+.nav-pf-vertical.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.nav-pf-vertical.nav-pf-vertical-with-badges .list-group-item > a {
+  width: 250px;
+}
+.nav-pf-vertical h5 {
+  color: #fff;
+  cursor: default;
+  font-size: 13px;
+  font-weight: 600;
+  margin: 30px 20px 10px 20px;
+}
+.nav-pf-vertical.hidden-icons-pf > .list-group > .list-group-item > a .fa,
+.nav-pf-vertical.hidden-icons-pf > .list-group > .list-group-item > a .glyphicon,
+.nav-pf-vertical.hidden-icons-pf > .list-group > .list-group-item > a .pficon {
+  display: none;
+}
+.nav-pf-vertical.hidden-icons-pf.collapsed {
+  display: none;
+}
+.nav-pf-vertical .badge-container-pf {
+  position: absolute;
+  right: 15px;
+  top: 20px;
+}
+@supports (display: flex) {
+  .nav-pf-vertical .badge-container-pf {
+    padding-left: 0;
+    padding-right: 15px;
+    position: relative;
+    right: 0;
+    margin-top: -3px;
+    top: 5px;
+  }
+}
+.nav-pf-vertical .badge-container-pf .badge {
+  background: #292e34;
+  color: #fff;
+  float: left;
+  font-size: 12px;
+  font-weight: 700;
+  line-height: 1.66666667;
+  margin: 0;
+  padding: 0 7px;
+  text-align: center;
+}
+.nav-pf-vertical .badge-container-pf .badge .pficon,
+.nav-pf-vertical .badge-container-pf .badge .fa {
+  font-size: 14px;
+  height: 20px;
+  line-height: 1.66666667;
+  margin-right: 3px;
+  margin-top: -1px;
+}
+.nav-pf-vertical-tooltip.tooltip {
+  margin-left: 15px;
+}
+.nav-pf-vertical-tooltip.tooltip .tooltip-inner {
+  background-color: #fff;
+  color: #292e34;
+}
+.nav-pf-vertical-tooltip.tooltip .tooltip-arrow {
+  border-bottom-color: #fff;
+  left: calc(50% - 15px) !important;
+}
+.hover-secondary-nav-pf {
+  width: calc(200px * 2);
+}
+.hover-secondary-nav-pf.nav-pf-vertical-with-badges {
+  width: calc(250px * 2);
+}
+.hover-tertiary-nav-pf {
+  width: calc(200px * 3);
+}
+.hover-tertiary-nav-pf.nav-pf-vertical-with-badges {
+  width: calc(250px * 3);
+}
+.hover-tertiary-nav-pf .nav-pf-secondary-nav {
+  width: calc(200px * 2);
+}
+.hover-tertiary-nav-pf .nav-pf-secondary-nav .collapsed-tertiary-nav-pf {
+  width: 200px;
+}
+.hover-tertiary-nav-pf .nav-pf-tertiary-nav {
+  left: calc(200px * 2);
+}
+.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav {
+  width: calc(250px * 2);
+}
+.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav .collapsed-tertiary-nav-pf {
+  width: 250px;
+}
+.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav {
+  left: calc(250px * 2);
+}
+.nav-pf-vertical.collapsed {
+  width: 75px;
+}
+.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf {
+  width: 200px;
+}
+.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf {
+  width: 200px;
+}
+.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.nav-pf-vertical.collapsed.hover-secondary-nav-pf {
+  width: calc(75px + 200px);
+}
+.nav-pf-vertical.collapsed.hover-secondary-nav-pf.nav-pf-vertical-with-badges {
+  width: calc(75px + 250px);
+}
+.nav-pf-vertical.collapsed.hover-tertiary-nav-pf {
+  width: calc(75px + (200px * 2));
+}
+.nav-pf-vertical.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges {
+  width: calc(75px + (250px * 2));
+}
+.show-mobile-nav.show-mobile-secondary {
+  width: 200px;
+}
+.show-mobile-nav.show-mobile-secondary.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.show-mobile-nav.show-mobile-tertiary {
+  width: 200px;
+}
+.show-mobile-nav.show-mobile-tertiary.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.show-mobile-nav .mobile-nav-item-pf .nav-pf-secondary-nav,
+.show-mobile-nav .mobile-secondary-item-pf .nav-pf-secondary-nav {
+  left: 0;
+  opacity: 1;
+  visibility: visible;
+  z-index: 1034;
+}
+.show-mobile-nav .mobile-nav-item-pf > .nav-pf-tertiary-nav,
+.show-mobile-nav .mobile-secondary-item-pf > .nav-pf-tertiary-nav {
+  left: 0;
+  opacity: 1;
+  visibility: visible;
+  z-index: 1038;
+}
+.show-mobile-nav .nav-pf-secondary-nav {
+  left: 0;
+}
+.secondary-nav-item-pf:hover .show-mobile-nav .nav-pf-secondary-nav {
+  opacity: 0;
+  visibility: hidden;
+}
+.show-mobile-nav .tertiary-nav-item-pf:hover .nav-pf-tertiary-nav {
+  opacity: 0;
+  visibility: hidden;
+}
+.show-mobile-nav .tertiary-nav-item-pf.mobile-nav-item-pf:hover .nav-pf-tertiary-nav {
+  opacity: 1;
+  visibility: visible;
+}
+.secondary-nav-item-pf > a {
+  cursor: default;
+}
+.secondary-nav-item-pf > a:after {
+  color: #72767b;
+  content: "\f105";
+  display: block;
+  font-family: "FontAwesome";
+  font-size: 24px;
+  line-height: 30px;
+  padding: 14px 0;
+  position: absolute;
+  right: 20px;
+  top: 0;
+}
+@supports (display: flex) {
+  .secondary-nav-item-pf > a .list-group-item-value {
+    padding-right: 35px;
+  }
+}
+.secondary-nav-item-pf.active > a,
+.secondary-nav-item-pf:hover > a {
+  width: calc(200px + 1px);
+  z-index: 1031;
+}
+.secondary-nav-item-pf.active > a:after,
+.secondary-nav-item-pf:hover > a:after {
+  right: 21px;
+}
+.collapsed-secondary-nav-pf .secondary-nav-item-pf.active > a,
+.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover > a {
+  z-index: 0;
+}
+.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active > a,
+.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover > a {
+  z-index: 0;
+}
+.nav-pf-vertical-with-badges .secondary-nav-item-pf.active > a,
+.nav-pf-vertical-with-badges .secondary-nav-item-pf:hover > a {
+  width: calc(250px + 1px);
+}
+.nav-pf-vertical.collapsed-secondary-nav-pf {
+  width: 200px;
+}
+.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.active > a,
+.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.hover > a {
+  z-index: 1030;
+}
+.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf {
+  width: 200px;
+}
+.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-secondary-nav {
+  left: 0;
+}
+.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-tertiary-nav {
+  left: 200px;
+}
+.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav {
+  left: 250px;
+}
+.nav-pf-vertical.collapsed-tertiary-nav-pf {
+  width: 200px;
+}
+.nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav {
+  width: 200px;
+}
+.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav.nav-pf-vertical-with-badges {
+  width: 250px;
+}
+.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active > a,
+.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active > a,
+.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.hover > a,
+.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.hover > a {
+  z-index: 0;
+}
+@media (min-width: 1200px) {
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf {
+    width: calc(200px * 2);
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges {
+    width: calc(250px * 2);
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf {
+    width: 200px;
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges {
+    width: 250px;
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf {
+    width: calc(200px * 2);
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges {
+    width: calc(250px * 2);
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf {
+    width: 200px;
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges {
+    width: 250px;
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed {
+    width: calc(75px + 200px);
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf {
+    width: 200px;
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges {
+    width: 250px;
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf {
+    width: 200px;
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges {
+    width: 250px;
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf {
+    width: calc(75px + (200px * 2));
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges {
+    width: calc(75px + (250px * 2));
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf {
+    width: calc(200px * 3);
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges {
+    width: calc(250px * 3);
+  }
+  .nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav {
+    visibility: visible;
+    opacity: 1;
+  }
+}
+.nav-item-pf-header {
+  color: #fff;
+  font-size: 16px;
+  margin: 18px 20px 10px 20px;
+}
+.nav-item-pf-header > a {
+  cursor: pointer;
+  margin-right: 7px;
+}
+.nav-item-pf-header > a:hover,
+.nav-item-pf-header > a:focus {
+  color: #0088ce;
+  text-decoration: none;
+}
+.nav-pf-vertical.collapsed {
+  width: 75px;
+}
+.nav-pf-vertical.collapsed .list-group-item > a {
+  width: 75px;
+}
+.nav-pf-vertical.collapsed .list-group-item > a > .list-group-item-value {
+  display: none;
+}
+.nav-pf-vertical.collapsed .list-group-item > a > .badge-container-pf {
+  display: none;
+}
+.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active > a,
+.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf > a {
+  width: 75px;
+}
+.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active > a:after,
+.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf > a:after {
+  right: 10px;
+}
+.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active > a,
+.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover > a {
+  width: 77px;
+}
+.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active > a:after,
+.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover > a:after {
+  right: 11px;
+}
+.nav-pf-secondary-nav {
+  background: #393f44;
+  border: 1px solid #292e34;
+  border-bottom: none;
+  border-top: none;
+  bottom: 0;
+  display: block;
+  left: 200px;
+  opacity: 0;
+  overflow-x: hidden;
+  overflow-y: auto;
+  position: fixed;
+  top: 60px;
+  visibility: hidden;
+  width: 200px;
+  z-index: 1030;
+}
+.collapsed-secondary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav {
+  left: 0;
+  opacity: 1;
+  visibility: visible;
+  z-index: 1032;
+}
+.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav {
+  left: 0;
+  opacity: 1;
+  visibility: visible;
+}
+.hover-secondary-nav-pf .secondary-nav-item-pf.is-hover .nav-pf-secondary-nav {
+  opacity: 1;
+  visibility: visible;
+}
+.ie9.layout-pf-fixed .nav-pf-secondary-nav {
+  box-sizing: content-box;
+}
+.layout-pf-fixed-with-footer .nav-pf-secondary-nav {
+  bottom: 37px;
+}
+.nav-pf-secondary-nav .list-group-item {
+  border: none;
+  padding: 0 0 5px 0;
+  width: 200px;
+}
+.nav-pf-secondary-nav .list-group-item > a {
+  background-color: #393f44;
+  color: #d1d1d1;
+  font-size: 12px;
+  font-weight: inherit;
+  height: inherit;
+  padding: 4px 0 2px 0;
+  margin-left: 20px;
+  width: calc(200px - 20px);
+}
+.nav-pf-secondary-nav .list-group-item > a:hover .list-group-item-value {
+  text-decoration: underline;
+}
+.nav-pf-secondary-nav .list-group-item.active > a:before {
+  display: none;
+}
+.nav-pf-secondary-nav .list-group-item.active > a,
+.nav-pf-secondary-nav .list-group-item:hover > a {
+  background-color: #4d5258;
+  color: #fff;
+}
+.nav-pf-secondary-nav .list-group-item .badge-container-pf {
+  top: 5px;
+}
+.nav-pf-secondary-nav .list-group-item .badge-container-pf .badge {
+  background: #292e34;
+  color: #fff;
+}
+.nav-pf-secondary-nav .list-group-item .list-group-item-value {
+  padding-left: 5px;
+}
+.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf > a {
+  cursor: default;
+}
+.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf > a:after {
+  color: #72767b;
+  content: "\f105";
+  display: block;
+  font-family: "FontAwesome";
+  font-size: 20px;
+  line-height: 20px;
+  padding: 0;
+  position: absolute;
+  right: 20px;
+  top: 4px;
+}
+@supports (display: flex) {
+  .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf > a .list-group-item-value {
+    padding-right: 35px;
+  }
+}
+.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active > a,
+.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover > a {
+  width: calc(200px - 19px);
+  z-index: 1033;
+}
+.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active > a:after,
+.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover > a:after {
+  right: 21px;
+}
+.nav-pf-vertical-with-badges .nav-pf-secondary-nav {
+  left: 250px;
+  width: 250px;
+}
+.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item {
+  width: 250px;
+}
+.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item > a {
+  width: calc(250px - 20px);
+}
+.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active > a,
+.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover > a {
+  width: calc(250px - 19px);
+}
+.nav-pf-tertiary-nav {
+  background: #4d5258;
+  border: 1px solid #292e34;
+  border-bottom: none;
+  border-top: none;
+  bottom: 0;
+  display: block;
+  left: calc(200px * 2);
+  opacity: 0;
+  overflow-x: hidden;
+  overflow-y: auto;
+  position: fixed;
+  top: 60px;
+  visibility: hidden;
+  width: 200px;
+  z-index: 1030;
+}
+.nav-pf-vertical-with-badges .nav-pf-tertiary-nav {
+  left: 250px;
+  width: 250px;
+}
+.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .show-mobile-nav {
+  left: 0;
+}
+.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active .nav-pf-tertiary-nav {
+  left: 0;
+  opacity: 1;
+  visibility: visible;
+  z-index: 1033;
+}
+.hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav {
+  opacity: 1;
+  visibility: visible;
+}
+.collapsed.collapsed-tertiary-nav-pf .hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav {
+  left: 0;
+}
+.ie9.layout-pf-fixed .nav-pf-tertiary-nav {
+  box-sizing: content-box;
+}
+.layout-pf-fixed-with-footer .nav-pf-tertiary-nav {
+  bottom: 37px;
+}
+.nav-pf-tertiary-nav .nav-item-pf-header {
+  color: #fff;
+  margin: 18px 20px 10px 20px;
+}
+.nav-pf-tertiary-nav h5 {
+  color: #fff;
+  margin: 30px 20px 10px 20px;
+}
+.nav-pf-tertiary-nav .list-group-item {
+  border: none;
+  padding: 0 0 5px 0;
+}
+.nav-pf-tertiary-nav .list-group-item > a {
+  background-color: transparent;
+  color: #d1d1d1;
+  font-size: 12px;
+  font-weight: inherit;
+  height: inherit;
+  margin: 0 20px 0 20px;
+  padding: 4px 0 2px 0;
+}
+.nav-pf-tertiary-nav .list-group-item.active > a:before {
+  display: none;
+}
+.nav-pf-tertiary-nav .list-group-item.active > a,
+.nav-pf-tertiary-nav .list-group-item:hover > a {
+  background-color: #393f44;
+  color: #fff;
+}
+.nav-pf-tertiary-nav .list-group-item .badge-container-pf {
+  top: 5px;
+}
+.nav-pf-tertiary-nav .list-group-item .badge-container-pf .badge {
+  background: #292e34;
+  color: #fff;
+}
+.nav-pf-tertiary-nav .list-group-item .list-group-item-value {
+  padding-left: 5px;
+}
+.collapsed .nav-pf-secondary-nav {
+  left: 75px;
+}
+.collapsed .nav-pf-secondary-nav .list-group-item > a {
+  width: calc(200px - 20px);
+}
+.collapsed .nav-pf-secondary-nav .list-group-item > a > .list-group-item-value {
+  display: inline-block;
+}
+.collapsed .nav-pf-secondary-nav .list-group-item > a > .badge-container-pf {
+  display: inline-block;
+}
+.collapsed .nav-pf-tertiary-nav {
+  left: calc(75px + 200px);
+}
+.collapsed .nav-pf-tertiary-nav .list-group-item > a {
+  width: calc(200px - 20px);
+}
+.collapsed .nav-pf-tertiary-nav .list-group-item > a > .list-group-item-value {
+  display: inline-block;
+}
+.collapsed .nav-pf-tertiary-nav .list-group-item > a > .badge-container-pf {
+  display: inline-block;
+}
+.collapsed.collapsed-secondary-nav-pf,
+.collapsed.collapsed-tertiary-nav-pf {
+  width: 200px;
+}
+.collapsed.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover > a,
+.collapsed.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover > a {
+  z-index: 1030;
+}
+.collapsed.collapsed-secondary-nav-pf .nav-pf-secondary-nav,
+.collapsed.collapsed-tertiary-nav-pf .nav-pf-secondary-nav {
+  left: 0;
+}
+.collapsed.collapsed-secondary-nav-pf .nav-pf-tertiary-nav {
+  left: 200px;
+}
+.collapsed.collapsed-tertiary-nav-pf .nav-pf-tertiary-nav {
+  left: 0;
+}
+.collapsed.hover-secondary-nav-pf {
+  width: calc(75px + 200px);
+}
+.collapsed.hover-secondary-nav-pf.collapsed-secondary-nav-pf,
+.collapsed.hover-secondary-nav-pf.collapsed-tertiary-nav-pf {
+  width: 200px;
+}
+.collapsed.hover-tertiary-nav-pf {
+  width: calc(75px + (200px * 2));
+}
+.collapsed.hover-tertiary-nav-pf.collapsed-secondary-nav-pf {
+  width: calc(200px * 2);
+}
+.collapsed.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf {
+  width: 200px;
+}
+.collapsed.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item > a {
+  width: calc(250px - 20px);
+}
+.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav {
+  left: calc(75px + 250px);
+}
+.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .list-group-item > a {
+  width: calc(250px - 20px);
+}
+.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf,
+.collapsed.nav-pf-vertical-with-badges.collapsed-tertiary-nav-pf {
+  width: 250px;
+}
+.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf .nav-pf-tertiary-nav {
+  left: 250px;
+}
+.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf {
+  width: calc(75px + 250px);
+}
+.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-secondary-nav-pf,
+.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-tertiary-nav-pf {
+  width: 250px;
+}
+.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf {
+  width: calc(75px + (200px * 2));
+}
+.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-secondary-nav-pf {
+  width: calc(200px * 2);
+}
+.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf {
+  width: 200px;
+}
+.secondary-collapse-toggle-pf {
+  display: none;
+  font-family: "FontAwesome";
+  font-size: inherit;
+  opacity: 0;
+  pointer-events: none;
+  -webkit-font-smoothing: antialiased;
+}
+.secondary-collapse-toggle-pf:before {
+  content: "\f190";
+}
+.secondary-collapse-toggle-pf.collapsed:before {
+  content: "\f18e";
+}
+.tertiary-collapse-toggle-pf {
+  display: none;
+  font-family: "FontAwesome";
+  font-size: inherit;
+  opacity: 0;
+  pointer-events: none;
+  -webkit-font-smoothing: antialiased;
+}
+.tertiary-collapse-toggle-pf:before {
+  content: "\f190";
+}
+.tertiary-collapse-toggle-pf.collapsed:before {
+  content: "\f18e";
+}
+.nav-pf-vertical-collapsible-menus .secondary-collapse-toggle-pf {
+  display: inline-block;
+}
+.nav-pf-vertical-collapsible-menus .secondary-nav-item-pf.active .secondary-collapse-toggle-pf {
+  opacity: 1;
+  pointer-events: all;
+}
+.nav-pf-vertical-collapsible-menus .tertiary-collapse-toggle-pf {
+  display: inline-block;
+}
+.nav-pf-vertical-collapsible-menus .tertiary-nav-item-pf.active .tertiary-collapse-toggle-pf {
+  opacity: 1;
+  pointer-events: all;
+}
+.show-mobile-nav .secondary-collapse-toggle-pf {
+  display: inline-block;
+  opacity: 1;
+  pointer-events: all;
+}
+.show-mobile-nav .secondary-collapse-toggle-pf:before {
+  content: "\f190";
+}
+.show-mobile-nav .tertiary-collapse-toggle-pf {
+  display: inline-block;
+  opacity: 1;
+  pointer-events: all;
+}
+.show-mobile-nav .tertiary-collapse-toggle-pf:before {
+  content: "\f190";
+}
+.force-hide-secondary-nav-pf .nav-pf-secondary-nav {
+  display: none !important;
+}
+.force-hide-secondary-nav-pf .nav-pf-tertiary-nav {
+  display: none !important;
+}
+.nav-pf-vertical.transitions {
+  transition: width 100ms;
+}
+.nav-pf-vertical.transitions .nav-pf-secondary-nav {
+  transition: visibility 100ms, opacity 100ms linear;
+}
+.nav-pf-vertical.transitions .nav-pf-tertiary-nav {
+  transition: visibility 100ms, opacity 100ms linear;
+}
+.wizard-pf {
+  padding: 10px;
+  margin: 0 auto;
+  max-height: 900px;
+  width: auto;
+}
+.wizard-pf .modal-content {
+  min-height: 100%;
+}
+.wizard-pf-body {
+  background: #fff;
+  padding: 0;
+  position: static;
+}
+/* styles the sidebard containing the sub-steps */
+.wizard-pf-sidebar {
+  background: #fafafa;
+  border-right: 1px solid #d1d1d1;
+  display: none;
+}
+@media (min-width: 768px) {
+  .wizard-pf-sidebar {
+    display: inherit;
+    flex: 0 0 auto;
+    overflow-x: hidden;
+    overflow-y: auto;
+  }
+  .wizard-pf-sidebar .list-group {
+    border-top: 0;
+    margin-bottom: 0;
+  }
+  .wizard-pf-sidebar .list-group-item {
+    background-color: transparent;
+    border-color: #ededed;
+    padding: 0;
+  }
+  .wizard-pf-sidebar .list-group-item > a {
+    color: #030303;
+    cursor: pointer;
+    display: block;
+    font-size: 14px;
+    font-weight: 700;
+    height: 50px;
+    outline: 0;
+    padding-top: 11px;
+    padding-left: 20px;
+    position: relative;
+    white-space: nowrap;
+    width: 14em;
+  }
+  .wizard-pf-sidebar .list-group-item > a:hover {
+    text-decoration: none;
+    background-color: #ededed;
+  }
+  .wizard-pf-sidebar .list-group-item > a:focus {
+    text-decoration: none;
+  }
+  .wizard-pf-sidebar .list-group-item > a:focus span {
+    text-decoration: underline;
+  }
+  .wizard-pf-sidebar .list-group-item.active {
+    background-color: #ededed;
+  }
+  .wizard-pf-sidebar .list-group-item.active:hover {
+    border-color: #ededed;
+  }
+  .wizard-pf-sidebar .list-group-item.active > a {
+    color: #39a5dc;
+    cursor: default;
+  }
+  .wizard-pf-sidebar .list-group-item.active > a:before {
+    content: " ";
+    background: #39a5dc;
+    height: 100%;
+    left: 0;
+    position: absolute;
+    top: 0;
+    width: 3px;
+  }
+  .wizard-pf-sidebar .list-group-item.active > a:after {
+    color: #39a5dc;
+    content: "\f105";
+    display: block;
+    font-family: FontAwesome;
+    font-size: 24px;
+    font-weight: 500;
+    line-height: 30px;
+    padding-top: 10px;
+    position: absolute;
+    right: 23px;
+    top: 0;
+  }
+}
+.wizard-pf-substep-number {
+  display: inline-block;
+  margin-right: 5px;
+  vertical-align: middle;
+  width: 25px;
+}
+.wizard-pf-substep-title {
+  display: inline-block;
+  margin-right: 5px;
+  text-align: left;
+  vertical-align: middle;
+}
+/* styles the steps indicator across the top of the wizard */
+.wizard-pf-steps {
+  border-bottom: solid 1px #d1d1d1;
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps {
+    text-align: center;
+  }
+}
+.wizard-pf-steps-indicator {
+  background: #ededed;
+  border-top: 1px solid #d1d1d1;
+  display: inline-block;
+  display: flex;
+  font-size: 16px;
+  list-style: none;
+  margin-bottom: 0;
+  padding: 15px 0;
+  /* draw the step number in the circle */
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps-indicator {
+    background: #fff;
+    height: 120px;
+    padding: 38px 0 0;
+    justify-content: space-around;
+  }
+}
+.wizard-pf-steps-indicator li {
+  counter-increment: section;
+  float: left;
+  /* float for IE9 since it doesn't support flex. If items wrap, they overlap */
+  flex-grow: 1;
+  flex-basis: 0;
+  line-height: 15px;
+  margin: 0;
+  padding: 0;
+  position: relative;
+  text-align: center;
+  /* draw the line between the circles */
+}
+.wizard-pf-steps-indicator li:not(.active) {
+  display: none;
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps-indicator li:not(.active) {
+    display: block;
+  }
+}
+.wizard-pf-steps-indicator li a {
+  align-items: center;
+  display: flex;
+  flex-wrap: wrap;
+  font-weight: 700;
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps-indicator li a {
+    font-weight: normal;
+    justify-content: center;
+  }
+}
+.wizard-pf-steps-indicator li a .wizard-pf-step-title {
+  margin-left: 10px;
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps-indicator li a .wizard-pf-step-title {
+    margin-left: 0;
+  }
+}
+.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep {
+  font-weight: normal;
+  margin-left: 10px;
+  text-transform: capitalize;
+}
+.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:before {
+  content: "\00BB";
+  font-size: 20px;
+  margin-right: 10px;
+}
+.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:not(.active) {
+  display: none;
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps-indicator li {
+    /* don't draw the line between the circles on the ends */
+  }
+  .wizard-pf-steps-indicator li .wizard-pf-step-title-substep {
+    display: none;
+  }
+  .wizard-pf-steps-indicator li:before {
+    background-color: #bbb;
+    content: "";
+    height: 2px;
+    left: 0;
+    position: absolute;
+    right: 0;
+    top: 40px;
+  }
+  .wizard-pf-steps-indicator li:first-child:before {
+    left: 50%;
+    right: 0;
+  }
+  .wizard-pf-steps-indicator li:last-child:before {
+    left: 0;
+    right: 50%;
+  }
+  .wizard-pf-steps-indicator li:only-of-type:before {
+    background-color: transparent;
+  }
+}
+.wizard-pf-steps-indicator li a {
+  color: #030303;
+  cursor: pointer;
+  font-size: 16px;
+  margin-left: 1em;
+  margin-right: 1em;
+  text-decoration: none;
+}
+.wizard-pf-steps-indicator li a:hover .wizard-pf-step-number {
+  background-color: #bbb;
+  border-color: #bbb;
+  color: #fff;
+}
+.wizard-pf-steps-indicator .wizard-pf-step-number {
+  background-color: #fff;
+  border-radius: 50%;
+  border: solid 2px #bbb;
+  color: #bbb;
+  font-size: 12px;
+  font-weight: 700;
+  height: 25px;
+  line-height: 22px;
+  width: 25px;
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps-indicator .wizard-pf-step-number {
+    left: calc(50% - 13px);
+    position: absolute;
+    top: 27px;
+  }
+}
+.wizard-pf-steps-indicator .active .wizard-pf-step-number {
+  background-color: #39a5dc;
+  border-color: #39a5dc;
+  cursor: default;
+  color: #fff;
+}
+.wizard-pf-steps-indicator .viewed-pf .wizard-pf-step-number {
+  color: #030303;
+  background-color: #fff;
+  border-color: #39a5dc;
+}
+/* styles the main content portion of the wizard */
+.wizard-pf-main {
+  height: 100%;
+  padding: 1em;
+  vertical-align: top;
+  width: 100%;
+}
+@media (min-width: 768px) {
+  .wizard-pf-main {
+    overflow: auto;
+    padding: 3em;
+    flex: 1 1 auto;
+  }
+}
+.wizard-pf-main .blank-slate-pf {
+  background-color: transparent;
+  border: none;
+  left: 0;
+  right: 0;
+}
+.wizard-pf-contents textarea {
+  resize: vertical;
+}
+/* styles the content of a review page */
+.wizard-pf-review-steps {
+  list-style: none;
+}
+.wizard-pf-review-steps .list-group,
+.wizard-pf-review-steps .list-group-item {
+  border: none;
+  margin-bottom: 0;
+}
+.wizard-pf-review-steps > ul > li {
+  float: left;
+  line-height: 15px;
+  margin: 0;
+  padding-top: 0;
+  position: relative;
+  width: 100%;
+}
+.wizard-pf-review-steps > ul > li > a {
+  color: #030303;
+  cursor: pointer;
+  font-size: 16px;
+  padding-left: 30px;
+  padding-right: 5px;
+  text-decoration: none;
+  transition: 250ms;
+}
+.wizard-pf-review-steps > ul > li > a:before {
+  content: "\f107";
+  display: block;
+  font-family: FontAwesome;
+  font-size: 24px;
+  font-weight: 500;
+  left: 20px;
+  position: absolute;
+  top: 0;
+}
+.wizard-pf-review-steps > ul > li > a.collapsed:before {
+  content: "\f105";
+}
+.wizard-pf-review-substeps {
+  padding-left: 22px;
+}
+.wizard-pf-review-substeps > ul > li {
+  float: left;
+  line-height: 15px;
+  margin: 0;
+  position: relative;
+  width: 100%;
+}
+.wizard-pf-review-substeps > ul > li a {
+  color: #030303;
+  cursor: pointer;
+  font-size: 16px;
+  padding-left: 30px;
+  padding-right: 5px;
+  text-decoration: none;
+  transition: 250ms;
+}
+.wizard-pf-review-substeps > ul > li a:before {
+  content: "\f107";
+  display: block;
+  font-family: FontAwesome;
+  font-size: 24px;
+  font-weight: 500;
+  left: 20px;
+  position: absolute;
+  top: 10px;
+}
+.wizard-pf-review-substeps > ul > li a.collapsed:before {
+  content: "\f105";
+}
+.wizard-pf-review-content {
+  padding-top: 10px;
+  padding-left: 40px;
+}
+.wizard-pf-review-content .wizard-pf-review-item {
+  padding: 5px 0;
+}
+.wizard-pf-review-content .wizard-pf-review-item.sub-item {
+  margin-left: 10px;
+}
+.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-label {
+  font-weight: 700;
+  padding-right: 10px;
+}
+.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field {
+  font-weight: 700;
+  margin: 5px 0;
+  padding-right: 10px;
+}
+.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:first-of-type {
+  margin-top: 0;
+}
+.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:last-of-type {
+  margin-bottom: 0;
+}
+.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field.sub-field {
+  margin-left: 10px;
+}
+.wizard-pf-success-icon {
+  color: #3f9c35;
+  font-size: 67.2px;
+  line-height: 67.2px;
+}
+/* styles the footer */
+.wizard-pf-footer {
+  background: #fff;
+  border-top: 1px solid #d1d1d1;
+  margin-top: 0;
+  padding-bottom: 17px;
+}
+.wizard-pf-footer .btn-cancel {
+  margin-right: 25px;
+}
+@media (min-width: 768px) {
+  .wizard-pf-row {
+    display: flex;
+    width: 100%;
+    height: 900px;
+    max-height: 65vh;
+  }
+}
+@media (min-width: 992px) {
+  .wizard-pf {
+    padding: 30px 0;
+    width: 900px;
+  }
+  .wizard-pf-sidebar .list-group-item > a {
+    width: 18em;
+  }
+}
+.wizard-pf-steps-alt,
+.wizard-pf-steps-alt ul {
+  list-style: none;
+  margin: 0;
+  padding: 0;
+}
+.wizard-pf-steps-alt {
+  margin-left: 15px;
+  margin-top: 15px;
+  background-image: linear-gradient(to right, transparent 11px, #d1d1d1 11px, #d1d1d1 13px, transparent 13px);
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps-alt {
+    display: none;
+  }
+}
+.wizard-pf-steps-alt-indicator {
+  position: relative;
+}
+.wizard-pf-steps-alt-indicator:after {
+  color: #4d5258;
+  content: "\f107";
+  display: block;
+  font-family: FontAwesome;
+  font-size: 24px;
+  font-weight: 500;
+  position: absolute;
+  right: 17px;
+  top: 50%;
+  transform: translateY(-50%);
+}
+@media (min-width: 768px) {
+  .wizard-pf-steps-alt-indicator:after {
+    display: none;
+  }
+}
+.wizard-pf-steps-alt-indicator.active:after {
+  content: "\f106";
+}
+.wizard-pf-step-alt {
+  margin-bottom: 10px;
+}
+.wizard-pf-step-alt a {
+  display: flex;
+  flex: 1;
+}
+.wizard-pf-step-alt a:hover {
+  text-decoration: none;
+}
+.wizard-pf-step-alt a:hover .wizard-pf-step-alt-title {
+  color: #39a5dc;
+}
+.wizard-pf-step-alt ul {
+  margin-left: 11px;
+}
+.wizard-pf-step-alt .wizard-pf-step-alt-title {
+  margin-left: 5px;
+  align-self: center;
+}
+.wizard-pf-step-alt .wizard-pf-step-alt-number {
+  flex: 0 0 auto;
+}
+.wizard-pf-step-alt.active .wizard-pf-step-alt-number {
+  background-color: #39a5dc;
+  border-color: #39a5dc;
+  cursor: default;
+  color: #fff;
+}
+.wizard-pf-step-alt.active .wizard-pf-step-alt-title {
+  color: #39a5dc;
+}
+.wizard-pf-step-alt.active .wizard-pf-step-alt-substep:first-of-type {
+  margin-top: 2px;
+}
+.wizard-pf-step-alt.viewed .wizard-pf-step-alt-number {
+  color: #030303;
+  background-color: #fff;
+  border-color: #39a5dc;
+}
+.wizard-pf-step-alt-number {
+  background-color: #fff;
+  border-radius: 50%;
+  border: solid 2px #bbb;
+  color: #bbb;
+  font-size: 12px;
+  font-weight: 700;
+  height: 24px;
+  width: 24px;
+  display: inline-block;
+  text-align: center;
+}
+.wizard-pf-step-alt-title {
+  color: #030303;
+  font-weight: 700;
+  text-transform: capitalize;
+  display: inline-block;
+}
+.wizard-pf-step-alt-substep {
+  display: flex;
+}
+.wizard-pf-step-alt-substep a {
+  padding: 5px 0 5px 18px;
+  color: #393f44;
+}
+.wizard-pf-step-alt-substep:not(.disabled).active,
+.wizard-pf-step-alt-substep:not(.disabled):hover {
+  background-color: #ededed;
+  background-image: linear-gradient(to right, #39a5dc 2px, transparent 2px);
+}
+.wizard-pf-step-alt-substep:not(.disabled).active a,
+.wizard-pf-step-alt-substep:not(.disabled):hover a {
+  color: #39a5dc;
+}
+.wizard-pf-step-alt-substep.active a {
+  font-weight: 700;
+}
+.wizard-pf-step-alt-substep.disabled {
+  cursor: not-allowed;
+}
+.wizard-pf-step-alt-substep.disabled a {
+  pointer-events: none;
+}
+/* RCUE-specific */
+.login-pf {
+  background-color: #1a1a1a;
+}
+@media (min-width: 768px) {
+  .login-pf {
+    background-image: url("../img/bg-login-2.png");
+    background-position: 100% 100%;
+    background-repeat: no-repeat;
+    background-size: 30%;
+  }
+}
+@media (min-width: 992px) {
+  .login-pf {
+    background-size: auto;
+  }
+}
+.login-pf #badge {
+  margin-bottom: 50px;
+}
+.login-pf body {
+  background: transparent;
+}
+@media (min-width: 768px) {
+  .login-pf body {
+    background-image: url("../img/bg-login.png");
+    background-repeat: no-repeat;
+    background-size: 30%;
+    height: 100%;
+  }
+}
+@media (min-width: 992px) {
+  .login-pf body {
+    background-size: auto;
+  }
+}
+.login-pf #brand {
+  top: -30px;
+}
+@media (min-width: 768px) {
+  .login-pf #brand {
+    top: -40px;
+  }
+  .login-pf #brand + .alert {
+    margin-top: -20px;
+  }
+}
+.login-pf .container {
+  padding-top: 0;
+}
+@media (min-width: 992px) {
+  .login-pf .container {
+    bottom: 20%;
+    padding-right: 120px;
+  }
+}
+/*# sourceMappingURL=rcue-additions.css.map */
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue-additions.css.map b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue-additions.css.map
new file mode 100644
index 0000000..09e70b5
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue-additions.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["node_modules/bootstrap-slider/src/less/rules.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","node_modules/patternfly-bootstrap-combobox/less/combobox.less","node_modules/bootstrap-datepicker/less/datepicker3.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap-select/less/bootstrap-select.less","node_modules/bootstrap-switch/src/less/bootstrap3/bootstrap-switch.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap-touchspin/dist/jquery.bootstrap-touchspin.css","node_modules/c3/c3.css","node_modules/eonasdan-bootstrap-datetimepicker/src/less/_bootstrap-datetimepicker.less","node_modules/eonasdan-bootstrap-datetimepicker/src/less/bootstrap-datetimepicker-build.less","node_modules/patternfly/dist/less/mixins.less","node_modules/patternfly/dist/less/about-modal.less","node_modules/patternfly/dist/less/application-launcher.less","node_modules/patternfly/dist/less/blank-slate.less","node_modules/patternfly/dist/less/bootstrap-combobox.less","node_modules/patternfly/dist/less/variables.less","node_modules/patternfly/dist/less/bootstrap-datepicker.less","node_modules/patternfly/dist/less/bootstrap-mixin-overrides.less","node_modules/patternfly/dist/less/bootstrap-select.less","node_modules/patternfly/dist/less/bootstrap-slider.less","node_modules/patternfly/dist/less/bootstrap-switch.less","node_modules/patternfly/dist/less/bootstrap-touchspin.less","node_modules/patternfly/dist/less/bootstrap-treeview.less","node_modules/patternfly/dist/less/cards.less","node_modules/patternfly/dist/less/card-view.less","node_modules/patternfly/dist/less/charts.less","node_modules/patternfly/dist/less/close.less","node_modules/patternfly/dist/less/context-selector.less","node_modules/patternfly/dist/less/datatables.less","node_modules/bootstrap/less/mixins/reset-filter.less","node_modules/patternfly/dist/less/experimental-features.less","node_modules/patternfly/dist/less/filter.less","node_modules/patternfly/dist/less/footer.less","node_modules/patternfly/dist/less/icons.less","node_modules/patternfly/dist/less/infotip.less","node_modules/patternfly/dist/less/layouts.less","node_modules/patternfly/dist/less/links.less","node_modules/patternfly/dist/less/list-pf.less","node_modules/patternfly/dist/less/list-view.less","node_modules/bootstrap/less/mixins/clearfix.less","node_modules/patternfly/dist/less/list-view-dnd.less","node_modules/patternfly/dist/less/login.less","node_modules/patternfly/dist/less/navbar.less","node_modules/font-awesome/less/variables.less","node_modules/patternfly/dist/less/navbar-alt.less","node_modules/patternfly/dist/less/navbar-vertical.less","node_modules/patternfly/dist/less/nav-vertical-alt.less","node_modules/patternfly/dist/less/notifications-drawer.less","node_modules/patternfly/dist/less/search.less","node_modules/patternfly/dist/less/sidebar.less","node_modules/patternfly/dist/less/skip-to-content.less","node_modules/patternfly/dist/less/spinner.less","node_modules/patternfly/dist/less/syntax-highlighting.less","node_modules/patternfly/dist/less/table-view.less","node_modules/patternfly/dist/less/time-picker.less","node_modules/patternfly/dist/less/toast.less","node_modules/patternfly/dist/less/toolbar.less","node_modules/patternfly/dist/less/vertical-nav.less","node_modules/patternfly/dist/less/wizard.less","less/login.less"],"names":[],"mappings":"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","sourcesContent":[".slider {\n\tdisplay: inline-block;\n\tvertical-align: middle;\n\tposition: relative;\n\t&.slider-horizontal {\n\t\twidth: @slider-horizontal-width;\n\t\theight: @slider-line-height;\n\t\t.slider-track {\n\t\t\theight: (@slider-line-height/2);\n\t\t\twidth: 100%;\n\t\t\tmargin-top: (-@slider-line-height/4);\n\t\t\ttop: 50%;\n\t\t\tleft: 0;\n\t\t}\n\t\t.slider-selection, .slider-track-low, .slider-track-high {\n\t\t\theight: 100%;\n\t\t\ttop: 0;\n\t\t\tbottom: 0;\n\t\t}\n\t\t.slider-tick,\n\t\t.slider-handle {\n\t\t\tmargin-left: (-@slider-line-height/2);\n\t\t\t&.triangle {\n\t\t\t\tposition: relative;\n\t\t\t\ttop: 50%;\n\t\t\t\ttransform: translateY(-50%);\n\t\t\t\tborder-width: 0 (@slider-line-height/2) (@slider-line-height/2) (@slider-line-height/2);\n\t\t\t\twidth: 0;\n\t\t\t\theight: 0;\n\t\t\t\tborder-bottom-color: @slider-primary-bottom;\n\t\t\t\tmargin-top: 0;\n\t\t\t}\n\t\t}\n\t\t.slider-tick-container {\n\t\t\twhite-space: nowrap;\n\t\t\tposition: absolute;\n    \ttop: 0;\n    \tleft: 0;\n    \twidth: 100%;\n\t\t}\n\t\t.slider-tick-label-container {\n\t\t\twhite-space: nowrap;\n\t\t\tmargin-top: @slider-line-height;\n\n\t\t\t.slider-tick-label {\n\t\t\t\tpadding-top: @slider-line-height * .2;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\ttext-align: center;\n\t\t\t}\n\t\t}\n\t\t&.slider-rtl {\n\t\t\t.slider-track {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t\t.slider-tick,\n\t\t\t.slider-handle {\n\t\t\t\tmargin-left: initial;\n\t\t\t\tmargin-right: (-@slider-line-height/2);\n\t\t\t}\n\t\t\t.slider-tick-container {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t}\n\t}\n\t&.slider-vertical {\n\t\theight: @slider-vertical-height;\n\t\twidth: @slider-line-height;\n\t\t.slider-track {\n\t\t\twidth: (@slider-line-height/2);\n\t\t\theight: 100%;\n\t\t\tleft: 25%;\n\t\t\ttop: 0;\n\t\t}\n\t\t.slider-selection {\n\t\t\twidth: 100%;\n\t\t\tleft: 0;\n\t\t\ttop: 0;\n\t\t\tbottom: 0;\n\t\t}\n\t\t.slider-track-low, .slider-track-high {\n\t\t\twidth: 100%;\n\t\t\tleft: 0;\n\t\t\tright: 0;\n\t\t}\n\t\t.slider-tick,\n\t\t.slider-handle {\n\t\t\tmargin-top: (-@slider-line-height/2);\n\t\t\t&.triangle {\n\t\t\t\tborder-width: (@slider-line-height/2) 0 (@slider-line-height/2) (@slider-line-height/2);\n\t\t\t\twidth: 1px;\n\t\t\t\theight: 1px;\n\t\t\t\tborder-left-color: @slider-primary-bottom;\n\t\t\t\tborder-right-color: @slider-primary-bottom;\n\t\t\t\tmargin-left: 0;\n\t\t\t\tmargin-right: 0;\n\t\t\t}\n\t\t}\n\t\t.slider-tick-label-container {\n\t\t\twhite-space: nowrap;\n\n\t\t\t.slider-tick-label {\n\t\t\t\tpadding-left: @slider-line-height * .2;\n\t\t\t}\n\t\t}\n\n\t\t&.slider-rtl {\n\t\t\t.slider-track {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 25%;\n\t\t\t}\n\t\t\t.slider-selection {\n\t\t\t\tleft: initial;\n\t\t\t\tright: 0;\n\t\t\t}\n\t\t\t.slider-tick,\n\t\t\t.slider-handle {\n\t\t\t\t&.triangle {\n\t\t\t\t\tborder-width: (@slider-line-height/2) (@slider-line-height/2) (@slider-line-height/2) 0;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.slider-tick-label-container {\n\t\t\t\t.slider-tick-label {\n\t\t\t\t\tpadding-left: initial;\n\t\t\t\t\tpadding-right: @slider-line-height * .2;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t&.slider-disabled {\n\t\t.slider-handle {\n\t\t\t#gradient > .vertical(@slider-gray-2, @slider-gray-1);\n\t\t}\n\t\t.slider-track {\n\t\t\t#gradient > .vertical(@slider-gray-3, @slider-gray-4);\n\t\t\tcursor: not-allowed;\n\t\t}\n\t}\n\tinput {\n\t\tdisplay: none;\n\t}\n\t.tooltip {\n\t\t&.top {\n\t\t\tmargin-top: -36px;\n\t\t}\n\t}\n\t.tooltip-inner {\n\t\twhite-space: nowrap;\n\t\tmax-width: none;\n\t}\n\t.hide {\n\t\tdisplay: none;\n\t}\n}\n.slider-track {\n\tposition: absolute;\n\tcursor: pointer;\n\t#gradient > .vertical(@slider-gray-5, @slider-gray-6);\n\t.box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n\tborder-radius: @border-radius-base;\n}\n.slider-selection {\n\tposition: absolute;\n\t#gradient > .vertical(@slider-gray-6, @slider-gray-5);\n\t.box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n\t.box-sizing(border-box);\n\tborder-radius: @border-radius-base;\n}\n.slider-selection.tick-slider-selection {\n\t#gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n}\n.slider-track-low, .slider-track-high {\n\tposition: absolute;\n\tbackground: transparent;\n\t.box-sizing(border-box);\n\tborder-radius: @border-radius-base;\n}\n.slider-handle {\n\tposition: absolute;\n\ttop: 0;\n\twidth: @slider-line-height;\n\theight: @slider-line-height;\n\tbackground-color: @slider-primary;\n\t#gradient > .vertical(@slider-primary-top, @slider-primary-bottom);\n\tfilter: none;\n\t.box-shadow(~\"inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05)\");\n\tborder: 0px solid transparent;\n\t&.round {\n\t\tborder-radius: 50%;\n\t}\n\t&.triangle {\n\t\tbackground: transparent none;\n\t}\n\t&.custom {\n\t\tbackground: transparent none;\n\t\t&::before{\n\t\t\tline-height: @slider-line-height;\n\t\t\tfont-size: 20px;\n\t\t\tcontent: '\\2605'; //unicode star character\n\t\t\tcolor: @slider-unicode-color;\n\t\t}\n\t}\n}\n.slider-tick {\n\tposition: absolute;\n\twidth: @slider-line-height;\n\theight: @slider-line-height;\n\t#gradient.vertical(@slider-gray-6, @slider-gray-5);\n\t.box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n\t.box-sizing(border-box);\n\tfilter: none;\n\topacity: 0.8;\n\tborder: 0px solid transparent;\n\t&.round {\n\t\tborder-radius: 50%;\n\t}\n\t&.triangle {\n\t\tbackground: transparent none;\n\t}\n\t&.custom {\n\t\tbackground: transparent none;\n\t\t&::before{\n\t\t\tline-height: @slider-line-height;\n\t\t\tfont-size: 20px;\n\t\t\tcontent: '\\2605'; //unicode star character\n\t\t\tcolor: @slider-unicode-color;\n\t\t}\n\t}\n\t&.in-selection {\n\t\t#gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n\t\topacity: 1;\n\t}\n}\n","// Gradients\n\n#gradient {\n\n  // Horizontal gradient, from left to right\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n    background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  // Vertical gradient, from top to bottom\n  //\n  // Creates two color stops, start and end, by specifying a color and position for each color stop.\n  // Color stops are not available in IE9 and below.\n  .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n    background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent);  // Opera 12\n    background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n    background-repeat: repeat-x;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n  }\n\n  .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n    background-repeat: repeat-x;\n    background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n    background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n    background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n  }\n  .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n    background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n    background-repeat: no-repeat;\n    filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n  }\n  .radial(@inner-color: #555; @outer-color: #333) {\n    background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n    background-image: radial-gradient(circle, @inner-color, @outer-color);\n    background-repeat: no-repeat;\n  }\n  .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n    background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n    background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n  }\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n  -webkit-animation: @animation;\n       -o-animation: @animation;\n          animation: @animation;\n}\n.animation-name(@name) {\n  -webkit-animation-name: @name;\n          animation-name: @name;\n}\n.animation-duration(@duration) {\n  -webkit-animation-duration: @duration;\n          animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n  -webkit-animation-timing-function: @timing-function;\n          animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n  -webkit-animation-delay: @delay;\n          animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n  -webkit-animation-iteration-count: @iteration-count;\n          animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n  -webkit-animation-direction: @direction;\n          animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n  -webkit-animation-fill-mode: @fill-mode;\n          animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n  -webkit-backface-visibility: @visibility;\n     -moz-backface-visibility: @visibility;\n          backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n  -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n          box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n  -webkit-box-sizing: @boxmodel;\n     -moz-box-sizing: @boxmodel;\n          box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n  -webkit-column-count: @column-count;\n     -moz-column-count: @column-count;\n          column-count: @column-count;\n  -webkit-column-gap: @column-gap;\n     -moz-column-gap: @column-gap;\n          column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n  word-wrap: break-word;\n  -webkit-hyphens: @mode;\n     -moz-hyphens: @mode;\n      -ms-hyphens: @mode; // IE10+\n       -o-hyphens: @mode;\n          hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  // Firefox\n  &::-moz-placeholder {\n    color: @color;\n    opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n  }\n  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n  -webkit-transform: scale(@ratio);\n      -ms-transform: scale(@ratio); // IE9 only\n       -o-transform: scale(@ratio);\n          transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n  -webkit-transform: scale(@ratioX, @ratioY);\n      -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n       -o-transform: scale(@ratioX, @ratioY);\n          transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n  -webkit-transform: scaleX(@ratio);\n      -ms-transform: scaleX(@ratio); // IE9 only\n       -o-transform: scaleX(@ratio);\n          transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n  -webkit-transform: scaleY(@ratio);\n      -ms-transform: scaleY(@ratio); // IE9 only\n       -o-transform: scaleY(@ratio);\n          transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n  -webkit-transform: skewX(@x) skewY(@y);\n      -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n       -o-transform: skewX(@x) skewY(@y);\n          transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n  -webkit-transform: translate(@x, @y);\n      -ms-transform: translate(@x, @y); // IE9 only\n       -o-transform: translate(@x, @y);\n          transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n  -webkit-transform: translate3d(@x, @y, @z);\n          transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n  -webkit-transform: rotate(@degrees);\n      -ms-transform: rotate(@degrees); // IE9 only\n       -o-transform: rotate(@degrees);\n          transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n  -webkit-transform: rotateX(@degrees);\n      -ms-transform: rotateX(@degrees); // IE9 only\n       -o-transform: rotateX(@degrees);\n          transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n  -webkit-transform: rotateY(@degrees);\n      -ms-transform: rotateY(@degrees); // IE9 only\n       -o-transform: rotateY(@degrees);\n          transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n  -webkit-perspective: @perspective;\n     -moz-perspective: @perspective;\n          perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n  -webkit-perspective-origin: @perspective;\n     -moz-perspective-origin: @perspective;\n          perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n  -webkit-transform-origin: @origin;\n     -moz-transform-origin: @origin;\n      -ms-transform-origin: @origin; // IE9 only\n          transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n  -webkit-transition: @transition;\n       -o-transition: @transition;\n          transition: @transition;\n}\n.transition-property(@transition-property) {\n  -webkit-transition-property: @transition-property;\n          transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n  -webkit-transition-delay: @transition-delay;\n          transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n  -webkit-transition-duration: @transition-duration;\n          transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n  -webkit-transition-timing-function: @timing-function;\n          transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n  -webkit-transition: -webkit-transform @transition;\n     -moz-transition: -moz-transform @transition;\n       -o-transition: -o-transform @transition;\n          transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n  -webkit-user-select: @select;\n     -moz-user-select: @select;\n      -ms-user-select: @select; // IE10+\n          user-select: @select;\n}\n","@media (min-width: 768px) {\n  .form-search,\n  .form-inline {\n    .combobox-container {\n      display: inline-block;\n      margin-bottom: 0;\n      vertical-align: top;\n      .input-group-addon {\n        width: auto;\n      }\n    }\n  }\n}\n\n.combobox-selected .caret {\n  display: none;\n}\n\n/* :not doesn't work in IE8 */\n.combobox-container:not(.combobox-selected) .glyphicon-remove {\n  display: none;\n}\n\n.typeahead-long {\n  max-height: 300px;\n  overflow-y: auto;\n}\n\n.control-group.error .combobox-container{\n  .add-on {\n    color: #B94A48;\n    border-color: #B94A48;\n  }\n  .caret {\n    border-top-color: #B94A48;\n  }\n}\n\n.control-group.warning .combobox-container {\n  .add-on {\n    color: #C09853;\n    border-color: #C09853;\n  }\n  .caret {\n    border-top-color: #C09853;\n  }\n}\n\n.control-group.success .combobox-container{\n  .add-on {\n    color: #468847;\n    border-color: #468847;\n  }\n  .caret {\n    border-top-color: #468847;\n  }\n}\n",".datepicker {\n\tborder-radius: @border-radius-base;\n\t&-inline {\n\t\twidth: 220px;\n\t}\n\tdirection: ltr;\n\t&-rtl {\n\t\tdirection: rtl;\n\t\t&.dropdown-menu { left: auto; }\n\t\ttable tr td span {\n\t\t\tfloat: right;\n\t\t}\n\t}\n\t&-dropdown {\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tpadding: 4px;\n\t\t&:before {\n\t\t\tcontent: '';\n\t\t\tdisplay: inline-block;\n\t\t\tborder-left:   7px solid transparent;\n\t\t\tborder-right:  7px solid transparent;\n\t\t\tborder-bottom: 7px solid @dropdown-border;\n\t\t\tborder-top:    0;\n\t\t\tborder-bottom-color: rgba(0,0,0,.2);\n\t\t\tposition: absolute;\n\t\t}\n\t\t&:after {\n\t\t\tcontent: '';\n\t\t\tdisplay: inline-block;\n\t\t\tborder-left:   6px solid transparent;\n\t\t\tborder-right:  6px solid transparent;\n\t\t\tborder-bottom: 6px solid @dropdown-bg;\n\t\t\tborder-top:    0;\n\t\t\tposition: absolute;\n\t\t}\n\t\t&.datepicker-orient-left:before   { left: 6px; }\n\t\t&.datepicker-orient-left:after    { left: 7px; }\n\t\t&.datepicker-orient-right:before  { right: 6px; }\n\t\t&.datepicker-orient-right:after   { right: 7px; }\n\t\t&.datepicker-orient-bottom:before { top: -7px; }\n\t\t&.datepicker-orient-bottom:after  { top: -6px; }\n\t\t&.datepicker-orient-top:before {\n\t\t\tbottom: -7px;\n\t\t\tborder-bottom: 0;\n\t\t\tborder-top:    7px solid @dropdown-border;\n\t\t}\n\t\t&.datepicker-orient-top:after {\n\t\t\tbottom: -6px;\n\t\t\tborder-bottom: 0;\n\t\t\tborder-top:    6px solid @dropdown-bg;\n\t\t}\n\t}\n\ttable {\n\t\tmargin: 0;\n\t\t-webkit-touch-callout: none;\n\t\t-webkit-user-select: none;\n\t\t-khtml-user-select: none;\n\t\t-moz-user-select: none;\n\t\t-ms-user-select: none;\n\t\tuser-select: none;\n\t\ttr {\n\t\t\ttd, th {\n\t\t\t\ttext-align: center;\n\t\t\t\twidth: 30px;\n\t\t\t\theight: 30px;\n\t\t\t\tborder-radius: 4px;\n\t\t\t\tborder: none;\n\t\t\t}\n\t\t}\n\t}\n\t// Inline display inside a table presents some problems with\n\t// border and background colors.\n\t.table-striped & table tr {\n\t\ttd, th {\n\t\t\tbackground-color: transparent;\n\t\t}\n\t}\n\ttable tr td {\n\t\t&.old,\n\t\t&.new {\n\t\t\tcolor: @btn-link-disabled-color;\n\t\t}\n\t\t&.day:hover,\n\t\t&.focused {\n\t\t\tbackground: @gray-lighter;\n\t\t\tcursor: pointer;\n\t\t}\n\t\t&.disabled,\n\t\t&.disabled:hover {\n\t\t\tbackground: none;\n\t\t\tcolor: @btn-link-disabled-color;\n\t\t\tcursor: default;\n\t\t}\n\t\t&.highlighted {\n\t\t\t@highlighted-bg: @state-info-bg;\n\t\t\t.button-variant(#000, @highlighted-bg, darken(@highlighted-bg, 20%));\n\t\t\tborder-radius: 0;\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@highlighted-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @highlighted-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.today {\n\t\t\t@today-bg: lighten(orange, 30%);\n\t\t\t.button-variant(#000, @today-bg, darken(@today-bg, 20%));\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@today-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @today-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range {\n\t\t\t@range-bg: @gray-lighter;\n\t\t\t.button-variant(#000, @range-bg, darken(@range-bg, 20%));\n\t\t\tborder-radius: 0;\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@range-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range.highlighted {\n\t\t\t@range-highlighted-bg: mix(@state-info-bg, @gray-lighter, 50%);\n\t\t\t.button-variant(#000, @range-highlighted-bg, darken(@range-highlighted-bg, 20%));\n\n\t\t\t&.focused {\n\t\t\t\tbackground: darken(@range-highlighted-bg, 10%);\n\t\t\t}\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-highlighted-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.range.today {\n\t\t\t@range-today-bg: mix(orange, @gray-lighter, 50%);\n\t\t\t.button-variant(#000, @range-today-bg, darken(@range-today-bg, 20%));\n\n\t\t\t&.disabled,\n\t\t\t&.disabled:active {\n\t\t\t\tbackground: @range-today-bg;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t\t&.selected,\n\t\t&.selected.highlighted {\n\t\t\t.button-variant(#fff, @gray-light, @gray);\n\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t}\n\t\t&.active,\n\t\t&.active.highlighted {\n\t\t\t.button-variant(@btn-primary-color, @btn-primary-bg, @btn-primary-border);\n\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t}\n\t\tspan {\n\t\t\tdisplay: block;\n\t\t\twidth: 23%;\n\t\t\theight: 54px;\n\t\t\tline-height: 54px;\n\t\t\tfloat: left;\n\t\t\tmargin: 1%;\n\t\t\tcursor: pointer;\n\t\t\tborder-radius: 4px;\n\t\t\t&:hover,\n\t\t\t&.focused {\n\t\t\t\tbackground: @gray-lighter;\n\t\t\t}\n\t\t\t&.disabled,\n\t\t\t&.disabled:hover {\n\t\t\t\tbackground: none;\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t\tcursor: default;\n\t\t\t}\n\t\t\t&.active,\n\t\t\t&.active:hover,\n\t\t\t&.active.disabled,\n\t\t\t&.active.disabled:hover {\n\t\t\t\t.button-variant(@btn-primary-color, @btn-primary-bg, @btn-primary-border);\n\t\t\t\ttext-shadow: 0 -1px 0 rgba(0,0,0,.25);\n\t\t\t}\n\t\t\t&.old,\n\t\t\t&.new {\n\t\t\t\tcolor: @btn-link-disabled-color;\n\t\t\t}\n\t\t}\n\t}\n\n\t.datepicker-switch {\n\t\twidth: 145px;\n\t}\n\n\t.datepicker-switch,\n\t.prev,\n\t.next,\n\ttfoot tr th {\n\t\tcursor: pointer;\n\t\t&:hover {\n\t\t\tbackground: @gray-lighter;\n\t\t}\n\t}\n\n\t.prev, .next {\n\t\t&.disabled {\n\t\t\tvisibility: hidden;\n\t\t}\n\t}\n\n\t// Basic styling for calendar-week cells\n\t.cw {\n\t\tfont-size: 10px;\n\t\twidth: 12px;\n\t\tpadding: 0 2px 0 5px;\n\t\tvertical-align: middle;\n\t}\n}\n.input-group.date .input-group-addon {\n\tcursor: pointer;\n}\n.input-daterange {\n\twidth: 100%;\n\tinput {\n\t\ttext-align: center;\n\t}\n\tinput:first-child {\n\t\tborder-radius: 3px 0 0 3px;\n\t}\n\tinput:last-child {\n\t\tborder-radius: 0 3px 3px 0;\n\t}\n\t.input-group-addon {\n\t\twidth: auto;\n\t\tmin-width: 16px;\n\t\tpadding: 4px 5px;\n\t\tline-height: @line-height-base;\n\t\ttext-shadow: 0 1px 0 #fff;\n\t\tborder-width: 1px 0;\n\t\tmargin-left: -5px;\n\t\tmargin-right: -5px;\n\t}\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n  color: @color;\n  background-color: @background;\n  border-color: @border;\n\n  &:focus,\n  &.focus {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 25%);\n  }\n  &:hover {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    color: @color;\n    background-color: darken(@background, 10%);\n        border-color: darken(@border, 12%);\n\n    &:hover,\n    &:focus,\n    &.focus {\n      color: @color;\n      background-color: darken(@background, 17%);\n          border-color: darken(@border, 25%);\n    }\n  }\n  &:active,\n  &.active,\n  .open > .dropdown-toggle& {\n    background-image: none;\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: @background;\n          border-color: @border;\n    }\n  }\n\n  .badge {\n    color: @background;\n    background-color: @color;\n  }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n  padding: @padding-vertical @padding-horizontal;\n  font-size: @font-size;\n  line-height: @line-height;\n  border-radius: @border-radius;\n}\n","@import \"variables\";\n\n// Mixins\n.cursor-disabled() {\n  cursor: not-allowed;\n}\n\n// Rules\nselect.bs-select-hidden,\nselect.selectpicker {\n  display: none !important;\n}\n\n.bootstrap-select {\n  width: 220px \\0; /*IE9 and below*/\n\n  // The selectpicker button\n  > .dropdown-toggle {\n    width: 100%;\n    padding-right: 25px;\n    z-index: 1;\n\n    &.bs-placeholder,\n    &.bs-placeholder:hover,\n    &.bs-placeholder:focus,\n    &.bs-placeholder:active { color: @input-color-placeholder; }\n  }\n\n  > select {\n    position: absolute !important;\n    bottom: 0;\n    left: 50%;\n    display: block !important;\n    width: 0.5px !important;\n    height: 100% !important;\n    padding: 0 !important;\n    opacity: 0 !important;\n    border: none;\n\n    &.mobile-device {\n      top: 0;\n      left: 0;\n      display: block !important;\n      width: 100% !important;\n      z-index: 2;\n    }\n  }\n\n  // Error display\n  .has-error & .dropdown-toggle,\n  .error & .dropdown-toggle {\n    border-color: @color-red-error;\n  }\n\n  &.fit-width {\n    width: auto !important;\n  }\n\n  &:not([class*=\"col-\"]):not([class*=\"form-control\"]):not(.input-group-btn) {\n    width: @width-default;\n  }\n\n  .dropdown-toggle:focus {\n    outline: thin dotted #333333 !important;\n    outline: 5px auto -webkit-focus-ring-color !important;\n    outline-offset: -2px;\n  }\n}\n\n.bootstrap-select.form-control {\n  margin-bottom: 0;\n  padding: 0;\n  border: none;\n\n  &:not([class*=\"col-\"]) {\n    width: 100%;\n  }\n\n  &.input-group-btn {\n    z-index: auto;\n\n    &:not(:first-child):not(:last-child) {\n      > .btn {\n        border-radius: 0;\n      }\n    }\n  }\n}\n\n// The selectpicker components\n.bootstrap-select.btn-group {\n  &:not(.input-group-btn),\n  &[class*=\"col-\"] {\n    float: none;\n    display: inline-block;\n    margin-left: 0;\n  }\n\n  // Forces the pull to the right, if necessary\n  &,\n  &[class*=\"col-\"],\n  .row &[class*=\"col-\"] {\n    &.dropdown-menu-right {\n      float: right;\n    }\n  }\n\n  .form-inline &,\n  .form-horizontal &,\n  .form-group & {\n    margin-bottom: 0;\n  }\n\n  .form-group-lg &.form-control,\n  .form-group-sm &.form-control {\n    padding: 0;\n\n    .dropdown-toggle {\n      height: 100%;\n      font-size: inherit;\n      line-height: inherit;\n      border-radius: inherit;\n    }\n  }\n\n  // Set the width of the live search (and any other form control within an inline form)\n  // see https://github.com/silviomoreto/bootstrap-select/issues/685\n  .form-inline & .form-control {\n    width: 100%;\n  }\n\n  &.disabled,\n  > .disabled {\n    .cursor-disabled();\n\n    &:focus {\n      outline: none !important;\n    }\n  }\n\n  &.bs-container {\n    position: absolute;\n    height: 0 !important;\n    padding: 0 !important;\n    \n    .dropdown-menu {\n      z-index: @zindex-select-dropdown;\n    }\n  }\n\n  // The selectpicker button\n  .dropdown-toggle {\n    .filter-option {\n      display: inline-block;\n      overflow: hidden;\n      width: 100%;\n      text-align: left;\n    }\n\n    .caret {\n      position: absolute;\n      top: 50%;\n      right: 12px;\n      margin-top: -2px;\n      vertical-align: middle;\n    }\n  }\n\n  &[class*=\"col-\"] .dropdown-toggle {\n    width: 100%;\n  }\n\n  // The selectpicker dropdown\n  .dropdown-menu {\n    min-width: 100%;\n    box-sizing: border-box;\n\n    &.inner {\n      position: static;\n      float: none;\n      border: 0;\n      padding: 0;\n      margin: 0;\n      border-radius: 0;\n      box-shadow: none;\n    }\n\n    li {\n      position: relative;\n\n      &.active small {\n        color: #fff;\n      }\n\n      &.disabled a {\n        .cursor-disabled();\n      }\n\n      a {\n        cursor: pointer;\n        user-select: none;\n\n        &.opt {\n          position: relative;\n          padding-left: 2.25em;\n        }\n\n        span.check-mark {\n          display: none;\n        }\n\n        span.text {\n          display: inline-block;\n        }\n      }\n\n      small {\n        padding-left: 0.5em;\n      }\n    }\n\n    .notify {\n      position: absolute;\n      bottom: 5px;\n      width: 96%;\n      margin: 0 2%;\n      min-height: 26px;\n      padding: 3px 5px;\n      background: rgb(245, 245, 245);\n      border: 1px solid rgb(227, 227, 227);\n      box-shadow: inset 0 1px 1px fade(rgb(0, 0, 0), 5%);\n      pointer-events: none;\n      opacity: 0.9;\n      box-sizing: border-box;\n    }\n  }\n\n  .no-results {\n    padding: 3px;\n    background: #f5f5f5;\n    margin: 0 5px;\n    white-space: nowrap;\n  }\n\n  &.fit-width .dropdown-toggle {\n    .filter-option {\n      position: static;\n    }\n\n    .caret {\n      position: static;\n      top: auto;\n      margin-top: -1px;\n    }\n  }\n\n  &.show-tick .dropdown-menu li {\n    &.selected a span.check-mark {\n      position: absolute;\n      display: inline-block;\n      right: 15px;\n      margin-top: 5px;\n    }\n\n    a span.text {\n      margin-right: 34px;\n    }\n  }\n}\n\n.bootstrap-select.show-menu-arrow {\n  &.open > .dropdown-toggle {\n    z-index: (@zindex-select-dropdown + 1);\n  }\n\n  .dropdown-toggle {\n    &:before {\n      content: '';\n      border-left: 7px solid transparent;\n      border-right: 7px solid transparent;\n      border-bottom: 7px solid @color-grey-arrow;\n      position: absolute;\n      bottom: -4px;\n      left: 9px;\n      display: none;\n    }\n\n    &:after {\n      content: '';\n      border-left: 6px solid transparent;\n      border-right: 6px solid transparent;\n      border-bottom: 6px solid white;\n      position: absolute;\n      bottom: -4px;\n      left: 10px;\n      display: none;\n    }\n  }\n\n  &.dropup .dropdown-toggle {\n    &:before {\n      bottom: auto;\n      top: -3px;\n      border-top: 7px solid @color-grey-arrow;\n      border-bottom: 0;\n    }\n\n    &:after {\n      bottom: auto;\n      top: -3px;\n      border-top: 6px solid white;\n      border-bottom: 0;\n    }\n  }\n\n  &.pull-right .dropdown-toggle {\n    &:before {\n      right: 12px;\n      left: auto;\n    }\n\n    &:after {\n      right: 13px;\n      left: auto;\n    }\n  }\n\n  &.open > .dropdown-toggle {\n    &:before,\n    &:after {\n      display: block;\n    }\n  }\n}\n\n.bs-searchbox,\n.bs-actionsbox,\n.bs-donebutton {\n  padding: 4px 8px;\n}\n\n.bs-actionsbox {\n  width: 100%;\n  box-sizing: border-box;\n\n  & .btn-group button {\n    width: 50%;\n  }\n}\n\n.bs-donebutton {\n  float: left;\n  width: 100%;\n  box-sizing: border-box;\n\n  & .btn-group button {\n    width: 100%;\n  }\n}\n\n.bs-searchbox {\n  & + .bs-actionsbox {\n    padding: 0 8px 4px;\n  }\n\n  & .form-control {\n    margin-bottom: 0;\n    width: 100%;\n    float: none;\n  }\n}\n","@bootstrap-switch-base: bootstrap-switch;\n\n.@{bootstrap-switch-base} {\n  display: inline-block;\n  direction: ltr;\n  cursor: pointer;\n  border-radius: @border-radius-base;\n  border: 1px solid;\n  border-color: @btn-default-border;\n  position: relative;\n  text-align: left;\n  overflow: hidden;\n  line-height: 8px;\n  z-index: 0;\n  .user-select(none);\n  vertical-align: middle;\n  .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n  .@{bootstrap-switch-base}-container {\n    display: inline-block;\n    top: 0;\n    border-radius: @border-radius-base;\n    .translate3d(0, 0, 0);\n  }\n\n  .@{bootstrap-switch-base}-handle-on,\n  .@{bootstrap-switch-base}-handle-off,\n  .@{bootstrap-switch-base}-label {\n    .box-sizing(border-box);\n    cursor: pointer;\n    display: table-cell;\n    vertical-align: middle;\n    padding: @padding-base-vertical @padding-base-horizontal;\n    font-size: @font-size-base;\n    line-height: @line-height-computed;\n  }\n\n  .@{bootstrap-switch-base}-handle-on,\n  .@{bootstrap-switch-base}-handle-off {\n    text-align: center;\n    z-index: 1;\n\n    &.@{bootstrap-switch-base}-primary {\n      color: #fff;\n      background: @btn-primary-bg;\n    }\n\n    &.@{bootstrap-switch-base}-info {\n      color: #fff;\n      background: @btn-info-bg;\n    }\n\n    &.@{bootstrap-switch-base}-success {\n      color: #fff;\n      background: @btn-success-bg;\n    }\n\n    &.@{bootstrap-switch-base}-warning {\n      background: @btn-warning-bg;\n      color: #fff;\n    }\n\n    &.@{bootstrap-switch-base}-danger {\n      color: #fff;\n      background: @btn-danger-bg;\n    }\n\n    &.@{bootstrap-switch-base}-default {\n      color: #000;\n      background: @gray-lighter;\n    }\n  }\n\n  .@{bootstrap-switch-base}-label {\n    text-align: center;\n    margin-top: -1px;\n    margin-bottom: -1px;\n    z-index: 100;\n    color: @btn-default-color;\n    background: @btn-default-bg;\n  }\n\n  span::before {\n    content: \"\\200b\";\n  }\n\n  .@{bootstrap-switch-base}-handle-on {\n    .border-left-radius(@border-radius-base - 1);\n  }\n\n  .@{bootstrap-switch-base}-handle-off {\n    .border-right-radius(@border-radius-base - 1);\n  }\n\n  input[type='radio'],\n  input[type='checkbox'] {\n    position: absolute !important;\n    top: 0;\n    left: 0;\n    margin: 0;\n    z-index: -1;\n    .opacity(0);\n    visibility: hidden;\n  }\n\n  &.@{bootstrap-switch-base}-mini {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-xs-vertical @padding-xs-horizontal;\n      font-size: @font-size-small;\n      line-height: @line-height-small;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-small {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-small-vertical @padding-small-horizontal;\n      font-size: @font-size-small;\n      line-height: @line-height-small;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-large {\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      padding: @padding-base-vertical @padding-large-horizontal;\n      font-size: @font-size-large;\n      line-height: @line-height-large;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-disabled,\n  &.@{bootstrap-switch-base}-readonly,\n  &.@{bootstrap-switch-base}-indeterminate {\n    cursor: default !important;\n\n    .@{bootstrap-switch-base}-handle-on,\n    .@{bootstrap-switch-base}-handle-off,\n    .@{bootstrap-switch-base}-label {\n      .opacity(.5);\n      cursor: default !important;\n    }\n  }\n\n  &.@{bootstrap-switch-base}-animate {\n\n    .@{bootstrap-switch-base}-container {\n      .transition(margin-left .5s);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-inverse {\n\n    .@{bootstrap-switch-base}-handle-on {\n      .border-left-radius(0);\n      .border-right-radius(@border-radius-base - 1);\n    }\n\n    .@{bootstrap-switch-base}-handle-off {\n      .border-right-radius(0);\n      .border-left-radius(@border-radius-base - 1);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-focused {\n    @color-rgba: rgba(red(@input-border-focus), green(@input-border-focus), blue(@input-border-focus), .6);\n    border-color: @input-border-focus;\n    outline: 0;\n    .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n  }\n\n  &.@{bootstrap-switch-base}-on,\n  &.@{bootstrap-switch-base}-inverse.@{bootstrap-switch-base}-off {\n\n    .@{bootstrap-switch-base}-label {\n      .border-right-radius(@border-radius-base - 1);\n    }\n  }\n\n  &.@{bootstrap-switch-base}-off,\n  &.@{bootstrap-switch-base}-inverse.@{bootstrap-switch-base}-on {\n\n\n    .@{bootstrap-switch-base}-label {\n      .border-left-radius(@border-radius-base - 1);\n    }\n  }\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n  border-top-right-radius: @radius;\n   border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n  border-bottom-right-radius: @radius;\n     border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n  border-bottom-right-radius: @radius;\n   border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n  border-bottom-left-radius: @radius;\n     border-top-left-radius: @radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n  opacity: @opacity;\n  // IE8 filter\n  @opacity-ie: (@opacity * 100);\n  filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","/*\n *  Bootstrap TouchSpin - v3.1.1\n *  A mobile and touch friendly input spinner component for Bootstrap 3.\n *  http://www.virtuosoft.eu/code/bootstrap-touchspin/\n *\n *  Made by István Ujj-Mészáros\n *  Under Apache License v2.0 License\n */\n\n.bootstrap-touchspin .input-group-btn-vertical {\n  position: relative;\n  white-space: nowrap;\n  width: 1%;\n  vertical-align: middle;\n  display: table-cell;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical > .btn {\n  display: block;\n  float: none;\n  width: 100%;\n  max-width: 100%;\n  padding: 8px 10px;\n  margin-left: -1px;\n  position: relative;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {\n  border-radius: 0;\n  border-top-right-radius: 4px;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {\n  margin-top: -2px;\n  border-radius: 0;\n  border-bottom-right-radius: 4px;\n}\n\n.bootstrap-touchspin .input-group-btn-vertical i {\n  position: absolute;\n  top: 3px;\n  left: 5px;\n  font-size: 9px;\n  font-weight: normal;\n}\n","/*-- Chart --*/\n.c3 svg {\n  font: 10px sans-serif;\n  -webkit-tap-highlight-color: transparent; }\n\n.c3 path, .c3 line {\n  fill: none;\n  stroke: #000; }\n\n.c3 text {\n  -webkit-user-select: none;\n  -moz-user-select: none;\n  user-select: none; }\n\n.c3-legend-item-tile,\n.c3-xgrid-focus,\n.c3-ygrid,\n.c3-event-rect,\n.c3-bars path {\n  shape-rendering: crispEdges; }\n\n.c3-chart-arc path {\n  stroke: #fff; }\n\n.c3-chart-arc rect {\n  stroke: white;\n  stroke-width: 1; }\n\n.c3-chart-arc text {\n  fill: #fff;\n  font-size: 13px; }\n\n/*-- Axis --*/\n/*-- Grid --*/\n.c3-grid line {\n  stroke: #aaa; }\n\n.c3-grid text {\n  fill: #aaa; }\n\n.c3-xgrid, .c3-ygrid {\n  stroke-dasharray: 3 3; }\n\n/*-- Text on Chart --*/\n.c3-text.c3-empty {\n  fill: #808080;\n  font-size: 2em; }\n\n/*-- Line --*/\n.c3-line {\n  stroke-width: 1px; }\n\n/*-- Point --*/\n.c3-circle._expanded_ {\n  stroke-width: 1px;\n  stroke: white; }\n\n.c3-selected-circle {\n  fill: white;\n  stroke-width: 2px; }\n\n/*-- Bar --*/\n.c3-bar {\n  stroke-width: 0; }\n\n.c3-bar._expanded_ {\n  fill-opacity: 1;\n  fill-opacity: 0.75; }\n\n/*-- Focus --*/\n.c3-target.c3-focused {\n  opacity: 1; }\n\n.c3-target.c3-focused path.c3-line, .c3-target.c3-focused path.c3-step {\n  stroke-width: 2px; }\n\n.c3-target.c3-defocused {\n  opacity: 0.3 !important; }\n\n/*-- Region --*/\n.c3-region {\n  fill: steelblue;\n  fill-opacity: .1; }\n\n/*-- Brush --*/\n.c3-brush .extent {\n  fill-opacity: .1; }\n\n/*-- Select - Drag --*/\n/*-- Legend --*/\n.c3-legend-item {\n  font-size: 12px; }\n\n.c3-legend-item-hidden {\n  opacity: 0.15; }\n\n.c3-legend-background {\n  opacity: 0.75;\n  fill: white;\n  stroke: lightgray;\n  stroke-width: 1; }\n\n/*-- Title --*/\n.c3-title {\n  font: 14px sans-serif; }\n\n/*-- Tooltip --*/\n.c3-tooltip-container {\n  z-index: 10; }\n\n.c3-tooltip {\n  border-collapse: collapse;\n  border-spacing: 0;\n  background-color: #fff;\n  empty-cells: show;\n  -webkit-box-shadow: 7px 7px 12px -9px #777777;\n  -moz-box-shadow: 7px 7px 12px -9px #777777;\n  box-shadow: 7px 7px 12px -9px #777777;\n  opacity: 0.9; }\n\n.c3-tooltip tr {\n  border: 1px solid #CCC; }\n\n.c3-tooltip th {\n  background-color: #aaa;\n  font-size: 14px;\n  padding: 2px 5px;\n  text-align: left;\n  color: #FFF; }\n\n.c3-tooltip td {\n  font-size: 13px;\n  padding: 3px 6px;\n  background-color: #fff;\n  border-left: 1px dotted #999; }\n\n.c3-tooltip td > span {\n  display: inline-block;\n  width: 10px;\n  height: 10px;\n  margin-right: 6px; }\n\n.c3-tooltip td.value {\n  text-align: right; }\n\n/*-- Area --*/\n.c3-area {\n  stroke-width: 0;\n  opacity: 0.2; }\n\n/*-- Arc --*/\n.c3-chart-arcs-title {\n  dominant-baseline: middle;\n  font-size: 1.3em; }\n\n.c3-chart-arcs .c3-chart-arcs-background {\n  fill: #e0e0e0;\n  stroke: #FFF; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-unit {\n  fill: #000;\n  font-size: 16px; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-max {\n  fill: #777; }\n\n.c3-chart-arcs .c3-chart-arcs-gauge-min {\n  fill: #777; }\n\n.c3-chart-arc .c3-gauge-value {\n  fill: #000;\n  /*  font-size: 28px !important;*/ }\n\n.c3-chart-arc.c3-target g path {\n  opacity: 1; }\n\n.c3-chart-arc.c3-target.c3-focused g path {\n  opacity: 1; }\n","/*!\n * Datetimepicker for Bootstrap 3\n * version : 4.17.47\n * https://github.com/Eonasdan/bootstrap-datetimepicker/\n */\n@bs-datetimepicker-timepicker-font-size: 1.2em;\n@bs-datetimepicker-active-bg: @btn-primary-bg;\n@bs-datetimepicker-active-color: @btn-primary-color;\n@bs-datetimepicker-border-radius: @border-radius-base;\n@bs-datetimepicker-btn-hover-bg: @gray-lighter;\n@bs-datetimepicker-disabled-color: @gray-light;\n@bs-datetimepicker-alternate-color: @gray-light;\n@bs-datetimepicker-secondary-border-color: #ccc;\n@bs-datetimepicker-secondary-border-color-rgba: rgba(0, 0, 0, 0.2);\n@bs-datetimepicker-primary-border-color: white;\n@bs-datetimepicker-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n\n.bootstrap-datetimepicker-widget {\n    list-style: none;\n\n    &.dropdown-menu {\n        display: block;\n        margin: 2px 0;\n        padding: 4px;\n        width: 19em;\n\n        &.timepicker-sbs {\n            @media (min-width: @screen-sm-min) {\n                width: 38em;\n            }\n\n            @media (min-width: @screen-md-min) {\n                width: 38em;\n            }\n\n            @media (min-width: @screen-lg-min) {\n                width: 38em;\n            }\n        }\n\n        &:before, &:after {\n            content: '';\n            display: inline-block;\n            position: absolute;\n        }\n\n        &.bottom {\n            &:before {\n                border-left: 7px solid transparent;\n                border-right: 7px solid transparent;\n                border-bottom: 7px solid @bs-datetimepicker-secondary-border-color;\n                border-bottom-color: @bs-datetimepicker-secondary-border-color-rgba;\n                top: -7px;\n                left: 7px;\n            }\n\n            &:after {\n                border-left: 6px solid transparent;\n                border-right: 6px solid transparent;\n                border-bottom: 6px solid @bs-datetimepicker-primary-border-color;\n                top: -6px;\n                left: 8px;\n            }\n        }\n\n        &.top {\n            &:before {\n                border-left: 7px solid transparent;\n                border-right: 7px solid transparent;\n                border-top: 7px solid @bs-datetimepicker-secondary-border-color;\n                border-top-color: @bs-datetimepicker-secondary-border-color-rgba;\n                bottom: -7px;\n                left: 6px;\n            }\n\n            &:after {\n                border-left: 6px solid transparent;\n                border-right: 6px solid transparent;\n                border-top: 6px solid @bs-datetimepicker-primary-border-color;\n                bottom: -6px;\n                left: 7px;\n            }\n        }\n\n        &.pull-right {\n            &:before {\n                left: auto;\n                right: 6px;\n            }\n\n            &:after {\n                left: auto;\n                right: 7px;\n            }\n        }\n    }\n\n    .list-unstyled {\n        margin: 0;\n    }\n\n    a[data-action] {\n        padding: 6px 0;\n    }\n\n    a[data-action]:active {\n        box-shadow: none;\n    }\n\n    .timepicker-hour, .timepicker-minute, .timepicker-second {\n        width: 54px;\n        font-weight: bold;\n        font-size: @bs-datetimepicker-timepicker-font-size;\n        margin: 0;\n    }\n\n    button[data-action] {\n        padding: 6px;\n    }\n\n    .btn[data-action=\"incrementHours\"]::after {\n        .sr-only();\n        content: \"Increment Hours\";\n    }\n\n    .btn[data-action=\"incrementMinutes\"]::after {\n        .sr-only();\n        content: \"Increment Minutes\";\n    }\n\n    .btn[data-action=\"decrementHours\"]::after {\n        .sr-only();\n        content: \"Decrement Hours\";\n    }\n\n    .btn[data-action=\"decrementMinutes\"]::after {\n        .sr-only();\n        content: \"Decrement Minutes\";\n    }\n\n    .btn[data-action=\"showHours\"]::after {\n        .sr-only();\n        content: \"Show Hours\";\n    }\n\n    .btn[data-action=\"showMinutes\"]::after {\n        .sr-only();\n        content: \"Show Minutes\";\n    }\n\n    .btn[data-action=\"togglePeriod\"]::after {\n        .sr-only();\n        content: \"Toggle AM/PM\";\n    }\n\n    .btn[data-action=\"clear\"]::after {\n        .sr-only();\n        content: \"Clear the picker\";\n    }\n\n    .btn[data-action=\"today\"]::after {\n        .sr-only();\n        content: \"Set the date to today\";\n    }\n\n    .picker-switch {\n        text-align: center;\n\n        &::after {\n            .sr-only();\n            content: \"Toggle Date and Time Screens\";\n        }\n\n        td {\n            padding: 0;\n            margin: 0;\n            height: auto;\n            width: auto;\n            line-height: inherit;\n\n            span {\n                line-height: 2.5;\n                height: 2.5em;\n                width: 100%;\n            }\n        }\n    }\n\n    table {\n        width: 100%;\n        margin: 0;\n\n\n        & td,\n        & th {\n            text-align: center;\n            border-radius: @bs-datetimepicker-border-radius;\n        }\n\n        & th {\n            height: 20px;\n            line-height: 20px;\n            width: 20px;\n\n            &.picker-switch {\n                width: 145px;\n            }\n\n            &.disabled,\n            &.disabled:hover {\n                background: none;\n                color: @bs-datetimepicker-disabled-color;\n                cursor: not-allowed;\n            }\n\n            &.prev::after {\n                .sr-only();\n                content: \"Previous Month\";\n            }\n\n            &.next::after {\n                .sr-only();\n                content: \"Next Month\";\n            }\n        }\n\n        & thead tr:first-child th {\n            cursor: pointer;\n\n            &:hover {\n                background: @bs-datetimepicker-btn-hover-bg;\n            }\n        }\n\n        & td {\n            height: 54px;\n            line-height: 54px;\n            width: 54px;\n\n            &.cw {\n                font-size: .8em;\n                height: 20px;\n                line-height: 20px;\n                color: @bs-datetimepicker-alternate-color;\n            }\n\n            &.day {\n                height: 20px;\n                line-height: 20px;\n                width: 20px;\n            }\n\n            &.day:hover,\n            &.hour:hover,\n            &.minute:hover,\n            &.second:hover {\n                background: @bs-datetimepicker-btn-hover-bg;\n                cursor: pointer;\n            }\n\n            &.old,\n            &.new {\n                color: @bs-datetimepicker-alternate-color;\n            }\n\n            &.today {\n                position: relative;\n\n                &:before {\n                    content: '';\n                    display: inline-block;\n                    border: solid transparent;\n                    border-width: 0 0 7px 7px;\n                    border-bottom-color: @bs-datetimepicker-active-bg;\n                    border-top-color: @bs-datetimepicker-secondary-border-color-rgba;\n                    position: absolute;\n                    bottom: 4px;\n                    right: 4px;\n                }\n            }\n\n            &.active,\n            &.active:hover {\n                background-color: @bs-datetimepicker-active-bg;\n                color: @bs-datetimepicker-active-color;\n                text-shadow: @bs-datetimepicker-text-shadow;\n            }\n\n            &.active.today:before {\n                border-bottom-color: #fff;\n            }\n\n            &.disabled,\n            &.disabled:hover {\n                background: none;\n                color: @bs-datetimepicker-disabled-color;\n                cursor: not-allowed;\n            }\n\n            span {\n                display: inline-block;\n                width: 54px;\n                height: 54px;\n                line-height: 54px;\n                margin: 2px 1.5px;\n                cursor: pointer;\n                border-radius: @bs-datetimepicker-border-radius;\n\n                &:hover {\n                    background: @bs-datetimepicker-btn-hover-bg;\n                }\n\n                &.active {\n                    background-color: @bs-datetimepicker-active-bg;\n                    color: @bs-datetimepicker-active-color;\n                    text-shadow: @bs-datetimepicker-text-shadow;\n                }\n\n                &.old {\n                    color: @bs-datetimepicker-alternate-color;\n                }\n\n                &.disabled,\n                &.disabled:hover {\n                    background: none;\n                    color: @bs-datetimepicker-disabled-color;\n                    cursor: not-allowed;\n                }\n            }\n        }\n    }\n\n    &.usetwentyfour {\n        td.hour {\n            height: 27px;\n            line-height: 27px;\n        }\n    }\n\t\n\t&.wider {\n\t\twidth: 21em;\n\t}\n\n\t& .datepicker-decades .decade {\n        line-height: 1.8em !important;\n    }\n}\n\n.input-group.date {\n    & .input-group-addon {\n        cursor: pointer;\n    }\n}\n","// Import bootstrap variables including default color palette and fonts\n@import \"bootstrap/less/variables.less\";\n\n// Import datepicker component\n@import \"_bootstrap-datetimepicker.less\";\n\n//this is here so the compiler doesn't complain about a missing bootstrap mixin\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0,0,0,0);\n  border: 0;\n}\n","//\n// Patternfly Mixins\n// --------------------------------------------------\n// PatternFly-specific mixins\n\n// Patternfly button variants.\n.button-variant(@color; @background; @background-image-start; @background-image-stop; @border) {\n  background-color: @background;\n  #gradient > .vertical(@background-image-start, @background-image-stop);\n  border-color: @border;\n  color: @color;\n\n  &:hover,\n  &:focus,\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-color: @background;\n    background-image: none;\n    border-color: @border;\n    color: @color;\n  }\n  &:active,\n  &.active,\n  .open .dropdown-toggle& {\n    background-image: none;\n    &:hover,\n    &:focus,\n    &.focus {\n      background-color: darken(@background, 5%);\n          border-color: darken(@border, 7%);\n    }\n  }\n  &.disabled,\n  &[disabled],\n  fieldset[disabled] & {\n    &,\n    &:hover,\n    &:focus,\n    &:active,\n    &.active {\n      background-color: @background;\n      border-color: @border;\n    }\n  }\n}\n\n// SASS CONVERSION FIX.\n// Allows inclusion of sr-only rules in nested media queries where @extends .sr-only\n// will not work.\n.sr-only-pf() {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  margin: -1px;\n  padding: 0;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n\n.tab-indicator(@background: @gray-light-pf, @left: 15px, @right: 15px) {\n  &:before {\n    background: @background;\n    bottom: -1px;\n    content: \"\";\n    display: block;\n    height: 2px;\n    left: @left;\n    position: absolute;\n    right: @right;\n  }\n}\n\n// Ellipse overflow text\n.text-overflow-pf {\n  overflow: hidden;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  word-wrap: normal;\n}\n","//\n// About Modal\n// --------------------------------------------------\n\n.about-modal-pf {\n  background-color: @color-pf-black-900;\n  background-image: url(\"@{img-path}/@{modal-about-pf-bg-img}\");\n  background-position: right bottom;\n  background-repeat: no-repeat;\n  background-size: 216px auto;\n  @media (min-width: @screen-sm-min) {\n    background-size: auto;\n  }\n  .modal-body {\n    color: @color-pf-white;\n    padding-bottom: 16px;\n    padding-left: @grid-gutter-width;\n    padding-right: @grid-gutter-width;\n    @media (min-width: @screen-sm-min) {\n      padding-left: (@grid-gutter-width * 2);\n      padding-right: (@grid-gutter-width * 2);\n    }\n  }\n  .modal-header {\n    background-color: transparent;\n  }\n  .pficon-close {\n    color: @color-pf-white;\n  }\n}\n\n.product-versions-pf {\n  margin-bottom: 30px;\n  margin-top: 30px;\n  li {\n    strong {\n      margin-right: (@grid-gutter-width / 4);\n    }\n  }\n}\n\n.trademark-pf {\n  font-size: ceil((@font-size-base - 1));\n}\n","//\n// Application Launcher\n// --------------------------------------------------\n.applauncher-pf {\n\n  display: inline-block;\n  overflow: visible;\n\n  .applauncher-pf-title {\n    .sr-only-pf();\n  }\n\n  .dropdown-toggle {\n    &.disabled {\n      cursor: not-allowed;\n    }\n  }\n\n  &.open > .dropdown-menu {\n    display:flex;\n    flex-wrap:wrap;\n  }\n\n  .applauncher-pf-item {\n    width: 100%;\n  }\n\n  .applauncher-pf-link {\n    display:flex;\n    white-space: initial;\n    align-items: center;\n  }\n\n  &-block-list {\n    .applauncher-pf-item {\n      @media (min-width: @screen-sm-min) {\n        flex:0 0 50%;\n      }\n    }\n\n    .applauncher-pf-link {\n        flex-wrap: wrap;\n      @media (min-width: @screen-sm-min) {\n          flex-direction:column;\n          text-align: center;\n          padding:15px 0;\n          height: 100%;\n      }\n    }\n\n    .applauncher-pf-link-icon {\n      padding: 0;\n    }\n\n    .applauncher-pf-link-title {\n      margin-top: auto;\n    }\n  }//block-list\n\n  &:not(.applauncher-pf-block-list) {\n\n    .applauncher-pf-link {\n      @media (min-width: @screen-sm-min) {\n        padding:@applauncher-pf-dropdown-menu-padding;\n        &-icon {\n          flex:1 0 0;\n          text-align: left;\n        }\n        &-title{flex:3;}\n      }\n    }\n  }\n\n  .dropdown-menu {\n    padding: @applauncher-pf-dropdown-menu-padding;\n    min-width: @applauncher-pf-dropdown-menu-width;\n  }\n\n  .applauncher-pf-link {\n    border-style: solid;\n    border-width: @applauncher-pf-menu-link-border-width;\n    border-color: transparent;\n\n    &:hover {\n      background-color: @applauncher-pf-menu-link-background-color-hover;\n      border-color: @applauncher-pf-menu-link-border-color-hover;\n      color: @applauncher-pf-menu-link-color-hover;\n      text-decoration: none;\n\n      .box-shadow(0 0 2px 0 @applauncher-pf-menu-link-shadow);\n    }\n  }\n\n  .applauncher-pf-link-icon {\n    font-size: 1.2em;\n    text-align: center;\n    width: @applauncher-pf-menu-link-icon-width;\n\n    @media (min-width: @screen-sm-min) {\n      font-size: @applauncher-pf-menu-link-icon-font-size;\n    }\n  }\n\n}//.applauncher-pf\n\n.navbar-utility .applauncher-pf {\n    .dropdown-menu {\n      border-width: @applauncher-pf-menu-link-border-width !important;\n      @media (min-width: @screen-sm-min) {\n              margin-top: 3px;\n              right:0;\n            }\n    }//.dropdown-menu\n}\n\n.navbar-pf, .navbar-pf-alt {\n\n  .navbar-utility .applauncher-pf, .applauncher-pf {\n\n    &.open > a,\n        &.open > a:focus {\n          background-color: @navbar-pf-navbar-nav-active-bg-color;\n          color: @navbar-pf-active-color;\n\n          @media (min-width: @screen-sm-min) {\n            background-color: @navbar-pf-navbar-utility-open-bg-color;\n            border-color: @navbar-pf-navbar-utility-border-color;\n            color: @navbar-pf-navbar-utility-color;\n          }\n        }\n\n        &.open {\n          .dropdown-menu > li > a {\n            @media (max-width: @grid-float-breakpoint-max) {\n              padding-left: 20px;\n              .applauncher-pf-link-icon {\n                padding-right: 20px;\n              }\n            }\n          }\n        }\n\n        &.dropdown > .dropdown-toggle,\n            .dropdown-toggle {\n              background-color: inherit;\n              color: @applauncher-pf-menu-link-color;\n              text-align: left;\n              text-decoration: none;\n              border-width: 0;\n              display: block;\n              padding-left: 20px;\n\n              &.disabled {\n                color: @applauncher-pf-menu-link-color-disabled !important;\n              }\n\n              @media (min-width: @screen-sm-min) {\n                border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n                padding: @applauncher-pf-dropdown-toggle-padding;\n                line-height: 1;\n              }\n        }\n\n        .applauncher-pf-icon {\n              padding-right:@applauncher-pf-icon-padding-right;\n\n              @media (min-width: @screen-sm-min) {\n                padding: 0;\n              }\n            }\n\n        .applauncher-pf-title {\n          display: inline;\n          position: relative;\n        }\n\n\n        .applauncher-pf-link {\n          overflow: hidden;\n          width: 100%;\n\n          &:hover {\n            background-color: transparent;\n            border-color: transparent;\n            .box-shadow(none);\n          }\n        }\n\n        .applauncher-pf-link-title {\n          overflow: hidden;\n        }\n\n        @media (min-width: @screen-sm-min) {\n          //Apply mixin\n          .applauncher-pf;\n        }\n    }\n}//.navbar-pf .navbar-pf-alt ovrerides\n\n.navbar-iconic {\n\n  .navbar-utility .applauncher-pf,\n  .applauncher-pf {\n\n    &.dropdown > .dropdown-toggle,\n    .dropdown-toggle {\n\n      @media (min-width: @screen-sm-min) {\n        padding: 22px 10px;\n        line-height: inherit;\n      }\n    }\n  }\n}\n","//\n// Blank Slate\n// --------------------------------------------------\n\n.blank-slate-pf {\n  @media (min-width: @screen-sm-min) {\n    padding: (@jumbotron-padding * 2) (@jumbotron-padding * 2);\n  }\n  @media (min-width: @screen-md-min) {\n    padding: (@jumbotron-padding * 3) (@jumbotron-padding * 4);\n  }\n  background-color: @well-bg;\n  border: 1px solid @well-border;\n  border-radius: @border-radius-base;\n  margin-bottom: 20px;\n  padding: @jumbotron-padding;\n  text-align: center;\n  .blank-slate-pf-icon {\n    color: @gray-light;\n    font-size: (@font-size-h1 * 2.4);\n    line-height: (@font-size-h1 * 2.4);\n  }\n  .blank-slate-pf-main-action {\n    margin-top: @line-height-computed;\n  }\n  .blank-slate-pf-secondary-action {\n    margin-top: @line-height-computed;\n  }\n  button {\n    margin-right: 5px;\n    &:last-of-type {\n      margin-right: 0;\n    }\n  }\n}\n","//\n// Bootstrap-Combobox\n// --------------------------------------------------\n\n.combobox-container {\n  &.combobox-selected .glyphicon-remove {\n    display: inline-block;\n  }\n  .caret {\n    margin-left: 0;\n  }\n  .combobox::-ms-clear {\n    display: none;\n  }\n  .dropdown-menu {\n    margin-top: -1px;\n    width: 100%;\n  }\n  .glyphicon-remove {\n    display: none;\n    top: auto;\n    width: 12px;\n    &:before {\n      content: \"\\e60b\";\n      font-family: @icon-font-name-pf;\n    }\n  }\n  .input-group-addon {\n    .button-variant(@btn-default-color; @btn-default-bg; @btn-default-bg-img-start; @btn-default-bg-img-stop; @btn-default-border);\n    position: relative; // IE8\n    &:active {\n      .box-shadow(inset 0 2px 8px fade(@color-pf-black, 20%));\n    }\n  }\n}\n","//\n// Variables\n// --------------------------------------------------\n// Bootstrap overrides and PatternFly-specific variables\n\n// Sass compass/sprockets asset helper flag\n// ----------------------\n@pf-sass-asset-helper:                                              false;\n\n// PatternFly-specific\n// -------------------\n@import \"color-variables.less\";\n\n@applauncher-pf-dropdown-menu-border-width:                         1px;\n@applauncher-pf-dropdown-menu-padding:                              9px;\n@applauncher-pf-dropdown-menu-width:                                220px;\n@applauncher-pf-dropdown-toggle-padding:                            7px 10px;\n@applauncher-pf-icon-padding-right:                                 4px;\n@applauncher-pf-menu-link-border-color:                             @color-pf-white;\n@applauncher-pf-menu-link-border-color-hover:                       @color-pf-black-400;\n@applauncher-pf-menu-link-border-width:                             1px;\n@applauncher-pf-menu-link-color:                                    @color-pf-black-300;\n@applauncher-pf-menu-link-color-disabled:                           @color-pf-black-500;\n@applauncher-pf-menu-link-color-hover:                              @color-pf-blue-400;\n@applauncher-pf-menu-link-padding:                                  7px 10px;\n@applauncher-pf-menu-link-padding-block-list:                       15px 10px;\n@applauncher-pf-menu-link-background-color-hover:                   @color-pf-black-150;\n@applauncher-pf-menu-link-shadow:                                   @color-pf-black-300;\n@applauncher-pf-menu-link-icon-font-size:                           2em;\n@applauncher-pf-menu-link-icon-width:                               ((9 * @applauncher-pf-menu-link-icon-font-size) / 14); //Numbers to imitate fa-fw class\n@bootstrap-switch-handle-default-bg-color:                          @color-pf-black-100;\n@bootstrap-treeview-highlight-color:                                @color-pf-blue-300;\n@btn-default-bg-img-start:                                          @color-pf-black-100;\n@btn-default-bg-img-stop:                                           @color-pf-black-200;\n@btn-xs-font-weight:                                                400;\n@card-pf-accented-border-top-color:                                 @color-pf-blue-300;\n@card-pf-aggregate-status-title-icon-color:                         @color-pf-black-900;\n@card-pf-bg-color:                                                  @color-pf-white;\n@card-pf-border-color:                                              @color-pf-black-300;\n@card-pf-border-top-color:                                          transparent;\n@card-pf-container-bg-color:                                        @color-pf-black-150;\n@card-pf-footer-bg-color:                                           @color-pf-black-100;\n@card-pf-selected-border-color:                                     @color-pf-blue-300;\n@contextselector-pf-margin-left:                                    10px;\n@contextselector-pf-nav-item-iconic-padding:                        23px 20px 18px 10px;\n@contextselector-title-width-mobile:                                170px;\n@contextselector-title-width-desktop:                               210px;\n@contextselector-pf-form-group-margin:                              0 5px 5px 5px;\n@contextselector-pf-list-max-height:                                200px;\n@contextselector-pf-list-li-padding:                                1px 10px;\n@contextselector-pf-list-li-border-width:                           1px 0;\n@donut-font-size-big:                                               30px;\n@drawer-pf-top-vertical:                                            58px;\n@drawer-pf-top-horizontal:                                          26px;\n@dropdown-divider-margin:                                           4px 1px;\n@dropdown-link-active-border-color:                                 @color-pf-blue;\n@dropdown-link-hover-border-color:                                  @color-pf-blue-100;\n@dropdown-link-focus-color:                                         @color-pf-white;\n@flyout-transition-pf:                                              all 200ms cubic-bezier(.35, 0, .25, 1);\n@font-family-monospace:                                             Menlo, Monaco, Consolas, monospace;\n@font-path:                                                         \"../fonts\";\n@footer-pf-bg-color:                                                @color-pf-black;\n@footer-pf-padding-left:                                            25px;\n@footer-pf-padding-top:                                             10px;\n@footer-pf-height:                                                  37px;\n@gray-light-pf:                                                     @color-pf-black-400;\n@gray-pf:                                                           @color-pf-black-700;\n@icon-font-name-fa:                                                 \"FontAwesome\";\n@icon-font-name-pf:                                                 \"PatternFlyIcons-webfont\";\n@icon-prefix:                                                       pficon;\n@img-bg-login:                                                      \"bg-login.jpg\";\n@img-path:                                                          \"../img\";\n@img-spinner:                                                       \"spinner.gif\";\n@img-spinner-inverse:                                               \"spinner-inverse.gif\";\n@img-spinner-inverse-lg:                                            \"spinner-inverse-lg.gif\";\n@img-spinner-inverse-sm:                                            \"spinner-inverse-sm.gif\";\n@img-spinner-inverse-xs:                                            \"spinner-inverse-xs.gif\";\n@img-spinner-lg:                                                    \"spinner-lg.gif\";\n@img-spinner-sm:                                                    \"spinner-sm.gif\";\n@img-spinner-xs:                                                    \"spinner-xs.gif\";\n@input-border-hover:                                                @color-pf-blue-200;\n@input-border-focus:                                                @color-pf-blue-400;\n@list-pf-border-color:                                              @color-pf-black-200;\n@list-pf-active-border-color:                                       @color-pf-black-400;\n@list-pf-header-background-color:                                   @color-pf-black-200;\n@list-pf-hover-background-color:                                    @color-pf-blue-25;\n@list-pf-main-content-width:                                        70%; // sets the proportional width of the main content vs the additional content\n@list-pf-padding:                                                   20px;\n@list-view-accented-border:                                         @color-pf-blue-300;\n@list-view-active-bg:                                               @color-pf-blue-50;\n@list-view-active-border:                                           @color-pf-black-400;\n@list-view-divider:                                                 @color-pf-black-300;\n@list-view-hover-bg:                                                @color-pf-blue-25;\n@list-group-top-border:                                             @color-pf-black-200;\n@login-bg-color:                                                    @color-pf-black;\n@login-container-bg-color-rgba:                                     fade(@color-pf-white, 5.5%);\n@modal-about-pf-bg-img:                                             \"bg-modal-about-pf.png\";\n@modal-title-padding-horizontal:                                    18px;\n@modal-title-padding-vertical:                                      10px;\n@navbar-pf-active-color:                                            @color-pf-black-150;\n@navbar-pf-alt-active-color:                                        @color-pf-white;\n@navbar-pf-alt-bg-color:                                            @color-pf-black;\n@navbar-pf-alt-bg-img:                                              \"bg-navbar-pf-alt.svg\";\n@navbar-pf-bg-color:                                                @color-pf-black;\n@navbar-pf-border-color:                                            @color-pf-blue-300;\n@navbar-pf-color:                                                   @color-pf-black-300;\n@navbar-pf-height:                                                  60px;\n@navbar-pf-icon-bar-bg-color:                                       @color-pf-white;\n@navbar-pf-navbar-navbar-brand-min-width:                           270px;\n@navbar-pf-navbar-navbar-brand-padding:                             8px 0 7px;\n@navbar-pf-navbar-navbar-persistent-bg-color:                       @color-pf-black-150;\n@navbar-pf-navbar-navbar-persistent-border-color:                   @color-pf-black-300;\n@navbar-pf-vertical-active-color:                                   @color-pf-white;\n@navbar-pf-vertical-bg-color:                                       #1d1d1d;\n@navbar-pf-vertical-bg-repeat:                                      no-repeat;\n@navbar-pf-vertical-bg-size:                                        auto 100%;\n@navbar-pf-vertical-border-color:                                   @color-pf-blue-300;\n@navbar-pf-vertical-border-style:                                   solid;\n@navbar-pf-vertical-border-width:                                   2px;\n@navbar-pf-vertical-color:                                          @color-pf-black-300;\n@navbar-pf-vertical-height:                                         60px;\n@navbar-pf-vertical-icon-bar-bg-color:                              @color-pf-white;\n@navbar-pf-vertical-navbar-brand-color:                             @color-pf-white;\n@navbar-pf-vertical-navbar-brand-icon-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-margin:                            0 0 0 25px;\n@navbar-pf-vertical-navbar-brand-min-height:                        35px;\n@navbar-pf-vertical-navbar-brand-max-height:                        35px;\n@navbar-pf-vertical-navbar-brand-line-height:                       34px;\n@navbar-pf-vertical-navbar-brand-name-breakpoint:                   480px;\n@navbar-pf-vertical-navbar-brand-name-margin:                       0 15px 0 0;\n@navbar-pf-vertical-navbar-brand-padding:                           11px 0 12px;\n@navbar-pf-vertical-navbar-toggle-margin:                           13px 15px;\n@navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg:                @color-pf-white;\n@navbar-pf-vertical-nav-item-iconic-padding:                        21px 12px;\n@nav-pf-container-transition-period:                                250ms;\n@nav-pf-menu-transition-period:                                     100ms;\n@nav-pf-vertical-active-color:                                      @color-pf-white;\n@nav-pf-vertical-active-before-color:                               @color-pf-blue-300;\n@nav-pf-vertical-active-bg-color:                                   @color-pf-black-800;\n@nav-pf-vertical-active-border-color:                               @color-pf-black-900;\n@nav-pf-vertical-active-font-weight:                                600;\n@nav-pf-vertical-active-icon-color:                                 @color-pf-blue-300;\n@nav-pf-vertical-badge-color:                                       @color-pf-white;\n@nav-pf-vertical-badge-bg-color:                                    @color-pf-black-900;\n@nav-pf-vertical-bg-color:                                          @color-pf-black-900;\n@nav-pf-vertical-border-color:                                      @color-pf-black-900;\n@nav-pf-vertical-collapsed-width:                                   75px;\n@nav-pf-vertical-color:                                             @color-pf-black-300;\n@nav-pf-vertical-font-weight:                                       400;\n@nav-pf-vertical-icon-color:                                        @color-pf-black-600;\n@nav-pf-vertical-icon-width:                                        24px;\n@nav-pf-vertical-item-border-color:                                 @color-pf-black;\n@nav-pf-vertical-link-height:                                       63px;\n@nav-pf-vertical-link-padding:                                      17px 20px 17px 25px;\n@nav-pf-vertical-secondary-active-color:                            @color-pf-white;\n@nav-pf-vertical-secondary-active-bg-color:                         @color-pf-black-700;\n@nav-pf-vertical-secondary-active-icon-color:                       @color-pf-blue-300;\n@nav-pf-vertical-secondary-badge-color:                             @color-pf-white;\n@nav-pf-vertical-secondary-badge-bg-color:                          @color-pf-black-900;\n@nav-pf-vertical-secondary-border-color:                            @color-pf-blue-300;\n@nav-pf-vertical-secondary-color:                                   @color-pf-white;\n@nav-pf-vertical-secondary-header-margin:                           18px 20px 10px 20px;\n@nav-pf-vertical-secondary-indicator-color:                         @color-pf-black-600;\n@nav-pf-vertical-secondary-indicator-padding:                       14px 0;\n@nav-pf-vertical-secondary-item-color:                              @color-pf-black-300;\n@nav-pf-vertical-secondary-item-padding:                            0 0 5px 0;\n@nav-pf-vertical-secondary-link-height:                             63px;\n@nav-pf-vertical-secondary-link-padding:                            4px 0 2px 0;\n@nav-pf-vertical-secondary-list-header-margin:                      30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-active-color:                             @color-pf-white;\n@nav-pf-vertical-tertiary-active-bg-color:                          @color-pf-black-800;\n@nav-pf-vertical-tertiary-indicator-padding:                        0;\n@nav-pf-vertical-tertiary-bg-color:                                 @color-pf-black-700;\n@nav-pf-vertical-tertiary-color:                                    #fff;\n@nav-pf-vertical-tertiary-header-margin:                            18px 20px 10px 20px;\n@nav-pf-vertical-tertiary-list-header-margin:                       30px 20px 10px 20px;\n@nav-pf-vertical-tertiary-item-padding:                             0 0 5px 0;\n@nav-pf-vertical-tertiary-item-color:                               @color-pf-black-300;\n@nav-pf-vertical-tertiary-link-margin:                              0 20px 0 20px;\n@nav-pf-vertical-tertiary-link-padding:                             4px 0 2px 0;\n@nav-pf-vertical-tertiary-badge-color:                              @color-pf-white;\n@nav-pf-vertical-tertiary-badge-bg-color:                           @color-pf-black-900;\n@nav-pf-vertical-width:                                             200px;\n@toast-notification-top:                                            80px;\n@pagination-padding-small-vertical:                                 0;\n@panel-default-border-color:                                        @color-pf-black-400;\n@pficon-var-add-circle-o:                                           \"\\e61b\";\n@pficon-var-applications:                                           \"\\e936\";\n@pficon-var-arrow:                                                  \"\\e929\";\n@pficon-var-asleep:                                                 \"\\e925\";\n@pficon-var-automation:                                             \"\\e937\";\n@pficon-var-blueprint:                                              \"\\e915\";\n@pficon-var-build:                                                  \"\\e902\";\n@pficon-var-builder-image:                                          \"\\e800\";\n@pficon-var-bundle:                                                 \"\\e918\";\n@pficon-var-catalog:                                                \"\\e939\";\n@pficon-var-chat:                                                   \"\\e928\";\n@pficon-var-close:                                                  \"\\e60b\";\n@pficon-var-cloud-security:                                         \"\\e903\";\n@pficon-var-cloud-tenant:                                           \"\\e904\";\n@pficon-var-cluster:                                                \"\\e620\";\n@pficon-var-connected:                                              \"\\e938\";\n@pficon-var-container-node:                                         \"\\e621\";\n@pficon-var-cpu:                                                    \"\\e927\";\n@pficon-var-degraded:                                               \"\\e91b\";\n@pficon-var-delete:                                                 \"\\e611\";\n@pficon-var-disconnected:                                           \"\\e93c\";\n@pficon-var-domain:                                                 \"\\e919\";\n@pficon-var-edit:                                                   \"\\e60a\";\n@pficon-var-enhancement:                                            \"\\e93a\";\n@pficon-var-enterprise:                                             \"\\e906\";\n@pficon-var-equalizer:                                              \"\\e610\";\n@pficon-var-error-circle-o:                                         \"\\e926\";\n@pficon-var-export:                                                 \"\\e616\";\n@pficon-var-flag:                                                   \"\\e603\";\n@pficon-var-flavor:                                                 \"\\e907\";\n@pficon-var-filter:                                                 \"\\e943\";\n@pficon-var-folder-close:                                           \"\\e607\";\n@pficon-var-folder-open:                                            \"\\e606\";\n@pficon-var-help:                                                   \"\\e605\";\n@pficon-var-history:                                                \"\\e93b\";\n@pficon-var-home:                                                   \"\\e618\";\n@pficon-var-image:                                                  \"\\e61f\";\n@pficon-var-import:                                                 \"\\e615\";\n@pficon-var-info:                                                   \"\\e92b\";\n@pficon-var-infrastructure:                                         \"\\e93d\";\n@pficon-var-integration:                                            \"\\e948\";\n@pficon-var-in-progress:                                            \"\\e92c\";\n@pficon-var-key:                                                    \"\\e924\";\n@pficon-var-kubernetes:                                             \"\\e627\";\n@pficon-var-locked:                                                 \"\\e923\";\n@pficon-var-maintenance:                                            \"\\e92d\";\n@pficon-var-memory:                                                 \"\\e908\";\n@pficon-var-messages:                                               \"\\e603\";\n@pficon-var-middleware:                                             \"\\e917\";\n@pficon-var-migration:                                              \"\\e92e\";\n@pficon-var-monitoring:                                             \"\\e944\";\n@pficon-var-network:                                                \"\\e909\";\n@pficon-var-network-range:                                          \"\\e94a\";\n@pficon-var-off:                                                    \"\\e92f\";\n@pficon-var-ok:                                                     \"\\e602\";\n@pficon-var-on:                                                     \"\\e931\";\n@pficon-var-on-running:                                             \"\\e930\";\n@pficon-var-openshift:                                              \"\\e626\";\n@pficon-var-optimize:                                               \"\\e93e\";\n@pficon-var-orders:                                                 \"\\e93f\";\n@pficon-var-paused:                                                 \"\\e932\";\n@pficon-var-pending:                                                \"\\e933\";\n@pficon-var-plugged:                                                \"\\e940\";\n@pficon-var-port:                                                   \"\\e945\";\n@pficon-var-private:                                                \"\\e914\";\n@pficon-var-print:                                                  \"\\e612\";\n@pficon-var-process-automation:                                     \"\\e949\";\n@pficon-var-project:                                                \"\\e905\";\n@pficon-var-rebalance:                                              \"\\e91c\";\n@pficon-var-rebooting:                                              \"\\e934\";\n@pficon-var-regions:                                                \"\\e90a\";\n@pficon-var-registry:                                               \"\\e623\";\n@pficon-var-remove:                                                 \"\\e611\";\n@pficon-var-replicator:                                             \"\\e624\";\n@pficon-var-repository:                                             \"\\e90b\";\n@pficon-var-resource-pool:                                          \"\\e90c\";\n@pficon-var-resources-almost-empty:                                 \"\\e91d\";\n@pficon-var-resources-almost-full:                                  \"\\e912\";\n@pficon-var-resources-full:                                         \"\\e92a\";\n@pficon-var-restart:                                                \"\\e617\";\n@pficon-var-route:                                                  \"\\e625\";\n@pficon-var-running:                                                \"\\e614\";\n@pficon-var-save:                                                   \"\\e601\";\n@pficon-var-satellite:                                              \"\\e94b\";\n@pficon-var-screen:                                                 \"\\e600\";\n@pficon-var-search:                                                 \"\\e921\";\n@pficon-var-security:                                               \"\\e946\";\n@pficon-var-server:                                                 \"\\e90d\";\n@pficon-var-server-group:                                           \"\\e91a\";\n@pficon-var-service:                                                \"\\e61e\";\n@pficon-var-service-catalog:                                        \"\\e941\";\n@pficon-var-services:                                               \"\\e947\";\n@pficon-var-settings:                                               \"\\e610\";\n@pficon-var-spinner:                                                \"\\e614\";\n@pficon-var-spinner2:                                               \"\\e613\";\n@pficon-var-storage-domain:                                         \"\\e90e\";\n@pficon-var-template:                                               \"\\e94c\";\n@pficon-var-tenant:                                                 \"\\e916\";\n@pficon-var-thumb-tack-o:                                           \"\\e920\";\n@pficon-var-topology:                                               \"\\e608\";\n@pficon-var-trend-down:                                             \"\\e900\";\n@pficon-var-trend-up:                                               \"\\e901\";\n@pficon-var-unlocked:                                               \"\\e922\";\n@pficon-var-unplugged:                                              \"\\e942\";\n@pficon-var-unknown:                                                \"\\e935\";\n@pficon-var-user:                                                   \"\\e91e\";\n@pficon-var-users:                                                  \"\\e91f\";\n@pficon-var-vcenter:                                                \"\\e94d\";\n@pficon-var-virtual-machine:                                        \"\\e90f\";\n@pficon-var-volume:                                                 \"\\e910\";\n@pficon-var-warning-triangle-o:                                     \"\\e913\";\n@pficon-var-zone:                                                   \"\\e911\";\n@progress-description-label-width:                                  85px;\n@sidebar-pf-bg:                                                     @color-pf-black-100;\n@sidebar-pf-border-color:                                           @color-pf-black-300;\n@skiplink-pf-top:                                                   12px;\n@skiplink-pf-left:                                                  10px;\n@table-border-hover:                                                @color-pf-blue-200;\n@table-cell-padding-bottom:                                         3px;\n@table-cell-padding-top:                                            2px;\n// Reference variables declared in block above\n@bootstrap-switch-bg-color-start:                                   @btn-default-bg-img-start;\n@bootstrap-switch-bg-color-stop:                                    @btn-default-bg-img-stop;\n@fa-font-path:                                                      @font-path;\n@navbar-pf-navbar-header-border-color:                              lighten(@navbar-pf-bg-color, 15%);\n@navbar-pf-navbar-nav-active-active-bg-color:                       lighten(@navbar-pf-bg-color, 8%);\n@navbar-pf-navbar-nav-active-active-open-bg-color:                  lighten(@navbar-pf-bg-color, 11%);\n@navbar-pf-navbar-nav-active-bg-color:                              lighten(@navbar-pf-bg-color, 12.5%);\n@navbar-pf-navbar-primary-bg-color-start:                           lighten(@navbar-pf-bg-color, 10%); // #474C50\n@navbar-pf-navbar-primary-bg-color-stop:                            @navbar-pf-bg-color; // #383F43\n@navbar-pf-navbar-utility-border-color:                             lighten(@navbar-pf-bg-color, 15.5%);\n@navbar-pf-navbar-utility-color:                                    @navbar-pf-color;\n@navbar-pf-navbar-utility-hover-bg-color:                           lighten(@navbar-pf-bg-color, 12.5%);\n@nav-pf-vertical-secondary-bg-color:                                @nav-pf-vertical-active-bg-color;\n@nav-tabs-color:                                                    @gray-pf;\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-bg-color-start:                   lighten(@navbar-pf-navbar-primary-bg-color-start, 8.5%);\n@navbar-pf-navbar-primary-context-bg-color-stop:                    lighten(@navbar-pf-navbar-primary-bg-color-stop, 11%);\n@navbar-pf-navbar-primary-hover-bg-color-start:                     lighten(@navbar-pf-navbar-primary-bg-color-start, 10%);\n@navbar-pf-navbar-primary-hover-bg-color-stop:                      lighten(@navbar-pf-navbar-primary-bg-color-stop, 10%);\n@navbar-pf-navbar-primary-hover-border-color:                       lighten(@navbar-pf-navbar-header-border-color, 20%);\n@navbar-pf-navbar-primary-context-border-color:                     lighten(@navbar-pf-navbar-header-border-color, 8%);\n@navbar-pf-navbar-primary-context-border-top-color:                 lighten(@navbar-pf-navbar-header-border-color, 7%);\n@navbar-pf-navbar-utility-hover-border-color:                       lighten(@navbar-pf-navbar-utility-border-color, 5%);\n@navbar-pf-navbar-utility-open-bg-color:                            lighten(@navbar-pf-navbar-utility-hover-bg-color, 7.5%);\n@navbar-pf-navbar-utility-open-border-color:                        lighten(@navbar-pf-navbar-utility-hover-border-color, 5%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-active-bg-color-start:                    lighten(@navbar-pf-navbar-primary-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-active-bg-color-stop:                     lighten(@navbar-pf-navbar-primary-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-active-border-color:                      lighten(@navbar-pf-navbar-primary-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-start:             lighten(@navbar-pf-navbar-primary-context-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-hover-bg-color-stop:              lighten(@navbar-pf-navbar-primary-context-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-hover-border-color:               lighten(@navbar-pf-navbar-primary-context-border-color, 5%);\n@navbar-pf-navbar-primary-context-hover-border-top-color:           lighten(@navbar-pf-navbar-primary-context-border-top-color, 6%);\n// Reference variables declared in block above\n@navbar-pf-navbar-primary-context-active-bg-color-start:            lighten(@navbar-pf-navbar-primary-context-hover-bg-color-start, 5%);\n@navbar-pf-navbar-primary-context-active-bg-color-stop:             lighten(@navbar-pf-navbar-primary-context-hover-bg-color-stop, 7.5%);\n@navbar-pf-navbar-primary-context-active-border-color:              lighten(@navbar-pf-navbar-primary-context-hover-border-color, 5%);\n@navbar-pf-navbar-primary-context-active-border-top-color:          lighten(@navbar-pf-navbar-primary-context-hover-border-top-color, 6%);\n// References variable declared in block above\n@navbar-pf-navbar-primary-context-active-border-right-color:        @navbar-pf-navbar-primary-context-active-border-color;\n@slider-line-height:                                                16px;\n@slider-horizontal-width:                                           100%;\n@slider-primary-top:                                                @color-pf-black-100;\n@slider-primary-bottom:                                             @color-pf-black-200;\n@slider-secondary-top:                                              @color-pf-blue-400;\n@slider-secondary-bottom:                                           @color-pf-blue-300;\n\n// Alternate navigation layout - Kept for backwards compatibility\n// --------------------------------------------------------------\n@footer-pf-alt-bg-color:                                            @footer-pf-bg-color;\n@footer-pf-alt-padding-left:                                        @footer-pf-padding-left;\n@footer-pf-alt-padding-top:                                         @footer-pf-padding-top;\n@footer-pf-alt-height:                                              @footer-pf-height;\n@img-path-alt:                                                      @img-path;\n@nav-pf-vertical-alt-active-color:                                  @color-pf-blue-300;\n@nav-pf-vertical-alt-bg-color:                                      @color-pf-white;\n@nav-pf-vertical-alt-badge-color:                                   @color-pf-white;\n@nav-pf-vertical-alt-border-color:                                  @sidebar-pf-border-color;\n@nav-pf-vertical-alt-collapsed-width:                               75px;\n@nav-pf-vertical-alt-link-height:                                   63px;\n@nav-pf-vertical-alt-link-padding:                                  17px 20px 17px 25px;\n@nav-pf-vertical-alt-width:                                         250px;\n@navbar-pf-alt-bg-repeat:                                           @navbar-pf-vertical-bg-repeat;\n@navbar-pf-alt-bg-size:                                             @navbar-pf-vertical-bg-size;\n@navbar-pf-alt-border-color:                                        @navbar-pf-vertical-border-color;\n@navbar-pf-alt-border-style:                                        @navbar-pf-vertical-border-style;\n@navbar-pf-alt-border-width:                                        @navbar-pf-vertical-border-width;\n@navbar-pf-alt-color:                                               @navbar-pf-vertical-color;\n@navbar-pf-alt-height:                                              @navbar-pf-vertical-height;\n@navbar-pf-alt-nav-item-iconic-padding:                             @navbar-pf-vertical-nav-item-iconic-padding;\n@navbar-pf-alt-navbar-brand-color:                                  @navbar-pf-vertical-navbar-brand-color;\n@navbar-pf-alt-navbar-brand-icon-margin:                            @navbar-pf-vertical-navbar-brand-icon-margin;\n@navbar-pf-alt-navbar-brand-margin:                                 @navbar-pf-vertical-navbar-brand-margin;\n@navbar-pf-alt-navbar-brand-min-height:                             @navbar-pf-vertical-navbar-brand-min-height;\n@navbar-pf-alt-navbar-brand-name-breakpoint:                        @navbar-pf-vertical-navbar-brand-name-breakpoint;\n@navbar-pf-alt-navbar-brand-name-margin:                            @navbar-pf-vertical-navbar-brand-name-margin;\n@navbar-pf-alt-navbar-brand-padding:                                @navbar-pf-vertical-navbar-brand-padding;\n@navbar-pf-alt-navbar-toggle-margin:                                @navbar-pf-vertical-navbar-toggle-margin;\n@navbar-pf-alt-navbar-toggle-icon-bar-hover-bg:                     @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n\n// Login page\n// -------------------\n@login-pf-brand-margin-top:                                               20px;\n@login-pf-brand-desktop-margin-top:                                       62px;\n@login-pf-page-header-margin-bottom:                                      20px;\n@login-pf-page-header-desktop-margin-bottom:                              40px;\n@login-pf-page-header-paragraph-margin-top:                               20px;\n@login-pf-card-pf-padding:                                 10px 20px 30px 20px;\n@login-pf-card-pf-desktop-padding:                         20px 40px 30px 40px;\n@login-pf-card-pf-max-width:                                             840px;\n@login-pf-checkbox-label-margin-bottom:                                   15px;\n@login-pf-dropdown-toggle-padding-right:                                  15px;\n@login-pf-btn-primary-margin-top:                                         40px;\n@login-pf-header-margin-bottom:                                           20px;\n@login-pf-header-desktop-margin-bottom:                                   30px;\n@login-pf-signup-margin-top:                                              40px;\n@login-pf-signup-a-margin-left:                                           10px;\n@login-pf-page-footer-links-margin-top:                                   60px;\n@login-pf-page-footer-links-li-margin-right:                              20px;\n@login-pf-page-footer-sso-margin-top:                                     40px;\n@login-pf-page-footer-sso-logos-li-margin:                                5px;\n@login-pf-page-accounts-margin:                                           20px;\n@login-pf-accounts-section-heading-margin-top:                            30px;\n@login-pf-accounts-section-heading-margin-bottom:                         30px;\n@login-pf-accounts-section-heading-desktop-margin-bottom:                 15px;\n@login-pf-accounts-section-heading-desktop-padding-right:                 40px;\n@login-pf-accounts-section-heading-desktop-padding-left:                  40px;\n@login-pf-accounts-link-margin-bottom:                                    15px;\n@login-pf-accounts-link-img-margin-right:                                 10px;\n@login-pf-accounts-link-a-padding:                                        7px;\n@login-pf-accounts-more-caret-margin-left:                                5px;\n@login-pf-social-margin:                                           40px 0 0 0;\n\n\n// Bootstrap overrides\n// -------------------\n@alert-info-border:                                                 @color-pf-black-500;\n@alert-link-font-weight:                                            500;\n@alert-padding:                                                     11px;\n@body-bg:                                                           @color-pf-white;\n@border-radius-base:                                                1px;\n@brand-danger:                                                      @color-pf-red;\n@brand-info:                                                        @color-pf-blue-500;\n@brand-primary:                                                     @color-pf-blue-300;\n@brand-success:                                                     @color-pf-green;\n@brand-warning:                                                     @color-pf-orange;\n@breadcrumb-bg:                                                     transparent;\n@breadcrumb-separator:                                              \"\\f105\";\n@bs-datetimepicker-timepicker-font-size:                            1em;\n@bs-datetimepicker-btn-hover-bg:                                    transparent;\n@btn-danger-bg:                                                     @color-pf-red-200;\n@btn-danger-border:                                                 @color-pf-red-300;\n@btn-default-border:                                                @color-pf-black-400;\n@btn-font-weight:                                                   600;\n@btn-primary-bg:                                                    @color-pf-blue;\n@btn-primary-border:                                                @color-pf-blue-500;\n@caret-width-base:                                                  0;\n@code-bg:                                                           @color-pf-blue-50;\n@dropdown-border:                                                   @color-pf-black-400;\n@dropdown-divider-bg:                                               @color-pf-black-200;\n@dropdown-link-active-color:                                        @color-pf-white;\n@dropdown-link-hover-bg:                                            @color-pf-blue-50;\n@font-family-base:                                                  \"Open Sans\", Helvetica, Arial, sans-serif;\n@font-size-base:                                                    12px;\n@gray-dark:                                                         lighten(@color-pf-black, 20%);   // #333\n@gray-darker:                                                       lighten(@color-pf-black, 13.5%); // #222\n@gray-light:                                                        lighten(@color-pf-black, 60%);   // #999\n@gray-lighter:                                                      lighten(@color-pf-black, 93.5%); // #eee\n@grid-gutter-width:                                                 40px;\n@icon-font-path:                                                    \"../fonts/\";\n@input-bg-disabled:                                                 @color-pf-black-150;\n@input-border:                                                      @color-pf-black-400;\n@line-height-base:                                                  1.66666667; // 20/12\n@link-color:                                                        @color-pf-blue;\n@list-group-border:                                                 @color-pf-black-150;\n@list-group-border-radius:                                          0;\n@list-group-hover-bg:                                               @color-pf-blue-50;\n@link-hover-color:                                                  @color-pf-blue-500;\n@nav-tabs-border-color:                                             @color-pf-black-200;\n@nav-tabs-link-hover-border-color:                                  transparent;\n@padding-large-horizontal:                                          10px;\n@padding-base-horizontal:                                           6px;\n@padding-base-vertical:                                             2px;\n@padding-large-vertical:                                            6px;\n@pager-border-radius:                                               0;\n@pager-disabled-color:                                              @color-pf-black-500;\n@pagination-bg:                                                     @color-pf-black-150;\n@pagination-border:                                                 @color-pf-black-400;\n@pagination-hover-bg:                                               @color-pf-black-200;\n@panel-inner-border:                                                @color-pf-black-300;\n@popover-arrow-color:                                               @color-pf-white;\n@popover-arrow-outer-color:                                         @color-pf-black-400;\n@popover-border-color:                                              @color-pf-black-400;\n@popover-max-width:                                                 220px;\n@popover-title-bg:                                                  @color-pf-black-150;\n@pre-bg:                                                            @color-pf-black-100;\n@progress-bg:                                                       @color-pf-black-200;\n@table-bg-accent:                                                   @color-pf-black-150;\n@table-bg-hover:                                                    @color-pf-blue-50;\n@table-border-color:                                                @color-pf-black-300;\n@table-cell-padding:                                                10px;\n@tooltip-arrow-width:                                               8px;\n@tooltip-bg:                                                        @color-pf-black-800;\n@tooltip-max-width:                                                 220px;\n// Reference variables declared in block above\n@alert-danger-bg:                                                   lighten(@color-pf-red-100, 55%);\n@alert-danger-border:                                               @brand-danger;\n@alert-danger-text:                                                 @gray-dark;\n@alert-info-bg:                                                     @color-pf-black-150;\n@alert-info-text:                                                   @gray-dark;\n@alert-success-bg:                                                  lighten(@color-pf-green-100, 8%);\n@alert-success-border:                                              @brand-success;\n@alert-success-text:                                                @gray-dark;\n@alert-warning-bg:                                                  lighten(@color-pf-orange-100, 8%);\n@alert-warning-border:                                              @brand-warning;\n@alert-warning-text:                                                @gray-dark;\n@badge-border-radius:                                               @border-radius-base;\n@border-radius-large:                                               @border-radius-base;\n@border-radius-small:                                               @border-radius-base;\n@breadcrumb-active-color:                                           @gray-pf;\n@breadcrumb-color:                                                  @gray-pf;\n@btn-default-bg:                                                    @gray-lighter;\n@btn-default-color:                                                 @gray-pf;\n@caret-width-large:                                                 @caret-width-base;\n@code-color:                                                        @color-pf-blue-600;\n@dropdown-fallback-border:                                          @dropdown-border;\n@dropdown-link-active-bg:                                           @link-color;\n@dropdown-link-hover-color:                                         @gray-pf;\n@font-size-h1:                                                      ceil((@font-size-base * 2)); // ~24px\n@font-size-h2:                                                      ceil((@font-size-base * 1.8333)); // ~22px\n@font-size-h3:                                                      ceil((@font-size-base * 1.3333)); // ~16px\n@font-size-h5:                                                      ceil((@font-size-base * 1.0833)); // ~13px\n@font-size-large:                                                   ceil((@font-size-base * 1.1666)); // ~14px\n@font-size-small:                                                   ceil((@font-size-base * .9166)); // ~11px\n@input-color:                                                       @gray-dark;\n@nav-tabs-active-link-hover-color:                                  @link-color;\n@nav-tabs-justified-link-border-color:                              @nav-tabs-border-color;\n@nav-pf-vertical-badges-width:                                      (@nav-pf-vertical-width + 50px);\n@padding-small-horizontal:                                          @padding-base-horizontal;\n@padding-small-vertical:                                            @padding-base-vertical;\n@panel-group-pf-danger-heading-bg:                                  @alert-danger-bg;\n@panel-group-pf-primary-heading-bg:                                 lighten(@brand-primary, 38%);\n@panel-group-pf-success-heading-bg:                                 @alert-success-bg;\n@panel-group-pf-warning-heading-bg:                                 @alert-warning-bg;\n@panel-group-pf-info-heading-bg:                                    lighten(desaturate(spin(@brand-info, 13), 45), 60%);\n@panel-danger-border:                                               @brand-danger;\n@panel-danger-heading-bg:                                           @brand-danger;\n@panel-info-border:                                                 @brand-info;\n@panel-info-heading-bg:                                             @brand-info;\n@panel-primary-border:                                              @brand-primary;\n@panel-primary-text:                                                @body-bg;\n@panel-success-border:                                              @brand-success;\n@panel-success-heading-bg:                                          @brand-success;\n@panel-warning-border:                                              @brand-warning;\n@panel-warning-heading-bg:                                          @brand-warning;\n@state-warning-text:                                                @brand-warning;\n@state-danger-text:                                                 @brand-danger;\n// Reference variable declared in block above\n@panel-danger-text:                                                 @panel-primary-text;\n@panel-info-text:                                                   @panel-primary-text;\n@panel-success-text:                                                @panel-primary-text;\n@panel-warning-text:                                                @panel-primary-text;\n\n// PatternFly-specific variables based on Bootstrap overides\n// ---------------------------------------------------------\n@bootstrap-switch-bg-color:                                         @btn-default-bg;\n@btn-danger-bg-img-start:                                           @brand-danger;\n@btn-danger-bg-img-stop:                                            @btn-danger-bg;\n@btn-primary-bg-img-start:                                          @brand-primary;\n@btn-primary-bg-img-stop:                                           @btn-primary-bg;\n@dropdown-link-focus-bg:                                            @link-color;\n@line-height-computed:                                              floor((@font-size-base * @line-height-base));\n@nav-pf-vertical-icon-size:                                         (@font-size-base + 8);\n@notification-badge-color:                                          @color-pf-blue-400;\n@progress-sm:                                                       (@line-height-computed - 6);\n@progress-xs:                                                       (@line-height-computed - 14);\n@syntax-1:                                                          @btn-danger-bg;\n@syntax-2:                                                          @gray-dark;\n@syntax-3:                                                          @brand-success;\n@syntax-4:                                                          @brand-info;\n@tooltip-font-size:                                                 @font-size-base;\n","//\n// Bootstrap-Datepicker\n// --------------------------------------------------\n\n.bootstrap-datepicker.form-control[readonly] {\n  background-color: @input-bg;\n  border-color: @input-border !important;\n  color: @input-color;\n  .box-shadow(inset 0 1px 1px fade(@color-pf-black, 7.5%));\n  .form-control-outline();\n  &:focus {\n    // TODO Create global variables for validation box shadows?\n    @input-validation-focus-box-shadow: fade(@color-pf-black, 7.5%);\n    border-color: @input-border-focus !important;\n    .has-error & {\n      // TODO Create global variables for validation box shadows?\n      @state-danger-input-focus: lighten(@state-danger-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-danger-input-focus}\";\n      border-color: darken(@state-danger-text, 10%);\n      .box-shadow(@shadow);\n    }\n    .has-success & {\n      // TODO Create global variables for validation box shadows?\n      @state-success-input-focus: lighten(@state-success-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-success-input-focus}\";\n      border-color: darken(@state-success-text, 10%);\n      .box-shadow(@shadow);\n    }\n    .has-warning & {\n      // TODO Create global variables for validation box shadows?\n      @state-warning-input-focus: lighten(@state-warning-text, 20%);\n      @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-warning-input-focus}\";\n      border-color: darken(@state-warning-text, 10%);\n      .box-shadow(@shadow);\n    }\n  }\n  &:hover {\n    border-color: @input-border-hover !important;\n    .has-error & {\n      border-color: darken(@state-danger-text, 10%) !important;\n    }\n    .has-success & {\n      border-color: darken(@state-success-text, 10%) !important;\n    }\n    .has-warning & {\n      border-color: darken(@state-warning-text, 10%) !important;\n    }\n  }\n  .has-error & {\n    border-color: @state-danger-text !important;\n  }\n  .has-success & {\n    border-color: @state-success-text !important;\n  }\n  .has-warning & {\n    border-color: @state-warning-text !important;\n  }\n}\n\n.datepicker {\n  border-radius: @border-radius-base;\n  .datepicker-switch,\n  tfoot .clear,\n  tfoot .today {\n    font-size: @font-size-large;\n    font-weight: 500;\n  }\n  .next,\n  .prev {\n    font-weight: 500;\n  }\n  table tr {\n    td,\n    th {\n      border-radius: @border-radius-base;\n    }\n    td {\n      &.active,\n      &.active:hover,\n      &.active.disabled,\n      &.active.disabled:hover {\n        background: @dropdown-link-active-bg !important;\n        color: @color-pf-white !important;\n        text-shadow: none;\n      }\n      &.day:hover,\n      &.day.focused {\n        background: @dropdown-link-hover-bg;\n      }\n      &.selected,\n      &.selected:hover,\n      &.selected.disabled,\n      &.selected.disabled:hover {\n        text-shadow: none;\n      }\n      span {\n        border-radius: @border-radius-base;\n        &.active,\n        &.active:hover,\n        &.active.disabled,\n        &.active.disabled:hover {\n          background: @dropdown-link-active-bg;\n          text-shadow: none;\n        }\n        &:hover {\n          background: @dropdown-link-hover-bg;\n        }\n      }\n    }\n  }\n  thead tr:first-child th,\n  tfoot tr th {\n    &:hover {\n      background: @dropdown-link-hover-bg;\n    }\n  }\n}\n\n.input-daterange {\n  input:first-child {\n    border-radius: @border-radius-base 0 0 @border-radius-base;\n  }\n  input:last-child {\n    border-radius: 0 @border-radius-base @border-radius-base 0;\n  }\n  .input-group-addon {\n    background-color: @input-group-addon-bg;\n    border-color: @input-group-addon-border-color;\n    line-height: @line-height-base;\n    padding: @padding-base-vertical @padding-base-horizontal;\n  }\n}\n","// Mixins - Bootstrap overrides\n// -------------------\n\n// Form control outline\n.form-control-outline(@color: @input-border-focus) {\n  @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n  &:focus {\n    border-color: @color;\n    outline: 0 !important;\n    .box-shadow(~\"inset 0 1px 1px rgba(3, 3, 3, 0.075), 0 0 8px @{color-rgba}\");\n  }\n}\n\n// Gradients\n#gradient {\n  .striped(@color: fade(@color-pf-black, 15%); @angle: -45deg) {\n    background-image: linear-gradient(@angle, @color 25%, @color 26%, transparent 27%, transparent 49%, @color 50%, @color 51%, transparent 52%, transparent 74%, @color 75%, @color 76%, transparent 77%);\n  }\n}\n\n// Horizontal dividers\n.nav-divider(@color: @color-pf-black-200, @margin: 4px 1px) {\n  background-color: @color;\n  height: 1px;\n  margin: @margin;\n  overflow: hidden;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n  &:-moz-placeholder            { color: @color; font-style: italic; } // Firefox 4-18\n  &::-moz-placeholder           { color: @color; font-style: italic; opacity: 1; } // Firefox 19+\n  &:-ms-input-placeholder       { color: @color; font-style: italic; } // Internet Explorer 10+\n  &::-webkit-input-placeholder  { color: @color; font-style: italic; } // Safari and Chrome\n}\n","//\n// Bootstrap-select\n// --------------------------------------------------\n\n.bootstrap-select.btn-group {\n  &.form-control {\n    margin-bottom: 0;\n  }\n  .btn {\n    // TODO Create global variable for validation state box shadows?\n    @input-validation-focus-box-shadow: fade(@color-pf-black, 7.5%);\n    &:hover {\n      border-color: @input-border-hover;\n    }\n    .caret {\n      margin-top: -4px;\n    }\n    .form-control-outline();\n    .has-error & {\n      border-color: @state-danger-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-danger-input-focus: lighten(@state-danger-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-danger-input-focus}\";\n        border-color: darken(@state-danger-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .has-success & {\n      border-color: @state-success-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-success-input-focus: lighten(@state-success-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-success-input-focus}\";\n        border-color: darken(@state-success-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .has-warning & {\n      border-color: @state-warning-text;\n      &:focus {\n        // TODO Create global variable for validation state box shadows?\n        @state-warning-input-focus: lighten(@state-warning-text, 20%);\n        @shadow: ~\"inset 0 1px 1px @{input-validation-focus-box-shadow}, 0 0 6px @{state-warning-input-focus}\";\n        border-color: darken(@state-warning-text, 10%);\n        .box-shadow(@shadow);\n      }\n    }\n    .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n  }\n  .dropdown-menu { // Also see navbar.less\n    > .active > a {\n      &,\n      &:active {\n        background-color: @dropdown-link-hover-bg !important;\n        border-color: @dropdown-link-hover-border-color !important;\n        color: @gray-dark !important;\n        small {\n          color: @gray-light !important;\n        }\n      }\n    }\n    > .disabled > a {\n      color: @gray-light !important;\n    }\n    > .selected > a {\n      background-color: @dropdown-link-active-bg !important;\n      border-color: @dropdown-link-active-border-color !important;\n      color: @color-pf-white !important;\n      small {\n        color: fade(@color-pf-white, 50%) !important;\n      }\n    }\n    .divider {\n      background: @dropdown-divider-bg !important;\n      margin: @dropdown-divider-margin !important;\n    }\n    dt {\n      color: @color-pf-black-500;\n      font-weight:normal;\n      padding: 1px 10px;\n    }\n    li {\n      & > a.opt {\n        padding: 1px 10px;\n      }\n      & a {\n        &:active small {\n          color: fade(@color-pf-white, 50%) !important;\n        }\n        &:hover,\n        &:focus {\n          small {\n            color: @gray-light;\n          }\n        }\n      }\n      &:not(.disabled) {\n        a:hover,\n        a:focus {\n          small {\n            color: @gray-light;\n          }\n        }\n      }\n    }\n  }\n}\n","//\n// Bootstrap slider\n// --------------------------------------------------\n// https://github.com/seiyria/bootstrap-slider\n\n\n// Overwrites and fixes to Bootstrap slider\n\n// https //github.com/seiyria/bootstrap-slider/issues/797\n.slider-tick-label-container {\n  display: flex;\n  justify-content: space-between;\n  margin-left: 0!important;\n}\n\n.slider-tick-label {\n  width: auto !important;\n}\n\n.slider {\n  .tooltip {\n    top: -10px;\n  }\n}\n.slider-track {\n  background-color: @color-pf-black-200;\n  box-shadow: inset 0 2px 3px rgba(0, 0, 0, .1), 0 0px 2px @color-pf-black-200;\n  border: 1px solid @color-pf-black-400;\n}\n\n.slider-selection {\n  #gradient > .vertical(@slider-secondary-top, @slider-secondary-bottom);\n}\n\n.slider-handle {\n  width: @slider-line-height;\n  height: @slider-line-height;\n  border: 1px solid @color-pf-black-400; //THIS!\n}\n\n.slider-tick {\n  background-color: transparent !important;\n  background-image:\n    radial-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3) 2px, transparent 2px) !important;\n  .box-shadow(none);\n}\n\n\n// Styles to create the pf slider\n.slider-pf {\n  display: flex;\n  align-items: center;\n\n  * {\n    margin-right: 10px;\n\n    &:last-child {\n      margin: 0;\n    }\n  }\n\n  .slider {\n    width: auto;\n    flex: 1 1 100%;\n  }\n}\n","//\n// Bootstrap Switch\n// --------------------------------------------------\n\n.@{bootstrap-switch-base} {\n  .@{bootstrap-switch-base}-handle-off,\n  .@{bootstrap-switch-base}-handle-on {\n    &.@{bootstrap-switch-base}-default {\n      background: @bootstrap-switch-handle-default-bg-color;\n    }\n  }\n  .@{bootstrap-switch-base}-label {\n    background: @bootstrap-switch-bg-color;\n    box-shadow: 0 0 2px fade(@color-pf-black, 40%);\n    #gradient > .vertical(@bootstrap-switch-bg-color-start, @bootstrap-switch-bg-color-stop);\n    position: relative;\n    z-index: 9;\n  }\n}\n","//\n// Bootstrap Touchspin\n// --------------------------------------------------\n\n.bootstrap-touchspin .input-group-btn-vertical {\n  > .btn {\n    padding-bottom: 6px;\n    padding-top: 6px;\n  }\n  .bootstrap-touchspin-down {\n    border-bottom-right-radius: @border-radius-base;\n  }\n  .bootstrap-touchspin-up {\n    border-top-right-radius: @border-radius-base;\n  }\n  i {\n    font-size: (@font-size-base - 4);\n    left: 6px;\n    top: 2px;\n    &.fa-angle-down,\n    &.fa-angle-up {\n      font-size: @font-size-base;\n      line-height: @font-size-base;\n      top: 0;\n    }\n    &.fa-angle-down,\n    &.fa-angle-up {\n      left: 7px;\n    }\n  }\n}\n","//\n// Bootstrap Tree View\n// --------------------------------------------------\n\n.treeview {\n  .list-group {\n    border-top: 0;\n  }\n  .list-group-item {\n    background: transparent;\n    border-bottom: 1px solid transparent !important;\n    border-top: 1px solid transparent !important;\n    cursor: default !important;\n    margin-bottom: 0;\n    overflow: hidden;\n    padding: 0 10px;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    &:hover {\n      background: none !important;\n    }\n    &.node-selected {\n      background: none !important;\n      border-color: transparent !important;\n      color: inherit !important;\n    }\n    &.node-check-changed {\n      span.node-icon,\n      span.text {\n        color: @bootstrap-treeview-highlight-color;\n      }\n    }\n  }\n  span.icon {\n    display: inline-block;\n    font-size: (@font-size-base + 1);\n    min-width: 10px;\n    text-align: center;\n    > [class*=\"fa-angle\"] {\n      font-size: (@font-size-base + 3);\n    }\n    &.check-icon {\n      margin-right: 10px;\n    }\n    &.expand-icon {\n      cursor: pointer !important;\n    }\n  }\n  span.image {\n    background-repeat: no-repeat;\n    background-size: contain;\n    display: inline-block;\n    height: 1.19em;\n    line-height: 1em;\n    margin-right: 5px;\n    vertical-align: middle;\n    width: 12px;\n  }\n  span.indent {\n    margin-right: 5px;\n  }\n  .node-disabled {\n    color: @color-pf-black-300;\n    cursor: not-allowed;\n    span.expand-icon {\n      cursor: default !important;\n    }\n  }\n  .node-hidden {\n    display:none;\n  }\n}\n\n.treeview-pf-hover .list-group-item {\n  cursor: pointer !important;\n  &:hover {\n    background-color: @dropdown-link-hover-bg !important;\n    border-color: @dropdown-link-hover-border-color !important;\n  }\n}\n\n.treeview-pf-select .list-group-item {\n  cursor: pointer !important;\n  &.node-selected {\n    background: @dropdown-link-active-bg !important;\n    border-color: @dropdown-link-active-border-color !important;\n    color: @dropdown-link-active-color !important;\n  }\n}\n","//\n// Cards\n// --------------------------------------------------\n\n.card-pf {\n  background: @card-pf-bg-color;\n  border-top: 2px solid @card-pf-border-top-color;\n  .box-shadow(0 1px 1px fade(@color-pf-black, 17.5%));\n  margin: 0 (-(@grid-gutter-width / 4)) (@grid-gutter-width / 2);\n  padding: 0 (@grid-gutter-width / 2);\n  &.card-pf-accented {\n    border-top-color: @card-pf-accented-border-top-color;\n  }\n  &.card-pf-aggregate-status {\n    .card-pf-aggregate-status-notifications,\n    .card-pf-title {\n      a {\n        color: @text-color;\n        &.add {\n          color: @link-color;\n          &:hover {\n            color: @link-hover-color;\n          }\n        }\n        &:hover {\n          color: @link-hover-color;\n        }\n      }\n    }\n  }\n  &.card-pf-aggregate-status {\n    padding: 0 (@grid-gutter-width / 4);\n    text-align: center;\n  }\n  &.card-pf-aggregate-status-mini {\n    padding-bottom: (@grid-gutter-width / 4);\n    position: relative;\n  }\n  @media (min-width: @grid-float-breakpoint) {\n    &.card-pf-bleed-left {\n      margin-left: (-(@grid-gutter-width / 2));\n    }\n    &.card-pf-bleed-right {\n      border-right: 1px solid @card-pf-border-color;\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n  }\n}\n\n.card-pf-aggregate-status-notifications {\n  font-size: (@font-size-base * 2); // 24px\n  font-weight: 300;\n  .card-pf-aggregate-status-mini & {\n    line-height: 1;\n  }\n  .card-pf-aggregate-status-notification + .card-pf-aggregate-status-notification {\n    border-left: 1px solid @card-pf-border-color;\n    margin-left: (@grid-gutter-width / 8 - 2);\n    padding-left: (@grid-gutter-width / 4);\n  }\n  .fa, .pficon {\n    font-size: (@font-size-base * 1.5); // 18px\n    margin-right: 7px;\n  }\n}\n\n.card-pf-body {\n  margin: (@grid-gutter-width / 2) 0 0;\n  padding: 0 0 (@grid-gutter-width / 2);\n  .card-pf-aggregate-status & {\n    margin-top: (@grid-gutter-width / 4);\n    padding-bottom: (@grid-gutter-width / 4);\n  }\n  .card-pf-aggregate-status-mini & {\n    margin-bottom: 0;\n    margin-top: 0;\n    padding-bottom: 0;\n    position: absolute;\n    right: (@grid-gutter-width / 2);\n    top: 15px;\n  }\n  .card-pf-utilization .card-pf-title + & {\n    margin-top: -8px;\n  }\n  > *:last-child {\n    margin-bottom: 0;\n  }\n}\n\n.card-pf-footer {\n  background-color: @card-pf-footer-bg-color;\n  border-top: 1px solid @card-pf-border-color;\n  margin: 0 (-(@grid-gutter-width / 2)) !important;\n  padding: (@grid-gutter-width / 2) (@grid-gutter-width / 2) (@grid-gutter-width / 4);\n  a > {\n    .fa,\n    .pficon {\n      margin-right: 5px;\n    }\n  }\n  .card-pf-time-frame-filter {\n    margin-top: -2px;\n  }\n}\n\n.card-pf-link-with-icon {\n  padding-left: 21px;\n  position: relative;\n  .fa,\n  .pficon {\n    font-size: 16px;\n    left: 0;\n    position: absolute;\n    top: 0;\n  }\n}\n\n.card-pf-time-frame-filter {\n  .card-pf-heading &,\n  .card-pf-footer & {\n    float: right;\n    margin-left: 20px;\n  }\n}\n\n.card-pf-heading {\n  border-bottom: 1px solid @card-pf-border-color;\n  margin: 0 (-(@grid-gutter-width / 2)) (@grid-gutter-width / 2);\n  padding: 0 (@grid-gutter-width / 2) 0;\n  & .card-pf-time-frame-filter {\n    margin-top: -5px;\n  }\n}\n\n.card-pf-heading-details {\n  float: right;\n  font-size: (@font-size-small - 1);\n}\n\n.card-pf-subtitle {\n  font-size: @font-size-h3;\n  margin-top: @line-height-computed;\n  margin-bottom: (@line-height-computed / 2);\n  [class^=\"col\"] & {\n    margin-top: 0;\n  }\n  @media (max-width: @screen-xs-max) {\n    .card-pf-body [class^=\"col\"] + [class^=\"col\"] > & {\n      margin-top: (@grid-gutter-width);\n    }\n  }\n}\n\n.card-pf-title {\n  font-size: @font-size-h3;\n  font-weight: 400;\n  margin: (@grid-gutter-width / 2) 0;\n  padding: 0;\n  .card-pf-aggregate-status & {\n    font-size: @font-size-large;\n    margin: (@grid-gutter-width / 4) 0 0;\n    .fa,\n    .pficon {\n      color: @card-pf-aggregate-status-title-icon-color;\n      font-size: @font-size-h3;\n      margin-right: 7px;\n    }\n  }\n  .card-pf-aggregate-status-count {\n    font-size: @font-size-h3;\n    .card-pf-aggregate-status-mini & {\n      display: block;\n      font-size: (@font-size-base * 2); // 24px\n      font-weight: 300;\n      margin-bottom: 3px;\n    }\n  }\n  .card-pf-aggregate-status-mini & {\n    font-size: @font-size-base;\n    margin-top: (@grid-gutter-width / 8);\n    a {\n      display: inline-block;\n    }\n    .fa,\n    .pficon {\n      font-size: (@font-size-base * 2 + 2); // 26px\n      margin-right: 0;\n      min-width: (@font-size-base * 2 + 2); // 26px\n      position: absolute;\n      left: (@grid-gutter-width / 2);\n      text-align: center;\n      top: 15px;\n    }\n  }\n}\n\n.card-pf-utilization-details {\n  border-bottom: 1px solid @card-pf-border-color;\n  display: table;\n  margin: 12px 0 15px;\n  padding: 0 0 15px;\n  width: 100%;\n  .card-pf-utilization-card-details-count,\n  .card-pf-utilization-card-details-description {\n    float: left;\n    line-height: 1;\n  }\n  .card-pf-utilization-card-details-count {\n    font-size: (@font-size-base * 2 + 2); // 26px\n    font-weight: 300;\n    margin-right: 10px;\n  }\n  .card-pf-utilization-card-details-line-1,\n  .card-pf-utilization-card-details-line-2 {\n    display: block;\n  }\n  .card-pf-utilization-card-details-line-1 {\n    font-size: (@font-size-small - 1);\n    margin-bottom: 2px;\n  }\n}\n\n.cards-pf {\n  background: @card-pf-container-bg-color;\n  .row-cards-pf {\n    padding: 0 20px;\n    &:first-child { padding-top: 20px; }\n  }\n}\n\n.container-cards-pf {\n  margin-top: (@grid-gutter-width / 2);\n}\n\n.row-cards-pf {\n  margin-left: (-(@grid-gutter-width / 4));\n  margin-right: (-(@grid-gutter-width / 4));\n}\n","//\n// Card View\n// --------------------------------------------------\n\n.card-pf-view {\n  border: 2px solid transparent;\n  .card-pf-heading-kebab {\n    .dropdown-kebab-pf {\n      margin-top: -3px;\n    }\n    + .progress-pf-legend {\n      p { margin-bottom: 0; }\n      .progress {\n        margin-bottom: 7px;\n        margin-top: 16px;\n      }\n    }\n  }\n  .card-pf-info {\n    margin-top: 15px;\n    strong {\n      font-size: ceil((@font-size-base + 1));\n      margin-right: 10px;\n    }\n  }\n  .card-pf-item {\n    display: inline-block;\n    font-size: @font-size-h3;\n    padding: 0 13px 0 15px;\n    &:first-child { padding-left: 0; }\n    &:last-child { padding-right: 0; }\n    + .card-pf-item { border-left: 1px solid @card-pf-border-color; }\n    .fa-check { color: @brand-success; }\n    .fa,\n    .pficon {\n      + .card-pf-item-text { margin-left: 10px; }\n    }\n  }\n  .card-pf-items { margin-top: 15px; }\n  .card-pf-title {\n    font-size: ceil((@font-size-base * 1.6666));\n    font-weight: 300;\n    margin-bottom: 0;\n    margin-top: 15px;\n    .fa,\n    .pficon {\n      font-size: ceil((@font-size-base * 1.5));\n      margin-right: 2px;\n    }\n    .col-lg-2 & { font-size: @font-size-h3; }\n  }\n  .card-pf-top-element .card-pf-icon-circle {\n    border: 2px solid @color-pf-blue-300;\n    border-radius: 50%;\n    display: block;\n    font-size: 46px;\n    height: 106px;\n    line-height: 102px;\n    margin: 0 auto;\n    text-align: center;\n    width: 106px;\n    .col-lg-2 & {\n      font-size: 23px;\n      height: 54px;\n      line-height: 50px;\n      width: 54px;\n    }\n  }\n  .card-pf-view-checkbox {\n    position: absolute;\n    top: 11px;\n    left: 15px;\n    input[type=checkbox] { display: none; }\n  }\n  &.card-pf-view-multi-select {\n    .card-pf-view-checkbox {\n      input[type=checkbox] {\n        display: block;\n        @media(min-width:@screen-sm-min) {\n          visibility: hidden;\n          &:checked { visibility: visible; }\n        }\n      }\n    }\n    &:hover .card-pf-view-checkbox input[type=checkbox] { visibility: visible; }\n  }\n  &.card-pf-view-select {\n    position: relative;\n    &:hover { .box-shadow(0 1px 6px fade(@color-pf-black, 35%)); }\n    &.active { border: 2px solid @card-pf-selected-border-color; }\n  }\n  &.card-pf-view-single-select { cursor: pointer; }\n  &.card-pf-view-xs {\n    .card-pf-title {\n      font-size: 16px;\n      font-weight: normal;\n      margin-bottom: 10px;\n      .fa,\n      .pficon {\n        font-size: 14px;\n        margin-right: 5px;\n      }\n    }\n  }\n}\n","//\n// Charts\n// --------------------------------------------------\n\n.c3 {\n  path {\n    stroke: @table-border-color;\n  }\n  svg {\n    font-family: @font-family-base;\n  }\n}\n\n.c3-axis-x .tick line {\n  stroke: @table-border-color;\n}\n\n.c3-axis-y .tick line {\n  display: none;\n}\n\n.c3-chart-arc path {\n  stroke: @color-pf-white;\n}\n\n.c3-grid line {\n  stroke: @table-border-color;\n}\n\n.c3-line {\n  stroke-width: 2px;\n}\n\n.c3-tooltip {\n  background: @tooltip-bg;\n  .box-shadow(none);\n  .opacity(@tooltip-opacity);\n\n  td {\n    background: transparent;\n    border: 0;\n    color: @tooltip-color;\n    font-size: @font-size-base;\n    padding: 5px 10px;\n  }\n\n  th {\n    background: transparent;\n    font-size: @font-size-base;\n    padding: 5px 10px 0;\n    border-bottom: solid 2px @color-pf-black;\n  }\n\n  tr {\n    border: 0;\n    + tr > td {\n      padding-top: 0;\n    }\n  }\n}\n\n.c3-tooltip-sparkline,\n.donut-tooltip-pf {\n  background: @tooltip-bg;\n  color: @tooltip-color;\n  .opacity(@tooltip-opacity);\n  padding: 2px 6px;\n}\n\n.c3-xgrid,\n.c3-ygrid {\n  stroke-dasharray: 0 0;\n}\n\n.chart-pf-sparkline {\n  margin-left: -5px;\n  margin-right: -5px;\n}\n\n.donut-title-big-pf {\n  font-size: @donut-font-size-big;\n  font-weight: 300;\n}\n\n.donut-title-small-pf {\n  font-size: @font-size-base;\n  font-weight: 400;\n}\n\n.line-chart-pf {\n  .c3-zoom-rect {\n    opacity: 1 !important;\n    fill: @color-pf-black-100;\n    stroke: @table-border-color;\n    stroke-width: 1px;\n  }\n}\n\n.pct-donut-chart-pf {\n\n  .pct-donut-chart-pf-label {\n    display: block;\n  }\n\n  &.pct-donut-chart-pf-left,\n  &.pct-donut-chart-pf-right,\n  .pct-donut-chart-pf-left,\n  .pct-donut-chart-pf-right {\n    display: flex;\n    flex-direction: row;\n    justify-content: center;\n    align-items: center;\n  }\n\n  &.pct-donut-chart-pf-left,\n  &.pct-donut-chart-pf-right {\n    display: inline-flex;\n  }\n\n  &.pct-donut-chart-pf-left,\n  .pct-donut-chart-pf-left {\n    flex-direction: row-reverse;\n  }\n}\n\n","//\n// Close icons\n// --------------------------------------------------\n\n//this should no longer be needed and be replaced with pficon-close. This is here for legacy. For further info see https://github.com/patternfly/patternfly/pull/781\n\n.close {\n  text-shadow: none;\n  z-index: 1;\n  position: relative;\n  .opacity(.6);\n  &:hover,\n  &:focus {\n    .opacity(.9);\n  }\n}\n","//\n// Context Selector\n// --------------------------------------------------\n.layout-pf-fixed .navbar-pf-vertical.navbar-pf-contextselector {\n  z-index: @zindex-modal-background;\n}\n.navbar-pf-vertical .nav.contextselector-pf {\n    @media (min-width: @screen-sm-min) {\n      margin-left:@contextselector-pf-margin-left;\n    }\n    border-left:1px solid @color-pf-black-700;\n      .nav-item-iconic {\n        padding:@contextselector-pf-nav-item-iconic-padding;\n        display: flex;\n        align-items: center;\n      }\n  }\n\n  .contextselector-pf {\n    float:left;\n    &-title {\n      width: @contextselector-title-width-mobile;\n      @media (min-width: @screen-xs-min) {\n        width: @contextselector-title-width-desktop;\n      }\n      white-space: nowrap;\n      display:inline-block;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      line-height: normal;\n    }\n    .dropdown {\n      &.open, &:hover {\n        background-color: @navbar-pf-navbar-primary-active-bg-color-stop;\n      }\n    }\n    .dropdown-menu {\n      width: 100%;\n      margin-top:0;\n    }\n    .form-group {\n      margin: @contextselector-pf-form-group-margin;\n    }\n    .contextselector-pf-list {\n      @media (min-width: @screen-sm-min) {\n        max-height: @contextselector-pf-list-max-height;\n        overflow-y: auto;\n      }\n      li {\n        padding: @contextselector-pf-list-li-padding;\n        border-width: @contextselector-pf-list-li-border-width;\n        border-style: solid;\n        border-color: transparent;\n        &:hover {\n          background: @color-pf-blue-50;\n          border-color: @dropdown-link-hover-border-color;\n          a {\n            text-decoration: none;\n          }\n        }\n      }\n      a {\n        color: @color-pf-black-800;\n        display: block;\n      }\n    }\n  }\n","//\n// DataTables\n// --------------------------------------------------\n\n// Deprecated\n.ColVis_Button {\n  &:active {\n    &:focus {\n      outline: none;\n    }\n  }\n}\n\n// Deprecated\n.ColVis_catcher {\n  position: absolute;\n  z-index: 999;\n}\n\n// Deprecated\n.ColVis_collection {\n  background-color: @dropdown-bg;\n  border: 1px solid @dropdown-border;\n  border-radius: @border-radius-base;\n  .box-shadow(0 6px 12px fade(@color-pf-black, 17.5%));\n  background-clip: padding-box;\n  list-style: none;\n  margin: -1px 0 0 0;\n  padding: 5px 10px;\n  width: 150px;\n  z-index: @zindex-dropdown;\n  label {\n    font-weight: normal;\n    margin-bottom: 5px;\n    margin-top: 5px;\n    padding-left: 20px;\n  }\n}\n\n// Deprecated\n.ColVis_collectionBackground {\n  background-color: @color-pf-white;\n  height: 100%;\n  left: 0;\n  position: fixed;\n  top: 0;\n  width: 100%;\n  z-index: 998;\n}\n\n// Note: We won't be using this class with the Patternfly toolbar\n.dataTables_header {\n  background-color: @color-pf-black-150;\n  border: 1px solid @table-border-color;\n  border-bottom: none;\n  padding: 5px;\n  position: relative;\n  text-align: center;\n  .btn {\n    .box-shadow(none);\n  }\n  // Deprecated\n  .ColVis {\n    position: absolute;\n    right: 5px;\n    text-align: left;\n    top: 5px;\n    + .dataTables_info {\n      padding-right: 30px;\n    }\n  }\n  .dataTables_filter {\n    position: absolute;\n    input {\n      border: 1px solid @color-pf-black-400;\n      height: 24px;\n      @media (max-width: @screen-xs-max) {\n        width: 100px;\n      }\n    }\n  }\n  .dataTables_info {\n    padding: 2px 0;\n    @media (max-width: @screen-xs) {\n     text-align: right;\n    }\n    b {\n      font-weight: bold;\n    }\n  }\n}\n\n// Note: We won't be using this class with the table view\n.dataTables_footer {\n  background-color: @color-pf-white;\n  border: 1px solid @table-border-color;\n  border-top: none;\n  overflow: hidden;\n}\n\n// Not in use with latest example: May be used with pagination?\n.dataTables_paginate {\n  background: @color-pf-black-100;\n  float: right;\n  margin: 0;\n  .pagination {\n    float: left;\n    margin: 0;\n    > li {\n      > span {\n        border-color: @color-pf-white @color-pf-black-300 @color-pf-black-150;\n        border-width: 0 1px;\n        font-size: (@font-size-base + 4);\n        font-weight: normal;\n        padding: 0;\n        text-align: center;\n        width: 31px;\n        &:hover,\n        &:focus {\n          .reset-filter();\n        }\n      }\n      &.last > span {\n        border-right: none;\n      }\n      &.disabled > span {\n        background: @color-pf-black-150;\n        border-left-color: @color-pf-black-200;\n        border-right-color: @color-pf-black-200;\n        .reset-filter();\n      }\n    }\n  }\n  .pagination-input {\n    float: left;\n    font-size: @font-size-base;\n    line-height: 1em;\n    padding: 4px 15px 0;\n    text-align: right;\n    .paginate_input {\n      border: 1px solid @color-pf-black-300;\n      .box-shadow(inset 0 1px 1px fade(@color-pf-black, 7.5%));\n      font-size: @font-size-base;\n      font-weight: 600;\n      height: 19px;\n      margin-right: 8px;\n      padding-right: 3px;\n      text-align: right;\n      width: 30px;\n    }\n    .paginate_of {\n      position: relative;\n      b {\n        margin-left: 3px;\n      }\n    }\n  }\n}\n\n.dataTables_empty {\n  background: @table-bg-accent;\n}\n\n/* Might need this for pagination?\n.dataTables_wrapper {\n  margin: @line-height-computed 0;\n  @media (max-width: @screen-xs-max) {\n    .table-responsive {\n      margin-bottom: 0;\n    }\n  }\n}\n*/\n\n// Not in use with latest example: May be used with column reordering?\n.DTCR_clonedTable {\n  background-color: fade(@color-pf-white, 70%);\n  z-index: 202;\n}\n\n// Not in use with latest example: May be used with column reordering?\n.DTCR_pointer {\n  background-color: @link-color;\n  width: 1px;\n  z-index: 201;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n  filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n",".experimental-pf > * {\n  border: 2px solid @color-pf-light-green-400;\n}\n\n.experimental-pf-bar {\n  background-color: @color-pf-light-green-400;\n  border: none;\n  text-align: center;\n  position: relative;\n}\n\n.experimental-pf-more-info {\n  background-color: @color-pf-light-green-400;\n  border: 0;\n  color: @color-pf-black;\n  display: block;\n  width: 100%;\n  padding-top: 10px;\n  padding-bottom: 10px;\n  position: static;\n  @media (min-width: @screen-md-min) {\n    padding: 0 10px;\n    position: absolute;\n    right: 0;\n    top: 0;\n    width: auto;\n  }\n}\n\n.experimental-pf-text {\n  @media (min-width: @screen-md-min) {\n    padding-left: 150px;\n    padding-right: 150px;\n  }\n\n  a {\n    color: @color-pf-black;\n    text-decoration: underline;\n    &:hover {\n      color: @color-pf-black;\n      cursor: pointer;\n    }\n  }\n}\n\n.btn-experimental-pf {\n  .button-variant(@btn-default-color; @color-pf-light-green-400; @color-pf-light-green-300; @color-pf-light-green-400; @color-pf-light-green-400);\n}\n",".filter-pf-category-select {\n  display: flex;\n}\n.filter-pf-category-select-value {\n  border-left-width: 0;\n}\n.filter-pf-category-item {\n  margin-bottom: 5px;\n}\n.filter-pf-category-label {\n  font-weight: 700;\n  margin-right: 5px;\n  padding: 5px 0 6px 5px;\n}\n.filter-pf-select {\n  .caret {\n    position: absolute;\n    top: 50%;\n    right: 10px;\n    transform: translateY(-50%);\n  }\n}\n.filter-pf-select-dropdown {\n  background-color: @color-pf-white;\n  background-image: none;\n  color: @color-pf-black-500;\n  font-size: 12px;\n  font-style: italic;\n  font-weight: 400;\n  padding-right: 25px;\n  text-align: left;\n  .caret {\n    font-style: normal;\n  }\n}\n.filter-pf-active-label {\n  margin-right: 5px;\n}\n","//\n// Footer\n// --------------------------------------------------\n\n.footer-pf-alt, .footer-pf {\n  background-color: @footer-pf-bg-color;\n  color: @gray-light;\n  font-size: @font-size-small;\n  line-height: 17px; // whole px unit to avoid height differences among browsers\n  padding-left: @footer-pf-padding-left;\n  padding-top: @footer-pf-padding-top;\n  .layout-pf-alt-fixed-with-footer &,  .layout-pf-fixed-with-footer & {\n    bottom: 0;\n    left: 0;\n    position: fixed;\n    right: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n}\n","//\n// Icons\n// --------------------------------------------------\n// Custom icons and selections from IcoMoon - Free (http://icomoon.io/#icons)\n\n@font-face {\n  font-family: \"@{icon-font-name-pf}\";\n  src:url(\"@{font-path}/@{icon-font-name-pf}.eot\");\n  src:url(\"@{font-path}/@{icon-font-name-pf}.eot?#iefix\") format(\"embedded-opentype\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.ttf\") format(\"truetype\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.woff\") format(\"woff\"),\n    url(\"@{font-path}/@{icon-font-name-pf}.svg#@{icon-font-name-pf}\") format(\"svg\");\n  font-weight: normal;\n  font-style: normal;\n}\n\n[class^=\"@{icon-prefix}-\"],\n[class*=\" @{icon-prefix}-\"] {\n  display: inline-block;\n  font-family: \"@{icon-font-name-pf}\";\n  font-style: normal;\n  font-variant: normal;\n  font-weight: normal;\n  line-height: 1;\n  speak: none;\n  text-transform: none;\n  /* Better Font Rendering =========== */\n  -moz-osx-font-smoothing: grayscale;\n  -webkit-font-smoothing: antialiased;\n}\n.@{icon-prefix}-add-circle-o:before {\n  content: @pficon-var-add-circle-o;\n}\n.@{icon-prefix}-applications:before {\n  content: @pficon-var-applications;\n}\n.@{icon-prefix}-arrow:before {\n  content: @pficon-var-arrow;\n}\n.@{icon-prefix}-asleep:before {\n  content: @pficon-var-asleep;\n}\n.@{icon-prefix}-automation:before {\n  content: @pficon-var-automation;\n}\n.@{icon-prefix}-build:before {\n  content: @pficon-var-build;\n}\n.@{icon-prefix}-builder-image:before {\n  content: @pficon-var-builder-image;\n}\n.@{icon-prefix}-bundle:before {\n  content: @pficon-var-bundle;\n}\n.@{icon-prefix}-blueprint:before {\n  content: @pficon-var-blueprint;\n}\n.@{icon-prefix}-catalog:before {\n  content: @pficon-var-catalog;\n}\n.@{icon-prefix}-chat:before {\n  content: @pficon-var-chat;\n}\n.@{icon-prefix}-close:before {\n  content: @pficon-var-close;\n}\n.@{icon-prefix}-cloud-security:before {\n  content: @pficon-var-cloud-security;\n}\n.@{icon-prefix}-cloud-tenant:before {\n  content: @pficon-var-cloud-tenant;\n}\n.@{icon-prefix}-cluster:before {\n  content: @pficon-var-cluster;\n}\n.@{icon-prefix}-connected:before {\n  content: @pficon-var-connected;\n}\n.@{icon-prefix}-container-node:before {\n  content: @pficon-var-container-node;\n}\n.@{icon-prefix}-cpu:before {\n  content: @pficon-var-cpu;\n}\n.@{icon-prefix}-degraded:before {\n  content: @pficon-var-degraded;\n}\n.@{icon-prefix}-delete:before {\n  content: @pficon-var-delete;\n}\n.@{icon-prefix}-disconnected:before {\n  content: @pficon-var-disconnected;\n}\n.@{icon-prefix}-domain:before {\n  content: @pficon-var-domain;\n}\n.@{icon-prefix}-edit:before {\n  content: @pficon-var-edit;\n}\n.@{icon-prefix}-enhancement:before {\n  content: @pficon-var-enhancement;\n}\n.@{icon-prefix}-enterprise:before {\n  content: @pficon-var-enterprise;\n}\n.@{icon-prefix}-equalizer:before {\n  content: @pficon-var-equalizer;\n}\n.@{icon-prefix}-error-circle-o:before {\n  color: @brand-danger;\n  content: @pficon-var-error-circle-o;\n}\n.@{icon-prefix}-export:before {\n  content: @pficon-var-export;\n}\n.@{icon-prefix}-flag:before,\n.@{icon-prefix}-messages:before { // class name deprecated\n  content: @pficon-var-flag;\n}\n.@{icon-prefix}-flavor:before {\n  content: @pficon-var-flavor;\n}\n.@{icon-prefix}-filter:before {\n  content: @pficon-var-filter;\n}\n.@{icon-prefix}-folder-close:before {\n  content: @pficon-var-folder-close;\n}\n.@{icon-prefix}-folder-open:before {\n  content: @pficon-var-folder-open;\n}\n.@{icon-prefix}-help:before {\n  content: @pficon-var-help;\n}\n.@{icon-prefix}-history:before {\n  content: @pficon-var-history;\n}\n.@{icon-prefix}-home:before {\n  content: @pficon-var-home;\n}\n.@{icon-prefix}-image:before {\n  content: @pficon-var-image;\n}\n.@{icon-prefix}-import:before {\n  content: @pficon-var-import;\n}\n.@{icon-prefix}-in-progress:before {\n  content: @pficon-var-in-progress;\n}\n.@{icon-prefix}-info:before {\n  content: @pficon-var-info;\n}\n.@{icon-prefix}-infrastructure:before {\n  content: @pficon-var-infrastructure;\n}\n.@{icon-prefix}-integration:before {\n  content: @pficon-var-integration;\n}\n.@{icon-prefix}-key:before {\n  content: @pficon-var-key;\n}\n.@{icon-prefix}-locked:before {\n  content: @pficon-var-locked;\n}\n.@{icon-prefix}-maintenance:before {\n  content: @pficon-var-maintenance;\n}\n.@{icon-prefix}-memory:before {\n  content: @pficon-var-memory;\n}\n.@{icon-prefix}-middleware:before {\n  content: @pficon-var-middleware;\n}\n.@{icon-prefix}-migration:before {\n  content: @pficon-var-migration;\n}\n.@{icon-prefix}-monitoring:before {\n  content: @pficon-var-monitoring;\n}\n.@{icon-prefix}-network:before {\n  content: @pficon-var-network;\n}\n.@{icon-prefix}-network-range:before {\n  content: @pficon-var-network-range;\n}\n.@{icon-prefix}-on:before {\n  content: @pficon-var-on;\n}\n.@{icon-prefix}-on-running:before {\n  content: @pficon-var-on-running;\n}\n.@{icon-prefix}-optimize:before {\n  content: @pficon-var-optimize;\n}\n.@{icon-prefix}-orders:before {\n  content: @pficon-var-orders;\n}\n.@{icon-prefix}-off:before {\n  content: @pficon-var-off;\n}\n.@{icon-prefix}-ok:before {\n  color: @brand-success;\n  content: @pficon-var-ok;\n}\n.@{icon-prefix}-paused:before {\n  content: @pficon-var-paused;\n}\n.@{icon-prefix}-pending:before {\n  content: @pficon-var-pending;\n}\n.@{icon-prefix}-plugged:before {\n  content: @pficon-var-plugged;\n}\n.@{icon-prefix}-port:before {\n  content: @pficon-var-port;\n}\n.@{icon-prefix}-print:before {\n  content: @pficon-var-print;\n}\n.@{icon-prefix}-process-automation:before {\n  content: @pficon-var-process-automation;\n}\n.@{icon-prefix}-private:before {\n  content: @pficon-var-private;\n}\n.@{icon-prefix}-project:before {\n  content: @pficon-var-project;\n}\n.@{icon-prefix}-rebalance:before {\n  content: @pficon-var-rebalance;\n}\n.@{icon-prefix}-rebooting:before {\n  content: @pficon-var-rebooting;\n}\n.@{icon-prefix}-refresh:before, // class name deprecated\n.@{icon-prefix}-restart:before {\n  content: @pficon-var-restart;\n}\n.@{icon-prefix}-regions:before {\n  content: @pficon-var-regions;\n}\n.@{icon-prefix}-registry:before {\n  content: @pficon-var-registry;\n}\n.@{icon-prefix}-remove:before {\n  content: @pficon-var-remove;\n}\n.@{icon-prefix}-replicator:before {\n  content: @pficon-var-replicator;\n}\n.@{icon-prefix}-repository:before {\n  content: @pficon-var-repository;\n}\n.@{icon-prefix}-resource-pool:before {\n  content: @pficon-var-resource-pool;\n}\n.@{icon-prefix}-resources-almost-empty:before {\n  content: @pficon-var-resources-almost-empty;\n}\n.@{icon-prefix}-resources-almost-full:before {\n  content: @pficon-var-resources-almost-full;\n}\n.@{icon-prefix}-resources-full:before {\n  content: @pficon-var-resources-full;\n}\n.@{icon-prefix}-route:before {\n  content: @pficon-var-route;\n}\n.@{icon-prefix}-running:before {\n  content: @pficon-var-running;\n}\n.@{icon-prefix}-satellite:before {\n  content: @pficon-var-satellite;\n}\n.@{icon-prefix}-save:before {\n  content: @pficon-var-save;\n}\n.@{icon-prefix}-screen:before {\n  content: @pficon-var-screen;\n}\n.@{icon-prefix}-search:before {\n  content: @pficon-var-search;\n}\n.@{icon-prefix}-security:before {\n  content: @pficon-var-security;\n}\n.@{icon-prefix}-server:before {\n  content: @pficon-var-server;\n}\n.@{icon-prefix}-server-group:before {\n  content: @pficon-var-server-group;\n}\n.@{icon-prefix}-service:before {\n  content: @pficon-var-service;\n}\n.@{icon-prefix}-services:before {\n  content: @pficon-var-services;\n}\n.@{icon-prefix}-service-catalog:before {\n  content: @pficon-var-service-catalog;\n}\n.@{icon-prefix}-settings:before {\n  content: @pficon-var-settings;\n}\n.@{icon-prefix}-spinner:before {\n  content: @pficon-var-spinner;\n}\n.@{icon-prefix}-spinner2:before {\n  content: @pficon-var-spinner2;\n}\n.@{icon-prefix}-storage-domain:before {\n  content: @pficon-var-storage-domain;\n}\n.@{icon-prefix}-template:before {\n  content: @pficon-var-template;\n}\n.@{icon-prefix}-tenant:before {\n  content: @pficon-var-tenant;\n}\n.@{icon-prefix}-thumb-tack-o:before {\n  content: @pficon-var-thumb-tack-o;\n}\n.@{icon-prefix}-topology:before {\n  content: @pficon-var-topology;\n}\n.@{icon-prefix}-trend-down:before {\n  content: @pficon-var-trend-down;\n}\n.@{icon-prefix}-trend-up:before {\n  content: @pficon-var-trend-up;\n}\n.@{icon-prefix}-unknown:before {\n  content: @pficon-var-unknown;\n}\n.@{icon-prefix}-user:before {\n  content: @pficon-var-user;\n}\n.@{icon-prefix}-users:before {\n  content: @pficon-var-users;\n}\n.@{icon-prefix}-unlocked:before {\n  content: @pficon-var-unlocked;\n}\n.@{icon-prefix}-unplugged:before {\n  content: @pficon-var-unplugged;\n}\n.@{icon-prefix}-vcenter:before {\n  content: @pficon-var-vcenter;\n}\n.@{icon-prefix}-virtual-machine:before {\n  content: @pficon-var-virtual-machine;\n}\n.@{icon-prefix}-volume:before {\n  content: @pficon-var-volume;\n}\n.@{icon-prefix}-warning-triangle-o:before {\n  color: @brand-warning;\n  content: @pficon-var-warning-triangle-o;\n}\n.@{icon-prefix}-zone:before {\n  content: @pficon-var-zone;\n}\n","//\n// Info Tip\n// --------------------------------------------------\n\n// Overwrites for navbar.less\n.navbar-nav > li > .dropdown-menu.infotip {\n  border-top-width: 1px !important;\n  margin-top: @popover-arrow-width;\n}\n\n// Overwrites for PatternFly - navbar.less\n@media (max-width: @grid-float-breakpoint-max) {\n  .navbar-pf .navbar-nav .open .dropdown-menu.infotip {\n    background-color: @color-pf-white !important;\n    margin-top: 0;\n  }\n}\n\n// Extends \"dropdown-menu\"\n.infotip {\n  min-width: 235px;\n  padding: 0;\n  .list-group {\n    border-top: 0;\n    margin: 0;\n    padding: 8px 0;\n    .list-group-item {\n      border: none;\n      margin: 0 15px 0 34px;\n      padding: 5px 0;\n      > .i {\n        color: @gray-pf;\n        font-size: 13px;\n        left: -20px;\n        position: absolute;\n        top: 8px;\n      }\n      > a {\n        color: @gray-pf;\n        line-height: 13px;\n      }\n      > .close {\n        float: right;\n      }\n    }\n  }\n  .footer {\n    background-color: @color-pf-black-150;\n    padding: 6px 15px;\n    a:hover {\n      color: @link-color;\n    }\n  }\n}\n\n// Arrows (Copy from popovers.less)\n//\n// .arrow is outer, .arrow:after is inner\n\n.infotip .arrow {\n  &,\n  &:after {\n    border-color: transparent;\n    border-style: solid;\n    display: block;\n    height: 0;\n    position: absolute;\n    width: 0;\n  }\n}\n.infotip .arrow {\n  border-width: @popover-arrow-outer-width;\n}\n.infotip .arrow:after {\n  border-width: @popover-arrow-width;\n  content: \"\";\n}\n\n.infotip {\n  &.bottom .arrow,\n  &.bottom-left .arrow,\n  &.bottom-right .arrow {\n    border-bottom-color: @popover-arrow-outer-color;\n    border-top-width: 0;\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    top: -@popover-arrow-outer-width;\n    &:after {\n      border-top-width: 0;\n      border-bottom-color: @popover-arrow-color;\n      content: \" \";\n      margin-left: -@popover-arrow-width;\n      top: 1px;\n    }\n  }\n  &.bottom-left .arrow {\n    left: 20%;\n  }\n  // Default:\n  &.bottom-right .arrow {\n    left: 80%;\n  }\n  &.top .arrow {\n    border-bottom-width: 0;\n    border-top-color: @popover-arrow-outer-color;\n    bottom: -@popover-arrow-outer-width;\n    left: 50%;\n    margin-left: -@popover-arrow-outer-width;\n    &:after {\n      border-bottom-width: 0;\n      border-top-color: @color-pf-black-150;\n      bottom: 1px;\n      content: \" \";\n      margin-left: -@popover-arrow-width;\n    }\n  }\n  &.right .arrow {\n    border-left-width: 0;\n    border-right-color: @popover-arrow-outer-color;\n    left: -@popover-arrow-outer-width;\n    margin-top: -@popover-arrow-outer-width;\n    top: 50%;\n    &:after {\n      bottom: -@popover-arrow-width;\n      border-left-width: 0;\n      border-right-color: @popover-arrow-color;\n      content: \" \";\n      left: 1px;\n    }\n  }\n  &.left .arrow {\n    border-left-color: @popover-arrow-outer-color;\n    border-right-width: 0;\n    margin-top: -@popover-arrow-outer-width;\n    right: -@popover-arrow-outer-width;\n    top: 50%;\n    &:after {\n      border-left-color: @popover-arrow-color;\n      border-right-width: 0;\n      bottom: -@popover-arrow-width;\n      content: \" \";\n      right: 1px;\n    }\n  }\n}\n","//\n// Layouts\n// --------------------------------------------------\n.layout-pf {\n  &,\n  & body {\n    min-height: 100%;\n  }\n  &.layout-pf-fixed {\n    &.transitions .container-pf-nav-pf-vertical {\n      transition: @flyout-transition-pf;\n    }\n    body {\n      padding-top: @navbar-pf-height; // make space for the navbar\n    }\n    .navbar-pf {\n      left: 0;\n      position: fixed;\n      top:0;\n      right: 0;\n      z-index: 1030;\n    }\n    .container-pf-nav-pf-vertical {\n      margin-left: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        margin-left: @nav-pf-vertical-badges-width;\n      }\n      &.collapsed-nav {\n        margin-left: @nav-pf-vertical-collapsed-width;\n        &.hidden-icons-pf {\n          margin-left: 0;\n        }\n      }\n      &.hidden-nav {\n        margin-left: 0; // remove space as left nav is hidden\n      }\n      &.hide-nav-pf {\n        margin-left: 0 !important;\n      }\n      &.collapsed-secondary-nav-pf, &.collapsed-tertiary-nav-pf {\n        margin-left: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          margin-left: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.nav-pf-persistent-secondary.secondary-visible-pf {\n        @media (min-width: 1200px) {\n          margin-left: (@nav-pf-vertical-width + @nav-pf-vertical-width);\n          &.nav-pf-vertical-with-badges {\n            margin-left: (@nav-pf-vertical-badges-width + @nav-pf-vertical-badges-width);\n          }\n          &.hidden-nav {\n            margin-left: 0; // remove space as left nav is hidden\n          }\n          &.collapsed-secondary-nav-pf {\n            margin-left: @nav-pf-vertical-width;\n            &.nav-pf-vertical-with-badges {\n              margin-left: @nav-pf-vertical-badges-width;\n            }\n          }\n          &.collapsed-tertiary-nav-pf {\n            margin-left: @nav-pf-vertical-width;\n            &.nav-pf-vertical-with-badges {\n              margin-left: @nav-pf-vertical-badges-width;\n            }\n          }\n          &.collapsed-nav {\n            margin-left: (@nav-pf-vertical-collapsed-width + @nav-pf-vertical-width);\n            &.nav-pf-vertical-with-badges {\n              margin-left: (@nav-pf-vertical-collapsed-width + @nav-pf-vertical-badges-width);\n            }\n            &.collapsed-secondary-nav-pf {\n              margin-left: @nav-pf-vertical-width;\n              &.nav-pf-vertical-with-badges {\n                margin-left: @nav-pf-vertical-badges-width;\n              }\n            }\n            &.collapsed-tertiary-nav-pf {\n              margin-left: @nav-pf-vertical-width;\n              &.nav-pf-vertical-with-badges {\n                margin-left: @nav-pf-vertical-badges-width;\n              }\n            }\n            &.hidden-icons-pf {\n              margin-left: 0;\n            }\n          }\n        }\n      }\n    }\n  }\n  &.layout-pf-fixed-with-footer {\n    body {\n      padding-bottom: @footer-pf-height;\n    }\n  }\n}\n.layout-pf-alt {\n  &,\n  & body {\n    min-height: 100%;\n  }\n  &.layout-pf-alt-fixed {\n    &.layout-pf-alt-fixed-inner-scroll {\n      &,\n      & body {\n        height: 100%;\n        min-height: 0;\n      }\n      .container-pf-alt-nav-pf-vertical-alt {\n        height: 100%;\n        overflow: auto;\n        &.container-cards-pf {\n          margin-top: 0;\n          padding-top: (@grid-gutter-width/2);\n        }\n      }\n    }\n    &.transitions .container-pf-alt-nav-pf-vertical-alt {\n      transition: @flyout-transition-pf;\n    }\n    body {\n      padding-top: @navbar-pf-alt-height; // make space for the navbar\n    }\n    .container-pf-alt-nav-pf-vertical-alt {\n      margin-left: (@nav-pf-vertical-alt-width);\n      &.collapsed-nav {\n        margin-left: (@nav-pf-vertical-alt-collapsed-width); // adjust space for the collapsed left nav\n      }\n      &.hidden-nav {\n        margin-left: 0; // remove space as left nav is hidden\n      }\n    }\n  }\n  &.layout-pf-alt-fixed-with-footer {\n    body {\n      padding-bottom: @footer-pf-alt-height;\n    }\n  }\n}\n","a.disabled {\n  color: @color-pf-black-500;\n  cursor: @cursor-disabled;\n  text-decoration: none;\n}\n","//\n// PatternFly List\n// --------------------------------------------------\n\n.list-pf {\n  border-bottom: 1px solid @list-pf-border-color;\n}\n\n.list-pf-item {\n  border-color: @list-pf-border-color;\n  border-left-color: @color-pf-white;\n  border-right-color: @color-pf-white;\n  border-style: solid;\n  border-width: 1px;\n  border-bottom: none;\n  &:hover {\n    background-color: @list-pf-hover-background-color;\n  }\n  &.active {\n    background-color: @list-pf-header-background-color;\n    border-color: @list-pf-active-border-color;\n    border-bottom-width: 1px;\n    border-bottom-style: solid;\n  }\n}\n\n.list-pf-expansion {\n  background-color: @color-pf-white;\n}\n\n.list-pf-container {\n  align-items: flex-start;\n  display: flex;\n  padding: @list-pf-padding;\n  .list-pf-expansion & {\n    border-top: 1px solid @list-pf-active-border-color;\n  }\n  // when wide enough, if the list is not stacked, then center items vertically\n  @media (min-width: @screen-md-min) {\n    .list-pf:not(.list-pf-stacked) & {\n      align-items: center;\n    }\n  }\n}\n\n.list-pf-chevron {\n  min-width: 1.2em; // ensures that the width does not shift when the chevron is sideways\n}\n\n.list-pf-chevron,\n.list-pf-select {\n  margin-right: 10px;\n  //add the divider line if there is a chevron or a select\n  + .list-pf-content {\n    border-left: 1px solid @color-pf-black-300;\n    padding-left: (@grid-gutter-width/2);\n  }\n  .fa {\n    font-size: 22px;\n  }\n}\n\n// add this class to manage flexed contents in the list item content\n.list-pf-content-flex {\n  align-items: flex-start;\n  display:flex;\n  flex-grow: 1;\n  flex-wrap: nowrap;\n  justify-content: flex-start;\n  min-width: 0;\n  // when wide enough, if the list is not stacked, then center items vertically\n  @media (min-width: @screen-md-min) {\n    .list-pf:not(.list-pf-stacked) & {\n      align-items: center;\n    }\n  }\n}\n\n.list-pf-left {\n  flex-grow: 0;\n  margin-left: 0;\n  margin-right: (@grid-gutter-width/2);\n}\n.list-pf-icon {\n  align-items: center;\n  display:flex;\n  justify-content: center;\n}\n.list-pf-icon-bordered {\n  border-radius: 50%;\n  border: 2px solid @list-view-accented-border;\n}\n.list-pf-icon-small {\n  font-size: 1.4em;\n  height: 30px;\n  line-height: 30px;\n  width: 30px;\n}\n\n\n.list-pf-content-wrapper {\n  align-items: center;\n  display:flex;\n  flex-grow: 1;\n  flex-wrap: wrap;\n  min-width: 0;\n  // when at larger breakpoints, don't stack the contents and add some space between the children\n  @media (min-width: @screen-md-min) {\n    flex-wrap: nowrap;\n    & > * + * {\n      margin-left: @grid-gutter-width;\n    }\n  }\n  // if the list is stacked, then align the contents to the top\n  .list-pf-stacked & {\n    align-items: flex-start;\n  }\n\n}\n\n.list-pf-main-content {\n  align-items: center;\n  display: flex;\n  flex-basis: @list-pf-main-content-width;\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-wrap: wrap;\n  min-width: 0;\n}\n\n// at larger breakpoints, if the list is not stacked, then don't wrap the main contents and add some space between them\n.list-pf:not(.list-pf-stacked) .list-pf-main-content {\n  @media (min-width: @screen-md-min) {\n      flex-wrap: nowrap;\n      width: auto;\n      & > * + * {\n        margin-left: @grid-gutter-width;\n      }\n  }\n}\n\n// Title and description are break-word wrapped; add .text-overflow-pf to truncate and ellipse instead\n.list-pf-title {\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-basis: 100%;\n  font-weight: bold;\n  min-width: 0;\n  word-wrap: break-word;\n}\n.list-pf-description {\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-basis: 100%;\n  min-width: 0;\n  word-wrap: break-word;\n}\n\n.list-pf-additional-content {\n  display: flex;\n  flex-basis: ((100% - @list-pf-main-content-width) + 1%); // this adjusts the proportions but adding up to > 100% allows for proper wrapping\n  flex-grow: 1;\n  flex-shrink: 1;\n  flex-wrap: wrap;\n  justify-content: space-between;\n}\n.list-pf-actions {\n  display: flex;\n  align-items: flex-start;\n  flex-grow: 0;\n  margin-left: @grid-gutter-width;\n  //by default, space contents apart\n  & > * + * {\n    margin-left: (@grid-gutter-width / 4);\n  }\n\n}\n","//\n// List View\n// --------------------------------------------------\n\n\n.list-view-pf {\n  .list-group-item {\n    align-items: flex-start;\n    background-clip: padding-box;\n    border-color: transparent #fff;\n    border-style: solid;\n    border-width: 1px;\n    .clearfix(); //IE9 fallback\n    display: flex;\n    flex-wrap: wrap;\n    padding-bottom: 0;\n    padding-top: 0;\n    &.list-view-pf-expand-active {\n      background-color: @list-view-hover-bg;\n      box-shadow: 0 2px 6px rgba(3, 3, 3, .2);\n      z-index: 1;\n    }\n    &.active {\n      color: @list-group-link-color;\n      background-color: @list-view-active-bg;\n      background-clip: border-box;\n      border-color: @list-view-active-border transparent transparent;\n      z-index:auto;\n    }\n    &:hover {\n      background-color: @list-view-hover-bg;\n      border-left-color: transparent;\n      border-right-color: transparent;\n    }\n    &.list-view-pf-expand-active {\n      border: solid 1px @list-view-active-border;\n      &:first-child {\n        border-top-color: @list-view-active-border;\n      }\n    }\n    &:first-child {\n      border-top: 1px solid transparent;\n    }\n    @media (min-width: @screen-md-min) {\n      align-items: center;\n    }\n  }\n  .list-group-item-heading {\n    font-size: @font-size-h3;\n    small {\n      display: block;\n      font-size: (@font-size-base * .8);\n      font-weight: 400;\n    }\n    @media (min-width: @screen-md-min) {\n      flex:     1 0 ~\"calc(25% - 20px)\";\n      float: left; // IE9 fallback\n      font-size: @font-size-base;\n      margin: 0 (@grid-gutter-width/2) 0 0;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      white-space: nowrap;\n      width: ~\"calc(25% - 20px)\"; // IE9 fallback\n    }\n  }\n  .list-group-item-text {\n    color: currentColor !important; // to overwrite color change when active.\n    margin-bottom: 10px;\n    @media (min-width: @screen-md-min) {\n      flex:     1 0 auto; // it covers whats left from the title\n      float: left; // IE9 fallback\n      margin: 0 @grid-gutter-width 0 0;\n      width: ~\"calc(75% - 40px)\" // IE9 fallback\n    }\n  }\n  .close {\n    float: none;\n    position: absolute;\n    right: 15px;\n  }\n}\n.list-view-pf-actions {\n  float: right; // IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-left: (@grid-gutter-width/2);\n  margin-top: (@grid-gutter-width/2);\n  order: 2;\n  button,\n  > a,\n  .dropdown-kebab-pf {\n    margin-left: (@grid-gutter-width/4);\n  }\n  .list-view-pf-top-align & {\n    align-self: flex-start;\n  }\n}\n.list-view-pf-additional-info {\n  align-items: center;\n  display: flex;\n  flex-wrap: wrap;\n  @media (min-width: @screen-md-min) {\n    flex: 1 0 auto; // it covers whats left from summary\n    float: left; // IE9 fallback\n    width: 50%; // IE9 fallback\n  }\n}\n.list-view-pf-additional-info-item {\n  align-items: center;\n  display: inline-block;\n  display: flex;\n  margin-right: (@grid-gutter-width/2);\n  max-width:100%;\n  text-align: center;\n  &.list-view-pf-additional-info-item-stacked {\n    text-align: center;\n    flex-direction: column;\n    strong {\n      font-size: @font-size-h5;\n      line-height: 1em;\n    }\n  }\n  .pficon, .fa {\n    font-size: @font-size-h3;\n    margin-right: (@grid-gutter-width/4);\n  }\n  strong {\n    font-size: @font-size-h3;\n    font-weight: 600;\n    margin-right: 5px;\n  }\n  &:last-child {\n    margin-right: 0;\n  }\n}\n.list-view-pf-additional-info-item-donut-chart { width: 60px; }\n.list-view-pf-body {\n  align-items: center;\n  display: table-cell; //IE9 fallback\n  flex:     1;\n  min-width: 0;\n  vertical-align: top; //IE9 fallback\n  width: 100%; // IE9 fallback, it extends the cell to size of the container\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    display: flex;\n    flex-direction: row;\n  }\n}\n.list-view-pf-checkbox {\n  border-right: 1px solid @list-view-divider;\n  float: left; //IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-right: 15px;\n  margin-top: (@grid-gutter-width/2);\n  padding: 3px (@grid-gutter-width/4) 3px 0;\n  .list-view-pf-top-align & {\n    align-self: flex-start;\n  }\n}\n.list-view-pf-description {\n  flex:     1 0 50%;\n  .list-view-pf-stacked & {\n    display: block;\n    flex: none; // Fix FF\n  }\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    display: flex;\n    float: left; //IE9 fallback\n    width: 50%; //IE9 fallback\n  }\n}\n.list-view-pf-left {\n  display: table-cell; //IE9 fallback\n  padding-right: (@grid-gutter-width/2);\n  text-align: center;\n  vertical-align: top; //IE9 fallback\n  .list-view-pf-calendar {\n    font-size: @font-size-small;\n    line-height: 1em;\n    strong {\n      display: block;\n      font-size: (@font-size-h2 * 2);\n      font-weight: 300;\n      line-height: 1em;\n    }\n  }\n  .pficon, .fa {\n    border-radius: 50%;\n    font-size: 2em;\n    // -md is out of alpha order to get correct bg on -danger\n    &.list-view-pf-icon-md {\n      background-color: @alert-info-bg;\n      height: 50px;\n      line-height: 50px;\n      width: 50px;\n    }\n    &.list-view-pf-icon-danger {\n      background-color: @alert-danger-bg;\n      color: @alert-danger-border;\n    }\n    &.list-view-pf-icon-info {\n      color: @alert-info-border;\n    }\n    &.list-view-pf-icon-lg {\n      background-color: @alert-info-bg;\n      height: 60px;\n      line-height: 60px;\n      width: 60px;\n    }\n    &.list-view-pf-icon-sm {\n      border: 2px solid @list-view-accented-border;\n      font-size: 1.4em;\n      height: 30px;\n      line-height: 30px;\n      width: 30px;\n      &:before {\n        display: block;\n        line-height: 26px;\n      }\n    }\n    &.list-view-pf-icon-success {\n      background-color: @alert-success-bg;\n      color: @alert-success-border;\n    }\n    &.list-view-pf-icon-warning {\n      background-color: @alert-warning-bg;\n      color: @alert-warning-border;\n    }\n  }\n}\n.list-view-pf-main-info {\n  align-items: flex-start;\n  display: flex;\n  flex: 1;\n  min-width: 0;\n  padding-bottom: (@grid-gutter-width/2);\n  padding-top: (@grid-gutter-width/2);\n  @media (min-width: @screen-md-min) {\n    align-items: center;\n    .list-view-pf-top-align & {\n      align-items: flex-start;\n    }\n  }\n}\n.list-view-pf-stacked {\n  .list-group-item-heading {\n    float: none; // IE9 fallback\n    font-size: @font-size-h3;\n    line-height: 1.2em;\n    margin-bottom: 5px;\n    margin-right: @grid-gutter-width;\n    width: auto; // IE9 fallback\n  }\n  .list-group-item-text {\n    float: none;\n    width: auto;\n  }\n}\n.list-view-pf-view {\n  background: @list-group-top-border;\n  border: none;\n  margin-top: 30px;\n}\n.list-group-item-header {\n  box-sizing: content-box;\n  cursor: pointer;\n  margin: 0 -15px;\n  padding: 0 15px; //filling the width of the list item\n  width: 100%;\n}\n.list-view-pf-expand {\n  cursor: pointer;\n  float: left; //IE9 fallback\n  margin-bottom: (@grid-gutter-width/2);\n  margin-right: 2px;\n  margin-top: (@grid-gutter-width/2);\n  padding: 3px 0;\n  &.active,\n  &:hover {\n    color: @link-color;\n  }\n  .list-view-pf-additional-info-item & {\n    margin: 0;\n    padding: 0;\n  }\n  .fa-angle-right {\n    cursor: pointer;\n    font-size: (@font-size-large+3);\n    margin-right: 5px;\n    margin-top: 2px;\n    width: 10px;\n  }\n}\n.list-group-item-container {\n  background: #fff;\n  border-top: solid 1px @list-view-active-border;\n  box-sizing: content-box;\n  margin: -1px -15px 0;\n  order: 3;\n  padding: 15px;\n  position: relative;\n  width: 100%;\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n//    contenteditable attribute is included anywhere else in the document.\n//    Otherwise it causes space to appear at the top and bottom of elements\n//    that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n//    `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n  &:before,\n  &:after {\n    content: \" \"; // 1\n    display: table; // 2\n  }\n  &:after {\n    clear: both;\n  }\n}\n","//\n// List View Drag and Drop\n// See: https://github.com/marceljuenemann/angular-drag-and-drop-lists\n// --------------------------------------------------\n\n.list-view-pf-dnd {\n  // Override dnd styles\n  .dndDragging {\n    &.drag-original {\n      display: none;\n      // Show when dragging original list items\n      .list-view-pf-dnd-original-items {\n        display: block;\n      }\n    }\n    // Show dragable list items during move operation\n    .list-view-pf-dnd-drag-items {\n      display: inline-block;\n    }\n    // Hide original list items during dnd move operation\n    .list-view-pf-dnd-original-items {\n      display: none;\n    }\n  }\n  // Override dnd placeholder element for dragging list items to\n  .dndPlaceholder {\n    background-color: @color-pf-black-200;\n    padding: 20px 0;\n  }\n  // A handle decoration shown to left of each list items row\n  .list-group-item-header {\n    margin-left: -10px;\n    &:before {\n      background-image: linear-gradient(to bottom, @color-pf-blue-400 60%, @color-pf-white 0%);\n      background-position: left;\n      background-repeat: repeat-y;\n      background-size: 2px 5px;\n      border: 4px solid @color-pf-blue-400;\n      border-color: @color-pf-blue-500;\n      content: \"\";\n      height: 55px;\n      left: 4px;\n      position: absolute;\n      top: 5px;\n      width: 10px;\n    }\n  }\n}\n\n// Always hide dragable list items until shown during dnd move operation\n.list-view-pf-dnd-drag-items {\n  display: none;\n}\n","//\n// Login\n// --------------------------------------------------\n\n.login-pf {\n  height: 100%;\n  #brand {\n    position: relative;\n    top: -70px;\n    img {\n      display: block;\n      height: 18px;\n      margin: 0 auto;\n      max-width: 100%;\n      @media (min-width: @screen-sm-min) {\n        margin: 0;\n        text-align: left;\n      }\n    }\n  }\n  #badge {\n    display: block;\n    margin: 20px auto 70px;\n    position: relative;\n    text-align: center;\n    @media (min-width: @screen-sm-min) {\n      float: right;\n      margin-right: 64px;\n      margin-top: 50px;\n    }\n  }\n  body {\n    background: @login-bg-color url(\"@{img-path}/@{img-bg-login}\") repeat-x 50% 0;\n    background-size: auto;\n    @media (min-width: @screen-sm-min) {\n      background-size: 100% auto;\n    }\n  }\n  .container {\n    background-color: @login-container-bg-color-rgba;\n    clear: right;\n    color: @color-pf-white;\n    padding-bottom: 40px;\n    padding-top: 20px;\n    width: auto;\n    @media (min-width: @screen-sm-min) {\n      bottom: 13%;\n      padding-left: 80px;\n      position: absolute;\n      width: 100%;\n    }\n    .details {\n      p:first-child {\n        border-top: 1px solid fade(@color-pf-white, 30%);\n        padding-top: 25px;\n        margin-top: 25px;\n      }\n      @media (min-width: @screen-sm-min) {\n        p:first-child {\n          border-top: 0;\n          padding-top: 0;\n          margin-top: 0;\n        }\n        border-left: 1px solid fade(@color-pf-white, 30%);\n        padding-left: 40px;\n      }\n      p {\n        margin-bottom: 2px;\n      }\n    }\n    .form-horizontal {\n      .control-label {\n        font-size: (@font-size-base + 1);\n        font-weight: 400;\n        text-align: left;\n      }\n      .form-group:last-child {\n        &,\n        .help-block:last-child {\n          margin-bottom: 0;\n        }\n      }\n    }\n    .help-block {\n      color: @color-pf-white;\n    }\n    .login {\n      @media (min-width: @screen-sm-min) {\n        padding-right: 40px;\n      }\n    }\n    .submit {\n      text-align: right;\n    }\n  }\n}\n\n//\n// Login\n// The following styles are for the new login\n// --------------------------------------------------\n.login-pf-page {\n  .login-pf-brand {\n    margin-top: @login-pf-brand-margin-top;\n    max-width:360px;\n    width: 70%;\n    @media (min-width: @screen-sm-min) {\n      margin-top: @login-pf-brand-desktop-margin-top;\n    }\n  }\n  .login-pf-page-header {\n    margin-bottom: @login-pf-page-header-margin-bottom;\n      @media (min-width: @screen-sm-min) {\n        margin-bottom: @login-pf-page-header-desktop-margin-bottom;\n      }\n    text-align: center;\n    p {\n      color: @color-pf-white;\n      font-size: @font-size-large;\n      margin-left: auto;\n      margin-right: auto;\n      margin-top: @login-pf-page-header-paragraph-margin-top;\n    }\n  }\n  .card-pf {\n    padding: @login-pf-card-pf-padding;\n    margin-bottom: 0;\n    @media (min-width: @screen-sm-min) {\n      padding: @login-pf-card-pf-desktop-padding;\n    }\n    p {\n      color: @color-pf-black-600;\n    }\n  }\n  .form-control {\n    height: ceil((@input-height-base + 10px ));\n  }\n  .checkbox-label {\n    color: @color-pf-black-600;\n    font-weight: 300;\n    margin-bottom: @login-pf-checkbox-label-margin-bottom;\n    @media (min-width: @screen-sm-min) {\n      margin: 0;\n    }\n  }\n  .btn-primary {\n    margin-top: @login-pf-btn-primary-margin-top;\n  }\n  .login-pf-header {\n    margin-bottom: @login-pf-header-margin-bottom;\n    @media (min-width: @screen-sm-min) {\n      margin-bottom:@login-pf-header-desktop-margin-bottom;\n    }\n    display:flex;\n    flex-direction: column;\n    h1, p {\n      text-align: center;\n    }\n    h1 {\n      font-size: @font-size-h3;\n      @media (min-width: @screen-sm-min) {\n        font-size: @font-size-h1;\n      }\n    }\n    //this is ugly but neccessary to get the desired style :(\n    .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {\n      width: auto;\n      align-self: flex-end;\n      .dropdown-toggle {\n        color: @color-pf-black-700;\n        background: none;\n        padding:0 @login-pf-dropdown-toggle-padding-right 0 0;\n        font-weight: 300;\n        &:not(:focus) {\n          box-shadow: none;\n          border: 1px solid transparent;\n        }\n          .caret {\n            right: 0;\n          }\n      }\n    }\n  }\n  .login-pf-signup {\n    margin: @login-pf-signup-margin-top 0 0;\n    font-size: ceil((@font-size-base * 1.25));\n    text-align: center;\n    a {\n      margin-left: @login-pf-signup-a-margin-left;\n    }\n  }\n  .login-pf-settings {\n    display: flex;\n    justify-content: space-between;\n    flex-wrap: wrap;\n  }\n  .login-pf-page-footer {\n    display: flex;\n    justify-content: center;\n    flex-wrap:wrap;\n    &-links {\n      display: flex;\n      margin: @login-pf-page-footer-links-margin-top 0 0 0;\n        li:not(:last-of-type) {\n          position: relative;\n          margin: 0 @login-pf-page-footer-links-li-margin-right 0 0;\n            &:after {\n              content:\".\";\n              color: @color-pf-white;\n              position: absolute;\n              top: 0px;\n              right: -10px;\n            }\n        }\n    }\n    &-link {\n      color: @color-pf-white;\n      font-size: @font-size-large;\n    }\n    &-sso-services {\n      flex: 1 0 100%;\n      margin-top: @login-pf-page-footer-sso-margin-top;\n      text-align: center;\n      color: @color-pf-white;\n      &-logos {\n        display: flex;\n        flex-wrap: wrap;\n        padding: 0;\n        margin: 0;\n        list-style: none;\n        justify-content: center;\n          li {\n            margin: 0 @login-pf-page-footer-sso-logos-li-margin @login-pf-page-footer-sso-logos-li-margin;\n          }\n      }\n    }\n  }//login-pf-footer\n\n\n  // The following styles are for the login page with different account options\n  // --------------------------------------------------------------------------\n\n  &.login-pf-page-accounts {\n    margin-left: @login-pf-page-accounts-margin;\n    margin-right: @login-pf-page-accounts-margin;\n  }\n  .login-pf-accounts {\n    display: flex;\n    justify-content: space-between;\n    flex-wrap: wrap;\n    .login-pf-header, .login-pf-signup {\n      flex-basis: 100%;\n    }\n    max-width: @login-pf-card-pf-max-width;\n    margin-left: auto;\n    margin-right: auto;\n  }\n  .login-pf-social-section {\n    flex-basis: 100%;\n    padding:0;\n    @media (min-width: @screen-sm-min) {\n    flex:0 1 50%;\n    max-width:50%;// this is for IE10/11 that doesn't consider padding with box-sizing on flex-children.\n    }\n    @media (min-width: @screen-sm-min) {\n      &:first-of-type {\n        padding-right: @login-pf-accounts-section-heading-desktop-padding-right;\n      }\n      &:last-of-type {\n        padding-left: ceil((@login-pf-accounts-section-heading-desktop-padding-left - 1px));\n        border-left: 1px solid @color-pf-black-300;\n      }\n    }\n  }//social-section\n  .login-pf-social {\n    margin: @login-pf-social-margin;\n    @media (min-width: @screen-sm-min) {\n      margin: 0;\n      &-double-col {\n        flex-wrap: wrap;\n        display: flex;\n        justify-content: space-between;\n        .login-pf-social-link {\n          flex-basis: 48%;\n        }\n      }\n    }\n\n    &:not(.login-pf-social-all) {\n      .login-pf-social-link-more {\n        display: none;\n      }\n    }\n\n    &-link {\n        margin-bottom: @login-pf-accounts-link-margin-bottom;\n      a {\n        display: block;\n        padding: @login-pf-accounts-link-a-padding 0;\n        font-size: @font-size-large;\n        background: @color-pf-black-150;\n        text-align: center;\n        color: @color-pf-black-600;\n          img {\n            margin: 0 @login-pf-accounts-link-img-margin-right 0 0;\n            width: 20px;\n            height: 20px;\n          }\n          &:hover {\n            text-decoration: none;\n            background: @color-pf-black-200;\n          }\n      }\n    }\n    &-toggle {\n      float: right;\n      padding: 0;\n      .caret {\n        margin-left: @login-pf-accounts-more-caret-margin-left;\n      }\n      &-active {\n        .caret {\n          transform: rotate(-180deg);\n        }\n      }\n    }\n  }\n\n}//login-pf-page\n","//\n// Navbar\n// --------------------------------------------------\n\n.navbar-pf {\n  background: @navbar-pf-bg-color;\n  border: 0;\n  border-radius: 0;\n  border-top: 3px solid @navbar-pf-border-color;\n  margin-bottom: 0;\n  min-height: 0;\n  .navbar-brand {\n    color: @navbar-pf-active-color;\n    height: auto;\n    padding: 12px 0;\n    margin: 0 0 0 20px;\n    img {\n      display: block;\n    }\n  }\n  .navbar-collapse {\n    border-top: 0;\n    .box-shadow(none);\n    padding: 0;\n  }\n  .navbar-header {\n    border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n    float: none;\n  }\n  .navbar-nav {\n    margin: 0;\n    > .active > a,\n    > .active > a:hover,\n    > .active > a:focus {\n      background-color: @navbar-pf-navbar-nav-active-bg-color;\n      color: @navbar-pf-active-color;\n    }\n    > li > a {\n      color: @navbar-pf-color;\n      line-height: 1;\n      padding: 10px 20px;\n      text-shadow: none;\n      &:hover,\n      &:focus {\n        color: @navbar-pf-active-color;\n      }\n    }\n    > .open {\n      > a {\n        &,\n        &:hover,\n        &:focus {\n          background-color: @navbar-pf-navbar-nav-active-bg-color;\n          color: @navbar-pf-active-color;\n        }\n      }\n    }\n .badge {\n    background-color: @notification-badge-color;\n    border-radius: 20px;\n    color: @navbar-pf-vertical-active-color;\n    cursor: pointer;\n    font-size: (@font-size-base - 3);\n    font-weight: 700;\n    left: 26px;\n    margin: 0;\n    padding: 2px 4px;\n    position: absolute;\n    min-width: 10px;\n    min-height: 10px;\n    top: 6px;\n    @media(min-width: @screen-sm-min) {\n      left: auto;\n      right: 6px;\n      top: 3px;\n    }\n    &.badge-pf-bordered {\n      border: 1px solid @navbar-pf-bg-color;\n    }\n}\n\n    @media (max-width: @grid-float-breakpoint-max) {\n      .active .dropdown-menu,\n      .active .navbar-persistent,\n      .open .dropdown-menu {\n        background-color: @navbar-pf-navbar-nav-active-active-bg-color !important;\n        margin-left: 0;\n        padding-bottom: 0;\n        padding-top: 0;\n        > .active > a,\n        .dropdown-submenu.open > a {\n          &,\n          &:hover,\n          &:focus {\n            background-color: @navbar-pf-navbar-nav-active-active-open-bg-color !important;\n            color: @navbar-pf-active-color;\n          }\n        }\n        > li > a {\n          background-color: transparent;\n          border: 0;\n          color: @navbar-pf-color;\n          outline: none;\n          padding-left: 30px;\n          &:hover {\n            color: @navbar-pf-active-color;\n          }\n        }\n        .divider {\n          background-color: @navbar-pf-navbar-header-border-color;\n          margin: 0 1px;\n        }\n        .dropdown-header {\n          padding-bottom: 0;\n          padding-left: 30px;\n        }\n        .dropdown-submenu {\n          &.open .dropdown-toggle {\n            color: @navbar-pf-active-color;\n          }\n          &.pull-left {\n            float: none !important;\n          }\n          > a:after {\n            display: none;\n          }\n          .dropdown-header {\n            padding-left: 45px;\n          }\n          .dropdown-menu {\n            border: 0;\n            bottom: auto;\n            .box-shadow(none);\n            display: block;\n            float: none;\n            margin: 0;\n            min-width: 0;\n            padding: 0;\n            position: relative;\n            left: auto;\n            right: auto;\n            top: auto;\n            > li > a {\n              padding: 5px 15px 5px 45px;\n              line-height: 20px;\n            }\n            .dropdown-menu > li > a {\n              padding-left: 60px;\n            }\n          }\n        }\n      }\n      .active .navbar-persistent {\n        .dropdown-submenu {\n          &.open .dropdown-menu {\n            display: block;\n          }\n          > a:after {\n            display: inline-block !important;\n            position: relative;\n            right: auto;\n            top: 1px;\n          }\n          .dropdown-menu {\n            display: none;\n          }\n          .dropdown-submenu > a:after {\n            display: none !important;\n          }\n        }\n      }\n      .context-bootstrap-select { // Also see bootstrap-select.less\n        .open > .dropdown-menu {\n          background-color: @color-pf-white !important;\n          > .active > a {\n            &,\n            &:active {\n              background-color: @dropdown-link-hover-bg !important;\n              border-color: @dropdown-link-hover-border-color !important;\n              color: @gray-dark !important;\n              small {\n                color: @gray-light !important;\n              }\n            }\n          }\n          > .disabled > a {\n            color: @gray-light !important;\n          }\n          > .selected > a {\n            &,\n            &:active {\n              background-color: @dropdown-link-active-bg !important;\n              border-color: @dropdown-link-active-border-color !important;\n              color: @color-pf-white !important;\n              small {\n                color: fade(@color-pf-white, 50%) !important;\n              }\n            }\n          }\n          li {\n            > a.opt {\n              border-bottom: 1px solid transparent;\n              border-top: 1px solid transparent;\n              color: @gray-dark;\n              padding-left: 10px;\n              padding-right: 10px;\n            }\n            & a {\n              &:active small {\n                color: fade(@color-pf-white, 50%) !important;\n              }\n              &:hover,\n              &:focus {\n                small {\n                  color: @gray-light;\n                }\n              }\n            }\n          }\n        }\n        > .open > .dropdown-menu {\n          padding-bottom: 5px;\n          padding-top: 5px;\n        }\n      }\n    }\n  }\n  .navbar-persistent {\n    display: none;\n  }\n  .active > .navbar-persistent {\n    display: block;\n  }\n  .navbar-primary {\n    float: none;\n    .context {\n      border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n      &.context-bootstrap-select .bootstrap-select.btn-group {\n        &,\n        &[class*=\"span\"] {\n          margin: 8px 20px 9px;\n          width: auto; // known bug:  IE8 will make it as wide as the longest string\n        }\n      }\n    }\n    > li > .navbar-persistent > .dropdown-submenu > a {\n      position: relative;\n      &:after {\n        content: @fa-var-angle-down;\n        display: inline-block;\n        font-family: @icon-font-name-fa;\n        font-weight: normal;\n        @media (max-width: @grid-float-breakpoint-max) {\n          height: 10px;\n          margin-left: 4px;\n          vertical-align: baseline;\n        }\n      }\n    }\n  }\n  .navbar-toggle {\n    border: 0;\n    margin: 0;\n    padding: 10px 20px;\n    &:hover,\n    &:focus {\n      background-color: transparent;\n      outline: none;\n      .icon-bar {\n        .box-shadow(0 0 3px @color-pf-white);\n      }\n    }\n    .icon-bar {\n      background-color: @navbar-pf-icon-bar-bg-color;\n    }\n  }\n  .navbar-utility {\n    border-bottom: 1px solid @navbar-pf-navbar-header-border-color;\n    li.dropdown > .dropdown-toggle {\n      padding-left: 36px;\n      position: relative;\n      .pficon-user {\n        left: 20px;\n        position: absolute;\n        top: 10px;\n      }\n    }\n    @media (max-width: @grid-float-breakpoint-max) {\n      > li + li {\n        border-top: 1px solid @navbar-pf-navbar-header-border-color;\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint) {\n  .navbar-pf {\n    .navbar-brand {\n      padding: @navbar-pf-navbar-navbar-brand-padding;\n    }\n    .navbar-nav > li > a {\n      padding-bottom: 14px;\n      padding-top: 14px;\n    }\n    .navbar-persistent {\n      font-size: @font-size-large;\n    }\n    .navbar-primary {\n      font-size: @font-size-large;\n      #gradient > .vertical(@navbar-pf-navbar-primary-bg-color-start, @navbar-pf-navbar-primary-bg-color-stop);\n      &.persistent-secondary {\n        .context {\n          .dropdown-menu {\n            top: auto;\n          }\n        }\n        .dropup .dropdown-menu {\n          bottom: -5px;\n          top: auto;\n        }\n        > li {\n          position: static;\n          &.active {\n            margin-bottom: 32px;\n            > .navbar-persistent {\n              display: block;\n              left: 0;\n              position: absolute;\n            }\n          }\n          > .navbar-persistent {\n            background: @navbar-pf-navbar-navbar-persistent-bg-color;\n            border-bottom: 1px solid @navbar-pf-navbar-navbar-persistent-border-color;\n            padding: 0;\n            width: 100%;\n            a {\n              text-decoration: none !important;\n            }\n            > li {\n              &.active {\n                &,\n                &:hover {\n                  .tab-indicator(@background: @nav-tabs-active-link-hover-color, @left: 20px, @right: 20px);\n                }\n                > a,\n                > a:hover,\n                &:hover > a {\n                  color: @link-color !important;\n                }\n                .active > a {\n                  color: @navbar-pf-active-color;\n                }\n              }\n              &.dropdown-submenu {\n                &:hover > .dropdown-menu {\n                  display: none;\n                }\n                &.open {\n                  > .dropdown-menu {\n                    display: block;\n                    left: 20px;\n                    margin-top: 1px;\n                    top: 100%;\n                  }\n                  > .dropdown-toggle {\n                    color: @gray-darker;\n                    &:after {\n                      border-top-color: @gray-darker;\n                    }\n                  }\n                }\n                > .dropdown-toggle {\n                  padding-right: 35px !important;\n                  &:after {\n                    position: absolute;\n                    right: 20px;\n                    top: 10px;\n                  }\n                }\n              }\n              &:hover,\n              &.open {\n                .tab-indicator(@left: 20px, @right: 20px);\n                > a {\n                  color: @gray-darker;\n                  &:after {\n                    border-top-color: @gray-darker;\n                  }\n                }\n              }\n              > a {\n                background-color: transparent;\n                display: block;\n                line-height: 1;\n                padding: 9px 20px;\n                &.dropdown-toggle {\n                  padding-right: 35px;\n                  &:after {\n                    font-size: (@font-size-large + 1);\n                    position: absolute;\n                    right: 20px;\n                    top: 9px;\n                  }\n                }\n                &:hover {\n                  color: @gray-darker;\n                }\n              }\n              a {\n                color: @gray-pf;\n              }\n            }\n          }\n        }\n      }\n      > li > a {\n        border-bottom: 1px solid transparent;\n        border-top: 1px solid transparent;\n        position: relative;\n        margin: -1px 0 0;\n        &:hover {\n          background-color: @navbar-pf-navbar-primary-hover-bg-color-stop;\n          border-top-color: @navbar-pf-navbar-primary-hover-border-color;\n          color: @navbar-pf-color;\n          #gradient > .vertical(@navbar-pf-navbar-primary-hover-bg-color-start, @navbar-pf-navbar-primary-hover-bg-color-stop);\n        }\n      }\n      > .active > a,\n      > .active > a:hover,\n      > .active > a:focus,\n      > .open > a,\n      > .open > a:hover,\n      > .open > a:focus {\n        background-color: @navbar-pf-navbar-primary-active-bg-color-stop;\n        border-bottom-color: @navbar-pf-navbar-primary-active-bg-color-stop;\n        border-top-color: @navbar-pf-navbar-primary-active-border-color;\n        .box-shadow(none);\n        color: @navbar-pf-active-color;\n        #gradient > .vertical(@navbar-pf-navbar-primary-active-bg-color-start, @navbar-pf-navbar-primary-active-bg-color-stop);\n      }\n      li.context {\n        &.context-bootstrap-select .filter-option {\n          max-width: 160px;\n          text-overflow: ellipsis;\n        }\n        &.dropdown {\n          border-bottom: 0;\n        }\n        > a,\n        &.context-bootstrap-select {\n          background-color: @navbar-pf-navbar-primary-context-bg-color-stop;\n          border-bottom-color: @navbar-pf-navbar-primary-context-border-color;\n          border-right: 1px solid @navbar-pf-navbar-primary-context-border-color;\n          border-top-color: @navbar-pf-navbar-primary-context-border-top-color;\n          font-weight: 600;\n          #gradient > .vertical(@navbar-pf-navbar-primary-context-bg-color-start, @navbar-pf-navbar-primary-context-bg-color-stop);\n          &:hover {\n            background-color: @navbar-pf-navbar-primary-context-hover-bg-color-stop;\n            border-bottom-color: @navbar-pf-navbar-primary-context-hover-border-color;\n            border-right-color: @navbar-pf-navbar-primary-context-hover-border-color;\n            border-top-color: @navbar-pf-navbar-primary-context-hover-border-top-color;\n            #gradient > .vertical(@navbar-pf-navbar-primary-context-hover-bg-color-start, @navbar-pf-navbar-primary-context-hover-bg-color-stop);\n          }\n        }\n        &.open > a {\n          background-color: @navbar-pf-navbar-primary-context-active-bg-color-stop;\n          border-bottom-color: @navbar-pf-navbar-primary-context-active-border-color;\n          border-right-color: @navbar-pf-navbar-primary-context-active-border-right-color;\n          border-top-color: @navbar-pf-navbar-primary-context-active-border-top-color;\n          #gradient > .vertical(@navbar-pf-navbar-primary-context-active-bg-color-start, @navbar-pf-navbar-primary-context-active-bg-color-stop);\n        }\n      }\n    }\n    .navbar-utility {\n      border-bottom: 0;\n      font-size: @font-size-small;\n      position: absolute;\n      right: 0;\n      top: 0;\n      > .active > a,\n      > .active > a:hover,\n      > .active > a:focus,\n      > .open > a,\n      > .open > a:hover,\n      > .open > a:focus {\n        background: @navbar-pf-navbar-utility-open-bg-color;\n        color: @navbar-pf-navbar-utility-color;\n      }\n      > li > a {\n        border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n        color: @navbar-pf-navbar-utility-color !important;\n        padding: 7px 10px;\n        &:hover {\n          background: @navbar-pf-navbar-utility-hover-bg-color;\n          border-left-color: @navbar-pf-navbar-utility-hover-border-color;\n        }\n      }\n      > li.open > a {\n        border-left-color: @navbar-pf-navbar-utility-open-border-color;\n        color: @navbar-pf-active-color !important;\n      }\n      li.dropdown > .dropdown-toggle {\n        padding-left: 26px;\n        .pficon-user {\n          left: 10px;\n          top: 7px;\n        }\n      }\n      .open .dropdown-menu {\n        left: auto;\n        right: 0;\n        .dropdown-menu {\n          left: auto;\n          right: 100%;\n        }\n      }\n    }\n    .navbar-utility .open .dropdown-menu {\n        border-top-width: 0;\n    }\n    .open {\n      &.bootstrap-select .dropdown-menu,\n      .dropdown-submenu > .dropdown-menu {\n        border-top-width: 1px !important;\n      }\n    }\n  }\n}\n@media (max-width: 360px) {\n  .navbar-pf {\n    .navbar-brand {\n      margin-left: 10px;\n      width: 75%;\n      img {\n        height: auto;\n        max-width: 100%;\n      }\n    }\n    .navbar-toggle {\n      padding-left: 0;\n    }\n  }\n}\n","// Variables\n// --------------------------\n\n@fa-font-path:        \"../fonts\";\n@fa-font-size-base:   14px;\n@fa-line-height-base: 1;\n//@fa-font-path:        \"//netdna.bootstrapcdn.com/font-awesome/4.7.0/fonts\"; // for referencing Bootstrap CDN font files directly\n@fa-css-prefix:       fa;\n@fa-version:          \"4.7.0\";\n@fa-border-color:     #eee;\n@fa-inverse:          #fff;\n@fa-li-width:         (30em / 14);\n\n@fa-var-500px: \"\\f26e\";\n@fa-var-address-book: \"\\f2b9\";\n@fa-var-address-book-o: \"\\f2ba\";\n@fa-var-address-card: \"\\f2bb\";\n@fa-var-address-card-o: \"\\f2bc\";\n@fa-var-adjust: \"\\f042\";\n@fa-var-adn: \"\\f170\";\n@fa-var-align-center: \"\\f037\";\n@fa-var-align-justify: \"\\f039\";\n@fa-var-align-left: \"\\f036\";\n@fa-var-align-right: \"\\f038\";\n@fa-var-amazon: \"\\f270\";\n@fa-var-ambulance: \"\\f0f9\";\n@fa-var-american-sign-language-interpreting: \"\\f2a3\";\n@fa-var-anchor: \"\\f13d\";\n@fa-var-android: \"\\f17b\";\n@fa-var-angellist: \"\\f209\";\n@fa-var-angle-double-down: \"\\f103\";\n@fa-var-angle-double-left: \"\\f100\";\n@fa-var-angle-double-right: \"\\f101\";\n@fa-var-angle-double-up: \"\\f102\";\n@fa-var-angle-down: \"\\f107\";\n@fa-var-angle-left: \"\\f104\";\n@fa-var-angle-right: \"\\f105\";\n@fa-var-angle-up: \"\\f106\";\n@fa-var-apple: \"\\f179\";\n@fa-var-archive: \"\\f187\";\n@fa-var-area-chart: \"\\f1fe\";\n@fa-var-arrow-circle-down: \"\\f0ab\";\n@fa-var-arrow-circle-left: \"\\f0a8\";\n@fa-var-arrow-circle-o-down: \"\\f01a\";\n@fa-var-arrow-circle-o-left: \"\\f190\";\n@fa-var-arrow-circle-o-right: \"\\f18e\";\n@fa-var-arrow-circle-o-up: \"\\f01b\";\n@fa-var-arrow-circle-right: \"\\f0a9\";\n@fa-var-arrow-circle-up: \"\\f0aa\";\n@fa-var-arrow-down: \"\\f063\";\n@fa-var-arrow-left: \"\\f060\";\n@fa-var-arrow-right: \"\\f061\";\n@fa-var-arrow-up: \"\\f062\";\n@fa-var-arrows: \"\\f047\";\n@fa-var-arrows-alt: \"\\f0b2\";\n@fa-var-arrows-h: \"\\f07e\";\n@fa-var-arrows-v: \"\\f07d\";\n@fa-var-asl-interpreting: \"\\f2a3\";\n@fa-var-assistive-listening-systems: \"\\f2a2\";\n@fa-var-asterisk: \"\\f069\";\n@fa-var-at: \"\\f1fa\";\n@fa-var-audio-description: \"\\f29e\";\n@fa-var-automobile: \"\\f1b9\";\n@fa-var-backward: \"\\f04a\";\n@fa-var-balance-scale: \"\\f24e\";\n@fa-var-ban: \"\\f05e\";\n@fa-var-bandcamp: \"\\f2d5\";\n@fa-var-bank: \"\\f19c\";\n@fa-var-bar-chart: \"\\f080\";\n@fa-var-bar-chart-o: \"\\f080\";\n@fa-var-barcode: \"\\f02a\";\n@fa-var-bars: \"\\f0c9\";\n@fa-var-bath: \"\\f2cd\";\n@fa-var-bathtub: \"\\f2cd\";\n@fa-var-battery: \"\\f240\";\n@fa-var-battery-0: \"\\f244\";\n@fa-var-battery-1: \"\\f243\";\n@fa-var-battery-2: \"\\f242\";\n@fa-var-battery-3: \"\\f241\";\n@fa-var-battery-4: \"\\f240\";\n@fa-var-battery-empty: \"\\f244\";\n@fa-var-battery-full: \"\\f240\";\n@fa-var-battery-half: \"\\f242\";\n@fa-var-battery-quarter: \"\\f243\";\n@fa-var-battery-three-quarters: \"\\f241\";\n@fa-var-bed: \"\\f236\";\n@fa-var-beer: \"\\f0fc\";\n@fa-var-behance: \"\\f1b4\";\n@fa-var-behance-square: \"\\f1b5\";\n@fa-var-bell: \"\\f0f3\";\n@fa-var-bell-o: \"\\f0a2\";\n@fa-var-bell-slash: \"\\f1f6\";\n@fa-var-bell-slash-o: \"\\f1f7\";\n@fa-var-bicycle: \"\\f206\";\n@fa-var-binoculars: \"\\f1e5\";\n@fa-var-birthday-cake: \"\\f1fd\";\n@fa-var-bitbucket: \"\\f171\";\n@fa-var-bitbucket-square: \"\\f172\";\n@fa-var-bitcoin: \"\\f15a\";\n@fa-var-black-tie: \"\\f27e\";\n@fa-var-blind: \"\\f29d\";\n@fa-var-bluetooth: \"\\f293\";\n@fa-var-bluetooth-b: \"\\f294\";\n@fa-var-bold: \"\\f032\";\n@fa-var-bolt: \"\\f0e7\";\n@fa-var-bomb: \"\\f1e2\";\n@fa-var-book: \"\\f02d\";\n@fa-var-bookmark: \"\\f02e\";\n@fa-var-bookmark-o: \"\\f097\";\n@fa-var-braille: \"\\f2a1\";\n@fa-var-briefcase: \"\\f0b1\";\n@fa-var-btc: \"\\f15a\";\n@fa-var-bug: \"\\f188\";\n@fa-var-building: \"\\f1ad\";\n@fa-var-building-o: \"\\f0f7\";\n@fa-var-bullhorn: \"\\f0a1\";\n@fa-var-bullseye: \"\\f140\";\n@fa-var-bus: \"\\f207\";\n@fa-var-buysellads: \"\\f20d\";\n@fa-var-cab: \"\\f1ba\";\n@fa-var-calculator: \"\\f1ec\";\n@fa-var-calendar: \"\\f073\";\n@fa-var-calendar-check-o: \"\\f274\";\n@fa-var-calendar-minus-o: \"\\f272\";\n@fa-var-calendar-o: \"\\f133\";\n@fa-var-calendar-plus-o: \"\\f271\";\n@fa-var-calendar-times-o: \"\\f273\";\n@fa-var-camera: \"\\f030\";\n@fa-var-camera-retro: \"\\f083\";\n@fa-var-car: \"\\f1b9\";\n@fa-var-caret-down: \"\\f0d7\";\n@fa-var-caret-left: \"\\f0d9\";\n@fa-var-caret-right: \"\\f0da\";\n@fa-var-caret-square-o-down: \"\\f150\";\n@fa-var-caret-square-o-left: \"\\f191\";\n@fa-var-caret-square-o-right: \"\\f152\";\n@fa-var-caret-square-o-up: \"\\f151\";\n@fa-var-caret-up: \"\\f0d8\";\n@fa-var-cart-arrow-down: \"\\f218\";\n@fa-var-cart-plus: \"\\f217\";\n@fa-var-cc: \"\\f20a\";\n@fa-var-cc-amex: \"\\f1f3\";\n@fa-var-cc-diners-club: \"\\f24c\";\n@fa-var-cc-discover: \"\\f1f2\";\n@fa-var-cc-jcb: \"\\f24b\";\n@fa-var-cc-mastercard: \"\\f1f1\";\n@fa-var-cc-paypal: \"\\f1f4\";\n@fa-var-cc-stripe: \"\\f1f5\";\n@fa-var-cc-visa: \"\\f1f0\";\n@fa-var-certificate: \"\\f0a3\";\n@fa-var-chain: \"\\f0c1\";\n@fa-var-chain-broken: \"\\f127\";\n@fa-var-check: \"\\f00c\";\n@fa-var-check-circle: \"\\f058\";\n@fa-var-check-circle-o: \"\\f05d\";\n@fa-var-check-square: \"\\f14a\";\n@fa-var-check-square-o: \"\\f046\";\n@fa-var-chevron-circle-down: \"\\f13a\";\n@fa-var-chevron-circle-left: \"\\f137\";\n@fa-var-chevron-circle-right: \"\\f138\";\n@fa-var-chevron-circle-up: \"\\f139\";\n@fa-var-chevron-down: \"\\f078\";\n@fa-var-chevron-left: \"\\f053\";\n@fa-var-chevron-right: \"\\f054\";\n@fa-var-chevron-up: \"\\f077\";\n@fa-var-child: \"\\f1ae\";\n@fa-var-chrome: \"\\f268\";\n@fa-var-circle: \"\\f111\";\n@fa-var-circle-o: \"\\f10c\";\n@fa-var-circle-o-notch: \"\\f1ce\";\n@fa-var-circle-thin: \"\\f1db\";\n@fa-var-clipboard: \"\\f0ea\";\n@fa-var-clock-o: \"\\f017\";\n@fa-var-clone: \"\\f24d\";\n@fa-var-close: \"\\f00d\";\n@fa-var-cloud: \"\\f0c2\";\n@fa-var-cloud-download: \"\\f0ed\";\n@fa-var-cloud-upload: \"\\f0ee\";\n@fa-var-cny: \"\\f157\";\n@fa-var-code: \"\\f121\";\n@fa-var-code-fork: \"\\f126\";\n@fa-var-codepen: \"\\f1cb\";\n@fa-var-codiepie: \"\\f284\";\n@fa-var-coffee: \"\\f0f4\";\n@fa-var-cog: \"\\f013\";\n@fa-var-cogs: \"\\f085\";\n@fa-var-columns: \"\\f0db\";\n@fa-var-comment: \"\\f075\";\n@fa-var-comment-o: \"\\f0e5\";\n@fa-var-commenting: \"\\f27a\";\n@fa-var-commenting-o: \"\\f27b\";\n@fa-var-comments: \"\\f086\";\n@fa-var-comments-o: \"\\f0e6\";\n@fa-var-compass: \"\\f14e\";\n@fa-var-compress: \"\\f066\";\n@fa-var-connectdevelop: \"\\f20e\";\n@fa-var-contao: \"\\f26d\";\n@fa-var-copy: \"\\f0c5\";\n@fa-var-copyright: \"\\f1f9\";\n@fa-var-creative-commons: \"\\f25e\";\n@fa-var-credit-card: \"\\f09d\";\n@fa-var-credit-card-alt: \"\\f283\";\n@fa-var-crop: \"\\f125\";\n@fa-var-crosshairs: \"\\f05b\";\n@fa-var-css3: \"\\f13c\";\n@fa-var-cube: \"\\f1b2\";\n@fa-var-cubes: \"\\f1b3\";\n@fa-var-cut: \"\\f0c4\";\n@fa-var-cutlery: \"\\f0f5\";\n@fa-var-dashboard: \"\\f0e4\";\n@fa-var-dashcube: \"\\f210\";\n@fa-var-database: \"\\f1c0\";\n@fa-var-deaf: \"\\f2a4\";\n@fa-var-deafness: \"\\f2a4\";\n@fa-var-dedent: \"\\f03b\";\n@fa-var-delicious: \"\\f1a5\";\n@fa-var-desktop: \"\\f108\";\n@fa-var-deviantart: \"\\f1bd\";\n@fa-var-diamond: \"\\f219\";\n@fa-var-digg: \"\\f1a6\";\n@fa-var-dollar: \"\\f155\";\n@fa-var-dot-circle-o: \"\\f192\";\n@fa-var-download: \"\\f019\";\n@fa-var-dribbble: \"\\f17d\";\n@fa-var-drivers-license: \"\\f2c2\";\n@fa-var-drivers-license-o: \"\\f2c3\";\n@fa-var-dropbox: \"\\f16b\";\n@fa-var-drupal: \"\\f1a9\";\n@fa-var-edge: \"\\f282\";\n@fa-var-edit: \"\\f044\";\n@fa-var-eercast: \"\\f2da\";\n@fa-var-eject: \"\\f052\";\n@fa-var-ellipsis-h: \"\\f141\";\n@fa-var-ellipsis-v: \"\\f142\";\n@fa-var-empire: \"\\f1d1\";\n@fa-var-envelope: \"\\f0e0\";\n@fa-var-envelope-o: \"\\f003\";\n@fa-var-envelope-open: \"\\f2b6\";\n@fa-var-envelope-open-o: \"\\f2b7\";\n@fa-var-envelope-square: \"\\f199\";\n@fa-var-envira: \"\\f299\";\n@fa-var-eraser: \"\\f12d\";\n@fa-var-etsy: \"\\f2d7\";\n@fa-var-eur: \"\\f153\";\n@fa-var-euro: \"\\f153\";\n@fa-var-exchange: \"\\f0ec\";\n@fa-var-exclamation: \"\\f12a\";\n@fa-var-exclamation-circle: \"\\f06a\";\n@fa-var-exclamation-triangle: \"\\f071\";\n@fa-var-expand: \"\\f065\";\n@fa-var-expeditedssl: \"\\f23e\";\n@fa-var-external-link: \"\\f08e\";\n@fa-var-external-link-square: \"\\f14c\";\n@fa-var-eye: \"\\f06e\";\n@fa-var-eye-slash: \"\\f070\";\n@fa-var-eyedropper: \"\\f1fb\";\n@fa-var-fa: \"\\f2b4\";\n@fa-var-facebook: \"\\f09a\";\n@fa-var-facebook-f: \"\\f09a\";\n@fa-var-facebook-official: \"\\f230\";\n@fa-var-facebook-square: \"\\f082\";\n@fa-var-fast-backward: \"\\f049\";\n@fa-var-fast-forward: \"\\f050\";\n@fa-var-fax: \"\\f1ac\";\n@fa-var-feed: \"\\f09e\";\n@fa-var-female: \"\\f182\";\n@fa-var-fighter-jet: \"\\f0fb\";\n@fa-var-file: \"\\f15b\";\n@fa-var-file-archive-o: \"\\f1c6\";\n@fa-var-file-audio-o: \"\\f1c7\";\n@fa-var-file-code-o: \"\\f1c9\";\n@fa-var-file-excel-o: \"\\f1c3\";\n@fa-var-file-image-o: \"\\f1c5\";\n@fa-var-file-movie-o: \"\\f1c8\";\n@fa-var-file-o: \"\\f016\";\n@fa-var-file-pdf-o: \"\\f1c1\";\n@fa-var-file-photo-o: \"\\f1c5\";\n@fa-var-file-picture-o: \"\\f1c5\";\n@fa-var-file-powerpoint-o: \"\\f1c4\";\n@fa-var-file-sound-o: \"\\f1c7\";\n@fa-var-file-text: \"\\f15c\";\n@fa-var-file-text-o: \"\\f0f6\";\n@fa-var-file-video-o: \"\\f1c8\";\n@fa-var-file-word-o: \"\\f1c2\";\n@fa-var-file-zip-o: \"\\f1c6\";\n@fa-var-files-o: \"\\f0c5\";\n@fa-var-film: \"\\f008\";\n@fa-var-filter: \"\\f0b0\";\n@fa-var-fire: \"\\f06d\";\n@fa-var-fire-extinguisher: \"\\f134\";\n@fa-var-firefox: \"\\f269\";\n@fa-var-first-order: \"\\f2b0\";\n@fa-var-flag: \"\\f024\";\n@fa-var-flag-checkered: \"\\f11e\";\n@fa-var-flag-o: \"\\f11d\";\n@fa-var-flash: \"\\f0e7\";\n@fa-var-flask: \"\\f0c3\";\n@fa-var-flickr: \"\\f16e\";\n@fa-var-floppy-o: \"\\f0c7\";\n@fa-var-folder: \"\\f07b\";\n@fa-var-folder-o: \"\\f114\";\n@fa-var-folder-open: \"\\f07c\";\n@fa-var-folder-open-o: \"\\f115\";\n@fa-var-font: \"\\f031\";\n@fa-var-font-awesome: \"\\f2b4\";\n@fa-var-fonticons: \"\\f280\";\n@fa-var-fort-awesome: \"\\f286\";\n@fa-var-forumbee: \"\\f211\";\n@fa-var-forward: \"\\f04e\";\n@fa-var-foursquare: \"\\f180\";\n@fa-var-free-code-camp: \"\\f2c5\";\n@fa-var-frown-o: \"\\f119\";\n@fa-var-futbol-o: \"\\f1e3\";\n@fa-var-gamepad: \"\\f11b\";\n@fa-var-gavel: \"\\f0e3\";\n@fa-var-gbp: \"\\f154\";\n@fa-var-ge: \"\\f1d1\";\n@fa-var-gear: \"\\f013\";\n@fa-var-gears: \"\\f085\";\n@fa-var-genderless: \"\\f22d\";\n@fa-var-get-pocket: \"\\f265\";\n@fa-var-gg: \"\\f260\";\n@fa-var-gg-circle: \"\\f261\";\n@fa-var-gift: \"\\f06b\";\n@fa-var-git: \"\\f1d3\";\n@fa-var-git-square: \"\\f1d2\";\n@fa-var-github: \"\\f09b\";\n@fa-var-github-alt: \"\\f113\";\n@fa-var-github-square: \"\\f092\";\n@fa-var-gitlab: \"\\f296\";\n@fa-var-gittip: \"\\f184\";\n@fa-var-glass: \"\\f000\";\n@fa-var-glide: \"\\f2a5\";\n@fa-var-glide-g: \"\\f2a6\";\n@fa-var-globe: \"\\f0ac\";\n@fa-var-google: \"\\f1a0\";\n@fa-var-google-plus: \"\\f0d5\";\n@fa-var-google-plus-circle: \"\\f2b3\";\n@fa-var-google-plus-official: \"\\f2b3\";\n@fa-var-google-plus-square: \"\\f0d4\";\n@fa-var-google-wallet: \"\\f1ee\";\n@fa-var-graduation-cap: \"\\f19d\";\n@fa-var-gratipay: \"\\f184\";\n@fa-var-grav: \"\\f2d6\";\n@fa-var-group: \"\\f0c0\";\n@fa-var-h-square: \"\\f0fd\";\n@fa-var-hacker-news: \"\\f1d4\";\n@fa-var-hand-grab-o: \"\\f255\";\n@fa-var-hand-lizard-o: \"\\f258\";\n@fa-var-hand-o-down: \"\\f0a7\";\n@fa-var-hand-o-left: \"\\f0a5\";\n@fa-var-hand-o-right: \"\\f0a4\";\n@fa-var-hand-o-up: \"\\f0a6\";\n@fa-var-hand-paper-o: \"\\f256\";\n@fa-var-hand-peace-o: \"\\f25b\";\n@fa-var-hand-pointer-o: \"\\f25a\";\n@fa-var-hand-rock-o: \"\\f255\";\n@fa-var-hand-scissors-o: \"\\f257\";\n@fa-var-hand-spock-o: \"\\f259\";\n@fa-var-hand-stop-o: \"\\f256\";\n@fa-var-handshake-o: \"\\f2b5\";\n@fa-var-hard-of-hearing: \"\\f2a4\";\n@fa-var-hashtag: \"\\f292\";\n@fa-var-hdd-o: \"\\f0a0\";\n@fa-var-header: \"\\f1dc\";\n@fa-var-headphones: \"\\f025\";\n@fa-var-heart: \"\\f004\";\n@fa-var-heart-o: \"\\f08a\";\n@fa-var-heartbeat: \"\\f21e\";\n@fa-var-history: \"\\f1da\";\n@fa-var-home: \"\\f015\";\n@fa-var-hospital-o: \"\\f0f8\";\n@fa-var-hotel: \"\\f236\";\n@fa-var-hourglass: \"\\f254\";\n@fa-var-hourglass-1: \"\\f251\";\n@fa-var-hourglass-2: \"\\f252\";\n@fa-var-hourglass-3: \"\\f253\";\n@fa-var-hourglass-end: \"\\f253\";\n@fa-var-hourglass-half: \"\\f252\";\n@fa-var-hourglass-o: \"\\f250\";\n@fa-var-hourglass-start: \"\\f251\";\n@fa-var-houzz: \"\\f27c\";\n@fa-var-html5: \"\\f13b\";\n@fa-var-i-cursor: \"\\f246\";\n@fa-var-id-badge: \"\\f2c1\";\n@fa-var-id-card: \"\\f2c2\";\n@fa-var-id-card-o: \"\\f2c3\";\n@fa-var-ils: \"\\f20b\";\n@fa-var-image: \"\\f03e\";\n@fa-var-imdb: \"\\f2d8\";\n@fa-var-inbox: \"\\f01c\";\n@fa-var-indent: \"\\f03c\";\n@fa-var-industry: \"\\f275\";\n@fa-var-info: \"\\f129\";\n@fa-var-info-circle: \"\\f05a\";\n@fa-var-inr: \"\\f156\";\n@fa-var-instagram: \"\\f16d\";\n@fa-var-institution: \"\\f19c\";\n@fa-var-internet-explorer: \"\\f26b\";\n@fa-var-intersex: \"\\f224\";\n@fa-var-ioxhost: \"\\f208\";\n@fa-var-italic: \"\\f033\";\n@fa-var-joomla: \"\\f1aa\";\n@fa-var-jpy: \"\\f157\";\n@fa-var-jsfiddle: \"\\f1cc\";\n@fa-var-key: \"\\f084\";\n@fa-var-keyboard-o: \"\\f11c\";\n@fa-var-krw: \"\\f159\";\n@fa-var-language: \"\\f1ab\";\n@fa-var-laptop: \"\\f109\";\n@fa-var-lastfm: \"\\f202\";\n@fa-var-lastfm-square: \"\\f203\";\n@fa-var-leaf: \"\\f06c\";\n@fa-var-leanpub: \"\\f212\";\n@fa-var-legal: \"\\f0e3\";\n@fa-var-lemon-o: \"\\f094\";\n@fa-var-level-down: \"\\f149\";\n@fa-var-level-up: \"\\f148\";\n@fa-var-life-bouy: \"\\f1cd\";\n@fa-var-life-buoy: \"\\f1cd\";\n@fa-var-life-ring: \"\\f1cd\";\n@fa-var-life-saver: \"\\f1cd\";\n@fa-var-lightbulb-o: \"\\f0eb\";\n@fa-var-line-chart: \"\\f201\";\n@fa-var-link: \"\\f0c1\";\n@fa-var-linkedin: \"\\f0e1\";\n@fa-var-linkedin-square: \"\\f08c\";\n@fa-var-linode: \"\\f2b8\";\n@fa-var-linux: \"\\f17c\";\n@fa-var-list: \"\\f03a\";\n@fa-var-list-alt: \"\\f022\";\n@fa-var-list-ol: \"\\f0cb\";\n@fa-var-list-ul: \"\\f0ca\";\n@fa-var-location-arrow: \"\\f124\";\n@fa-var-lock: \"\\f023\";\n@fa-var-long-arrow-down: \"\\f175\";\n@fa-var-long-arrow-left: \"\\f177\";\n@fa-var-long-arrow-right: \"\\f178\";\n@fa-var-long-arrow-up: \"\\f176\";\n@fa-var-low-vision: \"\\f2a8\";\n@fa-var-magic: \"\\f0d0\";\n@fa-var-magnet: \"\\f076\";\n@fa-var-mail-forward: \"\\f064\";\n@fa-var-mail-reply: \"\\f112\";\n@fa-var-mail-reply-all: \"\\f122\";\n@fa-var-male: \"\\f183\";\n@fa-var-map: \"\\f279\";\n@fa-var-map-marker: \"\\f041\";\n@fa-var-map-o: \"\\f278\";\n@fa-var-map-pin: \"\\f276\";\n@fa-var-map-signs: \"\\f277\";\n@fa-var-mars: \"\\f222\";\n@fa-var-mars-double: \"\\f227\";\n@fa-var-mars-stroke: \"\\f229\";\n@fa-var-mars-stroke-h: \"\\f22b\";\n@fa-var-mars-stroke-v: \"\\f22a\";\n@fa-var-maxcdn: \"\\f136\";\n@fa-var-meanpath: \"\\f20c\";\n@fa-var-medium: \"\\f23a\";\n@fa-var-medkit: \"\\f0fa\";\n@fa-var-meetup: \"\\f2e0\";\n@fa-var-meh-o: \"\\f11a\";\n@fa-var-mercury: \"\\f223\";\n@fa-var-microchip: \"\\f2db\";\n@fa-var-microphone: \"\\f130\";\n@fa-var-microphone-slash: \"\\f131\";\n@fa-var-minus: \"\\f068\";\n@fa-var-minus-circle: \"\\f056\";\n@fa-var-minus-square: \"\\f146\";\n@fa-var-minus-square-o: \"\\f147\";\n@fa-var-mixcloud: \"\\f289\";\n@fa-var-mobile: \"\\f10b\";\n@fa-var-mobile-phone: \"\\f10b\";\n@fa-var-modx: \"\\f285\";\n@fa-var-money: \"\\f0d6\";\n@fa-var-moon-o: \"\\f186\";\n@fa-var-mortar-board: \"\\f19d\";\n@fa-var-motorcycle: \"\\f21c\";\n@fa-var-mouse-pointer: \"\\f245\";\n@fa-var-music: \"\\f001\";\n@fa-var-navicon: \"\\f0c9\";\n@fa-var-neuter: \"\\f22c\";\n@fa-var-newspaper-o: \"\\f1ea\";\n@fa-var-object-group: \"\\f247\";\n@fa-var-object-ungroup: \"\\f248\";\n@fa-var-odnoklassniki: \"\\f263\";\n@fa-var-odnoklassniki-square: \"\\f264\";\n@fa-var-opencart: \"\\f23d\";\n@fa-var-openid: \"\\f19b\";\n@fa-var-opera: \"\\f26a\";\n@fa-var-optin-monster: \"\\f23c\";\n@fa-var-outdent: \"\\f03b\";\n@fa-var-pagelines: \"\\f18c\";\n@fa-var-paint-brush: \"\\f1fc\";\n@fa-var-paper-plane: \"\\f1d8\";\n@fa-var-paper-plane-o: \"\\f1d9\";\n@fa-var-paperclip: \"\\f0c6\";\n@fa-var-paragraph: \"\\f1dd\";\n@fa-var-paste: \"\\f0ea\";\n@fa-var-pause: \"\\f04c\";\n@fa-var-pause-circle: \"\\f28b\";\n@fa-var-pause-circle-o: \"\\f28c\";\n@fa-var-paw: \"\\f1b0\";\n@fa-var-paypal: \"\\f1ed\";\n@fa-var-pencil: \"\\f040\";\n@fa-var-pencil-square: \"\\f14b\";\n@fa-var-pencil-square-o: \"\\f044\";\n@fa-var-percent: \"\\f295\";\n@fa-var-phone: \"\\f095\";\n@fa-var-phone-square: \"\\f098\";\n@fa-var-photo: \"\\f03e\";\n@fa-var-picture-o: \"\\f03e\";\n@fa-var-pie-chart: \"\\f200\";\n@fa-var-pied-piper: \"\\f2ae\";\n@fa-var-pied-piper-alt: \"\\f1a8\";\n@fa-var-pied-piper-pp: \"\\f1a7\";\n@fa-var-pinterest: \"\\f0d2\";\n@fa-var-pinterest-p: \"\\f231\";\n@fa-var-pinterest-square: \"\\f0d3\";\n@fa-var-plane: \"\\f072\";\n@fa-var-play: \"\\f04b\";\n@fa-var-play-circle: \"\\f144\";\n@fa-var-play-circle-o: \"\\f01d\";\n@fa-var-plug: \"\\f1e6\";\n@fa-var-plus: \"\\f067\";\n@fa-var-plus-circle: \"\\f055\";\n@fa-var-plus-square: \"\\f0fe\";\n@fa-var-plus-square-o: \"\\f196\";\n@fa-var-podcast: \"\\f2ce\";\n@fa-var-power-off: \"\\f011\";\n@fa-var-print: \"\\f02f\";\n@fa-var-product-hunt: \"\\f288\";\n@fa-var-puzzle-piece: \"\\f12e\";\n@fa-var-qq: \"\\f1d6\";\n@fa-var-qrcode: \"\\f029\";\n@fa-var-question: \"\\f128\";\n@fa-var-question-circle: \"\\f059\";\n@fa-var-question-circle-o: \"\\f29c\";\n@fa-var-quora: \"\\f2c4\";\n@fa-var-quote-left: \"\\f10d\";\n@fa-var-quote-right: \"\\f10e\";\n@fa-var-ra: \"\\f1d0\";\n@fa-var-random: \"\\f074\";\n@fa-var-ravelry: \"\\f2d9\";\n@fa-var-rebel: \"\\f1d0\";\n@fa-var-recycle: \"\\f1b8\";\n@fa-var-reddit: \"\\f1a1\";\n@fa-var-reddit-alien: \"\\f281\";\n@fa-var-reddit-square: \"\\f1a2\";\n@fa-var-refresh: \"\\f021\";\n@fa-var-registered: \"\\f25d\";\n@fa-var-remove: \"\\f00d\";\n@fa-var-renren: \"\\f18b\";\n@fa-var-reorder: \"\\f0c9\";\n@fa-var-repeat: \"\\f01e\";\n@fa-var-reply: \"\\f112\";\n@fa-var-reply-all: \"\\f122\";\n@fa-var-resistance: \"\\f1d0\";\n@fa-var-retweet: \"\\f079\";\n@fa-var-rmb: \"\\f157\";\n@fa-var-road: \"\\f018\";\n@fa-var-rocket: \"\\f135\";\n@fa-var-rotate-left: \"\\f0e2\";\n@fa-var-rotate-right: \"\\f01e\";\n@fa-var-rouble: \"\\f158\";\n@fa-var-rss: \"\\f09e\";\n@fa-var-rss-square: \"\\f143\";\n@fa-var-rub: \"\\f158\";\n@fa-var-ruble: \"\\f158\";\n@fa-var-rupee: \"\\f156\";\n@fa-var-s15: \"\\f2cd\";\n@fa-var-safari: \"\\f267\";\n@fa-var-save: \"\\f0c7\";\n@fa-var-scissors: \"\\f0c4\";\n@fa-var-scribd: \"\\f28a\";\n@fa-var-search: \"\\f002\";\n@fa-var-search-minus: \"\\f010\";\n@fa-var-search-plus: \"\\f00e\";\n@fa-var-sellsy: \"\\f213\";\n@fa-var-send: \"\\f1d8\";\n@fa-var-send-o: \"\\f1d9\";\n@fa-var-server: \"\\f233\";\n@fa-var-share: \"\\f064\";\n@fa-var-share-alt: \"\\f1e0\";\n@fa-var-share-alt-square: \"\\f1e1\";\n@fa-var-share-square: \"\\f14d\";\n@fa-var-share-square-o: \"\\f045\";\n@fa-var-shekel: \"\\f20b\";\n@fa-var-sheqel: \"\\f20b\";\n@fa-var-shield: \"\\f132\";\n@fa-var-ship: \"\\f21a\";\n@fa-var-shirtsinbulk: \"\\f214\";\n@fa-var-shopping-bag: \"\\f290\";\n@fa-var-shopping-basket: \"\\f291\";\n@fa-var-shopping-cart: \"\\f07a\";\n@fa-var-shower: \"\\f2cc\";\n@fa-var-sign-in: \"\\f090\";\n@fa-var-sign-language: \"\\f2a7\";\n@fa-var-sign-out: \"\\f08b\";\n@fa-var-signal: \"\\f012\";\n@fa-var-signing: \"\\f2a7\";\n@fa-var-simplybuilt: \"\\f215\";\n@fa-var-sitemap: \"\\f0e8\";\n@fa-var-skyatlas: \"\\f216\";\n@fa-var-skype: \"\\f17e\";\n@fa-var-slack: \"\\f198\";\n@fa-var-sliders: \"\\f1de\";\n@fa-var-slideshare: \"\\f1e7\";\n@fa-var-smile-o: \"\\f118\";\n@fa-var-snapchat: \"\\f2ab\";\n@fa-var-snapchat-ghost: \"\\f2ac\";\n@fa-var-snapchat-square: \"\\f2ad\";\n@fa-var-snowflake-o: \"\\f2dc\";\n@fa-var-soccer-ball-o: \"\\f1e3\";\n@fa-var-sort: \"\\f0dc\";\n@fa-var-sort-alpha-asc: \"\\f15d\";\n@fa-var-sort-alpha-desc: \"\\f15e\";\n@fa-var-sort-amount-asc: \"\\f160\";\n@fa-var-sort-amount-desc: \"\\f161\";\n@fa-var-sort-asc: \"\\f0de\";\n@fa-var-sort-desc: \"\\f0dd\";\n@fa-var-sort-down: \"\\f0dd\";\n@fa-var-sort-numeric-asc: \"\\f162\";\n@fa-var-sort-numeric-desc: \"\\f163\";\n@fa-var-sort-up: \"\\f0de\";\n@fa-var-soundcloud: \"\\f1be\";\n@fa-var-space-shuttle: \"\\f197\";\n@fa-var-spinner: \"\\f110\";\n@fa-var-spoon: \"\\f1b1\";\n@fa-var-spotify: \"\\f1bc\";\n@fa-var-square: \"\\f0c8\";\n@fa-var-square-o: \"\\f096\";\n@fa-var-stack-exchange: \"\\f18d\";\n@fa-var-stack-overflow: \"\\f16c\";\n@fa-var-star: \"\\f005\";\n@fa-var-star-half: \"\\f089\";\n@fa-var-star-half-empty: \"\\f123\";\n@fa-var-star-half-full: \"\\f123\";\n@fa-var-star-half-o: \"\\f123\";\n@fa-var-star-o: \"\\f006\";\n@fa-var-steam: \"\\f1b6\";\n@fa-var-steam-square: \"\\f1b7\";\n@fa-var-step-backward: \"\\f048\";\n@fa-var-step-forward: \"\\f051\";\n@fa-var-stethoscope: \"\\f0f1\";\n@fa-var-sticky-note: \"\\f249\";\n@fa-var-sticky-note-o: \"\\f24a\";\n@fa-var-stop: \"\\f04d\";\n@fa-var-stop-circle: \"\\f28d\";\n@fa-var-stop-circle-o: \"\\f28e\";\n@fa-var-street-view: \"\\f21d\";\n@fa-var-strikethrough: \"\\f0cc\";\n@fa-var-stumbleupon: \"\\f1a4\";\n@fa-var-stumbleupon-circle: \"\\f1a3\";\n@fa-var-subscript: \"\\f12c\";\n@fa-var-subway: \"\\f239\";\n@fa-var-suitcase: \"\\f0f2\";\n@fa-var-sun-o: \"\\f185\";\n@fa-var-superpowers: \"\\f2dd\";\n@fa-var-superscript: \"\\f12b\";\n@fa-var-support: \"\\f1cd\";\n@fa-var-table: \"\\f0ce\";\n@fa-var-tablet: \"\\f10a\";\n@fa-var-tachometer: \"\\f0e4\";\n@fa-var-tag: \"\\f02b\";\n@fa-var-tags: \"\\f02c\";\n@fa-var-tasks: \"\\f0ae\";\n@fa-var-taxi: \"\\f1ba\";\n@fa-var-telegram: \"\\f2c6\";\n@fa-var-television: \"\\f26c\";\n@fa-var-tencent-weibo: \"\\f1d5\";\n@fa-var-terminal: \"\\f120\";\n@fa-var-text-height: \"\\f034\";\n@fa-var-text-width: \"\\f035\";\n@fa-var-th: \"\\f00a\";\n@fa-var-th-large: \"\\f009\";\n@fa-var-th-list: \"\\f00b\";\n@fa-var-themeisle: \"\\f2b2\";\n@fa-var-thermometer: \"\\f2c7\";\n@fa-var-thermometer-0: \"\\f2cb\";\n@fa-var-thermometer-1: \"\\f2ca\";\n@fa-var-thermometer-2: \"\\f2c9\";\n@fa-var-thermometer-3: \"\\f2c8\";\n@fa-var-thermometer-4: \"\\f2c7\";\n@fa-var-thermometer-empty: \"\\f2cb\";\n@fa-var-thermometer-full: \"\\f2c7\";\n@fa-var-thermometer-half: \"\\f2c9\";\n@fa-var-thermometer-quarter: \"\\f2ca\";\n@fa-var-thermometer-three-quarters: \"\\f2c8\";\n@fa-var-thumb-tack: \"\\f08d\";\n@fa-var-thumbs-down: \"\\f165\";\n@fa-var-thumbs-o-down: \"\\f088\";\n@fa-var-thumbs-o-up: \"\\f087\";\n@fa-var-thumbs-up: \"\\f164\";\n@fa-var-ticket: \"\\f145\";\n@fa-var-times: \"\\f00d\";\n@fa-var-times-circle: \"\\f057\";\n@fa-var-times-circle-o: \"\\f05c\";\n@fa-var-times-rectangle: \"\\f2d3\";\n@fa-var-times-rectangle-o: \"\\f2d4\";\n@fa-var-tint: \"\\f043\";\n@fa-var-toggle-down: \"\\f150\";\n@fa-var-toggle-left: \"\\f191\";\n@fa-var-toggle-off: \"\\f204\";\n@fa-var-toggle-on: \"\\f205\";\n@fa-var-toggle-right: \"\\f152\";\n@fa-var-toggle-up: \"\\f151\";\n@fa-var-trademark: \"\\f25c\";\n@fa-var-train: \"\\f238\";\n@fa-var-transgender: \"\\f224\";\n@fa-var-transgender-alt: \"\\f225\";\n@fa-var-trash: \"\\f1f8\";\n@fa-var-trash-o: \"\\f014\";\n@fa-var-tree: \"\\f1bb\";\n@fa-var-trello: \"\\f181\";\n@fa-var-tripadvisor: \"\\f262\";\n@fa-var-trophy: \"\\f091\";\n@fa-var-truck: \"\\f0d1\";\n@fa-var-try: \"\\f195\";\n@fa-var-tty: \"\\f1e4\";\n@fa-var-tumblr: \"\\f173\";\n@fa-var-tumblr-square: \"\\f174\";\n@fa-var-turkish-lira: \"\\f195\";\n@fa-var-tv: \"\\f26c\";\n@fa-var-twitch: \"\\f1e8\";\n@fa-var-twitter: \"\\f099\";\n@fa-var-twitter-square: \"\\f081\";\n@fa-var-umbrella: \"\\f0e9\";\n@fa-var-underline: \"\\f0cd\";\n@fa-var-undo: \"\\f0e2\";\n@fa-var-universal-access: \"\\f29a\";\n@fa-var-university: \"\\f19c\";\n@fa-var-unlink: \"\\f127\";\n@fa-var-unlock: \"\\f09c\";\n@fa-var-unlock-alt: \"\\f13e\";\n@fa-var-unsorted: \"\\f0dc\";\n@fa-var-upload: \"\\f093\";\n@fa-var-usb: \"\\f287\";\n@fa-var-usd: \"\\f155\";\n@fa-var-user: \"\\f007\";\n@fa-var-user-circle: \"\\f2bd\";\n@fa-var-user-circle-o: \"\\f2be\";\n@fa-var-user-md: \"\\f0f0\";\n@fa-var-user-o: \"\\f2c0\";\n@fa-var-user-plus: \"\\f234\";\n@fa-var-user-secret: \"\\f21b\";\n@fa-var-user-times: \"\\f235\";\n@fa-var-users: \"\\f0c0\";\n@fa-var-vcard: \"\\f2bb\";\n@fa-var-vcard-o: \"\\f2bc\";\n@fa-var-venus: \"\\f221\";\n@fa-var-venus-double: \"\\f226\";\n@fa-var-venus-mars: \"\\f228\";\n@fa-var-viacoin: \"\\f237\";\n@fa-var-viadeo: \"\\f2a9\";\n@fa-var-viadeo-square: \"\\f2aa\";\n@fa-var-video-camera: \"\\f03d\";\n@fa-var-vimeo: \"\\f27d\";\n@fa-var-vimeo-square: \"\\f194\";\n@fa-var-vine: \"\\f1ca\";\n@fa-var-vk: \"\\f189\";\n@fa-var-volume-control-phone: \"\\f2a0\";\n@fa-var-volume-down: \"\\f027\";\n@fa-var-volume-off: \"\\f026\";\n@fa-var-volume-up: \"\\f028\";\n@fa-var-warning: \"\\f071\";\n@fa-var-wechat: \"\\f1d7\";\n@fa-var-weibo: \"\\f18a\";\n@fa-var-weixin: \"\\f1d7\";\n@fa-var-whatsapp: \"\\f232\";\n@fa-var-wheelchair: \"\\f193\";\n@fa-var-wheelchair-alt: \"\\f29b\";\n@fa-var-wifi: \"\\f1eb\";\n@fa-var-wikipedia-w: \"\\f266\";\n@fa-var-window-close: \"\\f2d3\";\n@fa-var-window-close-o: \"\\f2d4\";\n@fa-var-window-maximize: \"\\f2d0\";\n@fa-var-window-minimize: \"\\f2d1\";\n@fa-var-window-restore: \"\\f2d2\";\n@fa-var-windows: \"\\f17a\";\n@fa-var-won: \"\\f159\";\n@fa-var-wordpress: \"\\f19a\";\n@fa-var-wpbeginner: \"\\f297\";\n@fa-var-wpexplorer: \"\\f2de\";\n@fa-var-wpforms: \"\\f298\";\n@fa-var-wrench: \"\\f0ad\";\n@fa-var-xing: \"\\f168\";\n@fa-var-xing-square: \"\\f169\";\n@fa-var-y-combinator: \"\\f23b\";\n@fa-var-y-combinator-square: \"\\f1d4\";\n@fa-var-yahoo: \"\\f19e\";\n@fa-var-yc: \"\\f23b\";\n@fa-var-yc-square: \"\\f1d4\";\n@fa-var-yelp: \"\\f1e9\";\n@fa-var-yen: \"\\f157\";\n@fa-var-yoast: \"\\f2b1\";\n@fa-var-youtube: \"\\f167\";\n@fa-var-youtube-play: \"\\f16a\";\n@fa-var-youtube-square: \"\\f166\";\n\n","//\n// Navbar Alt\n// --------------------------------------------------\n\n.navbar-pf-alt {\n  background-color: @navbar-pf-alt-bg-color;\n  background-image: @navbar-pf-alt-bg-img;\n  background-repeat: @navbar-pf-alt-bg-repeat;\n  background-size: @navbar-pf-alt-bg-size;\n  border: none;\n  border-radius: 0;\n  border-top: @navbar-pf-alt-border-width @navbar-pf-alt-border-style @navbar-pf-alt-border-color;\n  margin-bottom: 0;\n\n  .infotip.bottom-right .arrow {\n    left: 90%;\n  }\n\n  .layout-pf-alt-fixed & {\n    left: 0;\n    position: fixed;\n    right: 0;\n    top: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n\n  .nav {\n    &.navbar-nav > li > .dropdown-menu.infotip {\n      margin-top: 0;\n    }\n\n    .nav-item-iconic {\n      cursor: pointer;\n      line-height: 1;\n      max-height: (@navbar-pf-alt-height - @navbar-pf-alt-border-width); // to keep Firefox from oversizing icons\n      padding: @navbar-pf-alt-nav-item-iconic-padding;\n      position: relative;\n\n      &:hover,\n      &:focus {\n        background-color: transparent;\n\n        .caret,\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @navbar-pf-alt-active-color;\n        }\n      }\n\n      .badge {\n        background-color: @notification-badge-color;\n        border-radius: 20px;\n        color: @navbar-pf-alt-active-color;\n        cursor: pointer;\n        font-size: (@font-size-base - 3);\n        font-weight: 700;\n        margin: 0 0 -11px -12px;\n        min-width: 0;\n        padding: 2px 4px;\n      }\n\n      .caret,\n      .fa,\n      .pficon {\n        color: @navbar-pf-alt-color;\n        font-size: (@font-size-base + 4);\n      }\n\n      .caret {\n        font-size: @font-size-base;\n        width: auto;\n      }\n\n    }\n\n    .open > .nav-item-iconic {\n      &,\n      &:hover,\n      &:focus {\n        background: transparent;\n\n        .caret,\n        .fa,\n        .pficon {\n          color: @navbar-pf-alt-active-color;\n        }\n      }\n    }\n  }\n\n  .navbar-brand {\n    color: @navbar-pf-alt-navbar-brand-color;\n    height: auto;\n    margin: @navbar-pf-alt-navbar-brand-margin;\n    min-height: @navbar-pf-alt-navbar-brand-min-height;\n    padding: @navbar-pf-alt-navbar-brand-padding;\n\n    .navbar-brand-name {\n      display: inline;\n      margin-left: @navbar-pf-alt-navbar-brand-name-margin;\n      margin-right: @navbar-pf-alt-navbar-brand-name-margin;\n      // hide once screen gets too small\n      @media (max-width: @navbar-pf-alt-navbar-brand-name-breakpoint) {\n        display: none;\n      }\n    }\n\n    .navbar-brand-icon {\n      display: inline;\n      margin-left: @navbar-pf-alt-navbar-brand-icon-margin;\n      margin-right: @navbar-pf-alt-navbar-brand-icon-margin;\n    }\n  }\n\n  .navbar-iconic {\n    margin-right: 0;\n  }\n\n  .navbar-toggle {\n    border: 0;\n    display: block;\n    float: left;\n    margin: @navbar-pf-alt-navbar-toggle-margin;\n\n    &:hover,\n    &:focus {\n      .icon-bar {\n        background: @navbar-pf-alt-navbar-toggle-icon-bar-hover-bg;\n      }\n    }\n\n    + .navbar-brand {\n      margin-left: 0;\n    }\n\n    .icon-bar {\n      background: @navbar-pf-alt-color;\n    }\n  }\n}\n","//\n//  Navigation Bar for use with vertical navigation\n// --------------------------------------------------\n\n.navbar-pf-vertical {\n  background-color: @navbar-pf-vertical-bg-color;\n  border: none;\n  border-radius: 0;\n  border-top: @navbar-pf-vertical-border-width @navbar-pf-vertical-border-style @navbar-pf-vertical-border-color;\n  margin-bottom: 0;\n\n  .infotip.bottom-right .arrow {\n    left: 90%;\n  }\n\n  .layout-pf-fixed & {\n    left: 0;\n    position: fixed;\n    right: 0;\n    top: 0;\n    z-index: @zindex-navbar-fixed;\n  }\n\n  .nav {\n    &.navbar-nav > li > .dropdown-menu.infotip {\n      margin-top: 0;\n    }\n\n    .nav-item-iconic {\n      color: @navbar-pf-vertical-color;\n      cursor: pointer;\n      line-height: 1;\n      max-height: (@navbar-pf-vertical-height - @navbar-pf-vertical-border-width); // to keep Firefox from oversizing icons\n      padding: @navbar-pf-vertical-nav-item-iconic-padding;\n      position: relative;\n\n      &:hover,\n      &:focus {\n        color: @navbar-pf-vertical-active-color;\n        background-color: transparent;\n\n        .caret,\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @navbar-pf-vertical-active-color;\n        }\n      }\n\n      .badge {\n        background-color: @notification-badge-color;\n        border-radius: 20px;\n        color: @navbar-pf-vertical-active-color;\n        cursor: pointer;\n        font-size: (@font-size-base - 3);\n        font-weight: 700;\n        left: 20px;\n        margin: 0;\n        padding: 2px 4px;\n        position: absolute;\n        min-width: 10px;\n        min-height: 10px;\n        top: 18px;\n        &.badge-pf-bordered {\n          border: 1px solid @navbar-pf-vertical-bg-color;\n        }\n      }\n\n      .caret,\n      .fa,\n      .pficon {\n        color: @navbar-pf-vertical-color;\n        font-size: (@font-size-base + 4);\n      }\n\n      .caret {\n        font-size: @font-size-base;\n        width: auto;\n      }\n\n    }\n\n    .open > .nav-item-iconic {\n      &,\n      &:hover,\n      &:focus {\n        background: transparent;\n\n        .caret,\n        .fa,\n        .pficon {\n          color: @navbar-pf-vertical-active-color;\n        }\n      }\n    }\n  }\n\n  .navbar-brand {\n    color: @navbar-pf-vertical-navbar-brand-color;\n    height: auto;\n    margin: @navbar-pf-vertical-navbar-brand-margin;\n    min-height: @navbar-pf-vertical-navbar-brand-min-height;\n    padding: @navbar-pf-vertical-navbar-brand-padding;\n\n    .navbar-brand-name {\n      display: inline-block;\n      margin: @navbar-pf-vertical-navbar-brand-name-margin;\n      // hide once screen gets too small\n      @media (max-width: @navbar-pf-vertical-navbar-brand-name-breakpoint) {\n        display: none;\n      }\n    }\n\n    .navbar-brand-icon {\n      display: inline-block;\n      margin: @navbar-pf-vertical-navbar-brand-icon-margin;\n      max-height: @navbar-pf-vertical-navbar-brand-max-height;\n    }\n\n    .navbar-brand-txt {\n      line-height: @navbar-pf-vertical-navbar-brand-line-height;\n    }\n  }\n\n  .navbar-iconic {\n    margin-right: 0;\n  }\n\n  .navbar-toggle {\n    border: 0;\n    display: block;\n    float: left;\n    margin: @navbar-pf-vertical-navbar-toggle-margin;\n\n    &:hover,\n    &:focus {\n      .icon-bar {\n        background: @navbar-pf-vertical-navbar-toggle-icon-bar-hover-bg;\n      }\n    }\n\n    + .navbar-brand {\n      margin-left: 0;\n    }\n\n    .icon-bar {\n      background: @navbar-pf-vertical-color;\n    }\n  }\n}\n","//\n// Nav Vertical Alt\n// --------------------------------------------------\n\n.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt {\n  transition: @flyout-transition-pf;\n\n  &.collapsed .list-group-item .list-group-item-value {\n    transition: opacity 0ms 100ms, opacity 100ms linear;\n  }\n\n  .list-group-item {\n    .badge {\n      transition: @flyout-transition-pf;\n    }\n\n    .list-group-item-value {\n      transition: opacity 500ms ease-out;\n      transition-delay: 150ms;\n    }\n  }\n}\n\n.nav-pf-vertical-alt {\n  background: @nav-pf-vertical-alt-bg-color;\n\n  .ie9.layout-pf-alt-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n\n  .layout-pf-alt-fixed & {\n    border-right: 1px solid @nav-pf-vertical-alt-border-color;\n    bottom: 0;\n    overflow-x: hidden;\n    overflow-y: auto;\n    left: 0;\n    position: fixed;\n    top: @navbar-pf-alt-height; // move out of way of navbar-pf-alt\n    width: @nav-pf-vertical-alt-width;\n    z-index: @zindex-navbar-fixed;\n\n    &.collapsed {\n      width: @nav-pf-vertical-alt-collapsed-width !important;\n\n      .list-group-item {\n        .badge {\n          padding: 2px 3px;\n          right: 21px;\n          top: 36px;\n        }\n\n        .list-group-item-value {\n          opacity: 0;\n        }\n      }\n    }\n\n    &.hidden {\n      display: none;\n\n      &.show-mobile-nav {\n        box-shadow: 0 0 3px fade(@color-pf-black, 15%);\n        display: block !important;\n      }\n    }\n  }\n\n  .layout-pf-alt-fixed-with-footer & {\n    bottom: @footer-pf-alt-height;\n  }\n\n  .list-group {\n    border-top: 0;\n    margin-bottom: 0;\n  }\n\n  .list-group-item {\n    padding: 0;\n\n    a {\n      color: @gray-dark;\n      display: block;\n      font-size: (@font-size-base + 2);\n      height: @nav-pf-vertical-alt-link-height;\n      padding: @nav-pf-vertical-alt-link-padding;\n      position: relative;\n      white-space: nowrap;\n\n      &:focus {\n        color: @gray-dark;\n        text-decoration: none;\n      }\n\n      &:hover {\n        color: @nav-pf-vertical-alt-active-color;\n        text-decoration: none;\n      }\n    }\n\n    &.active {\n      background-color: @nav-pf-vertical-alt-bg-color;\n      border-color: @list-group-border;\n\n      &:before {\n        background: @nav-pf-vertical-alt-active-color;\n        content: \" \";\n        display: block;\n        height: 100%;\n        left: 0;\n        position: absolute;\n        top: 0;\n        width: 5px;\n      }\n\n      a {\n        color: @nav-pf-vertical-alt-active-color;\n      }\n    }\n\n    .badge {\n      background: @gray-dark;\n      border: 1px solid @nav-pf-vertical-alt-bg-color;\n      border-radius: 3px;\n      color: @nav-pf-vertical-alt-badge-color;\n      font-weight: 700;\n      font-size: (@font-size-base - 3);\n      padding: 5px;\n      position: absolute;\n      right: 15px;\n      text-align: center;\n      top: 21px;\n\n      &.notifications {\n        background: @notification-badge-color;\n      }\n    }\n\n    .fa,\n    .glyphicon,\n    .pficon {\n      float: left;\n      font-size: 18px;\n      line-height: 30px;\n      margin-right: 10px;\n      text-align: center;\n      width: 18px;\n    }\n\n    .list-group-item-value {\n      display: inline-block;\n      line-height: 30px;\n      opacity: 1;\n      overflow: hidden;\n      text-overflow: ellipsis;\n      width: 140px;\n    }\n\n  }\n\n  .list-group-item-separator {\n    border-top-width: 5px;\n  }\n\n  .sidebar-pf & {\n    margin-left: (-(@grid-gutter-width / 2));\n    margin-right: (-(@grid-gutter-width / 2));\n  }\n}\n","//\n// Notifications Drawer\n// --------------------------------------------------\n\n\n.drawer-pf {\n  background-color: @color-pf-black-100;\n  border: 1px solid @card-pf-border-color;\n  .box-shadow(0 6px 12px fade(@color-pf-black, 17.5%));\n  overflow-y: auto;\n  position: absolute;\n  right: 0;\n  width: 320px;\n  z-index: 2;\n  .panel {\n    border-bottom: none;\n    border-left: none;\n    border-right: none;\n  }\n  .panel-group .panel-heading + .panel-collapse .panel-body {\n    border-top: none;\n    border-bottom: 1px solid @card-pf-border-color;\n    padding: 0;\n  }\n  .panel-counter {\n    display: block;\n    font-style: italic;\n    line-height: 1.2;\n    padding-left: 18px;\n    padding-top: 5px;\n  }\n  .panel-heading { border-bottom: 1px solid @card-pf-border-color; }\n  .panel-group {\n    bottom: 0;\n    margin-bottom: 0;\n    position: absolute;\n    top: 25px; // Height of Notifications Drawer box.\n    width: 100%;\n  }\n  .panel-title a {\n    cursor: pointer;\n    display: block;\n  }\n  &.drawer-pf-expanded {\n    @media (max-width: @screen-xs-max) {\n      left:0;\n      width: 100%;\n    }\n    @media (min-width: @screen-xs-max) {\n      left: 270px;\n    } // if the drawer is expanded and the screen is reduced this ensures it switches to full width on smaller screens.\n    width: inherit;\n    .drawer-pf-toggle-expand:before {\n      content: \"\\f101\";\n    }\n  }\n  .blank-slate-pf {\n    border: 0;\n    margin-bottom: 0;\n    padding: 30px;\n\n    .blank-slate-pf-icon {\n      font-size: 3em;\n      line-height: 1em;\n    }\n\n    h1 {\n      font-size: 1em;\n      margin-bottom: 0;\n      margin-top: 15px;\n    }\n  }\n}\n.drawer-pf-close, .drawer-pf-toggle-expand {\n  color: @gray-darker;\n  cursor: pointer;\n  line-height: inherit;\n  padding: 2px 10px;\n  position: absolute;\n  &:hover,\n  &:focus {\n    color: @color-pf-blue-400;\n    text-decoration: none;\n  }\n}\n.drawer-pf-toggle-expand {\n  left: 0;\n  &:before {\n    content: \"\\f100\";\n    font-family: \"FontAwesome\";\n  }\n  &:hover {\n    color: @link-color;\n  }\n}\n.drawer-pf-close {\n  right: 0;\n}\n\n\n.drawer-pf-action {\n  display: flex;\n  border-bottom: 1px solid @card-pf-border-color;\n\n  .btn-link {\n    color: @link-color;\n    padding: 10px 0;\n    .pficon, .fa {\n      margin-right: 3px;\n    }\n    .pficon-close {\n      position: relative;\n      top: 1px;\n    }\n\n    &:hover { color: @link-hover-color; }\n  }\n}\n\n.drawer-pf-action-link {\n  border-left: solid 1px @color-pf-black-300;\n  flex: 1 1 0%;\n  margin: 10px 0;\n  text-align: center;\n\n  &:first-of-type {\n    border-left-width: 0;\n  }\n\n  .btn-link {\n    padding: 0;\n  }\n}\n\n.drawer-pf-loading {\n  color: @gray-pf;\n  font-size: (@font-size-base + 2);\n  padding: 20px 15px;\n}\n\n.drawer-pf-notification {\n  border-bottom: 1px solid @card-pf-border-color;\n  padding: 15px;\n  .date {\n    border-right: 1px solid #aaa;\n    display: inline-block;\n    line-height: 1;\n    margin-right: 5px;\n    padding-right: 9px;\n  }\n  > .dropdown-kebab-pf {\n    margin-top: -3px;\n  }\n\n  .pficon {\n    font-size: @font-size-large;\n    margin-top: 3px;\n  }\n  &:last-of-type {\n    border-bottom: none;\n  }\n  &:hover { background-color: @color-pf-blue-50; }\n  &.unread .drawer-pf-notification-message {\n    font-weight: bold;\n    cursor: pointer;\n  }\n  &.expanded-notification {\n    .date {\n      border-right: none;\n      padding-right: 0;\n    }\n  }\n}\n\n.drawer-pf-notification-content {\n  cursor: default;\n}\n\n.drawer-pf-notification-info,\n.drawer-pf-notification-message {\n  display: block;\n  padding-left: 27px;\n  padding-right: 19px;\n  .expanded-notification & {\n    display: inline-block;\n  }\n}\n\n.drawer-pf-title {\n  background-color: @color-pf-black-100;\n  border-bottom: 1px solid @card-pf-border-color;\n  position: absolute;\n  width: 100%;\n  h3 {\n    font-size: @font-size-base;\n    margin: 0;\n    padding: 6px 15px;\n  }\n}\n\n.drawer-pf-notification.expanded-notification {\n  .drawer-pf-notification-content {\n    display: flex;\n    @media (max-width: @screen-sm-max) {\n      flex-direction: column;\n    }\n    .drawer-pf-notification-message {\n      flex: 1 1;\n    }\n  }\n}\n\n/* Exclusive styles to work with Vertical Navigation */\n.navbar-pf-vertical {\n  .drawer-pf {\n    height: ~\"calc(100vh - @{drawer-pf-top-vertical} - 20px)\";//to create a 20px offset bottom\n    top: @drawer-pf-top-vertical; //menu height;\n      @media (max-width: @screen-xs-max) {\n        width:100%;\n        height: calc(~\"100vh - @{drawer-pf-top-vertical}\");\n      }\n\n  }\n  .nav .drawer-pf-trigger {\n    .drawer-pf-trigger-icon {\n      border-left: 1px solid @navbar-pf-navbar-utility-border-color;\n      border-right: 1px solid @navbar-pf-navbar-utility-border-color;\n      padding-left: 15px;\n      padding-right: 15px;\n    }\n    &.open .drawer-pf-trigger-icon {\n      background-color: @navbar-pf-navbar-utility-hover-bg-color;\n    }\n  }\n}\n\n/* Exclusive styles to work with Horizontal Navigation */\n.navbar-pf {\n  .drawer-pf {\n    height: ~\"calc(100vh - @{drawer-pf-top-horizontal} - 20px)\";\n    top: @drawer-pf-top-horizontal;\n    @media (max-width: @screen-xs-max) {\n      width:100%;\n      height: calc(~\"100vh - @{drawer-pf-top-horizontal} - 32px\");\n      top:calc(~\"@{drawer-pf-top-horizontal} + 8px\");\n    }\n  }\n  .drawer-pf-trigger-icon { cursor: pointer; }\n}\n","//\n// Search\n// --------------------------------------------------\n\n.search-pf {\n  &.has-button {\n    border-collapse: separate;\n    display: table;\n    .form-group {\n      display: table-cell;\n      width: 100%;\n      .btn {\n        .box-shadow(none);\n        float: left;\n        margin-left: -1px;\n        &.btn-lg {\n          font-size: (@font-size-large + .5); // to make button height consistent across browsers!\n        }\n        &.btn-sm {\n          font-size: (@font-size-small - .3); // to make button height consistent across browsers!\n        }\n      }\n      .form-control {\n        float: left;\n      }\n    }\n  }\n  .has-clear {\n    .clear {\n      background: fade(@color-pf-white, 0%); // to make the whole button clickable in IE9+\n      border: 0;\n      height: (@input-height-base - 1);\n      line-height: 1;\n      padding: 0;\n      position: absolute;\n      right: 1px;\n      top: 1px;\n      width: 28px;\n      &:focus {\n        outline: none;\n      }\n    }\n    .form-control {\n      padding-right: 30px;\n      &::-ms-clear {\n        display: none;\n      }\n    }\n    .input-lg + .clear {\n      height: (@input-height-large - 2);\n      width: 28px;\n    }\n    .input-sm + .clear {\n      height: (@input-height-small - 2);\n      width: 28px;\n      span {\n        font-size: (@font-size-base - 2);\n      }\n    }\n    .search-pf-input-group {\n      position: relative;\n    }\n  }\n}\n","//\n// Sidebar\n// --------------------------------------------------\n\n.sidebar-header {\n  border-bottom: 1px solid darken(@page-header-border-color, 2%);\n  padding-bottom: ((@line-height-computed / 2) + 1);\n  margin: ((@line-height-computed * 2) + 10) 0 @line-height-computed;\n  .actions {\n    margin-top: -2px;\n  }\n}\n\n.sidebar-pf {\n  .sidebar-header + .list-group {\n    border-top: 0;\n    margin-top: (-@grid-gutter-width / 2 / 2);\n    .list-group-item {\n      background: transparent;\n      border-color: darken(@page-header-border-color, 2%);\n      padding-left: 0;\n    }\n    .list-group-item-heading {\n      font-size: @font-size-base;\n    }\n  }\n  .nav-category {\n    h2 {\n      color: @dropdown-header-color;\n      font-size: @font-size-base;\n      font-weight: 400;\n      line-height: (@line-height-computed + 1);\n      margin: 0;\n      padding: 8px 0;\n    }\n    + .nav-category {\n      margin-top: (@grid-gutter-width / 4);\n    }\n  }\n  .nav-pills > li {\n    &.active > a {\n      background: @dropdown-link-active-bg !important;\n      border-color: @dropdown-link-active-border-color !important;\n      color: @color-pf-white;\n      @media (min-width: @grid-float-breakpoint) {\n        &:after {\n          content: @fa-var-angle-right;\n          font-family: @icon-font-name-fa;\n          display: block;\n          position: absolute;\n          right: (@grid-gutter-width / 2 / 2);\n          top: 1px;\n        }\n      }\n      .fa {\n        color: @color-pf-white;\n      }\n    }\n    > a {\n      border-bottom: 1px solid transparent;\n      border-radius: 0;\n      border-top: 1px solid transparent;\n      color: @text-color;\n      font-size: (@font-size-base + 1);\n      line-height: (@line-height-computed + 1);\n      padding: 1px (@grid-gutter-width / 2);\n      &:hover {\n        background: @dropdown-link-hover-bg;\n        border-color: @dropdown-link-hover-border-color;\n      }\n      .fa {\n        color: lighten(@gray-pf, 12%);\n        font-size: (@font-size-base + 3);\n        margin-right: (@grid-gutter-width / 4);\n        text-align: center;\n        vertical-align: middle;\n        width: (@font-size-base + 3);\n      }\n    }\n  }\n  .nav-stacked {\n    margin-left: (-(@grid-gutter-width / 2));\n    margin-right: (-(@grid-gutter-width / 2));\n    li + li {\n      margin-top: 0;\n    }\n  }\n  .panel {\n    background: transparent;\n  }\n  .panel-body {\n    padding: 6px (@grid-gutter-width / 2);\n    .nav-pills > li > a {\n      padding-left: (@grid-gutter-width / 2 + 17);\n    }\n  }\n  .panel-heading {\n    padding: 9px (@grid-gutter-width / 2);\n  }\n  .panel-title {\n    font-size: @font-size-base;\n    > a {\n      &:before {\n        display: inline-block;\n        margin-left: 1px;\n        margin-right: 4px;\n        width: 9px;\n      }\n      &.collapsed:before {\n        margin-left: 3px;\n        margin-right: 2px;\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint-max) {\n  .sidebar-header-bleed-left {\n    margin-left: (-(@grid-gutter-width / 2));\n    > h2 {\n      margin-left: (@grid-gutter-width / 2);\n    }\n  }\n  .sidebar-header-bleed-right {\n    margin-right: (-(@grid-gutter-width / 2));\n    .actions {\n      margin-right: (@grid-gutter-width / 2);\n    }\n    > h2 {\n      margin-right: (@grid-gutter-width / 2);\n    }\n    + .list-group {\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n  }\n  .sidebar-pf {\n    .panel-group .panel-default,\n    .treeview {\n      border-left: 0;\n      border-right: 0;\n      margin-left: (-(@grid-gutter-width / 2));\n      margin-right: (-(@grid-gutter-width / 2));\n    }\n    .treeview {\n      margin-top: 5px;\n      .list-group-item {\n        padding-left: (@grid-gutter-width / 2);\n        padding-right: (@grid-gutter-width / 2);\n        &.node-selected:after {\n          content: @fa-var-angle-right;\n          font-family: @icon-font-name-fa;\n          display: block;\n          position: absolute;\n          right: (@grid-gutter-width/2 / 2);\n          top: 1px;\n        }\n      }\n    }\n  }\n}\n\n@media (min-width: @grid-float-breakpoint) {\n  .sidebar-pf {\n    background: @sidebar-pf-bg;\n    &.sidebar-pf-left {\n      border-right: 1px solid @sidebar-pf-border-color;\n    }\n    &.sidebar-pf-right {\n      border-left: 1px solid @sidebar-pf-border-color;\n    }\n    > .nav-category,\n    > .nav-stacked {\n      margin-top: 5px;\n    }\n  }\n}\n","//\n// Skip to content\n// --------------------------------------------------\n.skiplink-pf {\n  position: absolute;\n  top: @skiplink-pf-top;\n  left: -300%; /* moves off screen */\n  z-index: @zindex-modal;\n}\n.skiplink-pf:focus {\n  left: @skiplink-pf-left;\n}\n","//\n// Spinner\n// --------------------------------------------------\n\n@keyframes rotation {\n  from {transform: rotate(0deg);}\n  to {transform: rotate(359deg);}\n}\n\n.spinner {\n  animation: rotation 600ms infinite linear;\n  border-bottom: 4px solid fade(@color-pf-black, 25%);\n  border-left: 4px solid fade(@color-pf-black, 25%);\n  border-right: 4px solid fade(@color-pf-black, 25%);\n  border-radius: 100%;\n  border-top: 4px solid fade(@color-pf-black, 75%);\n  height: (@font-size-base * 2);\n  margin: 0 auto;\n  position: relative;\n  width: (@font-size-base * 2);\n  &.spinner-inline {\n    display: inline-block;\n    margin-right: 3px;\n  }\n  &.spinner-lg {\n    border-width: 5px;\n    height: (@font-size-base * 2.5);\n    width: (@font-size-base * 2.5);\n  }\n  &.spinner-sm {\n    border-width: 3px;\n    height: (@font-size-base * 1.5);\n    width: (@font-size-base * 1.5);\n  }\n  &.spinner-xs {\n    border-width: 2px;\n    height: @font-size-base;\n    width: @font-size-base;\n  }\n  &.spinner-inverse {\n    border-bottom-color: fade(@color-pf-white, 25%);\n    border-left-color: fade(@color-pf-white, 25%);\n    border-right-color: fade(@color-pf-white, 25%);\n    border-top-color: fade(@color-pf-white, 75%);\n  }\n}\n\n.ie9 .spinner {\n  background: url(\"@{img-path}/@{img-spinner}\") no-repeat;\n  border: 0;\n  &.spinner-inverse {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse}\");\n  }\n  &.spinner-inverse-lg {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-lg}\");\n  }\n  &.spinner-inverse-sm {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-sm}\");\n  }\n  &.spinner-inverse-xs {\n    background-image: url(\"@{img-path}/@{img-spinner-inverse-xs}\");\n  }\n  &.spinner-lg {\n    background-image: url(\"@{img-path}/@{img-spinner-lg}\");\n  }\n  &.spinner-sm {\n    background-image: url(\"@{img-path}/@{img-spinner-sm}\");\n  }\n  &.spinner-xs {\n    background-image: url(\"@{img-path}/@{img-spinner-xs}\");\n  }\n}\n","//\n// Syntax Highlighting for google-code-prettify\n// --------------------------------------------------\n\n.prettyprint {\n  .atn,\n  .com,\n  .fun,\n  .var {\n    color: @syntax-3;\n  }\n\n  .atv,\n  .str {\n    color: @syntax-1;\n  }\n\n  .clo,\n  .dec,\n  .kwd,\n  .opn,\n  .pln,\n  .pun {\n    color: @syntax-2;\n  }\n\n  .lit,\n  .tag,\n  .typ {\n    color: @syntax-4;\n  }\n\n  ol.linenums {\n    margin-bottom: 0;\n  }\n}\n","//\n// Table View\n// --------------------------------------------------\n\n// Keep dataTable class for legacy apps\ntable.dataTable {\n  height: 100%;\n  margin-bottom: 0;\n  max-width: none !important;\n  tbody {\n    > tr {\n      > td {\n        // Styling for inline actions\n        &.table-view-pf-actions {\n          padding: 0;\n          vertical-align: middle;\n        }\n      }\n      &:hover {\n        // Styling when hovering anywhere else on a row\n        > td.table-view-pf-actions {\n          background-color: @table-bg-accent;\n          border-bottom-color: @table-border-color;\n        }\n      }\n    }\n    > tr.selected {\n      color: @color-pf-white;\n      background-color: @color-pf-blue-400;\n      > td {\n        border-bottom-color: @color-pf-blue-500;\n        &.table-view-pf-actions {\n          background-color: @table-bg-accent;\n          border-bottom-color: @table-border-color;\n        }\n      }\n      &:hover {\n        > td {\n          background-color: inherit;\n          border-bottom-color: @color-pf-blue-500;\n          &.table-view-pf-actions {\n            background-color: @table-bg-accent;\n            border-bottom-color: @table-border-color;\n          }\n        }\n      }\n    }\n  }\n  thead {\n    .sorting,\n    .sorting_asc,\n    .sorting_desc,\n    .sorting_asc_disabled,\n    .sorting_desc_disabled {\n      cursor: pointer;\n    }\n    .sorting_asc,\n    .sorting_desc {\n      color: @link-color !important;\n      position: relative;\n      &:after {\n        content: @fa-var-angle-down;\n        font-family: @icon-font-name-fa;\n        font-size: (@font-size-base - 2);\n        font-weight: normal;\n        height: (@font-size-base - 3);\n        left: 7px;\n        line-height: @font-size-base;\n        position: relative;\n        top: 2px;\n        vertical-align: baseline;\n        width: @font-size-base;\n      }\n      &:before {\n        background: @link-color;\n        content: \"\";\n        height: 2px;\n        position: absolute;\n        left: 0;\n        top: 0;\n        width: 100%;\n      }\n    }\n    .sorting_asc:after {\n      content: @fa-var-angle-up;\n      top: -3px;\n    }\n  }\n  th:active {\n    outline: none;\n  }\n}\n\n// Empty table\n.table-view-pf-empty {\n  &.blank-slate-pf {\n    background-color: @table-bg-accent;\n    border: 1px solid @table-border-color;\n    border-radius: 0;\n    margin-top: -1px;\n  }\n}\n\n// Embedded toolbar\n.table-view-pf-toolbar {\n  &.toolbar-pf {\n    background-color: @table-bg-accent;\n    border-bottom: none;\n    border-left: 1px solid @table-border-color;\n    border-right: 1px solid @table-border-color;\n    border-top: 1px solid @table-border-color;\n    box-shadow: none;\n    margin-left: 0px;\n    margin-right: 0px;\n    .toolbar-pf-results {\n      border-top: 1px solid @table-border-color;\n      min-height: 40px;\n      line-height: 40px;\n    }\n  }\n}\n\n// External Toolbar\n.table-view-pf-toolbar-external {\n  &.toolbar-pf {\n    border-bottom: none;\n    border-top: none;\n    box-shadow: none;\n    .toolbar-pf-results {\n      border-top: 1px solid @table-border-color;\n      min-height: 40px;\n      line-height: 40px;\n    }\n  }\n}\n\n.table-view-pf-colvis-menu {\n  > li {\n    padding: 5px 10px;\n    &:hover {\n      background-color: #def3ff;\n    }\n    > input {\n      margin-top: 0;\n      margin-right: 10px;\n      vertical-align: middle;\n    }\n    > label {\n      margin-bottom: 0;\n    }\n  }\n\n}\n\n// Inline action button and kebab\n// Sets button height to 100% of td height in firefox and chrome, but not in IE when wrapping occurs.\n// Button height must be set dynamically in IE to be equal to td height.\n.table-view-pf-actions {\n  background-color: @btn-default-bg; // included just in case there are gaps between the edges of the buttons and the table cell\n  height: 100%;\n  .btn,\n  .dropdown-toggle {\n    border: none;\n    box-shadow: none;\n    height: 100%;\n    width: 100%;\n  }\n  .dropdown,\n  .table-view-pf-btn {\n    height: 100%;\n  }\n  .dropdown-menu.dropdown-menu-right {\n    right: -5px;\n  }\n  &:last-child {\n    width: 24px;\n  }\n}\n\n// Selection column\n.table-view-pf-select {\n  width: 33px;\n}\n\n// Results area containing selected row text\n.table-view-pf-select-results {\n  text-align: right;\n}\n","//\n// Time Picker\n// --------------------------------------------------\n.bootstrap-datetimepicker-widget {\n  a[data-action] {\n    border: 0;\n    box-shadow: none;\n    color: @gray-dark;\n    display: block;\n    padding-bottom: 4px;\n    padding-top: 4px;\n    &:hover { color: @link-color; }\n  }\n  &.dropdown-menu {\n    left: 0!important;\n    padding: 0;\n    width: ~\"calc(100% - 25px)\";\n    &:before, &:after {\n      content: none;\n    }\n    &.top {\n      margin-bottom: -1px;\n    }\n    &.bottom {\n      margin-top: -1px;\n    }\n  }\n  .timepicker-hour {\n    width: 100%;\n    &:after {\n      content: \":\";\n      float: right;\n    }\n  }\n}\n.timepicker-hours,\n.timepicker-minutes {\n  table td {\n    font-weight: bold;\n    line-height: 30px;\n    height: 30px;\n    &:hover { color: @link-color; }\n  }\n  .table-condensed > tbody > tr > td { padding: 0; }\n}\n.time-picker-pf {\n  .input-group-addon {\n    .fa,\n    .pficon { width: 12px; }\n    &:not(.active) { box-shadow: none; }\n  }\n}\n.timepicker-picker {\n  table td {\n    span,\n    a span {\n      height: 24px;\n      line-height: 24px;\n      margin: 0;\n      width: 100%;\n    }\n  }\n  .table-condensed > tbody > tr > td {\n    height: 25px;\n    line-height: 18px;\n    padding: 0;\n  }\n  button[data-action] { // provisional until the button is removed\n    padding-bottom: 0;\n    padding-top: 0;\n  }\n  .separator { display: none; }\n  tr:nth-child(2) td {\n    background-color: @dropdown-link-hover-bg;\n    border-color: @dropdown-link-hover-border-color;\n    border-style: solid;\n    border-width: 1px;\n    border-left: 0;\n    border-right: 0;\n  }\n}\n","//\n// Toast notifications\n// --------------------------------------------------\n\n.toast-pf {\n  background-color: @color-pf-white;\n  border-color: @color-pf-black-400;\n  box-shadow: 0 2px 6px fade(@color-pf-black, 20%);\n  padding-left: 68px; //15px space between the icon and the text\n  margin-bottom: 5px;\n  &.alert-danger > .pficon  { background-color: @alert-danger-border; }\n  &.alert-info > .pficon    { background-color: @alert-info-border; }\n  &.alert-success > .pficon { background-color: @alert-success-border; }\n  &.alert-warning > .pficon { background-color: @alert-warning-border; }\n  .dropdown-kebab-pf { margin-left: 10px; }\n  > .pficon {\n    background-color: @gray-pf;\n    bottom:  -1px;\n    box-shadow: 2px 0 5px -2px fade(@color-pf-black, 20%);\n    left: -1px;\n    padding-top: 10px;\n    text-align: center;\n    top: -1px;\n    width: 53px;\n    &:before { color: fade(@color-pf-white, 74%); }\n  }\n  .toast-pf-action {\n    margin-left: 15px;\n  }\n  .dropdown-kebab-pf .btn-link {\n    padding-top: 0;\n    padding-bottom: 0;\n    vertical-align: text-bottom;\n  }\n  /* Medium devices (desktops, 992px and up) */\n  @media (min-width: @screen-md-min) {\n    display: inline-block;\n  }\n}\n// Sets max width on toast notifications\n.toast-pf-max-width {\n @media (min-width: @screen-md-min) {\n    max-width: 31.1%; // sets the size to 4 cols;\n  }\n}\n// To position the notification on the top right corner, used in context on cards layout\n.toast-pf-top-right {\n  left: (@grid-gutter-width / 2);\n  position: absolute;\n  right: (@grid-gutter-width / 2);\n  top: 12px;\n  z-index: 1055; // More than @zindex-modal\n  /* Medium devices (desktops, 992px and up) */\n  @media (min-width: @screen-md-min) {\n    left: auto;\n  }\n}\n\n.toast-notifications-list-pf {\n  margin-left: (@grid-gutter-width / 2);\n  position: fixed;\n  right: (@grid-gutter-width / 2);\n  top: @toast-notification-top;\n  z-index: 1055;\n  .toast-pf {\n    clear: both;\n    float: right;\n  }\n  @media (min-width: @screen-sm-min) {\n    max-width: calc(50%);\n  }\n  @media (min-width: @screen-md-min) {\n    max-width: calc(33.1% ); // sets the size to 4 cols;\n  }\n}\n","//\n// Toolbar (Filter and view options)\n// --------------------------------------------------\n\n.toolbar-pf {\n  background: @color-pf-white;\n  border-bottom: 1px solid @sidebar-pf-border-color;\n  box-shadow: 0 1px 0px fade(@color-pf-black, 4.5%);\n  padding-top: (@grid-gutter-width/4);\n  .form-group {\n    margin-bottom: (@grid-gutter-width/4);\n    @media (min-width: @grid-float-breakpoint) {\n      border-right: 1px solid @sidebar-pf-border-color;\n      float: left;\n      margin-bottom: 0;\n      padding-left: (@grid-gutter-width/2);\n      padding-right: (@grid-gutter-width/2);\n    }\n    &:last-child {\n      border-right: 0;\n      margin-bottom: 0;\n      padding-right: 0;\n    }\n    .btn,\n    .btn-group {\n      + .btn,\n      + .btn-group { margin-left: 5px; }\n      + .btn-link,\n      + .dropdown { margin-left: 10px; }\n    }\n    .btn-link {\n      color: @gray-darker;\n      font-size: (@font-size-base + 4);\n      line-height: 1;\n      padding: 4px 0;\n      &:active,\n      &:focus,\n      &:hover { color: @link-color; }\n    }\n    .dropdown-kebab-pf .btn-link {\n      padding: 4px (@grid-gutter-width/4);\n      margin-left: (@grid-gutter-width/(-4));\n      margin-right: (@grid-gutter-width/(-4));\n    }\n  }\n}\n.toolbar-pf-actions {\n  display: table;\n  margin-bottom: 10px;\n  width: 100%;\n  @media (min-width: @grid-float-breakpoint) {\n    .toolbar-pf-filter {\n      padding-left: 0;\n    }\n  }\n}\n.toolbar-pf-view-selector {\n  font-size: (@font-size-base + 4);\n  .btn-link.active {\n    color: @link-color;\n    cursor: default;\n  }\n}\n.toolbar-pf-action-right {\n  float: right;\n  @media (max-width: @grid-float-breakpoint) {\n    float: none;\n  }\n}\n.toolbar-pf-find {\n  font-size: (@font-size-base + 2);\n  position: relative;\n}\n.find-pf-dropdown-container {\n  background: @color-pf-white;\n  border: solid 1px @color-pf-black-400;\n  display: none;\n  right: -20px;\n  padding: 5px;\n  position: absolute;\n  top: 35px;\n  width: 300px;\n  z-index: 10000;\n  @media (max-width: @grid-float-breakpoint) {\n    left: 30px;\n    top: -5px;\n    width: calc(100% - 30px);\n  }\n  &:before,\n  &:after {\n    content: \"\";\n    position: absolute;\n  }\n  &:before {\n    border-bottom:11px solid @color-pf-black-400;\n    border-left:11px solid transparent;\n    border-right:11px solid transparent;\n    right: 35px;\n    .toolbar-pf-find:last-child & {\n      right: 15px;\n    }\n    top: -12px;\n    @media (max-width: @grid-float-breakpoint) {\n      border-bottom:11px solid transparent;\n      border-right:11px solid @color-pf-black-400;\n      border-top:11px solid transparent;\n      left: -22px;\n      right: initial;\n      top: 8px;\n    }\n  }\n  &:after {\n    border-bottom:10px solid @color-pf-white;\n    border-left:10px solid transparent;\n    border-right:10px solid transparent;\n    right: 36px;\n    .toolbar-pf-find:last-child & {\n      right: 16px;\n    }\n    top: -10px;\n    @media (max-width: @grid-float-breakpoint) {\n      border-bottom:10px solid transparent;\n      border-right:10px solid @color-pf-white;\n      border-top:10px solid transparent;\n      left: -20px;\n      right: initial;\n      top: 9px;\n    }\n  }\n  input {\n    height: 30px;\n    padding: 5px 117px 5px 5px; // 112px (components) + 5px (offset)\n    width: 100%;\n  }\n  .find-pf-buttons {\n    position: absolute;\n    right: 10px;\n    top: 5px;\n    .btn {\n      border: none;\n      cursor: pointer;\n      margin-left: 0 !important;\n      padding: 0;\n      width: 18px;\n      .fa-angle-up,\n      .fa-angle-down {\n        font-weight: bold;\n        font-size: (@font-size-base + 6);\n      }\n      .pficon-close { font-size: (@font-size-base + 2); }\n    }\n    span {\n      height: 30px;\n      line-height: 30px;\n      vertical-align: middle;\n    }\n    .find-pf-nums {\n      color: @color-pf-black-500;\n      margin-right: 3px;\n    }\n  }\n}\n\n.toolbar-pf-results {\n  border-top: 1px solid @sidebar-pf-border-color;\n  margin-top: (@grid-gutter-width/4);\n  h5,\n  p,\n  ul {\n    display: inline-block;\n    line-height: (@grid-gutter-width/1.5);\n    margin-bottom: 0;\n    margin-top: 0;\n    @media (min-width: @screen-sm-min) {\n      line-height: @grid-gutter-width;\n    }\n  }\n  h5 {\n    font-weight: 700;\n    margin-right: 20px;\n  }\n  .label {\n    font-size: (@font-size-base - 1);\n    a {\n      color: @color-pf-white;\n      display: inline-block;\n      margin-left: 5px;\n    }\n  }\n}\n","//\n//  Vertical navigation\n// --------------------------------------------------\n//\n// Basic Required Layout for Vertical Navigation\n//\n// .navbar navbar-pf-vertical\n//   .navbar-header\n//   .collapse navbar-collapse   <-- necessary for collapsing vertical nav and mobile\n// .nav-pf-vertical [.nav-pf-vertical-callapsible-menus] [.nav-pf-persistent-secondary] [.hidden-icons-pf]\n//   .list-group\n//     .list-group-item [.active] [.secondary-nav-item-pf]\n//       a\n//         [primary icon] <-- Not shown if .hidden-icons-pf above\n//         .list-group-item-value\n//       .nav-pf-secondary-nav  <-- if .secondary-nav-item-pf above\n//         .nav-item-pf-header\n//           .secondary-collapse-toggle-pf data-toggle=\"collapse-secondary-nav\"\n//         .list-group\n//           .list-group-item [.active] [tertiary-nav-item-pf]\n//             a\n//              .list-group-item-value\n//            .nav-pf-tertiary-nav  <-- if .tertiary-nav-item-pf above\n//              .nav-item-pf-header\n//                .tertiary-collapse-toggle-pf data-toggle=\"collapse-tertiary-nav\"\n//              .list-group\n//                .list-group-item [.active] [tertiary-nav-item-pf]\n//                  a\n//                    .list-group-item-value\n//\n// .container-pf-nav-pf-vertical [.nav-pf-persistent-secondary] [.hidden-icons-pf]\n//\n\n.nav-pf-vertical {\n  background: @nav-pf-vertical-bg-color;\n  border-right: 1px solid @nav-pf-vertical-border-color;\n  bottom: 0;\n  left: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n   &.hidden.show-mobile-nav {  // Mobile mode open\n    box-shadow: 0 0 3px fade(@color-pf-black, 15%);\n    display: block !important;\n  }\n  &.hide-nav-pf {  // Used to hide navigation initially to avoid startup flicker\n    visibility: hidden !important;\n  }\n  .list-group {\n    border-top: 0;\n    margin-bottom: 0;\n  }\n  .list-group-item {\n    background-color: transparent;\n    border-color: @nav-pf-vertical-item-border-color;\n    padding: 0;\n    > a {\n      background-color: transparent;\n      color: @nav-pf-vertical-color;\n      cursor: pointer;\n      display: block;\n      font-size: (@font-size-base + 2);\n      font-weight: @nav-pf-vertical-font-weight;\n      height: @nav-pf-vertical-link-height;\n      line-height: 26px;\n      padding: @nav-pf-vertical-link-padding;\n      position: relative;\n      white-space: nowrap;\n      width: @nav-pf-vertical-width;\n      // When flexbox is supported nav item names take up all available space\n      @supports (display: flex) {\n        display: flex;\n        padding-right: 0;\n      }\n      .fa,\n      .glyphicon,\n      .pficon {\n        color: @nav-pf-vertical-icon-color;\n        float: left;\n        font-size: (@font-size-base + 8);\n        line-height: 26px;\n        margin-right: 10px;\n        text-align: center;\n        width: @nav-pf-vertical-icon-width;\n      }\n      &:hover {\n        text-decoration: none;\n      }\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-active-bg-color;\n        color: @nav-pf-vertical-active-color;\n        font-weight: @nav-pf-vertical-active-font-weight;\n        .fa,\n        .glyphicon,\n        .pficon {\n          color: @nav-pf-vertical-active-icon-color;\n        }\n      }\n    }\n    &.active {\n      > a:before {\n        background: @nav-pf-vertical-active-before-color;\n        content: \" \";\n        height: 100%;\n        left: 0;\n        position: absolute;\n        top: 0;\n        width: 3px;\n      }\n      &:hover { // to over-ride default list group setting\n        background-color: transparent;\n        border-color: @nav-pf-vertical-item-border-color;\n      }\n    }\n    .list-group-item-value {\n      display: block;\n      line-height: 25px;\n      max-width: 120px;\n      // If flexbox is supported, do not set max-width, take all space with just some right padding\n      @supports (display: flex) {\n        flex: 1;\n        max-width: none;\n        padding-right: 15px;\n      }\n      overflow: hidden;\n      text-overflow: ellipsis;\n    }\n  }\n  .list-group-item-separator {\n    border-top-color: @nav-pf-vertical-item-border-color;\n    border-top-width: 2px;\n  }\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n    .list-group-item > a {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  h5 {\n    color: @nav-pf-vertical-secondary-color;\n    cursor: default;\n    font-size: (@font-size-base + 1);\n    font-weight: 600;\n    margin: @nav-pf-vertical-secondary-list-header-margin;\n  }\n  &.hidden-icons-pf {\n    > .list-group > .list-group-item { // only the primary menu hides icons\n      > a {\n        .fa,\n        .glyphicon,\n        .pficon {\n          display: none;\n        }\n      }\n    }\n    &.collapsed {\n      display: none;\n    }\n  }\n  .badge-container-pf {\n    position: absolute;\n    right: 15px;\n    top: 20px;\n    // If flexbox is supported, use relative positioning to place to the right of the label\n    // and adjust the top position so that the secondary and tertiary nav items don't need to change\n    @supports (display: flex) {\n      padding-left: 0;\n      padding-right: 15px;\n      position: relative;\n      right: 0;\n      margin-top: -3px;\n      top: 5px;\n    }\n    .badge {\n      background: @nav-pf-vertical-badge-bg-color;\n      color: @nav-pf-vertical-badge-color;\n      float: left;\n      font-size: @font-size-base;\n      font-weight: 700;\n      line-height: @line-height-base;\n      margin: 0;\n      padding: 0 7px;\n      text-align: center;\n      .pficon,\n      .fa {\n        font-size: (@font-size-base + 2);\n        height: 20px;\n        line-height: @line-height-base;\n        margin-right: 3px;\n        margin-top: -1px;\n      }\n    }\n  }\n}\n.nav-pf-vertical-tooltip.tooltip {\n  margin-left: 15px;\n  .tooltip-inner {\n    background-color: @color-pf-white;\n    color: @color-pf-black-900;\n  }\n  .tooltip-arrow {\n    border-bottom-color: @color-pf-white;\n    left: calc(50% - 15px) !important;\n  }\n}\n.hover-secondary-nav-pf {\n  width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  &.nav-pf-vertical-with-badges {\n    width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n  }\n}\n.hover-tertiary-nav-pf {\n  width: ~\"calc(@{nav-pf-vertical-width} * 3)\";\n  &.nav-pf-vertical-with-badges {\n    width: ~\"calc(@{nav-pf-vertical-badges-width} * 3)\";\n  }\n  .nav-pf-secondary-nav {\n    width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    .collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  .nav-pf-tertiary-nav {\n    left: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-secondary-nav {\n      width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n      .collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    .nav-pf-tertiary-nav {\n      left: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n    }\n  }\n}\n.nav-pf-vertical.collapsed {\n  width: @nav-pf-vertical-collapsed-width;\n  &.collapsed-secondary-nav-pf { // collapsed state with secondary menu pinned\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.collapsed-tertiary-nav-pf { // collapsed state with tertiary menu pinned\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.hover-secondary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-badges-width} * 2))\";\n    }\n  }\n}\n.show-mobile-nav {\n  &.show-mobile-secondary {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  &.show-mobile-tertiary {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .mobile-nav-item-pf,\n  .mobile-secondary-item-pf {\n    .nav-pf-secondary-nav {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 4);\n    }\n    > .nav-pf-tertiary-nav {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 8);\n    }\n  }\n  .nav-pf-secondary-nav {\n    left: 0;\n    .secondary-nav-item-pf:hover & {\n      opacity: 0;\n      visibility: hidden;\n    }\n  }\n  .tertiary-nav-item-pf:hover {\n    .nav-pf-tertiary-nav {\n      opacity: 0;\n      visibility: hidden;\n    }\n  }\n  .tertiary-nav-item-pf.mobile-nav-item-pf:hover {\n    .nav-pf-tertiary-nav {\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n}\n.secondary-nav-item-pf {\n  > a {\n    cursor: default;\n    &:after {\n      color: @nav-pf-vertical-secondary-indicator-color;\n      content: @fa-var-angle-right;\n      display: block;\n      font-family: \"FontAwesome\";\n      font-size: (@font-size-base * 2);\n      line-height: 30px;\n      padding: @nav-pf-vertical-secondary-indicator-padding;\n      position: absolute;\n      right: 20px;\n      top: 0;\n    }\n    .list-group-item-value {\n      // If flex box is supported add some padding to account for the submenu indicator\n      @supports (display: flex) {\n        padding-right: 35px;\n      }\n    }\n  }\n  &.active,\n  &:hover {\n    > a {\n      width: ~\"calc(@{nav-pf-vertical-width} + 1px)\";\n      z-index: (@zindex-navbar-fixed + 1);\n      &:after {\n        right: 21px;\n      }\n      .collapsed-secondary-nav-pf & {\n        z-index: 0;\n      }\n      .collapsed-tertiary-nav-pf & {\n        z-index: 0;\n      }\n    }\n  }\n  .nav-pf-vertical-with-badges & {\n    &.active,\n    &:hover {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} + 1px)\";\n      }\n    }\n  }\n}\n.nav-pf-vertical.collapsed-secondary-nav-pf {\n  width: @nav-pf-vertical-width;\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n  }\n  .secondary-nav-item-pf {  // Keep sub-menu indicators below collapsed menu\n    &.active,\n    &.hover {\n      > a {\n        z-index: @zindex-navbar-fixed;\n      }\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .nav-pf-secondary-nav {\n    left: 0;\n  }\n  .nav-pf-tertiary-nav {\n    left: @nav-pf-vertical-width;\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-tertiary-nav {\n      left: @nav-pf-vertical-badges-width;\n    }\n  }\n}\n.nav-pf-vertical.collapsed-tertiary-nav-pf {\n  width: @nav-pf-vertical-width;\n  &.nav-pf-vertical-with-badges {\n    width: @nav-pf-vertical-badges-width;\n  }\n  .nav-pf-secondary-nav {\n    width: @nav-pf-vertical-width;\n    &.nav-pf-vertical-with-badges {\n      width: @nav-pf-vertical-badges-width;\n    }\n  }\n  .secondary-nav-item-pf,    // Keep sub-menu indicators below collapsed menu\n  .tertiary-nav-item-pf {\n    &.active,\n    &.hover {\n      > a {\n        z-index: 0;\n      }\n    }\n  }\n}\n.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf {  // Persistent secondary nav settings\n  @media (min-width: @screen-lg-min) { // secondary menu only persistent at lg screen\n    width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    &.nav-pf-vertical-with-badges {\n      width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n    }\n    &.collapsed-secondary-nav-pf {\n      width: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        width: @nav-pf-vertical-badges-width;\n      }\n      &.hover-tertiary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n        &.nav-pf-vertical-with-badges {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} * 2)\";\n        }\n      }\n    }\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n      &.nav-pf-vertical-with-badges {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.collapsed {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n      &.collapsed-secondary-nav-pf {\n        width: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          width: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-width;\n        &.nav-pf-vertical-with-badges {\n          width: @nav-pf-vertical-badges-width;\n        }\n      }\n      &.hover-tertiary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n        &.nav-pf-vertical-with-badges {\n          width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-badges-width} * 2))\";\n        }\n      }\n    }\n    &.hover-tertiary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-width} * 3)\";\n      &.nav-pf-vertical-with-badges {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} * 3)\";\n      }\n    }\n    .secondary-nav-item-pf.active {\n      .nav-pf-secondary-nav {\n        visibility: visible;\n        opacity: 1;\n      }\n    }\n  }\n}\n.nav-item-pf-header {\n  color: @nav-pf-vertical-secondary-color;\n  font-size: (@font-size-base + 4);\n  margin: @nav-pf-vertical-secondary-header-margin;\n  > a {\n    cursor: pointer;\n    margin-right: 7px;\n    &:hover,\n    &:focus {\n      color: @link-color;\n      text-decoration: none;\n    }\n  }\n}\n.nav-pf-vertical.collapsed { // Collapsed Primary Menu state\n  width: @nav-pf-vertical-collapsed-width;\n  .list-group-item { // Show only the icons\n    > a {\n      width: @nav-pf-vertical-collapsed-width;\n      > .list-group-item-value {\n        display: none;\n      }\n      > .badge-container-pf {\n        display: none;\n      }\n    }\n    &.secondary-nav-item-pf { // Adjust widths\n      &.active > a,\n      > a {\n        width: @nav-pf-vertical-collapsed-width;\n        &:after {\n          right: 10px;\n        }\n      }\n      &.active,\n      &:hover {\n        > a {\n          width: (@nav-pf-vertical-collapsed-width + 2);\n          &:after {\n            right: 11px;\n          }\n        }\n      }\n    }\n  }\n}\n.nav-pf-secondary-nav {\n  background: @nav-pf-vertical-secondary-bg-color;\n  border: 1px solid @nav-pf-vertical-border-color;\n  border-bottom: none;\n  border-top: none;\n  bottom: 0;\n  display: block;\n  left: @nav-pf-vertical-width;\n  opacity: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  visibility: hidden;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .secondary-nav-item-pf.active & {  // Show secondary menu if active and either is collapsed\n    .collapsed-secondary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 2);\n    }\n    .collapsed-tertiary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n  .secondary-nav-item-pf.is-hover & { // Show secondary menu if hovering\n    .hover-secondary-nav-pf & {\n      opacity: 1;\n      visibility: visible;\n    }\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .list-group-item {\n    border: none;\n    padding: @nav-pf-vertical-secondary-item-padding;\n    width: @nav-pf-vertical-width;\n    > a {\n      background-color: @nav-pf-vertical-secondary-bg-color;\n      color: @nav-pf-vertical-secondary-item-color;\n      font-size: @font-size-base;\n      font-weight: inherit;\n      height: inherit;\n      padding: @nav-pf-vertical-secondary-link-padding;\n      margin-left: 20px;\n      width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n\n      &:hover {\n        .list-group-item-value {\n          text-decoration: underline;\n        }\n      }\n    }\n    &.active > a:before {\n      display: none;\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-secondary-active-bg-color;\n        color: @nav-pf-vertical-secondary-active-color;\n      }\n    }\n    .badge-container-pf {\n      top: 5px;\n      .badge {\n        background: @nav-pf-vertical-secondary-badge-bg-color;\n        color: @nav-pf-vertical-badge-color;\n      }\n    }\n    .list-group-item-value {\n      padding-left: 5px;\n    }\n    &.tertiary-nav-item-pf { // Secondary menu items with tertiary sub menus\n      > a {\n        cursor: default;\n        &:after {\n          color: @nav-pf-vertical-secondary-indicator-color;\n          content: @fa-var-angle-right;\n          display: block;\n          font-family: \"FontAwesome\";\n          font-size: 20px;\n          line-height: 20px;\n          padding: @nav-pf-vertical-tertiary-indicator-padding;\n          position: absolute;\n          right: 20px;\n          top: 4px;\n        }\n        // If flex box is supported add some padding to account for the submenu indicator\n        .list-group-item-value {\n          @supports (display: flex) {\n            padding-right: 35px;\n          }\n        }\n      }\n      &.active,\n      &:hover {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-width} - 19px)\";\n          z-index: (@zindex-navbar-fixed + 3);\n          &:after {\n            right: 21px;\n          }\n        }\n      }\n    }\n  }\n  .nav-pf-vertical-with-badges & {\n    left: @nav-pf-vertical-badges-width;\n    width: @nav-pf-vertical-badges-width;\n    .list-group-item {\n      width: @nav-pf-vertical-badges-width;\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n      }\n      &.tertiary-nav-item-pf { // Secondary menu items with tertiary sub menus\n        &.active,\n        &:hover {\n          > a {\n            width: ~\"calc(@{nav-pf-vertical-badges-width} - 19px)\";\n          }\n        }\n      }\n    }\n  }\n}\n.nav-pf-tertiary-nav {\n  background: @nav-pf-vertical-tertiary-bg-color;\n  border: 1px solid @nav-pf-vertical-border-color;\n  border-bottom: none;\n  border-top: none;\n  bottom: 0;\n  display: block;\n  left: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n  opacity: 0;\n  overflow-x: hidden;\n  overflow-y: auto;\n  position: fixed;\n  top: @navbar-pf-height;\n  visibility: hidden;\n  width: @nav-pf-vertical-width;\n  z-index: @zindex-navbar-fixed;\n  .nav-pf-vertical-with-badges & {\n    left: @nav-pf-vertical-badges-width;\n    width: @nav-pf-vertical-badges-width;\n    .show-mobile-nav {\n      left: 0;\n    }\n  }\n  .tertiary-nav-item-pf.active & {  // Show tertiary menu if active and collapsed\n    .collapsed-tertiary-nav-pf & {\n      left: 0;\n      opacity: 1;\n      visibility: visible;\n      z-index: (@zindex-navbar-fixed + 3);\n    }\n  }\n  .tertiary-nav-item-pf.is-hover & { // Show tertiary menu if hovering\n    .hover-tertiary-nav-pf & {\n      opacity: 1;\n      visibility: visible;\n      .collapsed.collapsed-tertiary-nav-pf & {\n        left: 0;\n      }\n    }\n  }\n  .ie9.layout-pf-fixed & {\n    box-sizing: content-box; // IE9 incorrectly sizes the width if using padding-box\n  }\n  .layout-pf-fixed-with-footer & {\n    bottom: @footer-pf-height;\n  }\n  .nav-item-pf-header {\n    color: @nav-pf-vertical-tertiary-color;\n    margin: @nav-pf-vertical-tertiary-header-margin;\n  }\n  h5 {\n    color: @nav-pf-vertical-tertiary-color;\n    margin: @nav-pf-vertical-tertiary-list-header-margin;\n  }\n  .list-group-item {\n    border: none;\n    padding: @nav-pf-vertical-tertiary-item-padding;\n    > a {\n      background-color: transparent;\n      color: @nav-pf-vertical-tertiary-item-color;\n      font-size: @font-size-base;\n      font-weight: inherit;\n      height: inherit;\n      margin: @nav-pf-vertical-tertiary-link-margin;\n      padding: @nav-pf-vertical-tertiary-link-padding;\n    }\n    &.active > a:before {\n      display: none;\n    }\n    &.active,\n    &:hover {\n      > a {\n        background-color: @nav-pf-vertical-tertiary-active-bg-color;\n        color: @nav-pf-vertical-tertiary-active-color;\n      }\n    }\n    .badge-container-pf {\n      top: 5px;\n      .badge {\n        background: @nav-pf-vertical-tertiary-badge-bg-color;\n        color: @nav-pf-vertical-tertiary-badge-color;\n      }\n    }\n    .list-group-item-value {\n      padding-left: 5px;\n    }\n  }\n}\n.collapsed {\n  .nav-pf-secondary-nav { // Adjust left placement\n    left: @nav-pf-vertical-collapsed-width;\n    .list-group-item {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n        > .list-group-item-value { // Continue to show labels for secondary menu items\n          display: inline-block;\n        }\n        > .badge-container-pf {\n          display: inline-block;\n        }\n      }\n    }\n  }\n  .nav-pf-tertiary-nav { // Adjust left placement\n    left: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n    .list-group-item {\n      > a {\n        width: ~\"calc(@{nav-pf-vertical-width} - 20px)\";\n        > .list-group-item-value { // Continue to show labels for tertiary menu items\n          display: inline-block;\n        }\n        > .badge-container-pf {\n          display: inline-block;\n        }\n      }\n    }\n  }\n  &.collapsed-secondary-nav-pf,\n  &.collapsed-tertiary-nav-pf {\n    width: @nav-pf-vertical-width;\n    .secondary-nav-item-pf {\n      &:hover {\n        > a {\n          z-index: @zindex-navbar-fixed;\n        }\n      }\n    }\n    .nav-pf-secondary-nav {\n      left: 0;\n    }\n  }\n  &.collapsed-secondary-nav-pf {\n    .nav-pf-tertiary-nav {\n      left: @nav-pf-vertical-width;\n    }\n  }\n  &.collapsed-tertiary-nav-pf {\n    .nav-pf-tertiary-nav {\n      left: 0;\n    }\n  }\n  &.hover-secondary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-width})\";\n\n    &.collapsed-secondary-nav-pf,\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  &.hover-tertiary-nav-pf {\n    width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n    &.collapsed-secondary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n    }\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-width;\n    }\n  }\n  &.nav-pf-vertical-with-badges {\n    .nav-pf-secondary-nav {\n      .list-group-item {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n        }\n      }\n    }\n    .nav-pf-tertiary-nav {\n      left: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n      .list-group-item {\n        > a {\n          width: ~\"calc(@{nav-pf-vertical-badges-width} - 20px)\";\n        }\n      }\n    }\n    &.collapsed-secondary-nav-pf,\n    &.collapsed-tertiary-nav-pf {\n      width: @nav-pf-vertical-badges-width;\n    }\n    &.collapsed-secondary-nav-pf {\n      .nav-pf-tertiary-nav {\n        left: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.hover-secondary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + @{nav-pf-vertical-badges-width})\";\n      &.collapsed-secondary-nav-pf,\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-badges-width;\n      }\n    }\n    &.hover-tertiary-nav-pf {\n      width: ~\"calc(@{nav-pf-vertical-collapsed-width} + (@{nav-pf-vertical-width} * 2))\";\n      &.collapsed-secondary-nav-pf {\n        width: ~\"calc(@{nav-pf-vertical-width} * 2)\";\n      }\n      &.collapsed-tertiary-nav-pf {\n        width: @nav-pf-vertical-width;\n      }\n    }\n  }\n}\n.secondary-collapse-toggle-pf {\n  display: none;\n  font-family: @icon-font-name-fa;\n  font-size: inherit;\n  opacity: 0;\n  pointer-events: none;\n  -webkit-font-smoothing: antialiased;\n  &:before {\n    content: @fa-var-arrow-circle-o-left;\n  }\n  &.collapsed {\n    &:before {\n      content: @fa-var-arrow-circle-o-right;\n    }\n  }\n}\n.tertiary-collapse-toggle-pf {\n  display: none;\n  font-family: @icon-font-name-fa;\n  font-size: inherit;\n  opacity: 0;\n  pointer-events: none;\n  -webkit-font-smoothing: antialiased;\n  &:before {\n    content: @fa-var-arrow-circle-o-left;\n  }\n  &.collapsed {\n    &:before {\n      content: @fa-var-arrow-circle-o-right;\n    }\n  }\n}\n.nav-pf-vertical-collapsible-menus {\n  .secondary-collapse-toggle-pf {\n    display: inline-block;\n  }\n  .secondary-nav-item-pf.active {\n    .secondary-collapse-toggle-pf {\n      opacity: 1;\n      pointer-events: all;\n    }\n  }\n  .tertiary-collapse-toggle-pf {\n    display: inline-block;\n  }\n  .tertiary-nav-item-pf.active {\n    .tertiary-collapse-toggle-pf {\n      opacity: 1;\n      pointer-events: all;\n    }\n  }\n}\n.show-mobile-nav {\n  .secondary-collapse-toggle-pf {\n    display: inline-block;\n    opacity: 1;\n    pointer-events: all;\n    &:before {\n      content: @fa-var-arrow-circle-o-left;\n    }\n  }\n  .tertiary-collapse-toggle-pf {\n    display: inline-block;\n    opacity: 1;\n    pointer-events: all;\n    &:before {\n      content: @fa-var-arrow-circle-o-left;\n    }\n  }\n}\n.force-hide-secondary-nav-pf { // Used to temporarily hide sub-menus on an unpin event\n  .nav-pf-secondary-nav {\n    display: none !important;\n  }\n  .nav-pf-tertiary-nav {\n    display: none !important;\n  }\n}\n.nav-pf-vertical.transitions {\n  transition: width @nav-pf-menu-transition-period;\n  .nav-pf-secondary-nav {\n    transition: visibility @nav-pf-menu-transition-period, opacity @nav-pf-menu-transition-period linear;\n  }\n  .nav-pf-tertiary-nav {\n    transition: visibility @nav-pf-menu-transition-period, opacity @nav-pf-menu-transition-period linear;\n  }\n}\n","//\n// Wizard\n// --------------------------------------------------\n.wizard-pf {\n  padding: 10px;\n  margin: 0 auto;\n  max-height: 900px;\n  width: auto;\n  .modal-content {\n    min-height:100%;\n  }\n}\n\n// Wizard header\n// Top section of the wizard w/ title and dismiss\n\n.wizard-pf-body {\n    background:@color-pf-white;\n    padding: 0;\n    position: static;\n}\n/* styles the sidebard containing the sub-steps */\n.wizard-pf-sidebar {\n    background: @color-pf-black-100;\n    border-right: 1px solid @color-pf-black-300;\n    display:none;\n  @media (min-width: @screen-sm-min) {\n    display:inherit;\n    flex:0 0 auto;\n    overflow-x: hidden;\n    overflow-y: auto;\n    .list-group {\n      border-top: 0;\n      margin-bottom: 0;\n    }\n      .list-group-item {\n        background-color: transparent;\n        border-color: @color-pf-black-200;\n        padding: 0;\n        > a {\n          color: @color-pf-black;\n          cursor: pointer;\n          display: block;\n          font-size: 14px;\n          font-weight: 700;\n          height: 50px;\n          outline: 0;\n          padding-top: 11px;\n          padding-left: 20px;\n          position: relative;\n          white-space: nowrap;\n          width: 14em;\n          &:hover {\n            text-decoration: none;\n            background-color: @color-pf-black-200;\n          }\n          &:focus {\n            //corrects odd behavior when hover and focus are combined.\n            text-decoration: none;\n            span {\n              text-decoration: underline;\n            }\n          }\n        }\n        &.active {\n          background-color: @color-pf-black-200;\n\n          //override default behavior\n          &:hover {\n            border-color: @color-pf-black-200;\n          }\n          > a {\n            color: @color-pf-blue-300;\n            cursor: default;\n          }\n          // line to left side showing active substep\n          > a:before {\n            content: \" \";\n            background: @color-pf-blue-300;\n            height: 100%;\n            left: 0;\n            position: absolute;\n            top: 0;\n            width: 3px;\n          }\n          // caret to right showing active substep\n          > a:after {\n            color: @color-pf-blue-300;\n            content: \"\\f105\"; // right caret\n            display: block;\n            font-family: FontAwesome;\n            font-size: 24px;\n            font-weight: 500;\n            line-height: 30px;\n            padding-top: 10px;\n            position: absolute;\n            right: 23px;\n            top: 0;\n          }\n        }\n      }\n    }\n}\n.wizard-pf-substep-number {\n  display:inline-block;\n  margin-right: 5px;\n  vertical-align: middle;\n  width: 25px;\n}\n.wizard-pf-substep-title {\n  display:inline-block;\n  margin-right: 5px;\n  text-align: left;\n  vertical-align: middle;\n}\n/* styles the steps indicator across the top of the wizard */\n.wizard-pf-steps {\n  border-bottom: solid 1px @color-pf-black-300;\n    @media (min-width: @screen-sm-min) {\n      text-align: center;\n    }\n}\n\n.wizard-pf-steps-indicator {\n  background: @color-pf-black-200;\n  border-top: 1px solid @color-pf-black-300;\n  display: inline-block;\n  display: flex;\n  font-size: ceil((@font-size-base * 1.3333));\n  list-style: none;\n  margin-bottom: 0;\n  padding: 15px 0;\n    @media (min-width: @screen-sm-min) {\n      background: @color-pf-white;\n      height: 120px;\n      padding: 38px 0 0;\n      justify-content: space-around;\n    }\n\n  li {\n    counter-increment: section;\n    float:left; /* float for IE9 since it doesn't support flex. If items wrap, they overlap */\n    flex-grow: 1;\n    flex-basis: 0;\n    line-height: 15px;\n    margin: 0;\n    padding: 0;\n    position: relative;\n    text-align: center;\n    &:not(.active) {\n      display: none;\n      @media (min-width: @screen-sm-min) {\n        display: block;\n      }\n    }\n    a {\n        align-items: center;\n        display: flex;\n        flex-wrap:wrap;\n        font-weight: 700;\n        @media (min-width: @screen-sm-min) {\n          font-weight: normal;\n          justify-content: center;\n        }\n          .wizard-pf-step-title {\n            margin-left: 10px;\n            @media(min-width: @screen-sm-min) {\n              margin-left: 0;\n            }\n\n            &-substep {\n              font-weight: normal;\n              margin-left: 10px;\n              text-transform: capitalize;\n              &:before {\n                content:\"\\00BB\";\n                font-size: 20px;\n                margin-right: 10px;\n              }\n              &:not(.active) {\n                display: none;\n              }\n            }\n          }\n    }\n    /* draw the line between the circles */\n    @media (min-width: @screen-sm-min) {\n      .wizard-pf-step-title-substep {\n        display: none;\n      }\n      &:before {\n        background-color: @color-pf-black-400;\n        content: \"\";\n        height: 2px;\n        left: 0;\n        position: absolute;\n        right: 0;\n        top: 40px; // needed for IE9/10 calculate 50% of just the li, others calc 50% of the entire thing including the a:before\n        //otherwise, use top: calc(50% - 1px);\n      }\n      /* don't draw the line between the circles on the ends */\n      &:first-child:before {\n        left: 50%;\n        right: 0;\n      }\n      &:last-child:before {\n        left: 0;\n        right: 50%;\n      }\n      &:only-of-type:before {\n        background-color: transparent;\n      }\n    }\n    a {\n      color: @color-pf-black;\n      cursor: pointer;\n      font-size: 16px;\n      margin-left:1em;\n      margin-right:1em;\n      text-decoration: none;\n      &:hover {\n        .wizard-pf-step-number {\n          background-color: @color-pf-black-400;\n          border-color: @color-pf-black-400;\n          color: @color-pf-white;\n        }\n      }\n    }\n}\n  /* draw the step number in the circle */\n\n  .wizard-pf-step-number {\n    background-color: @color-pf-white;\n    border-radius: 50%;\n    border: solid 2px @color-pf-black-400;\n    color: @color-pf-black-400;\n    font-size: @font-size-base;\n    font-weight: 700;\n    height: 25px;\n    line-height: 22px;\n      @media (min-width: @screen-sm-min) {\n        left: ~\"calc(50% - 13px)\";\n        position: absolute;\n        top: 27px;\n      }\n    width: 25px;\n  }\n  .active .wizard-pf-step-number {\n    background-color: @color-pf-blue-300;\n    border-color: @color-pf-blue-300;\n    cursor: default;\n    color: @color-pf-white;\n  }\n\n  .viewed-pf .wizard-pf-step-number {\n    color: @color-pf-black;\n    background-color: @color-pf-white;\n    border-color: @color-pf-blue-300;\n  }\n\n}\n\n/* styles the main content portion of the wizard */\n.wizard-pf-main {\n  height: 100%;\n  padding:1em;\n  vertical-align: top;\n  width:100%;\n  @media (min-width: @screen-sm-min) {\n    overflow: auto;\n    padding:3em;\n    flex:1 1 auto;\n  }\n  .blank-slate-pf {\n    background-color: transparent;\n    border: none;\n    left: 0;\n    right: 0;\n  }\n}\n\n.wizard-pf-contents textarea {\n  resize: vertical;\n}\n\n/* styles the content of a review page */\n.wizard-pf-review-steps {\n  list-style: none;\n  .list-group, .list-group-item {\n    border: none;\n    margin-bottom: 0;\n  }\n  > ul {\n    > li {\n      float: left;\n      line-height: 15px;\n      margin: 0;\n      padding-top: 0;\n      position: relative;\n      width: 100%;\n      > a {\n        color: #030303;\n        cursor: pointer;\n        font-size: 16px;\n        padding-left: 30px;\n        padding-right: 5px;\n        text-decoration: none;\n        transition: 250ms;\n        &:before {\n          content: \"\\f107\";\n          display: block;\n          font-family: FontAwesome;\n          font-size: 24px;\n          font-weight: 500;\n          left: 20px;\n          position: absolute;\n          top: 0;\n        }\n        &.collapsed {\n          &:before {\n            content: \"\\f105\";\n          }\n        }\n      }\n    }\n  }\n}\n\n.wizard-pf-review-substeps {\n  padding-left: 22px;\n  > ul {\n    > li {\n      float: left;\n      line-height: 15px;\n      margin: 0;\n      position: relative;\n      width: 100%;\n      a {\n        color: #030303;\n        cursor: pointer;\n        font-size: 16px;\n        padding-left: 30px;\n        padding-right: 5px;\n        text-decoration: none;\n        transition: 250ms;\n        &:before {\n          content: \"\\f107\";\n          display: block;\n          font-family: FontAwesome;\n          font-size: 24px;\n          font-weight: 500;\n          left: 20px;\n          position: absolute;\n          top: 10px;\n        }\n        &.collapsed {\n          &:before {\n            content: \"\\f105\";\n          }\n        }\n      }\n    }\n  }\n}\n\n.wizard-pf-review-content {\n  padding-top: 10px;\n  padding-left: 40px;\n  .wizard-pf-review-item {\n    padding: 5px 0;\n    &.sub-item {\n      margin-left: 10px;\n    }\n    .wizard-pf-review-item-label {\n      font-weight: 700;\n      padding-right: 10px;\n    }\n    .wizard-pf-review-item-field {\n      font-weight: 700;\n      margin: 5px 0;\n      padding-right: 10px;\n      &:first-of-type {\n        margin-top: 0;\n      }\n      &:last-of-type {\n        margin-bottom: 0;\n      }\n      &.sub-field {\n        margin-left: 10px;\n      }\n    }\n  }\n}\n\n.wizard-pf-success-icon {\n  color: @color-pf-green-400;\n  font-size: (@font-size-base * 5.6);\n  line-height: (@font-size-base * 5.6);\n}\n\n/* styles the footer */\n.wizard-pf-footer {\n  background:@color-pf-white;\n  border-top: 1px solid @color-pf-black-300;\n  margin-top: 0;\n  padding-bottom: 17px;\n  .btn-cancel {\n    margin-right:25px;\n  }\n}\n\n.wizard-pf-row {\n    @media (min-width: @screen-sm-min) {\n      display: flex;\n      width:100%;\n      height: 900px;\n      max-height: 65vh;\n    }\n}\n\n// Scale up the modal\n@media (min-width: @screen-md-min) {\n  // increasing space around modal for larger viewports\n  .wizard-pf {\n    padding: 30px 0;\n    width: 900px;\n  }\n  // increasing width of sidebar for larger viewports\n  .wizard-pf-sidebar .list-group-item > a {\n    width: 18em;\n  }\n}\n\n//\n//\n// This is for the new wizard that is more robust on mobile.\n// --------------------------------------------------\n\n.wizard-pf-steps-alt, .wizard-pf-steps-alt ul {\n  list-style: none;\n  margin: 0;\n  padding: 0;\n}\n\n.wizard-pf-steps-alt {\n  margin-left: 15px;\n  margin-top: 15px;\n  background-image: linear-gradient(to right, transparent 11px, @color-pf-black-300 11px, @color-pf-black-300 13px, transparent 13px);\n  @media (min-width: @screen-sm-min) {\n    display:none;\n  }\n  &-indicator {\n    position: relative;\n    // caret to top showing active substep\n    &:after {\n      color: @color-pf-black-700;\n      content: \"\\f107\"; // top caret\n      display: block;\n      font-family: FontAwesome;\n      font-size: 24px;\n      font-weight: 500;\n      position: absolute;\n      right: 17px;\n      top: 50%;\n      transform:translateY(-50%);\n      @media (min-width: @screen-sm-min) {\n        display:none;\n      }\n    }\n    &.active {\n      &:after {\n        content: \"\\f106\";\n      }\n    }\n  }//indicator\n}//.wizard-pf-steps-alt\n\n.wizard-pf-step-alt {\n  margin-bottom: 10px;\n  a {\n    display:flex;\n    flex:1;\n    &:hover {\n      text-decoration: none;\n      .wizard-pf-step-alt-title {\n        color: @color-pf-blue-300;\n      }\n    }\n  }\n  ul {\n    margin-left: 11px;\n  }\n  .wizard-pf-step-alt-title {\n    margin-left: 5px;\n    align-self:center;\n  }\n  .wizard-pf-step-alt-number {\n    flex:0 0 auto;\n  }\n\n  &.active {\n    .wizard-pf-step-alt-number {\n      background-color: @color-pf-blue-300;\n      border-color: @color-pf-blue-300;\n      cursor: default;\n      color: @color-pf-white;\n    }\n    .wizard-pf-step-alt-title {\n      color: @color-pf-blue-300;\n    }\n    .wizard-pf-step-alt-substep:first-of-type {\n      margin-top: 2px; // gives proper spacing below number in circle active state\n    }\n\n\n  }\n  &.viewed {\n    .wizard-pf-step-alt-number {\n      color: @color-pf-black;\n      background-color: @color-pf-white;\n      border-color: @color-pf-blue-300;\n    }\n  }\n\n}//.wizard-pf-step-alt\n\n.wizard-pf-step-alt-number {\n  background-color: @color-pf-white;\n  border-radius: 50%;\n  border: solid 2px @color-pf-black-400;\n  color: @color-pf-black-400;\n  font-size: @font-size-base;\n  font-weight: 700;\n  height: 24px;\n  width: 24px;\n  display: inline-block;\n  text-align: center;\n}\n\n\n.wizard-pf-step-alt-title {\n  color: @color-pf-black;\n  font-weight: 700;\n  text-transform: capitalize;\n  display:inline-block;\n\n}//.wizard-pf-steps-alt-title\n\n.wizard-pf-step-alt-substep {\n    display:flex;\n  a {\n    padding:5px 0 5px 18px;\n    color: @color-pf-black-800;\n  }\n\n&:not(.disabled) {\n  &.active, &:hover {\n    background-color: @color-pf-black-200;\n    background-image: linear-gradient(to right, @color-pf-blue-300 2px, transparent 2px);\n    a {\n      color:@color-pf-blue-300;\n    }\n  }\n}\n  &.active {\n    a {\n      font-weight:700;\n    }\n  }\n  &.disabled {\n    cursor: not-allowed;\n    a {\n      pointer-events: none;\n    }\n  }\n}\n","//\n// Login\n// --------------------------------------------------\n\n.login-pf {\n  background-color:  @login-bg-color;\n  @media (min-width: @screen-sm-min) {\n    background-image: url(\"@{img-path}/@{img-bg-login-2}\");\n    background-position: 100% 100%;\n    background-repeat: no-repeat;\n    background-size: 30%;\n  }\n  @media (min-width: @screen-md-min) {\n    background-size: auto;\n  }\n  #badge {\n    margin-bottom: 50px;\n  }\n  body {\n    background: transparent;\n    @media (min-width: @screen-sm-min) {\n      background-image: url(\"@{img-path}/@{img-bg-login}\");\n      background-repeat: no-repeat;\n      background-size: 30%;\n      height: 100%;\n    }\n    @media (min-width: @screen-md-min) {\n      background-size: auto;\n    }\n  }\n  #brand {\n    top: -30px;\n    @media (min-width: @screen-sm-min) {\n      top: -40px;\n      + .alert {\n        margin-top: -20px;\n      }\n    }\n  }\n  .container {\n    padding-top: 0;\n    @media (min-width: @screen-md-min) {\n      bottom: 20%;\n      padding-right: 120px;\n    }\n  }\n}\n"]}
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue-additions.min.css b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue-additions.min.css
new file mode 100644
index 0000000..3987b5e
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue-additions.min.css
@@ -0,0 +1,6 @@
+.slider{display:inline-block;vertical-align:middle;position:relative}.slider.slider-horizontal{width:100%;height:16px}.slider.slider-horizontal .slider-track{height:8px;width:100%;margin-top:-4px;top:50%;left:0}.slider.slider-horizontal .slider-selection,.slider.slider-horizontal .slider-track-high,.slider.slider-horizontal .slider-track-low{height:100%;top:0;bottom:0}.slider.slider-horizontal .slider-handle,.slider.slider-horizontal .slider-tick{margin-left:-8px}.slider.slider-horizontal .slider-handle.triangle,.slider.slider-horizontal .slider-tick.triangle{position:relative;top:50%;transform:translateY(-50%);border-width:0 8px 8px 8px;width:0;height:0;border-bottom-color:#ededed;margin-top:0}.slider.slider-horizontal .slider-tick-container{white-space:nowrap;position:absolute;top:0;left:0;width:100%}.slider.slider-horizontal .slider-tick-label-container{white-space:nowrap;margin-top:16px}.slider.slider-horizontal .slider-tick-label-container .slider-tick-label{padding-top:16px * .2;display:inline-block;text-align:center}.slider.slider-horizontal.slider-rtl .slider-track{left:initial;right:0}.slider.slider-horizontal.slider-rtl .slider-handle,.slider.slider-horizontal.slider-rtl .slider-tick{margin-left:initial;margin-right:-8px}.slider.slider-horizontal.slider-rtl .slider-tick-container{left:initial;right:0}.slider.slider-vertical{height:210px;width:16px}.slider.slider-vertical .slider-track{width:8px;height:100%;left:25%;top:0}.slider.slider-vertical .slider-selection{width:100%;left:0;top:0;bottom:0}.slider.slider-vertical .slider-track-high,.slider.slider-vertical .slider-track-low{width:100%;left:0;right:0}.slider.slider-vertical .slider-handle,.slider.slider-vertical .slider-tick{margin-top:-8px}.slider.slider-vertical .slider-handle.triangle,.slider.slider-vertical .slider-tick.triangle{border-width:8px 0 8px 8px;width:1px;height:1px;border-left-color:#ededed;border-right-color:#ededed;margin-left:0;margin-right:0}.slider.slider-vertical .slider-tick-label-container{white-space:nowrap}.slider.slider-vertical .slider-tick-label-container .slider-tick-label{padding-left:16px * .2}.slider.slider-vertical.slider-rtl .slider-track{left:initial;right:25%}.slider.slider-vertical.slider-rtl .slider-selection{left:initial;right:0}.slider.slider-vertical.slider-rtl .slider-handle.triangle,.slider.slider-vertical.slider-rtl .slider-tick.triangle{border-width:8px 8px 8px 0}.slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tick-label{padding-left:initial;padding-right:16px * .2}.slider.slider-disabled .slider-handle{background-image:-webkit-linear-gradient(top,#dfdfdf 0,#bebebe 100%);background-image:-o-linear-gradient(top,#dfdfdf 0,#bebebe 100%);background-image:linear-gradient(to bottom,#dfdfdf 0,#bebebe 100%);background-repeat:repeat-x}.slider.slider-disabled .slider-track{background-image:-webkit-linear-gradient(top,#e5e5e5 0,#e9e9e9 100%);background-image:-o-linear-gradient(top,#e5e5e5 0,#e9e9e9 100%);background-image:linear-gradient(to bottom,#e5e5e5 0,#e9e9e9 100%);background-repeat:repeat-x;cursor:not-allowed}.slider input{display:none}.slider .tooltip.top{margin-top:-36px}.slider .tooltip-inner{white-space:nowrap;max-width:none}.slider .hide{display:none}.slider-track{position:absolute;cursor:pointer;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#f9f9f9 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#f9f9f9 100%);background-image:linear-gradient(to bottom,#f5f5f5 0,#f9f9f9 100%);background-repeat:repeat-x;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);border-radius:1px}.slider-selection{position:absolute;background-image:-webkit-linear-gradient(top,#f9f9f9 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#f9f9f9 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#f9f9f9 0,#f5f5f5 100%);background-repeat:repeat-x;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-radius:1px}.slider-selection.tick-slider-selection{background-image:-webkit-linear-gradient(top,#0088ce 0,#39a5dc 100%);background-image:-o-linear-gradient(top,#0088ce 0,#39a5dc 100%);background-image:linear-gradient(to bottom,#0088ce 0,#39a5dc 100%);background-repeat:repeat-x}.slider-track-high,.slider-track-low{position:absolute;background:0 0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;border-radius:1px}.slider-handle{position:absolute;top:0;width:16px;height:16px;background-color:#39a5dc;background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;filter:none;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);border:0 solid transparent}.slider-handle.round{border-radius:50%}.slider-handle.triangle{background:transparent none}.slider-handle.custom{background:transparent none}.slider-handle.custom::before{line-height:16px;font-size:20px;content:'\2605';color:#726204}.slider-tick{position:absolute;width:16px;height:16px;background-image:-webkit-linear-gradient(top,#f9f9f9 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#f9f9f9 0,#f5f5f5 100%);background-image:linear-gradient(to bottom,#f9f9f9 0,#f5f5f5 100%);background-repeat:repeat-x;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;filter:none;opacity:.8;border:0 solid transparent}.slider-tick.round{border-radius:50%}.slider-tick.triangle{background:transparent none}.slider-tick.custom{background:transparent none}.slider-tick.custom::before{line-height:16px;font-size:20px;content:'\2605';color:#726204}.slider-tick.in-selection{background-image:-webkit-linear-gradient(top,#0088ce 0,#39a5dc 100%);background-image:-o-linear-gradient(top,#0088ce 0,#39a5dc 100%);background-image:linear-gradient(to bottom,#0088ce 0,#39a5dc 100%);background-repeat:repeat-x;opacity:1}@media (min-width:768px){.form-inline .combobox-container,.form-search .combobox-container{display:inline-block;margin-bottom:0;vertical-align:top}.form-inline .combobox-container .input-group-addon,.form-search .combobox-container .input-group-addon{width:auto}}.combobox-selected .caret{display:none}.combobox-container:not(.combobox-selected) .glyphicon-remove{display:none}.typeahead-long{max-height:300px;overflow-y:auto}.control-group.error .combobox-container .add-on{color:#b94a48;border-color:#b94a48}.control-group.error .combobox-container .caret{border-top-color:#b94a48}.control-group.warning .combobox-container .add-on{color:#c09853;border-color:#c09853}.control-group.warning .combobox-container .caret{border-top-color:#c09853}.control-group.success .combobox-container .add-on{color:#468847;border-color:#468847}.control-group.success .combobox-container .caret{border-top-color:#468847}.datepicker{border-radius:1px;direction:ltr}.datepicker-inline{width:220px}.datepicker-rtl{direction:rtl}.datepicker-rtl.dropdown-menu{left:auto}.datepicker-rtl table tr td span{float:right}.datepicker-dropdown{top:0;left:0;padding:4px}.datepicker-dropdown:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #bbb;border-top:0;border-bottom-color:rgba(0,0,0,.2);position:absolute}.datepicker-dropdown:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;border-top:0;position:absolute}.datepicker-dropdown.datepicker-orient-left:before{left:6px}.datepicker-dropdown.datepicker-orient-left:after{left:7px}.datepicker-dropdown.datepicker-orient-right:before{right:6px}.datepicker-dropdown.datepicker-orient-right:after{right:7px}.datepicker-dropdown.datepicker-orient-bottom:before{top:-7px}.datepicker-dropdown.datepicker-orient-bottom:after{top:-6px}.datepicker-dropdown.datepicker-orient-top:before{bottom:-7px;border-bottom:0;border-top:7px solid #bbb}.datepicker-dropdown.datepicker-orient-top:after{bottom:-6px;border-bottom:0;border-top:6px solid #fff}.datepicker table{margin:0;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.datepicker table tr td,.datepicker table tr th{text-align:center;width:30px;height:30px;border-radius:4px;border:none}.table-striped .datepicker table tr td,.table-striped .datepicker table tr th{background-color:transparent}.datepicker table tr td.new,.datepicker table tr td.old{color:#9c9c9c}.datepicker table tr td.day:hover,.datepicker table tr td.focused{background:#f1f1f1;cursor:pointer}.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover{background:0 0;color:#9c9c9c;cursor:default}.datepicker table tr td.highlighted{color:#000;background-color:#d9edf7;border-color:#85c5e5;border-radius:0}.datepicker table tr td.highlighted.focus,.datepicker table tr td.highlighted:focus{color:#000;background-color:#afd9ee;border-color:#298fc2}.datepicker table tr td.highlighted:hover{color:#000;background-color:#afd9ee;border-color:#52addb}.datepicker table tr td.highlighted.active,.datepicker table tr td.highlighted:active,.open>.dropdown-toggle.datepicker table tr td.highlighted{color:#000;background-color:#afd9ee;border-color:#52addb}.datepicker table tr td.highlighted.active.focus,.datepicker table tr td.highlighted.active:focus,.datepicker table tr td.highlighted.active:hover,.datepicker table tr td.highlighted:active.focus,.datepicker table tr td.highlighted:active:focus,.datepicker table tr td.highlighted:active:hover,.open>.dropdown-toggle.datepicker table tr td.highlighted.focus,.open>.dropdown-toggle.datepicker table tr td.highlighted:focus,.open>.dropdown-toggle.datepicker table tr td.highlighted:hover{color:#000;background-color:#91cbe8;border-color:#298fc2}.datepicker table tr td.highlighted.active,.datepicker table tr td.highlighted:active,.open>.dropdown-toggle.datepicker table tr td.highlighted{background-image:none}.datepicker table tr td.highlighted.disabled.focus,.datepicker table tr td.highlighted.disabled:focus,.datepicker table tr td.highlighted.disabled:hover,.datepicker table tr td.highlighted[disabled].focus,.datepicker table tr td.highlighted[disabled]:focus,.datepicker table tr td.highlighted[disabled]:hover,fieldset[disabled] .datepicker table tr td.highlighted.focus,fieldset[disabled] .datepicker table tr td.highlighted:focus,fieldset[disabled] .datepicker table tr td.highlighted:hover{background-color:#d9edf7;border-color:#85c5e5}.datepicker table tr td.highlighted .badge{color:#d9edf7;background-color:#000}.datepicker table tr td.highlighted.focused{background:#afd9ee}.datepicker table tr td.highlighted.disabled,.datepicker table tr td.highlighted.disabled:active{background:#d9edf7;color:#9c9c9c}.datepicker table tr td.today{color:#000;background-color:#ffdb99;border-color:#ffb733}.datepicker table tr td.today.focus,.datepicker table tr td.today:focus{color:#000;background-color:#ffc966;border-color:#b37400}.datepicker table tr td.today:hover{color:#000;background-color:#ffc966;border-color:#f59e00}.datepicker table tr td.today.active,.datepicker table tr td.today:active,.open>.dropdown-toggle.datepicker table tr td.today{color:#000;background-color:#ffc966;border-color:#f59e00}.datepicker table tr td.today.active.focus,.datepicker table tr td.today.active:focus,.datepicker table tr td.today.active:hover,.datepicker table tr td.today:active.focus,.datepicker table tr td.today:active:focus,.datepicker table tr td.today:active:hover,.open>.dropdown-toggle.datepicker table tr td.today.focus,.open>.dropdown-toggle.datepicker table tr td.today:focus,.open>.dropdown-toggle.datepicker table tr td.today:hover{color:#000;background-color:#ffbc42;border-color:#b37400}.datepicker table tr td.today.active,.datepicker table tr td.today:active,.open>.dropdown-toggle.datepicker table tr td.today{background-image:none}.datepicker table tr td.today.disabled.focus,.datepicker table tr td.today.disabled:focus,.datepicker table tr td.today.disabled:hover,.datepicker table tr td.today[disabled].focus,.datepicker table tr td.today[disabled]:focus,.datepicker table tr td.today[disabled]:hover,fieldset[disabled] .datepicker table tr td.today.focus,fieldset[disabled] .datepicker table tr td.today:focus,fieldset[disabled] .datepicker table tr td.today:hover{background-color:#ffdb99;border-color:#ffb733}.datepicker table tr td.today .badge{color:#ffdb99;background-color:#000}.datepicker table tr td.today.focused{background:#ffc966}.datepicker table tr td.today.disabled,.datepicker table tr td.today.disabled:active{background:#ffdb99;color:#9c9c9c}.datepicker table tr td.range{color:#000;background-color:#f1f1f1;border-color:#bebebe;border-radius:0}.datepicker table tr td.range.focus,.datepicker table tr td.range:focus{color:#000;background-color:#d8d8d8;border-color:#7f7f7f}.datepicker table tr td.range:hover{color:#000;background-color:#d8d8d8;border-color:#a0a0a0}.datepicker table tr td.range.active,.datepicker table tr td.range:active,.open>.dropdown-toggle.datepicker table tr td.range{color:#000;background-color:#d8d8d8;border-color:#a0a0a0}.datepicker table tr td.range.active.focus,.datepicker table tr td.range.active:focus,.datepicker table tr td.range.active:hover,.datepicker table tr td.range:active.focus,.datepicker table tr td.range:active:focus,.datepicker table tr td.range:active:hover,.open>.dropdown-toggle.datepicker table tr td.range.focus,.open>.dropdown-toggle.datepicker table tr td.range:focus,.open>.dropdown-toggle.datepicker table tr td.range:hover{color:#000;background-color:#c6c6c6;border-color:#7f7f7f}.datepicker table tr td.range.active,.datepicker table tr td.range:active,.open>.dropdown-toggle.datepicker table tr td.range{background-image:none}.datepicker table tr td.range.disabled.focus,.datepicker table tr td.range.disabled:focus,.datepicker table tr td.range.disabled:hover,.datepicker table tr td.range[disabled].focus,.datepicker table tr td.range[disabled]:focus,.datepicker table tr td.range[disabled]:hover,fieldset[disabled] .datepicker table tr td.range.focus,fieldset[disabled] .datepicker table tr td.range:focus,fieldset[disabled] .datepicker table tr td.range:hover{background-color:#f1f1f1;border-color:#bebebe}.datepicker table tr td.range .badge{color:#f1f1f1;background-color:#000}.datepicker table tr td.range.focused{background:#d8d8d8}.datepicker table tr td.range.disabled,.datepicker table tr td.range.disabled:active{background:#f1f1f1;color:#9c9c9c}.datepicker table tr td.range.highlighted{color:#000;background-color:#e5eff4;border-color:#9dc3d6}.datepicker table tr td.range.highlighted.focus,.datepicker table tr td.range.highlighted:focus{color:#000;background-color:#c1d9e5;border-color:#488bac}.datepicker table tr td.range.highlighted:hover{color:#000;background-color:#c1d9e5;border-color:#72a9c4}.datepicker table tr td.range.highlighted.active,.datepicker table tr td.range.highlighted:active,.open>.dropdown-toggle.datepicker table tr td.range.highlighted{color:#000;background-color:#c1d9e5;border-color:#72a9c4}.datepicker table tr td.range.highlighted.active.focus,.datepicker table tr td.range.highlighted.active:focus,.datepicker table tr td.range.highlighted.active:hover,.datepicker table tr td.range.highlighted:active.focus,.datepicker table tr td.range.highlighted:active:focus,.datepicker table tr td.range.highlighted:active:hover,.open>.dropdown-toggle.datepicker table tr td.range.highlighted.focus,.open>.dropdown-toggle.datepicker table tr td.range.highlighted:focus,.open>.dropdown-toggle.datepicker table tr td.range.highlighted:hover{color:#000;background-color:#a8cadb;border-color:#488bac}.datepicker table tr td.range.highlighted.active,.datepicker table tr td.range.highlighted:active,.open>.dropdown-toggle.datepicker table tr td.range.highlighted{background-image:none}.datepicker table tr td.range.highlighted.disabled.focus,.datepicker table tr td.range.highlighted.disabled:focus,.datepicker table tr td.range.highlighted.disabled:hover,.datepicker table tr td.range.highlighted[disabled].focus,.datepicker table tr td.range.highlighted[disabled]:focus,.datepicker table tr td.range.highlighted[disabled]:hover,fieldset[disabled] .datepicker table tr td.range.highlighted.focus,fieldset[disabled] .datepicker table tr td.range.highlighted:focus,fieldset[disabled] .datepicker table tr td.range.highlighted:hover{background-color:#e5eff4;border-color:#9dc3d6}.datepicker table tr td.range.highlighted .badge{color:#e5eff4;background-color:#000}.datepicker table tr td.range.highlighted.focused{background:#c1d9e5}.datepicker table tr td.range.highlighted.disabled,.datepicker table tr td.range.highlighted.disabled:active{background:#e5eff4;color:#9c9c9c}.datepicker table tr td.range.today{color:#000;background-color:#f8cb79;border-color:#f3a618}.datepicker table tr td.range.today.focus,.datepicker table tr td.range.today:focus{color:#000;background-color:#f6b848;border-color:#855807}.datepicker table tr td.range.today:hover{color:#000;background-color:#f6b848;border-color:#c4820a}.datepicker table tr td.range.today.active,.datepicker table tr td.range.today:active,.open>.dropdown-toggle.datepicker table tr td.range.today{color:#000;background-color:#f6b848;border-color:#c4820a}.datepicker table tr td.range.today.active.focus,.datepicker table tr td.range.today.active:focus,.datepicker table tr td.range.today.active:hover,.datepicker table tr td.range.today:active.focus,.datepicker table tr td.range.today:active:focus,.datepicker table tr td.range.today:active:hover,.open>.dropdown-toggle.datepicker table tr td.range.today.focus,.open>.dropdown-toggle.datepicker table tr td.range.today:focus,.open>.dropdown-toggle.datepicker table tr td.range.today:hover{color:#000;background-color:#f4ab26;border-color:#855807}.datepicker table tr td.range.today.active,.datepicker table tr td.range.today:active,.open>.dropdown-toggle.datepicker table tr td.range.today{background-image:none}.datepicker table tr td.range.today.disabled.focus,.datepicker table tr td.range.today.disabled:focus,.datepicker table tr td.range.today.disabled:hover,.datepicker table tr td.range.today[disabled].focus,.datepicker table tr td.range.today[disabled]:focus,.datepicker table tr td.range.today[disabled]:hover,fieldset[disabled] .datepicker table tr td.range.today.focus,fieldset[disabled] .datepicker table tr td.range.today:focus,fieldset[disabled] .datepicker table tr td.range.today:hover{background-color:#f8cb79;border-color:#f3a618}.datepicker table tr td.range.today .badge{color:#f8cb79;background-color:#000}.datepicker table tr td.range.today.disabled,.datepicker table tr td.range.today.disabled:active{background:#f8cb79;color:#9c9c9c}.datepicker table tr td.selected,.datepicker table tr td.selected.highlighted{color:#fff;background-color:#9c9c9c;border-color:#555;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td.selected.focus,.datepicker table tr td.selected.highlighted.focus,.datepicker table tr td.selected.highlighted:focus,.datepicker table tr td.selected:focus{color:#fff;background-color:#838383;border-color:#161616}.datepicker table tr td.selected.highlighted:hover,.datepicker table tr td.selected:hover{color:#fff;background-color:#838383;border-color:#373737}.datepicker table tr td.selected.active,.datepicker table tr td.selected.highlighted.active,.datepicker table tr td.selected.highlighted:active,.datepicker table tr td.selected:active,.open>.dropdown-toggle.datepicker table tr td.selected,.open>.dropdown-toggle.datepicker table tr td.selected.highlighted{color:#fff;background-color:#838383;border-color:#373737}.datepicker table tr td.selected.active.focus,.datepicker table tr td.selected.active:focus,.datepicker table tr td.selected.active:hover,.datepicker table tr td.selected.highlighted.active.focus,.datepicker table tr td.selected.highlighted.active:focus,.datepicker table tr td.selected.highlighted.active:hover,.datepicker table tr td.selected.highlighted:active.focus,.datepicker table tr td.selected.highlighted:active:focus,.datepicker table tr td.selected.highlighted:active:hover,.datepicker table tr td.selected:active.focus,.datepicker table tr td.selected:active:focus,.datepicker table tr td.selected:active:hover,.open>.dropdown-toggle.datepicker table tr td.selected.focus,.open>.dropdown-toggle.datepicker table tr td.selected.highlighted.focus,.open>.dropdown-toggle.datepicker table tr td.selected.highlighted:focus,.open>.dropdown-toggle.datepicker table tr td.selected.highlighted:hover,.open>.dropdown-toggle.datepicker table tr td.selected:focus,.open>.dropdown-toggle.datepicker table tr td.selected:hover{color:#fff;background-color:#717171;border-color:#161616}.datepicker table tr td.selected.active,.datepicker table tr td.selected.highlighted.active,.datepicker table tr td.selected.highlighted:active,.datepicker table tr td.selected:active,.open>.dropdown-toggle.datepicker table tr td.selected,.open>.dropdown-toggle.datepicker table tr td.selected.highlighted{background-image:none}.datepicker table tr td.selected.disabled.focus,.datepicker table tr td.selected.disabled:focus,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected.highlighted.disabled.focus,.datepicker table tr td.selected.highlighted.disabled:focus,.datepicker table tr td.selected.highlighted.disabled:hover,.datepicker table tr td.selected.highlighted[disabled].focus,.datepicker table tr td.selected.highlighted[disabled]:focus,.datepicker table tr td.selected.highlighted[disabled]:hover,.datepicker table tr td.selected[disabled].focus,.datepicker table tr td.selected[disabled]:focus,.datepicker table tr td.selected[disabled]:hover,fieldset[disabled] .datepicker table tr td.selected.focus,fieldset[disabled] .datepicker table tr td.selected.highlighted.focus,fieldset[disabled] .datepicker table tr td.selected.highlighted:focus,fieldset[disabled] .datepicker table tr td.selected.highlighted:hover,fieldset[disabled] .datepicker table tr td.selected:focus,fieldset[disabled] .datepicker table tr td.selected:hover{background-color:#9c9c9c;border-color:#555}.datepicker table tr td.selected .badge,.datepicker table tr td.selected.highlighted .badge{color:#9c9c9c;background-color:#fff}.datepicker table tr td.active,.datepicker table tr td.active.highlighted{color:#fff;background-color:#0088ce;border-color:#00659c;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td.active.focus,.datepicker table tr td.active.highlighted.focus,.datepicker table tr td.active.highlighted:focus,.datepicker table tr td.active:focus{color:#fff;background-color:#00669b;border-color:#00121d}.datepicker table tr td.active.highlighted:hover,.datepicker table tr td.active:hover{color:#fff;background-color:#00669b;border-color:#003d5f}.datepicker table tr td.active.active,.datepicker table tr td.active.highlighted.active,.datepicker table tr td.active.highlighted:active,.datepicker table tr td.active:active,.open>.dropdown-toggle.datepicker table tr td.active,.open>.dropdown-toggle.datepicker table tr td.active.highlighted{color:#fff;background-color:#00669b;border-color:#003d5f}.datepicker table tr td.active.active.focus,.datepicker table tr td.active.active:focus,.datepicker table tr td.active.active:hover,.datepicker table tr td.active.highlighted.active.focus,.datepicker table tr td.active.highlighted.active:focus,.datepicker table tr td.active.highlighted.active:hover,.datepicker table tr td.active.highlighted:active.focus,.datepicker table tr td.active.highlighted:active:focus,.datepicker table tr td.active.highlighted:active:hover,.datepicker table tr td.active:active.focus,.datepicker table tr td.active:active:focus,.datepicker table tr td.active:active:hover,.open>.dropdown-toggle.datepicker table tr td.active.focus,.open>.dropdown-toggle.datepicker table tr td.active.highlighted.focus,.open>.dropdown-toggle.datepicker table tr td.active.highlighted:focus,.open>.dropdown-toggle.datepicker table tr td.active.highlighted:hover,.open>.dropdown-toggle.datepicker table tr td.active:focus,.open>.dropdown-toggle.datepicker table tr td.active:hover{color:#fff;background-color:#004f77;border-color:#00121d}.datepicker table tr td.active.active,.datepicker table tr td.active.highlighted.active,.datepicker table tr td.active.highlighted:active,.datepicker table tr td.active:active,.open>.dropdown-toggle.datepicker table tr td.active,.open>.dropdown-toggle.datepicker table tr td.active.highlighted{background-image:none}.datepicker table tr td.active.disabled.focus,.datepicker table tr td.active.disabled:focus,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active.highlighted.disabled.focus,.datepicker table tr td.active.highlighted.disabled:focus,.datepicker table tr td.active.highlighted.disabled:hover,.datepicker table tr td.active.highlighted[disabled].focus,.datepicker table tr td.active.highlighted[disabled]:focus,.datepicker table tr td.active.highlighted[disabled]:hover,.datepicker table tr td.active[disabled].focus,.datepicker table tr td.active[disabled]:focus,.datepicker table tr td.active[disabled]:hover,fieldset[disabled] .datepicker table tr td.active.focus,fieldset[disabled] .datepicker table tr td.active.highlighted.focus,fieldset[disabled] .datepicker table tr td.active.highlighted:focus,fieldset[disabled] .datepicker table tr td.active.highlighted:hover,fieldset[disabled] .datepicker table tr td.active:focus,fieldset[disabled] .datepicker table tr td.active:hover{background-color:#0088ce;border-color:#00659c}.datepicker table tr td.active .badge,.datepicker table tr td.active.highlighted .badge{color:#0088ce;background-color:#fff}.datepicker table tr td span{display:block;width:23%;height:54px;line-height:54px;float:left;margin:1%;cursor:pointer;border-radius:4px}.datepicker table tr td span.focused,.datepicker table tr td span:hover{background:#f1f1f1}.datepicker table tr td span.disabled,.datepicker table tr td span.disabled:hover{background:0 0;color:#9c9c9c;cursor:default}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover{color:#fff;background-color:#0088ce;border-color:#00659c;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.datepicker table tr td span.active.disabled.focus,.datepicker table tr td span.active.disabled:focus,.datepicker table tr td span.active.disabled:hover.focus,.datepicker table tr td span.active.disabled:hover:focus,.datepicker table tr td span.active.focus,.datepicker table tr td span.active:focus,.datepicker table tr td span.active:hover.focus,.datepicker table tr td span.active:hover:focus{color:#fff;background-color:#00669b;border-color:#00121d}.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover:hover,.datepicker table tr td span.active:hover,.datepicker table tr td span.active:hover:hover{color:#fff;background-color:#00669b;border-color:#003d5f}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover:active,.open>.dropdown-toggle.datepicker table tr td span.active,.open>.dropdown-toggle.datepicker table tr td span.active.disabled,.open>.dropdown-toggle.datepicker table tr td span.active.disabled:hover,.open>.dropdown-toggle.datepicker table tr td span.active:hover{color:#fff;background-color:#00669b;border-color:#003d5f}.datepicker table tr td span.active.active.focus,.datepicker table tr td span.active.active:focus,.datepicker table tr td span.active.active:hover,.datepicker table tr td span.active.disabled.active.focus,.datepicker table tr td span.active.disabled.active:focus,.datepicker table tr td span.active.disabled.active:hover,.datepicker table tr td span.active.disabled:active.focus,.datepicker table tr td span.active.disabled:active:focus,.datepicker table tr td span.active.disabled:active:hover,.datepicker table tr td span.active.disabled:hover.active.focus,.datepicker table tr td span.active.disabled:hover.active:focus,.datepicker table tr td span.active.disabled:hover.active:hover,.datepicker table tr td span.active.disabled:hover:active.focus,.datepicker table tr td span.active.disabled:hover:active:focus,.datepicker table tr td span.active.disabled:hover:active:hover,.datepicker table tr td span.active:active.focus,.datepicker table tr td span.active:active:focus,.datepicker table tr td span.active:active:hover,.datepicker table tr td span.active:hover.active.focus,.datepicker table tr td span.active:hover.active:focus,.datepicker table tr td span.active:hover.active:hover,.datepicker table tr td span.active:hover:active.focus,.datepicker table tr td span.active:hover:active:focus,.datepicker table tr td span.active:hover:active:hover,.open>.dropdown-toggle.datepicker table tr td span.active.disabled.focus,.open>.dropdown-toggle.datepicker table tr td span.active.disabled:focus,.open>.dropdown-toggle.datepicker table tr td span.active.disabled:hover,.open>.dropdown-toggle.datepicker table tr td span.active.disabled:hover.focus,.open>.dropdown-toggle.datepicker table tr td span.active.disabled:hover:focus,.open>.dropdown-toggle.datepicker table tr td span.active.disabled:hover:hover,.open>.dropdown-toggle.datepicker table tr td span.active.focus,.open>.dropdown-toggle.datepicker table tr td span.active:focus,.open>.dropdown-toggle.datepicker table tr td span.active:hover,.open>.dropdown-toggle.datepicker table tr td span.active:hover.focus,.open>.dropdown-toggle.datepicker table tr td span.active:hover:focus,.open>.dropdown-toggle.datepicker table tr td span.active:hover:hover{color:#fff;background-color:#004f77;border-color:#00121d}.datepicker table tr td span.active.active,.datepicker table tr td span.active.disabled.active,.datepicker table tr td span.active.disabled:active,.datepicker table tr td span.active.disabled:hover.active,.datepicker table tr td span.active.disabled:hover:active,.datepicker table tr td span.active:active,.datepicker table tr td span.active:hover.active,.datepicker table tr td span.active:hover:active,.open>.dropdown-toggle.datepicker table tr td span.active,.open>.dropdown-toggle.datepicker table tr td span.active.disabled,.open>.dropdown-toggle.datepicker table tr td span.active.disabled:hover,.open>.dropdown-toggle.datepicker table tr td span.active:hover{background-image:none}.datepicker table tr td span.active.disabled.disabled.focus,.datepicker table tr td span.active.disabled.disabled:focus,.datepicker table tr td span.active.disabled.disabled:hover,.datepicker table tr td span.active.disabled.focus,.datepicker table tr td span.active.disabled:focus,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active.disabled:hover.disabled.focus,.datepicker table tr td span.active.disabled:hover.disabled:focus,.datepicker table tr td span.active.disabled:hover.disabled:hover,.datepicker table tr td span.active.disabled:hover[disabled].focus,.datepicker table tr td span.active.disabled:hover[disabled]:focus,.datepicker table tr td span.active.disabled:hover[disabled]:hover,.datepicker table tr td span.active.disabled[disabled].focus,.datepicker table tr td span.active.disabled[disabled]:focus,.datepicker table tr td span.active.disabled[disabled]:hover,.datepicker table tr td span.active:hover.disabled.focus,.datepicker table tr td span.active:hover.disabled:focus,.datepicker table tr td span.active:hover.disabled:hover,.datepicker table tr td span.active:hover[disabled].focus,.datepicker table tr td span.active:hover[disabled]:focus,.datepicker table tr td span.active:hover[disabled]:hover,.datepicker table tr td span.active[disabled].focus,.datepicker table tr td span.active[disabled]:focus,.datepicker table tr td span.active[disabled]:hover,fieldset[disabled] .datepicker table tr td span.active.disabled.focus,fieldset[disabled] .datepicker table tr td span.active.disabled:focus,fieldset[disabled] .datepicker table tr td span.active.disabled:hover,fieldset[disabled] .datepicker table tr td span.active.disabled:hover.focus,fieldset[disabled] .datepicker table tr td span.active.disabled:hover:focus,fieldset[disabled] .datepicker table tr td span.active.disabled:hover:hover,fieldset[disabled] .datepicker table tr td span.active.focus,fieldset[disabled] .datepicker table tr td span.active:focus,fieldset[disabled] .datepicker table tr td span.active:hover,fieldset[disabled] .datepicker table tr td span.active:hover.focus,fieldset[disabled] .datepicker table tr td span.active:hover:focus,fieldset[disabled] .datepicker table tr td span.active:hover:hover{background-color:#0088ce;border-color:#00659c}.datepicker table tr td span.active .badge,.datepicker table tr td span.active.disabled .badge,.datepicker table tr td span.active.disabled:hover .badge,.datepicker table tr td span.active:hover .badge{color:#0088ce;background-color:#fff}.datepicker table tr td span.new,.datepicker table tr td span.old{color:#9c9c9c}.datepicker .datepicker-switch{width:145px}.datepicker .datepicker-switch,.datepicker .next,.datepicker .prev,.datepicker tfoot tr th{cursor:pointer}.datepicker .datepicker-switch:hover,.datepicker .next:hover,.datepicker .prev:hover,.datepicker tfoot tr th:hover{background:#f1f1f1}.datepicker .next.disabled,.datepicker .prev.disabled{visibility:hidden}.datepicker .cw{font-size:10px;width:12px;padding:0 2px 0 5px;vertical-align:middle}.input-group.date .input-group-addon{cursor:pointer}.input-daterange{width:100%}.input-daterange input{text-align:center}.input-daterange input:first-child{border-radius:3px 0 0 3px}.input-daterange input:last-child{border-radius:0 3px 3px 0}.input-daterange .input-group-addon{width:auto;min-width:16px;padding:4px 5px;line-height:1.66666667;text-shadow:0 1px 0 #fff;border-width:1px 0;margin-left:-5px;margin-right:-5px}select.bs-select-hidden,select.selectpicker{display:none!important}.bootstrap-select>.dropdown-toggle{width:100%;padding-right:25px;z-index:1}.bootstrap-select>.dropdown-toggle.bs-placeholder,.bootstrap-select>.dropdown-toggle.bs-placeholder:active,.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,.bootstrap-select>.dropdown-toggle.bs-placeholder:hover{color:#999}.bootstrap-select>select{position:absolute!important;bottom:0;left:50%;display:block!important;width:.5px!important;height:100%!important;padding:0!important;opacity:0!important;border:none}.bootstrap-select>select.mobile-device{top:0;left:0;display:block!important;width:100%!important;z-index:2}.error .bootstrap-select .dropdown-toggle,.has-error .bootstrap-select .dropdown-toggle{border-color:#b94a48}.bootstrap-select.fit-width{width:auto!important}.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:220px}.bootstrap-select .dropdown-toggle:focus{outline:thin dotted #333!important;outline:5px auto -webkit-focus-ring-color!important;outline-offset:-2px}.bootstrap-select.form-control{margin-bottom:0;padding:0;border:none}.bootstrap-select.form-control:not([class*=col-]){width:100%}.bootstrap-select.form-control.input-group-btn{z-index:auto}.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child)>.btn{border-radius:0}.bootstrap-select.btn-group:not(.input-group-btn),.bootstrap-select.btn-group[class*=col-]{float:none;display:inline-block;margin-left:0}.bootstrap-select.btn-group.dropdown-menu-right,.bootstrap-select.btn-group[class*=col-].dropdown-menu-right,.row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right{float:right}.form-group .bootstrap-select.btn-group,.form-horizontal .bootstrap-select.btn-group,.form-inline .bootstrap-select.btn-group{margin-bottom:0}.form-group-lg .bootstrap-select.btn-group.form-control,.form-group-sm .bootstrap-select.btn-group.form-control{padding:0}.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle,.form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle{height:100%;font-size:inherit;line-height:inherit;border-radius:inherit}.form-inline .bootstrap-select.btn-group .form-control{width:100%}.bootstrap-select.btn-group.disabled,.bootstrap-select.btn-group>.disabled{cursor:not-allowed}.bootstrap-select.btn-group.disabled:focus,.bootstrap-select.btn-group>.disabled:focus{outline:0!important}.bootstrap-select.btn-group.bs-container{position:absolute;height:0!important;padding:0!important}.bootstrap-select.btn-group.bs-container .dropdown-menu{z-index:1060}.bootstrap-select.btn-group .dropdown-toggle .filter-option{display:inline-block;overflow:hidden;width:100%;text-align:left}.bootstrap-select.btn-group .dropdown-toggle .caret{position:absolute;top:50%;right:12px;margin-top:-2px;vertical-align:middle}.bootstrap-select.btn-group[class*=col-] .dropdown-toggle{width:100%}.bootstrap-select.btn-group .dropdown-menu{min-width:100%;box-sizing:border-box}.bootstrap-select.btn-group .dropdown-menu.inner{position:static;float:none;border:0;padding:0;margin:0;border-radius:0;box-shadow:none}.bootstrap-select.btn-group .dropdown-menu li{position:relative}.bootstrap-select.btn-group .dropdown-menu li.active small{color:#fff}.bootstrap-select.btn-group .dropdown-menu li.disabled a{cursor:not-allowed}.bootstrap-select.btn-group .dropdown-menu li a{cursor:pointer;user-select:none}.bootstrap-select.btn-group .dropdown-menu li a.opt{position:relative;padding-left:2.25em}.bootstrap-select.btn-group .dropdown-menu li a span.check-mark{display:none}.bootstrap-select.btn-group .dropdown-menu li a span.text{display:inline-block}.bootstrap-select.btn-group .dropdown-menu li small{padding-left:.5em}.bootstrap-select.btn-group .dropdown-menu .notify{position:absolute;bottom:5px;width:96%;margin:0 2%;min-height:26px;padding:3px 5px;background:#f5f5f5;border:1px solid #e3e3e3;box-shadow:inset 0 1px 1px rgba(0,0,0,.05);pointer-events:none;opacity:.9;box-sizing:border-box}.bootstrap-select.btn-group .no-results{padding:3px;background:#f5f5f5;margin:0 5px;white-space:nowrap}.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option{position:static}.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret{position:static;top:auto;margin-top:-1px}.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark{position:absolute;display:inline-block;right:15px;margin-top:5px}.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text{margin-right:34px}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle{z-index:1061}.bootstrap-select.show-menu-arrow .dropdown-toggle:before{content:'';border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid rgba(204,204,204,.2);position:absolute;bottom:-4px;left:9px;display:none}.bootstrap-select.show-menu-arrow .dropdown-toggle:after{content:'';border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;bottom:-4px;left:10px;display:none}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before{bottom:auto;top:-3px;border-top:7px solid rgba(204,204,204,.2);border-bottom:0}.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after{bottom:auto;top:-3px;border-top:6px solid #fff;border-bottom:0}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before{right:12px;left:auto}.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after{right:13px;left:auto}.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:after,.bootstrap-select.show-menu-arrow.open>.dropdown-toggle:before{display:block}.bs-actionsbox,.bs-donebutton,.bs-searchbox{padding:4px 8px}.bs-actionsbox{width:100%;box-sizing:border-box}.bs-actionsbox .btn-group button{width:50%}.bs-donebutton{float:left;width:100%;box-sizing:border-box}.bs-donebutton .btn-group button{width:100%}.bs-searchbox+.bs-actionsbox{padding:0 8px 4px}.bs-searchbox .form-control{margin-bottom:0;width:100%;float:none}.bootstrap-switch{display:inline-block;direction:ltr;cursor:pointer;border-radius:1px;border:1px solid;border-color:#bbb;position:relative;text-align:left;overflow:hidden;line-height:8px;z-index:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;vertical-align:middle;-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.bootstrap-switch .bootstrap-switch-container{display:inline-block;top:0;border-radius:1px;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.bootstrap-switch .bootstrap-switch-handle-off,.bootstrap-switch .bootstrap-switch-handle-on,.bootstrap-switch .bootstrap-switch-label{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;cursor:pointer;display:table-cell;vertical-align:middle;padding:2px 6px;font-size:12px;line-height:20px}.bootstrap-switch .bootstrap-switch-handle-off,.bootstrap-switch .bootstrap-switch-handle-on{text-align:center;z-index:1}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary{color:#fff;background:#0088ce}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info{color:#fff;background:#00659c}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success{color:#fff;background:#3f9c35}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning{background:#ec7a08;color:#fff}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger{color:#fff;background:#a30000}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default{color:#000;background:#f1f1f1}.bootstrap-switch .bootstrap-switch-label{text-align:center;margin-top:-1px;margin-bottom:-1px;z-index:100;color:#4d5258;background:#f1f1f1}.bootstrap-switch span::before{content:"\200b"}.bootstrap-switch .bootstrap-switch-handle-on{border-bottom-left-radius:1px - 1;border-top-left-radius:1px - 1}.bootstrap-switch .bootstrap-switch-handle-off{border-bottom-right-radius:1px - 1;border-top-right-radius:1px - 1}.bootstrap-switch input[type=checkbox],.bootstrap-switch input[type=radio]{position:absolute!important;top:0;left:0;margin:0;z-index:-1;opacity:0;visibility:hidden}.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label{padding:1px 5px;font-size:11px;line-height:1.5}.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label{padding:2px 6px;font-size:11px;line-height:1.5}.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label{padding:2px 10px;font-size:14px;line-height:1.3333333}.bootstrap-switch.bootstrap-switch-disabled,.bootstrap-switch.bootstrap-switch-indeterminate,.bootstrap-switch.bootstrap-switch-readonly{cursor:default!important}.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label{opacity:.5;cursor:default!important}.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container{-webkit-transition:margin-left .5s;-o-transition:margin-left .5s;transition:margin-left .5s}.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on{border-bottom-left-radius:0;border-top-left-radius:0;border-bottom-right-radius:1px - 1;border-top-right-radius:1px - 1}.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off{border-bottom-right-radius:0;border-top-right-radius:0;border-bottom-left-radius:1px - 1;border-top-left-radius:1px - 1}.bootstrap-switch.bootstrap-switch-focused{border-color:#0088ce;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,136,206,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,136,206,.6)}.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label{border-bottom-right-radius:1px - 1;border-top-right-radius:1px - 1}.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label{border-bottom-left-radius:1px - 1;border-top-left-radius:1px - 1}.bootstrap-touchspin .input-group-btn-vertical{position:relative;white-space:nowrap;width:1%;vertical-align:middle;display:table-cell}.bootstrap-touchspin .input-group-btn-vertical>.btn{display:block;float:none;width:100%;max-width:100%;padding:8px 10px;margin-left:-1px;position:relative}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-radius:0;border-top-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{margin-top:-2px;border-radius:0;border-bottom-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical i{position:absolute;top:3px;left:5px;font-size:9px;font-weight:400}.c3 svg{font:10px sans-serif;-webkit-tap-highlight-color:transparent}.c3 line,.c3 path{fill:none;stroke:#000}.c3 text{-webkit-user-select:none;-moz-user-select:none;user-select:none}.c3-bars path,.c3-event-rect,.c3-legend-item-tile,.c3-xgrid-focus,.c3-ygrid{shape-rendering:crispEdges}.c3-chart-arc path{stroke:#fff}.c3-chart-arc rect{stroke:#fff;stroke-width:1}.c3-chart-arc text{fill:#fff;font-size:13px}.c3-grid line{stroke:#aaa}.c3-grid text{fill:#aaa}.c3-xgrid,.c3-ygrid{stroke-dasharray:3 3}.c3-text.c3-empty{fill:grey;font-size:2em}.c3-line{stroke-width:1px}.c3-circle._expanded_{stroke-width:1px;stroke:#fff}.c3-selected-circle{fill:#fff;stroke-width:2px}.c3-bar{stroke-width:0}.c3-bar._expanded_{fill-opacity:1;fill-opacity:.75}.c3-target.c3-focused{opacity:1}.c3-target.c3-focused path.c3-line,.c3-target.c3-focused path.c3-step{stroke-width:2px}.c3-target.c3-defocused{opacity:.3!important}.c3-region{fill:#4682b4;fill-opacity:.1}.c3-brush .extent{fill-opacity:.1}.c3-legend-item{font-size:12px}.c3-legend-item-hidden{opacity:.15}.c3-legend-background{opacity:.75;fill:#fff;stroke:#d3d3d3;stroke-width:1}.c3-title{font:14px sans-serif}.c3-tooltip-container{z-index:10}.c3-tooltip{border-collapse:collapse;border-spacing:0;background-color:#fff;empty-cells:show;-webkit-box-shadow:7px 7px 12px -9px #777;-moz-box-shadow:7px 7px 12px -9px #777;box-shadow:7px 7px 12px -9px #777;opacity:.9}.c3-tooltip tr{border:1px solid #ccc}.c3-tooltip th{background-color:#aaa;font-size:14px;padding:2px 5px;text-align:left;color:#fff}.c3-tooltip td{font-size:13px;padding:3px 6px;background-color:#fff;border-left:1px dotted #999}.c3-tooltip td>span{display:inline-block;width:10px;height:10px;margin-right:6px}.c3-tooltip td.value{text-align:right}.c3-area{stroke-width:0;opacity:.2}.c3-chart-arcs-title{dominant-baseline:middle;font-size:1.3em}.c3-chart-arcs .c3-chart-arcs-background{fill:#e0e0e0;stroke:#fff}.c3-chart-arcs .c3-chart-arcs-gauge-unit{fill:#000;font-size:16px}.c3-chart-arcs .c3-chart-arcs-gauge-max{fill:#777}.c3-chart-arcs .c3-chart-arcs-gauge-min{fill:#777}.c3-chart-arc .c3-gauge-value{fill:#000}.c3-chart-arc.c3-target g path{opacity:1}.c3-chart-arc.c3-target.c3-focused g path{opacity:1}/*!
+ * Datetimepicker for Bootstrap 3
+ * version : 4.17.47
+ * https://github.com/Eonasdan/bootstrap-datetimepicker/
+ */.bootstrap-datetimepicker-widget{list-style:none}.bootstrap-datetimepicker-widget.dropdown-menu{display:block;margin:2px 0;padding:4px;width:19em}@media (min-width:768px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:992px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}@media (min-width:1200px){.bootstrap-datetimepicker-widget.dropdown-menu.timepicker-sbs{width:38em}}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:'';display:inline-block;position:absolute}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:before{border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,.2);top:-7px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom:after{border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;top:-6px;left:8px}.bootstrap-datetimepicker-widget.dropdown-menu.top:before{border-left:7px solid transparent;border-right:7px solid transparent;border-top:7px solid #ccc;border-top-color:rgba(0,0,0,.2);bottom:-7px;left:6px}.bootstrap-datetimepicker-widget.dropdown-menu.top:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #fff;bottom:-6px;left:7px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.dropdown-menu.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget .list-unstyled{margin:0}.bootstrap-datetimepicker-widget a[data-action]{padding:6px 0}.bootstrap-datetimepicker-widget a[data-action]:active{box-shadow:none}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:54px;font-weight:700;font-size:1em;margin:0}.bootstrap-datetimepicker-widget button[data-action]{padding:6px}.bootstrap-datetimepicker-widget .btn[data-action=incrementHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Increment Hours"}.bootstrap-datetimepicker-widget .btn[data-action=incrementMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Increment Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=decrementHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Decrement Hours"}.bootstrap-datetimepicker-widget .btn[data-action=decrementMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Decrement Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=showHours]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Show Hours"}.bootstrap-datetimepicker-widget .btn[data-action=showMinutes]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Show Minutes"}.bootstrap-datetimepicker-widget .btn[data-action=togglePeriod]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Toggle AM/PM"}.bootstrap-datetimepicker-widget .btn[data-action=clear]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Clear the picker"}.bootstrap-datetimepicker-widget .btn[data-action=today]::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Set the date to today"}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget .picker-switch::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Toggle Date and Time Screens"}.bootstrap-datetimepicker-widget .picker-switch td{padding:0;margin:0;height:auto;width:auto;line-height:inherit}.bootstrap-datetimepicker-widget .picker-switch td span{line-height:2.5;height:2.5em;width:100%}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget table td,.bootstrap-datetimepicker-widget table th{text-align:center;border-radius:1px}.bootstrap-datetimepicker-widget table th{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table th.picker-switch{width:145px}.bootstrap-datetimepicker-widget table th.disabled,.bootstrap-datetimepicker-widget table th.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget table th.prev::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Previous Month"}.bootstrap-datetimepicker-widget table th.next::after{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;content:"Next Month"}.bootstrap-datetimepicker-widget table thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget table thead tr:first-child th:hover{background:0 0}.bootstrap-datetimepicker-widget table td{height:54px;line-height:54px;width:54px}.bootstrap-datetimepicker-widget table td.cw{font-size:.8em;height:20px;line-height:20px;color:#9c9c9c}.bootstrap-datetimepicker-widget table td.day{height:20px;line-height:20px;width:20px}.bootstrap-datetimepicker-widget table td.day:hover,.bootstrap-datetimepicker-widget table td.hour:hover,.bootstrap-datetimepicker-widget table td.minute:hover,.bootstrap-datetimepicker-widget table td.second:hover{background:0 0;cursor:pointer}.bootstrap-datetimepicker-widget table td.new,.bootstrap-datetimepicker-widget table td.old{color:#9c9c9c}.bootstrap-datetimepicker-widget table td.today{position:relative}.bootstrap-datetimepicker-widget table td.today:before{content:'';display:inline-block;border:solid transparent;border-width:0 0 7px 7px;border-bottom-color:#0088ce;border-top-color:rgba(0,0,0,.2);position:absolute;bottom:4px;right:4px}.bootstrap-datetimepicker-widget table td.active,.bootstrap-datetimepicker-widget table td.active:hover{background-color:#0088ce;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td.active.today:before{border-bottom-color:#fff}.bootstrap-datetimepicker-widget table td.disabled,.bootstrap-datetimepicker-widget table td.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget table td span{display:inline-block;width:54px;height:54px;line-height:54px;margin:2px 1.5px;cursor:pointer;border-radius:1px}.bootstrap-datetimepicker-widget table td span:hover{background:0 0}.bootstrap-datetimepicker-widget table td span.active{background-color:#0088ce;color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,.25)}.bootstrap-datetimepicker-widget table td span.old{color:#9c9c9c}.bootstrap-datetimepicker-widget table td span.disabled,.bootstrap-datetimepicker-widget table td span.disabled:hover{background:0 0;color:#9c9c9c;cursor:not-allowed}.bootstrap-datetimepicker-widget.usetwentyfour td.hour{height:27px;line-height:27px}.bootstrap-datetimepicker-widget.wider{width:21em}.bootstrap-datetimepicker-widget .datepicker-decades .decade{line-height:1.8em!important}.input-group.date .input-group-addon{cursor:pointer}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.text-overflow-pf{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;word-wrap:normal}.about-modal-pf{background-color:#292e34;background-image:url(../img/bg-modal-about-pf.png);background-position:right bottom;background-repeat:no-repeat;background-size:216px auto}@media (min-width:768px){.about-modal-pf{background-size:auto}}.about-modal-pf .modal-body{color:#fff;padding-bottom:16px;padding-left:40px;padding-right:40px}@media (min-width:768px){.about-modal-pf .modal-body{padding-left:80px;padding-right:80px}}.about-modal-pf .modal-header{background-color:transparent}.about-modal-pf .pficon-close{color:#fff}.product-versions-pf{margin-bottom:30px;margin-top:30px}.product-versions-pf li strong{margin-right:10px}.trademark-pf{font-size:11px}.applauncher-pf{display:inline-block;overflow:visible}.applauncher-pf .applauncher-pf-title{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.applauncher-pf .dropdown-toggle.disabled{cursor:not-allowed}.applauncher-pf.open>.dropdown-menu{display:flex;flex-wrap:wrap}.applauncher-pf .applauncher-pf-item{width:100%}.applauncher-pf .applauncher-pf-link{display:flex;white-space:initial;align-items:center}@media (min-width:768px){.applauncher-pf-block-list .applauncher-pf-item{flex:0 0 50%}}.applauncher-pf-block-list .applauncher-pf-link{flex-wrap:wrap}@media (min-width:768px){.applauncher-pf-block-list .applauncher-pf-link{flex-direction:column;text-align:center;padding:15px 0;height:100%}}.applauncher-pf-block-list .applauncher-pf-link-icon{padding:0}.applauncher-pf-block-list .applauncher-pf-link-title{margin-top:auto}@media (min-width:768px){.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link{padding:9px}.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon{flex:1 0 0;text-align:left}.applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title{flex:3}}.applauncher-pf .dropdown-menu{padding:9px;min-width:220px}.applauncher-pf .applauncher-pf-link{border-style:solid;border-width:1px;border-color:transparent}.applauncher-pf .applauncher-pf-link:hover{background-color:#f5f5f5;border-color:#bbb;color:#0088ce;text-decoration:none;-webkit-box-shadow:0 0 2px 0 #d1d1d1;box-shadow:0 0 2px 0 #d1d1d1}.applauncher-pf .applauncher-pf-link-icon{font-size:1.2em;text-align:center;width:1.28571429em}@media (min-width:768px){.applauncher-pf .applauncher-pf-link-icon{font-size:2em}}.navbar-utility .applauncher-pf .dropdown-menu{border-width:1px!important}@media (min-width:768px){.navbar-utility .applauncher-pf .dropdown-menu{margin-top:3px;right:0}}.navbar-pf .applauncher-pf.open>a,.navbar-pf .applauncher-pf.open>a:focus,.navbar-pf .navbar-utility .applauncher-pf.open>a,.navbar-pf .navbar-utility .applauncher-pf.open>a:focus,.navbar-pf-alt .applauncher-pf.open>a,.navbar-pf-alt .applauncher-pf.open>a:focus,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a:focus{background-color:#454c53;color:#fff}@media (min-width:768px){.navbar-pf .applauncher-pf.open>a,.navbar-pf .applauncher-pf.open>a:focus,.navbar-pf .navbar-utility .applauncher-pf.open>a,.navbar-pf .navbar-utility .applauncher-pf.open>a:focus,.navbar-pf-alt .applauncher-pf.open>a,.navbar-pf-alt .applauncher-pf.open>a:focus,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open>a:focus{background-color:#5b6165;border-color:#53565b;color:#fff}}@media (max-width:767px){.navbar-pf .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf-alt .applauncher-pf.open .dropdown-menu>li>a,.navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu>li>a{padding-left:20px}.navbar-pf .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf.open .dropdown-menu>li>a .applauncher-pf-link-icon{padding-right:20px}}.navbar-pf .applauncher-pf .dropdown-toggle,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .applauncher-pf .dropdown-toggle,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{background-color:inherit;color:#d1d1d1;text-align:left;text-decoration:none;border-width:0;display:block;padding-left:20px}.navbar-pf .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle.disabled{color:#8b8d8f!important}@media (min-width:768px){.navbar-pf .applauncher-pf .dropdown-toggle,.navbar-pf .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .applauncher-pf .dropdown-toggle,.navbar-pf-alt .applauncher-pf.dropdown>.dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-pf-alt .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{border-left:1px solid #53565b;padding:7px 10px;line-height:1}}.navbar-pf .applauncher-pf .applauncher-pf-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon{padding-right:4px}@media (min-width:768px){.navbar-pf .applauncher-pf .applauncher-pf-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-icon{padding:0}}.navbar-pf .applauncher-pf .applauncher-pf-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title{display:inline;position:relative}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{overflow:hidden;width:100%}.navbar-pf .applauncher-pf .applauncher-pf-link:hover,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover{background-color:transparent;border-color:transparent;-webkit-box-shadow:none;box-shadow:none}.navbar-pf .applauncher-pf .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-title{overflow:hidden}@media (min-width:768px){.navbar-pf .applauncher-pf,.navbar-pf .navbar-utility .applauncher-pf,.navbar-pf-alt .applauncher-pf,.navbar-pf-alt .navbar-utility .applauncher-pf{display:inline-block;overflow:visible}.navbar-pf .applauncher-pf .applauncher-pf-title,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .applauncher-pf .applauncher-pf-title,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-title{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.navbar-pf .applauncher-pf .dropdown-toggle.disabled,.navbar-pf .navbar-utility .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .applauncher-pf .dropdown-toggle.disabled,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-toggle.disabled{cursor:not-allowed}.navbar-pf .applauncher-pf.open>.dropdown-menu,.navbar-pf .navbar-utility .applauncher-pf.open>.dropdown-menu,.navbar-pf-alt .applauncher-pf.open>.dropdown-menu,.navbar-pf-alt .navbar-utility .applauncher-pf.open>.dropdown-menu{display:flex;flex-wrap:wrap}.navbar-pf .applauncher-pf .applauncher-pf-item,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-item,.navbar-pf-alt .applauncher-pf .applauncher-pf-item,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-item{width:100%}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{display:flex;white-space:initial;align-items:center}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link{flex-wrap:wrap}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-icon{padding:0}.navbar-pf .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link-title{margin-top:auto}.navbar-pf .applauncher-pf .dropdown-menu,.navbar-pf .navbar-utility .applauncher-pf .dropdown-menu,.navbar-pf-alt .applauncher-pf .dropdown-menu,.navbar-pf-alt .navbar-utility .applauncher-pf .dropdown-menu{padding:9px;min-width:220px}.navbar-pf .applauncher-pf .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .applauncher-pf .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link{border-style:solid;border-width:1px;border-color:transparent}.navbar-pf .applauncher-pf .applauncher-pf-link:hover,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .applauncher-pf .applauncher-pf-link:hover,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link:hover{background-color:#f5f5f5;border-color:#bbb;color:#0088ce;text-decoration:none;-webkit-box-shadow:0 0 2px 0 #d1d1d1;box-shadow:0 0 2px 0 #d1d1d1}.navbar-pf .applauncher-pf .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon{font-size:1.2em;text-align:center;width:1.28571429em}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-item,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-item{flex:0 0 50%}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .applauncher-pf-block-list .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf-block-list .applauncher-pf-link{flex-direction:column;text-align:center;padding:15px 0;height:100%}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link{padding:9px}.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-icon{flex:1 0 0;text-align:left}.navbar-pf .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf-alt .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title,.navbar-pf-alt .navbar-utility .applauncher-pf:not(.applauncher-pf-block-list) .applauncher-pf-link-title{flex:3}}@media (min-width:768px) and (min-width:768px){.navbar-pf .applauncher-pf .applauncher-pf-link-icon,.navbar-pf .navbar-utility .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .applauncher-pf .applauncher-pf-link-icon,.navbar-pf-alt .navbar-utility .applauncher-pf .applauncher-pf-link-icon{font-size:2em}}@media (min-width:768px){.navbar-iconic .applauncher-pf .dropdown-toggle,.navbar-iconic .applauncher-pf.dropdown>.dropdown-toggle,.navbar-iconic .navbar-utility .applauncher-pf .dropdown-toggle,.navbar-iconic .navbar-utility .applauncher-pf.dropdown>.dropdown-toggle{padding:22px 10px;line-height:inherit}}.blank-slate-pf{background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:1px;margin-bottom:20px;padding:30px;text-align:center}@media (min-width:768px){.blank-slate-pf{padding:60px 60px}}@media (min-width:992px){.blank-slate-pf{padding:90px 120px}}.blank-slate-pf .blank-slate-pf-icon{color:#9c9c9c;font-size:57.6px;line-height:57.6px}.blank-slate-pf .blank-slate-pf-main-action{margin-top:20px}.blank-slate-pf .blank-slate-pf-secondary-action{margin-top:20px}.blank-slate-pf button{margin-right:5px}.blank-slate-pf button:last-of-type{margin-right:0}.combobox-container.combobox-selected .glyphicon-remove{display:inline-block}.combobox-container .caret{margin-left:0}.combobox-container .combobox::-ms-clear{display:none}.combobox-container .dropdown-menu{margin-top:-1px;width:100%}.combobox-container .glyphicon-remove{display:none;top:auto;width:12px}.combobox-container .glyphicon-remove:before{content:"\e60b";font-family:PatternFlyIcons-webfont}.combobox-container .input-group-addon{background-color:#f1f1f1;background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;border-color:#bbb;color:#4d5258;position:relative}.combobox-container .input-group-addon.active,.combobox-container .input-group-addon:active,.combobox-container .input-group-addon:focus,.combobox-container .input-group-addon:hover,.open .dropdown-toggle.combobox-container .input-group-addon{background-color:#f1f1f1;background-image:none;border-color:#bbb;color:#4d5258}.combobox-container .input-group-addon.active,.combobox-container .input-group-addon:active,.open .dropdown-toggle.combobox-container .input-group-addon{background-image:none}.combobox-container .input-group-addon.active.focus,.combobox-container .input-group-addon.active:focus,.combobox-container .input-group-addon.active:hover,.combobox-container .input-group-addon:active.focus,.combobox-container .input-group-addon:active:focus,.combobox-container .input-group-addon:active:hover,.open .dropdown-toggle.combobox-container .input-group-addon.focus,.open .dropdown-toggle.combobox-container .input-group-addon:focus,.open .dropdown-toggle.combobox-container .input-group-addon:hover{background-color:#e5e5e5;border-color:#a9a9a9}.combobox-container .input-group-addon.disabled,.combobox-container .input-group-addon.disabled.active,.combobox-container .input-group-addon.disabled:active,.combobox-container .input-group-addon.disabled:focus,.combobox-container .input-group-addon.disabled:hover,.combobox-container .input-group-addon[disabled],.combobox-container .input-group-addon[disabled].active,.combobox-container .input-group-addon[disabled]:active,.combobox-container .input-group-addon[disabled]:focus,.combobox-container .input-group-addon[disabled]:hover,fieldset[disabled] .combobox-container .input-group-addon,fieldset[disabled] .combobox-container .input-group-addon.active,fieldset[disabled] .combobox-container .input-group-addon:active,fieldset[disabled] .combobox-container .input-group-addon:focus,fieldset[disabled] .combobox-container .input-group-addon:hover{background-color:#f1f1f1;border-color:#bbb}.combobox-container .input-group-addon:active{-webkit-box-shadow:inset 0 2px 8px rgba(3,3,3,.2);box-shadow:inset 0 2px 8px rgba(3,3,3,.2)}.bootstrap-datepicker.form-control[readonly]{background-color:#fff;border-color:#bbb!important;color:#363636;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075);box-shadow:inset 0 1px 1px rgba(3,3,3,.075)}.bootstrap-datepicker.form-control[readonly]:focus{border-color:#0088ce;outline:0!important;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6);box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6)}.bootstrap-datepicker.form-control[readonly]:focus{border-color:#0088ce!important}.has-error .bootstrap-datepicker.form-control[readonly]:focus{border-color:#900;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33}.has-success .bootstrap-datepicker.form-control[readonly]:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168}.has-warning .bootstrap-datepicker.form-control[readonly]:focus{border-color:#bb6106;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60}.bootstrap-datepicker.form-control[readonly]:hover{border-color:#7dc3e8!important}.has-error .bootstrap-datepicker.form-control[readonly]:hover{border-color:#900!important}.has-success .bootstrap-datepicker.form-control[readonly]:hover{border-color:#2b542c!important}.has-warning .bootstrap-datepicker.form-control[readonly]:hover{border-color:#bb6106!important}.has-error .bootstrap-datepicker.form-control[readonly]{border-color:#c00!important}.has-success .bootstrap-datepicker.form-control[readonly]{border-color:#3c763d!important}.has-warning .bootstrap-datepicker.form-control[readonly]{border-color:#ec7a08!important}.datepicker{border-radius:1px}.datepicker .datepicker-switch,.datepicker tfoot .clear,.datepicker tfoot .today{font-size:14px;font-weight:500}.datepicker .next,.datepicker .prev{font-weight:500}.datepicker table tr td,.datepicker table tr th{border-radius:1px}.datepicker table tr td.active,.datepicker table tr td.active.disabled,.datepicker table tr td.active.disabled:hover,.datepicker table tr td.active:hover{background:#0088ce!important;color:#fff!important;text-shadow:none}.datepicker table tr td.day.focused,.datepicker table tr td.day:hover{background:#def3ff}.datepicker table tr td.selected,.datepicker table tr td.selected.disabled,.datepicker table tr td.selected.disabled:hover,.datepicker table tr td.selected:hover{text-shadow:none}.datepicker table tr td span{border-radius:1px}.datepicker table tr td span.active,.datepicker table tr td span.active.disabled,.datepicker table tr td span.active.disabled:hover,.datepicker table tr td span.active:hover{background:#0088ce;text-shadow:none}.datepicker table tr td span:hover{background:#def3ff}.datepicker tfoot tr th:hover,.datepicker thead tr:first-child th:hover{background:#def3ff}.input-daterange input:first-child{border-radius:1px 0 0 1px}.input-daterange input:last-child{border-radius:0 1px 1px 0}.input-daterange .input-group-addon{background-color:#f1f1f1;border-color:#bbb;line-height:1.66666667;padding:2px 6px}.bootstrap-select.btn-group.form-control{margin-bottom:0}.bootstrap-select.btn-group .btn{-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.bootstrap-select.btn-group .btn:hover{border-color:#7dc3e8}.bootstrap-select.btn-group .btn .caret{margin-top:-4px}.bootstrap-select.btn-group .btn:focus{border-color:#0088ce;outline:0!important;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6);box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 8px rgba(0,136,206,.6)}.has-error .bootstrap-select.btn-group .btn{border-color:#c00}.has-error .bootstrap-select.btn-group .btn:focus{border-color:#900;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #f33}.has-success .bootstrap-select.btn-group .btn{border-color:#3c763d}.has-success .bootstrap-select.btn-group .btn:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #67b168}.has-warning .bootstrap-select.btn-group .btn{border-color:#ec7a08}.has-warning .bootstrap-select.btn-group .btn:focus{border-color:#bb6106;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60;box-shadow:inset 0 1px 1px rgba(3,3,3,.075),0 0 6px #faad60}.bootstrap-select.btn-group .dropdown-menu>.active>a,.bootstrap-select.btn-group .dropdown-menu>.active>a:active{background-color:#def3ff!important;border-color:#bee1f4!important;color:#363636!important}.bootstrap-select.btn-group .dropdown-menu>.active>a small,.bootstrap-select.btn-group .dropdown-menu>.active>a:active small{color:#9c9c9c!important}.bootstrap-select.btn-group .dropdown-menu>.disabled>a{color:#9c9c9c!important}.bootstrap-select.btn-group .dropdown-menu>.selected>a{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.bootstrap-select.btn-group .dropdown-menu>.selected>a small{color:rgba(255,255,255,.5)!important}.bootstrap-select.btn-group .dropdown-menu .divider{background:#ededed!important;margin:4px 1px!important}.bootstrap-select.btn-group .dropdown-menu dt{color:#8b8d8f;font-weight:400;padding:1px 10px}.bootstrap-select.btn-group .dropdown-menu li>a.opt{padding:1px 10px}.bootstrap-select.btn-group .dropdown-menu li a:active small{color:rgba(255,255,255,.5)!important}.bootstrap-select.btn-group .dropdown-menu li a:focus small,.bootstrap-select.btn-group .dropdown-menu li a:hover small{color:#9c9c9c}.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:focus small,.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) a:hover small{color:#9c9c9c}.slider-tick-label-container{display:flex;justify-content:space-between;margin-left:0!important}.slider-tick-label{width:auto!important}.slider .tooltip{top:-10px}.slider-track{background-color:#ededed;box-shadow:inset 0 2px 3px rgba(0,0,0,.1),0 0 2px #ededed;border:1px solid #bbb}.slider-selection{background-image:-webkit-linear-gradient(top,#0088ce 0,#39a5dc 100%);background-image:-o-linear-gradient(top,#0088ce 0,#39a5dc 100%);background-image:linear-gradient(to bottom,#0088ce 0,#39a5dc 100%);background-repeat:repeat-x}.slider-handle{width:16px;height:16px;border:1px solid #bbb}.slider-tick{background-color:transparent!important;background-image:radial-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3) 2px,transparent 2px)!important;-webkit-box-shadow:none;box-shadow:none}.slider-pf{display:flex;align-items:center}.slider-pf *{margin-right:10px}.slider-pf :last-child{margin:0}.slider-pf .slider{width:auto;flex:1 1 100%}.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default,.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default{background:#fafafa}.bootstrap-switch .bootstrap-switch-label{background:#f1f1f1;box-shadow:0 0 2px rgba(3,3,3,.4);background-image:-webkit-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:-o-linear-gradient(top,#fafafa 0,#ededed 100%);background-image:linear-gradient(to bottom,#fafafa 0,#ededed 100%);background-repeat:repeat-x;position:relative;z-index:9}.bootstrap-touchspin .input-group-btn-vertical>.btn{padding-bottom:6px;padding-top:6px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{border-bottom-right-radius:1px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-top-right-radius:1px}.bootstrap-touchspin .input-group-btn-vertical i{font-size:8px;left:6px;top:2px}.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up{font-size:12px;line-height:12px;top:0}.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-down,.bootstrap-touchspin .input-group-btn-vertical i.fa-angle-up{left:7px}.treeview .list-group{border-top:0}.treeview .list-group-item{background:0 0;border-bottom:1px solid transparent!important;border-top:1px solid transparent!important;cursor:default!important;margin-bottom:0;overflow:hidden;padding:0 10px;text-overflow:ellipsis;white-space:nowrap}.treeview .list-group-item:hover{background:0 0!important}.treeview .list-group-item.node-selected{background:0 0!important;border-color:transparent!important;color:inherit!important}.treeview .list-group-item.node-check-changed span.node-icon,.treeview .list-group-item.node-check-changed span.text{color:#39a5dc}.treeview span.icon{display:inline-block;font-size:13px;min-width:10px;text-align:center}.treeview span.icon>[class*=fa-angle]{font-size:15px}.treeview span.icon.check-icon{margin-right:10px}.treeview span.icon.expand-icon{cursor:pointer!important}.treeview span.image{background-repeat:no-repeat;background-size:contain;display:inline-block;height:1.19em;line-height:1em;margin-right:5px;vertical-align:middle;width:12px}.treeview span.indent{margin-right:5px}.treeview .node-disabled{color:#d1d1d1;cursor:not-allowed}.treeview .node-disabled span.expand-icon{cursor:default!important}.treeview .node-hidden{display:none}.treeview-pf-hover .list-group-item{cursor:pointer!important}.treeview-pf-hover .list-group-item:hover{background-color:#def3ff!important;border-color:#bee1f4!important}.treeview-pf-select .list-group-item{cursor:pointer!important}.treeview-pf-select .list-group-item.node-selected{background:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.card-pf{background:#fff;border-top:2px solid transparent;-webkit-box-shadow:0 1px 1px rgba(3,3,3,.175);box-shadow:0 1px 1px rgba(3,3,3,.175);margin:0 -10px 20px;padding:0 20px}.card-pf.card-pf-accented{border-top-color:#39a5dc}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a,.card-pf.card-pf-aggregate-status .card-pf-title a{color:#363636}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add,.card-pf.card-pf-aggregate-status .card-pf-title a.add{color:#0088ce}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a.add:hover,.card-pf.card-pf-aggregate-status .card-pf-title a.add:hover{color:#00659c}.card-pf.card-pf-aggregate-status .card-pf-aggregate-status-notifications a:hover,.card-pf.card-pf-aggregate-status .card-pf-title a:hover{color:#00659c}.card-pf.card-pf-aggregate-status{padding:0 10px;text-align:center}.card-pf.card-pf-aggregate-status-mini{padding-bottom:10px;position:relative}@media (min-width:768px){.card-pf.card-pf-bleed-left{margin-left:-20px}.card-pf.card-pf-bleed-right{border-right:1px solid #d1d1d1;margin-right:-20px}}.card-pf-aggregate-status-notifications{font-size:24px;font-weight:300}.card-pf-aggregate-status-mini .card-pf-aggregate-status-notifications{line-height:1}.card-pf-aggregate-status-notifications .card-pf-aggregate-status-notification+.card-pf-aggregate-status-notification{border-left:1px solid #d1d1d1;margin-left:3px;padding-left:10px}.card-pf-aggregate-status-notifications .fa,.card-pf-aggregate-status-notifications .pficon{font-size:18px;margin-right:7px}.card-pf-body{margin:20px 0 0;padding:0 0 20px}.card-pf-aggregate-status .card-pf-body{margin-top:10px;padding-bottom:10px}.card-pf-aggregate-status-mini .card-pf-body{margin-bottom:0;margin-top:0;padding-bottom:0;position:absolute;right:20px;top:15px}.card-pf-utilization .card-pf-title+.card-pf-body{margin-top:-8px}.card-pf-body>:last-child{margin-bottom:0}.card-pf-footer{background-color:#fafafa;border-top:1px solid #d1d1d1;margin:0 -20px!important;padding:20px 20px 10px}.card-pf-footer a .fa,.card-pf-footer a .pficon{margin-right:5px}.card-pf-footer .card-pf-time-frame-filter{margin-top:-2px}.card-pf-link-with-icon{padding-left:21px;position:relative}.card-pf-link-with-icon .fa,.card-pf-link-with-icon .pficon{font-size:16px;left:0;position:absolute;top:0}.card-pf-footer .card-pf-time-frame-filter,.card-pf-heading .card-pf-time-frame-filter{float:right;margin-left:20px}.card-pf-heading{border-bottom:1px solid #d1d1d1;margin:0 -20px 20px;padding:0 20px 0}.card-pf-heading .card-pf-time-frame-filter{margin-top:-5px}.card-pf-heading-details{float:right;font-size:10px}.card-pf-subtitle{font-size:16px;margin-top:20px;margin-bottom:10px}[class^=col] .card-pf-subtitle{margin-top:0}@media (max-width:767px){.card-pf-body [class^=col]+[class^=col]>.card-pf-subtitle{margin-top:40px}}.card-pf-title{font-size:16px;font-weight:400;margin:20px 0;padding:0}.card-pf-aggregate-status .card-pf-title{font-size:14px;margin:10px 0 0}.card-pf-aggregate-status .card-pf-title .fa,.card-pf-aggregate-status .card-pf-title .pficon{color:#292e34;font-size:16px;margin-right:7px}.card-pf-title .card-pf-aggregate-status-count{font-size:16px}.card-pf-aggregate-status-mini .card-pf-title .card-pf-aggregate-status-count{display:block;font-size:24px;font-weight:300;margin-bottom:3px}.card-pf-aggregate-status-mini .card-pf-title{font-size:12px;margin-top:5px}.card-pf-aggregate-status-mini .card-pf-title a{display:inline-block}.card-pf-aggregate-status-mini .card-pf-title .fa,.card-pf-aggregate-status-mini .card-pf-title .pficon{font-size:26px;margin-right:0;min-width:26px;position:absolute;left:20px;text-align:center;top:15px}.card-pf-utilization-details{border-bottom:1px solid #d1d1d1;display:table;margin:12px 0 15px;padding:0 0 15px;width:100%}.card-pf-utilization-details .card-pf-utilization-card-details-count,.card-pf-utilization-details .card-pf-utilization-card-details-description{float:left;line-height:1}.card-pf-utilization-details .card-pf-utilization-card-details-count{font-size:26px;font-weight:300;margin-right:10px}.card-pf-utilization-details .card-pf-utilization-card-details-line-1,.card-pf-utilization-details .card-pf-utilization-card-details-line-2{display:block}.card-pf-utilization-details .card-pf-utilization-card-details-line-1{font-size:10px;margin-bottom:2px}.cards-pf{background:#f5f5f5}.cards-pf .row-cards-pf{padding:0 20px}.cards-pf .row-cards-pf:first-child{padding-top:20px}.container-cards-pf{margin-top:20px}.row-cards-pf{margin-left:-10px;margin-right:-10px}.card-pf-view{border:2px solid transparent}.card-pf-view .card-pf-heading-kebab .dropdown-kebab-pf{margin-top:-3px}.card-pf-view .card-pf-heading-kebab+.progress-pf-legend p{margin-bottom:0}.card-pf-view .card-pf-heading-kebab+.progress-pf-legend .progress{margin-bottom:7px;margin-top:16px}.card-pf-view .card-pf-info{margin-top:15px}.card-pf-view .card-pf-info strong{font-size:13px;margin-right:10px}.card-pf-view .card-pf-item{display:inline-block;font-size:16px;padding:0 13px 0 15px}.card-pf-view .card-pf-item:first-child{padding-left:0}.card-pf-view .card-pf-item:last-child{padding-right:0}.card-pf-view .card-pf-item+.card-pf-item{border-left:1px solid #d1d1d1}.card-pf-view .card-pf-item .fa-check{color:#3f9c35}.card-pf-view .card-pf-item .fa+.card-pf-item-text,.card-pf-view .card-pf-item .pficon+.card-pf-item-text{margin-left:10px}.card-pf-view .card-pf-items{margin-top:15px}.card-pf-view .card-pf-title{font-size:20px;font-weight:300;margin-bottom:0;margin-top:15px}.card-pf-view .card-pf-title .fa,.card-pf-view .card-pf-title .pficon{font-size:18px;margin-right:2px}.col-lg-2 .card-pf-view .card-pf-title{font-size:16px}.card-pf-view .card-pf-top-element .card-pf-icon-circle{border:2px solid #39a5dc;border-radius:50%;display:block;font-size:46px;height:106px;line-height:102px;margin:0 auto;text-align:center;width:106px}.col-lg-2 .card-pf-view .card-pf-top-element .card-pf-icon-circle{font-size:23px;height:54px;line-height:50px;width:54px}.card-pf-view .card-pf-view-checkbox{position:absolute;top:11px;left:15px}.card-pf-view .card-pf-view-checkbox input[type=checkbox]{display:none}.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]{display:block}@media (min-width:768px){.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]{visibility:hidden}.card-pf-view.card-pf-view-multi-select .card-pf-view-checkbox input[type=checkbox]:checked{visibility:visible}}.card-pf-view.card-pf-view-multi-select:hover .card-pf-view-checkbox input[type=checkbox]{visibility:visible}.card-pf-view.card-pf-view-select{position:relative}.card-pf-view.card-pf-view-select:hover{-webkit-box-shadow:0 1px 6px rgba(3,3,3,.35);box-shadow:0 1px 6px rgba(3,3,3,.35)}.card-pf-view.card-pf-view-select.active{border:2px solid #39a5dc}.card-pf-view.card-pf-view-single-select{cursor:pointer}.card-pf-view.card-pf-view-xs .card-pf-title{font-size:16px;font-weight:400;margin-bottom:10px}.card-pf-view.card-pf-view-xs .card-pf-title .fa,.card-pf-view.card-pf-view-xs .card-pf-title .pficon{font-size:14px;margin-right:5px}.c3 path{stroke:#d1d1d1}.c3 svg{font-family:"Open Sans",Helvetica,Arial,sans-serif}.c3-axis-x .tick line{stroke:#d1d1d1}.c3-axis-y .tick line{display:none}.c3-chart-arc path{stroke:#fff}.c3-grid line{stroke:#d1d1d1}.c3-line{stroke-width:2px}.c3-tooltip{background:#393f44;-webkit-box-shadow:none;box-shadow:none;opacity:.9}.c3-tooltip td{background:0 0;border:0;color:#fff;font-size:12px;padding:5px 10px}.c3-tooltip th{background:0 0;font-size:12px;padding:5px 10px 0;border-bottom:solid 2px #030303}.c3-tooltip tr{border:0}.c3-tooltip tr+tr>td{padding-top:0}.c3-tooltip-sparkline,.donut-tooltip-pf{background:#393f44;color:#fff;opacity:.9;padding:2px 6px}.c3-xgrid,.c3-ygrid{stroke-dasharray:0 0}.chart-pf-sparkline{margin-left:-5px;margin-right:-5px}.donut-title-big-pf{font-size:30px;font-weight:300}.donut-title-small-pf{font-size:12px;font-weight:400}.line-chart-pf .c3-zoom-rect{opacity:1!important;fill:#fafafa;stroke:#d1d1d1;stroke-width:1px}.pct-donut-chart-pf .pct-donut-chart-pf-label{display:block}.pct-donut-chart-pf .pct-donut-chart-pf-left,.pct-donut-chart-pf .pct-donut-chart-pf-right,.pct-donut-chart-pf.pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-right{display:flex;flex-direction:row;justify-content:center;align-items:center}.pct-donut-chart-pf.pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-right{display:inline-flex}.pct-donut-chart-pf .pct-donut-chart-pf-left,.pct-donut-chart-pf.pct-donut-chart-pf-left{flex-direction:row-reverse}.close{text-shadow:none;z-index:1;position:relative;opacity:.6}.close:focus,.close:hover{opacity:.9}.layout-pf-fixed .navbar-pf-vertical.navbar-pf-contextselector{z-index:1040}.navbar-pf-vertical .nav.contextselector-pf{border-left:1px solid #4d5258}@media (min-width:768px){.navbar-pf-vertical .nav.contextselector-pf{margin-left:10px}}.navbar-pf-vertical .nav.contextselector-pf .nav-item-iconic{padding:23px 20px 18px 10px;display:flex;align-items:center}.contextselector-pf{float:left}.contextselector-pf-title{width:170px;white-space:nowrap;display:inline-block;overflow:hidden;text-overflow:ellipsis;line-height:normal}@media (min-width:480px){.contextselector-pf-title{width:210px}}.contextselector-pf .dropdown.open,.contextselector-pf .dropdown:hover{background-color:#64686c}.contextselector-pf .dropdown-menu{width:100%;margin-top:0}.contextselector-pf .form-group{margin:0 5px 5px 5px}@media (min-width:768px){.contextselector-pf .contextselector-pf-list{max-height:200px;overflow-y:auto}}.contextselector-pf .contextselector-pf-list li{padding:1px 10px;border-width:1px 0;border-style:solid;border-color:transparent}.contextselector-pf .contextselector-pf-list li:hover{background:#def3ff;border-color:#bee1f4}.contextselector-pf .contextselector-pf-list li:hover a{text-decoration:none}.contextselector-pf .contextselector-pf-list a{color:#393f44;display:block}.ColVis_Button:active:focus{outline:0}.ColVis_catcher{position:absolute;z-index:999}.ColVis_collection{background-color:#fff;border:1px solid #bbb;border-radius:1px;-webkit-box-shadow:0 6px 12px rgba(3,3,3,.175);box-shadow:0 6px 12px rgba(3,3,3,.175);background-clip:padding-box;list-style:none;margin:-1px 0 0 0;padding:5px 10px;width:150px;z-index:1000}.ColVis_collection label{font-weight:400;margin-bottom:5px;margin-top:5px;padding-left:20px}.ColVis_collectionBackground{background-color:#fff;height:100%;left:0;position:fixed;top:0;width:100%;z-index:998}.dataTables_header{background-color:#f5f5f5;border:1px solid #d1d1d1;border-bottom:none;padding:5px;position:relative;text-align:center}.dataTables_header .btn{-webkit-box-shadow:none;box-shadow:none}.dataTables_header .ColVis{position:absolute;right:5px;text-align:left;top:5px}.dataTables_header .ColVis+.dataTables_info{padding-right:30px}.dataTables_header .dataTables_filter{position:absolute}.dataTables_header .dataTables_filter input{border:1px solid #bbb;height:24px}@media (max-width:767px){.dataTables_header .dataTables_filter input{width:100px}}.dataTables_header .dataTables_info{padding:2px 0}@media (max-width:480px){.dataTables_header .dataTables_info{text-align:right}}.dataTables_header .dataTables_info b{font-weight:700}.dataTables_footer{background-color:#fff;border:1px solid #d1d1d1;border-top:none;overflow:hidden}.dataTables_paginate{background:#fafafa;float:right;margin:0}.dataTables_paginate .pagination{float:left;margin:0}.dataTables_paginate .pagination>li>span{border-color:#fff #d1d1d1 #f5f5f5;border-width:0 1px;font-size:16px;font-weight:400;padding:0;text-align:center;width:31px}.dataTables_paginate .pagination>li.last>span{border-right:none}.dataTables_paginate .pagination>li.disabled>span{background:#f5f5f5;border-left-color:#ededed;border-right-color:#ededed}.dataTables_paginate .pagination-input{float:left;font-size:12px;line-height:1em;padding:4px 15px 0;text-align:right}.dataTables_paginate .pagination-input .paginate_input{border:1px solid #d1d1d1;-webkit-box-shadow:inset 0 1px 1px rgba(3,3,3,.075);box-shadow:inset 0 1px 1px rgba(3,3,3,.075);font-size:12px;font-weight:600;height:19px;margin-right:8px;padding-right:3px;text-align:right;width:30px}.dataTables_paginate .pagination-input .paginate_of{position:relative}.dataTables_paginate .pagination-input .paginate_of b{margin-left:3px}.dataTables_empty{background:#f5f5f5}.DTCR_clonedTable{background-color:rgba(255,255,255,.7);z-index:202}.DTCR_pointer{background-color:#0088ce;width:1px;z-index:201}.experimental-pf>*{border:2px solid #92d400}.experimental-pf-bar{background-color:#92d400;border:none;text-align:center;position:relative}.experimental-pf-more-info{background-color:#92d400;border:0;color:#030303;display:block;width:100%;padding-top:10px;padding-bottom:10px;position:static}@media (min-width:992px){.experimental-pf-more-info{padding:0 10px;position:absolute;right:0;top:0;width:auto}}@media (min-width:992px){.experimental-pf-text{padding-left:150px;padding-right:150px}}.experimental-pf-text a{color:#030303;text-decoration:underline}.experimental-pf-text a:hover{color:#030303;cursor:pointer}.btn-experimental-pf{background-color:#92d400;background-image:-webkit-linear-gradient(top,#ace12e 0,#92d400 100%);background-image:-o-linear-gradient(top,#ace12e 0,#92d400 100%);background-image:linear-gradient(to bottom,#ace12e 0,#92d400 100%);background-repeat:repeat-x;border-color:#92d400;color:#4d5258}.btn-experimental-pf.active,.btn-experimental-pf:active,.btn-experimental-pf:focus,.btn-experimental-pf:hover,.open .dropdown-toggle.btn-experimental-pf{background-color:#92d400;background-image:none;border-color:#92d400;color:#4d5258}.btn-experimental-pf.active,.btn-experimental-pf:active,.open .dropdown-toggle.btn-experimental-pf{background-image:none}.btn-experimental-pf.active.focus,.btn-experimental-pf.active:focus,.btn-experimental-pf.active:hover,.btn-experimental-pf:active.focus,.btn-experimental-pf:active:focus,.btn-experimental-pf:active:hover,.open .dropdown-toggle.btn-experimental-pf.focus,.open .dropdown-toggle.btn-experimental-pf:focus,.open .dropdown-toggle.btn-experimental-pf:hover{background-color:#80bb00;border-color:#79b000}.btn-experimental-pf.disabled,.btn-experimental-pf.disabled.active,.btn-experimental-pf.disabled:active,.btn-experimental-pf.disabled:focus,.btn-experimental-pf.disabled:hover,.btn-experimental-pf[disabled],.btn-experimental-pf[disabled].active,.btn-experimental-pf[disabled]:active,.btn-experimental-pf[disabled]:focus,.btn-experimental-pf[disabled]:hover,fieldset[disabled] .btn-experimental-pf,fieldset[disabled] .btn-experimental-pf.active,fieldset[disabled] .btn-experimental-pf:active,fieldset[disabled] .btn-experimental-pf:focus,fieldset[disabled] .btn-experimental-pf:hover{background-color:#92d400;border-color:#92d400}.filter-pf-category-select{display:flex}.filter-pf-category-select-value{border-left-width:0}.filter-pf-category-item{margin-bottom:5px}.filter-pf-category-label{font-weight:700;margin-right:5px;padding:5px 0 6px 5px}.filter-pf-select .caret{position:absolute;top:50%;right:10px;transform:translateY(-50%)}.filter-pf-select-dropdown{background-color:#fff;background-image:none;color:#8b8d8f;font-size:12px;font-style:italic;font-weight:400;padding-right:25px;text-align:left}.filter-pf-select-dropdown .caret{font-style:normal}.filter-pf-active-label{margin-right:5px}.footer-pf,.footer-pf-alt{background-color:#030303;color:#9c9c9c;font-size:11px;line-height:17px;padding-left:25px;padding-top:10px}.layout-pf-alt-fixed-with-footer .footer-pf,.layout-pf-alt-fixed-with-footer .footer-pf-alt,.layout-pf-fixed-with-footer .footer-pf,.layout-pf-fixed-with-footer .footer-pf-alt{bottom:0;left:0;position:fixed;right:0;z-index:1030}@font-face{font-family:PatternFlyIcons-webfont;src:url(../fonts/PatternFlyIcons-webfont.eot);src:url(../fonts/PatternFlyIcons-webfont.eot?#iefix) format("embedded-opentype"),url(../fonts/PatternFlyIcons-webfont.ttf) format("truetype"),url(../fonts/PatternFlyIcons-webfont.woff) format("woff"),url(../fonts/PatternFlyIcons-webfont.svg#PatternFlyIcons-webfont) format("svg");font-weight:400;font-style:normal}[class*=" pficon-"],[class^=pficon-]{display:inline-block;font-family:PatternFlyIcons-webfont;font-style:normal;font-variant:normal;font-weight:400;line-height:1;speak:none;text-transform:none;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.pficon-add-circle-o:before{content:"\e61b"}.pficon-applications:before{content:"\e936"}.pficon-arrow:before{content:"\e929"}.pficon-asleep:before{content:"\e925"}.pficon-automation:before{content:"\e937"}.pficon-build:before{content:"\e902"}.pficon-builder-image:before{content:"\e800"}.pficon-bundle:before{content:"\e918"}.pficon-blueprint:before{content:"\e915"}.pficon-catalog:before{content:"\e939"}.pficon-chat:before{content:"\e928"}.pficon-close:before{content:"\e60b"}.pficon-cloud-security:before{content:"\e903"}.pficon-cloud-tenant:before{content:"\e904"}.pficon-cluster:before{content:"\e620"}.pficon-connected:before{content:"\e938"}.pficon-container-node:before{content:"\e621"}.pficon-cpu:before{content:"\e927"}.pficon-degraded:before{content:"\e91b"}.pficon-delete:before{content:"\e611"}.pficon-disconnected:before{content:"\e93c"}.pficon-domain:before{content:"\e919"}.pficon-edit:before{content:"\e60a"}.pficon-enhancement:before{content:"\e93a"}.pficon-enterprise:before{content:"\e906"}.pficon-equalizer:before{content:"\e610"}.pficon-error-circle-o:before{color:#c00;content:"\e926"}.pficon-export:before{content:"\e616"}.pficon-flag:before,.pficon-messages:before{content:"\e603"}.pficon-flavor:before{content:"\e907"}.pficon-filter:before{content:"\e943"}.pficon-folder-close:before{content:"\e607"}.pficon-folder-open:before{content:"\e606"}.pficon-help:before{content:"\e605"}.pficon-history:before{content:"\e93b"}.pficon-home:before{content:"\e618"}.pficon-image:before{content:"\e61f"}.pficon-import:before{content:"\e615"}.pficon-in-progress:before{content:"\e92c"}.pficon-info:before{content:"\e92b"}.pficon-infrastructure:before{content:"\e93d"}.pficon-integration:before{content:"\e948"}.pficon-key:before{content:"\e924"}.pficon-locked:before{content:"\e923"}.pficon-maintenance:before{content:"\e92d"}.pficon-memory:before{content:"\e908"}.pficon-middleware:before{content:"\e917"}.pficon-migration:before{content:"\e92e"}.pficon-monitoring:before{content:"\e944"}.pficon-network:before{content:"\e909"}.pficon-network-range:before{content:"\e94a"}.pficon-on:before{content:"\e931"}.pficon-on-running:before{content:"\e930"}.pficon-optimize:before{content:"\e93e"}.pficon-orders:before{content:"\e93f"}.pficon-off:before{content:"\e92f"}.pficon-ok:before{color:#3f9c35;content:"\e602"}.pficon-paused:before{content:"\e932"}.pficon-pending:before{content:"\e933"}.pficon-plugged:before{content:"\e940"}.pficon-port:before{content:"\e945"}.pficon-print:before{content:"\e612"}.pficon-process-automation:before{content:"\e949"}.pficon-private:before{content:"\e914"}.pficon-project:before{content:"\e905"}.pficon-rebalance:before{content:"\e91c"}.pficon-rebooting:before{content:"\e934"}.pficon-refresh:before,.pficon-restart:before{content:"\e617"}.pficon-regions:before{content:"\e90a"}.pficon-registry:before{content:"\e623"}.pficon-remove:before{content:"\e611"}.pficon-replicator:before{content:"\e624"}.pficon-repository:before{content:"\e90b"}.pficon-resource-pool:before{content:"\e90c"}.pficon-resources-almost-empty:before{content:"\e91d"}.pficon-resources-almost-full:before{content:"\e912"}.pficon-resources-full:before{content:"\e92a"}.pficon-route:before{content:"\e625"}.pficon-running:before{content:"\e614"}.pficon-satellite:before{content:"\e94b"}.pficon-save:before{content:"\e601"}.pficon-screen:before{content:"\e600"}.pficon-search:before{content:"\e921"}.pficon-security:before{content:"\e946"}.pficon-server:before{content:"\e90d"}.pficon-server-group:before{content:"\e91a"}.pficon-service:before{content:"\e61e"}.pficon-services:before{content:"\e947"}.pficon-service-catalog:before{content:"\e941"}.pficon-settings:before{content:"\e610"}.pficon-spinner:before{content:"\e614"}.pficon-spinner2:before{content:"\e613"}.pficon-storage-domain:before{content:"\e90e"}.pficon-template:before{content:"\e94c"}.pficon-tenant:before{content:"\e916"}.pficon-thumb-tack-o:before{content:"\e920"}.pficon-topology:before{content:"\e608"}.pficon-trend-down:before{content:"\e900"}.pficon-trend-up:before{content:"\e901"}.pficon-unknown:before{content:"\e935"}.pficon-user:before{content:"\e91e"}.pficon-users:before{content:"\e91f"}.pficon-unlocked:before{content:"\e922"}.pficon-unplugged:before{content:"\e942"}.pficon-vcenter:before{content:"\e94d"}.pficon-virtual-machine:before{content:"\e90f"}.pficon-volume:before{content:"\e910"}.pficon-warning-triangle-o:before{color:#ec7a08;content:"\e913"}.pficon-zone:before{content:"\e911"}.navbar-nav>li>.dropdown-menu.infotip{border-top-width:1px!important;margin-top:10px}@media (max-width:767px){.navbar-pf .navbar-nav .open .dropdown-menu.infotip{background-color:#fff!important;margin-top:0}}.infotip{min-width:235px;padding:0}.infotip .list-group{border-top:0;margin:0;padding:8px 0}.infotip .list-group .list-group-item{border:none;margin:0 15px 0 34px;padding:5px 0}.infotip .list-group .list-group-item>.i{color:#4d5258;font-size:13px;left:-20px;position:absolute;top:8px}.infotip .list-group .list-group-item>a{color:#4d5258;line-height:13px}.infotip .list-group .list-group-item>.close{float:right}.infotip .footer{background-color:#f5f5f5;padding:6px 15px}.infotip .footer a:hover{color:#0088ce}.infotip .arrow,.infotip .arrow:after{border-color:transparent;border-style:solid;display:block;height:0;position:absolute;width:0}.infotip .arrow{border-width:11px}.infotip .arrow:after{border-width:10px;content:""}.infotip.bottom .arrow,.infotip.bottom-left .arrow,.infotip.bottom-right .arrow{border-bottom-color:#bbb;border-top-width:0;left:50%;margin-left:-11px;top:-11px}.infotip.bottom .arrow:after,.infotip.bottom-left .arrow:after,.infotip.bottom-right .arrow:after{border-top-width:0;border-bottom-color:#fff;content:" ";margin-left:-10px;top:1px}.infotip.bottom-left .arrow{left:20%}.infotip.bottom-right .arrow{left:80%}.infotip.top .arrow{border-bottom-width:0;border-top-color:#bbb;bottom:-11px;left:50%;margin-left:-11px}.infotip.top .arrow:after{border-bottom-width:0;border-top-color:#f5f5f5;bottom:1px;content:" ";margin-left:-10px}.infotip.right .arrow{border-left-width:0;border-right-color:#bbb;left:-11px;margin-top:-11px;top:50%}.infotip.right .arrow:after{bottom:-10px;border-left-width:0;border-right-color:#fff;content:" ";left:1px}.infotip.left .arrow{border-left-color:#bbb;border-right-width:0;margin-top:-11px;right:-11px;top:50%}.infotip.left .arrow:after{border-left-color:#fff;border-right-width:0;bottom:-10px;content:" ";right:1px}.layout-pf,.layout-pf body{min-height:100%}.layout-pf.layout-pf-fixed.transitions .container-pf-nav-pf-vertical{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf.layout-pf-fixed body{padding-top:60px}.layout-pf.layout-pf-fixed .navbar-pf{left:0;position:fixed;top:0;right:0;z-index:1030}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav{margin-left:75px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-nav.hidden-icons-pf{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hidden-nav{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.hide-nav-pf{margin-left:0!important}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf,.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges,.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}@media (min-width:1200px){.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf{margin-left:400px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges{margin-left:500px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hidden-nav{margin-left:0}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav{margin-left:275px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.nav-pf-vertical-with-badges{margin-left:325px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf{margin-left:200px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{margin-left:250px}.layout-pf.layout-pf-fixed .container-pf-nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-nav.hidden-icons-pf{margin-left:0}}.layout-pf.layout-pf-fixed-with-footer body{padding-bottom:37px}.layout-pf-alt,.layout-pf-alt body{min-height:100%}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll,.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll body{height:100%;min-height:0}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt{height:100%;overflow:auto}.layout-pf-alt.layout-pf-alt-fixed.layout-pf-alt-fixed-inner-scroll .container-pf-alt-nav-pf-vertical-alt.container-cards-pf{margin-top:0;padding-top:20px}.layout-pf-alt.layout-pf-alt-fixed.transitions .container-pf-alt-nav-pf-vertical-alt{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt.layout-pf-alt-fixed body{padding-top:60px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt{margin-left:250px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.collapsed-nav{margin-left:75px}.layout-pf-alt.layout-pf-alt-fixed .container-pf-alt-nav-pf-vertical-alt.hidden-nav{margin-left:0}.layout-pf-alt.layout-pf-alt-fixed-with-footer body{padding-bottom:37px}a.disabled{color:#8b8d8f;cursor:not-allowed;text-decoration:none}.list-pf{border-bottom:1px solid #ededed}.list-pf-item{border-color:#ededed;border-left-color:#fff;border-right-color:#fff;border-style:solid;border-width:1px;border-bottom:none}.list-pf-item:hover{background-color:#edf8ff}.list-pf-item.active{background-color:#ededed;border-color:#bbb;border-bottom-width:1px;border-bottom-style:solid}.list-pf-expansion{background-color:#fff}.list-pf-container{align-items:flex-start;display:flex;padding:20px}.list-pf-expansion .list-pf-container{border-top:1px solid #bbb}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-container{align-items:center}}.list-pf-chevron{min-width:1.2em}.list-pf-chevron,.list-pf-select{margin-right:10px}.list-pf-chevron+.list-pf-content,.list-pf-select+.list-pf-content{border-left:1px solid #d1d1d1;padding-left:20px}.list-pf-chevron .fa,.list-pf-select .fa{font-size:22px}.list-pf-content-flex{align-items:flex-start;display:flex;flex-grow:1;flex-wrap:nowrap;justify-content:flex-start;min-width:0}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-content-flex{align-items:center}}.list-pf-left{flex-grow:0;margin-left:0;margin-right:20px}.list-pf-icon{align-items:center;display:flex;justify-content:center}.list-pf-icon-bordered{border-radius:50%;border:2px solid #39a5dc}.list-pf-icon-small{font-size:1.4em;height:30px;line-height:30px;width:30px}.list-pf-content-wrapper{align-items:center;display:flex;flex-grow:1;flex-wrap:wrap;min-width:0}@media (min-width:992px){.list-pf-content-wrapper{flex-wrap:nowrap}.list-pf-content-wrapper>*+*{margin-left:40px}}.list-pf-stacked .list-pf-content-wrapper{align-items:flex-start}.list-pf-main-content{align-items:center;display:flex;flex-basis:70%;flex-grow:1;flex-shrink:1;flex-wrap:wrap;min-width:0}@media (min-width:992px){.list-pf:not(.list-pf-stacked) .list-pf-main-content{flex-wrap:nowrap;width:auto}.list-pf:not(.list-pf-stacked) .list-pf-main-content>*+*{margin-left:40px}}.list-pf-title{flex-grow:1;flex-shrink:1;flex-basis:100%;font-weight:700;min-width:0;word-wrap:break-word}.list-pf-description{flex-grow:1;flex-shrink:1;flex-basis:100%;min-width:0;word-wrap:break-word}.list-pf-additional-content{display:flex;flex-basis:31%;flex-grow:1;flex-shrink:1;flex-wrap:wrap;justify-content:space-between}.list-pf-actions{display:flex;align-items:flex-start;flex-grow:0;margin-left:40px}.list-pf-actions>*+*{margin-left:10px}.list-view-pf .list-group-item{align-items:flex-start;background-clip:padding-box;border-color:transparent #fff;border-style:solid;border-width:1px;display:flex;flex-wrap:wrap;padding-bottom:0;padding-top:0}.list-view-pf .list-group-item:after,.list-view-pf .list-group-item:before{content:" ";display:table}.list-view-pf .list-group-item:after{clear:both}.list-view-pf .list-group-item.list-view-pf-expand-active{background-color:#edf8ff;box-shadow:0 2px 6px rgba(3,3,3,.2);z-index:1}.list-view-pf .list-group-item.active{color:#555;background-color:#def3ff;background-clip:border-box;border-color:#bbb transparent transparent;z-index:auto}.list-view-pf .list-group-item:hover{background-color:#edf8ff;border-left-color:transparent;border-right-color:transparent}.list-view-pf .list-group-item.list-view-pf-expand-active{border:solid 1px #bbb}.list-view-pf .list-group-item.list-view-pf-expand-active:first-child{border-top-color:#bbb}.list-view-pf .list-group-item:first-child{border-top:1px solid transparent}@media (min-width:992px){.list-view-pf .list-group-item{align-items:center}}.list-view-pf .list-group-item-heading{font-size:16px}.list-view-pf .list-group-item-heading small{display:block;font-size:9.6px;font-weight:400}@media (min-width:992px){.list-view-pf .list-group-item-heading{flex:1 0 calc(25% - 20px);float:left;font-size:12px;margin:0 20px 0 0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:calc(25% - 20px)}}.list-view-pf .list-group-item-text{color:currentColor!important;margin-bottom:10px}@media (min-width:992px){.list-view-pf .list-group-item-text{flex:1 0 auto;float:left;margin:0 40px 0 0;width:calc(75% - 40px)}}.list-view-pf .close{float:none;position:absolute;right:15px}.list-view-pf-actions{float:right;margin-bottom:20px;margin-left:20px;margin-top:20px;order:2}.list-view-pf-actions .dropdown-kebab-pf,.list-view-pf-actions button,.list-view-pf-actions>a{margin-left:10px}.list-view-pf-top-align .list-view-pf-actions{align-self:flex-start}.list-view-pf-additional-info{align-items:center;display:flex;flex-wrap:wrap}@media (min-width:992px){.list-view-pf-additional-info{flex:1 0 auto;float:left;width:50%}}.list-view-pf-additional-info-item{align-items:center;display:inline-block;display:flex;margin-right:20px;max-width:100%;text-align:center}.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked{text-align:center;flex-direction:column}.list-view-pf-additional-info-item.list-view-pf-additional-info-item-stacked strong{font-size:13px;line-height:1em}.list-view-pf-additional-info-item .fa,.list-view-pf-additional-info-item .pficon{font-size:16px;margin-right:10px}.list-view-pf-additional-info-item strong{font-size:16px;font-weight:600;margin-right:5px}.list-view-pf-additional-info-item:last-child{margin-right:0}.list-view-pf-additional-info-item-donut-chart{width:60px}.list-view-pf-body{align-items:center;display:table-cell;flex:1;min-width:0;vertical-align:top;width:100%}@media (min-width:992px){.list-view-pf-body{align-items:center;display:flex;flex-direction:row}}.list-view-pf-checkbox{border-right:1px solid #d1d1d1;float:left;margin-bottom:20px;margin-right:15px;margin-top:20px;padding:3px 10px 3px 0}.list-view-pf-top-align .list-view-pf-checkbox{align-self:flex-start}.list-view-pf-description{flex:1 0 50%}.list-view-pf-stacked .list-view-pf-description{display:block;flex:none}@media (min-width:992px){.list-view-pf-description{align-items:center;display:flex;float:left;width:50%}}.list-view-pf-left{display:table-cell;padding-right:20px;text-align:center;vertical-align:top}.list-view-pf-left .list-view-pf-calendar{font-size:11px;line-height:1em}.list-view-pf-left .list-view-pf-calendar strong{display:block;font-size:44px;font-weight:300;line-height:1em}.list-view-pf-left .fa,.list-view-pf-left .pficon{border-radius:50%;font-size:2em}.list-view-pf-left .fa.list-view-pf-icon-md,.list-view-pf-left .pficon.list-view-pf-icon-md{background-color:#f5f5f5;height:50px;line-height:50px;width:50px}.list-view-pf-left .fa.list-view-pf-icon-danger,.list-view-pf-left .pficon.list-view-pf-icon-danger{background-color:#ffe6e6;color:#c00}.list-view-pf-left .fa.list-view-pf-icon-info,.list-view-pf-left .pficon.list-view-pf-icon-info{color:#8b8d8f}.list-view-pf-left .fa.list-view-pf-icon-lg,.list-view-pf-left .pficon.list-view-pf-icon-lg{background-color:#f5f5f5;height:60px;line-height:60px;width:60px}.list-view-pf-left .fa.list-view-pf-icon-sm,.list-view-pf-left .pficon.list-view-pf-icon-sm{border:2px solid #39a5dc;font-size:1.4em;height:30px;line-height:30px;width:30px}.list-view-pf-left .fa.list-view-pf-icon-sm:before,.list-view-pf-left .pficon.list-view-pf-icon-sm:before{display:block;line-height:26px}.list-view-pf-left .fa.list-view-pf-icon-success,.list-view-pf-left .pficon.list-view-pf-icon-success{background-color:#e9f4e9;color:#3f9c35}.list-view-pf-left .fa.list-view-pf-icon-warning,.list-view-pf-left .pficon.list-view-pf-icon-warning{background-color:#fdf2e5;color:#ec7a08}.list-view-pf-main-info{align-items:flex-start;display:flex;flex:1;min-width:0;padding-bottom:20px;padding-top:20px}@media (min-width:992px){.list-view-pf-main-info{align-items:center}.list-view-pf-top-align .list-view-pf-main-info{align-items:flex-start}}.list-view-pf-stacked .list-group-item-heading{float:none;font-size:16px;line-height:1.2em;margin-bottom:5px;margin-right:40px;width:auto}.list-view-pf-stacked .list-group-item-text{float:none;width:auto}.list-view-pf-view{background:#ededed;border:none;margin-top:30px}.list-group-item-header{box-sizing:content-box;cursor:pointer;margin:0 -15px;padding:0 15px;width:100%}.list-view-pf-expand{cursor:pointer;float:left;margin-bottom:20px;margin-right:2px;margin-top:20px;padding:3px 0}.list-view-pf-expand.active,.list-view-pf-expand:hover{color:#0088ce}.list-view-pf-additional-info-item .list-view-pf-expand{margin:0;padding:0}.list-view-pf-expand .fa-angle-right{cursor:pointer;font-size:17px;margin-right:5px;margin-top:2px;width:10px}.list-group-item-container{background:#fff;border-top:solid 1px #bbb;box-sizing:content-box;margin:-1px -15px 0;order:3;padding:15px;position:relative;width:100%}.list-view-pf-dnd .dndDragging.drag-original{display:none}.list-view-pf-dnd .dndDragging.drag-original .list-view-pf-dnd-original-items{display:block}.list-view-pf-dnd .dndDragging .list-view-pf-dnd-drag-items{display:inline-block}.list-view-pf-dnd .dndDragging .list-view-pf-dnd-original-items{display:none}.list-view-pf-dnd .dndPlaceholder{background-color:#ededed;padding:20px 0}.list-view-pf-dnd .list-group-item-header{margin-left:-10px}.list-view-pf-dnd .list-group-item-header:before{background-image:linear-gradient(to bottom,#0088ce 60%,#fff 0);background-position:left;background-repeat:repeat-y;background-size:2px 5px;border:4px solid #0088ce;border-color:#00659c;content:"";height:55px;left:4px;position:absolute;top:5px;width:10px}.list-view-pf-dnd-drag-items{display:none}.login-pf{height:100%}.login-pf #brand{position:relative;top:-70px}.login-pf #brand img{display:block;height:18px;margin:0 auto;max-width:100%}@media (min-width:768px){.login-pf #brand img{margin:0;text-align:left}}.login-pf #badge{display:block;margin:20px auto 70px;position:relative;text-align:center}@media (min-width:768px){.login-pf #badge{float:right;margin-right:64px;margin-top:50px}}.login-pf body{background:#1a1a1a url(../img/bg-login.png) repeat-x 50% 0;background-size:auto}@media (min-width:768px){.login-pf body{background-size:100% auto}}.login-pf .container{background-color:transparent;clear:right;color:#fff;padding-bottom:40px;padding-top:20px;width:auto}@media (min-width:768px){.login-pf .container{bottom:13%;padding-left:80px;position:absolute;width:100%}}.login-pf .container .details p:first-child{border-top:1px solid rgba(255,255,255,.3);padding-top:25px;margin-top:25px}@media (min-width:768px){.login-pf .container .details{border-left:1px solid rgba(255,255,255,.3);padding-left:40px}.login-pf .container .details p:first-child{border-top:0;padding-top:0;margin-top:0}}.login-pf .container .details p{margin-bottom:2px}.login-pf .container .form-horizontal .control-label{font-size:13px;font-weight:400;text-align:left}.login-pf .container .form-horizontal .form-group:last-child,.login-pf .container .form-horizontal .form-group:last-child .help-block:last-child{margin-bottom:0}.login-pf .container .help-block{color:#fff}@media (min-width:768px){.login-pf .container .login{padding-right:40px}}.login-pf .container .submit{text-align:right}.login-pf-page .login-pf-brand{margin-top:20px;max-width:360px;width:70%}@media (min-width:768px){.login-pf-page .login-pf-brand{margin-top:62px}}.login-pf-page .login-pf-page-header{margin-bottom:20px;text-align:center}@media (min-width:768px){.login-pf-page .login-pf-page-header{margin-bottom:40px}}.login-pf-page .login-pf-page-header p{color:#fff;font-size:14px;margin-left:auto;margin-right:auto;margin-top:20px}.login-pf-page .card-pf{padding:10px 20px 30px 20px;margin-bottom:0}@media (min-width:768px){.login-pf-page .card-pf{padding:20px 40px 30px 40px}}.login-pf-page .card-pf p{color:#72767b}.login-pf-page .form-control{height:36px}.login-pf-page .checkbox-label{color:#72767b;font-weight:300;margin-bottom:15px}@media (min-width:768px){.login-pf-page .checkbox-label{margin:0}}.login-pf-page .btn-primary{margin-top:40px}.login-pf-page .login-pf-header{margin-bottom:20px;display:flex;flex-direction:column}@media (min-width:768px){.login-pf-page .login-pf-header{margin-bottom:30px}}.login-pf-page .login-pf-header h1,.login-pf-page .login-pf-header p{text-align:center}.login-pf-page .login-pf-header h1{font-size:16px}@media (min-width:768px){.login-pf-page .login-pf-header h1{font-size:24px}}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:auto;align-self:flex-end}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle{color:#4d5258;background:0 0;padding:0 15px 0 0;font-weight:300}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle:not(:focus){box-shadow:none;border:1px solid transparent}.login-pf-page .login-pf-header .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) .dropdown-toggle .caret{right:0}.login-pf-page .login-pf-signup{margin:40px 0 0;font-size:15px;text-align:center}.login-pf-page .login-pf-signup a{margin-left:10px}.login-pf-page .login-pf-settings{display:flex;justify-content:space-between;flex-wrap:wrap}.login-pf-page .login-pf-page-footer{display:flex;justify-content:center;flex-wrap:wrap}.login-pf-page .login-pf-page-footer-links{display:flex;margin:60px 0 0 0}.login-pf-page .login-pf-page-footer-links li:not(:last-of-type){position:relative;margin:0 20px 0 0}.login-pf-page .login-pf-page-footer-links li:not(:last-of-type):after{content:".";color:#fff;position:absolute;top:0;right:-10px}.login-pf-page .login-pf-page-footer-link{color:#fff;font-size:14px}.login-pf-page .login-pf-page-footer-sso-services{flex:1 0 100%;margin-top:40px;text-align:center;color:#fff}.login-pf-page .login-pf-page-footer-sso-services-logos{display:flex;flex-wrap:wrap;padding:0;margin:0;list-style:none;justify-content:center}.login-pf-page .login-pf-page-footer-sso-services-logos li{margin:0 5px 5px}.login-pf-page.login-pf-page-accounts{margin-left:20px;margin-right:20px}.login-pf-page .login-pf-accounts{display:flex;justify-content:space-between;flex-wrap:wrap;max-width:840px;margin-left:auto;margin-right:auto}.login-pf-page .login-pf-accounts .login-pf-header,.login-pf-page .login-pf-accounts .login-pf-signup{flex-basis:100%}.login-pf-page .login-pf-social-section{flex-basis:100%;padding:0}@media (min-width:768px){.login-pf-page .login-pf-social-section{flex:0 1 50%;max-width:50%}}@media (min-width:768px){.login-pf-page .login-pf-social-section:first-of-type{padding-right:40px}.login-pf-page .login-pf-social-section:last-of-type{padding-left:39px;border-left:1px solid #d1d1d1}}.login-pf-page .login-pf-social{margin:40px 0 0 0}@media (min-width:768px){.login-pf-page .login-pf-social{margin:0}.login-pf-page .login-pf-social-double-col{flex-wrap:wrap;display:flex;justify-content:space-between}.login-pf-page .login-pf-social-double-col .login-pf-social-link{flex-basis:48%}}.login-pf-page .login-pf-social:not(.login-pf-social-all) .login-pf-social-link-more{display:none}.login-pf-page .login-pf-social-link{margin-bottom:15px}.login-pf-page .login-pf-social-link a{display:block;padding:7px 0;font-size:14px;background:#f5f5f5;text-align:center;color:#72767b}.login-pf-page .login-pf-social-link a img{margin:0 10px 0 0;width:20px;height:20px}.login-pf-page .login-pf-social-link a:hover{text-decoration:none;background:#ededed}.login-pf-page .login-pf-social-toggle{float:right;padding:0}.login-pf-page .login-pf-social-toggle .caret{margin-left:5px}.login-pf-page .login-pf-social-toggle-active .caret{transform:rotate(-180deg)}.navbar-pf{background:#393f45;border:0;border-radius:0;border-top:3px solid #c00;margin-bottom:0;min-height:0}.navbar-pf .navbar-brand{color:#fff;height:auto;padding:12px 0;margin:0 0 0 20px}.navbar-pf .navbar-brand img{display:block}.navbar-pf .navbar-collapse{border-top:0;-webkit-box-shadow:none;box-shadow:none;padding:0}.navbar-pf .navbar-header{border-bottom:1px solid #53565b;float:none}.navbar-pf .navbar-nav{margin:0}.navbar-pf .navbar-nav>.active>a,.navbar-pf .navbar-nav>.active>a:focus,.navbar-pf .navbar-nav>.active>a:hover{background-color:#454c53;color:#fff}.navbar-pf .navbar-nav>li>a{color:#dbdada;line-height:1;padding:10px 20px;text-shadow:none}.navbar-pf .navbar-nav>li>a:focus,.navbar-pf .navbar-nav>li>a:hover{color:#fff}.navbar-pf .navbar-nav>.open>a,.navbar-pf .navbar-nav>.open>a:focus,.navbar-pf .navbar-nav>.open>a:hover{background-color:#454c53;color:#fff}.navbar-pf .navbar-nav .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;left:26px;margin:0;padding:2px 4px;position:absolute;min-width:10px;min-height:10px;top:6px}@media (min-width:768px){.navbar-pf .navbar-nav .badge{left:auto;right:6px;top:3px}}.navbar-pf .navbar-nav .badge.badge-pf-bordered{border:1px solid #393f45}@media (max-width:767px){.navbar-pf .navbar-nav .active .dropdown-menu,.navbar-pf .navbar-nav .active .navbar-persistent,.navbar-pf .navbar-nav .open .dropdown-menu{background-color:#3c434a!important;margin-left:0;padding-bottom:0;padding-top:0}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a,.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a:focus,.navbar-pf .navbar-nav .active .dropdown-menu>.active>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a:focus,.navbar-pf .navbar-nav .active .navbar-persistent>.active>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a:focus,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-pf .navbar-nav .open .dropdown-menu>.active>a:hover{background-color:#424950!important;color:#fff}.navbar-pf .navbar-nav .active .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent>li>a,.navbar-pf .navbar-nav .open .dropdown-menu>li>a{background-color:transparent;border:0;color:#dbdada;outline:0;padding-left:30px}.navbar-pf .navbar-nav .active .dropdown-menu>li>a:hover,.navbar-pf .navbar-nav .active .navbar-persistent>li>a:hover,.navbar-pf .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff}.navbar-pf .navbar-nav .active .dropdown-menu .divider,.navbar-pf .navbar-nav .active .navbar-persistent .divider,.navbar-pf .navbar-nav .open .dropdown-menu .divider{background-color:#53565b;margin:0 1px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-header,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-header,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-header{padding-bottom:0;padding-left:30px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.open .dropdown-toggle,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-toggle,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.open .dropdown-toggle{color:#fff}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu.pull-left,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.pull-left,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu.pull-left{float:none!important}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu>a:after,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu>a:after,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu>a:after{display:none}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-header,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-header,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-header{padding-left:45px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu{border:0;bottom:auto;-webkit-box-shadow:none;box-shadow:none;display:block;float:none;margin:0;min-width:0;padding:0;position:relative;left:auto;right:auto;top:auto}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu>li>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu>li>a{padding:5px 15px 5px 45px;line-height:20px}.navbar-pf .navbar-nav .active .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu>li>a,.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu .dropdown-menu>li>a,.navbar-pf .navbar-nav .open .dropdown-menu .dropdown-submenu .dropdown-menu .dropdown-menu>li>a{padding-left:60px}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu.open .dropdown-menu{display:block}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu>a:after{display:inline-block!important;position:relative;right:auto;top:1px}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-menu{display:none}.navbar-pf .navbar-nav .active .navbar-persistent .dropdown-submenu .dropdown-submenu>a:after{display:none!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu{background-color:#fff!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a:active{background-color:#def3ff!important;border-color:#bee1f4!important;color:#363636!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.active>a:active small{color:#9c9c9c!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.disabled>a{color:#9c9c9c!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a:active{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu>.selected>a:active small{color:rgba(255,255,255,.5)!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li>a.opt{border-bottom:1px solid transparent;border-top:1px solid transparent;color:#363636;padding-left:10px;padding-right:10px}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:active small{color:rgba(255,255,255,.5)!important}.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:focus small,.navbar-pf .navbar-nav .context-bootstrap-select .open>.dropdown-menu li a:hover small{color:#9c9c9c}.navbar-pf .navbar-nav .context-bootstrap-select>.open>.dropdown-menu{padding-bottom:5px;padding-top:5px}}.navbar-pf .navbar-persistent{display:none}.navbar-pf .active>.navbar-persistent{display:block}.navbar-pf .navbar-primary{float:none}.navbar-pf .navbar-primary .context{border-bottom:1px solid #53565b}.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group,.navbar-pf .navbar-primary .context.context-bootstrap-select .bootstrap-select.btn-group[class*=span]{margin:8px 20px 9px;width:auto}.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a{position:relative}.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a:after{content:"\f107";display:inline-block;font-family:FontAwesome;font-weight:400}@media (max-width:767px){.navbar-pf .navbar-primary>li>.navbar-persistent>.dropdown-submenu>a:after{height:10px;margin-left:4px;vertical-align:baseline}}.navbar-pf .navbar-toggle{border:0;margin:0;padding:10px 20px}.navbar-pf .navbar-toggle:focus,.navbar-pf .navbar-toggle:hover{background-color:transparent;outline:0}.navbar-pf .navbar-toggle:focus .icon-bar,.navbar-pf .navbar-toggle:hover .icon-bar{-webkit-box-shadow:0 0 3px #fff;box-shadow:0 0 3px #fff}.navbar-pf .navbar-toggle .icon-bar{background-color:#fff}.navbar-pf .navbar-utility{border-bottom:1px solid #53565b}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle{padding-left:36px;position:relative}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle .pficon-user{left:20px;position:absolute;top:10px}@media (max-width:767px){.navbar-pf .navbar-utility>li+li{border-top:1px solid #53565b}}@media (min-width:768px){.navbar-pf .navbar-brand{padding:7px 0 8px}.navbar-pf .navbar-nav>li>a{padding-bottom:14px;padding-top:14px}.navbar-pf .navbar-persistent{font-size:14px}.navbar-pf .navbar-primary{font-size:14px;background-image:-webkit-linear-gradient(top,#474c50 0,#383f43 100%);background-image:-o-linear-gradient(top,#474c50 0,#383f43 100%);background-image:linear-gradient(to bottom,#474c50 0,#383f43 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary.persistent-secondary .context .dropdown-menu{top:auto}.navbar-pf .navbar-primary.persistent-secondary .dropup .dropdown-menu{bottom:-5px;top:auto}.navbar-pf .navbar-primary.persistent-secondary>li{position:static}.navbar-pf .navbar-primary.persistent-secondary>li.active{margin-bottom:32px}.navbar-pf .navbar-primary.persistent-secondary>li.active>.navbar-persistent{display:block;left:0;position:absolute}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent{background:#f6f6f6;border-bottom:1px solid #cecdcd;padding:0;width:100%}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent a{text-decoration:none!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:before,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:hover:before{background:#0088ce;bottom:-1px;content:"";display:block;height:2px;left:20px;position:absolute;right:20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active:hover>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active>a:hover{color:#0088ce!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.active .active>a{color:#fff}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu:hover>.dropdown-menu{display:none}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-menu{display:block;left:20px;margin-top:1px;top:100%}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-toggle{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu.open>.dropdown-toggle:after{border-top-color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu>.dropdown-toggle{padding-right:35px!important}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.dropdown-submenu>.dropdown-toggle:after{position:absolute;right:20px;top:10px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open:before,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover:before{background:#bbb;bottom:-1px;content:"";display:block;height:2px;left:20px;position:absolute;right:20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open>a,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover>a{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li.open>a:after,.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li:hover>a:after{border-top-color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a{background-color:transparent;display:block;line-height:1;padding:9px 20px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a.dropdown-toggle{padding-right:35px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a.dropdown-toggle:after{font-size:15px;position:absolute;right:20px;top:9px}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li>a:hover{color:#252525}.navbar-pf .navbar-primary.persistent-secondary>li>.navbar-persistent>li a{color:#4d5258}.navbar-pf .navbar-primary>li>a{border-bottom:1px solid transparent;border-top:1px solid transparent;position:relative;margin:-1px 0 0}.navbar-pf .navbar-primary>li>a:hover{background-color:#4b5053;border-top-color:#949699;color:#dbdada;background-image:-webkit-linear-gradient(top,#5c6165 0,#4b5053 100%);background-image:-o-linear-gradient(top,#5c6165 0,#4b5053 100%);background-image:linear-gradient(to bottom,#5c6165 0,#4b5053 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary>.active>a,.navbar-pf .navbar-primary>.active>a:focus,.navbar-pf .navbar-primary>.active>a:hover,.navbar-pf .navbar-primary>.open>a,.navbar-pf .navbar-primary>.open>a:focus,.navbar-pf .navbar-primary>.open>a:hover{background-color:#64686c;border-bottom-color:#64686c;border-top-color:#949699;-webkit-box-shadow:none;box-shadow:none;color:#fff;background-image:-webkit-linear-gradient(top,#72757a 0,#64686c 100%);background-image:-o-linear-gradient(top,#72757a 0,#64686c 100%);background-image:linear-gradient(to bottom,#72757a 0,#64686c 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.context-bootstrap-select .filter-option{max-width:160px;text-overflow:ellipsis}.navbar-pf .navbar-primary li.context.dropdown{border-bottom:0}.navbar-pf .navbar-primary li.context.context-bootstrap-select,.navbar-pf .navbar-primary li.context>a{background-color:#505458;border-bottom-color:#65696d;border-right:1px solid #65696d;border-top-color:#64696d;font-weight:600;background-image:-webkit-linear-gradient(top,#585d61 0,#505458 100%);background-image:-o-linear-gradient(top,#585d61 0,#505458 100%);background-image:linear-gradient(to bottom,#585d61 0,#505458 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.context-bootstrap-select:hover,.navbar-pf .navbar-primary li.context>a:hover{background-color:#5a5e62;border-bottom-color:#6e7276;border-right-color:#6e7276;border-top-color:#6c7276;background-image:-webkit-linear-gradient(top,#62676b 0,#5a5e62 100%);background-image:-o-linear-gradient(top,#62676b 0,#5a5e62 100%);background-image:linear-gradient(to bottom,#62676b 0,#5a5e62 100%);background-repeat:repeat-x}.navbar-pf .navbar-primary li.context.open>a{background-color:#65696d;border-bottom-color:#6e7276;border-right-color:#777a7e;border-top-color:#767a7e;background-image:-webkit-linear-gradient(top,#6b7175 0,#65696d 100%);background-image:-o-linear-gradient(top,#6b7175 0,#65696d 100%);background-image:linear-gradient(to bottom,#6b7175 0,#65696d 100%);background-repeat:repeat-x}.navbar-pf .navbar-utility{border-bottom:0;font-size:11px;position:absolute;right:0;top:0}.navbar-pf .navbar-utility>.active>a,.navbar-pf .navbar-utility>.active>a:focus,.navbar-pf .navbar-utility>.active>a:hover,.navbar-pf .navbar-utility>.open>a,.navbar-pf .navbar-utility>.open>a:focus,.navbar-pf .navbar-utility>.open>a:hover{background:#5b6165;color:#fff}.navbar-pf .navbar-utility>li>a{border-left:1px solid #53565b;color:#fff!important;padding:7px 10px}.navbar-pf .navbar-utility>li>a:hover{background:#4a5053;border-left-color:#636466}.navbar-pf .navbar-utility>li.open>a{border-left-color:#6c6e70;color:#fff!important}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle{padding-left:26px}.navbar-pf .navbar-utility li.dropdown>.dropdown-toggle .pficon-user{left:10px;top:7px}.navbar-pf .navbar-utility .open .dropdown-menu{left:auto;right:0}.navbar-pf .navbar-utility .open .dropdown-menu .dropdown-menu{left:auto;right:100%}.navbar-pf .navbar-utility .open .dropdown-menu{border-top-width:0}.navbar-pf .open .dropdown-submenu>.dropdown-menu,.navbar-pf .open.bootstrap-select .dropdown-menu{border-top-width:1px!important}}@media (max-width:360px){.navbar-pf .navbar-brand{margin-left:10px;width:75%}.navbar-pf .navbar-brand img{height:auto;max-width:100%}.navbar-pf .navbar-toggle{padding-left:0}}.navbar-pf-alt{background-color:#030303;background-image:"bg-navbar-pf-alt.svg";background-repeat:no-repeat;background-size:auto 100%;border:none;border-radius:0;border-top:0 solid #c00;margin-bottom:0}.navbar-pf-alt .infotip.bottom-right .arrow{left:90%}.layout-pf-alt-fixed .navbar-pf-alt{left:0;position:fixed;right:0;top:0;z-index:1030}.navbar-pf-alt .nav.navbar-nav>li>.dropdown-menu.infotip{margin-top:0}.navbar-pf-alt .nav .nav-item-iconic{cursor:pointer;line-height:1;max-height:60px;padding:22px 12px;position:relative}.navbar-pf-alt .nav .nav-item-iconic:focus,.navbar-pf-alt .nav .nav-item-iconic:hover{background-color:transparent}.navbar-pf-alt .nav .nav-item-iconic:focus .caret,.navbar-pf-alt .nav .nav-item-iconic:focus .fa,.navbar-pf-alt .nav .nav-item-iconic:focus .glyphicon,.navbar-pf-alt .nav .nav-item-iconic:focus .pficon,.navbar-pf-alt .nav .nav-item-iconic:hover .caret,.navbar-pf-alt .nav .nav-item-iconic:hover .fa,.navbar-pf-alt .nav .nav-item-iconic:hover .glyphicon,.navbar-pf-alt .nav .nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-alt .nav .nav-item-iconic .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;margin:0 0 -11px -12px;min-width:0;padding:2px 4px}.navbar-pf-alt .nav .nav-item-iconic .caret,.navbar-pf-alt .nav .nav-item-iconic .fa,.navbar-pf-alt .nav .nav-item-iconic .pficon{color:#d1d1d1;font-size:16px}.navbar-pf-alt .nav .nav-item-iconic .caret{font-size:12px;width:auto}.navbar-pf-alt .nav .open>.nav-item-iconic,.navbar-pf-alt .nav .open>.nav-item-iconic:focus,.navbar-pf-alt .nav .open>.nav-item-iconic:hover{background:0 0}.navbar-pf-alt .nav .open>.nav-item-iconic .caret,.navbar-pf-alt .nav .open>.nav-item-iconic .fa,.navbar-pf-alt .nav .open>.nav-item-iconic .pficon,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .caret,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .fa,.navbar-pf-alt .nav .open>.nav-item-iconic:focus .pficon,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .caret,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .fa,.navbar-pf-alt .nav .open>.nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-alt .navbar-brand{color:#fff;height:auto;margin:0 0 0 25px;min-height:35px;padding:18px 0 22px}.navbar-pf-alt .navbar-brand .navbar-brand-name{display:inline;margin-left:0 15px 0 0;margin-right:0 15px 0 0}@media (max-width:355px){.navbar-pf-alt .navbar-brand .navbar-brand-name{display:none}}.navbar-pf-alt .navbar-brand .navbar-brand-icon{display:inline;margin-left:0 15px 0 0;margin-right:0 15px 0 0}.navbar-pf-alt .navbar-iconic{margin-right:0}.navbar-pf-alt .navbar-toggle{border:0;display:block;float:left;margin:14px 15px}.navbar-pf-alt .navbar-toggle:focus .icon-bar,.navbar-pf-alt .navbar-toggle:hover .icon-bar{background:#fff}.navbar-pf-alt .navbar-toggle+.navbar-brand{margin-left:0}.navbar-pf-alt .navbar-toggle .icon-bar{background:#d1d1d1}.navbar-pf-vertical{background-color:#1d1d1d;border:none;border-radius:0;border-top:2px solid #c00;margin-bottom:0}.navbar-pf-vertical .infotip.bottom-right .arrow{left:90%}.layout-pf-fixed .navbar-pf-vertical{left:0;position:fixed;right:0;top:0;z-index:1030}.navbar-pf-vertical .nav.navbar-nav>li>.dropdown-menu.infotip{margin-top:0}.navbar-pf-vertical .nav .nav-item-iconic{color:#d1d1d1;cursor:pointer;line-height:1;max-height:58px;padding:21px 12px;position:relative}.navbar-pf-vertical .nav .nav-item-iconic:focus,.navbar-pf-vertical .nav .nav-item-iconic:hover{color:#fff;background-color:transparent}.navbar-pf-vertical .nav .nav-item-iconic:focus .caret,.navbar-pf-vertical .nav .nav-item-iconic:focus .fa,.navbar-pf-vertical .nav .nav-item-iconic:focus .glyphicon,.navbar-pf-vertical .nav .nav-item-iconic:focus .pficon,.navbar-pf-vertical .nav .nav-item-iconic:hover .caret,.navbar-pf-vertical .nav .nav-item-iconic:hover .fa,.navbar-pf-vertical .nav .nav-item-iconic:hover .glyphicon,.navbar-pf-vertical .nav .nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-vertical .nav .nav-item-iconic .badge{background-color:#0088ce;border-radius:20px;color:#fff;cursor:pointer;font-size:9px;font-weight:700;left:20px;margin:0;padding:2px 4px;position:absolute;min-width:10px;min-height:10px;top:18px}.navbar-pf-vertical .nav .nav-item-iconic .badge.badge-pf-bordered{border:1px solid #1d1d1d}.navbar-pf-vertical .nav .nav-item-iconic .caret,.navbar-pf-vertical .nav .nav-item-iconic .fa,.navbar-pf-vertical .nav .nav-item-iconic .pficon{color:#d1d1d1;font-size:16px}.navbar-pf-vertical .nav .nav-item-iconic .caret{font-size:12px;width:auto}.navbar-pf-vertical .nav .open>.nav-item-iconic,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover{background:0 0}.navbar-pf-vertical .nav .open>.nav-item-iconic .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic .pficon,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic:focus .pficon,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .caret,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .fa,.navbar-pf-vertical .nav .open>.nav-item-iconic:hover .pficon{color:#fff}.navbar-pf-vertical .navbar-brand{color:#fff;height:auto;margin:0 0 0 25px;min-height:35px;padding:11px 0 12px}.navbar-pf-vertical .navbar-brand .navbar-brand-name{display:inline-block;margin:0 15px 0 0}@media (max-width:480px){.navbar-pf-vertical .navbar-brand .navbar-brand-name{display:none}}.navbar-pf-vertical .navbar-brand .navbar-brand-icon{display:inline-block;margin:0 15px 0 0;max-height:35px}.navbar-pf-vertical .navbar-brand .navbar-brand-txt{line-height:34px}.navbar-pf-vertical .navbar-iconic{margin-right:0}.navbar-pf-vertical .navbar-toggle{border:0;display:block;float:left;margin:13px 15px}.navbar-pf-vertical .navbar-toggle:focus .icon-bar,.navbar-pf-vertical .navbar-toggle:hover .icon-bar{background:#fff}.navbar-pf-vertical .navbar-toggle+.navbar-brand{margin-left:0}.navbar-pf-vertical .navbar-toggle .icon-bar{background:#d1d1d1}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value{transition:opacity 0s .1s,opacity .1s linear}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .badge{transition:all .2s cubic-bezier(.35,0,.25,1)}.layout-pf-alt-fixed.transitions .nav-pf-vertical-alt .list-group-item .list-group-item-value{transition:opacity .5s ease-out;transition-delay:150ms}.nav-pf-vertical-alt{background:#fff}.ie9.layout-pf-alt-fixed .nav-pf-vertical-alt{box-sizing:content-box}.layout-pf-alt-fixed .nav-pf-vertical-alt{border-right:1px solid #d1d1d1;bottom:0;overflow-x:hidden;overflow-y:auto;left:0;position:fixed;top:60px;width:250px;z-index:1030}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed{width:75px!important}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .badge{padding:2px 3px;right:21px;top:36px}.layout-pf-alt-fixed .nav-pf-vertical-alt.collapsed .list-group-item .list-group-item-value{opacity:0}.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden{display:none}.layout-pf-alt-fixed .nav-pf-vertical-alt.hidden.show-mobile-nav{box-shadow:0 0 3px rgba(3,3,3,.15);display:block!important}.layout-pf-alt-fixed-with-footer .nav-pf-vertical-alt{bottom:37px}.nav-pf-vertical-alt .list-group{border-top:0;margin-bottom:0}.nav-pf-vertical-alt .list-group-item{padding:0}.nav-pf-vertical-alt .list-group-item a{color:#363636;display:block;font-size:14px;height:63px;padding:17px 20px 17px 25px;position:relative;white-space:nowrap}.nav-pf-vertical-alt .list-group-item a:focus{color:#363636;text-decoration:none}.nav-pf-vertical-alt .list-group-item a:hover{color:#39a5dc;text-decoration:none}.nav-pf-vertical-alt .list-group-item.active{background-color:#fff;border-color:#f5f5f5}.nav-pf-vertical-alt .list-group-item.active:before{background:#39a5dc;content:" ";display:block;height:100%;left:0;position:absolute;top:0;width:5px}.nav-pf-vertical-alt .list-group-item.active a{color:#39a5dc}.nav-pf-vertical-alt .list-group-item .badge{background:#363636;border:1px solid #fff;border-radius:3px;color:#fff;font-weight:700;font-size:9px;padding:5px;position:absolute;right:15px;text-align:center;top:21px}.nav-pf-vertical-alt .list-group-item .badge.notifications{background:#0088ce}.nav-pf-vertical-alt .list-group-item .fa,.nav-pf-vertical-alt .list-group-item .glyphicon,.nav-pf-vertical-alt .list-group-item .pficon{float:left;font-size:18px;line-height:30px;margin-right:10px;text-align:center;width:18px}.nav-pf-vertical-alt .list-group-item .list-group-item-value{display:inline-block;line-height:30px;opacity:1;overflow:hidden;text-overflow:ellipsis;width:140px}.nav-pf-vertical-alt .list-group-item-separator{border-top-width:5px}.sidebar-pf .nav-pf-vertical-alt{margin-left:-20px;margin-right:-20px}.drawer-pf{background-color:#fafafa;border:1px solid #d1d1d1;-webkit-box-shadow:0 6px 12px rgba(3,3,3,.175);box-shadow:0 6px 12px rgba(3,3,3,.175);overflow-y:auto;position:absolute;right:0;width:320px;z-index:2}.drawer-pf .panel{border-bottom:none;border-left:none;border-right:none}.drawer-pf .panel-group .panel-heading+.panel-collapse .panel-body{border-top:none;border-bottom:1px solid #d1d1d1;padding:0}.drawer-pf .panel-counter{display:block;font-style:italic;line-height:1.2;padding-left:18px;padding-top:5px}.drawer-pf .panel-heading{border-bottom:1px solid #d1d1d1}.drawer-pf .panel-group{bottom:0;margin-bottom:0;position:absolute;top:25px;width:100%}.drawer-pf .panel-title a{cursor:pointer;display:block}.drawer-pf.drawer-pf-expanded{width:inherit}@media (max-width:767px){.drawer-pf.drawer-pf-expanded{left:0;width:100%}}@media (min-width:767px){.drawer-pf.drawer-pf-expanded{left:270px}}.drawer-pf.drawer-pf-expanded .drawer-pf-toggle-expand:before{content:"\f101"}.drawer-pf .blank-slate-pf{border:0;margin-bottom:0;padding:30px}.drawer-pf .blank-slate-pf .blank-slate-pf-icon{font-size:3em;line-height:1em}.drawer-pf .blank-slate-pf h1{font-size:1em;margin-bottom:0;margin-top:15px}.drawer-pf-close,.drawer-pf-toggle-expand{color:#252525;cursor:pointer;line-height:inherit;padding:2px 10px;position:absolute}.drawer-pf-close:focus,.drawer-pf-close:hover,.drawer-pf-toggle-expand:focus,.drawer-pf-toggle-expand:hover{color:#0088ce;text-decoration:none}.drawer-pf-toggle-expand{left:0}.drawer-pf-toggle-expand:before{content:"\f100";font-family:FontAwesome}.drawer-pf-toggle-expand:hover{color:#0088ce}.drawer-pf-close{right:0}.drawer-pf-action{display:flex;border-bottom:1px solid #d1d1d1}.drawer-pf-action .btn-link{color:#0088ce;padding:10px 0}.drawer-pf-action .btn-link .fa,.drawer-pf-action .btn-link .pficon{margin-right:3px}.drawer-pf-action .btn-link .pficon-close{position:relative;top:1px}.drawer-pf-action .btn-link:hover{color:#00659c}.drawer-pf-action-link{border-left:solid 1px #d1d1d1;flex:1 1 0%;margin:10px 0;text-align:center}.drawer-pf-action-link:first-of-type{border-left-width:0}.drawer-pf-action-link .btn-link{padding:0}.drawer-pf-loading{color:#4d5258;font-size:14px;padding:20px 15px}.drawer-pf-notification{border-bottom:1px solid #d1d1d1;padding:15px}.drawer-pf-notification .date{border-right:1px solid #aaa;display:inline-block;line-height:1;margin-right:5px;padding-right:9px}.drawer-pf-notification>.dropdown-kebab-pf{margin-top:-3px}.drawer-pf-notification .pficon{font-size:14px;margin-top:3px}.drawer-pf-notification:last-of-type{border-bottom:none}.drawer-pf-notification:hover{background-color:#def3ff}.drawer-pf-notification.unread .drawer-pf-notification-message{font-weight:700;cursor:pointer}.drawer-pf-notification.expanded-notification .date{border-right:none;padding-right:0}.drawer-pf-notification-content{cursor:default}.drawer-pf-notification-info,.drawer-pf-notification-message{display:block;padding-left:27px;padding-right:19px}.expanded-notification .drawer-pf-notification-info,.expanded-notification .drawer-pf-notification-message{display:inline-block}.drawer-pf-title{background-color:#fafafa;border-bottom:1px solid #d1d1d1;position:absolute;width:100%}.drawer-pf-title h3{font-size:12px;margin:0;padding:6px 15px}.drawer-pf-notification.expanded-notification .drawer-pf-notification-content{display:flex}@media (max-width:991px){.drawer-pf-notification.expanded-notification .drawer-pf-notification-content{flex-direction:column}}.drawer-pf-notification.expanded-notification .drawer-pf-notification-content .drawer-pf-notification-message{flex:1 1}.navbar-pf-vertical .drawer-pf{height:calc(100vh - 58px - 20px);top:58px}@media (max-width:767px){.navbar-pf-vertical .drawer-pf{width:100%;height:calc(100vh - 58px)}}.navbar-pf-vertical .nav .drawer-pf-trigger .drawer-pf-trigger-icon{border-left:1px solid #53565b;border-right:1px solid #53565b;padding-left:15px;padding-right:15px}.navbar-pf-vertical .nav .drawer-pf-trigger.open .drawer-pf-trigger-icon{background-color:#4a5053}.navbar-pf .drawer-pf{height:calc(100vh - 26px - 20px);top:26px}@media (max-width:767px){.navbar-pf .drawer-pf{width:100%;height:calc(100vh - 26px - 32px);top:calc(26px + 8px)}}.navbar-pf .drawer-pf-trigger-icon{cursor:pointer}.search-pf.has-button{border-collapse:separate;display:table}.search-pf.has-button .form-group{display:table-cell;width:100%}.search-pf.has-button .form-group .btn{-webkit-box-shadow:none;box-shadow:none;float:left;margin-left:-1px}.search-pf.has-button .form-group .btn.btn-lg{font-size:14.5px}.search-pf.has-button .form-group .btn.btn-sm{font-size:10.7px}.search-pf.has-button .form-group .form-control{float:left}.search-pf .has-clear .clear{background:rgba(255,255,255,0);border:0;height:25px;line-height:1;padding:0;position:absolute;right:1px;top:1px;width:28px}.search-pf .has-clear .clear:focus{outline:0}.search-pf .has-clear .form-control{padding-right:30px}.search-pf .has-clear .form-control::-ms-clear{display:none}.search-pf .has-clear .input-lg+.clear{height:31px;width:28px}.search-pf .has-clear .input-sm+.clear{height:20px;width:28px}.search-pf .has-clear .input-sm+.clear span{font-size:10px}.search-pf .has-clear .search-pf-input-group{position:relative}.sidebar-header{border-bottom:1px solid #ececec;padding-bottom:11px;margin:50px 0 20px}.sidebar-header .actions{margin-top:-2px}.sidebar-pf .sidebar-header+.list-group{border-top:0;margin-top:-10px}.sidebar-pf .sidebar-header+.list-group .list-group-item{background:0 0;border-color:#ececec;padding-left:0}.sidebar-pf .sidebar-header+.list-group .list-group-item-heading{font-size:12px}.sidebar-pf .nav-category h2{color:#9c9c9c;font-size:12px;font-weight:400;line-height:21px;margin:0;padding:8px 0}.sidebar-pf .nav-category+.nav-category{margin-top:10px}.sidebar-pf .nav-pills>li.active>a{background:#0088ce!important;border-color:#0088ce!important;color:#fff}@media (min-width:768px){.sidebar-pf .nav-pills>li.active>a:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:1px}}.sidebar-pf .nav-pills>li.active>a .fa{color:#fff}.sidebar-pf .nav-pills>li>a{border-bottom:1px solid transparent;border-radius:0;border-top:1px solid transparent;color:#363636;font-size:13px;line-height:21px;padding:1px 20px}.sidebar-pf .nav-pills>li>a:hover{background:#def3ff;border-color:#bee1f4}.sidebar-pf .nav-pills>li>a .fa{color:#6a7079;font-size:15px;margin-right:10px;text-align:center;vertical-align:middle;width:15px}.sidebar-pf .nav-stacked{margin-left:-20px;margin-right:-20px}.sidebar-pf .nav-stacked li+li{margin-top:0}.sidebar-pf .panel{background:0 0}.sidebar-pf .panel-body{padding:6px 20px}.sidebar-pf .panel-body .nav-pills>li>a{padding-left:37px}.sidebar-pf .panel-heading{padding:9px 20px}.sidebar-pf .panel-title{font-size:12px}.sidebar-pf .panel-title>a:before{display:inline-block;margin-left:1px;margin-right:4px;width:9px}.sidebar-pf .panel-title>a.collapsed:before{margin-left:3px;margin-right:2px}@media (min-width:767px){.sidebar-header-bleed-left{margin-left:-20px}.sidebar-header-bleed-left>h2{margin-left:20px}.sidebar-header-bleed-right{margin-right:-20px}.sidebar-header-bleed-right .actions{margin-right:20px}.sidebar-header-bleed-right>h2{margin-right:20px}.sidebar-header-bleed-right+.list-group{margin-right:-20px}.sidebar-pf .panel-group .panel-default,.sidebar-pf .treeview{border-left:0;border-right:0;margin-left:-20px;margin-right:-20px}.sidebar-pf .treeview{margin-top:5px}.sidebar-pf .treeview .list-group-item{padding-left:20px;padding-right:20px}.sidebar-pf .treeview .list-group-item.node-selected:after{content:"\f105";font-family:FontAwesome;display:block;position:absolute;right:10px;top:1px}}@media (min-width:768px){.sidebar-pf{background:#fafafa}.sidebar-pf.sidebar-pf-left{border-right:1px solid #d1d1d1}.sidebar-pf.sidebar-pf-right{border-left:1px solid #d1d1d1}.sidebar-pf>.nav-category,.sidebar-pf>.nav-stacked{margin-top:5px}}.skiplink-pf{position:absolute;top:12px;left:-300%;z-index:1050}.skiplink-pf:focus{left:10px}@keyframes rotation{from{transform:rotate(0)}to{transform:rotate(359deg)}}.spinner{animation:rotation .6s infinite linear;border-bottom:4px solid rgba(3,3,3,.25);border-left:4px solid rgba(3,3,3,.25);border-right:4px solid rgba(3,3,3,.25);border-radius:100%;border-top:4px solid rgba(3,3,3,.75);height:24px;margin:0 auto;position:relative;width:24px}.spinner.spinner-inline{display:inline-block;margin-right:3px}.spinner.spinner-lg{border-width:5px;height:30px;width:30px}.spinner.spinner-sm{border-width:3px;height:18px;width:18px}.spinner.spinner-xs{border-width:2px;height:12px;width:12px}.spinner.spinner-inverse{border-bottom-color:rgba(255,255,255,.25);border-left-color:rgba(255,255,255,.25);border-right-color:rgba(255,255,255,.25);border-top-color:rgba(255,255,255,.75)}.ie9 .spinner{background:url(../img/spinner.gif) no-repeat;border:0}.ie9 .spinner.spinner-inverse{background-image:url(../img/spinner-inverse.gif)}.ie9 .spinner.spinner-inverse-lg{background-image:url(../img/spinner-inverse-lg.gif)}.ie9 .spinner.spinner-inverse-sm{background-image:url(../img/spinner-inverse-sm.gif)}.ie9 .spinner.spinner-inverse-xs{background-image:url(../img/spinner-inverse-xs.gif)}.ie9 .spinner.spinner-lg{background-image:url(../img/spinner-lg.gif)}.ie9 .spinner.spinner-sm{background-image:url(../img/spinner-sm.gif)}.ie9 .spinner.spinner-xs{background-image:url(../img/spinner-xs.gif)}.prettyprint .atn,.prettyprint .com,.prettyprint .fun,.prettyprint .var{color:#3f9c35}.prettyprint .atv,.prettyprint .str{color:#a30000}.prettyprint .clo,.prettyprint .dec,.prettyprint .kwd,.prettyprint .opn,.prettyprint .pln,.prettyprint .pun{color:#363636}.prettyprint .lit,.prettyprint .tag,.prettyprint .typ{color:#00659c}.prettyprint ol.linenums{margin-bottom:0}table.dataTable{height:100%;margin-bottom:0;max-width:none!important}table.dataTable tbody>tr>td.table-view-pf-actions{padding:0;vertical-align:middle}table.dataTable tbody>tr:hover>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable tbody>tr.selected{color:#fff;background-color:#0088ce}table.dataTable tbody>tr.selected>td{border-bottom-color:#00659c}table.dataTable tbody>tr.selected>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable tbody>tr.selected:hover>td{background-color:inherit;border-bottom-color:#00659c}table.dataTable tbody>tr.selected:hover>td.table-view-pf-actions{background-color:#f5f5f5;border-bottom-color:#d1d1d1}table.dataTable thead .sorting,table.dataTable thead .sorting_asc,table.dataTable thead .sorting_asc_disabled,table.dataTable thead .sorting_desc,table.dataTable thead .sorting_desc_disabled{cursor:pointer}table.dataTable thead .sorting_asc,table.dataTable thead .sorting_desc{color:#0088ce!important;position:relative}table.dataTable thead .sorting_asc:after,table.dataTable thead .sorting_desc:after{content:"\f107";font-family:FontAwesome;font-size:10px;font-weight:400;height:9px;left:7px;line-height:12px;position:relative;top:2px;vertical-align:baseline;width:12px}table.dataTable thead .sorting_asc:before,table.dataTable thead .sorting_desc:before{background:#0088ce;content:"";height:2px;position:absolute;left:0;top:0;width:100%}table.dataTable thead .sorting_asc:after{content:"\f106";top:-3px}table.dataTable th:active{outline:0}.table-view-pf-empty.blank-slate-pf{background-color:#f5f5f5;border:1px solid #d1d1d1;border-radius:0;margin-top:-1px}.table-view-pf-toolbar.toolbar-pf{background-color:#f5f5f5;border-bottom:none;border-left:1px solid #d1d1d1;border-right:1px solid #d1d1d1;border-top:1px solid #d1d1d1;box-shadow:none;margin-left:0;margin-right:0}.table-view-pf-toolbar.toolbar-pf .toolbar-pf-results{border-top:1px solid #d1d1d1;min-height:40px;line-height:40px}.table-view-pf-toolbar-external.toolbar-pf{border-bottom:none;border-top:none;box-shadow:none}.table-view-pf-toolbar-external.toolbar-pf .toolbar-pf-results{border-top:1px solid #d1d1d1;min-height:40px;line-height:40px}.table-view-pf-colvis-menu>li{padding:5px 10px}.table-view-pf-colvis-menu>li:hover{background-color:#def3ff}.table-view-pf-colvis-menu>li>input{margin-top:0;margin-right:10px;vertical-align:middle}.table-view-pf-colvis-menu>li>label{margin-bottom:0}.table-view-pf-actions{background-color:#f1f1f1;height:100%}.table-view-pf-actions .btn,.table-view-pf-actions .dropdown-toggle{border:none;box-shadow:none;height:100%;width:100%}.table-view-pf-actions .dropdown,.table-view-pf-actions .table-view-pf-btn{height:100%}.table-view-pf-actions .dropdown-menu.dropdown-menu-right{right:-5px}.table-view-pf-actions:last-child{width:24px}.table-view-pf-select{width:33px}.table-view-pf-select-results{text-align:right}.bootstrap-datetimepicker-widget a[data-action]{border:0;box-shadow:none;color:#363636;display:block;padding-bottom:4px;padding-top:4px}.bootstrap-datetimepicker-widget a[data-action]:hover{color:#0088ce}.bootstrap-datetimepicker-widget.dropdown-menu{left:0!important;padding:0;width:calc(100% - 25px)}.bootstrap-datetimepicker-widget.dropdown-menu:after,.bootstrap-datetimepicker-widget.dropdown-menu:before{content:none}.bootstrap-datetimepicker-widget.dropdown-menu.top{margin-bottom:-1px}.bootstrap-datetimepicker-widget.dropdown-menu.bottom{margin-top:-1px}.bootstrap-datetimepicker-widget .timepicker-hour{width:100%}.bootstrap-datetimepicker-widget .timepicker-hour:after{content:":";float:right}.timepicker-hours table td,.timepicker-minutes table td{font-weight:700;line-height:30px;height:30px}.timepicker-hours table td:hover,.timepicker-minutes table td:hover{color:#0088ce}.timepicker-hours .table-condensed>tbody>tr>td,.timepicker-minutes .table-condensed>tbody>tr>td{padding:0}.time-picker-pf .input-group-addon .fa,.time-picker-pf .input-group-addon .pficon{width:12px}.time-picker-pf .input-group-addon:not(.active){box-shadow:none}.timepicker-picker table td a span,.timepicker-picker table td span{height:24px;line-height:24px;margin:0;width:100%}.timepicker-picker .table-condensed>tbody>tr>td{height:25px;line-height:18px;padding:0}.timepicker-picker button[data-action]{padding-bottom:0;padding-top:0}.timepicker-picker .separator{display:none}.timepicker-picker tr:nth-child(2) td{background-color:#def3ff;border-color:#bee1f4;border-style:solid;border-width:1px;border-left:0;border-right:0}.toast-pf{background-color:#fff;border-color:#bbb;box-shadow:0 2px 6px rgba(3,3,3,.2);padding-left:68px;margin-bottom:5px}.toast-pf.alert-danger>.pficon{background-color:#c00}.toast-pf.alert-info>.pficon{background-color:#8b8d8f}.toast-pf.alert-success>.pficon{background-color:#3f9c35}.toast-pf.alert-warning>.pficon{background-color:#ec7a08}.toast-pf .dropdown-kebab-pf{margin-left:10px}.toast-pf>.pficon{background-color:#4d5258;bottom:-1px;box-shadow:2px 0 5px -2px rgba(3,3,3,.2);left:-1px;padding-top:10px;text-align:center;top:-1px;width:53px}.toast-pf>.pficon:before{color:rgba(255,255,255,.74)}.toast-pf .toast-pf-action{margin-left:15px}.toast-pf .dropdown-kebab-pf .btn-link{padding-top:0;padding-bottom:0;vertical-align:text-bottom}@media (min-width:992px){.toast-pf{display:inline-block}}@media (min-width:992px){.toast-pf-max-width{max-width:31.1%}}.toast-pf-top-right{left:20px;position:absolute;right:20px;top:12px;z-index:1055}@media (min-width:992px){.toast-pf-top-right{left:auto}}.toast-notifications-list-pf{margin-left:20px;position:fixed;right:20px;top:80px;z-index:1055}.toast-notifications-list-pf .toast-pf{clear:both;float:right}@media (min-width:768px){.toast-notifications-list-pf{max-width:calc(50%)}}@media (min-width:992px){.toast-notifications-list-pf{max-width:calc(33.1%)}}.toolbar-pf{background:#fff;border-bottom:1px solid #d1d1d1;box-shadow:0 1px 0 rgba(3,3,3,.045);padding-top:10px}.toolbar-pf .form-group{margin-bottom:10px}@media (min-width:768px){.toolbar-pf .form-group{border-right:1px solid #d1d1d1;float:left;margin-bottom:0;padding-left:20px;padding-right:20px}}.toolbar-pf .form-group:last-child{border-right:0;margin-bottom:0;padding-right:0}.toolbar-pf .form-group .btn+.btn,.toolbar-pf .form-group .btn+.btn-group,.toolbar-pf .form-group .btn-group+.btn,.toolbar-pf .form-group .btn-group+.btn-group{margin-left:5px}.toolbar-pf .form-group .btn+.btn-link,.toolbar-pf .form-group .btn+.dropdown,.toolbar-pf .form-group .btn-group+.btn-link,.toolbar-pf .form-group .btn-group+.dropdown{margin-left:10px}.toolbar-pf .form-group .btn-link{color:#252525;font-size:16px;line-height:1;padding:4px 0}.toolbar-pf .form-group .btn-link:active,.toolbar-pf .form-group .btn-link:focus,.toolbar-pf .form-group .btn-link:hover{color:#0088ce}.toolbar-pf .form-group .dropdown-kebab-pf .btn-link{padding:4px 10px;margin-left:-10px;margin-right:-10px}.toolbar-pf-actions{display:table;margin-bottom:10px;width:100%}@media (min-width:768px){.toolbar-pf-actions .toolbar-pf-filter{padding-left:0}}.toolbar-pf-view-selector{font-size:16px}.toolbar-pf-view-selector .btn-link.active{color:#0088ce;cursor:default}.toolbar-pf-action-right{float:right}@media (max-width:768px){.toolbar-pf-action-right{float:none}}.toolbar-pf-find{font-size:14px;position:relative}.find-pf-dropdown-container{background:#fff;border:solid 1px #bbb;display:none;right:-20px;padding:5px;position:absolute;top:35px;width:300px;z-index:10000}@media (max-width:768px){.find-pf-dropdown-container{left:30px;top:-5px;width:calc(100% - 30px)}}.find-pf-dropdown-container:after,.find-pf-dropdown-container:before{content:"";position:absolute}.find-pf-dropdown-container:before{border-bottom:11px solid #bbb;border-left:11px solid transparent;border-right:11px solid transparent;right:35px;top:-12px}.toolbar-pf-find:last-child .find-pf-dropdown-container:before{right:15px}@media (max-width:768px){.find-pf-dropdown-container:before{border-bottom:11px solid transparent;border-right:11px solid #bbb;border-top:11px solid transparent;left:-22px;right:initial;top:8px}}.find-pf-dropdown-container:after{border-bottom:10px solid #fff;border-left:10px solid transparent;border-right:10px solid transparent;right:36px;top:-10px}.toolbar-pf-find:last-child .find-pf-dropdown-container:after{right:16px}@media (max-width:768px){.find-pf-dropdown-container:after{border-bottom:10px solid transparent;border-right:10px solid #fff;border-top:10px solid transparent;left:-20px;right:initial;top:9px}}.find-pf-dropdown-container input{height:30px;padding:5px 117px 5px 5px;width:100%}.find-pf-dropdown-container .find-pf-buttons{position:absolute;right:10px;top:5px}.find-pf-dropdown-container .find-pf-buttons .btn{border:none;cursor:pointer;margin-left:0!important;padding:0;width:18px}.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-down,.find-pf-dropdown-container .find-pf-buttons .btn .fa-angle-up{font-weight:700;font-size:18px}.find-pf-dropdown-container .find-pf-buttons .btn .pficon-close{font-size:14px}.find-pf-dropdown-container .find-pf-buttons span{height:30px;line-height:30px;vertical-align:middle}.find-pf-dropdown-container .find-pf-buttons .find-pf-nums{color:#8b8d8f;margin-right:3px}.toolbar-pf-results{border-top:1px solid #d1d1d1;margin-top:10px}.toolbar-pf-results h5,.toolbar-pf-results p,.toolbar-pf-results ul{display:inline-block;line-height:26.66666667px;margin-bottom:0;margin-top:0}@media (min-width:768px){.toolbar-pf-results h5,.toolbar-pf-results p,.toolbar-pf-results ul{line-height:40px}}.toolbar-pf-results h5{font-weight:700;margin-right:20px}.toolbar-pf-results .label{font-size:11px}.toolbar-pf-results .label a{color:#fff;display:inline-block;margin-left:5px}.nav-pf-vertical{background:#292e34;border-right:1px solid #292e34;bottom:0;left:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;width:200px;z-index:1030}.layout-pf-fixed-with-footer .nav-pf-vertical{bottom:37px}.ie9.layout-pf-fixed .nav-pf-vertical{box-sizing:content-box}.nav-pf-vertical.hidden.show-mobile-nav{box-shadow:0 0 3px rgba(3,3,3,.15);display:block!important}.nav-pf-vertical.hide-nav-pf{visibility:hidden!important}.nav-pf-vertical .list-group{border-top:0;margin-bottom:0}.nav-pf-vertical .list-group-item{background-color:transparent;border-color:#030303;padding:0}.nav-pf-vertical .list-group-item>a{background-color:transparent;color:#d1d1d1;cursor:pointer;display:block;font-size:14px;font-weight:400;height:63px;line-height:26px;padding:17px 20px 17px 25px;position:relative;white-space:nowrap;width:200px}@supports (display:flex){.nav-pf-vertical .list-group-item>a{display:flex;padding-right:0}}.nav-pf-vertical .list-group-item>a .fa,.nav-pf-vertical .list-group-item>a .glyphicon,.nav-pf-vertical .list-group-item>a .pficon{color:#72767b;float:left;font-size:20px;line-height:26px;margin-right:10px;text-align:center;width:24px}.nav-pf-vertical .list-group-item>a:hover{text-decoration:none}.nav-pf-vertical .list-group-item.active>a,.nav-pf-vertical .list-group-item:hover>a{background-color:#393f44;color:#fff;font-weight:600}.nav-pf-vertical .list-group-item.active>a .fa,.nav-pf-vertical .list-group-item.active>a .glyphicon,.nav-pf-vertical .list-group-item.active>a .pficon,.nav-pf-vertical .list-group-item:hover>a .fa,.nav-pf-vertical .list-group-item:hover>a .glyphicon,.nav-pf-vertical .list-group-item:hover>a .pficon{color:#39a5dc}.nav-pf-vertical .list-group-item.active>a:before{background:#39a5dc;content:" ";height:100%;left:0;position:absolute;top:0;width:3px}.nav-pf-vertical .list-group-item.active:hover{background-color:transparent;border-color:#030303}.nav-pf-vertical .list-group-item .list-group-item-value{display:block;line-height:25px;max-width:120px;overflow:hidden;text-overflow:ellipsis}@supports (display:flex){.nav-pf-vertical .list-group-item .list-group-item-value{flex:1;max-width:none;padding-right:15px}}.nav-pf-vertical .list-group-item-separator{border-top-color:#030303;border-top-width:2px}.nav-pf-vertical.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-vertical-with-badges .list-group-item>a{width:250px}.nav-pf-vertical h5{color:#fff;cursor:default;font-size:13px;font-weight:600;margin:30px 20px 10px 20px}.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .fa,.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .glyphicon,.nav-pf-vertical.hidden-icons-pf>.list-group>.list-group-item>a .pficon{display:none}.nav-pf-vertical.hidden-icons-pf.collapsed{display:none}.nav-pf-vertical .badge-container-pf{position:absolute;right:15px;top:20px}@supports (display:flex){.nav-pf-vertical .badge-container-pf{padding-left:0;padding-right:15px;position:relative;right:0;margin-top:-3px;top:5px}}.nav-pf-vertical .badge-container-pf .badge{background:#292e34;color:#fff;float:left;font-size:12px;font-weight:700;line-height:1.66666667;margin:0;padding:0 7px;text-align:center}.nav-pf-vertical .badge-container-pf .badge .fa,.nav-pf-vertical .badge-container-pf .badge .pficon{font-size:14px;height:20px;line-height:1.66666667;margin-right:3px;margin-top:-1px}.nav-pf-vertical-tooltip.tooltip{margin-left:15px}.nav-pf-vertical-tooltip.tooltip .tooltip-inner{background-color:#fff;color:#292e34}.nav-pf-vertical-tooltip.tooltip .tooltip-arrow{border-bottom-color:#fff;left:calc(50% - 15px)!important}.hover-secondary-nav-pf{width:calc(200px * 2)}.hover-secondary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.hover-tertiary-nav-pf{width:calc(200px * 3)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 3)}.hover-tertiary-nav-pf .nav-pf-secondary-nav{width:calc(200px * 2)}.hover-tertiary-nav-pf .nav-pf-secondary-nav .collapsed-tertiary-nav-pf{width:200px}.hover-tertiary-nav-pf .nav-pf-tertiary-nav{left:calc(200px * 2)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav{width:calc(250px * 2)}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-secondary-nav .collapsed-tertiary-nav-pf{width:250px}.hover-tertiary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:calc(250px * 2)}.nav-pf-vertical.collapsed{width:75px}.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed.hover-secondary-nav-pf{width:calc(75px + 200px)}.nav-pf-vertical.collapsed.hover-secondary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + 250px)}.nav-pf-vertical.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.nav-pf-vertical.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + (250px * 2))}.show-mobile-nav.show-mobile-secondary{width:200px}.show-mobile-nav.show-mobile-secondary.nav-pf-vertical-with-badges{width:250px}.show-mobile-nav.show-mobile-tertiary{width:200px}.show-mobile-nav.show-mobile-tertiary.nav-pf-vertical-with-badges{width:250px}.show-mobile-nav .mobile-nav-item-pf .nav-pf-secondary-nav,.show-mobile-nav .mobile-secondary-item-pf .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible;z-index:1034}.show-mobile-nav .mobile-nav-item-pf>.nav-pf-tertiary-nav,.show-mobile-nav .mobile-secondary-item-pf>.nav-pf-tertiary-nav{left:0;opacity:1;visibility:visible;z-index:1038}.show-mobile-nav .nav-pf-secondary-nav{left:0}.secondary-nav-item-pf:hover .show-mobile-nav .nav-pf-secondary-nav{opacity:0;visibility:hidden}.show-mobile-nav .tertiary-nav-item-pf:hover .nav-pf-tertiary-nav{opacity:0;visibility:hidden}.show-mobile-nav .tertiary-nav-item-pf.mobile-nav-item-pf:hover .nav-pf-tertiary-nav{opacity:1;visibility:visible}.secondary-nav-item-pf>a{cursor:default}.secondary-nav-item-pf>a:after{color:#72767b;content:"\f105";display:block;font-family:FontAwesome;font-size:24px;line-height:30px;padding:14px 0;position:absolute;right:20px;top:0}@supports (display:flex){.secondary-nav-item-pf>a .list-group-item-value{padding-right:35px}}.secondary-nav-item-pf.active>a,.secondary-nav-item-pf:hover>a{width:calc(200px + 1px);z-index:1031}.secondary-nav-item-pf.active>a:after,.secondary-nav-item-pf:hover>a:after{right:21px}.collapsed-secondary-nav-pf .secondary-nav-item-pf.active>a,.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover>a{z-index:0}.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active>a,.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover>a{z-index:0}.nav-pf-vertical-with-badges .secondary-nav-item-pf.active>a,.nav-pf-vertical-with-badges .secondary-nav-item-pf:hover>a{width:calc(250px + 1px)}.nav-pf-vertical.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-secondary-nav-pf .secondary-nav-item-pf.hover>a{z-index:1030}.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-secondary-nav{left:0}.nav-pf-vertical.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:200px}.nav-pf-vertical.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav{width:200px}.nav-pf-vertical.collapsed-tertiary-nav-pf .nav-pf-secondary-nav.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .secondary-nav-item-pf.hover>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active>a,.nav-pf-vertical.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.hover>a{z-index:0}@media (min-width:1200px){.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf{width:calc(200px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf{width:calc(200px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-secondary-nav-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 2)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed{width:calc(75px + 200px)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-secondary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf{width:200px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.collapsed-tertiary-nav-pf.nav-pf-vertical-with-badges{width:250px}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.collapsed.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(75px + (250px * 2))}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf{width:calc(200px * 3)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf.hover-tertiary-nav-pf.nav-pf-vertical-with-badges{width:calc(250px * 3)}.nav-pf-vertical.nav-pf-persistent-secondary.secondary-visible-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{visibility:visible;opacity:1}}.nav-item-pf-header{color:#fff;font-size:16px;margin:18px 20px 10px 20px}.nav-item-pf-header>a{cursor:pointer;margin-right:7px}.nav-item-pf-header>a:focus,.nav-item-pf-header>a:hover{color:#0088ce;text-decoration:none}.nav-pf-vertical.collapsed{width:75px}.nav-pf-vertical.collapsed .list-group-item>a{width:75px}.nav-pf-vertical.collapsed .list-group-item>a>.list-group-item-value{display:none}.nav-pf-vertical.collapsed .list-group-item>a>.badge-container-pf{display:none}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf>a{width:75px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a:after,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf>a:after{right:10px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover>a{width:77px}.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf.active>a:after,.nav-pf-vertical.collapsed .list-group-item.secondary-nav-item-pf:hover>a:after{right:11px}.nav-pf-secondary-nav{background:#393f44;border:1px solid #292e34;border-bottom:none;border-top:none;bottom:0;display:block;left:200px;opacity:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;visibility:hidden;width:200px;z-index:1030}.collapsed-secondary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible;z-index:1032}.collapsed-tertiary-nav-pf .secondary-nav-item-pf.active .nav-pf-secondary-nav{left:0;opacity:1;visibility:visible}.hover-secondary-nav-pf .secondary-nav-item-pf.is-hover .nav-pf-secondary-nav{opacity:1;visibility:visible}.ie9.layout-pf-fixed .nav-pf-secondary-nav{box-sizing:content-box}.layout-pf-fixed-with-footer .nav-pf-secondary-nav{bottom:37px}.nav-pf-secondary-nav .list-group-item{border:none;padding:0 0 5px 0;width:200px}.nav-pf-secondary-nav .list-group-item>a{background-color:#393f44;color:#d1d1d1;font-size:12px;font-weight:inherit;height:inherit;padding:4px 0 2px 0;margin-left:20px;width:calc(200px - 20px)}.nav-pf-secondary-nav .list-group-item>a:hover .list-group-item-value{text-decoration:underline}.nav-pf-secondary-nav .list-group-item.active>a:before{display:none}.nav-pf-secondary-nav .list-group-item.active>a,.nav-pf-secondary-nav .list-group-item:hover>a{background-color:#4d5258;color:#fff}.nav-pf-secondary-nav .list-group-item .badge-container-pf{top:5px}.nav-pf-secondary-nav .list-group-item .badge-container-pf .badge{background:#292e34;color:#fff}.nav-pf-secondary-nav .list-group-item .list-group-item-value{padding-left:5px}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a{cursor:default}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a:after{color:#72767b;content:"\f105";display:block;font-family:FontAwesome;font-size:20px;line-height:20px;padding:0;position:absolute;right:20px;top:4px}@supports (display:flex){.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf>a .list-group-item-value{padding-right:35px}}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a,.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a{width:calc(200px - 19px);z-index:1033}.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a:after,.nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a:after{right:21px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav{left:250px;width:250px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item{width:250px}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item>a{width:calc(250px - 20px)}.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf.active>a,.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item.tertiary-nav-item-pf:hover>a{width:calc(250px - 19px)}.nav-pf-tertiary-nav{background:#4d5258;border:1px solid #292e34;border-bottom:none;border-top:none;bottom:0;display:block;left:calc(200px * 2);opacity:0;overflow-x:hidden;overflow-y:auto;position:fixed;top:60px;visibility:hidden;width:200px;z-index:1030}.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:250px;width:250px}.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .show-mobile-nav{left:0}.collapsed-tertiary-nav-pf .tertiary-nav-item-pf.active .nav-pf-tertiary-nav{left:0;opacity:1;visibility:visible;z-index:1033}.hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav{opacity:1;visibility:visible}.collapsed.collapsed-tertiary-nav-pf .hover-tertiary-nav-pf .tertiary-nav-item-pf.is-hover .nav-pf-tertiary-nav{left:0}.ie9.layout-pf-fixed .nav-pf-tertiary-nav{box-sizing:content-box}.layout-pf-fixed-with-footer .nav-pf-tertiary-nav{bottom:37px}.nav-pf-tertiary-nav .nav-item-pf-header{color:#fff;margin:18px 20px 10px 20px}.nav-pf-tertiary-nav h5{color:#fff;margin:30px 20px 10px 20px}.nav-pf-tertiary-nav .list-group-item{border:none;padding:0 0 5px 0}.nav-pf-tertiary-nav .list-group-item>a{background-color:transparent;color:#d1d1d1;font-size:12px;font-weight:inherit;height:inherit;margin:0 20px 0 20px;padding:4px 0 2px 0}.nav-pf-tertiary-nav .list-group-item.active>a:before{display:none}.nav-pf-tertiary-nav .list-group-item.active>a,.nav-pf-tertiary-nav .list-group-item:hover>a{background-color:#393f44;color:#fff}.nav-pf-tertiary-nav .list-group-item .badge-container-pf{top:5px}.nav-pf-tertiary-nav .list-group-item .badge-container-pf .badge{background:#292e34;color:#fff}.nav-pf-tertiary-nav .list-group-item .list-group-item-value{padding-left:5px}.collapsed .nav-pf-secondary-nav{left:75px}.collapsed .nav-pf-secondary-nav .list-group-item>a{width:calc(200px - 20px)}.collapsed .nav-pf-secondary-nav .list-group-item>a>.list-group-item-value{display:inline-block}.collapsed .nav-pf-secondary-nav .list-group-item>a>.badge-container-pf{display:inline-block}.collapsed .nav-pf-tertiary-nav{left:calc(75px + 200px)}.collapsed .nav-pf-tertiary-nav .list-group-item>a{width:calc(200px - 20px)}.collapsed .nav-pf-tertiary-nav .list-group-item>a>.list-group-item-value{display:inline-block}.collapsed .nav-pf-tertiary-nav .list-group-item>a>.badge-container-pf{display:inline-block}.collapsed.collapsed-secondary-nav-pf,.collapsed.collapsed-tertiary-nav-pf{width:200px}.collapsed.collapsed-secondary-nav-pf .secondary-nav-item-pf:hover>a,.collapsed.collapsed-tertiary-nav-pf .secondary-nav-item-pf:hover>a{z-index:1030}.collapsed.collapsed-secondary-nav-pf .nav-pf-secondary-nav,.collapsed.collapsed-tertiary-nav-pf .nav-pf-secondary-nav{left:0}.collapsed.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:200px}.collapsed.collapsed-tertiary-nav-pf .nav-pf-tertiary-nav{left:0}.collapsed.hover-secondary-nav-pf{width:calc(75px + 200px)}.collapsed.hover-secondary-nav-pf.collapsed-secondary-nav-pf,.collapsed.hover-secondary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.collapsed.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.collapsed.hover-tertiary-nav-pf.collapsed-secondary-nav-pf{width:calc(200px * 2)}.collapsed.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.collapsed.nav-pf-vertical-with-badges .nav-pf-secondary-nav .list-group-item>a{width:calc(250px - 20px)}.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav{left:calc(75px + 250px)}.collapsed.nav-pf-vertical-with-badges .nav-pf-tertiary-nav .list-group-item>a{width:calc(250px - 20px)}.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf,.collapsed.nav-pf-vertical-with-badges.collapsed-tertiary-nav-pf{width:250px}.collapsed.nav-pf-vertical-with-badges.collapsed-secondary-nav-pf .nav-pf-tertiary-nav{left:250px}.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf{width:calc(75px + 250px)}.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-secondary-nav-pf,.collapsed.nav-pf-vertical-with-badges.hover-secondary-nav-pf.collapsed-tertiary-nav-pf{width:250px}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf{width:calc(75px + (200px * 2))}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-secondary-nav-pf{width:calc(200px * 2)}.collapsed.nav-pf-vertical-with-badges.hover-tertiary-nav-pf.collapsed-tertiary-nav-pf{width:200px}.secondary-collapse-toggle-pf{display:none;font-family:FontAwesome;font-size:inherit;opacity:0;pointer-events:none;-webkit-font-smoothing:antialiased}.secondary-collapse-toggle-pf:before{content:"\f190"}.secondary-collapse-toggle-pf.collapsed:before{content:"\f18e"}.tertiary-collapse-toggle-pf{display:none;font-family:FontAwesome;font-size:inherit;opacity:0;pointer-events:none;-webkit-font-smoothing:antialiased}.tertiary-collapse-toggle-pf:before{content:"\f190"}.tertiary-collapse-toggle-pf.collapsed:before{content:"\f18e"}.nav-pf-vertical-collapsible-menus .secondary-collapse-toggle-pf{display:inline-block}.nav-pf-vertical-collapsible-menus .secondary-nav-item-pf.active .secondary-collapse-toggle-pf{opacity:1;pointer-events:all}.nav-pf-vertical-collapsible-menus .tertiary-collapse-toggle-pf{display:inline-block}.nav-pf-vertical-collapsible-menus .tertiary-nav-item-pf.active .tertiary-collapse-toggle-pf{opacity:1;pointer-events:all}.show-mobile-nav .secondary-collapse-toggle-pf{display:inline-block;opacity:1;pointer-events:all}.show-mobile-nav .secondary-collapse-toggle-pf:before{content:"\f190"}.show-mobile-nav .tertiary-collapse-toggle-pf{display:inline-block;opacity:1;pointer-events:all}.show-mobile-nav .tertiary-collapse-toggle-pf:before{content:"\f190"}.force-hide-secondary-nav-pf .nav-pf-secondary-nav{display:none!important}.force-hide-secondary-nav-pf .nav-pf-tertiary-nav{display:none!important}.nav-pf-vertical.transitions{transition:width .1s}.nav-pf-vertical.transitions .nav-pf-secondary-nav{transition:visibility .1s,opacity .1s linear}.nav-pf-vertical.transitions .nav-pf-tertiary-nav{transition:visibility .1s,opacity .1s linear}.wizard-pf{padding:10px;margin:0 auto;max-height:900px;width:auto}.wizard-pf .modal-content{min-height:100%}.wizard-pf-body{background:#fff;padding:0;position:static}.wizard-pf-sidebar{background:#fafafa;border-right:1px solid #d1d1d1;display:none}@media (min-width:768px){.wizard-pf-sidebar{display:inherit;flex:0 0 auto;overflow-x:hidden;overflow-y:auto}.wizard-pf-sidebar .list-group{border-top:0;margin-bottom:0}.wizard-pf-sidebar .list-group-item{background-color:transparent;border-color:#ededed;padding:0}.wizard-pf-sidebar .list-group-item>a{color:#030303;cursor:pointer;display:block;font-size:14px;font-weight:700;height:50px;outline:0;padding-top:11px;padding-left:20px;position:relative;white-space:nowrap;width:14em}.wizard-pf-sidebar .list-group-item>a:hover{text-decoration:none;background-color:#ededed}.wizard-pf-sidebar .list-group-item>a:focus{text-decoration:none}.wizard-pf-sidebar .list-group-item>a:focus span{text-decoration:underline}.wizard-pf-sidebar .list-group-item.active{background-color:#ededed}.wizard-pf-sidebar .list-group-item.active:hover{border-color:#ededed}.wizard-pf-sidebar .list-group-item.active>a{color:#39a5dc;cursor:default}.wizard-pf-sidebar .list-group-item.active>a:before{content:" ";background:#39a5dc;height:100%;left:0;position:absolute;top:0;width:3px}.wizard-pf-sidebar .list-group-item.active>a:after{color:#39a5dc;content:"\f105";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;line-height:30px;padding-top:10px;position:absolute;right:23px;top:0}}.wizard-pf-substep-number{display:inline-block;margin-right:5px;vertical-align:middle;width:25px}.wizard-pf-substep-title{display:inline-block;margin-right:5px;text-align:left;vertical-align:middle}.wizard-pf-steps{border-bottom:solid 1px #d1d1d1}@media (min-width:768px){.wizard-pf-steps{text-align:center}}.wizard-pf-steps-indicator{background:#ededed;border-top:1px solid #d1d1d1;display:inline-block;display:flex;font-size:16px;list-style:none;margin-bottom:0;padding:15px 0}@media (min-width:768px){.wizard-pf-steps-indicator{background:#fff;height:120px;padding:38px 0 0;justify-content:space-around}}.wizard-pf-steps-indicator li{counter-increment:section;float:left;flex-grow:1;flex-basis:0;line-height:15px;margin:0;padding:0;position:relative;text-align:center}.wizard-pf-steps-indicator li:not(.active){display:none}@media (min-width:768px){.wizard-pf-steps-indicator li:not(.active){display:block}}.wizard-pf-steps-indicator li a{align-items:center;display:flex;flex-wrap:wrap;font-weight:700}@media (min-width:768px){.wizard-pf-steps-indicator li a{font-weight:400;justify-content:center}}.wizard-pf-steps-indicator li a .wizard-pf-step-title{margin-left:10px}@media (min-width:768px){.wizard-pf-steps-indicator li a .wizard-pf-step-title{margin-left:0}}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep{font-weight:400;margin-left:10px;text-transform:capitalize}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:before{content:"\00BB";font-size:20px;margin-right:10px}.wizard-pf-steps-indicator li a .wizard-pf-step-title-substep:not(.active){display:none}@media (min-width:768px){.wizard-pf-steps-indicator li .wizard-pf-step-title-substep{display:none}.wizard-pf-steps-indicator li:before{background-color:#bbb;content:"";height:2px;left:0;position:absolute;right:0;top:40px}.wizard-pf-steps-indicator li:first-child:before{left:50%;right:0}.wizard-pf-steps-indicator li:last-child:before{left:0;right:50%}.wizard-pf-steps-indicator li:only-of-type:before{background-color:transparent}}.wizard-pf-steps-indicator li a{color:#030303;cursor:pointer;font-size:16px;margin-left:1em;margin-right:1em;text-decoration:none}.wizard-pf-steps-indicator li a:hover .wizard-pf-step-number{background-color:#bbb;border-color:#bbb;color:#fff}.wizard-pf-steps-indicator .wizard-pf-step-number{background-color:#fff;border-radius:50%;border:solid 2px #bbb;color:#bbb;font-size:12px;font-weight:700;height:25px;line-height:22px;width:25px}@media (min-width:768px){.wizard-pf-steps-indicator .wizard-pf-step-number{left:calc(50% - 13px);position:absolute;top:27px}}.wizard-pf-steps-indicator .active .wizard-pf-step-number{background-color:#39a5dc;border-color:#39a5dc;cursor:default;color:#fff}.wizard-pf-steps-indicator .viewed-pf .wizard-pf-step-number{color:#030303;background-color:#fff;border-color:#39a5dc}.wizard-pf-main{height:100%;padding:1em;vertical-align:top;width:100%}@media (min-width:768px){.wizard-pf-main{overflow:auto;padding:3em;flex:1 1 auto}}.wizard-pf-main .blank-slate-pf{background-color:transparent;border:none;left:0;right:0}.wizard-pf-contents textarea{resize:vertical}.wizard-pf-review-steps{list-style:none}.wizard-pf-review-steps .list-group,.wizard-pf-review-steps .list-group-item{border:none;margin-bottom:0}.wizard-pf-review-steps>ul>li{float:left;line-height:15px;margin:0;padding-top:0;position:relative;width:100%}.wizard-pf-review-steps>ul>li>a{color:#030303;cursor:pointer;font-size:16px;padding-left:30px;padding-right:5px;text-decoration:none;transition:250ms}.wizard-pf-review-steps>ul>li>a:before{content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;left:20px;position:absolute;top:0}.wizard-pf-review-steps>ul>li>a.collapsed:before{content:"\f105"}.wizard-pf-review-substeps{padding-left:22px}.wizard-pf-review-substeps>ul>li{float:left;line-height:15px;margin:0;position:relative;width:100%}.wizard-pf-review-substeps>ul>li a{color:#030303;cursor:pointer;font-size:16px;padding-left:30px;padding-right:5px;text-decoration:none;transition:250ms}.wizard-pf-review-substeps>ul>li a:before{content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;left:20px;position:absolute;top:10px}.wizard-pf-review-substeps>ul>li a.collapsed:before{content:"\f105"}.wizard-pf-review-content{padding-top:10px;padding-left:40px}.wizard-pf-review-content .wizard-pf-review-item{padding:5px 0}.wizard-pf-review-content .wizard-pf-review-item.sub-item{margin-left:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-label{font-weight:700;padding-right:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field{font-weight:700;margin:5px 0;padding-right:10px}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:first-of-type{margin-top:0}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field:last-of-type{margin-bottom:0}.wizard-pf-review-content .wizard-pf-review-item .wizard-pf-review-item-field.sub-field{margin-left:10px}.wizard-pf-success-icon{color:#3f9c35;font-size:67.2px;line-height:67.2px}.wizard-pf-footer{background:#fff;border-top:1px solid #d1d1d1;margin-top:0;padding-bottom:17px}.wizard-pf-footer .btn-cancel{margin-right:25px}@media (min-width:768px){.wizard-pf-row{display:flex;width:100%;height:900px;max-height:65vh}}@media (min-width:992px){.wizard-pf{padding:30px 0;width:900px}.wizard-pf-sidebar .list-group-item>a{width:18em}}.wizard-pf-steps-alt,.wizard-pf-steps-alt ul{list-style:none;margin:0;padding:0}.wizard-pf-steps-alt{margin-left:15px;margin-top:15px;background-image:linear-gradient(to right,transparent 11px,#d1d1d1 11px,#d1d1d1 13px,transparent 13px)}@media (min-width:768px){.wizard-pf-steps-alt{display:none}}.wizard-pf-steps-alt-indicator{position:relative}.wizard-pf-steps-alt-indicator:after{color:#4d5258;content:"\f107";display:block;font-family:FontAwesome;font-size:24px;font-weight:500;position:absolute;right:17px;top:50%;transform:translateY(-50%)}@media (min-width:768px){.wizard-pf-steps-alt-indicator:after{display:none}}.wizard-pf-steps-alt-indicator.active:after{content:"\f106"}.wizard-pf-step-alt{margin-bottom:10px}.wizard-pf-step-alt a{display:flex;flex:1}.wizard-pf-step-alt a:hover{text-decoration:none}.wizard-pf-step-alt a:hover .wizard-pf-step-alt-title{color:#39a5dc}.wizard-pf-step-alt ul{margin-left:11px}.wizard-pf-step-alt .wizard-pf-step-alt-title{margin-left:5px;align-self:center}.wizard-pf-step-alt .wizard-pf-step-alt-number{flex:0 0 auto}.wizard-pf-step-alt.active .wizard-pf-step-alt-number{background-color:#39a5dc;border-color:#39a5dc;cursor:default;color:#fff}.wizard-pf-step-alt.active .wizard-pf-step-alt-title{color:#39a5dc}.wizard-pf-step-alt.active .wizard-pf-step-alt-substep:first-of-type{margin-top:2px}.wizard-pf-step-alt.viewed .wizard-pf-step-alt-number{color:#030303;background-color:#fff;border-color:#39a5dc}.wizard-pf-step-alt-number{background-color:#fff;border-radius:50%;border:solid 2px #bbb;color:#bbb;font-size:12px;font-weight:700;height:24px;width:24px;display:inline-block;text-align:center}.wizard-pf-step-alt-title{color:#030303;font-weight:700;text-transform:capitalize;display:inline-block}.wizard-pf-step-alt-substep{display:flex}.wizard-pf-step-alt-substep a{padding:5px 0 5px 18px;color:#393f44}.wizard-pf-step-alt-substep:not(.disabled).active,.wizard-pf-step-alt-substep:not(.disabled):hover{background-color:#ededed;background-image:linear-gradient(to right,#39a5dc 2px,transparent 2px)}.wizard-pf-step-alt-substep:not(.disabled).active a,.wizard-pf-step-alt-substep:not(.disabled):hover a{color:#39a5dc}.wizard-pf-step-alt-substep.active a{font-weight:700}.wizard-pf-step-alt-substep.disabled{cursor:not-allowed}.wizard-pf-step-alt-substep.disabled a{pointer-events:none}.login-pf{background-color:#1a1a1a}@media (min-width:768px){.login-pf{background-image:url(../img/bg-login-2.png);background-position:100% 100%;background-repeat:no-repeat;background-size:30%}}@media (min-width:992px){.login-pf{background-size:auto}}.login-pf #badge{margin-bottom:50px}.login-pf body{background:0 0}@media (min-width:768px){.login-pf body{background-image:url(../img/bg-login.png);background-repeat:no-repeat;background-size:30%;height:100%}}@media (min-width:992px){.login-pf body{background-size:auto}}.login-pf #brand{top:-30px}@media (min-width:768px){.login-pf #brand{top:-40px}.login-pf #brand+.alert{margin-top:-20px}}.login-pf .container{padding-top:0}@media (min-width:992px){.login-pf .container{bottom:20%;padding-right:120px}}
+/*# sourceMappingURL=rcue-additions.min.css.map */
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue-additions.min.css.map b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue-additions.min.css.map
new file mode 100644
index 0000000..f5f8548
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/css/rcue-additions.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["node_modules/bootstrap-slider/src/less/rules.less","node_modules/bootstrap/less/mixins/gradients.less","node_modules/bootstrap/less/mixins/vendor-prefixes.less","node_modules/patternfly-bootstrap-combobox/less/combobox.less","node_modules/bootstrap-datepicker/less/datepicker3.less","node_modules/bootstrap/less/mixins/buttons.less","node_modules/bootstrap-select/less/bootstrap-select.less","node_modules/bootstrap-switch/src/less/bootstrap3/bootstrap-switch.less","node_modules/bootstrap/less/mixins/border-radius.less","node_modules/bootstrap/less/mixins/opacity.less","node_modules/bootstrap-touchspin/dist/jquery.bootstrap-touchspin.css","node_modules/c3/c3.css","dist/css/rcue-additions.css","node_modules/eonasdan-bootstrap-datetimepicker/src/less/_bootstrap-datetimepicker.less","node_modules/eonasdan-bootstrap-datetimepicker/src/less/bootstrap-datetimepicker-build.less","node_modules/patternfly/dist/less/mixins.less","node_modules/patternfly/dist/less/about-modal.less","node_modules/patternfly/dist/less/application-launcher.less","node_modules/patternfly/dist/less/blank-slate.less","node_modules/patternfly/dist/less/bootstrap-combobox.less","node_modules/patternfly/dist/less/variables.less","node_modules/patternfly/dist/less/bootstrap-datepicker.less","node_modules/patternfly/dist/less/bootstrap-mixin-overrides.less","node_modules/patternfly/dist/less/bootstrap-select.less","node_modules/patternfly/dist/less/bootstrap-slider.less","node_modules/patternfly/dist/less/bootstrap-switch.less","node_modules/patternfly/dist/less/bootstrap-touchspin.less","node_modules/patternfly/dist/less/bootstrap-treeview.less","node_modules/patternfly/dist/less/cards.less","node_modules/patternfly/dist/less/card-view.less","node_modules/patternfly/dist/less/charts.less","node_modules/patternfly/dist/less/close.less","node_modules/patternfly/dist/less/context-selector.less","node_modules/patternfly/dist/less/datatables.less","node_modules/patternfly/dist/less/experimental-features.less","node_modules/patternfly/dist/less/filter.less","node_modules/patternfly/dist/less/footer.less","node_modules/patternfly/dist/less/icons.less","node_modules/patternfly/dist/less/infotip.less","node_modules/patternfly/dist/less/layouts.less","node_modules/patternfly/dist/less/links.less","node_modules/patternfly/dist/less/list-pf.less","node_modules/patternfly/dist/less/list-view.less","node_modules/bootstrap/less/mixins/clearfix.less","node_modules/patternfly/dist/less/list-view-dnd.less","node_modules/patternfly/dist/less/login.less","node_modules/patternfly/dist/less/navbar.less","node_modules/font-awesome/less/variables.less","node_modules/patternfly/dist/less/navbar-alt.less","node_modules/patternfly/dist/less/navbar-vertical.less","node_modules/patternfly/dist/less/nav-vertical-alt.less","node_modules/patternfly/dist/less/notifications-drawer.less","node_modules/patternfly/dist/less/search.less","node_modules/patternfly/dist/less/sidebar.less","node_modules/patternfly/dist/less/skip-to-content.less","node_modules/patternfly/dist/less/spinner.less","node_modules/patternfly/dist/less/syntax-highlighting.less","node_modules/patternfly/dist/less/table-view.less","node_modules/patternfly/dist/less/time-picker.less","node_modules/patternfly/dist/less/toast.less","node_modules/patternfly/dist/less/toolbar.less","node_modules/patternfly/dist/less/vertical-nav.less","node_modules/patternfly/dist/less/wizard.less","less/login.less"],"names":[],"mappings":"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EkE,QiBxEtC,8BAC5B,QjBwEkE,QiBtEzC,2BACzB,QjBsEkE,QiBpEjD,mBACjB,QjBqEkE,QiBnE9C,sBACpB,QjBoEkE,QiBlEzC,2BACzB,QjBkEkE,QiBhE9C,sBACpB,QjBgEkE,QiB9D1C,0BACxB,QjB+DkE,QiB7D3C,yBACvB,QjB6DkE,QiB3D1C,0BACxB,QjB2DkE,QiBzD7C,uBACrB,QjByDkE,QiBvDvC,6BAC3B,QjBuDkE,QiBrDlD,kBAChB,QjBuDkE,QiBrD1C,0BACxB,QjBqDkE,QiBnD5C,wBACtB,QjBoDkE,QiBlD9C,sBACpB,QjBkDkE,QiBhDjD,mBACjB,QjByCkE,QiBvClD,kBAChB,MAAA,QACA,QjBsCkE,QiBpC9C,sBACpB,QjByCkE,QiBvC7C,uBACrB,QjBuCkE,QiBrC7C,uBACrB,QjBqCkE,QiBnChD,oBAClB,QjBmCkE,QiBjC/C,qBACnB,QjBkCkE,QiBhClC,kCAChC,QjBgCkE,QiB9B7C,uBACrB,QjB2BkE,QiBzB7C,uBACrB,QjB2BkE,QiBzB3C,yBACvB,QjByBkE,QiBvB3C,yBACvB,QjBuBkE,QiBrB7C,uBACA,uBACrB,QjB6BkE,QiB3B7C,uBACrB,QjBiBkE,QiBf5C,wBACtB,QjBekE,QiBb9C,sBACpB,QjBakE,QiBX1C,0BACxB,QjBWkE,QiBT1C,0BACxB,QjBSkE,QiBPvC,6BAC3B,QjBOkE,QiBL9B,sCACpC,QjBKkE,QiBH/B,qCACnC,QjBGkE,QiBDtC,8BAC5B,QjBCkE,QiBC/C,qBACnB,QjBAkE,QiBE7C,uBACrB,QjBFkE,QiBI3C,yBACvB,QjBHkE,QiBKhD,oBAClB,QjBPkE,QiBS9C,sBACpB,QjBRkE,QiBU9C,sBACpB,QjBVkE,QiBY5C,wBACtB,QjBZkE,QiBc9C,sBACpB,QjBdkE,QiBgBxC,4BAC1B,QjBhBkE,QiBkB7C,uBACrB,QjBlBkE,QiBoB5C,wBACtB,QjBnBkE,QiBqBrC,+BAC7B,QjBvBkE,QiByB5C,wBACtB,QjBxBkE,QiB0B7C,uBACrB,QjB1BkE,QiB4B5C,wBACtB,QjB5BkE,QiB8BtC,8BAC5B,Q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"}
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/FontAwesome.otf b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/FontAwesome.otf
new file mode 100644
index 0000000..401ec0f
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/FontAwesome.otf differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/fontawesome-webfont.eot b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/fontawesome-webfont.eot
new file mode 100644
index 0000000..e9f60ca
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/fontawesome-webfont.eot differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/fontawesome-webfont.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/fontawesome-webfont.svg
new file mode 100644
index 0000000..855c845
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/fontawesome-webfont.svg
@@ -0,0 +1,2671 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg>
+<metadata>
+Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016
+ By ,,,
+Copyright Dave Gandy 2016. All rights reserved.
+</metadata>
+<defs>
+<font id="FontAwesome" horiz-adv-x="1536" >
+  <font-face 
+    font-family="FontAwesome"
+    font-weight="400"
+    font-stretch="normal"
+    units-per-em="1792"
+    panose-1="0 0 0 0 0 0 0 0 0 0"
+    ascent="1536"
+    descent="-256"
+    bbox="-1.02083 -256.962 2304.6 1537.02"
+    underline-thickness="0"
+    underline-position="0"
+    unicode-range="U+0020-F500"
+  />
+<missing-glyph horiz-adv-x="896" 
+d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" />
+    <glyph glyph-name=".notdef" horiz-adv-x="896" 
+d="M224 112h448v1312h-448v-1312zM112 0v1536h672v-1536h-672z" />
+    <glyph glyph-name=".null" horiz-adv-x="0" 
+ />
+    <glyph glyph-name="nonmarkingreturn" horiz-adv-x="597" 
+ />
+    <glyph glyph-name="space" unicode=" " horiz-adv-x="448" 
+ />
+    <glyph glyph-name="dieresis" unicode="&#xa8;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="copyright" unicode="&#xa9;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="registered" unicode="&#xae;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="acute" unicode="&#xb4;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="AE" unicode="&#xc6;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="Oslash" unicode="&#xd8;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="trademark" unicode="&#x2122;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="infinity" unicode="&#x221e;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="notequal" unicode="&#x2260;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="glass" unicode="&#xf000;" horiz-adv-x="1792" 
+d="M1699 1350q0 -35 -43 -78l-632 -632v-768h320q26 0 45 -19t19 -45t-19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45t45 19h320v768l-632 632q-43 43 -43 78q0 23 18 36.5t38 17.5t43 4h1408q23 0 43 -4t38 -17.5t18 -36.5z" />
+    <glyph glyph-name="music" unicode="&#xf001;" 
+d="M1536 1312v-1120q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v537l-768 -237v-709q0 -50 -34 -89t-86 -60.5t-103.5 -32t-96.5 -10.5t-96.5 10.5t-103.5 32t-86 60.5t-34 89
+t34 89t86 60.5t103.5 32t96.5 10.5q105 0 192 -39v967q0 31 19 56.5t49 35.5l832 256q12 4 28 4q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="search" unicode="&#xf002;" horiz-adv-x="1664" 
+d="M1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -52 -38 -90t-90 -38q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5
+t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
+    <glyph glyph-name="envelope" unicode="&#xf003;" horiz-adv-x="1792" 
+d="M1664 32v768q-32 -36 -69 -66q-268 -206 -426 -338q-51 -43 -83 -67t-86.5 -48.5t-102.5 -24.5h-1h-1q-48 0 -102.5 24.5t-86.5 48.5t-83 67q-158 132 -426 338q-37 30 -69 66v-768q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1664 1083v11v13.5t-0.5 13
+t-3 12.5t-5.5 9t-9 7.5t-14 2.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5q0 -168 147 -284q193 -152 401 -317q6 -5 35 -29.5t46 -37.5t44.5 -31.5t50.5 -27.5t43 -9h1h1q20 0 43 9t50.5 27.5t44.5 31.5t46 37.5t35 29.5q208 165 401 317q54 43 100.5 115.5t46.5 131.5z
+M1792 1120v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="heart" unicode="&#xf004;" horiz-adv-x="1792" 
+d="M896 -128q-26 0 -44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124t127 -344q0 -221 -229 -450l-623 -600
+q-18 -18 -44 -18z" />
+    <glyph glyph-name="star" unicode="&#xf005;" horiz-adv-x="1664" 
+d="M1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -21 -10.5 -35.5t-30.5 -14.5q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455
+l502 -73q56 -9 56 -46z" />
+    <glyph glyph-name="star_empty" unicode="&#xf006;" horiz-adv-x="1664" 
+d="M1137 532l306 297l-422 62l-189 382l-189 -382l-422 -62l306 -297l-73 -421l378 199l377 -199zM1664 889q0 -22 -26 -48l-363 -354l86 -500q1 -7 1 -20q0 -50 -41 -50q-19 0 -40 12l-449 236l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500
+l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41t49 -41l225 -455l502 -73q56 -9 56 -46z" />
+    <glyph glyph-name="user" unicode="&#xf007;" horiz-adv-x="1280" 
+d="M1280 137q0 -109 -62.5 -187t-150.5 -78h-854q-88 0 -150.5 78t-62.5 187q0 85 8.5 160.5t31.5 152t58.5 131t94 89t134.5 34.5q131 -128 313 -128t313 128q76 0 134.5 -34.5t94 -89t58.5 -131t31.5 -152t8.5 -160.5zM1024 1024q0 -159 -112.5 -271.5t-271.5 -112.5
+t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="film" unicode="&#xf008;" horiz-adv-x="1920" 
+d="M384 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 320v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM384 704v128q0 26 -19 45t-45 19h-128
+q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 -64v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM384 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45
+t45 -19h128q26 0 45 19t19 45zM1792 -64v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1408 704v512q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-512q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1792 320v128
+q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 704v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1792 1088v128q0 26 -19 45t-45 19h-128q-26 0 -45 -19
+t-19 -45v-128q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1920 1248v-1344q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1344q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="th_large" unicode="&#xf009;" horiz-adv-x="1664" 
+d="M768 512v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM768 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 512v-384q0 -52 -38 -90t-90 -38
+h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90zM1664 1280v-384q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="th" unicode="&#xf00a;" horiz-adv-x="1792" 
+d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 288v-192q0 -40 -28 -68t-68 -28h-320
+q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28
+h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1152 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192
+q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="th_list" unicode="&#xf00b;" horiz-adv-x="1792" 
+d="M512 288v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM512 800v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 288v-192q0 -40 -28 -68t-68 -28h-960
+q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68zM512 1312v-192q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h320q40 0 68 -28t28 -68zM1792 800v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28
+h960q40 0 68 -28t28 -68zM1792 1312v-192q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h960q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="ok" unicode="&#xf00c;" horiz-adv-x="1792" 
+d="M1671 970q0 -40 -28 -68l-724 -724l-136 -136q-28 -28 -68 -28t-68 28l-136 136l-362 362q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -295l656 657q28 28 68 28t68 -28l136 -136q28 -28 28 -68z" />
+    <glyph glyph-name="remove" unicode="&#xf00d;" horiz-adv-x="1408" 
+d="M1298 214q0 -40 -28 -68l-136 -136q-28 -28 -68 -28t-68 28l-294 294l-294 -294q-28 -28 -68 -28t-68 28l-136 136q-28 28 -28 68t28 68l294 294l-294 294q-28 28 -28 68t28 68l136 136q28 28 68 28t68 -28l294 -294l294 294q28 28 68 28t68 -28l136 -136q28 -28 28 -68
+t-28 -68l-294 -294l294 -294q28 -28 28 -68z" />
+    <glyph glyph-name="zoom_in" unicode="&#xf00e;" horiz-adv-x="1664" 
+d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-224q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v224h-224q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h224v224q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5v-224h224
+q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5
+t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z" />
+    <glyph glyph-name="zoom_out" unicode="&#xf010;" horiz-adv-x="1664" 
+d="M1024 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-576q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h576q13 0 22.5 -9.5t9.5 -22.5zM1152 704q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5z
+M1664 -128q0 -53 -37.5 -90.5t-90.5 -37.5q-54 0 -90 38l-343 342q-179 -124 -399 -124q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -220 -124 -399l343 -343q37 -37 37 -90z
+" />
+    <glyph glyph-name="off" unicode="&#xf011;" 
+d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61t-298 61t-245 164t-164 245t-61 298q0 182 80.5 343t226.5 270q43 32 95.5 25t83.5 -50q32 -42 24.5 -94.5t-49.5 -84.5q-98 -74 -151.5 -181t-53.5 -228q0 -104 40.5 -198.5t109.5 -163.5t163.5 -109.5
+t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5q0 121 -53.5 228t-151.5 181q-42 32 -49.5 84.5t24.5 94.5q31 43 84 50t95 -25q146 -109 226.5 -270t80.5 -343zM896 1408v-640q0 -52 -38 -90t-90 -38t-90 38t-38 90v640q0 52 38 90t90 38t90 -38t38 -90z" />
+    <glyph glyph-name="signal" unicode="&#xf012;" horiz-adv-x="1792" 
+d="M256 96v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 224v-320q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 480v-576q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23
+v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1408 864v-960q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1376v-1472q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1472q0 14 9 23t23 9h192q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="cog" unicode="&#xf013;" 
+d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1536 749v-222q0 -12 -8 -23t-20 -13l-185 -28q-19 -54 -39 -91q35 -50 107 -138q10 -12 10 -25t-9 -23q-27 -37 -99 -108t-94 -71q-12 0 -26 9l-138 108q-44 -23 -91 -38
+q-16 -136 -29 -186q-7 -28 -36 -28h-222q-14 0 -24.5 8.5t-11.5 21.5l-28 184q-49 16 -90 37l-141 -107q-10 -9 -25 -9q-14 0 -25 11q-126 114 -165 168q-7 10 -7 23q0 12 8 23q15 21 51 66.5t54 70.5q-27 50 -41 99l-183 27q-13 2 -21 12.5t-8 23.5v222q0 12 8 23t19 13
+l186 28q14 46 39 92q-40 57 -107 138q-10 12 -10 24q0 10 9 23q26 36 98.5 107.5t94.5 71.5q13 0 26 -10l138 -107q44 23 91 38q16 136 29 186q7 28 36 28h222q14 0 24.5 -8.5t11.5 -21.5l28 -184q49 -16 90 -37l142 107q9 9 24 9q13 0 25 -10q129 -119 165 -170q7 -8 7 -22
+q0 -12 -8 -23q-15 -21 -51 -66.5t-54 -70.5q26 -50 41 -98l183 -28q13 -2 21 -12.5t8 -23.5z" />
+    <glyph glyph-name="trash" unicode="&#xf014;" horiz-adv-x="1408" 
+d="M512 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM768 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1024 800v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576
+q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1152 76v948h-896v-948q0 -22 7 -40.5t14.5 -27t10.5 -8.5h832q3 0 10.5 8.5t14.5 27t7 40.5zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832
+q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="home" unicode="&#xf015;" horiz-adv-x="1664" 
+d="M1408 544v-480q0 -26 -19 -45t-45 -19h-384v384h-256v-384h-384q-26 0 -45 19t-19 45v480q0 1 0.5 3t0.5 3l575 474l575 -474q1 -2 1 -6zM1631 613l-62 -74q-8 -9 -21 -11h-3q-13 0 -21 7l-692 577l-692 -577q-12 -8 -24 -7q-13 2 -21 11l-62 74q-8 10 -7 23.5t11 21.5
+l719 599q32 26 76 26t76 -26l244 -204v195q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-408l219 -182q10 -8 11 -21.5t-7 -23.5z" />
+    <glyph glyph-name="file_alt" unicode="&#xf016;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+" />
+    <glyph glyph-name="time" unicode="&#xf017;" 
+d="M896 992v-448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="road" unicode="&#xf018;" horiz-adv-x="1920" 
+d="M1111 540v4l-24 320q-1 13 -11 22.5t-23 9.5h-186q-13 0 -23 -9.5t-11 -22.5l-24 -320v-4q-1 -12 8 -20t21 -8h244q12 0 21 8t8 20zM1870 73q0 -73 -46 -73h-704q13 0 22 9.5t8 22.5l-20 256q-1 13 -11 22.5t-23 9.5h-272q-13 0 -23 -9.5t-11 -22.5l-20 -256
+q-1 -13 8 -22.5t22 -9.5h-704q-46 0 -46 73q0 54 26 116l417 1044q8 19 26 33t38 14h339q-13 0 -23 -9.5t-11 -22.5l-15 -192q-1 -14 8 -23t22 -9h166q13 0 22 9t8 23l-15 192q-1 13 -11 22.5t-23 9.5h339q20 0 38 -14t26 -33l417 -1044q26 -62 26 -116z" />
+    <glyph glyph-name="download_alt" unicode="&#xf019;" horiz-adv-x="1664" 
+d="M1280 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 416v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h465l135 -136
+q58 -56 136 -56t136 56l136 136h464q40 0 68 -28t28 -68zM1339 985q17 -41 -14 -70l-448 -448q-18 -19 -45 -19t-45 19l-448 448q-31 29 -14 70q17 39 59 39h256v448q0 26 19 45t45 19h256q26 0 45 -19t19 -45v-448h256q42 0 59 -39z" />
+    <glyph glyph-name="download" unicode="&#xf01a;" 
+d="M1120 608q0 -12 -10 -24l-319 -319q-11 -9 -23 -9t-23 9l-320 320q-15 16 -7 35q8 20 30 20h192v352q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-352h192q14 0 23 -9t9 -23zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273
+t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="upload" unicode="&#xf01b;" 
+d="M1118 660q-8 -20 -30 -20h-192v-352q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v352h-192q-14 0 -23 9t-9 23q0 12 10 24l319 319q11 9 23 9t23 -9l320 -320q15 -16 7 -35zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198
+t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="inbox" unicode="&#xf01c;" 
+d="M1023 576h316q-1 3 -2.5 8.5t-2.5 7.5l-212 496h-708l-212 -496q-1 -3 -2.5 -8.5t-2.5 -7.5h316l95 -192h320zM1536 546v-482q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v482q0 62 25 123l238 552q10 25 36.5 42t52.5 17h832q26 0 52.5 -17t36.5 -42l238 -552
+q25 -61 25 -123z" />
+    <glyph glyph-name="play_circle" unicode="&#xf01d;" 
+d="M1184 640q0 -37 -32 -55l-544 -320q-15 -9 -32 -9q-16 0 -32 8q-32 19 -32 56v640q0 37 32 56q33 18 64 -1l544 -320q32 -18 32 -55zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="repeat" unicode="&#xf01e;" 
+d="M1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l138 138q-148 137 -349 137q-104 0 -198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5q119 0 225 52t179 147q7 10 23 12q15 0 25 -9
+l137 -138q9 -8 9.5 -20.5t-7.5 -22.5q-109 -132 -264 -204.5t-327 -72.5q-156 0 -298 61t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q147 0 284.5 -55.5t244.5 -156.5l130 129q29 31 70 14q39 -17 39 -59z" />
+    <glyph glyph-name="refresh" unicode="&#xf021;" 
+d="M1511 480q0 -5 -1 -7q-64 -268 -268 -434.5t-478 -166.5q-146 0 -282.5 55t-243.5 157l-129 -129q-19 -19 -45 -19t-45 19t-19 45v448q0 26 19 45t45 19h448q26 0 45 -19t19 -45t-19 -45l-137 -137q71 -66 161 -102t187 -36q134 0 250 65t186 179q11 17 53 117
+q8 23 30 23h192q13 0 22.5 -9.5t9.5 -22.5zM1536 1280v-448q0 -26 -19 -45t-45 -19h-448q-26 0 -45 19t-19 45t19 45l138 138q-148 137 -349 137q-134 0 -250 -65t-186 -179q-11 -17 -53 -117q-8 -23 -30 -23h-199q-13 0 -22.5 9.5t-9.5 22.5v7q65 268 270 434.5t480 166.5
+q146 0 284 -55.5t245 -156.5l130 129q19 19 45 19t45 -19t19 -45z" />
+    <glyph glyph-name="list_alt" unicode="&#xf022;" horiz-adv-x="1792" 
+d="M384 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M384 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1536 352v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5z
+M1536 608v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5t9.5 -22.5zM1536 864v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h960q13 0 22.5 -9.5
+t9.5 -22.5zM1664 160v832q0 13 -9.5 22.5t-22.5 9.5h-1472q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 1248v-1088q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1472q66 0 113 -47
+t47 -113z" />
+    <glyph glyph-name="lock" unicode="&#xf023;" horiz-adv-x="1152" 
+d="M320 768h512v192q0 106 -75 181t-181 75t-181 -75t-75 -181v-192zM1152 672v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v192q0 184 132 316t316 132t316 -132t132 -316v-192h32q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="flag" unicode="&#xf024;" horiz-adv-x="1792" 
+d="M320 1280q0 -72 -64 -110v-1266q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v1266q-64 38 -64 110q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -25 -12.5 -38.5t-39.5 -27.5q-215 -116 -369 -116q-61 0 -123.5 22t-108.5 48
+t-115.5 48t-142.5 22q-192 0 -464 -146q-17 -9 -33 -9q-26 0 -45 19t-19 45v742q0 32 31 55q21 14 79 43q236 120 421 120q107 0 200 -29t219 -88q38 -19 88 -19q54 0 117.5 21t110 47t88 47t54.5 21q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="headphones" unicode="&#xf025;" horiz-adv-x="1664" 
+d="M1664 650q0 -166 -60 -314l-20 -49l-185 -33q-22 -83 -90.5 -136.5t-156.5 -53.5v-32q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-32q71 0 130 -35.5t93 -95.5l68 12q29 95 29 193q0 148 -88 279t-236.5 209t-315.5 78
+t-315.5 -78t-236.5 -209t-88 -279q0 -98 29 -193l68 -12q34 60 93 95.5t130 35.5v32q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v32q-88 0 -156.5 53.5t-90.5 136.5l-185 33l-20 49q-60 148 -60 314q0 151 67 291t179 242.5
+t266 163.5t320 61t320 -61t266 -163.5t179 -242.5t67 -291z" />
+    <glyph glyph-name="volume_off" unicode="&#xf026;" horiz-adv-x="768" 
+d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45z" />
+    <glyph glyph-name="volume_down" unicode="&#xf027;" horiz-adv-x="1152" 
+d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36
+t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142z" />
+    <glyph glyph-name="volume_up" unicode="&#xf028;" horiz-adv-x="1664" 
+d="M768 1184v-1088q0 -26 -19 -45t-45 -19t-45 19l-333 333h-262q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h262l333 333q19 19 45 19t45 -19t19 -45zM1152 640q0 -76 -42.5 -141.5t-112.5 -93.5q-10 -5 -25 -5q-26 0 -45 18.5t-19 45.5q0 21 12 35.5t29 25t34 23t29 36
+t12 56.5t-12 56.5t-29 36t-34 23t-29 25t-12 35.5q0 27 19 45.5t45 18.5q15 0 25 -5q70 -27 112.5 -93t42.5 -142zM1408 640q0 -153 -85 -282.5t-225 -188.5q-13 -5 -25 -5q-27 0 -46 19t-19 45q0 39 39 59q56 29 76 44q74 54 115.5 135.5t41.5 173.5t-41.5 173.5
+t-115.5 135.5q-20 15 -76 44q-39 20 -39 59q0 26 19 45t45 19q13 0 26 -5q140 -59 225 -188.5t85 -282.5zM1664 640q0 -230 -127 -422.5t-338 -283.5q-13 -5 -26 -5q-26 0 -45 19t-19 45q0 36 39 59q7 4 22.5 10.5t22.5 10.5q46 25 82 51q123 91 192 227t69 289t-69 289
+t-192 227q-36 26 -82 51q-7 4 -22.5 10.5t-22.5 10.5q-39 23 -39 59q0 26 19 45t45 19q13 0 26 -5q211 -91 338 -283.5t127 -422.5z" />
+    <glyph glyph-name="qrcode" unicode="&#xf029;" horiz-adv-x="1408" 
+d="M384 384v-128h-128v128h128zM384 1152v-128h-128v128h128zM1152 1152v-128h-128v128h128zM128 129h384v383h-384v-383zM128 896h384v384h-384v-384zM896 896h384v384h-384v-384zM640 640v-640h-640v640h640zM1152 128v-128h-128v128h128zM1408 128v-128h-128v128h128z
+M1408 640v-384h-384v128h-128v-384h-128v640h384v-128h128v128h128zM640 1408v-640h-640v640h640zM1408 1408v-640h-640v640h640z" />
+    <glyph glyph-name="barcode" unicode="&#xf02a;" horiz-adv-x="1792" 
+d="M63 0h-63v1408h63v-1408zM126 1h-32v1407h32v-1407zM220 1h-31v1407h31v-1407zM377 1h-31v1407h31v-1407zM534 1h-62v1407h62v-1407zM660 1h-31v1407h31v-1407zM723 1h-31v1407h31v-1407zM786 1h-31v1407h31v-1407zM943 1h-63v1407h63v-1407zM1100 1h-63v1407h63v-1407z
+M1226 1h-63v1407h63v-1407zM1352 1h-63v1407h63v-1407zM1446 1h-63v1407h63v-1407zM1635 1h-94v1407h94v-1407zM1698 1h-32v1407h32v-1407zM1792 0h-63v1408h63v-1408z" />
+    <glyph glyph-name="tag" unicode="&#xf02b;" 
+d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5
+l715 -714q37 -39 37 -91z" />
+    <glyph glyph-name="tags" unicode="&#xf02c;" horiz-adv-x="1920" 
+d="M448 1088q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1515 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-53 0 -90 37l-715 716q-38 37 -64.5 101t-26.5 117v416q0 52 38 90t90 38h416q53 0 117 -26.5t102 -64.5
+l715 -714q37 -39 37 -91zM1899 512q0 -53 -37 -90l-491 -492q-39 -37 -91 -37q-36 0 -59 14t-53 45l470 470q37 37 37 90q0 52 -37 91l-715 714q-38 38 -102 64.5t-117 26.5h224q53 0 117 -26.5t102 -64.5l715 -714q37 -39 37 -91z" />
+    <glyph glyph-name="book" unicode="&#xf02d;" horiz-adv-x="1664" 
+d="M1639 1058q40 -57 18 -129l-275 -906q-19 -64 -76.5 -107.5t-122.5 -43.5h-923q-77 0 -148.5 53.5t-99.5 131.5q-24 67 -2 127q0 4 3 27t4 37q1 8 -3 21.5t-3 19.5q2 11 8 21t16.5 23.5t16.5 23.5q23 38 45 91.5t30 91.5q3 10 0.5 30t-0.5 28q3 11 17 28t17 23
+q21 36 42 92t25 90q1 9 -2.5 32t0.5 28q4 13 22 30.5t22 22.5q19 26 42.5 84.5t27.5 96.5q1 8 -3 25.5t-2 26.5q2 8 9 18t18 23t17 21q8 12 16.5 30.5t15 35t16 36t19.5 32t26.5 23.5t36 11.5t47.5 -5.5l-1 -3q38 9 51 9h761q74 0 114 -56t18 -130l-274 -906
+q-36 -119 -71.5 -153.5t-128.5 -34.5h-869q-27 0 -38 -15q-11 -16 -1 -43q24 -70 144 -70h923q29 0 56 15.5t35 41.5l300 987q7 22 5 57q38 -15 59 -43zM575 1056q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5
+t-16.5 -22.5zM492 800q-4 -13 2 -22.5t20 -9.5h608q13 0 25.5 9.5t16.5 22.5l21 64q4 13 -2 22.5t-20 9.5h-608q-13 0 -25.5 -9.5t-16.5 -22.5z" />
+    <glyph glyph-name="bookmark" unicode="&#xf02e;" horiz-adv-x="1280" 
+d="M1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
+    <glyph glyph-name="print" unicode="&#xf02f;" horiz-adv-x="1664" 
+d="M384 0h896v256h-896v-256zM384 640h896v384h-160q-40 0 -68 28t-28 68v160h-640v-640zM1536 576q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 576v-416q0 -13 -9.5 -22.5t-22.5 -9.5h-224v-160q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68
+v160h-224q-13 0 -22.5 9.5t-9.5 22.5v416q0 79 56.5 135.5t135.5 56.5h64v544q0 40 28 68t68 28h672q40 0 88 -20t76 -48l152 -152q28 -28 48 -76t20 -88v-256h64q79 0 135.5 -56.5t56.5 -135.5z" />
+    <glyph glyph-name="camera" unicode="&#xf030;" horiz-adv-x="1920" 
+d="M960 864q119 0 203.5 -84.5t84.5 -203.5t-84.5 -203.5t-203.5 -84.5t-203.5 84.5t-84.5 203.5t84.5 203.5t203.5 84.5zM1664 1280q106 0 181 -75t75 -181v-896q0 -106 -75 -181t-181 -75h-1408q-106 0 -181 75t-75 181v896q0 106 75 181t181 75h224l51 136
+q19 49 69.5 84.5t103.5 35.5h512q53 0 103.5 -35.5t69.5 -84.5l51 -136h224zM960 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="font" unicode="&#xf031;" horiz-adv-x="1664" 
+d="M725 977l-170 -450q33 0 136.5 -2t160.5 -2q19 0 57 2q-87 253 -184 452zM0 -128l2 79q23 7 56 12.5t57 10.5t49.5 14.5t44.5 29t31 50.5l237 616l280 724h75h53q8 -14 11 -21l205 -480q33 -78 106 -257.5t114 -274.5q15 -34 58 -144.5t72 -168.5q20 -45 35 -57
+q19 -15 88 -29.5t84 -20.5q6 -38 6 -57q0 -5 -0.5 -13.5t-0.5 -12.5q-63 0 -190 8t-191 8q-76 0 -215 -7t-178 -8q0 43 4 78l131 28q1 0 12.5 2.5t15.5 3.5t14.5 4.5t15 6.5t11 8t9 11t2.5 14q0 16 -31 96.5t-72 177.5t-42 100l-450 2q-26 -58 -76.5 -195.5t-50.5 -162.5
+q0 -22 14 -37.5t43.5 -24.5t48.5 -13.5t57 -8.5t41 -4q1 -19 1 -58q0 -9 -2 -27q-58 0 -174.5 10t-174.5 10q-8 0 -26.5 -4t-21.5 -4q-80 -14 -188 -14z" />
+    <glyph glyph-name="bold" unicode="&#xf032;" horiz-adv-x="1408" 
+d="M555 15q74 -32 140 -32q376 0 376 335q0 114 -41 180q-27 44 -61.5 74t-67.5 46.5t-80.5 25t-84 10.5t-94.5 2q-73 0 -101 -10q0 -53 -0.5 -159t-0.5 -158q0 -8 -1 -67.5t-0.5 -96.5t4.5 -83.5t12 -66.5zM541 761q42 -7 109 -7q82 0 143 13t110 44.5t74.5 89.5t25.5 142
+q0 70 -29 122.5t-79 82t-108 43.5t-124 14q-50 0 -130 -13q0 -50 4 -151t4 -152q0 -27 -0.5 -80t-0.5 -79q0 -46 1 -69zM0 -128l2 94q15 4 85 16t106 27q7 12 12.5 27t8.5 33.5t5.5 32.5t3 37.5t0.5 34v35.5v30q0 982 -22 1025q-4 8 -22 14.5t-44.5 11t-49.5 7t-48.5 4.5
+t-30.5 3l-4 83q98 2 340 11.5t373 9.5q23 0 68 -0.5t68 -0.5q70 0 136.5 -13t128.5 -42t108 -71t74 -104.5t28 -137.5q0 -52 -16.5 -95.5t-39 -72t-64.5 -57.5t-73 -45t-84 -40q154 -35 256.5 -134t102.5 -248q0 -100 -35 -179.5t-93.5 -130.5t-138 -85.5t-163.5 -48.5
+t-176 -14q-44 0 -132 3t-132 3q-106 0 -307 -11t-231 -12z" />
+    <glyph glyph-name="italic" unicode="&#xf033;" horiz-adv-x="1024" 
+d="M0 -126l17 85q22 7 61.5 16.5t72 19t59.5 23.5q28 35 41 101q1 7 62 289t114 543.5t52 296.5v25q-24 13 -54.5 18.5t-69.5 8t-58 5.5l19 103q33 -2 120 -6.5t149.5 -7t120.5 -2.5q48 0 98.5 2.5t121 7t98.5 6.5q-5 -39 -19 -89q-30 -10 -101.5 -28.5t-108.5 -33.5
+q-8 -19 -14 -42.5t-9 -40t-7.5 -45.5t-6.5 -42q-27 -148 -87.5 -419.5t-77.5 -355.5q-2 -9 -13 -58t-20 -90t-16 -83.5t-6 -57.5l1 -18q17 -4 185 -31q-3 -44 -16 -99q-11 0 -32.5 -1.5t-32.5 -1.5q-29 0 -87 10t-86 10q-138 2 -206 2q-51 0 -143 -9t-121 -11z" />
+    <glyph glyph-name="text_height" unicode="&#xf034;" horiz-adv-x="1792" 
+d="M1744 128q33 0 42 -18.5t-11 -44.5l-126 -162q-20 -26 -49 -26t-49 26l-126 162q-20 26 -11 44.5t42 18.5h80v1024h-80q-33 0 -42 18.5t11 44.5l126 162q20 26 49 26t49 -26l126 -162q20 -26 11 -44.5t-42 -18.5h-80v-1024h80zM81 1407l54 -27q12 -5 211 -5q44 0 132 2
+t132 2q36 0 107.5 -0.5t107.5 -0.5h293q6 0 21 -0.5t20.5 0t16 3t17.5 9t15 17.5l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 48t-14.5 73.5t-7.5 35.5q-6 8 -12 12.5t-15.5 6t-13 2.5t-18 0.5t-16.5 -0.5
+q-17 0 -66.5 0.5t-74.5 0.5t-64 -2t-71 -6q-9 -81 -8 -136q0 -94 2 -388t2 -455q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27
+q19 42 19 383q0 101 -3 303t-3 303v117q0 2 0.5 15.5t0.5 25t-1 25.5t-3 24t-5 14q-11 12 -162 12q-33 0 -93 -12t-80 -26q-19 -13 -34 -72.5t-31.5 -111t-42.5 -53.5q-42 26 -56 44v383z" />
+    <glyph glyph-name="text_width" unicode="&#xf035;" 
+d="M81 1407l54 -27q12 -5 211 -5q44 0 132 2t132 2q70 0 246.5 1t304.5 0.5t247 -4.5q33 -1 56 31l42 1q4 0 14 -0.5t14 -0.5q2 -112 2 -336q0 -80 -5 -109q-39 -14 -68 -18q-25 44 -54 128q-3 9 -11 47.5t-15 73.5t-7 36q-10 13 -27 19q-5 2 -66 2q-30 0 -93 1t-103 1
+t-94 -2t-96 -7q-9 -81 -8 -136l1 -152v52q0 -55 1 -154t1.5 -180t0.5 -153q0 -16 -2.5 -71.5t0 -91.5t12.5 -69q40 -21 124 -42.5t120 -37.5q5 -40 5 -50q0 -14 -3 -29l-34 -1q-76 -2 -218 8t-207 10q-50 0 -151 -9t-152 -9q-3 51 -3 52v9q17 27 61.5 43t98.5 29t78 27
+q7 16 11.5 74t6 145.5t1.5 155t-0.5 153.5t-0.5 89q0 7 -2.5 21.5t-2.5 22.5q0 7 0.5 44t1 73t0 76.5t-3 67.5t-6.5 32q-11 12 -162 12q-41 0 -163 -13.5t-138 -24.5q-19 -12 -34 -71.5t-31.5 -111.5t-42.5 -54q-42 26 -56 44v383zM1310 125q12 0 42 -19.5t57.5 -41.5
+t59.5 -49t36 -30q26 -21 26 -49t-26 -49q-4 -3 -36 -30t-59.5 -49t-57.5 -41.5t-42 -19.5q-13 0 -20.5 10.5t-10 28.5t-2.5 33.5t1.5 33t1.5 19.5h-1024q0 -2 1.5 -19.5t1.5 -33t-2.5 -33.5t-10 -28.5t-20.5 -10.5q-12 0 -42 19.5t-57.5 41.5t-59.5 49t-36 30q-26 21 -26 49
+t26 49q4 3 36 30t59.5 49t57.5 41.5t42 19.5q13 0 20.5 -10.5t10 -28.5t2.5 -33.5t-1.5 -33t-1.5 -19.5h1024q0 2 -1.5 19.5t-1.5 33t2.5 33.5t10 28.5t20.5 10.5z" />
+    <glyph glyph-name="align_left" unicode="&#xf036;" horiz-adv-x="1792" 
+d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45
+t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="align_center" unicode="&#xf037;" horiz-adv-x="1792" 
+d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1408 576v-128q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h896q26 0 45 -19t19 -45zM1664 960v-128q0 -26 -19 -45t-45 -19
+h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1280 1344v-128q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h640q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="align_right" unicode="&#xf038;" horiz-adv-x="1792" 
+d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1280q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45
+t-45 -19h-1536q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1536q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1152q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="align_justify" unicode="&#xf039;" horiz-adv-x="1792" 
+d="M1792 192v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 576v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 960v-128q0 -26 -19 -45
+t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-128q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="list" unicode="&#xf03a;" horiz-adv-x="1792" 
+d="M256 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM256 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5
+t9.5 -22.5zM256 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344
+q13 0 22.5 -9.5t9.5 -22.5zM256 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5
+t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v192
+q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="indent_left" unicode="&#xf03b;" horiz-adv-x="1792" 
+d="M384 992v-576q0 -13 -9.5 -22.5t-22.5 -9.5q-14 0 -23 9l-288 288q-9 9 -9 23t9 23l288 288q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5
+t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088
+q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="indent_right" unicode="&#xf03c;" horiz-adv-x="1792" 
+d="M352 704q0 -14 -9 -23l-288 -288q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v576q0 13 9.5 22.5t22.5 9.5q14 0 23 -9l288 -288q9 -9 9 -23zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5
+t9.5 -22.5zM1792 608v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088q13 0 22.5 -9.5t9.5 -22.5zM1792 992v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1088q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1088
+q13 0 22.5 -9.5t9.5 -22.5zM1792 1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1728q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1728q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="facetime_video" unicode="&#xf03d;" horiz-adv-x="1792" 
+d="M1792 1184v-1088q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-403 403v-166q0 -119 -84.5 -203.5t-203.5 -84.5h-704q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h704q119 0 203.5 -84.5t84.5 -203.5v-165l403 402q18 19 45 19q12 0 25 -5
+q39 -17 39 -59z" />
+    <glyph glyph-name="picture" unicode="&#xf03e;" horiz-adv-x="1920" 
+d="M640 960q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 576v-448h-1408v192l320 320l160 -160l512 512zM1760 1280h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5v1216
+q0 13 -9.5 22.5t-22.5 9.5zM1920 1248v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="pencil" unicode="&#xf040;" 
+d="M363 0l91 91l-235 235l-91 -91v-107h128v-128h107zM886 928q0 22 -22 22q-10 0 -17 -7l-542 -542q-7 -7 -7 -17q0 -22 22 -22q10 0 17 7l542 542q7 7 7 17zM832 1120l416 -416l-832 -832h-416v416zM1515 1024q0 -53 -37 -90l-166 -166l-416 416l166 165q36 38 90 38
+q53 0 91 -38l235 -234q37 -39 37 -91z" />
+    <glyph glyph-name="map_marker" unicode="&#xf041;" horiz-adv-x="1024" 
+d="M768 896q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1024 896q0 -109 -33 -179l-364 -774q-16 -33 -47.5 -52t-67.5 -19t-67.5 19t-46.5 52l-365 774q-33 70 -33 179q0 212 150 362t362 150t362 -150t150 -362z" />
+    <glyph glyph-name="adjust" unicode="&#xf042;" 
+d="M768 96v1088q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="tint" unicode="&#xf043;" horiz-adv-x="1024" 
+d="M512 384q0 36 -20 69q-1 1 -15.5 22.5t-25.5 38t-25 44t-21 50.5q-4 16 -21 16t-21 -16q-7 -23 -21 -50.5t-25 -44t-25.5 -38t-15.5 -22.5q-20 -33 -20 -69q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 512q0 -212 -150 -362t-362 -150t-362 150t-150 362
+q0 145 81 275q6 9 62.5 90.5t101 151t99.5 178t83 201.5q9 30 34 47t51 17t51.5 -17t33.5 -47q28 -93 83 -201.5t99.5 -178t101 -151t62.5 -90.5q81 -127 81 -275z" />
+    <glyph glyph-name="edit" unicode="&#xf044;" horiz-adv-x="1792" 
+d="M888 352l116 116l-152 152l-116 -116v-56h96v-96h56zM1328 1072q-16 16 -33 -1l-350 -350q-17 -17 -1 -33t33 1l350 350q17 17 1 33zM1408 478v-190q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832
+q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-14 -14 -32 -8q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v126q0 13 9 22l64 64q15 15 35 7t20 -29zM1312 1216l288 -288l-672 -672h-288v288zM1756 1084l-92 -92
+l-288 288l92 92q28 28 68 28t68 -28l152 -152q28 -28 28 -68t-28 -68z" />
+    <glyph glyph-name="share" unicode="&#xf045;" horiz-adv-x="1664" 
+d="M1408 547v-259q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h255v0q13 0 22.5 -9.5t9.5 -22.5q0 -27 -26 -32q-77 -26 -133 -60q-10 -4 -16 -4h-112q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832
+q66 0 113 47t47 113v214q0 19 18 29q28 13 54 37q16 16 35 8q21 -9 21 -29zM1645 1043l-384 -384q-18 -19 -45 -19q-12 0 -25 5q-39 17 -39 59v192h-160q-323 0 -438 -131q-119 -137 -74 -473q3 -23 -20 -34q-8 -2 -12 -2q-16 0 -26 13q-10 14 -21 31t-39.5 68.5t-49.5 99.5
+t-38.5 114t-17.5 122q0 49 3.5 91t14 90t28 88t47 81.5t68.5 74t94.5 61.5t124.5 48.5t159.5 30.5t196.5 11h160v192q0 42 39 59q13 5 25 5q26 0 45 -19l384 -384q19 -19 19 -45t-19 -45z" />
+    <glyph glyph-name="check" unicode="&#xf046;" horiz-adv-x="1664" 
+d="M1408 606v-318q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q63 0 117 -25q15 -7 18 -23q3 -17 -9 -29l-49 -49q-10 -10 -23 -10q-3 0 -9 2q-23 6 -45 6h-832q-66 0 -113 -47t-47 -113v-832
+q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v254q0 13 9 22l64 64q10 10 23 10q6 0 12 -3q20 -8 20 -29zM1639 1095l-814 -814q-24 -24 -57 -24t-57 24l-430 430q-24 24 -24 57t24 57l110 110q24 24 57 24t57 -24l263 -263l647 647q24 24 57 24t57 -24l110 -110
+q24 -24 24 -57t-24 -57z" />
+    <glyph glyph-name="move" unicode="&#xf047;" horiz-adv-x="1792" 
+d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-384v-384h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v384h-384v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45
+t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h384v384h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45t-19 -45t-45 -19h-128v-384h384v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
+    <glyph glyph-name="step_backward" unicode="&#xf048;" horiz-adv-x="1024" 
+d="M979 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19z" />
+    <glyph glyph-name="fast_backward" unicode="&#xf049;" horiz-adv-x="1792" 
+d="M1747 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-678q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-678q4 10 13 19l710 710
+q19 19 32 13t13 -32v-710q4 10 13 19z" />
+    <glyph glyph-name="backward" unicode="&#xf04a;" horiz-adv-x="1664" 
+d="M1619 1395q19 19 32 13t13 -32v-1472q0 -26 -13 -32t-32 13l-710 710q-9 9 -13 19v-710q0 -26 -13 -32t-32 13l-710 710q-19 19 -19 45t19 45l710 710q19 19 32 13t13 -32v-710q4 10 13 19z" />
+    <glyph glyph-name="play" unicode="&#xf04b;" horiz-adv-x="1408" 
+d="M1384 609l-1328 -738q-23 -13 -39.5 -3t-16.5 36v1472q0 26 16.5 36t39.5 -3l1328 -738q23 -13 23 -31t-23 -31z" />
+    <glyph glyph-name="pause" unicode="&#xf04c;" 
+d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45zM640 1344v-1408q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h512q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="stop" unicode="&#xf04d;" 
+d="M1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="forward" unicode="&#xf04e;" horiz-adv-x="1664" 
+d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q19 -19 19 -45t-19 -45l-710 -710q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" />
+    <glyph glyph-name="fast_forward" unicode="&#xf050;" horiz-adv-x="1792" 
+d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v710q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19l-710 -710
+q-19 -19 -32 -13t-13 32v710q-4 -10 -13 -19z" />
+    <glyph glyph-name="step_forward" unicode="&#xf051;" horiz-adv-x="1024" 
+d="M45 -115q-19 -19 -32 -13t-13 32v1472q0 26 13 32t32 -13l710 -710q9 -9 13 -19v678q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-1408q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v678q-4 -10 -13 -19z" />
+    <glyph glyph-name="eject" unicode="&#xf052;" horiz-adv-x="1538" 
+d="M14 557l710 710q19 19 45 19t45 -19l710 -710q19 -19 13 -32t-32 -13h-1472q-26 0 -32 13t13 32zM1473 0h-1408q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1408q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19z" />
+    <glyph glyph-name="chevron_left" unicode="&#xf053;" horiz-adv-x="1280" 
+d="M1171 1235l-531 -531l531 -531q19 -19 19 -45t-19 -45l-166 -166q-19 -19 -45 -19t-45 19l-742 742q-19 19 -19 45t19 45l742 742q19 19 45 19t45 -19l166 -166q19 -19 19 -45t-19 -45z" />
+    <glyph glyph-name="chevron_right" unicode="&#xf054;" horiz-adv-x="1280" 
+d="M1107 659l-742 -742q-19 -19 -45 -19t-45 19l-166 166q-19 19 -19 45t19 45l531 531l-531 531q-19 19 -19 45t19 45l166 166q19 19 45 19t45 -19l742 -742q19 -19 19 -45t-19 -45z" />
+    <glyph glyph-name="plus_sign" unicode="&#xf055;" 
+d="M1216 576v128q0 26 -19 45t-45 19h-256v256q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-256h-256q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h256v-256q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v256h256q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5
+t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="minus_sign" unicode="&#xf056;" 
+d="M1216 576v128q0 26 -19 45t-45 19h-768q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h768q26 0 45 19t19 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
+t103 -385.5z" />
+    <glyph glyph-name="remove_sign" unicode="&#xf057;" 
+d="M1149 414q0 26 -19 45l-181 181l181 181q19 19 19 45q0 27 -19 46l-90 90q-19 19 -46 19q-26 0 -45 -19l-181 -181l-181 181q-19 19 -45 19q-27 0 -46 -19l-90 -90q-19 -19 -19 -46q0 -26 19 -45l181 -181l-181 -181q-19 -19 -19 -45q0 -27 19 -46l90 -90q19 -19 46 -19
+q26 0 45 19l181 181l181 -181q19 -19 45 -19q27 0 46 19l90 90q19 19 19 46zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="ok_sign" unicode="&#xf058;" 
+d="M1284 802q0 28 -18 46l-91 90q-19 19 -45 19t-45 -19l-408 -407l-226 226q-19 19 -45 19t-45 -19l-91 -90q-18 -18 -18 -46q0 -27 18 -45l362 -362q19 -19 45 -19q27 0 46 19l543 543q18 18 18 45zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
+t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="question_sign" unicode="&#xf059;" 
+d="M896 160v192q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1152 832q0 88 -55.5 163t-138.5 116t-170 41q-243 0 -371 -213q-15 -24 8 -42l132 -100q7 -6 19 -6q16 0 25 12q53 68 86 92q34 24 86 24q48 0 85.5 -26t37.5 -59
+q0 -38 -20 -61t-68 -45q-63 -28 -115.5 -86.5t-52.5 -125.5v-36q0 -14 9 -23t23 -9h192q14 0 23 9t9 23q0 19 21.5 49.5t54.5 49.5q32 18 49 28.5t46 35t44.5 48t28 60.5t12.5 81zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="info_sign" unicode="&#xf05a;" 
+d="M1024 160v160q0 14 -9 23t-23 9h-96v512q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h96v-320h-96q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23t23 -9h448q14 0 23 9t9 23zM896 1056v160q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-160q0 -14 9 -23
+t23 -9h192q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="screenshot" unicode="&#xf05b;" 
+d="M1197 512h-109q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h109q-32 108 -112.5 188.5t-188.5 112.5v-109q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v109q-108 -32 -188.5 -112.5t-112.5 -188.5h109q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-109
+q32 -108 112.5 -188.5t188.5 -112.5v109q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-109q108 32 188.5 112.5t112.5 188.5zM1536 704v-128q0 -26 -19 -45t-45 -19h-143q-37 -161 -154.5 -278.5t-278.5 -154.5v-143q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v143
+q-161 37 -278.5 154.5t-154.5 278.5h-143q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h143q37 161 154.5 278.5t278.5 154.5v143q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-143q161 -37 278.5 -154.5t154.5 -278.5h143q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="remove_circle" unicode="&#xf05c;" 
+d="M1097 457l-146 -146q-10 -10 -23 -10t-23 10l-137 137l-137 -137q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l137 137l-137 137q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l137 -137l137 137q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23
+l-137 -137l137 -137q10 -10 10 -23t-10 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5
+t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="ok_circle" unicode="&#xf05d;" 
+d="M1171 723l-422 -422q-19 -19 -45 -19t-45 19l-294 294q-19 19 -19 45t19 45l102 102q19 19 45 19t45 -19l147 -147l275 275q19 19 45 19t45 -19l102 -102q19 -19 19 -45t-19 -45zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198
+t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="ban_circle" unicode="&#xf05e;" 
+d="M1312 643q0 161 -87 295l-754 -753q137 -89 297 -89q111 0 211.5 43.5t173.5 116.5t116 174.5t43 212.5zM313 344l755 754q-135 91 -300 91q-148 0 -273 -73t-198 -199t-73 -274q0 -162 89 -299zM1536 643q0 -157 -61 -300t-163.5 -246t-245 -164t-298.5 -61t-298.5 61
+t-245 164t-163.5 246t-61 300t61 299.5t163.5 245.5t245 164t298.5 61t298.5 -61t245 -164t163.5 -245.5t61 -299.5z" />
+    <glyph glyph-name="arrow_left" unicode="&#xf060;" 
+d="M1536 640v-128q0 -53 -32.5 -90.5t-84.5 -37.5h-704l293 -294q38 -36 38 -90t-38 -90l-75 -76q-37 -37 -90 -37q-52 0 -91 37l-651 652q-37 37 -37 90q0 52 37 91l651 650q38 38 91 38q52 0 90 -38l75 -74q38 -38 38 -91t-38 -91l-293 -293h704q52 0 84.5 -37.5
+t32.5 -90.5z" />
+    <glyph glyph-name="arrow_right" unicode="&#xf061;" 
+d="M1472 576q0 -54 -37 -91l-651 -651q-39 -37 -91 -37q-51 0 -90 37l-75 75q-38 38 -38 91t38 91l293 293h-704q-52 0 -84.5 37.5t-32.5 90.5v128q0 53 32.5 90.5t84.5 37.5h704l-293 294q-38 36 -38 90t38 90l75 75q38 38 90 38q53 0 91 -38l651 -651q37 -35 37 -90z" />
+    <glyph glyph-name="arrow_up" unicode="&#xf062;" horiz-adv-x="1664" 
+d="M1611 565q0 -51 -37 -90l-75 -75q-38 -38 -91 -38q-54 0 -90 38l-294 293v-704q0 -52 -37.5 -84.5t-90.5 -32.5h-128q-53 0 -90.5 32.5t-37.5 84.5v704l-294 -293q-36 -38 -90 -38t-90 38l-75 75q-38 38 -38 90q0 53 38 91l651 651q35 37 90 37q54 0 91 -37l651 -651
+q37 -39 37 -91z" />
+    <glyph glyph-name="arrow_down" unicode="&#xf063;" horiz-adv-x="1664" 
+d="M1611 704q0 -53 -37 -90l-651 -652q-39 -37 -91 -37q-53 0 -90 37l-651 652q-38 36 -38 90q0 53 38 91l74 75q39 37 91 37q53 0 90 -37l294 -294v704q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-704l294 294q37 37 90 37q52 0 91 -37l75 -75q37 -39 37 -91z" />
+    <glyph glyph-name="share_alt" unicode="&#xf064;" horiz-adv-x="1792" 
+d="M1792 896q0 -26 -19 -45l-512 -512q-19 -19 -45 -19t-45 19t-19 45v256h-224q-98 0 -175.5 -6t-154 -21.5t-133 -42.5t-105.5 -69.5t-80 -101t-48.5 -138.5t-17.5 -181q0 -55 5 -123q0 -6 2.5 -23.5t2.5 -26.5q0 -15 -8.5 -25t-23.5 -10q-16 0 -28 17q-7 9 -13 22
+t-13.5 30t-10.5 24q-127 285 -127 451q0 199 53 333q162 403 875 403h224v256q0 26 19 45t45 19t45 -19l512 -512q19 -19 19 -45z" />
+    <glyph glyph-name="resize_full" unicode="&#xf065;" 
+d="M755 480q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23zM1536 1344v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332
+q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="resize_small" unicode="&#xf066;" 
+d="M768 576v-448q0 -26 -19 -45t-45 -19t-45 19l-144 144l-332 -332q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l332 332l-144 144q-19 19 -19 45t19 45t45 19h448q26 0 45 -19t19 -45zM1523 1248q0 -13 -10 -23l-332 -332l144 -144q19 -19 19 -45t-19 -45
+t-45 -19h-448q-26 0 -45 19t-19 45v448q0 26 19 45t45 19t45 -19l144 -144l332 332q10 10 23 10t23 -10l114 -114q10 -10 10 -23z" />
+    <glyph glyph-name="plus" unicode="&#xf067;" horiz-adv-x="1408" 
+d="M1408 800v-192q0 -40 -28 -68t-68 -28h-416v-416q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v416h-416q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h416v416q0 40 28 68t68 28h192q40 0 68 -28t28 -68v-416h416q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="minus" unicode="&#xf068;" horiz-adv-x="1408" 
+d="M1408 800v-192q0 -40 -28 -68t-68 -28h-1216q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h1216q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="asterisk" unicode="&#xf069;" horiz-adv-x="1664" 
+d="M1482 486q46 -26 59.5 -77.5t-12.5 -97.5l-64 -110q-26 -46 -77.5 -59.5t-97.5 12.5l-266 153v-307q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v307l-266 -153q-46 -26 -97.5 -12.5t-77.5 59.5l-64 110q-26 46 -12.5 97.5t59.5 77.5l266 154l-266 154
+q-46 26 -59.5 77.5t12.5 97.5l64 110q26 46 77.5 59.5t97.5 -12.5l266 -153v307q0 52 38 90t90 38h128q52 0 90 -38t38 -90v-307l266 153q46 26 97.5 12.5t77.5 -59.5l64 -110q26 -46 12.5 -97.5t-59.5 -77.5l-266 -154z" />
+    <glyph glyph-name="exclamation_sign" unicode="&#xf06a;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM896 161v190q0 14 -9 23.5t-22 9.5h-192q-13 0 -23 -10t-10 -23v-190q0 -13 10 -23t23 -10h192
+q13 0 22 9.5t9 23.5zM894 505l18 621q0 12 -10 18q-10 8 -24 8h-220q-14 0 -24 -8q-10 -6 -10 -18l17 -621q0 -10 10 -17.5t24 -7.5h185q14 0 23.5 7.5t10.5 17.5z" />
+    <glyph glyph-name="gift" unicode="&#xf06b;" 
+d="M928 180v56v468v192h-320v-192v-468v-56q0 -25 18 -38.5t46 -13.5h192q28 0 46 13.5t18 38.5zM472 1024h195l-126 161q-26 31 -69 31q-40 0 -68 -28t-28 -68t28 -68t68 -28zM1160 1120q0 40 -28 68t-68 28q-43 0 -69 -31l-125 -161h194q40 0 68 28t28 68zM1536 864v-320
+q0 -14 -9 -23t-23 -9h-96v-416q0 -40 -28 -68t-68 -28h-1088q-40 0 -68 28t-28 68v416h-96q-14 0 -23 9t-9 23v320q0 14 9 23t23 9h440q-93 0 -158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5q107 0 168 -77l128 -165l128 165q61 77 168 77q93 0 158.5 -65.5t65.5 -158.5
+t-65.5 -158.5t-158.5 -65.5h440q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="leaf" unicode="&#xf06c;" horiz-adv-x="1792" 
+d="M1280 832q0 26 -19 45t-45 19q-172 0 -318 -49.5t-259.5 -134t-235.5 -219.5q-19 -21 -19 -45q0 -26 19 -45t45 -19q24 0 45 19q27 24 74 71t67 66q137 124 268.5 176t313.5 52q26 0 45 19t19 45zM1792 1030q0 -95 -20 -193q-46 -224 -184.5 -383t-357.5 -268
+q-214 -108 -438 -108q-148 0 -286 47q-15 5 -88 42t-96 37q-16 0 -39.5 -32t-45 -70t-52.5 -70t-60 -32q-43 0 -63.5 17.5t-45.5 59.5q-2 4 -6 11t-5.5 10t-3 9.5t-1.5 13.5q0 35 31 73.5t68 65.5t68 56t31 48q0 4 -14 38t-16 44q-9 51 -9 104q0 115 43.5 220t119 184.5
+t170.5 139t204 95.5q55 18 145 25.5t179.5 9t178.5 6t163.5 24t113.5 56.5l29.5 29.5t29.5 28t27 20t36.5 16t43.5 4.5q39 0 70.5 -46t47.5 -112t24 -124t8 -96z" />
+    <glyph glyph-name="fire" unicode="&#xf06d;" horiz-adv-x="1408" 
+d="M1408 -160v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-1344q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h1344q13 0 22.5 -9.5t9.5 -22.5zM1152 896q0 -78 -24.5 -144t-64 -112.5t-87.5 -88t-96 -77.5t-87.5 -72t-64 -81.5t-24.5 -96.5q0 -96 67 -224l-4 1l1 -1
+q-90 41 -160 83t-138.5 100t-113.5 122.5t-72.5 150.5t-27.5 184q0 78 24.5 144t64 112.5t87.5 88t96 77.5t87.5 72t64 81.5t24.5 96.5q0 94 -66 224l3 -1l-1 1q90 -41 160 -83t138.5 -100t113.5 -122.5t72.5 -150.5t27.5 -184z" />
+    <glyph glyph-name="eye_open" unicode="&#xf06e;" horiz-adv-x="1792" 
+d="M1664 576q-152 236 -381 353q61 -104 61 -225q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 121 61 225q-229 -117 -381 -353q133 -205 333.5 -326.5t434.5 -121.5t434.5 121.5t333.5 326.5zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5
+t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1792 576q0 -34 -20 -69q-140 -230 -376.5 -368.5t-499.5 -138.5t-499.5 139t-376.5 368q-20 35 -20 69t20 69q140 229 376.5 368t499.5 139t499.5 -139t376.5 -368q20 -35 20 -69z" />
+    <glyph glyph-name="eye_close" unicode="&#xf070;" horiz-adv-x="1792" 
+d="M555 201l78 141q-87 63 -136 159t-49 203q0 121 61 225q-229 -117 -381 -353q167 -258 427 -375zM944 960q0 20 -14 34t-34 14q-125 0 -214.5 -89.5t-89.5 -214.5q0 -20 14 -34t34 -14t34 14t14 34q0 86 61 147t147 61q20 0 34 14t14 34zM1307 1151q0 -7 -1 -9
+q-106 -189 -316 -567t-315 -566l-49 -89q-10 -16 -28 -16q-12 0 -134 70q-16 10 -16 28q0 12 44 87q-143 65 -263.5 173t-208.5 245q-20 31 -20 69t20 69q153 235 380 371t496 136q89 0 180 -17l54 97q10 16 28 16q5 0 18 -6t31 -15.5t33 -18.5t31.5 -18.5t19.5 -11.5
+q16 -10 16 -27zM1344 704q0 -139 -79 -253.5t-209 -164.5l280 502q8 -45 8 -84zM1792 576q0 -35 -20 -69q-39 -64 -109 -145q-150 -172 -347.5 -267t-419.5 -95l74 132q212 18 392.5 137t301.5 307q-115 179 -282 294l63 112q95 -64 182.5 -153t144.5 -184q20 -34 20 -69z
+" />
+    <glyph glyph-name="warning_sign" unicode="&#xf071;" horiz-adv-x="1792" 
+d="M1024 161v190q0 14 -9.5 23.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -23.5v-190q0 -14 9.5 -23.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 23.5zM1022 535l18 459q0 12 -10 19q-13 11 -24 11h-220q-11 0 -24 -11q-10 -7 -10 -21l17 -457q0 -10 10 -16.5t24 -6.5h185
+q14 0 23.5 6.5t10.5 16.5zM1008 1469l768 -1408q35 -63 -2 -126q-17 -29 -46.5 -46t-63.5 -17h-1536q-34 0 -63.5 17t-46.5 46q-37 63 -2 126l768 1408q17 31 47 49t65 18t65 -18t47 -49z" />
+    <glyph glyph-name="plane" unicode="&#xf072;" horiz-adv-x="1408" 
+d="M1376 1376q44 -52 12 -148t-108 -172l-161 -161l160 -696q5 -19 -12 -33l-128 -96q-7 -6 -19 -6q-4 0 -7 1q-15 3 -21 16l-279 508l-259 -259l53 -194q5 -17 -8 -31l-96 -96q-9 -9 -23 -9h-2q-15 2 -24 13l-189 252l-252 189q-11 7 -13 23q-1 13 9 25l96 97q9 9 23 9
+q6 0 8 -1l194 -53l259 259l-508 279q-14 8 -17 24q-2 16 9 27l128 128q14 13 30 8l665 -159l160 160q76 76 172 108t148 -12z" />
+    <glyph glyph-name="calendar" unicode="&#xf073;" horiz-adv-x="1664" 
+d="M128 -128h288v288h-288v-288zM480 -128h320v288h-320v-288zM128 224h288v320h-288v-320zM480 224h320v320h-320v-320zM128 608h288v288h-288v-288zM864 -128h320v288h-320v-288zM480 608h320v288h-320v-288zM1248 -128h288v288h-288v-288zM864 224h320v320h-320v-320z
+M512 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1248 224h288v320h-288v-320zM864 608h320v288h-320v-288zM1248 608h288v288h-288v-288zM1280 1088v288q0 13 -9.5 22.5t-22.5 9.5h-64
+q-13 0 -22.5 -9.5t-9.5 -22.5v-288q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47
+h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="random" unicode="&#xf074;" horiz-adv-x="1792" 
+d="M666 1055q-60 -92 -137 -273q-22 45 -37 72.5t-40.5 63.5t-51 56.5t-63 35t-81.5 14.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q250 0 410 -225zM1792 256q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192q-32 0 -85 -0.5t-81 -1t-73 1
+t-71 5t-64 10.5t-63 18.5t-58 28.5t-59 40t-55 53.5t-56 69.5q59 93 136 273q22 -45 37 -72.5t40.5 -63.5t51 -56.5t63 -35t81.5 -14.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1792 1152q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5
+v192h-256q-48 0 -87 -15t-69 -45t-51 -61.5t-45 -77.5q-32 -62 -78 -171q-29 -66 -49.5 -111t-54 -105t-64 -100t-74 -83t-90 -68.5t-106.5 -42t-128 -16.5h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224q48 0 87 15t69 45t51 61.5t45 77.5q32 62 78 171q29 66 49.5 111
+t54 105t64 100t74 83t90 68.5t106.5 42t128 16.5h256v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
+    <glyph glyph-name="comment" unicode="&#xf075;" horiz-adv-x="1792" 
+d="M1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22q-17 -2 -30.5 9t-17.5 29v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281
+q0 130 71 248.5t191 204.5t286 136.5t348 50.5q244 0 450 -85.5t326 -233t120 -321.5z" />
+    <glyph glyph-name="magnet" unicode="&#xf076;" 
+d="M1536 704v-128q0 -201 -98.5 -362t-274 -251.5t-395.5 -90.5t-395.5 90.5t-274 251.5t-98.5 362v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-128q0 -52 23.5 -90t53.5 -57t71 -30t64 -13t44 -2t44 2t64 13t71 30t53.5 57t23.5 90v128q0 26 19 45t45 19h384
+q26 0 45 -19t19 -45zM512 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45zM1536 1344v-384q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h384q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="chevron_up" unicode="&#xf077;" horiz-adv-x="1792" 
+d="M1683 205l-166 -165q-19 -19 -45 -19t-45 19l-531 531l-531 -531q-19 -19 -45 -19t-45 19l-166 165q-19 19 -19 45.5t19 45.5l742 741q19 19 45 19t45 -19l742 -741q19 -19 19 -45.5t-19 -45.5z" />
+    <glyph glyph-name="chevron_down" unicode="&#xf078;" horiz-adv-x="1792" 
+d="M1683 728l-742 -741q-19 -19 -45 -19t-45 19l-742 741q-19 19 -19 45.5t19 45.5l166 165q19 19 45 19t45 -19l531 -531l531 531q19 19 45 19t45 -19l166 -165q19 -19 19 -45.5t-19 -45.5z" />
+    <glyph glyph-name="retweet" unicode="&#xf079;" horiz-adv-x="1920" 
+d="M1280 32q0 -13 -9.5 -22.5t-22.5 -9.5h-960q-8 0 -13.5 2t-9 7t-5.5 8t-3 11.5t-1 11.5v13v11v160v416h-192q-26 0 -45 19t-19 45q0 24 15 41l320 384q19 22 49 22t49 -22l320 -384q15 -17 15 -41q0 -26 -19 -45t-45 -19h-192v-384h576q16 0 25 -11l160 -192q7 -10 7 -21
+zM1920 448q0 -24 -15 -41l-320 -384q-20 -23 -49 -23t-49 23l-320 384q-15 17 -15 41q0 26 19 45t45 19h192v384h-576q-16 0 -25 12l-160 192q-7 9 -7 20q0 13 9.5 22.5t22.5 9.5h960q8 0 13.5 -2t9 -7t5.5 -8t3 -11.5t1 -11.5v-13v-11v-160v-416h192q26 0 45 -19t19 -45z
+" />
+    <glyph glyph-name="shopping_cart" unicode="&#xf07a;" horiz-adv-x="1664" 
+d="M640 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1536 0q0 -52 -38 -90t-90 -38t-90 38t-38 90t38 90t90 38t90 -38t38 -90zM1664 1088v-512q0 -24 -16.5 -42.5t-40.5 -21.5l-1044 -122q13 -60 13 -70q0 -16 -24 -64h920q26 0 45 -19t19 -45
+t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 11 8 31.5t16 36t21.5 40t15.5 29.5l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t19.5 -15.5t13 -24.5t8 -26t5.5 -29.5t4.5 -26h1201q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="folder_close" unicode="&#xf07b;" horiz-adv-x="1664" 
+d="M1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="folder_open" unicode="&#xf07c;" horiz-adv-x="1920" 
+d="M1879 584q0 -31 -31 -66l-336 -396q-43 -51 -120.5 -86.5t-143.5 -35.5h-1088q-34 0 -60.5 13t-26.5 43q0 31 31 66l336 396q43 51 120.5 86.5t143.5 35.5h1088q34 0 60.5 -13t26.5 -43zM1536 928v-160h-832q-94 0 -197 -47.5t-164 -119.5l-337 -396l-5 -6q0 4 -0.5 12.5
+t-0.5 12.5v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="resize_vertical" unicode="&#xf07d;" horiz-adv-x="768" 
+d="M704 1216q0 -26 -19 -45t-45 -19h-128v-1024h128q26 0 45 -19t19 -45t-19 -45l-256 -256q-19 -19 -45 -19t-45 19l-256 256q-19 19 -19 45t19 45t45 19h128v1024h-128q-26 0 -45 19t-19 45t19 45l256 256q19 19 45 19t45 -19l256 -256q19 -19 19 -45z" />
+    <glyph glyph-name="resize_horizontal" unicode="&#xf07e;" horiz-adv-x="1792" 
+d="M1792 640q0 -26 -19 -45l-256 -256q-19 -19 -45 -19t-45 19t-19 45v128h-1024v-128q0 -26 -19 -45t-45 -19t-45 19l-256 256q-19 19 -19 45t19 45l256 256q19 19 45 19t45 -19t19 -45v-128h1024v128q0 26 19 45t45 19t45 -19l256 -256q19 -19 19 -45z" />
+    <glyph glyph-name="bar_chart" unicode="&#xf080;" horiz-adv-x="2048" 
+d="M640 640v-512h-256v512h256zM1024 1152v-1024h-256v1024h256zM2048 0v-128h-2048v1536h128v-1408h1920zM1408 896v-768h-256v768h256zM1792 1280v-1152h-256v1152h256z" />
+    <glyph glyph-name="twitter_sign" unicode="&#xf081;" 
+d="M1280 926q-56 -25 -121 -34q68 40 93 117q-65 -38 -134 -51q-61 66 -153 66q-87 0 -148.5 -61.5t-61.5 -148.5q0 -29 5 -48q-129 7 -242 65t-192 155q-29 -50 -29 -106q0 -114 91 -175q-47 1 -100 26v-2q0 -75 50 -133.5t123 -72.5q-29 -8 -51 -8q-13 0 -39 4
+q21 -63 74.5 -104t121.5 -42q-116 -90 -261 -90q-26 0 -50 3q148 -94 322 -94q112 0 210 35.5t168 95t120.5 137t75 162t24.5 168.5q0 18 -1 27q63 45 105 109zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5
+t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="facebook_sign" unicode="&#xf082;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-188v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-532q-119 0 -203.5 84.5t-84.5 203.5v960
+q0 119 84.5 203.5t203.5 84.5h960z" />
+    <glyph glyph-name="camera_retro" unicode="&#xf083;" horiz-adv-x="1792" 
+d="M928 704q0 14 -9 23t-23 9q-66 0 -113 -47t-47 -113q0 -14 9 -23t23 -9t23 9t9 23q0 40 28 68t68 28q14 0 23 9t9 23zM1152 574q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM128 0h1536v128h-1536v-128zM1280 574q0 159 -112.5 271.5
+t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM256 1216h384v128h-384v-128zM128 1024h1536v118v138h-828l-64 -128h-644v-128zM1792 1280v-1280q0 -53 -37.5 -90.5t-90.5 -37.5h-1536q-53 0 -90.5 37.5t-37.5 90.5v1280
+q0 53 37.5 90.5t90.5 37.5h1536q53 0 90.5 -37.5t37.5 -90.5z" />
+    <glyph glyph-name="key" unicode="&#xf084;" horiz-adv-x="1792" 
+d="M832 1024q0 80 -56 136t-136 56t-136 -56t-56 -136q0 -42 19 -83q-41 19 -83 19q-80 0 -136 -56t-56 -136t56 -136t136 -56t136 56t56 136q0 42 -19 83q41 -19 83 -19q80 0 136 56t56 136zM1683 320q0 -17 -49 -66t-66 -49q-9 0 -28.5 16t-36.5 33t-38.5 40t-24.5 26
+l-96 -96l220 -220q28 -28 28 -68q0 -42 -39 -81t-81 -39q-40 0 -68 28l-671 671q-176 -131 -365 -131q-163 0 -265.5 102.5t-102.5 265.5q0 160 95 313t248 248t313 95q163 0 265.5 -102.5t102.5 -265.5q0 -189 -131 -365l355 -355l96 96q-3 3 -26 24.5t-40 38.5t-33 36.5
+t-16 28.5q0 17 49 66t66 49q13 0 23 -10q6 -6 46 -44.5t82 -79.5t86.5 -86t73 -78t28.5 -41z" />
+    <glyph glyph-name="cogs" unicode="&#xf085;" horiz-adv-x="1920" 
+d="M896 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1664 128q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1152q0 52 -38 90t-90 38t-90 -38t-38 -90q0 -53 37.5 -90.5t90.5 -37.5
+t90.5 37.5t37.5 90.5zM1280 731v-185q0 -10 -7 -19.5t-16 -10.5l-155 -24q-11 -35 -32 -76q34 -48 90 -115q7 -11 7 -20q0 -12 -7 -19q-23 -30 -82.5 -89.5t-78.5 -59.5q-11 0 -21 7l-115 90q-37 -19 -77 -31q-11 -108 -23 -155q-7 -24 -30 -24h-186q-11 0 -20 7.5t-10 17.5
+l-23 153q-34 10 -75 31l-118 -89q-7 -7 -20 -7q-11 0 -21 8q-144 133 -144 160q0 9 7 19q10 14 41 53t47 61q-23 44 -35 82l-152 24q-10 1 -17 9.5t-7 19.5v185q0 10 7 19.5t16 10.5l155 24q11 35 32 76q-34 48 -90 115q-7 11 -7 20q0 12 7 20q22 30 82 89t79 59q11 0 21 -7
+l115 -90q34 18 77 32q11 108 23 154q7 24 30 24h186q11 0 20 -7.5t10 -17.5l23 -153q34 -10 75 -31l118 89q8 7 20 7q11 0 21 -8q144 -133 144 -160q0 -8 -7 -19q-12 -16 -42 -54t-45 -60q23 -48 34 -82l152 -23q10 -2 17 -10.5t7 -19.5zM1920 198v-140q0 -16 -149 -31
+q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20
+t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31zM1920 1222v-140q0 -16 -149 -31q-12 -27 -30 -52q51 -113 51 -138q0 -4 -4 -7q-122 -71 -124 -71q-8 0 -46 47t-52 68
+q-20 -2 -30 -2t-30 2q-14 -21 -52 -68t-46 -47q-2 0 -124 71q-4 3 -4 7q0 25 51 138q-18 25 -30 52q-149 15 -149 31v140q0 16 149 31q13 29 30 52q-51 113 -51 138q0 4 4 7q4 2 35 20t59 34t30 16q8 0 46 -46.5t52 -67.5q20 2 30 2t30 -2q51 71 92 112l6 2q4 0 124 -70
+q4 -3 4 -7q0 -25 -51 -138q17 -23 30 -52q149 -15 149 -31z" />
+    <glyph glyph-name="comments" unicode="&#xf086;" horiz-adv-x="1792" 
+d="M1408 768q0 -139 -94 -257t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224
+q0 139 94 257t256.5 186.5t353.5 68.5t353.5 -68.5t256.5 -186.5t94 -257zM1792 512q0 -120 -71 -224.5t-195 -176.5q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7
+q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230z" />
+    <glyph glyph-name="thumbs_up_alt" unicode="&#xf087;" 
+d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 768q0 51 -39 89.5t-89 38.5h-352q0 58 48 159.5t48 160.5q0 98 -32 145t-128 47q-26 -26 -38 -85t-30.5 -125.5t-59.5 -109.5q-22 -23 -77 -91q-4 -5 -23 -30t-31.5 -41t-34.5 -42.5
+t-40 -44t-38.5 -35.5t-40 -27t-35.5 -9h-32v-640h32q13 0 31.5 -3t33 -6.5t38 -11t35 -11.5t35.5 -12.5t29 -10.5q211 -73 342 -73h121q192 0 192 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5q32 1 53.5 47t21.5 81zM1536 769
+q0 -89 -49 -163q9 -33 9 -69q0 -77 -38 -144q3 -21 3 -43q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5h-36h-93q-96 0 -189.5 22.5t-216.5 65.5q-116 40 -138 40h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h274q36 24 137 155q58 75 107 128
+q24 25 35.5 85.5t30.5 126.5t62 108q39 37 90 37q84 0 151 -32.5t102 -101.5t35 -186q0 -93 -48 -192h176q104 0 180 -76t76 -179z" />
+    <glyph glyph-name="thumbs_down_alt" unicode="&#xf088;" 
+d="M256 1088q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 512q0 35 -21.5 81t-53.5 47q15 17 25 47.5t10 55.5q0 69 -53 119q18 31 18 69q0 37 -17.5 73.5t-47.5 52.5q5 30 5 56q0 85 -49 126t-136 41h-128q-131 0 -342 -73q-5 -2 -29 -10.5
+t-35.5 -12.5t-35 -11.5t-38 -11t-33 -6.5t-31.5 -3h-32v-640h32q16 0 35.5 -9t40 -27t38.5 -35.5t40 -44t34.5 -42.5t31.5 -41t23 -30q55 -68 77 -91q41 -43 59.5 -109.5t30.5 -125.5t38 -85q96 0 128 47t32 145q0 59 -48 160.5t-48 159.5h352q50 0 89 38.5t39 89.5z
+M1536 511q0 -103 -76 -179t-180 -76h-176q48 -99 48 -192q0 -118 -35 -186q-35 -69 -102 -101.5t-151 -32.5q-51 0 -90 37q-34 33 -54 82t-25.5 90.5t-17.5 84.5t-31 64q-48 50 -107 127q-101 131 -137 155h-274q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5
+h288q22 0 138 40q128 44 223 66t200 22h112q140 0 226.5 -79t85.5 -216v-5q60 -77 60 -178q0 -22 -3 -43q38 -67 38 -144q0 -36 -9 -69q49 -73 49 -163z" />
+    <glyph glyph-name="star_half" unicode="&#xf089;" horiz-adv-x="896" 
+d="M832 1504v-1339l-449 -236q-22 -12 -40 -12q-21 0 -31.5 14.5t-10.5 35.5q0 6 2 20l86 500l-364 354q-25 27 -25 48q0 37 56 46l502 73l225 455q19 41 49 41z" />
+    <glyph glyph-name="heart_empty" unicode="&#xf08a;" horiz-adv-x="1792" 
+d="M1664 940q0 81 -21.5 143t-55 98.5t-81.5 59.5t-94 31t-98 8t-112 -25.5t-110.5 -64t-86.5 -72t-60 -61.5q-18 -22 -49 -22t-49 22q-24 28 -60 61.5t-86.5 72t-110.5 64t-112 25.5t-98 -8t-94 -31t-81.5 -59.5t-55 -98.5t-21.5 -143q0 -168 187 -355l581 -560l580 559
+q188 188 188 356zM1792 940q0 -221 -229 -450l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-10 8 -27.5 26t-55.5 65.5t-68 97.5t-53.5 121t-23.5 138q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5
+q224 0 351 -124t127 -344z" />
+    <glyph glyph-name="signout" unicode="&#xf08b;" horiz-adv-x="1664" 
+d="M640 96q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-119 0 -203.5 84.5t-84.5 203.5v704q0 119 84.5 203.5t203.5 84.5h320q13 0 22.5 -9.5t9.5 -22.5q0 -4 1 -20t0.5 -26.5t-3 -23.5t-10 -19.5t-20.5 -6.5h-320q-66 0 -113 -47t-47 -113v-704
+q0 -66 47 -113t113 -47h288h11h13t11.5 -1t11.5 -3t8 -5.5t7 -9t2 -13.5zM1568 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45z" />
+    <glyph glyph-name="linkedin_sign" unicode="&#xf08c;" 
+d="M237 122h231v694h-231v-694zM483 1030q-1 52 -36 86t-93 34t-94.5 -34t-36.5 -86q0 -51 35.5 -85.5t92.5 -34.5h1q59 0 95 34.5t36 85.5zM1068 122h231v398q0 154 -73 233t-193 79q-136 0 -209 -117h2v101h-231q3 -66 0 -694h231v388q0 38 7 56q15 35 45 59.5t74 24.5
+q116 0 116 -157v-371zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="pushpin" unicode="&#xf08d;" horiz-adv-x="1152" 
+d="M480 672v448q0 14 -9 23t-23 9t-23 -9t-9 -23v-448q0 -14 9 -23t23 -9t23 9t9 23zM1152 320q0 -26 -19 -45t-45 -19h-429l-51 -483q-2 -12 -10.5 -20.5t-20.5 -8.5h-1q-27 0 -32 27l-76 485h-404q-26 0 -45 19t-19 45q0 123 78.5 221.5t177.5 98.5v512q-52 0 -90 38
+t-38 90t38 90t90 38h640q52 0 90 -38t38 -90t-38 -90t-90 -38v-512q99 0 177.5 -98.5t78.5 -221.5z" />
+    <glyph glyph-name="external_link" unicode="&#xf08e;" horiz-adv-x="1792" 
+d="M1408 608v-320q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v320
+q0 14 9 23t23 9h64q14 0 23 -9t9 -23zM1792 1472v-512q0 -26 -19 -45t-45 -19t-45 19l-176 176l-652 -652q-10 -10 -23 -10t-23 10l-114 114q-10 10 -10 23t10 23l652 652l-176 176q-19 19 -19 45t19 45t45 19h512q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="signin" unicode="&#xf090;" 
+d="M1184 640q0 -26 -19 -45l-544 -544q-19 -19 -45 -19t-45 19t-19 45v288h-448q-26 0 -45 19t-19 45v384q0 26 19 45t45 19h448v288q0 26 19 45t45 19t45 -19l544 -544q19 -19 19 -45zM1536 992v-704q0 -119 -84.5 -203.5t-203.5 -84.5h-320q-13 0 -22.5 9.5t-9.5 22.5
+q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q66 0 113 47t47 113v704q0 66 -47 113t-113 47h-288h-11h-13t-11.5 1t-11.5 3t-8 5.5t-7 9t-2 13.5q0 4 -1 20t-0.5 26.5t3 23.5t10 19.5t20.5 6.5h320q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="trophy" unicode="&#xf091;" horiz-adv-x="1664" 
+d="M458 653q-74 162 -74 371h-256v-96q0 -78 94.5 -162t235.5 -113zM1536 928v96h-256q0 -209 -74 -371q141 29 235.5 113t94.5 162zM1664 1056v-128q0 -71 -41.5 -143t-112 -130t-173 -97.5t-215.5 -44.5q-42 -54 -95 -95q-38 -34 -52.5 -72.5t-14.5 -89.5q0 -54 30.5 -91
+t97.5 -37q75 0 133.5 -45.5t58.5 -114.5v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 69 58.5 114.5t133.5 45.5q67 0 97.5 37t30.5 91q0 51 -14.5 89.5t-52.5 72.5q-53 41 -95 95q-113 5 -215.5 44.5t-173 97.5t-112 130t-41.5 143v128q0 40 28 68t68 28h288v96
+q0 66 47 113t113 47h576q66 0 113 -47t47 -113v-96h288q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="github_sign" unicode="&#xf092;" 
+d="M519 336q4 6 -3 13q-9 7 -14 2q-4 -6 3 -13q9 -7 14 -2zM491 377q-5 7 -12 4q-6 -4 0 -12q7 -8 12 -5q6 4 0 13zM450 417q2 4 -5 8q-7 2 -8 -2q-3 -5 4 -8q8 -2 9 2zM471 394q2 1 1.5 4.5t-3.5 5.5q-6 7 -10 3t1 -11q6 -6 11 -2zM557 319q2 7 -9 11q-9 3 -13 -4
+q-2 -7 9 -11q9 -3 13 4zM599 316q0 8 -12 8q-10 0 -10 -8t11 -8t11 8zM638 323q-2 7 -13 5t-9 -9q2 -8 12 -6t10 10zM1280 640q0 212 -150 362t-362 150t-362 -150t-150 -362q0 -167 98 -300.5t252 -185.5q18 -3 26.5 5t8.5 20q0 52 -1 95q-6 -1 -15.5 -2.5t-35.5 -2t-48 4
+t-43.5 20t-29.5 41.5q-23 59 -57 74q-2 1 -4.5 3.5l-8 8t-7 9.5t4 7.5t19.5 3.5q6 0 15 -2t30 -15.5t33 -35.5q16 -28 37.5 -42t43.5 -14t38 3.5t30 9.5q7 47 33 69q-49 6 -86 18.5t-73 39t-55.5 76t-19.5 119.5q0 79 53 137q-24 62 5 136q19 6 54.5 -7.5t60.5 -29.5l26 -16
+q58 17 128 17t128 -17q11 7 28.5 18t55.5 26t57 9q29 -74 5 -136q53 -58 53 -137q0 -57 -14 -100.5t-35.5 -70t-53.5 -44.5t-62.5 -26t-68.5 -12q35 -31 35 -95q0 -40 -0.5 -89t-0.5 -51q0 -12 8.5 -20t26.5 -5q154 52 252 185.5t98 300.5zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="upload_alt" unicode="&#xf093;" horiz-adv-x="1664" 
+d="M1280 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 288v-320q0 -40 -28 -68t-68 -28h-1472q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h427q21 -56 70.5 -92
+t110.5 -36h256q61 0 110.5 36t70.5 92h427q40 0 68 -28t28 -68zM1339 936q-17 -40 -59 -40h-256v-448q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v448h-256q-42 0 -59 40q-17 39 14 69l448 448q18 19 45 19t45 -19l448 -448q31 -30 14 -69z" />
+    <glyph glyph-name="lemon" unicode="&#xf094;" 
+d="M1407 710q0 44 -7 113.5t-18 96.5q-12 30 -17 44t-9 36.5t-4 48.5q0 23 5 68.5t5 67.5q0 37 -10 55q-4 1 -13 1q-19 0 -58 -4.5t-59 -4.5q-60 0 -176 24t-175 24q-43 0 -94.5 -11.5t-85 -23.5t-89.5 -34q-137 -54 -202 -103q-96 -73 -159.5 -189.5t-88 -236t-24.5 -248.5
+q0 -40 12.5 -120t12.5 -121q0 -23 -11 -66.5t-11 -65.5t12 -36.5t34 -14.5q24 0 72.5 11t73.5 11q57 0 169.5 -15.5t169.5 -15.5q181 0 284 36q129 45 235.5 152.5t166 245.5t59.5 275zM1535 712q0 -165 -70 -327.5t-196 -288t-281 -180.5q-124 -44 -326 -44
+q-57 0 -170 14.5t-169 14.5q-24 0 -72.5 -14.5t-73.5 -14.5q-73 0 -123.5 55.5t-50.5 128.5q0 24 11 68t11 67q0 40 -12.5 120.5t-12.5 121.5q0 111 18 217.5t54.5 209.5t100.5 194t150 156q78 59 232 120q194 78 316 78q60 0 175.5 -24t173.5 -24q19 0 57 5t58 5
+q81 0 118 -50.5t37 -134.5q0 -23 -5 -68t-5 -68q0 -13 2 -25t3.5 -16.5t7.5 -20.5t8 -20q16 -40 25 -118.5t9 -136.5z" />
+    <glyph glyph-name="phone" unicode="&#xf095;" horiz-adv-x="1408" 
+d="M1408 296q0 -27 -10 -70.5t-21 -68.5q-21 -50 -122 -106q-94 -51 -186 -51q-27 0 -53 3.5t-57.5 12.5t-47 14.5t-55.5 20.5t-49 18q-98 35 -175 83q-127 79 -264 216t-216 264q-48 77 -83 175q-3 9 -18 49t-20.5 55.5t-14.5 47t-12.5 57.5t-3.5 53q0 92 51 186
+q56 101 106 122q25 11 68.5 21t70.5 10q14 0 21 -3q18 -6 53 -76q11 -19 30 -54t35 -63.5t31 -53.5q3 -4 17.5 -25t21.5 -35.5t7 -28.5q0 -20 -28.5 -50t-62 -55t-62 -53t-28.5 -46q0 -9 5 -22.5t8.5 -20.5t14 -24t11.5 -19q76 -137 174 -235t235 -174q2 -1 19 -11.5t24 -14
+t20.5 -8.5t22.5 -5q18 0 46 28.5t53 62t55 62t50 28.5q14 0 28.5 -7t35.5 -21.5t25 -17.5q25 -15 53.5 -31t63.5 -35t54 -30q70 -35 76 -53q3 -7 3 -21z" />
+    <glyph glyph-name="check_empty" unicode="&#xf096;" horiz-adv-x="1408" 
+d="M1120 1280h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113v832q0 66 -47 113t-113 47zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832
+q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="bookmark_empty" unicode="&#xf097;" horiz-adv-x="1280" 
+d="M1152 1280h-1024v-1242l423 406l89 85l89 -85l423 -406v1242zM1164 1408q23 0 44 -9q33 -13 52.5 -41t19.5 -62v-1289q0 -34 -19.5 -62t-52.5 -41q-19 -8 -44 -8q-48 0 -83 32l-441 424l-441 -424q-36 -33 -83 -33q-23 0 -44 9q-33 13 -52.5 41t-19.5 62v1289
+q0 34 19.5 62t52.5 41q21 9 44 9h1048z" />
+    <glyph glyph-name="phone_sign" unicode="&#xf098;" 
+d="M1280 343q0 11 -2 16t-18 16.5t-40.5 25t-47.5 26.5t-45.5 25t-28.5 15q-5 3 -19 13t-25 15t-21 5q-15 0 -36.5 -20.5t-39.5 -45t-38.5 -45t-33.5 -20.5q-7 0 -16.5 3.5t-15.5 6.5t-17 9.5t-14 8.5q-99 55 -170 126.5t-127 170.5q-2 3 -8.5 14t-9.5 17t-6.5 15.5
+t-3.5 16.5q0 13 20.5 33.5t45 38.5t45 39.5t20.5 36.5q0 10 -5 21t-15 25t-13 19q-3 6 -15 28.5t-25 45.5t-26.5 47.5t-25 40.5t-16.5 18t-16 2q-48 0 -101 -22q-46 -21 -80 -94.5t-34 -130.5q0 -16 2.5 -34t5 -30.5t9 -33t10 -29.5t12.5 -33t11 -30q60 -164 216.5 -320.5
+t320.5 -216.5q6 -2 30 -11t33 -12.5t29.5 -10t33 -9t30.5 -5t34 -2.5q57 0 130.5 34t94.5 80q22 53 22 101zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z
+" />
+    <glyph glyph-name="twitter" unicode="&#xf099;" horiz-adv-x="1664" 
+d="M1620 1128q-67 -98 -162 -167q1 -14 1 -42q0 -130 -38 -259.5t-115.5 -248.5t-184.5 -210.5t-258 -146t-323 -54.5q-271 0 -496 145q35 -4 78 -4q225 0 401 138q-105 2 -188 64.5t-114 159.5q33 -5 61 -5q43 0 85 11q-112 23 -185.5 111.5t-73.5 205.5v4q68 -38 146 -41
+q-66 44 -105 115t-39 154q0 88 44 163q121 -149 294.5 -238.5t371.5 -99.5q-8 38 -8 74q0 134 94.5 228.5t228.5 94.5q140 0 236 -102q109 21 205 78q-37 -115 -142 -178q93 10 186 50z" />
+    <glyph glyph-name="facebook" unicode="&#xf09a;" horiz-adv-x="1024" 
+d="M959 1524v-264h-157q-86 0 -116 -36t-30 -108v-189h293l-39 -296h-254v-759h-306v759h-255v296h255v218q0 186 104 288.5t277 102.5q147 0 228 -12z" />
+    <glyph glyph-name="github" unicode="&#xf09b;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5q0 -251 -146.5 -451.5t-378.5 -277.5q-27 -5 -40 7t-13 30q0 3 0.5 76.5t0.5 134.5q0 97 -52 142q57 6 102.5 18t94 39t81 66.5t53 105t20.5 150.5q0 119 -79 206q37 91 -8 204q-28 9 -81 -11t-92 -44l-38 -24
+q-93 26 -192 26t-192 -26q-16 11 -42.5 27t-83.5 38.5t-85 13.5q-45 -113 -8 -204q-79 -87 -79 -206q0 -85 20.5 -150t52.5 -105t80.5 -67t94 -39t102.5 -18q-39 -36 -49 -103q-21 -10 -45 -15t-57 -5t-65.5 21.5t-55.5 62.5q-19 32 -48.5 52t-49.5 24l-20 3q-21 0 -29 -4.5
+t-5 -11.5t9 -14t13 -12l7 -5q22 -10 43.5 -38t31.5 -51l10 -23q13 -38 44 -61.5t67 -30t69.5 -7t55.5 3.5l23 4q0 -38 0.5 -88.5t0.5 -54.5q0 -18 -13 -30t-40 -7q-232 77 -378.5 277.5t-146.5 451.5q0 209 103 385.5t279.5 279.5t385.5 103zM291 305q3 7 -7 12
+q-10 3 -13 -2q-3 -7 7 -12q9 -6 13 2zM322 271q7 5 -2 16q-10 9 -16 3q-7 -5 2 -16q10 -10 16 -3zM352 226q9 7 0 19q-8 13 -17 6q-9 -5 0 -18t17 -7zM394 184q8 8 -4 19q-12 12 -20 3q-9 -8 4 -19q12 -12 20 -3zM451 159q3 11 -13 16q-15 4 -19 -7t13 -15q15 -6 19 6z
+M514 154q0 13 -17 11q-16 0 -16 -11q0 -13 17 -11q16 0 16 11zM572 164q-2 11 -18 9q-16 -3 -14 -15t18 -8t14 14z" />
+    <glyph glyph-name="unlock" unicode="&#xf09c;" horiz-adv-x="1664" 
+d="M1664 960v-256q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-192h96q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h672v192q0 185 131.5 316.5t316.5 131.5
+t316.5 -131.5t131.5 -316.5z" />
+    <glyph glyph-name="credit_card" unicode="&#xf09d;" horiz-adv-x="1920" 
+d="M1760 1408q66 0 113 -47t47 -113v-1216q0 -66 -47 -113t-113 -47h-1600q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1600zM160 1280q-13 0 -22.5 -9.5t-9.5 -22.5v-224h1664v224q0 13 -9.5 22.5t-22.5 9.5h-1600zM1760 0q13 0 22.5 9.5t9.5 22.5v608h-1664v-608
+q0 -13 9.5 -22.5t22.5 -9.5h1600zM256 128v128h256v-128h-256zM640 128v128h384v-128h-384z" />
+    <glyph glyph-name="rss" unicode="&#xf09e;" horiz-adv-x="1408" 
+d="M384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 69q2 -28 -17 -48q-18 -21 -47 -21h-135q-25 0 -43 16.5t-20 41.5q-22 229 -184.5 391.5t-391.5 184.5q-25 2 -41.5 20t-16.5 43v135q0 29 21 47q17 17 43 17h5q160 -13 306 -80.5
+t259 -181.5q114 -113 181.5 -259t80.5 -306zM1408 67q2 -27 -18 -47q-18 -20 -46 -20h-143q-26 0 -44.5 17.5t-19.5 42.5q-12 215 -101 408.5t-231.5 336t-336 231.5t-408.5 102q-25 1 -42.5 19.5t-17.5 43.5v143q0 28 20 46q18 18 44 18h3q262 -13 501.5 -120t425.5 -294
+q187 -186 294 -425.5t120 -501.5z" />
+    <glyph glyph-name="hdd" unicode="&#xf0a0;" 
+d="M1040 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1296 320q0 -33 -23.5 -56.5t-56.5 -23.5t-56.5 23.5t-23.5 56.5t23.5 56.5t56.5 23.5t56.5 -23.5t23.5 -56.5zM1408 160v320q0 13 -9.5 22.5t-22.5 9.5
+h-1216q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5zM178 640h1180l-157 482q-4 13 -16 21.5t-26 8.5h-782q-14 0 -26 -8.5t-16 -21.5zM1536 480v-320q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v320q0 25 16 75
+l197 606q17 53 63 86t101 33h782q55 0 101 -33t63 -86l197 -606q16 -50 16 -75z" />
+    <glyph glyph-name="bullhorn" unicode="&#xf0a1;" horiz-adv-x="1792" 
+d="M1664 896q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5v-384q0 -52 -38 -90t-90 -38q-417 347 -812 380q-58 -19 -91 -66t-31 -100.5t40 -92.5q-20 -33 -23 -65.5t6 -58t33.5 -55t48 -50t61.5 -50.5q-29 -58 -111.5 -83t-168.5 -11.5t-132 55.5q-7 23 -29.5 87.5
+t-32 94.5t-23 89t-15 101t3.5 98.5t22 110.5h-122q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h480q435 0 896 384q52 0 90 -38t38 -90v-384zM1536 292v954q-394 -302 -768 -343v-270q377 -42 768 -341z" />
+    <glyph glyph-name="bell" unicode="&#xf0a2;" horiz-adv-x="1792" 
+d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM246 128h1300q-266 300 -266 832q0 51 -24 105t-69 103t-121.5 80.5t-169.5 31.5t-169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -532 -266 -832z
+M1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5
+t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
+    <glyph glyph-name="certificate" unicode="&#xf0a3;" 
+d="M1376 640l138 -135q30 -28 20 -70q-12 -41 -52 -51l-188 -48l53 -186q12 -41 -19 -70q-29 -31 -70 -19l-186 53l-48 -188q-10 -40 -51 -52q-12 -2 -19 -2q-31 0 -51 22l-135 138l-135 -138q-28 -30 -70 -20q-41 11 -51 52l-48 188l-186 -53q-41 -12 -70 19q-31 29 -19 70
+l53 186l-188 48q-40 10 -52 51q-10 42 20 70l138 135l-138 135q-30 28 -20 70q12 41 52 51l188 48l-53 186q-12 41 19 70q29 31 70 19l186 -53l48 188q10 41 51 51q41 12 70 -19l135 -139l135 139q29 30 70 19q41 -10 51 -51l48 -188l186 53q41 12 70 -19q31 -29 19 -70
+l-53 -186l188 -48q40 -10 52 -51q10 -42 -20 -70z" />
+    <glyph glyph-name="hand_right" unicode="&#xf0a4;" horiz-adv-x="1792" 
+d="M256 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1664 768q0 51 -39 89.5t-89 38.5h-576q0 20 15 48.5t33 55t33 68t15 84.5q0 67 -44.5 97.5t-115.5 30.5q-24 0 -90 -139q-24 -44 -37 -65q-40 -64 -112 -145q-71 -81 -101 -106
+q-69 -57 -140 -57h-32v-640h32q72 0 167 -32t193.5 -64t179.5 -32q189 0 189 167q0 26 -5 56q30 16 47.5 52.5t17.5 73.5t-18 69q53 50 53 119q0 25 -10 55.5t-25 47.5h331q52 0 90 38t38 90zM1792 769q0 -105 -75.5 -181t-180.5 -76h-169q-4 -62 -37 -119q3 -21 3 -43
+q0 -101 -60 -178q1 -139 -85 -219.5t-227 -80.5q-133 0 -322 69q-164 59 -223 59h-288q-53 0 -90.5 37.5t-37.5 90.5v640q0 53 37.5 90.5t90.5 37.5h288q10 0 21.5 4.5t23.5 14t22.5 18t24 22.5t20.5 21.5t19 21.5t14 17q65 74 100 129q13 21 33 62t37 72t40.5 63t55 49.5
+t69.5 17.5q125 0 206.5 -67t81.5 -189q0 -68 -22 -128h374q104 0 180 -76t76 -179z" />
+    <glyph glyph-name="hand_left" unicode="&#xf0a5;" horiz-adv-x="1792" 
+d="M1376 128h32v640h-32q-35 0 -67.5 12t-62.5 37t-50 46t-49 54q-8 9 -12 14q-72 81 -112 145q-14 22 -38 68q-1 3 -10.5 22.5t-18.5 36t-20 35.5t-21.5 30.5t-18.5 11.5q-71 0 -115.5 -30.5t-44.5 -97.5q0 -43 15 -84.5t33 -68t33 -55t15 -48.5h-576q-50 0 -89 -38.5
+t-39 -89.5q0 -52 38 -90t90 -38h331q-15 -17 -25 -47.5t-10 -55.5q0 -69 53 -119q-18 -32 -18 -69t17.5 -73.5t47.5 -52.5q-4 -24 -4 -56q0 -85 48.5 -126t135.5 -41q84 0 183 32t194 64t167 32zM1664 192q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45z
+M1792 768v-640q0 -53 -37.5 -90.5t-90.5 -37.5h-288q-59 0 -223 -59q-190 -69 -317 -69q-142 0 -230 77.5t-87 217.5l1 5q-61 76 -61 178q0 22 3 43q-33 57 -37 119h-169q-105 0 -180.5 76t-75.5 181q0 103 76 179t180 76h374q-22 60 -22 128q0 122 81.5 189t206.5 67
+q38 0 69.5 -17.5t55 -49.5t40.5 -63t37 -72t33 -62q35 -55 100 -129q2 -3 14 -17t19 -21.5t20.5 -21.5t24 -22.5t22.5 -18t23.5 -14t21.5 -4.5h288q53 0 90.5 -37.5t37.5 -90.5z" />
+    <glyph glyph-name="hand_up" unicode="&#xf0a6;" 
+d="M1280 -64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 700q0 189 -167 189q-26 0 -56 -5q-16 30 -52.5 47.5t-73.5 17.5t-69 -18q-50 53 -119 53q-25 0 -55.5 -10t-47.5 -25v331q0 52 -38 90t-90 38q-51 0 -89.5 -39t-38.5 -89v-576
+q-20 0 -48.5 15t-55 33t-68 33t-84.5 15q-67 0 -97.5 -44.5t-30.5 -115.5q0 -24 139 -90q44 -24 65 -37q64 -40 145 -112q81 -71 106 -101q57 -69 57 -140v-32h640v32q0 72 32 167t64 193.5t32 179.5zM1536 705q0 -133 -69 -322q-59 -164 -59 -223v-288q0 -53 -37.5 -90.5
+t-90.5 -37.5h-640q-53 0 -90.5 37.5t-37.5 90.5v288q0 10 -4.5 21.5t-14 23.5t-18 22.5t-22.5 24t-21.5 20.5t-21.5 19t-17 14q-74 65 -129 100q-21 13 -62 33t-72 37t-63 40.5t-49.5 55t-17.5 69.5q0 125 67 206.5t189 81.5q68 0 128 -22v374q0 104 76 180t179 76
+q105 0 181 -75.5t76 -180.5v-169q62 -4 119 -37q21 3 43 3q101 0 178 -60q139 1 219.5 -85t80.5 -227z" />
+    <glyph glyph-name="hand_down" unicode="&#xf0a7;" 
+d="M1408 576q0 84 -32 183t-64 194t-32 167v32h-640v-32q0 -35 -12 -67.5t-37 -62.5t-46 -50t-54 -49q-9 -8 -14 -12q-81 -72 -145 -112q-22 -14 -68 -38q-3 -1 -22.5 -10.5t-36 -18.5t-35.5 -20t-30.5 -21.5t-11.5 -18.5q0 -71 30.5 -115.5t97.5 -44.5q43 0 84.5 15t68 33
+t55 33t48.5 15v-576q0 -50 38.5 -89t89.5 -39q52 0 90 38t38 90v331q46 -35 103 -35q69 0 119 53q32 -18 69 -18t73.5 17.5t52.5 47.5q24 -4 56 -4q85 0 126 48.5t41 135.5zM1280 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1536 580
+q0 -142 -77.5 -230t-217.5 -87l-5 1q-76 -61 -178 -61q-22 0 -43 3q-54 -30 -119 -37v-169q0 -105 -76 -180.5t-181 -75.5q-103 0 -179 76t-76 180v374q-54 -22 -128 -22q-121 0 -188.5 81.5t-67.5 206.5q0 38 17.5 69.5t49.5 55t63 40.5t72 37t62 33q55 35 129 100
+q3 2 17 14t21.5 19t21.5 20.5t22.5 24t18 22.5t14 23.5t4.5 21.5v288q0 53 37.5 90.5t90.5 37.5h640q53 0 90.5 -37.5t37.5 -90.5v-288q0 -59 59 -223q69 -190 69 -317z" />
+    <glyph glyph-name="circle_arrow_left" unicode="&#xf0a8;" 
+d="M1280 576v128q0 26 -19 45t-45 19h-502l189 189q19 19 19 45t-19 45l-91 91q-18 18 -45 18t-45 -18l-362 -362l-91 -91q-18 -18 -18 -45t18 -45l91 -91l362 -362q18 -18 45 -18t45 18l91 91q18 18 18 45t-18 45l-189 189h502q26 0 45 19t19 45zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="circle_arrow_right" unicode="&#xf0a9;" 
+d="M1285 640q0 27 -18 45l-91 91l-362 362q-18 18 -45 18t-45 -18l-91 -91q-18 -18 -18 -45t18 -45l189 -189h-502q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h502l-189 -189q-19 -19 -19 -45t19 -45l91 -91q18 -18 45 -18t45 18l362 362l91 91q18 18 18 45zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="circle_arrow_up" unicode="&#xf0aa;" 
+d="M1284 641q0 27 -18 45l-362 362l-91 91q-18 18 -45 18t-45 -18l-91 -91l-362 -362q-18 -18 -18 -45t18 -45l91 -91q18 -18 45 -18t45 18l189 189v-502q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v502l189 -189q19 -19 45 -19t45 19l91 91q18 18 18 45zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="circle_arrow_down" unicode="&#xf0ab;" 
+d="M1284 639q0 27 -18 45l-91 91q-18 18 -45 18t-45 -18l-189 -189v502q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-502l-189 189q-19 19 -45 19t-45 -19l-91 -91q-18 -18 -18 -45t18 -45l362 -362l91 -91q18 -18 45 -18t45 18l91 91l362 362q18 18 18 45zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="globe" unicode="&#xf0ac;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1042 887q-2 -1 -9.5 -9.5t-13.5 -9.5q2 0 4.5 5t5 11t3.5 7q6 7 22 15q14 6 52 12q34 8 51 -11
+q-2 2 9.5 13t14.5 12q3 2 15 4.5t15 7.5l2 22q-12 -1 -17.5 7t-6.5 21q0 -2 -6 -8q0 7 -4.5 8t-11.5 -1t-9 -1q-10 3 -15 7.5t-8 16.5t-4 15q-2 5 -9.5 11t-9.5 10q-1 2 -2.5 5.5t-3 6.5t-4 5.5t-5.5 2.5t-7 -5t-7.5 -10t-4.5 -5q-3 2 -6 1.5t-4.5 -1t-4.5 -3t-5 -3.5
+q-3 -2 -8.5 -3t-8.5 -2q15 5 -1 11q-10 4 -16 3q9 4 7.5 12t-8.5 14h5q-1 4 -8.5 8.5t-17.5 8.5t-13 6q-8 5 -34 9.5t-33 0.5q-5 -6 -4.5 -10.5t4 -14t3.5 -12.5q1 -6 -5.5 -13t-6.5 -12q0 -7 14 -15.5t10 -21.5q-3 -8 -16 -16t-16 -12q-5 -8 -1.5 -18.5t10.5 -16.5
+q2 -2 1.5 -4t-3.5 -4.5t-5.5 -4t-6.5 -3.5l-3 -2q-11 -5 -20.5 6t-13.5 26q-7 25 -16 30q-23 8 -29 -1q-5 13 -41 26q-25 9 -58 4q6 1 0 15q-7 15 -19 12q3 6 4 17.5t1 13.5q3 13 12 23q1 1 7 8.5t9.5 13.5t0.5 6q35 -4 50 11q5 5 11.5 17t10.5 17q9 6 14 5.5t14.5 -5.5
+t14.5 -5q14 -1 15.5 11t-7.5 20q12 -1 3 17q-4 7 -8 9q-12 4 -27 -5q-8 -4 2 -8q-1 1 -9.5 -10.5t-16.5 -17.5t-16 5q-1 1 -5.5 13.5t-9.5 13.5q-8 0 -16 -15q3 8 -11 15t-24 8q19 12 -8 27q-7 4 -20.5 5t-19.5 -4q-5 -7 -5.5 -11.5t5 -8t10.5 -5.5t11.5 -4t8.5 -3
+q14 -10 8 -14q-2 -1 -8.5 -3.5t-11.5 -4.5t-6 -4q-3 -4 0 -14t-2 -14q-5 5 -9 17.5t-7 16.5q7 -9 -25 -6l-10 1q-4 0 -16 -2t-20.5 -1t-13.5 8q-4 8 0 20q1 4 4 2q-4 3 -11 9.5t-10 8.5q-46 -15 -94 -41q6 -1 12 1q5 2 13 6.5t10 5.5q34 14 42 7l5 5q14 -16 20 -25
+q-7 4 -30 1q-20 -6 -22 -12q7 -12 5 -18q-4 3 -11.5 10t-14.5 11t-15 5q-16 0 -22 -1q-146 -80 -235 -222q7 -7 12 -8q4 -1 5 -9t2.5 -11t11.5 3q9 -8 3 -19q1 1 44 -27q19 -17 21 -21q3 -11 -10 -18q-1 2 -9 9t-9 4q-3 -5 0.5 -18.5t10.5 -12.5q-7 0 -9.5 -16t-2.5 -35.5
+t-1 -23.5l2 -1q-3 -12 5.5 -34.5t21.5 -19.5q-13 -3 20 -43q6 -8 8 -9q3 -2 12 -7.5t15 -10t10 -10.5q4 -5 10 -22.5t14 -23.5q-2 -6 9.5 -20t10.5 -23q-1 0 -2.5 -1t-2.5 -1q3 -7 15.5 -14t15.5 -13q1 -3 2 -10t3 -11t8 -2q2 20 -24 62q-15 25 -17 29q-3 5 -5.5 15.5
+t-4.5 14.5q2 0 6 -1.5t8.5 -3.5t7.5 -4t2 -3q-3 -7 2 -17.5t12 -18.5t17 -19t12 -13q6 -6 14 -19.5t0 -13.5q9 0 20 -10.5t17 -19.5q5 -8 8 -26t5 -24q2 -7 8.5 -13.5t12.5 -9.5l16 -8t13 -7q5 -2 18.5 -10.5t21.5 -11.5q10 -4 16 -4t14.5 2.5t13.5 3.5q15 2 29 -15t21 -21
+q36 -19 55 -11q-2 -1 0.5 -7.5t8 -15.5t9 -14.5t5.5 -8.5q5 -6 18 -15t18 -15q6 4 7 9q-3 -8 7 -20t18 -10q14 3 14 32q-31 -15 -49 18q0 1 -2.5 5.5t-4 8.5t-2.5 8.5t0 7.5t5 3q9 0 10 3.5t-2 12.5t-4 13q-1 8 -11 20t-12 15q-5 -9 -16 -8t-16 9q0 -1 -1.5 -5.5t-1.5 -6.5
+q-13 0 -15 1q1 3 2.5 17.5t3.5 22.5q1 4 5.5 12t7.5 14.5t4 12.5t-4.5 9.5t-17.5 2.5q-19 -1 -26 -20q-1 -3 -3 -10.5t-5 -11.5t-9 -7q-7 -3 -24 -2t-24 5q-13 8 -22.5 29t-9.5 37q0 10 2.5 26.5t3 25t-5.5 24.5q3 2 9 9.5t10 10.5q2 1 4.5 1.5t4.5 0t4 1.5t3 6q-1 1 -4 3
+q-3 3 -4 3q7 -3 28.5 1.5t27.5 -1.5q15 -11 22 2q0 1 -2.5 9.5t-0.5 13.5q5 -27 29 -9q3 -3 15.5 -5t17.5 -5q3 -2 7 -5.5t5.5 -4.5t5 0.5t8.5 6.5q10 -14 12 -24q11 -40 19 -44q7 -3 11 -2t4.5 9.5t0 14t-1.5 12.5l-1 8v18l-1 8q-15 3 -18.5 12t1.5 18.5t15 18.5q1 1 8 3.5
+t15.5 6.5t12.5 8q21 19 15 35q7 0 11 9q-1 0 -5 3t-7.5 5t-4.5 2q9 5 2 16q5 3 7.5 11t7.5 10q9 -12 21 -2q8 8 1 16q5 7 20.5 10.5t18.5 9.5q7 -2 8 2t1 12t3 12q4 5 15 9t13 5l17 11q3 4 0 4q18 -2 31 11q10 11 -6 20q3 6 -3 9.5t-15 5.5q3 1 11.5 0.5t10.5 1.5
+q15 10 -7 16q-17 5 -43 -12zM879 10q206 36 351 189q-3 3 -12.5 4.5t-12.5 3.5q-18 7 -24 8q1 7 -2.5 13t-8 9t-12.5 8t-11 7q-2 2 -7 6t-7 5.5t-7.5 4.5t-8.5 2t-10 -1l-3 -1q-3 -1 -5.5 -2.5t-5.5 -3t-4 -3t0 -2.5q-21 17 -36 22q-5 1 -11 5.5t-10.5 7t-10 1.5t-11.5 -7
+q-5 -5 -6 -15t-2 -13q-7 5 0 17.5t2 18.5q-3 6 -10.5 4.5t-12 -4.5t-11.5 -8.5t-9 -6.5t-8.5 -5.5t-8.5 -7.5q-3 -4 -6 -12t-5 -11q-2 4 -11.5 6.5t-9.5 5.5q2 -10 4 -35t5 -38q7 -31 -12 -48q-27 -25 -29 -40q-4 -22 12 -26q0 -7 -8 -20.5t-7 -21.5q0 -6 2 -16z" />
+    <glyph glyph-name="wrench" unicode="&#xf0ad;" horiz-adv-x="1664" 
+d="M384 64q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1028 484l-682 -682q-37 -37 -90 -37q-52 0 -91 37l-106 108q-38 36 -38 90q0 53 38 91l681 681q39 -98 114.5 -173.5t173.5 -114.5zM1662 919q0 -39 -23 -106q-47 -134 -164.5 -217.5
+t-258.5 -83.5q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q58 0 121.5 -16.5t107.5 -46.5q16 -11 16 -28t-16 -28l-293 -169v-224l193 -107q5 3 79 48.5t135.5 81t70.5 35.5q15 0 23.5 -10t8.5 -25z" />
+    <glyph glyph-name="tasks" unicode="&#xf0ae;" horiz-adv-x="1792" 
+d="M1024 128h640v128h-640v-128zM640 640h1024v128h-1024v-128zM1280 1152h384v128h-384v-128zM1792 320v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 832v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19
+t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45zM1792 1344v-256q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1664q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="filter" unicode="&#xf0b0;" horiz-adv-x="1408" 
+d="M1403 1241q17 -41 -14 -70l-493 -493v-742q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-256 256q-19 19 -19 45v486l-493 493q-31 29 -14 70q17 39 59 39h1280q42 0 59 -39z" />
+    <glyph glyph-name="briefcase" unicode="&#xf0b1;" horiz-adv-x="1792" 
+d="M640 1280h512v128h-512v-128zM1792 640v-480q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v480h672v-160q0 -26 19 -45t45 -19h320q26 0 45 19t19 45v160h672zM1024 640v-128h-256v128h256zM1792 1120v-384h-1792v384q0 66 47 113t113 47h352v160q0 40 28 68
+t68 28h576q40 0 68 -28t28 -68v-160h352q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="fullscreen" unicode="&#xf0b2;" 
+d="M1283 995l-355 -355l355 -355l144 144q29 31 70 14q39 -17 39 -59v-448q0 -26 -19 -45t-45 -19h-448q-42 0 -59 40q-17 39 14 69l144 144l-355 355l-355 -355l144 -144q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l144 -144
+l355 355l-355 355l-144 -144q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v448q0 26 19 45t45 19h448q42 0 59 -40q17 -39 -14 -69l-144 -144l355 -355l355 355l-144 144q-31 30 -14 69q17 40 59 40h448q26 0 45 -19t19 -45v-448q0 -42 -39 -59q-13 -5 -25 -5q-26 0 -45 19z
+" />
+    <glyph glyph-name="group" unicode="&#xf0c0;" horiz-adv-x="1920" 
+d="M593 640q-162 -5 -265 -128h-134q-82 0 -138 40.5t-56 118.5q0 353 124 353q6 0 43.5 -21t97.5 -42.5t119 -21.5q67 0 133 23q-5 -37 -5 -66q0 -139 81 -256zM1664 3q0 -120 -73 -189.5t-194 -69.5h-874q-121 0 -194 69.5t-73 189.5q0 53 3.5 103.5t14 109t26.5 108.5
+t43 97.5t62 81t85.5 53.5t111.5 20q10 0 43 -21.5t73 -48t107 -48t135 -21.5t135 21.5t107 48t73 48t43 21.5q61 0 111.5 -20t85.5 -53.5t62 -81t43 -97.5t26.5 -108.5t14 -109t3.5 -103.5zM640 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75
+t75 -181zM1344 896q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5zM1920 671q0 -78 -56 -118.5t-138 -40.5h-134q-103 123 -265 128q81 117 81 256q0 29 -5 66q66 -23 133 -23q59 0 119 21.5t97.5 42.5
+t43.5 21q124 0 124 -353zM1792 1280q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181z" />
+    <glyph glyph-name="link" unicode="&#xf0c1;" horiz-adv-x="1664" 
+d="M1456 320q0 40 -28 68l-208 208q-28 28 -68 28q-42 0 -72 -32q3 -3 19 -18.5t21.5 -21.5t15 -19t13 -25.5t3.5 -27.5q0 -40 -28 -68t-68 -28q-15 0 -27.5 3.5t-25.5 13t-19 15t-21.5 21.5t-18.5 19q-33 -31 -33 -73q0 -40 28 -68l206 -207q27 -27 68 -27q40 0 68 26
+l147 146q28 28 28 67zM753 1025q0 40 -28 68l-206 207q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l208 -208q27 -27 68 -27q42 0 72 31q-3 3 -19 18.5t-21.5 21.5t-15 19t-13 25.5t-3.5 27.5q0 40 28 68t68 28q15 0 27.5 -3.5t25.5 -13t19 -15
+t21.5 -21.5t18.5 -19q33 31 33 73zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-206 207q-83 83 -83 203q0 123 88 209l-88 88q-86 -88 -208 -88q-120 0 -204 84l-208 208q-84 84 -84 204t85 203l147 146q83 83 203 83q121 0 204 -85l206 -207
+q83 -83 83 -203q0 -123 -88 -209l88 -88q86 88 208 88q120 0 204 -84l208 -208q84 -84 84 -204z" />
+    <glyph glyph-name="cloud" unicode="&#xf0c2;" horiz-adv-x="1920" 
+d="M1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088q-185 0 -316.5 131.5t-131.5 316.5q0 132 71 241.5t187 163.5q-2 28 -2 43q0 212 150 362t362 150q158 0 286.5 -88t187.5 -230q70 62 166 62q106 0 181 -75t75 -181q0 -75 -41 -138q129 -30 213 -134.5t84 -239.5z
+" />
+    <glyph glyph-name="beaker" unicode="&#xf0c3;" horiz-adv-x="1664" 
+d="M1527 88q56 -89 21.5 -152.5t-140.5 -63.5h-1152q-106 0 -140.5 63.5t21.5 152.5l503 793v399h-64q-26 0 -45 19t-19 45t19 45t45 19h512q26 0 45 -19t19 -45t-19 -45t-45 -19h-64v-399zM748 813l-272 -429h712l-272 429l-20 31v37v399h-128v-399v-37z" />
+    <glyph glyph-name="cut" unicode="&#xf0c4;" horiz-adv-x="1792" 
+d="M960 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1260 576l507 -398q28 -20 25 -56q-5 -35 -35 -51l-128 -64q-13 -7 -29 -7q-17 0 -31 8l-690 387l-110 -66q-8 -4 -12 -5q14 -49 10 -97q-7 -77 -56 -147.5t-132 -123.5q-132 -84 -277 -84
+q-136 0 -222 78q-90 84 -79 207q7 76 56 147t131 124q132 84 278 84q83 0 151 -31q9 13 22 22l122 73l-122 73q-13 9 -22 22q-68 -31 -151 -31q-146 0 -278 84q-82 53 -131 124t-56 147q-5 59 15.5 113t63.5 93q85 79 222 79q145 0 277 -84q83 -52 132 -123t56 -148
+q4 -48 -10 -97q4 -1 12 -5l110 -66l690 387q14 8 31 8q16 0 29 -7l128 -64q30 -16 35 -51q3 -36 -25 -56zM579 836q46 42 21 108t-106 117q-92 59 -192 59q-74 0 -113 -36q-46 -42 -21 -108t106 -117q92 -59 192 -59q74 0 113 36zM494 91q81 51 106 117t-21 108
+q-39 36 -113 36q-100 0 -192 -59q-81 -51 -106 -117t21 -108q39 -36 113 -36q100 0 192 59zM672 704l96 -58v11q0 36 33 56l14 8l-79 47l-26 -26q-3 -3 -10 -11t-12 -12q-2 -2 -4 -3.5t-3 -2.5zM896 480l96 -32l736 576l-128 64l-768 -431v-113l-160 -96l9 -8q2 -2 7 -6
+q4 -4 11 -12t11 -12l26 -26zM1600 64l128 64l-520 408l-177 -138q-2 -3 -13 -7z" />
+    <glyph glyph-name="copy" unicode="&#xf0c5;" horiz-adv-x="1792" 
+d="M1696 1152q40 0 68 -28t28 -68v-1216q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v288h-544q-40 0 -68 28t-28 68v672q0 40 20 88t48 76l408 408q28 28 76 48t88 20h416q40 0 68 -28t28 -68v-328q68 40 128 40h416zM1152 939l-299 -299h299v299zM512 1323l-299 -299
+h299v299zM708 676l316 316v416h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h512v256q0 40 20 88t48 76zM1664 -128v1152h-384v-416q0 -40 -28 -68t-68 -28h-416v-640h896z" />
+    <glyph glyph-name="paper_clip" unicode="&#xf0c6;" horiz-adv-x="1408" 
+d="M1404 151q0 -117 -79 -196t-196 -79q-135 0 -235 100l-777 776q-113 115 -113 271q0 159 110 270t269 111q158 0 273 -113l605 -606q10 -10 10 -22q0 -16 -30.5 -46.5t-46.5 -30.5q-13 0 -23 10l-606 607q-79 77 -181 77q-106 0 -179 -75t-73 -181q0 -105 76 -181
+l776 -777q63 -63 145 -63q64 0 106 42t42 106q0 82 -63 145l-581 581q-26 24 -60 24q-29 0 -48 -19t-19 -48q0 -32 25 -59l410 -410q10 -10 10 -22q0 -16 -31 -47t-47 -31q-12 0 -22 10l-410 410q-63 61 -63 149q0 82 57 139t139 57q88 0 149 -63l581 -581q100 -98 100 -235
+z" />
+    <glyph glyph-name="save" unicode="&#xf0c7;" 
+d="M384 0h768v384h-768v-384zM1280 0h128v896q0 14 -10 38.5t-20 34.5l-281 281q-10 10 -34 20t-39 10v-416q0 -40 -28 -68t-68 -28h-576q-40 0 -68 28t-28 68v416h-128v-1280h128v416q0 40 28 68t68 28h832q40 0 68 -28t28 -68v-416zM896 928v320q0 13 -9.5 22.5t-22.5 9.5
+h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5zM1536 896v-928q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h928q40 0 88 -20t76 -48l280 -280q28 -28 48 -76t20 -88z" />
+    <glyph glyph-name="sign_blank" unicode="&#xf0c8;" 
+d="M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="reorder" unicode="&#xf0c9;" 
+d="M1536 192v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 704v-128q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1536 1216v-128q0 -26 -19 -45
+t-45 -19h-1408q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="ul" unicode="&#xf0ca;" horiz-adv-x="1792" 
+d="M384 128q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 640q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 224v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5
+t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1152q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z
+M1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="ol" unicode="&#xf0cb;" horiz-adv-x="1792" 
+d="M381 -84q0 -80 -54.5 -126t-135.5 -46q-106 0 -172 66l57 88q49 -45 106 -45q29 0 50.5 14.5t21.5 42.5q0 64 -105 56l-26 56q8 10 32.5 43.5t42.5 54t37 38.5v1q-16 0 -48.5 -1t-48.5 -1v-53h-106v152h333v-88l-95 -115q51 -12 81 -49t30 -88zM383 543v-159h-362
+q-6 36 -6 54q0 51 23.5 93t56.5 68t66 47.5t56.5 43.5t23.5 45q0 25 -14.5 38.5t-39.5 13.5q-46 0 -81 -58l-85 59q24 51 71.5 79.5t105.5 28.5q73 0 123 -41.5t50 -112.5q0 -50 -34 -91.5t-75 -64.5t-75.5 -50.5t-35.5 -52.5h127v60h105zM1792 224v-192q0 -13 -9.5 -22.5
+t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM384 1123v-99h-335v99h107q0 41 0.5 121.5t0.5 121.5v12h-2q-8 -17 -50 -54l-71 76l136 127h106v-404h108zM1792 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216
+q-13 0 -22.5 9.5t-9.5 22.5v192q0 14 9 23t23 9h1216q13 0 22.5 -9.5t9.5 -22.5zM1792 1248v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1216q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1216q13 0 22.5 -9.5t9.5 -22.5z" />
+    <glyph glyph-name="strikethrough" unicode="&#xf0cc;" horiz-adv-x="1792" 
+d="M1760 640q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h1728zM483 704q-28 35 -51 80q-48 98 -48 188q0 181 134 309q133 127 393 127q50 0 167 -19q66 -12 177 -48q10 -38 21 -118q14 -123 14 -183q0 -18 -5 -45l-12 -3l-84 6
+l-14 2q-50 149 -103 205q-88 91 -210 91q-114 0 -182 -59q-67 -58 -67 -146q0 -73 66 -140t279 -129q69 -20 173 -66q58 -28 95 -52h-743zM990 448h411q7 -39 7 -92q0 -111 -41 -212q-23 -56 -71 -104q-37 -35 -109 -81q-80 -48 -153 -66q-80 -21 -203 -21q-114 0 -195 23
+l-140 40q-57 16 -72 28q-8 8 -8 22v13q0 108 -2 156q-1 30 0 68l2 37v44l102 2q15 -34 30 -71t22.5 -56t12.5 -27q35 -57 80 -94q43 -36 105 -57q59 -22 132 -22q64 0 139 27q77 26 122 86q47 61 47 129q0 84 -81 157q-34 29 -137 71z" />
+    <glyph glyph-name="underline" unicode="&#xf0cd;" 
+d="M48 1313q-37 2 -45 4l-3 88q13 1 40 1q60 0 112 -4q132 -7 166 -7q86 0 168 3q116 4 146 5q56 0 86 2l-1 -14l2 -64v-9q-60 -9 -124 -9q-60 0 -79 -25q-13 -14 -13 -132q0 -13 0.5 -32.5t0.5 -25.5l1 -229l14 -280q6 -124 51 -202q35 -59 96 -92q88 -47 177 -47
+q104 0 191 28q56 18 99 51q48 36 65 64q36 56 53 114q21 73 21 229q0 79 -3.5 128t-11 122.5t-13.5 159.5l-4 59q-5 67 -24 88q-34 35 -77 34l-100 -2l-14 3l2 86h84l205 -10q76 -3 196 10l18 -2q6 -38 6 -51q0 -7 -4 -31q-45 -12 -84 -13q-73 -11 -79 -17q-15 -15 -15 -41
+q0 -7 1.5 -27t1.5 -31q8 -19 22 -396q6 -195 -15 -304q-15 -76 -41 -122q-38 -65 -112 -123q-75 -57 -182 -89q-109 -33 -255 -33q-167 0 -284 46q-119 47 -179 122q-61 76 -83 195q-16 80 -16 237v333q0 188 -17 213q-25 36 -147 39zM1536 -96v64q0 14 -9 23t-23 9h-1472
+q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h1472q14 0 23 9t9 23z" />
+    <glyph glyph-name="table" unicode="&#xf0ce;" horiz-adv-x="1664" 
+d="M512 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 160v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23
+v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM512 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 160v192
+q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1024 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 544v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192
+q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1536 928v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1664 1248v-1088q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1344q66 0 113 -47t47 -113
+z" />
+    <glyph glyph-name="magic" unicode="&#xf0d0;" horiz-adv-x="1664" 
+d="M1190 955l293 293l-107 107l-293 -293zM1637 1248q0 -27 -18 -45l-1286 -1286q-18 -18 -45 -18t-45 18l-198 198q-18 18 -18 45t18 45l1286 1286q18 18 45 18t45 -18l198 -198q18 -18 18 -45zM286 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM636 1276
+l196 -60l-196 -60l-60 -196l-60 196l-196 60l196 60l60 196zM1566 798l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98zM926 1438l98 -30l-98 -30l-30 -98l-30 98l-98 30l98 30l30 98z" />
+    <glyph glyph-name="truck" unicode="&#xf0d1;" horiz-adv-x="1792" 
+d="M640 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM256 640h384v256h-158q-13 0 -22 -9l-195 -195q-9 -9 -9 -22v-30zM1536 128q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1792 1216v-1024q0 -15 -4 -26.5t-13.5 -18.5
+t-16.5 -11.5t-23.5 -6t-22.5 -2t-25.5 0t-22.5 0.5q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-64q-3 0 -22.5 -0.5t-25.5 0t-22.5 2t-23.5 6t-16.5 11.5t-13.5 18.5t-4 26.5q0 26 19 45t45 19v320q0 8 -0.5 35t0 38
+t2.5 34.5t6.5 37t14 30.5t22.5 30l198 198q19 19 50.5 32t58.5 13h160v192q0 26 19 45t45 19h1024q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="pinterest" unicode="&#xf0d2;" 
+d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103q-111 0 -218 32q59 93 78 164q9 34 54 211q20 -39 73 -67.5t114 -28.5q121 0 216 68.5t147 188.5t52 270q0 114 -59.5 214t-172.5 163t-255 63q-105 0 -196 -29t-154.5 -77t-109 -110.5t-67 -129.5t-21.5 -134
+q0 -104 40 -183t117 -111q30 -12 38 20q2 7 8 31t8 30q6 23 -11 43q-51 61 -51 151q0 151 104.5 259.5t273.5 108.5q151 0 235.5 -82t84.5 -213q0 -170 -68.5 -289t-175.5 -119q-61 0 -98 43.5t-23 104.5q8 35 26.5 93.5t30 103t11.5 75.5q0 50 -27 83t-77 33
+q-62 0 -105 -57t-43 -142q0 -73 25 -122l-99 -418q-17 -70 -13 -177q-206 91 -333 281t-127 423q0 209 103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="pinterest_sign" unicode="&#xf0d3;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-725q85 122 108 210q9 34 53 209q21 -39 73.5 -67t112.5 -28q181 0 295.5 147.5t114.5 373.5q0 84 -35 162.5t-96.5 139t-152.5 97t-197 36.5q-104 0 -194.5 -28.5t-153 -76.5
+t-107.5 -109.5t-66.5 -128t-21.5 -132.5q0 -102 39.5 -180t116.5 -110q13 -5 23.5 0t14.5 19q10 44 15 61q6 23 -11 42q-50 62 -50 150q0 150 103.5 256.5t270.5 106.5q149 0 232.5 -81t83.5 -210q0 -168 -67.5 -286t-173.5 -118q-60 0 -97 43.5t-23 103.5q8 34 26.5 92.5
+t29.5 102t11 74.5q0 49 -26.5 81.5t-75.5 32.5q-61 0 -103.5 -56.5t-42.5 -139.5q0 -72 24 -121l-98 -414q-24 -100 -7 -254h-183q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960z" />
+    <glyph glyph-name="google_plus_sign" unicode="&#xf0d4;" 
+d="M917 631q0 26 -6 64h-362v-132h217q-3 -24 -16.5 -50t-37.5 -53t-66.5 -44.5t-96.5 -17.5q-99 0 -169 71t-70 171t70 171t169 71q92 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585
+h109v110h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="google_plus" unicode="&#xf0d5;" horiz-adv-x="2304" 
+d="M1437 623q0 -208 -87 -370.5t-248 -254t-369 -91.5q-149 0 -285 58t-234 156t-156 234t-58 285t58 285t156 234t234 156t285 58q286 0 491 -192l-199 -191q-117 113 -292 113q-123 0 -227.5 -62t-165.5 -168.5t-61 -232.5t61 -232.5t165.5 -168.5t227.5 -62
+q83 0 152.5 23t114.5 57.5t78.5 78.5t49 83t21.5 74h-416v252h692q12 -63 12 -122zM2304 745v-210h-209v-209h-210v209h-209v210h209v209h210v-209h209z" />
+    <glyph glyph-name="money" unicode="&#xf0d6;" horiz-adv-x="1920" 
+d="M768 384h384v96h-128v448h-114l-148 -137l77 -80q42 37 55 57h2v-288h-128v-96zM1280 640q0 -70 -21 -142t-59.5 -134t-101.5 -101t-138 -39t-138 39t-101.5 101t-59.5 134t-21 142t21 142t59.5 134t101.5 101t138 39t138 -39t101.5 -101t59.5 -134t21 -142zM1792 384
+v512q-106 0 -181 75t-75 181h-1152q0 -106 -75 -181t-181 -75v-512q106 0 181 -75t75 -181h1152q0 106 75 181t181 75zM1920 1216v-1152q0 -26 -19 -45t-45 -19h-1792q-26 0 -45 19t-19 45v1152q0 26 19 45t45 19h1792q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="caret_down" unicode="&#xf0d7;" horiz-adv-x="1024" 
+d="M1024 832q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="caret_up" unicode="&#xf0d8;" horiz-adv-x="1024" 
+d="M1024 320q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+    <glyph glyph-name="caret_left" unicode="&#xf0d9;" horiz-adv-x="640" 
+d="M640 1088v-896q0 -26 -19 -45t-45 -19t-45 19l-448 448q-19 19 -19 45t19 45l448 448q19 19 45 19t45 -19t19 -45z" />
+    <glyph glyph-name="caret_right" unicode="&#xf0da;" horiz-adv-x="640" 
+d="M576 640q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19t-19 45v896q0 26 19 45t45 19t45 -19l448 -448q19 -19 19 -45z" />
+    <glyph glyph-name="columns" unicode="&#xf0db;" horiz-adv-x="1664" 
+d="M160 0h608v1152h-640v-1120q0 -13 9.5 -22.5t22.5 -9.5zM1536 32v1120h-640v-1152h608q13 0 22.5 9.5t9.5 22.5zM1664 1248v-1216q0 -66 -47 -113t-113 -47h-1344q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1344q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="sort" unicode="&#xf0dc;" horiz-adv-x="1024" 
+d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45zM1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+    <glyph glyph-name="sort_down" unicode="&#xf0dd;" horiz-adv-x="1024" 
+d="M1024 448q0 -26 -19 -45l-448 -448q-19 -19 -45 -19t-45 19l-448 448q-19 19 -19 45t19 45t45 19h896q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="sort_up" unicode="&#xf0de;" horiz-adv-x="1024" 
+d="M1024 832q0 -26 -19 -45t-45 -19h-896q-26 0 -45 19t-19 45t19 45l448 448q19 19 45 19t45 -19l448 -448q19 -19 19 -45z" />
+    <glyph glyph-name="envelope_alt" unicode="&#xf0e0;" horiz-adv-x="1792" 
+d="M1792 826v-794q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v794q44 -49 101 -87q362 -246 497 -345q57 -42 92.5 -65.5t94.5 -48t110 -24.5h1h1q51 0 110 24.5t94.5 48t92.5 65.5q170 123 498 345q57 39 100 87zM1792 1120q0 -79 -49 -151t-122 -123
+q-376 -261 -468 -325q-10 -7 -42.5 -30.5t-54 -38t-52 -32.5t-57.5 -27t-50 -9h-1h-1q-23 0 -50 9t-57.5 27t-52 32.5t-54 38t-42.5 30.5q-91 64 -262 182.5t-205 142.5q-62 42 -117 115.5t-55 136.5q0 78 41.5 130t118.5 52h1472q65 0 112.5 -47t47.5 -113z" />
+    <glyph glyph-name="linkedin" unicode="&#xf0e1;" 
+d="M349 911v-991h-330v991h330zM370 1217q1 -73 -50.5 -122t-135.5 -49h-2q-82 0 -132 49t-50 122q0 74 51.5 122.5t134.5 48.5t133 -48.5t51 -122.5zM1536 488v-568h-329v530q0 105 -40.5 164.5t-126.5 59.5q-63 0 -105.5 -34.5t-63.5 -85.5q-11 -30 -11 -81v-553h-329
+q2 399 2 647t-1 296l-1 48h329v-144h-2q20 32 41 56t56.5 52t87 43.5t114.5 15.5q171 0 275 -113.5t104 -332.5z" />
+    <glyph glyph-name="undo" unicode="&#xf0e2;" 
+d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5
+t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298z" />
+    <glyph glyph-name="legal" unicode="&#xf0e3;" horiz-adv-x="1792" 
+d="M1771 0q0 -53 -37 -90l-107 -108q-39 -37 -91 -37q-53 0 -90 37l-363 364q-38 36 -38 90q0 53 43 96l-256 256l-126 -126q-14 -14 -34 -14t-34 14q2 -2 12.5 -12t12.5 -13t10 -11.5t10 -13.5t6 -13.5t5.5 -16.5t1.5 -18q0 -38 -28 -68q-3 -3 -16.5 -18t-19 -20.5
+t-18.5 -16.5t-22 -15.5t-22 -9t-26 -4.5q-40 0 -68 28l-408 408q-28 28 -28 68q0 13 4.5 26t9 22t15.5 22t16.5 18.5t20.5 19t18 16.5q30 28 68 28q10 0 18 -1.5t16.5 -5.5t13.5 -6t13.5 -10t11.5 -10t13 -12.5t12 -12.5q-14 14 -14 34t14 34l348 348q14 14 34 14t34 -14
+q-2 2 -12.5 12t-12.5 13t-10 11.5t-10 13.5t-6 13.5t-5.5 16.5t-1.5 18q0 38 28 68q3 3 16.5 18t19 20.5t18.5 16.5t22 15.5t22 9t26 4.5q40 0 68 -28l408 -408q28 -28 28 -68q0 -13 -4.5 -26t-9 -22t-15.5 -22t-16.5 -18.5t-20.5 -19t-18 -16.5q-30 -28 -68 -28
+q-10 0 -18 1.5t-16.5 5.5t-13.5 6t-13.5 10t-11.5 10t-13 12.5t-12 12.5q14 -14 14 -34t-14 -34l-126 -126l256 -256q43 43 96 43q52 0 91 -37l363 -363q37 -39 37 -91z" />
+    <glyph glyph-name="dashboard" unicode="&#xf0e4;" horiz-adv-x="1792" 
+d="M384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM576 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1004 351l101 382q6 26 -7.5 48.5t-38.5 29.5
+t-48 -6.5t-30 -39.5l-101 -382q-60 -5 -107 -43.5t-63 -98.5q-20 -77 20 -146t117 -89t146 20t89 117q16 60 -6 117t-72 91zM1664 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 1024q0 53 -37.5 90.5
+t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1472 832q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 384q0 -261 -141 -483q-19 -29 -54 -29h-1402q-35 0 -54 29
+q-141 221 -141 483q0 182 71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="comment_alt" unicode="&#xf0e5;" horiz-adv-x="1792" 
+d="M896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640
+q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 174 120 321.5
+t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
+    <glyph glyph-name="comments_alt" unicode="&#xf0e6;" horiz-adv-x="1792" 
+d="M704 1152q-153 0 -286 -52t-211.5 -141t-78.5 -191q0 -82 53 -158t149 -132l97 -56l-35 -84q34 20 62 39l44 31l53 -10q78 -14 153 -14q153 0 286 52t211.5 141t78.5 191t-78.5 191t-211.5 141t-286 52zM704 1280q191 0 353.5 -68.5t256.5 -186.5t94 -257t-94 -257
+t-256.5 -186.5t-353.5 -68.5q-86 0 -176 16q-124 -88 -278 -128q-36 -9 -86 -16h-3q-11 0 -20.5 8t-11.5 21q-1 3 -1 6.5t0.5 6.5t2 6l2.5 5t3.5 5.5t4 5t4.5 5t4 4.5q5 6 23 25t26 29.5t22.5 29t25 38.5t20.5 44q-124 72 -195 177t-71 224q0 139 94 257t256.5 186.5
+t353.5 68.5zM1526 111q10 -24 20.5 -44t25 -38.5t22.5 -29t26 -29.5t23 -25q1 -1 4 -4.5t4.5 -5t4 -5t3.5 -5.5l2.5 -5t2 -6t0.5 -6.5t-1 -6.5q-3 -14 -13 -22t-22 -7q-50 7 -86 16q-154 40 -278 128q-90 -16 -176 -16q-271 0 -472 132q58 -4 88 -4q161 0 309 45t264 129
+q125 92 192 212t67 254q0 77 -23 152q129 -71 204 -178t75 -230q0 -120 -71 -224.5t-195 -176.5z" />
+    <glyph glyph-name="bolt" unicode="&#xf0e7;" horiz-adv-x="896" 
+d="M885 970q18 -20 7 -44l-540 -1157q-13 -25 -42 -25q-4 0 -14 2q-17 5 -25.5 19t-4.5 30l197 808l-406 -101q-4 -1 -12 -1q-18 0 -31 11q-18 15 -13 39l201 825q4 14 16 23t28 9h328q19 0 32 -12.5t13 -29.5q0 -8 -5 -18l-171 -463l396 98q8 2 12 2q19 0 34 -15z" />
+    <glyph glyph-name="sitemap" unicode="&#xf0e8;" horiz-adv-x="1792" 
+d="M1792 288v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192h-512v-192h96q40 0 68 -28t28 -68v-320
+q0 -40 -28 -68t-68 -28h-320q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h96v192q0 52 38 90t90 38h512v192h-96q-40 0 -68 28t-28 68v320q0 40 28 68t68 28h320q40 0 68 -28t28 -68v-320q0 -40 -28 -68t-68 -28h-96v-192h512q52 0 90 -38t38 -90v-192h96q40 0 68 -28t28 -68
+z" />
+    <glyph glyph-name="umbrella" unicode="&#xf0e9;" horiz-adv-x="1664" 
+d="M896 708v-580q0 -104 -76 -180t-180 -76t-180 76t-76 180q0 26 19 45t45 19t45 -19t19 -45q0 -50 39 -89t89 -39t89 39t39 89v580q33 11 64 11t64 -11zM1664 681q0 -13 -9.5 -22.5t-22.5 -9.5q-11 0 -23 10q-49 46 -93 69t-102 23q-68 0 -128 -37t-103 -97
+q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -28 -17q-18 0 -29 17q-4 6 -14.5 24t-17.5 28q-43 60 -102.5 97t-127.5 37t-127.5 -37t-102.5 -97q-7 -10 -17.5 -28t-14.5 -24q-11 -17 -29 -17q-17 0 -28 17q-4 6 -14.5 24t-17.5 28q-43 60 -103 97t-128 37q-58 0 -102 -23t-93 -69
+q-12 -10 -23 -10q-13 0 -22.5 9.5t-9.5 22.5q0 5 1 7q45 183 172.5 319.5t298 204.5t360.5 68q140 0 274.5 -40t246.5 -113.5t194.5 -187t115.5 -251.5q1 -2 1 -7zM896 1408v-98q-42 2 -64 2t-64 -2v98q0 26 19 45t45 19t45 -19t19 -45z" />
+    <glyph glyph-name="paste" unicode="&#xf0ea;" horiz-adv-x="1792" 
+d="M768 -128h896v640h-416q-40 0 -68 28t-28 68v416h-384v-1152zM1024 1312v64q0 13 -9.5 22.5t-22.5 9.5h-704q-13 0 -22.5 -9.5t-9.5 -22.5v-64q0 -13 9.5 -22.5t22.5 -9.5h704q13 0 22.5 9.5t9.5 22.5zM1280 640h299l-299 299v-299zM1792 512v-672q0 -40 -28 -68t-68 -28
+h-960q-40 0 -68 28t-28 68v160h-544q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1088q40 0 68 -28t28 -68v-328q21 -13 36 -28l408 -408q28 -28 48 -76t20 -88z" />
+    <glyph glyph-name="light_bulb" unicode="&#xf0eb;" horiz-adv-x="1024" 
+d="M736 960q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5q0 46 -54 71t-106 25q-13 0 -22.5 9.5t-9.5 22.5t9.5 22.5t22.5 9.5q50 0 99.5 -16t87 -54t37.5 -90zM896 960q0 72 -34.5 134t-90 101.5t-123 62t-136.5 22.5t-136.5 -22.5t-123 -62t-90 -101.5t-34.5 -134
+q0 -101 68 -180q10 -11 30.5 -33t30.5 -33q128 -153 141 -298h228q13 145 141 298q10 11 30.5 33t30.5 33q68 79 68 180zM1024 960q0 -155 -103 -268q-45 -49 -74.5 -87t-59.5 -95.5t-34 -107.5q47 -28 47 -82q0 -37 -25 -64q25 -27 25 -64q0 -52 -45 -81q13 -23 13 -47
+q0 -46 -31.5 -71t-77.5 -25q-20 -44 -60 -70t-87 -26t-87 26t-60 70q-46 0 -77.5 25t-31.5 71q0 24 13 47q-45 29 -45 81q0 37 25 64q-25 27 -25 64q0 54 47 82q-4 50 -34 107.5t-59.5 95.5t-74.5 87q-103 113 -103 268q0 99 44.5 184.5t117 142t164 89t186.5 32.5
+t186.5 -32.5t164 -89t117 -142t44.5 -184.5z" />
+    <glyph glyph-name="exchange" unicode="&#xf0ec;" horiz-adv-x="1792" 
+d="M1792 352v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-1376v-192q0 -13 -9.5 -22.5t-22.5 -9.5q-12 0 -24 10l-319 320q-9 9 -9 22q0 14 9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h1376q13 0 22.5 -9.5t9.5 -22.5zM1792 896q0 -14 -9 -23l-320 -320q-9 -9 -23 -9
+q-13 0 -22.5 9.5t-9.5 22.5v192h-1376q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h1376v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23z" />
+    <glyph glyph-name="cloud_download" unicode="&#xf0ed;" horiz-adv-x="1920" 
+d="M1280 608q0 14 -9 23t-23 9h-224v352q0 13 -9.5 22.5t-22.5 9.5h-192q-13 0 -22.5 -9.5t-9.5 -22.5v-352h-224q-13 0 -22.5 -9.5t-9.5 -22.5q0 -14 9 -23l352 -352q9 -9 23 -9t23 9l351 351q10 12 10 24zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088
+q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
+    <glyph glyph-name="cloud_upload" unicode="&#xf0ee;" horiz-adv-x="1920" 
+d="M1280 672q0 14 -9 23l-352 352q-9 9 -23 9t-23 -9l-351 -351q-10 -12 -10 -24q0 -14 9 -23t23 -9h224v-352q0 -13 9.5 -22.5t22.5 -9.5h192q13 0 22.5 9.5t9.5 22.5v352h224q13 0 22.5 9.5t9.5 22.5zM1920 384q0 -159 -112.5 -271.5t-271.5 -112.5h-1088
+q-185 0 -316.5 131.5t-131.5 316.5q0 130 70 240t188 165q-2 30 -2 43q0 212 150 362t362 150q156 0 285.5 -87t188.5 -231q71 62 166 62q106 0 181 -75t75 -181q0 -76 -41 -138q130 -31 213.5 -135.5t83.5 -238.5z" />
+    <glyph glyph-name="user_md" unicode="&#xf0f0;" horiz-adv-x="1408" 
+d="M384 192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 68 5.5 131t24 138t47.5 132.5t81 103t120 60.5q-22 -52 -22 -120v-203q-58 -20 -93 -70t-35 -111q0 -80 56 -136t136 -56
+t136 56t56 136q0 61 -35.5 111t-92.5 70v203q0 62 25 93q132 -104 295 -104t295 104q25 -31 25 -93v-64q-106 0 -181 -75t-75 -181v-89q-32 -29 -32 -71q0 -40 28 -68t68 -28t68 28t28 68q0 42 -32 71v89q0 52 38 90t90 38t90 -38t38 -90v-89q-32 -29 -32 -71q0 -40 28 -68
+t68 -28t68 28t28 68q0 42 -32 71v89q0 68 -34.5 127.5t-93.5 93.5q0 10 0.5 42.5t0 48t-2.5 41.5t-7 47t-13 40q68 -15 120 -60.5t81 -103t47.5 -132.5t24 -138t5.5 -131zM1088 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5
+t271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="stethoscope" unicode="&#xf0f1;" horiz-adv-x="1408" 
+d="M1280 832q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 832q0 -62 -35.5 -111t-92.5 -70v-395q0 -159 -131.5 -271.5t-316.5 -112.5t-316.5 112.5t-131.5 271.5v132q-164 20 -274 128t-110 252v512q0 26 19 45t45 19q6 0 16 -2q17 30 47 48
+t65 18q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5q-33 0 -64 18v-402q0 -106 94 -181t226 -75t226 75t94 181v402q-31 -18 -64 -18q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5q35 0 65 -18t47 -48q10 2 16 2q26 0 45 -19t19 -45v-512q0 -144 -110 -252
+t-274 -128v-132q0 -106 94 -181t226 -75t226 75t94 181v395q-57 21 -92.5 70t-35.5 111q0 80 56 136t136 56t136 -56t56 -136z" />
+    <glyph glyph-name="suitcase" unicode="&#xf0f2;" horiz-adv-x="1792" 
+d="M640 1152h512v128h-512v-128zM288 1152v-1280h-64q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h64zM1408 1152v-1280h-1024v1280h128v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h128zM1792 928v-832q0 -92 -66 -158t-158 -66h-64v1280h64q92 0 158 -66
+t66 -158z" />
+    <glyph glyph-name="bell_alt" unicode="&#xf0f3;" horiz-adv-x="1792" 
+d="M912 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM1728 128q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-181 75t-75 181h-448q-52 0 -90 38t-38 90q50 42 91 88t85 119.5t74.5 158.5
+t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q190 -28 307 -158.5t117 -282.5q0 -139 19.5 -260t50 -206t74.5 -158.5t85 -119.5t91 -88z" />
+    <glyph glyph-name="coffee" unicode="&#xf0f4;" horiz-adv-x="1920" 
+d="M1664 896q0 80 -56 136t-136 56h-64v-384h64q80 0 136 56t56 136zM0 128h1792q0 -106 -75 -181t-181 -75h-1280q-106 0 -181 75t-75 181zM1856 896q0 -159 -112.5 -271.5t-271.5 -112.5h-64v-32q0 -92 -66 -158t-158 -66h-704q-92 0 -158 66t-66 158v736q0 26 19 45
+t45 19h1152q159 0 271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="food" unicode="&#xf0f5;" horiz-adv-x="1408" 
+d="M640 1472v-640q0 -61 -35.5 -111t-92.5 -70v-779q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v779q-57 20 -92.5 70t-35.5 111v640q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45v-416q0 -26 19 -45
+t45 -19t45 19t19 45v416q0 26 19 45t45 19t45 -19t19 -45zM1408 1472v-1600q0 -52 -38 -90t-90 -38h-128q-52 0 -90 38t-38 90v512h-224q-13 0 -22.5 9.5t-9.5 22.5v800q0 132 94 226t226 94h256q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="file_text_alt" unicode="&#xf0f6;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M384 736q0 14 9 23t23 9h704q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64zM1120 512q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704zM1120 256q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-704
+q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704z" />
+    <glyph glyph-name="building" unicode="&#xf0f7;" horiz-adv-x="1408" 
+d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 992v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M896 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 1248v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M896 -128h384v1536h-1152v-1536h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM1408 1472v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="hospital" unicode="&#xf0f8;" horiz-adv-x="1408" 
+d="M384 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM384 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M1152 224v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM896 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M640 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 480v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M896 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5zM1152 736v-64q0 -13 -9.5 -22.5t-22.5 -9.5h-64q-13 0 -22.5 9.5t-9.5 22.5v64q0 13 9.5 22.5t22.5 9.5h64q13 0 22.5 -9.5t9.5 -22.5z
+M896 -128h384v1152h-256v-32q0 -40 -28 -68t-68 -28h-448q-40 0 -68 28t-28 68v32h-256v-1152h384v224q0 13 9.5 22.5t22.5 9.5h320q13 0 22.5 -9.5t9.5 -22.5v-224zM896 1056v320q0 13 -9.5 22.5t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-96h-128v96q0 13 -9.5 22.5
+t-22.5 9.5h-64q-13 0 -22.5 -9.5t-9.5 -22.5v-320q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5v96h128v-96q0 -13 9.5 -22.5t22.5 -9.5h64q13 0 22.5 9.5t9.5 22.5zM1408 1088v-1280q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1280q0 26 19 45t45 19h320
+v288q0 40 28 68t68 28h448q40 0 68 -28t28 -68v-288h320q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="ambulance" unicode="&#xf0f9;" horiz-adv-x="1920" 
+d="M640 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM256 640h384v256h-158q-14 -2 -22 -9l-195 -195q-7 -12 -9 -22v-30zM1536 128q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5
+t90.5 37.5t37.5 90.5zM1664 800v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM1920 1344v-1152
+q0 -26 -19 -45t-45 -19h-192q0 -106 -75 -181t-181 -75t-181 75t-75 181h-384q0 -106 -75 -181t-181 -75t-181 75t-75 181h-128q-26 0 -45 19t-19 45t19 45t45 19v416q0 26 13 58t32 51l198 198q19 19 51 32t58 13h160v320q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="medkit" unicode="&#xf0fa;" horiz-adv-x="1792" 
+d="M1280 416v192q0 14 -9 23t-23 9h-224v224q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23v-224h-224q-14 0 -23 -9t-9 -23v-192q0 -14 9 -23t23 -9h224v-224q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v224h224q14 0 23 9t9 23zM640 1152h512v128h-512v-128zM256 1152v-1280h-32
+q-92 0 -158 66t-66 158v832q0 92 66 158t158 66h32zM1440 1152v-1280h-1088v1280h160v160q0 40 28 68t68 28h576q40 0 68 -28t28 -68v-160h160zM1792 928v-832q0 -92 -66 -158t-158 -66h-32v1280h32q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="fighter_jet" unicode="&#xf0fb;" horiz-adv-x="1920" 
+d="M1920 576q-1 -32 -288 -96l-352 -32l-224 -64h-64l-293 -352h69q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-96h-160h-64v32h64v416h-160l-192 -224h-96l-32 32v192h32v32h128v8l-192 24v128l192 24v8h-128v32h-32v192l32 32h96l192 -224h160v416h-64v32h64h160h96
+q26 0 45 -4.5t19 -11.5t-19 -11.5t-45 -4.5h-69l293 -352h64l224 -64l352 -32q128 -28 200 -52t80 -34z" />
+    <glyph glyph-name="beer" unicode="&#xf0fc;" horiz-adv-x="1664" 
+d="M640 640v384h-256v-256q0 -53 37.5 -90.5t90.5 -37.5h128zM1664 192v-192h-1152v192l128 192h-128q-159 0 -271.5 112.5t-112.5 271.5v320l-64 64l32 128h480l32 128h960l32 -192l-64 -32v-800z" />
+    <glyph glyph-name="h_sign" unicode="&#xf0fd;" 
+d="M1280 192v896q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-512v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-896q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h512v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="f0fe" unicode="&#xf0fe;" 
+d="M1280 576v128q0 26 -19 45t-45 19h-320v320q0 26 -19 45t-45 19h-128q-26 0 -45 -19t-19 -45v-320h-320q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h320v-320q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v320h320q26 0 45 19t19 45zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="double_angle_left" unicode="&#xf100;" horiz-adv-x="1024" 
+d="M627 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23zM1011 160q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23
+t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23z" />
+    <glyph glyph-name="double_angle_right" unicode="&#xf101;" horiz-adv-x="1024" 
+d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM979 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23
+l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+    <glyph glyph-name="double_angle_up" unicode="&#xf102;" horiz-adv-x="1152" 
+d="M1075 224q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23zM1075 608q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393
+q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+    <glyph glyph-name="double_angle_down" unicode="&#xf103;" horiz-adv-x="1152" 
+d="M1075 672q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23zM1075 1056q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23
+t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+    <glyph glyph-name="angle_left" unicode="&#xf104;" horiz-adv-x="640" 
+d="M627 992q0 -13 -10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+    <glyph glyph-name="angle_right" unicode="&#xf105;" horiz-adv-x="640" 
+d="M595 576q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+    <glyph glyph-name="angle_up" unicode="&#xf106;" horiz-adv-x="1152" 
+d="M1075 352q0 -13 -10 -23l-50 -50q-10 -10 -23 -10t-23 10l-393 393l-393 -393q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l466 -466q10 -10 10 -23z" />
+    <glyph glyph-name="angle_down" unicode="&#xf107;" horiz-adv-x="1152" 
+d="M1075 800q0 -13 -10 -23l-466 -466q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l393 -393l393 393q10 10 23 10t23 -10l50 -50q10 -10 10 -23z" />
+    <glyph glyph-name="desktop" unicode="&#xf108;" horiz-adv-x="1920" 
+d="M1792 544v832q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-832q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1376v-1088q0 -66 -47 -113t-113 -47h-544q0 -37 16 -77.5t32 -71t16 -43.5q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19
+t-19 45q0 14 16 44t32 70t16 78h-544q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="laptop" unicode="&#xf109;" horiz-adv-x="1920" 
+d="M416 256q-66 0 -113 47t-47 113v704q0 66 47 113t113 47h1088q66 0 113 -47t47 -113v-704q0 -66 -47 -113t-113 -47h-1088zM384 1120v-704q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5v704q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5z
+M1760 192h160v-96q0 -40 -47 -68t-113 -28h-1600q-66 0 -113 28t-47 68v96h160h1600zM1040 96q16 0 16 16t-16 16h-160q-16 0 -16 -16t16 -16h160z" />
+    <glyph glyph-name="tablet" unicode="&#xf10a;" horiz-adv-x="1152" 
+d="M640 128q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1024 288v960q0 13 -9.5 22.5t-22.5 9.5h-832q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h832q13 0 22.5 9.5t9.5 22.5zM1152 1248v-1088q0 -66 -47 -113t-113 -47h-832
+q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h832q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="mobile_phone" unicode="&#xf10b;" horiz-adv-x="768" 
+d="M464 128q0 33 -23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5t56.5 23.5t23.5 56.5zM672 288v704q0 13 -9.5 22.5t-22.5 9.5h-512q-13 0 -22.5 -9.5t-9.5 -22.5v-704q0 -13 9.5 -22.5t22.5 -9.5h512q13 0 22.5 9.5t9.5 22.5zM480 1136
+q0 16 -16 16h-160q-16 0 -16 -16t16 -16h160q16 0 16 16zM768 1152v-1024q0 -52 -38 -90t-90 -38h-512q-52 0 -90 38t-38 90v1024q0 52 38 90t90 38h512q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="circle_blank" unicode="&#xf10c;" 
+d="M768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103
+t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="quote_left" unicode="&#xf10d;" horiz-adv-x="1664" 
+d="M768 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z
+M1664 576v-384q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v704q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5h64q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-64q-106 0 -181 -75t-75 -181v-32q0 -40 28 -68t68 -28h224q80 0 136 -56t56 -136z" />
+    <glyph glyph-name="quote_right" unicode="&#xf10e;" horiz-adv-x="1664" 
+d="M768 1216v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136zM1664 1216
+v-704q0 -104 -40.5 -198.5t-109.5 -163.5t-163.5 -109.5t-198.5 -40.5h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64q106 0 181 75t75 181v32q0 40 -28 68t-68 28h-224q-80 0 -136 56t-56 136v384q0 80 56 136t136 56h384q80 0 136 -56t56 -136z" />
+    <glyph glyph-name="spinner" unicode="&#xf110;" horiz-adv-x="1792" 
+d="M526 142q0 -53 -37.5 -90.5t-90.5 -37.5q-52 0 -90 38t-38 90q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 -64q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM320 640q0 -53 -37.5 -90.5t-90.5 -37.5
+t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1522 142q0 -52 -38 -90t-90 -38q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM558 1138q0 -66 -47 -113t-113 -47t-113 47t-47 113t47 113t113 47t113 -47t47 -113z
+M1728 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1088 1344q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1618 1138q0 -93 -66 -158.5t-158 -65.5q-93 0 -158.5 65.5t-65.5 158.5
+q0 92 65.5 158t158.5 66q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="circle" unicode="&#xf111;" 
+d="M1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="reply" unicode="&#xf112;" horiz-adv-x="1792" 
+d="M1792 416q0 -166 -127 -451q-3 -7 -10.5 -24t-13.5 -30t-13 -22q-12 -17 -28 -17q-15 0 -23.5 10t-8.5 25q0 9 2.5 26.5t2.5 23.5q5 68 5 123q0 101 -17.5 181t-48.5 138.5t-80 101t-105.5 69.5t-133 42.5t-154 21.5t-175.5 6h-224v-256q0 -26 -19 -45t-45 -19t-45 19
+l-512 512q-19 19 -19 45t19 45l512 512q19 19 45 19t45 -19t19 -45v-256h224q713 0 875 -403q53 -134 53 -333z" />
+    <glyph glyph-name="github_alt" unicode="&#xf113;" horiz-adv-x="1664" 
+d="M640 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1280 320q0 -40 -12.5 -82t-43 -76t-72.5 -34t-72.5 34t-43 76t-12.5 82t12.5 82t43 76t72.5 34t72.5 -34t43 -76t12.5 -82zM1440 320
+q0 120 -69 204t-187 84q-41 0 -195 -21q-71 -11 -157 -11t-157 11q-152 21 -195 21q-118 0 -187 -84t-69 -204q0 -88 32 -153.5t81 -103t122 -60t140 -29.5t149 -7h168q82 0 149 7t140 29.5t122 60t81 103t32 153.5zM1664 496q0 -207 -61 -331q-38 -77 -105.5 -133t-141 -86
+t-170 -47.5t-171.5 -22t-167 -4.5q-78 0 -142 3t-147.5 12.5t-152.5 30t-137 51.5t-121 81t-86 115q-62 123 -62 331q0 237 136 396q-27 82 -27 170q0 116 51 218q108 0 190 -39.5t189 -123.5q147 35 309 35q148 0 280 -32q105 82 187 121t189 39q51 -102 51 -218
+q0 -87 -27 -168q136 -160 136 -398z" />
+    <glyph glyph-name="folder_close_alt" unicode="&#xf114;" horiz-adv-x="1664" 
+d="M1536 224v704q0 40 -28 68t-68 28h-704q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68v-960q0 -40 28 -68t68 -28h1216q40 0 68 28t28 68zM1664 928v-704q0 -92 -66 -158t-158 -66h-1216q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320
+q92 0 158 -66t66 -158v-32h672q92 0 158 -66t66 -158z" />
+    <glyph glyph-name="folder_open_alt" unicode="&#xf115;" horiz-adv-x="1920" 
+d="M1781 605q0 35 -53 35h-1088q-40 0 -85.5 -21.5t-71.5 -52.5l-294 -363q-18 -24 -18 -40q0 -35 53 -35h1088q40 0 86 22t71 53l294 363q18 22 18 39zM640 768h768v160q0 40 -28 68t-68 28h-576q-40 0 -68 28t-28 68v64q0 40 -28 68t-68 28h-320q-40 0 -68 -28t-28 -68
+v-853l256 315q44 53 116 87.5t140 34.5zM1909 605q0 -62 -46 -120l-295 -363q-43 -53 -116 -87.5t-140 -34.5h-1088q-92 0 -158 66t-66 158v960q0 92 66 158t158 66h320q92 0 158 -66t66 -158v-32h544q92 0 158 -66t66 -158v-160h192q54 0 99 -24.5t67 -70.5q15 -32 15 -68z
+" />
+    <glyph glyph-name="expand_alt" unicode="&#xf116;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="collapse_alt" unicode="&#xf117;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="smile" unicode="&#xf118;" 
+d="M1134 461q-37 -121 -138 -195t-228 -74t-228 74t-138 195q-8 25 4 48.5t38 31.5q25 8 48.5 -4t31.5 -38q25 -80 92.5 -129.5t151.5 -49.5t151.5 49.5t92.5 129.5q8 26 32 38t49 4t37 -31.5t4 -48.5zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
+t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5
+t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="frown" unicode="&#xf119;" 
+d="M1134 307q8 -25 -4 -48.5t-37 -31.5t-49 4t-32 38q-25 80 -92.5 129.5t-151.5 49.5t-151.5 -49.5t-92.5 -129.5q-8 -26 -31.5 -38t-48.5 -4q-26 8 -38 31.5t-4 48.5q37 121 138 195t228 74t228 -74t138 -195zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
+t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204
+t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="meh" unicode="&#xf11a;" 
+d="M1152 448q0 -26 -19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h640q26 0 45 -19t19 -45zM640 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1152 896q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
+t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="gamepad" unicode="&#xf11b;" horiz-adv-x="1920" 
+d="M832 448v128q0 14 -9 23t-23 9h-192v192q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-192h-192q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h192v-192q0 -14 9 -23t23 -9h128q14 0 23 9t9 23v192h192q14 0 23 9t9 23zM1408 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5
+t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1920 512q0 -212 -150 -362t-362 -150q-192 0 -338 128h-220q-146 -128 -338 -128q-212 0 -362 150
+t-150 362t150 362t362 150h896q212 0 362 -150t150 -362z" />
+    <glyph glyph-name="keyboard" unicode="&#xf11c;" horiz-adv-x="1920" 
+d="M384 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM512 624v-96q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h224q16 0 16 -16zM384 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 368v-96q0 -16 -16 -16
+h-864q-16 0 -16 16v96q0 16 16 16h864q16 0 16 -16zM768 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM640 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1024 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16
+h96q16 0 16 -16zM896 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1280 624v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 368v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1152 880v-96
+q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1408 880v-96q0 -16 -16 -16h-96q-16 0 -16 16v96q0 16 16 16h96q16 0 16 -16zM1664 880v-352q0 -16 -16 -16h-224q-16 0 -16 16v96q0 16 16 16h112v240q0 16 16 16h96q16 0 16 -16zM1792 128v896h-1664v-896
+h1664zM1920 1024v-896q0 -53 -37.5 -90.5t-90.5 -37.5h-1664q-53 0 -90.5 37.5t-37.5 90.5v896q0 53 37.5 90.5t90.5 37.5h1664q53 0 90.5 -37.5t37.5 -90.5z" />
+    <glyph glyph-name="flag_alt" unicode="&#xf11d;" horiz-adv-x="1792" 
+d="M1664 491v616q-169 -91 -306 -91q-82 0 -145 32q-100 49 -184 76.5t-178 27.5q-173 0 -403 -127v-599q245 113 433 113q55 0 103.5 -7.5t98 -26t77 -31t82.5 -39.5l28 -14q44 -22 101 -22q120 0 293 92zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9
+h-64q-14 0 -23 9t-9 23v1266q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102
+q-15 -9 -33 -9q-16 0 -32 8q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
+    <glyph glyph-name="flag_checkered" unicode="&#xf11e;" horiz-adv-x="1792" 
+d="M832 536v192q-181 -16 -384 -117v-185q205 96 384 110zM832 954v197q-172 -8 -384 -126v-189q215 111 384 118zM1664 491v184q-235 -116 -384 -71v224q-20 6 -39 15q-5 3 -33 17t-34.5 17t-31.5 15t-34.5 15.5t-32.5 13t-36 12.5t-35 8.5t-39.5 7.5t-39.5 4t-44 2
+q-23 0 -49 -3v-222h19q102 0 192.5 -29t197.5 -82q19 -9 39 -15v-188q42 -17 91 -17q120 0 293 92zM1664 918v189q-169 -91 -306 -91q-45 0 -78 8v-196q148 -42 384 90zM320 1280q0 -35 -17.5 -64t-46.5 -46v-1266q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v1266
+q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1792 1216v-763q0 -39 -35 -57q-10 -5 -17 -9q-218 -116 -369 -116q-88 0 -158 35l-28 14q-64 33 -99 48t-91 29t-114 14q-102 0 -235.5 -44t-228.5 -102q-15 -9 -33 -9q-16 0 -32 8
+q-32 19 -32 56v742q0 35 31 55q35 21 78.5 42.5t114 52t152.5 49.5t155 19q112 0 209 -31t209 -86q38 -19 89 -19q122 0 310 112q22 12 31 17q31 16 62 -2q31 -20 31 -55z" />
+    <glyph glyph-name="terminal" unicode="&#xf120;" horiz-adv-x="1664" 
+d="M585 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23zM1664 96v-64q0 -14 -9 -23t-23 -9h-960q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h960q14 0 23 -9
+t9 -23z" />
+    <glyph glyph-name="code" unicode="&#xf121;" horiz-adv-x="1920" 
+d="M617 137l-50 -50q-10 -10 -23 -10t-23 10l-466 466q-10 10 -10 23t10 23l466 466q10 10 23 10t23 -10l50 -50q10 -10 10 -23t-10 -23l-393 -393l393 -393q10 -10 10 -23t-10 -23zM1208 1204l-373 -1291q-4 -13 -15.5 -19.5t-23.5 -2.5l-62 17q-13 4 -19.5 15.5t-2.5 24.5
+l373 1291q4 13 15.5 19.5t23.5 2.5l62 -17q13 -4 19.5 -15.5t2.5 -24.5zM1865 553l-466 -466q-10 -10 -23 -10t-23 10l-50 50q-10 10 -10 23t10 23l393 393l-393 393q-10 10 -10 23t10 23l50 50q10 10 23 10t23 -10l466 -466q10 -10 10 -23t-10 -23z" />
+    <glyph glyph-name="reply_all" unicode="&#xf122;" horiz-adv-x="1792" 
+d="M640 454v-70q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-69l-397 -398q-19 -19 -19 -45t19 -45zM1792 416q0 -58 -17 -133.5t-38.5 -138t-48 -125t-40.5 -90.5l-20 -40q-8 -17 -28 -17q-6 0 -9 1
+q-25 8 -23 34q43 400 -106 565q-64 71 -170.5 110.5t-267.5 52.5v-251q0 -42 -39 -59q-13 -5 -25 -5q-27 0 -45 19l-512 512q-19 19 -19 45t19 45l512 512q29 31 70 14q39 -17 39 -59v-262q411 -28 599 -221q169 -173 169 -509z" />
+    <glyph glyph-name="star_half_empty" unicode="&#xf123;" horiz-adv-x="1664" 
+d="M1186 579l257 250l-356 52l-66 10l-30 60l-159 322v-963l59 -31l318 -168l-60 355l-12 66zM1638 841l-363 -354l86 -500q5 -33 -6 -51.5t-34 -18.5q-17 0 -40 12l-449 236l-449 -236q-23 -12 -40 -12q-23 0 -34 18.5t-6 51.5l86 500l-364 354q-32 32 -23 59.5t54 34.5
+l502 73l225 455q20 41 49 41q28 0 49 -41l225 -455l502 -73q45 -7 54 -34.5t-24 -59.5z" />
+    <glyph glyph-name="location_arrow" unicode="&#xf124;" horiz-adv-x="1408" 
+d="M1401 1187l-640 -1280q-17 -35 -57 -35q-5 0 -15 2q-22 5 -35.5 22.5t-13.5 39.5v576h-576q-22 0 -39.5 13.5t-22.5 35.5t4 42t29 30l1280 640q13 7 29 7q27 0 45 -19q15 -14 18.5 -34.5t-6.5 -39.5z" />
+    <glyph glyph-name="crop" unicode="&#xf125;" horiz-adv-x="1664" 
+d="M557 256h595v595zM512 301l595 595h-595v-595zM1664 224v-192q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v224h-864q-14 0 -23 9t-9 23v864h-224q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23 -9t9 -23
+v-224h851l246 247q10 9 23 9t23 -9q9 -10 9 -23t-9 -23l-247 -246v-851h224q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="code_fork" unicode="&#xf126;" horiz-adv-x="1024" 
+d="M288 64q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM288 1216q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM928 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1024 1088q0 -52 -26 -96.5t-70 -69.5
+q-2 -287 -226 -414q-67 -38 -203 -81q-128 -40 -169.5 -71t-41.5 -100v-26q44 -25 70 -69.5t26 -96.5q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 52 26 96.5t70 69.5v820q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136q0 -52 -26 -96.5t-70 -69.5v-497
+q54 26 154 57q55 17 87.5 29.5t70.5 31t59 39.5t40.5 51t28 69.5t8.5 91.5q-44 25 -70 69.5t-26 96.5q0 80 56 136t136 56t136 -56t56 -136z" />
+    <glyph glyph-name="unlink" unicode="&#xf127;" horiz-adv-x="1664" 
+d="M439 265l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23zM608 224v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM384 448q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23t9 23t23 9h320
+q14 0 23 -9t9 -23zM1648 320q0 -120 -85 -203l-147 -146q-83 -83 -203 -83q-121 0 -204 85l-334 335q-21 21 -42 56l239 18l273 -274q27 -27 68 -27.5t68 26.5l147 146q28 28 28 67q0 40 -28 68l-274 275l18 239q35 -21 56 -42l336 -336q84 -86 84 -204zM1031 1044l-239 -18
+l-273 274q-28 28 -68 28q-39 0 -68 -27l-147 -146q-28 -28 -28 -67q0 -40 28 -68l274 -274l-18 -240q-35 21 -56 42l-336 336q-84 86 -84 204q0 120 85 203l147 146q83 83 203 83q121 0 204 -85l334 -335q21 -21 42 -56zM1664 960q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9
+t-9 23t9 23t23 9h320q14 0 23 -9t9 -23zM1120 1504v-320q0 -14 -9 -23t-23 -9t-23 9t-9 23v320q0 14 9 23t23 9t23 -9t9 -23zM1527 1353l-256 -256q-11 -9 -23 -9t-23 9q-9 10 -9 23t9 23l256 256q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
+    <glyph glyph-name="question" unicode="&#xf128;" horiz-adv-x="1024" 
+d="M704 280v-240q0 -16 -12 -28t-28 -12h-240q-16 0 -28 12t-12 28v240q0 16 12 28t28 12h240q16 0 28 -12t12 -28zM1020 880q0 -54 -15.5 -101t-35 -76.5t-55 -59.5t-57.5 -43.5t-61 -35.5q-41 -23 -68.5 -65t-27.5 -67q0 -17 -12 -32.5t-28 -15.5h-240q-15 0 -25.5 18.5
+t-10.5 37.5v45q0 83 65 156.5t143 108.5q59 27 84 56t25 76q0 42 -46.5 74t-107.5 32q-65 0 -108 -29q-35 -25 -107 -115q-13 -16 -31 -16q-12 0 -25 8l-164 125q-13 10 -15.5 25t5.5 28q160 266 464 266q80 0 161 -31t146 -83t106 -127.5t41 -158.5z" />
+    <glyph glyph-name="_279" unicode="&#xf129;" horiz-adv-x="640" 
+d="M640 192v-128q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h64v384h-64q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h384q26 0 45 -19t19 -45v-576h64q26 0 45 -19t19 -45zM512 1344v-192q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v192
+q0 26 19 45t45 19h256q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="exclamation" unicode="&#xf12a;" horiz-adv-x="640" 
+d="M512 288v-224q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v224q0 26 19 45t45 19h256q26 0 45 -19t19 -45zM542 1344l-28 -768q-1 -26 -20.5 -45t-45.5 -19h-256q-26 0 -45.5 19t-20.5 45l-28 768q-1 26 17.5 45t44.5 19h320q26 0 44.5 -19t17.5 -45z" />
+    <glyph glyph-name="superscript" unicode="&#xf12b;" 
+d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z
+M1534 846v-206h-514l-3 27q-4 28 -4 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q83 65 188 65q110 0 178 -59.5t68 -158.5q0 -56 -24.5 -103t-62 -76.5t-81.5 -58.5t-82 -50.5
+t-65.5 -51.5t-30.5 -63h232v80h126z" />
+    <glyph glyph-name="subscript" unicode="&#xf12c;" 
+d="M897 167v-167h-248l-159 252l-24 42q-8 9 -11 21h-3q-1 -3 -2.5 -6.5t-3.5 -8t-3 -6.5q-10 -20 -25 -44l-155 -250h-258v167h128l197 291l-185 272h-137v168h276l139 -228q2 -4 23 -42q8 -9 11 -21h3q3 9 11 21l25 42l140 228h257v-168h-125l-184 -267l204 -296h109z
+M1536 -50v-206h-514l-4 27q-3 45 -3 46q0 64 26 117t65 86.5t84 65t84 54.5t65 54t26 64q0 38 -29.5 62.5t-70.5 24.5q-51 0 -97 -39q-14 -11 -36 -38l-105 92q26 37 63 66q80 65 188 65q110 0 178 -59.5t68 -158.5q0 -66 -34.5 -118.5t-84 -86t-99.5 -62.5t-87 -63t-41 -73
+h232v80h126z" />
+    <glyph glyph-name="_283" unicode="&#xf12d;" horiz-adv-x="1920" 
+d="M896 128l336 384h-768l-336 -384h768zM1909 1205q15 -34 9.5 -71.5t-30.5 -65.5l-896 -1024q-38 -44 -96 -44h-768q-38 0 -69.5 20.5t-47.5 54.5q-15 34 -9.5 71.5t30.5 65.5l896 1024q38 44 96 44h768q38 0 69.5 -20.5t47.5 -54.5z" />
+    <glyph glyph-name="puzzle_piece" unicode="&#xf12e;" horiz-adv-x="1664" 
+d="M1664 438q0 -81 -44.5 -135t-123.5 -54q-41 0 -77.5 17.5t-59 38t-56.5 38t-71 17.5q-110 0 -110 -124q0 -39 16 -115t15 -115v-5q-22 0 -33 -1q-34 -3 -97.5 -11.5t-115.5 -13.5t-98 -5q-61 0 -103 26.5t-42 83.5q0 37 17.5 71t38 56.5t38 59t17.5 77.5q0 79 -54 123.5
+t-135 44.5q-84 0 -143 -45.5t-59 -127.5q0 -43 15 -83t33.5 -64.5t33.5 -53t15 -50.5q0 -45 -46 -89q-37 -35 -117 -35q-95 0 -245 24q-9 2 -27.5 4t-27.5 4l-13 2q-1 0 -3 1q-2 0 -2 1v1024q2 -1 17.5 -3.5t34 -5t21.5 -3.5q150 -24 245 -24q80 0 117 35q46 44 46 89
+q0 22 -15 50.5t-33.5 53t-33.5 64.5t-15 83q0 82 59 127.5t144 45.5q80 0 134 -44.5t54 -123.5q0 -41 -17.5 -77.5t-38 -59t-38 -56.5t-17.5 -71q0 -57 42 -83.5t103 -26.5q64 0 180 15t163 17v-2q-1 -2 -3.5 -17.5t-5 -34t-3.5 -21.5q-24 -150 -24 -245q0 -80 35 -117
+q44 -46 89 -46q22 0 50.5 15t53 33.5t64.5 33.5t83 15q82 0 127.5 -59t45.5 -143z" />
+    <glyph glyph-name="microphone" unicode="&#xf130;" horiz-adv-x="1152" 
+d="M1152 832v-128q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-217 24 -364.5 187.5t-147.5 384.5v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -185 131.5 -316.5t316.5 -131.5
+t316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45zM896 1216v-512q0 -132 -94 -226t-226 -94t-226 94t-94 226v512q0 132 94 226t226 94t226 -94t94 -226z" />
+    <glyph glyph-name="microphone_off" unicode="&#xf131;" horiz-adv-x="1408" 
+d="M271 591l-101 -101q-42 103 -42 214v128q0 26 19 45t45 19t45 -19t19 -45v-128q0 -53 15 -113zM1385 1193l-361 -361v-128q0 -132 -94 -226t-226 -94q-55 0 -109 19l-96 -96q97 -51 205 -51q185 0 316.5 131.5t131.5 316.5v128q0 26 19 45t45 19t45 -19t19 -45v-128
+q0 -221 -147.5 -384.5t-364.5 -187.5v-132h256q26 0 45 -19t19 -45t-19 -45t-45 -19h-640q-26 0 -45 19t-19 45t19 45t45 19h256v132q-125 13 -235 81l-254 -254q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l1234 1234q10 10 23 10t23 -10l82 -82q10 -10 10 -23
+t-10 -23zM1005 1325l-621 -621v512q0 132 94 226t226 94q102 0 184.5 -59t116.5 -152z" />
+    <glyph glyph-name="shield" unicode="&#xf132;" horiz-adv-x="1280" 
+d="M1088 576v640h-448v-1137q119 63 213 137q235 184 235 360zM1280 1344v-768q0 -86 -33.5 -170.5t-83 -150t-118 -127.5t-126.5 -103t-121 -77.5t-89.5 -49.5t-42.5 -20q-12 -6 -26 -6t-26 6q-16 7 -42.5 20t-89.5 49.5t-121 77.5t-126.5 103t-118 127.5t-83 150
+t-33.5 170.5v768q0 26 19 45t45 19h1152q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="calendar_empty" unicode="&#xf133;" horiz-adv-x="1664" 
+d="M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280
+q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="fire_extinguisher" unicode="&#xf134;" horiz-adv-x="1408" 
+d="M512 1344q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1408 1376v-320q0 -16 -12 -25q-8 -7 -20 -7q-4 0 -7 1l-448 96q-11 2 -18 11t-7 20h-256v-102q111 -23 183.5 -111t72.5 -203v-800q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v800
+q0 106 62.5 190.5t161.5 114.5v111h-32q-59 0 -115 -23.5t-91.5 -53t-66 -66.5t-40.5 -53.5t-14 -24.5q-17 -35 -57 -35q-16 0 -29 7q-23 12 -31.5 37t3.5 49q5 10 14.5 26t37.5 53.5t60.5 70t85 67t108.5 52.5q-25 42 -25 86q0 66 47 113t113 47t113 -47t47 -113
+q0 -33 -14 -64h302q0 11 7 20t18 11l448 96q3 1 7 1q12 0 20 -7q12 -9 12 -25z" />
+    <glyph glyph-name="rocket" unicode="&#xf135;" horiz-adv-x="1664" 
+d="M1440 1088q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1664 1376q0 -249 -75.5 -430.5t-253.5 -360.5q-81 -80 -195 -176l-20 -379q-2 -16 -16 -26l-384 -224q-7 -4 -16 -4q-12 0 -23 9l-64 64q-13 14 -8 32l85 276l-281 281l-276 -85q-3 -1 -9 -1
+q-14 0 -23 9l-64 64q-17 19 -5 39l224 384q10 14 26 16l379 20q96 114 176 195q188 187 358 258t431 71q14 0 24 -9.5t10 -22.5z" />
+    <glyph glyph-name="maxcdn" unicode="&#xf136;" horiz-adv-x="1792" 
+d="M1745 763l-164 -763h-334l178 832q13 56 -15 88q-27 33 -83 33h-169l-204 -953h-334l204 953h-286l-204 -953h-334l204 953l-153 327h1276q101 0 189.5 -40.5t147.5 -113.5q60 -73 81 -168.5t0 -194.5z" />
+    <glyph glyph-name="chevron_sign_left" unicode="&#xf137;" 
+d="M909 141l102 102q19 19 19 45t-19 45l-307 307l307 307q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="chevron_sign_right" unicode="&#xf138;" 
+d="M717 141l454 454q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l307 -307l-307 -307q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="chevron_sign_up" unicode="&#xf139;" 
+d="M1165 397l102 102q19 19 19 45t-19 45l-454 454q-19 19 -45 19t-45 -19l-454 -454q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l307 307l307 -307q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="chevron_sign_down" unicode="&#xf13a;" 
+d="M813 237l454 454q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-307 -307l-307 307q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l454 -454q19 -19 45 -19t45 19zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5
+t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="html5" unicode="&#xf13b;" horiz-adv-x="1408" 
+d="M1130 939l16 175h-884l47 -534h612l-22 -228l-197 -53l-196 53l-13 140h-175l22 -278l362 -100h4v1l359 99l50 544h-644l-15 181h674zM0 1408h1408l-128 -1438l-578 -162l-574 162z" />
+    <glyph glyph-name="css3" unicode="&#xf13c;" horiz-adv-x="1792" 
+d="M275 1408h1505l-266 -1333l-804 -267l-698 267l71 356h297l-29 -147l422 -161l486 161l68 339h-1208l58 297h1209l38 191h-1208z" />
+    <glyph glyph-name="anchor" unicode="&#xf13d;" horiz-adv-x="1792" 
+d="M960 1280q0 26 -19 45t-45 19t-45 -19t-19 -45t19 -45t45 -19t45 19t19 45zM1792 352v-352q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-93 93q-119 -143 -318.5 -226.5t-429.5 -83.5t-429.5 83.5t-318.5 226.5l-93 -93q-9 -9 -23 -9q-4 0 -12 2q-20 8 -20 30v352
+q0 14 9 23t23 9h352q22 0 30 -20q8 -19 -7 -35l-100 -100q67 -91 189.5 -153.5t271.5 -82.5v647h-192q-26 0 -45 19t-19 45v128q0 26 19 45t45 19h192v163q-58 34 -93 92.5t-35 128.5q0 106 75 181t181 75t181 -75t75 -181q0 -70 -35 -128.5t-93 -92.5v-163h192q26 0 45 -19
+t19 -45v-128q0 -26 -19 -45t-45 -19h-192v-647q149 20 271.5 82.5t189.5 153.5l-100 100q-15 16 -7 35q8 20 30 20h352q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="unlock_alt" unicode="&#xf13e;" horiz-adv-x="1152" 
+d="M1056 768q40 0 68 -28t28 -68v-576q0 -40 -28 -68t-68 -28h-960q-40 0 -68 28t-28 68v576q0 40 28 68t68 28h32v320q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -26 -19 -45t-45 -19h-64q-26 0 -45 19t-19 45q0 106 -75 181t-181 75t-181 -75t-75 -181
+v-320h736z" />
+    <glyph glyph-name="bullseye" unicode="&#xf140;" 
+d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM1152 640q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1280 640q0 -212 -150 -362t-362 -150t-362 150
+t-150 362t150 362t362 150t362 -150t150 -362zM1408 640q0 130 -51 248.5t-136.5 204t-204 136.5t-248.5 51t-248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5zM1536 640
+q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="ellipsis_horizontal" unicode="&#xf141;" horiz-adv-x="1408" 
+d="M384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM896 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM1408 800v-192q0 -40 -28 -68t-68 -28h-192
+q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="ellipsis_vertical" unicode="&#xf142;" horiz-adv-x="384" 
+d="M384 288v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 800v-192q0 -40 -28 -68t-68 -28h-192q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68zM384 1312v-192q0 -40 -28 -68t-68 -28h-192
+q-40 0 -68 28t-28 68v192q0 40 28 68t68 28h192q40 0 68 -28t28 -68z" />
+    <glyph glyph-name="_303" unicode="&#xf143;" 
+d="M512 256q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM863 162q-13 233 -176.5 396.5t-396.5 176.5q-14 1 -24 -9t-10 -23v-128q0 -13 8.5 -22t21.5 -10q154 -11 264 -121t121 -264q1 -13 10 -21.5t22 -8.5h128
+q13 0 23 10t9 24zM1247 161q-5 154 -56 297.5t-139.5 260t-205 205t-260 139.5t-297.5 56q-14 1 -23 -9q-10 -10 -10 -23v-128q0 -13 9 -22t22 -10q204 -7 378 -111.5t278.5 -278.5t111.5 -378q1 -13 10 -22t22 -9h128q13 0 23 10q11 9 9 23zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="play_sign" unicode="&#xf144;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM1152 585q32 18 32 55t-32 55l-544 320q-31 19 -64 1q-32 -19 -32 -56v-640q0 -37 32 -56
+q16 -8 32 -8q17 0 32 9z" />
+    <glyph glyph-name="ticket" unicode="&#xf145;" horiz-adv-x="1792" 
+d="M1024 1084l316 -316l-572 -572l-316 316zM813 105l618 618q19 19 19 45t-19 45l-362 362q-18 18 -45 18t-45 -18l-618 -618q-19 -19 -19 -45t19 -45l362 -362q18 -18 45 -18t45 18zM1702 742l-907 -908q-37 -37 -90.5 -37t-90.5 37l-126 126q56 56 56 136t-56 136
+t-136 56t-136 -56l-125 126q-37 37 -37 90.5t37 90.5l907 906q37 37 90.5 37t90.5 -37l125 -125q-56 -56 -56 -136t56 -136t136 -56t136 56l126 -125q37 -37 37 -90.5t-37 -90.5z" />
+    <glyph glyph-name="minus_sign_alt" unicode="&#xf146;" 
+d="M1280 576v128q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-128q0 -26 19 -45t45 -19h896q26 0 45 19t19 45zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
+t84.5 -203.5z" />
+    <glyph glyph-name="check_minus" unicode="&#xf147;" horiz-adv-x="1408" 
+d="M1152 736v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h832q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5
+t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="level_up" unicode="&#xf148;" horiz-adv-x="1024" 
+d="M1018 933q-18 -37 -58 -37h-192v-864q0 -14 -9 -23t-23 -9h-704q-21 0 -29 18q-8 20 4 35l160 192q9 11 25 11h320v640h-192q-40 0 -58 37q-17 37 9 68l320 384q18 22 49 22t49 -22l320 -384q27 -32 9 -68z" />
+    <glyph glyph-name="level_down" unicode="&#xf149;" horiz-adv-x="1024" 
+d="M32 1280h704q13 0 22.5 -9.5t9.5 -23.5v-863h192q40 0 58 -37t-9 -69l-320 -384q-18 -22 -49 -22t-49 22l-320 384q-26 31 -9 69q18 37 58 37h192v640h-320q-14 0 -25 11l-160 192q-13 14 -4 34q9 19 29 19z" />
+    <glyph glyph-name="check_sign" unicode="&#xf14a;" 
+d="M685 237l614 614q19 19 19 45t-19 45l-102 102q-19 19 -45 19t-45 -19l-467 -467l-211 211q-19 19 -45 19t-45 -19l-102 -102q-19 -19 -19 -45t19 -45l358 -358q19 -19 45 -19t45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5
+t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="edit_sign" unicode="&#xf14b;" 
+d="M404 428l152 -152l-52 -52h-56v96h-96v56zM818 818q14 -13 -3 -30l-291 -291q-17 -17 -30 -3q-14 13 3 30l291 291q17 17 30 3zM544 128l544 544l-288 288l-544 -544v-288h288zM1152 736l92 92q28 28 28 68t-28 68l-152 152q-28 28 -68 28t-68 -28l-92 -92zM1536 1120
+v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_312" unicode="&#xf14c;" 
+d="M1280 608v480q0 26 -19 45t-45 19h-480q-42 0 -59 -39q-17 -41 14 -70l144 -144l-534 -534q-19 -19 -19 -45t19 -45l102 -102q19 -19 45 -19t45 19l534 534l144 -144q18 -19 45 -19q12 0 25 5q39 17 39 59zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960
+q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="share_sign" unicode="&#xf14d;" 
+d="M1005 435l352 352q19 19 19 45t-19 45l-352 352q-30 31 -69 14q-40 -17 -40 -59v-160q-119 0 -216 -19.5t-162.5 -51t-114 -79t-76.5 -95.5t-44.5 -109t-21.5 -111.5t-5 -110.5q0 -181 167 -404q11 -12 25 -12q7 0 13 3q22 9 19 33q-44 354 62 473q46 52 130 75.5
+t224 23.5v-160q0 -42 40 -59q12 -5 24 -5q26 0 45 19zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="compass" unicode="&#xf14e;" 
+d="M640 448l256 128l-256 128v-256zM1024 1039v-542l-512 -256v542zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
+t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="collapse" unicode="&#xf150;" 
+d="M1145 861q18 -35 -5 -66l-320 -448q-19 -27 -52 -27t-52 27l-320 448q-23 31 -5 66q17 35 57 35h640q40 0 57 -35zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120
+v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="collapse_top" unicode="&#xf151;" 
+d="M1145 419q-17 -35 -57 -35h-640q-40 0 -57 35q-18 35 5 66l320 448q19 27 52 27t52 -27l320 -448q23 -31 5 -66zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_317" unicode="&#xf152;" 
+d="M1088 640q0 -33 -27 -52l-448 -320q-31 -23 -66 -5q-35 17 -35 57v640q0 40 35 57q35 18 66 -5l448 -320q27 -19 27 -52zM1280 160v960q0 14 -9 23t-23 9h-960q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h960q14 0 23 9t9 23zM1536 1120v-960q0 -119 -84.5 -203.5
+t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="eur" unicode="&#xf153;" horiz-adv-x="1024" 
+d="M976 229l35 -159q3 -12 -3 -22.5t-17 -14.5l-5 -1q-4 -2 -10.5 -3.5t-16 -4.5t-21.5 -5.5t-25.5 -5t-30 -5t-33.5 -4.5t-36.5 -3t-38.5 -1q-234 0 -409 130.5t-238 351.5h-95q-13 0 -22.5 9.5t-9.5 22.5v113q0 13 9.5 22.5t22.5 9.5h66q-2 57 1 105h-67q-14 0 -23 9
+t-9 23v114q0 14 9 23t23 9h98q67 210 243.5 338t400.5 128q102 0 194 -23q11 -3 20 -15q6 -11 3 -24l-43 -159q-3 -13 -14 -19.5t-24 -2.5l-4 1q-4 1 -11.5 2.5l-17.5 3.5t-22.5 3.5t-26 3t-29 2.5t-29.5 1q-126 0 -226 -64t-150 -176h468q16 0 25 -12q10 -12 7 -26
+l-24 -114q-5 -26 -32 -26h-488q-3 -37 0 -105h459q15 0 25 -12q9 -12 6 -27l-24 -112q-2 -11 -11 -18.5t-20 -7.5h-387q48 -117 149.5 -185.5t228.5 -68.5q18 0 36 1.5t33.5 3.5t29.5 4.5t24.5 5t18.5 4.5l12 3l5 2q13 5 26 -2q12 -7 15 -21z" />
+    <glyph glyph-name="gbp" unicode="&#xf154;" horiz-adv-x="1024" 
+d="M1020 399v-367q0 -14 -9 -23t-23 -9h-956q-14 0 -23 9t-9 23v150q0 13 9.5 22.5t22.5 9.5h97v383h-95q-14 0 -23 9.5t-9 22.5v131q0 14 9 23t23 9h95v223q0 171 123.5 282t314.5 111q185 0 335 -125q9 -8 10 -20.5t-7 -22.5l-103 -127q-9 -11 -22 -12q-13 -2 -23 7
+q-5 5 -26 19t-69 32t-93 18q-85 0 -137 -47t-52 -123v-215h305q13 0 22.5 -9t9.5 -23v-131q0 -13 -9.5 -22.5t-22.5 -9.5h-305v-379h414v181q0 13 9 22.5t23 9.5h162q14 0 23 -9.5t9 -22.5z" />
+    <glyph glyph-name="usd" unicode="&#xf155;" horiz-adv-x="1024" 
+d="M978 351q0 -153 -99.5 -263.5t-258.5 -136.5v-175q0 -14 -9 -23t-23 -9h-135q-13 0 -22.5 9.5t-9.5 22.5v175q-66 9 -127.5 31t-101.5 44.5t-74 48t-46.5 37.5t-17.5 18q-17 21 -2 41l103 135q7 10 23 12q15 2 24 -9l2 -2q113 -99 243 -125q37 -8 74 -8q81 0 142.5 43
+t61.5 122q0 28 -15 53t-33.5 42t-58.5 37.5t-66 32t-80 32.5q-39 16 -61.5 25t-61.5 26.5t-62.5 31t-56.5 35.5t-53.5 42.5t-43.5 49t-35.5 58t-21 66.5t-8.5 78q0 138 98 242t255 134v180q0 13 9.5 22.5t22.5 9.5h135q14 0 23 -9t9 -23v-176q57 -6 110.5 -23t87 -33.5
+t63.5 -37.5t39 -29t15 -14q17 -18 5 -38l-81 -146q-8 -15 -23 -16q-14 -3 -27 7q-3 3 -14.5 12t-39 26.5t-58.5 32t-74.5 26t-85.5 11.5q-95 0 -155 -43t-60 -111q0 -26 8.5 -48t29.5 -41.5t39.5 -33t56 -31t60.5 -27t70 -27.5q53 -20 81 -31.5t76 -35t75.5 -42.5t62 -50
+t53 -63.5t31.5 -76.5t13 -94z" />
+    <glyph glyph-name="inr" unicode="&#xf156;" horiz-adv-x="898" 
+d="M898 1066v-102q0 -14 -9 -23t-23 -9h-168q-23 -144 -129 -234t-276 -110q167 -178 459 -536q14 -16 4 -34q-8 -18 -29 -18h-195q-16 0 -25 12q-306 367 -498 571q-9 9 -9 22v127q0 13 9.5 22.5t22.5 9.5h112q132 0 212.5 43t102.5 125h-427q-14 0 -23 9t-9 23v102
+q0 14 9 23t23 9h413q-57 113 -268 113h-145q-13 0 -22.5 9.5t-9.5 22.5v133q0 14 9 23t23 9h832q14 0 23 -9t9 -23v-102q0 -14 -9 -23t-23 -9h-233q47 -61 64 -144h171q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="jpy" unicode="&#xf157;" horiz-adv-x="1027" 
+d="M603 0h-172q-13 0 -22.5 9t-9.5 23v330h-288q-13 0 -22.5 9t-9.5 23v103q0 13 9.5 22.5t22.5 9.5h288v85h-288q-13 0 -22.5 9t-9.5 23v104q0 13 9.5 22.5t22.5 9.5h214l-321 578q-8 16 0 32q10 16 28 16h194q19 0 29 -18l215 -425q19 -38 56 -125q10 24 30.5 68t27.5 61
+l191 420q8 19 29 19h191q17 0 27 -16q9 -14 1 -31l-313 -579h215q13 0 22.5 -9.5t9.5 -22.5v-104q0 -14 -9.5 -23t-22.5 -9h-290v-85h290q13 0 22.5 -9.5t9.5 -22.5v-103q0 -14 -9.5 -23t-22.5 -9h-290v-330q0 -13 -9.5 -22.5t-22.5 -9.5z" />
+    <glyph glyph-name="rub" unicode="&#xf158;" horiz-adv-x="1280" 
+d="M1043 971q0 100 -65 162t-171 62h-320v-448h320q106 0 171 62t65 162zM1280 971q0 -193 -126.5 -315t-326.5 -122h-340v-118h505q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-505v-192q0 -14 -9.5 -23t-22.5 -9h-167q-14 0 -23 9t-9 23v192h-224q-14 0 -23 9t-9 23v128
+q0 14 9 23t23 9h224v118h-224q-14 0 -23 9t-9 23v149q0 13 9 22.5t23 9.5h224v629q0 14 9 23t23 9h539q200 0 326.5 -122t126.5 -315z" />
+    <glyph glyph-name="krw" unicode="&#xf159;" horiz-adv-x="1792" 
+d="M514 341l81 299h-159l75 -300q1 -1 1 -3t1 -3q0 1 0.5 3.5t0.5 3.5zM630 768l35 128h-292l32 -128h225zM822 768h139l-35 128h-70zM1271 340l78 300h-162l81 -299q0 -1 0.5 -3.5t1.5 -3.5q0 1 0.5 3t0.5 3zM1382 768l33 128h-297l34 -128h230zM1792 736v-64q0 -14 -9 -23
+t-23 -9h-213l-164 -616q-7 -24 -31 -24h-159q-24 0 -31 24l-166 616h-209l-167 -616q-7 -24 -31 -24h-159q-11 0 -19.5 7t-10.5 17l-160 616h-208q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h175l-33 128h-142q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h109l-89 344q-5 15 5 28
+q10 12 26 12h137q26 0 31 -24l90 -360h359l97 360q7 24 31 24h126q24 0 31 -24l98 -360h365l93 360q5 24 31 24h137q16 0 26 -12q10 -13 5 -28l-91 -344h111q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-145l-34 -128h179q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="btc" unicode="&#xf15a;" horiz-adv-x="1280" 
+d="M1167 896q18 -182 -131 -258q117 -28 175 -103t45 -214q-7 -71 -32.5 -125t-64.5 -89t-97 -58.5t-121.5 -34.5t-145.5 -15v-255h-154v251q-80 0 -122 1v-252h-154v255q-18 0 -54 0.5t-55 0.5h-200l31 183h111q50 0 58 51v402h16q-6 1 -16 1v287q-13 68 -89 68h-111v164
+l212 -1q64 0 97 1v252h154v-247q82 2 122 2v245h154v-252q79 -7 140 -22.5t113 -45t82.5 -78t36.5 -114.5zM952 351q0 36 -15 64t-37 46t-57.5 30.5t-65.5 18.5t-74 9t-69 3t-64.5 -1t-47.5 -1v-338q8 0 37 -0.5t48 -0.5t53 1.5t58.5 4t57 8.5t55.5 14t47.5 21t39.5 30
+t24.5 40t9.5 51zM881 827q0 33 -12.5 58.5t-30.5 42t-48 28t-55 16.5t-61.5 8t-58 2.5t-54 -1t-39.5 -0.5v-307q5 0 34.5 -0.5t46.5 0t50 2t55 5.5t51.5 11t48.5 18.5t37 27t27 38.5t9 51z" />
+    <glyph glyph-name="file" unicode="&#xf15b;" 
+d="M1024 1024v472q22 -14 36 -28l408 -408q14 -14 28 -36h-472zM896 992q0 -40 28 -68t68 -28h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544z" />
+    <glyph glyph-name="file_text" unicode="&#xf15c;" 
+d="M1468 1060q14 -14 28 -36h-472v472q22 -14 36 -28zM992 896h544v-1056q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h800v-544q0 -40 28 -68t68 -28zM1152 160v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704
+q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23z" />
+    <glyph glyph-name="sort_by_alphabet" unicode="&#xf15d;" horiz-adv-x="1664" 
+d="M1191 1128h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1572 -23
+v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -11v-2l14 2q9 2 30 2h248v119h121zM1661 874v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162
+l230 -662h70z" />
+    <glyph glyph-name="_329" unicode="&#xf15e;" horiz-adv-x="1664" 
+d="M1191 104h177l-72 218l-12 47q-2 16 -2 20h-4l-3 -20q0 -1 -3.5 -18t-7.5 -29zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1661 -150
+v-106h-288v106h75l-47 144h-243l-47 -144h75v-106h-287v106h70l230 662h162l230 -662h70zM1572 1001v-233h-584v90l369 529q12 18 21 27l11 9v3q-2 0 -6.5 -0.5t-7.5 -0.5q-12 -3 -30 -3h-232v-115h-120v229h567v-89l-369 -530q-6 -8 -21 -26l-11 -10v-3l14 3q9 1 30 1h248
+v119h121z" />
+    <glyph glyph-name="sort_by_attributes" unicode="&#xf160;" horiz-adv-x="1792" 
+d="M736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23zM1792 -32v-192q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832
+q14 0 23 -9t9 -23zM1600 480v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1408 992v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1216 1504v-192q0 -14 -9 -23t-23 -9h-256
+q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="sort_by_attributes_alt" unicode="&#xf161;" horiz-adv-x="1792" 
+d="M1216 -32v-192q0 -14 -9 -23t-23 -9h-256q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h256q14 0 23 -9t9 -23zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192
+q14 0 23 -9t9 -23zM1408 480v-192q0 -14 -9 -23t-23 -9h-448q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h448q14 0 23 -9t9 -23zM1600 992v-192q0 -14 -9 -23t-23 -9h-640q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h640q14 0 23 -9t9 -23zM1792 1504v-192q0 -14 -9 -23t-23 -9h-832
+q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h832q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="sort_by_order" unicode="&#xf162;" 
+d="M1346 223q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9t9 -23
+zM1486 165q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5
+t82 -252.5zM1456 882v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165z" />
+    <glyph glyph-name="sort_by_order_alt" unicode="&#xf163;" 
+d="M1346 1247q0 63 -44 116t-103 53q-52 0 -83 -37t-31 -94t36.5 -95t104.5 -38q50 0 85 27t35 68zM736 96q0 -12 -10 -24l-319 -319q-10 -9 -23 -9q-12 0 -23 9l-320 320q-15 16 -7 35q8 20 30 20h192v1376q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1376h192q14 0 23 -9
+t9 -23zM1456 -142v-114h-469v114h167v432q0 7 0.5 19t0.5 17v16h-2l-7 -12q-8 -13 -26 -31l-62 -58l-82 86l192 185h123v-654h165zM1486 1189q0 -62 -13 -121.5t-41 -114t-68 -95.5t-98.5 -65.5t-127.5 -24.5q-62 0 -108 16q-24 8 -42 15l39 113q15 -7 31 -11q37 -13 75 -13
+q84 0 134.5 58.5t66.5 145.5h-2q-21 -23 -61.5 -37t-84.5 -14q-106 0 -173 71.5t-67 172.5q0 105 72 178t181 73q123 0 205 -94.5t82 -252.5z" />
+    <glyph glyph-name="_334" unicode="&#xf164;" horiz-adv-x="1664" 
+d="M256 192q0 26 -19 45t-45 19q-27 0 -45.5 -19t-18.5 -45q0 -27 18.5 -45.5t45.5 -18.5q26 0 45 18.5t19 45.5zM416 704v-640q0 -26 -19 -45t-45 -19h-288q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h288q26 0 45 -19t19 -45zM1600 704q0 -86 -55 -149q15 -44 15 -76
+q3 -76 -43 -137q17 -56 0 -117q-15 -57 -54 -94q9 -112 -49 -181q-64 -76 -197 -78h-36h-76h-17q-66 0 -144 15.5t-121.5 29t-120.5 39.5q-123 43 -158 44q-26 1 -45 19.5t-19 44.5v641q0 25 18 43.5t43 20.5q24 2 76 59t101 121q68 87 101 120q18 18 31 48t17.5 48.5
+t13.5 60.5q7 39 12.5 61t19.5 52t34 50q19 19 45 19q46 0 82.5 -10.5t60 -26t40 -40.5t24 -45t12 -50t5 -45t0.5 -39q0 -38 -9.5 -76t-19 -60t-27.5 -56q-3 -6 -10 -18t-11 -22t-8 -24h277q78 0 135 -57t57 -135z" />
+    <glyph glyph-name="_335" unicode="&#xf165;" horiz-adv-x="1664" 
+d="M256 960q0 -26 -19 -45t-45 -19q-27 0 -45.5 19t-18.5 45q0 27 18.5 45.5t45.5 18.5q26 0 45 -18.5t19 -45.5zM416 448v640q0 26 -19 45t-45 19h-288q-26 0 -45 -19t-19 -45v-640q0 -26 19 -45t45 -19h288q26 0 45 19t19 45zM1545 597q55 -61 55 -149q-1 -78 -57.5 -135
+t-134.5 -57h-277q4 -14 8 -24t11 -22t10 -18q18 -37 27 -57t19 -58.5t10 -76.5q0 -24 -0.5 -39t-5 -45t-12 -50t-24 -45t-40 -40.5t-60 -26t-82.5 -10.5q-26 0 -45 19q-20 20 -34 50t-19.5 52t-12.5 61q-9 42 -13.5 60.5t-17.5 48.5t-31 48q-33 33 -101 120q-49 64 -101 121
+t-76 59q-25 2 -43 20.5t-18 43.5v641q0 26 19 44.5t45 19.5q35 1 158 44q77 26 120.5 39.5t121.5 29t144 15.5h17h76h36q133 -2 197 -78q58 -69 49 -181q39 -37 54 -94q17 -61 0 -117q46 -61 43 -137q0 -32 -15 -76z" />
+    <glyph glyph-name="youtube_sign" unicode="&#xf166;" 
+d="M919 233v157q0 50 -29 50q-17 0 -33 -16v-224q16 -16 33 -16q29 0 29 49zM1103 355h66v34q0 51 -33 51t-33 -51v-34zM532 621v-70h-80v-423h-74v423h-78v70h232zM733 495v-367h-67v40q-39 -45 -76 -45q-33 0 -42 28q-6 17 -6 54v290h66v-270q0 -24 1 -26q1 -15 15 -15
+q20 0 42 31v280h67zM985 384v-146q0 -52 -7 -73q-12 -42 -53 -42q-35 0 -68 41v-36h-67v493h67v-161q32 40 68 40q41 0 53 -42q7 -21 7 -74zM1236 255v-9q0 -29 -2 -43q-3 -22 -15 -40q-27 -40 -80 -40q-52 0 -81 38q-21 27 -21 86v129q0 59 20 86q29 38 80 38t78 -38
+q21 -29 21 -86v-76h-133v-65q0 -51 34 -51q24 0 30 26q0 1 0.5 7t0.5 16.5v21.5h68zM785 1079v-156q0 -51 -32 -51t-32 51v156q0 52 32 52t32 -52zM1318 366q0 177 -19 260q-10 44 -43 73.5t-76 34.5q-136 15 -412 15q-275 0 -411 -15q-44 -5 -76.5 -34.5t-42.5 -73.5
+q-20 -87 -20 -260q0 -176 20 -260q10 -43 42.5 -73t75.5 -35q137 -15 412 -15t412 15q43 5 75.5 35t42.5 73q20 84 20 260zM563 1017l90 296h-75l-51 -195l-53 195h-78q7 -23 23 -69l24 -69q35 -103 46 -158v-201h74v201zM852 936v130q0 58 -21 87q-29 38 -78 38
+q-51 0 -78 -38q-21 -29 -21 -87v-130q0 -58 21 -87q27 -38 78 -38q49 0 78 38q21 27 21 87zM1033 816h67v370h-67v-283q-22 -31 -42 -31q-15 0 -16 16q-1 2 -1 26v272h-67v-293q0 -37 6 -55q11 -27 43 -27q36 0 77 45v-40zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5
+h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="youtube" unicode="&#xf167;" 
+d="M971 292v-211q0 -67 -39 -67q-23 0 -45 22v301q22 22 45 22q39 0 39 -67zM1309 291v-46h-90v46q0 68 45 68t45 -68zM343 509h107v94h-312v-94h105v-569h100v569zM631 -60h89v494h-89v-378q-30 -42 -57 -42q-18 0 -21 21q-1 3 -1 35v364h-89v-391q0 -49 8 -73
+q12 -37 58 -37q48 0 102 61v-54zM1060 88v197q0 73 -9 99q-17 56 -71 56q-50 0 -93 -54v217h-89v-663h89v48q45 -55 93 -55q54 0 71 55q9 27 9 100zM1398 98v13h-91q0 -51 -2 -61q-7 -36 -40 -36q-46 0 -46 69v87h179v103q0 79 -27 116q-39 51 -106 51q-68 0 -107 -51
+q-28 -37 -28 -116v-173q0 -79 29 -116q39 -51 108 -51q72 0 108 53q18 27 21 54q2 9 2 58zM790 1011v210q0 69 -43 69t-43 -69v-210q0 -70 43 -70t43 70zM1509 260q0 -234 -26 -350q-14 -59 -58 -99t-102 -46q-184 -21 -555 -21t-555 21q-58 6 -102.5 46t-57.5 99
+q-26 112 -26 350q0 234 26 350q14 59 58 99t103 47q183 20 554 20t555 -20q58 -7 102.5 -47t57.5 -99q26 -112 26 -350zM511 1536h102l-121 -399v-271h-100v271q-14 74 -61 212q-37 103 -65 187h106l71 -263zM881 1203v-175q0 -81 -28 -118q-38 -51 -106 -51q-67 0 -105 51
+q-28 38 -28 118v175q0 80 28 117q38 51 105 51q68 0 106 -51q28 -37 28 -117zM1216 1365v-499h-91v55q-53 -62 -103 -62q-46 0 -59 37q-8 24 -8 75v394h91v-367q0 -33 1 -35q3 -22 21 -22q27 0 57 43v381h91z" />
+    <glyph glyph-name="xing" unicode="&#xf168;" horiz-adv-x="1408" 
+d="M597 869q-10 -18 -257 -456q-27 -46 -65 -46h-239q-21 0 -31 17t0 36l253 448q1 0 0 1l-161 279q-12 22 -1 37q9 15 32 15h239q40 0 66 -45zM1403 1511q11 -16 0 -37l-528 -934v-1l336 -615q11 -20 1 -37q-10 -15 -32 -15h-239q-42 0 -66 45l-339 622q18 32 531 942
+q25 45 64 45h241q22 0 31 -15z" />
+    <glyph glyph-name="xing_sign" unicode="&#xf169;" 
+d="M685 771q0 1 -126 222q-21 34 -52 34h-184q-18 0 -26 -11q-7 -12 1 -29l125 -216v-1l-196 -346q-9 -14 0 -28q8 -13 24 -13h185q31 0 50 36zM1309 1268q-7 12 -24 12h-187q-30 0 -49 -35l-411 -729q1 -2 262 -481q20 -35 52 -35h184q18 0 25 12q8 13 -1 28l-260 476v1
+l409 723q8 16 0 28zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="youtube_play" unicode="&#xf16a;" horiz-adv-x="1792" 
+d="M711 408l484 250l-484 253v-503zM896 1270q168 0 324.5 -4.5t229.5 -9.5l73 -4q1 0 17 -1.5t23 -3t23.5 -4.5t28.5 -8t28 -13t31 -19.5t29 -26.5q6 -6 15.5 -18.5t29 -58.5t26.5 -101q8 -64 12.5 -136.5t5.5 -113.5v-40v-136q1 -145 -18 -290q-7 -55 -25 -99.5t-32 -61.5
+l-14 -17q-14 -15 -29 -26.5t-31 -19t-28 -12.5t-28.5 -8t-24 -4.5t-23 -3t-16.5 -1.5q-251 -19 -627 -19q-207 2 -359.5 6.5t-200.5 7.5l-49 4l-36 4q-36 5 -54.5 10t-51 21t-56.5 41q-6 6 -15.5 18.5t-29 58.5t-26.5 101q-8 64 -12.5 136.5t-5.5 113.5v40v136
+q-1 145 18 290q7 55 25 99.5t32 61.5l14 17q14 15 29 26.5t31 19.5t28 13t28.5 8t23.5 4.5t23 3t17 1.5q251 18 627 18z" />
+    <glyph glyph-name="dropbox" unicode="&#xf16b;" horiz-adv-x="1792" 
+d="M402 829l494 -305l-342 -285l-490 319zM1388 274v-108l-490 -293v-1l-1 1l-1 -1v1l-489 293v108l147 -96l342 284v2l1 -1l1 1v-2l343 -284zM554 1418l342 -285l-494 -304l-338 270zM1390 829l338 -271l-489 -319l-343 285zM1239 1418l489 -319l-338 -270l-494 304z" />
+    <glyph glyph-name="stackexchange" unicode="&#xf16c;" 
+d="M1289 -96h-1118v480h-160v-640h1438v640h-160v-480zM347 428l33 157l783 -165l-33 -156zM450 802l67 146l725 -339l-67 -145zM651 1158l102 123l614 -513l-102 -123zM1048 1536l477 -641l-128 -96l-477 641zM330 65v159h800v-159h-800z" />
+    <glyph glyph-name="instagram" unicode="&#xf16d;" 
+d="M1024 640q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM1162 640q0 -164 -115 -279t-279 -115t-279 115t-115 279t115 279t279 115t279 -115t115 -279zM1270 1050q0 -38 -27 -65t-65 -27t-65 27t-27 65t27 65t65 27t65 -27t27 -65zM768 1270
+q-7 0 -76.5 0.5t-105.5 0t-96.5 -3t-103 -10t-71.5 -18.5q-50 -20 -88 -58t-58 -88q-11 -29 -18.5 -71.5t-10 -103t-3 -96.5t0 -105.5t0.5 -76.5t-0.5 -76.5t0 -105.5t3 -96.5t10 -103t18.5 -71.5q20 -50 58 -88t88 -58q29 -11 71.5 -18.5t103 -10t96.5 -3t105.5 0t76.5 0.5
+t76.5 -0.5t105.5 0t96.5 3t103 10t71.5 18.5q50 20 88 58t58 88q11 29 18.5 71.5t10 103t3 96.5t0 105.5t-0.5 76.5t0.5 76.5t0 105.5t-3 96.5t-10 103t-18.5 71.5q-20 50 -58 88t-88 58q-29 11 -71.5 18.5t-103 10t-96.5 3t-105.5 0t-76.5 -0.5zM1536 640q0 -229 -5 -317
+q-10 -208 -124 -322t-322 -124q-88 -5 -317 -5t-317 5q-208 10 -322 124t-124 322q-5 88 -5 317t5 317q10 208 124 322t322 124q88 5 317 5t317 -5q208 -10 322 -124t124 -322q5 -88 5 -317z" />
+    <glyph glyph-name="flickr" unicode="&#xf16e;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM698 640q0 88 -62 150t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150zM1262 640q0 88 -62 150
+t-150 62t-150 -62t-62 -150t62 -150t150 -62t150 62t62 150z" />
+    <glyph glyph-name="adn" unicode="&#xf170;" 
+d="M768 914l201 -306h-402zM1133 384h94l-459 691l-459 -691h94l104 160h522zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="f171" unicode="&#xf171;" horiz-adv-x="1408" 
+d="M815 677q8 -63 -50.5 -101t-111.5 -6q-39 17 -53.5 58t-0.5 82t52 58q36 18 72.5 12t64 -35.5t27.5 -67.5zM926 698q-14 107 -113 164t-197 13q-63 -28 -100.5 -88.5t-34.5 -129.5q4 -91 77.5 -155t165.5 -56q91 8 152 84t50 168zM1165 1240q-20 27 -56 44.5t-58 22
+t-71 12.5q-291 47 -566 -2q-43 -7 -66 -12t-55 -22t-50 -43q30 -28 76 -45.5t73.5 -22t87.5 -11.5q228 -29 448 -1q63 8 89.5 12t72.5 21.5t75 46.5zM1222 205q-8 -26 -15.5 -76.5t-14 -84t-28.5 -70t-58 -56.5q-86 -48 -189.5 -71.5t-202 -22t-201.5 18.5q-46 8 -81.5 18
+t-76.5 27t-73 43.5t-52 61.5q-25 96 -57 292l6 16l18 9q223 -148 506.5 -148t507.5 148q21 -6 24 -23t-5 -45t-8 -37zM1403 1166q-26 -167 -111 -655q-5 -30 -27 -56t-43.5 -40t-54.5 -31q-252 -126 -610 -88q-248 27 -394 139q-15 12 -25.5 26.5t-17 35t-9 34t-6 39.5
+t-5.5 35q-9 50 -26.5 150t-28 161.5t-23.5 147.5t-22 158q3 26 17.5 48.5t31.5 37.5t45 30t46 22.5t48 18.5q125 46 313 64q379 37 676 -50q155 -46 215 -122q16 -20 16.5 -51t-5.5 -54z" />
+    <glyph glyph-name="bitbucket_sign" unicode="&#xf172;" 
+d="M848 666q0 43 -41 66t-77 1q-43 -20 -42.5 -72.5t43.5 -70.5q39 -23 81 4t36 72zM928 682q8 -66 -36 -121t-110 -61t-119 40t-56 113q-2 49 25.5 93t72.5 64q70 31 141.5 -10t81.5 -118zM1100 1073q-20 -21 -53.5 -34t-53 -16t-63.5 -8q-155 -20 -324 0q-44 6 -63 9.5
+t-52.5 16t-54.5 32.5q13 19 36 31t40 15.5t47 8.5q198 35 408 1q33 -5 51 -8.5t43 -16t39 -31.5zM1142 327q0 7 5.5 26.5t3 32t-17.5 16.5q-161 -106 -365 -106t-366 106l-12 -6l-5 -12q26 -154 41 -210q47 -81 204 -108q249 -46 428 53q34 19 49 51.5t22.5 85.5t12.5 71z
+M1272 1020q9 53 -8 75q-43 55 -155 88q-216 63 -487 36q-132 -12 -226 -46q-38 -15 -59.5 -25t-47 -34t-29.5 -54q8 -68 19 -138t29 -171t24 -137q1 -5 5 -31t7 -36t12 -27t22 -28q105 -80 284 -100q259 -28 440 63q24 13 39.5 23t31 29t19.5 40q48 267 80 473zM1536 1120
+v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="tumblr" unicode="&#xf173;" horiz-adv-x="1024" 
+d="M944 207l80 -237q-23 -35 -111 -66t-177 -32q-104 -2 -190.5 26t-142.5 74t-95 106t-55.5 120t-16.5 118v544h-168v215q72 26 129 69.5t91 90t58 102t34 99t15 88.5q1 5 4.5 8.5t7.5 3.5h244v-424h333v-252h-334v-518q0 -30 6.5 -56t22.5 -52.5t49.5 -41.5t81.5 -14
+q78 2 134 29z" />
+    <glyph glyph-name="tumblr_sign" unicode="&#xf174;" 
+d="M1136 75l-62 183q-44 -22 -103 -22q-36 -1 -62 10.5t-38.5 31.5t-17.5 40.5t-5 43.5v398h257v194h-256v326h-188q-8 0 -9 -10q-5 -44 -17.5 -87t-39 -95t-77 -95t-118.5 -68v-165h130v-418q0 -57 21.5 -115t65 -111t121 -85.5t176.5 -30.5q69 1 136.5 25t85.5 50z
+M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="long_arrow_down" unicode="&#xf175;" horiz-adv-x="768" 
+d="M765 237q8 -19 -5 -35l-350 -384q-10 -10 -23 -10q-14 0 -24 10l-355 384q-13 16 -5 35q9 19 29 19h224v1248q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-1248h224q21 0 29 -19z" />
+    <glyph glyph-name="long_arrow_up" unicode="&#xf176;" horiz-adv-x="768" 
+d="M765 1043q-9 -19 -29 -19h-224v-1248q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v1248h-224q-21 0 -29 19t5 35l350 384q10 10 23 10q14 0 24 -10l355 -384q13 -16 5 -35z" />
+    <glyph glyph-name="long_arrow_left" unicode="&#xf177;" horiz-adv-x="1792" 
+d="M1792 736v-192q0 -14 -9 -23t-23 -9h-1248v-224q0 -21 -19 -29t-35 5l-384 350q-10 10 -10 23q0 14 10 24l384 354q16 14 35 6q19 -9 19 -29v-224h1248q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="long_arrow_right" unicode="&#xf178;" horiz-adv-x="1792" 
+d="M1728 643q0 -14 -10 -24l-384 -354q-16 -14 -35 -6q-19 9 -19 29v224h-1248q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h1248v224q0 21 19 29t35 -5l384 -350q10 -10 10 -23z" />
+    <glyph glyph-name="apple" unicode="&#xf179;" horiz-adv-x="1408" 
+d="M1393 321q-39 -125 -123 -250q-129 -196 -257 -196q-49 0 -140 32q-86 32 -151 32q-61 0 -142 -33q-81 -34 -132 -34q-152 0 -301 259q-147 261 -147 503q0 228 113 374q113 144 284 144q72 0 177 -30q104 -30 138 -30q45 0 143 34q102 34 173 34q119 0 213 -65
+q52 -36 104 -100q-79 -67 -114 -118q-65 -94 -65 -207q0 -124 69 -223t158 -126zM1017 1494q0 -61 -29 -136q-30 -75 -93 -138q-54 -54 -108 -72q-37 -11 -104 -17q3 149 78 257q74 107 250 148q1 -3 2.5 -11t2.5 -11q0 -4 0.5 -10t0.5 -10z" />
+    <glyph glyph-name="windows" unicode="&#xf17a;" horiz-adv-x="1664" 
+d="M682 530v-651l-682 94v557h682zM682 1273v-659h-682v565zM1664 530v-786l-907 125v661h907zM1664 1408v-794h-907v669z" />
+    <glyph glyph-name="android" unicode="&#xf17b;" horiz-adv-x="1408" 
+d="M493 1053q16 0 27.5 11.5t11.5 27.5t-11.5 27.5t-27.5 11.5t-27 -11.5t-11 -27.5t11 -27.5t27 -11.5zM915 1053q16 0 27 11.5t11 27.5t-11 27.5t-27 11.5t-27.5 -11.5t-11.5 -27.5t11.5 -27.5t27.5 -11.5zM103 869q42 0 72 -30t30 -72v-430q0 -43 -29.5 -73t-72.5 -30
+t-73 30t-30 73v430q0 42 30 72t73 30zM1163 850v-666q0 -46 -32 -78t-77 -32h-75v-227q0 -43 -30 -73t-73 -30t-73 30t-30 73v227h-138v-227q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73l-1 227h-74q-46 0 -78 32t-32 78v666h918zM931 1255q107 -55 171 -153.5t64 -215.5
+h-925q0 117 64 215.5t172 153.5l-71 131q-7 13 5 20q13 6 20 -6l72 -132q95 42 201 42t201 -42l72 132q7 12 20 6q12 -7 5 -20zM1408 767v-430q0 -43 -30 -73t-73 -30q-42 0 -72 30t-30 73v430q0 43 30 72.5t72 29.5q43 0 73 -29.5t30 -72.5z" />
+    <glyph glyph-name="linux" unicode="&#xf17c;" 
+d="M663 1125q-11 -1 -15.5 -10.5t-8.5 -9.5q-5 -1 -5 5q0 12 19 15h10zM750 1111q-4 -1 -11.5 6.5t-17.5 4.5q24 11 32 -2q3 -6 -3 -9zM399 684q-4 1 -6 -3t-4.5 -12.5t-5.5 -13.5t-10 -13q-10 -11 -1 -12q4 -1 12.5 7t12.5 18q1 3 2 7t2 6t1.5 4.5t0.5 4v3t-1 2.5t-3 2z
+M1254 325q0 18 -55 42q4 15 7.5 27.5t5 26t3 21.5t0.5 22.5t-1 19.5t-3.5 22t-4 20.5t-5 25t-5.5 26.5q-10 48 -47 103t-72 75q24 -20 57 -83q87 -162 54 -278q-11 -40 -50 -42q-31 -4 -38.5 18.5t-8 83.5t-11.5 107q-9 39 -19.5 69t-19.5 45.5t-15.5 24.5t-13 15t-7.5 7
+q-14 62 -31 103t-29.5 56t-23.5 33t-15 40q-4 21 6 53.5t4.5 49.5t-44.5 25q-15 3 -44.5 18t-35.5 16q-8 1 -11 26t8 51t36 27q37 3 51 -30t4 -58q-11 -19 -2 -26.5t30 -0.5q13 4 13 36v37q-5 30 -13.5 50t-21 30.5t-23.5 15t-27 7.5q-107 -8 -89 -134q0 -15 -1 -15
+q-9 9 -29.5 10.5t-33 -0.5t-15.5 5q1 57 -16 90t-45 34q-27 1 -41.5 -27.5t-16.5 -59.5q-1 -15 3.5 -37t13 -37.5t15.5 -13.5q10 3 16 14q4 9 -7 8q-7 0 -15.5 14.5t-9.5 33.5q-1 22 9 37t34 14q17 0 27 -21t9.5 -39t-1.5 -22q-22 -15 -31 -29q-8 -12 -27.5 -23.5
+t-20.5 -12.5q-13 -14 -15.5 -27t7.5 -18q14 -8 25 -19.5t16 -19t18.5 -13t35.5 -6.5q47 -2 102 15q2 1 23 7t34.5 10.5t29.5 13t21 17.5q9 14 20 8q5 -3 6.5 -8.5t-3 -12t-16.5 -9.5q-20 -6 -56.5 -21.5t-45.5 -19.5q-44 -19 -70 -23q-25 -5 -79 2q-10 2 -9 -2t17 -19
+q25 -23 67 -22q17 1 36 7t36 14t33.5 17.5t30 17t24.5 12t17.5 2.5t8.5 -11q0 -2 -1 -4.5t-4 -5t-6 -4.5t-8.5 -5t-9 -4.5t-10 -5t-9.5 -4.5q-28 -14 -67.5 -44t-66.5 -43t-49 -1q-21 11 -63 73q-22 31 -25 22q-1 -3 -1 -10q0 -25 -15 -56.5t-29.5 -55.5t-21 -58t11.5 -63
+q-23 -6 -62.5 -90t-47.5 -141q-2 -18 -1.5 -69t-5.5 -59q-8 -24 -29 -3q-32 31 -36 94q-2 28 4 56q4 19 -1 18q-2 -1 -4 -5q-36 -65 10 -166q5 -12 25 -28t24 -20q20 -23 104 -90.5t93 -76.5q16 -15 17.5 -38t-14 -43t-45.5 -23q8 -15 29 -44.5t28 -54t7 -70.5q46 24 7 92
+q-4 8 -10.5 16t-9.5 12t-2 6q3 5 13 9.5t20 -2.5q46 -52 166 -36q133 15 177 87q23 38 34 30q12 -6 10 -52q-1 -25 -23 -92q-9 -23 -6 -37.5t24 -15.5q3 19 14.5 77t13.5 90q2 21 -6.5 73.5t-7.5 97t23 70.5q15 18 51 18q1 37 34.5 53t72.5 10.5t60 -22.5zM626 1152
+q3 17 -2.5 30t-11.5 15q-9 2 -9 -7q2 -5 5 -6q10 0 7 -15q-3 -20 8 -20q3 0 3 3zM1045 955q-2 8 -6.5 11.5t-13 5t-14.5 5.5q-5 3 -9.5 8t-7 8t-5.5 6.5t-4 4t-4 -1.5q-14 -16 7 -43.5t39 -31.5q9 -1 14.5 8t3.5 20zM867 1168q0 11 -5 19.5t-11 12.5t-9 3q-6 0 -8 -2t0 -4
+t5 -3q14 -4 18 -31q0 -3 8 2q2 2 2 3zM921 1401q0 2 -2.5 5t-9 7t-9.5 6q-15 15 -24 15q-9 -1 -11.5 -7.5t-1 -13t-0.5 -12.5q-1 -4 -6 -10.5t-6 -9t3 -8.5q4 -3 8 0t11 9t15 9q1 1 9 1t15 2t9 7zM1486 60q20 -12 31 -24.5t12 -24t-2.5 -22.5t-15.5 -22t-23.5 -19.5
+t-30 -18.5t-31.5 -16.5t-32 -15.5t-27 -13q-38 -19 -85.5 -56t-75.5 -64q-17 -16 -68 -19.5t-89 14.5q-18 9 -29.5 23.5t-16.5 25.5t-22 19.5t-47 9.5q-44 1 -130 1q-19 0 -57 -1.5t-58 -2.5q-44 -1 -79.5 -15t-53.5 -30t-43.5 -28.5t-53.5 -11.5q-29 1 -111 31t-146 43
+q-19 4 -51 9.5t-50 9t-39.5 9.5t-33.5 14.5t-17 19.5q-10 23 7 66.5t18 54.5q1 16 -4 40t-10 42.5t-4.5 36.5t10.5 27q14 12 57 14t60 12q30 18 42 35t12 51q21 -73 -32 -106q-32 -20 -83 -15q-34 3 -43 -10q-13 -15 5 -57q2 -6 8 -18t8.5 -18t4.5 -17t1 -22q0 -15 -17 -49
+t-14 -48q3 -17 37 -26q20 -6 84.5 -18.5t99.5 -20.5q24 -6 74 -22t82.5 -23t55.5 -4q43 6 64.5 28t23 48t-7.5 58.5t-19 52t-20 36.5q-121 190 -169 242q-68 74 -113 40q-11 -9 -15 15q-3 16 -2 38q1 29 10 52t24 47t22 42q8 21 26.5 72t29.5 78t30 61t39 54
+q110 143 124 195q-12 112 -16 310q-2 90 24 151.5t106 104.5q39 21 104 21q53 1 106 -13.5t89 -41.5q57 -42 91.5 -121.5t29.5 -147.5q-5 -95 30 -214q34 -113 133 -218q55 -59 99.5 -163t59.5 -191q8 -49 5 -84.5t-12 -55.5t-20 -22q-10 -2 -23.5 -19t-27 -35.5
+t-40.5 -33.5t-61 -14q-18 1 -31.5 5t-22.5 13.5t-13.5 15.5t-11.5 20.5t-9 19.5q-22 37 -41 30t-28 -49t7 -97q20 -70 1 -195q-10 -65 18 -100.5t73 -33t85 35.5q59 49 89.5 66.5t103.5 42.5q53 18 77 36.5t18.5 34.5t-25 28.5t-51.5 23.5q-33 11 -49.5 48t-15 72.5
+t15.5 47.5q1 -31 8 -56.5t14.5 -40.5t20.5 -28.5t21 -19t21.5 -13t16.5 -9.5z" />
+    <glyph glyph-name="dribble" unicode="&#xf17d;" 
+d="M1024 36q-42 241 -140 498h-2l-2 -1q-16 -6 -43 -16.5t-101 -49t-137 -82t-131 -114.5t-103 -148l-15 11q184 -150 418 -150q132 0 256 52zM839 643q-21 49 -53 111q-311 -93 -673 -93q-1 -7 -1 -21q0 -124 44 -236.5t124 -201.5q50 89 123.5 166.5t142.5 124.5t130.5 81
+t99.5 48l37 13q4 1 13 3.5t13 4.5zM732 855q-120 213 -244 378q-138 -65 -234 -186t-128 -272q302 0 606 80zM1416 536q-210 60 -409 29q87 -239 128 -469q111 75 185 189.5t96 250.5zM611 1277q-1 0 -2 -1q1 1 2 1zM1201 1132q-185 164 -433 164q-76 0 -155 -19
+q131 -170 246 -382q69 26 130 60.5t96.5 61.5t65.5 57t37.5 40.5zM1424 647q-3 232 -149 410l-1 -1q-9 -12 -19 -24.5t-43.5 -44.5t-71 -60.5t-100 -65t-131.5 -64.5q25 -53 44 -95q2 -5 6.5 -17t7.5 -17q36 5 74.5 7t73.5 2t69 -1.5t64 -4t56.5 -5.5t48 -6.5t36.5 -6
+t25 -4.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="skype" unicode="&#xf17e;" 
+d="M1173 473q0 50 -19.5 91.5t-48.5 68.5t-73 49t-82.5 34t-87.5 23l-104 24q-30 7 -44 10.5t-35 11.5t-30 16t-16.5 21t-7.5 30q0 77 144 77q43 0 77 -12t54 -28.5t38 -33.5t40 -29t48 -12q47 0 75.5 32t28.5 77q0 55 -56 99.5t-142 67.5t-182 23q-68 0 -132 -15.5
+t-119.5 -47t-89 -87t-33.5 -128.5q0 -61 19 -106.5t56 -75.5t80 -48.5t103 -32.5l146 -36q90 -22 112 -36q32 -20 32 -60q0 -39 -40 -64.5t-105 -25.5q-51 0 -91.5 16t-65 38.5t-45.5 45t-46 38.5t-54 16q-50 0 -75.5 -30t-25.5 -75q0 -92 122 -157.5t291 -65.5
+q73 0 140 18.5t122.5 53.5t88.5 93.5t33 131.5zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5q-130 0 -234 80q-77 -16 -150 -16q-143 0 -273.5 55.5t-225 150t-150 225t-55.5 273.5q0 73 16 150q-80 104 -80 234q0 159 112.5 271.5t271.5 112.5q130 0 234 -80
+q77 16 150 16q143 0 273.5 -55.5t225 -150t150 -225t55.5 -273.5q0 -73 -16 -150q80 -104 80 -234z" />
+    <glyph glyph-name="foursquare" unicode="&#xf180;" horiz-adv-x="1280" 
+d="M1000 1102l37 194q5 23 -9 40t-35 17h-712q-23 0 -38.5 -17t-15.5 -37v-1101q0 -7 6 -1l291 352q23 26 38 33.5t48 7.5h239q22 0 37 14.5t18 29.5q24 130 37 191q4 21 -11.5 40t-36.5 19h-294q-29 0 -48 19t-19 48v42q0 29 19 47.5t48 18.5h346q18 0 35 13.5t20 29.5z
+M1227 1324q-15 -73 -53.5 -266.5t-69.5 -350t-35 -173.5q-6 -22 -9 -32.5t-14 -32.5t-24.5 -33t-38.5 -21t-58 -10h-271q-13 0 -22 -10q-8 -9 -426 -494q-22 -25 -58.5 -28.5t-48.5 5.5q-55 22 -55 98v1410q0 55 38 102.5t120 47.5h888q95 0 127 -53t10 -159zM1227 1324
+l-158 -790q4 17 35 173.5t69.5 350t53.5 266.5z" />
+    <glyph glyph-name="trello" unicode="&#xf181;" 
+d="M704 192v1024q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-1024q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1376 576v640q0 14 -9 23t-23 9h-480q-14 0 -23 -9t-9 -23v-640q0 -14 9 -23t23 -9h480q14 0 23 9t9 23zM1536 1344v-1408q0 -26 -19 -45t-45 -19h-1408
+q-26 0 -45 19t-19 45v1408q0 26 19 45t45 19h1408q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="female" unicode="&#xf182;" horiz-adv-x="1280" 
+d="M1280 480q0 -40 -28 -68t-68 -28q-51 0 -80 43l-227 341h-45v-132l247 -411q9 -15 9 -33q0 -26 -19 -45t-45 -19h-192v-272q0 -46 -33 -79t-79 -33h-160q-46 0 -79 33t-33 79v272h-192q-26 0 -45 19t-19 45q0 18 9 33l247 411v132h-45l-227 -341q-29 -43 -80 -43
+q-40 0 -68 28t-28 68q0 29 16 53l256 384q73 107 176 107h384q103 0 176 -107l256 -384q16 -24 16 -53zM864 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="male" unicode="&#xf183;" horiz-adv-x="1024" 
+d="M1024 832v-416q0 -40 -28 -68t-68 -28t-68 28t-28 68v352h-64v-912q0 -46 -33 -79t-79 -33t-79 33t-33 79v464h-64v-464q0 -46 -33 -79t-79 -33t-79 33t-33 79v912h-64v-352q0 -40 -28 -68t-68 -28t-68 28t-28 68v416q0 80 56 136t136 56h640q80 0 136 -56t56 -136z
+M736 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="gittip" unicode="&#xf184;" 
+d="M773 234l350 473q16 22 24.5 59t-6 85t-61.5 79q-40 26 -83 25.5t-73.5 -17.5t-54.5 -45q-36 -40 -96 -40q-59 0 -95 40q-24 28 -54.5 45t-73.5 17.5t-84 -25.5q-46 -31 -60.5 -79t-6 -85t24.5 -59zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
+t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="sun" unicode="&#xf185;" horiz-adv-x="1792" 
+d="M1472 640q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5t-223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5t45.5 -223.5t123 -184t184 -123t223.5 -45.5t223.5 45.5t184 123t123 184t45.5 223.5zM1748 363q-4 -15 -20 -20l-292 -96v-306q0 -16 -13 -26q-15 -10 -29 -4
+l-292 94l-180 -248q-10 -13 -26 -13t-26 13l-180 248l-292 -94q-14 -6 -29 4q-13 10 -13 26v306l-292 96q-16 5 -20 20q-5 17 4 29l180 248l-180 248q-9 13 -4 29q4 15 20 20l292 96v306q0 16 13 26q15 10 29 4l292 -94l180 248q9 12 26 12t26 -12l180 -248l292 94
+q14 6 29 -4q13 -10 13 -26v-306l292 -96q16 -5 20 -20q5 -16 -4 -29l-180 -248l180 -248q9 -12 4 -29z" />
+    <glyph glyph-name="_366" unicode="&#xf186;" 
+d="M1262 233q-54 -9 -110 -9q-182 0 -337 90t-245 245t-90 337q0 192 104 357q-201 -60 -328.5 -229t-127.5 -384q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51q144 0 273.5 61.5t220.5 171.5zM1465 318q-94 -203 -283.5 -324.5t-413.5 -121.5q-156 0 -298 61
+t-245 164t-164 245t-61 298q0 153 57.5 292.5t156 241.5t235.5 164.5t290 68.5q44 2 61 -39q18 -41 -15 -72q-86 -78 -131.5 -181.5t-45.5 -218.5q0 -148 73 -273t198 -198t273 -73q118 0 228 51q41 18 72 -13q14 -14 17.5 -34t-4.5 -38z" />
+    <glyph glyph-name="archive" unicode="&#xf187;" horiz-adv-x="1792" 
+d="M1088 704q0 26 -19 45t-45 19h-256q-26 0 -45 -19t-19 -45t19 -45t45 -19h256q26 0 45 19t19 45zM1664 896v-960q0 -26 -19 -45t-45 -19h-1408q-26 0 -45 19t-19 45v960q0 26 19 45t45 19h1408q26 0 45 -19t19 -45zM1728 1344v-256q0 -26 -19 -45t-45 -19h-1536
+q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h1536q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="bug" unicode="&#xf188;" horiz-adv-x="1664" 
+d="M1632 576q0 -26 -19 -45t-45 -19h-224q0 -171 -67 -290l208 -209q19 -19 19 -45t-19 -45q-18 -19 -45 -19t-45 19l-198 197q-5 -5 -15 -13t-42 -28.5t-65 -36.5t-82 -29t-97 -13v896h-128v-896q-51 0 -101.5 13.5t-87 33t-66 39t-43.5 32.5l-15 14l-183 -207
+q-20 -21 -48 -21q-24 0 -43 16q-19 18 -20.5 44.5t15.5 46.5l202 227q-58 114 -58 274h-224q-26 0 -45 19t-19 45t19 45t45 19h224v294l-173 173q-19 19 -19 45t19 45t45 19t45 -19l173 -173h844l173 173q19 19 45 19t45 -19t19 -45t-19 -45l-173 -173v-294h224q26 0 45 -19
+t19 -45zM1152 1152h-640q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5z" />
+    <glyph glyph-name="vk" unicode="&#xf189;" horiz-adv-x="1920" 
+d="M1917 1016q23 -64 -150 -294q-24 -32 -65 -85q-40 -51 -55 -72t-30.5 -49.5t-12 -42t13 -34.5t32.5 -43t57 -53q4 -2 5 -4q141 -131 191 -221q3 -5 6.5 -12.5t7 -26.5t-0.5 -34t-25 -27.5t-59 -12.5l-256 -4q-24 -5 -56 5t-52 22l-20 12q-30 21 -70 64t-68.5 77.5t-61 58
+t-56.5 15.5q-3 -1 -8 -3.5t-17 -14.5t-21.5 -29.5t-17 -52t-6.5 -77.5q0 -15 -3.5 -27.5t-7.5 -18.5l-4 -5q-18 -19 -53 -22h-115q-71 -4 -146 16.5t-131.5 53t-103 66t-70.5 57.5l-25 24q-10 10 -27.5 30t-71.5 91t-106 151t-122.5 211t-130.5 272q-6 16 -6 27t3 16l4 6
+q15 19 57 19l274 2q12 -2 23 -6.5t16 -8.5l5 -3q16 -11 24 -32q20 -50 46 -103.5t41 -81.5l16 -29q29 -60 56 -104t48.5 -68.5t41.5 -38.5t34 -14t27 5q2 1 5 5t12 22t13.5 47t9.5 81t0 125q-2 40 -9 73t-14 46l-6 12q-25 34 -85 43q-13 2 5 24q16 19 38 30q53 26 239 24
+q82 -1 135 -13q20 -5 33.5 -13.5t20.5 -24t10.5 -32t3.5 -45.5t-1 -55t-2.5 -70.5t-1.5 -82.5q0 -11 -1 -42t-0.5 -48t3.5 -40.5t11.5 -39t22.5 -24.5q8 -2 17 -4t26 11t38 34.5t52 67t68 107.5q60 104 107 225q4 10 10 17.5t11 10.5l4 3l5 2.5t13 3t20 0.5l288 2
+q39 5 64 -2.5t31 -16.5z" />
+    <glyph glyph-name="weibo" unicode="&#xf18a;" horiz-adv-x="1792" 
+d="M675 252q21 34 11 69t-45 50q-34 14 -73 1t-60 -46q-22 -34 -13 -68.5t43 -50.5t74.5 -2.5t62.5 47.5zM769 373q8 13 3.5 26.5t-17.5 18.5q-14 5 -28.5 -0.5t-21.5 -18.5q-17 -31 13 -45q14 -5 29 0.5t22 18.5zM943 266q-45 -102 -158 -150t-224 -12
+q-107 34 -147.5 126.5t6.5 187.5q47 93 151.5 139t210.5 19q111 -29 158.5 -119.5t2.5 -190.5zM1255 426q-9 96 -89 170t-208.5 109t-274.5 21q-223 -23 -369.5 -141.5t-132.5 -264.5q9 -96 89 -170t208.5 -109t274.5 -21q223 23 369.5 141.5t132.5 264.5zM1563 422
+q0 -68 -37 -139.5t-109 -137t-168.5 -117.5t-226 -83t-270.5 -31t-275 33.5t-240.5 93t-171.5 151t-65 199.5q0 115 69.5 245t197.5 258q169 169 341.5 236t246.5 -7q65 -64 20 -209q-4 -14 -1 -20t10 -7t14.5 0.5t13.5 3.5l6 2q139 59 246 59t153 -61q45 -63 0 -178
+q-2 -13 -4.5 -20t4.5 -12.5t12 -7.5t17 -6q57 -18 103 -47t80 -81.5t34 -116.5zM1489 1046q42 -47 54.5 -108.5t-6.5 -117.5q-8 -23 -29.5 -34t-44.5 -4q-23 8 -34 29.5t-4 44.5q20 63 -24 111t-107 35q-24 -5 -45 8t-25 37q-5 24 8 44.5t37 25.5q60 13 119 -5.5t101 -65.5z
+M1670 1209q87 -96 112.5 -222.5t-13.5 -241.5q-9 -27 -34 -40t-52 -4t-40 34t-5 52q28 82 10 172t-80 158q-62 69 -148 95.5t-173 8.5q-28 -6 -52 9.5t-30 43.5t9.5 51.5t43.5 29.5q123 26 244 -11.5t208 -134.5z" />
+    <glyph glyph-name="renren" unicode="&#xf18b;" 
+d="M1133 -34q-171 -94 -368 -94q-196 0 -367 94q138 87 235.5 211t131.5 268q35 -144 132.5 -268t235.5 -211zM638 1394v-485q0 -252 -126.5 -459.5t-330.5 -306.5q-181 215 -181 495q0 187 83.5 349.5t229.5 269.5t325 137zM1536 638q0 -280 -181 -495
+q-204 99 -330.5 306.5t-126.5 459.5v485q179 -30 325 -137t229.5 -269.5t83.5 -349.5z" />
+    <glyph glyph-name="_372" unicode="&#xf18c;" horiz-adv-x="1408" 
+d="M1402 433q-32 -80 -76 -138t-91 -88.5t-99 -46.5t-101.5 -14.5t-96.5 8.5t-86.5 22t-69.5 27.5t-46 22.5l-17 10q-113 -228 -289.5 -359.5t-384.5 -132.5q-19 0 -32 13t-13 32t13 31.5t32 12.5q173 1 322.5 107.5t251.5 294.5q-36 -14 -72 -23t-83 -13t-91 2.5t-93 28.5
+t-92 59t-84.5 100t-74.5 146q114 47 214 57t167.5 -7.5t124.5 -56.5t88.5 -77t56.5 -82q53 131 79 291q-7 -1 -18 -2.5t-46.5 -2.5t-69.5 0.5t-81.5 10t-88.5 23t-84 42.5t-75 65t-54.5 94.5t-28.5 127.5q70 28 133.5 36.5t112.5 -1t92 -30t73.5 -50t56 -61t42 -63t27.5 -56
+t16 -39.5l4 -16q12 122 12 195q-8 6 -21.5 16t-49 44.5t-63.5 71.5t-54 93t-33 112.5t12 127t70 138.5q73 -25 127.5 -61.5t84.5 -76.5t48 -85t20.5 -89t-0.5 -85.5t-13 -76.5t-19 -62t-17 -42l-7 -15q1 -4 1 -50t-1 -72q3 7 10 18.5t30.5 43t50.5 58t71 55.5t91.5 44.5
+t112 14.5t132.5 -24q-2 -78 -21.5 -141.5t-50 -104.5t-69.5 -71.5t-81.5 -45.5t-84.5 -24t-80 -9.5t-67.5 1t-46.5 4.5l-17 3q-23 -147 -73 -283q6 7 18 18.5t49.5 41t77.5 52.5t99.5 42t117.5 20t129 -23.5t137 -77.5z" />
+    <glyph glyph-name="stack_exchange" unicode="&#xf18d;" horiz-adv-x="1280" 
+d="M1259 283v-66q0 -85 -57.5 -144.5t-138.5 -59.5h-57l-260 -269v269h-529q-81 0 -138.5 59.5t-57.5 144.5v66h1238zM1259 609v-255h-1238v255h1238zM1259 937v-255h-1238v255h1238zM1259 1077v-67h-1238v67q0 84 57.5 143.5t138.5 59.5h846q81 0 138.5 -59.5t57.5 -143.5z
+" />
+    <glyph glyph-name="_374" unicode="&#xf18e;" 
+d="M1152 640q0 -14 -9 -23l-320 -320q-9 -9 -23 -9q-13 0 -22.5 9.5t-9.5 22.5v192h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v192q0 14 9 23t23 9q12 0 24 -10l319 -319q9 -9 9 -23zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198
+t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="arrow_circle_alt_left" unicode="&#xf190;" 
+d="M1152 736v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-192q0 -14 -9 -23t-23 -9q-12 0 -24 10l-319 319q-9 9 -9 23t9 23l320 320q9 9 23 9q13 0 22.5 -9.5t9.5 -22.5v-192h352q13 0 22.5 -9.5t9.5 -22.5zM1312 640q0 148 -73 273t-198 198t-273 73t-273 -73t-198 -198
+t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_376" unicode="&#xf191;" 
+d="M1024 960v-640q0 -26 -19 -45t-45 -19q-20 0 -37 12l-448 320q-27 19 -27 52t27 52l448 320q17 12 37 12q26 0 45 -19t19 -45zM1280 160v960q0 13 -9.5 22.5t-22.5 9.5h-960q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5z
+M1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="dot_circle_alt" unicode="&#xf192;" 
+d="M1024 640q0 -106 -75 -181t-181 -75t-181 75t-75 181t75 181t181 75t181 -75t75 -181zM768 1184q-148 0 -273 -73t-198 -198t-73 -273t73 -273t198 -198t273 -73t273 73t198 198t73 273t-73 273t-198 198t-273 73zM1536 640q0 -209 -103 -385.5t-279.5 -279.5
+t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_378" unicode="&#xf193;" horiz-adv-x="1664" 
+d="M1023 349l102 -204q-58 -179 -210 -290t-339 -111q-156 0 -288.5 77.5t-210 210t-77.5 288.5q0 181 104.5 330t274.5 211l17 -131q-122 -54 -195 -165.5t-73 -244.5q0 -185 131.5 -316.5t316.5 -131.5q126 0 232.5 65t165 175.5t49.5 236.5zM1571 249l58 -114l-256 -128
+q-13 -7 -29 -7q-40 0 -57 35l-239 477h-472q-24 0 -42.5 16.5t-21.5 40.5l-96 779q-2 17 6 42q14 51 57 82.5t97 31.5q66 0 113 -47t47 -113q0 -69 -52 -117.5t-120 -41.5l37 -289h423v-128h-407l16 -128h455q40 0 57 -35l228 -455z" />
+    <glyph glyph-name="vimeo_square" unicode="&#xf194;" 
+d="M1292 898q10 216 -161 222q-231 8 -312 -261q44 19 82 19q85 0 74 -96q-4 -57 -74 -167t-105 -110q-43 0 -82 169q-13 54 -45 255q-30 189 -160 177q-59 -7 -164 -100l-81 -72l-81 -72l52 -67q76 52 87 52q57 0 107 -179q15 -55 45 -164.5t45 -164.5q68 -179 164 -179
+q157 0 383 294q220 283 226 444zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_380" unicode="&#xf195;" horiz-adv-x="1152" 
+d="M1152 704q0 -191 -94.5 -353t-256.5 -256.5t-353 -94.5h-160q-14 0 -23 9t-9 23v611l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v93l-215 -66q-3 -1 -9 -1q-10 0 -19 6q-13 10 -13 26v128q0 23 23 31l233 71v250q0 14 9 23t23 9h160
+q14 0 23 -9t9 -23v-181l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-93l375 116q15 5 28 -5t13 -26v-128q0 -23 -23 -31l-393 -121v-487q188 13 318 151t130 328q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="plus_square_o" unicode="&#xf196;" horiz-adv-x="1408" 
+d="M1152 736v-64q0 -14 -9 -23t-23 -9h-352v-352q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v352h-352q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h352v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-352h352q14 0 23 -9t9 -23zM1280 288v832q0 66 -47 113t-113 47h-832
+q-66 0 -113 -47t-47 -113v-832q0 -66 47 -113t113 -47h832q66 0 113 47t47 113zM1408 1120v-832q0 -119 -84.5 -203.5t-203.5 -84.5h-832q-119 0 -203.5 84.5t-84.5 203.5v832q0 119 84.5 203.5t203.5 84.5h832q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_382" unicode="&#xf197;" horiz-adv-x="2176" 
+d="M620 416q-110 -64 -268 -64h-128v64h-64q-13 0 -22.5 23.5t-9.5 56.5q0 24 7 49q-58 2 -96.5 10.5t-38.5 20.5t38.5 20.5t96.5 10.5q-7 25 -7 49q0 33 9.5 56.5t22.5 23.5h64v64h128q158 0 268 -64h1113q42 -7 106.5 -18t80.5 -14q89 -15 150 -40.5t83.5 -47.5t22.5 -40
+t-22.5 -40t-83.5 -47.5t-150 -40.5q-16 -3 -80.5 -14t-106.5 -18h-1113zM1739 668q53 -36 53 -92t-53 -92l81 -30q68 48 68 122t-68 122zM625 400h1015q-217 -38 -456 -80q-57 0 -113 -24t-83 -48l-28 -24l-288 -288q-26 -26 -70.5 -45t-89.5 -19h-96l-93 464h29
+q157 0 273 64zM352 816h-29l93 464h96q46 0 90 -19t70 -45l288 -288q4 -4 11 -10.5t30.5 -23t48.5 -29t61.5 -23t72.5 -10.5l456 -80h-1015q-116 64 -273 64z" />
+    <glyph glyph-name="_383" unicode="&#xf198;" horiz-adv-x="1664" 
+d="M1519 760q62 0 103.5 -40.5t41.5 -101.5q0 -97 -93 -130l-172 -59l56 -167q7 -21 7 -47q0 -59 -42 -102t-101 -43q-47 0 -85.5 27t-53.5 72l-55 165l-310 -106l55 -164q8 -24 8 -47q0 -59 -42 -102t-102 -43q-47 0 -85 27t-53 72l-55 163l-153 -53q-29 -9 -50 -9
+q-61 0 -101.5 40t-40.5 101q0 47 27.5 85t71.5 53l156 53l-105 313l-156 -54q-26 -8 -48 -8q-60 0 -101 40.5t-41 100.5q0 47 27.5 85t71.5 53l157 53l-53 159q-8 24 -8 47q0 60 42 102.5t102 42.5q47 0 85 -27t53 -72l54 -160l310 105l-54 160q-8 24 -8 47q0 59 42.5 102
+t101.5 43q47 0 85.5 -27.5t53.5 -71.5l53 -161l162 55q21 6 43 6q60 0 102.5 -39.5t42.5 -98.5q0 -45 -30 -81.5t-74 -51.5l-157 -54l105 -316l164 56q24 8 46 8zM725 498l310 105l-105 315l-310 -107z" />
+    <glyph glyph-name="_384" unicode="&#xf199;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM1280 352v436q-31 -35 -64 -55q-34 -22 -132.5 -85t-151.5 -99q-98 -69 -164 -69v0v0q-66 0 -164 69
+q-47 32 -142 92.5t-142 92.5q-12 8 -33 27t-31 27v-436q0 -40 28 -68t68 -28h832q40 0 68 28t28 68zM1280 925q0 41 -27.5 70t-68.5 29h-832q-40 0 -68 -28t-28 -68q0 -37 30.5 -76.5t67.5 -64.5q47 -32 137.5 -89t129.5 -83q3 -2 17 -11.5t21 -14t21 -13t23.5 -13
+t21.5 -9.5t22.5 -7.5t20.5 -2.5t20.5 2.5t22.5 7.5t21.5 9.5t23.5 13t21 13t21 14t17 11.5l267 174q35 23 66.5 62.5t31.5 73.5z" />
+    <glyph glyph-name="_385" unicode="&#xf19a;" horiz-adv-x="1792" 
+d="M127 640q0 163 67 313l367 -1005q-196 95 -315 281t-119 411zM1415 679q0 -19 -2.5 -38.5t-10 -49.5t-11.5 -44t-17.5 -59t-17.5 -58l-76 -256l-278 826q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-75 1 -202 10q-12 1 -20.5 -5t-11.5 -15t-1.5 -18.5t9 -16.5
+t19.5 -8l80 -8l120 -328l-168 -504l-280 832q46 3 88 8q19 2 26 18.5t-2.5 31t-28.5 13.5l-205 -10q-7 0 -23 0.5t-26 0.5q105 160 274.5 253.5t367.5 93.5q147 0 280.5 -53t238.5 -149h-10q-55 0 -92 -40.5t-37 -95.5q0 -12 2 -24t4 -21.5t8 -23t9 -21t12 -22.5t12.5 -21
+t14.5 -24t14 -23q63 -107 63 -212zM909 573l237 -647q1 -6 5 -11q-126 -44 -255 -44q-112 0 -217 32zM1570 1009q95 -174 95 -369q0 -209 -104 -385.5t-279 -278.5l235 678q59 169 59 276q0 42 -6 79zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286
+t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 -215q173 0 331.5 68t273 182.5t182.5 273t68 331.5t-68 331.5t-182.5 273t-273 182.5t-331.5 68t-331.5 -68t-273 -182.5t-182.5 -273t-68 -331.5t68 -331.5t182.5 -273
+t273 -182.5t331.5 -68z" />
+    <glyph glyph-name="_386" unicode="&#xf19b;" horiz-adv-x="1792" 
+d="M1086 1536v-1536l-272 -128q-228 20 -414 102t-293 208.5t-107 272.5q0 140 100.5 263.5t275 205.5t391.5 108v-172q-217 -38 -356.5 -150t-139.5 -255q0 -152 154.5 -267t388.5 -145v1360zM1755 954l37 -390l-525 114l147 83q-119 70 -280 99v172q277 -33 481 -157z" />
+    <glyph glyph-name="_387" unicode="&#xf19c;" horiz-adv-x="2048" 
+d="M960 1536l960 -384v-128h-128q0 -26 -20.5 -45t-48.5 -19h-1526q-28 0 -48.5 19t-20.5 45h-128v128zM256 896h256v-768h128v768h256v-768h128v768h256v-768h128v768h256v-768h59q28 0 48.5 -19t20.5 -45v-64h-1664v64q0 26 20.5 45t48.5 19h59v768zM1851 -64
+q28 0 48.5 -19t20.5 -45v-128h-1920v128q0 26 20.5 45t48.5 19h1782z" />
+    <glyph glyph-name="_388" unicode="&#xf19d;" horiz-adv-x="2304" 
+d="M1774 700l18 -316q4 -69 -82 -128t-235 -93.5t-323 -34.5t-323 34.5t-235 93.5t-82 128l18 316l574 -181q22 -7 48 -7t48 7zM2304 1024q0 -23 -22 -31l-1120 -352q-4 -1 -10 -1t-10 1l-652 206q-43 -34 -71 -111.5t-34 -178.5q63 -36 63 -109q0 -69 -58 -107l58 -433
+q2 -14 -8 -25q-9 -11 -24 -11h-192q-15 0 -24 11q-10 11 -8 25l58 433q-58 38 -58 107q0 73 65 111q11 207 98 330l-333 104q-22 8 -22 31t22 31l1120 352q4 1 10 1t10 -1l1120 -352q22 -8 22 -31z" />
+    <glyph glyph-name="_389" unicode="&#xf19e;" 
+d="M859 579l13 -707q-62 11 -105 11q-41 0 -105 -11l13 707q-40 69 -168.5 295.5t-216.5 374.5t-181 287q58 -15 108 -15q44 0 111 15q63 -111 133.5 -229.5t167 -276.5t138.5 -227q37 61 109.5 177.5t117.5 190t105 176t107 189.5q54 -14 107 -14q56 0 114 14v0
+q-28 -39 -60 -88.5t-49.5 -78.5t-56.5 -96t-49 -84q-146 -248 -353 -610z" />
+    <glyph glyph-name="uniF1A0" unicode="&#xf1a0;" 
+d="M768 750h725q12 -67 12 -128q0 -217 -91 -387.5t-259.5 -266.5t-386.5 -96q-157 0 -299 60.5t-245 163.5t-163.5 245t-60.5 299t60.5 299t163.5 245t245 163.5t299 60.5q300 0 515 -201l-209 -201q-123 119 -306 119q-129 0 -238.5 -65t-173.5 -176.5t-64 -243.5
+t64 -243.5t173.5 -176.5t238.5 -65q87 0 160 24t120 60t82 82t51.5 87t22.5 78h-436v264z" />
+    <glyph glyph-name="f1a1" unicode="&#xf1a1;" horiz-adv-x="1792" 
+d="M1095 369q16 -16 0 -31q-62 -62 -199 -62t-199 62q-16 15 0 31q6 6 15 6t15 -6q48 -49 169 -49q120 0 169 49q6 6 15 6t15 -6zM788 550q0 -37 -26 -63t-63 -26t-63.5 26t-26.5 63q0 38 26.5 64t63.5 26t63 -26.5t26 -63.5zM1183 550q0 -37 -26.5 -63t-63.5 -26t-63 26
+t-26 63t26 63.5t63 26.5t63.5 -26t26.5 -64zM1434 670q0 49 -35 84t-85 35t-86 -36q-130 90 -311 96l63 283l200 -45q0 -37 26 -63t63 -26t63.5 26.5t26.5 63.5t-26.5 63.5t-63.5 26.5q-54 0 -80 -50l-221 49q-19 5 -25 -16l-69 -312q-180 -7 -309 -97q-35 37 -87 37
+q-50 0 -85 -35t-35 -84q0 -35 18.5 -64t49.5 -44q-6 -27 -6 -56q0 -142 140 -243t337 -101q198 0 338 101t140 243q0 32 -7 57q30 15 48 43.5t18 63.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191
+t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_392" unicode="&#xf1a2;" 
+d="M939 407q13 -13 0 -26q-53 -53 -171 -53t-171 53q-13 13 0 26q5 6 13 6t13 -6q42 -42 145 -42t145 42q5 6 13 6t13 -6zM676 563q0 -31 -23 -54t-54 -23t-54 23t-23 54q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1014 563q0 -31 -23 -54t-54 -23t-54 23t-23 54
+q0 32 22.5 54.5t54.5 22.5t54.5 -22.5t22.5 -54.5zM1229 666q0 42 -30 72t-73 30q-42 0 -73 -31q-113 78 -267 82l54 243l171 -39q1 -32 23.5 -54t53.5 -22q32 0 54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5q-48 0 -69 -43l-189 42q-17 5 -21 -13l-60 -268q-154 -6 -265 -83
+q-30 32 -74 32q-43 0 -73 -30t-30 -72q0 -30 16 -55t42 -38q-5 -25 -5 -48q0 -122 120 -208.5t289 -86.5q170 0 290 86.5t120 208.5q0 25 -6 49q25 13 40.5 37.5t15.5 54.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960
+q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_393" unicode="&#xf1a3;" 
+d="M866 697l90 27v62q0 79 -58 135t-138 56t-138 -55.5t-58 -134.5v-283q0 -20 -14 -33.5t-33 -13.5t-32.5 13.5t-13.5 33.5v120h-151v-122q0 -82 57.5 -139t139.5 -57q81 0 138.5 56.5t57.5 136.5v280q0 19 13.5 33t33.5 14q19 0 32.5 -14t13.5 -33v-54zM1199 502v122h-150
+v-126q0 -20 -13.5 -33.5t-33.5 -13.5q-19 0 -32.5 14t-13.5 33v123l-90 -26l-60 28v-123q0 -80 58 -137t139 -57t138.5 57t57.5 139zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103
+t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="f1a4" unicode="&#xf1a4;" horiz-adv-x="1920" 
+d="M1062 824v118q0 42 -30 72t-72 30t-72 -30t-30 -72v-612q0 -175 -126 -299t-303 -124q-178 0 -303.5 125.5t-125.5 303.5v266h328v-262q0 -43 30 -72.5t72 -29.5t72 29.5t30 72.5v620q0 171 126.5 292t301.5 121q176 0 302 -122t126 -294v-136l-195 -58zM1592 602h328
+v-266q0 -178 -125.5 -303.5t-303.5 -125.5q-177 0 -303 124.5t-126 300.5v268l131 -61l195 58v-270q0 -42 30 -71.5t72 -29.5t72 29.5t30 71.5v275z" />
+    <glyph glyph-name="_395" unicode="&#xf1a5;" 
+d="M1472 160v480h-704v704h-480q-93 0 -158.5 -65.5t-65.5 -158.5v-480h704v-704h480q93 0 158.5 65.5t65.5 158.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
+t84.5 -203.5z" />
+    <glyph glyph-name="_396" unicode="&#xf1a6;" horiz-adv-x="2048" 
+d="M328 1254h204v-983h-532v697h328v286zM328 435v369h-123v-369h123zM614 968v-697h205v697h-205zM614 1254v-204h205v204h-205zM901 968h533v-942h-533v163h328v82h-328v697zM1229 435v369h-123v-369h123zM1516 968h532v-942h-532v163h327v82h-327v697zM1843 435v369h-123
+v-369h123z" />
+    <glyph glyph-name="_397" unicode="&#xf1a7;" 
+d="M1046 516q0 -64 -38 -109t-91 -45q-43 0 -70 15v277q28 17 70 17q53 0 91 -45.5t38 -109.5zM703 944q0 -64 -38 -109.5t-91 -45.5q-43 0 -70 15v277q28 17 70 17q53 0 91 -45t38 -109zM1265 513q0 134 -88 229t-213 95q-20 0 -39 -3q-23 -78 -78 -136q-87 -95 -211 -101
+v-636l211 41v206q51 -19 117 -19q125 0 213 95t88 229zM922 940q0 134 -88.5 229t-213.5 95q-74 0 -141 -36h-186v-840l211 41v206q55 -19 116 -19q125 0 213.5 95t88.5 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960
+q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_398" unicode="&#xf1a8;" horiz-adv-x="2038" 
+d="M1222 607q75 3 143.5 -20.5t118 -58.5t101 -94.5t84 -108t75.5 -120.5q33 -56 78.5 -109t75.5 -80.5t99 -88.5q-48 -30 -108.5 -57.5t-138.5 -59t-114 -47.5q-44 37 -74 115t-43.5 164.5t-33 180.5t-42.5 168.5t-72.5 123t-122.5 48.5l-10 -2l-6 -4q4 -5 13 -14
+q6 -5 28 -23.5t25.5 -22t19 -18t18 -20.5t11.5 -21t10.5 -27.5t4.5 -31t4 -40.5l1 -33q1 -26 -2.5 -57.5t-7.5 -52t-12.5 -58.5t-11.5 -53q-35 1 -101 -9.5t-98 -10.5q-39 0 -72 10q-2 16 -2 47q0 74 3 96q2 13 31.5 41.5t57 59t26.5 51.5q-24 2 -43 -24
+q-36 -53 -111.5 -99.5t-136.5 -46.5q-25 0 -75.5 63t-106.5 139.5t-84 96.5q-6 4 -27 30q-482 -112 -513 -112q-16 0 -28 11t-12 27q0 15 8.5 26.5t22.5 14.5l486 106q-8 14 -8 25t5.5 17.5t16 11.5t20 7t23 4.5t18.5 4.5q4 1 15.5 7.5t17.5 6.5q15 0 28 -16t20 -33
+q163 37 172 37q17 0 29.5 -11t12.5 -28q0 -15 -8.5 -26t-23.5 -14l-182 -40l-1 -16q-1 -26 81.5 -117.5t104.5 -91.5q47 0 119 80t72 129q0 36 -23.5 53t-51 18.5t-51 11.5t-23.5 34q0 16 10 34l-68 19q43 44 43 117q0 26 -5 58q82 16 144 16q44 0 71.5 -1.5t48.5 -8.5
+t31 -13.5t20.5 -24.5t15.5 -33.5t17 -47.5t24 -60l50 25q-3 -40 -23 -60t-42.5 -21t-40 -6.5t-16.5 -20.5zM1282 842q-5 5 -13.5 15.5t-12 14.5t-10.5 11.5t-10 10.5l-8 8t-8.5 7.5t-8 5t-8.5 4.5q-7 3 -14.5 5t-20.5 2.5t-22 0.5h-32.5h-37.5q-126 0 -217 -43
+q16 30 36 46.5t54 29.5t65.5 36t46 36.5t50 55t43.5 50.5q12 -9 28 -31.5t32 -36.5t38 -13l12 1v-76l22 -1q247 95 371 190q28 21 50 39t42.5 37.5t33 31t29.5 34t24 31t24.5 37t23 38t27 47.5t29.5 53l7 9q-2 -53 -43 -139q-79 -165 -205 -264t-306 -142q-14 -3 -42 -7.5
+t-50 -9.5t-39 -14q3 -19 24.5 -46t21.5 -34q0 -11 -26 -30zM1061 -79q39 26 131.5 47.5t146.5 21.5q9 0 22.5 -15.5t28 -42.5t26 -50t24 -51t14.5 -33q-121 -45 -244 -45q-61 0 -125 11zM822 568l48 12l109 -177l-73 -48zM1323 51q3 -15 3 -16q0 -7 -17.5 -14.5t-46 -13
+t-54 -9.5t-53.5 -7.5t-32 -4.5l-7 43q21 2 60.5 8.5t72 10t60.5 3.5h14zM866 679l-96 -20l-6 17q10 1 32.5 7t34.5 6q19 0 35 -10zM1061 45h31l10 -83l-41 -12v95zM1950 1535v1v-1zM1950 1535l-1 -5l-2 -2l1 3zM1950 1535l1 1z" />
+    <glyph glyph-name="_399" unicode="&#xf1a9;" 
+d="M1167 -50q-5 19 -24 5q-30 -22 -87 -39t-131 -17q-129 0 -193 49q-5 4 -13 4q-11 0 -26 -12q-7 -6 -7.5 -16t7.5 -20q34 -32 87.5 -46t102.5 -12.5t99 4.5q41 4 84.5 20.5t65 30t28.5 20.5q12 12 7 29zM1128 65q-19 47 -39 61q-23 15 -76 15q-47 0 -71 -10
+q-29 -12 -78 -56q-26 -24 -12 -44q9 -8 17.5 -4.5t31.5 23.5q3 2 10.5 8.5t10.5 8.5t10 7t11.5 7t12.5 5t15 4.5t16.5 2.5t20.5 1q27 0 44.5 -7.5t23 -14.5t13.5 -22q10 -17 12.5 -20t12.5 1q23 12 14 34zM1483 346q0 22 -5 44.5t-16.5 45t-34 36.5t-52.5 14
+q-33 0 -97 -41.5t-129 -83.5t-101 -42q-27 -1 -63.5 19t-76 49t-83.5 58t-100 49t-111 19q-115 -1 -197 -78.5t-84 -178.5q-2 -112 74 -164q29 -20 62.5 -28.5t103.5 -8.5q57 0 132 32.5t134 71t120 70.5t93 31q26 -1 65 -31.5t71.5 -67t68 -67.5t55.5 -32q35 -3 58.5 14
+t55.5 63q28 41 42.5 101t14.5 106zM1536 506q0 -164 -62 -304.5t-166 -236t-242.5 -149.5t-290.5 -54t-293 57.5t-247.5 157t-170.5 241.5t-64 302q0 89 19.5 172.5t49 145.5t70.5 118.5t78.5 94t78.5 69.5t64.5 46.5t42.5 24.5q14 8 51 26.5t54.5 28.5t48 30t60.5 44
+q36 28 58 72.5t30 125.5q129 -155 186 -193q44 -29 130 -68t129 -66q21 -13 39 -25t60.5 -46.5t76 -70.5t75 -95t69 -122t47 -148.5t19.5 -177.5z" />
+    <glyph glyph-name="_400" unicode="&#xf1aa;" 
+d="M1070 463l-160 -160l-151 -152l-30 -30q-65 -64 -151.5 -87t-171.5 -2q-16 -70 -72 -115t-129 -45q-85 0 -145 60.5t-60 145.5q0 72 44.5 128t113.5 72q-22 86 1 173t88 152l12 12l151 -152l-11 -11q-37 -37 -37 -89t37 -90q37 -37 89 -37t89 37l30 30l151 152l161 160z
+M729 1145l12 -12l-152 -152l-12 12q-37 37 -89 37t-89 -37t-37 -89.5t37 -89.5l29 -29l152 -152l160 -160l-151 -152l-161 160l-151 152l-30 30q-68 67 -90 159.5t5 179.5q-70 15 -115 71t-45 129q0 85 60 145.5t145 60.5q76 0 133.5 -49t69.5 -123q84 20 169.5 -3.5
+t149.5 -87.5zM1536 78q0 -85 -60 -145.5t-145 -60.5q-74 0 -131 47t-71 118q-86 -28 -179.5 -6t-161.5 90l-11 12l151 152l12 -12q37 -37 89 -37t89 37t37 89t-37 89l-30 30l-152 152l-160 160l152 152l160 -160l152 -152l29 -30q64 -64 87.5 -150.5t2.5 -171.5
+q76 -11 126.5 -68.5t50.5 -134.5zM1534 1202q0 -77 -51 -135t-127 -69q26 -85 3 -176.5t-90 -158.5l-12 -12l-151 152l12 12q37 37 37 89t-37 89t-89 37t-89 -37l-30 -30l-152 -152l-160 -160l-152 152l161 160l152 152l29 30q67 67 159 89.5t178 -3.5q11 75 68.5 126
+t135.5 51q85 0 145 -60.5t60 -145.5z" />
+    <glyph glyph-name="f1ab" unicode="&#xf1ab;" 
+d="M654 458q-1 -3 -12.5 0.5t-31.5 11.5l-20 9q-44 20 -87 49q-7 5 -41 31.5t-38 28.5q-67 -103 -134 -181q-81 -95 -105 -110q-4 -2 -19.5 -4t-18.5 0q6 4 82 92q21 24 85.5 115t78.5 118q17 30 51 98.5t36 77.5q-8 1 -110 -33q-8 -2 -27.5 -7.5t-34.5 -9.5t-17 -5
+q-2 -2 -2 -10.5t-1 -9.5q-5 -10 -31 -15q-23 -7 -47 0q-18 4 -28 21q-4 6 -5 23q6 2 24.5 5t29.5 6q58 16 105 32q100 35 102 35q10 2 43 19.5t44 21.5q9 3 21.5 8t14.5 5.5t6 -0.5q2 -12 -1 -33q0 -2 -12.5 -27t-26.5 -53.5t-17 -33.5q-25 -50 -77 -131l64 -28
+q12 -6 74.5 -32t67.5 -28q4 -1 10.5 -25.5t4.5 -30.5zM449 944q3 -15 -4 -28q-12 -23 -50 -38q-30 -12 -60 -12q-26 3 -49 26q-14 15 -18 41l1 3q3 -3 19.5 -5t26.5 0t58 16q36 12 55 14q17 0 21 -17zM1147 815l63 -227l-139 42zM39 15l694 232v1032l-694 -233v-1031z
+M1280 332l102 -31l-181 657l-100 31l-216 -536l102 -31l45 110l211 -65zM777 1294l573 -184v380zM1088 -29l158 -13l-54 -160l-40 66q-130 -83 -276 -108q-58 -12 -91 -12h-84q-79 0 -199.5 39t-183.5 85q-8 7 -8 16q0 8 5 13.5t13 5.5q4 0 18 -7.5t30.5 -16.5t20.5 -11
+q73 -37 159.5 -61.5t157.5 -24.5q95 0 167 14.5t157 50.5q15 7 30.5 15.5t34 19t28.5 16.5zM1536 1050v-1079l-774 246q-14 -6 -375 -127.5t-368 -121.5q-13 0 -18 13q0 1 -1 3v1078q3 9 4 10q5 6 20 11q107 36 149 50v384l558 -198q2 0 160.5 55t316 108.5t161.5 53.5
+q20 0 20 -21v-418z" />
+    <glyph glyph-name="_402" unicode="&#xf1ac;" horiz-adv-x="1792" 
+d="M288 1152q66 0 113 -47t47 -113v-1088q0 -66 -47 -113t-113 -47h-128q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h128zM1664 989q58 -34 93 -93t35 -128v-768q0 -106 -75 -181t-181 -75h-864q-66 0 -113 47t-47 113v1536q0 40 28 68t68 28h672q40 0 88 -20t76 -48
+l152 -152q28 -28 48 -76t20 -88v-163zM928 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM928 512v128q0 14 -9 23
+t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1184 256v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128
+q14 0 23 9t9 23zM1184 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 0v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 256v128q0 14 -9 23t-23 9h-128
+q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1440 512v128q0 14 -9 23t-23 9h-128q-14 0 -23 -9t-9 -23v-128q0 -14 9 -23t23 -9h128q14 0 23 9t9 23zM1536 896v256h-160q-40 0 -68 28t-28 68v160h-640v-512h896z" />
+    <glyph glyph-name="_403" unicode="&#xf1ad;" 
+d="M1344 1536q26 0 45 -19t19 -45v-1664q0 -26 -19 -45t-45 -19h-1280q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h1280zM512 1248v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 992v-64q0 -14 9 -23t23 -9h64q14 0 23 9
+t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 736v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM512 480v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 160v64
+q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64
+q14 0 23 9t9 23zM384 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM384 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 -96v192q0 14 -9 23t-23 9h-320q-14 0 -23 -9
+t-9 -23v-192q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM896 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 928v64
+q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM896 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 160v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64
+q14 0 23 9t9 23zM1152 416v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 672v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 928v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9
+t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1152 1184v64q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h64q14 0 23 9t9 23z" />
+    <glyph glyph-name="_404" unicode="&#xf1ae;" horiz-adv-x="1280" 
+d="M1188 988l-292 -292v-824q0 -46 -33 -79t-79 -33t-79 33t-33 79v384h-64v-384q0 -46 -33 -79t-79 -33t-79 33t-33 79v824l-292 292q-28 28 -28 68t28 68q29 28 68.5 28t67.5 -28l228 -228h368l228 228q28 28 68 28t68 -28q28 -29 28 -68.5t-28 -67.5zM864 1152
+q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="uniF1B1" unicode="&#xf1b0;" horiz-adv-x="1664" 
+d="M780 1064q0 -60 -19 -113.5t-63 -92.5t-105 -39q-76 0 -138 57.5t-92 135.5t-30 151q0 60 19 113.5t63 92.5t105 39q77 0 138.5 -57.5t91.5 -135t30 -151.5zM438 581q0 -80 -42 -139t-119 -59q-76 0 -141.5 55.5t-100.5 133.5t-35 152q0 80 42 139.5t119 59.5
+q76 0 141.5 -55.5t100.5 -134t35 -152.5zM832 608q118 0 255 -97.5t229 -237t92 -254.5q0 -46 -17 -76.5t-48.5 -45t-64.5 -20t-76 -5.5q-68 0 -187.5 45t-182.5 45q-66 0 -192.5 -44.5t-200.5 -44.5q-183 0 -183 146q0 86 56 191.5t139.5 192.5t187.5 146t193 59zM1071 819
+q-61 0 -105 39t-63 92.5t-19 113.5q0 74 30 151.5t91.5 135t138.5 57.5q61 0 105 -39t63 -92.5t19 -113.5q0 -73 -30 -151t-92 -135.5t-138 -57.5zM1503 923q77 0 119 -59.5t42 -139.5q0 -74 -35 -152t-100.5 -133.5t-141.5 -55.5q-77 0 -119 59t-42 139q0 74 35 152.5
+t100.5 134t141.5 55.5z" />
+    <glyph glyph-name="_406" unicode="&#xf1b1;" horiz-adv-x="768" 
+d="M704 1008q0 -145 -57 -243.5t-152 -135.5l45 -821q2 -26 -16 -45t-44 -19h-192q-26 0 -44 19t-16 45l45 821q-95 37 -152 135.5t-57 243.5q0 128 42.5 249.5t117.5 200t160 78.5t160 -78.5t117.5 -200t42.5 -249.5z" />
+    <glyph glyph-name="_407" unicode="&#xf1b2;" horiz-adv-x="1792" 
+d="M896 -93l640 349v636l-640 -233v-752zM832 772l698 254l-698 254l-698 -254zM1664 1024v-768q0 -35 -18 -65t-49 -47l-704 -384q-28 -16 -61 -16t-61 16l-704 384q-31 17 -49 47t-18 65v768q0 40 23 73t61 47l704 256q22 8 44 8t44 -8l704 -256q38 -14 61 -47t23 -73z
+" />
+    <glyph glyph-name="_408" unicode="&#xf1b3;" horiz-adv-x="2304" 
+d="M640 -96l384 192v314l-384 -164v-342zM576 358l404 173l-404 173l-404 -173zM1664 -96l384 192v314l-384 -164v-342zM1600 358l404 173l-404 173l-404 -173zM1152 651l384 165v266l-384 -164v-267zM1088 1030l441 189l-441 189l-441 -189zM2176 512v-416q0 -36 -19 -67
+t-52 -47l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-4 2 -7 4q-2 -2 -7 -4l-448 -224q-25 -14 -57 -14t-57 14l-448 224q-33 16 -52 47t-19 67v416q0 38 21.5 70t56.5 48l434 186v400q0 38 21.5 70t56.5 48l448 192q23 10 50 10t50 -10l448 -192q35 -16 56.5 -48t21.5 -70
+v-400l434 -186q36 -16 57 -48t21 -70z" />
+    <glyph glyph-name="_409" unicode="&#xf1b4;" horiz-adv-x="2048" 
+d="M1848 1197h-511v-124h511v124zM1596 771q-90 0 -146 -52.5t-62 -142.5h408q-18 195 -200 195zM1612 186q63 0 122 32t76 87h221q-100 -307 -427 -307q-214 0 -340.5 132t-126.5 347q0 208 130.5 345.5t336.5 137.5q138 0 240.5 -68t153 -179t50.5 -248q0 -17 -2 -47h-658
+q0 -111 57.5 -171.5t166.5 -60.5zM277 236h296q205 0 205 167q0 180 -199 180h-302v-347zM277 773h281q78 0 123.5 36.5t45.5 113.5q0 144 -190 144h-260v-294zM0 1282h594q87 0 155 -14t126.5 -47.5t90 -96.5t31.5 -154q0 -181 -172 -263q114 -32 172 -115t58 -204
+q0 -75 -24.5 -136.5t-66 -103.5t-98.5 -71t-121 -42t-134 -13h-611v1260z" />
+    <glyph glyph-name="_410" unicode="&#xf1b5;" 
+d="M1248 1408q119 0 203.5 -84.5t84.5 -203.5v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960zM499 1041h-371v-787h382q117 0 197 57.5t80 170.5q0 158 -143 200q107 52 107 164q0 57 -19.5 96.5
+t-56.5 60.5t-79 29.5t-97 8.5zM477 723h-176v184h163q119 0 119 -90q0 -94 -106 -94zM486 388h-185v217h189q124 0 124 -113q0 -104 -128 -104zM1136 356q-68 0 -104 38t-36 107h411q1 10 1 30q0 132 -74.5 220.5t-203.5 88.5q-128 0 -210 -86t-82 -216q0 -135 79 -217
+t213 -82q205 0 267 191h-138q-11 -34 -47.5 -54t-75.5 -20zM1126 722q113 0 124 -122h-254q4 56 39 89t91 33zM964 988h319v-77h-319v77z" />
+    <glyph glyph-name="_411" unicode="&#xf1b6;" horiz-adv-x="1792" 
+d="M1582 954q0 -101 -71.5 -172.5t-172.5 -71.5t-172.5 71.5t-71.5 172.5t71.5 172.5t172.5 71.5t172.5 -71.5t71.5 -172.5zM812 212q0 104 -73 177t-177 73q-27 0 -54 -6l104 -42q77 -31 109.5 -106.5t1.5 -151.5q-31 -77 -107 -109t-152 -1q-21 8 -62 24.5t-61 24.5
+q32 -60 91 -96.5t130 -36.5q104 0 177 73t73 177zM1642 953q0 126 -89.5 215.5t-215.5 89.5q-127 0 -216.5 -89.5t-89.5 -215.5q0 -127 89.5 -216t216.5 -89q126 0 215.5 89t89.5 216zM1792 953q0 -189 -133.5 -322t-321.5 -133l-437 -319q-12 -129 -109 -218t-229 -89
+q-121 0 -214 76t-118 192l-230 92v429l389 -157q79 48 173 48q13 0 35 -2l284 407q2 187 135.5 319t320.5 132q188 0 321.5 -133.5t133.5 -321.5z" />
+    <glyph glyph-name="_412" unicode="&#xf1b7;" 
+d="M1242 889q0 80 -57 136.5t-137 56.5t-136.5 -57t-56.5 -136q0 -80 56.5 -136.5t136.5 -56.5t137 56.5t57 136.5zM632 301q0 -83 -58 -140.5t-140 -57.5q-56 0 -103 29t-72 77q52 -20 98 -40q60 -24 120 1.5t85 86.5q24 60 -1.5 120t-86.5 84l-82 33q22 5 42 5
+q82 0 140 -57.5t58 -140.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v153l172 -69q20 -92 93.5 -152t168.5 -60q104 0 181 70t87 173l345 252q150 0 255.5 105.5t105.5 254.5q0 150 -105.5 255.5t-255.5 105.5
+q-148 0 -253 -104.5t-107 -252.5l-225 -322q-9 1 -28 1q-75 0 -137 -37l-297 119v468q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5zM1289 887q0 -100 -71 -170.5t-171 -70.5t-170.5 70.5t-70.5 170.5t70.5 171t170.5 71q101 0 171.5 -70.5t70.5 -171.5z
+" />
+    <glyph glyph-name="_413" unicode="&#xf1b8;" horiz-adv-x="1792" 
+d="M836 367l-15 -368l-2 -22l-420 29q-36 3 -67 31.5t-47 65.5q-11 27 -14.5 55t4 65t12 55t21.5 64t19 53q78 -12 509 -28zM449 953l180 -379l-147 92q-63 -72 -111.5 -144.5t-72.5 -125t-39.5 -94.5t-18.5 -63l-4 -21l-190 357q-17 26 -18 56t6 47l8 18q35 63 114 188
+l-140 86zM1680 436l-188 -359q-12 -29 -36.5 -46.5t-43.5 -20.5l-18 -4q-71 -7 -219 -12l8 -164l-230 367l211 362l7 -173q170 -16 283 -5t170 33zM895 1360q-47 -63 -265 -435l-317 187l-19 12l225 356q20 31 60 45t80 10q24 -2 48.5 -12t42 -21t41.5 -33t36 -34.5
+t36 -39.5t32 -35zM1550 1053l212 -363q18 -37 12.5 -76t-27.5 -74q-13 -20 -33 -37t-38 -28t-48.5 -22t-47 -16t-51.5 -14t-46 -12q-34 72 -265 436l313 195zM1407 1279l142 83l-220 -373l-419 20l151 86q-34 89 -75 166t-75.5 123.5t-64.5 80t-47 46.5l-17 13l405 -1
+q31 3 58 -10.5t39 -28.5l11 -15q39 -61 112 -190z" />
+    <glyph glyph-name="_414" unicode="&#xf1b9;" horiz-adv-x="2048" 
+d="M480 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM516 768h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5zM1888 448q0 66 -47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47t113 47t47 113zM2048 544v-384
+q0 -14 -9 -23t-23 -9h-96v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-1024v-128q0 -80 -56 -136t-136 -56t-136 56t-56 136v128h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5t179 63.5h768q98 0 179 -63.5t104 -157.5
+l105 -419h28q93 0 158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="_415" unicode="&#xf1ba;" horiz-adv-x="2048" 
+d="M1824 640q93 0 158.5 -65.5t65.5 -158.5v-384q0 -14 -9 -23t-23 -9h-96v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-1024v-64q0 -80 -56 -136t-136 -56t-136 56t-56 136v64h-96q-14 0 -23 9t-9 23v384q0 93 65.5 158.5t158.5 65.5h28l105 419q23 94 104 157.5
+t179 63.5h128v224q0 14 9 23t23 9h448q14 0 23 -9t9 -23v-224h128q98 0 179 -63.5t104 -157.5l105 -419h28zM320 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM516 640h1016l-89 357q-2 8 -14 17.5t-21 9.5h-768q-9 0 -21 -9.5t-14 -17.5z
+M1728 160q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47z" />
+    <glyph glyph-name="_416" unicode="&#xf1bb;" 
+d="M1504 64q0 -26 -19 -45t-45 -19h-462q1 -17 6 -87.5t5 -108.5q0 -25 -18 -42.5t-43 -17.5h-320q-25 0 -43 17.5t-18 42.5q0 38 5 108.5t6 87.5h-462q-26 0 -45 19t-19 45t19 45l402 403h-229q-26 0 -45 19t-19 45t19 45l402 403h-197q-26 0 -45 19t-19 45t19 45l384 384
+q19 19 45 19t45 -19l384 -384q19 -19 19 -45t-19 -45t-45 -19h-197l402 -403q19 -19 19 -45t-19 -45t-45 -19h-229l402 -403q19 -19 19 -45z" />
+    <glyph glyph-name="_417" unicode="&#xf1bc;" 
+d="M1127 326q0 32 -30 51q-193 115 -447 115q-133 0 -287 -34q-42 -9 -42 -52q0 -20 13.5 -34.5t35.5 -14.5q5 0 37 8q132 27 243 27q226 0 397 -103q19 -11 33 -11q19 0 33 13.5t14 34.5zM1223 541q0 40 -35 61q-237 141 -548 141q-153 0 -303 -42q-48 -13 -48 -64
+q0 -25 17.5 -42.5t42.5 -17.5q7 0 37 8q122 33 251 33q279 0 488 -124q24 -13 38 -13q25 0 42.5 17.5t17.5 42.5zM1331 789q0 47 -40 70q-126 73 -293 110.5t-343 37.5q-204 0 -364 -47q-23 -7 -38.5 -25.5t-15.5 -48.5q0 -31 20.5 -52t51.5 -21q11 0 40 8q133 37 307 37
+q159 0 309.5 -34t253.5 -95q21 -12 40 -12q29 0 50.5 20.5t21.5 51.5zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_418" unicode="&#xf1bd;" horiz-adv-x="1024" 
+d="M1024 1233l-303 -582l24 -31h279v-415h-507l-44 -30l-142 -273l-30 -30h-301v303l303 583l-24 30h-279v415h507l44 30l142 273l30 30h301v-303z" />
+    <glyph glyph-name="_419" unicode="&#xf1be;" horiz-adv-x="2304" 
+d="M784 164l16 241l-16 523q-1 10 -7.5 17t-16.5 7q-9 0 -16 -7t-7 -17l-14 -523l14 -241q1 -10 7.5 -16.5t15.5 -6.5q22 0 24 23zM1080 193l11 211l-12 586q0 16 -13 24q-8 5 -16 5t-16 -5q-13 -8 -13 -24l-1 -6l-10 -579q0 -1 11 -236v-1q0 -10 6 -17q9 -11 23 -11
+q11 0 20 9q9 7 9 20zM35 533l20 -128l-20 -126q-2 -9 -9 -9t-9 9l-17 126l17 128q2 9 9 9t9 -9zM121 612l26 -207l-26 -203q-2 -9 -10 -9q-9 0 -9 10l-23 202l23 207q0 9 9 9q8 0 10 -9zM401 159zM213 650l25 -245l-25 -237q0 -11 -11 -11q-10 0 -12 11l-21 237l21 245
+q2 12 12 12q11 0 11 -12zM307 657l23 -252l-23 -244q-2 -13 -14 -13q-13 0 -13 13l-21 244l21 252q0 13 13 13q12 0 14 -13zM401 639l21 -234l-21 -246q-2 -16 -16 -16q-6 0 -10.5 4.5t-4.5 11.5l-20 246l20 234q0 6 4.5 10.5t10.5 4.5q14 0 16 -15zM784 164zM495 785
+l21 -380l-21 -246q0 -7 -5 -12.5t-12 -5.5q-16 0 -18 18l-18 246l18 380q2 18 18 18q7 0 12 -5.5t5 -12.5zM589 871l19 -468l-19 -244q0 -8 -5.5 -13.5t-13.5 -5.5q-18 0 -20 19l-16 244l16 468q2 19 20 19q8 0 13.5 -5.5t5.5 -13.5zM687 911l18 -506l-18 -242
+q-2 -21 -22 -21q-19 0 -21 21l-16 242l16 506q0 9 6.5 15.5t14.5 6.5q9 0 15 -6.5t7 -15.5zM1079 169v0v0v0zM881 915l15 -510l-15 -239q0 -10 -7.5 -17.5t-17.5 -7.5t-17 7t-8 18l-14 239l14 510q0 11 7.5 18t17.5 7t17.5 -7t7.5 -18zM980 896l14 -492l-14 -236
+q0 -11 -8 -19t-19 -8t-19 8t-9 19l-12 236l12 492q1 12 9 20t19 8t18.5 -8t8.5 -20zM1192 404l-14 -231v0q0 -13 -9 -22t-22 -9t-22 9t-10 22l-6 114l-6 117l12 636v3q2 15 12 24q9 7 20 7q8 0 15 -5q14 -8 16 -26zM2304 423q0 -117 -83 -199.5t-200 -82.5h-786
+q-13 2 -22 11t-9 22v899q0 23 28 33q85 34 181 34q195 0 338 -131.5t160 -323.5q53 22 110 22q117 0 200 -83t83 -201z" />
+    <glyph glyph-name="uniF1C0" unicode="&#xf1c0;" 
+d="M768 768q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 0q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127
+t443 -43zM768 384q237 0 443 43t325 127v-170q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5t-103 128v170q119 -84 325 -127t443 -43zM768 1536q208 0 385 -34.5t280 -93.5t103 -128v-128q0 -69 -103 -128t-280 -93.5t-385 -34.5t-385 34.5t-280 93.5
+t-103 128v128q0 69 103 128t280 93.5t385 34.5z" />
+    <glyph glyph-name="uniF1C1" unicode="&#xf1c1;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M894 465q33 -26 84 -56q59 7 117 7q147 0 177 -49q16 -22 2 -52q0 -1 -1 -2l-2 -2v-1q-6 -38 -71 -38q-48 0 -115 20t-130 53q-221 -24 -392 -83q-153 -262 -242 -262q-15 0 -28 7l-24 12q-1 1 -6 5q-10 10 -6 36q9 40 56 91.5t132 96.5q14 9 23 -6q2 -2 2 -4q52 85 107 197
+q68 136 104 262q-24 82 -30.5 159.5t6.5 127.5q11 40 42 40h21h1q23 0 35 -15q18 -21 9 -68q-2 -6 -4 -8q1 -3 1 -8v-30q-2 -123 -14 -192q55 -164 146 -238zM318 54q52 24 137 158q-51 -40 -87.5 -84t-49.5 -74zM716 974q-15 -42 -2 -132q1 7 7 44q0 3 7 43q1 4 4 8
+q-1 1 -1 2q-1 2 -1 3q-1 22 -13 36q0 -1 -1 -2v-2zM592 313q135 54 284 81q-2 1 -13 9.5t-16 13.5q-76 67 -127 176q-27 -86 -83 -197q-30 -56 -45 -83zM1238 329q-24 24 -140 24q76 -28 124 -28q14 0 18 1q0 1 -2 3z" />
+    <glyph glyph-name="_422" unicode="&#xf1c2;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M233 768v-107h70l164 -661h159l128 485q7 20 10 46q2 16 2 24h4l3 -24q1 -3 3.5 -20t5.5 -26l128 -485h159l164 661h70v107h-300v-107h90l-99 -438q-5 -20 -7 -46l-2 -21h-4q0 3 -0.5 6.5t-1.5 8t-1 6.5q-1 5 -4 21t-5 25l-144 545h-114l-144 -545q-2 -9 -4.5 -24.5
+t-3.5 -21.5l-4 -21h-4l-2 21q-2 26 -7 46l-99 438h90v107h-300z" />
+    <glyph glyph-name="_423" unicode="&#xf1c3;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M429 106v-106h281v106h-75l103 161q5 7 10 16.5t7.5 13.5t3.5 4h2q1 -4 5 -10q2 -4 4.5 -7.5t6 -8t6.5 -8.5l107 -161h-76v-106h291v106h-68l-192 273l195 282h67v107h-279v-107h74l-103 -159q-4 -7 -10 -16.5t-9 -13.5l-2 -3h-2q-1 4 -5 10q-6 11 -17 23l-106 159h76v107
+h-290v-107h68l189 -272l-194 -283h-68z" />
+    <glyph glyph-name="_424" unicode="&#xf1c4;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M416 106v-106h327v106h-93v167h137q76 0 118 15q67 23 106.5 87t39.5 146q0 81 -37 141t-100 87q-48 19 -130 19h-368v-107h92v-555h-92zM769 386h-119v268h120q52 0 83 -18q56 -33 56 -115q0 -89 -62 -120q-31 -15 -78 -15z" />
+    <glyph glyph-name="_425" unicode="&#xf1c5;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M1280 320v-320h-1024v192l192 192l128 -128l384 384zM448 512q-80 0 -136 56t-56 136t56 136t136 56t136 -56t56 -136t-56 -136t-136 -56z" />
+    <glyph glyph-name="_426" unicode="&#xf1c6;" 
+d="M640 1152v128h-128v-128h128zM768 1024v128h-128v-128h128zM640 896v128h-128v-128h128zM768 768v128h-128v-128h128zM1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400
+v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-128v-128h-128v128h-512v-1536h1280zM781 593l107 -349q8 -27 8 -52q0 -83 -72.5 -137.5t-183.5 -54.5t-183.5 54.5t-72.5 137.5q0 25 8 52q21 63 120 396v128h128v-128h79
+q22 0 39 -13t23 -34zM640 128q53 0 90.5 19t37.5 45t-37.5 45t-90.5 19t-90.5 -19t-37.5 -45t37.5 -45t90.5 -19z" />
+    <glyph glyph-name="_427" unicode="&#xf1c7;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M620 686q20 -8 20 -30v-544q0 -22 -20 -30q-8 -2 -12 -2q-12 0 -23 9l-166 167h-131q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h131l166 167q16 15 35 7zM1037 -3q31 0 50 24q129 159 129 363t-129 363q-16 21 -43 24t-47 -14q-21 -17 -23.5 -43.5t14.5 -47.5
+q100 -123 100 -282t-100 -282q-17 -21 -14.5 -47.5t23.5 -42.5q18 -15 40 -15zM826 145q27 0 47 20q87 93 87 219t-87 219q-18 19 -45 20t-46 -17t-20 -44.5t18 -46.5q52 -57 52 -131t-52 -131q-19 -20 -18 -46.5t20 -44.5q20 -17 44 -17z" />
+    <glyph glyph-name="_428" unicode="&#xf1c8;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M768 768q52 0 90 -38t38 -90v-384q0 -52 -38 -90t-90 -38h-384q-52 0 -90 38t-38 90v384q0 52 38 90t90 38h384zM1260 766q20 -8 20 -30v-576q0 -22 -20 -30q-8 -2 -12 -2q-14 0 -23 9l-265 266v90l265 266q9 9 23 9q4 0 12 -2z" />
+    <glyph glyph-name="_429" unicode="&#xf1c9;" 
+d="M1468 1156q28 -28 48 -76t20 -88v-1152q0 -40 -28 -68t-68 -28h-1344q-40 0 -68 28t-28 68v1600q0 40 28 68t68 28h896q40 0 88 -20t76 -48zM1024 1400v-376h376q-10 29 -22 41l-313 313q-12 12 -41 22zM1408 -128v1024h-416q-40 0 -68 28t-28 68v416h-768v-1536h1280z
+M480 768q8 11 21 12.5t24 -6.5l51 -38q11 -8 12.5 -21t-6.5 -24l-182 -243l182 -243q8 -11 6.5 -24t-12.5 -21l-51 -38q-11 -8 -24 -6.5t-21 12.5l-226 301q-14 19 0 38zM1282 467q14 -19 0 -38l-226 -301q-8 -11 -21 -12.5t-24 6.5l-51 38q-11 8 -12.5 21t6.5 24l182 243
+l-182 243q-8 11 -6.5 24t12.5 21l51 38q11 8 24 6.5t21 -12.5zM662 6q-13 2 -20.5 13t-5.5 24l138 831q2 13 13 20.5t24 5.5l63 -10q13 -2 20.5 -13t5.5 -24l-138 -831q-2 -13 -13 -20.5t-24 -5.5z" />
+    <glyph glyph-name="_430" unicode="&#xf1ca;" 
+d="M1497 709v-198q-101 -23 -198 -23q-65 -136 -165.5 -271t-181.5 -215.5t-128 -106.5q-80 -45 -162 3q-28 17 -60.5 43.5t-85 83.5t-102.5 128.5t-107.5 184t-105.5 244t-91.5 314.5t-70.5 390h283q26 -218 70 -398.5t104.5 -317t121.5 -235.5t140 -195q169 169 287 406
+q-142 72 -223 220t-81 333q0 192 104 314.5t284 122.5q178 0 273 -105.5t95 -297.5q0 -159 -58 -286q-7 -1 -19.5 -3t-46 -2t-63 6t-62 25.5t-50.5 51.5q31 103 31 184q0 87 -29 132t-79 45q-53 0 -85 -49.5t-32 -140.5q0 -186 105 -293.5t267 -107.5q62 0 121 14z" />
+    <glyph glyph-name="_431" unicode="&#xf1cb;" horiz-adv-x="1792" 
+d="M216 367l603 -402v359l-334 223zM154 511l193 129l-193 129v-258zM973 -35l603 402l-269 180l-334 -223v-359zM896 458l272 182l-272 182l-272 -182zM485 733l334 223v359l-603 -402zM1445 640l193 -129v258zM1307 733l269 180l-603 402v-359zM1792 913v-546
+q0 -41 -34 -64l-819 -546q-21 -13 -43 -13t-43 13l-819 546q-34 23 -34 64v546q0 41 34 64l819 546q21 13 43 13t43 -13l819 -546q34 -23 34 -64z" />
+    <glyph glyph-name="_432" unicode="&#xf1cc;" horiz-adv-x="2048" 
+d="M1800 764q111 -46 179.5 -145.5t68.5 -221.5q0 -164 -118 -280.5t-285 -116.5q-4 0 -11.5 0.5t-10.5 0.5h-1209h-1h-2h-5q-170 10 -288 125.5t-118 280.5q0 110 55 203t147 147q-12 39 -12 82q0 115 82 196t199 81q95 0 172 -58q75 154 222.5 248t326.5 94
+q166 0 306 -80.5t221.5 -218.5t81.5 -301q0 -6 -0.5 -18t-0.5 -18zM468 498q0 -122 84 -193t208 -71q137 0 240 99q-16 20 -47.5 56.5t-43.5 50.5q-67 -65 -144 -65q-55 0 -93.5 33.5t-38.5 87.5q0 53 38.5 87t91.5 34q44 0 84.5 -21t73 -55t65 -75t69 -82t77 -75t97 -55
+t121.5 -21q121 0 204.5 71.5t83.5 190.5q0 121 -84 192t-207 71q-143 0 -241 -97l93 -108q66 64 142 64q52 0 92 -33t40 -84q0 -57 -37 -91.5t-94 -34.5q-43 0 -82.5 21t-72 55t-65.5 75t-69.5 82t-77.5 75t-96.5 55t-118.5 21q-122 0 -207 -70.5t-85 -189.5z" />
+    <glyph glyph-name="_433" unicode="&#xf1cd;" horiz-adv-x="1792" 
+d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM896 1408q-190 0 -361 -90l194 -194q82 28 167 28t167 -28l194 194q-171 90 -361 90zM218 279l194 194
+q-28 82 -28 167t28 167l-194 194q-90 -171 -90 -361t90 -361zM896 -128q190 0 361 90l-194 194q-82 -28 -167 -28t-167 28l-194 -194q171 -90 361 -90zM896 256q159 0 271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5
+t271.5 -112.5zM1380 473l194 -194q90 171 90 361t-90 361l-194 -194q28 -82 28 -167t-28 -167z" />
+    <glyph glyph-name="_434" unicode="&#xf1ce;" horiz-adv-x="1792" 
+d="M1760 640q0 -176 -68.5 -336t-184 -275.5t-275.5 -184t-336 -68.5t-336 68.5t-275.5 184t-184 275.5t-68.5 336q0 213 97 398.5t265 305.5t374 151v-228q-221 -45 -366.5 -221t-145.5 -406q0 -130 51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5
+t136.5 204t51 248.5q0 230 -145.5 406t-366.5 221v228q206 -31 374 -151t265 -305.5t97 -398.5z" />
+    <glyph glyph-name="uniF1D0" unicode="&#xf1d0;" horiz-adv-x="1792" 
+d="M19 662q8 217 116 406t305 318h5q0 -1 -1 -3q-8 -8 -28 -33.5t-52 -76.5t-60 -110.5t-44.5 -135.5t-14 -150.5t39 -157.5t108.5 -154q50 -50 102 -69.5t90.5 -11.5t69.5 23.5t47 32.5l16 16q39 51 53 116.5t6.5 122.5t-21 107t-26.5 80l-14 29q-10 25 -30.5 49.5t-43 41
+t-43.5 29.5t-35 19l-13 6l104 115q39 -17 78 -52t59 -61l19 -27q1 48 -18.5 103.5t-40.5 87.5l-20 31l161 183l160 -181q-33 -46 -52.5 -102.5t-22.5 -90.5l-4 -33q22 37 61.5 72.5t67.5 52.5l28 17l103 -115q-44 -14 -85 -50t-60 -65l-19 -29q-31 -56 -48 -133.5t-7 -170
+t57 -156.5q33 -45 77.5 -60.5t85 -5.5t76 26.5t57.5 33.5l21 16q60 53 96.5 115t48.5 121.5t10 121.5t-18 118t-37 107.5t-45.5 93t-45 72t-34.5 47.5l-13 17q-14 13 -7 13l10 -3q40 -29 62.5 -46t62 -50t64 -58t58.5 -65t55.5 -77t45.5 -88t38 -103t23.5 -117t10.5 -136
+q3 -259 -108 -465t-312 -321t-456 -115q-185 0 -351 74t-283.5 198t-184 293t-60.5 353z" />
+    <glyph glyph-name="uniF1D1" unicode="&#xf1d1;" horiz-adv-x="1792" 
+d="M874 -102v-66q-208 6 -385 109.5t-283 275.5l58 34q29 -49 73 -99l65 57q148 -168 368 -212l-17 -86q65 -12 121 -13zM276 428l-83 -28q22 -60 49 -112l-57 -33q-98 180 -98 385t98 385l57 -33q-30 -56 -49 -112l82 -28q-35 -100 -35 -212q0 -109 36 -212zM1528 251
+l58 -34q-106 -172 -283 -275.5t-385 -109.5v66q56 1 121 13l-17 86q220 44 368 212l65 -57q44 50 73 99zM1377 805l-233 -80q14 -42 14 -85t-14 -85l232 -80q-31 -92 -98 -169l-185 162q-57 -67 -147 -85l48 -241q-52 -10 -98 -10t-98 10l48 241q-90 18 -147 85l-185 -162
+q-67 77 -98 169l232 80q-14 42 -14 85t14 85l-233 80q33 93 99 169l185 -162q59 68 147 86l-48 240q44 10 98 10t98 -10l-48 -240q88 -18 147 -86l185 162q66 -76 99 -169zM874 1448v-66q-65 -2 -121 -13l17 -86q-220 -42 -368 -211l-65 56q-38 -42 -73 -98l-57 33
+q106 172 282 275.5t385 109.5zM1705 640q0 -205 -98 -385l-57 33q27 52 49 112l-83 28q36 103 36 212q0 112 -35 212l82 28q-19 56 -49 112l57 33q98 -180 98 -385zM1585 1063l-57 -33q-35 56 -73 98l-65 -56q-148 169 -368 211l17 86q-56 11 -121 13v66q209 -6 385 -109.5
+t282 -275.5zM1748 640q0 173 -67.5 331t-181.5 272t-272 181.5t-331 67.5t-331 -67.5t-272 -181.5t-181.5 -272t-67.5 -331t67.5 -331t181.5 -272t272 -181.5t331 -67.5t331 67.5t272 181.5t181.5 272t67.5 331zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71
+t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF1D2" unicode="&#xf1d2;" 
+d="M582 228q0 -66 -93 -66q-107 0 -107 63q0 64 98 64q102 0 102 -61zM546 694q0 -85 -74 -85q-77 0 -77 84q0 90 77 90q36 0 55 -25.5t19 -63.5zM712 769v125q-78 -29 -135 -29q-50 29 -110 29q-86 0 -145 -57t-59 -143q0 -50 29.5 -102t73.5 -67v-3q-38 -17 -38 -85
+q0 -53 41 -77v-3q-113 -37 -113 -139q0 -45 20 -78.5t54 -51t72 -25.5t81 -8q224 0 224 188q0 67 -48 99t-126 46q-27 5 -51.5 20.5t-24.5 39.5q0 44 49 52q77 15 122 70t45 134q0 24 -10 52q37 9 49 13zM771 350h137q-2 27 -2 82v387q0 46 2 69h-137q3 -23 3 -71v-392
+q0 -50 -3 -75zM1280 366v121q-30 -21 -68 -21q-53 0 -53 82v225h52q9 0 26.5 -1t26.5 -1v117h-105q0 82 3 102h-140q4 -24 4 -55v-47h-60v-117q36 3 37 3q3 0 11 -0.5t12 -0.5v-2h-2v-217q0 -37 2.5 -64t11.5 -56.5t24.5 -48.5t43.5 -31t66 -12q64 0 108 24zM924 1072
+q0 36 -24 63.5t-60 27.5t-60.5 -27t-24.5 -64q0 -36 25 -62.5t60 -26.5t59.5 27t24.5 62zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_438" unicode="&#xf1d3;" horiz-adv-x="1792" 
+d="M595 22q0 100 -165 100q-158 0 -158 -104q0 -101 172 -101q151 0 151 105zM536 777q0 61 -30 102t-89 41q-124 0 -124 -145q0 -135 124 -135q119 0 119 137zM805 1101v-202q-36 -12 -79 -22q16 -43 16 -84q0 -127 -73 -216.5t-197 -112.5q-40 -8 -59.5 -27t-19.5 -58
+q0 -31 22.5 -51.5t58 -32t78.5 -22t86 -25.5t78.5 -37.5t58 -64t22.5 -98.5q0 -304 -363 -304q-69 0 -130 12.5t-116 41t-87.5 82t-32.5 127.5q0 165 182 225v4q-67 41 -67 126q0 109 63 137v4q-72 24 -119.5 108.5t-47.5 165.5q0 139 95 231.5t235 92.5q96 0 178 -47
+q98 0 218 47zM1123 220h-222q4 45 4 134v609q0 94 -4 128h222q-4 -33 -4 -124v-613q0 -89 4 -134zM1724 442v-196q-71 -39 -174 -39q-62 0 -107 20t-70 50t-39.5 78t-18.5 92t-4 103v351h2v4q-7 0 -19 1t-18 1q-21 0 -59 -6v190h96v76q0 54 -6 89h227q-6 -41 -6 -165h171
+v-190q-15 0 -43.5 2t-42.5 2h-85v-365q0 -131 87 -131q61 0 109 33zM1148 1389q0 -58 -39 -101.5t-96 -43.5q-58 0 -98 43.5t-40 101.5q0 59 39.5 103t98.5 44q58 0 96.5 -44.5t38.5 -102.5z" />
+    <glyph glyph-name="_439" unicode="&#xf1d4;" 
+d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="uniF1D5" unicode="&#xf1d5;" horiz-adv-x="1280" 
+d="M842 964q0 -80 -57 -136.5t-136 -56.5q-60 0 -111 35q-62 -67 -115 -146q-247 -371 -202 -859q1 -22 -12.5 -38.5t-34.5 -18.5h-5q-20 0 -35 13.5t-17 33.5q-14 126 -3.5 247.5t29.5 217t54 186t69 155.5t74 125q61 90 132 165q-16 35 -16 77q0 80 56.5 136.5t136.5 56.5
+t136.5 -56.5t56.5 -136.5zM1223 953q0 -158 -78 -292t-212.5 -212t-292.5 -78q-64 0 -131 14q-21 5 -32.5 23.5t-6.5 39.5q5 20 23 31.5t39 7.5q51 -13 108 -13q97 0 186 38t153 102t102 153t38 186t-38 186t-102 153t-153 102t-186 38t-186 -38t-153 -102t-102 -153
+t-38 -186q0 -114 52 -218q10 -20 3.5 -40t-25.5 -30t-39.5 -3t-30.5 26q-64 123 -64 265q0 119 46.5 227t124.5 186t186 124t226 46q158 0 292.5 -78t212.5 -212.5t78 -292.5z" />
+    <glyph glyph-name="uniF1D6" unicode="&#xf1d6;" horiz-adv-x="1792" 
+d="M270 730q-8 19 -8 52q0 20 11 49t24 45q-1 22 7.5 53t22.5 43q0 139 92.5 288.5t217.5 209.5q139 66 324 66q133 0 266 -55q49 -21 90 -48t71 -56t55 -68t42 -74t32.5 -84.5t25.5 -89.5t22 -98l1 -5q55 -83 55 -150q0 -14 -9 -40t-9 -38q0 -1 1.5 -3.5t3.5 -5t2 -3.5
+q77 -114 120.5 -214.5t43.5 -208.5q0 -43 -19.5 -100t-55.5 -57q-9 0 -19.5 7.5t-19 17.5t-19 26t-16 26.5t-13.5 26t-9 17.5q-1 1 -3 1l-5 -4q-59 -154 -132 -223q20 -20 61.5 -38.5t69 -41.5t35.5 -65q-2 -4 -4 -16t-7 -18q-64 -97 -302 -97q-53 0 -110.5 9t-98 20
+t-104.5 30q-15 5 -23 7q-14 4 -46 4.5t-40 1.5q-41 -45 -127.5 -65t-168.5 -20q-35 0 -69 1.5t-93 9t-101 20.5t-74.5 40t-32.5 64q0 40 10 59.5t41 48.5q11 2 40.5 13t49.5 12q4 0 14 2q2 2 2 4l-2 3q-48 11 -108 105.5t-73 156.5l-5 3q-4 0 -12 -20q-18 -41 -54.5 -74.5
+t-77.5 -37.5h-1q-4 0 -6 4.5t-5 5.5q-23 54 -23 100q0 275 252 466z" />
+    <glyph glyph-name="uniF1D7" unicode="&#xf1d7;" horiz-adv-x="2048" 
+d="M580 1075q0 41 -25 66t-66 25q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 66 24.5t25 65.5zM1323 568q0 28 -25.5 50t-65.5 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q40 0 65.5 22t25.5 51zM1087 1075q0 41 -24.5 66t-65.5 25
+q-43 0 -76 -25.5t-33 -65.5q0 -39 33 -64.5t76 -25.5q41 0 65.5 24.5t24.5 65.5zM1722 568q0 28 -26 50t-65 22q-27 0 -49.5 -22.5t-22.5 -49.5q0 -28 22.5 -50.5t49.5 -22.5q39 0 65 22t26 51zM1456 965q-31 4 -70 4q-169 0 -311 -77t-223.5 -208.5t-81.5 -287.5
+q0 -78 23 -152q-35 -3 -68 -3q-26 0 -50 1.5t-55 6.5t-44.5 7t-54.5 10.5t-50 10.5l-253 -127l72 218q-290 203 -290 490q0 169 97.5 311t264 223.5t363.5 81.5q176 0 332.5 -66t262 -182.5t136.5 -260.5zM2048 404q0 -117 -68.5 -223.5t-185.5 -193.5l55 -181l-199 109
+q-150 -37 -218 -37q-169 0 -311 70.5t-223.5 191.5t-81.5 264t81.5 264t223.5 191.5t311 70.5q161 0 303 -70.5t227.5 -192t85.5 -263.5z" />
+    <glyph glyph-name="_443" unicode="&#xf1d8;" horiz-adv-x="1792" 
+d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-453 185l-242 -295q-18 -23 -49 -23q-13 0 -22 4q-19 7 -30.5 23.5t-11.5 36.5v349l864 1059l-1069 -925l-395 162q-37 14 -40 55q-2 40 32 59l1664 960q15 9 32 9q20 0 36 -11z" />
+    <glyph glyph-name="_444" unicode="&#xf1d9;" horiz-adv-x="1792" 
+d="M1764 1525q33 -24 27 -64l-256 -1536q-5 -29 -32 -45q-14 -8 -31 -8q-11 0 -24 5l-527 215l-298 -327q-18 -21 -47 -21q-14 0 -23 4q-19 7 -30 23.5t-11 36.5v452l-472 193q-37 14 -40 55q-3 39 32 59l1664 960q35 21 68 -2zM1422 26l221 1323l-1434 -827l336 -137
+l863 639l-478 -797z" />
+    <glyph glyph-name="_445" unicode="&#xf1da;" 
+d="M1536 640q0 -156 -61 -298t-164 -245t-245 -164t-298 -61q-172 0 -327 72.5t-264 204.5q-7 10 -6.5 22.5t8.5 20.5l137 138q10 9 25 9q16 -2 23 -12q73 -95 179 -147t225 -52q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5
+t-163.5 109.5t-198.5 40.5q-98 0 -188 -35.5t-160 -101.5l137 -138q31 -30 14 -69q-17 -40 -59 -40h-448q-26 0 -45 19t-19 45v448q0 42 40 59q39 17 69 -14l130 -129q107 101 244.5 156.5t284.5 55.5q156 0 298 -61t245 -164t164 -245t61 -298zM896 928v-448q0 -14 -9 -23
+t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v352q0 14 9 23t23 9h64q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="_446" unicode="&#xf1db;" 
+d="M768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103
+t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_447" unicode="&#xf1dc;" horiz-adv-x="1792" 
+d="M1682 -128q-44 0 -132.5 3.5t-133.5 3.5q-44 0 -132 -3.5t-132 -3.5q-24 0 -37 20.5t-13 45.5q0 31 17 46t39 17t51 7t45 15q33 21 33 140l-1 391q0 21 -1 31q-13 4 -50 4h-675q-38 0 -51 -4q-1 -10 -1 -31l-1 -371q0 -142 37 -164q16 -10 48 -13t57 -3.5t45 -15
+t20 -45.5q0 -26 -12.5 -48t-36.5 -22q-47 0 -139.5 3.5t-138.5 3.5q-43 0 -128 -3.5t-127 -3.5q-23 0 -35.5 21t-12.5 45q0 30 15.5 45t36 17.5t47.5 7.5t42 15q33 23 33 143l-1 57v813q0 3 0.5 26t0 36.5t-1.5 38.5t-3.5 42t-6.5 36.5t-11 31.5t-16 18q-15 10 -45 12t-53 2
+t-41 14t-18 45q0 26 12 48t36 22q46 0 138.5 -3.5t138.5 -3.5q42 0 126.5 3.5t126.5 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17 -43.5t-38.5 -14.5t-49.5 -4t-43 -13q-35 -21 -35 -160l1 -320q0 -21 1 -32q13 -3 39 -3h699q25 0 38 3q1 11 1 32l1 320q0 139 -35 160
+q-18 11 -58.5 12.5t-66 13t-25.5 49.5q0 26 12.5 48t37.5 22q44 0 132 -3.5t132 -3.5q43 0 129 3.5t129 3.5q25 0 37.5 -22t12.5 -48q0 -30 -17.5 -44t-40 -14.5t-51.5 -3t-44 -12.5q-35 -23 -35 -161l1 -943q0 -119 34 -140q16 -10 46 -13.5t53.5 -4.5t41.5 -15.5t18 -44.5
+q0 -26 -12 -48t-36 -22z" />
+    <glyph glyph-name="_448" unicode="&#xf1dd;" horiz-adv-x="1280" 
+d="M1278 1347v-73q0 -29 -18.5 -61t-42.5 -32q-50 0 -54 -1q-26 -6 -32 -31q-3 -11 -3 -64v-1152q0 -25 -18 -43t-43 -18h-108q-25 0 -43 18t-18 43v1218h-143v-1218q0 -25 -17.5 -43t-43.5 -18h-108q-26 0 -43.5 18t-17.5 43v496q-147 12 -245 59q-126 58 -192 179
+q-64 117 -64 259q0 166 88 286q88 118 209 159q111 37 417 37h479q25 0 43 -18t18 -43z" />
+    <glyph glyph-name="_449" unicode="&#xf1de;" 
+d="M352 128v-128h-352v128h352zM704 256q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM864 640v-128h-864v128h864zM224 1152v-128h-224v128h224zM1536 128v-128h-736v128h736zM576 1280q26 0 45 -19t19 -45v-256
+q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1216 768q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h256zM1536 640v-128h-224v128h224zM1536 1152v-128h-864v128h864z" />
+    <glyph glyph-name="uniF1E0" unicode="&#xf1e0;" 
+d="M1216 512q133 0 226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5t-226.5 93.5t-93.5 226.5q0 12 2 34l-360 180q-92 -86 -218 -86q-133 0 -226.5 93.5t-93.5 226.5t93.5 226.5t226.5 93.5q126 0 218 -86l360 180q-2 22 -2 34q0 133 93.5 226.5t226.5 93.5
+t226.5 -93.5t93.5 -226.5t-93.5 -226.5t-226.5 -93.5q-126 0 -218 86l-360 -180q2 -22 2 -34t-2 -34l360 -180q92 86 218 86z" />
+    <glyph glyph-name="_451" unicode="&#xf1e1;" 
+d="M1280 341q0 88 -62.5 151t-150.5 63q-84 0 -145 -58l-241 120q2 16 2 23t-2 23l241 120q61 -58 145 -58q88 0 150.5 63t62.5 151t-62.5 150.5t-150.5 62.5t-151 -62.5t-63 -150.5q0 -7 2 -23l-241 -120q-62 57 -145 57q-88 0 -150.5 -62.5t-62.5 -150.5t62.5 -150.5
+t150.5 -62.5q83 0 145 57l241 -120q-2 -16 -2 -23q0 -88 63 -150.5t151 -62.5t150.5 62.5t62.5 150.5zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_452" unicode="&#xf1e2;" horiz-adv-x="1792" 
+d="M571 947q-10 25 -34 35t-49 0q-108 -44 -191 -127t-127 -191q-10 -25 0 -49t35 -34q13 -5 24 -5q42 0 60 40q34 84 98.5 148.5t148.5 98.5q25 11 35 35t0 49zM1513 1303l46 -46l-244 -243l68 -68q19 -19 19 -45.5t-19 -45.5l-64 -64q89 -161 89 -343q0 -143 -55.5 -273.5
+t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5q182 0 343 -89l64 64q19 19 45.5 19t45.5 -19l68 -68zM1521 1359q-10 -10 -22 -10q-13 0 -23 10l-91 90q-9 10 -9 23t9 23q10 9 23 9t23 -9l90 -91
+q10 -9 10 -22.5t-10 -22.5zM1751 1129q-11 -9 -23 -9t-23 9l-90 91q-10 9 -10 22.5t10 22.5q9 10 22.5 10t22.5 -10l91 -90q9 -10 9 -23t-9 -23zM1792 1312q0 -14 -9 -23t-23 -9h-96q-14 0 -23 9t-9 23t9 23t23 9h96q14 0 23 -9t9 -23zM1600 1504v-96q0 -14 -9 -23t-23 -9
+t-23 9t-9 23v96q0 14 9 23t23 9t23 -9t9 -23zM1751 1449l-91 -90q-10 -10 -22 -10q-13 0 -23 10q-10 9 -10 22.5t10 22.5l90 91q10 9 23 9t23 -9q9 -10 9 -23t-9 -23z" />
+    <glyph glyph-name="_453" unicode="&#xf1e3;" horiz-adv-x="1792" 
+d="M609 720l287 208l287 -208l-109 -336h-355zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM1515 186q149 203 149 454v3l-102 -89l-240 224l63 323
+l134 -12q-150 206 -389 282l53 -124l-287 -159l-287 159l53 124q-239 -76 -389 -282l135 12l62 -323l-240 -224l-102 89v-3q0 -251 149 -454l30 132l326 -40l139 -298l-116 -69q117 -39 240 -39t240 39l-116 69l139 298l326 40z" />
+    <glyph glyph-name="_454" unicode="&#xf1e4;" horiz-adv-x="1792" 
+d="M448 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM256 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM832 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23
+v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM640 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM66 768q-28 0 -47 19t-19 46v129h514v-129q0 -27 -19 -46t-46 -19h-383zM1216 224v-192q0 -14 -9 -23t-23 -9h-192
+q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1024 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1600 224v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23
+zM1408 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 1016v-13h-514v10q0 104 -382 102q-382 -1 -382 -102v-10h-514v13q0 17 8.5 43t34 64t65.5 75.5t110.5 76t160 67.5t224 47.5t293.5 18.5t293 -18.5t224 -47.5
+t160.5 -67.5t110.5 -76t65.5 -75.5t34 -64t8.5 -43zM1792 608v-192q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v192q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 962v-129q0 -27 -19 -46t-46 -19h-384q-27 0 -46 19t-19 46v129h514z" />
+    <glyph glyph-name="_455" unicode="&#xf1e5;" horiz-adv-x="1792" 
+d="M704 1216v-768q0 -26 -19 -45t-45 -19v-576q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v512l249 873q7 23 31 23h424zM1024 1216v-704h-256v704h256zM1792 320v-512q0 -26 -19 -45t-45 -19h-512q-26 0 -45 19t-19 45v576q-26 0 -45 19t-19 45v768h424q24 0 31 -23z
+M736 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23zM1408 1504v-224h-352v224q0 14 9 23t23 9h288q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="_456" unicode="&#xf1e6;" horiz-adv-x="1792" 
+d="M1755 1083q37 -38 37 -90.5t-37 -90.5l-401 -400l150 -150l-160 -160q-163 -163 -389.5 -186.5t-411.5 100.5l-362 -362h-181v181l362 362q-124 185 -100.5 411.5t186.5 389.5l160 160l150 -150l400 401q38 37 91 37t90 -37t37 -90.5t-37 -90.5l-400 -401l234 -234
+l401 400q38 37 91 37t90 -37z" />
+    <glyph glyph-name="_457" unicode="&#xf1e7;" horiz-adv-x="1792" 
+d="M873 796q0 -83 -63.5 -142.5t-152.5 -59.5t-152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59t152.5 -59t63.5 -143zM1375 796q0 -83 -63 -142.5t-153 -59.5q-89 0 -152.5 59.5t-63.5 142.5q0 84 63.5 143t152.5 59q90 0 153 -59t63 -143zM1600 616v667q0 87 -32 123.5
+t-111 36.5h-1112q-83 0 -112.5 -34t-29.5 -126v-673q43 -23 88.5 -40t81 -28t81 -18.5t71 -11t70 -4t58.5 -0.5t56.5 2t44.5 2q68 1 95 -27q6 -6 10 -9q26 -25 61 -51q7 91 118 87q5 0 36.5 -1.5t43 -2t45.5 -1t53 1t54.5 4.5t61 8.5t62 13.5t67 19.5t67.5 27t72 34.5z
+M1763 621q-121 -149 -372 -252q84 -285 -23 -465q-66 -113 -183 -148q-104 -32 -182 15q-86 51 -82 164l-1 326v1q-8 2 -24.5 6t-23.5 5l-1 -338q4 -114 -83 -164q-79 -47 -183 -15q-117 36 -182 150q-105 180 -22 463q-251 103 -372 252q-25 37 -4 63t60 -1q4 -2 11.5 -7
+t10.5 -8v694q0 72 47 123t114 51h1257q67 0 114 -51t47 -123v-694l21 15q39 27 60 1t-4 -63z" />
+    <glyph glyph-name="_458" unicode="&#xf1e8;" horiz-adv-x="1792" 
+d="M896 1102v-434h-145v434h145zM1294 1102v-434h-145v434h145zM1294 342l253 254v795h-1194v-1049h326v-217l217 217h398zM1692 1536v-1013l-434 -434h-326l-217 -217h-217v217h-398v1158l109 289h1483z" />
+    <glyph glyph-name="_459" unicode="&#xf1e9;" 
+d="M773 217v-127q-1 -292 -6 -305q-12 -32 -51 -40q-54 -9 -181.5 38t-162.5 89q-13 15 -17 36q-1 12 4 26q4 10 34 47t181 216q1 0 60 70q15 19 39.5 24.5t49.5 -3.5q24 -10 37.5 -29t12.5 -42zM624 468q-3 -55 -52 -70l-120 -39q-275 -88 -292 -88q-35 2 -54 36
+q-12 25 -17 75q-8 76 1 166.5t30 124.5t56 32q13 0 202 -77q71 -29 115 -47l84 -34q23 -9 35.5 -30.5t11.5 -48.5zM1450 171q-7 -54 -91.5 -161t-135.5 -127q-37 -14 -63 7q-14 10 -184 287l-47 77q-14 21 -11.5 46t19.5 46q35 43 83 26q1 -1 119 -40q203 -66 242 -79.5
+t47 -20.5q28 -22 22 -61zM778 803q5 -102 -54 -122q-58 -17 -114 71l-378 598q-8 35 19 62q41 43 207.5 89.5t224.5 31.5q40 -10 49 -45q3 -18 22 -305.5t24 -379.5zM1440 695q3 -39 -26 -59q-15 -10 -329 -86q-67 -15 -91 -23l1 2q-23 -6 -46 4t-37 32q-30 47 0 87
+q1 1 75 102q125 171 150 204t34 39q28 19 65 2q48 -23 123 -133.5t81 -167.5v-3z" />
+    <glyph glyph-name="_460" unicode="&#xf1ea;" horiz-adv-x="2048" 
+d="M1024 1024h-384v-384h384v384zM1152 384v-128h-640v128h640zM1152 1152v-640h-640v640h640zM1792 384v-128h-512v128h512zM1792 640v-128h-512v128h512zM1792 896v-128h-512v128h512zM1792 1152v-128h-512v128h512zM256 192v960h-128v-960q0 -26 19 -45t45 -19t45 19
+t19 45zM1920 192v1088h-1536v-1088q0 -33 -11 -64h1483q26 0 45 19t19 45zM2048 1408v-1216q0 -80 -56 -136t-136 -56h-1664q-80 0 -136 56t-56 136v1088h256v128h1792z" />
+    <glyph glyph-name="_461" unicode="&#xf1eb;" horiz-adv-x="2048" 
+d="M1024 13q-20 0 -93 73.5t-73 93.5q0 32 62.5 54t103.5 22t103.5 -22t62.5 -54q0 -20 -73 -93.5t-93 -73.5zM1294 284q-2 0 -40 25t-101.5 50t-128.5 25t-128.5 -25t-101 -50t-40.5 -25q-18 0 -93.5 75t-75.5 93q0 13 10 23q78 77 196 121t233 44t233 -44t196 -121
+q10 -10 10 -23q0 -18 -75.5 -93t-93.5 -75zM1567 556q-11 0 -23 8q-136 105 -252 154.5t-268 49.5q-85 0 -170.5 -22t-149 -53t-113.5 -62t-79 -53t-31 -22q-17 0 -92 75t-75 93q0 12 10 22q132 132 320 205t380 73t380 -73t320 -205q10 -10 10 -22q0 -18 -75 -93t-92 -75z
+M1838 827q-11 0 -22 9q-179 157 -371.5 236.5t-420.5 79.5t-420.5 -79.5t-371.5 -236.5q-11 -9 -22 -9q-17 0 -92.5 75t-75.5 93q0 13 10 23q187 186 445 288t527 102t527 -102t445 -288q10 -10 10 -23q0 -18 -75.5 -93t-92.5 -75z" />
+    <glyph glyph-name="_462" unicode="&#xf1ec;" horiz-adv-x="1792" 
+d="M384 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM384 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5
+t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 0q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5
+t37.5 90.5zM384 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1152 384q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM768 768q0 53 -37.5 90.5t-90.5 37.5
+t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1536 0v384q0 52 -38 90t-90 38t-90 -38t-38 -90v-384q0 -52 38 -90t90 -38t90 38t38 90zM1152 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z
+M1536 1088v256q0 26 -19 45t-45 19h-1280q-26 0 -45 -19t-19 -45v-256q0 -26 19 -45t45 -19h1280q26 0 45 19t19 45zM1536 768q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1664 1408v-1536q0 -52 -38 -90t-90 -38
+h-1408q-52 0 -90 38t-38 90v1536q0 52 38 90t90 38h1408q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_463" unicode="&#xf1ed;" 
+d="M1519 890q18 -84 -4 -204q-87 -444 -565 -444h-44q-25 0 -44 -16.5t-24 -42.5l-4 -19l-55 -346l-2 -15q-5 -26 -24.5 -42.5t-44.5 -16.5h-251q-21 0 -33 15t-9 36q9 56 26.5 168t26.5 168t27 167.5t27 167.5q5 37 43 37h131q133 -2 236 21q175 39 287 144q102 95 155 246
+q24 70 35 133q1 6 2.5 7.5t3.5 1t6 -3.5q79 -59 98 -162zM1347 1172q0 -107 -46 -236q-80 -233 -302 -315q-113 -40 -252 -42q0 -1 -90 -1l-90 1q-100 0 -118 -96q-2 -8 -85 -530q-1 -10 -12 -10h-295q-22 0 -36.5 16.5t-11.5 38.5l232 1471q5 29 27.5 48t51.5 19h598
+q34 0 97.5 -13t111.5 -32q107 -41 163.5 -123t56.5 -196z" />
+    <glyph glyph-name="_464" unicode="&#xf1ee;" horiz-adv-x="1792" 
+d="M441 864q33 0 52 -26q266 -364 362 -774h-446q-127 441 -367 749q-12 16 -3 33.5t29 17.5h373zM1000 507q-49 -199 -125 -393q-79 310 -256 594q40 221 44 449q211 -340 337 -650zM1099 1216q235 -324 384.5 -698.5t184.5 -773.5h-451q-41 665 -553 1472h435zM1792 640
+q0 -424 -101 -812q-67 560 -359 1083q-25 301 -106 584q-4 16 5.5 28.5t25.5 12.5h359q21 0 38.5 -13t22.5 -33q115 -409 115 -850z" />
+    <glyph glyph-name="uniF1F0" unicode="&#xf1f0;" horiz-adv-x="2304" 
+d="M1975 546h-138q14 37 66 179l3 9q4 10 10 26t9 26l12 -55zM531 611l-58 295q-11 54 -75 54h-268l-2 -13q311 -79 403 -336zM710 960l-162 -438l-17 89q-26 70 -85 129.5t-131 88.5l135 -510h175l261 641h-176zM849 318h166l104 642h-166zM1617 944q-69 27 -149 27
+q-123 0 -201 -59t-79 -153q-1 -102 145 -174q48 -23 67 -41t19 -39q0 -30 -30 -46t-69 -16q-86 0 -156 33l-22 11l-23 -144q74 -34 185 -34q130 -1 208.5 59t80.5 160q0 106 -140 174q-49 25 -71 42t-22 38q0 22 24.5 38.5t70.5 16.5q70 1 124 -24l15 -8zM2042 960h-128
+q-65 0 -87 -54l-246 -588h174l35 96h212q5 -22 20 -96h154zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_466" unicode="&#xf1f1;" horiz-adv-x="2304" 
+d="M1119 1195q-128 85 -281 85q-103 0 -197.5 -40.5t-162.5 -108.5t-108.5 -162t-40.5 -197q0 -104 40.5 -198t108.5 -162t162 -108.5t198 -40.5q153 0 281 85q-131 107 -178 265.5t0.5 316.5t177.5 265zM1152 1171q-126 -99 -172 -249.5t-0.5 -300.5t172.5 -249
+q127 99 172.5 249t-0.5 300.5t-172 249.5zM1185 1195q130 -107 177.5 -265.5t0.5 -317t-178 -264.5q128 -85 281 -85q104 0 198 40.5t162 108.5t108.5 162t40.5 198q0 103 -40.5 197t-108.5 162t-162.5 108.5t-197.5 40.5q-153 0 -281 -85zM1926 473h7v3h-17v-3h7v-17h3v17z
+M1955 456h4v20h-5l-6 -13l-6 13h-5v-20h3v15l6 -13h4l5 13v-15zM1947 16v-2h-2h-3v3h3h2v-1zM1947 7h3l-4 5h2l1 1q1 1 1 3t-1 3l-1 1h-3h-6v-13h3v5h1zM685 75q0 19 11 31t30 12q18 0 29 -12.5t11 -30.5q0 -19 -11 -31t-29 -12q-19 0 -30 12t-11 31zM1158 119q30 0 35 -32
+h-70q5 32 35 32zM1514 75q0 19 11 31t29 12t29.5 -12.5t11.5 -30.5q0 -19 -11 -31t-30 -12q-18 0 -29 12t-11 31zM1786 75q0 18 11.5 30.5t29.5 12.5t29.5 -12.5t11.5 -30.5q0 -19 -11.5 -31t-29.5 -12t-29.5 12.5t-11.5 30.5zM1944 3q-2 0 -4 1q-1 0 -3 2t-2 3q-1 2 -1 4
+q0 3 1 4q0 2 2 4l1 1q2 0 2 1q2 1 4 1q3 0 4 -1l4 -2l2 -4v-1q1 -2 1 -3l-1 -1v-3t-1 -1l-1 -2q-2 -2 -4 -2q-1 -1 -4 -1zM599 7h30v85q0 24 -14.5 38.5t-39.5 15.5q-32 0 -47 -24q-14 24 -45 24q-24 0 -39 -20v16h-30v-135h30v75q0 36 33 36q30 0 30 -36v-75h29v75
+q0 36 33 36q30 0 30 -36v-75zM765 7h29v68v67h-29v-16q-17 20 -43 20q-29 0 -48 -20t-19 -51t19 -51t48 -20q28 0 43 20v-17zM943 48q0 34 -47 40l-14 2q-23 4 -23 14q0 15 25 15q23 0 43 -11l12 24q-22 14 -55 14q-26 0 -41 -12t-15 -32q0 -33 47 -39l13 -2q24 -4 24 -14
+q0 -17 -31 -17q-25 0 -45 14l-13 -23q25 -17 58 -17q29 0 45.5 12t16.5 32zM1073 14l-8 25q-13 -7 -26 -7q-19 0 -19 22v61h48v27h-48v41h-30v-41h-28v-27h28v-61q0 -50 47 -50q21 0 36 10zM1159 146q-29 0 -48 -20t-19 -51q0 -32 19.5 -51.5t49.5 -19.5q33 0 55 19l-14 22
+q-18 -15 -39 -15q-34 0 -41 33h101v12q0 32 -18 51.5t-46 19.5zM1318 146q-23 0 -35 -20v16h-30v-135h30v76q0 35 29 35q10 0 18 -4l9 28q-9 4 -21 4zM1348 75q0 -31 19.5 -51t52.5 -20q29 0 48 16l-14 24q-18 -13 -35 -12q-18 0 -29.5 12t-11.5 31t11.5 31t29.5 12
+q19 0 35 -12l14 24q-20 16 -48 16q-33 0 -52.5 -20t-19.5 -51zM1593 7h30v68v67h-30v-16q-15 20 -42 20q-29 0 -48.5 -20t-19.5 -51t19.5 -51t48.5 -20q28 0 42 20v-17zM1726 146q-23 0 -35 -20v16h-29v-135h29v76q0 35 29 35q10 0 18 -4l9 28q-8 4 -21 4zM1866 7h29v68v122
+h-29v-71q-15 20 -43 20t-47.5 -20.5t-19.5 -50.5t19.5 -50.5t47.5 -20.5q29 0 43 20v-17zM1944 27l-2 -1h-3q-2 -1 -4 -3q-3 -1 -3 -4q-1 -2 -1 -6q0 -3 1 -5q0 -2 3 -4q2 -2 4 -3t5 -1q4 0 6 1q0 1 2 2l2 1q1 1 3 4q1 2 1 5q0 4 -1 6q-1 1 -3 4q0 1 -2 2l-2 1q-1 0 -3 0.5
+t-3 0.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_467" unicode="&#xf1f2;" horiz-adv-x="2304" 
+d="M313 759q0 -51 -36 -84q-29 -26 -89 -26h-17v220h17q61 0 89 -27q36 -31 36 -83zM2089 824q0 -52 -64 -52h-19v101h20q63 0 63 -49zM380 759q0 74 -50 120.5t-129 46.5h-95v-333h95q74 0 119 38q60 51 60 128zM410 593h65v333h-65v-333zM730 694q0 40 -20.5 62t-75.5 42
+q-29 10 -39.5 19t-10.5 23q0 16 13.5 26.5t34.5 10.5q29 0 53 -27l34 44q-41 37 -98 37q-44 0 -74 -27.5t-30 -67.5q0 -35 18 -55.5t64 -36.5q37 -13 45 -19q19 -12 19 -34q0 -20 -14 -33.5t-36 -13.5q-48 0 -71 44l-42 -40q44 -64 115 -64q51 0 83 30.5t32 79.5zM1008 604
+v77q-37 -37 -78 -37q-49 0 -80.5 32.5t-31.5 82.5q0 48 31.5 81.5t77.5 33.5q43 0 81 -38v77q-40 20 -80 20q-74 0 -125.5 -50.5t-51.5 -123.5t51 -123.5t125 -50.5q42 0 81 19zM2240 0v527q-65 -40 -144.5 -84t-237.5 -117t-329.5 -137.5t-417.5 -134.5t-504 -118h1569
+q26 0 45 19t19 45zM1389 757q0 75 -53 128t-128 53t-128 -53t-53 -128t53 -128t128 -53t128 53t53 128zM1541 584l144 342h-71l-90 -224l-89 224h-71l142 -342h35zM1714 593h184v56h-119v90h115v56h-115v74h119v57h-184v-333zM2105 593h80l-105 140q76 16 76 94q0 47 -31 73
+t-87 26h-97v-333h65v133h9zM2304 1274v-1268q0 -56 -38.5 -95t-93.5 -39h-2040q-55 0 -93.5 39t-38.5 95v1268q0 56 38.5 95t93.5 39h2040q55 0 93.5 -39t38.5 -95z" />
+    <glyph glyph-name="f1f3" unicode="&#xf1f3;" horiz-adv-x="2304" 
+d="M119 854h89l-45 108zM740 328l74 79l-70 79h-163v-49h142v-55h-142v-54h159zM898 406l99 -110v217zM1186 453q0 33 -40 33h-84v-69h83q41 0 41 36zM1475 457q0 29 -42 29h-82v-61h81q43 0 43 32zM1197 923q0 29 -42 29h-82v-60h81q43 0 43 31zM1656 854h89l-44 108z
+M699 1009v-271h-66v212l-94 -212h-57l-94 212v-212h-132l-25 60h-135l-25 -60h-70l116 271h96l110 -257v257h106l85 -184l77 184h108zM1255 453q0 -20 -5.5 -35t-14 -25t-22.5 -16.5t-26 -10t-31.5 -4.5t-31.5 -1t-32.5 0.5t-29.5 0.5v-91h-126l-80 90l-83 -90h-256v271h260
+l80 -89l82 89h207q109 0 109 -89zM964 794v-56h-217v271h217v-57h-152v-49h148v-55h-148v-54h152zM2304 235v-229q0 -55 -38.5 -94.5t-93.5 -39.5h-2040q-55 0 -93.5 39.5t-38.5 94.5v678h111l25 61h55l25 -61h218v46l19 -46h113l20 47v-47h541v99l10 1q10 0 10 -14v-86h279
+v23q23 -12 55 -18t52.5 -6.5t63 0.5t51.5 1l25 61h56l25 -61h227v58l34 -58h182v378h-180v-44l-25 44h-185v-44l-23 44h-249q-69 0 -109 -22v22h-172v-22q-24 22 -73 22h-628l-43 -97l-43 97h-198v-44l-22 44h-169l-78 -179v391q0 55 38.5 94.5t93.5 39.5h2040
+q55 0 93.5 -39.5t38.5 -94.5v-678h-120q-51 0 -81 -22v22h-177q-55 0 -78 -22v22h-316v-22q-31 22 -87 22h-209v-22q-23 22 -91 22h-234l-54 -58l-50 58h-349v-378h343l55 59l52 -59h211v89h21q59 0 90 13v-102h174v99h8q8 0 10 -2t2 -10v-87h529q57 0 88 24v-24h168
+q60 0 95 17zM1546 469q0 -23 -12 -43t-34 -29q25 -9 34 -26t9 -46v-54h-65v45q0 33 -12 43.5t-46 10.5h-69v-99h-65v271h154q48 0 77 -15t29 -58zM1269 936q0 -24 -12.5 -44t-33.5 -29q26 -9 34.5 -25.5t8.5 -46.5v-53h-65q0 9 0.5 26.5t0 25t-3 18.5t-8.5 16t-17.5 8.5
+t-29.5 3.5h-70v-98h-64v271l153 -1q49 0 78 -14.5t29 -57.5zM1798 327v-56h-216v271h216v-56h-151v-49h148v-55h-148v-54zM1372 1009v-271h-66v271h66zM2065 357q0 -86 -102 -86h-126v58h126q34 0 34 25q0 16 -17 21t-41.5 5t-49.5 3.5t-42 22.5t-17 55q0 39 26 60t66 21
+h130v-57h-119q-36 0 -36 -25q0 -16 17.5 -20.5t42 -4t49 -2.5t42 -21.5t17.5 -54.5zM2304 407v-101q-24 -35 -88 -35h-125v58h125q33 0 33 25q0 13 -12.5 19t-31 5.5t-40 2t-40 8t-31 24t-12.5 48.5q0 39 26.5 60t66.5 21h129v-57h-118q-36 0 -36 -25q0 -20 29 -22t68.5 -5
+t56.5 -26zM2139 1008v-270h-92l-122 203v-203h-132l-26 60h-134l-25 -60h-75q-129 0 -129 133q0 138 133 138h63v-59q-7 0 -28 1t-28.5 0.5t-23 -2t-21.5 -6.5t-14.5 -13.5t-11.5 -23t-3 -33.5q0 -38 13.5 -58t49.5 -20h29l92 213h97l109 -256v256h99l114 -188v188h66z" />
+    <glyph glyph-name="_469" unicode="&#xf1f4;" horiz-adv-x="2304" 
+d="M745 630q0 -37 -25.5 -61.5t-62.5 -24.5q-29 0 -46.5 16t-17.5 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM1530 779q0 -42 -22 -57t-66 -15l-32 -1l17 107q2 11 13 11h18q22 0 35 -2t25 -12.5t12 -30.5zM1881 630q0 -36 -25.5 -61t-61.5 -25q-29 0 -47 16
+t-18 44q0 37 25 62.5t62 25.5q28 0 46.5 -16.5t18.5 -45.5zM513 801q0 59 -38.5 85.5t-100.5 26.5h-160q-19 0 -21 -19l-65 -408q-1 -6 3 -11t10 -5h76q20 0 22 19l18 110q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM822 489l41 261q1 6 -3 11t-10 5h-76
+q-14 0 -17 -33q-27 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q28 0 58 12t48 32q-4 -12 -4 -21q0 -16 13 -16h69q19 0 22 19zM1269 752q0 5 -4 9.5t-9 4.5h-77q-11 0 -18 -10l-106 -156l-44 150q-5 16 -22 16h-75q-5 0 -9 -4.5t-4 -9.5q0 -2 19.5 -59
+t42 -123t23.5 -70q-82 -112 -82 -120q0 -13 13 -13h77q11 0 18 10l255 368q2 2 2 7zM1649 801q0 59 -38.5 85.5t-100.5 26.5h-159q-20 0 -22 -19l-65 -408q-1 -6 3 -11t10 -5h82q12 0 16 13l18 116q1 8 7 13t15 6.5t17 1.5t19 -1t14 -1q86 0 135 48.5t49 134.5zM1958 489
+l41 261q1 6 -3 11t-10 5h-76q-14 0 -17 -33q-26 40 -95 40q-72 0 -122.5 -54t-50.5 -127q0 -59 34.5 -94t92.5 -35q29 0 59 12t47 32q0 -1 -2 -9t-2 -12q0 -16 13 -16h69q19 0 22 19zM2176 898v1q0 14 -13 14h-74q-11 0 -13 -11l-65 -416l-1 -2q0 -5 4 -9.5t10 -4.5h66
+q19 0 21 19zM392 764q-5 -35 -26 -46t-60 -11l-33 -1l17 107q2 11 13 11h19q40 0 58 -11.5t12 -48.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_470" unicode="&#xf1f5;" horiz-adv-x="2304" 
+d="M1597 633q0 -69 -21 -106q-19 -35 -52 -35q-23 0 -41 9v224q29 30 57 30q57 0 57 -122zM2035 669h-110q6 98 56 98q51 0 54 -98zM476 534q0 59 -33 91.5t-101 57.5q-36 13 -52 24t-16 25q0 26 38 26q58 0 124 -33l18 112q-67 32 -149 32q-77 0 -123 -38q-48 -39 -48 -109
+q0 -58 32.5 -90.5t99.5 -56.5q39 -14 54.5 -25.5t15.5 -27.5q0 -31 -48 -31q-29 0 -70 12.5t-72 30.5l-18 -113q72 -41 168 -41q81 0 129 37q51 41 51 117zM771 749l19 111h-96v135l-129 -21l-18 -114l-46 -8l-17 -103h62v-219q0 -84 44 -120q38 -30 111 -30q32 0 79 11v118
+q-32 -7 -44 -7q-42 0 -42 50v197h77zM1087 724v139q-15 3 -28 3q-32 0 -55.5 -16t-33.5 -46l-10 56h-131v-471h150v306q26 31 82 31q16 0 26 -2zM1124 389h150v471h-150v-471zM1746 638q0 122 -45 179q-40 52 -111 52q-64 0 -117 -56l-8 47h-132v-645l150 25v151
+q36 -11 68 -11q83 0 134 56q61 65 61 202zM1278 986q0 33 -23 56t-56 23t-56 -23t-23 -56t23 -56.5t56 -23.5t56 23.5t23 56.5zM2176 629q0 113 -48 176q-50 64 -144 64q-96 0 -151.5 -66t-55.5 -180q0 -128 63 -188q55 -55 161 -55q101 0 160 40l-16 103q-57 -31 -128 -31
+q-43 0 -63 19q-23 19 -28 66h248q2 14 2 52zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_471" unicode="&#xf1f6;" horiz-adv-x="2048" 
+d="M1558 684q61 -356 298 -556q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5zM1024 -176q16 0 16 16t-16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5zM2026 1424q8 -10 7.5 -23.5t-10.5 -22.5
+l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5
+l418 363q10 8 23.5 7t21.5 -11z" />
+    <glyph glyph-name="_472" unicode="&#xf1f7;" horiz-adv-x="2048" 
+d="M1040 -160q0 16 -16 16q-59 0 -101.5 42.5t-42.5 101.5q0 16 -16 16t-16 -16q0 -73 51.5 -124.5t124.5 -51.5q16 0 16 16zM503 315l877 760q-42 88 -132.5 146.5t-223.5 58.5q-93 0 -169.5 -31.5t-121.5 -80.5t-69 -103t-24 -105q0 -384 -137 -645zM1856 128
+q0 -52 -38 -90t-90 -38h-448q0 -106 -75 -181t-181 -75t-180.5 74.5t-75.5 180.5l149 129h757q-166 187 -227 459l111 97q61 -356 298 -556zM1942 1520l84 -96q8 -10 7.5 -23.5t-10.5 -22.5l-1872 -1622q-10 -8 -23.5 -7t-21.5 11l-84 96q-8 10 -7.5 23.5t10.5 21.5l186 161
+q-19 32 -19 66q50 42 91 88t85 119.5t74.5 158.5t50 206t19.5 260q0 152 117 282.5t307 158.5q-8 19 -8 39q0 40 28 68t68 28t68 -28t28 -68q0 -20 -8 -39q124 -18 219 -82.5t148 -157.5l418 363q10 8 23.5 7t21.5 -11z" />
+    <glyph glyph-name="_473" unicode="&#xf1f8;" horiz-adv-x="1408" 
+d="M512 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM768 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1024 160v704q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-704
+q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM480 1152h448l-48 117q-7 9 -17 11h-317q-10 -2 -17 -11zM1408 1120v-64q0 -14 -9 -23t-23 -9h-96v-948q0 -83 -47 -143.5t-113 -60.5h-832q-66 0 -113 58.5t-47 141.5v952h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h309l70 167
+q15 37 54 63t79 26h320q40 0 79 -26t54 -63l70 -167h309q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="_474" unicode="&#xf1f9;" 
+d="M1150 462v-109q0 -50 -36.5 -89t-94 -60.5t-118 -32.5t-117.5 -11q-205 0 -342.5 139t-137.5 346q0 203 136 339t339 136q34 0 75.5 -4.5t93 -18t92.5 -34t69 -56.5t28 -81v-109q0 -16 -16 -16h-118q-16 0 -16 16v70q0 43 -65.5 67.5t-137.5 24.5q-140 0 -228.5 -91.5
+t-88.5 -237.5q0 -151 91.5 -249.5t233.5 -98.5q68 0 138 24t70 66v70q0 7 4.5 11.5t10.5 4.5h119q6 0 11 -4.5t5 -11.5zM768 1280q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5
+t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_475" unicode="&#xf1fa;" 
+d="M972 761q0 108 -53.5 169t-147.5 61q-63 0 -124 -30.5t-110 -84.5t-79.5 -137t-30.5 -180q0 -112 53.5 -173t150.5 -61q96 0 176 66.5t122.5 166t42.5 203.5zM1536 640q0 -111 -37 -197t-98.5 -135t-131.5 -74.5t-145 -27.5q-6 0 -15.5 -0.5t-16.5 -0.5q-95 0 -142 53
+q-28 33 -33 83q-52 -66 -131.5 -110t-173.5 -44q-161 0 -249.5 95.5t-88.5 269.5q0 157 66 290t179 210.5t246 77.5q87 0 155 -35.5t106 -99.5l2 19l11 56q1 6 5.5 12t9.5 6h118q5 0 13 -11q5 -5 3 -16l-120 -614q-5 -24 -5 -48q0 -39 12.5 -52t44.5 -13q28 1 57 5.5t73 24
+t77 50t57 89.5t24 137q0 292 -174 466t-466 174q-130 0 -248.5 -51t-204 -136.5t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51q228 0 405 144q11 9 24 8t21 -12l41 -49q8 -12 7 -24q-2 -13 -12 -22q-102 -83 -227.5 -128t-258.5 -45q-156 0 -298 61
+t-245 164t-164 245t-61 298t61 298t164 245t245 164t298 61q344 0 556 -212t212 -556z" />
+    <glyph glyph-name="_476" unicode="&#xf1fb;" horiz-adv-x="1792" 
+d="M1698 1442q94 -94 94 -226.5t-94 -225.5l-225 -223l104 -104q10 -10 10 -23t-10 -23l-210 -210q-10 -10 -23 -10t-23 10l-105 105l-603 -603q-37 -37 -90 -37h-203l-256 -128l-64 64l128 256v203q0 53 37 90l603 603l-105 105q-10 10 -10 23t10 23l210 210q10 10 23 10
+t23 -10l104 -104l223 225q93 94 225.5 94t226.5 -94zM512 64l576 576l-192 192l-576 -576v-192h192z" />
+    <glyph glyph-name="f1fc" unicode="&#xf1fc;" horiz-adv-x="1792" 
+d="M1615 1536q70 0 122.5 -46.5t52.5 -116.5q0 -63 -45 -151q-332 -629 -465 -752q-97 -91 -218 -91q-126 0 -216.5 92.5t-90.5 219.5q0 128 92 212l638 579q59 54 130 54zM706 502q39 -76 106.5 -130t150.5 -76l1 -71q4 -213 -129.5 -347t-348.5 -134q-123 0 -218 46.5
+t-152.5 127.5t-86.5 183t-29 220q7 -5 41 -30t62 -44.5t59 -36.5t46 -17q41 0 55 37q25 66 57.5 112.5t69.5 76t88 47.5t103 25.5t125 10.5z" />
+    <glyph glyph-name="_478" unicode="&#xf1fd;" horiz-adv-x="1792" 
+d="M1792 128v-384h-1792v384q45 0 85 14t59 27.5t47 37.5q30 27 51.5 38t56.5 11q24 0 44 -7t31 -15t33 -27q29 -25 47 -38t58 -27t86 -14q45 0 85 14.5t58 27t48 37.5q21 19 32.5 27t31 15t43.5 7q35 0 56.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14t85 14t59 27.5
+t47 37.5q30 27 51.5 38t56.5 11q34 0 55.5 -11t51.5 -38q28 -24 47 -37.5t59 -27.5t85 -14zM1792 448v-192q-24 0 -44 7t-31 15t-33 27q-29 25 -47 38t-58 27t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-22 -19 -33 -27t-31 -15t-44 -7q-35 0 -56.5 11t-51.5 38q-29 25 -47 38
+t-58 27t-86 14q-45 0 -85 -14.5t-58 -27t-48 -37.5q-21 -19 -32.5 -27t-31 -15t-43.5 -7q-35 0 -56.5 11t-51.5 38q-28 24 -47 37.5t-59 27.5t-85 14q-46 0 -86 -14t-58 -27t-47 -38q-30 -27 -51.5 -38t-56.5 -11v192q0 80 56 136t136 56h64v448h256v-448h256v448h256v-448
+h256v448h256v-448h64q80 0 136 -56t56 -136zM512 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1024 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5
+q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150zM1536 1312q0 -77 -36 -118.5t-92 -41.5q-53 0 -90.5 37.5t-37.5 90.5q0 29 9.5 51t23.5 34t31 28t31 31.5t23.5 44.5t9.5 67q38 0 83 -74t45 -150z" />
+    <glyph glyph-name="_479" unicode="&#xf1fe;" horiz-adv-x="2048" 
+d="M2048 0v-128h-2048v1536h128v-1408h1920zM1664 1024l256 -896h-1664v576l448 576l576 -576z" />
+    <glyph glyph-name="_480" unicode="&#xf200;" horiz-adv-x="1792" 
+d="M768 646l546 -546q-106 -108 -247.5 -168t-298.5 -60q-209 0 -385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103v-762zM955 640h773q0 -157 -60 -298.5t-168 -247.5zM1664 768h-768v768q209 0 385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_481" unicode="&#xf201;" horiz-adv-x="2048" 
+d="M2048 0v-128h-2048v1536h128v-1408h1920zM1920 1248v-435q0 -21 -19.5 -29.5t-35.5 7.5l-121 121l-633 -633q-10 -10 -23 -10t-23 10l-233 233l-416 -416l-192 192l585 585q10 10 23 10t23 -10l233 -233l464 464l-121 121q-16 16 -7.5 35.5t29.5 19.5h435q14 0 23 -9
+t9 -23z" />
+    <glyph glyph-name="_482" unicode="&#xf202;" horiz-adv-x="1792" 
+d="M1292 832q0 -6 10 -41q10 -29 25 -49.5t41 -34t44 -20t55 -16.5q325 -91 325 -332q0 -146 -105.5 -242.5t-254.5 -96.5q-59 0 -111.5 18.5t-91.5 45.5t-77 74.5t-63 87.5t-53.5 103.5t-43.5 103t-39.5 106.5t-35.5 95q-32 81 -61.5 133.5t-73.5 96.5t-104 64t-142 20
+q-96 0 -183 -55.5t-138 -144.5t-51 -185q0 -160 106.5 -279.5t263.5 -119.5q177 0 258 95q56 63 83 116l84 -152q-15 -34 -44 -70l1 -1q-131 -152 -388 -152q-147 0 -269.5 79t-190.5 207.5t-68 274.5q0 105 43.5 206t116 176.5t172 121.5t204.5 46q87 0 159 -19t123.5 -50
+t95 -80t72.5 -99t58.5 -117t50.5 -124.5t50 -130.5t55 -127q96 -200 233 -200q81 0 138.5 48.5t57.5 128.5q0 42 -19 72t-50.5 46t-72.5 31.5t-84.5 27t-87.5 34t-81 52t-65 82t-39 122.5q-3 16 -3 33q0 110 87.5 192t198.5 78q78 -3 120.5 -14.5t90.5 -53.5h-1
+q12 -11 23 -24.5t26 -36t19 -27.5l-129 -99q-26 49 -54 70v1q-23 21 -97 21q-49 0 -84 -33t-35 -83z" />
+    <glyph glyph-name="_483" unicode="&#xf203;" 
+d="M1432 484q0 173 -234 239q-35 10 -53 16.5t-38 25t-29 46.5q0 2 -2 8.5t-3 12t-1 7.5q0 36 24.5 59.5t60.5 23.5q54 0 71 -15h-1q20 -15 39 -51l93 71q-39 54 -49 64q-33 29 -67.5 39t-85.5 10q-80 0 -142 -57.5t-62 -137.5q0 -7 2 -23q16 -96 64.5 -140t148.5 -73
+q29 -8 49 -15.5t45 -21.5t38.5 -34.5t13.5 -46.5v-5q1 -58 -40.5 -93t-100.5 -35q-97 0 -167 144q-23 47 -51.5 121.5t-48 125.5t-54 110.5t-74 95.5t-103.5 60.5t-147 24.5q-101 0 -192 -56t-144 -148t-50 -192v-1q4 -108 50.5 -199t133.5 -147.5t196 -56.5q186 0 279 110
+q20 27 31 51l-60 109q-42 -80 -99 -116t-146 -36q-115 0 -191 87t-76 204q0 105 82 189t186 84q112 0 170 -53.5t104 -172.5q8 -21 25.5 -68.5t28.5 -76.5t31.5 -74.5t38.5 -74t45.5 -62.5t55.5 -53.5t66 -33t80 -13.5q107 0 183 69.5t76 174.5zM1536 1120v-960
+q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_484" unicode="&#xf204;" horiz-adv-x="2048" 
+d="M1152 640q0 104 -40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5t198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM1920 640q0 104 -40.5 198.5
+t-109.5 163.5t-163.5 109.5t-198.5 40.5h-386q119 -90 188.5 -224t69.5 -288t-69.5 -288t-188.5 -224h386q104 0 198.5 40.5t163.5 109.5t109.5 163.5t40.5 198.5zM2048 640q0 -130 -51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5
+t-136.5 204t-51 248.5t51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5z" />
+    <glyph glyph-name="_485" unicode="&#xf205;" horiz-adv-x="2048" 
+d="M0 640q0 130 51 248.5t136.5 204t204 136.5t248.5 51h768q130 0 248.5 -51t204 -136.5t136.5 -204t51 -248.5t-51 -248.5t-136.5 -204t-204 -136.5t-248.5 -51h-768q-130 0 -248.5 51t-204 136.5t-136.5 204t-51 248.5zM1408 128q104 0 198.5 40.5t163.5 109.5
+t109.5 163.5t40.5 198.5t-40.5 198.5t-109.5 163.5t-163.5 109.5t-198.5 40.5t-198.5 -40.5t-163.5 -109.5t-109.5 -163.5t-40.5 -198.5t40.5 -198.5t109.5 -163.5t163.5 -109.5t198.5 -40.5z" />
+    <glyph glyph-name="_486" unicode="&#xf206;" horiz-adv-x="2304" 
+d="M762 384h-314q-40 0 -57.5 35t6.5 67l188 251q-65 31 -137 31q-132 0 -226 -94t-94 -226t94 -226t226 -94q115 0 203 72.5t111 183.5zM576 512h186q-18 85 -75 148zM1056 512l288 384h-480l-99 -132q105 -103 126 -252h165zM2176 448q0 132 -94 226t-226 94
+q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94t226 94t94 226zM2304 448q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 97 39.5 183.5t109.5 149.5l-65 98l-353 -469
+q-18 -26 -51 -26h-197q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5t-131.5 316.5t131.5 316.5t316.5 131.5q114 0 215 -55l137 183h-224q-26 0 -45 19t-19 45t19 45t45 19h384v-128h435l-85 128h-222q-26 0 -45 19t-19 45t19 45t45 19h256q33 0 53 -28l267 -400
+q91 44 192 44q185 0 316.5 -131.5t131.5 -316.5z" />
+    <glyph glyph-name="_487" unicode="&#xf207;" 
+d="M384 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 320q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1362 716l-72 384q-5 23 -22.5 37.5t-40.5 14.5
+h-918q-23 0 -40.5 -14.5t-22.5 -37.5l-72 -384q-5 -30 14 -53t49 -23h1062q30 0 49 23t14 53zM1136 1328q0 20 -14 34t-34 14h-640q-20 0 -34 -14t-14 -34t14 -34t34 -14h640q20 0 34 14t14 34zM1536 603v-603h-128v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5
+t-37.5 90.5v128h-768v-128q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5v128h-128v603q0 112 25 223l103 454q9 78 97.5 137t230 89t312.5 30t312.5 -30t230 -89t97.5 -137l105 -454q23 -102 23 -223z" />
+    <glyph glyph-name="_488" unicode="&#xf208;" horiz-adv-x="2048" 
+d="M1463 704q0 -35 -25 -60.5t-61 -25.5h-702q-36 0 -61 25.5t-25 60.5t25 60.5t61 25.5h702q36 0 61 -25.5t25 -60.5zM1677 704q0 86 -23 170h-982q-36 0 -61 25t-25 60q0 36 25 61t61 25h908q-88 143 -235 227t-320 84q-177 0 -327.5 -87.5t-238 -237.5t-87.5 -327
+q0 -86 23 -170h982q36 0 61 -25t25 -60q0 -36 -25 -61t-61 -25h-908q88 -143 235.5 -227t320.5 -84q132 0 253 51.5t208 139t139 208t52 253.5zM2048 959q0 -35 -25 -60t-61 -25h-131q17 -85 17 -170q0 -167 -65.5 -319.5t-175.5 -263t-262.5 -176t-319.5 -65.5
+q-246 0 -448.5 133t-301.5 350h-189q-36 0 -61 25t-25 61q0 35 25 60t61 25h132q-17 85 -17 170q0 167 65.5 319.5t175.5 263t262.5 176t320.5 65.5q245 0 447.5 -133t301.5 -350h188q36 0 61 -25t25 -61z" />
+    <glyph glyph-name="_489" unicode="&#xf209;" horiz-adv-x="1280" 
+d="M953 1158l-114 -328l117 -21q165 451 165 518q0 56 -38 56q-57 0 -130 -225zM654 471l33 -88q37 42 71 67l-33 5.5t-38.5 7t-32.5 8.5zM362 1367q0 -98 159 -521q17 10 49 10q15 0 75 -5l-121 351q-75 220 -123 220q-19 0 -29 -17.5t-10 -37.5zM283 608q0 -36 51.5 -119
+t117.5 -153t100 -70q14 0 25.5 13t11.5 27q0 24 -32 102q-13 32 -32 72t-47.5 89t-61.5 81t-62 32q-20 0 -45.5 -27t-25.5 -47zM125 273q0 -41 25 -104q59 -145 183.5 -227t281.5 -82q227 0 382 170q152 169 152 427q0 43 -1 67t-11.5 62t-30.5 56q-56 49 -211.5 75.5
+t-270.5 26.5q-37 0 -49 -11q-12 -5 -12 -35q0 -34 21.5 -60t55.5 -40t77.5 -23.5t87.5 -11.5t85 -4t70 0h23q24 0 40 -19q15 -19 19 -55q-28 -28 -96 -54q-61 -22 -93 -46q-64 -46 -108.5 -114t-44.5 -137q0 -31 18.5 -88.5t18.5 -87.5l-3 -12q-4 -12 -4 -14
+q-137 10 -146 216q-8 -2 -41 -2q2 -7 2 -21q0 -53 -40.5 -89.5t-94.5 -36.5q-82 0 -166.5 78t-84.5 159q0 34 33 67q52 -64 60 -76q77 -104 133 -104q12 0 26.5 8.5t14.5 20.5q0 34 -87.5 145t-116.5 111q-43 0 -70 -44.5t-27 -90.5zM11 264q0 101 42.5 163t136.5 88
+q-28 74 -28 104q0 62 61 123t122 61q29 0 70 -15q-163 462 -163 567q0 80 41 130.5t119 50.5q131 0 325 -581q6 -17 8 -23q6 16 29 79.5t43.5 118.5t54 127.5t64.5 123t70.5 86.5t76.5 36q71 0 112 -49t41 -122q0 -108 -159 -550q61 -15 100.5 -46t58.5 -78t26 -93.5
+t7 -110.5q0 -150 -47 -280t-132 -225t-211 -150t-278 -55q-111 0 -223 42q-149 57 -258 191.5t-109 286.5z" />
+    <glyph glyph-name="_490" unicode="&#xf20a;" horiz-adv-x="2048" 
+d="M785 528h207q-14 -158 -98.5 -248.5t-214.5 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-203q-5 64 -35.5 99t-81.5 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t40 -51.5t66 -18q95 0 109 139zM1497 528h206
+q-14 -158 -98 -248.5t-214 -90.5q-162 0 -254.5 116t-92.5 316q0 194 93 311.5t233 117.5q148 0 232 -87t97 -247h-204q-4 64 -35 99t-81 35q-57 0 -88.5 -60.5t-31.5 -177.5q0 -48 5 -84t18 -69.5t39.5 -51.5t65.5 -18q49 0 76.5 38t33.5 101zM1856 647q0 207 -15.5 307
+t-60.5 161q-6 8 -13.5 14t-21.5 15t-16 11q-86 63 -697 63q-625 0 -710 -63q-5 -4 -17.5 -11.5t-21 -14t-14.5 -14.5q-45 -60 -60 -159.5t-15 -308.5q0 -208 15 -307.5t60 -160.5q6 -8 15 -15t20.5 -14t17.5 -12q44 -33 239.5 -49t470.5 -16q610 0 697 65q5 4 17 11t20.5 14
+t13.5 16q46 60 61 159t15 309zM2048 1408v-1536h-2048v1536h2048z" />
+    <glyph glyph-name="_491" unicode="&#xf20b;" 
+d="M992 912v-496q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v496q0 112 -80 192t-192 80h-272v-1152q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v1344q0 14 9 23t23 9h464q135 0 249 -66.5t180.5 -180.5t66.5 -249zM1376 1376v-880q0 -135 -66.5 -249t-180.5 -180.5
+t-249 -66.5h-464q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h160q14 0 23 -9t9 -23v-768h272q112 0 192 80t80 192v880q0 14 9 23t23 9h160q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="_492" unicode="&#xf20c;" 
+d="M1311 694v-114q0 -24 -13.5 -38t-37.5 -14h-202q-24 0 -38 14t-14 38v114q0 24 14 38t38 14h202q24 0 37.5 -14t13.5 -38zM821 464v250q0 53 -32.5 85.5t-85.5 32.5h-133q-68 0 -96 -52q-28 52 -96 52h-130q-53 0 -85.5 -32.5t-32.5 -85.5v-250q0 -22 21 -22h55
+q22 0 22 22v230q0 24 13.5 38t38.5 14h94q24 0 38 -14t14 -38v-230q0 -22 21 -22h54q22 0 22 22v230q0 24 14 38t38 14h97q24 0 37.5 -14t13.5 -38v-230q0 -22 22 -22h55q21 0 21 22zM1410 560v154q0 53 -33 85.5t-86 32.5h-264q-53 0 -86 -32.5t-33 -85.5v-410
+q0 -21 22 -21h55q21 0 21 21v180q31 -42 94 -42h191q53 0 86 32.5t33 85.5zM1536 1176v-1072q0 -96 -68 -164t-164 -68h-1072q-96 0 -164 68t-68 164v1072q0 96 68 164t164 68h1072q96 0 164 -68t68 -164z" />
+    <glyph glyph-name="_493" unicode="&#xf20d;" 
+d="M915 450h-294l147 551zM1001 128h311l-324 1024h-440l-324 -1024h311l383 314zM1536 1120v-960q0 -118 -85 -203t-203 -85h-960q-118 0 -203 85t-85 203v960q0 118 85 203t203 85h960q118 0 203 -85t85 -203z" />
+    <glyph glyph-name="_494" unicode="&#xf20e;" horiz-adv-x="2048" 
+d="M2048 641q0 -21 -13 -36.5t-33 -19.5l-205 -356q3 -9 3 -18q0 -20 -12.5 -35.5t-32.5 -19.5l-193 -337q3 -8 3 -16q0 -23 -16.5 -40t-40.5 -17q-25 0 -41 18h-400q-17 -20 -43 -20t-43 20h-399q-17 -20 -43 -20q-23 0 -40 16.5t-17 40.5q0 8 4 20l-193 335
+q-20 4 -32.5 19.5t-12.5 35.5q0 9 3 18l-206 356q-20 5 -32.5 20.5t-12.5 35.5q0 21 13.5 36.5t33.5 19.5l199 344q0 1 -0.5 3t-0.5 3q0 36 34 51l209 363q-4 10 -4 18q0 24 17 40.5t40 16.5q26 0 44 -21h396q16 21 43 21t43 -21h398q18 21 44 21q23 0 40 -16.5t17 -40.5
+q0 -6 -4 -18l207 -358q23 -1 39 -17.5t16 -38.5q0 -13 -7 -27l187 -324q19 -4 31.5 -19.5t12.5 -35.5zM1063 -158h389l-342 354h-143l-342 -354h360q18 16 39 16t39 -16zM112 654q1 -4 1 -13q0 -10 -2 -15l208 -360l15 -6l188 199v347l-187 194q-13 -8 -29 -10zM986 1438
+h-388l190 -200l554 200h-280q-16 -16 -38 -16t-38 16zM1689 226q1 6 5 11l-64 68l-17 -79h76zM1583 226l22 105l-252 266l-296 -307l63 -64h463zM1495 -142l16 28l65 310h-427l333 -343q8 4 13 5zM578 -158h5l342 354h-373v-335l4 -6q14 -5 22 -13zM552 226h402l64 66
+l-309 321l-157 -166v-221zM359 226h163v189l-168 -177q4 -8 5 -12zM358 1051q0 -1 0.5 -2t0.5 -2q0 -16 -8 -29l171 -177v269zM552 1121v-311l153 -157l297 314l-223 236zM556 1425l-4 -8v-264l205 74l-191 201q-6 -2 -10 -3zM1447 1438h-16l-621 -224l213 -225zM1023 946
+l-297 -315l311 -319l296 307zM688 634l-136 141v-284zM1038 270l-42 -44h85zM1374 618l238 -251l132 624l-3 5l-1 1zM1718 1018q-8 13 -8 29v2l-216 376q-5 1 -13 5l-437 -463l310 -327zM522 1142v223l-163 -282zM522 196h-163l163 -283v283zM1607 196l-48 -227l130 227h-82
+zM1729 266l207 361q-2 10 -2 14q0 1 3 16l-171 296l-129 -612l77 -82q5 3 15 7z" />
+    <glyph glyph-name="f210" unicode="&#xf210;" 
+d="M0 856q0 131 91.5 226.5t222.5 95.5h742l352 358v-1470q0 -132 -91.5 -227t-222.5 -95h-780q-131 0 -222.5 95t-91.5 227v790zM1232 102l-176 180v425q0 46 -32 79t-78 33h-484q-46 0 -78 -33t-32 -79v-492q0 -46 32.5 -79.5t77.5 -33.5h770z" />
+    <glyph glyph-name="_496" unicode="&#xf211;" 
+d="M934 1386q-317 -121 -556 -362.5t-358 -560.5q-20 89 -20 176q0 208 102.5 384.5t278.5 279t384 102.5q82 0 169 -19zM1203 1267q93 -65 164 -155q-389 -113 -674.5 -400.5t-396.5 -676.5q-93 72 -155 162q112 386 395 671t667 399zM470 -67q115 356 379.5 622t619.5 384
+q40 -92 54 -195q-292 -120 -516 -345t-343 -518q-103 14 -194 52zM1536 -125q-193 50 -367 115q-135 -84 -290 -107q109 205 274 370.5t369 275.5q-21 -152 -101 -284q65 -175 115 -370z" />
+    <glyph glyph-name="f212" unicode="&#xf212;" horiz-adv-x="2048" 
+d="M1893 1144l155 -1272q-131 0 -257 57q-200 91 -393 91q-226 0 -374 -148q-148 148 -374 148q-193 0 -393 -91q-128 -57 -252 -57h-5l155 1272q224 127 482 127q233 0 387 -106q154 106 387 106q258 0 482 -127zM1398 157q129 0 232 -28.5t260 -93.5l-124 1021
+q-171 78 -368 78q-224 0 -374 -141q-150 141 -374 141q-197 0 -368 -78l-124 -1021q105 43 165.5 65t148.5 39.5t178 17.5q202 0 374 -108q172 108 374 108zM1438 191l-55 907q-211 -4 -359 -155q-152 155 -374 155q-176 0 -336 -66l-114 -941q124 51 228.5 76t221.5 25
+q209 0 374 -102q172 107 374 102z" />
+    <glyph glyph-name="_498" unicode="&#xf213;" horiz-adv-x="2048" 
+d="M1500 165v733q0 21 -15 36t-35 15h-93q-20 0 -35 -15t-15 -36v-733q0 -20 15 -35t35 -15h93q20 0 35 15t15 35zM1216 165v531q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-531q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM924 165v429q0 20 -15 35t-35 15h-101
+q-20 0 -35 -15t-15 -35v-429q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM632 165v362q0 20 -15 35t-35 15h-101q-20 0 -35 -15t-15 -35v-362q0 -20 15 -35t35 -15h101q20 0 35 15t15 35zM2048 311q0 -166 -118 -284t-284 -118h-1244q-166 0 -284 118t-118 284
+q0 116 63 214.5t168 148.5q-10 34 -10 73q0 113 80.5 193.5t193.5 80.5q102 0 180 -67q45 183 194 300t338 117q149 0 275 -73.5t199.5 -199.5t73.5 -275q0 -66 -14 -122q135 -33 221 -142.5t86 -247.5z" />
+    <glyph glyph-name="_499" unicode="&#xf214;" 
+d="M0 1536h1536v-1392l-776 -338l-760 338v1392zM1436 209v926h-1336v-926l661 -294zM1436 1235v201h-1336v-201h1336zM181 937v-115h-37v115h37zM181 789v-115h-37v115h37zM181 641v-115h-37v115h37zM181 493v-115h-37v115h37zM181 345v-115h-37v115h37zM207 202l15 34
+l105 -47l-15 -33zM343 142l15 34l105 -46l-15 -34zM478 82l15 34l105 -46l-15 -34zM614 23l15 33l104 -46l-15 -34zM797 10l105 46l15 -33l-105 -47zM932 70l105 46l15 -34l-105 -46zM1068 130l105 46l15 -34l-105 -46zM1203 189l105 47l15 -34l-105 -46zM259 1389v-36h-114
+v36h114zM421 1389v-36h-115v36h115zM583 1389v-36h-115v36h115zM744 1389v-36h-114v36h114zM906 1389v-36h-114v36h114zM1068 1389v-36h-115v36h115zM1230 1389v-36h-115v36h115zM1391 1389v-36h-114v36h114zM181 1049v-79h-37v115h115v-36h-78zM421 1085v-36h-115v36h115z
+M583 1085v-36h-115v36h115zM744 1085v-36h-114v36h114zM906 1085v-36h-114v36h114zM1068 1085v-36h-115v36h115zM1230 1085v-36h-115v36h115zM1355 970v79h-78v36h115v-115h-37zM1355 822v115h37v-115h-37zM1355 674v115h37v-115h-37zM1355 526v115h37v-115h-37zM1355 378
+v115h37v-115h-37zM1355 230v115h37v-115h-37zM760 265q-129 0 -221 91.5t-92 221.5q0 129 92 221t221 92q130 0 221.5 -92t91.5 -221q0 -130 -91.5 -221.5t-221.5 -91.5zM595 646q0 -36 19.5 -56.5t49.5 -25t64 -7t64 -2t49.5 -9t19.5 -30.5q0 -49 -112 -49q-97 0 -123 51
+h-3l-31 -63q67 -42 162 -42q29 0 56.5 5t55.5 16t45.5 33t17.5 53q0 46 -27.5 69.5t-67.5 27t-79.5 3t-67 5t-27.5 25.5q0 21 20.5 33t40.5 15t41 3q34 0 70.5 -11t51.5 -34h3l30 58q-3 1 -21 8.5t-22.5 9t-19.5 7t-22 7t-20 4.5t-24 4t-23 1q-29 0 -56.5 -5t-54 -16.5
+t-43 -34t-16.5 -53.5z" />
+    <glyph glyph-name="_500" unicode="&#xf215;" horiz-adv-x="2048" 
+d="M863 504q0 112 -79.5 191.5t-191.5 79.5t-191 -79.5t-79 -191.5t79 -191t191 -79t191.5 79t79.5 191zM1726 505q0 112 -79 191t-191 79t-191.5 -79t-79.5 -191q0 -113 79.5 -192t191.5 -79t191 79.5t79 191.5zM2048 1314v-1348q0 -44 -31.5 -75.5t-76.5 -31.5h-1832
+q-45 0 -76.5 31.5t-31.5 75.5v1348q0 44 31.5 75.5t76.5 31.5h431q44 0 76 -31.5t32 -75.5v-161h754v161q0 44 32 75.5t76 31.5h431q45 0 76.5 -31.5t31.5 -75.5z" />
+    <glyph glyph-name="_501" unicode="&#xf216;" horiz-adv-x="2048" 
+d="M1430 953zM1690 749q148 0 253 -98.5t105 -244.5q0 -157 -109 -261.5t-267 -104.5q-85 0 -162 27.5t-138 73.5t-118 106t-109 126t-103.5 132.5t-108.5 126.5t-117 106t-136 73.5t-159 27.5q-154 0 -251.5 -91.5t-97.5 -244.5q0 -157 104 -250t263 -93q100 0 208 37.5
+t193 98.5q5 4 21 18.5t30 24t22 9.5q14 0 24.5 -10.5t10.5 -24.5q0 -24 -60 -77q-101 -88 -234.5 -142t-260.5 -54q-133 0 -245.5 58t-180 165t-67.5 241q0 205 141.5 341t347.5 136q120 0 226.5 -43.5t185.5 -113t151.5 -153t139 -167.5t133.5 -153.5t149.5 -113
+t172.5 -43.5q102 0 168.5 61.5t66.5 162.5q0 95 -64.5 159t-159.5 64q-30 0 -81.5 -18.5t-68.5 -18.5q-20 0 -35.5 15t-15.5 35q0 18 8.5 57t8.5 59q0 159 -107.5 263t-266.5 104q-58 0 -111.5 -18.5t-84 -40.5t-55.5 -40.5t-33 -18.5q-15 0 -25.5 10.5t-10.5 25.5
+q0 19 25 46q59 67 147 103.5t182 36.5q191 0 318 -125.5t127 -315.5q0 -37 -4 -66q57 15 115 15z" />
+    <glyph glyph-name="_502" unicode="&#xf217;" horiz-adv-x="1664" 
+d="M1216 832q0 26 -19 45t-45 19h-128v128q0 26 -19 45t-45 19t-45 -19t-19 -45v-128h-128q-26 0 -45 -19t-19 -45t19 -45t45 -19h128v-128q0 -26 19 -45t45 -19t45 19t19 45v128h128q26 0 45 19t19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
+t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920
+q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="_503" unicode="&#xf218;" horiz-adv-x="1664" 
+d="M1280 832q0 26 -19 45t-45 19t-45 -19l-147 -146v293q0 26 -19 45t-45 19t-45 -19t-19 -45v-293l-147 146q-19 19 -45 19t-45 -19t-19 -45t19 -45l256 -256q19 -19 45 -19t45 19l256 256q19 19 19 45zM640 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5
+t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1536 0q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1664 1088v-512q0 -24 -16 -42.5t-41 -21.5l-1044 -122q1 -7 4.5 -21.5t6 -26.5t2.5 -22q0 -16 -24 -64h920
+q26 0 45 -19t19 -45t-19 -45t-45 -19h-1024q-26 0 -45 19t-19 45q0 14 11 39.5t29.5 59.5t20.5 38l-177 823h-204q-26 0 -45 19t-19 45t19 45t45 19h256q16 0 28.5 -6.5t20 -15.5t13 -24.5t7.5 -26.5t5.5 -29.5t4.5 -25.5h1201q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="_504" unicode="&#xf219;" horiz-adv-x="2048" 
+d="M212 768l623 -665l-300 665h-323zM1024 -4l349 772h-698zM538 896l204 384h-262l-288 -384h346zM1213 103l623 665h-323zM683 896h682l-204 384h-274zM1510 896h346l-288 384h-262zM1651 1382l384 -512q14 -18 13 -41.5t-17 -40.5l-960 -1024q-18 -20 -47 -20t-47 20
+l-960 1024q-16 17 -17 40.5t13 41.5l384 512q18 26 51 26h1152q33 0 51 -26z" />
+    <glyph glyph-name="_505" unicode="&#xf21a;" horiz-adv-x="2048" 
+d="M1811 -19q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83
+q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83q19 19 45 19t45 -19l83 -83l83 83
+q19 19 45 19t45 -19l83 -83zM237 19q-19 -19 -45 -19t-45 19l-128 128l90 90l83 -82l83 82q19 19 45 19t45 -19l83 -82l64 64v293l-210 314q-17 26 -7 56.5t40 40.5l177 58v299h128v128h256v128h256v-128h256v-128h128v-299l177 -58q30 -10 40 -40.5t-7 -56.5l-210 -314
+v-293l19 18q19 19 45 19t45 -19l83 -82l83 82q19 19 45 19t45 -19l128 -128l-90 -90l-83 83l-83 -83q-18 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83l-83 -83
+q-19 -19 -45 -19t-45 19l-83 83l-83 -83q-19 -19 -45 -19t-45 19l-83 83zM640 1152v-128l384 128l384 -128v128h-128v128h-512v-128h-128z" />
+    <glyph glyph-name="_506" unicode="&#xf21b;" 
+d="M576 0l96 448l-96 128l-128 64zM832 0l128 640l-128 -64l-96 -128zM992 1010q-2 4 -4 6q-10 8 -96 8q-70 0 -167 -19q-7 -2 -21 -2t-21 2q-97 19 -167 19q-86 0 -96 -8q-2 -2 -4 -6q2 -18 4 -27q2 -3 7.5 -6.5t7.5 -10.5q2 -4 7.5 -20.5t7 -20.5t7.5 -17t8.5 -17t9 -14
+t12 -13.5t14 -9.5t17.5 -8t20.5 -4t24.5 -2q36 0 59 12.5t32.5 30t14.5 34.5t11.5 29.5t17.5 12.5h12q11 0 17.5 -12.5t11.5 -29.5t14.5 -34.5t32.5 -30t59 -12.5q13 0 24.5 2t20.5 4t17.5 8t14 9.5t12 13.5t9 14t8.5 17t7.5 17t7 20.5t7.5 20.5q2 7 7.5 10.5t7.5 6.5
+q2 9 4 27zM1408 131q0 -121 -73 -190t-194 -69h-874q-121 0 -194 69t-73 190q0 61 4.5 118t19 125.5t37.5 123.5t63.5 103.5t93.5 74.5l-90 220h214q-22 64 -22 128q0 12 2 32q-194 40 -194 96q0 57 210 99q17 62 51.5 134t70.5 114q32 37 76 37q30 0 84 -31t84 -31t84 31
+t84 31q44 0 76 -37q36 -42 70.5 -114t51.5 -134q210 -42 210 -99q0 -56 -194 -96q7 -81 -20 -160h214l-82 -225q63 -33 107.5 -96.5t65.5 -143.5t29 -151.5t8 -148.5z" />
+    <glyph glyph-name="_507" unicode="&#xf21c;" horiz-adv-x="2304" 
+d="M2301 500q12 -103 -22 -198.5t-99 -163.5t-158.5 -106t-196.5 -31q-161 11 -279.5 125t-134.5 274q-12 111 27.5 210.5t118.5 170.5l-71 107q-96 -80 -151 -194t-55 -244q0 -27 -18.5 -46.5t-45.5 -19.5h-256h-69q-23 -164 -149 -274t-294 -110q-185 0 -316.5 131.5
+t-131.5 316.5t131.5 316.5t316.5 131.5q76 0 152 -27l24 45q-123 110 -304 110h-64q-26 0 -45 19t-19 45t19 45t45 19h128q78 0 145 -13.5t116.5 -38.5t71.5 -39.5t51 -36.5h512h115l-85 128h-222q-30 0 -49 22.5t-14 52.5q4 23 23 38t43 15h253q33 0 53 -28l70 -105
+l114 114q19 19 46 19h101q26 0 45 -19t19 -45v-128q0 -26 -19 -45t-45 -19h-179l115 -172q131 63 275 36q143 -26 244 -134.5t118 -253.5zM448 128q115 0 203 72.5t111 183.5h-314q-35 0 -55 31q-18 32 -1 63l147 277q-47 13 -91 13q-132 0 -226 -94t-94 -226t94 -226
+t226 -94zM1856 128q132 0 226 94t94 226t-94 226t-226 94q-60 0 -121 -24l174 -260q15 -23 10 -49t-27 -40q-15 -11 -36 -11q-35 0 -53 29l-174 260q-93 -95 -93 -225q0 -132 94 -226t226 -94z" />
+    <glyph glyph-name="_508" unicode="&#xf21d;" 
+d="M1408 0q0 -63 -61.5 -113.5t-164 -81t-225 -46t-253.5 -15.5t-253.5 15.5t-225 46t-164 81t-61.5 113.5q0 49 33 88.5t91 66.5t118 44.5t131 29.5q26 5 48 -10.5t26 -41.5q5 -26 -10.5 -48t-41.5 -26q-58 -10 -106 -23.5t-76.5 -25.5t-48.5 -23.5t-27.5 -19.5t-8.5 -12
+q3 -11 27 -26.5t73 -33t114 -32.5t160.5 -25t201.5 -10t201.5 10t160.5 25t114 33t73 33.5t27 27.5q-1 4 -8.5 11t-27.5 19t-48.5 23.5t-76.5 25t-106 23.5q-26 4 -41.5 26t-10.5 48q4 26 26 41.5t48 10.5q71 -12 131 -29.5t118 -44.5t91 -66.5t33 -88.5zM1024 896v-384
+q0 -26 -19 -45t-45 -19h-64v-384q0 -26 -19 -45t-45 -19h-256q-26 0 -45 19t-19 45v384h-64q-26 0 -45 19t-19 45v384q0 53 37.5 90.5t90.5 37.5h384q53 0 90.5 -37.5t37.5 -90.5zM928 1280q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5
+t158.5 -65.5t65.5 -158.5z" />
+    <glyph glyph-name="_509" unicode="&#xf21e;" horiz-adv-x="1792" 
+d="M1280 512h305q-5 -6 -10 -10.5t-9 -7.5l-3 -4l-623 -600q-18 -18 -44 -18t-44 18l-624 602q-5 2 -21 20h369q22 0 39.5 13.5t22.5 34.5l70 281l190 -667q6 -20 23 -33t39 -13q21 0 38 13t23 33l146 485l56 -112q18 -35 57 -35zM1792 940q0 -145 -103 -300h-369l-111 221
+q-8 17 -25.5 27t-36.5 8q-45 -5 -56 -46l-129 -430l-196 686q-6 20 -23.5 33t-39.5 13t-39 -13.5t-22 -34.5l-116 -464h-423q-103 155 -103 300q0 220 127 344t351 124q62 0 126.5 -21.5t120 -58t95.5 -68.5t76 -68q36 36 76 68t95.5 68.5t120 58t126.5 21.5q224 0 351 -124
+t127 -344z" />
+    <glyph glyph-name="venus" unicode="&#xf221;" horiz-adv-x="1280" 
+d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292
+q11 134 80.5 249t182 188t245.5 88q170 19 319 -54t236 -212t87 -306zM128 960q0 -185 131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5z" />
+    <glyph glyph-name="_511" unicode="&#xf222;" 
+d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-382 -383q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5
+q203 0 359 -126l382 382h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_512" unicode="&#xf223;" horiz-adv-x="1280" 
+d="M830 1220q145 -72 233.5 -210.5t88.5 -305.5q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5
+t-147.5 384.5q0 167 88.5 305.5t233.5 210.5q-165 96 -228 273q-6 16 3.5 29.5t26.5 13.5h69q21 0 29 -20q44 -106 140 -171t214 -65t214 65t140 171q8 20 37 20h61q17 0 26.5 -13.5t3.5 -29.5q-63 -177 -228 -273zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
+t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_513" unicode="&#xf224;" 
+d="M1024 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64
+q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-149 16 -270.5 103t-186.5 223.5t-53 291.5q16 204 160 353.5t347 172.5q118 14 228 -19t198 -103l255 254h-134q-14 0 -23 9t-9 23v64zM576 256q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
+t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_514" unicode="&#xf225;" horiz-adv-x="1792" 
+d="M1280 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q126 -158 126 -359q0 -221 -147.5 -384.5t-364.5 -187.5v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64
+q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-217 24 -364.5 187.5t-147.5 384.5q0 201 126 359l-52 53l-101 -111q-9 -10 -22 -10.5t-23 7.5l-48 44q-10 8 -10.5 21.5t8.5 23.5l105 115l-111 112v-134q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9
+t-9 23v288q0 26 19 45t45 19h288q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-133l106 -107l86 94q9 10 22 10.5t23 -7.5l48 -44q10 -8 10.5 -21.5t-8.5 -23.5l-90 -99l57 -56q158 126 359 126t359 -126l255 254h-134q-14 0 -23 9t-9 23v64zM832 256q185 0 316.5 131.5
+t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_515" unicode="&#xf226;" horiz-adv-x="1792" 
+d="M1790 1007q12 -155 -52.5 -292t-186 -224t-271.5 -103v-260h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-512v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23
+t23 9h224v260q-150 16 -271.5 103t-186 224t-52.5 292q17 206 164.5 356.5t352.5 169.5q206 21 377 -94q171 115 377 94q205 -19 352.5 -169.5t164.5 -356.5zM896 647q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM576 512q115 0 218 57q-154 165 -154 391
+q0 224 154 391q-103 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5zM1152 128v260q-137 15 -256 94q-119 -79 -256 -94v-260h512zM1216 512q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5q-115 0 -218 -57q154 -167 154 -391
+q0 -226 -154 -391q103 -57 218 -57z" />
+    <glyph glyph-name="_516" unicode="&#xf227;" horiz-adv-x="1920" 
+d="M1536 1120q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-31 -182 -166 -312t-318 -156q-210 -29 -384.5 80t-241.5 300q-117 6 -221 57.5t-177.5 133t-113.5 192.5t-32 230
+q9 135 78 252t182 191.5t248 89.5q118 14 227.5 -19t198.5 -103l255 254h-134q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q59 -74 93 -169q182 -9 328 -124l255 254h-134q-14 0 -23 9
+t-9 23v64zM1024 704q0 20 -4 58q-162 -25 -271 -150t-109 -292q0 -20 4 -58q162 25 271 150t109 292zM128 704q0 -168 111 -294t276 -149q-3 29 -3 59q0 210 135 369.5t338 196.5q-53 120 -163.5 193t-245.5 73q-185 0 -316.5 -131.5t-131.5 -316.5zM1088 -128
+q185 0 316.5 131.5t131.5 316.5q0 168 -111 294t-276 149q3 -28 3 -59q0 -210 -135 -369.5t-338 -196.5q53 -120 163.5 -193t245.5 -73z" />
+    <glyph glyph-name="_517" unicode="&#xf228;" horiz-adv-x="2048" 
+d="M1664 1504q0 14 9 23t23 9h288q26 0 45 -19t19 -45v-288q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v134l-254 -255q76 -95 107.5 -214t9.5 -247q-32 -180 -164.5 -310t-313.5 -157q-223 -34 -409 90q-117 -78 -256 -93v-132h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23
+t-23 -9h-96v-96q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v96h-96q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v132q-155 17 -279.5 109.5t-187 237.5t-39.5 307q25 187 159.5 322.5t320.5 164.5q224 34 410 -90q146 97 320 97q201 0 359 -126l255 254h-134q-14 0 -23 9
+t-9 23v64zM896 391q128 131 128 313t-128 313q-128 -131 -128 -313t128 -313zM128 704q0 -185 131.5 -316.5t316.5 -131.5q117 0 218 57q-154 167 -154 391t154 391q-101 57 -218 57q-185 0 -316.5 -131.5t-131.5 -316.5zM1216 256q185 0 316.5 131.5t131.5 316.5
+t-131.5 316.5t-316.5 131.5q-117 0 -218 -57q154 -167 154 -391t-154 -391q101 -57 218 -57z" />
+    <glyph glyph-name="_518" unicode="&#xf229;" 
+d="M1472 1408q26 0 45 -19t19 -45v-416q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v262l-213 -214l140 -140q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-140 141l-78 -79q126 -156 126 -359q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5
+t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123t223.5 45.5q203 0 359 -126l78 78l-172 172q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l172 -172l213 213h-261q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h416zM576 0q185 0 316.5 131.5t131.5 316.5t-131.5 316.5
+t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_519" unicode="&#xf22a;" horiz-adv-x="1280" 
+d="M640 892q217 -24 364.5 -187.5t147.5 -384.5q0 -167 -87 -306t-236 -212t-319 -54q-133 15 -245.5 88t-182 188t-80.5 249q-12 155 52.5 292t186 224t271.5 103v132h-160q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h160v165l-92 -92q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22
+t9 23l202 201q19 19 45 19t45 -19l202 -201q9 -10 9 -23t-9 -22l-46 -46q-9 -9 -22 -9t-23 9l-92 92v-165h160q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-160v-132zM576 -128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5
+t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_520" unicode="&#xf22b;" horiz-adv-x="2048" 
+d="M1901 621q19 -19 19 -45t-19 -45l-294 -294q-9 -10 -22.5 -10t-22.5 10l-45 45q-10 9 -10 22.5t10 22.5l185 185h-294v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-132q-24 -217 -187.5 -364.5t-384.5 -147.5q-167 0 -306 87t-212 236t-54 319q15 133 88 245.5
+t188 182t249 80.5q155 12 292 -52.5t224 -186t103 -271.5h132v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224h294l-185 185q-10 9 -10 22.5t10 22.5l45 45q9 10 22.5 10t22.5 -10zM576 128q185 0 316.5 131.5t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5
+t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_521" unicode="&#xf22c;" horiz-adv-x="1280" 
+d="M1152 960q0 -221 -147.5 -384.5t-364.5 -187.5v-612q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v612q-217 24 -364.5 187.5t-147.5 384.5q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM576 512q185 0 316.5 131.5
+t131.5 316.5t-131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5z" />
+    <glyph glyph-name="_522" unicode="&#xf22d;" horiz-adv-x="1280" 
+d="M1024 576q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5t131.5 -316.5t316.5 -131.5t316.5 131.5t131.5 316.5zM1152 576q0 -117 -45.5 -223.5t-123 -184t-184 -123t-223.5 -45.5t-223.5 45.5t-184 123t-123 184t-45.5 223.5t45.5 223.5t123 184t184 123
+t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5z" />
+    <glyph glyph-name="_523" unicode="&#xf22e;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="_524" unicode="&#xf22f;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="_525" unicode="&#xf230;" 
+d="M1451 1408q35 0 60 -25t25 -60v-1366q0 -35 -25 -60t-60 -25h-391v595h199l30 232h-229v148q0 56 23.5 84t91.5 28l122 1v207q-63 9 -178 9q-136 0 -217.5 -80t-81.5 -226v-171h-200v-232h200v-595h-735q-35 0 -60 25t-25 60v1366q0 35 25 60t60 25h1366z" />
+    <glyph glyph-name="_526" unicode="&#xf231;" horiz-adv-x="1280" 
+d="M0 939q0 108 37.5 203.5t103.5 166.5t152 123t185 78t202 26q158 0 294 -66.5t221 -193.5t85 -287q0 -96 -19 -188t-60 -177t-100 -149.5t-145 -103t-189 -38.5q-68 0 -135 32t-96 88q-10 -39 -28 -112.5t-23.5 -95t-20.5 -71t-26 -71t-32 -62.5t-46 -77.5t-62 -86.5
+l-14 -5l-9 10q-15 157 -15 188q0 92 21.5 206.5t66.5 287.5t52 203q-32 65 -32 169q0 83 52 156t132 73q61 0 95 -40.5t34 -102.5q0 -66 -44 -191t-44 -187q0 -63 45 -104.5t109 -41.5q55 0 102 25t78.5 68t56 95t38 110.5t20 111t6.5 99.5q0 173 -109.5 269.5t-285.5 96.5
+q-200 0 -334 -129.5t-134 -328.5q0 -44 12.5 -85t27 -65t27 -45.5t12.5 -30.5q0 -28 -15 -73t-37 -45q-2 0 -17 3q-51 15 -90.5 56t-61 94.5t-32.5 108t-11 106.5z" />
+    <glyph glyph-name="_527" unicode="&#xf232;" 
+d="M985 562q13 0 97.5 -44t89.5 -53q2 -5 2 -15q0 -33 -17 -76q-16 -39 -71 -65.5t-102 -26.5q-57 0 -190 62q-98 45 -170 118t-148 185q-72 107 -71 194v8q3 91 74 158q24 22 52 22q6 0 18 -1.5t19 -1.5q19 0 26.5 -6.5t15.5 -27.5q8 -20 33 -88t25 -75q0 -21 -34.5 -57.5
+t-34.5 -46.5q0 -7 5 -15q34 -73 102 -137q56 -53 151 -101q12 -7 22 -7q15 0 54 48.5t52 48.5zM782 32q127 0 243.5 50t200.5 134t134 200.5t50 243.5t-50 243.5t-134 200.5t-200.5 134t-243.5 50t-243.5 -50t-200.5 -134t-134 -200.5t-50 -243.5q0 -203 120 -368l-79 -233
+l242 77q158 -104 345 -104zM782 1414q153 0 292.5 -60t240.5 -161t161 -240.5t60 -292.5t-60 -292.5t-161 -240.5t-240.5 -161t-292.5 -60q-195 0 -365 94l-417 -134l136 405q-108 178 -108 389q0 153 60 292.5t161 240.5t240.5 161t292.5 60z" />
+    <glyph glyph-name="_528" unicode="&#xf233;" horiz-adv-x="1792" 
+d="M128 128h1024v128h-1024v-128zM128 640h1024v128h-1024v-128zM1696 192q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM128 1152h1024v128h-1024v-128zM1696 704q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1696 1216
+q0 40 -28 68t-68 28t-68 -28t-28 -68t28 -68t68 -28t68 28t28 68zM1792 384v-384h-1792v384h1792zM1792 896v-384h-1792v384h1792zM1792 1408v-384h-1792v384h1792z" />
+    <glyph glyph-name="_529" unicode="&#xf234;" horiz-adv-x="2048" 
+d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1664 512h352q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-352v-352q0 -13 -9.5 -22.5t-22.5 -9.5h-192q-13 0 -22.5 9.5
+t-9.5 22.5v352h-352q-13 0 -22.5 9.5t-9.5 22.5v192q0 13 9.5 22.5t22.5 9.5h352v352q0 13 9.5 22.5t22.5 9.5h192q13 0 22.5 -9.5t9.5 -22.5v-352zM928 288q0 -52 38 -90t90 -38h256v-238q-68 -50 -171 -50h-874q-121 0 -194 69t-73 190q0 53 3.5 103.5t14 109t26.5 108.5
+t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q79 -61 154.5 -91.5t164.5 -30.5t164.5 30.5t154.5 91.5q20 17 39 17q132 0 217 -96h-223q-52 0 -90 -38t-38 -90v-192z" />
+    <glyph glyph-name="_530" unicode="&#xf235;" horiz-adv-x="2048" 
+d="M704 640q-159 0 -271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5t-112.5 -271.5t-271.5 -112.5zM1781 320l249 -249q9 -9 9 -23q0 -13 -9 -22l-136 -136q-9 -9 -22 -9q-14 0 -23 9l-249 249l-249 -249q-9 -9 -23 -9q-13 0 -22 9l-136 136
+q-9 9 -9 22q0 14 9 23l249 249l-249 249q-9 9 -9 23q0 13 9 22l136 136q9 9 22 9q14 0 23 -9l249 -249l249 249q9 9 23 9q13 0 22 -9l136 -136q9 -9 9 -22q0 -14 -9 -23zM1283 320l-181 -181q-37 -37 -37 -91q0 -53 37 -90l83 -83q-21 -3 -44 -3h-874q-121 0 -194 69
+t-73 190q0 53 3.5 103.5t14 109t26.5 108.5t43 97.5t62 81t85.5 53.5t111.5 20q19 0 39 -17q154 -122 319 -122t319 122q20 17 39 17q28 0 57 -6q-28 -27 -41 -50t-13 -56q0 -54 37 -91z" />
+    <glyph glyph-name="_531" unicode="&#xf236;" horiz-adv-x="2048" 
+d="M256 512h1728q26 0 45 -19t19 -45v-448h-256v256h-1536v-256h-256v1216q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-704zM832 832q0 106 -75 181t-181 75t-181 -75t-75 -181t75 -181t181 -75t181 75t75 181zM2048 576v64q0 159 -112.5 271.5t-271.5 112.5h-704
+q-26 0 -45 -19t-19 -45v-384h1152z" />
+    <glyph glyph-name="_532" unicode="&#xf237;" 
+d="M1536 1536l-192 -448h192v-192h-274l-55 -128h329v-192h-411l-357 -832l-357 832h-411v192h329l-55 128h-274v192h192l-192 448h256l323 -768h378l323 768h256zM768 320l108 256h-216z" />
+    <glyph glyph-name="_533" unicode="&#xf238;" 
+d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM768 192q80 0 136 56t56 136t-56 136t-136 56
+t-136 -56t-56 -136t56 -136t136 -56zM1344 768v512h-1152v-512h1152z" />
+    <glyph glyph-name="_534" unicode="&#xf239;" 
+d="M1088 1536q185 0 316.5 -93.5t131.5 -226.5v-896q0 -130 -125.5 -222t-305.5 -97l213 -202q16 -15 8 -35t-30 -20h-1056q-22 0 -30 20t8 35l213 202q-180 5 -305.5 97t-125.5 222v896q0 133 131.5 226.5t316.5 93.5h640zM288 224q66 0 113 47t47 113t-47 113t-113 47
+t-113 -47t-47 -113t47 -113t113 -47zM704 768v512h-544v-512h544zM1248 224q66 0 113 47t47 113t-47 113t-113 47t-113 -47t-47 -113t47 -113t113 -47zM1408 768v512h-576v-512h576z" />
+    <glyph glyph-name="_535" unicode="&#xf23a;" horiz-adv-x="1792" 
+d="M597 1115v-1173q0 -25 -12.5 -42.5t-36.5 -17.5q-17 0 -33 8l-465 233q-21 10 -35.5 33.5t-14.5 46.5v1140q0 20 10 34t29 14q14 0 44 -15l511 -256q3 -3 3 -5zM661 1014l534 -866l-534 266v600zM1792 996v-1054q0 -25 -14 -40.5t-38 -15.5t-47 13l-441 220zM1789 1116
+q0 -3 -256.5 -419.5t-300.5 -487.5l-390 634l324 527q17 28 52 28q14 0 26 -6l541 -270q4 -2 4 -6z" />
+    <glyph glyph-name="_536" unicode="&#xf23b;" 
+d="M809 532l266 499h-112l-157 -312q-24 -48 -44 -92l-42 92l-155 312h-120l263 -493v-324h101v318zM1536 1408v-1536h-1536v1536h1536z" />
+    <glyph glyph-name="_537" unicode="&#xf23c;" horiz-adv-x="2296" 
+d="M478 -139q-8 -16 -27 -34.5t-37 -25.5q-25 -9 -51.5 3.5t-28.5 31.5q-1 22 40 55t68 38q23 4 34 -21.5t2 -46.5zM1819 -139q7 -16 26 -34.5t38 -25.5q25 -9 51.5 3.5t27.5 31.5q2 22 -39.5 55t-68.5 38q-22 4 -33 -21.5t-2 -46.5zM1867 -30q13 -27 56.5 -59.5t77.5 -41.5
+q45 -13 82 4.5t37 50.5q0 46 -67.5 100.5t-115.5 59.5q-40 5 -63.5 -37.5t-6.5 -76.5zM428 -30q-13 -27 -56 -59.5t-77 -41.5q-45 -13 -82 4.5t-37 50.5q0 46 67.5 100.5t115.5 59.5q40 5 63 -37.5t6 -76.5zM1158 1094h1q-41 0 -76 -15q27 -8 44 -30.5t17 -49.5
+q0 -35 -27 -60t-65 -25q-52 0 -80 43q-5 -23 -5 -42q0 -74 56 -126.5t135 -52.5q80 0 136 52.5t56 126.5t-56 126.5t-136 52.5zM1462 1312q-99 109 -220.5 131.5t-245.5 -44.5q27 60 82.5 96.5t118 39.5t121.5 -17t99.5 -74.5t44.5 -131.5zM2212 73q8 -11 -11 -42
+q7 -23 7 -40q1 -56 -44.5 -112.5t-109.5 -91.5t-118 -37q-48 -2 -92 21.5t-66 65.5q-687 -25 -1259 0q-23 -41 -66.5 -65t-92.5 -22q-86 3 -179.5 80.5t-92.5 160.5q2 22 7 40q-19 31 -11 42q6 10 31 1q14 22 41 51q-7 29 2 38q11 10 39 -4q29 20 59 34q0 29 13 37
+q23 12 51 -16q35 5 61 -2q18 -4 38 -19v73q-11 0 -18 2q-53 10 -97 44.5t-55 87.5q-9 38 0 81q15 62 93 95q2 17 19 35.5t36 23.5t33 -7.5t19 -30.5h13q46 -5 60 -23q3 -3 5 -7q10 1 30.5 3.5t30.5 3.5q-15 11 -30 17q-23 40 -91 43q0 6 1 10q-62 2 -118.5 18.5t-84.5 47.5
+q-32 36 -42.5 92t-2.5 112q16 126 90 179q23 16 52 4.5t32 -40.5q0 -1 1.5 -14t2.5 -21t3 -20t5.5 -19t8.5 -10q27 -14 76 -12q48 46 98 74q-40 4 -162 -14l47 46q61 58 163 111q145 73 282 86q-20 8 -41 15.5t-47 14t-42.5 10.5t-47.5 11t-43 10q595 126 904 -139
+q98 -84 158 -222q85 -10 121 9h1q5 3 8.5 10t5.5 19t3 19.5t3 21.5l1 14q3 28 32 40t52 -5q73 -52 91 -178q7 -57 -3.5 -113t-42.5 -91q-28 -32 -83.5 -48.5t-115.5 -18.5v-10q-71 -2 -95 -43q-14 -5 -31 -17q11 -1 32 -3.5t30 -3.5q1 5 5 8q16 18 60 23h13q5 18 19 30t33 8
+t36 -23t19 -36q79 -32 93 -95q9 -40 1 -81q-12 -53 -56 -88t-97 -44q-10 -2 -17 -2q0 -49 -1 -73q20 15 38 19q26 7 61 2q28 28 51 16q14 -9 14 -37q33 -16 59 -34q27 13 38 4q10 -10 2 -38q28 -30 41 -51q23 8 31 -1zM1937 1025q0 -29 -9 -54q82 -32 112 -132
+q4 37 -9.5 98.5t-41.5 90.5q-20 19 -36 17t-16 -20zM1859 925q35 -42 47.5 -108.5t-0.5 -124.5q67 13 97 45q13 14 18 28q-3 64 -31 114.5t-79 66.5q-15 -15 -52 -21zM1822 921q-30 0 -44 1q42 -115 53 -239q21 0 43 3q16 68 1 135t-53 100zM258 839q30 100 112 132
+q-9 25 -9 54q0 18 -16.5 20t-35.5 -17q-28 -29 -41.5 -90.5t-9.5 -98.5zM294 737q29 -31 97 -45q-13 58 -0.5 124.5t47.5 108.5v0q-37 6 -52 21q-51 -16 -78.5 -66t-31.5 -115q9 -17 18 -28zM471 683q14 124 73 235q-19 -4 -55 -18l-45 -19v1q-46 -89 -20 -196q25 -3 47 -3z
+M1434 644q8 -38 16.5 -108.5t11.5 -89.5q3 -18 9.5 -21.5t23.5 4.5q40 20 62 85.5t23 125.5q-24 2 -146 4zM1152 1285q-116 0 -199 -82.5t-83 -198.5q0 -117 83 -199.5t199 -82.5t199 82.5t83 199.5q0 116 -83 198.5t-199 82.5zM1380 646q-105 2 -211 0v1q-1 -27 2.5 -86
+t13.5 -66q29 -14 93.5 -14.5t95.5 10.5q9 3 11 39t-0.5 69.5t-4.5 46.5zM1112 447q8 4 9.5 48t-0.5 88t-4 63v1q-212 -3 -214 -3q-4 -20 -7 -62t0 -83t14 -46q34 -15 101 -16t101 10zM718 636q-16 -59 4.5 -118.5t77.5 -84.5q15 -8 24 -5t12 21q3 16 8 90t10 103
+q-69 -2 -136 -6zM591 510q3 -23 -34 -36q132 -141 271.5 -240t305.5 -154q172 49 310.5 146t293.5 250q-33 13 -30 34q0 2 0.5 3.5t1.5 3t1 2.5v1v-1q-17 2 -50 5.5t-48 4.5q-26 -90 -82 -132q-51 -38 -82 1q-5 6 -9 14q-7 13 -17 62q-2 -5 -5 -9t-7.5 -7t-8 -5.5t-9.5 -4
+l-10 -2.5t-12 -2l-12 -1.5t-13.5 -1t-13.5 -0.5q-106 -9 -163 11q-4 -17 -10 -26.5t-21 -15t-23 -7t-36 -3.5q-6 -1 -9 -1q-179 -17 -203 40q-2 -63 -56 -54q-47 8 -91 54q-12 13 -20 26q-17 29 -26 65q-58 -6 -87 -10q1 -2 4 -10zM507 -118q3 14 3 30q-17 71 -51 130
+t-73 70q-41 12 -101.5 -14.5t-104.5 -80t-39 -107.5q35 -53 100 -93t119 -42q51 -2 94 28t53 79zM510 53q23 -63 27 -119q195 113 392 174q-98 52 -180.5 120t-179.5 165q-6 -4 -29 -13q0 -1 -1 -4t-1 -5q31 -18 22 -37q-12 -23 -56 -34q-10 -13 -29 -24h-1q-2 -83 1 -150
+q19 -34 35 -73zM579 -113q532 -21 1145 0q-254 147 -428 196q-76 -35 -156 -57q-8 -3 -16 0q-65 21 -129 49q-208 -60 -416 -188h-1v-1q1 0 1 1zM1763 -67q4 54 28 120q14 38 33 71l-1 -1q3 77 3 153q-15 8 -30 25q-42 9 -56 33q-9 20 22 38q-2 4 -2 9q-16 4 -28 12
+q-204 -190 -383 -284q198 -59 414 -176zM2155 -90q5 54 -39 107.5t-104 80t-102 14.5q-38 -11 -72.5 -70.5t-51.5 -129.5q0 -16 3 -30q10 -49 53 -79t94 -28q54 2 119 42t100 93z" />
+    <glyph glyph-name="_538" unicode="&#xf23d;" horiz-adv-x="2304" 
+d="M1524 -25q0 -68 -48 -116t-116 -48t-116.5 48t-48.5 116t48.5 116.5t116.5 48.5t116 -48.5t48 -116.5zM775 -25q0 -68 -48.5 -116t-116.5 -48t-116 48t-48 116t48 116.5t116 48.5t116.5 -48.5t48.5 -116.5zM0 1469q57 -60 110.5 -104.5t121 -82t136 -63t166 -45.5
+t200 -31.5t250 -18.5t304 -9.5t372.5 -2.5q139 0 244.5 -5t181 -16.5t124 -27.5t71 -39.5t24 -51.5t-19.5 -64t-56.5 -76.5t-89.5 -91t-116 -104.5t-139 -119q-185 -157 -286 -247q29 51 76.5 109t94 105.5t94.5 98.5t83 91.5t54 80.5t13 70t-45.5 55.5t-116.5 41t-204 23.5
+t-304 5q-168 -2 -314 6t-256 23t-204.5 41t-159.5 51.5t-122.5 62.5t-91.5 66.5t-68 71.5t-50.5 69.5t-40 68t-36.5 59.5z" />
+    <glyph glyph-name="_539" unicode="&#xf23e;" horiz-adv-x="1792" 
+d="M896 1472q-169 0 -323 -66t-265.5 -177.5t-177.5 -265.5t-66 -323t66 -323t177.5 -265.5t265.5 -177.5t323 -66t323 66t265.5 177.5t177.5 265.5t66 323t-66 323t-177.5 265.5t-265.5 177.5t-323 66zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348
+t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71zM496 704q16 0 16 -16v-480q0 -16 -16 -16h-32q-16 0 -16 16v480q0 16 16 16h32zM896 640q53 0 90.5 -37.5t37.5 -90.5q0 -35 -17.5 -64t-46.5 -46v-114q0 -14 -9 -23
+t-23 -9h-64q-14 0 -23 9t-9 23v114q-29 17 -46.5 46t-17.5 64q0 53 37.5 90.5t90.5 37.5zM896 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM544 928v-96
+q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 93 65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5v-96q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v96q0 146 -103 249t-249 103t-249 -103t-103 -249zM1408 192v512q0 26 -19 45t-45 19h-896q-26 0 -45 -19t-19 -45v-512
+q0 -26 19 -45t45 -19h896q26 0 45 19t19 45z" />
+    <glyph glyph-name="_540" unicode="&#xf240;" horiz-adv-x="2304" 
+d="M1920 1024v-768h-1664v768h1664zM2048 448h128v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288zM2304 832v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113
+v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160q53 0 90.5 -37.5t37.5 -90.5z" />
+    <glyph glyph-name="_541" unicode="&#xf241;" horiz-adv-x="2304" 
+d="M256 256v768h1280v-768h-1280zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
+h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
+    <glyph glyph-name="_542" unicode="&#xf242;" horiz-adv-x="2304" 
+d="M256 256v768h896v-768h-896zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
+h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
+    <glyph glyph-name="_543" unicode="&#xf243;" horiz-adv-x="2304" 
+d="M256 256v768h512v-768h-512zM2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9
+h-1856q-14 0 -23 -9t-9 -23v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
+    <glyph glyph-name="_544" unicode="&#xf244;" horiz-adv-x="2304" 
+d="M2176 960q53 0 90.5 -37.5t37.5 -90.5v-384q0 -53 -37.5 -90.5t-90.5 -37.5v-160q0 -66 -47 -113t-113 -47h-1856q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1856q66 0 113 -47t47 -113v-160zM2176 448v384h-128v288q0 14 -9 23t-23 9h-1856q-14 0 -23 -9t-9 -23
+v-960q0 -14 9 -23t23 -9h1856q14 0 23 9t9 23v288h128z" />
+    <glyph glyph-name="_545" unicode="&#xf245;" horiz-adv-x="1280" 
+d="M1133 493q31 -30 14 -69q-17 -40 -59 -40h-382l201 -476q10 -25 0 -49t-34 -35l-177 -75q-25 -10 -49 0t-35 34l-191 452l-312 -312q-19 -19 -45 -19q-12 0 -24 5q-40 17 -40 59v1504q0 42 40 59q12 5 24 5q27 0 45 -19z" />
+    <glyph glyph-name="_546" unicode="&#xf246;" horiz-adv-x="1024" 
+d="M832 1408q-320 0 -320 -224v-416h128v-128h-128v-544q0 -224 320 -224h64v-128h-64q-272 0 -384 146q-112 -146 -384 -146h-64v128h64q320 0 320 224v544h-128v128h128v416q0 224 -320 224h-64v128h64q272 0 384 -146q112 146 384 146h64v-128h-64z" />
+    <glyph glyph-name="_547" unicode="&#xf247;" horiz-adv-x="2048" 
+d="M2048 1152h-128v-1024h128v-384h-384v128h-1280v-128h-384v384h128v1024h-128v384h384v-128h1280v128h384v-384zM1792 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 -128v128h-128v-128h128zM1664 0v128h128v1024h-128v128h-1280v-128h-128v-1024h128v-128
+h1280zM1920 -128v128h-128v-128h128zM1280 896h384v-768h-896v256h-384v768h896v-256zM512 512h640v512h-640v-512zM1536 256v512h-256v-384h-384v-128h640z" />
+    <glyph glyph-name="_548" unicode="&#xf248;" horiz-adv-x="2304" 
+d="M2304 768h-128v-640h128v-384h-384v128h-896v-128h-384v384h128v128h-384v-128h-384v384h128v640h-128v384h384v-128h896v128h384v-384h-128v-128h384v128h384v-384zM2048 1024v-128h128v128h-128zM1408 1408v-128h128v128h-128zM128 1408v-128h128v128h-128zM256 256
+v128h-128v-128h128zM1536 384h-128v-128h128v128zM384 384h896v128h128v640h-128v128h-896v-128h-128v-640h128v-128zM896 -128v128h-128v-128h128zM2176 -128v128h-128v-128h128zM2048 128v640h-128v128h-384v-384h128v-384h-384v128h-384v-128h128v-128h896v128h128z" />
+    <glyph glyph-name="_549" unicode="&#xf249;" 
+d="M1024 288v-416h-928q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68v-928h-416q-40 0 -68 -28t-28 -68zM1152 256h381q-15 -82 -65 -132l-184 -184q-50 -50 -132 -65v381z" />
+    <glyph glyph-name="_550" unicode="&#xf24a;" 
+d="M1400 256h-248v-248q29 10 41 22l185 185q12 12 22 41zM1120 384h288v896h-1280v-1280h896v288q0 40 28 68t68 28zM1536 1312v-1024q0 -40 -20 -88t-48 -76l-184 -184q-28 -28 -76 -48t-88 -20h-1024q-40 0 -68 28t-28 68v1344q0 40 28 68t68 28h1344q40 0 68 -28t28 -68
+z" />
+    <glyph glyph-name="_551" unicode="&#xf24b;" horiz-adv-x="2304" 
+d="M1951 538q0 -26 -15.5 -44.5t-38.5 -23.5q-8 -2 -18 -2h-153v140h153q10 0 18 -2q23 -5 38.5 -23.5t15.5 -44.5zM1933 751q0 -25 -15 -42t-38 -21q-3 -1 -15 -1h-139v129h139q3 0 8.5 -0.5t6.5 -0.5q23 -4 38 -21.5t15 -42.5zM728 587v308h-228v-308q0 -58 -38 -94.5
+t-105 -36.5q-108 0 -229 59v-112q53 -15 121 -23t109 -9l42 -1q328 0 328 217zM1442 403v113q-99 -52 -200 -59q-108 -8 -169 41t-61 142t61 142t169 41q101 -7 200 -58v112q-48 12 -100 19.5t-80 9.5l-28 2q-127 6 -218.5 -14t-140.5 -60t-71 -88t-22 -106t22 -106t71 -88
+t140.5 -60t218.5 -14q101 4 208 31zM2176 518q0 54 -43 88.5t-109 39.5v3q57 8 89 41.5t32 79.5q0 55 -41 88t-107 36q-3 0 -12 0.5t-14 0.5h-455v-510h491q74 0 121.5 36.5t47.5 96.5zM2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90
+t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_552" unicode="&#xf24c;" horiz-adv-x="2304" 
+d="M858 295v693q-106 -41 -172 -135.5t-66 -211.5t66 -211.5t172 -134.5zM1362 641q0 117 -66 211.5t-172 135.5v-694q106 41 172 135.5t66 211.5zM1577 641q0 -159 -78.5 -294t-213.5 -213.5t-294 -78.5q-119 0 -227.5 46.5t-187 125t-125 187t-46.5 227.5q0 159 78.5 294
+t213.5 213.5t294 78.5t294 -78.5t213.5 -213.5t78.5 -294zM1960 634q0 139 -55.5 261.5t-147.5 205.5t-213.5 131t-252.5 48h-301q-176 0 -323.5 -81t-235 -230t-87.5 -335q0 -171 87 -317.5t236 -231.5t323 -85h301q129 0 251.5 50.5t214.5 135t147.5 202.5t55.5 246z
+M2304 1280v-1280q0 -52 -38 -90t-90 -38h-2048q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h2048q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_553" unicode="&#xf24d;" horiz-adv-x="1792" 
+d="M1664 -96v1088q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h1088q13 0 22.5 9.5t9.5 22.5zM1792 992v-1088q0 -66 -47 -113t-113 -47h-1088q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113
+zM1408 1376v-160h-128v160q0 13 -9.5 22.5t-22.5 9.5h-1088q-13 0 -22.5 -9.5t-9.5 -22.5v-1088q0 -13 9.5 -22.5t22.5 -9.5h160v-128h-160q-66 0 -113 47t-47 113v1088q0 66 47 113t113 47h1088q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="_554" unicode="&#xf24e;" horiz-adv-x="2304" 
+d="M1728 1088l-384 -704h768zM448 1088l-384 -704h768zM1269 1280q-14 -40 -45.5 -71.5t-71.5 -45.5v-1291h608q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1344q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h608v1291q-40 14 -71.5 45.5t-45.5 71.5h-491q-14 0 -23 9t-9 23v64
+q0 14 9 23t23 9h491q21 57 70 92.5t111 35.5t111 -35.5t70 -92.5h491q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-491zM1088 1264q33 0 56.5 23.5t23.5 56.5t-23.5 56.5t-56.5 23.5t-56.5 -23.5t-23.5 -56.5t23.5 -56.5t56.5 -23.5zM2176 384q0 -73 -46.5 -131t-117.5 -91
+t-144.5 -49.5t-139.5 -16.5t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81zM896 384q0 -73 -46.5 -131t-117.5 -91t-144.5 -49.5t-139.5 -16.5
+t-139.5 16.5t-144.5 49.5t-117.5 91t-46.5 131q0 11 35 81t92 174.5t107 195.5t102 184t56 100q18 33 56 33t56 -33q4 -7 56 -100t102 -184t107 -195.5t92 -174.5t35 -81z" />
+    <glyph glyph-name="_555" unicode="&#xf250;" 
+d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
+t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-77 -29 -149 -92.5
+t-129.5 -152.5t-92.5 -210t-35 -253h1024q0 132 -35 253t-92.5 210t-129.5 152.5t-149 92.5q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
+    <glyph glyph-name="_556" unicode="&#xf251;" 
+d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
+t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -66 9 -128h1006q9 61 9 128zM1280 -128q0 130 -34 249.5t-90.5 208t-126.5 152t-146 94.5h-230q-76 -31 -146 -94.5t-126.5 -152t-90.5 -208t-34 -249.5h1024z" />
+    <glyph glyph-name="_557" unicode="&#xf252;" 
+d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
+t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM1280 1408h-1024q0 -206 85 -384h854q85 178 85 384zM1223 192q-54 141 -145.5 241.5t-194.5 142.5h-230q-103 -42 -194.5 -142.5t-145.5 -241.5h910z" />
+    <glyph glyph-name="_558" unicode="&#xf253;" 
+d="M1408 1408q0 -261 -106.5 -461.5t-266.5 -306.5q160 -106 266.5 -306.5t106.5 -461.5h96q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96q0 261 106.5 461.5t266.5 306.5q-160 106 -266.5 306.5t-106.5 461.5h-96q-14 0 -23 9
+t-9 23v64q0 14 9 23t23 9h1472q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-96zM874 700q77 29 149 92.5t129.5 152.5t92.5 210t35 253h-1024q0 -132 35 -253t92.5 -210t129.5 -152.5t149 -92.5q19 -7 30.5 -23.5t11.5 -36.5t-11.5 -36.5t-30.5 -23.5q-137 -51 -244 -196
+h700q-107 145 -244 196q-19 7 -30.5 23.5t-11.5 36.5t11.5 36.5t30.5 23.5z" />
+    <glyph glyph-name="_559" unicode="&#xf254;" 
+d="M1504 -64q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472zM130 0q3 55 16 107t30 95t46 87t53.5 76t64.5 69.5t66 60t70.5 55t66.5 47.5t65 43q-43 28 -65 43t-66.5 47.5t-70.5 55t-66 60t-64.5 69.5t-53.5 76t-46 87
+t-30 95t-16 107h1276q-3 -55 -16 -107t-30 -95t-46 -87t-53.5 -76t-64.5 -69.5t-66 -60t-70.5 -55t-66.5 -47.5t-65 -43q43 -28 65 -43t66.5 -47.5t70.5 -55t66 -60t64.5 -69.5t53.5 -76t46 -87t30 -95t16 -107h-1276zM1504 1536q14 0 23 -9t9 -23v-128q0 -14 -9 -23t-23 -9
+h-1472q-14 0 -23 9t-9 23v128q0 14 9 23t23 9h1472z" />
+    <glyph glyph-name="_560" unicode="&#xf255;" 
+d="M768 1152q-53 0 -90.5 -37.5t-37.5 -90.5v-128h-32v93q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-429l-32 30v172q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-224q0 -47 35 -82l310 -296q39 -39 39 -102q0 -26 19 -45t45 -19h640q26 0 45 19t19 45v25
+q0 41 10 77l108 436q10 36 10 77v246q0 48 -32 81.5t-80 33.5q-46 0 -79 -33t-33 -79v-32h-32v125q0 40 -25 72.5t-64 40.5q-14 2 -23 2q-46 0 -79 -33t-33 -79v-128h-32v122q0 51 -32.5 89.5t-82.5 43.5q-5 1 -13 1zM768 1280q84 0 149 -50q57 34 123 34q59 0 111 -27
+t86 -76q27 7 59 7q100 0 170 -71.5t70 -171.5v-246q0 -51 -13 -108l-109 -436q-6 -24 -6 -71q0 -80 -56 -136t-136 -56h-640q-84 0 -138 58.5t-54 142.5l-308 296q-76 73 -76 175v224q0 99 70.5 169.5t169.5 70.5q11 0 16 -1q6 95 75.5 160t164.5 65q52 0 98 -21
+q72 69 174 69z" />
+    <glyph glyph-name="_561" unicode="&#xf256;" horiz-adv-x="1792" 
+d="M880 1408q-46 0 -79 -33t-33 -79v-656h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528v-256l-154 205q-38 51 -102 51q-53 0 -90.5 -37.5t-37.5 -90.5q0 -43 26 -77l384 -512q38 -51 102 -51h688q34 0 61 22t34 56l76 405q5 32 5 59v498q0 46 -33 79t-79 33t-79 -33
+t-33 -79v-272h-32v528q0 46 -33 79t-79 33t-79 -33t-33 -79v-528h-32v656q0 46 -33 79t-79 33zM880 1536q68 0 125.5 -35.5t88.5 -96.5q19 4 42 4q99 0 169.5 -70.5t70.5 -169.5v-17q105 6 180.5 -64t75.5 -175v-498q0 -40 -8 -83l-76 -404q-14 -79 -76.5 -131t-143.5 -52
+h-688q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 106 75 181t181 75q78 0 128 -34v434q0 99 70.5 169.5t169.5 70.5q23 0 42 -4q31 61 88.5 96.5t125.5 35.5z" />
+    <glyph glyph-name="_562" unicode="&#xf257;" horiz-adv-x="1792" 
+d="M1073 -128h-177q-163 0 -226 141q-23 49 -23 102v5q-62 30 -98.5 88.5t-36.5 127.5q0 38 5 48h-261q-106 0 -181 75t-75 181t75 181t181 75h113l-44 17q-74 28 -119.5 93.5t-45.5 145.5q0 106 75 181t181 75q46 0 91 -17l628 -239h401q106 0 181 -75t75 -181v-668
+q0 -88 -54 -157.5t-140 -90.5l-339 -85q-92 -23 -186 -23zM1024 583l-155 -71l-163 -74q-30 -14 -48 -41.5t-18 -60.5q0 -46 33 -79t79 -33q26 0 46 10l338 154q-49 10 -80.5 50t-31.5 90v55zM1344 272q0 46 -33 79t-79 33q-26 0 -46 -10l-290 -132q-28 -13 -37 -17
+t-30.5 -17t-29.5 -23.5t-16 -29t-8 -40.5q0 -50 31.5 -82t81.5 -32q20 0 38 9l352 160q30 14 48 41.5t18 60.5zM1112 1024l-650 248q-24 8 -46 8q-53 0 -90.5 -37.5t-37.5 -90.5q0 -40 22.5 -73t59.5 -47l526 -200v-64h-640q-53 0 -90.5 -37.5t-37.5 -90.5t37.5 -90.5
+t90.5 -37.5h535l233 106v198q0 63 46 106l111 102h-69zM1073 0q82 0 155 19l339 85q43 11 70 45.5t27 78.5v668q0 53 -37.5 90.5t-90.5 37.5h-308l-136 -126q-36 -33 -36 -82v-296q0 -46 33 -77t79 -31t79 35t33 81v208h32v-208q0 -70 -57 -114q52 -8 86.5 -48.5t34.5 -93.5
+q0 -42 -23 -78t-61 -53l-310 -141h91z" />
+    <glyph glyph-name="_563" unicode="&#xf258;" horiz-adv-x="2048" 
+d="M1151 1536q61 0 116 -28t91 -77l572 -781q118 -159 118 -359v-355q0 -80 -56 -136t-136 -56h-384q-80 0 -136 56t-56 136v177l-286 143h-546q-80 0 -136 56t-56 136v32q0 119 84.5 203.5t203.5 84.5h420l42 128h-686q-100 0 -173.5 67.5t-81.5 166.5q-65 79 -65 182v32
+q0 80 56 136t136 56h959zM1920 -64v355q0 157 -93 284l-573 781q-39 52 -103 52h-959q-26 0 -45 -19t-19 -45q0 -32 1.5 -49.5t9.5 -40.5t25 -43q10 31 35.5 50t56.5 19h832v-32h-832q-26 0 -45 -19t-19 -45q0 -44 3 -58q8 -44 44 -73t81 -29h640h91q40 0 68 -28t28 -68
+q0 -15 -5 -30l-64 -192q-10 -29 -35 -47.5t-56 -18.5h-443q-66 0 -113 -47t-47 -113v-32q0 -26 19 -45t45 -19h561q16 0 29 -7l317 -158q24 -13 38.5 -36t14.5 -50v-197q0 -26 19 -45t45 -19h384q26 0 45 19t19 45z" />
+    <glyph glyph-name="_564" unicode="&#xf259;" horiz-adv-x="2048" 
+d="M459 -256q-77 0 -137.5 47.5t-79.5 122.5l-101 401q-13 57 -13 108q0 45 -5 67l-116 477q-7 27 -7 57q0 93 62 161t155 78q17 85 82.5 139t152.5 54q83 0 148 -51.5t85 -132.5l83 -348l103 428q20 81 85 132.5t148 51.5q89 0 155.5 -57.5t80.5 -144.5q92 -10 152 -79
+t60 -162q0 -24 -7 -59l-123 -512q10 7 37.5 28.5t38.5 29.5t35 23t41 20.5t41.5 11t49.5 5.5q105 0 180 -74t75 -179q0 -62 -28.5 -118t-78.5 -94l-507 -380q-68 -51 -153 -51h-694zM1104 1408q-38 0 -68.5 -24t-39.5 -62l-164 -682h-127l-145 602q-9 38 -39.5 62t-68.5 24
+q-48 0 -80 -33t-32 -80q0 -15 3 -28l132 -547h-26l-99 408q-9 37 -40 62.5t-69 25.5q-47 0 -80 -33t-33 -79q0 -14 3 -26l116 -478q7 -28 9 -86t10 -88l100 -401q8 -32 34 -52.5t59 -20.5h694q42 0 76 26l507 379q56 43 56 110q0 52 -37.5 88.5t-89.5 36.5q-43 0 -77 -26
+l-307 -230v227q0 4 32 138t68 282t39 161q4 18 4 29q0 47 -32 81t-79 34q-39 0 -69.5 -24t-39.5 -62l-116 -482h-26l150 624q3 14 3 28q0 48 -31.5 82t-79.5 34z" />
+    <glyph glyph-name="_565" unicode="&#xf25a;" horiz-adv-x="1792" 
+d="M640 1408q-53 0 -90.5 -37.5t-37.5 -90.5v-512v-384l-151 202q-41 54 -107 54q-52 0 -89 -38t-37 -90q0 -43 26 -77l384 -512q38 -51 102 -51h718q22 0 39.5 13.5t22.5 34.5l92 368q24 96 24 194v217q0 41 -28 71t-68 30t-68 -28t-28 -68h-32v61q0 48 -32 81.5t-80 33.5
+q-46 0 -79 -33t-33 -79v-64h-32v90q0 55 -37 94.5t-91 39.5q-53 0 -90.5 -37.5t-37.5 -90.5v-96h-32v570q0 55 -37 94.5t-91 39.5zM640 1536q107 0 181.5 -77.5t74.5 -184.5v-220q22 2 32 2q99 0 173 -69q47 21 99 21q113 0 184 -87q27 7 56 7q94 0 159 -67.5t65 -161.5
+v-217q0 -116 -28 -225l-92 -368q-16 -64 -68 -104.5t-118 -40.5h-718q-60 0 -114.5 27.5t-90.5 74.5l-384 512q-51 68 -51 154q0 105 74.5 180.5t179.5 75.5q71 0 130 -35v547q0 106 75 181t181 75zM768 128v384h-32v-384h32zM1024 128v384h-32v-384h32zM1280 128v384h-32
+v-384h32z" />
+    <glyph glyph-name="_566" unicode="&#xf25b;" 
+d="M1288 889q60 0 107 -23q141 -63 141 -226v-177q0 -94 -23 -186l-85 -339q-21 -86 -90.5 -140t-157.5 -54h-668q-106 0 -181 75t-75 181v401l-239 628q-17 45 -17 91q0 106 75 181t181 75q80 0 145.5 -45.5t93.5 -119.5l17 -44v113q0 106 75 181t181 75t181 -75t75 -181
+v-261q27 5 48 5q69 0 127.5 -36.5t88.5 -98.5zM1072 896q-33 0 -60.5 -18t-41.5 -48l-74 -163l-71 -155h55q50 0 90 -31.5t50 -80.5l154 338q10 20 10 46q0 46 -33 79t-79 33zM1293 761q-22 0 -40.5 -8t-29 -16t-23.5 -29.5t-17 -30.5t-17 -37l-132 -290q-10 -20 -10 -46
+q0 -46 33 -79t79 -33q33 0 60.5 18t41.5 48l160 352q9 18 9 38q0 50 -32 81.5t-82 31.5zM128 1120q0 -22 8 -46l248 -650v-69l102 111q43 46 106 46h198l106 233v535q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5v-640h-64l-200 526q-14 37 -47 59.5t-73 22.5
+q-53 0 -90.5 -37.5t-37.5 -90.5zM1180 -128q44 0 78.5 27t45.5 70l85 339q19 73 19 155v91l-141 -310q-17 -38 -53 -61t-78 -23q-53 0 -93.5 34.5t-48.5 86.5q-44 -57 -114 -57h-208v32h208q46 0 81 33t35 79t-31 79t-77 33h-296q-49 0 -82 -36l-126 -136v-308
+q0 -53 37.5 -90.5t90.5 -37.5h668z" />
+    <glyph glyph-name="_567" unicode="&#xf25c;" horiz-adv-x="1973" 
+d="M857 992v-117q0 -13 -9.5 -22t-22.5 -9h-298v-812q0 -13 -9 -22.5t-22 -9.5h-135q-13 0 -22.5 9t-9.5 23v812h-297q-13 0 -22.5 9t-9.5 22v117q0 14 9 23t23 9h793q13 0 22.5 -9.5t9.5 -22.5zM1895 995l77 -961q1 -13 -8 -24q-10 -10 -23 -10h-134q-12 0 -21 8.5
+t-10 20.5l-46 588l-189 -425q-8 -19 -29 -19h-120q-20 0 -29 19l-188 427l-45 -590q-1 -12 -10 -20.5t-21 -8.5h-135q-13 0 -23 10q-9 10 -9 24l78 961q1 12 10 20.5t21 8.5h142q20 0 29 -19l220 -520q10 -24 20 -51q3 7 9.5 24.5t10.5 26.5l221 520q9 19 29 19h141
+q13 0 22 -8.5t10 -20.5z" />
+    <glyph glyph-name="_568" unicode="&#xf25d;" horiz-adv-x="1792" 
+d="M1042 833q0 88 -60 121q-33 18 -117 18h-123v-281h162q66 0 102 37t36 105zM1094 548l205 -373q8 -17 -1 -31q-8 -16 -27 -16h-152q-20 0 -28 17l-194 365h-155v-350q0 -14 -9 -23t-23 -9h-134q-14 0 -23 9t-9 23v960q0 14 9 23t23 9h294q128 0 190 -24q85 -31 134 -109
+t49 -180q0 -92 -42.5 -165.5t-115.5 -109.5q6 -10 9 -16zM896 1376q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM1792 640
+q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_569" unicode="&#xf25e;" horiz-adv-x="1792" 
+d="M605 303q153 0 257 104q14 18 3 36l-45 82q-6 13 -24 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13.5t-23.5 -14.5t-28.5 -13t-33.5 -9.5t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78
+q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-148 0 -246 -96.5t-98 -240.5q0 -146 97 -241.5t247 -95.5zM1235 303q153 0 257 104q14 18 4 36l-45 82q-8 14 -25 17q-16 2 -27 -11l-4 -3q-4 -4 -11.5 -10t-17.5 -13.5t-23.5 -14.5t-28.5 -13t-33.5 -9.5
+t-37.5 -3.5q-76 0 -125 50t-49 127q0 76 48 125.5t122 49.5q37 0 71.5 -14t50.5 -28l16 -14q11 -11 26 -10q16 2 24 14l53 78q13 20 -2 39q-3 4 -11 12t-30 23.5t-48.5 28t-67.5 22.5t-86 10q-147 0 -245.5 -96.5t-98.5 -240.5q0 -146 97 -241.5t247 -95.5zM896 1376
+q-150 0 -286 -58.5t-234.5 -157t-157 -234.5t-58.5 -286t58.5 -286t157 -234.5t234.5 -157t286 -58.5t286 58.5t234.5 157t157 234.5t58.5 286t-58.5 286t-157 234.5t-234.5 157t-286 58.5zM896 1536q182 0 348 -71t286 -191t191 -286t71 -348t-71 -348t-191 -286t-286 -191
+t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71z" />
+    <glyph glyph-name="f260" unicode="&#xf260;" horiz-adv-x="2048" 
+d="M736 736l384 -384l-384 -384l-672 672l672 672l168 -168l-96 -96l-72 72l-480 -480l480 -480l193 193l-289 287zM1312 1312l672 -672l-672 -672l-168 168l96 96l72 -72l480 480l-480 480l-193 -193l289 -287l-96 -96l-384 384z" />
+    <glyph glyph-name="f261" unicode="&#xf261;" horiz-adv-x="1792" 
+d="M717 182l271 271l-279 279l-88 -88l192 -191l-96 -96l-279 279l279 279l40 -40l87 87l-127 128l-454 -454zM1075 190l454 454l-454 454l-271 -271l279 -279l88 88l-192 191l96 96l279 -279l-279 -279l-40 40l-87 -88zM1792 640q0 -182 -71 -348t-191 -286t-286 -191
+t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_572" unicode="&#xf262;" horiz-adv-x="2304" 
+d="M651 539q0 -39 -27.5 -66.5t-65.5 -27.5q-39 0 -66.5 27.5t-27.5 66.5q0 38 27.5 65.5t66.5 27.5q38 0 65.5 -27.5t27.5 -65.5zM1805 540q0 -39 -27.5 -66.5t-66.5 -27.5t-66.5 27.5t-27.5 66.5t27.5 66t66.5 27t66.5 -27t27.5 -66zM765 539q0 79 -56.5 136t-136.5 57
+t-136.5 -56.5t-56.5 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM1918 540q0 80 -56.5 136.5t-136.5 56.5q-79 0 -136 -56.5t-57 -136.5t56.5 -136.5t136.5 -56.5t136.5 56.5t56.5 136.5zM850 539q0 -116 -81.5 -197.5t-196.5 -81.5q-116 0 -197.5 82t-81.5 197
+t82 196.5t197 81.5t196.5 -81.5t81.5 -196.5zM2004 540q0 -115 -81.5 -196.5t-197.5 -81.5q-115 0 -196.5 81.5t-81.5 196.5t81.5 196.5t196.5 81.5q116 0 197.5 -81.5t81.5 -196.5zM1040 537q0 191 -135.5 326.5t-326.5 135.5q-125 0 -231 -62t-168 -168.5t-62 -231.5
+t62 -231.5t168 -168.5t231 -62q191 0 326.5 135.5t135.5 326.5zM1708 1110q-254 111 -556 111q-319 0 -573 -110q117 0 223 -45.5t182.5 -122.5t122 -183t45.5 -223q0 115 43.5 219.5t118 180.5t177.5 123t217 50zM2187 537q0 191 -135 326.5t-326 135.5t-326.5 -135.5
+t-135.5 -326.5t135.5 -326.5t326.5 -135.5t326 135.5t135 326.5zM1921 1103h383q-44 -51 -75 -114.5t-40 -114.5q110 -151 110 -337q0 -156 -77 -288t-209 -208.5t-287 -76.5q-133 0 -249 56t-196 155q-47 -56 -129 -179q-11 22 -53.5 82.5t-74.5 97.5
+q-80 -99 -196.5 -155.5t-249.5 -56.5q-155 0 -287 76.5t-209 208.5t-77 288q0 186 110 337q-9 51 -40 114.5t-75 114.5h365q149 100 355 156.5t432 56.5q224 0 421 -56t348 -157z" />
+    <glyph glyph-name="f263" unicode="&#xf263;" horiz-adv-x="1280" 
+d="M640 629q-188 0 -321 133t-133 320q0 188 133 321t321 133t321 -133t133 -321q0 -187 -133 -320t-321 -133zM640 1306q-92 0 -157.5 -65.5t-65.5 -158.5q0 -92 65.5 -157.5t157.5 -65.5t157.5 65.5t65.5 157.5q0 93 -65.5 158.5t-157.5 65.5zM1163 574q13 -27 15 -49.5
+t-4.5 -40.5t-26.5 -38.5t-42.5 -37t-61.5 -41.5q-115 -73 -315 -94l73 -72l267 -267q30 -31 30 -74t-30 -73l-12 -13q-31 -30 -74 -30t-74 30q-67 68 -267 268l-267 -268q-31 -30 -74 -30t-73 30l-12 13q-31 30 -31 73t31 74l267 267l72 72q-203 21 -317 94
+q-39 25 -61.5 41.5t-42.5 37t-26.5 38.5t-4.5 40.5t15 49.5q10 20 28 35t42 22t56 -2t65 -35q5 -4 15 -11t43 -24.5t69 -30.5t92 -24t113 -11q91 0 174 25.5t120 50.5l38 25q33 26 65 35t56 2t42 -22t28 -35z" />
+    <glyph glyph-name="_574" unicode="&#xf264;" 
+d="M927 956q0 -66 -46.5 -112.5t-112.5 -46.5t-112.5 46.5t-46.5 112.5t46.5 112.5t112.5 46.5t112.5 -46.5t46.5 -112.5zM1141 593q-10 20 -28 32t-47.5 9.5t-60.5 -27.5q-10 -8 -29 -20t-81 -32t-127 -20t-124 18t-86 36l-27 18q-31 25 -60.5 27.5t-47.5 -9.5t-28 -32
+q-22 -45 -2 -74.5t87 -73.5q83 -53 226 -67l-51 -52q-142 -142 -191 -190q-22 -22 -22 -52.5t22 -52.5l9 -9q22 -22 52.5 -22t52.5 22l191 191q114 -115 191 -191q22 -22 52.5 -22t52.5 22l9 9q22 22 22 52.5t-22 52.5l-191 190l-52 52q141 14 225 67q67 44 87 73.5t-2 74.5
+zM1092 956q0 134 -95 229t-229 95t-229 -95t-95 -229t95 -229t229 -95t229 95t95 229zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="_575" unicode="&#xf265;" horiz-adv-x="1720" 
+d="M1565 1408q65 0 110 -45.5t45 -110.5v-519q0 -176 -68 -336t-182.5 -275t-274 -182.5t-334.5 -67.5q-176 0 -335.5 67.5t-274.5 182.5t-183 275t-68 336v519q0 64 46 110t110 46h1409zM861 344q47 0 82 33l404 388q37 35 37 85q0 49 -34.5 83.5t-83.5 34.5q-47 0 -82 -33
+l-323 -310l-323 310q-35 33 -81 33q-49 0 -83.5 -34.5t-34.5 -83.5q0 -51 36 -85l405 -388q33 -33 81 -33z" />
+    <glyph glyph-name="_576" unicode="&#xf266;" horiz-adv-x="2304" 
+d="M1494 -103l-295 695q-25 -49 -158.5 -305.5t-198.5 -389.5q-1 -1 -27.5 -0.5t-26.5 1.5q-82 193 -255.5 587t-259.5 596q-21 50 -66.5 107.5t-103.5 100.5t-102 43q0 5 -0.5 24t-0.5 27h583v-50q-39 -2 -79.5 -16t-66.5 -43t-10 -64q26 -59 216.5 -499t235.5 -540
+q31 61 140 266.5t131 247.5q-19 39 -126 281t-136 295q-38 69 -201 71v50l513 -1v-47q-60 -2 -93.5 -25t-12.5 -69q33 -70 87 -189.5t86 -187.5q110 214 173 363q24 55 -10 79.5t-129 26.5q1 7 1 25v24q64 0 170.5 0.5t180 1t92.5 0.5v-49q-62 -2 -119 -33t-90 -81
+l-213 -442q13 -33 127.5 -290t121.5 -274l441 1017q-14 38 -49.5 62.5t-65 31.5t-55.5 8v50l460 -4l1 -2l-1 -44q-139 -4 -201 -145q-526 -1216 -559 -1291h-49z" />
+    <glyph glyph-name="_577" unicode="&#xf267;" horiz-adv-x="1792" 
+d="M949 643q0 -26 -16.5 -45t-41.5 -19q-26 0 -45 16.5t-19 41.5q0 26 17 45t42 19t44 -16.5t19 -41.5zM964 585l350 581q-9 -8 -67.5 -62.5t-125.5 -116.5t-136.5 -127t-117 -110.5t-50.5 -51.5l-349 -580q7 7 67 62t126 116.5t136 127t117 111t50 50.5zM1611 640
+q0 -201 -104 -371q-3 2 -17 11t-26.5 16.5t-16.5 7.5q-13 0 -13 -13q0 -10 59 -44q-74 -112 -184.5 -190.5t-241.5 -110.5l-16 67q-1 10 -15 10q-5 0 -8 -5.5t-2 -9.5l16 -68q-72 -15 -146 -15q-199 0 -372 105q1 2 13 20.5t21.5 33.5t9.5 19q0 13 -13 13q-6 0 -17 -14.5
+t-22.5 -34.5t-13.5 -23q-113 75 -192 187.5t-110 244.5l69 15q10 3 10 15q0 5 -5.5 8t-10.5 2l-68 -15q-14 72 -14 139q0 206 109 379q2 -1 18.5 -12t30 -19t17.5 -8q13 0 13 12q0 6 -12.5 15.5t-32.5 21.5l-20 12q77 112 189 189t244 107l15 -67q2 -10 15 -10q5 0 8 5.5
+t2 10.5l-15 66q71 13 134 13q204 0 379 -109q-39 -56 -39 -65q0 -13 12 -13q11 0 48 64q111 -75 187.5 -186t107.5 -241l-56 -12q-10 -2 -10 -16q0 -5 5.5 -8t9.5 -2l57 13q14 -72 14 -140zM1696 640q0 163 -63.5 311t-170.5 255t-255 170.5t-311 63.5t-311 -63.5
+t-255 -170.5t-170.5 -255t-63.5 -311t63.5 -311t170.5 -255t255 -170.5t311 -63.5t311 63.5t255 170.5t170.5 255t63.5 311zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191
+t191 -286t71 -348z" />
+    <glyph glyph-name="_578" unicode="&#xf268;" horiz-adv-x="1792" 
+d="M893 1536q240 2 451 -120q232 -134 352 -372l-742 39q-160 9 -294 -74.5t-185 -229.5l-276 424q128 159 311 245.5t383 87.5zM146 1131l337 -663q72 -143 211 -217t293 -45l-230 -451q-212 33 -385 157.5t-272.5 316t-99.5 411.5q0 267 146 491zM1732 962
+q58 -150 59.5 -310.5t-48.5 -306t-153 -272t-246 -209.5q-230 -133 -498 -119l405 623q88 131 82.5 290.5t-106.5 277.5zM896 942q125 0 213.5 -88.5t88.5 -213.5t-88.5 -213.5t-213.5 -88.5t-213.5 88.5t-88.5 213.5t88.5 213.5t213.5 88.5z" />
+    <glyph glyph-name="_579" unicode="&#xf269;" horiz-adv-x="1792" 
+d="M903 -256q-283 0 -504.5 150.5t-329.5 398.5q-58 131 -67 301t26 332.5t111 312t179 242.5l-11 -281q11 14 68 15.5t70 -15.5q42 81 160.5 138t234.5 59q-54 -45 -119.5 -148.5t-58.5 -163.5q25 -8 62.5 -13.5t63 -7.5t68 -4t50.5 -3q15 -5 9.5 -45.5t-30.5 -75.5
+q-5 -7 -16.5 -18.5t-56.5 -35.5t-101 -34l15 -189l-139 67q-18 -43 -7.5 -81.5t36 -66.5t65.5 -41.5t81 -6.5q51 9 98 34.5t83.5 45t73.5 17.5q61 -4 89.5 -33t19.5 -65q-1 -2 -2.5 -5.5t-8.5 -12.5t-18 -15.5t-31.5 -10.5t-46.5 -1q-60 -95 -144.5 -135.5t-209.5 -29.5
+q74 -61 162.5 -82.5t168.5 -6t154.5 52t128 87.5t80.5 104q43 91 39 192.5t-37.5 188.5t-78.5 125q87 -38 137 -79.5t77 -112.5q15 170 -57.5 343t-209.5 284q265 -77 412 -279.5t151 -517.5q2 -127 -40.5 -255t-123.5 -238t-189 -196t-247.5 -135.5t-288.5 -49.5z" />
+    <glyph glyph-name="_580" unicode="&#xf26a;" horiz-adv-x="1792" 
+d="M1493 1308q-165 110 -359 110q-155 0 -293 -73t-240 -200q-75 -93 -119.5 -218t-48.5 -266v-42q4 -141 48.5 -266t119.5 -218q102 -127 240 -200t293 -73q194 0 359 110q-121 -108 -274.5 -168t-322.5 -60q-29 0 -43 1q-175 8 -333 82t-272 193t-181 281t-67 339
+q0 182 71 348t191 286t286 191t348 71h3q168 -1 320.5 -60.5t273.5 -167.5zM1792 640q0 -192 -77 -362.5t-213 -296.5q-104 -63 -222 -63q-137 0 -255 84q154 56 253.5 233t99.5 405q0 227 -99 404t-253 234q119 83 254 83q119 0 226 -65q135 -125 210.5 -295t75.5 -361z
+" />
+    <glyph glyph-name="_581" unicode="&#xf26b;" horiz-adv-x="1792" 
+d="M1792 599q0 -56 -7 -104h-1151q0 -146 109.5 -244.5t257.5 -98.5q99 0 185.5 46.5t136.5 130.5h423q-56 -159 -170.5 -281t-267.5 -188.5t-321 -66.5q-187 0 -356 83q-228 -116 -394 -116q-237 0 -237 263q0 115 45 275q17 60 109 229q199 360 475 606
+q-184 -79 -427 -354q63 274 283.5 449.5t501.5 175.5q30 0 45 -1q255 117 433 117q64 0 116 -13t94.5 -40.5t66.5 -76.5t24 -115q0 -116 -75 -286q101 -182 101 -390zM1722 1239q0 83 -53 132t-137 49q-108 0 -254 -70q121 -47 222.5 -131.5t170.5 -195.5q51 135 51 216z
+M128 2q0 -86 48.5 -132.5t134.5 -46.5q115 0 266 83q-122 72 -213.5 183t-137.5 245q-98 -205 -98 -332zM632 715h728q-5 142 -113 237t-251 95q-144 0 -251.5 -95t-112.5 -237z" />
+    <glyph glyph-name="_582" unicode="&#xf26c;" horiz-adv-x="2048" 
+d="M1792 288v960q0 13 -9.5 22.5t-22.5 9.5h-1600q-13 0 -22.5 -9.5t-9.5 -22.5v-960q0 -13 9.5 -22.5t22.5 -9.5h1600q13 0 22.5 9.5t9.5 22.5zM1920 1248v-960q0 -66 -47 -113t-113 -47h-736v-128h352q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-832q-14 0 -23 9t-9 23
+v64q0 14 9 23t23 9h352v128h-736q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h1600q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="_583" unicode="&#xf26d;" horiz-adv-x="1792" 
+d="M138 1408h197q-70 -64 -126 -149q-36 -56 -59 -115t-30 -125.5t-8.5 -120t10.5 -132t21 -126t28 -136.5q4 -19 6 -28q51 -238 81 -329q57 -171 152 -275h-272q-48 0 -82 34t-34 82v1304q0 48 34 82t82 34zM1346 1408h308q48 0 82 -34t34 -82v-1304q0 -48 -34 -82t-82 -34
+h-178q212 210 196 565l-469 -101q-2 -45 -12 -82t-31 -72t-59.5 -59.5t-93.5 -36.5q-123 -26 -199 40q-32 27 -53 61t-51.5 129t-64.5 258q-35 163 -45.5 263t-5.5 139t23 77q20 41 62.5 73t102.5 45q45 12 83.5 6.5t67 -17t54 -35t43 -48t34.5 -56.5l468 100
+q-68 175 -180 287z" />
+    <glyph glyph-name="_584" unicode="&#xf26e;" 
+d="M1401 -11l-6 -6q-113 -113 -259 -175q-154 -64 -317 -64q-165 0 -317 64q-148 63 -259 175q-113 112 -175 258q-42 103 -54 189q-4 28 48 36q51 8 56 -20q1 -1 1 -4q18 -90 46 -159q50 -124 152 -226q98 -98 226 -152q132 -56 276 -56q143 0 276 56q128 55 225 152l6 6
+q10 10 25 6q12 -3 33 -22q36 -37 17 -58zM929 604l-66 -66l63 -63q21 -21 -7 -49q-17 -17 -32 -17q-10 0 -19 10l-62 61l-66 -66q-5 -5 -15 -5q-15 0 -31 16l-2 2q-18 15 -18 29q0 7 8 17l66 65l-66 66q-16 16 14 45q18 18 31 18q6 0 13 -5l65 -66l65 65q18 17 48 -13
+q27 -27 11 -44zM1400 547q0 -118 -46 -228q-45 -105 -126 -186q-80 -80 -187 -126t-228 -46t-228 46t-187 126q-82 82 -125 186q-15 33 -15 40h-1q-9 27 43 44q50 16 60 -12q37 -99 97 -167h1v339v2q3 136 102 232q105 103 253 103q147 0 251 -103t104 -249
+q0 -147 -104.5 -251t-250.5 -104q-58 0 -112 16q-28 11 -13 61q16 51 44 43l14 -3q14 -3 33 -6t30 -3q104 0 176 71.5t72 174.5q0 101 -72 171q-71 71 -175 71q-107 0 -178 -80q-64 -72 -64 -160v-413q110 -67 242 -67q96 0 185 36.5t156 103.5t103.5 155t36.5 183
+q0 198 -141 339q-140 140 -339 140q-200 0 -340 -140q-53 -53 -77 -87l-2 -2q-8 -11 -13 -15.5t-21.5 -9.5t-38.5 3q-21 5 -36.5 16.5t-15.5 26.5v680q0 15 10.5 26.5t27.5 11.5h877q30 0 30 -55t-30 -55h-811v-483h1q40 42 102 84t108 61q109 46 231 46q121 0 228 -46
+t187 -126q81 -81 126 -186q46 -112 46 -229zM1369 1128q9 -8 9 -18t-5.5 -18t-16.5 -21q-26 -26 -39 -26q-9 0 -16 7q-106 91 -207 133q-128 56 -276 56q-133 0 -262 -49q-27 -10 -45 37q-9 25 -8 38q3 16 16 20q130 57 299 57q164 0 316 -64q137 -58 235 -152z" />
+    <glyph glyph-name="_585" unicode="&#xf270;" horiz-adv-x="1792" 
+d="M1551 60q15 6 26 3t11 -17.5t-15 -33.5q-13 -16 -44 -43.5t-95.5 -68t-141 -74t-188 -58t-229.5 -24.5q-119 0 -238 31t-209 76.5t-172.5 104t-132.5 105t-84 87.5q-8 9 -10 16.5t1 12t8 7t11.5 2t11.5 -4.5q192 -117 300 -166q389 -176 799 -90q190 40 391 135z
+M1758 175q11 -16 2.5 -69.5t-28.5 -102.5q-34 -83 -85 -124q-17 -14 -26 -9t0 24q21 45 44.5 121.5t6.5 98.5q-5 7 -15.5 11.5t-27 6t-29.5 2.5t-35 0t-31.5 -2t-31 -3t-22.5 -2q-6 -1 -13 -1.5t-11 -1t-8.5 -1t-7 -0.5h-5.5h-4.5t-3 0.5t-2 1.5l-1.5 3q-6 16 47 40t103 30
+q46 7 108 1t76 -24zM1364 618q0 -31 13.5 -64t32 -58t37.5 -46t33 -32l13 -11l-227 -224q-40 37 -79 75.5t-58 58.5l-19 20q-11 11 -25 33q-38 -59 -97.5 -102.5t-127.5 -63.5t-140 -23t-137.5 21t-117.5 65.5t-83 113t-31 162.5q0 84 28 154t72 116.5t106.5 83t122.5 57
+t130 34.5t119.5 18.5t99.5 6.5v127q0 65 -21 97q-34 53 -121 53q-6 0 -16.5 -1t-40.5 -12t-56 -29.5t-56 -59.5t-48 -96l-294 27q0 60 22 119t67 113t108 95t151.5 65.5t190.5 24.5q100 0 181 -25t129.5 -61.5t81 -83t45 -86t12.5 -73.5v-589zM692 597q0 -86 70 -133
+q66 -44 139 -22q84 25 114 123q14 45 14 101v162q-59 -2 -111 -12t-106.5 -33.5t-87 -71t-32.5 -114.5z" />
+    <glyph glyph-name="_586" unicode="&#xf271;" horiz-adv-x="1792" 
+d="M1536 1280q52 0 90 -38t38 -90v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128zM1152 1376v-288q0 -14 9 -23t23 -9
+h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM384 1376v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23zM1536 -128v1024h-1408v-1024h1408zM896 448h224q14 0 23 -9t9 -23v-64q0 -14 -9 -23t-23 -9h-224
+v-224q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v224h-224q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h224v224q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-224z" />
+    <glyph glyph-name="_587" unicode="&#xf272;" horiz-adv-x="1792" 
+d="M1152 416v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23
+t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47
+t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_588" unicode="&#xf273;" horiz-adv-x="1792" 
+d="M1111 151l-46 -46q-9 -9 -22 -9t-23 9l-188 189l-188 -189q-10 -9 -23 -9t-22 9l-46 46q-9 9 -9 22t9 23l189 188l-189 188q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l188 -188l188 188q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23l-188 -188l188 -188q9 -10 9 -23t-9 -22z
+M128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280
+q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_589" unicode="&#xf274;" horiz-adv-x="1792" 
+d="M1303 572l-512 -512q-10 -9 -23 -9t-23 9l-288 288q-9 10 -9 23t9 22l46 46q9 9 22 9t23 -9l220 -220l444 444q10 9 23 9t22 -9l46 -46q9 -9 9 -22t-9 -23zM128 -128h1408v1024h-1408v-1024zM512 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23
+t23 -9h64q14 0 23 9t9 23zM1280 1088v288q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-288q0 -14 9 -23t23 -9h64q14 0 23 9t9 23zM1664 1152v-1280q0 -52 -38 -90t-90 -38h-1408q-52 0 -90 38t-38 90v1280q0 52 38 90t90 38h128v96q0 66 47 113t113 47h64q66 0 113 -47
+t47 -113v-96h384v96q0 66 47 113t113 47h64q66 0 113 -47t47 -113v-96h128q52 0 90 -38t38 -90z" />
+    <glyph glyph-name="_590" unicode="&#xf275;" horiz-adv-x="1792" 
+d="M448 1536q26 0 45 -19t19 -45v-891l536 429q17 14 40 14q26 0 45 -19t19 -45v-379l536 429q17 14 40 14q26 0 45 -19t19 -45v-1152q0 -26 -19 -45t-45 -19h-1664q-26 0 -45 19t-19 45v1664q0 26 19 45t45 19h384z" />
+    <glyph glyph-name="_591" unicode="&#xf276;" horiz-adv-x="1024" 
+d="M512 448q66 0 128 15v-655q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v655q62 -15 128 -15zM512 1536q212 0 362 -150t150 -362t-150 -362t-362 -150t-362 150t-150 362t150 362t362 150zM512 1312q14 0 23 9t9 23t-9 23t-23 9q-146 0 -249 -103t-103 -249
+q0 -14 9 -23t23 -9t23 9t9 23q0 119 84.5 203.5t203.5 84.5z" />
+    <glyph glyph-name="_592" unicode="&#xf277;" horiz-adv-x="1792" 
+d="M1745 1239q10 -10 10 -23t-10 -23l-141 -141q-28 -28 -68 -28h-1344q-26 0 -45 19t-19 45v256q0 26 19 45t45 19h576v64q0 26 19 45t45 19h128q26 0 45 -19t19 -45v-64h512q40 0 68 -28zM768 320h256v-512q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v512zM1600 768
+q26 0 45 -19t19 -45v-256q0 -26 -19 -45t-45 -19h-1344q-40 0 -68 28l-141 141q-10 10 -10 23t10 23l141 141q28 28 68 28h512v192h256v-192h576z" />
+    <glyph glyph-name="_593" unicode="&#xf278;" horiz-adv-x="2048" 
+d="M2020 1525q28 -20 28 -53v-1408q0 -20 -11 -36t-29 -23l-640 -256q-24 -11 -48 0l-616 246l-616 -246q-10 -5 -24 -5q-19 0 -36 11q-28 20 -28 53v1408q0 20 11 36t29 23l640 256q24 11 48 0l616 -246l616 246q32 13 60 -6zM736 1390v-1270l576 -230v1270zM128 1173
+v-1270l544 217v1270zM1920 107v1270l-544 -217v-1270z" />
+    <glyph glyph-name="_594" unicode="&#xf279;" horiz-adv-x="1792" 
+d="M512 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472q0 20 17 28l480 256q7 4 15 4zM1760 1536q13 0 22.5 -9.5t9.5 -22.5v-1472q0 -20 -17 -28l-480 -256q-7 -4 -15 -4q-13 0 -22.5 9.5t-9.5 22.5v1472
+q0 20 17 28l480 256q7 4 15 4zM640 1536q8 0 14 -3l512 -256q18 -10 18 -29v-1472q0 -13 -9.5 -22.5t-22.5 -9.5q-8 0 -14 3l-512 256q-18 10 -18 29v1472q0 13 9.5 22.5t22.5 9.5z" />
+    <glyph glyph-name="_595" unicode="&#xf27a;" horiz-adv-x="1792" 
+d="M640 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1024 640q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1408 640q0 53 -37.5 90.5t-90.5 37.5
+t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-110 0 -211 18q-173 -173 -435 -229q-52 -10 -86 -13q-12 -1 -22 6t-13 18q-4 15 20 37q5 5 23.5 21.5t25.5 23.5t23.5 25.5t24 31.5t20.5 37
+t20 48t14.5 57.5t12.5 72.5q-146 90 -229.5 216.5t-83.5 269.5q0 174 120 321.5t326 233t450 85.5t450 -85.5t326 -233t120 -321.5z" />
+    <glyph glyph-name="_596" unicode="&#xf27b;" horiz-adv-x="1792" 
+d="M640 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1024 640q0 -53 -37.5 -90.5t-90.5 -37.5t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM1408 640q0 -53 -37.5 -90.5t-90.5 -37.5
+t-90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5t90.5 -37.5t37.5 -90.5zM896 1152q-204 0 -381.5 -69.5t-282 -187.5t-104.5 -255q0 -112 71.5 -213.5t201.5 -175.5l87 -50l-27 -96q-24 -91 -70 -172q152 63 275 171l43 38l57 -6q69 -8 130 -8q204 0 381.5 69.5t282 187.5
+t104.5 255t-104.5 255t-282 187.5t-381.5 69.5zM1792 640q0 -174 -120 -321.5t-326 -233t-450 -85.5q-70 0 -145 8q-198 -175 -460 -242q-49 -14 -114 -22h-5q-15 0 -27 10.5t-16 27.5v1q-3 4 -0.5 12t2 10t4.5 9.5l6 9t7 8.5t8 9q7 8 31 34.5t34.5 38t31 39.5t32.5 51
+t27 59t26 76q-157 89 -247.5 220t-90.5 281q0 130 71 248.5t191 204.5t286 136.5t348 50.5t348 -50.5t286 -136.5t191 -204.5t71 -248.5z" />
+    <glyph glyph-name="_597" unicode="&#xf27c;" horiz-adv-x="1024" 
+d="M512 345l512 295v-591l-512 -296v592zM0 640v-591l512 296zM512 1527v-591l-512 -296v591zM512 936l512 295v-591z" />
+    <glyph glyph-name="_598" unicode="&#xf27d;" horiz-adv-x="1792" 
+d="M1709 1018q-10 -236 -332 -651q-333 -431 -562 -431q-142 0 -240 263q-44 160 -132 482q-72 262 -157 262q-18 0 -127 -76l-77 98q24 21 108 96.5t130 115.5q156 138 241 146q95 9 153 -55.5t81 -203.5q44 -287 66 -373q55 -249 120 -249q51 0 154 161q101 161 109 246
+q13 139 -109 139q-57 0 -121 -26q120 393 459 382q251 -8 236 -326z" />
+    <glyph glyph-name="f27e" unicode="&#xf27e;" 
+d="M0 1408h1536v-1536h-1536v1536zM1085 293l-221 631l221 297h-634l221 -297l-221 -631l317 -304z" />
+    <glyph glyph-name="uniF280" unicode="&#xf280;" 
+d="M0 1408h1536v-1536h-1536v1536zM908 1088l-12 -33l75 -83l-31 -114l25 -25l107 57l107 -57l25 25l-31 114l75 83l-12 33h-95l-53 96h-32l-53 -96h-95zM641 925q32 0 44.5 -16t11.5 -63l174 21q0 55 -17.5 92.5t-50.5 56t-69 25.5t-85 7q-133 0 -199 -57.5t-66 -182.5v-72
+h-96v-128h76q20 0 20 -8v-382q0 -14 -5 -20t-18 -7l-73 -7v-88h448v86l-149 14q-6 1 -8.5 1.5t-3.5 2.5t-0.5 4t1 7t0.5 10v387h191l38 128h-231q-6 0 -2 6t4 9v80q0 27 1.5 40.5t7.5 28t19.5 20t36.5 5.5zM1248 96v86l-54 9q-7 1 -9.5 2.5t-2.5 3t1 7.5t1 12v520h-275
+l-23 -101l83 -22q23 -7 23 -27v-370q0 -14 -6 -18.5t-20 -6.5l-70 -9v-86h352z" />
+    <glyph glyph-name="uniF281" unicode="&#xf281;" horiz-adv-x="1792" 
+d="M1792 690q0 -58 -29.5 -105.5t-79.5 -72.5q12 -46 12 -96q0 -155 -106.5 -287t-290.5 -208.5t-400 -76.5t-399.5 76.5t-290 208.5t-106.5 287q0 47 11 94q-51 25 -82 73.5t-31 106.5q0 82 58 140.5t141 58.5q85 0 145 -63q218 152 515 162l116 521q3 13 15 21t26 5
+l369 -81q18 37 54 59.5t79 22.5q62 0 106 -43.5t44 -105.5t-44 -106t-106 -44t-105.5 43.5t-43.5 105.5l-334 74l-104 -472q300 -9 519 -160q58 61 143 61q83 0 141 -58.5t58 -140.5zM418 491q0 -62 43.5 -106t105.5 -44t106 44t44 106t-44 105.5t-106 43.5q-61 0 -105 -44
+t-44 -105zM1228 136q11 11 11 26t-11 26q-10 10 -25 10t-26 -10q-41 -42 -121 -62t-160 -20t-160 20t-121 62q-11 10 -26 10t-25 -10q-11 -10 -11 -25.5t11 -26.5q43 -43 118.5 -68t122.5 -29.5t91 -4.5t91 4.5t122.5 29.5t118.5 68zM1225 341q62 0 105.5 44t43.5 106
+q0 61 -44 105t-105 44q-62 0 -106 -43.5t-44 -105.5t44 -106t106 -44z" />
+    <glyph glyph-name="_602" unicode="&#xf282;" horiz-adv-x="1792" 
+d="M69 741h1q16 126 58.5 241.5t115 217t167.5 176t223.5 117.5t276.5 43q231 0 414 -105.5t294 -303.5q104 -187 104 -442v-188h-1125q1 -111 53.5 -192.5t136.5 -122.5t189.5 -57t213 -3t208 46.5t173.5 84.5v-377q-92 -55 -229.5 -92t-312.5 -38t-316 53
+q-189 73 -311.5 249t-124.5 372q-3 242 111 412t325 268q-48 -60 -78 -125.5t-46 -159.5h635q8 77 -8 140t-47 101.5t-70.5 66.5t-80.5 41t-75 20.5t-56 8.5l-22 1q-135 -5 -259.5 -44.5t-223.5 -104.5t-176 -140.5t-138 -163.5z" />
+    <glyph glyph-name="_603" unicode="&#xf283;" horiz-adv-x="2304" 
+d="M0 32v608h2304v-608q0 -66 -47 -113t-113 -47h-1984q-66 0 -113 47t-47 113zM640 256v-128h384v128h-384zM256 256v-128h256v128h-256zM2144 1408q66 0 113 -47t47 -113v-224h-2304v224q0 66 47 113t113 47h1984z" />
+    <glyph glyph-name="_604" unicode="&#xf284;" horiz-adv-x="1792" 
+d="M1584 246l-218 111q-74 -120 -196.5 -189t-263.5 -69q-147 0 -271 72t-196 196t-72 270q0 110 42.5 209.5t115 172t172 115t209.5 42.5q131 0 247.5 -60.5t192.5 -168.5l215 125q-110 169 -286.5 265t-378.5 96q-161 0 -308 -63t-253 -169t-169 -253t-63 -308t63 -308
+t169 -253t253 -169t308 -63q213 0 397.5 107t290.5 292zM1030 643l693 -352q-116 -253 -334.5 -400t-492.5 -147q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71q260 0 470.5 -133.5t335.5 -366.5zM1543 640h-39v-160h-96v352h136q32 0 54.5 -20
+t28.5 -48t1 -56t-27.5 -48t-57.5 -20z" />
+    <glyph glyph-name="uniF285" unicode="&#xf285;" horiz-adv-x="1792" 
+d="M1427 827l-614 386l92 151h855zM405 562l-184 116v858l1183 -743zM1424 697l147 -95v-858l-532 335zM1387 718l-500 -802h-855l356 571z" />
+    <glyph glyph-name="uniF286" unicode="&#xf286;" horiz-adv-x="1792" 
+d="M640 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1152 528v224q0 16 -16 16h-96q-16 0 -16 -16v-224q0 -16 16 -16h96q16 0 16 16zM1664 496v-752h-640v320q0 80 -56 136t-136 56t-136 -56t-56 -136v-320h-640v752q0 16 16 16h96
+q16 0 16 -16v-112h128v624q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 6 2.5 9.5t8.5 5t9.5 2t11.5 0t9 -0.5v391q-32 15 -32 50q0 23 16.5 39t38.5 16t38.5 -16t16.5 -39q0 -35 -32 -50v-17q45 10 83 10q21 0 59.5 -7.5t54.5 -7.5
+q17 0 47 7.5t37 7.5q16 0 16 -16v-210q0 -15 -35 -21.5t-62 -6.5q-18 0 -54.5 7.5t-55.5 7.5q-40 0 -90 -12v-133q1 0 9 0.5t11.5 0t9.5 -2t8.5 -5t2.5 -9.5v-112h128v112q0 16 16 16h96q16 0 16 -16v-112h128v112q0 16 16 16h96q16 0 16 -16v-624h128v112q0 16 16 16h96
+q16 0 16 -16z" />
+    <glyph glyph-name="_607" unicode="&#xf287;" horiz-adv-x="2304" 
+d="M2288 731q16 -8 16 -27t-16 -27l-320 -192q-8 -5 -16 -5q-9 0 -16 4q-16 10 -16 28v128h-858q37 -58 83 -165q16 -37 24.5 -55t24 -49t27 -47t27 -34t31.5 -26t33 -8h96v96q0 14 9 23t23 9h320q14 0 23 -9t9 -23v-320q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v96h-96
+q-32 0 -61 10t-51 23.5t-45 40.5t-37 46t-33.5 57t-28.5 57.5t-28 60.5q-23 53 -37 81.5t-36 65t-44.5 53.5t-46.5 17h-360q-22 -84 -91 -138t-157 -54q-106 0 -181 75t-75 181t75 181t181 75q88 0 157 -54t91 -138h104q24 0 46.5 17t44.5 53.5t36 65t37 81.5q19 41 28 60.5
+t28.5 57.5t33.5 57t37 46t45 40.5t51 23.5t61 10h107q21 57 70 92.5t111 35.5q80 0 136 -56t56 -136t-56 -136t-136 -56q-62 0 -111 35.5t-70 92.5h-107q-17 0 -33 -8t-31.5 -26t-27 -34t-27 -47t-24 -49t-24.5 -55q-46 -107 -83 -165h1114v128q0 18 16 28t32 -1z" />
+    <glyph glyph-name="_608" unicode="&#xf288;" horiz-adv-x="1792" 
+d="M1150 774q0 -56 -39.5 -95t-95.5 -39h-253v269h253q56 0 95.5 -39.5t39.5 -95.5zM1329 774q0 130 -91.5 222t-222.5 92h-433v-896h180v269h253q130 0 222 91.5t92 221.5zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348
+t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_609" unicode="&#xf289;" horiz-adv-x="2304" 
+d="M1645 438q0 59 -34 106.5t-87 68.5q-7 -45 -23 -92q-7 -24 -27.5 -38t-44.5 -14q-12 0 -24 3q-31 10 -45 38.5t-4 58.5q23 71 23 143q0 123 -61 227.5t-166 165.5t-228 61q-134 0 -247 -73t-167 -194q108 -28 188 -106q22 -23 22 -55t-22 -54t-54 -22t-55 22
+q-75 75 -180 75q-106 0 -181 -74.5t-75 -180.5t75 -180.5t181 -74.5h1046q79 0 134.5 55.5t55.5 133.5zM1798 438q0 -142 -100.5 -242t-242.5 -100h-1046q-169 0 -289 119.5t-120 288.5q0 153 100 267t249 136q62 184 221 298t354 114q235 0 408.5 -158.5t196.5 -389.5
+q116 -25 192.5 -118.5t76.5 -214.5zM2048 438q0 -175 -97 -319q-23 -33 -64 -33q-24 0 -43 13q-26 17 -32 48.5t12 57.5q71 104 71 233t-71 233q-18 26 -12 57t32 49t57.5 11.5t49.5 -32.5q97 -142 97 -318zM2304 438q0 -244 -134 -443q-23 -34 -64 -34q-23 0 -42 13
+q-26 18 -32.5 49t11.5 57q108 164 108 358q0 195 -108 357q-18 26 -11.5 57.5t32.5 48.5q26 18 57 12t49 -33q134 -198 134 -442z" />
+    <glyph glyph-name="_610" unicode="&#xf28a;" 
+d="M1500 -13q0 -89 -63 -152.5t-153 -63.5t-153.5 63.5t-63.5 152.5q0 90 63.5 153.5t153.5 63.5t153 -63.5t63 -153.5zM1267 268q-115 -15 -192.5 -102.5t-77.5 -205.5q0 -74 33 -138q-146 -78 -379 -78q-109 0 -201 21t-153.5 54.5t-110.5 76.5t-76 85t-44.5 83
+t-23.5 66.5t-6 39.5q0 19 4.5 42.5t18.5 56t36.5 58t64 43.5t94.5 18t94 -17.5t63 -41t35.5 -53t17.5 -49t4 -33.5q0 -34 -23 -81q28 -27 82 -42t93 -17l40 -1q115 0 190 51t75 133q0 26 -9 48.5t-31.5 44.5t-49.5 41t-74 44t-93.5 47.5t-119.5 56.5q-28 13 -43 20
+q-116 55 -187 100t-122.5 102t-72 125.5t-20.5 162.5q0 78 20.5 150t66 137.5t112.5 114t166.5 77t221.5 28.5q120 0 220 -26t164.5 -67t109.5 -94t64 -105.5t19 -103.5q0 -46 -15 -82.5t-36.5 -58t-48.5 -36t-49 -19.5t-39 -5h-8h-32t-39 5t-44 14t-41 28t-37 46t-24 70.5
+t-10 97.5q-15 16 -59 25.5t-81 10.5l-37 1q-68 0 -117.5 -31t-70.5 -70t-21 -76q0 -24 5 -43t24 -46t53 -51t97 -53.5t150 -58.5q76 -25 138.5 -53.5t109 -55.5t83 -59t60.5 -59.5t41 -62.5t26.5 -62t14.5 -63.5t6 -62t1 -62.5z" />
+    <glyph glyph-name="_611" unicode="&#xf28b;" 
+d="M704 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1152 352v576q0 14 -9 23t-23 9h-256q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h256q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103
+t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_612" unicode="&#xf28c;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273
+t73 -273t198 -198t273 -73zM864 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h192q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-192z" />
+    <glyph glyph-name="_613" unicode="&#xf28d;" 
+d="M1088 352v576q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-576q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
+t103 -385.5z" />
+    <glyph glyph-name="_614" unicode="&#xf28e;" 
+d="M768 1408q209 0 385.5 -103t279.5 -279.5t103 -385.5t-103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103zM768 96q148 0 273 73t198 198t73 273t-73 273t-198 198t-273 73t-273 -73t-198 -198t-73 -273
+t73 -273t198 -198t273 -73zM480 320q-14 0 -23 9t-9 23v576q0 14 9 23t23 9h576q14 0 23 -9t9 -23v-576q0 -14 -9 -23t-23 -9h-576z" />
+    <glyph glyph-name="_615" unicode="&#xf290;" horiz-adv-x="1792" 
+d="M1757 128l35 -313q3 -28 -16 -50q-19 -21 -48 -21h-1664q-29 0 -48 21q-19 22 -16 50l35 313h1722zM1664 967l86 -775h-1708l86 775q3 24 21 40.5t43 16.5h256v-128q0 -53 37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5v128h384v-128q0 -53 37.5 -90.5t90.5 -37.5
+t90.5 37.5t37.5 90.5v128h256q25 0 43 -16.5t21 -40.5zM1280 1152v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 106 -75 181t-181 75t-181 -75t-75 -181v-256q0 -26 -19 -45t-45 -19t-45 19t-19 45v256q0 159 112.5 271.5t271.5 112.5t271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="_616" unicode="&#xf291;" horiz-adv-x="2048" 
+d="M1920 768q53 0 90.5 -37.5t37.5 -90.5t-37.5 -90.5t-90.5 -37.5h-15l-115 -662q-8 -46 -44 -76t-82 -30h-1280q-46 0 -82 30t-44 76l-115 662h-15q-53 0 -90.5 37.5t-37.5 90.5t37.5 90.5t90.5 37.5h1792zM485 -32q26 2 43.5 22.5t15.5 46.5l-32 416q-2 26 -22.5 43.5
+t-46.5 15.5t-43.5 -22.5t-15.5 -46.5l32 -416q2 -25 20.5 -42t43.5 -17h5zM896 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1280 32v416q0 26 -19 45t-45 19t-45 -19t-19 -45v-416q0 -26 19 -45t45 -19t45 19t19 45zM1632 27l32 416
+q2 26 -15.5 46.5t-43.5 22.5t-46.5 -15.5t-22.5 -43.5l-32 -416q-2 -26 15.5 -46.5t43.5 -22.5h5q25 0 43.5 17t20.5 42zM476 1244l-93 -412h-132l101 441q19 88 89 143.5t160 55.5h167q0 26 19 45t45 19h384q26 0 45 -19t19 -45h167q90 0 160 -55.5t89 -143.5l101 -441
+h-132l-93 412q-11 44 -45.5 72t-79.5 28h-167q0 -26 -19 -45t-45 -19h-384q-26 0 -45 19t-19 45h-167q-45 0 -79.5 -28t-45.5 -72z" />
+    <glyph glyph-name="_617" unicode="&#xf292;" horiz-adv-x="1792" 
+d="M991 512l64 256h-254l-64 -256h254zM1759 1016l-56 -224q-7 -24 -31 -24h-327l-64 -256h311q15 0 25 -12q10 -14 6 -28l-56 -224q-5 -24 -31 -24h-327l-81 -328q-7 -24 -31 -24h-224q-16 0 -26 12q-9 12 -6 28l78 312h-254l-81 -328q-7 -24 -31 -24h-225q-15 0 -25 12
+q-9 12 -6 28l78 312h-311q-15 0 -25 12q-9 12 -6 28l56 224q7 24 31 24h327l64 256h-311q-15 0 -25 12q-10 14 -6 28l56 224q5 24 31 24h327l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h254l81 328q7 24 32 24h224q15 0 25 -12q9 -12 6 -28l-78 -312h311
+q15 0 25 -12q9 -12 6 -28z" />
+    <glyph glyph-name="_618" unicode="&#xf293;" 
+d="M841 483l148 -148l-149 -149zM840 1094l149 -149l-148 -148zM710 -130l464 464l-306 306l306 306l-464 464v-611l-255 255l-93 -93l320 -321l-320 -321l93 -93l255 255v-611zM1429 640q0 -209 -32 -365.5t-87.5 -257t-140.5 -162.5t-181.5 -86.5t-219.5 -24.5
+t-219.5 24.5t-181.5 86.5t-140.5 162.5t-87.5 257t-32 365.5t32 365.5t87.5 257t140.5 162.5t181.5 86.5t219.5 24.5t219.5 -24.5t181.5 -86.5t140.5 -162.5t87.5 -257t32 -365.5z" />
+    <glyph glyph-name="_619" unicode="&#xf294;" horiz-adv-x="1024" 
+d="M596 113l173 172l-173 172v-344zM596 823l173 172l-173 172v-344zM628 640l356 -356l-539 -540v711l-297 -296l-108 108l372 373l-372 373l108 108l297 -296v711l539 -540z" />
+    <glyph glyph-name="_620" unicode="&#xf295;" 
+d="M1280 256q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM512 1024q0 52 -38 90t-90 38t-90 -38t-38 -90t38 -90t90 -38t90 38t38 90zM1536 256q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5t271.5 -112.5
+t112.5 -271.5zM1440 1344q0 -20 -13 -38l-1056 -1408q-19 -26 -51 -26h-160q-26 0 -45 19t-19 45q0 20 13 38l1056 1408q19 26 51 26h160q26 0 45 -19t19 -45zM768 1024q0 -159 -112.5 -271.5t-271.5 -112.5t-271.5 112.5t-112.5 271.5t112.5 271.5t271.5 112.5
+t271.5 -112.5t112.5 -271.5z" />
+    <glyph glyph-name="_621" unicode="&#xf296;" horiz-adv-x="1792" 
+d="M104 830l792 -1015l-868 630q-18 13 -25 34.5t0 42.5l101 308v0zM566 830h660l-330 -1015v0zM368 1442l198 -612h-462l198 612q8 23 33 23t33 -23zM1688 830l101 -308q7 -21 0 -42.5t-25 -34.5l-868 -630l792 1015v0zM1688 830h-462l198 612q8 23 33 23t33 -23z" />
+    <glyph glyph-name="_622" unicode="&#xf297;" horiz-adv-x="1792" 
+d="M384 704h160v224h-160v-224zM1221 372v92q-104 -36 -243 -38q-135 -1 -259.5 46.5t-220.5 122.5l1 -96q88 -80 212 -128.5t272 -47.5q129 0 238 49zM640 704h640v224h-640v-224zM1792 736q0 -187 -99 -352q89 -102 89 -229q0 -157 -129.5 -268t-313.5 -111
+q-122 0 -225 52.5t-161 140.5q-19 -1 -57 -1t-57 1q-58 -88 -161 -140.5t-225 -52.5q-184 0 -313.5 111t-129.5 268q0 127 89 229q-99 165 -99 352q0 209 120 385.5t326.5 279.5t449.5 103t449.5 -103t326.5 -279.5t120 -385.5z" />
+    <glyph glyph-name="_623" unicode="&#xf298;" 
+d="M515 625v-128h-252v128h252zM515 880v-127h-252v127h252zM1273 369v-128h-341v128h341zM1273 625v-128h-672v128h672zM1273 880v-127h-672v127h672zM1408 20v1240q0 8 -6 14t-14 6h-32l-378 -256l-210 171l-210 -171l-378 256h-32q-8 0 -14 -6t-6 -14v-1240q0 -8 6 -14
+t14 -6h1240q8 0 14 6t6 14zM553 1130l185 150h-406zM983 1130l221 150h-406zM1536 1260v-1240q0 -62 -43 -105t-105 -43h-1240q-62 0 -105 43t-43 105v1240q0 62 43 105t105 43h1240q62 0 105 -43t43 -105z" />
+    <glyph glyph-name="_624" unicode="&#xf299;" horiz-adv-x="1792" 
+d="M896 720q-104 196 -160 278q-139 202 -347 318q-34 19 -70 36q-89 40 -94 32t34 -38l39 -31q62 -43 112.5 -93.5t94.5 -116.5t70.5 -113t70.5 -131q9 -17 13 -25q44 -84 84 -153t98 -154t115.5 -150t131 -123.5t148.5 -90.5q153 -66 154 -60q1 3 -49 37q-53 36 -81 57
+q-77 58 -179 211t-185 310zM549 177q-76 60 -132.5 125t-98 143.5t-71 154.5t-58.5 186t-52 209t-60.5 252t-76.5 289q273 0 497.5 -36t379 -92t271 -144.5t185.5 -172.5t110 -198.5t56 -199.5t12.5 -198.5t-9.5 -173t-20 -143.5t-13 -107l323 -327h-104l-281 285
+q-22 -2 -91.5 -14t-121.5 -19t-138 -6t-160.5 17t-167.5 59t-179 111z" />
+    <glyph glyph-name="_625" unicode="&#xf29a;" horiz-adv-x="1792" 
+d="M1374 879q-6 26 -28.5 39.5t-48.5 7.5q-261 -62 -401 -62t-401 62q-26 6 -48.5 -7.5t-28.5 -39.5t7.5 -48.5t39.5 -28.5q194 -46 303 -58q-2 -158 -15.5 -269t-26.5 -155.5t-41 -115.5l-9 -21q-10 -25 1 -49t36 -34q9 -4 23 -4q44 0 60 41l8 20q54 139 71 259h42
+q17 -120 71 -259l8 -20q16 -41 60 -41q14 0 23 4q25 10 36 34t1 49l-9 21q-28 71 -41 115.5t-26.5 155.5t-15.5 269q109 12 303 58q26 6 39.5 28.5t7.5 48.5zM1024 1024q0 53 -37.5 90.5t-90.5 37.5t-90.5 -37.5t-37.5 -90.5t37.5 -90.5t90.5 -37.5t90.5 37.5t37.5 90.5z
+M1600 640q0 -143 -55.5 -273.5t-150 -225t-225 -150t-273.5 -55.5t-273.5 55.5t-225 150t-150 225t-55.5 273.5t55.5 273.5t150 225t225 150t273.5 55.5t273.5 -55.5t225 -150t150 -225t55.5 -273.5zM896 1408q-156 0 -298 -61t-245 -164t-164 -245t-61 -298t61 -298
+t164 -245t245 -164t298 -61t298 61t245 164t164 245t61 298t-61 298t-164 245t-245 164t-298 61zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="_626" unicode="&#xf29b;" 
+d="M1438 723q34 -35 29 -82l-44 -551q-4 -42 -34.5 -70t-71.5 -28q-6 0 -9 1q-44 3 -72.5 36.5t-25.5 77.5l35 429l-143 -8q55 -113 55 -240q0 -216 -148 -372l-137 137q91 101 91 235q0 145 -102.5 248t-247.5 103q-134 0 -236 -92l-137 138q120 114 284 141l264 300
+l-149 87l-181 -161q-33 -30 -77 -27.5t-73 35.5t-26.5 77t34.5 73l239 213q26 23 60 26.5t64 -14.5l488 -283q36 -21 48 -68q17 -67 -26 -117l-205 -232l371 20q49 3 83 -32zM1240 1180q-74 0 -126 52t-52 126t52 126t126 52t126.5 -52t52.5 -126t-52.5 -126t-126.5 -52z
+M613 -62q106 0 196 61l139 -139q-146 -116 -335 -116q-148 0 -273.5 73t-198.5 198t-73 273q0 188 116 336l139 -139q-60 -88 -60 -197q0 -145 102.5 -247.5t247.5 -102.5z" />
+    <glyph glyph-name="_627" unicode="&#xf29c;" 
+d="M880 336v-160q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v160q0 14 9 23t23 9h160q14 0 23 -9t9 -23zM1136 832q0 -50 -15 -90t-45.5 -69t-52 -44t-59.5 -36q-32 -18 -46.5 -28t-26 -24t-11.5 -29v-32q0 -14 -9 -23t-23 -9h-160q-14 0 -23 9t-9 23v68q0 35 10.5 64.5
+t24 47.5t39 35.5t41 25.5t44.5 21q53 25 75 43t22 49q0 42 -43.5 71.5t-95.5 29.5q-56 0 -95 -27q-29 -20 -80 -83q-9 -12 -25 -12q-11 0 -19 6l-108 82q-10 7 -12 20t5 23q122 192 349 192q129 0 238.5 -89.5t109.5 -214.5zM768 1280q-130 0 -248.5 -51t-204 -136.5
+t-136.5 -204t-51 -248.5t51 -248.5t136.5 -204t204 -136.5t248.5 -51t248.5 51t204 136.5t136.5 204t51 248.5t-51 248.5t-136.5 204t-204 136.5t-248.5 51zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5
+t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="_628" unicode="&#xf29d;" horiz-adv-x="1408" 
+d="M366 1225q-64 0 -110 45.5t-46 110.5q0 64 46 109.5t110 45.5t109.5 -45.5t45.5 -109.5q0 -65 -45.5 -110.5t-109.5 -45.5zM917 583q0 -50 -30 -67.5t-63.5 -6.5t-47.5 34l-367 438q-7 12 -14 15.5t-11 1.5l-3 -3q-7 -8 4 -21l122 -139l1 -354l-161 -457
+q-67 -192 -92 -234q-15 -26 -28 -32q-50 -26 -103 -1q-29 13 -41.5 43t-9.5 57q2 17 197 618l5 416l-85 -164l35 -222q4 -24 -1 -42t-14 -27.5t-19 -16t-17 -7.5l-7 -2q-19 -3 -34.5 3t-24 16t-14 22t-7.5 19.5t-2 9.5l-46 299l211 381q23 34 113 34q75 0 107 -40l424 -521
+q7 -5 14 -17l3 -3l-1 -1q7 -13 7 -29zM514 433q43 -113 88.5 -225t69.5 -168l24 -55q36 -93 42 -125q11 -70 -36 -97q-35 -22 -66 -16t-51 22t-29 35h-1q-6 16 -8 25l-124 351zM1338 -159q31 -49 31 -57q0 -5 -3 -7q-9 -5 -14.5 0.5t-15.5 26t-16 30.5q-114 172 -423 661
+q3 -1 7 1t7 4l3 2q11 9 11 17z" />
+    <glyph glyph-name="_629" unicode="&#xf29e;" horiz-adv-x="2304" 
+d="M504 542h171l-1 265zM1530 641q0 87 -50.5 140t-146.5 53h-54v-388h52q91 0 145 57t54 138zM956 1018l1 -756q0 -14 -9.5 -24t-23.5 -10h-216q-14 0 -23.5 10t-9.5 24v62h-291l-55 -81q-10 -15 -28 -15h-267q-21 0 -30.5 18t3.5 35l556 757q9 14 27 14h332q14 0 24 -10
+t10 -24zM1783 641q0 -193 -125.5 -303t-324.5 -110h-270q-14 0 -24 10t-10 24v756q0 14 10 24t24 10h268q200 0 326 -109t126 -302zM1939 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5
+t-7.5 60t-20 91.5t-41 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2123 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-45 -108t-74 -102.5h-51q38 45 66.5 104.5t41.5 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5
+h43q41 -47 72 -107t45.5 -111.5t23 -96t10.5 -70.5zM2304 640q0 -11 -0.5 -29t-8 -71.5t-21.5 -102t-44.5 -108t-73.5 -102.5h-51q38 45 66 104.5t41 112t21 98t9 72.5l1 27q0 8 -0.5 22.5t-7.5 60t-19.5 91.5t-40.5 111.5t-66 124.5h43q41 -47 72 -107t45.5 -111.5t23 -96
+t9.5 -70.5z" />
+    <glyph glyph-name="uniF2A0" unicode="&#xf2a0;" horiz-adv-x="1408" 
+d="M617 -153q0 11 -13 58t-31 107t-20 69q-1 4 -5 26.5t-8.5 36t-13.5 21.5q-15 14 -51 14q-23 0 -70 -5.5t-71 -5.5q-34 0 -47 11q-6 5 -11 15.5t-7.5 20t-6.5 24t-5 18.5q-37 128 -37 255t37 255q1 4 5 18.5t6.5 24t7.5 20t11 15.5q13 11 47 11q24 0 71 -5.5t70 -5.5
+q36 0 51 14q9 8 13.5 21.5t8.5 36t5 26.5q2 9 20 69t31 107t13 58q0 22 -43.5 52.5t-75.5 42.5q-20 8 -45 8q-34 0 -98 -18q-57 -17 -96.5 -40.5t-71 -66t-46 -70t-45.5 -94.5q-6 -12 -9 -19q-49 -107 -68 -216t-19 -244t19 -244t68 -216q56 -122 83 -161q63 -91 179 -127
+l6 -2q64 -18 98 -18q25 0 45 8q32 12 75.5 42.5t43.5 52.5zM776 760q-26 0 -45 19t-19 45.5t19 45.5q37 37 37 90q0 52 -37 91q-19 19 -19 45t19 45t45 19t45 -19q75 -75 75 -181t-75 -181q-21 -19 -45 -19zM957 579q-27 0 -45 19q-19 19 -19 45t19 45q112 114 112 272
+t-112 272q-19 19 -19 45t19 45t45 19t45 -19q150 -150 150 -362t-150 -362q-18 -19 -45 -19zM1138 398q-27 0 -45 19q-19 19 -19 45t19 45q90 91 138.5 208t48.5 245t-48.5 245t-138.5 208q-19 19 -19 45t19 45t45 19t45 -19q109 -109 167 -249t58 -294t-58 -294t-167 -249
+q-18 -19 -45 -19z" />
+    <glyph glyph-name="uniF2A1" unicode="&#xf2a1;" horiz-adv-x="2176" 
+d="M192 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM704 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 352
+q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 352q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1472 864q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 864
+q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM1984 1376q-66 0 -113 -47t-47 -113t47 -113t113 -47t113 47t47 113t-47 113t-113 47zM384 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 192q0 -80 -56 -136
+t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM384 1216q0 -80 -56 -136t-136 -56
+t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 192q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM896 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 192q0 -80 -56 -136t-136 -56t-136 56
+t-56 136t56 136t136 56t136 -56t56 -136zM1664 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM2176 704q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136zM1664 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136
+t56 136t136 56t136 -56t56 -136zM2176 1216q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136z" />
+    <glyph glyph-name="uniF2A2" unicode="&#xf2a2;" horiz-adv-x="1792" 
+d="M128 -192q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM320 0q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45zM365 365l256 -256l-90 -90l-256 256zM704 384q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45t45 19t45 -19t19 -45z
+M1411 704q0 -59 -11.5 -108.5t-37.5 -93.5t-44 -67.5t-53 -64.5q-31 -35 -45.5 -54t-33.5 -50t-26.5 -64t-7.5 -74q0 -159 -112.5 -271.5t-271.5 -112.5q-26 0 -45 19t-19 45t19 45t45 19q106 0 181 75t75 181q0 57 11.5 105.5t37 91t43.5 66.5t52 63q40 46 59.5 72
+t37.5 74.5t18 103.5q0 185 -131.5 316.5t-316.5 131.5t-316.5 -131.5t-131.5 -316.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 117 45.5 223.5t123 184t184 123t223.5 45.5t223.5 -45.5t184 -123t123 -184t45.5 -223.5zM896 576q0 -26 -19 -45t-45 -19t-45 19t-19 45t19 45
+t45 19t45 -19t19 -45zM1184 704q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 93 -65.5 158.5t-158.5 65.5q-92 0 -158 -65.5t-66 -158.5q0 -26 -19 -45t-45 -19t-45 19t-19 45q0 146 103 249t249 103t249 -103t103 -249zM1578 993q10 -25 -1 -49t-36 -34q-9 -4 -23 -4
+q-19 0 -35.5 11t-23.5 30q-68 178 -224 295q-21 16 -25 42t12 47q17 21 43 25t47 -12q183 -137 266 -351zM1788 1074q9 -25 -1.5 -49t-35.5 -34q-11 -4 -23 -4q-44 0 -60 41q-92 238 -297 393q-22 16 -25.5 42t12.5 47q16 22 42 25.5t47 -12.5q235 -175 341 -449z" />
+    <glyph glyph-name="uniF2A3" unicode="&#xf2a3;" horiz-adv-x="2304" 
+d="M1032 576q-59 2 -84 55q-17 34 -48 53.5t-68 19.5q-53 0 -90.5 -37.5t-37.5 -90.5q0 -56 36 -89l10 -8q34 -31 82 -31q37 0 68 19.5t48 53.5q25 53 84 55zM1600 704q0 56 -36 89l-10 8q-34 31 -82 31q-37 0 -68 -19.5t-48 -53.5q-25 -53 -84 -55q59 -2 84 -55
+q17 -34 48 -53.5t68 -19.5q53 0 90.5 37.5t37.5 90.5zM1174 925q-17 -35 -55 -48t-73 4q-62 31 -134 31q-51 0 -99 -17q3 0 9.5 0.5t9.5 0.5q92 0 170.5 -50t118.5 -133q17 -36 3.5 -73.5t-49.5 -54.5q-18 -9 -39 -9q21 0 39 -9q36 -17 49.5 -54.5t-3.5 -73.5
+q-40 -83 -118.5 -133t-170.5 -50h-6q-16 2 -44 4l-290 27l-239 -120q-14 -7 -29 -7q-40 0 -57 35l-160 320q-11 23 -4 47.5t29 37.5l209 119l148 267q17 155 91.5 291.5t195.5 236.5q31 25 70.5 21.5t64.5 -34.5t21.5 -70t-34.5 -65q-70 -59 -117 -128q123 84 267 101
+q40 5 71.5 -19t35.5 -64q5 -40 -19 -71.5t-64 -35.5q-84 -10 -159 -55q46 10 99 10q115 0 218 -50q36 -18 49 -55.5t-5 -73.5zM2137 1085l160 -320q11 -23 4 -47.5t-29 -37.5l-209 -119l-148 -267q-17 -155 -91.5 -291.5t-195.5 -236.5q-26 -22 -61 -22q-45 0 -74 35
+q-25 31 -21.5 70t34.5 65q70 59 117 128q-123 -84 -267 -101q-4 -1 -12 -1q-36 0 -63.5 24t-31.5 60q-5 40 19 71.5t64 35.5q84 10 159 55q-46 -10 -99 -10q-115 0 -218 50q-36 18 -49 55.5t5 73.5q17 35 55 48t73 -4q62 -31 134 -31q51 0 99 17q-3 0 -9.5 -0.5t-9.5 -0.5
+q-92 0 -170.5 50t-118.5 133q-17 36 -3.5 73.5t49.5 54.5q18 9 39 9q-21 0 -39 9q-36 17 -49.5 54.5t3.5 73.5q40 83 118.5 133t170.5 50h6h1q14 -2 42 -4l291 -27l239 120q14 7 29 7q40 0 57 -35z" />
+    <glyph glyph-name="uniF2A4" unicode="&#xf2a4;" horiz-adv-x="1792" 
+d="M1056 704q0 -26 19 -45t45 -19t45 19t19 45q0 146 -103 249t-249 103t-249 -103t-103 -249q0 -26 19 -45t45 -19t45 19t19 45q0 93 66 158.5t158 65.5t158 -65.5t66 -158.5zM835 1280q-117 0 -223.5 -45.5t-184 -123t-123 -184t-45.5 -223.5q0 -26 19 -45t45 -19t45 19
+t19 45q0 185 131.5 316.5t316.5 131.5t316.5 -131.5t131.5 -316.5q0 -55 -18 -103.5t-37.5 -74.5t-59.5 -72q-34 -39 -52 -63t-43.5 -66.5t-37 -91t-11.5 -105.5q0 -106 -75 -181t-181 -75q-26 0 -45 -19t-19 -45t19 -45t45 -19q159 0 271.5 112.5t112.5 271.5q0 41 7.5 74
+t26.5 64t33.5 50t45.5 54q35 41 53 64.5t44 67.5t37.5 93.5t11.5 108.5q0 117 -45.5 223.5t-123 184t-184 123t-223.5 45.5zM591 561l226 -226l-579 -579q-12 -12 -29 -12t-29 12l-168 168q-12 12 -12 29t12 29zM1612 1524l168 -168q12 -12 12 -29t-12 -30l-233 -233
+l-26 -25l-71 -71q-66 153 -195 258l91 91l207 207q13 12 30 12t29 -12z" />
+    <glyph glyph-name="uniF2A5" unicode="&#xf2a5;" 
+d="M866 1021q0 -27 -13 -94q-11 -50 -31.5 -150t-30.5 -150q-2 -11 -4.5 -12.5t-13.5 -2.5q-20 -2 -31 -2q-58 0 -84 49.5t-26 113.5q0 88 35 174t103 124q28 14 51 14q28 0 36.5 -16.5t8.5 -47.5zM1352 597q0 14 -39 75.5t-52 66.5q-21 8 -34 8q-91 0 -226 -77l-2 2
+q3 22 27.5 135t24.5 178q0 233 -242 233q-24 0 -68 -6q-94 -17 -168.5 -89.5t-111.5 -166.5t-37 -189q0 -146 80.5 -225t227.5 -79q25 0 25 -3t-1 -5q-4 -34 -26 -117q-14 -52 -51.5 -101t-82.5 -49q-42 0 -42 47q0 24 10.5 47.5t25 39.5t29.5 28.5t26 20t11 8.5q0 3 -7 10
+q-24 22 -58.5 36.5t-65.5 14.5q-35 0 -63.5 -34t-41 -75t-12.5 -75q0 -88 51.5 -142t138.5 -54q82 0 155 53t117.5 126t65.5 153q6 22 15.5 66.5t14.5 66.5q3 12 14 18q118 60 227 60q48 0 127 -18q1 -1 4 -1q5 0 9.5 4.5t4.5 8.5zM1536 1120v-960q0 -119 -84.5 -203.5
+t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="uniF2A6" unicode="&#xf2a6;" horiz-adv-x="1535" 
+d="M744 1231q0 24 -2 38.5t-8.5 30t-21 23t-37.5 7.5q-39 0 -78 -23q-105 -58 -159 -190.5t-54 -269.5q0 -44 8.5 -85.5t26.5 -80.5t52.5 -62.5t81.5 -23.5q4 0 18 -0.5t20 0t16 3t15 8.5t7 16q16 77 48 231.5t48 231.5q19 91 19 146zM1498 575q0 -7 -7.5 -13.5t-15.5 -6.5
+l-6 1q-22 3 -62 11t-72 12.5t-63 4.5q-167 0 -351 -93q-15 -8 -21 -27q-10 -36 -24.5 -105.5t-22.5 -100.5q-23 -91 -70 -179.5t-112.5 -164.5t-154.5 -123t-185 -47q-135 0 -214.5 83.5t-79.5 219.5q0 53 19.5 117t63 116.5t97.5 52.5q38 0 120 -33.5t83 -61.5
+q0 -1 -16.5 -12.5t-39.5 -31t-46 -44.5t-39 -61t-16 -74q0 -33 16.5 -53t48.5 -20q45 0 85 31.5t66.5 78t48 105.5t32.5 107t16 90v9q0 2 -3.5 3.5t-8.5 1.5h-10t-10 -0.5t-6 -0.5q-227 0 -352 122.5t-125 348.5q0 108 34.5 221t96 210t156 167.5t204.5 89.5q52 9 106 9
+q374 0 374 -360q0 -98 -38 -273t-43 -211l3 -3q101 57 182.5 88t167.5 31q22 0 53 -13q19 -7 80 -102.5t61 -116.5z" />
+    <glyph glyph-name="uniF2A7" unicode="&#xf2a7;" horiz-adv-x="1664" 
+d="M831 863q32 0 59 -18l222 -148q61 -40 110 -97l146 -170q40 -46 29 -106l-72 -413q-6 -32 -29.5 -53.5t-55.5 -25.5l-527 -56l-352 -32h-9q-39 0 -67.5 28t-28.5 68q0 37 27 64t65 32l260 32h-448q-41 0 -69.5 30t-26.5 71q2 39 32 65t69 26l442 1l-521 64q-41 5 -66 37
+t-19 73q6 35 34.5 57.5t65.5 22.5h10l481 -60l-351 94q-38 10 -62 41.5t-18 68.5q6 36 33 58.5t62 22.5q6 0 20 -2l448 -96l217 -37q1 0 3 -0.5t3 -0.5q23 0 30.5 23t-12.5 36l-186 125q-35 23 -42 63.5t18 73.5q27 38 76 38zM761 661l186 -125l-218 37l-5 2l-36 38
+l-238 262q-1 1 -2.5 3.5t-2.5 3.5q-24 31 -18.5 70t37.5 64q31 23 68 17.5t64 -33.5l142 -147q-2 -1 -5 -3.5t-4 -4.5q-32 -45 -23 -99t55 -85zM1648 1115l15 -266q4 -73 -11 -147l-48 -219q-12 -59 -67 -87l-106 -54q2 62 -39 109l-146 170q-53 61 -117 103l-222 148
+q-34 23 -76 23q-51 0 -88 -37l-235 312q-25 33 -18 73.5t41 63.5q33 22 71.5 14t62.5 -40l266 -352l-262 455q-21 35 -10.5 75t47.5 59q35 18 72.5 6t57.5 -46l241 -420l-136 337q-15 35 -4.5 74t44.5 56q37 19 76 6t56 -51l193 -415l101 -196q8 -15 23 -17.5t27 7.5t11 26
+l-12 224q-2 41 26 71t69 31q39 0 67 -28.5t30 -67.5z" />
+    <glyph glyph-name="uniF2A8" unicode="&#xf2a8;" horiz-adv-x="1792" 
+d="M335 180q-2 0 -6 2q-86 57 -168.5 145t-139.5 180q-21 30 -21 69q0 9 2 19t4 18t7 18t8.5 16t10.5 17t10 15t12 15.5t11 14.5q184 251 452 365q-110 198 -110 211q0 19 17 29q116 64 128 64q18 0 28 -16l124 -229q92 19 192 19q266 0 497.5 -137.5t378.5 -369.5
+q20 -31 20 -69t-20 -69q-91 -142 -218.5 -253.5t-278.5 -175.5q110 -198 110 -211q0 -20 -17 -29q-116 -64 -127 -64q-19 0 -29 16l-124 229l-64 119l-444 820l7 7q-58 -24 -99 -47q3 -5 127 -234t243 -449t119 -223q0 -7 -9 -9q-13 -3 -72 -3q-57 0 -60 7l-456 841
+q-39 -28 -82 -68q24 -43 214 -393.5t190 -354.5q0 -10 -11 -10q-14 0 -82.5 22t-72.5 28l-106 197l-224 413q-44 -53 -78 -106q2 -3 18 -25t23 -34l176 -327q0 -10 -10 -10zM1165 282l49 -91q273 111 450 385q-180 277 -459 389q67 -64 103 -148.5t36 -176.5
+q0 -106 -47 -200.5t-132 -157.5zM848 896q0 -20 14 -34t34 -14q86 0 147 -61t61 -147q0 -20 14 -34t34 -14t34 14t14 34q0 126 -89 215t-215 89q-20 0 -34 -14t-14 -34zM1214 961l-9 4l7 -7z" />
+    <glyph glyph-name="uniF2A9" unicode="&#xf2a9;" horiz-adv-x="1280" 
+d="M1050 430q0 -215 -147 -374q-148 -161 -378 -161q-232 0 -378 161q-147 159 -147 374q0 147 68 270.5t189 196.5t268 73q96 0 182 -31q-32 -62 -39 -126q-66 28 -143 28q-167 0 -280.5 -123t-113.5 -291q0 -170 112.5 -288.5t281.5 -118.5t281 118.5t112 288.5
+q0 89 -32 166q66 13 123 49q41 -98 41 -212zM846 619q0 -192 -79.5 -345t-238.5 -253l-14 -1q-29 0 -62 5q83 32 146.5 102.5t99.5 154.5t58.5 189t30 192.5t7.5 178.5q0 69 -3 103q55 -160 55 -326zM791 947v-2q-73 214 -206 440q88 -59 142.5 -186.5t63.5 -251.5z
+M1035 744q-83 0 -160 75q218 120 290 247q19 37 21 56q-42 -94 -139.5 -166.5t-204.5 -97.5q-35 54 -35 113q0 37 17 79t43 68q46 44 157 74q59 16 106 58.5t74 100.5q74 -105 74 -253q0 -109 -24 -170q-32 -77 -88.5 -130.5t-130.5 -53.5z" />
+    <glyph glyph-name="uniF2AA" unicode="&#xf2aa;" 
+d="M1050 495q0 78 -28 147q-41 -25 -85 -34q22 -50 22 -114q0 -117 -77 -198.5t-193 -81.5t-193.5 81.5t-77.5 198.5q0 115 78 199.5t193 84.5q53 0 98 -19q4 43 27 87q-60 21 -125 21q-154 0 -257.5 -108.5t-103.5 -263.5t103.5 -261t257.5 -106t257.5 106.5t103.5 260.5z
+M872 850q2 -24 2 -71q0 -63 -5 -123t-20.5 -132.5t-40.5 -130t-68.5 -106t-100.5 -70.5q21 -3 42 -3h10q219 139 219 411q0 116 -38 225zM872 850q-4 80 -44 171.5t-98 130.5q92 -156 142 -302zM1207 955q0 102 -51 174q-41 -86 -124 -109q-69 -19 -109 -53.5t-40 -99.5
+q0 -40 24 -77q74 17 140.5 67t95.5 115q-4 -52 -74.5 -111.5t-138.5 -97.5q52 -52 110 -52q51 0 90 37t60 90q17 42 17 117zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960q119 0 203.5 -84.5
+t84.5 -203.5z" />
+    <glyph glyph-name="uniF2AB" unicode="&#xf2ab;" 
+d="M1279 388q0 22 -22 27q-67 15 -118 59t-80 108q-7 19 -7 25q0 15 19.5 26t43 17t43 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-12 0 -32 -8t-31 -8q-4 0 -12 2q5 95 5 114q0 79 -17 114q-36 78 -103 121.5t-152 43.5q-199 0 -275 -165q-17 -35 -17 -114q0 -19 5 -114
+q-4 -2 -14 -2q-12 0 -32 7.5t-30 7.5q-21 0 -38.5 -12t-17.5 -32q0 -21 19.5 -35.5t43 -20.5t43 -17t19.5 -26q0 -6 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -46 137 -68q2 -5 6 -26t11.5 -30.5t23.5 -9.5q12 0 37.5 4.5t39.5 4.5q35 0 67 -15t54 -32.5t57.5 -32.5
+t76.5 -15q43 0 79 15t57.5 32.5t53.5 32.5t67 15q14 0 39.5 -4t38.5 -4q16 0 23 10t11 30t6 25q137 22 137 68zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5
+t103 -385.5z" />
+    <glyph glyph-name="uniF2AC" unicode="&#xf2ac;" horiz-adv-x="1664" 
+d="M848 1408q134 1 240.5 -68.5t163.5 -192.5q27 -58 27 -179q0 -47 -9 -191q14 -7 28 -7q18 0 51 13.5t51 13.5q29 0 56 -18t27 -46q0 -32 -31.5 -54t-69 -31.5t-69 -29t-31.5 -47.5q0 -15 12 -43q37 -82 102.5 -150t144.5 -101q28 -12 80 -23q28 -6 28 -35
+q0 -70 -219 -103q-7 -11 -11 -39t-14 -46.5t-33 -18.5q-20 0 -62 6.5t-64 6.5q-37 0 -62 -5q-32 -5 -63 -22.5t-58 -38t-58 -40.5t-76 -33.5t-99 -13.5q-52 0 -96.5 13.5t-75 33.5t-57.5 40.5t-58 38t-62 22.5q-26 5 -63 5q-24 0 -65.5 -7.5t-58.5 -7.5q-25 0 -35 18.5
+t-14 47.5t-11 40q-219 33 -219 103q0 29 28 35q52 11 80 23q78 32 144.5 101t102.5 150q12 28 12 43q0 28 -31.5 47.5t-69.5 29.5t-69.5 31.5t-31.5 52.5q0 27 26 45.5t55 18.5q15 0 48 -13t53 -13q18 0 32 7q-9 142 -9 190q0 122 27 180q64 137 172 198t264 63z" />
+    <glyph glyph-name="uniF2AD" unicode="&#xf2ad;" 
+d="M1280 388q0 22 -22 27q-67 14 -118 58t-80 109q-7 14 -7 25q0 15 19.5 26t42.5 17t42.5 20.5t19.5 36.5q0 19 -18.5 31.5t-38.5 12.5q-11 0 -31 -8t-32 -8q-4 0 -12 2q5 63 5 115q0 78 -17 114q-36 78 -102.5 121.5t-152.5 43.5q-198 0 -275 -165q-18 -38 -18 -115
+q0 -38 6 -114q-10 -2 -15 -2q-11 0 -31.5 8t-30.5 8q-20 0 -37.5 -12.5t-17.5 -32.5q0 -21 19.5 -35.5t42.5 -20.5t42.5 -17t19.5 -26q0 -11 -7 -25q-64 -138 -198 -167q-22 -5 -22 -27q0 -47 138 -69q2 -5 6 -26t11 -30.5t23 -9.5q13 0 38.5 5t38.5 5q35 0 67.5 -15
+t54.5 -32.5t57.5 -32.5t76.5 -15q43 0 79 15t57.5 32.5t54 32.5t67.5 15q13 0 39 -4.5t39 -4.5q15 0 22.5 9.5t11.5 31t5 24.5q138 22 138 69zM1536 1120v-960q0 -119 -84.5 -203.5t-203.5 -84.5h-960q-119 0 -203.5 84.5t-84.5 203.5v960q0 119 84.5 203.5t203.5 84.5h960
+q119 0 203.5 -84.5t84.5 -203.5z" />
+    <glyph glyph-name="uniF2AE" unicode="&#xf2ae;" horiz-adv-x="2304" 
+d="M2304 1536q-69 -46 -125 -92t-89 -81t-59.5 -71.5t-37.5 -57.5t-22 -44.5t-14 -29.5q-10 -18 -35.5 -136.5t-48.5 -164.5q-15 -29 -50 -60.5t-67.5 -50.5t-72.5 -41t-48 -28q-47 -31 -151 -231q-341 14 -630 -158q-92 -53 -303 -179q47 16 86 31t55 22l15 7
+q71 27 163 64.5t133.5 53.5t108 34.5t142.5 31.5q186 31 465 -7q1 0 10 -3q11 -6 14 -17t-3 -22l-194 -345q-15 -29 -47 -22q-128 24 -354 24q-146 0 -402 -44.5t-392 -46.5q-82 -1 -149 13t-107 37t-61 40t-33 34l-1 1v2q0 6 6 6q138 0 371 55q192 366 374.5 524t383.5 158
+q5 0 14.5 -0.5t38 -5t55 -12t61.5 -24.5t63 -39.5t54 -59t40 -82.5l102 177q2 4 21 42.5t44.5 86.5t61 109.5t84 133.5t100.5 137q66 82 128 141.5t121.5 96.5t92.5 53.5t88 39.5z" />
+    <glyph glyph-name="uniF2B0" unicode="&#xf2b0;" 
+d="M1322 640q0 -45 -5 -76l-236 14l224 -78q-19 -73 -58 -141l-214 103l177 -158q-44 -61 -107 -108l-157 178l103 -215q-61 -37 -140 -59l-79 228l14 -240q-38 -6 -76 -6t-76 6l14 238l-78 -226q-74 19 -140 59l103 215l-157 -178q-59 43 -108 108l178 158l-214 -104
+q-39 69 -58 141l224 79l-237 -14q-5 42 -5 76q0 35 5 77l238 -14l-225 79q19 73 58 140l214 -104l-177 159q46 61 107 108l158 -178l-103 215q67 39 140 58l77 -224l-13 236q36 6 75 6q38 0 76 -6l-14 -237l78 225q74 -19 140 -59l-103 -214l158 178q61 -47 107 -108
+l-177 -159l213 104q37 -62 58 -141l-224 -78l237 14q5 -31 5 -77zM1352 640q0 160 -78.5 295.5t-213 214t-292.5 78.5q-119 0 -227 -46.5t-186.5 -125t-124.5 -187.5t-46 -229q0 -119 46 -228t124.5 -187.5t186.5 -125t227 -46.5q158 0 292.5 78.5t213 214t78.5 294.5z
+M1425 1023v-766l-657 -383l-657 383v766l657 383zM768 -183l708 412v823l-708 411l-708 -411v-823zM1536 1088v-896l-768 -448l-768 448v896l768 448z" />
+    <glyph glyph-name="uniF2B1" unicode="&#xf2b1;" horiz-adv-x="1664" 
+d="M339 1318h691l-26 -72h-665q-110 0 -188.5 -79t-78.5 -189v-771q0 -95 60.5 -169.5t153.5 -93.5q23 -5 98 -5v-72h-45q-140 0 -239.5 100t-99.5 240v771q0 140 99.5 240t239.5 100zM1190 1536h247l-482 -1294q-23 -61 -40.5 -103.5t-45 -98t-54 -93.5t-64.5 -78.5
+t-79.5 -65t-95.5 -41t-116 -18.5v195q163 26 220 182q20 52 20 105q0 54 -20 106l-285 733h228l187 -585zM1664 978v-1111h-795q37 55 45 73h678v1038q0 85 -49.5 155t-129.5 99l25 67q101 -34 163.5 -123.5t62.5 -197.5z" />
+    <glyph glyph-name="uniF2B2" unicode="&#xf2b2;" horiz-adv-x="1792" 
+d="M852 1227q0 -29 -17 -52.5t-45 -23.5t-45 23.5t-17 52.5t17 52.5t45 23.5t45 -23.5t17 -52.5zM688 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50 -21.5t-20 -51.5v-114q0 -30 20.5 -52t49.5 -22q30 0 50.5 22t20.5 52zM860 -149v114q0 30 -20 51.5t-50 21.5t-50.5 -21.5
+t-20.5 -51.5v-114q0 -30 20.5 -52t50.5 -22q29 0 49.5 22t20.5 52zM1034 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50.5 -21.5t-20.5 -51.5v-114q0 -30 20.5 -52t50.5 -22t50.5 22t20.5 52zM1208 -149v114q0 30 -20.5 51.5t-50.5 21.5t-50.5 -21.5t-20.5 -51.5v-114
+q0 -30 20.5 -52t50.5 -22t50.5 22t20.5 52zM1476 535q-84 -160 -232 -259.5t-323 -99.5q-123 0 -229.5 51.5t-178.5 137t-113 197.5t-41 232q0 88 21 174q-104 -175 -104 -390q0 -162 65 -312t185 -251q30 57 91 57q56 0 86 -50q32 50 87 50q56 0 86 -50q32 50 87 50t87 -50
+q30 50 86 50q28 0 52.5 -15.5t37.5 -40.5q112 94 177 231.5t73 287.5zM1326 564q0 75 -72 75q-17 0 -47 -6q-95 -19 -149 -19q-226 0 -226 243q0 86 30 204q-83 -127 -83 -275q0 -150 89 -260.5t235 -110.5q111 0 210 70q13 48 13 79zM884 1223q0 50 -32 89.5t-81 39.5
+t-81 -39.5t-32 -89.5q0 -51 31.5 -90.5t81.5 -39.5t81.5 39.5t31.5 90.5zM1513 884q0 96 -37.5 179t-113 137t-173.5 54q-77 0 -149 -35t-127 -94q-48 -159 -48 -268q0 -104 45.5 -157t147.5 -53q53 0 142 19q36 6 53 6q51 0 77.5 -28t26.5 -80q0 -26 -4 -46
+q75 68 117.5 165.5t42.5 200.5zM1792 667q0 -111 -33.5 -249.5t-93.5 -204.5q-58 -64 -195 -142.5t-228 -104.5l-4 -1v-114q0 -43 -29.5 -75t-72.5 -32q-56 0 -86 50q-32 -50 -87 -50t-87 50q-30 -50 -86 -50q-55 0 -87 50q-30 -50 -86 -50q-47 0 -75 33.5t-28 81.5
+q-90 -68 -198 -68q-118 0 -211 80q54 1 106 20q-113 31 -182 127q32 -7 71 -7q89 0 164 46q-192 192 -240 306q-24 56 -24 160q0 57 9 125.5t31.5 146.5t55 141t86.5 105t120 42q59 0 81 -52q19 29 42 54q2 3 12 13t13 16q10 15 23 38t25 42t28 39q87 111 211.5 177
+t260.5 66q35 0 62 -4q59 64 146 64q83 0 140 -57q5 -5 5 -12q0 -5 -6 -13.5t-12.5 -16t-16 -17l-10.5 -10.5q17 -6 36 -18t19 -24q0 -6 -16 -25q157 -138 197 -378q25 30 60 30q45 0 100 -49q90 -80 90 -279z" />
+    <glyph glyph-name="uniF2B3" unicode="&#xf2b3;" 
+d="M917 631q0 33 -6 64h-362v-132h217q-12 -76 -74.5 -120.5t-142.5 -44.5q-99 0 -169 71.5t-70 170.5t70 170.5t169 71.5q93 0 153 -59l104 101q-108 100 -257 100q-160 0 -272 -112.5t-112 -271.5t112 -271.5t272 -112.5q165 0 266.5 105t101.5 270zM1262 585h109v110
+h-109v110h-110v-110h-110v-110h110v-110h110v110zM1536 640q0 -209 -103 -385.5t-279.5 -279.5t-385.5 -103t-385.5 103t-279.5 279.5t-103 385.5t103 385.5t279.5 279.5t385.5 103t385.5 -103t279.5 -279.5t103 -385.5z" />
+    <glyph glyph-name="uniF2B4" unicode="&#xf2b4;" 
+d="M1536 1024v-839q0 -48 -49 -62q-174 -52 -338 -52q-73 0 -215.5 29.5t-227.5 29.5q-164 0 -370 -48v-338h-160v1368q-63 25 -101 81t-38 124q0 91 64 155t155 64t155 -64t64 -155q0 -68 -38 -124t-101 -81v-68q190 44 343 44q99 0 198 -15q14 -2 111.5 -22.5t149.5 -20.5
+q77 0 165 18q11 2 80 21t89 19q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="uniF2B5" unicode="&#xf2b5;" horiz-adv-x="2304" 
+d="M192 384q40 0 56 32t0 64t-56 32t-56 -32t0 -64t56 -32zM1665 442q-10 13 -38.5 50t-41.5 54t-38 49t-42.5 53t-40.5 47t-45 49l-125 -140q-83 -94 -208.5 -92t-205.5 98q-57 69 -56.5 158t58.5 157l177 206q-22 11 -51 16.5t-47.5 6t-56.5 -0.5t-49 -1q-92 0 -158 -66
+l-158 -158h-155v-544q5 0 21 0.5t22 0t19.5 -2t20.5 -4.5t17.5 -8.5t18.5 -13.5l297 -292q115 -111 227 -111q78 0 125 47q57 -20 112.5 8t72.5 85q74 -6 127 44q20 18 36 45.5t14 50.5q10 -10 43 -10q43 0 77 21t49.5 53t12 71.5t-30.5 73.5zM1824 384h96v512h-93l-157 180
+q-66 76 -169 76h-167q-89 0 -146 -67l-209 -243q-28 -33 -28 -75t27 -75q43 -51 110 -52t111 49l193 218q25 23 53.5 21.5t47 -27t8.5 -56.5q16 -19 56 -63t60 -68q29 -36 82.5 -105.5t64.5 -84.5q52 -66 60 -140zM2112 384q40 0 56 32t0 64t-56 32t-56 -32t0 -64t56 -32z
+M2304 960v-640q0 -26 -19 -45t-45 -19h-434q-27 -65 -82 -106.5t-125 -51.5q-33 -48 -80.5 -81.5t-102.5 -45.5q-42 -53 -104.5 -81.5t-128.5 -24.5q-60 -34 -126 -39.5t-127.5 14t-117 53.5t-103.5 81l-287 282h-358q-26 0 -45 19t-19 45v672q0 26 19 45t45 19h421
+q14 14 47 48t47.5 48t44 40t50.5 37.5t51 25.5t62 19.5t68 5.5h117q99 0 181 -56q82 56 181 56h167q35 0 67 -6t56.5 -14.5t51.5 -26.5t44.5 -31t43 -39.5t39 -42t41 -48t41.5 -48.5h355q26 0 45 -19t19 -45z" />
+    <glyph glyph-name="uniF2B6" unicode="&#xf2b6;" horiz-adv-x="1792" 
+d="M1792 882v-978q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v978q0 15 11 24q8 7 39 34.5t41.5 36t45.5 37.5t70 55.5t96 73t143.5 107t192.5 140.5q5 4 52.5 40t71.5 52.5t64 35t69 18.5t69 -18.5t65 -35.5t71 -52t52 -40q110 -80 192.5 -140.5t143.5 -107
+t96 -73t70 -55.5t45.5 -37.5t41.5 -36t39 -34.5q11 -9 11 -24zM1228 297q263 191 345 252q11 8 12.5 20.5t-6.5 23.5l-38 52q-8 11 -21 12.5t-24 -6.5q-231 -169 -343 -250q-5 -3 -52 -39t-71.5 -52.5t-64.5 -35t-69 -18.5t-69 18.5t-64.5 35t-71.5 52.5t-52 39
+q-186 134 -343 250q-11 8 -24 6.5t-21 -12.5l-38 -52q-8 -11 -6.5 -23.5t12.5 -20.5q82 -61 345 -252q10 -8 50 -38t65 -47t64 -39.5t77.5 -33.5t75.5 -11t75.5 11t79 34.5t64.5 39.5t65 47.5t48 36.5z" />
+    <glyph glyph-name="uniF2B7" unicode="&#xf2b7;" horiz-adv-x="1792" 
+d="M1474 623l39 -51q8 -11 6.5 -23.5t-11.5 -20.5q-43 -34 -126.5 -98.5t-146.5 -113t-67 -51.5q-39 -32 -60 -48t-60.5 -41t-76.5 -36.5t-74 -11.5h-1h-1q-37 0 -74 11.5t-76 36.5t-61 41.5t-60 47.5q-5 4 -65 50.5t-143.5 111t-122.5 94.5q-11 8 -12.5 20.5t6.5 23.5
+l37 52q8 11 21.5 13t24.5 -7q94 -73 306 -236q5 -4 43.5 -35t60.5 -46.5t56.5 -32.5t58.5 -17h1h1q24 0 58.5 17t56.5 32.5t60.5 46.5t43.5 35q258 198 313 242q11 8 24 6.5t21 -12.5zM1664 -96v928q-90 83 -159 139q-91 74 -389 304q-3 2 -43 35t-61 48t-56 32.5t-59 17.5
+h-1h-1q-24 0 -59 -17.5t-56 -32.5t-61 -48t-43 -35q-215 -166 -315.5 -245.5t-129.5 -104t-82 -74.5q-14 -12 -21 -19v-928q0 -13 9.5 -22.5t22.5 -9.5h1472q13 0 22.5 9.5t9.5 22.5zM1792 832v-928q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v928q0 56 41 94
+q123 114 350 290.5t233 181.5q36 30 59 47.5t61.5 42t76 36.5t74.5 12h1h1q37 0 74.5 -12t76 -36.5t61.5 -42t59 -47.5q43 -36 156 -122t226 -177t201 -173q41 -38 41 -94z" />
+    <glyph glyph-name="uniF2B8" unicode="&#xf2b8;" 
+d="M330 1l202 -214l-34 236l-216 213zM556 -225l274 218l-11 245l-300 -215zM245 413l227 -213l-48 327l-245 204zM495 189l317 214l-14 324l-352 -200zM843 178l95 -80l-2 239l-103 79q0 -1 1 -8.5t0 -12t-5 -7.5l-78 -52l85 -70q7 -6 7 -88zM138 930l256 -200l-68 465
+l-279 173zM1173 267l15 234l-230 -164l2 -240zM417 722l373 194l-19 441l-423 -163zM1270 357l20 233l-226 142l-2 -105l144 -95q6 -4 4 -9l-7 -119zM1461 496l30 222l-179 -128l-20 -228zM1273 329l-71 49l-8 -117q0 -5 -4 -8l-234 -187q-7 -5 -14 0l-98 83l7 -161
+q0 -5 -4 -8l-293 -234q-4 -2 -6 -2q-8 2 -8 3l-228 242q-4 4 -59 277q-2 7 5 11l61 37q-94 86 -95 92l-72 351q-2 7 6 12l94 45q-133 100 -135 108l-96 466q-2 10 7 13l433 135q5 0 8 -1l317 -153q6 -4 6 -9l20 -463q0 -7 -6 -10l-118 -61l126 -85q5 -2 5 -8l5 -123l121 74
+q5 4 11 0l84 -56l3 110q0 6 5 9l206 126q6 3 11 0l245 -135q4 -4 5 -7t-6.5 -60t-17.5 -124.5t-10 -70.5q0 -5 -4 -7l-191 -153q-6 -5 -13 0z" />
+    <glyph glyph-name="uniF2B9" unicode="&#xf2b9;" horiz-adv-x="1664" 
+d="M1201 298q0 57 -5.5 107t-21 100.5t-39.5 86t-64 58t-91 22.5q-6 -4 -33.5 -20.5t-42.5 -24.5t-40.5 -20t-49 -17t-46.5 -5t-46.5 5t-49 17t-40.5 20t-42.5 24.5t-33.5 20.5q-51 0 -91 -22.5t-64 -58t-39.5 -86t-21 -100.5t-5.5 -107q0 -73 42 -121.5t103 -48.5h576
+q61 0 103 48.5t42 121.5zM1028 892q0 108 -76.5 184t-183.5 76t-183.5 -76t-76.5 -184q0 -107 76.5 -183t183.5 -76t183.5 76t76.5 183zM1664 352v-192q0 -14 -9 -23t-23 -9h-96v-224q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h1216
+q66 0 113 -47t47 -113v-224h96q14 0 23 -9t9 -23v-192q0 -14 -9 -23t-23 -9h-96v-128h96q14 0 23 -9t9 -23v-192q0 -14 -9 -23t-23 -9h-96v-128h96q14 0 23 -9t9 -23z" />
+    <glyph glyph-name="uniF2BA" unicode="&#xf2ba;" horiz-adv-x="1664" 
+d="M1028 892q0 -107 -76.5 -183t-183.5 -76t-183.5 76t-76.5 183q0 108 76.5 184t183.5 76t183.5 -76t76.5 -184zM980 672q46 0 82.5 -17t60 -47.5t39.5 -67t24 -81t11.5 -82.5t3.5 -79q0 -67 -39.5 -118.5t-105.5 -51.5h-576q-66 0 -105.5 51.5t-39.5 118.5q0 48 4.5 93.5
+t18.5 98.5t36.5 91.5t63 64.5t93.5 26h5q7 -4 32 -19.5t35.5 -21t33 -17t37 -16t35 -9t39.5 -4.5t39.5 4.5t35 9t37 16t33 17t35.5 21t32 19.5zM1664 928q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-128h96q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-128h96
+q13 0 22.5 -9.5t9.5 -22.5v-192q0 -13 -9.5 -22.5t-22.5 -9.5h-96v-224q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h1216q66 0 113 -47t47 -113v-224h96q13 0 22.5 -9.5t9.5 -22.5v-192zM1408 -96v1472q0 13 -9.5 22.5t-22.5 9.5h-1216
+q-13 0 -22.5 -9.5t-9.5 -22.5v-1472q0 -13 9.5 -22.5t22.5 -9.5h1216q13 0 22.5 9.5t9.5 22.5z" />
+    <glyph glyph-name="uniF2BB" unicode="&#xf2bb;" horiz-adv-x="2048" 
+d="M1024 405q0 64 -9 117.5t-29.5 103t-60.5 78t-97 28.5q-6 -4 -30 -18t-37.5 -21.5t-35.5 -17.5t-43 -14.5t-42 -4.5t-42 4.5t-43 14.5t-35.5 17.5t-37.5 21.5t-30 18q-57 0 -97 -28.5t-60.5 -78t-29.5 -103t-9 -117.5t37 -106.5t91 -42.5h512q54 0 91 42.5t37 106.5z
+M867 925q0 94 -66.5 160.5t-160.5 66.5t-160.5 -66.5t-66.5 -160.5t66.5 -160.5t160.5 -66.5t160.5 66.5t66.5 160.5zM1792 416v64q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM1792 676v56q0 15 -10.5 25.5t-25.5 10.5h-568
+q-15 0 -25.5 -10.5t-10.5 -25.5v-56q0 -15 10.5 -25.5t25.5 -10.5h568q15 0 25.5 10.5t10.5 25.5zM1792 928v64q0 14 -9 23t-23 9h-576q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h576q14 0 23 9t9 23zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-352v96q0 14 -9 23t-23 9
+h-64q-14 0 -23 -9t-9 -23v-96h-768v96q0 14 -9 23t-23 9h-64q-14 0 -23 -9t-9 -23v-96h-352q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2BC" unicode="&#xf2bc;" horiz-adv-x="2048" 
+d="M1024 405q0 -64 -37 -106.5t-91 -42.5h-512q-54 0 -91 42.5t-37 106.5t9 117.5t29.5 103t60.5 78t97 28.5q6 -4 30 -18t37.5 -21.5t35.5 -17.5t43 -14.5t42 -4.5t42 4.5t43 14.5t35.5 17.5t37.5 21.5t30 18q57 0 97 -28.5t60.5 -78t29.5 -103t9 -117.5zM867 925
+q0 -94 -66.5 -160.5t-160.5 -66.5t-160.5 66.5t-66.5 160.5t66.5 160.5t160.5 66.5t160.5 -66.5t66.5 -160.5zM1792 480v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM1792 732v-56q0 -15 -10.5 -25.5t-25.5 -10.5h-568
+q-15 0 -25.5 10.5t-10.5 25.5v56q0 15 10.5 25.5t25.5 10.5h568q15 0 25.5 -10.5t10.5 -25.5zM1792 992v-64q0 -14 -9 -23t-23 -9h-576q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h576q14 0 23 -9t9 -23zM1920 32v1216q0 13 -9.5 22.5t-22.5 9.5h-1728q-13 0 -22.5 -9.5
+t-9.5 -22.5v-1216q0 -13 9.5 -22.5t22.5 -9.5h352v96q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-96h768v96q0 14 9 23t23 9h64q14 0 23 -9t9 -23v-96h352q13 0 22.5 9.5t9.5 22.5zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-1728q-66 0 -113 47t-47 113v1216q0 66 47 113
+t113 47h1728q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2BD" unicode="&#xf2bd;" horiz-adv-x="1792" 
+d="M1523 197q-22 155 -87.5 257.5t-184.5 118.5q-67 -74 -159.5 -115.5t-195.5 -41.5t-195.5 41.5t-159.5 115.5q-119 -16 -184.5 -118.5t-87.5 -257.5q106 -150 271 -237.5t356 -87.5t356 87.5t271 237.5zM1280 896q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5
+t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5zM1792 640q0 -182 -71 -347.5t-190.5 -286t-285.5 -191.5t-349 -71q-182 0 -348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2BE" unicode="&#xf2be;" horiz-adv-x="1792" 
+d="M896 1536q182 0 348 -71t286 -191t191 -286t71 -348q0 -181 -70.5 -347t-190.5 -286t-286 -191.5t-349 -71.5t-349 71t-285.5 191.5t-190.5 286t-71 347.5t71 348t191 286t286 191t348 71zM1515 185q149 205 149 455q0 156 -61 298t-164 245t-245 164t-298 61t-298 -61
+t-245 -164t-164 -245t-61 -298q0 -250 149 -455q66 327 306 327q131 -128 313 -128t313 128q240 0 306 -327zM1280 832q0 159 -112.5 271.5t-271.5 112.5t-271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5z" />
+    <glyph glyph-name="uniF2C0" unicode="&#xf2c0;" 
+d="M1201 752q47 -14 89.5 -38t89 -73t79.5 -115.5t55 -172t22 -236.5q0 -154 -100 -263.5t-241 -109.5h-854q-141 0 -241 109.5t-100 263.5q0 131 22 236.5t55 172t79.5 115.5t89 73t89.5 38q-79 125 -79 272q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5
+t198.5 -40.5t163.5 -109.5t109.5 -163.5t40.5 -198.5q0 -147 -79 -272zM768 1408q-159 0 -271.5 -112.5t-112.5 -271.5t112.5 -271.5t271.5 -112.5t271.5 112.5t112.5 271.5t-112.5 271.5t-271.5 112.5zM1195 -128q88 0 150.5 71.5t62.5 173.5q0 239 -78.5 377t-225.5 145
+q-145 -127 -336 -127t-336 127q-147 -7 -225.5 -145t-78.5 -377q0 -102 62.5 -173.5t150.5 -71.5h854z" />
+    <glyph glyph-name="uniF2C1" unicode="&#xf2c1;" horiz-adv-x="1280" 
+d="M1024 278q0 -64 -37 -107t-91 -43h-512q-54 0 -91 43t-37 107t9 118t29.5 104t61 78.5t96.5 28.5q80 -75 188 -75t188 75q56 0 96.5 -28.5t61 -78.5t29.5 -104t9 -118zM870 797q0 -94 -67.5 -160.5t-162.5 -66.5t-162.5 66.5t-67.5 160.5t67.5 160.5t162.5 66.5
+t162.5 -66.5t67.5 -160.5zM1152 -96v1376h-1024v-1376q0 -13 9.5 -22.5t22.5 -9.5h960q13 0 22.5 9.5t9.5 22.5zM1280 1376v-1472q0 -66 -47 -113t-113 -47h-960q-66 0 -113 47t-47 113v1472q0 66 47 113t113 47h352v-96q0 -14 9 -23t23 -9h192q14 0 23 9t9 23v96h352
+q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2C2" unicode="&#xf2c2;" horiz-adv-x="2048" 
+d="M896 324q0 54 -7.5 100.5t-24.5 90t-51 68.5t-81 25q-64 -64 -156 -64t-156 64q-47 0 -81 -25t-51 -68.5t-24.5 -90t-7.5 -100.5q0 -55 31.5 -93.5t75.5 -38.5h426q44 0 75.5 38.5t31.5 93.5zM768 768q0 80 -56 136t-136 56t-136 -56t-56 -136t56 -136t136 -56t136 56
+t56 136zM1792 288v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM1408 544v64q0 14 -9 23t-23 9h-320q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h320q14 0 23 9t9 23zM1792 544v64q0 14 -9 23t-23 9h-192q-14 0 -23 -9t-9 -23
+v-64q0 -14 9 -23t23 -9h192q14 0 23 9t9 23zM1792 800v64q0 14 -9 23t-23 9h-704q-14 0 -23 -9t-9 -23v-64q0 -14 9 -23t23 -9h704q14 0 23 9t9 23zM128 1152h1792v96q0 14 -9 23t-23 9h-1728q-14 0 -23 -9t-9 -23v-96zM2048 1248v-1216q0 -66 -47 -113t-113 -47h-1728
+q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2C3" unicode="&#xf2c3;" horiz-adv-x="2048" 
+d="M896 324q0 -55 -31.5 -93.5t-75.5 -38.5h-426q-44 0 -75.5 38.5t-31.5 93.5q0 54 7.5 100.5t24.5 90t51 68.5t81 25q64 -64 156 -64t156 64q47 0 81 -25t51 -68.5t24.5 -90t7.5 -100.5zM768 768q0 -80 -56 -136t-136 -56t-136 56t-56 136t56 136t136 56t136 -56t56 -136z
+M1792 352v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1408 608v-64q0 -14 -9 -23t-23 -9h-320q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h320q14 0 23 -9t9 -23zM1792 608v-64q0 -14 -9 -23t-23 -9h-192q-14 0 -23 9t-9 23v64
+q0 14 9 23t23 9h192q14 0 23 -9t9 -23zM1792 864v-64q0 -14 -9 -23t-23 -9h-704q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h704q14 0 23 -9t9 -23zM1920 32v1120h-1792v-1120q0 -13 9.5 -22.5t22.5 -9.5h1728q13 0 22.5 9.5t9.5 22.5zM2048 1248v-1216q0 -66 -47 -113t-113 -47
+h-1728q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1728q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2C4" unicode="&#xf2c4;" horiz-adv-x="1792" 
+d="M1255 749q0 318 -105 474.5t-330 156.5q-222 0 -326 -157t-104 -474q0 -316 104 -471.5t326 -155.5q74 0 131 17q-22 43 -39 73t-44 65t-53.5 56.5t-63 36t-77.5 14.5q-46 0 -79 -16l-49 97q105 91 276 91q132 0 215.5 -54t150.5 -155q67 149 67 402zM1645 117h117
+q3 -27 -2 -67t-26.5 -95t-58 -100.5t-107 -78t-162.5 -32.5q-71 0 -130.5 19t-105.5 56t-79 78t-66 96q-97 -27 -205 -27q-150 0 -292.5 58t-253 158.5t-178 249t-67.5 317.5q0 170 67.5 319.5t178.5 250.5t253.5 159t291.5 58q121 0 238.5 -36t217 -106t176 -164.5
+t119.5 -219t43 -261.5q0 -190 -80.5 -347.5t-218.5 -264.5q47 -70 93.5 -106.5t104.5 -36.5q61 0 94 37.5t38 85.5z" />
+    <glyph glyph-name="uniF2C5" unicode="&#xf2c5;" horiz-adv-x="2304" 
+d="M453 -101q0 -21 -16 -37.5t-37 -16.5q-1 0 -13 3q-63 15 -162 140q-225 284 -225 676q0 341 213 614q39 51 95 103.5t94 52.5q19 0 35 -13.5t16 -32.5q0 -27 -63 -90q-98 -102 -147 -184q-119 -199 -119 -449q0 -281 123 -491q50 -85 136 -173q2 -3 14.5 -16t19.5 -21
+t17 -20.5t14.5 -23.5t4.5 -21zM1796 33q0 -29 -17.5 -48.5t-46.5 -19.5h-1081q-26 0 -45 19t-19 45q0 29 17.5 48.5t46.5 19.5h1081q26 0 45 -19t19 -45zM1581 644q0 -134 -67 -233q-25 -38 -69.5 -78.5t-83.5 -60.5q-16 -10 -27 -10q-7 0 -15 6t-8 12q0 9 19 30t42 46
+t42 67.5t19 88.5q0 76 -35 130q-29 42 -46 42q-3 0 -3 -5q0 -12 7.5 -35.5t7.5 -36.5q0 -22 -21.5 -35t-44.5 -13q-66 0 -66 76q0 15 1.5 44t1.5 44q0 25 -10 46q-13 25 -42 53.5t-51 28.5q-5 0 -7 -0.5t-3.5 -2.5t-1.5 -6q0 -2 16 -26t16 -54q0 -37 -19 -68t-46 -54
+t-53.5 -46t-45.5 -54t-19 -68q0 -98 42 -160q29 -43 79 -63q16 -5 17 -10q1 -2 1 -5q0 -16 -18 -16q-6 0 -33 11q-119 43 -195 139.5t-76 218.5q0 55 24.5 115.5t60 115t70.5 108.5t59.5 113.5t24.5 111.5q0 53 -25 94q-29 48 -56 64q-19 9 -19 21q0 20 41 20q50 0 110 -29
+q41 -19 71 -44.5t49.5 -51t33.5 -62.5t22 -69t16 -80q0 -1 3 -17.5t4.5 -25t5.5 -25t9 -27t11 -21.5t14.5 -16.5t18.5 -5.5q23 0 37 14t14 37q0 25 -20 67t-20 52t10 10q27 0 93 -70q72 -76 102.5 -156t30.5 -186zM2304 615q0 -274 -138 -503q-19 -32 -48 -72t-68 -86.5
+t-81 -77t-74 -30.5q-16 0 -31 15.5t-15 31.5q0 15 29 50.5t68.5 77t48.5 52.5q183 230 183 531q0 131 -20.5 235t-72.5 211q-58 119 -163 228q-2 3 -13 13.5t-16.5 16.5t-15 17.5t-15 20t-9.5 18.5t-4 19q0 19 16 35.5t35 16.5q70 0 196 -169q98 -131 146 -273t60 -314
+q2 -42 2 -64z" />
+    <glyph glyph-name="uniF2C6" unicode="&#xf2c6;" horiz-adv-x="1792" 
+d="M1189 229l147 693q9 44 -10.5 63t-51.5 7l-864 -333q-29 -11 -39.5 -25t-2.5 -26.5t32 -19.5l221 -69l513 323q21 14 32 6q7 -5 -4 -15l-415 -375v0v0l-16 -228q23 0 45 22l108 104l224 -165q64 -36 81 38zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71
+t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2C7" unicode="&#xf2c7;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v907h128v-907q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
+t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
+v128h192z" />
+    <glyph glyph-name="uniF2C8" unicode="&#xf2c8;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v651h128v-651q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
+t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
+v128h192z" />
+    <glyph glyph-name="uniF2C9" unicode="&#xf2c9;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v395h128v-395q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
+t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
+v128h192z" />
+    <glyph glyph-name="uniF2CA" unicode="&#xf2ca;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 60 35 110t93 71v139h128v-139q58 -21 93 -71t35 -110zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5
+t93.5 226.5zM896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192
+v128h192z" />
+    <glyph glyph-name="uniF2CB" unicode="&#xf2cb;" horiz-adv-x="1024" 
+d="M640 192q0 -80 -56 -136t-136 -56t-136 56t-56 136q0 79 56 135.5t136 56.5t136 -56.5t56 -135.5zM768 192q0 77 -34 144t-94 112v768q0 80 -56 136t-136 56t-136 -56t-56 -136v-768q-60 -45 -94 -112t-34 -144q0 -133 93.5 -226.5t226.5 -93.5t226.5 93.5t93.5 226.5z
+M896 192q0 -185 -131.5 -316.5t-316.5 -131.5t-316.5 131.5t-131.5 316.5q0 182 128 313v711q0 133 93.5 226.5t226.5 93.5t226.5 -93.5t93.5 -226.5v-711q128 -131 128 -313zM1024 768v-128h-192v128h192zM1024 1024v-128h-192v128h192zM1024 1280v-128h-192v128h192z" />
+    <glyph glyph-name="uniF2CC" unicode="&#xf2cc;" horiz-adv-x="1920" 
+d="M1433 1287q10 -10 10 -23t-10 -23l-626 -626q-10 -10 -23 -10t-23 10l-82 82q-10 10 -10 23t10 23l44 44q-72 91 -81.5 207t46.5 215q-74 71 -176 71q-106 0 -181 -75t-75 -181v-1280h-256v1280q0 104 40.5 198.5t109.5 163.5t163.5 109.5t198.5 40.5q106 0 201 -41
+t166 -115q94 39 197 24.5t185 -79.5l44 44q10 10 23 10t23 -10zM1344 1024q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1600 896q-26 0 -45 19t-19 45t19 45t45 19t45 -19t19 -45t-19 -45t-45 -19zM1856 1024q26 0 45 -19t19 -45t-19 -45t-45 -19
+t-45 19t-19 45t19 45t45 19zM1216 896q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1408 832q0 26 19 45t45 19t45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45zM1728 896q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 768
+q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1344 640q-26 0 -45 19t-19 45t19 45t45 19t45 -19t19 -45t-19 -45t-45 -19zM1600 768q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1216 512q-26 0 -45 19t-19 45t19 45t45 19t45 -19
+t19 -45t-19 -45t-45 -19zM1472 640q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 512q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1344 512q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1216 384
+q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19zM1088 256q26 0 45 -19t19 -45t-19 -45t-45 -19t-45 19t-19 45t19 45t45 19z" />
+    <glyph glyph-name="uniF2CD" unicode="&#xf2cd;" horiz-adv-x="1792" 
+d="M1664 448v-192q0 -169 -128 -286v-194q0 -14 -9 -23t-23 -9h-64q-14 0 -23 9t-9 23v118q-63 -22 -128 -22h-768q-65 0 -128 22v-110q0 -17 -9.5 -28.5t-22.5 -11.5h-64q-13 0 -22.5 11.5t-9.5 28.5v186q-128 117 -128 286v192h1536zM704 864q0 -14 -9 -23t-23 -9t-23 9
+t-9 23t9 23t23 9t23 -9t9 -23zM768 928q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM704 992q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 992q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM768 1056q0 -14 -9 -23t-23 -9t-23 9
+t-9 23t9 23t23 9t23 -9t9 -23zM704 1120q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1792 608v-64q0 -14 -9 -23t-23 -9h-1728q-14 0 -23 9t-9 23v64q0 14 9 23t23 9h96v640q0 106 75 181t181 75q108 0 184 -78q46 19 98 12t93 -39l22 22q11 11 22 0l42 -42
+q11 -11 0 -22l-314 -314q-11 -11 -22 0l-42 42q-11 11 0 22l22 22q-36 46 -40.5 104t23.5 108q-37 35 -88 35q-53 0 -90.5 -37.5t-37.5 -90.5v-640h1504q14 0 23 -9t9 -23zM896 1056q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 1120q0 -14 -9 -23t-23 -9
+t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM768 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM960 1120q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM896 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM832 1248q0 -14 -9 -23
+t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1024 1184q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM960 1248q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23zM1088 1248q0 -14 -9 -23t-23 -9t-23 9t-9 23t9 23t23 9t23 -9t9 -23z" />
+    <glyph glyph-name="uniF2CE" unicode="&#xf2ce;" 
+d="M994 344q0 -86 -17 -197q-31 -215 -55 -313q-22 -90 -152 -90t-152 90q-24 98 -55 313q-17 110 -17 197q0 168 224 168t224 -168zM1536 768q0 -240 -134 -434t-350 -280q-8 -3 -15 3t-6 15q7 48 10 66q4 32 6 47q1 9 9 12q159 81 255.5 234t96.5 337q0 180 -91 330.5
+t-247 234.5t-337 74q-124 -7 -237 -61t-193.5 -140.5t-128 -202t-46.5 -240.5q1 -184 99 -336.5t257 -231.5q7 -3 9 -12q3 -21 6 -45q1 -9 5 -32.5t6 -35.5q1 -9 -6.5 -15t-15.5 -2q-148 58 -261 169.5t-173.5 264t-52.5 319.5q7 143 66 273.5t154.5 227t225 157.5t272.5 70
+q164 10 315.5 -46.5t261 -160.5t175 -250.5t65.5 -308.5zM994 800q0 -93 -65.5 -158.5t-158.5 -65.5t-158.5 65.5t-65.5 158.5t65.5 158.5t158.5 65.5t158.5 -65.5t65.5 -158.5zM1282 768q0 -122 -53.5 -228.5t-146.5 -177.5q-8 -6 -16 -2t-10 14q-6 52 -29 92q-7 10 3 20
+q58 54 91 127t33 155q0 111 -58.5 204t-157.5 141.5t-212 36.5q-133 -15 -229 -113t-109 -231q-10 -92 23.5 -176t98.5 -144q10 -10 3 -20q-24 -41 -29 -93q-2 -9 -10 -13t-16 2q-95 74 -148.5 183t-51.5 234q3 131 69 244t177 181.5t241 74.5q144 7 268 -60t196.5 -187.5
+t72.5 -263.5z" />
+    <glyph glyph-name="uniF2D0" unicode="&#xf2d0;" horiz-adv-x="1792" 
+d="M256 128h1280v768h-1280v-768zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D1" unicode="&#xf2d1;" horiz-adv-x="1792" 
+d="M1792 224v-192q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v192q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D2" unicode="&#xf2d2;" horiz-adv-x="2048" 
+d="M256 0h768v512h-768v-512zM1280 512h512v768h-768v-256h96q66 0 113 -47t47 -113v-352zM2048 1376v-960q0 -66 -47 -113t-113 -47h-608v-352q0 -66 -47 -113t-113 -47h-960q-66 0 -113 47t-47 113v960q0 66 47 113t113 47h608v352q0 66 47 113t113 47h960q66 0 113 -47
+t47 -113z" />
+    <glyph glyph-name="uniF2D3" unicode="&#xf2d3;" horiz-adv-x="1792" 
+d="M1175 215l146 146q10 10 10 23t-10 23l-233 233l233 233q10 10 10 23t-10 23l-146 146q-10 10 -23 10t-23 -10l-233 -233l-233 233q-10 10 -23 10t-23 -10l-146 -146q-10 -10 -10 -23t10 -23l233 -233l-233 -233q-10 -10 -10 -23t10 -23l146 -146q10 -10 23 -10t23 10
+l233 233l233 -233q10 -10 23 -10t23 10zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D4" unicode="&#xf2d4;" horiz-adv-x="1792" 
+d="M1257 425l-146 -146q-10 -10 -23 -10t-23 10l-169 169l-169 -169q-10 -10 -23 -10t-23 10l-146 146q-10 10 -10 23t10 23l169 169l-169 169q-10 10 -10 23t10 23l146 146q10 10 23 10t23 -10l169 -169l169 169q10 10 23 10t23 -10l146 -146q10 -10 10 -23t-10 -23
+l-169 -169l169 -169q10 -10 10 -23t-10 -23zM256 128h1280v1024h-1280v-1024zM1792 1248v-1216q0 -66 -47 -113t-113 -47h-1472q-66 0 -113 47t-47 113v1216q0 66 47 113t113 47h1472q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D5" unicode="&#xf2d5;" horiz-adv-x="1792" 
+d="M1070 358l306 564h-654l-306 -564h654zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2D6" unicode="&#xf2d6;" horiz-adv-x="1794" 
+d="M1291 1060q-15 17 -35 8.5t-26 -28.5t5 -38q14 -17 40 -14.5t34 20.5t-18 52zM895 814q-8 -8 -19.5 -8t-18.5 8q-8 8 -8 19t8 18q7 8 18.5 8t19.5 -8q7 -7 7 -18t-7 -19zM1060 740l-35 -35q-12 -13 -29.5 -13t-30.5 13l-38 38q-12 13 -12 30t12 30l35 35q12 12 29.5 12
+t30.5 -12l38 -39q12 -12 12 -29.5t-12 -29.5zM951 870q-7 -8 -18.5 -8t-19.5 8q-7 8 -7 19t7 19q8 8 19 8t19 -8t8 -19t-8 -19zM1354 968q-34 -64 -107.5 -85.5t-127.5 16.5q-38 28 -61 66.5t-21 87.5t39 92t75.5 53t70.5 -5t70 -51q2 -2 13 -12.5t14.5 -13.5t13 -13.5
+t12.5 -15.5t10 -15.5t8.5 -18t4 -18.5t1 -21t-5 -22t-9.5 -24zM1555 486q3 20 -8.5 34.5t-27.5 21.5t-33 17t-23 20q-40 71 -84 98.5t-113 11.5q19 13 40 18.5t33 4.5l12 -1q2 45 -34 90q6 20 6.5 40.5t-2.5 30.5l-3 10q43 24 71 65t34 91q10 84 -43 150.5t-137 76.5
+q-60 7 -114 -18.5t-82 -74.5q-30 -51 -33.5 -101t14.5 -87t43.5 -64t56.5 -42q-45 4 -88 36t-57 88q-28 108 32 222q-16 21 -29 32q-50 0 -89 -19q19 24 42 37t36 14l13 1q0 50 -13 78q-10 21 -32.5 28.5t-47 -3.5t-37.5 -40q2 4 4 7q-7 -28 -6.5 -75.5t19 -117t48.5 -122.5
+q-25 -14 -47 -36q-35 -16 -85.5 -70.5t-84.5 -101.5l-33 -46q-90 -34 -181 -125.5t-75 -162.5q1 -16 11 -27q-15 -12 -30 -30q-21 -25 -21 -54t21.5 -40t63.5 6q41 19 77 49.5t55 60.5q-2 2 -6.5 5t-20.5 7.5t-33 3.5q23 5 51 12.5t40 10t27.5 6t26 4t23.5 0.5q14 -7 22 34
+q7 37 7 90q0 102 -40 150q106 -103 101 -219q-1 -29 -15 -50t-27 -27l-13 -6q-4 -7 -19 -32t-26 -45.5t-26.5 -52t-25 -61t-17 -63t-6.5 -66.5t10 -63q-35 54 -37 80q-22 -24 -34.5 -39t-33.5 -42t-30.5 -46t-16.5 -41t-0.5 -38t25.5 -27q45 -25 144 64t190.5 221.5
+t122.5 228.5q86 52 145 115.5t86 119.5q47 -93 154 -178q104 -83 167 -80q39 2 46 43zM1794 640q0 -182 -71 -348t-191 -286t-286.5 -191t-348.5 -71t-348.5 71t-286.5 191t-191 286t-71 348t71 348t191 286t286.5 191t348.5 71t348.5 -71t286.5 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2D7" unicode="&#xf2d7;" 
+d="M518 1353v-655q103 -1 191.5 1.5t125.5 5.5l37 3q68 2 90.5 24.5t39.5 94.5l33 142h103l-14 -322l7 -319h-103l-29 127q-15 68 -45 93t-84 26q-87 8 -352 8v-556q0 -78 43.5 -115.5t133.5 -37.5h357q35 0 59.5 2t55 7.5t54 18t48.5 32t46 50.5t39 73l93 216h89
+q-6 -37 -31.5 -252t-30.5 -276q-146 5 -263.5 8t-162.5 4h-44h-628l-376 -12v102l127 25q67 13 91.5 37t25.5 79l8 643q3 402 -8 645q-2 61 -25.5 84t-91.5 36l-127 24v102l376 -12h702q139 0 374 27q-6 -68 -14 -194.5t-12 -219.5l-5 -92h-93l-32 124q-31 121 -74 179.5
+t-113 58.5h-548q-28 0 -35.5 -8.5t-7.5 -30.5z" />
+    <glyph glyph-name="uniF2D8" unicode="&#xf2d8;" 
+d="M922 739v-182q0 -4 0.5 -15t0 -15l-1.5 -12t-3.5 -11.5t-6.5 -7.5t-11 -5.5t-16 -1.5v309q9 0 16 -1t11 -5t6.5 -5.5t3.5 -9.5t1 -10.5v-13.5v-14zM1238 643v-121q0 -1 0.5 -12.5t0 -15.5t-2.5 -11.5t-7.5 -10.5t-13.5 -3q-9 0 -14 9q-4 10 -4 165v7v8.5v9t1.5 8.5l3.5 7
+t5 5.5t8 1.5q6 0 10 -1.5t6.5 -4.5t4 -6t2 -8.5t0.5 -8v-9.5v-9zM180 407h122v472h-122v-472zM614 407h106v472h-159l-28 -221q-20 148 -32 221h-158v-472h107v312l45 -312h76l43 319v-319zM1039 712q0 67 -5 90q-3 16 -11 28.5t-17 20.5t-25 14t-26.5 8.5t-31 4t-29 1.5
+h-29.5h-12h-91v-472h56q169 -1 197 24.5t25 180.5q-1 62 -1 100zM1356 515v133q0 29 -2 45t-9.5 33.5t-24.5 25t-46 7.5q-46 0 -77 -34v154h-117v-472h110l7 30q30 -36 77 -36q50 0 66 30.5t16 83.5zM1536 1248v-1216q0 -66 -47 -113t-113 -47h-1216q-66 0 -113 47t-47 113
+v1216q0 66 47 113t113 47h1216q66 0 113 -47t47 -113z" />
+    <glyph glyph-name="uniF2D9" unicode="&#xf2d9;" horiz-adv-x="2176" 
+d="M1143 -197q-6 1 -11 4q-13 8 -36 23t-86 65t-116.5 104.5t-112 140t-89.5 172.5q-17 3 -175 37q66 -213 235 -362t391 -184zM502 409l168 -28q-25 76 -41 167.5t-19 145.5l-4 53q-84 -82 -121 -224q5 -65 17 -114zM612 1018q-43 -64 -77 -148q44 46 74 68zM2049 584
+q0 161 -62 307t-167.5 252t-250.5 168.5t-304 62.5q-147 0 -281 -52.5t-240 -148.5q-30 -58 -45 -160q60 51 143 83.5t158.5 43t143 13.5t108.5 -1l40 -3q33 -1 53 -15.5t24.5 -33t6.5 -37t-1 -28.5q-126 11 -227.5 0.5t-183 -43.5t-142.5 -71.5t-131 -98.5
+q4 -36 11.5 -92.5t35.5 -178t62 -179.5q123 -6 247.5 14.5t214.5 53.5t162.5 67t109.5 59l37 24q22 16 39.5 20.5t30.5 -5t17 -34.5q14 -97 -39 -121q-208 -97 -467 -134q-135 -20 -317 -16q41 -96 110 -176.5t137 -127t130.5 -79t101.5 -43.5l39 -12q143 -23 263 15
+q195 99 314 289t119 418zM2123 621q-14 -135 -40 -212q-70 -208 -181.5 -346.5t-318.5 -253.5q-48 -33 -82 -44q-72 -26 -163 -16q-36 -3 -73 -3q-283 0 -504.5 173t-295.5 442q-1 0 -4 0.5t-5 0.5q-6 -50 2.5 -112.5t26 -115t36 -98t31.5 -71.5l14 -26q8 -12 54 -82
+q-71 38 -124.5 106.5t-78.5 140t-39.5 137t-17.5 107.5l-2 42q-5 2 -33.5 12.5t-48.5 18t-53 20.5t-57.5 25t-50 25.5t-42.5 27t-25 25.5q19 -10 50.5 -25.5t113 -45.5t145.5 -38l2 32q11 149 94 290q41 202 176 365q28 115 81 214q15 28 32 45t49 32q158 74 303.5 104
+t302 11t306.5 -97q220 -115 333 -336t87 -474z" />
+    <glyph glyph-name="uniF2DA" unicode="&#xf2da;" horiz-adv-x="1792" 
+d="M1341 752q29 44 -6.5 129.5t-121.5 142.5q-58 39 -125.5 53.5t-118 4.5t-68.5 -37q-12 -23 -4.5 -28t42.5 -10q23 -3 38.5 -5t44.5 -9.5t56 -17.5q36 -13 67.5 -31.5t53 -37t40 -38.5t30.5 -38t22 -34.5t16.5 -28.5t12 -18.5t10.5 -6t11 9.5zM1704 178
+q-52 -127 -148.5 -220t-214.5 -141.5t-253 -60.5t-266 13.5t-251 91t-210 161.5t-141.5 235.5t-46.5 303.5q1 41 8.5 84.5t12.5 64t24 80.5t23 73q-51 -208 1 -397t173 -318t291 -206t346 -83t349 74.5t289 244.5q20 27 18 14q0 -4 -4 -14zM1465 627q0 -104 -40.5 -199
+t-108.5 -164t-162 -109.5t-198 -40.5t-198 40.5t-162 109.5t-108.5 164t-40.5 199t40.5 199t108.5 164t162 109.5t198 40.5t198 -40.5t162 -109.5t108.5 -164t40.5 -199zM1752 915q-65 147 -180.5 251t-253 153.5t-292 53.5t-301 -36.5t-275.5 -129t-220 -211.5t-131 -297
+t-10 -373q-49 161 -51.5 311.5t35.5 272.5t109 227t165.5 180.5t207 126t232 71t242.5 9t236 -54t216 -124.5t178 -197q33 -50 62 -121t31 -112zM1690 573q12 244 -136.5 416t-396.5 240q-8 0 -10 5t24 8q125 -4 230 -50t173 -120t116 -168.5t58.5 -199t-1 -208
+t-61.5 -197.5t-122.5 -167t-185 -117.5t-248.5 -46.5q108 30 201.5 80t174 123t129.5 176.5t55 225.5z" />
+    <glyph glyph-name="uniF2DB" unicode="&#xf2db;" 
+d="M192 256v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 512v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 768v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16
+q0 16 16 16h112zM192 1024v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM192 1280v-128h-112q-16 0 -16 16v16h-48q-16 0 -16 16v32q0 16 16 16h48v16q0 16 16 16h112zM1280 1440v-1472q0 -40 -28 -68t-68 -28h-832q-40 0 -68 28
+t-28 68v1472q0 40 28 68t68 28h832q40 0 68 -28t28 -68zM1536 208v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 464v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 720v-32
+q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 976v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16h48q16 0 16 -16zM1536 1232v-32q0 -16 -16 -16h-48v-16q0 -16 -16 -16h-112v128h112q16 0 16 -16v-16
+h48q16 0 16 -16z" />
+    <glyph glyph-name="uniF2DC" unicode="&#xf2dc;" horiz-adv-x="1664" 
+d="M1566 419l-167 -33l186 -107q23 -13 29.5 -38.5t-6.5 -48.5q-14 -23 -39 -29.5t-48 6.5l-186 106l55 -160q13 -38 -12 -63.5t-60.5 -20.5t-48.5 42l-102 300l-271 156v-313l208 -238q16 -18 17 -39t-11 -36.5t-28.5 -25t-37 -5.5t-36.5 22l-112 128v-214q0 -26 -19 -45
+t-45 -19t-45 19t-19 45v214l-112 -128q-16 -18 -36.5 -22t-37 5.5t-28.5 25t-11 36.5t17 39l208 238v313l-271 -156l-102 -300q-13 -37 -48.5 -42t-60.5 20.5t-12 63.5l55 160l-186 -106q-23 -13 -48 -6.5t-39 29.5q-13 23 -6.5 48.5t29.5 38.5l186 107l-167 33
+q-29 6 -42 29t-8.5 46.5t25.5 40t50 10.5l310 -62l271 157l-271 157l-310 -62q-4 -1 -13 -1q-27 0 -44 18t-19 40t11 43t40 26l167 33l-186 107q-23 13 -29.5 38.5t6.5 48.5t39 30t48 -7l186 -106l-55 160q-13 38 12 63.5t60.5 20.5t48.5 -42l102 -300l271 -156v313
+l-208 238q-16 18 -17 39t11 36.5t28.5 25t37 5.5t36.5 -22l112 -128v214q0 26 19 45t45 19t45 -19t19 -45v-214l112 128q16 18 36.5 22t37 -5.5t28.5 -25t11 -36.5t-17 -39l-208 -238v-313l271 156l102 300q13 37 48.5 42t60.5 -20.5t12 -63.5l-55 -160l186 106
+q23 13 48 6.5t39 -29.5q13 -23 6.5 -48.5t-29.5 -38.5l-186 -107l167 -33q27 -5 40 -26t11 -43t-19 -40t-44 -18q-9 0 -13 1l-310 62l-271 -157l271 -157l310 62q29 6 50 -10.5t25.5 -40t-8.5 -46.5t-42 -29z" />
+    <glyph glyph-name="uniF2DD" unicode="&#xf2dd;" horiz-adv-x="1792" 
+d="M1473 607q7 118 -33 226.5t-113 189t-177 131t-221 57.5q-116 7 -225.5 -32t-192 -110.5t-135 -175t-59.5 -220.5q-7 -118 33 -226.5t113 -189t177.5 -131t221.5 -57.5q155 -9 293 59t224 195.5t94 283.5zM1792 1536l-349 -348q120 -117 180.5 -272t50.5 -321
+q-11 -183 -102 -339t-241 -255.5t-332 -124.5l-999 -132l347 347q-120 116 -180.5 271.5t-50.5 321.5q11 184 102 340t241.5 255.5t332.5 124.5q167 22 500 66t500 66z" />
+    <glyph glyph-name="uniF2DE" unicode="&#xf2de;" horiz-adv-x="1792" 
+d="M948 508l163 -329h-51l-175 350l-171 -350h-49l179 374l-78 33l21 49l240 -102l-21 -50zM563 1100l304 -130l-130 -304l-304 130zM907 915l240 -103l-103 -239l-239 102zM1188 765l191 -81l-82 -190l-190 81zM1680 640q0 159 -62 304t-167.5 250.5t-250.5 167.5t-304 62
+t-304 -62t-250.5 -167.5t-167.5 -250.5t-62 -304t62 -304t167.5 -250.5t250.5 -167.5t304 -62t304 62t250.5 167.5t167.5 250.5t62 304zM1792 640q0 -182 -71 -348t-191 -286t-286 -191t-348 -71t-348 71t-286 191t-191 286t-71 348t71 348t191 286t286 191t348 71t348 -71
+t286 -191t191 -286t71 -348z" />
+    <glyph glyph-name="uniF2E0" unicode="&#xf2e0;" horiz-adv-x="1920" 
+d="M1334 302q-4 24 -27.5 34t-49.5 10.5t-48.5 12.5t-25.5 38q-5 47 33 139.5t75 181t32 127.5q-14 101 -117 103q-45 1 -75 -16l-3 -2l-5 -2.5t-4.5 -2t-5 -2t-5 -0.5t-6 1.5t-6 3.5t-6.5 5q-3 2 -9 8.5t-9 9t-8.5 7.5t-9.5 7.5t-9.5 5.5t-11 4.5t-11.5 2.5q-30 5 -48 -3
+t-45 -31q-1 -1 -9 -8.5t-12.5 -11t-15 -10t-16.5 -5.5t-17 3q-54 27 -84 40q-41 18 -94 -5t-76 -65q-16 -28 -41 -98.5t-43.5 -132.5t-40 -134t-21.5 -73q-22 -69 18.5 -119t110.5 -46q30 2 50.5 15t38.5 46q7 13 79 199.5t77 194.5q6 11 21.5 18t29.5 0q27 -15 21 -53
+q-2 -18 -51 -139.5t-50 -132.5q-6 -38 19.5 -56.5t60.5 -7t55 49.5q4 8 45.5 92t81.5 163.5t46 88.5q20 29 41 28q29 0 25 -38q-2 -16 -65.5 -147.5t-70.5 -159.5q-12 -53 13 -103t74 -74q17 -9 51 -15.5t71.5 -8t62.5 14t20 48.5zM383 86q3 -15 -5 -27.5t-23 -15.5
+q-14 -3 -26.5 5t-15.5 23q-3 14 5 27t22 16t27 -5t16 -23zM953 -177q12 -17 8.5 -37.5t-20.5 -32.5t-37.5 -8t-32.5 21q-11 17 -7.5 37.5t20.5 32.5t37.5 8t31.5 -21zM177 635q-18 -27 -49.5 -33t-57.5 13q-26 18 -32 50t12 58q18 27 49.5 33t57.5 -12q26 -19 32 -50.5
+t-12 -58.5zM1467 -42q19 -28 13 -61.5t-34 -52.5t-60.5 -13t-51.5 34t-13 61t33 53q28 19 60.5 13t52.5 -34zM1579 562q69 -113 42.5 -244.5t-134.5 -207.5q-90 -63 -199 -60q-20 -80 -84.5 -127t-143.5 -44.5t-140 57.5q-12 -9 -13 -10q-103 -71 -225 -48.5t-193 126.5
+q-50 73 -53 164q-83 14 -142.5 70.5t-80.5 128t-2 152t81 138.5q-36 60 -38 128t24.5 125t79.5 98.5t121 50.5q32 85 99 148t146.5 91.5t168 17t159.5 -66.5q72 21 140 17.5t128.5 -36t104.5 -80t67.5 -115t17.5 -140.5q52 -16 87 -57t45.5 -89t-5.5 -99.5t-58 -87.5z
+M455 1222q14 -20 9.5 -44.5t-24.5 -38.5q-19 -14 -43.5 -9.5t-37.5 24.5q-14 20 -9.5 44.5t24.5 38.5q19 14 43.5 9.5t37.5 -24.5zM614 1503q4 -16 -5 -30.5t-26 -18.5t-31 5.5t-18 26.5q-3 17 6.5 31t25.5 18q17 4 31 -5.5t17 -26.5zM1800 555q4 -20 -6.5 -37t-30.5 -21
+q-19 -4 -36 6.5t-21 30.5t6.5 37t30.5 22q20 4 36.5 -7.5t20.5 -30.5zM1136 1448q16 -27 8.5 -58.5t-35.5 -47.5q-27 -16 -57.5 -8.5t-46.5 34.5q-16 28 -8.5 59t34.5 48t58 9t47 -36zM1882 792q4 -15 -4 -27.5t-23 -16.5q-15 -3 -27.5 5.5t-15.5 22.5q-3 15 5 28t23 16
+q14 3 26.5 -5t15.5 -23zM1691 1033q15 -22 10.5 -49t-26.5 -43q-22 -15 -49 -10t-42 27t-10 49t27 43t48.5 11t41.5 -28z" />
+    <glyph glyph-name="uniF2E1" unicode="&#xf2e1;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E2" unicode="&#xf2e2;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E3" unicode="&#xf2e3;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E4" unicode="&#xf2e4;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E5" unicode="&#xf2e5;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E6" unicode="&#xf2e6;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E7" unicode="&#xf2e7;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="_698" unicode="&#xf2e8;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2E9" unicode="&#xf2e9;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2EA" unicode="&#xf2ea;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2EB" unicode="&#xf2eb;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2EC" unicode="&#xf2ec;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2ED" unicode="&#xf2ed;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="uniF2EE" unicode="&#xf2ee;" horiz-adv-x="1792" 
+ />
+    <glyph glyph-name="lessequal" unicode="&#xf500;" horiz-adv-x="1792" 
+ />
+  </font>
+</defs></svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/fontawesome-webfont.ttf b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/fontawesome-webfont.ttf
new file mode 100644
index 0000000..35acda2
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/fontawesome-webfont.ttf differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/fontawesome-webfont.woff b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/fontawesome-webfont.woff
new file mode 100644
index 0000000..400014a
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/fontawesome-webfont.woff differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/fontawesome-webfont.woff2 b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/fontawesome-webfont.woff2
new file mode 100644
index 0000000..4d13fc6
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/fontawesome-webfont.woff2 differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.eot b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.eot
new file mode 100644
index 0000000..b93a495
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.eot differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.svg
new file mode 100644
index 0000000..94fb549
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.svg
@@ -0,0 +1,288 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata></metadata>
+<defs>
+<font id="glyphicons_halflingsregular" horiz-adv-x="1200" >
+<font-face units-per-em="1200" ascent="960" descent="-240" />
+<missing-glyph horiz-adv-x="500" />
+<glyph horiz-adv-x="0" />
+<glyph horiz-adv-x="400" />
+<glyph unicode=" " />
+<glyph unicode="*" d="M600 1100q15 0 34 -1.5t30 -3.5l11 -1q10 -2 17.5 -10.5t7.5 -18.5v-224l158 158q7 7 18 8t19 -6l106 -106q7 -8 6 -19t-8 -18l-158 -158h224q10 0 18.5 -7.5t10.5 -17.5q6 -41 6 -75q0 -15 -1.5 -34t-3.5 -30l-1 -11q-2 -10 -10.5 -17.5t-18.5 -7.5h-224l158 -158 q7 -7 8 -18t-6 -19l-106 -106q-8 -7 -19 -6t-18 8l-158 158v-224q0 -10 -7.5 -18.5t-17.5 -10.5q-41 -6 -75 -6q-15 0 -34 1.5t-30 3.5l-11 1q-10 2 -17.5 10.5t-7.5 18.5v224l-158 -158q-7 -7 -18 -8t-19 6l-106 106q-7 8 -6 19t8 18l158 158h-224q-10 0 -18.5 7.5 t-10.5 17.5q-6 41 -6 75q0 15 1.5 34t3.5 30l1 11q2 10 10.5 17.5t18.5 7.5h224l-158 158q-7 7 -8 18t6 19l106 106q8 7 19 6t18 -8l158 -158v224q0 10 7.5 18.5t17.5 10.5q41 6 75 6z" />
+<glyph unicode="+" d="M450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-350h350q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-350v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v350h-350q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5 h350v350q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xa0;" />
+<glyph unicode="&#xa5;" d="M825 1100h250q10 0 12.5 -5t-5.5 -13l-364 -364q-6 -6 -11 -18h268q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-100h275q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-174q0 -11 -7.5 -18.5t-18.5 -7.5h-148q-11 0 -18.5 7.5t-7.5 18.5v174 h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h125v100h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h118q-5 12 -11 18l-364 364q-8 8 -5.5 13t12.5 5h250q25 0 43 -18l164 -164q8 -8 18 -8t18 8l164 164q18 18 43 18z" />
+<glyph unicode="&#x2000;" horiz-adv-x="650" />
+<glyph unicode="&#x2001;" horiz-adv-x="1300" />
+<glyph unicode="&#x2002;" horiz-adv-x="650" />
+<glyph unicode="&#x2003;" horiz-adv-x="1300" />
+<glyph unicode="&#x2004;" horiz-adv-x="433" />
+<glyph unicode="&#x2005;" horiz-adv-x="325" />
+<glyph unicode="&#x2006;" horiz-adv-x="216" />
+<glyph unicode="&#x2007;" horiz-adv-x="216" />
+<glyph unicode="&#x2008;" horiz-adv-x="162" />
+<glyph unicode="&#x2009;" horiz-adv-x="260" />
+<glyph unicode="&#x200a;" horiz-adv-x="72" />
+<glyph unicode="&#x202f;" horiz-adv-x="260" />
+<glyph unicode="&#x205f;" horiz-adv-x="325" />
+<glyph unicode="&#x20ac;" d="M744 1198q242 0 354 -189q60 -104 66 -209h-181q0 45 -17.5 82.5t-43.5 61.5t-58 40.5t-60.5 24t-51.5 7.5q-19 0 -40.5 -5.5t-49.5 -20.5t-53 -38t-49 -62.5t-39 -89.5h379l-100 -100h-300q-6 -50 -6 -100h406l-100 -100h-300q9 -74 33 -132t52.5 -91t61.5 -54.5t59 -29 t47 -7.5q22 0 50.5 7.5t60.5 24.5t58 41t43.5 61t17.5 80h174q-30 -171 -128 -278q-107 -117 -274 -117q-206 0 -324 158q-36 48 -69 133t-45 204h-217l100 100h112q1 47 6 100h-218l100 100h134q20 87 51 153.5t62 103.5q117 141 297 141z" />
+<glyph unicode="&#x20bd;" d="M428 1200h350q67 0 120 -13t86 -31t57 -49.5t35 -56.5t17 -64.5t6.5 -60.5t0.5 -57v-16.5v-16.5q0 -36 -0.5 -57t-6.5 -61t-17 -65t-35 -57t-57 -50.5t-86 -31.5t-120 -13h-178l-2 -100h288q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-138v-175q0 -11 -5.5 -18 t-15.5 -7h-149q-10 0 -17.5 7.5t-7.5 17.5v175h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v100h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v475q0 10 7.5 17.5t17.5 7.5zM600 1000v-300h203q64 0 86.5 33t22.5 119q0 84 -22.5 116t-86.5 32h-203z" />
+<glyph unicode="&#x2212;" d="M250 700h800q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#x231b;" d="M1000 1200v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-50v-100q0 -91 -49.5 -165.5t-130.5 -109.5q81 -35 130.5 -109.5t49.5 -165.5v-150h50q21 0 35.5 -14.5t14.5 -35.5v-150h-800v150q0 21 14.5 35.5t35.5 14.5h50v150q0 91 49.5 165.5t130.5 109.5q-81 35 -130.5 109.5 t-49.5 165.5v100h-50q-21 0 -35.5 14.5t-14.5 35.5v150h800zM400 1000v-100q0 -60 32.5 -109.5t87.5 -73.5q28 -12 44 -37t16 -55t-16 -55t-44 -37q-55 -24 -87.5 -73.5t-32.5 -109.5v-150h400v150q0 60 -32.5 109.5t-87.5 73.5q-28 12 -44 37t-16 55t16 55t44 37 q55 24 87.5 73.5t32.5 109.5v100h-400z" />
+<glyph unicode="&#x25fc;" horiz-adv-x="500" d="M0 0z" />
+<glyph unicode="&#x2601;" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -206.5q0 -121 -85 -207.5t-205 -86.5h-750q-79 0 -135.5 57t-56.5 137q0 69 42.5 122.5t108.5 67.5q-2 12 -2 37q0 153 108 260.5t260 107.5z" />
+<glyph unicode="&#x26fa;" d="M774 1193.5q16 -9.5 20.5 -27t-5.5 -33.5l-136 -187l467 -746h30q20 0 35 -18.5t15 -39.5v-42h-1200v42q0 21 15 39.5t35 18.5h30l468 746l-135 183q-10 16 -5.5 34t20.5 28t34 5.5t28 -20.5l111 -148l112 150q9 16 27 20.5t34 -5zM600 200h377l-182 112l-195 534v-646z " />
+<glyph unicode="&#x2709;" d="M25 1100h1150q10 0 12.5 -5t-5.5 -13l-564 -567q-8 -8 -18 -8t-18 8l-564 567q-8 8 -5.5 13t12.5 5zM18 882l264 -264q8 -8 8 -18t-8 -18l-264 -264q-8 -8 -13 -5.5t-5 12.5v550q0 10 5 12.5t13 -5.5zM918 618l264 264q8 8 13 5.5t5 -12.5v-550q0 -10 -5 -12.5t-13 5.5 l-264 264q-8 8 -8 18t8 18zM818 482l364 -364q8 -8 5.5 -13t-12.5 -5h-1150q-10 0 -12.5 5t5.5 13l364 364q8 8 18 8t18 -8l164 -164q8 -8 18 -8t18 8l164 164q8 8 18 8t18 -8z" />
+<glyph unicode="&#x270f;" d="M1011 1210q19 0 33 -13l153 -153q13 -14 13 -33t-13 -33l-99 -92l-214 214l95 96q13 14 32 14zM1013 800l-615 -614l-214 214l614 614zM317 96l-333 -112l110 335z" />
+<glyph unicode="&#xe001;" d="M700 650v-550h250q21 0 35.5 -14.5t14.5 -35.5v-50h-800v50q0 21 14.5 35.5t35.5 14.5h250v550l-500 550h1200z" />
+<glyph unicode="&#xe002;" d="M368 1017l645 163q39 15 63 0t24 -49v-831q0 -55 -41.5 -95.5t-111.5 -63.5q-79 -25 -147 -4.5t-86 75t25.5 111.5t122.5 82q72 24 138 8v521l-600 -155v-606q0 -42 -44 -90t-109 -69q-79 -26 -147 -5.5t-86 75.5t25.5 111.5t122.5 82.5q72 24 138 7v639q0 38 14.5 59 t53.5 34z" />
+<glyph unicode="&#xe003;" d="M500 1191q100 0 191 -39t156.5 -104.5t104.5 -156.5t39 -191l-1 -2l1 -5q0 -141 -78 -262l275 -274q23 -26 22.5 -44.5t-22.5 -42.5l-59 -58q-26 -20 -46.5 -20t-39.5 20l-275 274q-119 -77 -261 -77l-5 1l-2 -1q-100 0 -191 39t-156.5 104.5t-104.5 156.5t-39 191 t39 191t104.5 156.5t156.5 104.5t191 39zM500 1022q-88 0 -162 -43t-117 -117t-43 -162t43 -162t117 -117t162 -43t162 43t117 117t43 162t-43 162t-117 117t-162 43z" />
+<glyph unicode="&#xe005;" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104z" />
+<glyph unicode="&#xe006;" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429z" />
+<glyph unicode="&#xe007;" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429zM477 700h-240l197 -142l-74 -226 l193 139l195 -140l-74 229l192 140h-234l-78 211z" />
+<glyph unicode="&#xe008;" d="M600 1200q124 0 212 -88t88 -212v-250q0 -46 -31 -98t-69 -52v-75q0 -10 6 -21.5t15 -17.5l358 -230q9 -5 15 -16.5t6 -21.5v-93q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v93q0 10 6 21.5t15 16.5l358 230q9 6 15 17.5t6 21.5v75q-38 0 -69 52 t-31 98v250q0 124 88 212t212 88z" />
+<glyph unicode="&#xe009;" d="M25 1100h1150q10 0 17.5 -7.5t7.5 -17.5v-1050q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v1050q0 10 7.5 17.5t17.5 7.5zM100 1000v-100h100v100h-100zM875 1000h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5t17.5 -7.5h550 q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM1000 1000v-100h100v100h-100zM100 800v-100h100v100h-100zM1000 800v-100h100v100h-100zM100 600v-100h100v100h-100zM1000 600v-100h100v100h-100zM875 500h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5 t17.5 -7.5h550q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM100 400v-100h100v100h-100zM1000 400v-100h100v100h-100zM100 200v-100h100v100h-100zM1000 200v-100h100v100h-100z" />
+<glyph unicode="&#xe010;" d="M50 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM50 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe011;" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM850 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 700h200q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5 t35.5 14.5z" />
+<glyph unicode="&#xe012;" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h700q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe013;" d="M465 477l571 571q8 8 18 8t17 -8l177 -177q8 -7 8 -17t-8 -18l-783 -784q-7 -8 -17.5 -8t-17.5 8l-384 384q-8 8 -8 18t8 17l177 177q7 8 17 8t18 -8l171 -171q7 -7 18 -7t18 7z" />
+<glyph unicode="&#xe014;" d="M904 1083l178 -179q8 -8 8 -18.5t-8 -17.5l-267 -268l267 -268q8 -7 8 -17.5t-8 -18.5l-178 -178q-8 -8 -18.5 -8t-17.5 8l-268 267l-268 -267q-7 -8 -17.5 -8t-18.5 8l-178 178q-8 8 -8 18.5t8 17.5l267 268l-267 268q-8 7 -8 17.5t8 18.5l178 178q8 8 18.5 8t17.5 -8 l268 -267l268 268q7 7 17.5 7t18.5 -7z" />
+<glyph unicode="&#xe015;" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM425 900h150q10 0 17.5 -7.5t7.5 -17.5v-75h75q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5 t-17.5 -7.5h-75v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-75q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v75q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe016;" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM325 800h350q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-350q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe017;" d="M550 1200h100q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM800 975v166q167 -62 272 -209.5t105 -331.5q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5 t-184.5 123t-123 184.5t-45.5 224q0 184 105 331.5t272 209.5v-166q-103 -55 -165 -155t-62 -220q0 -116 57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5q0 120 -62 220t-165 155z" />
+<glyph unicode="&#xe018;" d="M1025 1200h150q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM725 800h150q10 0 17.5 -7.5t7.5 -17.5v-750q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v750 q0 10 7.5 17.5t17.5 7.5zM425 500h150q10 0 17.5 -7.5t7.5 -17.5v-450q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v450q0 10 7.5 17.5t17.5 7.5zM125 300h150q10 0 17.5 -7.5t7.5 -17.5v-250q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5 v250q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe019;" d="M600 1174q33 0 74 -5l38 -152l5 -1q49 -14 94 -39l5 -2l134 80q61 -48 104 -105l-80 -134l3 -5q25 -44 39 -93l1 -6l152 -38q5 -43 5 -73q0 -34 -5 -74l-152 -38l-1 -6q-15 -49 -39 -93l-3 -5l80 -134q-48 -61 -104 -105l-134 81l-5 -3q-44 -25 -94 -39l-5 -2l-38 -151 q-43 -5 -74 -5q-33 0 -74 5l-38 151l-5 2q-49 14 -94 39l-5 3l-134 -81q-60 48 -104 105l80 134l-3 5q-25 45 -38 93l-2 6l-151 38q-6 42 -6 74q0 33 6 73l151 38l2 6q13 48 38 93l3 5l-80 134q47 61 105 105l133 -80l5 2q45 25 94 39l5 1l38 152q43 5 74 5zM600 815 q-89 0 -152 -63t-63 -151.5t63 -151.5t152 -63t152 63t63 151.5t-63 151.5t-152 63z" />
+<glyph unicode="&#xe020;" d="M500 1300h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-75h-1100v75q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5zM500 1200v-100h300v100h-300zM1100 900v-800q0 -41 -29.5 -70.5t-70.5 -29.5h-700q-41 0 -70.5 29.5t-29.5 70.5 v800h900zM300 800v-700h100v700h-100zM500 800v-700h100v700h-100zM700 800v-700h100v700h-100zM900 800v-700h100v700h-100z" />
+<glyph unicode="&#xe021;" d="M18 618l620 608q8 7 18.5 7t17.5 -7l608 -608q8 -8 5.5 -13t-12.5 -5h-175v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v375h-300v-375q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v575h-175q-10 0 -12.5 5t5.5 13z" />
+<glyph unicode="&#xe022;" d="M600 1200v-400q0 -41 29.5 -70.5t70.5 -29.5h300v-650q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5h450zM1000 800h-250q-21 0 -35.5 14.5t-14.5 35.5v250z" />
+<glyph unicode="&#xe023;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h50q10 0 17.5 -7.5t7.5 -17.5v-275h175q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe024;" d="M1300 0h-538l-41 400h-242l-41 -400h-538l431 1200h209l-21 -300h162l-20 300h208zM515 800l-27 -300h224l-27 300h-170z" />
+<glyph unicode="&#xe025;" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-450h191q20 0 25.5 -11.5t-7.5 -27.5l-327 -400q-13 -16 -32 -16t-32 16l-327 400q-13 16 -7.5 27.5t25.5 11.5h191v450q0 21 14.5 35.5t35.5 14.5zM1125 400h50q10 0 17.5 -7.5t7.5 -17.5v-350q0 -10 -7.5 -17.5t-17.5 -7.5 h-1050q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h50q10 0 17.5 -7.5t7.5 -17.5v-175h900v175q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe026;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -275q-13 -16 -32 -16t-32 16l-223 275q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z " />
+<glyph unicode="&#xe027;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM632 914l223 -275q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5l223 275q13 16 32 16 t32 -16z" />
+<glyph unicode="&#xe028;" d="M225 1200h750q10 0 19.5 -7t12.5 -17l186 -652q7 -24 7 -49v-425q0 -12 -4 -27t-9 -17q-12 -6 -37 -6h-1100q-12 0 -27 4t-17 8q-6 13 -6 38l1 425q0 25 7 49l185 652q3 10 12.5 17t19.5 7zM878 1000h-556q-10 0 -19 -7t-11 -18l-87 -450q-2 -11 4 -18t16 -7h150 q10 0 19.5 -7t11.5 -17l38 -152q2 -10 11.5 -17t19.5 -7h250q10 0 19.5 7t11.5 17l38 152q2 10 11.5 17t19.5 7h150q10 0 16 7t4 18l-87 450q-2 11 -11 18t-19 7z" />
+<glyph unicode="&#xe029;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM540 820l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
+<glyph unicode="&#xe030;" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-362q0 -10 -7.5 -17.5t-17.5 -7.5h-362q-11 0 -13 5.5t5 12.5l133 133q-109 76 -238 76q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5h150q0 -117 -45.5 -224 t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117z" />
+<glyph unicode="&#xe031;" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-361q0 -11 -7.5 -18.5t-18.5 -7.5h-361q-11 0 -13 5.5t5 12.5l134 134q-110 75 -239 75q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5h-150q0 117 45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117zM1027 600h150 q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5q-192 0 -348 118l-134 -134q-7 -8 -12.5 -5.5t-5.5 12.5v360q0 11 7.5 18.5t18.5 7.5h360q10 0 12.5 -5.5t-5.5 -12.5l-133 -133q110 -76 240 -76q116 0 214.5 57t155.5 155.5t57 214.5z" />
+<glyph unicode="&#xe032;" d="M125 1200h1050q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-1050q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM1075 1000h-850q-10 0 -17.5 -7.5t-7.5 -17.5v-850q0 -10 7.5 -17.5t17.5 -7.5h850q10 0 17.5 7.5t7.5 17.5v850 q0 10 -7.5 17.5t-17.5 7.5zM325 900h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 900h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 700h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 700h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 500h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 500h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 300h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 300h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe033;" d="M900 800v200q0 83 -58.5 141.5t-141.5 58.5h-300q-82 0 -141 -59t-59 -141v-200h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h900q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-100zM400 800v150q0 21 15 35.5t35 14.5h200 q20 0 35 -14.5t15 -35.5v-150h-300z" />
+<glyph unicode="&#xe034;" d="M125 1100h50q10 0 17.5 -7.5t7.5 -17.5v-1075h-100v1075q0 10 7.5 17.5t17.5 7.5zM1075 1052q4 0 9 -2q16 -6 16 -23v-421q0 -6 -3 -12q-33 -59 -66.5 -99t-65.5 -58t-56.5 -24.5t-52.5 -6.5q-26 0 -57.5 6.5t-52.5 13.5t-60 21q-41 15 -63 22.5t-57.5 15t-65.5 7.5 q-85 0 -160 -57q-7 -5 -15 -5q-6 0 -11 3q-14 7 -14 22v438q22 55 82 98.5t119 46.5q23 2 43 0.5t43 -7t32.5 -8.5t38 -13t32.5 -11q41 -14 63.5 -21t57 -14t63.5 -7q103 0 183 87q7 8 18 8z" />
+<glyph unicode="&#xe035;" d="M600 1175q116 0 227 -49.5t192.5 -131t131 -192.5t49.5 -227v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v300q0 127 -70.5 231.5t-184.5 161.5t-245 57t-245 -57t-184.5 -161.5t-70.5 -231.5v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50 q-10 0 -17.5 7.5t-7.5 17.5v300q0 116 49.5 227t131 192.5t192.5 131t227 49.5zM220 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460q0 8 6 14t14 6zM820 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460 q0 8 6 14t14 6z" />
+<glyph unicode="&#xe036;" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM900 668l120 120q7 7 17 7t17 -7l34 -34q7 -7 7 -17t-7 -17l-120 -120l120 -120q7 -7 7 -17 t-7 -17l-34 -34q-7 -7 -17 -7t-17 7l-120 119l-120 -119q-7 -7 -17 -7t-17 7l-34 34q-7 7 -7 17t7 17l119 120l-119 120q-7 7 -7 17t7 17l34 34q7 8 17 8t17 -8z" />
+<glyph unicode="&#xe037;" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6 l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238q-6 8 -4.5 18t9.5 17l29 22q7 5 15 5z" />
+<glyph unicode="&#xe038;" d="M967 1004h3q11 -1 17 -10q135 -179 135 -396q0 -105 -34 -206.5t-98 -185.5q-7 -9 -17 -10h-3q-9 0 -16 6l-42 34q-8 6 -9 16t5 18q111 150 111 328q0 90 -29.5 176t-84.5 157q-6 9 -5 19t10 16l42 33q7 5 15 5zM321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5 t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238 q-6 8 -4.5 18.5t9.5 16.5l29 22q7 5 15 5z" />
+<glyph unicode="&#xe039;" d="M500 900h100v-100h-100v-100h-400v-100h-100v600h500v-300zM1200 700h-200v-100h200v-200h-300v300h-200v300h-100v200h600v-500zM100 1100v-300h300v300h-300zM800 1100v-300h300v300h-300zM300 900h-100v100h100v-100zM1000 900h-100v100h100v-100zM300 500h200v-500 h-500v500h200v100h100v-100zM800 300h200v-100h-100v-100h-200v100h-100v100h100v200h-200v100h300v-300zM100 400v-300h300v300h-300zM300 200h-100v100h100v-100zM1200 200h-100v100h100v-100zM700 0h-100v100h100v-100zM1200 0h-300v100h300v-100z" />
+<glyph unicode="&#xe040;" d="M100 200h-100v1000h100v-1000zM300 200h-100v1000h100v-1000zM700 200h-200v1000h200v-1000zM900 200h-100v1000h100v-1000zM1200 200h-200v1000h200v-1000zM400 0h-300v100h300v-100zM600 0h-100v91h100v-91zM800 0h-100v91h100v-91zM1100 0h-200v91h200v-91z" />
+<glyph unicode="&#xe041;" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
+<glyph unicode="&#xe042;" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM800 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-56 56l424 426l-700 700h150zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5 t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" />
+<glyph unicode="&#xe043;" d="M300 1200h825q75 0 75 -75v-900q0 -25 -18 -43l-64 -64q-8 -8 -13 -5.5t-5 12.5v950q0 10 -7.5 17.5t-17.5 7.5h-700q-25 0 -43 -18l-64 -64q-8 -8 -5.5 -13t12.5 -5h700q10 0 17.5 -7.5t7.5 -17.5v-950q0 -10 -7.5 -17.5t-17.5 -7.5h-850q-10 0 -17.5 7.5t-7.5 17.5v975 q0 25 18 43l139 139q18 18 43 18z" />
+<glyph unicode="&#xe044;" d="M250 1200h800q21 0 35.5 -14.5t14.5 -35.5v-1150l-450 444l-450 -445v1151q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe045;" d="M822 1200h-444q-11 0 -19 -7.5t-9 -17.5l-78 -301q-7 -24 7 -45l57 -108q6 -9 17.5 -15t21.5 -6h450q10 0 21.5 6t17.5 15l62 108q14 21 7 45l-83 301q-1 10 -9 17.5t-19 7.5zM1175 800h-150q-10 0 -21 -6.5t-15 -15.5l-78 -156q-4 -9 -15 -15.5t-21 -6.5h-550 q-10 0 -21 6.5t-15 15.5l-78 156q-4 9 -15 15.5t-21 6.5h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-650q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h750q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5 t7.5 17.5v650q0 10 -7.5 17.5t-17.5 7.5zM850 200h-500q-10 0 -19.5 -7t-11.5 -17l-38 -152q-2 -10 3.5 -17t15.5 -7h600q10 0 15.5 7t3.5 17l-38 152q-2 10 -11.5 17t-19.5 7z" />
+<glyph unicode="&#xe046;" d="M500 1100h200q56 0 102.5 -20.5t72.5 -50t44 -59t25 -50.5l6 -20h150q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5h150q2 8 6.5 21.5t24 48t45 61t72 48t102.5 21.5zM900 800v-100 h100v100h-100zM600 730q-95 0 -162.5 -67.5t-67.5 -162.5t67.5 -162.5t162.5 -67.5t162.5 67.5t67.5 162.5t-67.5 162.5t-162.5 67.5zM600 603q43 0 73 -30t30 -73t-30 -73t-73 -30t-73 30t-30 73t30 73t73 30z" />
+<glyph unicode="&#xe047;" d="M681 1199l385 -998q20 -50 60 -92q18 -19 36.5 -29.5t27.5 -11.5l10 -2v-66h-417v66q53 0 75 43.5t5 88.5l-82 222h-391q-58 -145 -92 -234q-11 -34 -6.5 -57t25.5 -37t46 -20t55 -6v-66h-365v66q56 24 84 52q12 12 25 30.5t20 31.5l7 13l399 1006h93zM416 521h340 l-162 457z" />
+<glyph unicode="&#xe048;" d="M753 641q5 -1 14.5 -4.5t36 -15.5t50.5 -26.5t53.5 -40t50.5 -54.5t35.5 -70t14.5 -87q0 -67 -27.5 -125.5t-71.5 -97.5t-98.5 -66.5t-108.5 -40.5t-102 -13h-500v89q41 7 70.5 32.5t29.5 65.5v827q0 24 -0.5 34t-3.5 24t-8.5 19.5t-17 13.5t-28 12.5t-42.5 11.5v71 l471 -1q57 0 115.5 -20.5t108 -57t80.5 -94t31 -124.5q0 -51 -15.5 -96.5t-38 -74.5t-45 -50.5t-38.5 -30.5zM400 700h139q78 0 130.5 48.5t52.5 122.5q0 41 -8.5 70.5t-29.5 55.5t-62.5 39.5t-103.5 13.5h-118v-350zM400 200h216q80 0 121 50.5t41 130.5q0 90 -62.5 154.5 t-156.5 64.5h-159v-400z" />
+<glyph unicode="&#xe049;" d="M877 1200l2 -57q-83 -19 -116 -45.5t-40 -66.5l-132 -839q-9 -49 13 -69t96 -26v-97h-500v97q186 16 200 98l173 832q3 17 3 30t-1.5 22.5t-9 17.5t-13.5 12.5t-21.5 10t-26 8.5t-33.5 10q-13 3 -19 5v57h425z" />
+<glyph unicode="&#xe050;" d="M1300 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM175 1000h-75v-800h75l-125 -167l-125 167h75v800h-75l125 167z" />
+<glyph unicode="&#xe051;" d="M1100 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-650q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v650h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM1167 50l-167 -125v75h-800v-75l-167 125l167 125v-75h800v75z" />
+<glyph unicode="&#xe052;" d="M50 1100h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe053;" d="M250 1100h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM250 500h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe054;" d="M500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000 q-21 0 -35.5 14.5t-14.5 35.5zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5zM0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5z" />
+<glyph unicode="&#xe055;" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe056;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 1100h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 800h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 500h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 500h800q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 200h800 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe057;" d="M400 0h-100v1100h100v-1100zM550 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM267 550l-167 -125v75h-200v100h200v75zM550 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe058;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM900 0h-100v1100h100v-1100zM50 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM1100 600h200v-100h-200v-75l-167 125l167 125v-75zM50 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe059;" d="M75 1000h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53v650q0 31 22 53t53 22zM1200 300l-300 300l300 300v-600z" />
+<glyph unicode="&#xe060;" d="M44 1100h1112q18 0 31 -13t13 -31v-1012q0 -18 -13 -31t-31 -13h-1112q-18 0 -31 13t-13 31v1012q0 18 13 31t31 13zM100 1000v-737l247 182l298 -131l-74 156l293 318l236 -288v500h-1000zM342 884q56 0 95 -39t39 -94.5t-39 -95t-95 -39.5t-95 39.5t-39 95t39 94.5 t95 39z" />
+<glyph unicode="&#xe062;" d="M648 1169q117 0 216 -60t156.5 -161t57.5 -218q0 -115 -70 -258q-69 -109 -158 -225.5t-143 -179.5l-54 -62q-9 8 -25.5 24.5t-63.5 67.5t-91 103t-98.5 128t-95.5 148q-60 132 -60 249q0 88 34 169.5t91.5 142t137 96.5t166.5 36zM652.5 974q-91.5 0 -156.5 -65 t-65 -157t65 -156.5t156.5 -64.5t156.5 64.5t65 156.5t-65 157t-156.5 65z" />
+<glyph unicode="&#xe063;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 173v854q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57z" />
+<glyph unicode="&#xe064;" d="M554 1295q21 -72 57.5 -143.5t76 -130t83 -118t82.5 -117t70 -116t49.5 -126t18.5 -136.5q0 -71 -25.5 -135t-68.5 -111t-99 -82t-118.5 -54t-125.5 -23q-84 5 -161.5 34t-139.5 78.5t-99 125t-37 164.5q0 69 18 136.5t49.5 126.5t69.5 116.5t81.5 117.5t83.5 119 t76.5 131t58.5 143zM344 710q-23 -33 -43.5 -70.5t-40.5 -102.5t-17 -123q1 -37 14.5 -69.5t30 -52t41 -37t38.5 -24.5t33 -15q21 -7 32 -1t13 22l6 34q2 10 -2.5 22t-13.5 19q-5 4 -14 12t-29.5 40.5t-32.5 73.5q-26 89 6 271q2 11 -6 11q-8 1 -15 -10z" />
+<glyph unicode="&#xe065;" d="M1000 1013l108 115q2 1 5 2t13 2t20.5 -1t25 -9.5t28.5 -21.5q22 -22 27 -43t0 -32l-6 -10l-108 -115zM350 1100h400q50 0 105 -13l-187 -187h-368q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v182l200 200v-332 q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM1009 803l-362 -362l-161 -50l55 170l355 355z" />
+<glyph unicode="&#xe066;" d="M350 1100h361q-164 -146 -216 -200h-195q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-103q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M824 1073l339 -301q8 -7 8 -17.5t-8 -17.5l-340 -306q-7 -6 -12.5 -4t-6.5 11v203q-26 1 -54.5 0t-78.5 -7.5t-92 -17.5t-86 -35t-70 -57q10 59 33 108t51.5 81.5t65 58.5t68.5 40.5t67 24.5t56 13.5t40 4.5v210q1 10 6.5 12.5t13.5 -4.5z" />
+<glyph unicode="&#xe067;" d="M350 1100h350q60 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-219q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M643 639l395 395q7 7 17.5 7t17.5 -7l101 -101q7 -7 7 -17.5t-7 -17.5l-531 -532q-7 -7 -17.5 -7t-17.5 7l-248 248q-7 7 -7 17.5t7 17.5l101 101q7 7 17.5 7t17.5 -7l111 -111q8 -7 18 -7t18 7z" />
+<glyph unicode="&#xe068;" d="M318 918l264 264q8 8 18 8t18 -8l260 -264q7 -8 4.5 -13t-12.5 -5h-170v-200h200v173q0 10 5 12t13 -5l264 -260q8 -7 8 -17.5t-8 -17.5l-264 -265q-8 -7 -13 -5t-5 12v173h-200v-200h170q10 0 12.5 -5t-4.5 -13l-260 -264q-8 -8 -18 -8t-18 8l-264 264q-8 8 -5.5 13 t12.5 5h175v200h-200v-173q0 -10 -5 -12t-13 5l-264 265q-8 7 -8 17.5t8 17.5l264 260q8 7 13 5t5 -12v-173h200v200h-175q-10 0 -12.5 5t5.5 13z" />
+<glyph unicode="&#xe069;" d="M250 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe070;" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5 t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe071;" d="M1200 1050v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-492 480q-15 14 -15 35t15 35l492 480q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25z" />
+<glyph unicode="&#xe072;" d="M243 1074l814 -498q18 -11 18 -26t-18 -26l-814 -498q-18 -11 -30.5 -4t-12.5 28v1000q0 21 12.5 28t30.5 -4z" />
+<glyph unicode="&#xe073;" d="M250 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM650 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800 q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe074;" d="M1100 950v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5z" />
+<glyph unicode="&#xe075;" d="M500 612v438q0 21 10.5 25t25.5 -10l492 -480q15 -14 15 -35t-15 -35l-492 -480q-15 -14 -25.5 -10t-10.5 25v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10z" />
+<glyph unicode="&#xe076;" d="M1048 1102l100 1q20 0 35 -14.5t15 -35.5l5 -1000q0 -21 -14.5 -35.5t-35.5 -14.5l-100 -1q-21 0 -35.5 14.5t-14.5 35.5l-2 437l-463 -454q-14 -15 -24.5 -10.5t-10.5 25.5l-2 437l-462 -455q-15 -14 -25.5 -9.5t-10.5 24.5l-5 1000q0 21 10.5 25.5t25.5 -10.5l466 -450 l-2 438q0 20 10.5 24.5t25.5 -9.5l466 -451l-2 438q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe077;" d="M850 1100h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10l464 -453v438q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe078;" d="M686 1081l501 -540q15 -15 10.5 -26t-26.5 -11h-1042q-22 0 -26.5 11t10.5 26l501 540q15 15 36 15t36 -15zM150 400h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe079;" d="M885 900l-352 -353l352 -353l-197 -198l-552 552l552 550z" />
+<glyph unicode="&#xe080;" d="M1064 547l-551 -551l-198 198l353 353l-353 353l198 198z" />
+<glyph unicode="&#xe081;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM650 900h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-150 q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5h150v-150q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v150h150q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-150v150q0 21 -14.5 35.5t-35.5 14.5z" />
+<glyph unicode="&#xe082;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM850 700h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5 t35.5 -14.5h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5z" />
+<glyph unicode="&#xe083;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM741.5 913q-12.5 0 -21.5 -9l-120 -120l-120 120q-9 9 -21.5 9 t-21.5 -9l-141 -141q-9 -9 -9 -21.5t9 -21.5l120 -120l-120 -120q-9 -9 -9 -21.5t9 -21.5l141 -141q9 -9 21.5 -9t21.5 9l120 120l120 -120q9 -9 21.5 -9t21.5 9l141 141q9 9 9 21.5t-9 21.5l-120 120l120 120q9 9 9 21.5t-9 21.5l-141 141q-9 9 -21.5 9z" />
+<glyph unicode="&#xe084;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM546 623l-84 85q-7 7 -17.5 7t-18.5 -7l-139 -139q-7 -8 -7 -18t7 -18 l242 -241q7 -8 17.5 -8t17.5 8l375 375q7 7 7 17.5t-7 18.5l-139 139q-7 7 -17.5 7t-17.5 -7z" />
+<glyph unicode="&#xe085;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM588 941q-29 0 -59 -5.5t-63 -20.5t-58 -38.5t-41.5 -63t-16.5 -89.5 q0 -25 20 -25h131q30 -5 35 11q6 20 20.5 28t45.5 8q20 0 31.5 -10.5t11.5 -28.5q0 -23 -7 -34t-26 -18q-1 0 -13.5 -4t-19.5 -7.5t-20 -10.5t-22 -17t-18.5 -24t-15.5 -35t-8 -46q-1 -8 5.5 -16.5t20.5 -8.5h173q7 0 22 8t35 28t37.5 48t29.5 74t12 100q0 47 -17 83 t-42.5 57t-59.5 34.5t-64 18t-59 4.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe086;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM675 1000h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5 t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5zM675 700h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h75v-200h-75q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h350q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5 t-17.5 7.5h-75v275q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe087;" d="M525 1200h150q10 0 17.5 -7.5t7.5 -17.5v-194q103 -27 178.5 -102.5t102.5 -178.5h194q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-194q-27 -103 -102.5 -178.5t-178.5 -102.5v-194q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v194 q-103 27 -178.5 102.5t-102.5 178.5h-194q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h194q27 103 102.5 178.5t178.5 102.5v194q0 10 7.5 17.5t17.5 7.5zM700 893v-168q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v168q-68 -23 -119 -74 t-74 -119h168q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-168q23 -68 74 -119t119 -74v168q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-168q68 23 119 74t74 119h-168q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h168 q-23 68 -74 119t-119 74z" />
+<glyph unicode="&#xe088;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM759 823l64 -64q7 -7 7 -17.5t-7 -17.5l-124 -124l124 -124q7 -7 7 -17.5t-7 -17.5l-64 -64q-7 -7 -17.5 -7t-17.5 7l-124 124l-124 -124q-7 -7 -17.5 -7t-17.5 7l-64 64 q-7 7 -7 17.5t7 17.5l124 124l-124 124q-7 7 -7 17.5t7 17.5l64 64q7 7 17.5 7t17.5 -7l124 -124l124 124q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe089;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM782 788l106 -106q7 -7 7 -17.5t-7 -17.5l-320 -321q-8 -7 -18 -7t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l197 197q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe090;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5q0 -120 65 -225 l587 587q-105 65 -225 65zM965 819l-584 -584q104 -62 219 -62q116 0 214.5 57t155.5 155.5t57 214.5q0 115 -62 219z" />
+<glyph unicode="&#xe091;" d="M39 582l522 427q16 13 27.5 8t11.5 -26v-291h550q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-550v-291q0 -21 -11.5 -26t-27.5 8l-522 427q-16 13 -16 32t16 32z" />
+<glyph unicode="&#xe092;" d="M639 1009l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291h-550q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h550v291q0 21 11.5 26t27.5 -8z" />
+<glyph unicode="&#xe093;" d="M682 1161l427 -522q13 -16 8 -27.5t-26 -11.5h-291v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v550h-291q-21 0 -26 11.5t8 27.5l427 522q13 16 32 16t32 -16z" />
+<glyph unicode="&#xe094;" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-550h291q21 0 26 -11.5t-8 -27.5l-427 -522q-13 -16 -32 -16t-32 16l-427 522q-13 16 -8 27.5t26 11.5h291v550q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe095;" d="M639 1109l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291q-94 -2 -182 -20t-170.5 -52t-147 -92.5t-100.5 -135.5q5 105 27 193.5t67.5 167t113 135t167 91.5t225.5 42v262q0 21 11.5 26t27.5 -8z" />
+<glyph unicode="&#xe096;" d="M850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5zM350 0h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249 q8 7 18 7t18 -7l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5z" />
+<glyph unicode="&#xe097;" d="M1014 1120l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249q8 7 18 7t18 -7zM250 600h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5z" />
+<glyph unicode="&#xe101;" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM704 900h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5 t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe102;" d="M260 1200q9 0 19 -2t15 -4l5 -2q22 -10 44 -23l196 -118q21 -13 36 -24q29 -21 37 -12q11 13 49 35l196 118q22 13 45 23q17 7 38 7q23 0 47 -16.5t37 -33.5l13 -16q14 -21 18 -45l25 -123l8 -44q1 -9 8.5 -14.5t17.5 -5.5h61q10 0 17.5 -7.5t7.5 -17.5v-50 q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 -7.5t-7.5 -17.5v-175h-400v300h-200v-300h-400v175q0 10 -7.5 17.5t-17.5 7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5h61q11 0 18 3t7 8q0 4 9 52l25 128q5 25 19 45q2 3 5 7t13.5 15t21.5 19.5t26.5 15.5 t29.5 7zM915 1079l-166 -162q-7 -7 -5 -12t12 -5h219q10 0 15 7t2 17l-51 149q-3 10 -11 12t-15 -6zM463 917l-177 157q-8 7 -16 5t-11 -12l-51 -143q-3 -10 2 -17t15 -7h231q11 0 12.5 5t-5.5 12zM500 0h-375q-10 0 -17.5 7.5t-7.5 17.5v375h400v-400zM1100 400v-375 q0 -10 -7.5 -17.5t-17.5 -7.5h-375v400h400z" />
+<glyph unicode="&#xe103;" d="M1165 1190q8 3 21 -6.5t13 -17.5q-2 -178 -24.5 -323.5t-55.5 -245.5t-87 -174.5t-102.5 -118.5t-118 -68.5t-118.5 -33t-120 -4.5t-105 9.5t-90 16.5q-61 12 -78 11q-4 1 -12.5 0t-34 -14.5t-52.5 -40.5l-153 -153q-26 -24 -37 -14.5t-11 43.5q0 64 42 102q8 8 50.5 45 t66.5 58q19 17 35 47t13 61q-9 55 -10 102.5t7 111t37 130t78 129.5q39 51 80 88t89.5 63.5t94.5 45t113.5 36t129 31t157.5 37t182 47.5zM1116 1098q-8 9 -22.5 -3t-45.5 -50q-38 -47 -119 -103.5t-142 -89.5l-62 -33q-56 -30 -102 -57t-104 -68t-102.5 -80.5t-85.5 -91 t-64 -104.5q-24 -56 -31 -86t2 -32t31.5 17.5t55.5 59.5q25 30 94 75.5t125.5 77.5t147.5 81q70 37 118.5 69t102 79.5t99 111t86.5 148.5q22 50 24 60t-6 19z" />
+<glyph unicode="&#xe104;" d="M653 1231q-39 -67 -54.5 -131t-10.5 -114.5t24.5 -96.5t47.5 -80t63.5 -62.5t68.5 -46.5t65 -30q-4 7 -17.5 35t-18.5 39.5t-17 39.5t-17 43t-13 42t-9.5 44.5t-2 42t4 43t13.5 39t23 38.5q96 -42 165 -107.5t105 -138t52 -156t13 -159t-19 -149.5q-13 -55 -44 -106.5 t-68 -87t-78.5 -64.5t-72.5 -45t-53 -22q-72 -22 -127 -11q-31 6 -13 19q6 3 17 7q13 5 32.5 21t41 44t38.5 63.5t21.5 81.5t-6.5 94.5t-50 107t-104 115.5q10 -104 -0.5 -189t-37 -140.5t-65 -93t-84 -52t-93.5 -11t-95 24.5q-80 36 -131.5 114t-53.5 171q-2 23 0 49.5 t4.5 52.5t13.5 56t27.5 60t46 64.5t69.5 68.5q-8 -53 -5 -102.5t17.5 -90t34 -68.5t44.5 -39t49 -2q31 13 38.5 36t-4.5 55t-29 64.5t-36 75t-26 75.5q-15 85 2 161.5t53.5 128.5t85.5 92.5t93.5 61t81.5 25.5z" />
+<glyph unicode="&#xe105;" d="M600 1094q82 0 160.5 -22.5t140 -59t116.5 -82.5t94.5 -95t68 -95t42.5 -82.5t14 -57.5t-14 -57.5t-43 -82.5t-68.5 -95t-94.5 -95t-116.5 -82.5t-140 -59t-159.5 -22.5t-159.5 22.5t-140 59t-116.5 82.5t-94.5 95t-68.5 95t-43 82.5t-14 57.5t14 57.5t42.5 82.5t68 95 t94.5 95t116.5 82.5t140 59t160.5 22.5zM888 829q-15 15 -18 12t5 -22q25 -57 25 -119q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 59 23 114q8 19 4.5 22t-17.5 -12q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q22 -36 47 -71t70 -82t92.5 -81t113 -58.5t133.5 -24.5 t133.5 24t113 58.5t92.5 81.5t70 81.5t47 70.5q11 18 9 42.5t-14 41.5q-90 117 -163 189zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l35 34q14 15 12.5 33.5t-16.5 33.5q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
+<glyph unicode="&#xe106;" d="M592 0h-148l31 120q-91 20 -175.5 68.5t-143.5 106.5t-103.5 119t-66.5 110t-22 76q0 21 14 57.5t42.5 82.5t68 95t94.5 95t116.5 82.5t140 59t160.5 22.5q61 0 126 -15l32 121h148zM944 770l47 181q108 -85 176.5 -192t68.5 -159q0 -26 -19.5 -71t-59.5 -102t-93 -112 t-129 -104.5t-158 -75.5l46 173q77 49 136 117t97 131q11 18 9 42.5t-14 41.5q-54 70 -107 130zM310 824q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q18 -30 39 -60t57 -70.5t74 -73t90 -61t105 -41.5l41 154q-107 18 -178.5 101.5t-71.5 193.5q0 59 23 114q8 19 4.5 22 t-17.5 -12zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l12 11l22 86l-3 4q-44 44 -89 117q-11 18 -28 20t-32 -12z" />
+<glyph unicode="&#xe107;" d="M-90 100l642 1066q20 31 48 28.5t48 -35.5l642 -1056q21 -32 7.5 -67.5t-50.5 -35.5h-1294q-37 0 -50.5 34t7.5 66zM155 200h345v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h345l-445 723zM496 700h208q20 0 32 -14.5t8 -34.5l-58 -252 q-4 -20 -21.5 -34.5t-37.5 -14.5h-54q-20 0 -37.5 14.5t-21.5 34.5l-58 252q-4 20 8 34.5t32 14.5z" />
+<glyph unicode="&#xe108;" d="M650 1200q62 0 106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -93 100 -113v-64q0 -21 -13 -29t-32 1l-205 128l-205 -128q-19 -9 -32 -1t-13 29v64q0 20 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5v41 q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44z" />
+<glyph unicode="&#xe109;" d="M850 1200h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-150h-1100v150q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-50h500v50q0 21 14.5 35.5t35.5 14.5zM1100 800v-750q0 -21 -14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v750h1100zM100 600v-100h100v100h-100zM300 600v-100h100v100h-100zM500 600v-100h100v100h-100zM700 600v-100h100v100h-100zM900 600v-100h100v100h-100zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400 v-100h100v100h-100zM700 400v-100h100v100h-100zM900 400v-100h100v100h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100zM500 200v-100h100v100h-100zM700 200v-100h100v100h-100zM900 200v-100h100v100h-100z" />
+<glyph unicode="&#xe110;" d="M1135 1165l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-159l-600 -600h-291q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h209l600 600h241v150q0 21 10.5 25t24.5 -10zM522 819l-141 -141l-122 122h-209q-21 0 -35.5 14.5 t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h291zM1135 565l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-241l-181 181l141 141l122 -122h159v150q0 21 10.5 25t24.5 -10z" />
+<glyph unicode="&#xe111;" d="M100 1100h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5z" />
+<glyph unicode="&#xe112;" d="M150 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM850 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM1100 800v-300q0 -41 -3 -77.5t-15 -89.5t-32 -96t-58 -89t-89 -77t-129 -51t-174 -20t-174 20 t-129 51t-89 77t-58 89t-32 96t-15 89.5t-3 77.5v300h300v-250v-27v-42.5t1.5 -41t5 -38t10 -35t16.5 -30t25.5 -24.5t35 -19t46.5 -12t60 -4t60 4.5t46.5 12.5t35 19.5t25 25.5t17 30.5t10 35t5 38t2 40.5t-0.5 42v25v250h300z" />
+<glyph unicode="&#xe113;" d="M1100 411l-198 -199l-353 353l-353 -353l-197 199l551 551z" />
+<glyph unicode="&#xe114;" d="M1101 789l-550 -551l-551 551l198 199l353 -353l353 353z" />
+<glyph unicode="&#xe115;" d="M404 1000h746q21 0 35.5 -14.5t14.5 -35.5v-551h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v401h-381zM135 984l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-400h385l215 -200h-750q-21 0 -35.5 14.5 t-14.5 35.5v550h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe116;" d="M56 1200h94q17 0 31 -11t18 -27l38 -162h896q24 0 39 -18.5t10 -42.5l-100 -475q-5 -21 -27 -42.5t-55 -21.5h-633l48 -200h535q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-50q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-300v-50 q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-31q-18 0 -32.5 10t-20.5 19l-5 10l-201 961h-54q-20 0 -35 14.5t-15 35.5t15 35.5t35 14.5z" />
+<glyph unicode="&#xe117;" d="M1200 1000v-100h-1200v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500zM0 800h1200v-800h-1200v800z" />
+<glyph unicode="&#xe118;" d="M200 800l-200 -400v600h200q0 41 29.5 70.5t70.5 29.5h300q42 0 71 -29.5t29 -70.5h500v-200h-1000zM1500 700l-300 -700h-1200l300 700h1200z" />
+<glyph unicode="&#xe119;" d="M635 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-601h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v601h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe120;" d="M936 864l249 -229q14 -15 14 -35.5t-14 -35.5l-249 -229q-15 -15 -25.5 -10.5t-10.5 24.5v151h-600v-151q0 -20 -10.5 -24.5t-25.5 10.5l-249 229q-14 15 -14 35.5t14 35.5l249 229q15 15 25.5 10.5t10.5 -25.5v-149h600v149q0 21 10.5 25.5t25.5 -10.5z" />
+<glyph unicode="&#xe121;" d="M1169 400l-172 732q-5 23 -23 45.5t-38 22.5h-672q-20 0 -38 -20t-23 -41l-172 -739h1138zM1100 300h-1000q-41 0 -70.5 -29.5t-29.5 -70.5v-100q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v100q0 41 -29.5 70.5t-70.5 29.5zM800 100v100h100v-100h-100 zM1000 100v100h100v-100h-100z" />
+<glyph unicode="&#xe122;" d="M1150 1100q21 0 35.5 -14.5t14.5 -35.5v-850q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v850q0 21 14.5 35.5t35.5 14.5zM1000 200l-675 200h-38l47 -276q3 -16 -5.5 -20t-29.5 -4h-7h-84q-20 0 -34.5 14t-18.5 35q-55 337 -55 351v250v6q0 16 1 23.5t6.5 14 t17.5 6.5h200l675 250v-850zM0 750v-250q-4 0 -11 0.5t-24 6t-30 15t-24 30t-11 48.5v50q0 26 10.5 46t25 30t29 16t25.5 7z" />
+<glyph unicode="&#xe123;" d="M553 1200h94q20 0 29 -10.5t3 -29.5l-18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q19 0 33 -14.5t14 -35t-13 -40.5t-31 -27q-8 -4 -23 -9.5t-65 -19.5t-103 -25t-132.5 -20t-158.5 -9q-57 0 -115 5t-104 12t-88.5 15.5t-73.5 17.5t-54.5 16t-35.5 12l-11 4 q-18 8 -31 28t-13 40.5t14 35t33 14.5h17l118 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3.5 32t28.5 13zM498 110q50 -6 102 -6q53 0 102 6q-12 -49 -39.5 -79.5t-62.5 -30.5t-63 30.5t-39 79.5z" />
+<glyph unicode="&#xe124;" d="M800 946l224 78l-78 -224l234 -45l-180 -155l180 -155l-234 -45l78 -224l-224 78l-45 -234l-155 180l-155 -180l-45 234l-224 -78l78 224l-234 45l180 155l-180 155l234 45l-78 224l224 -78l45 234l155 -180l155 180z" />
+<glyph unicode="&#xe125;" d="M650 1200h50q40 0 70 -40.5t30 -84.5v-150l-28 -125h328q40 0 70 -40.5t30 -84.5v-100q0 -45 -29 -74l-238 -344q-16 -24 -38 -40.5t-45 -16.5h-250q-7 0 -42 25t-66 50l-31 25h-61q-45 0 -72.5 18t-27.5 57v400q0 36 20 63l145 196l96 198q13 28 37.5 48t51.5 20z M650 1100l-100 -212l-150 -213v-375h100l136 -100h214l250 375v125h-450l50 225v175h-50zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe126;" d="M600 1100h250q23 0 45 -16.5t38 -40.5l238 -344q29 -29 29 -74v-100q0 -44 -30 -84.5t-70 -40.5h-328q28 -118 28 -125v-150q0 -44 -30 -84.5t-70 -40.5h-50q-27 0 -51.5 20t-37.5 48l-96 198l-145 196q-20 27 -20 63v400q0 39 27.5 57t72.5 18h61q124 100 139 100z M50 1000h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM636 1000l-136 -100h-100v-375l150 -213l100 -212h50v175l-50 225h450v125l-250 375h-214z" />
+<glyph unicode="&#xe127;" d="M356 873l363 230q31 16 53 -6l110 -112q13 -13 13.5 -32t-11.5 -34l-84 -121h302q84 0 138 -38t54 -110t-55 -111t-139 -39h-106l-131 -339q-6 -21 -19.5 -41t-28.5 -20h-342q-7 0 -90 81t-83 94v525q0 17 14 35.5t28 28.5zM400 792v-503l100 -89h293l131 339 q6 21 19.5 41t28.5 20h203q21 0 30.5 25t0.5 50t-31 25h-456h-7h-6h-5.5t-6 0.5t-5 1.5t-5 2t-4 2.5t-4 4t-2.5 4.5q-12 25 5 47l146 183l-86 83zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500 q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe128;" d="M475 1103l366 -230q2 -1 6 -3.5t14 -10.5t18 -16.5t14.5 -20t6.5 -22.5v-525q0 -13 -86 -94t-93 -81h-342q-15 0 -28.5 20t-19.5 41l-131 339h-106q-85 0 -139.5 39t-54.5 111t54 110t138 38h302l-85 121q-11 15 -10.5 34t13.5 32l110 112q22 22 53 6zM370 945l146 -183 q17 -22 5 -47q-2 -2 -3.5 -4.5t-4 -4t-4 -2.5t-5 -2t-5 -1.5t-6 -0.5h-6h-6.5h-6h-475v-100h221q15 0 29 -20t20 -41l130 -339h294l106 89v503l-342 236zM1050 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5 v500q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe129;" d="M550 1294q72 0 111 -55t39 -139v-106l339 -131q21 -6 41 -19.5t20 -28.5v-342q0 -7 -81 -90t-94 -83h-525q-17 0 -35.5 14t-28.5 28l-9 14l-230 363q-16 31 6 53l112 110q13 13 32 13.5t34 -11.5l121 -84v302q0 84 38 138t110 54zM600 972v203q0 21 -25 30.5t-50 0.5 t-25 -31v-456v-7v-6v-5.5t-0.5 -6t-1.5 -5t-2 -5t-2.5 -4t-4 -4t-4.5 -2.5q-25 -12 -47 5l-183 146l-83 -86l236 -339h503l89 100v293l-339 131q-21 6 -41 19.5t-20 28.5zM450 200h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe130;" d="M350 1100h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5zM600 306v-106q0 -84 -39 -139t-111 -55t-110 54t-38 138v302l-121 -84q-15 -12 -34 -11.5t-32 13.5l-112 110 q-22 22 -6 53l230 363q1 2 3.5 6t10.5 13.5t16.5 17t20 13.5t22.5 6h525q13 0 94 -83t81 -90v-342q0 -15 -20 -28.5t-41 -19.5zM308 900l-236 -339l83 -86l183 146q22 17 47 5q2 -1 4.5 -2.5t4 -4t2.5 -4t2 -5t1.5 -5t0.5 -6v-5.5v-6v-7v-456q0 -22 25 -31t50 0.5t25 30.5 v203q0 15 20 28.5t41 19.5l339 131v293l-89 100h-503z" />
+<glyph unicode="&#xe131;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM914 632l-275 223q-16 13 -27.5 8t-11.5 -26v-137h-275 q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h275v-137q0 -21 11.5 -26t27.5 8l275 223q16 13 16 32t-16 32z" />
+<glyph unicode="&#xe132;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM561 855l-275 -223q-16 -13 -16 -32t16 -32l275 -223q16 -13 27.5 -8 t11.5 26v137h275q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5h-275v137q0 21 -11.5 26t-27.5 -8z" />
+<glyph unicode="&#xe133;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM855 639l-223 275q-13 16 -32 16t-32 -16l-223 -275q-13 -16 -8 -27.5 t26 -11.5h137v-275q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v275h137q21 0 26 11.5t-8 27.5z" />
+<glyph unicode="&#xe134;" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM675 900h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-275h-137q-21 0 -26 -11.5 t8 -27.5l223 -275q13 -16 32 -16t32 16l223 275q13 16 8 27.5t-26 11.5h-137v275q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe135;" d="M600 1176q116 0 222.5 -46t184 -123.5t123.5 -184t46 -222.5t-46 -222.5t-123.5 -184t-184 -123.5t-222.5 -46t-222.5 46t-184 123.5t-123.5 184t-46 222.5t46 222.5t123.5 184t184 123.5t222.5 46zM627 1101q-15 -12 -36.5 -20.5t-35.5 -12t-43 -8t-39 -6.5 q-15 -3 -45.5 0t-45.5 -2q-20 -7 -51.5 -26.5t-34.5 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -91t-29.5 -79q-9 -34 5 -93t8 -87q0 -9 17 -44.5t16 -59.5q12 0 23 -5t23.5 -15t19.5 -14q16 -8 33 -15t40.5 -15t34.5 -12q21 -9 52.5 -32t60 -38t57.5 -11 q7 -15 -3 -34t-22.5 -40t-9.5 -38q13 -21 23 -34.5t27.5 -27.5t36.5 -18q0 -7 -3.5 -16t-3.5 -14t5 -17q104 -2 221 112q30 29 46.5 47t34.5 49t21 63q-13 8 -37 8.5t-36 7.5q-15 7 -49.5 15t-51.5 19q-18 0 -41 -0.5t-43 -1.5t-42 -6.5t-38 -16.5q-51 -35 -66 -12 q-4 1 -3.5 25.5t0.5 25.5q-6 13 -26.5 17.5t-24.5 6.5q1 15 -0.5 30.5t-7 28t-18.5 11.5t-31 -21q-23 -25 -42 4q-19 28 -8 58q6 16 22 22q6 -1 26 -1.5t33.5 -4t19.5 -13.5q7 -12 18 -24t21.5 -20.5t20 -15t15.5 -10.5l5 -3q2 12 7.5 30.5t8 34.5t-0.5 32q-3 18 3.5 29 t18 22.5t15.5 24.5q6 14 10.5 35t8 31t15.5 22.5t34 22.5q-6 18 10 36q8 0 24 -1.5t24.5 -1.5t20 4.5t20.5 15.5q-10 23 -31 42.5t-37.5 29.5t-49 27t-43.5 23q0 1 2 8t3 11.5t1.5 10.5t-1 9.5t-4.5 4.5q31 -13 58.5 -14.5t38.5 2.5l12 5q5 28 -9.5 46t-36.5 24t-50 15 t-41 20q-18 -4 -37 0zM613 994q0 -17 8 -42t17 -45t9 -23q-8 1 -39.5 5.5t-52.5 10t-37 16.5q3 11 16 29.5t16 25.5q10 -10 19 -10t14 6t13.5 14.5t16.5 12.5z" />
+<glyph unicode="&#xe136;" d="M756 1157q164 92 306 -9l-259 -138l145 -232l251 126q6 -89 -34 -156.5t-117 -110.5q-60 -34 -127 -39.5t-126 16.5l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5t15 37.5l600 599q-34 101 5.5 201.5t135.5 154.5z" />
+<glyph unicode="&#xe137;" horiz-adv-x="1220" d="M100 1196h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 1096h-200v-100h200v100zM100 796h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 696h-500v-100h500v100zM100 396h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 296h-300v-100h300v100z " />
+<glyph unicode="&#xe138;" d="M150 1200h900q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM700 500v-300l-200 -200v500l-350 500h900z" />
+<glyph unicode="&#xe139;" d="M500 1200h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5zM500 1100v-100h200v100h-200zM1200 400v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v200h1200z" />
+<glyph unicode="&#xe140;" d="M50 1200h300q21 0 25 -10.5t-10 -24.5l-94 -94l199 -199q7 -8 7 -18t-7 -18l-106 -106q-8 -7 -18 -7t-18 7l-199 199l-94 -94q-14 -14 -24.5 -10t-10.5 25v300q0 21 14.5 35.5t35.5 14.5zM850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-199 -199q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l199 199l-94 94q-14 14 -10 24.5t25 10.5zM364 470l106 -106q7 -8 7 -18t-7 -18l-199 -199l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l199 199 q8 7 18 7t18 -7zM1071 271l94 94q14 14 24.5 10t10.5 -25v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -25 10.5t10 24.5l94 94l-199 199q-7 8 -7 18t7 18l106 106q8 7 18 7t18 -7z" />
+<glyph unicode="&#xe141;" d="M596 1192q121 0 231.5 -47.5t190 -127t127 -190t47.5 -231.5t-47.5 -231.5t-127 -190.5t-190 -127t-231.5 -47t-231.5 47t-190.5 127t-127 190.5t-47 231.5t47 231.5t127 190t190.5 127t231.5 47.5zM596 1010q-112 0 -207.5 -55.5t-151 -151t-55.5 -207.5t55.5 -207.5 t151 -151t207.5 -55.5t207.5 55.5t151 151t55.5 207.5t-55.5 207.5t-151 151t-207.5 55.5zM454.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38.5 -16.5t-38.5 16.5t-16 39t16 38.5t38.5 16zM754.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38 -16.5q-14 0 -29 10l-55 -145 q17 -23 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5t-61.5 25.5t-25.5 61.5q0 32 20.5 56.5t51.5 29.5l122 126l1 1q-9 14 -9 28q0 23 16 39t38.5 16zM345.5 709q22.5 0 38.5 -16t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16zM854.5 709q22.5 0 38.5 -16 t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16z" />
+<glyph unicode="&#xe142;" d="M546 173l469 470q91 91 99 192q7 98 -52 175.5t-154 94.5q-22 4 -47 4q-34 0 -66.5 -10t-56.5 -23t-55.5 -38t-48 -41.5t-48.5 -47.5q-376 -375 -391 -390q-30 -27 -45 -41.5t-37.5 -41t-32 -46.5t-16 -47.5t-1.5 -56.5q9 -62 53.5 -95t99.5 -33q74 0 125 51l548 548 q36 36 20 75q-7 16 -21.5 26t-32.5 10q-26 0 -50 -23q-13 -12 -39 -38l-341 -338q-15 -15 -35.5 -15.5t-34.5 13.5t-14 34.5t14 34.5q327 333 361 367q35 35 67.5 51.5t78.5 16.5q14 0 29 -1q44 -8 74.5 -35.5t43.5 -68.5q14 -47 2 -96.5t-47 -84.5q-12 -11 -32 -32 t-79.5 -81t-114.5 -115t-124.5 -123.5t-123 -119.5t-96.5 -89t-57 -45q-56 -27 -120 -27q-70 0 -129 32t-93 89q-48 78 -35 173t81 163l511 511q71 72 111 96q91 55 198 55q80 0 152 -33q78 -36 129.5 -103t66.5 -154q17 -93 -11 -183.5t-94 -156.5l-482 -476 q-15 -15 -36 -16t-37 14t-17.5 34t14.5 35z" />
+<glyph unicode="&#xe143;" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104zM896 972q-33 0 -64.5 -19t-56.5 -46t-47.5 -53.5t-43.5 -45.5t-37.5 -19t-36 19t-40 45.5t-43 53.5t-54 46t-65.5 19q-67 0 -122.5 -55.5t-55.5 -132.5q0 -23 13.5 -51t46 -65t57.5 -63t76 -75l22 -22q15 -14 44 -44t50.5 -51t46 -44t41 -35t23 -12 t23.5 12t42.5 36t46 44t52.5 52t44 43q4 4 12 13q43 41 63.5 62t52 55t46 55t26 46t11.5 44q0 79 -53 133.5t-120 54.5z" />
+<glyph unicode="&#xe144;" d="M776.5 1214q93.5 0 159.5 -66l141 -141q66 -66 66 -160q0 -42 -28 -95.5t-62 -87.5l-29 -29q-31 53 -77 99l-18 18l95 95l-247 248l-389 -389l212 -212l-105 -106l-19 18l-141 141q-66 66 -66 159t66 159l283 283q65 66 158.5 66zM600 706l105 105q10 -8 19 -17l141 -141 q66 -66 66 -159t-66 -159l-283 -283q-66 -66 -159 -66t-159 66l-141 141q-66 66 -66 159.5t66 159.5l55 55q29 -55 75 -102l18 -17l-95 -95l247 -248l389 389z" />
+<glyph unicode="&#xe145;" d="M603 1200q85 0 162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5v953q0 21 30 46.5t81 48t129 37.5t163 15zM300 1000v-700h600v700h-600zM600 254q-43 0 -73.5 -30.5t-30.5 -73.5t30.5 -73.5t73.5 -30.5t73.5 30.5 t30.5 73.5t-30.5 73.5t-73.5 30.5z" />
+<glyph unicode="&#xe146;" d="M902 1185l283 -282q15 -15 15 -36t-14.5 -35.5t-35.5 -14.5t-35 15l-36 35l-279 -267v-300l-212 210l-308 -307l-280 -203l203 280l307 308l-210 212h300l267 279l-35 36q-15 14 -15 35t14.5 35.5t35.5 14.5t35 -15z" />
+<glyph unicode="&#xe148;" d="M700 1248v-78q38 -5 72.5 -14.5t75.5 -31.5t71 -53.5t52 -84t24 -118.5h-159q-4 36 -10.5 59t-21 45t-40 35.5t-64.5 20.5v-307l64 -13q34 -7 64 -16.5t70 -32t67.5 -52.5t47.5 -80t20 -112q0 -139 -89 -224t-244 -97v-77h-100v79q-150 16 -237 103q-40 40 -52.5 93.5 t-15.5 139.5h139q5 -77 48.5 -126t117.5 -65v335l-27 8q-46 14 -79 26.5t-72 36t-63 52t-40 72.5t-16 98q0 70 25 126t67.5 92t94.5 57t110 27v77h100zM600 754v274q-29 -4 -50 -11t-42 -21.5t-31.5 -41.5t-10.5 -65q0 -29 7 -50.5t16.5 -34t28.5 -22.5t31.5 -14t37.5 -10 q9 -3 13 -4zM700 547v-310q22 2 42.5 6.5t45 15.5t41.5 27t29 42t12 59.5t-12.5 59.5t-38 44.5t-53 31t-66.5 24.5z" />
+<glyph unicode="&#xe149;" d="M561 1197q84 0 160.5 -40t123.5 -109.5t47 -147.5h-153q0 40 -19.5 71.5t-49.5 48.5t-59.5 26t-55.5 9q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -26 13.5 -63t26.5 -61t37 -66q6 -9 9 -14h241v-100h-197q8 -50 -2.5 -115t-31.5 -95q-45 -62 -99 -112 q34 10 83 17.5t71 7.5q32 1 102 -16t104 -17q83 0 136 30l50 -147q-31 -19 -58 -30.5t-55 -15.5t-42 -4.5t-46 -0.5q-23 0 -76 17t-111 32.5t-96 11.5q-39 -3 -82 -16t-67 -25l-23 -11l-55 145q4 3 16 11t15.5 10.5t13 9t15.5 12t14.5 14t17.5 18.5q48 55 54 126.5 t-30 142.5h-221v100h166q-23 47 -44 104q-7 20 -12 41.5t-6 55.5t6 66.5t29.5 70.5t58.5 71q97 88 263 88z" />
+<glyph unicode="&#xe150;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM935 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-900h-200v900h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe151;" d="M1000 700h-100v100h-100v-100h-100v500h300v-500zM400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM801 1100v-200h100v200h-100zM1000 350l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150z " />
+<glyph unicode="&#xe152;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 1050l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150zM1000 0h-100v100h-100v-100h-100v500h300v-500zM801 400v-200h100v200h-100z " />
+<glyph unicode="&#xe153;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 700h-100v400h-100v100h200v-500zM1100 0h-100v100h-200v400h300v-500zM901 400v-200h100v200h-100z" />
+<glyph unicode="&#xe154;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1100 700h-100v100h-200v400h300v-500zM901 1100v-200h100v200h-100zM1000 0h-100v400h-100v100h200v-500z" />
+<glyph unicode="&#xe155;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM900 1000h-200v200h200v-200zM1000 700h-300v200h300v-200zM1100 400h-400v200h400v-200zM1200 100h-500v200h500v-200z" />
+<glyph unicode="&#xe156;" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1200 1000h-500v200h500v-200zM1100 700h-400v200h400v-200zM1000 400h-300v200h300v-200zM900 100h-200v200h200v-200z" />
+<glyph unicode="&#xe157;" d="M350 1100h400q162 0 256 -93.5t94 -256.5v-400q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5z" />
+<glyph unicode="&#xe158;" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-163 0 -256.5 92.5t-93.5 257.5v400q0 163 94 256.5t256 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM440 770l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" />
+<glyph unicode="&#xe159;" d="M350 1100h400q163 0 256.5 -94t93.5 -256v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 163 92.5 256.5t257.5 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM350 700h400q21 0 26.5 -12t-6.5 -28l-190 -253q-12 -17 -30 -17t-30 17l-190 253q-12 16 -6.5 28t26.5 12z" />
+<glyph unicode="&#xe160;" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -163 -92.5 -256.5t-257.5 -93.5h-400q-163 0 -256.5 94t-93.5 256v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM580 693l190 -253q12 -16 6.5 -28t-26.5 -12h-400q-21 0 -26.5 12t6.5 28l190 253q12 17 30 17t30 -17z" />
+<glyph unicode="&#xe161;" d="M550 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h450q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-450q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM338 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
+<glyph unicode="&#xe162;" d="M793 1182l9 -9q8 -10 5 -27q-3 -11 -79 -225.5t-78 -221.5l300 1q24 0 32.5 -17.5t-5.5 -35.5q-1 0 -133.5 -155t-267 -312.5t-138.5 -162.5q-12 -15 -26 -15h-9l-9 8q-9 11 -4 32q2 9 42 123.5t79 224.5l39 110h-302q-23 0 -31 19q-10 21 6 41q75 86 209.5 237.5 t228 257t98.5 111.5q9 16 25 16h9z" />
+<glyph unicode="&#xe163;" d="M350 1100h400q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-450q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h450q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400 q0 165 92.5 257.5t257.5 92.5zM938 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" />
+<glyph unicode="&#xe164;" d="M750 1200h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -10.5 -25t-24.5 10l-109 109l-312 -312q-15 -15 -35.5 -15t-35.5 15l-141 141q-15 15 -15 35.5t15 35.5l312 312l-109 109q-14 14 -10 24.5t25 10.5zM456 900h-156q-41 0 -70.5 -29.5t-29.5 -70.5v-500 q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v148l200 200v-298q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5h300z" />
+<glyph unicode="&#xe165;" d="M600 1186q119 0 227.5 -46.5t187 -125t125 -187t46.5 -227.5t-46.5 -227.5t-125 -187t-187 -125t-227.5 -46.5t-227.5 46.5t-187 125t-125 187t-46.5 227.5t46.5 227.5t125 187t187 125t227.5 46.5zM600 1022q-115 0 -212 -56.5t-153.5 -153.5t-56.5 -212t56.5 -212 t153.5 -153.5t212 -56.5t212 56.5t153.5 153.5t56.5 212t-56.5 212t-153.5 153.5t-212 56.5zM600 794q80 0 137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137t57 137t137 57z" />
+<glyph unicode="&#xe166;" d="M450 1200h200q21 0 35.5 -14.5t14.5 -35.5v-350h245q20 0 25 -11t-9 -26l-383 -426q-14 -15 -33.5 -15t-32.5 15l-379 426q-13 15 -8.5 26t25.5 11h250v350q0 21 14.5 35.5t35.5 14.5zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe167;" d="M583 1182l378 -435q14 -15 9 -31t-26 -16h-244v-250q0 -20 -17 -35t-39 -15h-200q-20 0 -32 14.5t-12 35.5v250h-250q-20 0 -25.5 16.5t8.5 31.5l383 431q14 16 33.5 17t33.5 -14zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe168;" d="M396 723l369 369q7 7 17.5 7t17.5 -7l139 -139q7 -8 7 -18.5t-7 -17.5l-525 -525q-7 -8 -17.5 -8t-17.5 8l-292 291q-7 8 -7 18t7 18l139 139q8 7 18.5 7t17.5 -7zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50 h-100z" />
+<glyph unicode="&#xe169;" d="M135 1023l142 142q14 14 35 14t35 -14l77 -77l-212 -212l-77 76q-14 15 -14 36t14 35zM655 855l210 210q14 14 24.5 10t10.5 -25l-2 -599q-1 -20 -15.5 -35t-35.5 -15l-597 -1q-21 0 -25 10.5t10 24.5l208 208l-154 155l212 212zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5 v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe170;" d="M350 1200l599 -2q20 -1 35 -15.5t15 -35.5l1 -597q0 -21 -10.5 -25t-24.5 10l-208 208l-155 -154l-212 212l155 154l-210 210q-14 14 -10 24.5t25 10.5zM524 512l-76 -77q-15 -14 -36 -14t-35 14l-142 142q-14 14 -14 35t14 35l77 77zM50 300h1000q21 0 35.5 -14.5 t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" />
+<glyph unicode="&#xe171;" d="M1200 103l-483 276l-314 -399v423h-399l1196 796v-1096zM483 424v-230l683 953z" />
+<glyph unicode="&#xe172;" d="M1100 1000v-850q0 -21 -14.5 -35.5t-35.5 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200z" />
+<glyph unicode="&#xe173;" d="M1100 1000l-2 -149l-299 -299l-95 95q-9 9 -21.5 9t-21.5 -9l-149 -147h-312v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1132 638l106 -106q7 -7 7 -17.5t-7 -17.5l-420 -421q-8 -7 -18 -7 t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l297 297q7 7 17.5 7t17.5 -7z" />
+<glyph unicode="&#xe174;" d="M1100 1000v-269l-103 -103l-134 134q-15 15 -33.5 16.5t-34.5 -12.5l-266 -266h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1202 572l70 -70q15 -15 15 -35.5t-15 -35.5l-131 -131 l131 -131q15 -15 15 -35.5t-15 -35.5l-70 -70q-15 -15 -35.5 -15t-35.5 15l-131 131l-131 -131q-15 -15 -35.5 -15t-35.5 15l-70 70q-15 15 -15 35.5t15 35.5l131 131l-131 131q-15 15 -15 35.5t15 35.5l70 70q15 15 35.5 15t35.5 -15l131 -131l131 131q15 15 35.5 15 t35.5 -15z" />
+<glyph unicode="&#xe175;" d="M1100 1000v-300h-350q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM850 600h100q21 0 35.5 -14.5t14.5 -35.5v-250h150q21 0 25 -10.5t-10 -24.5 l-230 -230q-14 -14 -35 -14t-35 14l-230 230q-14 14 -10 24.5t25 10.5h150v250q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe176;" d="M1100 1000v-400l-165 165q-14 15 -35 15t-35 -15l-263 -265h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM935 565l230 -229q14 -15 10 -25.5t-25 -10.5h-150v-250q0 -20 -14.5 -35 t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35v250h-150q-21 0 -25 10.5t10 25.5l230 229q14 15 35 15t35 -15z" />
+<glyph unicode="&#xe177;" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-150h-1200v150q0 21 14.5 35.5t35.5 14.5zM1200 800v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v550h1200zM100 500v-200h400v200h-400z" />
+<glyph unicode="&#xe178;" d="M935 1165l248 -230q14 -14 14 -35t-14 -35l-248 -230q-14 -14 -24.5 -10t-10.5 25v150h-400v200h400v150q0 21 10.5 25t24.5 -10zM200 800h-50q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v-200zM400 800h-100v200h100v-200zM18 435l247 230 q14 14 24.5 10t10.5 -25v-150h400v-200h-400v-150q0 -21 -10.5 -25t-24.5 10l-247 230q-15 14 -15 35t15 35zM900 300h-100v200h100v-200zM1000 500h51q20 0 34.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-34.5 -14.5h-51v200z" />
+<glyph unicode="&#xe179;" d="M862 1073l276 116q25 18 43.5 8t18.5 -41v-1106q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v397q-4 1 -11 5t-24 17.5t-30 29t-24 42t-11 56.5v359q0 31 18.5 65t43.5 52zM550 1200q22 0 34.5 -12.5t14.5 -24.5l1 -13v-450q0 -28 -10.5 -59.5 t-25 -56t-29 -45t-25.5 -31.5l-10 -11v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447q-4 4 -11 11.5t-24 30.5t-30 46t-24 55t-11 60v450q0 2 0.5 5.5t4 12t8.5 15t14.5 12t22.5 5.5q20 0 32.5 -12.5t14.5 -24.5l3 -13v-350h100v350v5.5t2.5 12 t7 15t15 12t25.5 5.5q23 0 35.5 -12.5t13.5 -24.5l1 -13v-350h100v350q0 2 0.5 5.5t3 12t7 15t15 12t24.5 5.5z" />
+<glyph unicode="&#xe180;" d="M1200 1100v-56q-4 0 -11 -0.5t-24 -3t-30 -7.5t-24 -15t-11 -24v-888q0 -22 25 -34.5t50 -13.5l25 -2v-56h-400v56q75 0 87.5 6.5t12.5 43.5v394h-500v-394q0 -37 12.5 -43.5t87.5 -6.5v-56h-400v56q4 0 11 0.5t24 3t30 7.5t24 15t11 24v888q0 22 -25 34.5t-50 13.5 l-25 2v56h400v-56q-75 0 -87.5 -6.5t-12.5 -43.5v-394h500v394q0 37 -12.5 43.5t-87.5 6.5v56h400z" />
+<glyph unicode="&#xe181;" d="M675 1000h375q21 0 35.5 -14.5t14.5 -35.5v-150h-105l-295 -98v98l-200 200h-400l100 100h375zM100 900h300q41 0 70.5 -29.5t29.5 -70.5v-500q0 -41 -29.5 -70.5t-70.5 -29.5h-300q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5zM100 800v-200h300v200 h-300zM1100 535l-400 -133v163l400 133v-163zM100 500v-200h300v200h-300zM1100 398v-248q0 -21 -14.5 -35.5t-35.5 -14.5h-375l-100 -100h-375l-100 100h400l200 200h105z" />
+<glyph unicode="&#xe182;" d="M17 1007l162 162q17 17 40 14t37 -22l139 -194q14 -20 11 -44.5t-20 -41.5l-119 -118q102 -142 228 -268t267 -227l119 118q17 17 42.5 19t44.5 -12l192 -136q19 -14 22.5 -37.5t-13.5 -40.5l-163 -162q-3 -1 -9.5 -1t-29.5 2t-47.5 6t-62.5 14.5t-77.5 26.5t-90 42.5 t-101.5 60t-111 83t-119 108.5q-74 74 -133.5 150.5t-94.5 138.5t-60 119.5t-34.5 100t-15 74.5t-4.5 48z" />
+<glyph unicode="&#xe183;" d="M600 1100q92 0 175 -10.5t141.5 -27t108.5 -36.5t81.5 -40t53.5 -37t31 -27l9 -10v-200q0 -21 -14.5 -33t-34.5 -9l-202 34q-20 3 -34.5 20t-14.5 38v146q-141 24 -300 24t-300 -24v-146q0 -21 -14.5 -38t-34.5 -20l-202 -34q-20 -3 -34.5 9t-14.5 33v200q3 4 9.5 10.5 t31 26t54 37.5t80.5 39.5t109 37.5t141 26.5t175 10.5zM600 795q56 0 97 -9.5t60 -23.5t30 -28t12 -24l1 -10v-50l365 -303q14 -15 24.5 -40t10.5 -45v-212q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v212q0 20 10.5 45t24.5 40l365 303v50 q0 4 1 10.5t12 23t30 29t60 22.5t97 10z" />
+<glyph unicode="&#xe184;" d="M1100 700l-200 -200h-600l-200 200v500h200v-200h200v200h200v-200h200v200h200v-500zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5 t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe185;" d="M700 1100h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-1000h300v1000q0 41 -29.5 70.5t-70.5 29.5zM1100 800h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-700h300v700q0 41 -29.5 70.5t-70.5 29.5zM400 0h-300v400q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-400z " />
+<glyph unicode="&#xe186;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
+<glyph unicode="&#xe187;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 300h-100v200h-100v-200h-100v500h100v-200h100v200h100v-500zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" />
+<glyph unicode="&#xe188;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-300h200v-100h-300v500h300v-100zM900 700h-200v-300h200v-100h-300v500h300v-100z" />
+<glyph unicode="&#xe189;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 400l-300 150l300 150v-300zM900 550l-300 -150v300z" />
+<glyph unicode="&#xe190;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM900 300h-700v500h700v-500zM800 700h-130q-38 0 -66.5 -43t-28.5 -108t27 -107t68 -42h130v300zM300 700v-300 h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130z" />
+<glyph unicode="&#xe191;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 300h-100v400h-100v100h200v-500z M700 300h-100v100h100v-100z" />
+<glyph unicode="&#xe192;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM300 700h200v-400h-300v500h100v-100zM900 300h-100v400h-100v100h200v-500zM300 600v-200h100v200h-100z M700 300h-100v100h100v-100z" />
+<glyph unicode="&#xe193;" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 500l-199 -200h-100v50l199 200v150h-200v100h300v-300zM900 300h-100v400h-100v100h200v-500zM701 300h-100 v100h100v-100z" />
+<glyph unicode="&#xe194;" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700h-300v-200h300v-100h-300l-100 100v200l100 100h300v-100z" />
+<glyph unicode="&#xe195;" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700v-100l-50 -50l100 -100v-50h-100l-100 100h-150v-100h-100v400h300zM500 700v-100h200v100h-200z" />
+<glyph unicode="&#xe197;" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -207t-85 -207t-205 -86.5h-128v250q0 21 -14.5 35.5t-35.5 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-250h-222q-80 0 -136 57.5t-56 136.5q0 69 43 122.5t108 67.5q-2 19 -2 37q0 100 49 185 t134 134t185 49zM525 500h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -244q-13 -16 -32 -16t-32 16l-223 244q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe198;" d="M502 1089q110 0 201 -59.5t135 -156.5q43 15 89 15q121 0 206 -86.5t86 -206.5q0 -99 -60 -181t-150 -110l-378 360q-13 16 -31.5 16t-31.5 -16l-381 -365h-9q-79 0 -135.5 57.5t-56.5 136.5q0 69 43 122.5t108 67.5q-2 19 -2 38q0 100 49 184.5t133.5 134t184.5 49.5z M632 467l223 -228q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5q199 204 223 228q19 19 31.5 19t32.5 -19z" />
+<glyph unicode="&#xe199;" d="M700 100v100h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170l-270 -300h400v-100h-50q-21 0 -35.5 -14.5t-14.5 -35.5v-50h400v50q0 21 -14.5 35.5t-35.5 14.5h-50z" />
+<glyph unicode="&#xe200;" d="M600 1179q94 0 167.5 -56.5t99.5 -145.5q89 -6 150.5 -71.5t61.5 -155.5q0 -61 -29.5 -112.5t-79.5 -82.5q9 -29 9 -55q0 -74 -52.5 -126.5t-126.5 -52.5q-55 0 -100 30v-251q21 0 35.5 -14.5t14.5 -35.5v-50h-300v50q0 21 14.5 35.5t35.5 14.5v251q-45 -30 -100 -30 q-74 0 -126.5 52.5t-52.5 126.5q0 18 4 38q-47 21 -75.5 65t-28.5 97q0 74 52.5 126.5t126.5 52.5q5 0 23 -2q0 2 -1 10t-1 13q0 116 81.5 197.5t197.5 81.5z" />
+<glyph unicode="&#xe201;" d="M1010 1010q111 -111 150.5 -260.5t0 -299t-150.5 -260.5q-83 -83 -191.5 -126.5t-218.5 -43.5t-218.5 43.5t-191.5 126.5q-111 111 -150.5 260.5t0 299t150.5 260.5q83 83 191.5 126.5t218.5 43.5t218.5 -43.5t191.5 -126.5zM476 1065q-4 0 -8 -1q-121 -34 -209.5 -122.5 t-122.5 -209.5q-4 -12 2.5 -23t18.5 -14l36 -9q3 -1 7 -1q23 0 29 22q27 96 98 166q70 71 166 98q11 3 17.5 13.5t3.5 22.5l-9 35q-3 13 -14 19q-7 4 -15 4zM512 920q-4 0 -9 -2q-80 -24 -138.5 -82.5t-82.5 -138.5q-4 -13 2 -24t19 -14l34 -9q4 -1 8 -1q22 0 28 21 q18 58 58.5 98.5t97.5 58.5q12 3 18 13.5t3 21.5l-9 35q-3 12 -14 19q-7 4 -15 4zM719.5 719.5q-49.5 49.5 -119.5 49.5t-119.5 -49.5t-49.5 -119.5t49.5 -119.5t119.5 -49.5t119.5 49.5t49.5 119.5t-49.5 119.5zM855 551q-22 0 -28 -21q-18 -58 -58.5 -98.5t-98.5 -57.5 q-11 -4 -17 -14.5t-3 -21.5l9 -35q3 -12 14 -19q7 -4 15 -4q4 0 9 2q80 24 138.5 82.5t82.5 138.5q4 13 -2.5 24t-18.5 14l-34 9q-4 1 -8 1zM1000 515q-23 0 -29 -22q-27 -96 -98 -166q-70 -71 -166 -98q-11 -3 -17.5 -13.5t-3.5 -22.5l9 -35q3 -13 14 -19q7 -4 15 -4 q4 0 8 1q121 34 209.5 122.5t122.5 209.5q4 12 -2.5 23t-18.5 14l-36 9q-3 1 -7 1z" />
+<glyph unicode="&#xe202;" d="M700 800h300v-380h-180v200h-340v-200h-380v755q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM700 300h162l-212 -212l-212 212h162v200h100v-200zM520 0h-395q-10 0 -17.5 7.5t-7.5 17.5v395zM1000 220v-195q0 -10 -7.5 -17.5t-17.5 -7.5h-195z" />
+<glyph unicode="&#xe203;" d="M700 800h300v-520l-350 350l-550 -550v1095q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM862 200h-162v-200h-100v200h-162l212 212zM480 0h-355q-10 0 -17.5 7.5t-7.5 17.5v55h380v-80zM1000 80v-55q0 -10 -7.5 -17.5t-17.5 -7.5h-155v80h180z" />
+<glyph unicode="&#xe204;" d="M1162 800h-162v-200h100l100 -100h-300v300h-162l212 212zM200 800h200q27 0 40 -2t29.5 -10.5t23.5 -30t7 -57.5h300v-100h-600l-200 -350v450h100q0 36 7 57.5t23.5 30t29.5 10.5t40 2zM800 400h240l-240 -400h-800l300 500h500v-100z" />
+<glyph unicode="&#xe205;" d="M650 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM1000 850v150q41 0 70.5 -29.5t29.5 -70.5v-800 q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-1 0 -20 4l246 246l-326 326v324q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM412 250l-212 -212v162h-200v100h200v162z" />
+<glyph unicode="&#xe206;" d="M450 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM800 850v150q41 0 70.5 -29.5t29.5 -70.5v-500 h-200v-300h200q0 -36 -7 -57.5t-23.5 -30t-29.5 -10.5t-40 -2h-600q-41 0 -70.5 29.5t-29.5 70.5v800q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM1212 250l-212 -212v162h-200v100h200v162z" />
+<glyph unicode="&#xe209;" d="M658 1197l637 -1104q23 -38 7 -65.5t-60 -27.5h-1276q-44 0 -60 27.5t7 65.5l637 1104q22 39 54 39t54 -39zM704 800h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM500 300v-100h200 v100h-200z" />
+<glyph unicode="&#xe210;" d="M425 1100h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM825 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM25 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5zM425 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5 v150q0 10 7.5 17.5t17.5 7.5zM25 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe211;" d="M700 1200h100v-200h-100v-100h350q62 0 86.5 -39.5t-3.5 -94.5l-66 -132q-41 -83 -81 -134h-772q-40 51 -81 134l-66 132q-28 55 -3.5 94.5t86.5 39.5h350v100h-100v200h100v100h200v-100zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100 h-950l138 100h-13q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe212;" d="M600 1300q40 0 68.5 -29.5t28.5 -70.5h-194q0 41 28.5 70.5t68.5 29.5zM443 1100h314q18 -37 18 -75q0 -8 -3 -25h328q41 0 44.5 -16.5t-30.5 -38.5l-175 -145h-678l-178 145q-34 22 -29 38.5t46 16.5h328q-3 17 -3 25q0 38 18 75zM250 700h700q21 0 35.5 -14.5 t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-150v-200l275 -200h-950l275 200v200h-150q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe213;" d="M600 1181q75 0 128 -53t53 -128t-53 -128t-128 -53t-128 53t-53 128t53 128t128 53zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13 l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe214;" d="M600 1300q47 0 92.5 -53.5t71 -123t25.5 -123.5q0 -78 -55.5 -133.5t-133.5 -55.5t-133.5 55.5t-55.5 133.5q0 62 34 143l144 -143l111 111l-163 163q34 26 63 26zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45 zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe215;" d="M600 1200l300 -161v-139h-300q0 -57 18.5 -108t50 -91.5t63 -72t70 -67.5t57.5 -61h-530q-60 83 -90.5 177.5t-30.5 178.5t33 164.5t87.5 139.5t126 96.5t145.5 41.5v-98zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100 h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe216;" d="M600 1300q41 0 70.5 -29.5t29.5 -70.5v-78q46 -26 73 -72t27 -100v-50h-400v50q0 54 27 100t73 72v78q0 41 29.5 70.5t70.5 29.5zM400 800h400q54 0 100 -27t72 -73h-172v-100h200v-100h-200v-100h200v-100h-200v-100h200q0 -83 -58.5 -141.5t-141.5 -58.5h-400 q-83 0 -141.5 58.5t-58.5 141.5v400q0 83 58.5 141.5t141.5 58.5z" />
+<glyph unicode="&#xe218;" d="M150 1100h900q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM125 400h950q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-283l224 -224q13 -13 13 -31.5t-13 -32 t-31.5 -13.5t-31.5 13l-88 88h-524l-87 -88q-13 -13 -32 -13t-32 13.5t-13 32t13 31.5l224 224h-289q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM541 300l-100 -100h324l-100 100h-124z" />
+<glyph unicode="&#xe219;" d="M200 1100h800q83 0 141.5 -58.5t58.5 -141.5v-200h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100v200q0 83 58.5 141.5t141.5 58.5zM100 600h1000q41 0 70.5 -29.5 t29.5 -70.5v-300h-1200v300q0 41 29.5 70.5t70.5 29.5zM300 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200zM1100 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200z" />
+<glyph unicode="&#xe221;" d="M480 1165l682 -683q31 -31 31 -75.5t-31 -75.5l-131 -131h-481l-517 518q-32 31 -32 75.5t32 75.5l295 296q31 31 75.5 31t76.5 -31zM108 794l342 -342l303 304l-341 341zM250 100h800q21 0 35.5 -14.5t14.5 -35.5v-50h-900v50q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe223;" d="M1057 647l-189 506q-8 19 -27.5 33t-40.5 14h-400q-21 0 -40.5 -14t-27.5 -33l-189 -506q-8 -19 1.5 -33t30.5 -14h625v-150q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5t14.5 35.5v150h125q21 0 30.5 14t1.5 33zM897 0h-595v50q0 21 14.5 35.5t35.5 14.5h50v50 q0 21 14.5 35.5t35.5 14.5h48v300h200v-300h47q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-50z" />
+<glyph unicode="&#xe224;" d="M900 800h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-375v591l-300 300v84q0 10 7.5 17.5t17.5 7.5h375v-400zM1200 900h-200v200zM400 600h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-650q-10 0 -17.5 7.5t-7.5 17.5v950q0 10 7.5 17.5t17.5 7.5h375v-400zM700 700h-200v200z " />
+<glyph unicode="&#xe225;" d="M484 1095h195q75 0 146 -32.5t124 -86t89.5 -122.5t48.5 -142q18 -14 35 -20q31 -10 64.5 6.5t43.5 48.5q10 34 -15 71q-19 27 -9 43q5 8 12.5 11t19 -1t23.5 -16q41 -44 39 -105q-3 -63 -46 -106.5t-104 -43.5h-62q-7 -55 -35 -117t-56 -100l-39 -234q-3 -20 -20 -34.5 t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l12 70q-49 -14 -91 -14h-195q-24 0 -65 8l-11 -64q-3 -20 -20 -34.5t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l26 157q-84 74 -128 175l-159 53q-19 7 -33 26t-14 40v50q0 21 14.5 35.5t35.5 14.5h124q11 87 56 166l-111 95 q-16 14 -12.5 23.5t24.5 9.5h203q116 101 250 101zM675 1000h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h250q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5t-17.5 7.5z" />
+<glyph unicode="&#xe226;" d="M641 900l423 247q19 8 42 2.5t37 -21.5l32 -38q14 -15 12.5 -36t-17.5 -34l-139 -120h-390zM50 1100h106q67 0 103 -17t66 -71l102 -212h823q21 0 35.5 -14.5t14.5 -35.5v-50q0 -21 -14 -40t-33 -26l-737 -132q-23 -4 -40 6t-26 25q-42 67 -100 67h-300q-62 0 -106 44 t-44 106v200q0 62 44 106t106 44zM173 928h-80q-19 0 -28 -14t-9 -35v-56q0 -51 42 -51h134q16 0 21.5 8t5.5 24q0 11 -16 45t-27 51q-18 28 -43 28zM550 727q-32 0 -54.5 -22.5t-22.5 -54.5t22.5 -54.5t54.5 -22.5t54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5zM130 389 l152 130q18 19 34 24t31 -3.5t24.5 -17.5t25.5 -28q28 -35 50.5 -51t48.5 -13l63 5l48 -179q13 -61 -3.5 -97.5t-67.5 -79.5l-80 -69q-47 -40 -109 -35.5t-103 51.5l-130 151q-40 47 -35.5 109.5t51.5 102.5zM380 377l-102 -88q-31 -27 2 -65l37 -43q13 -15 27.5 -19.5 t31.5 6.5l61 53q19 16 14 49q-2 20 -12 56t-17 45q-11 12 -19 14t-23 -8z" />
+<glyph unicode="&#xe227;" d="M625 1200h150q10 0 17.5 -7.5t7.5 -17.5v-109q79 -33 131 -87.5t53 -128.5q1 -46 -15 -84.5t-39 -61t-46 -38t-39 -21.5l-17 -6q6 0 15 -1.5t35 -9t50 -17.5t53 -30t50 -45t35.5 -64t14.5 -84q0 -59 -11.5 -105.5t-28.5 -76.5t-44 -51t-49.5 -31.5t-54.5 -16t-49.5 -6.5 t-43.5 -1v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-100v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-175q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v600h-75q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5h175v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h100v75q0 10 7.5 17.5t17.5 7.5zM400 900v-200h263q28 0 48.5 10.5t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-263zM400 500v-200h363q28 0 48.5 10.5 t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-363z" />
+<glyph unicode="&#xe230;" d="M212 1198h780q86 0 147 -61t61 -147v-416q0 -51 -18 -142.5t-36 -157.5l-18 -66q-29 -87 -93.5 -146.5t-146.5 -59.5h-572q-82 0 -147 59t-93 147q-8 28 -20 73t-32 143.5t-20 149.5v416q0 86 61 147t147 61zM600 1045q-70 0 -132.5 -11.5t-105.5 -30.5t-78.5 -41.5 t-57 -45t-36 -41t-20.5 -30.5l-6 -12l156 -243h560l156 243q-2 5 -6 12.5t-20 29.5t-36.5 42t-57 44.5t-79 42t-105 29.5t-132.5 12zM762 703h-157l195 261z" />
+<glyph unicode="&#xe231;" d="M475 1300h150q103 0 189 -86t86 -189v-500q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
+<glyph unicode="&#xe232;" d="M475 1300h96q0 -150 89.5 -239.5t239.5 -89.5v-446q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" />
+<glyph unicode="&#xe233;" d="M1294 767l-638 -283l-378 170l-78 -60v-224l100 -150v-199l-150 148l-150 -149v200l100 150v250q0 4 -0.5 10.5t0 9.5t1 8t3 8t6.5 6l47 40l-147 65l642 283zM1000 380l-350 -166l-350 166v147l350 -165l350 165v-147z" />
+<glyph unicode="&#xe234;" d="M250 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM650 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM1050 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
+<glyph unicode="&#xe235;" d="M550 1100q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 700q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 300q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" />
+<glyph unicode="&#xe236;" d="M125 1100h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM125 700h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM125 300h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" />
+<glyph unicode="&#xe237;" d="M350 1200h500q162 0 256 -93.5t94 -256.5v-500q0 -165 -93.5 -257.5t-256.5 -92.5h-500q-165 0 -257.5 92.5t-92.5 257.5v500q0 165 92.5 257.5t257.5 92.5zM900 1000h-600q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h600q41 0 70.5 29.5 t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5zM350 900h500q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-500q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 14.5 35.5t35.5 14.5zM400 800v-200h400v200h-400z" />
+<glyph unicode="&#xe238;" d="M150 1100h1000q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe239;" d="M650 1187q87 -67 118.5 -156t0 -178t-118.5 -155q-87 66 -118.5 155t0 178t118.5 156zM300 800q124 0 212 -88t88 -212q-124 0 -212 88t-88 212zM1000 800q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM300 500q124 0 212 -88t88 -212q-124 0 -212 88t-88 212z M1000 500q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM700 199v-144q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v142q40 -4 43 -4q17 0 57 6z" />
+<glyph unicode="&#xe240;" d="M745 878l69 19q25 6 45 -12l298 -295q11 -11 15 -26.5t-2 -30.5q-5 -14 -18 -23.5t-28 -9.5h-8q1 0 1 -13q0 -29 -2 -56t-8.5 -62t-20 -63t-33 -53t-51 -39t-72.5 -14h-146q-184 0 -184 288q0 24 10 47q-20 4 -62 4t-63 -4q11 -24 11 -47q0 -288 -184 -288h-142 q-48 0 -84.5 21t-56 51t-32 71.5t-16 75t-3.5 68.5q0 13 2 13h-7q-15 0 -27.5 9.5t-18.5 23.5q-6 15 -2 30.5t15 25.5l298 296q20 18 46 11l76 -19q20 -5 30.5 -22.5t5.5 -37.5t-22.5 -31t-37.5 -5l-51 12l-182 -193h891l-182 193l-44 -12q-20 -5 -37.5 6t-22.5 31t6 37.5 t31 22.5z" />
+<glyph unicode="&#xe241;" d="M1200 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM500 450h-25q0 15 -4 24.5t-9 14.5t-17 7.5t-20 3t-25 0.5h-100v-425q0 -11 12.5 -17.5t25.5 -7.5h12v-50h-200v50q50 0 50 25v425h-100q-17 0 -25 -0.5t-20 -3t-17 -7.5t-9 -14.5t-4 -24.5h-25v150h500v-150z" />
+<glyph unicode="&#xe242;" d="M1000 300v50q-25 0 -55 32q-14 14 -25 31t-16 27l-4 11l-289 747h-69l-300 -754q-18 -35 -39 -56q-9 -9 -24.5 -18.5t-26.5 -14.5l-11 -5v-50h273v50q-49 0 -78.5 21.5t-11.5 67.5l69 176h293l61 -166q13 -34 -3.5 -66.5t-55.5 -32.5v-50h312zM412 691l134 342l121 -342 h-255zM1100 150v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5z" />
+<glyph unicode="&#xe243;" d="M50 1200h1100q21 0 35.5 -14.5t14.5 -35.5v-1100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5zM611 1118h-70q-13 0 -18 -12l-299 -753q-17 -32 -35 -51q-18 -18 -56 -34q-12 -5 -12 -18v-50q0 -8 5.5 -14t14.5 -6 h273q8 0 14 6t6 14v50q0 8 -6 14t-14 6q-55 0 -71 23q-10 14 0 39l63 163h266l57 -153q11 -31 -6 -55q-12 -17 -36 -17q-8 0 -14 -6t-6 -14v-50q0 -8 6 -14t14 -6h313q8 0 14 6t6 14v50q0 7 -5.5 13t-13.5 7q-17 0 -42 25q-25 27 -40 63h-1l-288 748q-5 12 -19 12zM639 611 h-197l103 264z" />
+<glyph unicode="&#xe244;" d="M1200 1100h-1200v100h1200v-100zM50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 1000h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM700 900v-300h300v300h-300z" />
+<glyph unicode="&#xe245;" d="M50 1200h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 700h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM700 600v-300h300v300h-300zM1200 0h-1200v100h1200v-100z" />
+<glyph unicode="&#xe246;" d="M50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-350h100v150q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-150h100v-100h-100v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v150h-100v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM700 700v-300h300v300h-300z" />
+<glyph unicode="&#xe247;" d="M100 0h-100v1200h100v-1200zM250 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM300 1000v-300h300v300h-300zM250 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe248;" d="M600 1100h150q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-100h450q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h350v100h-150q-21 0 -35.5 14.5 t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h150v100h100v-100zM400 1000v-300h300v300h-300z" />
+<glyph unicode="&#xe249;" d="M1200 0h-100v1200h100v-1200zM550 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM600 1000v-300h300v300h-300zM50 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" />
+<glyph unicode="&#xe250;" d="M865 565l-494 -494q-23 -23 -41 -23q-14 0 -22 13.5t-8 38.5v1000q0 25 8 38.5t22 13.5q18 0 41 -23l494 -494q14 -14 14 -35t-14 -35z" />
+<glyph unicode="&#xe251;" d="M335 635l494 494q29 29 50 20.5t21 -49.5v-1000q0 -41 -21 -49.5t-50 20.5l-494 494q-14 14 -14 35t14 35z" />
+<glyph unicode="&#xe252;" d="M100 900h1000q41 0 49.5 -21t-20.5 -50l-494 -494q-14 -14 -35 -14t-35 14l-494 494q-29 29 -20.5 50t49.5 21z" />
+<glyph unicode="&#xe253;" d="M635 865l494 -494q29 -29 20.5 -50t-49.5 -21h-1000q-41 0 -49.5 21t20.5 50l494 494q14 14 35 14t35 -14z" />
+<glyph unicode="&#xe254;" d="M700 741v-182l-692 -323v221l413 193l-413 193v221zM1200 0h-800v200h800v-200z" />
+<glyph unicode="&#xe255;" d="M1200 900h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300zM0 700h50q0 21 4 37t9.5 26.5t18 17.5t22 11t28.5 5.5t31 2t37 0.5h100v-550q0 -22 -25 -34.5t-50 -13.5l-25 -2v-100h400v100q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v550h100q25 0 37 -0.5t31 -2 t28.5 -5.5t22 -11t18 -17.5t9.5 -26.5t4 -37h50v300h-800v-300z" />
+<glyph unicode="&#xe256;" d="M800 700h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-100v-550q0 -22 25 -34.5t50 -14.5l25 -1v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v550h-100q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h800v-300zM1100 200h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300z" />
+<glyph unicode="&#xe257;" d="M701 1098h160q16 0 21 -11t-7 -23l-464 -464l464 -464q12 -12 7 -23t-21 -11h-160q-13 0 -23 9l-471 471q-7 8 -7 18t7 18l471 471q10 9 23 9z" />
+<glyph unicode="&#xe258;" d="M339 1098h160q13 0 23 -9l471 -471q7 -8 7 -18t-7 -18l-471 -471q-10 -9 -23 -9h-160q-16 0 -21 11t7 23l464 464l-464 464q-12 12 -7 23t21 11z" />
+<glyph unicode="&#xe259;" d="M1087 882q11 -5 11 -21v-160q0 -13 -9 -23l-471 -471q-8 -7 -18 -7t-18 7l-471 471q-9 10 -9 23v160q0 16 11 21t23 -7l464 -464l464 464q12 12 23 7z" />
+<glyph unicode="&#xe260;" d="M618 993l471 -471q9 -10 9 -23v-160q0 -16 -11 -21t-23 7l-464 464l-464 -464q-12 -12 -23 -7t-11 21v160q0 13 9 23l471 471q8 7 18 7t18 -7z" />
+<glyph unicode="&#xf8ff;" d="M1000 1200q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM450 1000h100q21 0 40 -14t26 -33l79 -194q5 1 16 3q34 6 54 9.5t60 7t65.5 1t61 -10t56.5 -23t42.5 -42t29 -64t5 -92t-19.5 -121.5q-1 -7 -3 -19.5t-11 -50t-20.5 -73t-32.5 -81.5t-46.5 -83t-64 -70 t-82.5 -50q-13 -5 -42 -5t-65.5 2.5t-47.5 2.5q-14 0 -49.5 -3.5t-63 -3.5t-43.5 7q-57 25 -104.5 78.5t-75 111.5t-46.5 112t-26 90l-7 35q-15 63 -18 115t4.5 88.5t26 64t39.5 43.5t52 25.5t58.5 13t62.5 2t59.5 -4.5t55.5 -8l-147 192q-12 18 -5.5 30t27.5 12z" />
+<glyph unicode="&#x1f511;" d="M250 1200h600q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-500l-255 -178q-19 -9 -32 -1t-13 29v650h-150q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM400 1100v-100h300v100h-300z" />
+<glyph unicode="&#x1f6aa;" d="M250 1200h750q39 0 69.5 -40.5t30.5 -84.5v-933l-700 -117v950l600 125h-700v-1000h-100v1025q0 23 15.5 49t34.5 26zM500 525v-100l100 20v100z" />
+</font>
+</defs></svg> 
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.ttf b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.ttf
new file mode 100644
index 0000000..1413fc6
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.ttf differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.woff b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.woff
new file mode 100644
index 0000000..9e61285
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.woff differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.woff2 b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.woff2
new file mode 100644
index 0000000..64539b5
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/glyphicons-halflings-regular.woff2 differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.eot b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.eot
new file mode 100644
index 0000000..63f5786
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.eot differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.svg
new file mode 100644
index 0000000..f49e45d
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.svg
@@ -0,0 +1,19036 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1219" ><font-face
+    font-family="Open Sans"
+    units-per-em="2048"
+    panose-1="2 11 8 6 3 5 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="586" d="M391 485H150L307 1462H647L391 485ZM25 115Q25 205 78 259T229 313Q297 313 338 275T379 168Q379 81 324 27T180 -27Q107 -27 66 10T25 115Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="928" d="M549 1462L397 934H201L272 1462H549ZM954 1462L803 934H604L678 1462H954Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M1036 846L967 614H1225L1206 408H909L793 0H573L690 408H496L381 0H166L279 408H41L59 614H336L406 846H154L172 1055H461L580 1462H797L680 1055H879L995 1462H1210L1094 1055H1333L1315 846H1036ZM553
+614H750L819 846H623L553 614Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1128" d="M1034 496Q1034 312 909 205T541 80L502 -119H362L406 82Q197 94 51 168V434Q249 327 455 317L526 639Q363 700 285 790T207 1004Q207 1177 334 1283T684 1405L719 1556H858L825 1405Q991 1383 1120
+1315L1014 1083Q882 1148 772 1157L709 858Q840 807 904 759T1001 646T1034 496ZM594 322Q657 331 696 367T735 465Q735 511 711 540T651 584L594 322ZM633 1157Q571 1150 537 1116T502 1022Q502 943 582 911L633 1157Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1753" d="M518 1274Q455 1274 408 1146T360 868Q360 772 416 772Q481 772 528 903T575 1178Q575 1274 518 1274ZM821 1165Q821 999 765 855T614 638T397 565Q258 565 187 648T115 885Q115 1054 170 1196T319
+1411T535 1483Q672 1483 746 1403T821 1165ZM1554 1462L471 0H231L1319 1462H1554ZM1376 690Q1337 690 1301 634T1242 480T1219 285Q1219 188 1274 188Q1315 188 1351 243T1410 397T1434 594Q1434 690 1376 690ZM1679 590Q1679 423 1625 277T1477 56T1262 -18Q1118
+-18 1046 60T973 283Q973 460 1026 605T1174 825T1393 899Q1530 899 1604 821T1679 590Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1450" d="M1325 0H975L903 98Q728 -20 500 -20Q291 -20 180 77T68 358Q68 503 146 606T420 807Q344 937 344 1065Q344 1260 461 1372T778 1485Q947 1485 1044 1403T1141 1178Q1141 898 776 752L971
+489Q1015 546 1051 610T1130 784H1430Q1297 471 1120 287L1325 0ZM541 623Q453 572 418 519T383 387Q383 322 428 279T545 236Q660 236 766 295L541 623ZM662 920Q775 979 817 1031T860 1143Q860 1200 830 1225T760 1251Q694 1251 658 1205T621 1085Q621 1039 633
+993T662 920Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="522" d="M549 1462L397 934H201L272 1462H549Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="694" d="M74 281Q74 620 196 907T578 1462H840Q585 1184 463 889T340 270Q340 -38 457 -324H223Q74 -58 74 281Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="694" d="M618 858Q618 516 494 228T115 -324H-147Q352 221 352 868Q352 1175 236 1462H469Q618 1198 618 858Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1116" d="M885 1522L772 1169L1159 1198L1141 944L803 987L963 651L717 578L627 915L430 637L223 801L498 1049L172 1141L258 1378L596 1204L629 1573L885 1522Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1128" d="M475 612H109V831H475V1200H694V831H1061V612H694V248H475V612Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="569" d="M377 238L385 215Q267 -40 123 -264H-102Q-28 -97 92 238H377Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="659" d="M41 424L94 674H618L565 424H41Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="584" d="M25 115Q25 205 78 259T229 313Q297 313 338 275T379 168Q379 81 324 27T180 -27Q107 -27 66 10T25 115Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="862" d="M1014 1462L205 0H-90L719 1462H1014Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1128" d="M1110 1012Q1110 542 942 261T469 -20Q271 -20 169 102T66 467Q66 764 150 1004T378 1364T711 1485Q1110 1485 1110 1012ZM684 1235Q604 1235 535 1131T417 829T369 461Q369 346 396 288T494 229Q575
+229 644 335T760 636T807 1022Q807 1133 777 1184T684 1235Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1128" d="M688 0H383L563 829Q598 981 639 1116Q630 1108 578 1069T315 899L182 1114L748 1462H997L688 0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1128" d="M913 0H-49L-6 213L471 637Q651 796 719 891T788 1071Q788 1146 747 1185T637 1225Q571 1225 502 1192T330 1073L184 1276Q316 1388 436 1435T686 1483Q876 1483 987 1385T1098 1126Q1098 1019 1057
+925T935 737T668 492L399 270V260H967L913 0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1128" d="M1104 1149Q1104 993 1010 887T748 752V748Q879 722 946 642T1014 440Q1014 307 940 202T728 39T401 -20Q162 -20 14 59V326Q98 276 196 251T387 225Q545 225 630 288T715 465Q715 637 457 637H319L365
+858H438Q605 858 701 920T797 1092Q797 1159 754 1196T633 1233Q499 1233 346 1133L219 1337Q343 1418 451 1450T698 1483Q888 1483 996 1393T1104 1149Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1128" d="M1028 303H858L795 0H502L565 303H-25L23 537L793 1462H1104L909 543H1079L1028 303ZM616 543L674 791Q686 849 714 955T756 1096H750Q715 1033 618 915L305 543H616Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1128" d="M623 922Q806 922 912 819T1018 532Q1018 365 947 240T738 48T408 -20Q291 -20 190 3T27 61V330Q201 231 379 231Q533 231 620 302T707 496Q707 590 650 637T483 684Q381 684 270 651L166 729L373
+1462H1128L1073 1200H584L496 907Q568 922 623 922Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1128" d="M88 469Q88 671 149 864T316 1199T573 1413T930 1485Q1055 1485 1153 1458L1102 1212Q1018 1237 911 1237Q717 1237 598 1129T412 784H416Q531 950 727 950Q884 950 969 853T1055 580Q1055 411 984
+267T794 51T516 -20Q304 -20 196 107T88 469ZM530 227Q629 227 691 321T754 557Q754 628 721 670T618 713Q558 713 504 678T416 582T383 422Q383 331 423 279T530 227Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1128" d="M78 0L815 1202H186L242 1462H1217L1176 1268L424 0H78Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1128" d="M721 1485Q844 1485 936 1443T1077 1325T1126 1151Q1126 1017 1046 918T815 766Q1032 625 1032 401Q1032 279 969 183T788 33T514 -20Q300 -20 178 80T55 350Q55 648 403 776Q238 908 238 1075Q238
+1194 296 1287T464 1433T721 1485ZM582 643Q466 598 409 536T352 383Q352 302 402 255T537 207Q630 207 684 260T739 399Q739 472 703 530T582 643ZM694 1260Q618 1260 573 1214T528 1094Q528 962 651 893Q836 965 836 1114Q836 1182 797 1221T694 1260Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1128" d="M1092 1001Q1092 721 993 468T729 98T326 -20Q198 -20 86 12V268Q197 227 313 227Q434 227 520 276T664 414T764 672H760Q649 514 465 514Q302 514 213 617T123 903Q123 1069 196 1208T392 1416T678
+1485Q881 1485 986 1362T1092 1001ZM645 1237Q580 1237 530 1195T452 1081T424 928Q424 841 461 797T567 752Q627 752 678 788T760 888T791 1047Q791 1131 756 1184T645 1237Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="584" d="M207 940Q207 1032 262 1085T412 1139Q480 1139 520 1101T561 993Q561 907 507 853T362 799Q290 799 249 835T207 940ZM25 115Q25 205 78 259T229 313Q297 313 338 275T379 168Q379 81 324 27T180
+-27Q107 -27 66 10T25 115Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="584" d="M385 215Q267 -40 123 -264H-102Q-28 -97 92 238H377L385 215ZM207 940Q207 1032 262 1085T412 1139Q480 1139 520 1101T561 993Q561 907 507 853T362 799Q290 799 249 835T207 940Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1128" d="M1061 203L109 641V784L1061 1280V1040L418 723L1061 442V203Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1128" d="M109 807V1024H1061V807H109ZM109 418V637H1061V418H109Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1128" d="M109 442L752 723L109 1040V1280L1061 784V641L109 203V442Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="940" d="M260 485L274 563Q293 666 347 740T520 895Q644 979 677 1022T711 1118Q711 1237 578 1237Q528 1237 472 1221T270 1137L178 1358Q408 1483 623 1483Q800 1483 903 1396T1006 1151Q1006 1068 978
+1002T895 879T705 731Q641 688 609 658T556 594T518 485H260ZM166 115Q166 206 221 259T371 313Q439 313 479 275T520 168Q520 81 465 27T322 -27Q248 -27 207 11T166 115Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1753" d="M1733 840Q1733 667 1669 519T1492 288T1237 205Q1149 205 1093 243T1020 352H1014Q964 275 901 240T754 205Q627 205 556 284T485 514Q485 661 552 790T740 995T1008 1071Q1193 1071 1335 1016L1229
+596Q1218 552 1210 520T1202 455Q1202 387 1260 387Q1326 387 1384 451T1476 622T1511 836Q1511 1049 1388 1161T1028 1274Q825 1274 662 1180T407 914T315 522Q315 279 449 142T825 4Q942 4 1044 24T1266 90V-96Q1036 -186 801 -186Q584 -186 423 -101T177 141T92
+500Q92 779 212 997T555 1338T1053 1462Q1371 1462 1552 1299T1733 840ZM995 889Q913 889 850 838T750 701T713 526Q713 461 737 424T807 387Q948 387 1020 657L1077 879Q1041 889 995 889Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1286" d="M842 348H369L197 0H-123L643 1468H1016L1163 0H866L842 348ZM827 608L801 958Q791 1089 791 1211V1247Q747 1127 682 993L494 608H827Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1270" d="M788 1462Q1017 1462 1134 1381T1251 1137Q1251 987 1168 890T932 760V754Q1032 728 1091 658T1151 477Q1151 248 998 124T575 0H53L362 1462H788ZM545 883H694Q815 883 875 931T936 1071Q936 1208 766
+1208H614L545 883ZM412 256H592Q709 256 775 314T842 475Q842 637 659 637H494L412 256Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1253" d="M905 1227Q773 1227 668 1146T498 908T434 569Q434 402 502 321T721 240Q867 240 1059 317V57Q860 -20 659 -20Q405 -20 264 129T123 553Q123 815 227 1035T505 1370T905 1485Q1030 1485 1127 1463T1335
+1380L1217 1130Q1111 1189 1042 1208T905 1227Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1386" d="M1323 909Q1323 629 1225 423T942 108T504 0H53L362 1462H758Q1028 1462 1175 1319T1323 909ZM518 256Q666 256 776 332T948 555T1010 893Q1010 1047 938 1127T729 1208H614L412 256H518Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1110" d="M870 0H53L362 1462H1180L1126 1208H614L547 887H1024L969 633H492L412 256H924L870 0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1087" d="M358 0H53L362 1462H1176L1122 1208H614L535 831H1008L952 578H479L358 0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1413" d="M754 821H1317L1155 59Q1021 13 907 -3T664 -20Q405 -20 264 127T123 549Q123 817 230 1033T531 1367T979 1485Q1197 1485 1389 1386L1274 1135Q1200 1175 1126 1199T965 1223Q812 1223 692 1140T503
+904T434 573Q434 401 506 321T729 240Q805 240 899 264L965 563H698L754 821Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1434" d="M1135 0H829L963 631H492L358 0H53L362 1462H668L547 889H1018L1139 1462H1444L1135 0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="659" d="M53 0L365 1462H670L358 0H53Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="678" d="M-135 -430Q-229 -430 -322 -403V-150Q-234 -170 -158 -170Q-59 -170 2 -110T92 82L385 1462H690L387 39Q335 -206 212 -318T-135 -430Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1255" d="M1141 0H803L592 592L467 522L358 0H53L362 1462H668L516 760L674 965L1083 1462H1444L850 762L1141 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1061" d="M53 0L362 1462H668L412 256H924L870 0H53Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1802" d="M838 369L1389 1462H1812L1503 0H1223L1368 692Q1421 939 1473 1133H1468L899 0H618L557 1133H553Q542 1045 515 902T328 0H53L362 1462H766L834 369H838Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1546" d="M1247 0H905L549 1106H543L539 1074Q507 858 473 688L328 0H53L362 1462H719L1059 385H1063Q1075 461 1102 602T1282 1462H1556L1247 0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1495" d="M1432 938Q1432 655 1333 432T1062 94T666 -20Q410 -20 267 127T123 537Q123 802 222 1024T495 1366T897 1485Q1152 1485 1292 1341T1432 938ZM872 1227Q751 1227 650 1136T492 884T434 537Q434 390 500
+315T688 240Q809 240 908 327T1064 573T1120 930Q1120 1072 1055 1149T872 1227Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1188" d="M522 774H578Q720 774 801 843T883 1028Q883 1208 688 1208H614L522 774ZM1190 1036Q1190 795 1021 658T553 520H467L358 0H53L362 1462H700Q942 1462 1066 1356T1190 1036Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1495" d="M1432 938Q1432 622 1310 383T975 45L1229 -348H870L692 -20H666Q410 -20 267 127T123 537Q123 802 222 1024T495 1366T897 1485Q1152 1485 1292 1341T1432 938ZM872 1227Q751 1227 650 1136T492 884T434
+537Q434 390 500 315T688 240Q809 240 908 327T1064 573T1120 930Q1120 1072 1055 1149T872 1227Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1247" d="M530 813H608Q739 813 812 870T885 1044Q885 1126 838 1167T688 1208H614L530 813ZM477 561L358 0H53L362 1462H721Q958 1462 1077 1360T1196 1061Q1196 903 1113 790T874 621L1135 0H803L596 561H477Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1085" d="M946 432Q946 223 798 102T397 -20Q176 -20 41 70V344Q234 236 399 236Q511 236 574 278T637 395Q637 438 624 470T585 531T461 633Q323 732 267 829T211 1038Q211 1167 273 1268T449 1426T713 1483Q930
+1483 1110 1384L1001 1151Q845 1225 713 1225Q630 1225 577 1180T524 1061Q524 1000 557 955T705 834Q826 754 886 658T946 432Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1087" d="M571 0H266L520 1204H168L223 1462H1233L1178 1204H825L571 0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1415" d="M1434 1462L1233 516Q1176 250 1015 115T596 -20Q384 -20 263 93T141 401Q141 473 156 539L352 1462H657L463 543Q446 469 446 418Q446 240 635 240Q758 240 830 316T934 545L1128 1462H1434Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1208" d="M535 299Q613 520 645 582L1077 1462H1393L645 0H311L184 1462H479L530 582Q534 537 534 449Q532 346 528 299H535Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1831" d="M1006 1018Q960 872 891 719L567 0H229L184 1462H471L477 664Q477 612 473 491T463 317H469Q491 381 536 497T596 643L965 1462H1235L1256 589Q1256 443 1247 317H1253Q1296 446 1384 666L1714 1462H2023L1376
+0H1030L1008 721L1006 860Q1006 948 1010 1018H1006Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1241" d="M1124 0H793L621 543L225 0H-117L459 764L221 1462H541L694 944L1057 1462H1401L856 737L1124 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1155" d="M627 870L1001 1462H1343L725 559L606 0H303L422 559L186 1462H498L627 870Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1098" d="M920 0H-61L-23 201L754 1206H211L264 1462H1200L1159 1260L377 256H973L920 0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="678" d="M436 -324H-37L344 1462H817L772 1251H557L266 -113H481L436 -324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="862" d="M481 1462L705 0H438L221 1462H481Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="678" d="M-92 -113H121L412 1251H197L242 1462H715L334 -324H-137L-92 -113Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1081" d="M20 520L639 1470H786L1063 520H840L666 1153L264 520H20Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="819" d="M635 -324H-186L-156 -184H666L635 -324Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1135" d="M934 1241H750Q679 1310 612 1394T508 1548V1569H819Q855 1421 934 1266V1241Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1217" d="M406 -20Q259 -20 175 86T90 385Q90 583 162 762T351 1040T608 1139Q705 1139 775 1097T885 975H893L950 1118H1182L944 0H715L729 145H725Q591 -20 406 -20ZM524 223Q593 223 657 290T760 471T799 731Q799
+802 761 848T659 895Q591 895 530 823T432 633T395 399Q395 311 428 267T524 223Z" />
+<glyph unicode="b" glyph-name="b" d="M813 1139Q959 1139 1043 1031T1128 733Q1128 543 1060 366T873 84T610 -20Q416 -20 334 143H326L268 0H37L367 1556H668L606 1268Q565 1086 522 969H530Q608 1067 672 1103T813 1139ZM692 895Q624 895 562 830T460 650T420
+399Q420 319 457 271T559 223Q626 223 687 292T785 481T823 719Q823 895 692 895Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="989" d="M506 -20Q305 -20 198 87T90 391Q90 603 164 776T374 1044T682 1139Q864 1139 1010 1067L918 838Q864 861 812 878T694 895Q609 895 541 831T434 656T395 416Q395 320 440 272T567 223Q643 223 708 246T842
+305V59Q690 -20 506 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1217" d="M406 -20Q259 -20 175 87T90 387Q90 583 161 761T350 1039T608 1139Q690 1139 749 1102T862 975H870L872 1003Q878 1113 897 1198L973 1556H1274L944 0H715L729 145H725Q654 58 577 19T406 -20ZM532 223Q598
+223 660 291T761 474T799 719Q799 799 762 847T659 895Q591 895 530 823T432 633T395 399Q395 223 532 223Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1141" d="M696 922Q608 922 530 842T428 647H473Q628 647 714 695T801 827Q801 922 696 922ZM532 -20Q322 -20 206 93T90 412Q90 619 172 789T396 1049T715 1139Q892 1139 991 1058T1090 834Q1090 647 923 546T446
+444H395L393 423V403Q393 312 444 260T592 207Q679 207 750 226T922 293V66Q750 -20 532 -20Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="764" d="M-45 -492Q-149 -492 -219 -467V-225Q-158 -246 -104 -246Q-43 -246 3 -206T68 -76L272 889H109L139 1034L322 1118L340 1202Q381 1392 478 1479T752 1567Q883 1567 987 1518L907 1294Q838 1325 774 1325Q717
+1325 682 1285T635 1180L623 1118H842L793 889H573L358 -121Q281 -492 -45 -492Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1108" d="M1186 1116L1151 950L977 909Q993 857 993 791Q993 596 872 483T543 369Q484 369 444 379Q360 352 360 301Q360 267 390 252T479 229L616 211Q779 190 853 127T928 -57Q928 -268 772 -380T326 -492Q118
+-492 2 -417T-115 -209Q-115 -107 -47 -34T168 88Q94 135 94 221Q94 292 138 343T285 442Q220 491 189 554T158 707Q158 906 283 1022T625 1139Q708 1139 791 1116H1186ZM365 -6Q259 -20 205 -63T150 -172Q150 -287 344 -287Q495 -287 572 -242T649 -115Q649 -76
+617 -55T479 -20L365 -6ZM614 948Q537 948 490 872T442 680Q442 561 545 561Q620 561 666 637T713 831Q713 948 614 948Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1237" d="M977 0H676L813 653Q829 721 829 772Q829 895 721 895Q629 895 554 781T436 463L338 0H37L367 1556H668Q629 1375 608 1278T522 969H530Q592 1046 668 1092T844 1139Q982 1139 1057 1056T1133 817Q1133
+744 1110 637L977 0Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="608" d="M322 1380Q322 1467 369 1511T504 1556Q577 1556 615 1525T653 1436Q653 1356 609 1307T473 1257Q322 1257 322 1380ZM338 0H37L274 1118H575L338 0Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="608" d="M-90 -492Q-194 -492 -264 -467V-225Q-203 -246 -150 -246Q-13 -246 23 -76L276 1118H578L313 -121Q236 -492 -90 -492ZM324 1380Q324 1467 371 1511T506 1556Q579 1556 617 1525T655 1436Q655 1356 611
+1307T475 1257Q324 1257 324 1380Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1163" d="M920 1118H1264L766 614L1051 0H715L532 420L412 348L338 0H37L367 1556H668L520 862Q512 821 491 745L463 643H467L920 1118Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="608" d="M338 0H37L367 1556H668L338 0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1853" d="M844 1139Q1063 1139 1106 911H1112Q1180 1021 1272 1080T1470 1139Q1606 1139 1677 1054T1749 817Q1749 741 1726 637L1593 0H1292L1430 653Q1446 721 1446 772Q1446 895 1348 895Q1256 895 1182 783T1063
+465L967 0H666L803 653Q819 721 819 772Q819 895 721 895Q629 895 554 781T436 463L338 0H37L274 1118H504L483 911H489Q635 1139 844 1139Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1237" d="M977 0H676L813 653Q829 721 829 772Q829 895 721 895Q629 895 554 781T436 463L338 0H37L274 1118H504L483 911H489Q635 1139 844 1139Q982 1139 1057 1056T1133 817Q1133 744 1110 637L977 0Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1198" d="M805 696Q805 893 662 893Q587 893 528 832T431 653T393 410Q393 225 543 225Q618 225 678 286T771 457T805 696ZM1108 696Q1108 485 1038 322T834 70T518 -20Q323 -20 207 97T90 410Q90 623 161 789T368
+1047T684 1139Q880 1139 994 1021T1108 696Z" />
+<glyph unicode="p" glyph-name="p" d="M813 1139Q959 1139 1043 1032T1128 731Q1128 540 1060 364T872 84T610 -20Q527 -20 467 17T356 143H348Q336 -16 305 -152L233 -492H-68L274 1118H504L487 948H496Q634 1139 813 1139ZM692 895Q624 895 561 828T459 648T420
+399Q420 319 457 271T559 223Q626 223 687 292T785 481T823 719Q823 895 692 895Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1217" d="M391 -20Q303 -20 235 27T129 166T90 385Q90 583 162 762T351 1040T608 1139Q694 1139 760 1102T885 975H893L950 1118H1182L840 -492H539Q586 -274 612 -155T696 150H688Q616 56 545 18T391 -20ZM535
+223Q599 223 662 293T762 474T799 719Q799 799 762 847T659 895Q591 895 530 823T432 633T395 399Q395 311 431 267T535 223Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="862" d="M842 1139Q901 1139 938 1128L872 838Q827 854 772 854Q656 854 569 763T444 500L338 0H37L274 1118H504L483 911H489Q636 1139 842 1139Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="969" d="M829 369Q829 181 705 81T358 -20Q251 -20 172 -5T23 45V293Q180 203 342 203Q422 203 473 235T524 324Q524 367 487 401T356 487Q235 555 187 622T139 782Q139 952 249 1045T565 1139Q766 1139 928 1044L829
+829Q689 913 571 913Q514 913 479 888T444 819Q444 780 476 751T596 676Q719 613 774 539T829 369Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="840" d="M514 223Q579 223 676 258V33Q565 -20 410 -20Q260 -20 190 43T119 238Q119 288 131 350L246 889H94L123 1036L319 1120L451 1356H645L596 1118H879L829 889H547L432 350Q426 320 426 297Q426 223 514 223Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1237" d="M262 1118H563L426 465Q410 397 410 346Q410 223 518 223Q610 223 685 337T803 655L901 1118H1202L965 0H735L756 207H750Q605 -20 395 -20Q257 -20 184 62T111 301Q111 394 135 514L262 1118Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="1049" d="M455 301Q510 454 547 524L844 1118H1167L563 0H240L102 1118H397L442 532Q449 399 449 301H455Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1614" d="M856 860Q794 682 733 541L500 0H176L125 1118H406L410 623L406 456L399 285H403Q409 305 417 326T468 463T514 582L745 1118H1073V582Q1073 440 1063 285H1069L1097 365Q1170 573 1192 623L1411 1118H1718L1188
+0H858L852 520Q852 675 862 860H856Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1087" d="M379 573L154 1118H475L590 784L834 1118H1188L721 557L965 0H639L514 342L250 0H-100L379 573Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1063" d="M102 1118H397L453 600Q467 478 467 307H473Q493 358 517 426T582 580L842 1118H1169L489 -160Q312 -492 6 -492Q-84 -492 -141 -473V-233Q-73 -246 -25 -246Q59 -246 122 -198T240 -49L266 0L102 1118Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="932" d="M748 0H-47L-12 180L563 885H166L217 1118H967L924 918L358 233H797L748 0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="727" d="M201 319Q201 459 -8 459L37 688Q159 688 229 729T322 868L383 1153Q421 1323 514 1392T784 1462H868L819 1237Q729 1235 689 1203T633 1096L567 799Q522 592 291 563V555Q376 529 417 473T459
+338Q459 294 444 225L408 47Q401 19 401 -4Q401 -58 434 -78T526 -98V-324H473Q306 -324 220 -261T133 -76Q133 -19 147 49L186 233Q201 302 201 319Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M455 1550H674V-465H455V1550Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="727" d="M256 1462Q596 1462 596 1214Q596 1158 582 1090L543 905Q528 836 528 819Q528 680 737 680L692 451Q570 451 500 409T408 270L346 -14Q309 -184 216 -254T-55 -324H-100V-98Q-7 -95 37 -63T96
+43L162 340Q187 451 257 506T438 575V584Q270 635 270 801Q270 844 285 913L322 1092Q328 1122 328 1143Q328 1197 292 1217T182 1237L223 1462H256Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1128" d="M342 672Q288 672 226 639T109 551V782Q210 891 365 891Q429 891 482 877T621 827Q685 800 732 786T827 772Q878 772 939 802T1061 893V662Q958 553 805 553Q746 553 696 564T549 616Q460 654
+422 663T342 672Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="586" d="M182 606H424L266 -371H-74L182 606ZM549 977Q549 885 494 832T344 778Q276 778 236 816T195 924Q195 1009 249 1063T393 1118Q466 1118 507 1081T549 977Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1128" d="M575 -20H387L436 190Q302 226 233 326T164 584Q164 777 226 939T404 1201T672 1325L705 1483H893L858 1325Q976 1311 1083 1260L991 1030Q938 1053 886 1070T768 1087Q635 1087 552 944T469
+608Q469 512 514 464T641 416Q716 416 781 439T915 498V252Q779 181 616 172L575 -20Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1128" d="M872 1485Q1067 1485 1241 1399L1128 1167Q987 1235 891 1235Q816 1235 768 1196T700 1063L653 834H952L907 614H608L590 530Q548 335 381 260H1036L981 0H-12L37 246Q233 294 281 510L303
+614H111L156 834H348L397 1081Q438 1278 559 1381T872 1485Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1128" d="M190 723Q190 825 244 920L115 1047L262 1194L389 1067Q480 1120 586 1120Q691 1120 782 1065L909 1194L1059 1051L930 922Q983 833 983 723Q983 616 930 524L1055 399L909 254L782 379Q687
+328 586 328Q471 328 387 379L262 256L117 401L244 526Q190 619 190 723ZM397 723Q397 646 451 591T586 535Q667 535 722 590T778 723Q778 803 722 858T586 913Q508 913 453 857T397 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1128" d="M608 872L979 1462H1290L784 715H987L948 537H696L668 399H920L883 221H631L584 0H293L340 221H88L125 399H377L406 537H154L193 715H389L197 1462H494L608 872Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M455 1550H674V735H455V1550ZM455 350H674V-465H455V350Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="995" d="M150 760Q150 849 197 923T352 1065Q310 1099 282 1149T254 1257Q254 1406 371 1491T684 1577Q856 1577 1028 1489L946 1296Q799 1380 664 1380Q520 1380 520 1274Q520 1231 560 1198T688 1126Q930
+1020 930 823Q930 635 737 520Q775 485 801 435T827 326Q827 165 701 73T356 -20Q152 -20 20 55V279Q192 174 365 174Q464 174 509 209T555 301Q555 340 522 373T395 453Q278 510 214 584T150 760ZM506 967Q455 942 424 897T393 797Q393 743 436 701T580 612Q629
+643 655 690T682 786Q682 895 506 967Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1135" d="M397 1382Q397 1460 439 1500T559 1540Q692 1540 692 1432Q692 1359 653 1316T532 1272Q397 1272 397 1382ZM799 1382Q799 1460 841 1500T961 1540Q1026 1540 1060 1512T1094 1432Q1094 1359
+1055 1316T934 1272Q799 1272 799 1382Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M932 1010Q821 1010 769 937T717 723Q717 589 772 520T932 451Q975 451 1040 466T1165 510V319Q1034 262 903 262Q707 262 596 384T485 721Q485 946 602 1072T928 1198Q1070 1198 1212 1126L1137
+952Q1023 1010 932 1010ZM125 731Q125 931 225 1106T500 1382T877 1483Q1076 1483 1250 1384T1526 1109T1628 731Q1628 532 1530 358T1257 82T877 -20Q670 -20 495 83T223 360T125 731ZM266 731Q266 567 347 426T571 203T877 121Q1044 121 1185 204T1406 427T1487
+731Q1487 894 1407 1034T1185 1258T877 1341Q713 1341 571 1259T347 1035T266 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="772" d="M369 752Q266 752 209 822T152 1020Q152 1137 198 1248T321 1419T498 1479Q618 1479 678 1376H684L723 1466H877L719 764H565L573 856H571Q491 752 369 752ZM442 903Q487 903 526 944T591
+1064T618 1219Q618 1325 530 1325Q457 1325 407 1229T356 1014Q356 903 442 903Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1151" d="M72 569L473 1032L664 877L385 543L520 193L274 90L72 551V569ZM559 569L961 1032L1151 877L872 543L1008 193L762 90L559 551V569Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1128" d="M1061 248H842V612H109V831H1061V248Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="659" d="M41 424L94 674H618L565 424H41Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M1237 899Q1237 813 1193 750T1063 653L1260 293H1006L868 590H801V293H571V1167H879Q1052 1167 1144 1100T1237 899ZM801 758H852Q924 758 965 789T1006 881Q1006 940 971 969T854 999H801V758ZM125
+731Q125 931 225 1106T500 1382T877 1483Q1076 1483 1250 1384T1526 1109T1628 731Q1628 532 1530 358T1257 82T877 -20Q670 -20 495 83T223 360T125 731ZM266 731Q266 567 347 426T571 203T877 121Q1044 121 1185 204T1406 427T1487 731Q1487 894 1407 1034T1185
+1258T877 1341Q713 1341 571 1259T347 1035T266 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6L39 1757H1075L1030 1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M164 1137Q164 1230 210 1310T338 1437T510 1483Q603 1483 683 1436T810 1309T856 1137Q856 1044 810 964T684 839T510 793Q417 793 337 838T211 963T164 1137ZM354 1137Q354 1074 399 1029T510
+983Q576 983 621 1029T666 1137Q666 1200 621 1247T510 1294Q445 1294 400 1247T354 1137Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1128" d="M475 674H109V893H475V1262H694V893H1061V674H694V309H475V674ZM109 0V219H1061V0H109Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="776" d="M707 586H59L94 752L367 971Q478 1062 508 1093T552 1152T567 1208Q567 1250 542 1270T481 1290Q395 1290 293 1208L193 1366Q267 1423 349 1453T541 1483Q664 1483 737 1420T811 1260Q811
+1190 789 1137T719 1034T530 881L401 786H748L707 586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="776" d="M813 1270Q813 1183 762 1125T596 1036V1032Q750 999 750 856Q750 725 643 647T358 569Q283 569 213 584T92 625V817Q217 745 346 745Q422 745 471 775T520 864Q520 901 494 926T406
+952H279L313 1112H403Q487 1112 535 1140T584 1225Q584 1265 558 1285T487 1305Q401 1305 299 1239L217 1389Q359 1481 530 1481Q660 1481 736 1426T813 1270Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1135" d="M483 1266Q562 1354 705 1569H1040V1552Q994 1496 886 1400T692 1241H483V1266Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1249" d="M424 348Q424 288 455 256T535 223Q625 223 697 329T815 649L913 1118H1214L977 0H748L766 176H760Q643 -20 494 -20Q443 -20 405 -1T346 47H340Q332 -19 319 -92T236 -492H-68L274 1118H575L440
+473Q424 403 424 348Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1202 -260H1040V1356H874V-260H713V559Q651 541 567 541Q351 541 249 666T147 1042Q147 1298 254 1427T598 1556H1202V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="584" d="M131 695Q131 785 184 839T335 893Q403 893 444 855T485 748Q485 661 430 607T286 553Q213 553 172 590T131 695Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="420" d="M262 -250Q262 -366 179 -429T-55 -492Q-141 -492 -207 -469V-301Q-144 -324 -82 -324Q20 -324 20 -242Q20 -208 -11 -186T-121 -154L-25 0H160L121 -72Q262 -121 262 -250Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="776" d="M528 1462H735L549 586H303L387 983Q411 1092 442 1190Q426 1175 362 1130L231 1049L129 1214L528 1462Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="754" d="M809 1194Q809 1066 761 962T628 805T432 752Q298 752 230 827T162 1038Q162 1235 266 1357T543 1479Q672 1479 740 1406T809 1194ZM522 1315Q458 1315 415 1226T371 1026Q371 915 451
+915Q514 915 556 1000T598 1208Q598 1315 522 1315Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1151" d="M1079 535L678 72L487 227L766 561L631 911L877 1014L1079 553V535ZM592 535L190 72L0 227L279 561L143 911L389 1014L592 553V535Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1804" d="M1500 1462L416 0H177L1264 1462H1500ZM752 1462H959L773 586H527L611 983Q635 1092 666 1190Q650 1175 586 1130L455 1049L353 1214L752 1462ZM1573 152H1454L1422 1H1184L1217 152H844L875
+326L1350 883H1610L1489 320H1608L1573 152ZM1252 320L1310 551L1332 625Q1319 605 1289 567T1078 320H1252Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1804" d="M1588 1H940L975 167L1248 386Q1359 477 1389 508T1433 567T1448 623Q1448 665 1423 685T1362 705Q1276 705 1174 623L1074 781Q1148 838 1230 868T1422 898Q1545 898 1618 835T1692 675Q1692
+605 1670 552T1600 449T1411 296L1282 201H1629L1588 1ZM752 1462H959L773 586H527L611 983Q635 1092 666 1190Q650 1175 586 1130L455 1049L353 1214L752 1462ZM1500 1462L416 0H177L1264 1462H1500Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1804" d="M1633 1462L549 0H310L1397 1462H1633ZM1634 152H1515L1483 1H1245L1278 152H905L936 326L1411 883H1671L1550 320H1669L1634 152ZM1313 320L1371 551L1393 625Q1380 605 1350 567T1139
+320H1313ZM854 1270Q854 1183 803 1125T637 1036V1032Q791 999 791 856Q791 725 684 647T399 569Q324 569 254 584T133 625V817Q258 745 387 745Q463 745 512 775T561 864Q561 901 535 926T447 952H320L354 1112H444Q528 1112 576 1140T625 1225Q625 1265 599 1285T528
+1305Q442 1305 340 1239L258 1389Q400 1481 571 1481Q701 1481 777 1426T854 1270Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="940" d="M678 606L664 528Q645 423 588 348T418 197Q296 114 262 71T227 -27Q227 -145 360 -145Q410 -145 466 -129T668 -45L760 -266Q539 -391 315 -391Q138 -391 35 -304T-68 -59Q-68 23 -40
+89T44 213T233 360Q326 422 361 466T412 573L420 606H678ZM772 977Q772 885 717 832T567 778Q499 778 459 816T418 924Q418 1010 472 1064T616 1118Q689 1118 730 1081T772 977Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1286" d="M842 348H369L197 0H-123L643 1468H1016L1163 0H866L842 348ZM827 608L801 958Q791 1089 791 1211V1247Q747 1127 682 993L494 608H827ZM965 1579H781Q710 1648 643 1732T539 1886V1907H850Q886
+1759 965 1604V1579Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1286" d="M842 348H369L197 0H-123L643 1468H1016L1163 0H866L842 348ZM827 608L801 958Q791 1089 791 1211V1247Q747 1127 682 993L494 608H827ZM735 1604Q814 1692 957 1907H1292V1890Q1246 1834 1138
+1738T944 1579H735V1604Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1286" d="M842 348H369L197 0H-123L643 1468H1016L1163 0H866L842 348ZM827 608L801 958Q791 1089 791 1211V1247Q747 1127 682 993L494 608H827ZM1235 1579H1037Q974 1632 875 1747Q770 1659 643
+1579H426V1604Q489 1661 579 1751T721 1907H1059Q1081 1853 1133 1765T1235 1604V1579Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1286" d="M842 348H369L197 0H-123L643 1468H1016L1163 0H866L842 348ZM827 608L801 958Q791 1089 791 1211V1247Q747 1127 682 993L494 608H827ZM999 1579Q950 1579 913 1595T843 1631T782 1667T719
+1684Q688 1684 664 1656T625 1577H448Q507 1886 729 1886Q778 1886 816 1870T888 1834T950 1798T1010 1782Q1044 1782 1068 1807T1114 1888H1286Q1220 1579 999 1579Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1286" d="M842 348H369L197 0H-123L643 1468H1016L1163 0H866L842 348ZM827 608L801 958Q791 1089 791 1211V1247Q747 1127 682 993L494 608H827ZM516 1720Q516 1798 558 1838T678 1878Q811 1878
+811 1770Q811 1697 772 1654T651 1610Q516 1610 516 1720ZM918 1720Q918 1798 960 1838T1080 1878Q1145 1878 1179 1850T1213 1770Q1213 1697 1174 1654T1053 1610Q918 1610 918 1720Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1286" d="M842 348H369L197 0H-123L643 1468H1016L1163 0H866L842 348ZM827 608L801 958Q791 1089 791 1211V1247Q747 1127 682 993L494 608H827ZM1087 1567Q1087 1460 1017 1394T833 1327Q723 1327 654
+1390T585 1565Q585 1674 653 1738T833 1802Q943 1802 1015 1737T1087 1567ZM930 1565Q930 1610 903 1635T833 1661Q791 1661 764 1636T737 1565Q737 1520 761 1494T833 1468Q875 1468 902 1494T930 1565Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1833" d="M1593 0H776L850 348H424L205 0H-123L799 1462H1903L1849 1208H1337L1270 887H1747L1692 633H1214L1135 256H1647L1593 0ZM905 608L1032 1208H952L588 608H905Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1253" d="M905 1227Q773 1227 668 1146T498 908T434 569Q434 402 502 321T721 240Q867 240 1059 317V57Q860 -20 659 -20Q405 -20 264 129T123 553Q123 815 227 1035T505 1370T905 1485Q1030 1485
+1127 1463T1335 1380L1217 1130Q1111 1189 1042 1208T905 1227ZM825 -250Q825 -366 742 -429T508 -492Q422 -492 356 -469V-301Q419 -324 481 -324Q583 -324 583 -242Q583 -208 552 -186T442 -154L538 0H723L684 -72Q825 -121 825 -250Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1110" d="M870 0H53L362 1462H1180L1126 1208H614L547 887H1024L969 633H492L412 256H924L870 0ZM906 1579H722Q651 1648 584 1732T480 1886V1907H791Q827 1759 906 1604V1579Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1110" d="M870 0H53L362 1462H1180L1126 1208H614L547 887H1024L969 633H492L412 256H924L870 0ZM608 1604Q687 1692 830 1907H1165V1890Q1119 1834 1011 1738T817 1579H608V1604Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1110" d="M870 0H53L362 1462H1180L1126 1208H614L547 887H1024L969 633H492L412 256H924L870 0ZM1177 1579H979Q916 1632 817 1747Q712 1659 585 1579H368V1604Q431 1661 521 1751T663 1907H1001Q1023
+1853 1075 1765T1177 1604V1579Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1110" d="M870 0H53L362 1462H1180L1126 1208H614L547 887H1024L969 633H492L412 256H924L870 0ZM438 1720Q438 1798 480 1838T600 1878Q733 1878 733 1770Q733 1697 694 1654T573 1610Q438 1610
+438 1720ZM840 1720Q840 1798 882 1838T1002 1878Q1067 1878 1101 1850T1135 1770Q1135 1697 1096 1654T975 1610Q840 1610 840 1720Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="659" d="M53 0L365 1462H670L358 0H53ZM667 1579H483Q412 1648 345 1732T241 1886V1907H552Q588 1759 667 1604V1579Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="659" d="M53 0L365 1462H670L358 0H53ZM414 1604Q493 1692 636 1907H971V1890Q925 1834 817 1738T623 1579H414V1604Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="659" d="M53 0L365 1462H670L358 0H53ZM937 1579H739Q676 1632 577 1747Q472 1659 345 1579H128V1604Q191 1661 281 1751T423 1907H761Q783 1853 835 1765T937 1604V1579Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="659" d="M53 0L365 1462H670L358 0H53ZM222 1720Q222 1798 264 1838T384 1878Q517 1878 517 1770Q517 1697 478 1654T357 1610Q222 1610 222 1720ZM624 1720Q624 1798 666 1838T786 1878Q851 1878
+885 1850T919 1770Q919 1697 880 1654T759 1610Q624 1610 624 1720Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1386" d="M1323 909Q1323 629 1225 423T942 108T504 0H53L178 596H37L92 850H231L362 1462H758Q1028 1462 1175 1319T1323 909ZM518 256Q666 256 776 332T948 555T1010 893Q1010 1047 938 1127T729 1208H614L539
+850H776L721 596H483L412 256H518Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1546" d="M1247 0H905L549 1106H543L539 1074Q507 858 473 688L328 0H53L362 1462H719L1059 385H1063Q1075 461 1102 602T1282 1462H1556L1247 0ZM1114 1579Q1065 1579 1028 1595T958 1631T897 1667T834
+1684Q803 1684 779 1656T740 1577H563Q622 1886 844 1886Q893 1886 931 1870T1003 1834T1065 1798T1125 1782Q1159 1782 1183 1807T1229 1888H1401Q1335 1579 1114 1579Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1495" d="M1432 938Q1432 655 1333 432T1062 94T666 -20Q410 -20 267 127T123 537Q123 802 222 1024T495 1366T897 1485Q1152 1485 1292 1341T1432 938ZM872 1227Q751 1227 650 1136T492 884T434 537Q434
+390 500 315T688 240Q809 240 908 327T1064 573T1120 930Q1120 1072 1055 1149T872 1227ZM1053 1579H869Q798 1648 731 1732T627 1886V1907H938Q974 1759 1053 1604V1579Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1495" d="M1432 938Q1432 655 1333 432T1062 94T666 -20Q410 -20 267 127T123 537Q123 802 222 1024T495 1366T897 1485Q1152 1485 1292 1341T1432 938ZM872 1227Q751 1227 650 1136T492 884T434 537Q434
+390 500 315T688 240Q809 240 908 327T1064 573T1120 930Q1120 1072 1055 1149T872 1227ZM753 1604Q832 1692 975 1907H1310V1890Q1264 1834 1156 1738T962 1579H753V1604Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1495" d="M1432 938Q1432 655 1333 432T1062 94T666 -20Q410 -20 267 127T123 537Q123 802 222 1024T495 1366T897 1485Q1152 1485 1292 1341T1432 938ZM872 1227Q751 1227 650 1136T492 884T434
+537Q434 390 500 315T688 240Q809 240 908 327T1064 573T1120 930Q1120 1072 1055 1149T872 1227ZM1308 1579H1110Q1047 1632 948 1747Q843 1659 716 1579H499V1604Q562 1661 652 1751T794 1907H1132Q1154 1853 1206 1765T1308 1604V1579Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1495" d="M1432 938Q1432 655 1333 432T1062 94T666 -20Q410 -20 267 127T123 537Q123 802 222 1024T495 1366T897 1485Q1152 1485 1292 1341T1432 938ZM872 1227Q751 1227 650 1136T492 884T434 537Q434
+390 500 315T688 240Q809 240 908 327T1064 573T1120 930Q1120 1072 1055 1149T872 1227ZM1071 1579Q1022 1579 985 1595T915 1631T854 1667T791 1684Q760 1684 736 1656T697 1577H520Q579 1886 801 1886Q850 1886 888 1870T960 1834T1022 1798T1082 1782Q1116
+1782 1140 1807T1186 1888H1358Q1292 1579 1071 1579Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1495" d="M1432 938Q1432 655 1333 432T1062 94T666 -20Q410 -20 267 127T123 537Q123 802 222 1024T495 1366T897 1485Q1152 1485 1292 1341T1432 938ZM872 1227Q751 1227 650 1136T492 884T434
+537Q434 390 500 315T688 240Q809 240 908 327T1064 573T1120 930Q1120 1072 1055 1149T872 1227ZM585 1720Q585 1798 627 1838T747 1878Q880 1878 880 1770Q880 1697 841 1654T720 1610Q585 1610 585 1720ZM987 1720Q987 1798 1029 1838T1149 1878Q1214 1878 1248
+1850T1282 1770Q1282 1697 1243 1654T1122 1610Q987 1610 987 1720Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1128" d="M428 723L129 1024L281 1178L582 879L887 1178L1040 1028L735 723L1036 420L887 268L582 569L281 270L131 422L428 723Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1495" d="M1432 938Q1432 655 1333 432T1062 94T666 -20Q486 -20 362 51L254 -86L100 29L221 180Q123 318 123 537Q123 802 222 1024T495 1366T897 1485Q1079 1485 1202 1409L1307 1540L1458 1423L1341
+1278Q1432 1144 1432 938ZM870 1233Q744 1233 641 1142T481 889T424 537Q424 505 432 436L1028 1190Q959 1233 870 1233ZM1133 930L1128 1010L539 270Q598 233 692 233Q816 233 918 322T1076 569T1133 930Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1415" d="M1434 1462L1233 516Q1176 250 1015 115T596 -20Q384 -20 263 93T141 401Q141 473 156 539L352 1462H657L463 543Q446 469 446 418Q446 240 635 240Q758 240 830 316T934 545L1128 1462H1434ZM1002
+1579H818Q747 1648 680 1732T576 1886V1907H887Q923 1759 1002 1604V1579Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1415" d="M1434 1462L1233 516Q1176 250 1015 115T596 -20Q384 -20 263 93T141 401Q141 473 156 539L352 1462H657L463 543Q446 469 446 418Q446 240 635 240Q758 240 830 316T934 545L1128 1462H1434ZM757
+1604Q836 1692 979 1907H1314V1890Q1268 1834 1160 1738T966 1579H757V1604Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1415" d="M1434 1462L1233 516Q1176 250 1015 115T596 -20Q384 -20 263 93T141 401Q141 473 156 539L352 1462H657L463 543Q446 469 446 418Q446 240 635 240Q758 240 830 316T934 545L1128 1462H1434ZM1284
+1579H1086Q1023 1632 924 1747Q819 1659 692 1579H475V1604Q538 1661 628 1751T770 1907H1108Q1130 1853 1182 1765T1284 1604V1579Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1415" d="M1434 1462L1233 516Q1176 250 1015 115T596 -20Q384 -20 263 93T141 401Q141 473 156 539L352 1462H657L463 543Q446 469 446 418Q446 240 635 240Q758 240 830 316T934 545L1128 1462H1434ZM565
+1720Q565 1798 607 1838T727 1878Q860 1878 860 1770Q860 1697 821 1654T700 1610Q565 1610 565 1720ZM967 1720Q967 1798 1009 1838T1129 1878Q1194 1878 1228 1850T1262 1770Q1262 1697 1223 1654T1102 1610Q967 1610 967 1720Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1155" d="M627 870L1001 1462H1343L725 559L606 0H303L422 559L186 1462H498L627 870ZM606 1604Q685 1692 828 1907H1163V1890Q1117 1834 1009 1738T815 1579H606V1604Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1188" d="M1143 807Q1143 564 973 429T506 293H420L358 0H53L362 1462H668L618 1233H653Q895 1233 1019 1127T1143 807ZM475 547H530Q669 547 752 613T836 799Q836 979 641 979H567L475 547Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1350" d="M846 1567Q1054 1567 1177 1477T1300 1237Q1300 1123 1251 1045T1073 893Q1000 851 977 825T954 770Q954 747 976 721T1055 651Q1162 568 1199 501T1237 350Q1237 180 1114 80T776 -20Q589
+-20 479 41V281Q607 203 737 203Q838 203 885 236T932 322Q932 362 906 397T797 494Q703 566 668 624T633 750Q633 834 678 895T840 1022Q906 1059 944 1098T983 1194Q983 1256 944 1292T819 1329Q723 1329 663 1278T578 1106L324 -113Q281 -311 177 -401T-100
+-492Q-190 -492 -260 -467V-225Q-199 -246 -145 -246Q-12 -246 25 -68L279 1139Q326 1363 461 1465T846 1567Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1217" d="M406 -20Q259 -20 175 86T90 385Q90 583 162 762T351 1040T608 1139Q705 1139 775 1097T885 975H893L950 1118H1182L944 0H715L729 145H725Q591 -20 406 -20ZM524 223Q593 223 657 290T760
+471T799 731Q799 802 761 848T659 895Q591 895 530 823T432 633T395 399Q395 311 428 267T524 223ZM1125 1241H941Q870 1310 803 1394T699 1548V1569H1010Q1046 1421 1125 1266V1241Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1217" d="M406 -20Q259 -20 175 86T90 385Q90 583 162 762T351 1040T608 1139Q705 1139 775 1097T885 975H893L950 1118H1182L944 0H715L729 145H725Q591 -20 406 -20ZM524 223Q593 223 657 290T760
+471T799 731Q799 802 761 848T659 895Q591 895 530 823T432 633T395 399Q395 311 428 267T524 223ZM598 1266Q677 1354 820 1569H1155V1552Q1109 1496 1001 1400T807 1241H598V1266Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1217" d="M406 -20Q259 -20 175 86T90 385Q90 583 162 762T351 1040T608 1139Q705 1139 775 1097T885 975H893L950 1118H1182L944 0H715L729 145H725Q591 -20 406 -20ZM524 223Q593 223 657 290T760
+471T799 731Q799 802 761 848T659 895Q591 895 530 823T432 633T395 399Q395 311 428 267T524 223ZM1120 1496H922Q859 1549 760 1664Q655 1576 528 1496H311V1521Q374 1578 464 1668T606 1824H944Q966 1770 1018 1682T1120 1521V1496Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1217" d="M406 -20Q259 -20 175 86T90 385Q90 583 162 762T351 1040T608 1139Q705 1139 775 1097T885 975H893L950 1118H1182L944 0H715L729 145H725Q591 -20 406 -20ZM524 223Q593 223 657 290T760
+471T799 731Q799 802 761 848T659 895Q591 895 530 823T432 633T395 399Q395 311 428 267T524 223ZM884 1241Q835 1241 798 1257T728 1293T667 1329T604 1346Q573 1346 549 1318T510 1239H333Q392 1548 614 1548Q663 1548 701 1532T773 1496T835 1460T895 1444Q929
+1444 953 1469T999 1550H1171Q1105 1241 884 1241Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1217" d="M406 -20Q259 -20 175 86T90 385Q90 583 162 762T351 1040T608 1139Q705 1139 775 1097T885 975H893L950 1118H1182L944 0H715L729 145H725Q591 -20 406 -20ZM524 223Q593 223 657 290T760
+471T799 731Q799 802 761 848T659 895Q591 895 530 823T432 633T395 399Q395 311 428 267T524 223ZM397 1382Q397 1460 439 1500T559 1540Q692 1540 692 1432Q692 1359 653 1316T532 1272Q397 1272 397 1382ZM799 1382Q799 1460 841 1500T961 1540Q1026 1540 1060
+1512T1094 1432Q1094 1359 1055 1316T934 1272Q799 1272 799 1382Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1217" d="M406 -20Q259 -20 175 86T90 385Q90 583 162 762T351 1040T608 1139Q705 1139 775 1097T885 975H893L950 1118H1182L944 0H715L729 145H725Q591 -20 406 -20ZM524 223Q593 223 657 290T760 471T799
+731Q799 802 761 848T659 895Q591 895 530 823T432 633T395 399Q395 311 428 267T524 223ZM1279 1479Q1279 1372 1209 1306T1025 1239Q915 1239 846 1302T777 1477Q777 1586 845 1650T1025 1714Q1135 1714 1207 1649T1279 1479ZM1122 1477Q1122 1522 1095 1547T1025
+1573Q983 1573 956 1548T929 1477Q929 1432 953 1406T1025 1380Q1067 1380 1094 1406T1122 1477Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1786" d="M1206 -20Q1097 -20 1027 7T909 94L893 0H705L719 145H713Q642 57 567 19T399 -20Q253 -20 172 89T90 385Q90 585 158 760T343 1037T602 1139Q698 1139 762 1101T877 975H883L940 1118H1128L1110
+1028Q1154 1077 1230 1108T1399 1139Q1556 1139 1645 1056T1735 834Q1735 647 1568 546T1092 444H1040L1038 425V406Q1038 310 1093 259T1253 207Q1319 207 1405 230T1567 293V66Q1388 -20 1206 -20ZM518 223Q590 223 652 291T751 475T788 719Q788 799 755 847T653
+895Q585 895 525 826T430 641T395 399Q395 315 427 269T518 223ZM1341 922Q1253 922 1175 842T1073 647H1118Q1273 647 1359 695T1446 827Q1446 922 1341 922Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="989" d="M506 -20Q305 -20 198 87T90 391Q90 603 164 776T374 1044T682 1139Q864 1139 1010 1067L918 838Q864 861 812 878T694 895Q609 895 541 831T434 656T395 416Q395 320 440 272T567 223Q643
+223 708 246T842 305V59Q690 -20 506 -20ZM653 -250Q653 -366 570 -429T336 -492Q250 -492 184 -469V-301Q247 -324 309 -324Q411 -324 411 -242Q411 -208 380 -186T270 -154L366 0H551L512 -72Q653 -121 653 -250Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1141" d="M696 922Q608 922 530 842T428 647H473Q628 647 714 695T801 827Q801 922 696 922ZM532 -20Q322 -20 206 93T90 412Q90 619 172 789T396 1049T715 1139Q892 1139 991 1058T1090 834Q1090 647
+923 546T446 444H395L393 423V403Q393 312 444 260T592 207Q679 207 750 226T922 293V66Q750 -20 532 -20ZM1105 1241H921Q850 1310 783 1394T679 1548V1569H990Q1026 1421 1105 1266V1241Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1141" d="M696 922Q608 922 530 842T428 647H473Q628 647 714 695T801 827Q801 922 696 922ZM532 -20Q322 -20 206 93T90 412Q90 619 172 789T396 1049T715 1139Q892 1139 991 1058T1090 834Q1090 647
+923 546T446 444H395L393 423V403Q393 312 444 260T592 207Q679 207 750 226T922 293V66Q750 -20 532 -20ZM528 1266Q607 1354 750 1569H1085V1552Q1039 1496 931 1400T737 1241H528V1266Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1141" d="M696 922Q608 922 530 842T428 647H473Q628 647 714 695T801 827Q801 922 696 922ZM532 -20Q322 -20 206 93T90 412Q90 619 172 789T396 1049T715 1139Q892 1139 991 1058T1090 834Q1090
+647 923 546T446 444H395L393 423V403Q393 312 444 260T592 207Q679 207 750 226T922 293V66Q750 -20 532 -20ZM1357 1241H1159Q1096 1294 997 1409Q892 1321 765 1241H548V1266Q611 1323 701 1413T843 1569H1181Q1203 1515 1255 1427T1357 1266V1241Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1141" d="M696 922Q608 922 530 842T428 647H473Q628 647 714 695T801 827Q801 922 696 922ZM532 -20Q322 -20 206 93T90 412Q90 619 172 789T396 1049T715 1139Q892 1139 991 1058T1090 834Q1090
+647 923 546T446 444H395L393 423V403Q393 312 444 260T592 207Q679 207 750 226T922 293V66Q750 -20 532 -20ZM621 1382Q621 1460 663 1500T783 1540Q916 1540 916 1432Q916 1359 877 1316T756 1272Q621 1272 621 1382ZM1023 1382Q1023 1460 1065 1500T1185 1540Q1250
+1540 1284 1512T1318 1432Q1318 1359 1279 1316T1158 1272Q1023 1272 1023 1382Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="608" d="M338 0H37L274 1118H575L338 0ZM579 1241H395Q324 1310 257 1394T153 1548V1569H464Q500 1421 579 1266V1241Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="608" d="M338 0H37L274 1118H575L338 0ZM291 1266Q370 1354 513 1569H848V1552Q802 1496 694 1400T500 1241H291V1266Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="608" d="M338 0H37L274 1118H575L338 0ZM845 1241H647Q584 1294 485 1409Q380 1321 253 1241H36V1266Q99 1323 189 1413T331 1569H669Q691 1515 743 1427T845 1266V1241Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="608" d="M338 0H37L274 1118H575L338 0ZM126 1382Q126 1460 168 1500T288 1540Q421 1540 421 1432Q421 1359 382 1316T261 1272Q126 1272 126 1382ZM528 1382Q528 1460 570 1500T690 1540Q755 1540
+789 1512T823 1432Q823 1359 784 1316T663 1272Q528 1272 528 1382Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1182" d="M618 1309Q584 1343 494 1389L612 1575Q746 1514 844 1436L1081 1567L1157 1415L965 1309Q1046 1202 1078 1074T1110 795Q1110 546 1041 363T837 80T514 -20Q298 -20 185 90T72 406Q72 571 136
+707T317 919T582 995Q665 995 733 964T848 870H854Q834 1083 737 1180L506 1049L418 1196L618 1309ZM528 205Q594 205 650 260T739 409T772 602Q772 679 734 724T625 770Q552 770 495 717T407 574T375 377Q375 296 414 251T528 205Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1237" d="M977 0H676L813 653Q829 721 829 772Q829 895 721 895Q629 895 554 781T436 463L338 0H37L274 1118H504L483 911H489Q635 1139 844 1139Q982 1139 1057 1056T1133 817Q1133 744 1110 637L977
+0ZM909 1241Q860 1241 823 1257T753 1293T692 1329T629 1346Q598 1346 574 1318T535 1239H358Q417 1548 639 1548Q688 1548 726 1532T798 1496T860 1460T920 1444Q954 1444 978 1469T1024 1550H1196Q1130 1241 909 1241Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1198" d="M805 696Q805 893 662 893Q587 893 528 832T431 653T393 410Q393 225 543 225Q618 225 678 286T771 457T805 696ZM1108 696Q1108 485 1038 322T834 70T518 -20Q323 -20 207 97T90 410Q90 623
+161 789T368 1047T684 1139Q880 1139 994 1021T1108 696ZM1101 1241H917Q846 1310 779 1394T675 1548V1569H986Q1022 1421 1101 1266V1241Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1198" d="M805 696Q805 893 662 893Q587 893 528 832T431 653T393 410Q393 225 543 225Q618 225 678 286T771 457T805 696ZM1108 696Q1108 485 1038 322T834 70T518 -20Q323 -20 207 97T90 410Q90 623
+161 789T368 1047T684 1139Q880 1139 994 1021T1108 696ZM571 1266Q650 1354 793 1569H1128V1552Q1082 1496 974 1400T780 1241H571V1266Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1198" d="M805 696Q805 893 662 893Q587 893 528 832T431 653T393 410Q393 225 543 225Q618 225 678 286T771 457T805 696ZM1108 696Q1108 485 1038 322T834 70T518 -20Q323 -20 207 97T90 410Q90
+623 161 789T368 1047T684 1139Q880 1139 994 1021T1108 696ZM1365 1241H1167Q1104 1294 1005 1409Q900 1321 773 1241H556V1266Q619 1323 709 1413T851 1569H1189Q1211 1515 1263 1427T1365 1266V1241Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1198" d="M805 696Q805 893 662 893Q587 893 528 832T431 653T393 410Q393 225 543 225Q618 225 678 286T771 457T805 696ZM1108 696Q1108 485 1038 322T834 70T518 -20Q323 -20 207 97T90 410Q90 623
+161 789T368 1047T684 1139Q880 1139 994 1021T1108 696ZM1121 1241Q1072 1241 1035 1257T965 1293T904 1329T841 1346Q810 1346 786 1318T747 1239H570Q629 1548 851 1548Q900 1548 938 1532T1010 1496T1072 1460T1132 1444Q1166 1444 1190 1469T1236 1550H1408Q1342
+1241 1121 1241Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1198" d="M805 696Q805 893 662 893Q587 893 528 832T431 653T393 410Q393 225 543 225Q618 225 678 286T771 457T805 696ZM1108 696Q1108 485 1038 322T834 70T518 -20Q323 -20 207 97T90 410Q90
+623 161 789T368 1047T684 1139Q880 1139 994 1021T1108 696ZM642 1382Q642 1460 684 1500T804 1540Q937 1540 937 1432Q937 1359 898 1316T777 1272Q642 1272 642 1382ZM1044 1382Q1044 1460 1086 1500T1206 1540Q1271 1540 1305 1512T1339 1432Q1339 1359 1300
+1316T1179 1272Q1044 1272 1044 1382Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1128" d="M109 612V831H1061V612H109ZM444 373Q444 449 481 486T584 524Q650 524 686 485T723 373Q723 303 686 262T584 221Q519 221 482 260T444 373ZM444 1071Q444 1146 481 1184T584 1223Q651 1223
+687 1183T723 1071Q723 1001 686 961T584 920Q519 920 482 959T444 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1198" d="M1108 696Q1108 485 1038 322T834 70T518 -20Q395 -20 293 33L184 -102L43 6L162 154Q90 261 90 410Q90 623 161 789T368 1047T684 1139Q815 1139 911 1083L981 1171L1126 1061L1042 956Q1108
+849 1108 696ZM662 903Q581 903 518 841T420 671T385 438V426L750 879Q715 903 662 903ZM543 215Q657 215 736 348T815 666V682L457 238Q468 230 492 223T543 215Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1237" d="M262 1118H563L426 465Q410 397 410 346Q410 223 518 223Q610 223 685 337T803 655L901 1118H1202L965 0H735L756 207H750Q605 -20 395 -20Q257 -20 184 62T111 301Q111 394 135 514L262 1118ZM1101
+1241H917Q846 1310 779 1394T675 1548V1569H986Q1022 1421 1101 1266V1241Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1237" d="M262 1118H563L426 465Q410 397 410 346Q410 223 518 223Q610 223 685 337T803 655L901 1118H1202L965 0H735L756 207H750Q605 -20 395 -20Q257 -20 184 62T111 301Q111 394 135 514L262 1118ZM610
+1266Q689 1354 832 1569H1167V1552Q1121 1496 1013 1400T819 1241H610V1266Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1237" d="M262 1118H563L426 465Q410 397 410 346Q410 223 518 223Q610 223 685 337T803 655L901 1118H1202L965 0H735L756 207H750Q605 -20 395 -20Q257 -20 184 62T111 301Q111 394 135 514L262
+1118ZM1143 1241H945Q882 1294 783 1409Q678 1321 551 1241H334V1266Q397 1323 487 1413T629 1569H967Q989 1515 1041 1427T1143 1266V1241Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1237" d="M262 1118H563L426 465Q410 397 410 346Q410 223 518 223Q610 223 685 337T803 655L901 1118H1202L965 0H735L756 207H750Q605 -20 395 -20Q257 -20 184 62T111 301Q111 394 135 514L262
+1118ZM411 1382Q411 1460 453 1500T573 1540Q706 1540 706 1432Q706 1359 667 1316T546 1272Q411 1272 411 1382ZM813 1382Q813 1460 855 1500T975 1540Q1040 1540 1074 1512T1108 1432Q1108 1359 1069 1316T948 1272Q813 1272 813 1382Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1063" d="M102 1118H397L453 600Q467 478 467 307H473Q493 358 517 426T582 580L842 1118H1169L489 -160Q312 -492 6 -492Q-84 -492 -141 -473V-233Q-73 -246 -25 -246Q59 -246 122 -198T240 -49L266
+0L102 1118ZM497 1266Q576 1354 719 1569H1054V1552Q1008 1496 900 1400T706 1241H497V1266Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" d="M813 1139Q963 1139 1045 1033T1128 731Q1128 532 1059 350T877 74T627 -20Q449 -20 356 143H348Q336 -16 305 -152L233 -492H-68L367 1556H668L602 1249Q573 1118 522 969H530Q661 1139 813 1139ZM682 895Q611
+895 552 830T457 646T420 399Q420 319 453 271T559 223Q628 223 688 288T785 471T823 719Q823 807 786 851T682 895Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1063" d="M102 1118H397L453 600Q467 478 467 307H473Q493 358 517 426T582 580L842 1118H1169L489 -160Q312 -492 6 -492Q-84 -492 -141 -473V-233Q-73 -246 -25 -246Q59 -246 122 -198T240 -49L266
+0L102 1118ZM566 1382Q566 1460 608 1500T728 1540Q861 1540 861 1432Q861 1359 822 1316T701 1272Q566 1272 566 1382ZM968 1382Q968 1460 1010 1500T1130 1540Q1195 1540 1229 1512T1263 1432Q1263 1359 1224 1316T1103 1272Q968 1272 968 1382Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="983" d="M41 436L90 666H942L893 436H41Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="1966" d="M41 436L90 666H1925L1876 436H41Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="440" d="M123 961L115 983Q218 1210 377 1462H602Q511 1249 408 961H123Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="440" d="M586 1462L594 1440Q491 1213 332 961H106Q195 1167 301 1462H586Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="569" d="M377 238L385 215Q282 -12 123 -264H-102Q-14 -57 92 238H377Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="887" d="M569 961L561 983Q664 1210 823 1462H1049Q952 1235 854 961H569ZM123 961L115 983Q218 1210 377 1462H602Q511 1249 408 961H123Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="887" d="M586 1462L594 1440Q491 1213 332 961H106Q195 1167 301 1462H586ZM1032 1462L1040 1440Q937 1213 778 961H553Q576 1014 599 1072T748 1462H1032Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="1018" d="M377 238L385 215Q282 -12 123 -264H-102Q-14 -57 92 238H377ZM825 238L834 215Q734 -6 571 -264H346Q370 -207 395 -146T541 238H825Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="739" d="M104 686Q104 792 146 880T266 1016T449 1065Q569 1065 631 998T694 807Q694 630 603 530T354 430Q237 430 171 497T104 686Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="664" d="M72 569L473 1032L664 877L385 543L520 193L274 90L72 551V569Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="664" d="M592 535L190 72L0 227L279 561L143 911L389 1014L592 553V535Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.ttf b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.ttf
new file mode 100644
index 0000000..9bc8009
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.ttf differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.woff b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.woff
new file mode 100644
index 0000000..80fd8a9
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.woff differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.woff2 b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.woff2
new file mode 100644
index 0000000..cc8d731
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-BoldItalic-webfont.woff2 differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.eot b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.eot
new file mode 100644
index 0000000..ee4ba1e
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.eot differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.svg
new file mode 100644
index 0000000..4774d8c
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.svg
@@ -0,0 +1,19028 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1295" ><font-face
+    font-family="Open Sans"
+    units-per-em="2048"
+    panose-1="2 11 8 6 3 5 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="586" d="M416 485H172L121 1462H467L416 485ZM117 143Q117 227 162 270T293 313Q376 313 421 269T467 143Q467 64 421 19T293 -27Q209 -27 163 17T117 143Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="967" d="M412 1462L371 934H174L133 1462H412ZM834 1462L793 934H596L555 1462H834Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M999 844L952 612H1210V406H913L836 0H616L694 406H500L424 0H209L283 406H45V612H322L369 844H117V1053H406L483 1460H702L625 1053H823L901 1460H1116L1038 1053H1278V844H999ZM539 612H735L782
+844H586L539 612Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1169" d="M1092 457Q1092 298 977 202T655 86V-119H518V82Q274 87 90 168V432Q177 389 299 356T518 317V627L451 653Q253 731 171 822T88 1049Q88 1194 201 1287T518 1401V1554H655V1405Q884 1395 1069 1313L975
+1079Q819 1143 655 1157V862Q850 787 932 732T1053 611T1092 457ZM791 442Q791 484 757 513T655 573V324Q791 347 791 442ZM389 1049Q389 1005 419 977T518 918V1153Q389 1134 389 1049Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1845" d="M315 1024Q315 897 337 835T410 772Q506 772 506 1024Q506 1274 410 1274Q360 1274 338 1213T315 1024ZM758 1026Q758 796 669 681T408 565Q243 565 153 683T63 1026Q63 1483 408 1483Q577 1483
+667 1365T758 1026ZM1446 1462L635 0H395L1206 1462H1446ZM1339 440Q1339 313 1361 251T1434 188Q1530 188 1530 440Q1530 690 1434 690Q1384 690 1362 629T1339 440ZM1782 442Q1782 213 1693 98T1432 -18Q1267 -18 1177 100T1087 442Q1087 899 1432 899Q1601 899
+1691 781T1782 442Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1536" d="M1536 0H1159L1044 113Q853 -20 612 -20Q368 -20 225 92T82 395Q82 532 142 628T350 809Q275 895 241 973T207 1145Q207 1297 323 1390T635 1483Q821 1483 932 1397T1044 1165Q1044 1046
+975 948T752 760L1036 483Q1107 600 1159 784H1477Q1441 649 1378 521T1235 293L1536 0ZM403 424Q403 338 467 287T633 236Q759 236 860 297L528 627Q470 583 437 535T403 424ZM762 1133Q762 1186 726 1216T633 1247Q566 1247 528 1215T489 1124Q489 1036 584 930Q670
+978 716 1024T762 1133Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="545" d="M412 1462L371 934H174L133 1462H412Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="694" d="M82 561Q82 826 159 1057T383 1462H633Q492 1269 420 1038T348 563Q348 318 421 90T631 -324H383Q236 -154 159 73T82 561Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="694" d="M612 561Q612 298 535 71T311 -324H63Q198 -140 272 88T346 563Q346 807 274 1038T61 1462H311Q458 1287 535 1056T612 561Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1116" d="M688 1556L647 1188L1020 1292L1053 1040L713 1016L936 719L709 598L553 911L416 600L180 719L401 1016L63 1042L102 1292L467 1188L426 1556H688Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1169" d="M475 612H88V831H475V1221H694V831H1081V612H694V227H475V612Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="594" d="M459 215Q407 13 283 -264H63Q128 2 164 238H444L459 215Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="659" d="M61 424V674H598V424H61Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="584" d="M117 143Q117 227 162 270T293 313Q376 313 421 269T467 143Q467 64 421 19T293 -27Q209 -27 163 17T117 143Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="846" d="M836 1462L291 0H14L559 1462H836Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1169" d="M1096 731Q1096 348 971 164T584 -20Q331 -20 203 170T74 731Q74 1118 199 1301T584 1485Q837 1485 966 1293T1096 731ZM381 731Q381 462 427 346T584 229Q692 229 740 347T788 731Q788 1000 740 1117T584
+1235Q475 1235 428 1118T381 731Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1169" d="M846 0H537V846L540 985L545 1137Q468 1060 438 1036L270 901L121 1087L592 1462H846V0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1169" d="M1104 0H82V215L449 586Q612 753 662 817T734 937T756 1051Q756 1139 708 1182T578 1225Q493 1225 413 1186T246 1075L78 1274Q186 1366 257 1404T412 1462T600 1483Q737 1483 842 1433T1005 1293T1063
+1087Q1063 986 1028 898T918 716T655 451L467 274V260H1104V0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1169" d="M1047 1135Q1047 998 964 902T731 770V764Q908 742 999 657T1090 426Q1090 215 937 98T500 -20Q262 -20 78 59V322Q163 279 265 252T467 225Q620 225 693 277T766 444Q766 547 682 590T414 633H303V870H416Q586
+870 664 914T743 1067Q743 1233 535 1233Q463 1233 389 1209T223 1126L80 1339Q280 1483 557 1483Q784 1483 915 1391T1047 1135Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1169" d="M1137 303H961V0H659V303H35V518L676 1462H961V543H1137V303ZM659 543V791Q659 853 664 971T672 1108H664Q627 1026 575 948L307 543H659Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1169" d="M614 934Q826 934 951 815T1077 489Q1077 244 926 112T494 -20Q250 -20 100 59V326Q179 284 284 258T483 231Q766 231 766 463Q766 684 473 684Q420 684 356 674T252 651L129 717L184 1462H977V1200H455L428
+913L463 920Q524 934 614 934Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1169" d="M72 621Q72 1055 255 1267T805 1479Q930 1479 1001 1464V1217Q912 1237 825 1237Q666 1237 566 1189T415 1047T356 780H369Q468 950 686 950Q882 950 993 827T1104 487Q1104 253 972 117T606 -20Q444
+-20 324 55T138 274T72 621ZM600 227Q699 227 752 293T805 483Q805 590 756 651T606 713Q512 713 446 652T379 510Q379 391 441 309T600 227Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1169" d="M227 0L776 1200H55V1460H1104V1266L551 0H227Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1169" d="M586 1481Q796 1481 924 1386T1053 1128Q1053 1016 991 929T791 772Q955 684 1026 589T1098 379Q1098 199 957 90T586 -20Q346 -20 209 82T72 371Q72 496 138 593T352 764Q227 843 172 933T117 1130Q117
+1287 247 1384T586 1481ZM358 389Q358 303 418 255T582 207Q697 207 754 256T811 387Q811 454 755 512T571 637Q358 539 358 389ZM584 1255Q505 1255 457 1215T408 1106Q408 1046 446 999T586 901Q684 947 723 995T762 1106Q762 1175 712 1215T584 1255Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1169" d="M1098 838Q1098 406 916 193T365 -20Q235 -20 168 -6V242Q252 221 344 221Q499 221 599 266T752 409T813 678H801Q743 584 667 546T477 508Q286 508 176 630T66 971Q66 1206 199 1342T563 1479Q725
+1479 846 1403T1033 1183T1098 838ZM569 1231Q473 1231 419 1165T365 975Q365 869 414 807T563 745Q657 745 724 806T791 948Q791 1067 729 1149T569 1231Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="584" d="M117 143Q117 227 162 270T293 313Q376 313 421 269T467 143Q467 64 421 19T293 -27Q209 -27 163 17T117 143ZM117 969Q117 1053 162 1096T293 1139Q376 1139 421 1095T467 969Q467 888 421 844T293
+799Q209 799 163 843T117 969Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="594" d="M444 238L459 215Q407 13 283 -264H63Q128 2 164 238H444ZM117 969Q117 1053 162 1096T293 1139Q376 1139 421 1095T467 969Q467 888 421 844T293 799Q209 799 163 843T117 969Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1169" d="M1081 203L88 641V784L1081 1280V1040L397 723L1081 442V203Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1169" d="M88 805V1024H1081V805H88ZM88 418V637H1081V418H88Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1169" d="M88 442L772 723L88 1040V1280L1081 784V641L88 203V442Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="977" d="M276 485V559Q276 655 317 726T467 877Q572 952 605 999T639 1104Q639 1169 591 1203T457 1237Q307 1237 115 1139L6 1358Q229 1483 479 1483Q685 1483 806 1384T928 1120Q928 1010 878 930T688
+750Q592 679 567 642T541 545V485H276ZM244 143Q244 227 289 270T420 313Q503 313 548 269T594 143Q594 64 548 19T420 -27Q336 -27 290 17T244 143Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1837" d="M1735 752Q1735 608 1689 489T1559 301T1364 233Q1290 233 1233 268T1151 362H1135Q1027 233 860 233Q683 233 581 339T479 631Q479 842 613 971T963 1100Q1049 1100 1152 1084T1323 1044L1300 555Q1300
+416 1376 416Q1440 416 1478 509T1516 754Q1516 915 1449 1038T1261 1227T983 1292Q781 1292 632 1209T404 970T324 608Q324 332 471 185T899 37Q1005 37 1132 60T1382 129V-63Q1168 -154 907 -154Q527 -154 315 46T102 602Q102 849 210 1050T519 1366T981 1481Q1201
+1481 1374 1391T1641 1135T1735 752ZM711 627Q711 416 883 416Q973 416 1020 479T1077 686L1090 907Q1039 918 975 918Q850 918 781 840T711 627Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1376" d="M184 1462H639Q950 1462 1090 1374T1231 1092Q1231 961 1170 877T1006 776V766Q1145 735 1206 650T1268 424Q1268 224 1124 112T731 0H184V1462ZM494 883H674Q800 883 856 922T913 1051Q913 1135 852
+1171T657 1208H494V883ZM494 637V256H696Q824 256 885 305T946 455Q946 637 686 637H494Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1305" d="M805 1225Q630 1225 534 1094T438 727Q438 238 805 238Q959 238 1178 315V55Q998 -20 776 -20Q457 -20 288 173T119 729Q119 957 202 1128T440 1391T805 1483Q1018 1483 1233 1380L1133 1128Q1051 1167
+968 1196T805 1225Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1516" d="M1397 745Q1397 384 1192 192T598 0H184V1462H643Q1001 1462 1199 1273T1397 745ZM1075 737Q1075 1208 659 1208H494V256H627Q1075 256 1075 737Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1124" d="M489 0H184V1462H1022V1208H489V831H985V578H489V0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1483" d="M739 821H1319V63Q1178 17 1054 -1T799 -20Q468 -20 294 174T119 733Q119 1087 321 1285T883 1483Q1108 1483 1317 1393L1214 1145Q1054 1225 881 1225Q680 1225 559 1090T438 727Q438 489 535 364T819
+238Q916 238 1016 258V563H739V821Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1567" d="M1382 0H1073V631H494V0H184V1462H494V889H1073V1462H1382V0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="678" d="M184 0V1462H494V0H184Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="678" d="M31 -430Q-74 -430 -152 -408V-150Q-72 -170 -6 -170Q96 -170 140 -107T184 92V1462H494V94Q494 -162 377 -296T31 -430Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1360" d="M1360 0H1008L625 616L494 522V0H184V1462H494V793L616 965L1012 1462H1356L846 815L1360 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1157" d="M184 0V1462H494V256H1087V0H184Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1931" d="M803 0L451 1147H442Q461 797 461 680V0H184V1462H606L952 344H958L1325 1462H1747V0H1458V692Q1458 741 1459 805T1473 1145H1464L1087 0H803Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1665" d="M1481 0H1087L451 1106H442Q461 813 461 688V0H184V1462H575L1210 367H1217Q1202 652 1202 770V1462H1481V0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227 817 1227Q632
+1227 538 1103T444 733Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1286" d="M494 774H596Q739 774 810 830T881 995Q881 1104 822 1156T635 1208H494V774ZM1194 1006Q1194 770 1047 645T627 520H494V0H184V1462H651Q917 1462 1055 1348T1194 1006Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1630" d="M1511 733Q1511 475 1420 301T1151 45L1503 -348H1106L838 -20H815Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240
+1186 733Q1186 1227 817 1227Q632 1227 538 1103T444 733Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1352" d="M494 813H594Q741 813 811 862T881 1016Q881 1120 810 1164T588 1208H494V813ZM494 561V0H184V1462H610Q908 1462 1051 1354T1194 1024Q1194 895 1123 795T922 637Q1252 144 1352 0H1008L659 561H494Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1128" d="M1047 406Q1047 208 905 94T508 -20Q274 -20 94 68V356Q242 290 344 263T532 236Q634 236 688 275T743 391Q743 434 719 467T649 532T459 631Q325 694 258 752T151 887T111 1067Q111 1261 242 1372T606
+1483Q720 1483 823 1456T1040 1380L940 1139Q823 1187 747 1206T596 1225Q508 1225 461 1184T414 1077Q414 1036 433 1006T493 947T690 844Q895 746 971 648T1047 406Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1186" d="M748 0H438V1204H41V1462H1145V1204H748V0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1331" d="M1018 1462H1331L834 0H496L0 1462H313L588 592Q611 515 635 413T666 270Q677 362 741 592L1018 1462Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1980" d="M1608 0H1255L1057 768Q1046 809 1020 937T989 1110Q983 1056 959 937T922 766L725 0H373L0 1462H305L492 664Q541 443 563 281Q569 338 590 457T631 643L844 1462H1137L1350 643Q1364 588 1385 475T1417
+281Q1427 359 1449 475T1489 664L1675 1462H1980L1608 0Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1366" d="M1366 0H1012L672 553L332 0H0L485 754L31 1462H373L688 936L997 1462H1331L872 737L1366 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1278" d="M639 860L944 1462H1278L793 569V0H485V559L0 1462H336L639 860Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1186" d="M1137 0H49V201L750 1206H68V1462H1118V1262L418 256H1137V0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="678" d="M627 -324H143V1462H627V1251H403V-113H627V-324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="846" d="M289 1462L834 0H557L12 1462H289Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="678" d="M51 -113H274V1251H51V1462H535V-324H51V-113Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1090" d="M8 520L446 1470H590L1085 520H846L524 1163L244 520H8Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="842" d="M846 -324H-4V-184H846V-324Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1243" d="M707 1241Q644 1285 522 1383T332 1548V1569H674Q737 1468 909 1268V1241H707Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083 745V0H870ZM780
+518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1296" d="M782 1139Q980 1139 1092 985T1204 561Q1204 284 1089 132T774 -20Q577 -20 465 123H444L393 0H160V1556H465V1194Q465 1125 453 973H465Q572 1139 782 1139ZM684 895Q571 895 519 826T465 596V563Q465
+383 518 305T688 227Q782 227 837 313T893 565Q893 730 837 812T684 895Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="1053" d="M614 -20Q92 -20 92 553Q92 838 234 988T641 1139Q835 1139 989 1063L899 827Q827 856 765 874T641 893Q403 893 403 555Q403 227 641 227Q729 227 804 250T954 324V63Q880 16 805 -2T614 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1296" d="M514 -20Q317 -20 205 133T92 557Q92 832 206 985T522 1139Q733 1139 844 975H854Q831 1100 831 1198V1556H1137V0H903L844 145H831Q727 -20 514 -20ZM621 223Q738 223 792 291T852 522V555Q852 735 797
+813T616 891Q514 891 458 805T401 553Q401 388 458 306T621 223Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680 207Q781 207 871
+228T1059 295V59Q979 19 888 0T666 -20Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="793" d="M778 889H514V0H209V889H41V1036L209 1118V1200Q209 1391 303 1479T604 1567Q762 1567 885 1520L807 1296Q715 1325 637 1325Q572 1325 543 1287T514 1188V1118H778V889Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1157" d="M1133 1118V963L958 918Q1006 843 1006 750Q1006 570 881 470T532 369L477 372L432 377Q385 341 385 297Q385 231 553 231H743Q927 231 1023 152T1120 -80Q1120 -276 957 -384T487 -492Q253 -492 130
+-411T6 -182Q6 -81 69 -13T254 84Q207 104 172 149T137 246Q137 310 174 352T281 436Q193 474 142 558T90 756Q90 939 209 1039T549 1139Q596 1139 660 1131T743 1118H1133ZM270 -158Q270 -221 330 -257T500 -293Q664 -293 757 -248T850 -125Q850 -62 795 -38T625
+-14H467Q383 -14 327 -53T270 -158ZM381 752Q381 661 422 608T549 555Q635 555 675 608T715 752Q715 954 549 954Q381 954 381 752Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1346" d="M1192 0H887V653Q887 895 707 895Q579 895 522 808T465 526V0H160V1556H465V1239Q465 1202 458 1065L451 975H467Q569 1139 791 1139Q988 1139 1090 1033T1192 729V0Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="625" d="M147 1407Q147 1556 313 1556Q479 1556 479 1407Q479 1336 438 1297T313 1257Q147 1257 147 1407ZM465 0H160V1118H465V0Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="625" d="M70 -492Q-47 -492 -131 -467V-227Q-61 -246 12 -246Q89 -246 124 -203T160 -76V1118H465V-121Q465 -299 362 -395T70 -492ZM147 1407Q147 1556 313 1556Q479 1556 479 1407Q479 1336 438 1297T313 1257Q147
+1257 147 1407Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1270" d="M453 608L586 778L899 1118H1243L799 633L1270 0H918L596 453L465 348V0H160V1556H465V862L449 608H453Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="625" d="M465 0H160V1556H465V0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="2011" d="M1161 0H856V653Q856 774 816 834T688 895Q571 895 518 809T465 526V0H160V1118H393L434 975H451Q496 1052 581 1095T776 1139Q1027 1139 1116 975H1143Q1188 1053 1275 1096T1473 1139Q1663 1139 1760
+1042T1858 729V0H1552V653Q1552 774 1512 834T1384 895Q1272 895 1217 815T1161 561V0Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1346" d="M1192 0H887V653Q887 774 844 834T707 895Q579 895 522 810T465 526V0H160V1118H393L434 975H451Q502 1056 591 1097T795 1139Q990 1139 1091 1034T1192 729V0Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92 835 235 987T637
+1139Q798 1139 921 1069T1110 868T1176 561Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1296" d="M774 -20Q577 -20 465 123H449Q465 -17 465 -39V-492H160V1118H408L451 973H465Q572 1139 782 1139Q980 1139 1092 986T1204 561Q1204 382 1152 250T1002 49T774 -20ZM684 895Q571 895 519 826T465 596V563Q465
+383 518 305T688 227Q893 227 893 565Q893 730 843 812T684 895Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1296" d="M623 219Q739 219 793 285T852 518V555Q852 735 797 813T618 891Q403 891 403 553Q403 385 456 302T623 219ZM514 -20Q316 -20 204 132T92 557Q92 831 206 985T520 1139Q626 1139 705 1099T844 975H852L879
+1118H1137V-492H831V-23Q831 38 844 145H831Q782 64 701 22T514 -20Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="930" d="M784 1139Q846 1139 887 1130L864 844Q827 854 774 854Q628 854 547 779T465 569V0H160V1118H391L436 930H451Q503 1024 591 1081T784 1139Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="1018" d="M940 332Q940 160 821 70T463 -20Q341 -20 255 -4T94 45V297Q179 257 285 230T473 203Q639 203 639 299Q639 335 617 357T541 408T397 475Q268 529 208 575T120 680T92 827Q92 976 207 1057T535 1139Q737
+1139 928 1051L836 831Q752 867 679 890T530 913Q395 913 395 840Q395 799 438 769T629 680Q760 627 821 581T911 475T940 332Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="889" d="M631 223Q711 223 823 258V31Q709 -20 543 -20Q360 -20 277 72T193 350V889H47V1018L215 1120L303 1356H498V1118H811V889H498V350Q498 285 534 254T631 223Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="1165" d="M426 0L0 1118H319L535 481Q571 360 580 252H586Q591 348 631 481L846 1118H1165L739 0H426Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1753" d="M1079 0L993 391L877 885H870L666 0H338L20 1118H324L453 623Q484 490 516 256H522Q526 332 557 497L573 582L711 1118H1047L1178 582Q1182 560 1190 517T1207 426T1221 331T1229 256H1235Q1244 328 1267
+453T1300 623L1434 1118H1733L1411 0H1079Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1184" d="M389 571L29 1118H375L592 762L811 1118H1157L793 571L1174 0H827L592 383L356 0H10L389 571Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1165" d="M0 1118H334L545 489Q572 407 582 295H588Q599 398 631 489L838 1118H1165L692 -143Q627 -318 507 -405T225 -492Q146 -492 70 -475V-233Q125 -246 190 -246Q271 -246 331 -197T426 -47L444 8L0 1118Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="999" d="M938 0H55V180L573 885H86V1118H920V920L416 233H938V0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="807" d="M287 270Q287 357 222 403T31 449V688Q157 688 222 732T287 858V866V1184Q287 1337 384 1399T725 1462V1237Q626 1234 589 1199T551 1096V797Q545 609 317 575V563Q551 528 551 351V342V43Q551
+-25 588 -60T725 -98V-324Q481 -324 384 -262T287 -45V270Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M455 1550H674V-465H455V1550Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="807" d="M520 -45Q520 -157 479 -214T344 -297T82 -324V-98Q181 -96 218 -62T256 43V342V353Q256 439 315 492T489 563V575Q262 609 256 797V1096Q256 1166 219 1200T82 1237V1462Q249 1462 344 1436T479
+1352T520 1184V866V856Q520 772 581 730T776 688V449Q651 449 586 408T520 270V-45Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1169" d="M322 672Q267 672 205 639T88 551V782Q191 891 344 891Q417 891 481 875T621 827Q750 772 848 772Q901 772 964 804T1081 893V662Q980 553 825 553Q759 553 699 566T549 616Q418 672 322 672Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="586" d="M168 606H412L463 -369H117L168 606ZM467 948Q467 864 422 821T291 778Q208 778 163 822T117 948Q117 1029 163 1073T291 1118Q375 1118 421 1074T467 948Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1169" d="M563 176Q143 235 143 741Q143 1002 247 1144T563 1317V1483H741V1325Q907 1316 1040 1251L950 1016Q878 1045 816 1063T692 1081Q571 1081 513 998T455 743Q455 416 692 416Q774 416 840 431T1006
+492V238Q879 177 741 168V-20H563V176Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1169" d="M700 1483Q895 1483 1090 1401L997 1171Q840 1235 725 1235Q647 1235 605 1191T563 1063V870H938V651H563V508Q563 338 412 260H1130V0H82V248Q185 292 223 349T262 506V651H84V870H262V1065Q262
+1266 376 1374T700 1483Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1169" d="M188 723Q188 825 242 920L113 1047L260 1194L387 1067Q478 1120 584 1120Q689 1120 780 1065L907 1194L1057 1051L928 922Q981 833 981 723Q981 616 928 524L1053 399L907 254L780 379Q685
+328 584 328Q469 328 385 379L260 256L115 401L242 526Q188 619 188 723ZM395 723Q395 646 449 591T584 535Q665 535 720 590T776 723Q776 803 720 858T584 913Q506 913 451 857T395 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1169" d="M584 860L848 1462H1161L778 715H973V537H727V399H973V221H727V0H440V221H193V399H440V537H193V715H383L6 1462H322L584 860Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M455 1550H674V735H455V1550ZM455 350H674V-465H455V350Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="995" d="M121 805Q121 884 157 949T254 1055Q121 1139 121 1288Q121 1419 232 1498T526 1577Q696 1577 889 1493L807 1303Q739 1335 669 1360T520 1386Q439 1386 402 1363T365 1292Q365 1243 414 1206T578
+1124Q741 1060 818 976T895 782Q895 605 770 522Q832 482 863 430T895 303Q895 155 776 68T455 -20Q252 -20 106 59V266Q187 225 286 197T455 168Q649 168 649 285Q649 324 631 348T567 397T442 457Q259 531 190 609T121 805ZM344 827Q344 760 409 708T590 610Q668
+667 668 756Q668 824 618 871T434 967Q397 953 371 914T344 827Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1243" d="M279 1405Q279 1470 316 1505T418 1540Q484 1540 521 1503T559 1405Q559 1345 521 1309T418 1272Q354 1272 317 1307T279 1405ZM682 1405Q682 1475 722 1507T823 1540Q888 1540 926 1504T965
+1405Q965 1344 926 1308T823 1272Q763 1272 723 1304T682 1405Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M895 1010Q798 1010 745 936T692 731Q692 451 895 451Q952 451 1018 466T1141 510V319Q1021 262 889 262Q685 262 573 387T461 733Q461 953 571 1075T881 1198Q1030 1198 1186 1120L1112
+952Q999 1010 895 1010ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM242 731Q242 567 324 426T548 203T852 121Q1016 121 1157 203T1380 427T1462
+731Q1462 895 1380 1036T1156 1259T852 1341Q688 1341 547 1259T324 1035T242 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="784" d="M561 764L530 874Q487 816 425 784T289 752Q172 752 110 810T47 975Q47 1084 129 1138T397 1202L496 1206Q496 1323 369 1323Q288 1323 152 1262L86 1397Q152 1429 231 1454T410 1479Q547
+1479 621 1408T696 1206V764H561ZM252 977Q252 939 275 921T330 903Q407 903 451 944T496 1051V1087L397 1081Q252 1071 252 977Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1260" d="M82 573L453 1028L672 909L393 561L672 213L453 94L82 547V573ZM588 573L958 1028L1178 909L899 561L1178 213L958 94L588 547V573Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1169" d="M1081 248H862V612H88V831H1081V248Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="659" d="M61 424V674H598V424H61Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M1157 905Q1157 735 1014 672L1251 272H997L819 610H772V272H543V1188H807Q988 1188 1072 1118T1157 905ZM772 778H803Q869 778 897 806T926 901Q926 966 898 993T801 1020H772V778ZM100
+731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM242 731Q242 567 324 426T548 203T852 121Q1016 121 1157 203T1380 427T1462 731Q1462 895 1380 1036T1156
+1259T852 1341Q688 1341 547 1259T324 1035T242 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6V1757H1030V1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M92 1137Q92 1229 138 1309T264 1436T438 1483Q530 1483 610 1437T737 1310T784 1137Q784 1044 738 964T611 838T438 793Q293 793 193 892T92 1137ZM283 1137Q283 1073 327 1028T438 983Q504
+983 549 1029T594 1137Q594 1200 549 1247T438 1294Q374 1294 329 1248T283 1137Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1169" d="M475 674H88V893H475V1282H694V893H1081V674H694V289H475V674ZM88 0V219H1081V0H88Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="776" d="M702 586H55V754L279 973Q381 1073 409 1117T438 1212Q438 1250 414 1270T350 1290Q269 1290 170 1202L47 1354Q194 1483 383 1483Q520 1483 599 1417T678 1233Q678 1148 631 1073T455
+881L350 786H702V586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="776" d="M666 1249Q666 1106 496 1051V1038Q590 1018 642 963T694 829Q694 708 606 639T332 569Q189 569 59 639V829Q207 739 330 739Q473 739 473 846Q473 899 429 925T307 952H195V1112H287Q370
+1112 410 1138T451 1221Q451 1259 426 1284T350 1309Q303 1309 261 1290T162 1231L61 1372Q123 1419 198 1450T377 1481Q504 1481 585 1417T666 1249Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1243" d="M332 1241V1268Q504 1468 567 1569H909V1548Q857 1496 732 1394T535 1241H332Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1352" d="M465 465Q465 344 509 284T647 223Q773 223 830 309T887 592V1118H1192V0H961L918 150H903Q861 65 801 23T653 -20Q591 -20 539 3T455 70L460 -15L465 -172V-492H160V1118H465V465Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1167 -260H1006V1356H840V-260H678V559Q616 541 532 541Q316 541 215 666T113 1042Q113 1302 222 1429T563 1556H1167V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="584" d="M117 723Q117 807 162 850T293 893Q376 893 421 849T467 723Q467 642 421 598T293 553Q209 553 163 597T117 723Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="420" d="M418 -250Q418 -378 343 -435T109 -492Q31 -492 -37 -471V-303Q-10 -310 35 -317T106 -324Q178 -324 178 -262Q178 -179 12 -154L90 0H283L256 -61Q330 -85 374 -135T418 -250Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="776" d="M584 586H346V1032L349 1144L354 1239Q327 1203 279 1161L201 1100L92 1227L393 1462H584V586Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="795" d="M737 1116Q737 945 646 849T395 752Q242 752 150 850T57 1116Q57 1285 146 1382T399 1479Q551 1479 644 1381T737 1116ZM260 1116Q260 1016 292 966T397 915Q469 915 500 965T532 1116Q532
+1216 501 1265T397 1315Q325 1315 293 1266T260 1116Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1260" d="M1178 547L807 94L588 213L866 561L588 909L807 1028L1178 573V547ZM672 547L301 94L82 213L360 561L82 909L301 1028L672 573V547Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1804" d="M794 586H556V1032L559 1144L564 1239Q537 1203 489 1161L411 1100L302 1227L603 1462H794V586ZM1370 1462L559 0H320L1131 1462H1370ZM1682 152H1557V1H1319V152H936V306L1321 883H1557V320H1682V152ZM1319
+320V484Q1319 570 1325 668Q1316 642 1290 588T1248 511L1121 320H1319Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1804" d="M794 586H556V1032L559 1144L564 1239Q537 1203 489 1161L411 1100L302 1227L603 1462H794V586ZM1370 1462L559 0H320L1131 1462H1370ZM1716 1H1069V169L1293 388Q1395 488 1423 532T1452
+627Q1452 665 1428 685T1364 705Q1283 705 1184 617L1061 769Q1208 898 1397 898Q1534 898 1613 832T1692 648Q1692 563 1645 488T1469 296L1364 201H1716V1Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1804" d="M697 1249Q697 1106 527 1051V1038Q621 1018 673 963T725 829Q725 708 637 639T363 569Q220 569 90 639V829Q238 739 361 739Q504 739 504 846Q504 899 460 925T338 952H226V1112H318Q401
+1112 441 1138T482 1221Q482 1259 457 1284T381 1309Q334 1309 292 1290T193 1231L92 1372Q154 1419 229 1450T408 1481Q535 1481 616 1417T697 1249ZM1441 1462L630 0H391L1202 1462H1441ZM1712 152H1587V1H1349V152H966V306L1351 883H1587V320H1712V152ZM1349
+320V484Q1349 570 1355 668Q1346 642 1320 588T1278 511L1151 320H1349Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="977" d="M713 606V532Q713 434 669 363T516 215Q407 137 379 93T350 -14Q350 -71 393 -108T526 -145Q605 -145 695 -116T881 -45L983 -266Q885 -322 762 -356T532 -391Q312 -391 187 -295T61 -29Q61
+79 109 158T301 342Q396 412 422 449T449 547V606H713ZM745 948Q745 864 700 821T569 778Q486 778 441 822T395 948Q395 1029 441 1073T569 1118Q653 1118 699 1074T745 948Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM713 1579Q650 1623 528 1721T338 1886V1907H680Q743 1806 915 1606V1579H713Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM541 1579V1606Q713 1806 776 1907H1118V1886Q1066 1834 941 1732T744 1579H541Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM938 1579Q781 1672 704 1755Q626 1674 475 1579H272V1606Q461 1795
+528 1907H885Q916 1855 992 1766T1141 1606V1579H938Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM543 1684Q512 1684 484 1658T442 1577H293Q304 1722 375 1804T565 1886Q606
+1886 645 1870T723 1834T799 1798T872 1782Q903 1782 931 1808T973 1888H1122Q1111 1743 1039 1661T850 1579Q809 1579 770 1595T692 1631T616 1667T543 1684Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM365 1743Q365 1808 402 1843T504 1878Q570 1878 607 1841T645 1743Q645
+1683 607 1647T504 1610Q440 1610 403 1645T365 1743ZM768 1743Q768 1813 808 1845T909 1878Q974 1878 1012 1842T1051 1743Q1051 1682 1012 1646T909 1610Q849 1610 809 1642T768 1743Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1413" d="M1079 0L973 348H440L334 0H0L516 1468H895L1413 0H1079ZM899 608Q752 1081 734 1143T707 1241Q674 1113 518 608H899ZM959 1567Q959 1459 888 1393T705 1327Q593 1327 525 1391T457 1565Q457
+1673 524 1737T705 1802Q815 1802 887 1736T959 1567ZM801 1565Q801 1610 774 1635T705 1661Q663 1661 636 1636T609 1565Q609 1520 633 1494T705 1468Q747 1468 774 1494T801 1565Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1950" d="M1829 0H956V348H465L315 0H0L655 1462H1829V1208H1266V887H1792V633H1266V256H1829V0ZM578 608H956V1198H829L578 608Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1305" d="M805 1225Q630 1225 534 1094T438 727Q438 238 805 238Q959 238 1178 315V55Q998 -20 776 -20Q457 -20 288 173T119 729Q119 957 202 1128T440 1391T805 1483Q1018 1483 1233 1380L1133 1128Q1051
+1167 968 1196T805 1225ZM959 -250Q959 -378 884 -435T650 -492Q572 -492 504 -471V-303Q531 -310 576 -317T647 -324Q719 -324 719 -262Q719 -179 553 -154L631 0H824L797 -61Q871 -85 915 -135T959 -250Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0ZM634 1579Q571 1623 449 1721T259 1886V1907H601Q664 1806 836 1606V1579H634Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0ZM424 1579V1606Q596 1806 659 1907H1001V1886Q949 1834 824 1732T627 1579H424Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0ZM841 1579Q684 1672 607 1755Q529 1674 378 1579H175V1606Q364 1795 431 1907H788Q819 1855 895 1766T1044 1606V1579H841Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1147" d="M1026 0H184V1462H1026V1208H494V887H989V633H494V256H1026V0ZM272 1743Q272 1808 309 1843T411 1878Q477 1878 514 1841T552 1743Q552 1683 514 1647T411 1610Q347 1610 310 1645T272 1743ZM675
+1743Q675 1813 715 1845T816 1878Q881 1878 919 1842T958 1743Q958 1682 919 1646T816 1610Q756 1610 716 1642T675 1743Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="678" d="M184 0V1462H494V0H184ZM317 1579Q254 1623 132 1721T-58 1886V1907H284Q347 1806 519 1606V1579H317Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="678" d="M184 0V1462H494V0H184ZM167 1579V1606Q339 1806 402 1907H744V1886Q692 1834 567 1732T370 1579H167Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="678" d="M184 0V1462H494V0H184ZM570 1579Q413 1672 336 1755Q258 1674 107 1579H-96V1606Q93 1795 160 1907H517Q548 1855 624 1766T773 1606V1579H570Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="678" d="M184 0V1462H494V0H184ZM-3 1743Q-3 1808 34 1843T136 1878Q202 1878 239 1841T277 1743Q277 1683 239 1647T136 1610Q72 1610 35 1645T-3 1743ZM400 1743Q400 1813 440 1845T541 1878Q606
+1878 644 1842T683 1743Q683 1682 644 1646T541 1610Q481 1610 441 1642T400 1743Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1516" d="M47 850H184V1462H643Q1001 1462 1199 1273T1397 745Q1397 384 1192 192T598 0H184V596H47V850ZM1075 737Q1075 969 971 1088T657 1208H494V850H731V596H494V256H625Q1075 256 1075 737Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1665" d="M1481 0H1087L451 1106H442Q461 813 461 688V0H184V1462H575L1210 367H1217Q1202 652 1202 770V1462H1481V0ZM668 1684Q637 1684 609 1658T567 1577H418Q429 1722 500 1804T690 1886Q731 1886
+770 1870T848 1834T924 1798T997 1782Q1028 1782 1056 1808T1098 1888H1247Q1236 1743 1164 1661T975 1579Q934 1579 895 1595T817 1631T741 1667T668 1684Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227
+817 1227Q632 1227 538 1103T444 733ZM824 1579Q761 1623 639 1721T449 1886V1907H791Q854 1806 1026 1606V1579H824Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227
+817 1227Q632 1227 538 1103T444 733ZM658 1579V1606Q830 1806 893 1907H1235V1886Q1183 1834 1058 1732T861 1579H658Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186
+1227 817 1227Q632 1227 538 1103T444 733ZM1047 1579Q890 1672 813 1755Q735 1674 584 1579H381V1606Q570 1795 637 1907H994Q1025 1855 1101 1766T1250 1606V1579H1047Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186 1227
+817 1227Q632 1227 538 1103T444 733ZM652 1684Q621 1684 593 1658T551 1577H402Q413 1722 484 1804T674 1886Q715 1886 754 1870T832 1834T908 1798T981 1782Q1012 1782 1040 1808T1082 1888H1231Q1220 1743 1148 1661T959 1579Q918 1579 879 1595T801 1631T725
+1667T652 1684Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q479 -20 299 175T119 735Q119 1100 299 1292T817 1485Q1154 1485 1332 1291T1511 733ZM444 733Q444 488 537 364T815 240Q1186 240 1186 733Q1186
+1227 817 1227Q632 1227 538 1103T444 733ZM474 1743Q474 1808 511 1843T613 1878Q679 1878 716 1841T754 1743Q754 1683 716 1647T613 1610Q549 1610 512 1645T474 1743ZM877 1743Q877 1813 917 1845T1018 1878Q1083 1878 1121 1842T1160 1743Q1160 1682 1121
+1646T1018 1610Q958 1610 918 1642T877 1743Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1169" d="M428 723L129 1024L281 1178L582 879L887 1178L1040 1028L735 723L1036 420L887 268L582 569L281 270L131 422L428 723Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1630" d="M1511 733Q1511 370 1331 175T815 -20Q618 -20 479 45L389 -90L227 18L317 154Q119 348 119 735Q119 1100 299 1292T817 1485Q1015 1485 1161 1415L1245 1540L1405 1436L1317 1305Q1511 1111
+1511 733ZM444 733Q444 542 500 426L1006 1182Q922 1227 817 1227Q632 1227 538 1103T444 733ZM1186 733Q1186 913 1135 1030L635 279Q711 240 815 240Q1186 240 1186 733Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374ZM750 1579Q687 1623 565 1721T375
+1886V1907H717Q780 1806 952 1606V1579H750Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374ZM602 1579V1606Q774 1806 837 1907H1179V1886Q1127
+1834 1002 1732T805 1579H602Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374ZM1006 1579Q849 1672 772 1755Q694
+1674 543 1579H340V1606Q529 1795 596 1907H953Q984 1855 1060 1766T1209 1606V1579H1006Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1548" d="M1374 1462V516Q1374 354 1302 232T1092 45T768 -20Q486 -20 330 124T174 520V1462H483V567Q483 398 551 319T776 240Q928 240 996 319T1065 569V1462H1374ZM433 1743Q433 1808 470 1843T572
+1878Q638 1878 675 1841T713 1743Q713 1683 675 1647T572 1610Q508 1610 471 1645T433 1743ZM836 1743Q836 1813 876 1845T977 1878Q1042 1878 1080 1842T1119 1743Q1119 1682 1080 1646T977 1610Q917 1610 877 1642T836 1743Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1278" d="M639 860L944 1462H1278L793 569V0H485V559L0 1462H336L639 860ZM461 1579V1606Q633 1806 696 1907H1038V1886Q986 1834 861 1732T664 1579H461Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1286" d="M1194 770Q1194 541 1052 417T647 293H494V0H184V1462H494V1233H672Q926 1233 1060 1114T1194 770ZM494 543H594Q739 543 810 595T881 770Q881 877 818 929T618 981H494V543Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1456" d="M1249 1241Q1249 1177 1228 1129T1175 1042T1106 975T1037 922T984 877T963 834Q963 807 989 781T1082 715Q1228 624 1280 575T1358 465T1384 326Q1384 154 1268 67T924 -20Q825 -20 753
+-6T621 43V285Q674 249 756 224T903 199Q1071 199 1071 322Q1071 363 1055 388T998 444T883 516Q757 588 708 647T659 788Q659 852 694 905T799 1007Q876 1062 907 1102T938 1188Q938 1248 875 1288T711 1329Q595 1329 530 1277T465 1128V0H160V1139Q160 1340 306
+1453T711 1567Q955 1567 1102 1479T1249 1241Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
+745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM870 1241Q807 1285 685 1383T495 1548V1569H837Q900 1468 1072 1268V1241H870Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
+745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM441 1241V1268Q613 1468 676 1569H1018V1548Q966 1496 841 1394T644 1241H441Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963
+1043T1083 745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM1099 1496Q942 1589 865 1672Q787 1591 636 1496H433V1523Q622 1712 689 1824H1046Q1077 1772 1153 1683T1302 1523V1496H1099Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
+745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM467 1346Q436 1346 408 1320T366 1239H217Q228 1384 299 1466T489 1548Q530 1548 569 1532T647 1496T723 1460T796 1444Q827 1444 855 1470T897 1550H1046Q1035
+1405 963 1323T774 1241Q733 1241 694 1257T616 1293T540 1329T467 1346Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
+745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM285 1405Q285 1470 322 1505T424 1540Q490 1540 527 1503T565 1405Q565 1345 527 1309T424 1272Q360 1272 323 1307T285 1405ZM688 1405Q688 1475 728 1507T829
+1540Q894 1540 932 1504T971 1405Q971 1344 932 1308T829 1272Q769 1272 729 1304T688 1405Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1237" d="M870 0L811 152H803Q726 55 645 18T432 -20Q271 -20 179 72T86 334Q86 512 210 596T586 690L780 696V745Q780 915 606 915Q472 915 291 834L190 1040Q383 1141 618 1141Q843 1141 963 1043T1083
+745V0H870ZM780 518L662 514Q529 510 464 466T399 332Q399 203 547 203Q653 203 716 264T780 426V518ZM883 1479Q883 1371 812 1305T629 1239Q517 1239 449 1303T381 1477Q381 1585 448 1649T629 1714Q739 1714 811 1648T883 1479ZM725 1477Q725 1522 698 1547T629
+1573Q587 1573 560 1548T533 1477Q533 1432 557 1406T629 1380Q671 1380 698 1406T725 1477Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1878" d="M1329 -20Q1192 -20 1080 30T895 186Q797 69 699 25T442 -20Q281 -20 184 74T86 334Q86 512 207 596T569 690L760 696V780Q760 849 716 882T594 915Q454 915 289 838L190 1040Q379 1141 612 1141Q839
+1141 954 1010Q1020 1074 1106 1106T1313 1139Q1534 1139 1662 1002T1790 631V483H1067Q1072 353 1144 280T1346 207Q1542 207 1726 295V59Q1647 20 1555 0T1329 -20ZM760 518L647 514Q523 510 461 467T399 332Q399 203 539 203Q640 203 700 264T760 426V518ZM1307
+922Q1090 922 1073 686H1503Q1501 798 1448 860T1307 922Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="1053" d="M614 -20Q92 -20 92 553Q92 838 234 988T641 1139Q835 1139 989 1063L899 827Q827 856 765 874T641 893Q403 893 403 555Q403 227 641 227Q729 227 804 250T954 324V63Q880 16 805 -2T614
+-20ZM805 -250Q805 -378 730 -435T496 -492Q418 -492 350 -471V-303Q377 -310 422 -317T493 -324Q565 -324 565 -262Q565 -179 399 -154L477 0H670L643 -61Q717 -85 761 -135T805 -250Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680 207Q781
+207 871 228T1059 295V59Q979 19 888 0T666 -20ZM876 1241Q813 1285 691 1383T501 1548V1569H843Q906 1468 1078 1268V1241H876Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680 207Q781
+207 871 228T1059 295V59Q979 19 888 0T666 -20ZM447 1241V1268Q619 1468 682 1569H1024V1548Q972 1496 847 1394T650 1241H447Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680
+207Q781 207 871 228T1059 295V59Q979 19 888 0T666 -20ZM860 1241Q703 1334 626 1417Q548 1336 397 1241H194V1268Q383 1457 450 1569H807Q838 1517 914 1428T1063 1268V1241H860Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1210" d="M623 922Q526 922 471 861T408 686H836Q834 799 777 860T623 922ZM666 -20Q396 -20 244 129T92 551Q92 832 232 985T621 1139Q858 1139 990 1004T1122 631V483H401Q406 353 478 280T680
+207Q781 207 871 228T1059 295V59Q979 19 888 0T666 -20ZM297 1405Q297 1470 334 1505T436 1540Q502 1540 539 1503T577 1405Q577 1345 539 1309T436 1272Q372 1272 335 1307T297 1405ZM700 1405Q700 1475 740 1507T841 1540Q906 1540 944 1504T983 1405Q983 1344
+944 1308T841 1272Q781 1272 741 1304T700 1405Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="625" d="M465 0H160V1118H465V0ZM274 1241Q211 1285 89 1383T-101 1548V1569H241Q304 1468 476 1268V1241H274Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="625" d="M465 0H160V1118H465V0ZM145 1241V1268Q317 1468 380 1569H722V1548Q670 1496 545 1394T348 1241H145Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="625" d="M465 0H160V1118H465V0ZM544 1241Q387 1334 310 1417Q232 1336 81 1241H-122V1268Q67 1457 134 1569H491Q522 1517 598 1428T747 1268V1241H544Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="625" d="M465 0H160V1118H465V0ZM-29 1405Q-29 1470 8 1505T110 1540Q176 1540 213 1503T251 1405Q251 1345 213 1309T110 1272Q46 1272 9 1307T-29 1405ZM374 1405Q374 1475 414 1507T515 1540Q580
+1540 618 1504T657 1405Q657 1344 618 1308T515 1272Q455 1272 415 1304T374 1405Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1268" d="M510 1303Q430 1356 358 1395L459 1571Q603 1506 717 1430L942 1569L1042 1415L872 1311Q1028 1168 1102 987T1176 573Q1176 293 1031 137T631 -20Q386 -20 239 117T92 489Q92 722 222 858T573
+995Q778 995 848 897L856 901Q789 1063 664 1182L434 1040L334 1196L510 1303ZM864 532Q864 640 803 705T635 770Q514 770 459 702T403 487Q403 347 463 276T635 205Q758 205 811 287T864 532Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1346" d="M1192 0H887V653Q887 774 844 834T707 895Q579 895 522 810T465 526V0H160V1118H393L434 975H451Q502 1056 591 1097T795 1139Q990 1139 1091 1034T1192 729V0ZM508 1346Q477 1346 449 1320T407
+1239H258Q269 1384 340 1466T530 1548Q571 1548 610 1532T688 1496T764 1460T837 1444Q868 1444 896 1470T938 1550H1087Q1076 1405 1004 1323T815 1241Q774 1241 735 1257T657 1293T581 1329T508 1346Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92 835
+235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM868 1241Q805 1285 683 1383T493 1548V1569H835Q898 1468 1070 1268V1241H868Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92 835
+235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM467 1241V1268Q639 1468 702 1569H1044V1548Q992 1496 867 1394T670 1241H467Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92
+835 235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM864 1241Q707 1334 630 1417Q552 1336 401 1241H198V1268Q387 1457 454 1569H811Q842 1517 918 1428T1067 1268V1241H864Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92 835
+235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM469 1346Q438 1346 410 1320T368 1239H219Q230 1384 301 1466T491 1548Q532 1548 571 1532T649 1496T725 1460T798 1444Q829 1444 857 1470T899 1550H1048Q1037 1405 965 1323T776 1241Q735 1241 696 1257T618
+1293T542 1329T469 1346Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1268" d="M403 561Q403 395 457 310T635 225Q757 225 810 309T864 561Q864 727 810 810T633 893Q511 893 457 811T403 561ZM1176 561Q1176 288 1032 134T631 -20Q470 -20 347 50T158 253T92 561Q92
+835 235 987T637 1139Q798 1139 921 1069T1110 868T1176 561ZM291 1405Q291 1470 328 1505T430 1540Q496 1540 533 1503T571 1405Q571 1345 533 1309T430 1272Q366 1272 329 1307T291 1405ZM694 1405Q694 1475 734 1507T835 1540Q900 1540 938 1504T977 1405Q977
+1344 938 1308T835 1272Q775 1272 735 1304T694 1405Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1169" d="M88 612V831H1081V612H88ZM444 373Q444 449 481 486T584 524Q650 524 686 485T723 373Q723 303 686 262T584 221Q519 221 482 260T444 373ZM444 1071Q444 1146 481 1184T584 1223Q651 1223
+687 1183T723 1071Q723 1001 686 961T584 920Q519 920 482 959T444 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1268" d="M1176 561Q1176 288 1032 134T631 -20Q505 -20 397 25L330 -76L176 29L244 129Q92 285 92 561Q92 835 235 987T637 1139Q769 1139 885 1087L940 1169L1092 1061L1034 977Q1176 822 1176 561ZM403
+561Q403 467 422 395L739 870Q696 893 633 893Q511 893 457 811T403 561ZM864 561Q864 642 852 702L543 240Q581 225 635 225Q757 225 810 309T864 561Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952ZM876 1241Q813 1285 691 1383T501 1548V1569H843Q906
+1468 1078 1268V1241H876Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952ZM498 1241V1268Q670 1468 733 1569H1075V1548Q1023
+1496 898 1394T701 1241H498Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952ZM901 1241Q744 1334 667 1417Q589
+1336 438 1241H235V1268Q424 1457 491 1569H848Q879 1517 955 1428T1104 1268V1241H901Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1346" d="M952 0L911 143H895Q846 65 756 23T551 -20Q354 -20 254 85T154 389V1118H459V465Q459 344 502 284T639 223Q767 223 824 308T881 592V1118H1186V0H952ZM326 1405Q326 1470 363 1505T465
+1540Q531 1540 568 1503T606 1405Q606 1345 568 1309T465 1272Q401 1272 364 1307T326 1405ZM729 1405Q729 1475 769 1507T870 1540Q935 1540 973 1504T1012 1405Q1012 1344 973 1308T870 1272Q810 1272 770 1304T729 1405Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1165" d="M0 1118H334L545 489Q572 407 582 295H588Q599 398 631 489L838 1118H1165L692 -143Q627 -318 507 -405T225 -492Q146 -492 70 -475V-233Q125 -246 190 -246Q271 -246 331 -197T426 -47L444
+8L0 1118ZM393 1241V1268Q565 1468 628 1569H970V1548Q918 1496 793 1394T596 1241H393Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1296" d="M465 973Q515 1054 596 1096T782 1139Q980 1139 1092 985T1204 561Q1204 288 1093 134T782 -20Q569 -20 465 117H451L458 55L465 -39V-492H160V1556H465V1165L458 1045L451 973H465ZM684 895Q571
+895 519 826T465 596V563Q465 383 518 305T688 227Q893 227 893 565Q893 730 843 812T684 895Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1165" d="M0 1118H334L545 489Q572 407 582 295H588Q599 398 631 489L838 1118H1165L692 -143Q627 -318 507 -405T225 -492Q146 -492 70 -475V-233Q125 -246 190 -246Q271 -246 331 -197T426 -47L444
+8L0 1118ZM499 1405Q499 1470 536 1505T638 1540Q704 1540 741 1503T779 1405Q779 1345 741 1309T638 1272Q574 1272 537 1307T499 1405ZM902 1405Q902 1475 942 1507T1043 1540Q1108 1540 1146 1504T1185 1405Q1185 1344 1146 1308T1043 1272Q983 1272 943 1304T902
+1405Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1024" d="M82 436V666H942V436H82Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="2048" d="M82 436V666H1966V436H82Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="444" d="M39 961L25 983Q47 1074 97 1211T201 1462H420Q354 1195 319 961H39Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="444" d="M406 1462L420 1440Q370 1243 244 961H25Q94 1257 125 1462H406Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="596" d="M459 215Q407 13 283 -264H63Q128 2 164 238H444L459 215Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="911" d="M492 983Q514 1074 564 1211T668 1462H887Q821 1195 786 961H506L492 983ZM25 983Q47 1074 97 1211T201 1462H420Q354 1195 319 961H39L25 983Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="911" d="M420 1440Q370 1243 244 961H25Q94 1257 125 1462H406L420 1440ZM887 1440Q837 1243 711 961H492Q561 1257 592 1462H872L887 1440Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="1061" d="M459 215Q407 13 283 -264H63Q128 2 164 238H444L459 215ZM926 215Q874 13 750 -264H530Q595 2 631 238H911L926 215Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="770" d="M98 748Q98 902 172 983T385 1065Q522 1065 597 983T672 748Q672 596 597 513T385 430Q247 430 173 513T98 748Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="754" d="M82 573L453 1028L672 909L393 561L672 213L453 94L82 547V573Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="754" d="M672 547L301 94L82 213L360 561L82 909L301 1028L672 573V547Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.ttf b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.ttf
new file mode 100644
index 0000000..fd79d43
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.ttf differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.woff b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.woff
new file mode 100644
index 0000000..f501db0
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.woff differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.woff2 b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.woff2
new file mode 100644
index 0000000..34aac6f
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Bold-webfont.woff2 differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.eot b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.eot
new file mode 100644
index 0000000..70335d8
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.eot differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.svg
new file mode 100644
index 0000000..591a19c
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.svg
@@ -0,0 +1,19036 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1279" ><font-face
+    font-family="Open Sans Extrabold"
+    units-per-em="2048"
+    panose-1="2 11 9 6 3 8 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="623" d="M453 516H125L281 1462H707L453 516ZM12 127Q12 234 77 297T256 360Q343 360 389 320T436 205Q436 95 373 35T199 -25Q111 -25 62 13T12 127Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="930" d="M596 1462L438 934H182L254 1462H596ZM1038 1462L881 934H623L696 1462H1038Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M1067 831L1010 631H1253L1233 393H940L829 0H559L672 393H504L391 0H121L233 393H14L35 631H301L358 831H123L143 1073H428L539 1462H809L698 1073H866L977 1462H1247L1137 1073H1358L1337
+831H1067ZM571 631H739L797 831H629L571 631Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1188" d="M1067 481Q1067 303 934 191T573 66L535 -121H367L408 70Q187 86 61 162V473Q187 414 289 387T492 360Q666 360 666 465Q666 505 634 537T494 621Q355 683 280 781T205 1008Q205 1184 338 1296T696
+1423L725 1556H893L862 1419Q1023 1404 1176 1329L1036 1059Q878 1130 741 1130Q675 1130 638 1102T600 1034Q600 981 639 945T797 850Q937 782 1002 695T1067 481Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1878" d="M1630 1462L549 0H252L1341 1462H1630ZM498 1241Q448 1241 410 1131T371 891Q371 807 424 807Q476 807 513 917T551 1157Q551 1200 539 1220T498 1241ZM842 1161Q842 996 786 858T628 643T397 565Q238
+565 159 648T80 887Q80 1060 134 1196T288 1408T526 1483Q673 1483 757 1398T842 1161ZM1475 655Q1425 655 1387 545T1348 305Q1348 221 1401 221Q1453 221 1490 331T1528 571Q1528 615 1516 635T1475 655ZM1819 575Q1819 411 1763 273T1605 58T1374 -20Q1215 -20
+1136 63T1057 301Q1057 474 1111 610T1265 822T1503 897Q1650 897 1734 812T1819 575Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1501" d="M8 385Q8 544 95 649T367 815Q330 861 307 933T283 1065Q283 1262 409 1373T764 1485Q953 1485 1066 1397T1180 1161Q1180 1031 1100 928T838 731L967 545Q1003 581 1042 659T1106 821H1489Q1443
+660 1361 516T1171 262L1362 0H920L877 61Q722 -20 528 -20Q284 -20 146 86T8 385ZM745 1221Q696 1221 666 1187T635 1092Q635 1016 686 948Q758 979 792 1027T827 1135Q827 1170 805 1195T745 1221ZM571 287Q648 287 709 313L516 592Q399 540 399 424Q399 362
+446 325T571 287Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="487" d="M596 1462L438 934H182L254 1462H596Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="766" d="M68 326Q68 656 192 945T580 1503H903Q643 1222 519 927T395 309Q395 159 427 -17T512 -324H219Q152 -204 110 -25T68 326Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="766" d="M694 854Q694 513 571 226T193 -324H-133Q123 -47 245 247T367 870Q367 1020 335 1192T248 1503H543Q614 1379 654 1205T694 854Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1110" d="M909 1509L793 1178L1161 1208L1139 907L829 948L977 637L692 551L612 854L446 610L197 795L451 1024L152 1108L252 1386L571 1221L602 1571L909 1509Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1159" d="M455 586H102V858H455V1210H725V858H1077V586H725V238H455V586Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="627" d="M432 238L440 215Q324 -47 184 -264H-104Q-51 -143 43 123L84 238H432Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="674" d="M23 393L86 705H639L575 393H23Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="627" d="M0 127Q0 236 65 298T244 360Q328 360 376 320T424 205Q424 87 364 31T174 -25Q96 -25 48 12T0 127Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="956" d="M1092 1483L254 -20H-90L748 1483H1092Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1188" d="M1157 983Q1157 685 1072 454T837 101T489 -20Q279 -20 171 106T63 465Q63 760 148 998T383 1361T731 1485Q866 1485 961 1423T1107 1248T1157 983ZM686 1169Q631 1169 576 1058T487 776T453 457Q453
+373 468 334T528 295Q586 295 639 389T730 655T768 991Q768 1076 750 1122T686 1169Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1188" d="M774 0H385L559 799Q587 931 635 1055Q557 987 504 952L301 827L150 1079L770 1462H1081L774 0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1188" d="M948 0H-57L-4 256L479 692Q727 913 727 1053Q727 1102 701 1126T635 1151Q515 1151 354 1004L168 1262Q402 1483 709 1483Q892 1483 1004 1384T1116 1114Q1116 962 1029 829T731 514L526 338V326H1016L948 0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1188" d="M1126 1137Q1126 989 1037 892T784 762V754Q913 729 986 643T1059 430Q1059 214 881 97T399 -20Q283 -20 182 0T14 59V391Q181 291 391 291Q529 291 597 337T666 471Q666 525 639 552T553 591T387
+604H303L356 895H434Q581 895 663 941T745 1069Q745 1115 709 1143T610 1171Q493 1171 340 1087L182 1335Q308 1416 425 1449T684 1483Q885 1483 1005 1390T1126 1137Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1188" d="M1065 283H915L856 0H479L539 283H-10L41 539L803 1462H1163L977 578H1126L1065 283ZM600 578L649 772Q678 879 709 983H700Q649 886 586 811L391 578H600Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1188" d="M655 958Q836 958 948 841T1061 524Q1061 263 900 122T434 -20Q305 -20 190 2T20 63V387Q99 342 201 317T385 291Q662 291 662 483Q662 559 612 606T475 653Q422 653 364 643T272 621L150 713L365
+1462H1178L1110 1139H639L580 954Q615 958 655 958Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1188" d="M971 1483Q1073 1483 1204 1452L1141 1149Q1046 1174 958 1174Q813 1174 721 1140T570 1032T463 807H471Q577 977 778 977Q938 977 1022 874T1106 575Q1106 400 1038 264T841 54T543 -20Q318 -20 198
+104T78 471Q78 576 104 725Q189 1117 402 1300T971 1483ZM561 287Q627 287 670 363T713 545Q713 674 621 674Q553 674 508 601T463 420Q463 354 489 321T561 287Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1188" d="M35 0L752 1135H178L248 1462H1278L1227 1231L483 0H35Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1188" d="M725 1485Q925 1485 1041 1393T1157 1151Q1157 1023 1080 923T877 782Q969 711 1017 624T1065 420Q1065 214 924 97T537 -20Q312 -20 181 79T49 338Q49 639 381 756Q225 877 225 1065Q225 1186 285
+1281T459 1431T725 1485ZM584 608Q414 518 414 385Q414 331 450 297T547 262Q617 262 659 304T702 414Q702 529 584 608ZM707 1202Q659 1202 624 1163T588 1065Q588 1027 611 988T674 930Q732 952 766 1001T801 1104Q801 1153 773 1177T707 1202Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1188" d="M1137 952Q1137 659 1034 433T749 93T317 -20Q202 -20 106 10V324Q198 287 309 287Q496 287 600 374T745 655H737Q678 560 605 521T436 481Q285 481 197 591T109 887Q109 1063 174 1197T364 1407T662
+1483Q892 1483 1014 1346T1137 952ZM672 1176Q599 1176 551 1105T502 932Q502 788 594 788Q668 788 719 858T770 1030Q770 1096 743 1136T672 1176Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="627" d="M0 127Q0 236 65 298T244 360Q328 360 376 320T424 205Q424 87 364 31T174 -25Q96 -25 48 12T0 127ZM195 915Q195 1025 260 1086T436 1147Q518 1147 568 1110T618 993Q618 874 559 818T369 762Q290
+762 243 799T195 915Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="627" d="M420 238L428 215Q312 -47 172 -264H-117Q-52 -117 31 123L72 238H420ZM195 915Q195 1025 260 1086T436 1147Q518 1147 568 1110T618 993Q618 874 559 818T369 762Q290 762 243 799T195 915Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1159" d="M1061 176L88 627V799L1061 1307V1008L485 725L1061 473V176Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1159" d="M102 774V1040H1077V774H102ZM102 399V670H1077V399H102Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1159" d="M109 473L684 725L109 1008V1307L1081 799V627L109 176V473Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="999" d="M256 516L268 580Q283 660 310 718T381 822T522 932Q611 990 647 1027T684 1104Q684 1174 594 1174Q468 1174 281 1065L162 1348Q393 1483 623 1483Q824 1483 942 1393T1061 1145Q1061 1056 1034
+989T955 869T784 743Q684 683 642 643T586 559L571 516H256ZM176 127Q176 234 241 297T420 360Q507 360 553 320T600 205Q600 95 537 35T362 -25Q275 -25 226 14T176 127Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1837" d="M1774 827Q1774 657 1705 513T1514 288T1247 207Q1077 207 1028 336H1018Q970 271 907 239T750 207Q633 207 559 290T485 512Q485 668 559 806T755 1017T1032 1090Q1187 1090 1368 1020L1268 606Q1245
+512 1245 469Q1245 428 1284 428Q1348 428 1400 476T1481 615T1511 821Q1511 1034 1378 1143T995 1253Q808 1253 659 1162T427 904T344 524Q344 379 399 270T552 102T776 43Q879 43 1010 67T1255 137V-88Q1165 -131 1032 -158T780 -186Q571 -186 413 -103T168 137T82
+500Q82 788 199 1011T534 1358T1020 1483Q1375 1483 1574 1309T1774 827ZM1012 868Q939 868 884 821T796 694T764 532Q764 428 842 428Q903 428 941 479T1016 668L1063 858Q1040 868 1012 868Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1384" d="M858 274H410L285 0H-121L623 1462H1126L1249 0H868L858 274ZM553 586H846L829 1010L827 1096Q827 1171 831 1227Q807 1141 770 1061L553 586Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1298" d="M342 1462H829Q1046 1462 1158 1380T1270 1143Q1270 855 973 766V758Q1061 729 1113 657T1165 479Q1165 250 1013 125T580 0H33L342 1462ZM614 901H686Q774 901 819 939T864 1061Q864 1163 737 1163H674L614
+901ZM555 612L489 305H571Q657 305 714 353T772 475Q772 544 739 578T623 612H555Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1290" d="M881 1159Q773 1159 686 1081T550 866T500 569Q500 435 556 369T717 303Q800 303 885 323T1085 393V70Q882 -20 645 -20Q385 -20 245 128T104 549Q104 815 205 1037T481 1372T881 1485Q1146 1485 1362
+1354L1214 1049Q1121 1104 1043 1131T881 1159Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1401" d="M1337 909Q1337 629 1238 424T951 109T504 0H33L342 1462H758Q1034 1462 1185 1318T1337 909ZM563 324Q673 324 759 394T894 593T942 889Q942 1014 888 1078T737 1143H666L494 324H563Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1151" d="M901 0H33L342 1462H1210L1145 1145H668L621 915H1065L993 598H549L492 322H969L901 0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1165" d="M424 0H33L342 1462H1204L1137 1145H666L608 866H1044L975 547H537L424 0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1430" d="M731 856H1341L1174 61Q924 -20 653 -20Q392 -20 248 132T104 563Q104 830 214 1045T515 1372T961 1485Q1227 1485 1409 1378L1262 1069Q1109 1159 956 1159Q824 1159 723 1087T561 872T500 569Q500 305
+709 305Q772 305 842 319L893 551H664L731 856Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1462" d="M1163 0H772L897 596H551L424 0H33L342 1462H733L621 920H969L1081 1462H1473L1163 0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="727" d="M31 0L340 1462H737L428 0H31Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="764" d="M-115 -461Q-221 -461 -328 -432V-113Q-229 -137 -154 -137Q-47 -137 8 -78T92 117L381 1462H772L473 68Q430 -132 360 -244T178 -409T-115 -461Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1370" d="M1241 0H803L629 578L532 522L424 0H33L342 1462H733L598 838L636 897Q724 1040 766 1092L1063 1462H1522L971 788L1241 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1079" d="M33 0L342 1462H733L492 319H969L901 0H33Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1862" d="M588 0V1049H580Q513 632 494 537L381 0H33L342 1462H860V424H868L1346 1462H1872L1559 0H1208L1325 549Q1375 777 1433 985L1448 1049H1440L958 0H588Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1618" d="M1319 0H864L575 1028H567Q538 737 510 610L381 0H33L342 1462H797L1083 479H1092Q1121 715 1149 850L1280 1462H1628L1319 0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1509" d="M897 1485Q1157 1485 1301 1337T1446 922Q1446 656 1347 436T1072 98T666 -20Q397 -20 251 129T104 543Q104 808 207 1030T487 1368T897 1485ZM1051 918Q1051 1032 1003 1096T864 1161Q765 1161 682 1077T550
+846T500 545Q500 303 700 303Q795 303 876 386T1004 610T1051 918Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1276" d="M1251 1024Q1251 772 1080 629T610 485H524L424 0H33L342 1462H715Q974 1462 1112 1349T1251 1024ZM594 805H657Q748 805 804 863T860 1012Q860 1071 824 1107T725 1143H666L594 805Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1509" d="M903 1485Q1161 1485 1303 1336T1446 922Q1446 642 1332 413T1022 74L1260 -348H821L659 -20H647Q389 -20 247 129T104 543Q104 808 206 1029T488 1367T903 1485ZM870 1157Q767 1157 682 1074T548 848T500
+539Q500 424 547 367T682 309Q784 309 868 390T1002 614T1051 926Q1051 1040 1004 1098T870 1157Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1331" d="M537 532L424 0H33L342 1462H729Q981 1462 1115 1362T1249 1061Q1249 905 1178 789T967 612L1191 96L1231 0H805L610 532H537ZM600 829H651Q746 829 802 883T858 1036Q858 1098 824 1130T723 1163H670L600 829Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1122" d="M977 449Q977 227 830 104T420 -20Q310 -20 212 4T43 76V426Q127 373 235 337T432 301Q506 301 544 332T582 420Q582 447 570 470T536 517T418 621Q301 715 248 813T195 1028Q195 1159 260 1263T445 1425T713
+1483Q952 1483 1143 1376L1008 1079Q837 1167 717 1167Q653 1167 619 1139T584 1057Q584 1008 617 966T745 852Q863 765 920 669T977 449Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1130" d="M627 0H236L473 1139H156L225 1462H1253L1182 1139H864L627 0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1436" d="M1450 1462L1251 530Q1192 249 1026 115T575 -20Q441 -20 339 35T181 189T125 410Q125 474 137 539L336 1462H727L532 549Q518 481 518 434Q518 307 639 307Q733 307 786 371T868 569L1059 1462H1450Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1264" d="M1001 1462H1415L690 0H254L150 1462H532L559 661V610Q559 466 543 354H551Q565 418 595 511T651 657L1001 1462Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1915" d="M487 354L527 458L621 690L956 1462H1292V670Q1292 514 1266 354Q1276 382 1399 700L1702 1462H2089L1454 0H993V620Q993 775 1006 944Q973 811 888 595L635 0H201L152 1462H522L512 729Q506 462 487 354Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1358" d="M1235 0H803L657 498L319 0H-125L438 776L215 1462H631L754 993L1063 1462H1511L973 737L1235 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1237" d="M657 920L969 1462H1405L793 567L672 0H281L401 567L164 1462H567L657 920Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1104" d="M942 0H-92L-45 242L645 1143H166L233 1462H1219L1167 1217L467 319H1010L942 0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="737" d="M477 -344H-53L340 1503H870L815 1249H600L315 -90H530L477 -344Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="956" d="M530 1483L778 -20H459L221 1483H530Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="737" d="M-80 -90H133L418 1249H203L258 1503H786L393 -344H-133L-80 -90Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1096" d="M-6 502L625 1462H797L1081 502H807L651 1071L291 502H-6Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="922" d="M745 -379H-184L-127 -133H803L745 -379Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1135" d="M975 1241H739Q657 1316 587 1400T485 1548V1569H881Q910 1412 975 1266V1241Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1243" d="M565 291Q615 291 660 349T733 506T760 698Q760 763 740 802T678 842Q602 842 541 716T479 434Q479 291 565 291ZM981 0H672L682 123H674Q618 45 553 13T406 -20Q248 -20 166 91T84 412Q84 591 157 777T341
+1058T588 1153Q672 1153 736 1116T850 993H858L911 1133H1221L981 0Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1243" d="M657 -20Q574 -20 512 12T387 125H379L330 0H23L352 1556H739L690 1325Q652 1150 600 1024H608Q656 1083 685 1105T752 1140T838 1153Q993 1153 1076 1042T1159 721Q1159 543 1089 359T906 78T657 -20ZM678
+842Q628 842 583 785T512 631T485 434Q485 369 504 330T563 291Q612 291 659 350T735 506T764 698Q764 842 678 842Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="1032" d="M506 -20Q307 -20 196 100T84 442Q84 643 160 806T375 1061T690 1153Q885 1153 1057 1073L934 786Q801 846 709 846Q647 846 594 798T507 655T473 467Q473 376 503 334T598 291Q670 291 737 314T881 377V70Q801
+26 713 3T506 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1237" d="M586 1153Q661 1153 712 1123T823 1001H831L833 1038Q840 1176 858 1255L920 1556H1311L981 0H672L682 123H674Q617 44 554 12T406 -20Q248 -20 166 91T84 412Q84 590 155 775T339 1056T586 1153ZM565
+291Q615 291 660 349T733 506T760 698Q760 842 680 842Q631 842 584 783T508 628T479 434Q479 291 565 291Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1186" d="M532 -20Q320 -20 202 98T84 428Q84 639 167 808T396 1065T733 1153Q923 1153 1032 1067T1141 838Q1141 637 985 530T532 422H473V406Q473 258 637 258Q716 258 792 281T965 356V82Q853 25 756 3T532
+-20ZM690 891Q629 891 576 822T512 664H541Q650 664 712 705T774 815Q774 847 754 869T690 891Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="840" d="M-2 -492Q-112 -492 -209 -465V-162Q-146 -180 -92 -180Q-18 -180 20 -150T72 -55L262 842H96L139 1032L328 1128L344 1202Q387 1394 490 1480T766 1567Q846 1567 921 1551T1049 1509L950 1245Q886 1276
+821 1276Q786 1276 762 1258T729 1204L713 1133H924L858 842H649L444 -117Q401 -309 291 -400T-2 -492Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1145" d="M1235 1133L1194 926L1034 874Q1044 834 1044 780Q1044 589 914 472T575 354Q499 354 451 367Q431 356 417 345T403 315Q403 272 514 256L651 238Q825 213 901 147T977 -43Q977 -258 809 -375T330 -492Q118
+-492 -7 -417T-133 -207Q-133 -109 -65 -38T147 80Q110 103 87 140T63 219Q63 290 114 345T266 446Q135 549 135 727Q135 923 271 1038T639 1153Q690 1153 746 1147T836 1133H1235ZM197 -152Q197 -238 367 -238Q492 -238 557 -209T623 -127Q623 -91 590 -73T475
+-45L360 -33Q282 -44 240 -74T197 -152ZM500 692Q500 598 567 598Q619 598 652 666T686 825Q686 920 625 920Q587 920 559 887T516 799T500 692Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1274" d="M639 0L768 618Q786 696 786 760Q786 803 764 824T711 846Q586 846 526 553L410 0H23L352 1556H739L686 1307Q651 1149 598 1024H606Q707 1153 879 1153Q1020 1153 1099 1068T1178 831Q1178 725 1153
+602L1026 0H639Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="666" d="M410 0H23L262 1133H651L410 0ZM309 1382Q309 1485 368 1538T535 1591Q626 1591 675 1555T725 1450Q725 1350 667 1296T500 1241Q309 1241 309 1382Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="666" d="M-57 -492Q-167 -492 -264 -465V-162Q-208 -180 -152 -180Q-10 -180 23 -33L270 1133H657L397 -94Q357 -287 240 -389T-57 -492ZM317 1382Q317 1485 376 1538T543 1591Q634 1591 683 1555T733 1450Q733
+1356 678 1299T508 1241Q317 1241 317 1382Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1264" d="M348 1556H735L596 893Q579 816 528 670H537Q621 797 690 870L932 1133H1374L883 621L1157 0H719L580 391L479 338L410 0H23L348 1556Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="666" d="M410 0H23L352 1556H739L410 0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1896" d="M645 0L776 631Q791 721 791 752Q791 846 719 846Q651 846 606 772T528 551L410 0H23L262 1133H571L555 946H563Q624 1060 700 1106T891 1153Q1008 1153 1071 1100T1161 946H1169Q1234 1052 1318 1102T1513
+1153Q1654 1153 1727 1069T1800 819Q1800 722 1778 614L1653 0H1266L1395 631Q1409 687 1409 764Q1409 804 1390 825T1339 846Q1265 846 1220 770T1143 543L1032 0H645Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1274" d="M786 760Q786 803 764 824T711 846Q654 846 606 775T526 553L410 0H23L262 1133H571L559 975H567Q622 1070 696 1111T879 1153Q1020 1153 1099 1068T1178 831Q1178 725 1153 602L1026 0H639L768 618Q786
+696 786 760Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1243" d="M520 -20Q311 -20 198 93T84 416Q84 626 163 795T387 1059T723 1153Q932 1153 1045 1040T1159 717Q1159 507 1080 338T856 74T520 -20ZM678 862Q596 862 538 723T479 403Q479 270 563 270Q644 270 704
+409T764 729Q764 795 741 828T678 862Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1243" d="M651 -20Q508 -20 420 125H412Q400 -41 356 -246L305 -492H-82L262 1133H571L559 1006H567Q663 1153 825 1153Q981 1153 1070 1042T1159 735Q1159 532 1089 353T904 77T651 -20ZM678 842Q628 842 583
+785T512 631T485 434Q485 369 508 330T573 291Q621 291 665 348T736 501T764 698Q764 842 678 842Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1243" d="M586 1153Q675 1153 731 1120T850 993H858L911 1133H1221L877 -492H485L553 -199Q578 -83 643 111H635Q580 37 521 9T387 -20Q298 -20 229 30T122 178T84 408Q84 589 155 774T338 1056T586 1153ZM565
+291Q615 291 660 349T733 506T760 698Q760 842 680 842Q631 842 584 783T508 628T479 434Q479 291 565 291Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="895" d="M901 1153Q957 1153 981 1145L897 762Q843 784 774 784Q671 784 610 714T516 498L410 0H23L262 1133H571L553 944H561Q626 1056 702 1104T901 1153Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="1028" d="M891 393Q891 194 761 87T387 -20Q165 -20 31 43V354Q123 304 202 284T362 264Q430 264 464 282T498 334Q498 369 472 394T342 479Q236 537 188 612T139 795Q139 967 260 1060T604 1153Q716 1153 808
+1127T987 1047L866 795Q800 838 730 863T608 889Q532 889 532 821Q532 792 563 770T666 713Q891 601 891 393Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="936" d="M567 291Q633 291 750 338V47Q614 -20 410 -20Q262 -20 186 43T109 252Q109 328 133 440L217 842H63L104 1032L322 1120L459 1360H717L668 1133H956L893 842H604L520 459Q504 382 504 354Q504 291 567 291Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1274" d="M487 375Q487 331 509 310T563 289Q622 289 670 367T748 582L864 1133H1251L1012 0H702L715 158H707Q653 65 579 23T395 -20Q254 -20 175 65T96 301Q96 407 121 530L248 1133H635L506 516Q487 434 487 375Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="1114" d="M233 0L88 1133H473L500 530Q500 457 492 412H500Q501 426 518 475T554 565T819 1133H1233L621 0H233Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1686" d="M840 0L860 449Q862 522 871 658T893 877H885Q825 644 764 487L575 0H168L102 1133H467V621Q467 439 459 362H467Q513 539 555 657L727 1133H1155L1135 657Q1126 528 1102 362H1110Q1117 384 1125 409T1174
+549T1415 1133H1800L1262 0H840Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1159" d="M545 328L334 0H-119L354 578L147 1133H569L645 819L831 1133H1290L825 557L1053 0H625L545 328Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1114" d="M82 1133H471L514 571L516 509V422H524Q561 554 574 587T813 1133H1229L559 -143Q463 -328 336 -410T25 -492Q-67 -492 -129 -475V-168Q-83 -180 -20 -180Q67 -180 122 -144T221 -29L244 12L82 1133Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="993" d="M803 0H-41L2 221L504 834H156L223 1133H1034L981 891L485 299H868L803 0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="735" d="M432 45Q432 -43 545 -43V-324H463Q280 -324 191 -256T102 -47Q102 16 117 80L154 254Q160 278 160 297Q160 372 118 403T-16 434L37 721Q156 721 212 759T289 893L344 1139Q372 1263 420 1329T550
+1428T754 1462H883L821 1182Q740 1180 701 1153T645 1053L592 795Q572 699 507 644T313 573V565Q403 536 443 478T483 332Q483 315 473 258L438 94Q432 64 432 45Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1159" d="M442 1548H713V-465H442V1548Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="735" d="M-49 -324H-123V-43Q-50 -40 -14 -30T40 4T70 86L123 344Q144 443 211 498T401 565V573Q231 628 231 807Q231 819 242 881L276 1044Q283 1073 283 1094Q283 1182 147 1182L201 1462H262Q430 1462
+521 1392T612 1188Q612 1119 598 1059L561 885Q555 859 555 842Q555 776 599 742T748 707L690 420Q569 420 508 380T426 246L371 0Q334 -171 234 -247T-49 -324Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1159" d="M336 645Q284 645 222 615T96 524V809Q203 918 358 918Q419 918 468 907T621 854Q688 826 735 813T834 799Q885 799 949 831T1071 920V635Q964 526 809 526Q747 526 696 538T547 590Q472 621
+429 633T336 645Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="623" d="M145 608H473L317 -338H-109L145 608ZM586 1001Q586 894 521 831T342 768Q255 768 209 808T162 924Q162 1033 226 1093T399 1153Q488 1153 537 1114T586 1001Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1188" d="M602 -20H373L424 188Q154 262 154 586Q154 892 294 1096T666 1335L698 1483H928L895 1333Q1017 1314 1126 1257L1004 971Q925 1008 876 1019T778 1030Q715 1030 663 981T579 834T547 627Q547
+548 578 514T668 479Q740 479 808 504T950 569V258Q805 180 643 168L602 -20Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1188" d="M850 1483Q939 1483 1027 1464T1223 1397L1079 1098Q1013 1129 965 1145T866 1161Q831 1161 810 1137T774 1044L750 930H1001L944 651H692L672 557Q656 483 603 424T469 330H1073L1001 0H-18L45
+313Q121 334 165 362T234 431T276 555L297 651H109L166 930H354L377 1059Q403 1208 462 1302T612 1439T850 1483Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1188" d="M190 723Q190 815 236 907L106 1032L291 1217L418 1092Q514 1135 600 1135Q696 1135 784 1087L909 1217L1098 1038L969 909Q1012 827 1012 723Q1012 629 969 537L1092 414L909 231L784 354Q688
+313 600 313Q492 313 414 352L291 233L109 416L236 539Q190 629 190 723ZM451 723Q451 659 494 615T600 571Q665 571 710 615T756 723Q756 784 712 829T600 874Q536 874 494 830T451 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1188" d="M639 975L932 1462H1325L836 729H1020L975 524H752L725 395H948L905 190H682L641 0H262L303 190H76L119 395H346L371 524H145L190 729H369L182 1462H567L639 975Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1159" d="M444 1546H715V705H444V1546ZM444 395H715V-444H444V395Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="1036" d="M158 776Q158 860 204 932T336 1057Q298 1095 277 1146T256 1249Q256 1409 372 1493T711 1577Q895 1577 1071 1475L971 1251Q880 1309 812 1330T678 1352Q618 1352 593 1330T567 1278Q567
+1245 581 1225T627 1182T717 1133Q961 1020 961 821Q961 722 923 650T793 526Q825 488 843 436T862 326Q862 156 735 66T377 -25Q267 -25 180 0T37 70V319Q122 267 210 233T395 199Q464 199 504 227T545 303Q545 341 514 373T410 446Q280 517 219 598T158 776ZM524
+940Q487 921 465 886T442 817Q442 774 479 733T604 643Q678 694 678 770Q678 824 642 865T524 940Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1135" d="M336 1384Q336 1571 537 1571Q707 1571 707 1446Q707 1257 506 1257Q418 1257 377 1288T336 1384ZM823 1384Q823 1571 1024 1571Q1192 1571 1192 1446Q1192 1349 1143 1303T993 1257Q905
+1257 864 1288T823 1384Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1688" d="M913 971Q833 971 787 910T741 731Q741 603 785 546T920 489Q1058 489 1178 557V326Q1052 262 905 262Q692 262 577 387T461 735Q461 955 574 1076T895 1198Q1061 1198 1227 1116L1135 911Q1021
+971 913 971ZM113 731Q113 933 214 1109T490 1384T864 1483Q1064 1483 1239 1383T1515 1108T1616 731Q1616 534 1519 361T1247 84T864 -20Q658 -20 484 82T212 359T113 731ZM276 731Q276 573 354 437T569 222T864 143Q1021 143 1157 220T1372 434T1452 731Q1452
+889 1374 1025T1159 1240T864 1319Q706 1319 569 1240T354 1024T276 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="827" d="M483 1475Q547 1475 594 1455T696 1376H705L741 1462H940L770 741H575L584 827H575Q486 729 352 729Q292 729 244 760T168 852T139 1001Q139 1121 184 1233T307 1410T483 1475ZM481 911Q527
+911 560 949T611 1049T629 1178Q629 1231 610 1261T557 1292Q518 1292 485 1252T432 1144T412 1012Q412 964 431 938T481 911Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1276" d="M61 563L469 1081L733 877L467 543L578 213L244 76L61 553V563ZM608 592L1032 1087L1292 877L1014 571L1137 213L803 76L608 582V592Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1159" d="M1057 858V238H786V586H82V858H1057Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="674" d="M23 393L86 705H639L575 393H23Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1688" d="M1245 918Q1245 827 1201 765T1061 668L1272 313H987L827 633H815V313H535V1188H825Q1039 1188 1142 1118T1245 918ZM815 809H825Q903 809 933 831T963 907Q963 961 928 977T823 993H815V809ZM113
+731Q113 933 214 1109T490 1384T864 1483Q1064 1483 1239 1383T1515 1108T1616 731Q1616 534 1519 361T1247 84T864 -20Q658 -20 484 82T212 359T113 731ZM276 731Q276 573 354 437T569 222T864 143Q1021 143 1157 220T1372 434T1452 731Q1452 889 1374 1025T1159
+1240T864 1319Q706 1319 569 1240T354 1024T276 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="922" d="M1112 1554H183L240 1800H1170L1112 1554Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="864" d="M166 1114Q166 1211 215 1296T350 1432T535 1483Q633 1483 719 1433T854 1297T903 1114Q903 1016 854 931T718 798T535 750Q436 750 350 799T215 932T166 1114ZM403 1114Q403 1063 442 1025T535
+987Q587 987 626 1025T666 1114Q666 1167 628 1207T535 1247Q480 1247 442 1208T403 1114Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1159" d="M455 694H102V965H455V1317H725V965H1077V694H725V344H455V694ZM102 0V270H1077V0H102Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="848" d="M727 584H23L66 788L342 999Q450 1082 486 1123T522 1198Q522 1249 459 1249Q424 1249 374 1231T270 1169L152 1360Q236 1425 324 1454T541 1483Q675 1483 759 1422T844 1266Q844 1196
+813 1137T711 1016T459 840H778L727 584Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="848" d="M821 1272Q821 1181 766 1126T590 1042V1034Q682 1011 719 965T756 852Q756 725 652 647T377 569Q271 569 200 585T66 639V864Q129 821 197 802T322 782Q473 782 473 862Q473 930 360
+930H240L283 1124H379Q450 1124 493 1145T537 1212Q537 1240 515 1255T461 1270Q382 1270 276 1204L176 1386Q259 1438 337 1459T518 1481Q655 1481 738 1424T821 1272Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1135" d="M453 1264Q576 1366 735 1569H1174V1554Q1129 1500 983 1397T737 1241H453V1264Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1288" d="M545 -20Q443 -20 414 57H406Q396 -77 358 -246L305 -492H-82L262 1133H649L520 516Q502 438 502 375Q502 331 524 310T578 289Q630 289 660 315T714 402T762 582L879 1133H1266L1026 0H737L743
+123H735Q667 -20 545 -20Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1317" d="M1186 -260H995V1327H838V-260H647V559Q593 541 522 541Q306 541 204 666T102 1042Q102 1298 209 1427T553 1556H1186V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="627" d="M115 684Q115 790 180 852T358 915Q440 915 489 875T539 760Q539 643 474 587T295 530Q209 530 162 570T115 684Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="383" d="M287 -236Q287 -357 205 -424T-29 -492Q-144 -492 -221 -463V-258Q-191 -267 -143 -276T-70 -285Q-2 -285 -2 -236Q-2 -163 -147 -135L-72 0H133L109 -41Q287 -78 287 -236Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="848" d="M541 1462H793L606 584H289L371 948Q392 1050 426 1155L352 1096L233 1018L115 1202L541 1462Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="817" d="M602 1182Q602 1227 591 1250T547 1274Q487 1274 450 1201T412 1016Q412 932 467 932Q526 932 564 1002T602 1182ZM874 1182Q874 1048 823 945T674 785T442 727Q298 727 219 802T139 1004Q139
+1217 255 1348T573 1479Q716 1479 795 1400T874 1182Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1276" d="M1214 561L807 43L543 248L809 582L698 911L1032 1049L1214 571V561ZM668 532L244 35L-14 248L262 553L141 911L473 1049L668 543V532Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1991" d="M1720 122H1607L1581 -1H1292L1319 122H921L952 300L1442 877H1767L1648 320H1761L1720 122ZM1360 320Q1422 559 1433 594T1448 638Q1435 620 1413 590T1198 320H1360ZM1575 1462L492 0H195L1284
+1462H1575ZM761 1462H1013L826 584H509L591 948Q612 1050 646 1155L572 1096L453 1018L335 1202L761 1462Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1991" d="M1706 -1H1002L1045 203L1321 414Q1429 497 1465 538T1501 613Q1501 664 1438 664Q1403 664 1353 646T1249 584L1131 775Q1215 840 1303 869T1520 898Q1654 898 1738 837T1823 681Q1823 611
+1792 552T1690 431T1438 255H1757L1706 -1ZM786 1462H1038L851 584H534L616 948Q637 1050 671 1155L597 1096L478 1018L360 1202L786 1462ZM1599 1462L516 0H219L1308 1462H1599Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1991" d="M1767 122H1654L1628 -1H1339L1366 122H968L999 300L1489 877H1814L1695 320H1808L1767 122ZM1407 320Q1469 559 1480 594T1495 638Q1482 620 1460 590T1245 320H1407ZM950 1272Q950
+1181 895 1126T719 1042V1034Q811 1011 848 965T885 852Q885 725 781 647T506 569Q400 569 329 585T195 639V864Q258 821 326 802T451 782Q602 782 602 862Q602 930 489 930H369L412 1124H508Q579 1124 622 1145T666 1212Q666 1240 644 1255T590 1270Q511 1270
+405 1204L305 1386Q388 1438 466 1459T647 1481Q784 1481 867 1424T950 1272ZM1743 1462L660 0H363L1452 1462H1743Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="999" d="M721 612L709 549Q694 467 666 409T594 305T455 197Q366 139 330 102T293 25Q293 -12 315 -28T383 -45Q507 -45 696 63L815 -219Q588 -354 354 -354Q153 -354 35 -264T-84 -16Q-84 73
+-57 139T21 258T193 385Q293 445 335 486T391 569L406 612H721ZM801 1001Q801 894 736 831T557 768Q470 768 424 808T377 924Q377 1033 441 1093T614 1153Q703 1153 752 1114T801 1001Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1384" d="M858 274H410L285 0H-121L623 1462H1126L1249 0H868L858 274ZM553 586H846L829 1010L827 1096Q827 1171 831 1227Q807 1141 770 1061L553 586ZM1041 1579H805Q723 1654 653 1738T551 1886V1907H947Q976
+1750 1041 1604V1579Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1384" d="M858 274H410L285 0H-121L623 1462H1126L1249 0H868L858 274ZM553 586H846L829 1010L827 1096Q827 1171 831 1227Q807 1141 770 1061L553 586ZM709 1602Q832 1704 991 1907H1430V1892Q1385
+1838 1239 1735T993 1579H709V1602Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1384" d="M858 274H410L285 0H-121L623 1462H1126L1249 0H868L858 274ZM553 586H846L829 1010L827 1096Q827 1171 831 1227Q807 1141 770 1061L553 586ZM1335 1579H1069Q1023 1620 913 1753Q773
+1643 673 1579H399V1602Q478 1674 569 1764T708 1907H1155Q1181 1848 1233 1758T1335 1602V1579Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1384" d="M858 274H410L285 0H-121L623 1462H1126L1249 0H868L858 274ZM553 586H846L829 1010L827 1096Q827 1171 831 1227Q807 1141 770 1061L553 586ZM1043 1577Q1010 1577 978 1585T917 1607T871
+1630Q798 1675 744 1675Q713 1675 684 1648T647 1575H459Q491 1747 567 1832T772 1917Q806 1917 831 1911T926 1868Q957 1851 992 1835T1059 1819Q1137 1819 1174 1919H1364Q1330 1747 1252 1662T1043 1577Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1384" d="M858 274H410L285 0H-121L623 1462H1126L1249 0H868L858 274ZM553 586H846L829 1010L827 1096Q827 1171 831 1227Q807 1141 770 1061L553 586ZM502 1722Q502 1909 703 1909Q873 1909 873
+1784Q873 1595 672 1595Q584 1595 543 1626T502 1722ZM989 1722Q989 1909 1190 1909Q1358 1909 1358 1784Q1358 1687 1309 1641T1159 1595Q1071 1595 1030 1626T989 1722Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1384" d="M858 274H410L285 0H-121L623 1462H1126L1249 0H868L858 274ZM553 586H846L829 1010L827 1096Q827 1171 831 1227Q807 1141 770 1061L553 586ZM1145 1552Q1145 1439 1071 1369T877 1298Q756
+1298 682 1366T608 1550Q608 1664 681 1734T877 1804Q995 1804 1070 1734T1145 1552ZM965 1550Q965 1588 939 1612T877 1636Q841 1636 815 1612T788 1550Q788 1513 811 1490T877 1466Q916 1466 940 1491T965 1550Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1937" d="M1688 0H819L877 274H459L289 0H-125L784 1462H1997L1931 1145H1454L1407 915H1851L1780 598H1335L1278 322H1755L1688 0ZM948 602L1061 1145H993L662 602H948Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1290" d="M881 1159Q773 1159 686 1081T550 866T500 569Q500 435 556 369T717 303Q800 303 885 323T1085 393V70Q882 -20 645 -20Q385 -20 245 128T104 549Q104 815 205 1037T481 1372T881 1485Q1146
+1485 1362 1354L1214 1049Q1121 1104 1043 1131T881 1159ZM813 -236Q813 -357 731 -424T497 -492Q382 -492 305 -463V-258Q335 -267 383 -276T456 -285Q524 -285 524 -236Q524 -163 379 -135L454 0H659L635 -41Q813 -78 813 -236Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1151" d="M901 0H33L342 1462H1210L1145 1145H668L621 915H1065L993 598H549L492 322H969L901 0ZM933 1579H697Q615 1654 545 1738T443 1886V1907H839Q868 1750 933 1604V1579Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1151" d="M901 0H33L342 1462H1210L1145 1145H668L621 915H1065L993 598H549L492 322H969L901 0ZM578 1602Q701 1704 860 1907H1299V1892Q1254 1838 1108 1735T862 1579H578V1602Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1151" d="M901 0H33L342 1462H1210L1145 1145H668L621 915H1065L993 598H549L492 322H969L901 0ZM1239 1579H973Q927 1620 817 1753Q677 1643 577 1579H303V1602Q382 1674 473 1764T612 1907H1059Q1085
+1848 1137 1758T1239 1602V1579Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1151" d="M901 0H33L342 1462H1210L1145 1145H668L621 915H1065L993 598H549L492 322H969L901 0ZM383 1722Q383 1909 584 1909Q754 1909 754 1784Q754 1595 553 1595Q465 1595 424 1626T383 1722ZM870
+1722Q870 1909 1071 1909Q1239 1909 1239 1784Q1239 1687 1190 1641T1040 1595Q952 1595 911 1626T870 1722Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="727" d="M31 0L340 1462H737L428 0H31ZM749 1579H513Q431 1654 361 1738T259 1886V1907H655Q684 1750 749 1604V1579Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="727" d="M31 0L340 1462H737L428 0H31ZM345 1602Q468 1704 627 1907H1066V1892Q1021 1838 875 1735T629 1579H345V1602Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="727" d="M31 0L340 1462H737L428 0H31ZM1015 1579H749Q703 1620 593 1753Q453 1643 353 1579H79V1602Q158 1674 249 1764T388 1907H835Q861 1848 913 1758T1015 1602V1579Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="727" d="M31 0L340 1462H737L428 0H31ZM159 1722Q159 1909 360 1909Q530 1909 530 1784Q530 1595 329 1595Q241 1595 200 1626T159 1722ZM646 1722Q646 1909 847 1909Q1015 1909 1015 1784Q1015 1687
+966 1641T816 1595Q728 1595 687 1626T646 1722Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1401" d="M80 883H219L342 1462H772Q1043 1462 1190 1319T1337 909Q1337 475 1124 238T526 0H33L152 563H10L80 883ZM563 324Q674 324 761 395T895 599T942 901Q942 1017 888 1080T737 1143H666L610 883H788L719
+563H543L494 324H563Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1618" d="M1319 0H864L575 1028H567Q538 737 510 610L381 0H33L342 1462H797L1083 479H1092Q1121 715 1149 850L1280 1462H1628L1319 0ZM1137 1577Q1104 1577 1072 1585T1011 1607T965 1630Q892 1675
+838 1675Q807 1675 778 1648T741 1575H553Q585 1747 661 1832T866 1917Q900 1917 925 1911T1020 1868Q1051 1851 1086 1835T1153 1819Q1231 1819 1268 1919H1458Q1424 1747 1346 1662T1137 1577Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1509" d="M897 1485Q1157 1485 1301 1337T1446 922Q1446 656 1347 436T1072 98T666 -20Q397 -20 251 129T104 543Q104 808 207 1030T487 1368T897 1485ZM1051 918Q1051 1032 1003 1096T864 1161Q765
+1161 682 1077T550 846T500 545Q500 303 700 303Q795 303 876 386T1004 610T1051 918ZM1102 1579H866Q784 1654 714 1738T612 1886V1907H1008Q1037 1750 1102 1604V1579Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1509" d="M897 1485Q1157 1485 1301 1337T1446 922Q1446 656 1347 436T1072 98T666 -20Q397 -20 251 129T104 543Q104 808 207 1030T487 1368T897 1485ZM1051 918Q1051 1032 1003 1096T864 1161Q765
+1161 682 1077T550 846T500 545Q500 303 700 303Q795 303 876 386T1004 610T1051 918ZM717 1602Q840 1704 999 1907H1438V1892Q1393 1838 1247 1735T1001 1579H717V1602Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1509" d="M897 1485Q1157 1485 1301 1337T1446 922Q1446 656 1347 436T1072 98T666 -20Q397 -20 251 129T104 543Q104 808 207 1030T487 1368T897 1485ZM1051 918Q1051 1032 1003 1096T864 1161Q765
+1161 682 1077T550 846T500 545Q500 303 700 303Q795 303 876 386T1004 610T1051 918ZM1368 1579H1102Q1056 1620 946 1753Q806 1643 706 1579H432V1602Q511 1674 602 1764T741 1907H1188Q1214 1848 1266 1758T1368 1602V1579Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1509" d="M897 1485Q1157 1485 1301 1337T1446 922Q1446 656 1347 436T1072 98T666 -20Q397 -20 251 129T104 543Q104 808 207 1030T487 1368T897 1485ZM1051 918Q1051 1032 1003 1096T864 1161Q765
+1161 682 1077T550 846T500 545Q500 303 700 303Q795 303 876 386T1004 610T1051 918ZM1073 1577Q1040 1577 1008 1585T947 1607T901 1630Q828 1675 774 1675Q743 1675 714 1648T677 1575H489Q521 1747 597 1832T802 1917Q836 1917 861 1911T956 1868Q987 1851
+1022 1835T1089 1819Q1167 1819 1204 1919H1394Q1360 1747 1282 1662T1073 1577Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1509" d="M897 1485Q1157 1485 1301 1337T1446 922Q1446 656 1347 436T1072 98T666 -20Q397 -20 251 129T104 543Q104 808 207 1030T487 1368T897 1485ZM1051 918Q1051 1032 1003 1096T864 1161Q765
+1161 682 1077T550 846T500 545Q500 303 700 303Q795 303 876 386T1004 610T1051 918ZM512 1722Q512 1909 713 1909Q883 1909 883 1784Q883 1595 682 1595Q594 1595 553 1626T512 1722ZM999 1722Q999 1909 1200 1909Q1368 1909 1368 1784Q1368 1687 1319 1641T1169
+1595Q1081 1595 1040 1626T999 1722Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1159" d="M387 723L102 1010L289 1200L578 915L870 1200L1061 1016L768 723L1055 432L870 244L578 532L289 246L104 434L387 723Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1509" d="M879 1485Q1061 1485 1194 1413L1286 1528L1442 1409L1343 1284Q1446 1141 1446 922Q1446 664 1348 442T1077 100T684 -20Q492 -20 360 49L254 -86L94 31L211 176Q104 317 104 543Q104 805
+205 1027T480 1367T879 1485ZM500 539L967 1128Q922 1161 852 1161Q758 1161 677 1079T548 855T500 549V539ZM700 303Q795 303 876 384T1004 607T1051 915L586 332Q632 303 700 303Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1436" d="M1450 1462L1251 530Q1192 249 1026 115T575 -20Q441 -20 339 35T181 189T125 410Q125 474 137 539L336 1462H727L532 549Q518 481 518 434Q518 307 639 307Q733 307 786 371T868 569L1059
+1462H1450ZM1045 1579H809Q727 1654 657 1738T555 1886V1907H951Q980 1750 1045 1604V1579Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1436" d="M1450 1462L1251 530Q1192 249 1026 115T575 -20Q441 -20 339 35T181 189T125 410Q125 474 137 539L336 1462H727L532 549Q518 481 518 434Q518 307 639 307Q733 307 786 371T868 569L1059
+1462H1450ZM725 1602Q848 1704 1007 1907H1446V1892Q1401 1838 1255 1735T1009 1579H725V1602Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1436" d="M1450 1462L1251 530Q1192 249 1026 115T575 -20Q441 -20 339 35T181 189T125 410Q125 474 137 539L336 1462H727L532 549Q518 481 518 434Q518 307 639 307Q733 307 786 371T868 569L1059
+1462H1450ZM1376 1579H1110Q1064 1620 954 1753Q814 1643 714 1579H440V1602Q519 1674 610 1764T749 1907H1196Q1222 1848 1274 1758T1376 1602V1579Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1436" d="M1450 1462L1251 530Q1192 249 1026 115T575 -20Q441 -20 339 35T181 189T125 410Q125 474 137 539L336 1462H727L532 549Q518 481 518 434Q518 307 639 307Q733 307 786 371T868 569L1059
+1462H1450ZM533 1722Q533 1909 734 1909Q904 1909 904 1784Q904 1595 703 1595Q615 1595 574 1626T533 1722ZM1020 1722Q1020 1909 1221 1909Q1389 1909 1389 1784Q1389 1687 1340 1641T1190 1595Q1102 1595 1061 1626T1020 1722Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1237" d="M657 920L969 1462H1405L793 567L672 0H281L401 567L164 1462H567L657 920ZM615 1602Q738 1704 897 1907H1336V1892Q1291 1838 1145 1735T899 1579H615V1602Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1276" d="M342 1462H733L688 1251Q939 1251 1073 1137T1208 811Q1208 561 1038 418T567 274H481L424 0H33L342 1462ZM551 594H614Q708 594 762 643T817 799Q817 857 776 894T668 932H623L551 594Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1460" d="M-53 -492Q-163 -492 -260 -465V-162Q-197 -180 -143 -180Q-69 -180 -32 -150T20 -55L264 1096Q317 1345 465 1456T883 1567Q1126 1567 1262 1468T1399 1194Q1399 1076 1348 996T1186 864Q1069
+808 1069 762Q1069 733 1089 712T1177 655Q1272 604 1317 537T1362 373Q1362 256 1304 168T1134 30T862 -20Q701 -20 588 25V324Q647 295 724 279T858 262Q917 262 945 284T973 334Q973 366 954 387T840 471Q752 527 713 582T674 713Q674 805 716 863T881 989Q952
+1029 981 1065T1010 1145Q1010 1203 969 1233T852 1264Q774 1264 720 1214T645 1067L393 -117Q350 -309 240 -400T-53 -492Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1243" d="M565 291Q615 291 660 349T733 506T760 698Q760 763 740 802T678 842Q602 842 541 716T479 434Q479 291 565 291ZM981 0H672L682 123H674Q618 45 553 13T406 -20Q248 -20 166 91T84 412Q84
+591 157 777T341 1058T588 1153Q672 1153 736 1116T850 993H858L911 1133H1221L981 0ZM1146 1241H910Q828 1316 758 1400T656 1548V1569H1052Q1081 1412 1146 1266V1241Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1243" d="M565 291Q615 291 660 349T733 506T760 698Q760 763 740 802T678 842Q602 842 541 716T479 434Q479 291 565 291ZM981 0H672L682 123H674Q618 45 553 13T406 -20Q248 -20 166 91T84 412Q84
+591 157 777T341 1058T588 1153Q672 1153 736 1116T850 993H858L911 1133H1221L981 0ZM531 1264Q654 1366 813 1569H1252V1554Q1207 1500 1061 1397T815 1241H531V1264Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1243" d="M565 291Q615 291 660 349T733 506T760 698Q760 763 740 802T678 842Q602 842 541 716T479 434Q479 291 565 291ZM981 0H672L682 123H674Q618 45 553 13T406 -20Q248 -20 166 91T84 412Q84
+591 157 777T341 1058T588 1153Q672 1153 736 1116T850 993H858L911 1133H1221L981 0ZM1198 1494H932Q886 1535 776 1668Q636 1558 536 1494H262V1517Q341 1589 432 1679T571 1822H1018Q1044 1763 1096 1673T1198 1517V1494Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1243" d="M565 291Q615 291 660 349T733 506T760 698Q760 763 740 802T678 842Q602 842 541 716T479 434Q479 291 565 291ZM981 0H672L682 123H674Q618 45 553 13T406 -20Q248 -20 166 91T84 412Q84
+591 157 777T341 1058T588 1153Q672 1153 736 1116T850 993H858L911 1133H1221L981 0ZM885 1239Q852 1239 820 1247T759 1269T713 1292Q640 1337 586 1337Q555 1337 526 1310T489 1237H301Q333 1409 409 1494T614 1579Q648 1579 673 1573T768 1530Q799 1513 834
+1497T901 1481Q979 1481 1016 1581H1206Q1172 1409 1094 1324T885 1239Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1243" d="M565 291Q615 291 660 349T733 506T760 698Q760 763 740 802T678 842Q602 842 541 716T479 434Q479 291 565 291ZM981 0H672L682 123H674Q618 45 553 13T406 -20Q248 -20 166 91T84 412Q84
+591 157 777T341 1058T588 1153Q672 1153 736 1116T850 993H858L911 1133H1221L981 0ZM587 1384Q587 1571 788 1571Q958 1571 958 1446Q958 1257 757 1257Q669 1257 628 1288T587 1384ZM1074 1384Q1074 1571 1275 1571Q1443 1571 1443 1446Q1443 1349 1394 1303T1244
+1257Q1156 1257 1115 1288T1074 1384Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1243" d="M565 291Q615 291 660 349T733 506T760 698Q760 763 740 802T678 842Q602 842 541 716T479 434Q479 291 565 291ZM981 0H672L682 123H674Q618 45 553 13T406 -20Q248 -20 166 91T84 412Q84 591
+157 777T341 1058T588 1153Q672 1153 736 1116T850 993H858L911 1133H1221L981 0ZM1281 1491Q1281 1378 1207 1308T1013 1237Q892 1237 818 1305T744 1489Q744 1603 817 1673T1013 1743Q1131 1743 1206 1673T1281 1491ZM1101 1489Q1101 1527 1075 1551T1013 1575Q977
+1575 951 1551T924 1489Q924 1452 947 1429T1013 1405Q1052 1405 1076 1430T1101 1489Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1788" d="M1192 -20Q1013 -20 930 92L899 0H672L682 123H674Q618 45 553 13T406 -20Q248 -20 166 91T84 412Q84 591 157 777T341 1058T588 1153Q680 1153 740 1115T850 993H858L911 1133H1118V1038Q1176
+1094 1250 1123T1397 1153Q1554 1153 1648 1067T1743 838Q1743 637 1586 530T1135 422H1075V406Q1075 258 1239 258Q1318 258 1394 281T1567 356V82Q1468 24 1385 2T1192 -20ZM565 291Q641 291 699 414T758 698Q758 763 735 802T670 842Q621 842 577 785T506 630T479
+434Q479 291 565 291ZM1292 891Q1231 891 1178 822T1114 664H1143Q1252 664 1314 705T1376 815Q1376 847 1356 869T1292 891Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="1032" d="M506 -20Q307 -20 196 100T84 442Q84 643 160 806T375 1061T690 1153Q885 1153 1057 1073L934 786Q801 846 709 846Q647 846 594 798T507 655T473 467Q473 376 503 334T598 291Q670 291 737
+314T881 377V70Q801 26 713 3T506 -20ZM684 -236Q684 -357 602 -424T368 -492Q253 -492 176 -463V-258Q206 -267 254 -276T327 -285Q395 -285 395 -236Q395 -163 250 -135L325 0H530L506 -41Q684 -78 684 -236Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1186" d="M532 -20Q320 -20 202 98T84 428Q84 639 167 808T396 1065T733 1153Q923 1153 1032 1067T1141 838Q1141 637 985 530T532 422H473V406Q473 258 637 258Q716 258 792 281T965 356V82Q853 25
+756 3T532 -20ZM690 891Q629 891 576 822T512 664H541Q650 664 712 705T774 815Q774 847 754 869T690 891ZM1175 1241H939Q857 1316 787 1400T685 1548V1569H1081Q1110 1412 1175 1266V1241Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1186" d="M532 -20Q320 -20 202 98T84 428Q84 639 167 808T396 1065T733 1153Q923 1153 1032 1067T1141 838Q1141 637 985 530T532 422H473V406Q473 258 637 258Q716 258 792 281T965 356V82Q853 25
+756 3T532 -20ZM690 891Q629 891 576 822T512 664H541Q650 664 712 705T774 815Q774 847 754 869T690 891ZM523 1264Q646 1366 805 1569H1244V1554Q1199 1500 1053 1397T807 1241H523V1264Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1186" d="M532 -20Q320 -20 202 98T84 428Q84 639 167 808T396 1065T733 1153Q923 1153 1032 1067T1141 838Q1141 637 985 530T532 422H473V406Q473 258 637 258Q716 258 792 281T965 356V82Q853
+25 756 3T532 -20ZM690 891Q629 891 576 822T512 664H541Q650 664 712 705T774 815Q774 847 754 869T690 891ZM1213 1241H947Q901 1282 791 1415Q651 1305 551 1241H277V1264Q356 1336 447 1426T586 1569H1033Q1059 1510 1111 1420T1213 1264V1241Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1186" d="M532 -20Q320 -20 202 98T84 428Q84 639 167 808T396 1065T733 1153Q923 1153 1032 1067T1141 838Q1141 637 985 530T532 422H473V406Q473 258 637 258Q716 258 792 281T965 356V82Q853
+25 756 3T532 -20ZM690 891Q629 891 576 822T512 664H541Q650 664 712 705T774 815Q774 847 754 869T690 891ZM336 1384Q336 1571 537 1571Q707 1571 707 1446Q707 1257 506 1257Q418 1257 377 1288T336 1384ZM823 1384Q823 1571 1024 1571Q1192 1571 1192 1446Q1192
+1349 1143 1303T993 1257Q905 1257 864 1288T823 1384Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="666" d="M410 0H23L262 1133H651L410 0ZM657 1241H421Q339 1316 269 1400T167 1548V1569H563Q592 1412 657 1266V1241Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="666" d="M410 0H23L262 1133H651L410 0ZM294 1264Q417 1366 576 1569H1015V1554Q970 1500 824 1397T578 1241H294V1264Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="666" d="M410 0H23L262 1133H651L410 0ZM929 1241H663Q617 1282 507 1415Q367 1305 267 1241H-7V1264Q72 1336 163 1426T302 1569H749Q775 1510 827 1420T929 1264V1241Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="666" d="M410 0H23L262 1133H651L410 0ZM91 1384Q91 1571 292 1571Q462 1571 462 1446Q462 1257 261 1257Q173 1257 132 1288T91 1384ZM578 1384Q578 1571 779 1571Q947 1571 947 1446Q947 1349 898
+1303T748 1257Q660 1257 619 1288T578 1384Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1155" d="M580 1319Q551 1344 485 1393L600 1573Q736 1512 831 1436L1069 1546L1151 1380L967 1290Q1038 1202 1081 1041T1124 717Q1124 357 970 169T520 -20Q319 -20 202 99T84 426Q84 596 146 731T325
+940T592 1014Q722 1014 795 926L805 930Q786 1072 715 1176L442 1049L360 1217L580 1319ZM555 260Q608 260 648 304T711 423T735 571Q735 647 717 690T651 733Q570 733 521 632T471 408Q471 260 555 260Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1274" d="M786 760Q786 803 764 824T711 846Q654 846 606 775T526 553L410 0H23L262 1133H571L559 975H567Q622 1070 696 1111T879 1153Q1020 1153 1099 1068T1178 831Q1178 725 1153 602L1026 0H639L768
+618Q786 696 786 760ZM903 1239Q870 1239 838 1247T777 1269T731 1292Q658 1337 604 1337Q573 1337 544 1310T507 1237H319Q351 1409 427 1494T632 1579Q666 1579 691 1573T786 1530Q817 1513 852 1497T919 1481Q997 1481 1034 1581H1224Q1190 1409 1112 1324T903
+1239Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1243" d="M520 -20Q311 -20 198 93T84 416Q84 626 163 795T387 1059T723 1153Q932 1153 1045 1040T1159 717Q1159 507 1080 338T856 74T520 -20ZM678 862Q596 862 538 723T479 403Q479 270 563 270Q644
+270 704 409T764 729Q764 795 741 828T678 862ZM1150 1241H914Q832 1316 762 1400T660 1548V1569H1056Q1085 1412 1150 1266V1241Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1243" d="M520 -20Q311 -20 198 93T84 416Q84 626 163 795T387 1059T723 1153Q932 1153 1045 1040T1159 717Q1159 507 1080 338T856 74T520 -20ZM678 862Q596 862 538 723T479 403Q479 270 563 270Q644
+270 704 409T764 729Q764 795 741 828T678 862ZM533 1264Q656 1366 815 1569H1254V1554Q1209 1500 1063 1397T817 1241H533V1264Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1243" d="M520 -20Q311 -20 198 93T84 416Q84 626 163 795T387 1059T723 1153Q932 1153 1045 1040T1159 717Q1159 507 1080 338T856 74T520 -20ZM678 862Q596 862 538 723T479 403Q479 270 563
+270Q644 270 704 409T764 729Q764 795 741 828T678 862ZM1439 1241H1173Q1127 1282 1017 1415Q877 1305 777 1241H503V1264Q582 1336 673 1426T812 1569H1259Q1285 1510 1337 1420T1439 1264V1241Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1243" d="M520 -20Q311 -20 198 93T84 416Q84 626 163 795T387 1059T723 1153Q932 1153 1045 1040T1159 717Q1159 507 1080 338T856 74T520 -20ZM678 862Q596 862 538 723T479 403Q479 270 563 270Q644
+270 704 409T764 729Q764 795 741 828T678 862ZM1117 1239Q1084 1239 1052 1247T991 1269T945 1292Q872 1337 818 1337Q787 1337 758 1310T721 1237H533Q565 1409 641 1494T846 1579Q880 1579 905 1573T1000 1530Q1031 1513 1066 1497T1133 1481Q1211 1481 1248
+1581H1438Q1404 1409 1326 1324T1117 1239Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1243" d="M520 -20Q311 -20 198 93T84 416Q84 626 163 795T387 1059T723 1153Q932 1153 1045 1040T1159 717Q1159 507 1080 338T856 74T520 -20ZM678 862Q596 862 538 723T479 403Q479 270 563 270Q644
+270 704 409T764 729Q764 795 741 828T678 862ZM573 1384Q573 1571 774 1571Q944 1571 944 1446Q944 1257 743 1257Q655 1257 614 1288T573 1384ZM1060 1384Q1060 1571 1261 1571Q1429 1571 1429 1446Q1429 1349 1380 1303T1230 1257Q1142 1257 1101 1288T1060
+1384Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1159" d="M102 586V858H1077V586H102ZM432 373Q432 456 473 500T590 545Q664 545 704 501T745 373Q745 292 704 247T590 201Q516 201 474 247T432 373ZM432 1071Q432 1154 473 1198T590 1243Q664 1243
+704 1199T745 1071Q745 990 704 945T590 899Q516 899 474 945T432 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1286" d="M549 -20Q422 -20 311 29L193 -111L66 -2L178 129Q84 246 84 416Q84 623 165 793T396 1058T743 1153Q879 1153 993 1096L1098 1217L1225 1108L1120 985Q1202 871 1202 717Q1202 509 1121 340T892
+75T549 -20ZM702 877Q635 877 577 822T485 669T449 451L784 848Q749 877 702 877ZM590 260Q697 260 762 361T836 649L518 274Q547 260 590 260Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1274" d="M487 375Q487 331 509 310T563 289Q622 289 670 367T748 582L864 1133H1251L1012 0H702L715 158H707Q653 65 579 23T395 -20Q254 -20 175 65T96 301Q96 407 121 530L248 1133H635L506 516Q487
+434 487 375ZM1158 1241H922Q840 1316 770 1400T668 1548V1569H1064Q1093 1412 1158 1266V1241Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1274" d="M487 375Q487 331 509 310T563 289Q622 289 670 367T748 582L864 1133H1251L1012 0H702L715 158H707Q653 65 579 23T395 -20Q254 -20 175 65T96 301Q96 407 121 530L248 1133H635L506 516Q487
+434 487 375ZM584 1264Q707 1366 866 1569H1305V1554Q1260 1500 1114 1397T868 1241H584V1264Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1274" d="M487 375Q487 331 509 310T563 289Q622 289 670 367T748 582L864 1133H1251L1012 0H702L715 158H707Q653 65 579 23T395 -20Q254 -20 175 65T96 301Q96 407 121 530L248 1133H635L506
+516Q487 434 487 375ZM1221 1241H955Q909 1282 799 1415Q659 1305 559 1241H285V1264Q364 1336 455 1426T594 1569H1041Q1067 1510 1119 1420T1221 1264V1241Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1274" d="M487 375Q487 331 509 310T563 289Q622 289 670 367T748 582L864 1133H1251L1012 0H702L715 158H707Q653 65 579 23T395 -20Q254 -20 175 65T96 301Q96 407 121 530L248 1133H635L506 516Q487
+434 487 375ZM371 1384Q371 1571 572 1571Q742 1571 742 1446Q742 1257 541 1257Q453 1257 412 1288T371 1384ZM858 1384Q858 1571 1059 1571Q1227 1571 1227 1446Q1227 1349 1178 1303T1028 1257Q940 1257 899 1288T858 1384Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1114" d="M82 1133H471L514 571L516 509V422H524Q561 554 574 587T813 1133H1229L559 -143Q463 -328 336 -410T25 -492Q-67 -492 -129 -475V-168Q-83 -180 -20 -180Q67 -180 122 -144T221 -29L244 12L82
+1133ZM492 1264Q615 1366 774 1569H1213V1554Q1168 1500 1022 1397T776 1241H492V1264Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1243" d="M678 842Q628 842 583 785T512 631T485 434Q485 369 508 330T573 291Q621 291 665 348T736 501T764 698Q764 842 678 842ZM836 1153Q987 1153 1073 1041T1159 735Q1159 532 1089 353T904 77T651
+-20Q508 -20 420 125H412Q400 -41 356 -246L305 -492H-82L352 1556H739L690 1325Q652 1150 600 1024H608Q652 1083 704 1118T836 1153Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1114" d="M82 1133H471L514 571L516 509V422H524Q561 554 574 587T813 1133H1229L559 -143Q463 -328 336 -410T25 -492Q-67 -492 -129 -475V-168Q-83 -180 -20 -180Q67 -180 122 -144T221 -29L244
+12L82 1133ZM515 1384Q515 1571 716 1571Q886 1571 886 1446Q886 1257 685 1257Q597 1257 556 1288T515 1384ZM1002 1384Q1002 1571 1203 1571Q1371 1571 1371 1446Q1371 1349 1322 1303T1172 1257Q1084 1257 1043 1288T1002 1384Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="983" d="M33 416L90 690H961L901 416H33Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="1966" d="M33 416L90 690H1944L1884 416H33Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="500" d="M119 961L109 983Q213 1218 367 1462H655Q629 1400 602 1331T467 961H119Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="500" d="M631 1462L639 1440Q547 1228 383 961H94Q128 1042 161 1128T283 1462H631Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="621" d="M432 238L440 215Q346 -8 184 -264H-104Q-79 -205 -54 -141T84 238H432Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="997" d="M614 961L606 983Q715 1229 862 1462H1151Q1102 1347 1051 1204L963 961H614ZM119 961L109 983Q213 1218 367 1462H655Q629 1400 602 1331T467 961H119Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="997" d="M631 1462L639 1440Q547 1228 383 961H94Q143 1078 194 1219L283 1462H631ZM1128 1462L1135 1440Q1096 1349 1025 1214T881 961H592Q633 1059 691 1219L780 1462H1128Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="1122" d="M432 238L440 215Q346 -8 184 -264H-104Q-79 -205 -54 -141T84 238H432ZM934 238L942 215Q891 99 818 -36T684 -264H397Q458 -116 544 123L586 238H934Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="803" d="M86 688Q86 806 133 902T266 1052T467 1106Q615 1106 688 1029T762 805Q762 611 661 500T379 389Q242 389 164 469T86 688Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="719" d="M61 563L469 1081L733 877L467 543L578 213L244 76L61 553V563Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="719" d="M657 561L250 43L-14 248L252 582L141 911L473 1049L657 571V561Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.ttf b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.ttf
new file mode 100644
index 0000000..31cb688
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.ttf differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.woff b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.woff
new file mode 100644
index 0000000..3b8b071
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.woff differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.woff2 b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.woff2
new file mode 100644
index 0000000..ff51f4f
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBoldItalic-webfont.woff2 differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.eot b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.eot
new file mode 100644
index 0000000..b7ffbdb
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.eot differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.svg
new file mode 100644
index 0000000..c3d41a7
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.svg
@@ -0,0 +1,19030 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1342" ><font-face
+    font-family="Open Sans Extrabold"
+    units-per-em="2048"
+    panose-1="2 11 9 6 3 8 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="594" d="M463 516H133L82 1462H514L463 516ZM86 166Q86 257 140 307T297 358Q399 358 451 308T504 166Q504 76 450 26T297 -25Q198 -25 142 25T86 166Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="1073" d="M477 1462L436 934H162L121 1462H477ZM952 1462L911 934H637L596 1462H952Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1356" d="M1042 813L1012 645H1255V391H965L891 0H623L696 391H528L457 0H190L262 391H37V645H311L342 813H104V1073H391L463 1462H731L657 1073H823L895 1462H1163L1090 1073H1319V813H1042ZM578 645H743L774
+813H608L578 645Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1200" d="M504 68Q285 78 82 166V498Q198 439 334 400T573 360Q658 360 697 380T737 449Q737 482 709 505T614 557T434 627Q307 674 229 732T116 863T80 1044Q80 1209 186 1302T504 1417V1554H711V1419Q910
+1408 1112 1321L993 1036Q784 1130 616 1130Q536 1130 504 1111T471 1053Q471 1020 494 999T576 951T737 889Q946 815 1037 721T1128 477Q1128 309 1022 204T711 74V-119H504V68Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1942" d="M338 1022Q338 907 357 856T414 805Q452 805 470 855T489 1022Q489 1137 471 1188T414 1239Q375 1239 357 1187T338 1022ZM791 1026Q791 806 692 686T410 565Q238 565 138 689T37 1026Q37 1246
+135 1364T410 1483Q585 1483 688 1360T791 1026ZM1520 1462L709 0H412L1223 1462H1520ZM1450 440Q1450 325 1469 274T1526 223Q1569 223 1585 281T1602 440Q1602 540 1586 598T1526 657Q1487 657 1469 605T1450 440ZM1903 444Q1903 225 1804 105T1522 -16Q1350
+-16 1250 108T1149 444Q1149 664 1247 782T1522 901Q1697 901 1800 778T1903 444Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1636" d="M1141 0L1042 102Q952 45 895 24T766 -9T602 -20Q444 -20 323 34T137 185T72 406Q72 668 344 807Q282 877 248 955T213 1133Q213 1293 336 1387T676 1481Q887 1481 1004 1388T1122 1133Q1122
+1022 1059 928T858 750L1057 561Q1132 676 1161 821H1567Q1537 683 1473 545T1327 307L1647 0H1141ZM475 434Q475 371 520 331T639 291Q696 291 739 306T805 340L557 592Q475 531 475 434ZM770 1133Q770 1182 742 1203T670 1225Q628 1225 597 1200T565 1120Q565
+1045 653 965Q710 997 740 1041T770 1133Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="598" d="M477 1462L436 934H162L121 1462H477Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="735" d="M74 582Q74 872 145 1105T354 1503H680Q554 1328 486 1091T418 584Q418 323 484 89T678 -324H354Q217 -166 146 64T74 582Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="735" d="M662 582Q662 299 591 68T381 -324H57Q183 -152 250 84T317 584Q317 849 251 1085T55 1503H381Q520 1337 591 1101T662 582Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1100" d="M702 1556L664 1204L1020 1305L1057 1010L743 989L950 711L690 573L547 856L424 575L152 711L358 989L45 1014L90 1305L438 1204L399 1556H702Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1159" d="M444 588H72V856H444V1223H713V856H1085V588H713V227H444V588Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="633" d="M498 299L512 276Q415 -105 336 -285H57Q86 -147 115 24T156 299H498Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="651" d="M43 393V705H608V393H43Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="592" d="M86 166Q86 258 140 308T299 358Q398 358 451 308T504 166Q504 76 450 26T299 -25Q200 -25 143 25T86 166Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="905" d="M901 1483L356 -20H10L555 1483H901Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1200" d="M1128 729Q1128 341 998 161T600 -20Q338 -20 205 168T72 729Q72 1119 202 1301T600 1483Q861 1483 994 1294T1128 729ZM465 729Q465 481 496 388T600 295Q674 295 704 391T735 729Q735 972 704 1069T600
+1167Q527 1167 496 1073T465 729Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1200" d="M942 0H541V774Q541 915 547 1032Q510 987 455 938L289 801L84 1053L586 1462H942V0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1200" d="M1122 0H61V260L418 621Q571 781 618 839T683 940T702 1028Q702 1085 665 1118T561 1151Q492 1151 422 1112T262 995L45 1249Q158 1350 235 1393T402 1460T606 1483Q748 1483 859 1433T1032 1291T1094
+1083Q1094 997 1073 924T1006 781T887 632T569 336V326H1122V0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1200" d="M1073 1145Q1073 1009 990 912T750 770V764Q1116 718 1116 418Q1116 214 955 97T506 -20Q388 -20 288 -3T70 59V387Q166 338 265 315T449 291Q579 291 638 327T698 442Q698 502 667 534T567 583T387
+600H297V897H389Q690 897 690 1051Q690 1109 646 1137T526 1165Q386 1165 236 1071L72 1335Q188 1415 309 1449T588 1483Q815 1483 944 1393T1073 1145Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1200" d="M1169 283H1008V0H618V283H35V573L643 1462H1008V578H1169V283ZM618 578V748Q618 796 621 877T627 963H616Q582 886 539 819L377 578H618Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1200" d="M664 958Q790 958 891 900T1049 734T1106 487Q1106 242 959 111T512 -20Q256 -20 94 59V383Q181 343 290 317T479 291Q589 291 648 337T707 475Q707 559 647 606T465 653Q372 653 264 618L119 690L174
+1462H1008V1133H510L492 940Q570 955 603 956T664 958Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1200" d="M70 618Q70 924 157 1113T415 1393T836 1483Q925 1483 1044 1466V1157Q944 1176 827 1176Q629 1176 532 1089T426 805H438Q528 975 727 975Q922 975 1029 850T1137 500Q1137 259 1001 120T621 -20Q362
+-20 216 148T70 618ZM612 293Q675 293 714 340T754 492Q754 670 616 670Q548 670 506 624T463 512Q463 416 504 355T612 293Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1200" d="M209 0L711 1133H78V1460H1133V1227L618 0H209Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1200" d="M604 1483Q835 1483 963 1390T1092 1126Q1092 1010 1032 923T840 770Q1002 678 1068 587T1135 389Q1135 194 994 87T600 -20Q342 -20 205 84T68 385Q68 512 129 601T334 764Q218 842 165 931T111
+1128Q111 1296 242 1389T604 1483ZM430 401Q430 339 474 302T596 264Q772 264 772 393Q772 442 734 489T596 596Q507 549 469 502T430 401ZM602 1198Q551 1198 516 1169T481 1092Q481 1006 598 940Q669 981 695 1015T721 1092Q721 1140 686 1169T602 1198Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1200" d="M1133 793Q1133 364 948 172T356 -20Q222 -20 152 -10V303Q238 287 324 287Q536 287 651 374T776 651H764Q725 579 687 547T594 498T457 481Q267 481 160 608T53 958Q53 1201 191 1339T571 1477Q839
+1477 986 1299T1133 793ZM582 1161Q517 1161 477 1114T436 963Q436 881 471 833T578 784Q643 784 691 831T739 944Q739 1033 695 1097T582 1161Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="592" d="M86 166Q86 258 140 308T299 358Q398 358 451 308T504 166Q504 76 450 26T299 -25Q200 -25 143 25T86 166ZM86 956Q86 1047 141 1097T299 1147Q398 1147 451 1097T504 956Q504 866 450 815T299 764Q197
+764 142 815T86 956Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="608" d="M498 299L512 276Q415 -105 336 -285H57Q86 -147 115 24T156 299H498ZM92 956Q92 1047 145 1097T303 1147Q403 1147 456 1097T510 956Q510 866 456 815T303 764Q201 764 147 814T92 956Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1159" d="M1083 178L72 627V799L1083 1305V1008L463 725L1083 473V178Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1159" d="M72 815V1083H1087V815H72ZM72 358V629H1087V358H72Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1159" d="M72 473L692 725L72 1008V1305L1083 799V627L72 178V473Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="1034" d="M295 516V602Q295 700 335 767T477 899Q558 950 593 991T629 1085Q629 1127 591 1151T492 1176Q341 1176 139 1069L0 1341Q249 1483 520 1483Q743 1483 870 1385T997 1118Q997 997 941 909T760
+741Q655 673 629 642T602 567V516H295ZM252 166Q252 258 305 308T463 358Q563 358 616 308T670 166Q670 75 615 25T463 -25Q364 -25 308 24T252 166Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1837" d="M1755 756Q1755 615 1707 493T1572 302T1376 233Q1297 233 1233 264T1133 352H1118Q1011 233 858 233Q675 233 577 340T479 639Q479 780 541 888T720 1055T991 1114Q1072 1114 1169 1098T1348 1053L1327
+631L1325 537Q1325 451 1374 451Q1426 451 1458 538T1491 758Q1491 997 1356 1127T973 1257Q783 1257 643 1178T428 952T354 606Q354 351 496 213T899 74Q1015 74 1149 99T1413 170V-59Q1189 -154 913 -154Q525 -154 304 48T82 610Q82 863 196 1063T512 1372T969
+1481Q1203 1481 1382 1392T1658 1139T1755 756ZM760 641Q760 541 796 496T893 451Q970 451 1006 513T1053 733L1063 889Q1023 895 995 895Q887 895 824 828T760 641Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1487" d="M1055 0L983 274H508L434 0H0L477 1468H1004L1487 0H1055ZM901 598L838 838Q816 918 785 1045T743 1227Q734 1176 708 1059T590 598H901Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1380" d="M158 1462H668Q966 1462 1110 1374T1255 1098Q1255 975 1192 888T1026 776V766Q1162 730 1223 646T1284 428Q1284 229 1135 115T727 0H158V1462ZM553 901H672Q757 901 803 936T850 1040Q850 1163 664
+1163H553V901ZM553 612V305H692Q877 305 877 461Q877 534 828 573T684 612H553Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1329" d="M809 1159Q668 1159 589 1044T510 725Q510 303 831 303Q928 303 1019 330T1202 395V61Q1019 -20 788 -20Q457 -20 281 172T104 727Q104 954 189 1126T435 1390T813 1483Q1050 1483 1266 1380L1145 1069Q1064
+1107 983 1133T809 1159Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1503" d="M1399 762Q1399 396 1198 198T631 0H158V1462H664Q1016 1462 1207 1282T1399 762ZM989 748Q989 949 910 1046T668 1143H553V324H641Q821 324 905 428T989 748Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1124" d="M1026 0H158V1462H1026V1145H553V915H991V598H553V322H1026V0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1104" d="M547 0H158V1462H1022V1145H547V866H985V549H547V0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1516" d="M745 856H1376V68Q1119 -20 811 -20Q473 -20 289 176T104 735Q104 1089 306 1286T872 1483Q1010 1483 1132 1457T1346 1391L1221 1081Q1063 1159 874 1159Q701 1159 607 1047T512 725Q512 520 597 413T844
+305Q932 305 1006 322V551H745V856Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1569" d="M1411 0H1014V596H555V0H158V1462H555V920H1014V1462H1411V0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="713" d="M158 0V1462H555V0H158Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="721" d="M43 -459Q-65 -459 -162 -438V-131Q-130 -137 -94 -144T-16 -152Q82 -152 124 -93T166 109V1462H563V143Q563 -154 433 -306T43 -459Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1407" d="M1407 0H961L672 559L555 489V0H158V1462H555V827Q585 886 676 1014L983 1462H1415L954 807L1407 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1192" d="M158 0V1462H553V319H1116V0H158Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1980" d="M795 0L496 1053H487Q508 784 508 635V0H158V1462H684L989 424H997L1296 1462H1823V0H1460V641Q1460 691 1461 752T1475 1051H1466L1171 0H795Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1708" d="M1550 0H1032L498 1030H489Q508 787 508 659V0H158V1462H674L1206 446H1212Q1198 667 1198 801V1462H1550V0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1632" d="M1526 733Q1526 364 1345 172T815 -20Q471 -20 288 173T104 735Q104 1100 286 1292T817 1485Q1166 1485 1346 1294T1526 733ZM520 733Q520 309 815 309Q965 309 1037 412T1110 733Q1110 952 1037 1056T817
+1161Q520 1161 520 733Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1294" d="M1219 997Q1219 752 1075 619T664 485H553V0H158V1462H664Q941 1462 1080 1341T1219 997ZM553 807H625Q714 807 766 857T819 995Q819 1143 655 1143H553V807Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1632" d="M1526 733Q1526 236 1210 63L1567 -348H1075L817 -23L816 -22V-21L815 -20Q471 -20 288 173T104 735Q104 1100 286 1292T817 1485Q1166 1485 1346 1294T1526 733ZM520 733Q520 309 815 309Q965 309 1037
+412T1110 733Q1110 952 1037 1056T817 1161Q520 1161 520 733Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1386" d="M553 532V0H158V1462H637Q1233 1462 1233 1030Q1233 776 985 637L1411 0H963L653 532H553ZM553 829H627Q834 829 834 1012Q834 1163 631 1163H553V829Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1182" d="M1114 444Q1114 308 1045 203T846 39T541 -20Q395 -20 296 0T90 72V424Q203 366 325 334T549 301Q637 301 678 331T719 410Q719 440 703 462T650 508T455 602Q312 667 241 728T135 868T100 1055Q100 1257
+247 1370T651 1483Q878 1483 1114 1378L993 1073Q788 1167 639 1167Q562 1167 527 1140T492 1073Q492 1030 536 996T778 872Q967 787 1040 690T1114 444Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1210" d="M803 0H408V1139H51V1462H1159V1139H803V0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1550" d="M1401 1462V582Q1401 295 1239 138T770 -20Q471 -20 311 133T150 573V1462H547V604Q547 449 605 379T776 309Q897 309 951 378T1006 606V1462H1401Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1421" d="M979 1462H1421L942 0H477L0 1462H444L643 721Q705 474 711 377Q718 447 739 552T776 717L979 1462Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="2128" d="M1737 0H1270L1130 637Q1120 677 1099 796T1067 995Q1059 930 1041 834T1006 656T860 0H393L31 1462H412L571 729Q625 486 645 342Q658 444 691 619T754 909L883 1462H1249L1374 909Q1406 776 1439 602T1483
+342Q1496 453 1554 727L1716 1462H2097L1737 0Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1481" d="M1475 0H1018L733 457L451 0H4L489 748L33 1462H471L735 1010L989 1462H1440L977 717L1475 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1360" d="M680 920L932 1462H1360L879 571V0H481V559L0 1462H430L680 920Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1251" d="M1200 0H61V244L694 1143H76V1462H1184V1219L551 319H1200V0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="664" d="M616 -344H117V1503H616V1249H434V-90H616V-344Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="905" d="M352 1483L897 -20H551L6 1483H352Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="664" d="M47 -90H229V1249H47V1503H547V-344H47V-90Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1075" d="M-16 502L424 1468H594L1102 502H807L518 1079L394 788L270 502H-16Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="1024" d="M1028 -379H-4V-133H1028V-379Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1225" d="M696 1241Q627 1285 493 1379T264 1548V1569H694Q746 1499 897 1336L956 1270V1241H696Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1276" d="M874 0L799 150H791Q712 52 630 16T418 -20Q258 -20 166 76T74 346Q74 527 200 615T565 715L754 721V737Q754 877 616 877Q492 877 301 793L188 1051Q386 1153 688 1153Q906 1153 1025 1045T1145 743V0H874ZM584
+256Q655 256 705 301T756 418V506L666 502Q473 495 473 360Q473 256 584 256Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1317" d="M827 1153Q1012 1153 1120 998T1229 569Q1229 293 1120 137T815 -20Q752 -20 703 -7T616 31T526 111H502L440 0H135V1556H526V1204Q526 1141 512 987H526Q583 1075 657 1114T827 1153ZM684 846Q602 846
+564 789T526 610V555Q526 416 564 356T688 295Q757 295 794 365T831 573Q831 846 684 846Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="1104" d="M651 -20Q373 -20 230 130T86 561Q86 843 241 998T682 1153Q879 1153 1053 1067L938 778Q867 809 807 827T682 846Q587 846 535 772T483 563Q483 291 684 291Q856 291 1014 391V80Q863 -20 651 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1317" d="M487 -20Q366 -20 276 49T136 252T86 565Q86 841 197 997T502 1153Q597 1153 668 1115T799 987H807Q788 1120 788 1253V1556H1182V0H887L803 143H788Q687 -20 487 -20ZM647 289Q741 289 779 348T821 530V561Q821
+711 778 774T643 838Q566 838 524 766T481 559Q481 427 524 358T647 289Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1266" d="M682 -20Q399 -20 243 130T86 559Q86 846 231 999T645 1153Q901 1153 1040 1020T1180 635V461H481Q485 366 550 312T729 258Q832 258 918 277T1106 344V63Q1014 16 916 -2T682 -20ZM659 887Q590 887 544
+844T489 707H825Q823 789 779 838T659 887Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="846" d="M827 840H586V0H195V840H45V1032L203 1128V1147Q203 1371 294 1469T588 1567Q666 1567 735 1555T897 1513L813 1260Q741 1280 672 1280Q627 1280 607 1253T586 1163V1133H827V840Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1241" d="M1204 1133V944L1049 887Q1081 829 1081 752Q1081 569 953 468T569 367Q506 367 469 375Q455 349 455 326Q455 297 502 282T625 266H813Q1194 266 1194 -55Q1194 -262 1018 -377T522 -492Q281 -492 151
+-412T20 -180Q20 23 272 82Q220 104 182 153T143 250Q143 303 172 343T293 440Q205 479 155 562T104 764Q104 949 230 1051T590 1153Q621 1153 697 1146T809 1133H1204ZM350 -141Q350 -189 402 -218T541 -248Q683 -248 768 -213T854 -121Q854 -76 802 -58T653 -39H500Q437
+-39 394 -68T350 -141ZM473 762Q473 588 594 588Q650 588 680 631T711 760Q711 936 594 936Q473 936 473 762Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1372" d="M848 0V618Q848 846 713 846Q617 846 572 766T526 498V0H135V1556H526V1335Q526 1185 510 993H528Q584 1081 661 1117T840 1153Q1030 1153 1135 1044T1241 737V0H848Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="666" d="M528 0H137V1133H528V0ZM127 1415Q127 1503 176 1546T334 1589Q443 1589 493 1545T543 1415Q543 1243 334 1243Q127 1243 127 1415Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="664" d="M106 -492Q58 -492 -4 -485T-104 -467V-162Q-40 -180 16 -180Q135 -180 135 -10V1133H526V-92Q526 -279 417 -385T106 -492ZM125 1415Q125 1503 174 1546T332 1589Q441 1589 491 1545T541 1415Q541 1243
+332 1243Q125 1243 125 1415Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1350" d="M514 637Q585 750 635 813L889 1133H1325L932 651L1350 0H903L655 406L528 309V0H135V1556H528V944Q528 787 506 637H514Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="662" d="M526 0H135V1556H526V0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="2048" d="M1526 0V616Q1526 731 1495 788T1395 846Q1305 846 1263 769T1221 528V0H829V616Q829 731 799 788T702 846Q610 846 568 764T526 496V0H135V1133H430L479 993H502Q547 1071 632 1112T827 1153Q1072 1153
+1171 1004H1202Q1250 1074 1335 1113T1524 1153Q1725 1153 1821 1050T1917 737V0H1526Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1372" d="M850 0V618Q850 731 818 788T713 846Q614 846 570 767T526 496V0H135V1133H430L479 993H502Q552 1073 640 1113T844 1153Q1032 1153 1136 1044T1241 737V0H850Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1305" d="M1217 569Q1217 291 1068 136T649 -20Q391 -20 239 139T86 569Q86 846 235 999T655 1153Q822 1153 950 1082T1147 879T1217 569ZM483 569Q483 423 522 347T653 270Q744 270 781 346T819 569Q819 714 781
+788T651 862Q561 862 522 789T483 569Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1317" d="M815 -20Q729 -20 661 8T526 111H508Q526 -8 526 -37V-492H135V1133H453L508 989H526Q635 1153 827 1153Q1015 1153 1122 997T1229 569Q1229 295 1118 138T815 -20ZM684 846Q598 846 564 785T526 602V571Q526
+425 565 360T688 295Q763 295 797 359T831 573Q831 719 797 782T684 846Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1317" d="M492 -20Q302 -20 194 136T86 565Q86 841 196 997T498 1153Q703 1153 807 993H815L844 1133H1182V-492H791V-23Q791 11 803 143H791Q695 -20 492 -20ZM651 283Q740 283 780 338T821 524V571Q821 721 780
+785T645 850Q483 850 483 559Q483 411 524 347T651 283Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="961" d="M819 1153Q870 1153 916 1145L938 1141L903 772Q855 784 770 784Q642 784 584 726T526 557V0H135V1133H426L487 952H506Q555 1042 642 1097T819 1153Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="1092" d="M1010 348Q1010 166 886 73T530 -20Q404 -20 311 -7T121 43V356Q212 316 320 290T514 264Q641 264 641 322Q641 352 606 375T399 467Q243 531 181 612T119 819Q119 977 241 1065T586 1153Q698 1153 796
+1129T1001 1057L895 805Q817 840 730 864T588 889Q492 889 492 842Q492 813 525 793T719 709Q838 660 896 613T982 503T1010 348Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="942" d="M690 289Q769 289 879 328V43Q800 9 729 -5T561 -20Q364 -20 277 76T190 373V840H53V999L227 1122L328 1360H584V1133H862V840H584V399Q584 289 690 289Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1372" d="M942 0L893 141H870Q821 63 734 22T528 -20Q341 -20 237 88T133 395V1133H524V514Q524 403 555 346T659 289Q760 289 803 368T846 637V1133H1237V0H942Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="1251" d="M432 0L0 1133H408L600 463Q601 458 604 446T610 418T615 383T618 348H625Q625 400 643 461L844 1133H1251L819 0H432Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1864" d="M1110 0L982 540L952 703L932 834H926Q877 554 860 481L745 0H334L25 1133H410L502 698Q546 474 553 326H559Q562 418 614 676L719 1133H1151L1247 670Q1293 449 1305 326H1311Q1317 402 1331 515T1362
+698L1462 1133H1839L1528 0H1110Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1290" d="M375 578L29 1133H473L645 815L821 1133H1266L911 578L1280 0H836L645 344L455 0H10L375 578Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1249" d="M-2 1133H410L602 483Q616 432 621 360H629Q637 429 653 481L850 1133H1249L801 -72Q715 -302 590 -397T262 -492Q184 -492 102 -475V-168Q155 -180 223 -180Q275 -180 314 -160T382 -104T444 16L-2 1133Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="1038" d="M987 0H49V223L518 834H76V1133H965V891L516 299H987V0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="887" d="M61 719Q176 719 241 763T307 889V1143Q307 1282 356 1351T515 1451T821 1483V1204Q732 1201 701 1191T650 1158T631 1098V827Q631 714 575 654T391 575V563Q519 543 575 484T631 317V41Q631 2
+652 -20T708 -52T821 -66V-344Q624 -344 514 -312T356 -211T307 0V248Q307 328 240 373T61 418V719Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1042" d="M387 1556H655V-446H387V1556Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="887" d="M825 418Q714 418 647 373T580 248V0Q580 -140 531 -210T372 -312T66 -344V-66Q174 -62 215 -37T256 41V317Q256 425 312 484T496 563V575Q369 593 313 653T256 827V1098Q256 1137 237 1158T187
+1190T66 1204V1483Q262 1483 372 1452T531 1351T580 1143V889Q580 808 645 764T825 719V418Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1159" d="M305 647Q195 647 72 526V807Q176 915 336 915Q405 915 466 902T616 852Q747 797 854 797Q904 797 966 829T1085 918V637Q980 528 821 528Q750 528 688 543T541 592Q410 647 305 647Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="594" d="M133 612H463L514 -334H82L133 612ZM510 963Q510 872 457 821T299 770Q197 770 145 820T92 963Q92 1053 146 1103T299 1153Q400 1153 455 1103T510 963Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1200" d="M565 1483H772V1329Q943 1320 1096 1245L981 956Q910 987 850 1005T725 1024Q630 1024 578 950T526 741Q526 469 727 469Q899 469 1057 569V258Q930 176 772 160V-20H565V166Q353 197 241 342T129
+739Q129 979 242 1127T565 1317V1483Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1200" d="M723 1485Q933 1485 1128 1403L1018 1114Q870 1169 766 1169Q708 1169 681 1136T653 1032V926H997V649H653V553Q653 403 494 326H1165V0H104V313Q185 360 213 389T255 457T268 551V649H102V926H268V1044Q268
+1259 385 1372T723 1485Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1159" d="M180 723Q180 812 221 899L96 1018L276 1200L399 1077Q483 1118 571 1118Q662 1118 748 1073L868 1200L1053 1026L926 901Q967 825 967 723Q967 629 926 547L1047 428L868 250L748 369Q659
+330 571 330Q471 330 395 367L276 252L98 430L221 549Q180 631 180 723ZM436 723Q436 667 476 628T571 588Q629 588 671 626T713 723Q713 781 671 820T571 860Q515 860 476 820T436 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1200" d="M600 958L793 1462H1192L829 750H1024V539H782V422H1024V213H782V0H418V213H172V422H418V539H172V750H362L8 1462H408L600 958Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1042" d="M387 1556H655V717H387V1556ZM387 393H655V-446H387V393Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="1024" d="M106 803Q106 867 149 928T270 1036Q129 1138 129 1282Q129 1419 240 1498T535 1577Q726 1577 905 1491L807 1270Q734 1310 661 1333T532 1356Q424 1356 424 1282Q424 1239 469 1203T598 1133Q773
+1062 850 981T928 803Q928 726 896 666T780 545Q905 451 905 301Q905 152 789 64T469 -25Q265 -25 117 61V305Q196 261 299 229T471 197Q610 197 610 293Q610 335 579 365T440 444Q299 507 235 556T138 664T106 803ZM397 834Q397 783 441 743T596 645Q637 692 637
+752Q637 809 595 852T455 936Q397 904 397 834Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1233" d="M223 1413Q223 1488 269 1529T393 1571Q472 1571 518 1529T565 1413Q565 1342 519 1300T393 1257Q315 1257 269 1298T223 1413ZM702 1413Q702 1488 748 1529T874 1571Q954 1571 1000 1528T1047
+1413Q1047 1342 1001 1300T874 1257Q793 1257 748 1298T702 1413Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1688" d="M887 971Q806 971 761 910T715 731Q715 603 758 546T893 489Q1031 489 1151 557V326Q1025 262 879 262Q667 262 551 386T434 735Q434 952 547 1075T868 1198Q1034 1198 1190 1120L1098 915Q992
+971 887 971ZM92 731Q92 931 192 1106T467 1382T844 1483Q1041 1483 1214 1386T1491 1114T1595 731Q1595 527 1495 355T1222 81T844 -20Q637 -20 462 83T190 360T92 731ZM256 731Q256 573 335 436T551 221T844 143Q1002 143 1138 221T1353 436T1432 731Q1432 888
+1355 1024T1141 1239T844 1319Q686 1319 550 1241T335 1026T256 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="813" d="M571 741L526 868Q478 792 422 761T283 729Q174 729 112 792T49 967Q49 1083 126 1138T393 1202L481 1206V1212Q481 1253 456 1270T379 1288Q322 1288 272 1273T168 1233L92 1399Q200 1450
+272 1464T436 1479Q575 1479 654 1404T733 1190V741H571ZM301 979Q301 947 319 929T371 911Q421 911 451 949T481 1047V1069L397 1063Q301 1057 301 979Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1395" d="M74 588L463 1071L743 922L471 575L743 227L463 80L74 561V588ZM649 588L1036 1071L1319 922L1044 575L1319 227L1036 80L649 561V588Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1159" d="M1085 238H815V588H72V856H1085V238Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="651" d="M43 393V705H608V393H43Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1688" d="M1204 918Q1204 831 1171 772T1063 676L1257 313H967L821 633H786V313H506V1188H797Q1204 1188 1204 918ZM786 809H797Q855 809 888 830T922 907Q922 954 895 973T799 993H786V809ZM92
+731Q92 931 192 1106T467 1382T844 1483Q1041 1483 1214 1386T1491 1114T1595 731Q1595 527 1495 355T1222 81T844 -20Q637 -20 462 83T190 360T92 731ZM256 731Q256 573 335 436T551 221T844 143Q1002 143 1138 221T1353 436T1432 731Q1432 888 1355 1024T1141
+1239T844 1319Q686 1319 550 1241T335 1026T256 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6V1802H1030V1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="864" d="M63 1114Q63 1211 112 1296T247 1432T432 1483Q531 1483 617 1433T752 1297T801 1114Q801 1017 753 933T619 800T432 750Q333 750 247 799T112 932T63 1114ZM301 1114Q301 1064 339 1026T432
+987Q486 987 524 1026T563 1114Q563 1166 526 1206T432 1247Q376 1247 339 1207T301 1114Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1159" d="M444 684H72V952H444V1319H713V952H1085V684H713V324H444V684ZM72 0V268H1085V0H72Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="817" d="M750 586H76V793L291 1006Q375 1090 407 1135T440 1214Q440 1272 375 1272Q294 1272 203 1184L61 1350Q141 1423 228 1454T432 1485Q574 1485 651 1422T729 1247Q729 1201 716 1160T676
+1076T601 985T403 811H750V586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="817" d="M725 1266Q725 1188 688 1134T563 1047V1038Q660 1014 707 962T754 823Q754 703 656 636T379 569Q194 569 70 639V872Q187 791 367 791Q483 791 483 858Q483 899 451 914T348 930H244V1124H324Q395
+1124 429 1142T463 1202Q463 1227 442 1248T371 1270Q321 1270 277 1253T180 1196L63 1366Q212 1481 406 1481Q552 1481 638 1424T725 1266Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1225" d="M264 1241V1270Q418 1435 459 1483T528 1569H956V1548Q876 1484 736 1385T524 1241H264Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1376" d="M526 518Q526 403 559 346T672 289Q765 289 806 372T848 637V1133H1241V0H948L895 152H879Q845 64 789 22T666 -20Q610 -20 576 0T514 63Q526 -27 526 -172V-492H135V1133H526V518Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1317" d="M1186 -260H995V1327H838V-260H647V559Q593 541 522 541Q306 541 204 666T102 1042Q102 1298 209 1427T553 1556H1186V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="592" d="M86 723Q86 815 140 865T299 915Q398 915 451 865T504 723Q504 633 450 582T299 530Q199 530 143 581T86 723Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="383" d="M397 -252Q397 -361 322 -426T123 -492Q-13 -492 -90 -463V-258Q-7 -285 57 -285Q109 -285 109 -238Q109 -205 68 -180T-39 -139L33 0H236L227 -29Q323 -68 360 -121T397 -252Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="817" d="M616 586H334V942Q334 977 337 1060T344 1159Q335 1140 313 1116T203 1018L57 1188L397 1462H616V586Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="803" d="M756 1104Q756 930 661 830T399 729Q240 729 145 831T49 1104Q49 1281 143 1380T403 1479Q560 1479 658 1376T756 1104ZM301 1104Q301 1017 325 975T401 932Q500 932 500 1104Q500 1278
+401 1278Q301 1278 301 1104Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1395" d="M1321 561L934 80L649 227L924 575L649 922L934 1071L1321 588V561ZM745 561L358 80L76 227L348 575L76 922L358 1071L745 588V561Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1919" d="M1798 140H1673V1H1398V140H1028V328L1378 883H1673V341H1798V140ZM1398 341V507Q1398 576 1405 642Q1365 542 1343 509L1241 341H1398ZM1412 1462L658 0H357L1110 1462H1412ZM803 586H521V942Q521
+977 524 1060T531 1159Q522 1140 500 1116T390 1018L244 1188L584 1462H803V586Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1921" d="M1829 1H1155V208L1370 421Q1454 505 1486 550T1519 629Q1519 687 1454 687Q1373 687 1282 599L1140 765Q1220 838 1307 869T1511 900Q1653 900 1730 837T1808 662Q1808 616 1795 575T1755
+491T1680 400T1482 226H1829V1ZM1436 1462L682 0H381L1134 1462H1436ZM803 586H521V942Q521 977 524 1060T531 1159Q522 1140 500 1116T390 1018L244 1188L584 1462H803V586Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1921" d="M1870 140H1745V1H1470V140H1100V328L1450 883H1745V341H1870V140ZM1470 341V507Q1470 576 1477 642Q1437 542 1415 509L1313 341H1470ZM745 1266Q745 1188 708 1134T583 1047V1038Q680
+1014 727 962T774 823Q774 703 676 636T399 569Q214 569 90 639V872Q207 791 387 791Q503 791 503 858Q503 899 471 914T368 930H264V1124H344Q415 1124 449 1142T483 1202Q483 1227 462 1248T391 1270Q341 1270 297 1253T200 1196L83 1366Q232 1481 426 1481Q572
+1481 658 1424T745 1266ZM1520 1462L766 0H465L1218 1462H1520Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="1034" d="M739 612V526Q739 428 699 361T557 229Q500 193 467 163T420 108T406 43Q406 1 443 -23T543 -47Q691 -47 895 59L1034 -213Q791 -354 514 -354Q291 -354 164 -256T37 10Q37 130 92 218T274
+387Q374 451 403 484T432 561V612H739ZM782 963Q782 870 729 820T571 770Q470 770 418 820T365 963Q365 1053 419 1103T571 1153Q672 1153 727 1104T782 963Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1487" d="M1055 0L983 274H508L434 0H0L477 1468H1004L1487 0H1055ZM901 598L838 838Q816 918 785 1045T743 1227Q734 1176 708 1059T590 598H901ZM704 1579Q635 1623 501 1717T272 1886V1907H702Q754
+1837 905 1674L964 1608V1579H704Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1487" d="M1055 0L983 274H508L434 0H0L477 1468H1004L1487 0H1055ZM901 598L838 838Q816 918 785 1045T743 1227Q734 1176 708 1059T590 598H901ZM532 1579V1608Q686 1773 727 1821T796 1907H1224V1886Q1144
+1822 1004 1723T792 1579H532Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1487" d="M1055 0L983 274H508L434 0H0L477 1468H1004L1487 0H1055ZM901 598L838 838Q816 918 785 1045T743 1227Q734 1176 708 1059T590 598H901ZM948 1579Q864 1627 747 1729Q622 1622 553 1579H295V1608Q364
+1673 439 1761T553 1907H946Q1040 1770 1202 1608V1579H948Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1487" d="M1055 0L983 274H508L434 0H0L477 1468H1004L1487 0H1055ZM901 598L838 838Q816 918 785 1045T743 1227Q734 1176 708 1059T590 598H901ZM926 1577Q881 1577 836 1592T746 1625T661 1658T582
+1673Q528 1673 510 1575H330Q341 1750 402 1833T582 1917Q620 1917 663 1902T750 1869T837 1836T918 1821Q947 1821 964 1846T990 1919H1172Q1161 1752 1098 1665T926 1577Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1487" d="M1055 0L983 274H508L434 0H0L477 1468H1004L1487 0H1055ZM901 598L838 838Q816 918 785 1045T743 1227Q734 1176 708 1059T590 598H901ZM352 1751Q352 1826 398 1867T522 1909Q601 1909
+647 1867T694 1751Q694 1680 648 1638T522 1595Q444 1595 398 1636T352 1751ZM831 1751Q831 1826 877 1867T1003 1909Q1083 1909 1129 1866T1176 1751Q1176 1680 1130 1638T1003 1595Q922 1595 877 1636T831 1751Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1487" d="M1055 0L983 274H508L434 0H0L477 1468H1004L1487 0H1055ZM901 598L838 838Q816 918 785 1045T743 1227Q734 1176 708 1059T590 598H901ZM1011 1616Q1011 1503 935 1433T739 1362Q618 1362 547
+1430T475 1614Q475 1730 546 1799T739 1868Q857 1868 934 1798T1011 1616ZM823 1614Q823 1652 799 1675T739 1698Q704 1698 680 1675T655 1614Q655 1577 676 1554T739 1530Q774 1530 798 1553T823 1614Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1937" d="M1839 0H969V274H532L432 0H-10L618 1462H1839V1145H1366V915H1804V598H1366V322H1839V0ZM653 602H969V1128H858L653 602Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1329" d="M809 1159Q668 1159 589 1044T510 725Q510 303 831 303Q928 303 1019 330T1202 395V61Q1019 -20 788 -20Q457 -20 281 172T104 727Q104 954 189 1126T435 1390T813 1483Q1050 1483 1266 1380L1145
+1069Q1064 1107 983 1133T809 1159ZM964 -252Q964 -361 889 -426T690 -492Q554 -492 477 -463V-258Q560 -285 624 -285Q676 -285 676 -238Q676 -205 635 -180T528 -139L600 0H803L794 -29Q890 -68 927 -121T964 -252Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1124" d="M1026 0H158V1462H1026V1145H553V915H991V598H553V322H1026V0ZM586 1579Q517 1623 383 1717T154 1886V1907H584Q636 1837 787 1674L846 1608V1579H586Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1124" d="M1026 0H158V1462H1026V1145H553V915H991V598H553V322H1026V0ZM362 1579V1608Q516 1773 557 1821T626 1907H1054V1886Q974 1822 834 1723T622 1579H362Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1124" d="M1026 0H158V1462H1026V1145H553V915H991V598H553V322H1026V0ZM804 1579Q720 1627 603 1729Q478 1622 409 1579H151V1608Q220 1673 295 1761T409 1907H802Q896 1770 1058 1608V1579H804Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1124" d="M1026 0H158V1462H1026V1145H553V915H991V598H553V322H1026V0ZM187 1751Q187 1826 233 1867T357 1909Q436 1909 482 1867T529 1751Q529 1680 483 1638T357 1595Q279 1595 233 1636T187 1751ZM666
+1751Q666 1826 712 1867T838 1909Q918 1909 964 1866T1011 1751Q1011 1680 965 1638T838 1595Q757 1595 712 1636T666 1751Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="713" d="M158 0V1462H555V0H158ZM316 1579Q247 1623 113 1717T-116 1886V1907H314Q366 1837 517 1674L576 1608V1579H316Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="713" d="M158 0V1462H555V0H158ZM156 1579V1608Q310 1773 351 1821T420 1907H848V1886Q768 1822 628 1723T416 1579H156Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="713" d="M158 0V1462H555V0H158ZM558 1579Q474 1627 357 1729Q232 1622 163 1579H-95V1608Q-26 1673 49 1761T163 1907H556Q650 1770 812 1608V1579H558Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="713" d="M158 0V1462H555V0H158ZM-55 1751Q-55 1826 -9 1867T115 1909Q194 1909 240 1867T287 1751Q287 1680 241 1638T115 1595Q37 1595 -9 1636T-55 1751ZM424 1751Q424 1826 470 1867T596 1909Q676
+1909 722 1866T769 1751Q769 1680 723 1638T596 1595Q515 1595 470 1636T424 1751Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1503" d="M1399 762Q1399 396 1198 198T631 0H158V563H31V883H158V1462H664Q1016 1462 1207 1282T1399 762ZM989 748Q989 949 910 1046T668 1143H553V883H764V563H553V324H641Q821 324 905 428T989 748Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1708" d="M1550 0H1032L498 1030H489Q508 787 508 659V0H158V1462H674L1206 446H1212Q1198 667 1198 801V1462H1550V0ZM1030 1577Q985 1577 940 1592T850 1625T765 1658T686 1673Q632 1673 614 1575H434Q445
+1750 506 1833T686 1917Q724 1917 767 1902T854 1869T941 1836T1022 1821Q1051 1821 1068 1846T1094 1919H1276Q1265 1752 1202 1665T1030 1577Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1632" d="M1526 733Q1526 364 1345 172T815 -20Q471 -20 288 173T104 735Q104 1100 286 1292T817 1485Q1166 1485 1346 1294T1526 733ZM520 733Q520 309 815 309Q965 309 1037 412T1110 733Q1110 952
+1037 1056T817 1161Q520 1161 520 733ZM829 1579Q760 1623 626 1717T397 1886V1907H827Q879 1837 1030 1674L1089 1608V1579H829Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1632" d="M1526 733Q1526 364 1345 172T815 -20Q471 -20 288 173T104 735Q104 1100 286 1292T817 1485Q1166 1485 1346 1294T1526 733ZM520 733Q520 309 815 309Q965 309 1037 412T1110 733Q1110 952
+1037 1056T817 1161Q520 1161 520 733ZM583 1579V1608Q737 1773 778 1821T847 1907H1275V1886Q1195 1822 1055 1723T843 1579H583Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1632" d="M1526 733Q1526 364 1345 172T815 -20Q471 -20 288 173T104 735Q104 1100 286 1292T817 1485Q1166 1485 1346 1294T1526 733ZM520 733Q520 309 815 309Q965 309 1037 412T1110 733Q1110
+952 1037 1056T817 1161Q520 1161 520 733ZM1016 1579Q932 1627 815 1729Q690 1622 621 1579H363V1608Q432 1673 507 1761T621 1907H1014Q1108 1770 1270 1608V1579H1016Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1632" d="M1526 733Q1526 364 1345 172T815 -20Q471 -20 288 173T104 735Q104 1100 286 1292T817 1485Q1166 1485 1346 1294T1526 733ZM520 733Q520 309 815 309Q965 309 1037 412T1110 733Q1110 952
+1037 1056T817 1161Q520 1161 520 733ZM997 1577Q952 1577 907 1592T817 1625T732 1658T653 1673Q599 1673 581 1575H401Q412 1750 473 1833T653 1917Q691 1917 734 1902T821 1869T908 1836T989 1821Q1018 1821 1035 1846T1061 1919H1243Q1232 1752 1169 1665T997
+1577Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1632" d="M1526 733Q1526 364 1345 172T815 -20Q471 -20 288 173T104 735Q104 1100 286 1292T817 1485Q1166 1485 1346 1294T1526 733ZM520 733Q520 309 815 309Q965 309 1037 412T1110 733Q1110
+952 1037 1056T817 1161Q520 1161 520 733ZM403 1751Q403 1826 449 1867T573 1909Q652 1909 698 1867T745 1751Q745 1680 699 1638T573 1595Q495 1595 449 1636T403 1751ZM882 1751Q882 1826 928 1867T1054 1909Q1134 1909 1180 1866T1227 1751Q1227 1680 1181
+1638T1054 1595Q973 1595 928 1636T882 1751Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1159" d="M387 723L121 991L303 1180L573 913L848 1180L1036 997L762 723L1032 451L848 266L573 537L303 268L123 455L387 723Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1632" d="M1526 733Q1526 364 1345 172T815 -20Q638 -20 508 23L424 -109L231 16L315 141Q104 335 104 735Q104 1100 286 1292T817 1485Q1008 1485 1147 1430L1223 1548L1413 1434L1331 1309Q1526 1120
+1526 733ZM1110 733Q1110 858 1092 944L698 324Q752 309 815 309Q965 309 1037 412T1110 733ZM520 733Q520 578 549 494L952 1133Q884 1161 817 1161Q520 1161 520 733Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1550" d="M1401 1462V582Q1401 295 1239 138T770 -20Q471 -20 311 133T150 573V1462H547V604Q547 449 605 379T776 309Q897 309 951 378T1006 606V1462H1401ZM712 1579Q643 1623 509 1717T280 1886V1907H710Q762
+1837 913 1674L972 1608V1579H712Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1550" d="M1401 1462V582Q1401 295 1239 138T770 -20Q471 -20 311 133T150 573V1462H547V604Q547 449 605 379T776 309Q897 309 951 378T1006 606V1462H1401ZM561 1579V1608Q715 1773 756 1821T825 1907H1253V1886Q1173
+1822 1033 1723T821 1579H561Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1550" d="M1401 1462V582Q1401 295 1239 138T770 -20Q471 -20 311 133T150 573V1462H547V604Q547 449 605 379T776 309Q897 309 951 378T1006 606V1462H1401ZM975 1579Q891 1627 774 1729Q649 1622
+580 1579H322V1608Q391 1673 466 1761T580 1907H973Q1067 1770 1229 1608V1579H975Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1550" d="M1401 1462V582Q1401 295 1239 138T770 -20Q471 -20 311 133T150 573V1462H547V604Q547 449 605 379T776 309Q897 309 951 378T1006 606V1462H1401ZM362 1751Q362 1826 408 1867T532 1909Q611
+1909 657 1867T704 1751Q704 1680 658 1638T532 1595Q454 1595 408 1636T362 1751ZM841 1751Q841 1826 887 1867T1013 1909Q1093 1909 1139 1866T1186 1751Q1186 1680 1140 1638T1013 1595Q932 1595 887 1636T841 1751Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1360" d="M680 920L932 1462H1360L879 571V0H481V559L0 1462H430L680 920ZM471 1579V1608Q625 1773 666 1821T735 1907H1163V1886Q1083 1822 943 1723T731 1579H471Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1284" d="M1219 784Q1219 539 1075 406T664 272H553V0H158V1462H553V1249H664Q941 1249 1080 1128T1219 784ZM553 594H625Q714 594 766 644T819 782Q819 930 655 930H553V594Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1536" d="M1339 1190Q1339 1133 1319 1087T1270 1003T1205 936T1141 884T1091 843T1071 811Q1071 788 1095 767T1189 709Q1358 614 1417 536T1477 334Q1477 160 1362 70T1024 -20Q888 -20 803 -8T653
+39V330Q702 300 784 275T932 250Q993 250 1031 273T1069 336Q1069 364 1055 383T1004 425T883 494Q757 561 708 618T659 756Q659 878 799 974Q874 1026 906 1065T938 1149Q938 1200 889 1234T748 1268Q526 1268 526 1059V0H135V1100Q135 1315 302 1441T748 1567Q1024
+1567 1181 1468T1339 1190Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1276" d="M874 0L799 150H791Q712 52 630 16T418 -20Q258 -20 166 76T74 346Q74 527 200 615T565 715L754 721V737Q754 877 616 877Q492 877 301 793L188 1051Q386 1153 688 1153Q906 1153 1025 1045T1145
+743V0H874ZM584 256Q655 256 705 301T756 418V506L666 502Q473 495 473 360Q473 256 584 256ZM892 1241Q823 1285 689 1379T460 1548V1569H890Q942 1499 1093 1336L1152 1270V1241H892Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1276" d="M874 0L799 150H791Q712 52 630 16T418 -20Q258 -20 166 76T74 346Q74 527 200 615T565 715L754 721V737Q754 877 616 877Q492 877 301 793L188 1051Q386 1153 688 1153Q906 1153 1025 1045T1145
+743V0H874ZM584 256Q655 256 705 301T756 418V506L666 502Q473 495 473 360Q473 256 584 256ZM434 1241V1270Q588 1435 629 1483T698 1569H1126V1548Q1046 1484 906 1385T694 1241H434Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1276" d="M874 0L799 150H791Q712 52 630 16T418 -20Q258 -20 166 76T74 346Q74 527 200 615T565 715L754 721V737Q754 877 616 877Q492 877 301 793L188 1051Q386 1153 688 1153Q906 1153 1025
+1045T1145 743V0H874ZM584 256Q655 256 705 301T756 418V506L666 502Q473 495 473 360Q473 256 584 256ZM850 1494Q766 1542 649 1644Q524 1537 455 1494H197V1523Q266 1588 341 1676T455 1822H848Q942 1685 1104 1523V1494H850Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1276" d="M874 0L799 150H791Q712 52 630 16T418 -20Q258 -20 166 76T74 346Q74 527 200 615T565 715L754 721V737Q754 877 616 877Q492 877 301 793L188 1051Q386 1153 688 1153Q906 1153 1025 1045T1145
+743V0H874ZM584 256Q655 256 705 301T756 418V506L666 502Q473 495 473 360Q473 256 584 256ZM840 1239Q795 1239 750 1254T660 1287T575 1320T496 1335Q442 1335 424 1237H244Q255 1412 316 1495T496 1579Q534 1579 577 1564T664 1531T751 1498T832 1483Q861 1483
+878 1508T904 1581H1086Q1075 1414 1012 1327T840 1239Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1276" d="M874 0L799 150H791Q712 52 630 16T418 -20Q258 -20 166 76T74 346Q74 527 200 615T565 715L754 721V737Q754 877 616 877Q492 877 301 793L188 1051Q386 1153 688 1153Q906 1153 1025 1045T1145
+743V0H874ZM584 256Q655 256 705 301T756 418V506L666 502Q473 495 473 360Q473 256 584 256ZM268 1413Q268 1488 314 1529T438 1571Q517 1571 563 1529T610 1413Q610 1342 564 1300T438 1257Q360 1257 314 1298T268 1413ZM747 1413Q747 1488 793 1529T919 1571Q999
+1571 1045 1528T1092 1413Q1092 1342 1046 1300T919 1257Q838 1257 793 1298T747 1413Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1276" d="M874 0L799 150H791Q712 52 630 16T418 -20Q258 -20 166 76T74 346Q74 527 200 615T565 715L754 721V737Q754 877 616 877Q492 877 301 793L188 1051Q386 1153 688 1153Q906 1153 1025 1045T1145
+743V0H874ZM584 256Q655 256 705 301T756 418V506L666 502Q473 495 473 360Q473 256 584 256ZM925 1491Q925 1378 849 1308T653 1237Q532 1237 461 1305T389 1489Q389 1605 460 1674T653 1743Q771 1743 848 1673T925 1491ZM737 1489Q737 1527 713 1550T653 1573Q618
+1573 594 1550T569 1489Q569 1452 590 1429T653 1405Q688 1405 712 1428T737 1489Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1915" d="M1341 -20Q1061 -20 911 170Q831 87 770 50T631 -4T434 -20Q272 -20 173 81T74 352Q74 697 571 715L754 721V739Q754 877 618 877Q480 877 305 797L195 1053Q385 1153 649 1153Q850 1153 985 1059Q1055
+1108 1138 1130T1337 1153Q1566 1153 1697 1017T1829 633V461H1133Q1137 371 1207 315T1393 258Q1587 258 1757 344V63Q1663 15 1566 -2T1341 -20ZM756 506L672 502Q566 498 520 464T473 356Q473 256 586 256Q655 256 705 301T756 418V506ZM1315 887Q1153 887 1139
+707H1479Q1477 789 1431 838T1315 887Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="1104" d="M651 -20Q373 -20 230 130T86 561Q86 843 241 998T682 1153Q879 1153 1053 1067L938 778Q867 809 807 827T682 846Q587 846 535 772T483 563Q483 291 684 291Q856 291 1014 391V80Q863 -20
+651 -20ZM848 -252Q848 -361 773 -426T574 -492Q438 -492 361 -463V-258Q444 -285 508 -285Q560 -285 560 -238Q560 -205 519 -180T412 -139L484 0H687L678 -29Q774 -68 811 -121T848 -252Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1266" d="M682 -20Q399 -20 243 130T86 559Q86 846 231 999T645 1153Q901 1153 1040 1020T1180 635V461H481Q485 366 550 312T729 258Q832 258 918 277T1106 344V63Q1014 16 916 -2T682 -20ZM659 887Q590
+887 544 844T489 707H825Q823 789 779 838T659 887ZM877 1241Q808 1285 674 1379T445 1548V1569H875Q927 1499 1078 1336L1137 1270V1241H877Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1266" d="M682 -20Q399 -20 243 130T86 559Q86 846 231 999T645 1153Q901 1153 1040 1020T1180 635V461H481Q485 366 550 312T729 258Q832 258 918 277T1106 344V63Q1014 16 916 -2T682 -20ZM659 887Q590
+887 544 844T489 707H825Q823 789 779 838T659 887ZM471 1241V1270Q625 1435 666 1483T735 1569H1163V1548Q1083 1484 943 1385T731 1241H471Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1266" d="M682 -20Q399 -20 243 130T86 559Q86 846 231 999T645 1153Q901 1153 1040 1020T1180 635V461H481Q485 366 550 312T729 258Q832 258 918 277T1106 344V63Q1014 16 916 -2T682 -20ZM659
+887Q590 887 544 844T489 707H825Q823 789 779 838T659 887ZM858 1241Q774 1289 657 1391Q532 1284 463 1241H205V1270Q274 1335 349 1423T463 1569H856Q950 1432 1112 1270V1241H858Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1266" d="M682 -20Q399 -20 243 130T86 559Q86 846 231 999T645 1153Q901 1153 1040 1020T1180 635V461H481Q485 366 550 312T729 258Q832 258 918 277T1106 344V63Q1014 16 916 -2T682 -20ZM659
+887Q590 887 544 844T489 707H825Q823 789 779 838T659 887ZM252 1413Q252 1488 298 1529T422 1571Q501 1571 547 1529T594 1413Q594 1342 548 1300T422 1257Q344 1257 298 1298T252 1413ZM731 1413Q731 1488 777 1529T903 1571Q983 1571 1029 1528T1076 1413Q1076
+1342 1030 1300T903 1257Q822 1257 777 1298T731 1413Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="666" d="M528 0H137V1133H528V0ZM302 1241Q233 1285 99 1379T-130 1548V1569H300Q352 1499 503 1336L562 1270V1241H302Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="666" d="M528 0H137V1133H528V0ZM107 1241V1270Q261 1435 302 1483T371 1569H799V1548Q719 1484 579 1385T367 1241H107Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="666" d="M528 0H137V1133H528V0ZM533 1241Q449 1289 332 1391Q207 1284 138 1241H-120V1270Q-51 1335 24 1423T138 1569H531Q625 1432 787 1270V1241H533Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="666" d="M528 0H137V1133H528V0ZM-61 1413Q-61 1488 -15 1529T109 1571Q188 1571 234 1529T281 1413Q281 1342 235 1300T109 1257Q31 1257 -15 1298T-61 1413ZM418 1413Q418 1488 464 1529T590 1571Q670
+1571 716 1528T763 1413Q763 1342 717 1300T590 1257Q509 1257 464 1298T418 1413Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1313" d="M1217 580Q1217 305 1065 143T649 -20Q390 -20 239 119T88 498Q88 737 218 875T567 1014Q759 1014 811 930L819 934Q752 1064 676 1141L494 1022L377 1206L520 1298L371 1391L479 1573Q653 1500
+745 1438L954 1575L1069 1393L924 1296Q1083 1139 1150 969T1217 580ZM817 545Q817 629 772 681T653 733Q561 733 525 677T489 500Q489 258 653 258Q744 258 780 329T817 545Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1372" d="M850 0V618Q850 731 818 788T713 846Q614 846 570 767T526 496V0H135V1133H430L479 993H502Q552 1073 640 1113T844 1153Q1032 1153 1136 1044T1241 737V0H850ZM870 1239Q825 1239 780 1254T690
+1287T605 1320T526 1335Q472 1335 454 1237H274Q285 1412 346 1495T526 1579Q564 1579 607 1564T694 1531T781 1498T862 1483Q891 1483 908 1508T934 1581H1116Q1105 1414 1042 1327T870 1239Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1305" d="M1217 569Q1217 291 1068 136T649 -20Q391 -20 239 139T86 569Q86 846 235 999T655 1153Q822 1153 950 1082T1147 879T1217 569ZM483 569Q483 423 522 347T653 270Q744 270 781 346T819 569Q819
+714 781 788T651 862Q561 862 522 789T483 569ZM863 1241Q794 1285 660 1379T431 1548V1569H861Q913 1499 1064 1336L1123 1270V1241H863Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1305" d="M1217 569Q1217 291 1068 136T649 -20Q391 -20 239 139T86 569Q86 846 235 999T655 1153Q822 1153 950 1082T1147 879T1217 569ZM483 569Q483 423 522 347T653 270Q744 270 781 346T819 569Q819
+714 781 788T651 862Q561 862 522 789T483 569ZM416 1241V1270Q570 1435 611 1483T680 1569H1108V1548Q1028 1484 888 1385T676 1241H416Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1305" d="M1217 569Q1217 291 1068 136T649 -20Q391 -20 239 139T86 569Q86 846 235 999T655 1153Q822 1153 950 1082T1147 879T1217 569ZM483 569Q483 423 522 347T653 270Q744 270 781 346T819
+569Q819 714 781 788T651 862Q561 862 522 789T483 569ZM852 1241Q768 1289 651 1391Q526 1284 457 1241H199V1270Q268 1335 343 1423T457 1569H850Q944 1432 1106 1270V1241H852Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1305" d="M1217 569Q1217 291 1068 136T649 -20Q391 -20 239 139T86 569Q86 846 235 999T655 1153Q822 1153 950 1082T1147 879T1217 569ZM483 569Q483 423 522 347T653 270Q744 270 781 346T819 569Q819
+714 781 788T651 862Q561 862 522 789T483 569ZM827 1239Q782 1239 737 1254T647 1287T562 1320T483 1335Q429 1335 411 1237H231Q242 1412 303 1495T483 1579Q521 1579 564 1564T651 1531T738 1498T819 1483Q848 1483 865 1508T891 1581H1073Q1062 1414 999 1327T827
+1239Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1305" d="M1217 569Q1217 291 1068 136T649 -20Q391 -20 239 139T86 569Q86 846 235 999T655 1153Q822 1153 950 1082T1147 879T1217 569ZM483 569Q483 423 522 347T653 270Q744 270 781 346T819
+569Q819 714 781 788T651 862Q561 862 522 789T483 569ZM239 1413Q239 1488 285 1529T409 1571Q488 1571 534 1529T581 1413Q581 1342 535 1300T409 1257Q331 1257 285 1298T239 1413ZM718 1413Q718 1488 764 1529T890 1571Q970 1571 1016 1528T1063 1413Q1063
+1342 1017 1300T890 1257Q809 1257 764 1298T718 1413Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1159" d="M72 588V856H1085V588H72ZM422 332Q422 414 461 458T578 502Q653 502 694 459T735 332Q735 252 692 207T578 162Q507 162 465 206T422 332ZM422 1112Q422 1194 461 1238T578 1282Q653 1282
+694 1239T735 1112Q735 1032 692 987T578 942Q507 942 465 986T422 1112Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1362" d="M274 113Q86 271 86 569Q86 846 243 999T684 1153Q809 1153 918 1114L989 1225L1157 1120L1090 1016Q1274 858 1274 569Q1274 289 1118 135T678 -20Q553 -20 449 14L365 -117L195 -10L274 113ZM461
+569Q461 470 473 422L762 870Q726 883 680 883Q566 883 514 809T461 569ZM899 569Q899 655 889 700L606 258Q633 250 682 250Q796 250 847 323T899 569Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1372" d="M942 0L893 141H870Q821 63 734 22T528 -20Q341 -20 237 88T133 395V1133H524V514Q524 403 555 346T659 289Q760 289 803 368T846 637V1133H1237V0H942ZM863 1241Q794 1285 660 1379T431 1548V1569H861Q913
+1499 1064 1336L1123 1270V1241H863Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1372" d="M942 0L893 141H870Q821 63 734 22T528 -20Q341 -20 237 88T133 395V1133H524V514Q524 403 555 346T659 289Q760 289 803 368T846 637V1133H1237V0H942ZM471 1241V1270Q625 1435 666 1483T735
+1569H1163V1548Q1083 1484 943 1385T731 1241H471Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1372" d="M942 0L893 141H870Q821 63 734 22T528 -20Q341 -20 237 88T133 395V1133H524V514Q524 403 555 346T659 289Q760 289 803 368T846 637V1133H1237V0H942ZM883 1241Q799 1289 682 1391Q557
+1284 488 1241H230V1270Q299 1335 374 1423T488 1569H881Q975 1432 1137 1270V1241H883Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1372" d="M942 0L893 141H870Q821 63 734 22T528 -20Q341 -20 237 88T133 395V1133H524V514Q524 403 555 346T659 289Q760 289 803 368T846 637V1133H1237V0H942ZM272 1413Q272 1488 318 1529T442
+1571Q521 1571 567 1529T614 1413Q614 1342 568 1300T442 1257Q364 1257 318 1298T272 1413ZM751 1413Q751 1488 797 1529T923 1571Q1003 1571 1049 1528T1096 1413Q1096 1342 1050 1300T923 1257Q842 1257 797 1298T751 1413Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1249" d="M-2 1133H410L602 483Q616 432 621 360H629Q637 429 653 481L850 1133H1249L801 -72Q715 -302 590 -397T262 -492Q184 -492 102 -475V-168Q155 -180 223 -180Q275 -180 314 -160T382 -104T444
+16L-2 1133ZM401 1241V1270Q555 1435 596 1483T665 1569H1093V1548Q1013 1484 873 1385T661 1241H401Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1317" d="M526 987Q569 1065 648 1109T827 1153Q1012 1153 1120 999T1229 569Q1229 298 1118 139T813 -20Q640 -20 526 109H512L519 49L526 -43V-492H135V1556H526V1212Q526 1106 508 987H526ZM682 846Q597
+846 563 785T526 600V571Q526 425 565 360T688 295Q768 295 799 365T831 573Q831 707 798 776T682 846Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1249" d="M-2 1133H410L602 483Q616 432 621 360H629Q637 429 653 481L850 1133H1249L801 -72Q715 -302 590 -397T262 -492Q184 -492 102 -475V-168Q155 -180 223 -180Q275 -180 314 -160T382 -104T444
+16L-2 1133ZM472 1413Q472 1488 518 1529T642 1571Q721 1571 767 1529T814 1413Q814 1342 768 1300T642 1257Q564 1257 518 1298T472 1413ZM951 1413Q951 1488 997 1529T1123 1571Q1203 1571 1249 1528T1296 1413Q1296 1342 1250 1300T1123 1257Q1042 1257 997
+1298T951 1413Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1024" d="M74 414V690H950V414H74Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="2048" d="M74 414V690H1970V414H74Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="512" d="M35 877L20 899Q120 1290 197 1460H475Q408 1148 377 877H35Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="512" d="M477 1460L492 1438Q400 1072 315 877H37Q105 1194 135 1460H477Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="633" d="M498 299L512 276Q415 -105 336 -285H57Q86 -147 115 24T156 299H498Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="1022" d="M545 877L530 899Q630 1290 707 1460H985Q918 1148 887 877H545ZM35 877L20 899Q120 1290 197 1460H475Q408 1148 377 877H35Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="1022" d="M477 1460L492 1438Q400 1072 315 877H37Q105 1194 135 1460H477ZM987 1460L1001 1438Q908 1067 825 877H547Q615 1194 645 1460H987Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="1143" d="M498 299L512 276Q415 -105 336 -285H57Q86 -147 115 24T156 299H498ZM1008 299L1022 276Q925 -105 846 -285H567Q596 -147 625 24T666 299H1008Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="803" d="M74 748Q74 922 158 1015T401 1108Q559 1108 644 1014T729 748Q729 576 642 482T401 387Q246 387 160 480T74 748Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="819" d="M74 588L463 1071L743 922L471 575L743 227L463 80L74 561V588Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="819" d="M745 561L358 80L76 227L348 575L76 922L358 1071L745 588V561Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.ttf b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.ttf
new file mode 100644
index 0000000..21f6f84
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.ttf differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.woff b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.woff
new file mode 100644
index 0000000..af67f18
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.woff differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.woff2 b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.woff2
new file mode 100644
index 0000000..473b2b4
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-ExtraBold-webfont.woff2 differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.eot b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.eot
new file mode 100644
index 0000000..6e56f5f
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.eot differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.svg
new file mode 100644
index 0000000..c2f16d1
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.svg
@@ -0,0 +1,19043 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1131" ><font-face
+    font-family="Open Sans"
+    units-per-em="2048"
+    panose-1="2 11 6 6 3 5 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="530" d="M555 1462L281 403H172Q221 710 348 1462H555ZM43 78Q43 154 82 198T190 242Q235 242 263 215T291 133Q291 65 252 18T147 -29Q98 -29 71 -1T43 78Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="791" d="M485 1462L332 934H225L297 1462H485ZM834 1462L680 934H573L645 1462H834Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M1036 899L938 559H1223L1210 430H901L776 0H637L766 430H463L336 0H203L324 430H63L76 559H360L461 899H184L197 1026H498L621 1462H760L635 1026H940L1067 1462H1200L1075 1026H1339L1327
+899H1036ZM500 559H803L899 899H596L500 559Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1128" d="M942 492Q942 330 830 229T520 106L471 -119H338L387 104Q192 118 72 176V330Q154 289 247 267T414 244L512 696Q373 745 311 819T248 1008Q248 1167 356 1263T655 1376L694 1552H827L788 1374Q947
+1362 1071 1298L1008 1163Q887 1226 760 1235L666 795Q815 740 878 670T942 492ZM549 250Q656 263 719 325T782 479Q782 533 749 575T635 649L549 250ZM627 1235Q519 1224 460 1166T401 1010Q401 957 435 913T543 842L627 1235Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1624" d="M1468 1462L383 0H231L1317 1462H1468ZM1284 772Q1217 772 1165 708T1081 519T1049 279Q1049 106 1155 106Q1220 106 1272 171T1358 369T1393 606Q1393 772 1284 772ZM1532 621Q1532 514 1501 385T1419
+168T1298 30T1141 -20Q1031 -20 970 54T909 274Q909 440 959 592T1096 821T1296 897Q1412 897 1472 826T1532 621ZM543 1358Q477 1358 424 1295T339 1108T307 864Q307 692 414 692Q466 692 508 731T581 845T632 1020T651 1192Q651 1358 543 1358ZM791 1206Q791
+1098 759 969T677 751T556 614T399 565Q290 565 229 640T168 860Q168 1026 218 1178T355 1407T555 1483Q671 1483 731 1411T791 1206Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1372" d="M737 1348Q632 1348 574 1288T516 1118Q516 998 598 883Q737 954 789 993T872 1078T903 1182Q903 1259 861 1303T737 1348ZM471 119Q558 119 639 152T834 276L528 709Q400 642 344 593T259
+486T229 354Q229 248 295 184T471 119ZM66 342Q66 490 156 599T459 811Q356 976 356 1120Q356 1284 462 1384T743 1485Q892 1485 979 1406T1067 1194Q1067 1116 1035 1057T947 949T820 859T666 776L944 387Q1071 497 1143 682H1311Q1210 446 1028 270L1231 0H1030L913
+166Q793 66 683 23T436 -20Q268 -20 167 76T66 342Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="444" d="M485 1462L332 934H225L297 1462H485Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="584" d="M82 272Q82 611 202 899T586 1462H743Q497 1192 372 892T246 274Q246 -65 360 -324H229Q82 -58 82 272Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="584" d="M500 864Q500 523 379 235T-4 -324H-160Q336 227 336 864Q336 1205 223 1462H354Q500 1193 500 864Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1130" d="M854 1528L731 1145L1153 1163L1145 1006L752 1053L932 670L766 618L653 1024L395 680L279 801L588 1085L215 1194L270 1348L641 1163L682 1563L854 1528Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1128" d="M516 651H127V793H516V1184H657V793H1047V651H657V264H516V651Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="492" d="M291 238L299 215Q186 -20 29 -264H-100Q26 22 104 238H291Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="639" d="M55 469L90 627H569L535 469H55Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="518" d="M43 74Q43 151 83 196T195 242Q238 242 264 216T291 137Q291 66 251 19T143 -29Q97 -29 70 -3T43 74Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="717" d="M893 1462L80 0H-94L719 1462H893Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1128" d="M1092 1014Q1092 719 1014 475T800 106T485 -20Q309 -20 215 107T121 477Q121 747 203 991T419 1360T727 1485Q1092 1485 1092 1014ZM717 1341Q604 1341 508 1226T353 903T293 479Q293 307 343 215T504
+123Q619 123 713 237T863 565T920 1018Q920 1341 717 1341Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1128" d="M588 0H416L612 913Q671 1174 700 1272Q650 1219 561 1161L383 1051L303 1178L752 1462H901L588 0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1128" d="M911 0H12L43 147L508 567Q610 660 684 730T807 863T879 987T903 1124Q903 1223 843 1281T680 1339Q603 1339 530 1311T367 1214L285 1329Q476 1483 698 1483Q874 1483 976 1395T1079 1151Q1079 1040
+1040 947T909 750T614 469L262 162V154H940L911 0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1128" d="M1073 1159Q1073 1003 972 895T692 754V745Q816 722 887 639T958 430Q958 297 896 196T715 37T432 -20Q222 -20 47 59V223Q141 174 246 148T436 121Q598 121 688 200T778 418Q778 549 699 616T479
+684H348L379 827H518Q683 827 792 914T901 1141Q901 1233 843 1287T686 1341Q606 1341 529 1314T354 1221L274 1339Q469 1483 698 1483Q877 1483 975 1396T1073 1159Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1128" d="M1067 334H834L762 0H598L672 334H16L45 492L879 1470H1075L868 487H1100L1067 334ZM705 487Q751 707 783 860T899 1305H891Q874 1276 825 1209T752 1112L219 487H705Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1128" d="M598 893Q780 893 887 789T995 506Q995 345 922 223T718 41T410 -20Q217 -20 80 59V223Q244 121 414 121Q605 121 712 217T819 485Q819 611 746 684T541 758Q493 758 444 752T305 721L231 778L428
+1462H1096L1063 1309H541L414 870Q501 893 598 893Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1128" d="M133 424Q133 633 193 839T357 1190T603 1409T930 1483Q1041 1483 1114 1460L1079 1315Q1011 1337 909 1337Q697 1337 553 1188T340 745H348Q407 824 494 871T688 918Q842 918 932 820T1022 549Q1022
+388 956 255T775 51T514 -20Q332 -20 233 95T133 424ZM532 121Q626 121 699 175T813 324T854 532Q854 780 633 780Q567 780 505 752T395 676T323 571T299 416Q299 279 359 200T532 121Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1128" d="M174 0L942 1313H223L254 1462H1145L1118 1323L354 0H174Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1128" d="M741 1485Q915 1485 1012 1399T1110 1163Q1110 1034 1032 938T766 762Q893 684 946 597T999 395Q999 273 939 178T767 31T502 -20Q312 -20 204 78T96 346Q96 494 191 602T487 786Q392 855 352 930T311
+1102Q311 1213 365 1300T519 1436T741 1485ZM608 700Q423 640 347 557T270 354Q270 247 339 184T520 121Q659 121 742 195T825 391Q825 490 773 565T608 700ZM729 1341Q615 1341 547 1276T479 1100Q479 1018 518 956T645 840Q806 900 873 971T940 1145Q940 1235
+883 1288T729 1341Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1128" d="M1067 1034Q1067 840 1011 628T864 268T642 50T340 -20Q204 -20 98 14V172Q232 125 344 125Q546 125 671 266T860 707H850Q799 632 718 589T537 545Q368 545 276 643T184 932Q184 1085 248 1212T428
+1411T688 1483Q868 1483 967 1369T1067 1034ZM682 1341Q532 1341 441 1228T350 938Q350 814 404 748T567 682Q643 682 707 710T815 792T880 906T901 1057Q901 1188 842 1264T682 1341Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="518" d="M43 74Q43 151 83 196T195 242Q238 242 264 216T291 137Q291 66 251 19T143 -29Q97 -29 70 -3T43 74ZM203 956Q203 1033 243 1078T354 1124Q451 1124 451 1020Q451 947 410 901T303 854Q257 854 230
+880T203 956Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="518" d="M291 238L299 215Q186 -20 29 -264H-100Q26 22 104 238H291ZM203 956Q203 1033 243 1078T354 1124Q451 1124 451 1020Q451 947 410 901T303 854Q257 854 230 880T203 956Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1128" d="M1040 242L121 664V762L1040 1241V1092L293 721L1040 393V242Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1128" d="M127 858V997H1047V858H127ZM127 444V586H1047V444H127Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1128" d="M121 393L866 721L121 1092V1241L1040 762V664L121 242V393Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="874" d="M260 403Q282 533 332 616T498 791Q626 891 666 935T729 1029T752 1141Q752 1234 701 1284T553 1335Q472 1335 398 1310T258 1253L197 1382Q289 1433 389 1458T571 1483Q738 1483 830 1399T922
+1161Q922 1038 857 935T631 711Q506 620 462 564T395 403H260ZM158 74Q158 151 198 196T309 242Q353 242 379 216T406 137Q406 64 365 18T258 -29Q212 -29 185 -3T158 74Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1735" d="M1679 852Q1679 673 1624 528T1469 301T1247 219Q1050 219 1034 403H1026Q915 219 735 219Q620 219 555 294T489 504Q489 661 557 788T745 987T1006 1059Q1071 1059 1133 1047T1284 999Q1220 757 1186
+631T1155 459Q1155 342 1257 342Q1335 342 1398 409T1499 592T1536 836Q1536 1075 1408 1203T1038 1331Q810 1331 632 1224T355 929T256 512Q256 242 399 94T809 -55Q1006 -55 1229 31V-96Q1010 -186 786 -186Q472 -186 292 -2T111 504Q111 765 237 989T581 1337T1067
+1460Q1258 1460 1396 1385T1606 1171T1679 852ZM985 938Q891 938 811 883T685 730T639 518Q639 425 672 384T770 342Q957 342 1042 657L1112 915Q1049 938 985 938Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1137" d="M813 465H317L72 0H-117L682 1462H856L1040 0H870L813 465ZM795 621L760 920Q736 1099 731 1270Q694 1182 651 1095T401 621H795Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1225" d="M770 1462Q1202 1462 1202 1126Q1202 985 1115 888T870 762V752Q985 720 1046 642T1108 453Q1108 241 956 121T549 0H86L395 1462H770ZM434 836H682Q838 836 931 909T1024 1108Q1024 1212 958 1263T748
+1315H537L434 836ZM287 145H553Q734 145 831 225T928 453Q928 569 854 630T639 692H403L287 145Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1198" d="M942 1331Q768 1331 631 1234T413 950T332 541Q332 354 429 243T698 131Q837 131 1020 188V39Q934 8 856 -6T668 -20Q426 -20 288 129T150 537Q150 798 255 1022T539 1365T942 1483Q1139 1483 1290 1403L1221
+1262Q1083 1331 942 1331Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1364" d="M1300 877Q1300 616 1195 416T895 108T438 0H86L395 1462H737Q1013 1462 1156 1313T1300 877ZM449 147Q651 147 804 238T1038 497T1120 879Q1120 1094 1017 1204T715 1315H537L287 147H449Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1047" d="M821 0H86L395 1462H1130L1098 1309H532L434 840H961L932 688H403L289 152H854L821 0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="967" d="M258 0H86L395 1462H1130L1100 1309H532L422 776H950L918 623H389L258 0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1386" d="M821 766H1280L1126 55Q910 -20 707 -20Q443 -20 297 124T150 528Q150 797 251 1017T533 1360T932 1483Q1049 1483 1151 1463T1358 1399L1292 1247Q1215 1281 1127 1306T932 1331Q763 1331 625 1230T409
+946T332 539Q332 349 434 240T721 131Q875 131 981 170L1077 614H788L821 766Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1389" d="M1085 0H918L1061 688H401L256 0H86L395 1462H565L434 840H1094L1227 1462H1395L1085 0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="559" d="M86 0L397 1462H565L254 0H86Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="547" d="M-166 -385Q-271 -385 -319 -360L-313 -213Q-244 -233 -168 -233Q-68 -233 -3 -171T88 12L395 1462H565L256 -6Q177 -385 -166 -385Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1141" d="M1034 0H848Q776 181 702 359T555 721L381 590L256 0H86L395 1462H565L414 752L1114 1462H1323L684 825L1034 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="971" d="M86 0L395 1462H565L289 154H854L821 0H86Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1714" d="M676 0L510 1296H502Q495 1224 474 1099T436 899L246 0H84L393 1462H637L786 258H795L1454 1462H1720L1417 0H1243Q1369 590 1436 905T1530 1298H1524L807 0H676Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1438" d="M1139 0H958L498 1223H492Q460 1002 418 805L246 0H84L393 1462H573L1032 242H1038Q1068 466 1110 647L1284 1462H1448L1139 0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1475" d="M1411 907Q1411 638 1323 426T1071 97T692 -20Q436 -20 293 129T150 549Q150 813 246 1031T509 1367T887 1485Q1131 1485 1271 1331T1411 907ZM874 1333Q717 1333 593 1232T401 951T332 553Q332 354 430
+243T696 131Q848 131 968 228T1159 508T1229 911Q1229 1110 1135 1221T874 1333Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1159" d="M1159 1085Q1159 837 995 706T514 575H379L256 0H86L395 1462H725Q939 1462 1049 1368T1159 1085ZM410 721H543Q759 721 871 812T983 1079Q983 1204 914 1259T700 1315H537L410 721Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1475" d="M874 1333Q717 1333 593 1232T401 951T332 553Q332 354 430 243T696 131Q854 131 975 231T1162 511T1229 911Q1229 1110 1135 1221T874 1333ZM725 -18L708 -20H692Q436 -20 293 129T150 549Q150 813 246
+1031T509 1367T887 1485Q1131 1485 1271 1331T1411 907Q1411 574 1272 331T897 10L1171 -348H952L725 -18Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1165" d="M385 608L256 0H86L395 1462H715Q1161 1462 1161 1096Q1161 748 793 647L1032 0H846L637 608H385ZM532 1313Q430 819 416 754H584Q777 754 881 839T985 1083Q985 1204 918 1258T698 1313H532Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1028" d="M913 424Q913 213 773 97T377 -20Q271 -20 191 -6T39 43V213Q201 129 379 129Q541 129 636 204T731 412Q731 490 679 549T483 690Q332 775 274 860T215 1061Q215 1248 347 1365T694 1483Q793 1483 878
+1464T1059 1399L993 1249Q927 1287 845 1309T694 1331Q560 1331 479 1262T397 1073Q397 1019 414 981T468 908T610 813Q757 725 808 675T886 565T913 424Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1020" d="M487 0H315L592 1311H186L219 1462H1204L1174 1311H766L487 0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1384" d="M1407 1462L1202 496Q1147 233 1005 107T616 -20Q386 -20 275 84T164 383Q164 464 188 584L377 1462H547L356 571Q334 465 334 383Q334 266 407 199T625 131Q797 131 892 218T1032 508L1237 1462H1407Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1122" d="M479 197Q540 341 641 535L1120 1462H1311L530 0H350L188 1462H358L455 532Q475 336 475 197H479Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1745" d="M1257 0H1087L1038 965Q1030 1101 1030 1247H1024Q999 1175 963 1093T459 0H285L223 1462H393L424 561L426 473Q426 375 416 215H422Q511 458 578 598L983 1462H1161L1204 602Q1213 449 1213 298L1212
+215H1221Q1296 439 1352 569L1739 1462H1921L1257 0Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1063" d="M956 0H776L563 641L82 0H-104L492 776L229 1462H401L604 899L1047 1462H1233L678 768L956 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1030" d="M537 715L1026 1462H1219L592 541L479 0H307L426 549L188 1462H358L537 715Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1087" d="M885 0H-16L12 137L936 1307H281L313 1462H1171L1145 1323L221 154H918L885 0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="586" d="M371 -324H-16L365 1462H752L721 1321H494L176 -182H403L371 -324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="717" d="M375 1462L592 0H438L221 1462H375Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="586" d="M-119 -182H106L426 1321H199L229 1462H618L238 -324H-150L-119 -182Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1059" d="M53 553L651 1473H760L1026 553H881L680 1300L213 553H53Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="807" d="M623 -324H-188L-158 -184H653L623 -324Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1135" d="M903 1241H799Q738 1302 671 1395T575 1548V1569H756Q799 1433 903 1266V1241Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1157" d="M639 1116Q731 1116 803 1067T915 924H926L993 1096H1120L887 0H754L780 209H772Q593 -20 395 -20Q256 -20 177 79T98 350Q98 558 169 736T365 1015T639 1116ZM449 119Q546 119 642 211T798 452T858 750Q858
+853 802 914T655 975Q551 975 462 889T321 656T270 346Q270 232 317 176T449 119Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1182" d="M545 -20Q448 -20 375 31T264 170H254L184 0H59L389 1556H557Q506 1314 479 1186T403 885H412Q505 1003 595 1058T782 1114Q923 1114 1002 1015T1081 743Q1081 534 1013 357T822 80T545 -20ZM731 975Q635
+975 536 880T378 641T319 346Q319 236 374 178T535 119Q634 119 719 200T857 430T909 748Q909 975 731 975Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="922" d="M506 -20Q312 -20 205 87T98 389Q98 589 172 758T376 1021T670 1116Q807 1116 938 1065L891 924Q771 975 672 975Q560 975 468 899T323 686T270 389Q270 261 336 190T520 119Q592 119 656 139T782 186V43Q658
+-20 506 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1182" d="M639 1114Q833 1114 920 924H930Q947 1079 975 1198L1053 1556H1219L889 0H750L772 209H764Q663 84 575 32T393 -20Q254 -20 176 78T98 350Q98 564 170 742T364 1017T639 1114ZM449 119Q543 119 643 212T801
+451T860 748Q860 859 806 917T649 975Q548 975 462 893T323 661T270 346Q270 119 449 119Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1010" d="M492 -20Q308 -20 203 89T98 391Q98 579 172 751T370 1020T641 1116Q794 1116 871 1050T948 864Q948 684 782 582T307 479H274L270 399Q270 268 331 195T522 121Q585 121 651 139T817 205V59Q723 15 651
+-2T492 -20ZM631 973Q528 973 438 879T299 618H311Q539 618 660 677T782 850Q782 903 746 938T631 973Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="641" d="M-104 -492Q-173 -492 -229 -471V-330Q-165 -352 -117 -352Q-41 -352 0 -290T66 -113L293 969H100L113 1036L319 1102L342 1202Q388 1402 469 1484T711 1567Q751 1567 809 1556T899 1530L856 1401Q780
+1430 719 1430Q632 1430 586 1382T510 1204L485 1096H723L698 969H461L229 -129Q190 -318 109 -405T-104 -492Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1026" d="M1100 1096L1075 989L864 965Q905 903 905 807Q905 616 789 503T477 389Q422 389 393 397Q254 344 254 266Q254 225 287 212T383 190L500 176Q681 154 762 88T844 -106Q844 -290 698 -391T287 -492Q93
+-492 -17 -419T-127 -211Q-127 -106 -55 -29T178 102Q100 143 100 223Q100 292 151 341T293 434Q230 466 190 528T150 674Q150 868 269 992T575 1116Q653 1116 729 1096H1100ZM35 -195Q35 -272 100 -317T293 -362Q475 -362 577 -299T680 -119Q680 -57 626 -21T442
+29L283 45Q163 20 99 -43T35 -195ZM313 680Q313 595 358 551T483 506Q562 506 621 548T711 663T743 823Q743 905 699 948T573 991Q495 991 437 951T346 838T313 680Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1182" d="M729 0L877 692Q895 786 895 827Q895 975 748 975Q659 975 575 916T426 745T328 473L227 0H59L389 1556H557Q539 1474 523 1397T489 1241T451 1074T403 885H414Q508 1008 599 1061T791 1114Q922 1114
+993 1042T1065 838Q1065 776 1042 672Q1003 479 897 0H729Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="520" d="M227 0H59L293 1096H461L227 0ZM340 1376Q340 1432 372 1467T455 1503Q543 1503 543 1413Q543 1358 510 1320T432 1282Q392 1282 366 1306T340 1376Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="520" d="M-135 -492Q-204 -492 -258 -471V-330Q-197 -352 -139 -352Q-14 -352 29 -147L293 1096H459L193 -162Q157 -333 79 -412T-135 -492ZM340 1376Q340 1432 372 1467T455 1503Q541 1503 541 1413Q541 1358
+508 1320T430 1282Q392 1282 366 1306T340 1376Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="999" d="M330 559L856 1096H1057L588 629L883 0H696L461 524L309 401L227 0H57L387 1556H557Q485 1220 428 954T326 559H330Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="520" d="M225 0H57L389 1556H557L225 0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1786" d="M696 0L844 692Q862 786 862 827Q862 897 831 936T725 975Q641 975 562 915T422 744T328 475L227 0H59L293 1096H432L410 893H420Q507 1012 593 1064T772 1116Q885 1116 946 1051T1018 870H1026Q1112
+995 1209 1055T1405 1116Q1532 1116 1601 1048T1671 850Q1671 782 1649 672L1505 0H1335L1483 692Q1503 796 1503 838Q1503 900 1469 937T1360 975Q1279 975 1200 917T1062 753T971 500L864 0H696Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1182" d="M729 0L877 692Q897 796 897 836Q897 899 862 937T748 975Q659 975 575 915T426 744T328 475L227 0H59L293 1096H432L410 893H420Q516 1015 605 1065T791 1116Q918 1116 991 1047T1065 852Q1065 773 1042
+672L899 0H729Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1149" d="M643 1110Q833 1110 943 998T1053 688Q1053 500 981 333T786 75T508 -16Q316 -16 207 97T98 406Q98 596 171 763T368 1020T643 1110ZM879 711Q879 826 817 897T647 969Q538 969 452 895T318 690T270 397Q270
+266 333 195T516 123Q620 123 703 196T832 403T879 711Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1182" d="M545 -20Q448 -20 375 30T262 170H252L248 132Q245 107 238 62T123 -492H-43L293 1096H432L406 887H414Q593 1114 786 1114Q923 1114 1002 1017T1081 743Q1081 531 1012 354T821 79T545 -20ZM731 975Q635
+975 536 880T378 641T319 346Q319 236 374 178T535 119Q634 119 719 200T857 430T909 748Q909 975 731 975Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1182" d="M641 1116Q735 1116 806 1066T915 924H928L995 1096H1120L784 -492H618L719 -12Q728 33 776 209H768Q673 88 583 34T397 -20Q257 -20 178 77T98 350Q98 562 170 742T366 1019T641 1116ZM449 119Q541 119
+639 211T797 448T858 748Q858 853 804 914T651 975Q550 975 462 891T322 658T270 346Q270 119 449 119Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="811" d="M752 1116Q821 1116 872 1102L836 952Q783 965 731 965Q640 965 561 905T422 739T334 502L227 0H59L293 1096H432L410 893H420Q492 988 539 1029T637 1093T752 1116Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="877" d="M735 311Q735 155 625 68T313 -20Q144 -20 8 49V207Q78 165 159 142T309 119Q435 119 499 169T563 297Q563 354 528 393T377 500Q247 573 193 643T139 809Q139 947 240 1031T506 1116Q677 1116 836 1042L782
+905L726 930Q625 973 506 973Q413 973 360 930T307 817Q307 761 342 721T489 618Q596 558 642 515T712 423T735 311Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="664" d="M395 117Q450 117 539 143V14Q505 0 455 -10T375 -20Q250 -20 184 39T117 217Q117 283 135 367L262 969H90L104 1042L289 1120L414 1348H512L457 1096H731L705 969H432L303 365Q285 278 285 233Q285 177
+314 147T395 117Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1182" d="M451 1096L301 401Q283 312 283 262Q283 119 430 119Q518 119 603 179T753 351T852 621L952 1096H1118L887 0H748L770 203H758Q660 78 571 29T387 -20Q259 -20 186 49T113 248Q113 310 135 420L281 1096H451Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="946" d="M223 0L98 1096H266L330 483Q354 225 354 121H360Q487 396 539 492L864 1096H1042L451 0H223Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1468" d="M831 0L799 602Q795 696 795 774V930H786L736 812L653 623L362 0H160L117 1096H281L299 502V414Q299 267 291 145H297Q344 269 434 467L729 1096H911L948 502Q954 334 954 240V187L952 145H958Q986 231
+1041 363T1364 1096H1542L1036 0H831Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="979" d="M467 434L121 0H-74L401 565L162 1096H332L506 684L836 1096H1030L575 557L827 0H659L467 434Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="946" d="M98 1096H266L340 551Q350 482 359 348T369 131H375Q410 218 462 331T539 487L864 1096H1042L346 -186Q253 -358 162 -425T-57 -492Q-129 -492 -197 -471V-336Q-134 -354 -66 -354Q16 -354 74 -304T188
+-154L264 -18L98 1096Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="909" d="M690 0H-29L-6 117L688 971H209L236 1096H893L864 956L184 125H715L690 0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="715" d="M442 -324Q301 -324 226 -272T150 -100Q150 -48 170 41Q203 187 221 268T236 371Q236 514 27 514L59 657Q177 657 248 700T342 848L410 1174Q444 1334 527 1398T782 1462H815L784 1321Q679 1321
+633 1285T567 1161L496 840Q468 717 405 656T238 578V573Q389 532 389 360Q389 301 371 229L324 18Q309 -40 309 -80Q309 -133 345 -157T465 -182V-324H442Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M541 1556H680V-496H541V1556Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="715" d="M285 1462Q429 1462 505 1410T582 1239Q582 1191 561 1098L512 879Q496 811 496 768Q496 625 705 625L672 481Q553 481 482 438T389 291L322 -35Q286 -199 203 -261T-61 -324H-74V-182Q41 -182
+93 -146T164 -23L236 299Q261 416 324 478T494 559V565Q344 607 344 776Q344 835 362 907L412 1120Q426 1185 426 1219Q426 1272 386 1296T246 1321L274 1462H285Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1128" d="M348 713Q294 713 230 679T115 592V743Q213 852 358 852Q427 852 485 838T629 786Q693 759 741 745T840 731Q895 731 959 764T1075 852V702Q975 592 831 592Q759 592 696 608T561 657Q486 689
+441 701T348 713Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="530" d="M260 684H369L193 -373H-14L260 684ZM250 950Q250 1026 290 1072T401 1118Q445 1118 471 1092T498 1012Q498 941 458 895T352 848Q304 848 277 873T250 950Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1128" d="M582 -20H457L500 195Q368 229 297 332T225 590Q225 775 288 934T467 1192T727 1313L762 1483H885L848 1315Q967 1306 1065 1266L1018 1124Q909 1176 799 1176Q687 1176 595 1100T450 887T397
+590Q397 465 463 392T647 319Q719 319 783 339T909 387V244Q786 182 623 178L582 -20Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1128" d="M842 1481Q1026 1481 1178 1395L1112 1262Q966 1341 834 1341Q621 1341 571 1104L502 778H872L846 651H475L428 432Q406 334 362 266T238 154H963L930 0H-23L4 141Q209 187 262 430L309 651H109L135
+778H336L412 1128Q487 1481 842 1481Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1128" d="M229 723Q229 840 297 938L168 1067L260 1159L387 1030Q490 1100 604 1100Q718 1100 819 1030L948 1159L1040 1069L911 940Q981 836 981 723Q981 604 911 506L1038 379L948 289L819 416Q721
+348 604 348Q485 348 387 418L260 291L170 381L297 508Q229 604 229 723ZM358 723Q358 620 429 549T604 477Q708 477 781 548T854 723Q854 827 781 900T604 973Q502 973 430 901T358 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1128" d="M582 715L1073 1462H1260L727 692H958L930 559H633L600 399H897L868 266H573L516 0H362L418 266H127L156 399H446L479 559H188L217 692H442L240 1462H403L582 715Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M541 1556H680V780H541V1556ZM541 281H680V-496H541V281Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="995" d="M174 770Q174 971 412 1077Q293 1147 293 1280Q293 1407 396 1486T676 1565Q865 1565 997 1497L944 1374Q796 1434 678 1434Q576 1434 516 1394T455 1284Q455 1235 493 1201T655 1110Q755 1066
+804 1027T879 937T905 823Q905 726 844 643T672 504Q786 433 786 315Q786 163 672 78T354 -8Q178 -8 59 53V201Q115 167 195 145T352 123Q485 123 556 167T627 297Q627 345 577 386T424 473Q286 534 230 603T174 770ZM514 1010Q432 984 379 923T326 791Q326 721
+376 674T575 563Q655 607 702 670T750 801Q750 861 701 906T514 1010Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1135" d="M457 1378Q457 1424 485 1457T559 1491Q637 1491 637 1411Q637 1362 608 1328T539 1294Q504 1294 481 1316T457 1378ZM821 1378Q821 1424 849 1457T924 1491Q1001 1491 1001 1411Q1001 1362
+972 1328T903 1294Q868 1294 845 1316T821 1378Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M928 1059Q803 1059 737 972T670 731Q670 562 735 482T928 401Q1010 401 1139 444V322Q1073 294 1026 284T922 274Q730 274 625 393T520 733Q520 941 630 1063T930 1186Q1060 1186 1178
+1126L1118 1006Q1012 1059 928 1059ZM139 731Q139 931 239 1106T514 1382T891 1483Q1088 1483 1261 1386T1538 1114T1642 731Q1642 527 1542 355T1269 81T891 -20Q684 -20 509 83T237 360T139 731ZM244 731Q244 558 331 408T568 171T891 84Q1065 84 1214 171T1450
+406T1538 731Q1538 905 1451 1054T1216 1290T891 1378Q717 1378 568 1291T332 1056T244 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="686" d="M498 1479Q612 1479 651 1376H657L694 1466H780L641 801H549L563 918H559Q519 862 469 825T346 788Q269 788 220 848T170 1014Q170 1141 211 1248T328 1417T498 1479ZM381 891Q442 891
+493 940T579 1077T614 1245Q614 1307 586 1341T500 1376Q408 1376 346 1273T283 1030Q283 891 381 891Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="958" d="M88 584L479 958L557 877L260 549L432 162L319 113L88 555V584ZM483 541L850 946L936 877L653 512L811 162L698 113L483 510V541Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1128" d="M1047 793V264H907V651H127V793H1047Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="639" d="M55 469L90 627H569L535 469H55Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M139 731Q139 931 239 1106T514 1382T891 1483Q1088 1483 1261 1386T1538 1114T1642 731Q1642 527 1542 355T1269 81T891 -20Q684 -20 509 83T237 360T139 731ZM244 731Q244 558 331 408T568
+171T891 84Q1065 84 1214 171T1450 406T1538 731Q1538 905 1451 1054T1216 1290T891 1378Q717 1378 568 1291T332 1056T244 731ZM1194 915Q1194 837 1147 774T1014 676L1241 291H1092L885 643H772V291H645V1171H874Q1037 1171 1115 1108T1194 915ZM772 762H864Q1059
+762 1059 911Q1059 987 1012 1018T862 1049H772V762Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="782" d="M1012 1556H227L260 1688H1047L1012 1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M215 1171Q215 1299 305 1391T526 1483Q609 1483 681 1442T796 1328T838 1171Q838 1043 748 953T526 862Q395 862 305 952T215 1171ZM328 1171Q328 1091 386 1033T526 975Q609 975 666 1033T723
+1171Q723 1253 666 1311T526 1370Q446 1370 387 1312T328 1171Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1128" d="M516 643H127V784H516V1176H657V784H1047V643H657V256H516V643ZM127 0V141H1047V0H127Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="717" d="M657 586H96L119 692L383 920Q498 1020 541 1069T605 1162T625 1253Q625 1306 594 1338T504 1370Q414 1370 309 1290L250 1380Q375 1481 524 1481Q633 1481 695 1425T758 1274Q758 1175
+706 1095T508 889L287 702H682L657 586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="717" d="M549 1036Q618 1019 657 968T696 848Q696 716 605 643T352 569Q227 569 119 625V752Q244 680 358 680Q563 680 563 850Q563 987 385 987H295L317 1094H412Q509 1094 567 1135T625 1247Q625
+1307 591 1337T497 1368Q395 1368 301 1300L246 1393Q355 1481 514 1481Q628 1481 692 1425T756 1274Q756 1094 549 1040V1036Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1135" d="M532 1268Q588 1328 657 1419T764 1569H954V1548Q916 1499 814 1397T637 1241H532V1268Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1194" d="M295 266Q295 119 442 119Q531 119 614 178T762 349T862 618L967 1096H1130L897 0H758L782 205H770Q677 84 587 32T399 -20Q287 -20 236 76H227Q216 -2 205 -72T121 -492H-43L293 1096H461L313
+401Q295 309 295 266Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1206 -260H1092V1401H879V-260H764V559Q702 541 618 541Q402 541 301 666T199 1042Q199 1302 308 1429T649 1556H1206V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="518" d="M170 690Q170 767 210 812T322 858Q365 858 391 832T418 753Q418 682 378 635T270 587Q224 587 197 613T170 690Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="420" d="M211 -276Q211 -374 130 -433T-84 -492Q-125 -492 -170 -483V-383Q-132 -389 -102 -389Q72 -389 72 -279Q72 -233 33 -212T-66 -182L35 0H141L80 -121Q211 -159 211 -276Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="717" d="M537 1462H655L469 586H334L446 1112Q471 1215 504 1337Q479 1312 454 1291T309 1190L258 1280L537 1462Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="688" d="M745 1219Q745 1028 657 908T416 788Q303 788 236 859T168 1055Q168 1172 210 1270T327 1424T502 1479Q619 1479 682 1412T745 1219ZM500 1376Q398 1376 340 1289T281 1059Q281 974 319
+932T426 889Q520 889 578 977T637 1210Q637 1376 500 1376Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="958" d="M872 485L479 115L401 197L698 520L526 911L639 961L872 514V485ZM477 528L109 127L23 197L305 557L147 911L260 961L477 559V528Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1518" d="M1362 1462L276 0H123L1208 1462H1362ZM739 1462H857L671 586H536L648 1112Q673 1215 706 1337Q681 1312 656 1291T511 1190L460 1280L739 1462ZM1327 203H1198L1155 1H1028L1071 203H706L729
+304L1210 883H1343L1222 320H1349L1327 203ZM1095 320Q1164 642 1185 715Q1165 679 1075 566L870 320H1095Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1518" d="M683 1462H801L615 586H480L592 1112Q617 1215 650 1337Q625 1312 600 1291T455 1190L404 1280L683 1462ZM1305 1462L219 0H66L1151 1462H1305ZM1343 1H782L805 107L1069 335Q1184 435 1227
+484T1291 577T1311 668Q1311 721 1280 753T1190 785Q1100 785 995 705L936 795Q1061 896 1210 896Q1319 896 1381 840T1444 689Q1444 590 1392 510T1194 304L973 117H1368L1343 1Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1565" d="M773 1036Q842 1019 881 968T920 848Q920 716 829 643T576 569Q451 569 343 625V752Q468 680 582 680Q787 680 787 850Q787 987 609 987H519L541 1094H636Q733 1094 791 1135T849 1247Q849
+1307 815 1337T721 1368Q619 1368 525 1300L470 1393Q579 1481 738 1481Q852 1481 916 1425T980 1274Q980 1094 773 1040V1036ZM1512 1462L426 0H273L1358 1462H1512ZM1477 203H1348L1305 1H1178L1221 203H856L879 304L1360 883H1493L1372 320H1499L1477 203ZM1245
+320Q1314 642 1335 715Q1315 679 1225 566L1020 320H1245Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="874" d="M657 680Q635 550 585 468T420 293L325 218Q166 91 166 -57Q166 -150 217 -201T365 -252Q445 -252 519 -227T659 -170L721 -299Q631 -347 532 -373T346 -399Q178 -399 87 -316T-4 -78Q-4
+46 62 150T287 373Q419 471 459 525T522 680H657ZM760 1010Q760 933 720 888T608 842Q565 842 539 868T512 946Q512 1017 552 1064T659 1112Q706 1112 733 1087T760 1010Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1137" d="M813 465H317L72 0H-117L682 1462H856L1040 0H870L813 465ZM795 621L760 920Q736 1099 731 1270Q694 1182 651 1095T401 621H795ZM863 1579H759Q698 1640 631 1733T535 1886V1907H716Q759 1771
+863 1604V1579Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1137" d="M813 465H317L72 0H-117L682 1462H856L1040 0H870L813 465ZM795 621L760 920Q736 1099 731 1270Q694 1182 651 1095T401 621H795ZM679 1606Q735 1666 804 1757T911 1907H1101V1886Q1063 1837
+961 1735T784 1579H679V1606Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1137" d="M813 465H317L72 0H-117L682 1462H856L1040 0H870L813 465ZM795 621L760 920Q736 1099 731 1270Q694 1182 651 1095T401 621H795ZM1080 1579H977Q920 1627 816 1768Q682 1649 574 1579H465V1606Q610
+1739 669 1803T752 1907H910Q947 1808 1038 1672L1080 1606V1579Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1137" d="M813 465H317L72 0H-117L682 1462H856L1040 0H870L813 465ZM795 621L760 920Q736 1099 731 1270Q694 1182 651 1095T401 621H795ZM934 1581Q894 1581 857 1598T784 1637T715 1676T649 1694Q605
+1694 580 1666T532 1579H432Q490 1837 663 1837Q707 1837 746 1819T821 1780T888 1740T946 1722Q990 1722 1015 1749T1067 1839H1167Q1101 1581 934 1581Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1137" d="M813 465H317L72 0H-117L682 1462H856L1040 0H870L813 465ZM795 621L760 920Q736 1099 731 1270Q694 1182 651 1095T401 621H795ZM523 1716Q523 1762 551 1795T625 1829Q703 1829 703 1749Q703
+1700 674 1666T605 1632Q570 1632 547 1654T523 1716ZM887 1716Q887 1762 915 1795T990 1829Q1067 1829 1067 1749Q1067 1700 1038 1666T969 1632Q934 1632 911 1654T887 1716Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1137" d="M813 465H317L72 0H-117L682 1462H856L1040 0H870L813 465ZM795 621L760 920Q736 1099 731 1270Q694 1182 651 1095T401 621H795ZM991 1585Q991 1486 931 1428T772 1370Q671 1370 612 1427T553
+1583Q553 1677 615 1735T772 1794Q873 1794 932 1737T991 1585ZM887 1583Q887 1636 855 1667T772 1698Q723 1698 690 1667T657 1583Q657 1529 686 1499T772 1468Q823 1468 855 1498T887 1583Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1673" d="M1448 0H711L809 465H371L78 0H-119L819 1462H1757L1724 1309H1159L1059 840H1587L1559 690H1030L915 152H1481L1448 0ZM840 621L987 1309H903L469 621H840Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1198" d="M942 1331Q768 1331 631 1234T413 950T332 541Q332 354 429 243T698 131Q837 131 1020 188V39Q934 8 856 -6T668 -20Q426 -20 288 129T150 537Q150 798 255 1022T539 1365T942 1483Q1139
+1483 1290 1403L1221 1262Q1083 1331 942 1331ZM758 -276Q758 -374 677 -433T463 -492Q422 -492 377 -483V-383Q415 -389 445 -389Q619 -389 619 -279Q619 -233 580 -212T481 -182L582 0H688L627 -121Q758 -159 758 -276Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1047" d="M821 0H86L395 1462H1130L1098 1309H532L434 840H961L932 688H403L289 152H854L821 0ZM898 1579H794Q733 1640 666 1733T570 1886V1907H751Q794 1771 898 1604V1579Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1047" d="M821 0H86L395 1462H1130L1098 1309H532L434 840H961L932 688H403L289 152H854L821 0ZM657 1606Q713 1666 782 1757T889 1907H1079V1886Q1041 1837 939 1735T762 1579H657V1606Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1047" d="M821 0H86L395 1462H1130L1098 1309H532L434 840H961L932 688H403L289 152H854L821 0ZM1084 1579H981Q924 1627 820 1768Q686 1649 578 1579H469V1606Q614 1739 673 1803T756 1907H914Q951
+1808 1042 1672L1084 1606V1579Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1047" d="M821 0H86L395 1462H1130L1098 1309H532L434 840H961L932 688H403L289 152H854L821 0ZM523 1716Q523 1762 551 1795T625 1829Q703 1829 703 1749Q703 1700 674 1666T605 1632Q570 1632 547
+1654T523 1716ZM887 1716Q887 1762 915 1795T990 1829Q1067 1829 1067 1749Q1067 1700 1038 1666T969 1632Q934 1632 911 1654T887 1716Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="559" d="M86 0L397 1462H565L254 0H86ZM593 1579H489Q428 1640 361 1733T265 1886V1907H446Q489 1771 593 1604V1579Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="559" d="M86 0L397 1462H565L254 0H86ZM412 1606Q468 1666 537 1757T644 1907H834V1886Q796 1837 694 1735T517 1579H412V1606Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="559" d="M86 0L397 1462H565L254 0H86ZM808 1579H705Q648 1627 544 1768Q410 1649 302 1579H193V1606Q338 1739 397 1803T480 1907H638Q675 1808 766 1672L808 1606V1579Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="559" d="M86 0L397 1462H565L254 0H86ZM265 1716Q265 1762 293 1795T367 1829Q445 1829 445 1749Q445 1700 416 1666T347 1632Q312 1632 289 1654T265 1716ZM629 1716Q629 1762 657 1795T732 1829Q809
+1829 809 1749Q809 1700 780 1666T711 1632Q676 1632 653 1654T629 1716Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1364" d="M1300 877Q1300 616 1195 416T895 108T438 0H86L221 649H72L104 799H254L395 1462H737Q1013 1462 1156 1313T1300 877ZM449 147Q651 147 804 238T1038 497T1120 879Q1120 1094 1017 1204T715 1315H537L426
+799H756L723 649H393L287 147H449Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1438" d="M1139 0H958L498 1223H492Q460 1002 418 805L246 0H84L393 1462H573L1032 242H1038Q1068 466 1110 647L1284 1462H1448L1139 0ZM1102 1581Q1062 1581 1025 1598T952 1637T883 1676T817 1694Q773
+1694 748 1666T700 1579H600Q658 1837 831 1837Q875 1837 914 1819T989 1780T1056 1740T1114 1722Q1158 1722 1183 1749T1235 1839H1335Q1269 1581 1102 1581Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1475" d="M1411 907Q1411 638 1323 426T1071 97T692 -20Q436 -20 293 129T150 549Q150 813 246 1031T509 1367T887 1485Q1131 1485 1271 1331T1411 907ZM874 1333Q717 1333 593 1232T401 951T332 553Q332
+354 430 243T696 131Q848 131 968 228T1159 508T1229 911Q1229 1110 1135 1221T874 1333ZM1007 1579H903Q842 1640 775 1733T679 1886V1907H860Q903 1771 1007 1604V1579Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1475" d="M1411 907Q1411 638 1323 426T1071 97T692 -20Q436 -20 293 129T150 549Q150 813 246 1031T509 1367T887 1485Q1131 1485 1271 1331T1411 907ZM874 1333Q717 1333 593 1232T401 951T332 553Q332
+354 430 243T696 131Q848 131 968 228T1159 508T1229 911Q1229 1110 1135 1221T874 1333ZM821 1606Q877 1666 946 1757T1053 1907H1243V1886Q1205 1837 1103 1735T926 1579H821V1606Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1475" d="M1411 907Q1411 638 1323 426T1071 97T692 -20Q436 -20 293 129T150 549Q150 813 246 1031T509 1367T887 1485Q1131 1485 1271 1331T1411 907ZM874 1333Q717 1333 593 1232T401 951T332
+553Q332 354 430 243T696 131Q848 131 968 228T1159 508T1229 911Q1229 1110 1135 1221T874 1333ZM1227 1579H1124Q1067 1627 963 1768Q829 1649 721 1579H612V1606Q757 1739 816 1803T899 1907H1057Q1094 1808 1185 1672L1227 1606V1579Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1475" d="M1411 907Q1411 638 1323 426T1071 97T692 -20Q436 -20 293 129T150 549Q150 813 246 1031T509 1367T887 1485Q1131 1485 1271 1331T1411 907ZM874 1333Q717 1333 593 1232T401 951T332 553Q332
+354 430 243T696 131Q848 131 968 228T1159 508T1229 911Q1229 1110 1135 1221T874 1333ZM1067 1581Q1027 1581 990 1598T917 1637T848 1676T782 1694Q738 1694 713 1666T665 1579H565Q623 1837 796 1837Q840 1837 879 1819T954 1780T1021 1740T1079 1722Q1123
+1722 1148 1749T1200 1839H1300Q1234 1581 1067 1581Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1475" d="M1411 907Q1411 638 1323 426T1071 97T692 -20Q436 -20 293 129T150 549Q150 813 246 1031T509 1367T887 1485Q1131 1485 1271 1331T1411 907ZM874 1333Q717 1333 593 1232T401 951T332
+553Q332 354 430 243T696 131Q848 131 968 228T1159 508T1229 911Q1229 1110 1135 1221T874 1333ZM664 1716Q664 1762 692 1795T766 1829Q844 1829 844 1749Q844 1700 815 1666T746 1632Q711 1632 688 1654T664 1716ZM1028 1716Q1028 1762 1056 1795T1131 1829Q1208
+1829 1208 1749Q1208 1700 1179 1666T1110 1632Q1075 1632 1052 1654T1028 1716Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1128" d="M487 723L168 1044L266 1143L586 823L909 1143L1008 1047L684 723L1006 401L909 305L586 625L266 307L170 403L487 723Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1475" d="M1411 907Q1411 638 1323 426T1071 97T692 -20Q492 -20 360 76L231 -84L119 8L256 178Q150 314 150 549Q150 813 246 1031T509 1367T887 1485Q986 1485 1065 1458T1217 1374L1348 1540L1462
+1448L1313 1264Q1361 1202 1386 1108T1411 907ZM874 1333Q717 1333 593 1232T401 951T332 553Q332 418 373 326L1110 1245Q1020 1333 874 1333ZM1229 911Q1229 1029 1196 1116L463 205Q554 131 696 131Q848 131 968 228T1159 508T1229 911Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1384" d="M1407 1462L1202 496Q1147 233 1005 107T616 -20Q386 -20 275 84T164 383Q164 464 188 584L377 1462H547L356 571Q334 465 334 383Q334 266 407 199T625 131Q797 131 892 218T1032 508L1237
+1462H1407ZM991 1579H887Q826 1640 759 1733T663 1886V1907H844Q887 1771 991 1604V1579Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1384" d="M1407 1462L1202 496Q1147 233 1005 107T616 -20Q386 -20 275 84T164 383Q164 464 188 584L377 1462H547L356 571Q334 465 334 383Q334 266 407 199T625 131Q797 131 892 218T1032 508L1237
+1462H1407ZM823 1606Q879 1666 948 1757T1055 1907H1245V1886Q1207 1837 1105 1735T928 1579H823V1606Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1384" d="M1407 1462L1202 496Q1147 233 1005 107T616 -20Q386 -20 275 84T164 383Q164 464 188 584L377 1462H547L356 571Q334 465 334 383Q334 266 407 199T625 131Q797 131 892 218T1032 508L1237
+1462H1407ZM1217 1579H1114Q1057 1627 953 1768Q819 1649 711 1579H602V1606Q747 1739 806 1803T889 1907H1047Q1084 1808 1175 1672L1217 1606V1579Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1384" d="M1407 1462L1202 496Q1147 233 1005 107T616 -20Q386 -20 275 84T164 383Q164 464 188 584L377 1462H547L356 571Q334 465 334 383Q334 266 407 199T625 131Q797 131 892 218T1032 508L1237
+1462H1407ZM643 1716Q643 1762 671 1795T745 1829Q823 1829 823 1749Q823 1700 794 1666T725 1632Q690 1632 667 1654T643 1716ZM1007 1716Q1007 1762 1035 1795T1110 1829Q1187 1829 1187 1749Q1187 1700 1158 1666T1089 1632Q1054 1632 1031 1654T1007 1716Z"
+/>
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1030" d="M537 715L1026 1462H1219L592 541L479 0H307L426 549L188 1462H358L537 715ZM616 1606Q672 1666 741 1757T848 1907H1038V1886Q1000 1837 898 1735T721 1579H616V1606Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1159" d="M1106 829Q1106 581 942 450T459 319H326L256 0H86L395 1462H565L512 1206H672Q885 1206 995 1111T1106 829ZM354 465H489Q704 465 817 556T930 823Q930 949 860 1004T645 1059H479L354 465Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1182" d="M-133 -492Q-202 -492 -256 -471V-328Q-195 -350 -145 -350Q-80 -350 -38 -303T27 -145L307 1169Q350 1369 463 1468T770 1567Q932 1567 1022 1496T1112 1300Q1112 1243 1091 1194T1030
+1099T851 948Q741 865 741 797Q741 741 836 675Q883 641 937 588T1016 478T1042 354Q1042 179 934 80T641 -20Q466 -20 373 51V211Q424 170 491 145T621 119Q734 119 802 177T870 336Q870 376 860 407T826 466T737 549Q649 618 615 673T580 788Q580 841 598 884T648
+962T772 1067Q852 1123 883 1154T931 1219T948 1290Q948 1354 896 1390T754 1427Q635 1427 568 1365T473 1174L199 -129Q159 -318 78 -405T-133 -492Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1157" d="M639 1116Q731 1116 803 1067T915 924H926L993 1096H1120L887 0H754L780 209H772Q593 -20 395 -20Q256 -20 177 79T98 350Q98 558 169 736T365 1015T639 1116ZM449 119Q546 119 642 211T798
+452T858 750Q858 853 802 914T655 975Q551 975 462 889T321 656T270 346Q270 232 317 176T449 119ZM1080 1241H976Q915 1302 848 1395T752 1548V1569H933Q976 1433 1080 1266V1241Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1157" d="M639 1116Q731 1116 803 1067T915 924H926L993 1096H1120L887 0H754L780 209H772Q593 -20 395 -20Q256 -20 177 79T98 350Q98 558 169 736T365 1015T639 1116ZM449 119Q546 119 642 211T798
+452T858 750Q858 853 802 914T655 975Q551 975 462 889T321 656T270 346Q270 232 317 176T449 119ZM600 1268Q656 1328 725 1419T832 1569H1022V1548Q984 1499 882 1397T705 1241H600V1268Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1157" d="M639 1116Q731 1116 803 1067T915 924H926L993 1096H1120L887 0H754L780 209H772Q593 -20 395 -20Q256 -20 177 79T98 350Q98 558 169 736T365 1015T639 1116ZM449 119Q546 119 642 211T798
+452T858 750Q858 853 802 914T655 975Q551 975 462 889T321 656T270 346Q270 232 317 176T449 119ZM1261 1241H1158Q1101 1289 997 1430Q863 1311 755 1241H646V1268Q791 1401 850 1465T933 1569H1091Q1128 1470 1219 1334L1261 1268V1241Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1157" d="M639 1116Q731 1116 803 1067T915 924H926L993 1096H1120L887 0H754L780 209H772Q593 -20 395 -20Q256 -20 177 79T98 350Q98 558 169 736T365 1015T639 1116ZM449 119Q546 119 642 211T798
+452T858 750Q858 853 802 914T655 975Q551 975 462 889T321 656T270 346Q270 232 317 176T449 119ZM856 1243Q816 1243 779 1260T706 1299T637 1338T571 1356Q527 1356 502 1328T454 1241H354Q412 1499 585 1499Q629 1499 668 1481T743 1442T810 1402T868 1384Q912
+1384 937 1411T989 1501H1089Q1023 1243 856 1243Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1157" d="M639 1116Q731 1116 803 1067T915 924H926L993 1096H1120L887 0H754L780 209H772Q593 -20 395 -20Q256 -20 177 79T98 350Q98 558 169 736T365 1015T639 1116ZM449 119Q546 119 642 211T798
+452T858 750Q858 853 802 914T655 975Q551 975 462 889T321 656T270 346Q270 232 317 176T449 119ZM710 1378Q710 1424 738 1457T812 1491Q890 1491 890 1411Q890 1362 861 1328T792 1294Q757 1294 734 1316T710 1378ZM1074 1378Q1074 1424 1102 1457T1177 1491Q1254
+1491 1254 1411Q1254 1362 1225 1328T1156 1294Q1121 1294 1098 1316T1074 1378Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1157" d="M639 1116Q731 1116 803 1067T915 924H926L993 1096H1120L887 0H754L780 209H772Q593 -20 395 -20Q256 -20 177 79T98 350Q98 558 169 736T365 1015T639 1116ZM449 119Q546 119 642 211T798
+452T858 750Q858 853 802 914T655 975Q551 975 462 889T321 656T270 346Q270 232 317 176T449 119ZM1207 1456Q1207 1357 1147 1299T988 1241Q887 1241 828 1298T769 1454Q769 1548 831 1606T988 1665Q1089 1665 1148 1608T1207 1456ZM1103 1454Q1103 1507 1071
+1538T988 1569Q939 1569 906 1538T873 1454Q873 1400 902 1370T988 1339Q1039 1339 1071 1369T1103 1454Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1669" d="M1165 -20Q1057 -20 976 19T854 139L823 0H709L735 209H727Q618 77 536 29T358 -20Q236 -20 167 79T98 348Q98 554 168 733T360 1014T623 1116Q705 1116 768 1068T870 924H881L948 1096H1057L1026
+950Q1149 1116 1358 1116Q1477 1116 1550 1048T1624 864Q1624 682 1458 581T985 479H946L942 399Q942 268 1004 195T1198 121Q1253 121 1314 137T1493 205V55Q1329 -20 1165 -20ZM412 119Q507 119 600 210T753 451T813 750Q813 853 768 914T645 975Q546 975 458
+889T320 657T270 348Q270 234 307 177T412 119ZM1325 973Q1208 973 1114 879T973 618H987Q1213 618 1335 676T1458 846Q1458 907 1423 940T1325 973Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="922" d="M506 -20Q312 -20 205 87T98 389Q98 589 172 758T376 1021T670 1116Q807 1116 938 1065L891 924Q771 975 672 975Q560 975 468 899T323 686T270 389Q270 261 336 190T520 119Q592 119 656
+139T782 186V43Q658 -20 506 -20ZM592 -276Q592 -374 511 -433T297 -492Q256 -492 211 -483V-383Q249 -389 279 -389Q453 -389 453 -279Q453 -233 414 -212T315 -182L416 0H522L461 -121Q592 -159 592 -276Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1010" d="M492 -20Q308 -20 203 89T98 391Q98 579 172 751T370 1020T641 1116Q794 1116 871 1050T948 864Q948 684 782 582T307 479H274L270 399Q270 268 331 195T522 121Q585 121 651 139T817 205V59Q723
+15 651 -2T492 -20ZM631 973Q528 973 438 879T299 618H311Q539 618 660 677T782 850Q782 903 746 938T631 973ZM1033 1241H929Q868 1302 801 1395T705 1548V1569H886Q929 1433 1033 1266V1241Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1010" d="M492 -20Q308 -20 203 89T98 391Q98 579 172 751T370 1020T641 1116Q794 1116 871 1050T948 864Q948 684 782 582T307 479H274L270 399Q270 268 331 195T522 121Q585 121 651 139T817 205V59Q723
+15 651 -2T492 -20ZM631 973Q528 973 438 879T299 618H311Q539 618 660 677T782 850Q782 903 746 938T631 973ZM585 1268Q641 1328 710 1419T817 1569H1007V1548Q969 1499 867 1397T690 1241H585V1268Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1010" d="M492 -20Q308 -20 203 89T98 391Q98 579 172 751T370 1020T641 1116Q794 1116 871 1050T948 864Q948 684 782 582T307 479H274L270 399Q270 268 331 195T522 121Q585 121 651 139T817
+205V59Q723 15 651 -2T492 -20ZM631 973Q528 973 438 879T299 618H311Q539 618 660 677T782 850Q782 903 746 938T631 973ZM1222 1241H1119Q1062 1289 958 1430Q824 1311 716 1241H607V1268Q752 1401 811 1465T894 1569H1052Q1089 1470 1180 1334L1222 1268V1241Z"
+/>
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1010" d="M492 -20Q308 -20 203 89T98 391Q98 579 172 751T370 1020T641 1116Q794 1116 871 1050T948 864Q948 684 782 582T307 479H274L270 399Q270 268 331 195T522 121Q585 121 651 139T817 205V59Q723
+15 651 -2T492 -20ZM631 973Q528 973 438 879T299 618H311Q539 618 660 677T782 850Q782 903 746 938T631 973ZM669 1378Q669 1424 697 1457T771 1491Q849 1491 849 1411Q849 1362 820 1328T751 1294Q716 1294 693 1316T669 1378ZM1033 1378Q1033 1424 1061 1457T1136
+1491Q1213 1491 1213 1411Q1213 1362 1184 1328T1115 1294Q1080 1294 1057 1316T1033 1378Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="520" d="M227 0H59L293 1096H461L227 0ZM492 1241H388Q327 1302 260 1395T164 1548V1569H345Q388 1433 492 1266V1241Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="520" d="M227 0H59L293 1096H461L227 0ZM324 1268Q380 1328 449 1419T556 1569H746V1548Q708 1499 606 1397T429 1241H324V1268Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="520" d="M227 0H59L293 1096H461L227 0ZM708 1241H605Q548 1289 444 1430Q310 1311 202 1241H93V1268Q238 1401 297 1465T380 1569H538Q575 1470 666 1334L708 1268V1241Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="520" d="M227 0H59L293 1096H461L227 0ZM161 1378Q161 1424 189 1457T263 1491Q341 1491 341 1411Q341 1362 312 1328T243 1294Q208 1294 185 1316T161 1378ZM525 1378Q525 1424 553 1457T628 1491Q705
+1491 705 1411Q705 1362 676 1328T607 1294Q572 1294 549 1316T525 1378Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1165" d="M676 1343Q610 1401 530 1456L625 1573Q743 1489 813 1419L1073 1565L1137 1460L897 1327Q984 1212 1023 1087T1063 817Q1063 564 992 370T789 78T477 -20Q295 -20 193 84T90 373Q90 533 157 671T344
+888T612 967Q717 967 793 922T905 797L911 799V816Q911 952 875 1056T764 1253L494 1104L438 1212L676 1343ZM487 121Q594 121 677 177T811 345T862 571Q862 689 797 758T618 827Q509 827 429 770T306 609T262 377Q262 251 319 186T487 121Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1182" d="M729 0L877 692Q897 796 897 836Q897 899 862 937T748 975Q659 975 575 915T426 744T328 475L227 0H59L293 1096H432L410 893H420Q516 1015 605 1065T791 1116Q918 1116 991 1047T1065 852Q1065
+773 1042 672L899 0H729ZM871 1243Q831 1243 794 1260T721 1299T652 1338T586 1356Q542 1356 517 1328T469 1241H369Q427 1499 600 1499Q644 1499 683 1481T758 1442T825 1402T883 1384Q927 1384 952 1411T1004 1501H1104Q1038 1243 871 1243Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1149" d="M643 1110Q833 1110 943 998T1053 688Q1053 500 981 333T786 75T508 -16Q316 -16 207 97T98 406Q98 596 171 763T368 1020T643 1110ZM879 711Q879 826 817 897T647 969Q538 969 452 895T318
+690T270 397Q270 266 333 195T516 123Q620 123 703 196T832 403T879 711ZM1054 1241H950Q889 1302 822 1395T726 1548V1569H907Q950 1433 1054 1266V1241Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1149" d="M643 1110Q833 1110 943 998T1053 688Q1053 500 981 333T786 75T508 -16Q316 -16 207 97T98 406Q98 596 171 763T368 1020T643 1110ZM879 711Q879 826 817 897T647 969Q538 969 452 895T318
+690T270 397Q270 266 333 195T516 123Q620 123 703 196T832 403T879 711ZM589 1268Q645 1328 714 1419T821 1569H1011V1548Q973 1499 871 1397T694 1241H589V1268Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1149" d="M643 1110Q833 1110 943 998T1053 688Q1053 500 981 333T786 75T508 -16Q316 -16 207 97T98 406Q98 596 171 763T368 1020T643 1110ZM879 711Q879 826 817 897T647 969Q538 969 452 895T318
+690T270 397Q270 266 333 195T516 123Q620 123 703 196T832 403T879 711ZM1253 1241H1150Q1093 1289 989 1430Q855 1311 747 1241H638V1268Q783 1401 842 1465T925 1569H1083Q1120 1470 1211 1334L1253 1268V1241Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1149" d="M643 1110Q833 1110 943 998T1053 688Q1053 500 981 333T786 75T508 -16Q316 -16 207 97T98 406Q98 596 171 763T368 1020T643 1110ZM879 711Q879 826 817 897T647 969Q538 969 452 895T318
+690T270 397Q270 266 333 195T516 123Q620 123 703 196T832 403T879 711ZM844 1243Q804 1243 767 1260T694 1299T625 1338T559 1356Q515 1356 490 1328T442 1241H342Q400 1499 573 1499Q617 1499 656 1481T731 1442T798 1402T856 1384Q900 1384 925 1411T977 1501H1077Q1011
+1243 844 1243Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1149" d="M643 1110Q833 1110 943 998T1053 688Q1053 500 981 333T786 75T508 -16Q316 -16 207 97T98 406Q98 596 171 763T368 1020T643 1110ZM879 711Q879 826 817 897T647 969Q538 969 452 895T318
+690T270 397Q270 266 333 195T516 123Q620 123 703 196T832 403T879 711ZM689 1378Q689 1424 717 1457T791 1491Q869 1491 869 1411Q869 1362 840 1328T771 1294Q736 1294 713 1316T689 1378ZM1053 1378Q1053 1424 1081 1457T1156 1491Q1233 1491 1233 1411Q1233
+1362 1204 1328T1135 1294Q1100 1294 1077 1316T1053 1378Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1128" d="M127 651V793H1047V651H127ZM475 373Q475 494 586 494Q639 494 668 464T698 373Q698 315 668 284T586 252Q534 252 505 283T475 373ZM475 1071Q475 1192 586 1192Q639 1192 668 1162T698 1071Q698
+1013 668 982T586 950Q534 950 505 981T475 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1149" d="M1047 705Q1047 516 978 345T786 79T510 -16Q364 -16 264 49L166 -76L61 6L170 141Q102 244 102 406Q102 600 175 767T371 1022T643 1110Q789 1110 895 1042L999 1171L1104 1092L985 963Q1047
+866 1047 705ZM647 971Q539 971 452 898T314 696T264 416Q264 324 281 279L799 924Q745 971 647 971ZM885 688Q885 772 872 807L358 166Q415 121 516 121Q619 121 704 192T837 393T885 688Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1182" d="M451 1096L301 401Q283 312 283 262Q283 119 430 119Q518 119 603 179T753 351T852 621L952 1096H1118L887 0H748L770 203H758Q660 78 571 29T387 -20Q259 -20 186 49T113 248Q113 310 135
+420L281 1096H451ZM1056 1241H952Q891 1302 824 1395T728 1548V1569H909Q952 1433 1056 1266V1241Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1182" d="M451 1096L301 401Q283 312 283 262Q283 119 430 119Q518 119 603 179T753 351T852 621L952 1096H1118L887 0H748L770 203H758Q660 78 571 29T387 -20Q259 -20 186 49T113 248Q113 310 135
+420L281 1096H451ZM636 1268Q692 1328 761 1419T868 1569H1058V1548Q1020 1499 918 1397T741 1241H636V1268Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1182" d="M451 1096L301 401Q283 312 283 262Q283 119 430 119Q518 119 603 179T753 351T852 621L952 1096H1118L887 0H748L770 203H758Q660 78 571 29T387 -20Q259 -20 186 49T113 248Q113 310
+135 420L281 1096H451ZM1024 1241H921Q864 1289 760 1430Q626 1311 518 1241H409V1268Q554 1401 613 1465T696 1569H854Q891 1470 982 1334L1024 1268V1241Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1182" d="M451 1096L301 401Q283 312 283 262Q283 119 430 119Q518 119 603 179T753 351T852 621L952 1096H1118L887 0H748L770 203H758Q660 78 571 29T387 -20Q259 -20 186 49T113 248Q113 310 135
+420L281 1096H451ZM457 1378Q457 1424 485 1457T559 1491Q637 1491 637 1411Q637 1362 608 1328T539 1294Q504 1294 481 1316T457 1378ZM821 1378Q821 1424 849 1457T924 1491Q1001 1491 1001 1411Q1001 1362 972 1328T903 1294Q868 1294 845 1316T821 1378Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="946" d="M98 1096H266L340 551Q350 482 359 348T369 131H375Q410 218 462 331T539 487L864 1096H1042L346 -186Q253 -358 162 -425T-57 -492Q-129 -492 -197 -471V-336Q-134 -354 -66 -354Q16 -354 74
+-304T188 -154L264 -18L98 1096ZM756 1268Q812 1328 881 1419T988 1569H1178V1548Q1140 1499 1038 1397T861 1241H756V1268Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1182" d="M545 -20Q447 -20 373 31T260 170H250Q242 66 225 -6L123 -492H-43L389 1556H557Q462 1115 442 1034T403 885H412Q513 1010 601 1062T784 1114Q923 1114 1002 1017T1081 743Q1081 531 1012 354T821
+79T545 -20ZM731 975Q635 975 536 880T378 641T319 346Q319 236 374 178T535 119Q634 119 719 200T857 430T909 748Q909 975 731 975Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="946" d="M98 1096H266L340 551Q350 482 359 348T369 131H375Q410 218 462 331T539 487L864 1096H1042L346 -186Q253 -358 162 -425T-57 -492Q-129 -492 -197 -471V-336Q-134 -354 -66 -354Q16 -354
+74 -304T188 -154L264 -18L98 1096ZM591 1378Q591 1424 619 1457T693 1491Q771 1491 771 1411Q771 1362 742 1328T673 1294Q638 1294 615 1316T591 1378ZM955 1378Q955 1424 983 1457T1058 1491Q1135 1491 1135 1411Q1135 1362 1106 1328T1037 1294Q1002 1294 979
+1316T955 1378Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="983" d="M55 469L90 629H913L879 469H55Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="1966" d="M55 469L90 629H1896L1862 469H55Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="348" d="M129 961L123 983Q221 1194 393 1462H520Q373 1117 317 961H129Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="348" d="M516 1462L524 1440Q484 1349 413 1222T254 961H125Q259 1259 328 1462H516Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="492" d="M291 238L299 215Q186 -20 29 -264H-100Q26 22 104 238H291Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="719" d="M500 961L492 983Q572 1164 764 1462H891Q729 1083 688 961H500ZM129 961L123 983Q221 1194 393 1462H520Q373 1117 317 961H129Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="719" d="M516 1462L524 1440Q484 1349 413 1222T254 961H125Q259 1259 328 1462H516ZM885 1462L895 1440Q801 1234 621 961H494Q551 1087 609 1233T696 1462H885Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="858" d="M291 238L299 215Q186 -20 29 -264H-100Q26 22 104 238H291ZM659 238L668 215Q573 10 397 -264H268Q408 52 471 238H659Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="774" d="M199 684Q199 829 272 915T471 1001Q563 1001 610 952T657 811Q657 670 583 581T381 492Q292 492 246 541T199 684Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="580" d="M88 578L479 958L557 877L260 543L432 162L319 113L88 549V578Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="580" d="M492 496L100 115L23 197L319 530L147 911L260 961L492 524V496Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.ttf b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.ttf
new file mode 100644
index 0000000..c90da48
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.ttf differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.woff b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.woff
new file mode 100644
index 0000000..9e17567
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.woff differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.woff2 b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.woff2
new file mode 100644
index 0000000..9a96c63
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Italic-webfont.woff2 differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.eot b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.eot
new file mode 100644
index 0000000..cf3a6ff
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.eot differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.svg
new file mode 100644
index 0000000..0461c39
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.svg
@@ -0,0 +1,19039 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1092" ><font-face
+    font-family="Open Sans Light"
+    units-per-em="2048"
+    panose-1="2 11 3 6 3 5 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="502" d="M248 377H186L389 1462H508L248 377ZM80 57Q80 113 105 145T174 178Q240 178 240 106Q240 53 215 19T147 -16Q80 -16 80 57Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="721" d="M455 1462L309 934H248L328 1462H455ZM784 1462L639 934H578L657 1462H784Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M389 530L508 928H211L219 1008H530L664 1462H754L618 1008H983L1118 1462H1204L1069 1008H1354L1346 928H1044L926 530H1229L1221 451H901L768 0H678L813 451H453L319 0H231L365 451H82L90
+530H389ZM475 530H838L958 928H596L475 530Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1128" d="M928 467Q928 316 818 224T520 121L467 -119H385L436 121Q357 123 278 139T141 182V276Q206 242 294 223T455 203L565 715Q455 768 412 806T346 893T322 1010Q322 1165 427 1260T700 1360L741 1552H821L780
+1360Q929 1355 1057 1292L1022 1214Q912 1275 766 1284L657 770Q781 710 829 671T903 582T928 467ZM537 203Q679 210 760 277T842 461Q842 537 794 590T637 688L537 203ZM686 1284Q552 1275 481 1204T410 1018Q410 940 447 890T584 793L686 1284Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1556" d="M1458 1462L319 0H213L1348 1462H1458ZM1520 612Q1520 437 1470 285T1334 55T1137 -23Q1025 -23 965 52T905 276Q905 436 957 588T1095 817T1288 895Q1409 895 1464 824T1520 612ZM1284 821Q1204
+821 1138 749T1031 546T991 283Q991 167 1032 109T1145 51Q1275 51 1354 217T1434 604Q1434 713 1398 767T1284 821ZM760 1198Q760 1023 710 871T574 641T377 563Q265 563 205 638T145 862Q145 1022 197 1174T335 1403T528 1481Q760 1481 760 1198ZM524 1407Q445
+1407 379 1336T272 1133T231 868Q231 753 272 695T385 637Q469 637 533 709T636 913T674 1190Q674 1299 638 1353T524 1407Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1331" d="M748 1395Q623 1395 554 1327T485 1135Q485 1003 594 854Q797 943 873 1017T950 1200Q950 1291 894 1343T748 1395ZM465 63Q573 63 676 105T899 252L547 745Q383 666 315 611T212 487T176
+328Q176 209 254 136T465 63ZM78 324Q78 486 177 601T502 817L461 884Q383 1012 383 1135Q383 1292 484 1388T748 1485Q893 1485 975 1409T1057 1202Q1057 1117 1016 1048T895 920T639 782L969 319Q1042 394 1104 495T1196 682H1307Q1205 435 1022 246L1206 0H1083L952
+184Q831 76 710 28T444 -20Q277 -20 178 74T78 324Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="403" d="M461 1462L315 934H254L334 1462H461Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="526" d="M104 270Q104 613 226 903T608 1462H713Q454 1186 329 894T203 276Q203 -41 330 -324H250Q104 -62 104 270Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="526" d="M453 868Q453 523 330 232T-51 -324H-156Q101 -50 227 242T354 862Q354 1010 326 1156T227 1462H307Q453 1200 453 868Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1137" d="M834 1540L725 1135L1163 1143L1155 1036L739 1065L920 664L805 627L670 1044L385 696L307 774L625 1092L233 1217L272 1319L666 1151L713 1559L834 1540Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1128" d="M563 672H162V772H563V1176H664V772H1065V672H664V272H563V672Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="451" d="M250 238L258 215Q224 123 144 -18T-16 -264H-90Q-11 -132 51 7T139 238H250Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="629" d="M82 502L100 592H557L541 502H82Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="485" d="M82 55Q82 111 107 143T176 176Q242 176 242 104Q242 51 217 17T150 -18Q82 -18 82 55Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="641" d="M827 1462L10 0H-100L715 1462H827Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1128" d="M1075 1016Q1075 815 1034 611T918 265T734 52T492 -20Q316 -20 228 106T139 494Q139 680 183 875T307 1209T494 1416T735 1485Q1075 1485 1075 1016ZM723 1397Q589 1397 482 1284T308 955T242 504Q242
+282 304 175T502 68Q641 68 746 180T912 517T973 1006Q973 1205 914 1301T723 1397Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1128" d="M537 0H432L657 1055Q676 1147 731 1348Q689 1312 656 1287T406 1126L354 1204L760 1462H850L537 0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1128" d="M909 0H39L61 104L510 506Q708 683 794 782T920 969T961 1149Q961 1261 895 1327T698 1393Q522 1393 365 1264L311 1337Q491 1483 705 1483Q878 1483 973 1398T1069 1161Q1069 1051 1026 953T884 741T573
+438L190 100V96H926L909 0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1128" d="M1049 1174Q1049 1012 943 899T657 756V752Q774 728 842 637T911 410Q911 276 847 177T668 29T393 -20Q297 -20 209 0T55 53V154Q227 68 399 68Q596 68 702 157T809 410Q809 555 720 633T473 711H356L377
+807H487Q696 807 820 902T944 1161Q944 1275 881 1336T692 1397Q525 1397 348 1266L299 1341Q383 1408 487 1445T705 1483Q866 1483 957 1401T1049 1174Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1128" d="M1071 371H807L727 0H631L711 371H23L43 467L924 1477H1042L827 459H1092L1071 371ZM729 459Q808 828 848 1017T934 1372H930Q864 1281 801 1206L150 459H729Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1128" d="M582 879Q770 879 874 777T979 498Q979 261 831 121T424 -20Q340 -20 247 0T88 51V158Q258 68 428 68Q636 68 756 182T877 496Q877 636 792 715T567 795Q434 795 324 754L258 803L451 1462H1075L1057
+1366H516L367 850Q465 879 582 879Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1128" d="M170 428Q170 711 275 972T544 1357T928 1481Q1051 1481 1110 1460L1092 1370Q1006 1393 922 1393Q689 1393 529 1219T295 717H303Q371 811 467 860T678 909Q839 909 928 809T1018 526Q1018 370 958
+245T787 50T530 -20Q359 -20 265 99T170 428ZM543 68Q655 68 739 126T869 288T915 518Q915 664 848 742T653 821Q572 821 499 790T370 703T292 588T270 414Q270 250 342 159T543 68Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1128" d="M244 0L1040 1366H274L297 1462H1155L1135 1352L356 0H244Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1128" d="M737 1485Q900 1485 995 1400T1090 1171Q1090 1033 1006 937T721 764Q851 686 911 594T971 385Q971 269 913 177T748 33T487 -20Q309 -20 204 72T98 326Q98 485 198 594T520 782Q420 854 376 934T332
+1114Q332 1273 446 1379T737 1485ZM610 733Q392 660 297 566T201 340Q201 204 278 134T498 63Q666 63 768 154T870 387Q870 491 808 576T610 733ZM727 1399Q597 1399 513 1317T428 1114Q428 1023 469 955T627 813Q819 875 906 957T993 1163Q993 1272 923 1335T727
+1399Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1128" d="M1059 1032Q1059 744 958 484T694 102T301 -20Q187 -20 115 2V92Q202 63 307 63Q781 63 934 737H926Q786 545 559 545Q397 545 304 650T211 934Q211 1089 270 1215T441 1411T698 1481Q872 1481 965
+1366T1059 1032ZM686 1393Q574 1393 489 1335T358 1172T313 942Q313 797 380 717T573 637Q656 637 730 669T859 757T936 871T958 1047Q958 1213 887 1303T686 1393Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="485" d="M260 989Q260 1046 285 1078T354 1110Q420 1110 420 1038Q420 983 395 949T328 915Q260 915 260 989ZM102 55Q102 111 127 143T197 176Q262 176 262 104Q262 49 237 16T170 -18Q102 -18 102 55Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="485" d="M287 238L295 215Q260 119 177 -27T20 -264H-53Q26 -132 88 7T176 238H287ZM266 989Q266 1046 291 1078T360 1110Q426 1110 426 1038Q426 983 401 949T334 915Q266 915 266 989Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1128" d="M1051 262L137 676V750L1051 1221V1118L250 719L1051 369V262Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1128" d="M168 885V985H1071V885H168ZM168 461V559H1071V461H168Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1128" d="M170 369L971 719L170 1118V1221L1085 750V676L170 262V369Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="799" d="M242 362L248 391Q277 523 330 597T487 745Q605 829 662 890T748 1018T778 1159Q778 1267 711 1329T528 1391Q389 1391 221 1290L182 1376Q267 1425 353 1454T541 1483Q700 1483 791 1399T883 1169Q883
+1042 817 935T586 709Q501 648 454 601T381 506T334 362H242ZM170 59Q170 115 195 147T264 180Q330 180 330 109Q330 55 306 21T238 -14Q170 -14 170 59Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1724" d="M1688 858Q1688 679 1632 535T1478 308T1266 225Q1168 225 1112 280T1055 424H1051Q997 327 919 276T750 225Q638 225 572 298T506 500Q506 656 569 783T747 981T1008 1053Q1130 1053 1260 1001L1176
+686Q1137 546 1137 465Q1137 394 1171 354T1272 313Q1358 313 1432 386T1549 584T1593 836Q1593 992 1528 1113T1341 1301T1049 1368Q814 1368 625 1260T329 956T223 516Q223 228 378 67T813 -94Q1020 -94 1233 -12V-102Q1023 -184 805 -184Q602 -184 448 -102T209
+137T125 508Q125 784 246 1001T583 1338T1057 1458Q1246 1458 1387 1386T1608 1173T1688 858ZM1008 969Q895 969 804 910T661 745T610 506Q610 414 650 364T764 313Q865 313 944 402T1069 657L1147 946Q1081 969 1008 969Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1059" d="M805 520H293L6 0H-111L711 1468H778L979 0H874L805 520ZM793 612L754 903Q723 1145 715 1305Q685 1242 651 1175T344 612H793Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1202" d="M412 1462H791Q981 1462 1081 1378T1182 1137Q1182 984 1092 888T838 764V760Q963 729 1026 647T1090 442Q1090 237 950 119T559 0H102L412 1462ZM377 811H655Q861 811 968 892T1075 1130Q1075 1249 997
+1310T768 1372H496L377 811ZM358 721L223 90H565Q766 90 874 177T983 434Q983 579 893 650T618 721H358Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1169" d="M961 1389Q764 1389 610 1285T365 980T274 539Q274 314 384 193T702 72Q842 72 1006 123V29Q850 -20 690 -20Q438 -20 304 125T170 535Q170 801 274 1023T559 1364T961 1483Q1138 1483 1268 1415L1223
+1325Q1168 1355 1099 1372T961 1389Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1350" d="M1288 879Q1288 626 1179 418T878 105T432 0H102L412 1462H717Q999 1462 1143 1315T1288 879ZM430 90Q656 90 824 184T1085 460T1178 872Q1178 1370 702 1370H496L221 90H430Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1067" d="M829 0H102L412 1462H1139L1118 1368H494L377 815H967L946 721H358L223 94H850L829 0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="981" d="M205 0H102L412 1462H1120L1100 1368H496L362 748H932L911 653H342L205 0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1374" d="M856 735H1262L1112 53Q901 -20 707 -20Q450 -20 310 126T170 547Q170 812 275 1030T558 1366T954 1483Q1067 1483 1157 1464T1341 1405L1303 1311Q1193 1357 1114 1373T946 1389Q762 1389 607 1282T363
+980T274 547Q274 318 388 195T715 72Q870 72 1024 119L1141 645H838L856 735Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1366" d="M1063 0H963L1114 719H354L205 0H102L412 1462H514L375 813H1135L1272 1462H1372L1063 0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="504" d="M102 0L412 1462H510L201 0H102Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="477" d="M-180 -360Q-228 -360 -268 -352T-324 -336L-313 -244Q-256 -264 -176 -264Q37 -264 86 -23L395 1462H500L186 -29Q151 -199 61 -279T-180 -360Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1122" d="M979 0H868L526 788L336 635L205 0H102L412 1462H514L356 739L489 860L1169 1462H1307L608 852L979 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="938" d="M102 0L412 1462H514L225 96H846L823 0H102Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1669" d="M772 205L1505 1462H1655L1354 0H1253L1444 901Q1523 1270 1544 1348H1538L758 0H707L485 1348H479Q459 1194 401 922L205 0H109L418 1462H561L766 205H772Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1372" d="M1069 0H983L467 1284H459Q436 1135 411 1011T197 0H102L412 1462H492L1014 168H1022Q1045 344 1096 584L1284 1462H1378L1069 0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1464" d="M1403 911Q1403 656 1309 430T1057 92T692 -20Q442 -20 307 129T172 559Q172 821 265 1036T520 1367T893 1483Q1140 1483 1271 1335T1403 911ZM879 1389Q705 1389 571 1288T356 990T276 573Q276 328 385
+200T705 72Q874 72 1005 170T1215 470T1294 901Q1294 1141 1190 1265T879 1389Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1145" d="M1145 1102Q1145 602 535 602H334L205 0H102L412 1462H727Q929 1462 1037 1370T1145 1102ZM350 694H541Q793 694 914 790T1036 1096Q1036 1370 707 1370H496L350 694Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1464" d="M1403 911Q1403 695 1333 493T1147 169T872 2L1139 -348H997L766 -16L692 -20Q442 -20 307 129T172 559Q172 821 265 1036T520 1367T893 1483Q1140 1483 1271 1335T1403 911ZM879 1389Q705 1389 571 1288T356
+990T276 573Q276 328 385 200T705 72Q874 72 1005 170T1215 470T1294 901Q1294 1141 1190 1265T879 1389Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1145" d="M336 633L205 0H102L412 1462H715Q1145 1462 1145 1102Q1145 920 1042 799T760 647Q961 56 981 0H870L659 633H336ZM358 725H610Q818 725 927 820T1036 1102Q1036 1370 707 1370H496L358 725Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1020" d="M895 403Q895 277 830 179T650 30T381 -20Q293 -20 209 -3T37 55V164Q200 72 385 72Q573 72 680 158T788 391Q788 452 771 495T719 574T628 642T496 717Q346 793 287 881T227 1087Q227 1205 286 1294T451
+1433T688 1483Q787 1483 868 1466T1036 1405L1004 1311Q938 1351 853 1374T688 1397Q525 1397 429 1315T332 1096Q332 993 381 926T563 793Q717 714 776 663T865 550T895 403Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="985" d="M438 0H336L625 1368H193L213 1462H1186L1167 1368H727L438 0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1370" d="M1395 1462L1188 485Q1130 215 991 98T616 -20Q176 -20 176 381Q176 464 203 582L389 1462H492L299 563Q279 474 279 379Q279 70 621 70Q816 70 928 166T1087 485L1294 1462H1395Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1079" d="M457 147Q508 258 581 394L1153 1462H1270L471 0H383L201 1462H301L418 512Q444 295 453 147H457Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1702" d="M1018 1341Q991 1265 956 1188T393 0H311L238 1462H338L385 431L389 266L387 180H393Q478 406 563 578L997 1462H1102L1163 584Q1182 318 1182 174H1188Q1218 260 1249 337T1743 1462H1851Q1682 1097
+1521 731T1192 0H1114L1036 1075Q1025 1217 1025 1294L1026 1341H1018Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="971" d="M879 0H772L518 678L-8 0H-135L473 766L201 1462H307L547 836L1030 1462H1149L594 743L879 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="965" d="M494 645L1038 1462H1155L524 530L416 0H311L430 545L193 1462H293L494 645Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1128" d="M913 0H-12L10 92L1079 1368H315L338 1462H1225L1206 1374L137 94H936L913 0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="537" d="M369 -324H-57L319 1462H748L729 1372H399L59 -233H389L369 -324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="641" d="M295 1462L537 0H455L209 1462H295Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="537" d="M203 1462H629L252 -324H-176L-158 -233H172L512 1372H182L203 1462Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1047" d="M70 569L657 1475H748L1008 569H903L686 1378L186 569H70Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="801" d="M625 -291H-182L-164 -205H643L625 -291Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1135" d="M766 1241H700Q650 1293 586 1385T487 1548V1569H602Q648 1440 766 1266V1241Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1133" d="M655 1104Q887 1104 934 885H940L999 1087H1079L850 0H768L813 274H807Q723 132 620 56T383 -20Q102 -20 102 354Q102 551 177 730T377 1006T655 1104ZM406 70Q495 70 583 132T742 298T850 528T887 741Q887
+820 861 882T784 981T657 1018Q533 1018 433 936T269 691T205 365Q205 213 255 142T406 70Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1151" d="M500 -16Q387 -16 314 43T217 209H211L156 0H76L403 1556H498Q367 928 336 805H342Q435 961 541 1034T772 1108Q1053 1108 1053 733Q1053 530 977 353T776 80T500 -16ZM750 1018Q659 1018 570 957T410
+787T303 552T268 346Q268 217 332 144T498 70Q622 70 722 153T886 398T950 723Q950 875 901 946T750 1018Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="887" d="M477 -20Q303 -20 203 90T102 397Q102 590 175 758T374 1015T664 1104Q798 1104 905 1061L877 971Q770 1018 659 1018Q530 1018 427 941T264 719T205 399Q205 241 278 156T487 70Q558 70 618 83T750 129V37Q634
+-20 477 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1133" d="M655 1104Q885 1104 934 885H938Q950 951 1081 1556H1180L850 0H768L813 274H807Q634 -20 383 -20Q102 -20 102 354Q102 547 173 724T371 1002T655 1104ZM406 70Q495 70 584 132T744 300T851 531T887
+741Q887 867 826 942T657 1018Q533 1018 433 935T269 693T205 365Q205 70 406 70Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="928" d="M469 -20Q296 -20 199 89T102 395Q102 576 173 742T368 1006T643 1104Q757 1104 825 1043T893 877Q893 696 730 601T244 506H211Q205 462 205 408Q205 243 279 157T492 70Q624 70 768 143V49Q628 -20 469
+-20ZM631 1018Q500 1018 388 903T225 594H274Q791 594 791 864Q791 931 748 974T631 1018Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="578" d="M-131 -492Q-179 -492 -233 -473V-383Q-180 -399 -133 -399Q-45 -399 1 -346T76 -160L322 1006H117L131 1073L336 1087L371 1247Q406 1415 487 1491T715 1567Q788 1567 881 1536L856 1456Q769 1483 709
+1483Q613 1483 556 1430T471 1251L436 1087H684L668 1006H420L168 -184Q135 -345 64 -418T-131 -492Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1040" d="M1100 1087L1083 1008L840 997Q866 969 883 913T901 799Q901 690 847 593T699 447T485 399Q422 399 408 408Q328 375 284 335T240 254Q240 213 271 190T385 158L506 147Q852 116 852 -117Q852 -229 787
+-314T600 -446T309 -492Q123 -492 18 -420T-88 -217Q-88 19 221 117Q143 159 143 240Q143 363 334 442Q263 478 224 547T184 705Q184 816 237 909T385 1055T592 1108Q661 1108 739 1087H1100ZM14 -207Q14 -308 95 -357T319 -406Q522 -406 636 -332T750 -127Q750
+-42 688 3T469 61L309 76Q152 31 83 -38T14 -207ZM285 711Q285 599 343 541T508 483Q596 483 662 520T764 634T801 803Q801 907 745 964T588 1022Q495 1022 427 979T322 863T285 711Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1143" d="M764 0L913 692Q934 784 934 848Q934 928 891 973T756 1018Q644 1018 546 951T380 763T276 477L174 0H76L408 1556H504L418 1145Q374 945 352 866H358Q436 979 544 1041T774 1104Q898 1104 966 1039T1034
+856Q1034 786 1010 674L862 0H764Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="475" d="M174 0H76L307 1087H403L174 0ZM350 1366Q350 1421 372 1454T432 1487Q489 1487 489 1415Q489 1358 467 1325T410 1292Q381 1292 366 1311T350 1366Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="475" d="M-166 -492Q-228 -492 -279 -473V-381Q-232 -403 -166 -403Q-84 -403 -38 -352T35 -174L301 1087H397L129 -184Q94 -349 23 -420T-166 -492ZM350 1366Q350 1421 372 1454T432 1487Q489 1487 489 1415Q489
+1358 467 1325T410 1292Q381 1292 366 1311T350 1366Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="944" d="M270 477L879 1087H1004L530 618L827 0H721L457 559L252 371L172 0H76L406 1556H502L336 776L266 477H270Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="475" d="M170 0H76L410 1556H504L170 0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1751" d="M711 0L858 674Q883 799 883 836Q883 1018 729 1018Q623 1018 529 951T370 762T270 475L170 0H72L303 1087H383L350 877H356Q436 990 537 1047T750 1104Q856 1104 913 1037T973 842H979Q1056 971 1160
+1037T1382 1104Q1499 1104 1564 1043T1630 866Q1630 837 1628 810T1608 690L1456 0H1356L1505 680Q1530 800 1530 856Q1530 933 1487 975T1368 1018Q1211 1018 1091 881T922 518L813 0H711Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1143" d="M764 0L913 692Q934 784 934 848Q934 928 891 973T756 1018Q644 1018 546 951T380 764T276 477L174 0H76L307 1087H389L352 866H358Q522 1104 774 1104Q904 1104 969 1040T1034 856Q1034 786 1010 674L862
+0H764Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1124" d="M649 1108Q829 1108 927 1000T1026 700Q1026 503 955 332T759 70T473 -20Q289 -20 194 89T98 403Q98 594 171 761T368 1018T649 1108ZM641 1022Q517 1022 418 944T260 719T201 408Q201 66 483 66Q610
+66 708 143T865 371T924 702Q924 856 851 939T641 1022Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1149" d="M498 -16Q268 -16 219 203H215Q202 131 66 -492H-33L303 1087H385L340 813H346Q437 966 541 1037T770 1108Q905 1108 978 1016T1051 733Q1051 538 979 362T782 85T498 -16ZM748 1018Q661 1018 574 960T413
+792T302 555T266 346Q266 221 327 146T496 70Q620 70 721 154T885 397T948 723Q948 1018 748 1018Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1157" d="M651 1104Q760 1104 834 1046T934 879H940L995 1087H1075L748 -469H653L751 1L815 283H809Q716 127 610 54T379 -20Q98 -20 98 354Q98 555 173 733T374 1007T651 1104ZM401 70Q493 70 583 132T743 304T848
+540T883 741Q883 871 820 944T653 1018Q529 1018 429 935T265 690T201 365Q201 222 246 146T401 70Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="752" d="M713 1106Q782 1106 836 1092L815 999Q768 1014 702 1014Q608 1014 523 950T370 758T270 481L170 0H72L303 1087H383L354 883H360Q433 977 483 1018T589 1083T713 1106Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="827" d="M713 295Q713 151 610 66T330 -20Q157 -20 25 55V162Q99 116 178 91T326 66Q464 66 537 123T610 287Q610 329 595 361T545 422T412 508Q264 588 212 653T160 813Q160 941 258 1022T518 1104Q593 1104 676
+1087T817 1040L782 952Q646 1016 518 1016Q402 1016 332 963T262 825Q262 770 279 737T339 669T459 592Q573 529 620 489T690 402T713 295Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="616" d="M694 1087L676 1006H393L258 371Q236 272 236 207Q236 68 362 68Q430 68 514 94V8Q413 -20 344 -20Q245 -20 191 34T137 193Q137 266 166 399L295 1006H113L127 1073L311 1090L408 1343H463L408 1087H694Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1143" d="M381 1087L229 389Q207 283 207 231Q207 157 254 114T393 70Q503 70 600 135T764 322T864 602L969 1087H1067L836 0H756L784 205H778Q611 -16 375 -16Q244 -16 177 46T109 227Q109 287 131 397L281 1087H381Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="895" d="M276 0L104 1087H205L313 352Q339 187 346 98H352Q403 213 481 354L887 1087H989L389 0H276Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1393" d="M838 0L778 686Q764 910 764 952H758Q724 860 614 662L258 0H141L121 1087H213L226 266L223 109H229Q290 243 379 406L752 1087H829L893 406Q907 259 907 109H913L937 170L1038 406L1358 1087H1454L946 0H838Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="922" d="M442 483L49 0H-72L399 559L154 1087H254L461 625L834 1087H954L506 553L764 0H666L442 483Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="920" d="M123 1087H223L305 539Q356 188 360 90H371Q414 195 557 457L905 1087H1008L295 -203Q223 -330 173 -381T59 -462T-88 -492Q-156 -492 -217 -471V-379Q-146 -406 -80 -406Q0 -406 67 -357T197 -192T297
+-8L123 1087Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="887" d="M700 0H-29L-14 72L762 1004H219L236 1087H895L877 1004L115 84H717L700 0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="709" d="M424 -324Q168 -324 168 -125Q168 -80 184 -10L240 242Q258 332 258 369Q258 528 59 528L80 606Q206 606 271 655T360 813L449 1206Q479 1341 555 1401T770 1462H799L782 1376Q696 1374 653 1356T584
+1294T539 1174L465 836Q435 702 374 642T209 563V559Q277 541 314 491T352 369Q352 317 328 205L281 -20Q268 -78 268 -121Q268 -182 305 -210T444 -238V-324H424Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M584 1561H684V-510H584V1561Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="709" d="M332 1462Q463 1462 521 1411T580 1264Q580 1223 563 1149L508 897Q489 802 489 770Q489 693 538 652T688 610L668 532Q543 532 477 484T387 326L299 -68Q267 -207 191 -265T-23 -324H-41V-238Q55
+-236 97 -217T165 -156T209 -35L283 303Q310 429 370 492T539 575V580Q464 600 430 652T395 770Q395 825 413 901L467 1159Q479 1220 479 1260Q479 1304 461 1329T407 1365T291 1376L311 1462H332Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1128" d="M350 745Q301 745 242 715T127 625V719Q235 829 360 829Q421 829 475 816T631 758Q757 700 850 700Q904 700 957 729T1075 825V729Q964 616 842 616Q725 616 571 688Q509 717 459 731T350 745Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="502" d="M264 711H326L123 -375H4L264 711ZM432 1030Q432 974 407 942T338 909Q272 909 272 981Q272 1036 297 1070T365 1104Q432 1104 432 1030Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1128" d="M578 -20H485L530 195Q398 220 324 327T250 600Q250 784 313 941T491 1194T748 1305L784 1483H874L836 1307Q952 1303 1053 1264L1024 1174Q917 1221 807 1221Q677 1221 574 1145T412 924T352
+602Q352 438 426 355T635 272Q762 272 899 332V240Q781 182 618 182L578 -20Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1128" d="M879 1479Q1049 1479 1192 1401L1153 1317L1099 1343Q991 1393 868 1393Q734 1393 648 1319T530 1098L457 758H866L848 676H440L383 408Q333 183 195 94H954L934 0H-4L12 84Q105 95 177 179T285
+416L342 676H143L160 758H358L434 1108Q475 1295 589 1387T879 1479Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1128" d="M262 723Q262 841 336 948L207 1077L270 1141L397 1012Q502 1090 627 1090Q745 1090 850 1012L981 1141L1042 1079L913 950Q991 844 991 723Q991 588 913 496L1042 369L981 307L850 434Q746
+358 627 358Q501 358 399 438L270 309L209 371L336 498Q262 596 262 723ZM350 723Q350 607 430 527T627 446Q744 446 825 527T907 723Q907 798 871 863T768 967T627 1006Q513 1006 432 924T350 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1128" d="M584 645L1128 1462H1245L686 639H952L936 563H621L582 373H899L881 289H565L506 0H401L465 289H166L184 373H483L524 563H223L240 639H498L283 1462H383L584 645Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M578 1561H678V805H578V1561ZM578 246H678V-510H578V246Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="995" d="M211 778Q211 879 280 960T479 1090Q415 1121 376 1175T336 1296Q336 1370 382 1430T514 1525T717 1559Q880 1559 1006 1501L975 1421Q837 1475 711 1475Q587 1475 509 1429T430 1305Q430 1246
+476 1201T659 1094Q771 1042 817 1005T888 920T913 809Q913 612 664 492Q786 428 786 295Q786 209 738 142T599 36T377 -2Q220 -2 102 51V150Q149 123 228 104T381 84Q530 84 609 136T688 287Q688 349 646 393T479 489Q324 554 268 619T211 778ZM559 1038Q440 1008
+372 941T303 786Q303 729 327 690T408 617T596 535Q699 584 758 648T817 805Q817 877 760 931T559 1038Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1135" d="M836 1366Q836 1415 856 1444T913 1473Q967 1473 967 1409Q967 1361 946 1332T891 1303Q836 1303 836 1366ZM492 1366Q492 1415 512 1444T569 1473Q623 1473 623 1409Q623 1361 602 1332T547
+1303Q492 1303 492 1366Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M944 1092Q802 1092 722 998T641 733Q641 547 715 458T936 369Q1021 369 1135 412V324Q1031 279 926 279Q739 279 638 395T537 725Q537 932 647 1057T944 1182Q1063 1182 1171 1130L1135
+1047Q1036 1092 944 1092ZM147 731Q147 931 247 1106T522 1382T899 1483Q1099 1483 1274 1383T1550 1108T1651 731Q1651 534 1554 361T1282 84T899 -20Q692 -20 517 83T245 360T147 731ZM240 731Q240 553 328 402T569 161T899 72Q1073 72 1224 157T1467 396T1559
+731Q1559 909 1470 1061T1230 1302T899 1391Q717 1391 564 1299T326 1056T240 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="643" d="M487 1485Q542 1485 584 1456T651 1370H657L692 1473H758L621 823H549L571 948H567Q471 811 344 811Q264 811 217 867T170 1032Q170 1221 260 1353T487 1485ZM369 885Q435 885 502 960T600
+1145Q616 1196 616 1268Q616 1326 580 1368T487 1411Q393 1411 326 1300T258 1028Q258 885 369 885Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="860" d="M426 932L483 883L166 547L379 162L315 123L61 541L63 567L426 932ZM786 932L844 883L530 547L739 162L676 123L422 541L424 567L786 932Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1128" d="M1028 772V272H928V672H125V772H1028Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="629" d="M333 502L351 592H808L792 502H333Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M758 731H870Q963 731 1014 777T1065 913Q1065 1085 868 1085H758V731ZM1169 918Q1169 838 1130 777T1020 684L1257 291H1137L926 651H758V291H657V1171H868Q1011 1171 1090 1109T1169
+918ZM150 731Q150 938 253 1113T530 1385T901 1483Q1101 1483 1276 1383T1552 1108T1653 731Q1653 534 1556 361T1284 84T901 -20Q697 -20 525 80T251 353T150 731ZM242 731Q242 553 330 402T571 161T901 72Q1075 72 1226 157T1469 396T1561 731Q1561 909 1472
+1061T1232 1302T901 1391Q719 1391 566 1299T328 1056T242 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="655" d="M1001 1556H348L401 1653H1055L1001 1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M242 1190Q242 1310 327 1396T535 1483Q657 1483 742 1397T827 1190Q827 1068 742 983T535 897Q413 897 328 982T242 1190ZM315 1190Q315 1101 379 1037T535 973Q627 973 690 1037T754 1190Q754
+1280 690 1345T535 1411Q445 1411 380 1346T315 1190Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1128" d="M528 629H127V727H528V1133H629V727H1030V629H629V229H528V629ZM127 0V100H1030V0H127Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="643" d="M604 586H82L98 666L395 924Q532 1042 577 1114T623 1268Q623 1327 585 1365T479 1403Q384 1403 285 1327L244 1389Q352 1479 483 1479Q556 1479 608 1452T686 1380T713 1280Q713 1174
+654 1082T471 887L205 664H621L604 586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="643" d="M705 1276Q705 1191 657 1128T502 1040V1036Q568 1020 607 968T647 844Q647 767 608 703T499 604T338 569Q279 569 215 584T109 625V715Q155 687 217 667T342 647Q441 647 501 699T561
+842Q561 1004 365 1004H281L297 1083H383Q485 1083 551 1132T618 1262Q618 1330 581 1364T475 1399Q375 1399 276 1331L236 1395Q345 1481 487 1481Q587 1481 646 1425T705 1276Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1135" d="M580 1262Q646 1313 730 1404T860 1569H997V1546Q946 1480 840 1388T647 1241H580V1262Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1171" d="M238 242Q238 160 286 115T422 70Q532 70 629 134T791 317T893 602L997 1087H1096L862 0H784L813 205H807Q643 -16 403 -16Q318 -16 264 16T188 106H182Q164 -26 131 -178L68 -492H-29L309 1087H410L258
+389Q238 293 238 242Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1208 -260H1108V1462H881V-260H780V559Q716 541 635 541Q419 541 317 666T215 1042Q215 1302 324 1429T666 1556H1208V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="485" d="M207 698Q207 754 232 786T301 819Q367 819 367 747Q367 694 342 660T275 625Q207 625 207 698Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="420" d="M197 -289Q197 -383 122 -437T-96 -492Q-142 -492 -174 -485V-406Q-144 -412 -102 -412Q96 -412 96 -297Q96 -200 -55 -190L55 0H135L57 -137Q197 -167 197 -289Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="643" d="M512 1462H592L406 586H322L440 1155Q445 1176 451 1205T465 1265T481 1324T496 1374Q462 1343 436 1323T293 1229L254 1288L512 1462Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="655" d="M518 1479Q623 1479 683 1415T743 1235Q743 1120 703 1021T589 865T414 807Q300 807 245 874T190 1059Q190 1171 231 1268T347 1422T518 1479ZM508 1405Q438 1405 384 1359T300 1234T270
+1067Q270 881 426 881Q499 881 551 927T633 1055T662 1231Q662 1314 623 1359T508 1405Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="860" d="M451 123L393 172L707 508L498 893L561 932L815 514L813 487L451 123ZM90 123L33 172L346 508L137 893L201 932L455 514L453 487L90 123Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1481" d="M1319 230H1188L1139 1H1057L1106 230H715L736 306L1242 883H1328L1203 302H1336L1319 230ZM1121 302Q1182 596 1200 667T1229 773Q1219 757 1168 694T830 302H1121ZM1323 1462L236 0H129L1215
+1462H1323ZM765 1462H845L659 586H575L693 1155Q698 1176 704 1205T718 1265T734 1324T749 1374Q715 1343 689 1323T546 1229L507 1288L765 1462Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1458" d="M1278 1H756L772 81L1069 339Q1206 457 1251 529T1297 683Q1297 742 1259 780T1153 818Q1058 818 959 742L918 804Q1026 894 1157 894Q1230 894 1282 867T1360 795T1387 695Q1387 589 1328
+497T1145 302L879 79H1295L1278 1ZM687 1462H767L581 586H497L615 1155Q620 1176 626 1205T640 1265T656 1324T671 1374Q637 1343 611 1323T468 1229L429 1288L687 1462ZM1247 1462L160 0H53L1139 1462H1247Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1458" d="M1380 230H1249L1200 1H1118L1167 230H776L797 306L1303 883H1389L1264 302H1397L1380 230ZM1182 302Q1243 596 1261 667T1290 773Q1280 757 1229 694T891 302H1182ZM923 1276Q923 1191
+875 1128T720 1040V1036Q786 1020 825 968T865 844Q865 767 826 703T717 604T556 569Q497 569 433 584T327 625V715Q373 687 435 667T560 647Q659 647 719 699T779 842Q779 1004 583 1004H499L515 1083H601Q703 1083 769 1132T836 1262Q836 1330 799 1364T693 1399Q593
+1399 494 1331L454 1395Q563 1481 705 1481Q805 1481 864 1425T923 1276ZM1407 1462L320 0H213L1299 1462H1407Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="799" d="M641 717L635 688Q607 561 556 488T395 334Q277 250 220 189T134 61T104 -80Q104 -186 169 -248T354 -311Q495 -311 662 -211L700 -297Q615 -346 530 -374T342 -403Q183 -403 92 -319T0
+-90Q0 43 70 150T297 371Q382 432 430 480T503 575T549 717H641ZM713 1020Q713 964 688 932T618 899Q553 899 553 971Q553 1027 578 1060T645 1094Q713 1094 713 1020Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1059" d="M805 520H293L6 0H-111L711 1468H778L979 0H874L805 520ZM793 612L754 903Q723 1145 715 1305Q685 1242 651 1175T344 612H793ZM815 1579H749Q699 1631 635 1723T536 1886V1907H651Q697 1778
+815 1604V1579Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1059" d="M805 520H293L6 0H-111L711 1468H778L979 0H874L805 520ZM793 612L754 903Q723 1145 715 1305Q685 1242 651 1175T344 612H793ZM668 1600Q734 1651 818 1742T948 1907H1085V1884Q1034 1818
+928 1726T735 1579H668V1600Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1059" d="M805 520H293L6 0H-111L711 1468H778L979 0H874L805 520ZM793 612L754 903Q723 1145 715 1305Q685 1242 651 1175T344 612H793ZM1007 1579H958Q888 1639 797 1786Q742 1729 672 1672T547
+1579H493V1608Q561 1664 650 1756T778 1907H842Q865 1843 914 1755T1007 1608V1579Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1059" d="M805 520H293L6 0H-111L711 1468H778L979 0H874L805 520ZM793 612L754 903Q723 1145 715 1305Q685 1242 651 1175T344 612H793ZM911 1587Q871 1587 834 1606T758 1651Q724 1674 694 1692T625
+1710Q580 1710 551 1682T500 1581H426Q445 1689 497 1747T631 1806Q672 1806 704 1792T822 1720Q874 1684 916 1684Q959 1684 987 1714T1034 1815H1110Q1084 1697 1036 1642T911 1587Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1059" d="M805 520H293L6 0H-111L711 1468H778L979 0H874L805 520ZM793 612L754 903Q723 1145 715 1305Q685 1242 651 1175T344 612H793ZM879 1704Q879 1753 899 1782T956 1811Q1010 1811 1010 1747Q1010
+1699 989 1670T934 1641Q879 1641 879 1704ZM535 1704Q535 1753 555 1782T612 1811Q666 1811 666 1747Q666 1699 645 1670T590 1641Q535 1641 535 1704Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1059" d="M805 520H293L6 0H-111L711 1468H778L979 0H874L805 520ZM793 612L754 903Q723 1145 715 1305Q685 1242 651 1175T344 612H793ZM945 1600Q945 1508 888 1452T742 1395Q649 1395 594 1447T539
+1592Q539 1680 598 1736T748 1792Q836 1792 890 1742T945 1600ZM867 1598Q867 1655 834 1688T746 1721Q686 1721 653 1685T619 1592Q619 1535 652 1502T742 1469Q798 1469 832 1505T867 1598Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1640" d="M1403 0H676L786 522H342L14 0H-117L829 1462H1712L1692 1368H1067L950 815H1540L1520 721H932L797 94H1423L1403 0ZM408 627H809L965 1368H877L408 627Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1169" d="M961 1389Q764 1389 610 1285T365 980T274 539Q274 314 384 193T702 72Q842 72 1006 123V29Q850 -20 690 -20Q438 -20 304 125T170 535Q170 801 274 1023T559 1364T961 1483Q1138 1483 1268
+1415L1223 1325Q1168 1355 1099 1372T961 1389ZM752 -289Q752 -383 677 -437T459 -492Q413 -492 381 -485V-406Q411 -412 453 -412Q651 -412 651 -297Q651 -200 500 -190L610 0H690L612 -137Q752 -167 752 -289Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1067" d="M829 0H102L412 1462H1139L1118 1368H494L377 815H967L946 721H358L223 94H850L829 0ZM891 1579H825Q775 1631 711 1723T612 1886V1907H727Q773 1778 891 1604V1579Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1067" d="M829 0H102L412 1462H1139L1118 1368H494L377 815H967L946 721H358L223 94H850L829 0ZM654 1600Q720 1651 804 1742T934 1907H1071V1884Q1020 1818 914 1726T721 1579H654V1600Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1067" d="M829 0H102L412 1462H1139L1118 1368H494L377 815H967L946 721H358L223 94H850L829 0ZM1036 1579H987Q917 1639 826 1786Q771 1729 701 1672T576 1579H522V1608Q590 1664 679 1756T807
+1907H871Q894 1843 943 1755T1036 1608V1579Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1067" d="M829 0H102L412 1462H1139L1118 1368H494L377 815H967L946 721H358L223 94H850L829 0ZM902 1704Q902 1753 922 1782T979 1811Q1033 1811 1033 1747Q1033 1699 1012 1670T957 1641Q902 1641
+902 1704ZM558 1704Q558 1753 578 1782T635 1811Q689 1811 689 1747Q689 1699 668 1670T613 1641Q558 1641 558 1704Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="504" d="M102 0L412 1462H510L201 0H102ZM525 1579H459Q409 1631 345 1723T246 1886V1907H361Q407 1778 525 1604V1579Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="504" d="M102 0L412 1462H510L201 0H102ZM419 1600Q485 1651 569 1742T699 1907H836V1884Q785 1818 679 1726T486 1579H419V1600Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="504" d="M102 0L412 1462H510L201 0H102ZM738 1579H689Q619 1639 528 1786Q473 1729 403 1672T278 1579H224V1608Q292 1664 381 1756T509 1907H573Q596 1843 645 1755T738 1608V1579Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="504" d="M102 0L412 1462H510L201 0H102ZM604 1704Q604 1753 624 1782T681 1811Q735 1811 735 1747Q735 1699 714 1670T659 1641Q604 1641 604 1704ZM260 1704Q260 1753 280 1782T337 1811Q391 1811
+391 1747Q391 1699 370 1670T315 1641Q260 1641 260 1704Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1352" d="M1288 879Q1288 626 1179 418T878 105T432 0H102L246 676H90L111 772H266L412 1462H717Q999 1462 1143 1315T1288 879ZM430 90Q656 90 824 184T1085 460T1178 872Q1178 1370 702 1370H496L367
+772H745L725 676H346L221 90H430Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1372" d="M1069 0H983L467 1284H459Q436 1135 411 1011T197 0H102L412 1462H492L1014 168H1022Q1045 344 1096 584L1284 1462H1378L1069 0ZM1062 1587Q1022 1587 985 1606T909 1651Q875 1674 845 1692T776
+1710Q731 1710 702 1682T651 1581H577Q596 1689 648 1747T782 1806Q823 1806 855 1792T973 1720Q1025 1684 1067 1684Q1110 1684 1138 1714T1185 1815H1261Q1235 1697 1187 1642T1062 1587Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1464" d="M1403 911Q1403 656 1309 430T1057 92T692 -20Q442 -20 307 129T172 559Q172 821 265 1036T520 1367T893 1483Q1140 1483 1271 1335T1403 911ZM879 1389Q705 1389 571 1288T356 990T276 573Q276
+328 385 200T705 72Q874 72 1005 170T1215 470T1294 901Q1294 1141 1190 1265T879 1389ZM989 1579H923Q873 1631 809 1723T710 1886V1907H825Q871 1778 989 1604V1579Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1464" d="M1403 911Q1403 656 1309 430T1057 92T692 -20Q442 -20 307 129T172 559Q172 821 265 1036T520 1367T893 1483Q1140 1483 1271 1335T1403 911ZM879 1389Q705 1389 571 1288T356 990T276 573Q276
+328 385 200T705 72Q874 72 1005 170T1215 470T1294 901Q1294 1141 1190 1265T879 1389ZM844 1600Q910 1651 994 1742T1124 1907H1261V1884Q1210 1818 1104 1726T911 1579H844V1600Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1464" d="M1403 911Q1403 656 1309 430T1057 92T692 -20Q442 -20 307 129T172 559Q172 821 265 1036T520 1367T893 1483Q1140 1483 1271 1335T1403 911ZM879 1389Q705 1389 571 1288T356 990T276
+573Q276 328 385 200T705 72Q874 72 1005 170T1215 470T1294 901Q1294 1141 1190 1265T879 1389ZM1171 1579H1122Q1052 1639 961 1786Q906 1729 836 1672T711 1579H657V1608Q725 1664 814 1756T942 1907H1006Q1029 1843 1078 1755T1171 1608V1579Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1464" d="M1403 911Q1403 656 1309 430T1057 92T692 -20Q442 -20 307 129T172 559Q172 821 265 1036T520 1367T893 1483Q1140 1483 1271 1335T1403 911ZM879 1389Q705 1389 571 1288T356 990T276 573Q276
+328 385 200T705 72Q874 72 1005 170T1215 470T1294 901Q1294 1141 1190 1265T879 1389ZM1077 1587Q1037 1587 1000 1606T924 1651Q890 1674 860 1692T791 1710Q746 1710 717 1682T666 1581H592Q611 1689 663 1747T797 1806Q838 1806 870 1792T988 1720Q1040 1684
+1082 1684Q1125 1684 1153 1714T1200 1815H1276Q1250 1697 1202 1642T1077 1587Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1464" d="M1403 911Q1403 656 1309 430T1057 92T692 -20Q442 -20 307 129T172 559Q172 821 265 1036T520 1367T893 1483Q1140 1483 1271 1335T1403 911ZM879 1389Q705 1389 571 1288T356 990T276
+573Q276 328 385 200T705 72Q874 72 1005 170T1215 470T1294 901Q1294 1141 1190 1265T879 1389ZM1031 1704Q1031 1753 1051 1782T1108 1811Q1162 1811 1162 1747Q1162 1699 1141 1670T1086 1641Q1031 1641 1031 1704ZM687 1704Q687 1753 707 1782T764 1811Q818
+1811 818 1747Q818 1699 797 1670T742 1641Q687 1641 687 1704Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1128" d="M551 723L221 1055L291 1124L621 795L954 1124L1022 1057L690 723L1022 391L954 324L621 653L291 326L223 393L551 723Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1464" d="M1403 911Q1403 724 1351 546T1207 241T984 48T692 -20Q477 -20 344 92L205 -78L139 -14L285 158Q172 307 172 559Q172 822 266 1038T522 1369T893 1483Q1112 1483 1245 1362L1378 1530L1448
+1477L1303 1294Q1348 1243 1375 1133T1403 911ZM879 1389Q745 1389 635 1330T447 1160T322 892T276 573Q276 468 297 382T354 244L1180 1276Q1073 1389 879 1389ZM1294 901Q1294 986 1277 1073T1233 1202L412 172Q519 72 705 72Q875 72 1006 172T1215 468T1294
+901Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1370" d="M1395 1462L1188 485Q1130 215 991 98T616 -20Q176 -20 176 381Q176 464 203 582L389 1462H492L299 563Q279 474 279 379Q279 70 621 70Q816 70 928 166T1087 485L1294 1462H1395ZM946 1579H880Q830
+1631 766 1723T667 1886V1907H782Q828 1778 946 1604V1579Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1370" d="M1395 1462L1188 485Q1130 215 991 98T616 -20Q176 -20 176 381Q176 464 203 582L389 1462H492L299 563Q279 474 279 379Q279 70 621 70Q816 70 928 166T1087 485L1294 1462H1395ZM838 1600Q904
+1651 988 1742T1118 1907H1255V1884Q1204 1818 1098 1726T905 1579H838V1600Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1370" d="M1395 1462L1188 485Q1130 215 991 98T616 -20Q176 -20 176 381Q176 464 203 582L389 1462H492L299 563Q279 474 279 379Q279 70 621 70Q816 70 928 166T1087 485L1294 1462H1395ZM1148
+1579H1099Q1029 1639 938 1786Q883 1729 813 1672T688 1579H634V1608Q702 1664 791 1756T919 1907H983Q1006 1843 1055 1755T1148 1608V1579Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1370" d="M1395 1462L1188 485Q1130 215 991 98T616 -20Q176 -20 176 381Q176 464 203 582L389 1462H492L299 563Q279 474 279 379Q279 70 621 70Q816 70 928 166T1087 485L1294 1462H1395ZM1022
+1704Q1022 1753 1042 1782T1099 1811Q1153 1811 1153 1747Q1153 1699 1132 1670T1077 1641Q1022 1641 1022 1704ZM678 1704Q678 1753 698 1782T755 1811Q809 1811 809 1747Q809 1699 788 1670T733 1641Q678 1641 678 1704Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="965" d="M494 645L1038 1462H1155L524 530L416 0H311L430 545L193 1462H293L494 645ZM563 1600Q629 1651 713 1742T843 1907H980V1884Q929 1818 823 1726T630 1579H563V1600Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1145" d="M1087 836Q1087 589 934 463T477 336H276L205 0H102L412 1462H514L457 1196H670Q870 1196 978 1104T1087 836ZM293 428H483Q739 428 859 526T979 829Q979 1104 649 1104H438L293 428Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1094" d="M-162 -492Q-235 -492 -281 -469V-379Q-228 -403 -166 -403Q-87 -403 -43 -353T23 -199L328 1210Q408 1567 733 1567Q870 1567 948 1506T1026 1331Q1026 1256 982 1191T815 1042Q708 966
+674 918T639 811Q639 760 673 723T766 647Q862 584 904 514T946 348Q946 178 840 79T553 -20Q410 -20 319 45V154Q364 118 431 95T561 72Q693 72 769 143T846 338Q846 413 815 467T705 575Q623 633 586 685T549 807Q549 864 570 910T630 998T768 1112Q869 1182
+899 1228T930 1329Q930 1399 875 1439T725 1479Q596 1479 520 1403T412 1174L121 -203Q88 -355 18 -423T-162 -492Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1133" d="M655 1104Q887 1104 934 885H940L999 1087H1079L850 0H768L813 274H807Q723 132 620 56T383 -20Q102 -20 102 354Q102 551 177 730T377 1006T655 1104ZM406 70Q495 70 583 132T742 298T850
+528T887 741Q887 820 861 882T784 981T657 1018Q533 1018 433 936T269 691T205 365Q205 213 255 142T406 70ZM809 1241H743Q693 1293 629 1385T530 1548V1569H645Q691 1440 809 1266V1241Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1133" d="M655 1104Q887 1104 934 885H940L999 1087H1079L850 0H768L813 274H807Q723 132 620 56T383 -20Q102 -20 102 354Q102 551 177 730T377 1006T655 1104ZM406 70Q495 70 583 132T742 298T850
+528T887 741Q887 820 861 882T784 981T657 1018Q533 1018 433 936T269 691T205 365Q205 213 255 142T406 70ZM586 1262Q652 1313 736 1404T866 1569H1003V1546Q952 1480 846 1388T653 1241H586V1262Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1133" d="M655 1104Q887 1104 934 885H940L999 1087H1079L850 0H768L813 274H807Q723 132 620 56T383 -20Q102 -20 102 354Q102 551 177 730T377 1006T655 1104ZM406 70Q495 70 583 132T742 298T850
+528T887 741Q887 820 861 882T784 981T657 1018Q533 1018 433 936T269 691T205 365Q205 213 255 142T406 70ZM1211 1243H1162Q1092 1303 1001 1450Q946 1393 876 1336T751 1243H697V1272Q765 1328 854 1420T982 1571H1046Q1069 1507 1118 1419T1211 1272V1243Z"
+/>
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1133" d="M655 1104Q887 1104 934 885H940L999 1087H1079L850 0H768L813 274H807Q723 132 620 56T383 -20Q102 -20 102 354Q102 551 177 730T377 1006T655 1104ZM406 70Q495 70 583 132T742 298T850
+528T887 741Q887 820 861 882T784 981T657 1018Q533 1018 433 936T269 691T205 365Q205 213 255 142T406 70ZM858 1249Q818 1249 781 1268T705 1313Q671 1336 641 1354T572 1372Q527 1372 498 1344T447 1243H373Q392 1351 444 1409T578 1468Q619 1468 651 1454T769
+1382Q821 1346 863 1346Q906 1346 934 1376T981 1477H1057Q1031 1359 983 1304T858 1249Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1133" d="M655 1104Q887 1104 934 885H940L999 1087H1079L850 0H768L813 274H807Q723 132 620 56T383 -20Q102 -20 102 354Q102 551 177 730T377 1006T655 1104ZM406 70Q495 70 583 132T742 298T850
+528T887 741Q887 820 861 882T784 981T657 1018Q533 1018 433 936T269 691T205 365Q205 213 255 142T406 70ZM1091 1366Q1091 1415 1111 1444T1168 1473Q1222 1473 1222 1409Q1222 1361 1201 1332T1146 1303Q1091 1303 1091 1366ZM747 1366Q747 1415 767 1444T824
+1473Q878 1473 878 1409Q878 1361 857 1332T802 1303Q747 1303 747 1366Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1133" d="M655 1104Q887 1104 934 885H940L999 1087H1079L850 0H768L813 274H807Q723 132 620 56T383 -20Q102 -20 102 354Q102 551 177 730T377 1006T655 1104ZM406 70Q495 70 583 132T742 298T850 528T887
+741Q887 820 861 882T784 981T657 1018Q533 1018 433 936T269 691T205 365Q205 213 255 142T406 70ZM1183 1448Q1183 1356 1126 1300T980 1243Q887 1243 832 1295T777 1440Q777 1528 836 1584T986 1640Q1074 1640 1128 1590T1183 1448ZM1105 1446Q1105 1503 1072
+1536T984 1569Q924 1569 891 1533T857 1440Q857 1383 890 1350T980 1317Q1036 1317 1070 1353T1105 1446Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1602" d="M1155 -20Q1032 -20 944 40T827 205L788 0H711L752 254H743Q649 112 554 46T346 -20Q226 -20 164 74T102 344Q102 550 172 728T365 1005T639 1104Q745 1104 805 1048T879 891H889L948 1083H1014L979
+897Q1118 1104 1329 1104Q1441 1104 1504 1043T1567 870Q1567 691 1409 599T938 506H899Q891 455 891 410Q891 249 960 160T1178 70Q1247 70 1311 91T1442 143V49Q1362 12 1295 -4T1155 -20ZM369 70Q436 70 507 112T641 229T747 400T811 599T831 764Q831 882 782
+950T641 1018Q518 1018 418 932T262 692T205 352Q205 202 247 136T369 70ZM1317 1018Q1198 1018 1085 903T913 594H961Q1224 594 1344 661T1464 864Q1464 935 1426 976T1317 1018Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="887" d="M477 -20Q303 -20 203 90T102 397Q102 590 175 758T374 1015T664 1104Q798 1104 905 1061L877 971Q770 1018 659 1018Q530 1018 427 941T264 719T205 399Q205 241 278 156T487 70Q558 70 618
+83T750 129V37Q634 -20 477 -20ZM574 -289Q574 -383 499 -437T281 -492Q235 -492 203 -485V-406Q233 -412 275 -412Q473 -412 473 -297Q473 -200 322 -190L432 0H512L434 -137Q574 -167 574 -289Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="928" d="M469 -20Q296 -20 199 89T102 395Q102 576 173 742T368 1006T643 1104Q757 1104 825 1043T893 877Q893 696 730 601T244 506H211Q205 462 205 408Q205 243 279 157T492 70Q624 70 768 143V49Q628
+-20 469 -20ZM631 1018Q500 1018 388 903T225 594H274Q791 594 791 864Q791 931 748 974T631 1018ZM1007 1241H941Q891 1293 827 1385T728 1548V1569H843Q889 1440 1007 1266V1241Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="928" d="M469 -20Q296 -20 199 89T102 395Q102 576 173 742T368 1006T643 1104Q757 1104 825 1043T893 877Q893 696 730 601T244 506H211Q205 462 205 408Q205 243 279 157T492 70Q624 70 768 143V49Q628
+-20 469 -20ZM631 1018Q500 1018 388 903T225 594H274Q791 594 791 864Q791 931 748 974T631 1018ZM788 1262Q854 1313 938 1404T1068 1569H1205V1546Q1154 1480 1048 1388T855 1241H788V1262Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="928" d="M469 -20Q296 -20 199 89T102 395Q102 576 173 742T368 1006T643 1104Q757 1104 825 1043T893 877Q893 696 730 601T244 506H211Q205 462 205 408Q205 243 279 157T492 70Q624 70 768 143V49Q628
+-20 469 -20ZM631 1018Q500 1018 388 903T225 594H274Q791 594 791 864Q791 931 748 974T631 1018ZM1160 1241H1111Q1041 1301 950 1448Q895 1391 825 1334T700 1241H646V1270Q714 1326 803 1418T931 1569H995Q1018 1505 1067 1417T1160 1270V1241Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="928" d="M469 -20Q296 -20 199 89T102 395Q102 576 173 742T368 1006T643 1104Q757 1104 825 1043T893 877Q893 696 730 601T244 506H211Q205 462 205 408Q205 243 279 157T492 70Q624 70 768 143V49Q628
+-20 469 -20ZM631 1018Q500 1018 388 903T225 594H274Q791 594 791 864Q791 931 748 974T631 1018ZM1036 1366Q1036 1415 1056 1444T1113 1473Q1167 1473 1167 1409Q1167 1361 1146 1332T1091 1303Q1036 1303 1036 1366ZM692 1366Q692 1415 712 1444T769 1473Q823
+1473 823 1409Q823 1361 802 1332T747 1303Q692 1303 692 1366Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="475" d="M174 0H76L307 1087H403L174 0ZM454 1241H388Q338 1293 274 1385T175 1548V1569H290Q336 1440 454 1266V1241Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="475" d="M174 0H76L307 1087H403L174 0ZM284 1262Q350 1313 434 1404T564 1569H701V1546Q650 1480 544 1388T351 1241H284V1262Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="475" d="M174 0H76L307 1087H403L174 0ZM642 1241H593Q523 1301 432 1448Q377 1391 307 1334T182 1241H128V1270Q196 1326 285 1418T413 1569H477Q500 1505 549 1417T642 1270V1241Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="475" d="M174 0H76L307 1087H403L174 0ZM515 1366Q515 1415 535 1444T592 1473Q646 1473 646 1409Q646 1361 625 1332T570 1303Q515 1303 515 1366ZM171 1366Q171 1415 191 1444T248 1473Q302 1473
+302 1409Q302 1361 281 1332T226 1303Q171 1303 171 1366Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1124" d="M713 1364Q659 1424 555 1503L614 1571Q646 1545 695 1505T795 1411L1061 1561L1100 1487L844 1346Q931 1230 975 1070T1020 735Q1020 380 879 180T479 -20Q302 -20 202 86T102 381Q102 551 165
+682T343 886T606 958Q713 958 794 909T915 766H920Q920 905 877 1055T762 1298L467 1135L428 1208L713 1364ZM489 70Q607 70 697 131T841 317T895 588Q895 665 860 730T760 831T604 868Q480 868 391 807T253 637T205 389Q205 236 278 153T489 70Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1143" d="M764 0L913 692Q934 784 934 848Q934 928 891 973T756 1018Q644 1018 546 951T380 764T276 477L174 0H76L307 1087H389L352 866H358Q522 1104 774 1104Q904 1104 969 1040T1034 856Q1034 786
+1010 674L862 0H764ZM874 1249Q834 1249 797 1268T721 1313Q687 1336 657 1354T588 1372Q543 1372 514 1344T463 1243H389Q408 1351 460 1409T594 1468Q635 1468 667 1454T785 1382Q837 1346 879 1346Q922 1346 950 1376T997 1477H1073Q1047 1359 999 1304T874
+1249Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1124" d="M649 1108Q829 1108 927 1000T1026 700Q1026 503 955 332T759 70T473 -20Q289 -20 194 89T98 403Q98 594 171 761T368 1018T649 1108ZM641 1022Q517 1022 418 944T260 719T201 408Q201 66 483
+66Q610 66 708 143T865 371T924 702Q924 856 851 939T641 1022ZM1000 1241H934Q884 1293 820 1385T721 1548V1569H836Q882 1440 1000 1266V1241Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1124" d="M649 1108Q829 1108 927 1000T1026 700Q1026 503 955 332T759 70T473 -20Q289 -20 194 89T98 403Q98 594 171 761T368 1018T649 1108ZM641 1022Q517 1022 418 944T260 719T201 408Q201 66 483
+66Q610 66 708 143T865 371T924 702Q924 856 851 939T641 1022ZM829 1262Q895 1313 979 1404T1109 1569H1246V1546Q1195 1480 1089 1388T896 1241H829V1262Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1124" d="M649 1108Q829 1108 927 1000T1026 700Q1026 503 955 332T759 70T473 -20Q289 -20 194 89T98 403Q98 594 171 761T368 1018T649 1108ZM641 1022Q517 1022 418 944T260 719T201 408Q201
+66 483 66Q610 66 708 143T865 371T924 702Q924 856 851 939T641 1022ZM1197 1241H1148Q1078 1301 987 1448Q932 1391 862 1334T737 1241H683V1270Q751 1326 840 1418T968 1569H1032Q1055 1505 1104 1417T1197 1270V1241Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1124" d="M649 1108Q829 1108 927 1000T1026 700Q1026 503 955 332T759 70T473 -20Q289 -20 194 89T98 403Q98 594 171 761T368 1018T649 1108ZM641 1022Q517 1022 418 944T260 719T201 408Q201 66 483
+66Q610 66 708 143T865 371T924 702Q924 856 851 939T641 1022ZM839 1249Q799 1249 762 1268T686 1313Q652 1336 622 1354T553 1372Q508 1372 479 1344T428 1243H354Q373 1351 425 1409T559 1468Q600 1468 632 1454T750 1382Q802 1346 844 1346Q887 1346 915 1376T962
+1477H1038Q1012 1359 964 1304T839 1249Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1124" d="M649 1108Q829 1108 927 1000T1026 700Q1026 503 955 332T759 70T473 -20Q289 -20 194 89T98 403Q98 594 171 761T368 1018T649 1108ZM641 1022Q517 1022 418 944T260 719T201 408Q201 66
+483 66Q610 66 708 143T865 371T924 702Q924 856 851 939T641 1022ZM1068 1366Q1068 1415 1088 1444T1145 1473Q1199 1473 1199 1409Q1199 1361 1178 1332T1123 1303Q1068 1303 1068 1366ZM724 1366Q724 1415 744 1444T801 1473Q855 1473 855 1409Q855 1361 834
+1332T779 1303Q724 1303 724 1366Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1128" d="M168 672V772H1071V672H168ZM522 373Q522 479 618 479Q666 479 691 452T717 373Q717 316 688 291T618 266Q522 266 522 373ZM522 1071Q522 1178 618 1178Q664 1178 690 1151T717 1071Q717 1014
+688 990T618 965Q522 965 522 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1124" d="M164 127Q98 233 98 403Q98 594 171 761T368 1018T649 1108Q799 1108 899 1026L1008 1159L1073 1106L956 963Q1026 858 1026 700Q1026 503 955 332T759 70T473 -20Q310 -20 219 63L109 -72L45
+-18L164 127ZM924 702Q924 803 889 881L281 139Q348 66 483 66Q610 66 708 143T865 371T924 702ZM641 1022Q517 1022 418 944T260 719T201 408Q201 283 233 211L838 950Q764 1022 641 1022Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1143" d="M381 1087L229 389Q207 283 207 231Q207 157 254 114T393 70Q503 70 600 135T764 322T864 602L969 1087H1067L836 0H756L784 205H778Q611 -16 375 -16Q244 -16 177 46T109 227Q109 287 131
+397L281 1087H381ZM774 1241H708Q658 1293 594 1385T495 1548V1569H610Q656 1440 774 1266V1241Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1143" d="M381 1087L229 389Q207 283 207 231Q207 157 254 114T393 70Q503 70 600 135T764 322T864 602L969 1087H1067L836 0H756L784 205H778Q611 -16 375 -16Q244 -16 177 46T109 227Q109 287 131
+397L281 1087H381ZM627 1262Q693 1313 777 1404T907 1569H1044V1546Q993 1480 887 1388T694 1241H627V1262Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1143" d="M381 1087L229 389Q207 283 207 231Q207 157 254 114T393 70Q503 70 600 135T764 322T864 602L969 1087H1067L836 0H756L784 205H778Q611 -16 375 -16Q244 -16 177 46T109 227Q109 287
+131 397L281 1087H381ZM1213 1241H1164Q1094 1301 1003 1448Q948 1391 878 1334T753 1241H699V1270Q767 1326 856 1418T984 1569H1048Q1071 1505 1120 1417T1213 1270V1241Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1143" d="M381 1087L229 389Q207 283 207 231Q207 157 254 114T393 70Q503 70 600 135T764 322T864 602L969 1087H1067L836 0H756L784 205H778Q611 -16 375 -16Q244 -16 177 46T109 227Q109 287 131
+397L281 1087H381ZM1083 1366Q1083 1415 1103 1444T1160 1473Q1214 1473 1214 1409Q1214 1361 1193 1332T1138 1303Q1083 1303 1083 1366ZM739 1366Q739 1415 759 1444T816 1473Q870 1473 870 1409Q870 1361 849 1332T794 1303Q739 1303 739 1366Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="920" d="M123 1087H223L305 539Q356 188 360 90H371Q414 195 557 457L905 1087H1008L295 -203Q223 -330 173 -381T59 -462T-88 -492Q-156 -492 -217 -471V-379Q-146 -406 -80 -406Q0 -406 67 -357T197
+-192T297 -8L123 1087ZM761 1262Q827 1313 911 1404T1041 1569H1178V1546Q1127 1480 1021 1388T828 1241H761V1262Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1163" d="M498 -16Q268 -16 219 203H215Q202 131 66 -492H-33L401 1556H500Q386 1021 336 805H342Q435 961 541 1034T772 1108Q905 1108 978 1016T1051 733Q1051 538 979 362T782 85T498 -16ZM748 1018Q662
+1018 576 961T413 791T302 553T266 346Q266 221 327 146T496 70Q620 70 721 154T885 397T948 723Q948 1018 748 1018Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="920" d="M123 1087H223L305 539Q356 188 360 90H371Q414 195 557 457L905 1087H1008L295 -203Q223 -330 173 -381T59 -462T-88 -492Q-156 -492 -217 -471V-379Q-146 -406 -80 -406Q0 -406 67 -357T197
+-192T297 -8L123 1087ZM698 1366Q698 1415 718 1444T775 1473Q829 1473 829 1409Q829 1361 808 1332T753 1303Q698 1303 698 1366ZM354 1366Q354 1415 374 1444T431 1473Q485 1473 485 1409Q485 1361 464 1332T409 1303Q354 1303 354 1366Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="983" d="M66 502L84 592H891L874 502H66Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="1966" d="M68 502L86 592H1874L1858 502H68Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="299" d="M133 961L129 983Q170 1083 245 1214T406 1462H479Q413 1356 350 1220T246 961H133Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="299" d="M475 1462L479 1440Q436 1335 362 1205T203 961H129Q195 1067 258 1203T362 1462H475Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="451" d="M246 238L250 215Q210 118 135 -15T-27 -264H-100Q-32 -154 31 -16T133 238H246Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="631" d="M133 961L129 983Q170 1083 245 1214T406 1462H479Q413 1356 350 1220T246 961H133ZM467 961L463 983Q506 1087 583 1221T739 1462H813Q747 1356 684 1220T580 961H467Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="631" d="M809 1462L813 1440Q770 1335 696 1205T537 961H463Q529 1067 592 1203T696 1462H809ZM475 1462L479 1440Q436 1335 362 1205T203 961H129Q195 1067 258 1203T362 1462H475Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="776" d="M561 238L565 215Q522 110 448 -20T289 -264H215Q281 -156 344 -22T449 238H561ZM227 238L231 215Q188 110 114 -20T-45 -264H-119Q-46 -145 16 -10T115 238H227Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="793" d="M248 682Q248 819 311 895T483 971Q559 971 599 932T639 813Q639 688 573 606T397 524Q248 524 248 682Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="537" d="M451 932L508 883L190 547L403 162L340 123L86 541L88 567L451 932Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="537" d="M94 123L37 172L354 508L141 893L205 932L459 514L457 487L94 123Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.ttf b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.ttf
new file mode 100644
index 0000000..68299c4
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.ttf differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.woff b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.woff
new file mode 100644
index 0000000..360f4a4
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.woff differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.woff2 b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.woff2
new file mode 100644
index 0000000..ec0bfee
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-LightItalic-webfont.woff2 differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.eot b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.eot
new file mode 100644
index 0000000..23bc6a9
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.eot differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.svg
new file mode 100644
index 0000000..ceb267c
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.svg
@@ -0,0 +1,19026 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1159" ><font-face
+    font-family="Open Sans Light"
+    units-per-em="2048"
+    panose-1="2 11 3 6 3 5 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="492" d="M276 377H215L186 1462H305L276 377ZM164 78Q164 176 244 176Q326 176 326 78Q326 -20 244 -20Q164 -20 164 78Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="723" d="M260 1462L227 934H166L133 1462H260ZM590 1462L557 934H496L463 1462H590Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M967 928L891 530H1194V451H874L788 0H698L786 451H426L340 0H252L338 451H55V530H354L430 928H133V1008H444L530 1462H621L532 1008H897L985 1462H1071L983 1008H1268V928H967ZM440 530H803L881
+928H518L440 530Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1169" d="M991 440Q991 307 892 223T618 117V-119H537V113Q445 115 337 135T164 186V289Q239 253 343 228T537 203V711Q392 755 322 799T220 903T188 1049Q188 1173 282 1257T537 1362V1554H618V1364Q815
+1355 969 1292L936 1202Q795 1264 618 1274V788Q831 722 911 644T991 440ZM881 444Q881 529 818 584T618 680V209Q740 222 810 284T881 444ZM297 1049Q297 963 354 908T537 815V1268Q418 1252 358 1192T297 1049Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1653" d="M211 1026Q211 840 256 747T397 653Q590 653 590 1026Q590 1210 541 1302T397 1395Q301 1395 256 1303T211 1026ZM688 1026Q688 800 613 683T397 565Q264 565 189 685T113 1026Q113 1249 185 1366T397
+1483Q536 1483 612 1363T688 1026ZM1063 438Q1063 253 1108 161T1249 68Q1442 68 1442 438Q1442 807 1249 807Q1153 807 1108 716T1063 438ZM1540 438Q1540 212 1466 95T1251 -23Q1115 -23 1040 98T965 438Q965 663 1038 779T1251 895Q1388 895 1464 775T1540 438ZM1280
+1462L469 0H373L1184 1462H1280Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1460" d="M123 371Q123 509 196 606T471 811L396 893Q330 964 298 1032T266 1174Q266 1317 361 1401T618 1485Q773 1485 863 1404T954 1180Q954 1075 884 988T631 793L1083 336Q1144 408 1187 493T1262
+694H1358Q1295 448 1149 268L1415 0H1280L1087 197Q995 107 923 66T766 2T571 -20Q362 -20 243 83T123 371ZM578 70Q706 70 812 113T1022 260L539 745Q403 673 343 623T255 513T227 375Q227 232 320 151T578 70ZM373 1176Q373 1097 413 1030T565 856Q724 941 786
+1015T848 1184Q848 1278 786 1336T618 1395Q504 1395 439 1337T373 1176Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="393" d="M260 1462L227 934H166L133 1462H260Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="557" d="M82 561Q82 826 159 1057T383 1462H496Q348 1280 269 1050T190 563Q190 80 494 -324H383Q236 -154 159 73T82 561Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="557" d="M475 561Q475 298 398 71T174 -324H63Q367 80 367 563Q367 820 288 1050T61 1462H174Q321 1287 398 1056T475 561Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1128" d="M631 1556L594 1151L999 1255L1020 1124L625 1085L872 745L748 674L557 1053L377 674L252 745L494 1085L104 1124L123 1255L524 1151L485 1556H631Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1169" d="M625 764H1059V682H625V250H543V682H111V764H543V1198H625V764Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="440" d="M295 238L307 217Q232 -48 133 -264H68Q145 11 178 238H295Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="659" d="M92 512V594H567V512H92Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="487" d="M162 78Q162 176 242 176Q324 176 324 78Q324 -20 242 -20Q162 -20 162 78Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="698" d="M674 1462L129 0H25L569 1462H674Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1169" d="M1055 735Q1055 350 938 165T582 -20Q353 -20 234 170T115 735Q115 1117 230 1301T582 1485Q813 1485 934 1295T1055 735ZM223 735Q223 395 312 233T582 70Q771 70 857 238T944 735Q944 1059 858 1227T582
+1395Q393 1395 308 1227T223 735Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1169" d="M682 0H584V1065Q584 1210 596 1366Q581 1351 565 1337T256 1094L199 1165L596 1462H682V0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1169" d="M1028 0H113V88L502 494Q666 664 732 754T829 926T860 1098Q860 1229 774 1311T551 1393Q368 1393 201 1260L147 1329Q330 1483 553 1483Q744 1483 853 1381T963 1100Q963 955 890 820T621 485L246
+100V96H1028V0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1169" d="M979 1118Q979 982 894 889T664 770V764Q840 742 932 652T1024 410Q1024 205 885 93T483 -20Q260 -20 94 63V162Q178 118 282 93T479 68Q700 68 811 157T922 410Q922 555 809 633T475 711H317V807H477Q659
+807 765 893T872 1128Q872 1250 786 1323T559 1397Q450 1397 360 1367T158 1262L109 1329Q194 1400 314 1441T557 1483Q759 1483 869 1388T979 1118Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1169" d="M1141 373H889V0H795V373H43V440L768 1470H889V459H1141V373ZM795 459V877Q795 1179 809 1384H801Q781 1347 678 1196L162 459H795Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1169" d="M537 879Q771 879 905 766T1040 455Q1040 230 900 105T514 -20Q405 -20 307 1T143 63V166Q251 111 335 90T514 68Q706 68 822 169T938 444Q938 607 825 700T518 793Q388 793 246 754L186 793L244 1462H948V1366H338L293
+850Q449 879 537 879Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1169" d="M131 623Q131 908 208 1102T428 1391T772 1485Q866 1485 944 1462V1374Q871 1401 768 1401Q521 1401 384 1223T229 705H242Q318 803 416 853T623 903Q828 903 943 786T1059 463Q1059 239 938 110T610
+-20Q388 -20 260 149T131 623ZM610 68Q774 68 865 171T956 465Q956 633 866 727T621 821Q519 821 432 776T292 657T240 504Q240 393 289 291T423 128T610 68Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1169" d="M334 0L936 1366H109V1462H1055V1389L451 0H334Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1169" d="M582 1487Q768 1487 881 1392T995 1135Q995 1023 925 937T696 778Q888 699 966 605T1044 377Q1044 196 918 88T578 -20Q357 -20 239 81T121 375Q121 506 204 605T461 774Q300 850 234 934T168 1137Q168
+1242 221 1321T369 1444T582 1487ZM223 360Q223 222 316 146T578 70Q742 70 842 150T942 369Q942 493 864 570T561 733Q377 662 300 576T223 360ZM580 1397Q439 1397 354 1328T268 1137Q268 1067 299 1014T390 917T590 815Q753 878 824 954T895 1137Q895 1257 811
+1327T580 1397Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1169" d="M1036 842Q1036 554 961 360T741 73T391 -20Q287 -20 199 6V92Q242 78 302 71T395 63Q642 63 782 241T938 762H926Q853 666 752 615T541 563Q338 563 225 675T111 993Q111 1213 235 1349T559 1485Q703
+1485 811 1410T977 1188T1036 842ZM559 1397Q401 1397 307 1291T213 999Q213 825 300 735T549 645Q650 645 737 690T876 809T928 961Q928 1078 882 1180T752 1339T559 1397Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="487" d="M162 78Q162 176 242 176Q324 176 324 78Q324 -20 242 -20Q162 -20 162 78ZM162 971Q162 1069 242 1069Q324 1069 324 971Q324 918 301 895T242 872Q208 872 185 895T162 971Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="487" d="M303 238L315 217Q240 -48 141 -264H76Q105 -167 138 -19T186 238H303ZM162 971Q162 1069 242 1069Q324 1069 324 971Q324 918 301 895T242 872Q208 872 185 895T162 971Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1169" d="M1059 266L111 682V743L1059 1217V1122L236 717L1059 362V266Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1169" d="M111 885V967H1059V885H111ZM111 477V559H1059V477H111Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1169" d="M111 362L934 717L111 1122V1217L1059 743V682L111 266V362Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="862" d="M293 377V414Q293 537 330 615T469 782L560 861Q632 922 663 982T694 1120Q694 1247 611 1322T391 1397Q312 1397 243 1380T94 1323L57 1403Q167 1451 241 1467T395 1483Q578 1483 683 1385T788
+1114Q788 1046 770 995T720 901T641 817T539 729Q475 675 441 631T391 537T375 391V377H293ZM260 78Q260 176 340 176Q422 176 422 78Q422 -20 340 -20Q260 -20 260 78Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1815" d="M1702 725Q1702 497 1612 359T1366 221Q1277 221 1222 275T1157 422H1153Q1110 322 1029 272T840 221Q692 221 611 317T530 588Q530 790 650 918T965 1047Q1103 1047 1251 1006L1229 542V512Q1229 408
+1264 356T1380 303Q1483 303 1548 419T1614 723Q1614 917 1535 1063T1310 1287T975 1366Q745 1366 570 1267T300 985T205 567Q205 245 372 70T846 -106Q939 -106 1034 -88T1266 -18V-117Q1063 -197 852 -197Q503 -197 308 3T113 561Q113 817 221 1021T528 1339T977
+1452Q1192 1452 1357 1363T1612 1109T1702 725ZM633 590Q633 447 688 375T862 303Q1117 303 1135 649L1151 940Q1072 967 958 967Q809 967 721 865T633 590Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1284" d="M207 1462H608Q879 1462 1006 1370T1133 1092Q1133 965 1056 881T829 772V766Q1004 740 1086 656T1169 420Q1169 218 1035 109T655 0H207V1462ZM309 811H631Q837 811 930 879T1024 1094Q1024 1240 919
+1306T604 1372H309V811ZM309 721V90H653Q1059 90 1059 420Q1059 721 631 721H309Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1272" d="M831 1391Q556 1391 398 1215T240 733Q240 420 389 247T815 74Q999 74 1153 121V31Q1008 -20 791 -20Q483 -20 306 179T129 735Q129 958 213 1128T456 1390T825 1483Q1039 1483 1208 1403L1167 1311Q1007
+1391 831 1391Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1446" d="M1317 745Q1317 377 1124 189T557 0H207V1462H602Q952 1462 1134 1279T1317 745ZM1206 741Q1206 1055 1047 1213T578 1372H309V90H551Q1206 90 1206 741Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1130" d="M1006 0H207V1462H1006V1368H309V815H967V721H309V94H1006V0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1028" d="M309 0H207V1462H1008V1368H309V748H969V653H309V0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1481" d="M782 737H1321V70Q1109 -20 844 -20Q498 -20 314 175T129 729Q129 952 220 1124T482 1391T874 1485Q1113 1485 1303 1397L1262 1305Q1072 1393 868 1393Q579 1393 410 1215T240 733Q240 403 401 237T874
+70Q1076 70 1217 127V641H782V737Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1473" d="M1266 0H1163V719H309V0H207V1462H309V813H1163V1462H1266V0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="516" d="M207 0V1462H309V0H207Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="506" d="M-33 -369Q-125 -369 -184 -342V-254Q-106 -274 -35 -274Q207 -274 207 -10V1462H309V0Q309 -369 -33 -369Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1190" d="M1190 0H1065L504 772L309 600V0H207V1462H309V702L471 864L1044 1462H1174L575 844L1190 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1051" d="M207 0V1462H309V96H1006V0H207Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1767" d="M850 0L305 1350H297Q305 1226 305 1096V0H207V1462H365L883 176H889L1407 1462H1561V0H1458V1108Q1458 1224 1470 1348H1462L915 0H850Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1477" d="M1270 0H1167L301 1298H293Q305 1066 305 948V0H207V1462H309L1174 166H1180Q1171 346 1171 508V1462H1270V0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325 733Q1325 1049 1186
+1217T784 1386Q523 1386 382 1216T240 733Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1198" d="M1087 1042Q1087 830 943 717T535 604H309V0H207V1462H565Q1087 1462 1087 1042ZM309 692H510Q757 692 867 773T977 1038Q977 1207 873 1288T551 1370H309V692Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1565" d="M1436 733Q1436 439 1310 247T961 0L1294 -348H1128L846 -18L813 -20H782Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046
+76 1185 246T1325 733Q1325 1049 1186 1217T784 1386Q523 1386 382 1216T240 733Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1217" d="M309 637V0H207V1462H555Q827 1462 957 1362T1087 1059Q1087 912 1010 811T774 666L1171 0H1049L672 637H309ZM309 725H588Q773 725 875 807T977 1051Q977 1218 877 1294T551 1370H309V725Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1116" d="M1014 377Q1014 194 880 87T522 -20Q254 -20 111 39V141Q269 74 514 74Q694 74 799 156T905 373Q905 456 870 510T756 610T524 707Q300 784 215 873T129 1112Q129 1276 257 1379T588 1483Q794 1483 975
+1405L938 1317Q756 1393 590 1393Q428 1393 332 1318T236 1114Q236 1033 265 981T362 888T592 788Q763 729 849 674T974 548T1014 377Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1073" d="M588 0H485V1366H10V1462H1063V1366H588V0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1473" d="M1282 1462V516Q1282 264 1136 122T729 -20Q475 -20 333 122T190 520V1462H293V516Q293 305 410 188T741 70Q950 70 1065 185T1180 506V1462H1282Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1182" d="M1071 1462H1182L635 0H545L0 1462H109L477 467Q561 242 590 129Q610 204 669 362L1071 1462Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1827" d="M1372 0H1288L967 1128Q927 1267 907 1356Q891 1269 862 1156T539 0H453L51 1462H158L414 520Q429 463 442 415T465 324T484 242T500 162Q524 298 602 575L852 1462H965L1258 444Q1309 268 1331 160Q1344
+232 1364 313T1673 1462H1776L1372 0Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1102" d="M1102 0H985L553 682L113 0H0L492 762L45 1462H160L555 836L956 1462H1065L612 764L1102 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1081" d="M543 662L971 1462H1081L594 565V0H489V557L0 1462H117L543 662Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1180" d="M1098 0H82V76L938 1366H121V1462H1075V1386L217 96H1098V0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="653" d="M602 -324H174V1462H602V1368H272V-229H602V-324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="698" d="M127 1462L674 0H571L25 1462H127Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="653" d="M51 -229H381V1368H51V1462H479V-324H51V-229Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1169" d="M88 561L553 1473H621L1081 561H981L586 1352L188 561H88Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="842" d="M846 -266H-4V-184H846V-266Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1182" d="M776 1241H707Q611 1320 519 1412T393 1552V1569H535Q561 1521 633 1427T776 1257V1241Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106 826 1013T915
+723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1219" d="M641 1108Q869 1108 984 965T1100 545Q1100 274 979 127T637 -20Q521 -20 428 28T281 164H272L244 0H182V1556H281V1165Q281 1077 277 1003L274 918H281Q343 1016 430 1062T641 1108ZM639 1018Q447 1018
+364 908T281 545V528Q281 282 367 175T637 68Q815 68 905 192T995 547Q995 1018 639 1018Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="973" d="M616 -20Q383 -20 251 127T119 537Q119 807 256 957T631 1108Q772 1108 901 1059L874 971Q733 1018 629 1018Q429 1018 326 895T223 539Q223 319 326 195T614 70Q762 70 889 123V31Q785 -20 616 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1219" d="M580 1108Q698 1108 784 1065T938 918H944Q938 1044 938 1165V1556H1036V0H971L946 166H938Q814 -20 582 -20Q357 -20 238 120T119 528Q119 810 237 959T580 1108ZM580 1018Q402 1018 313 893T223 530Q223
+68 582 68Q766 68 852 175T938 528V545Q938 797 854 907T580 1018Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1124" d="M621 -20Q384 -20 252 126T119 535Q119 795 247 951T592 1108Q784 1108 895 974T1006 610V530H223Q225 306 327 188T621 70Q714 70 784 83T963 139V49Q871 9 793 -5T621 -20ZM592 1020Q435 1020 340 917T229
+618H901Q901 807 819 913T592 1020Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="614" d="M586 1001H330V0H231V1001H29V1059L231 1096V1180Q231 1380 304 1473T545 1567Q635 1567 725 1540L702 1454Q622 1479 543 1479Q427 1479 379 1411T330 1188V1087H586V1001Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1071" d="M1030 1087V1018L805 1004Q895 892 895 758Q895 601 791 504T510 406Q436 406 406 412Q347 381 316 339T285 250Q285 198 324 174T457 150H647Q824 150 918 79T1012 -133Q1012 -305 873 -398T475 -492Q270
+-492 158 -413T45 -193Q45 -81 114 -7T303 94Q254 115 225 153T195 242Q195 351 334 434Q239 473 186 556T133 748Q133 911 236 1009T516 1108Q623 1108 682 1087H1030ZM150 -184Q150 -408 483 -408Q911 -408 911 -135Q911 -37 844 7T627 51H449Q150 51 150 -184ZM233
+748Q233 622 309 553T514 483Q650 483 722 552T795 752Q795 891 721 960T512 1030Q382 1030 308 956T233 748Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1208" d="M940 0V705Q940 869 871 943T657 1018Q462 1018 372 920T281 600V0H182V1556H281V1061L276 922H283Q344 1020 437 1064T668 1108Q1038 1108 1038 711V0H940Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="463" d="M281 0H182V1087H281V0ZM168 1389Q168 1485 231 1485Q262 1485 279 1460T297 1389Q297 1344 280 1318T231 1292Q168 1292 168 1389Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="463" d="M37 -492Q-43 -492 -98 -467V-381Q-29 -401 31 -401Q182 -401 182 -225V1087H281V-211Q281 -346 218 -419T37 -492ZM168 1389Q168 1485 231 1485Q262 1485 279 1460T297 1389Q297 1344 280 1318T231 1292Q168
+1292 168 1389Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="991" d="M279 477L834 1087H954L526 623L991 0H872L459 549L281 387V0H182V1556H281V776L274 477H279Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="463" d="M281 0H182V1556H281V0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1808" d="M1540 0V713Q1540 872 1478 945T1288 1018Q1121 1018 1041 926T961 637V0H860V743Q860 1018 608 1018Q437 1018 359 919T281 600V0H182V1087H264L285 938H291Q336 1019 419 1063T602 1108Q859 1108 932
+915H936Q989 1008 1078 1058T1282 1108Q1460 1108 1549 1013T1638 711V0H1540Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1208" d="M940 0V705Q940 869 871 943T657 1018Q462 1018 372 920T281 600V0H182V1087H266L285 938H291Q397 1108 668 1108Q1038 1108 1038 711V0H940Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977 770 878 894T598
+1018Q418 1018 321 895T223 545Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1219" d="M647 -20Q396 -20 281 168H274L277 84Q281 10 281 -78V-492H182V1087H266L285 932H291Q403 1108 649 1108Q869 1108 984 964T1100 543Q1100 275 979 128T647 -20ZM645 68Q812 68 903 192T995 539Q995
+1018 649 1018Q459 1018 370 914T281 573V541Q281 286 366 177T645 68Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1219" d="M569 -20Q355 -20 237 122T119 532Q119 807 237 957T575 1108Q811 1108 928 934H934L952 1087H1036V-492H938V-78Q938 44 944 170H938Q820 -20 569 -20ZM571 68Q769 68 853 177T938 543V555Q938 800 853
+909T582 1018Q406 1018 315 894T223 530Q223 301 312 185T571 68Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="797" d="M610 1108Q679 1108 758 1094L739 999Q671 1016 598 1016Q459 1016 370 898T281 600V0H182V1087H266L276 891H283Q350 1011 426 1059T610 1108Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="954" d="M856 283Q856 137 745 59T430 -20Q212 -20 84 47V154Q248 72 430 72Q591 72 674 125T758 268Q758 350 692 406T473 516Q310 575 244 617T145 713T111 844Q111 966 213 1037T500 1108Q676 1108 834 1042L797
+952Q637 1018 500 1018Q367 1018 289 974T211 852Q211 767 271 716T508 602Q655 549 722 507T822 410T856 283Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="686" d="M469 68Q563 68 633 84V4Q561 -20 467 -20Q323 -20 255 57T186 299V1001H25V1059L186 1104L236 1350H287V1087H606V1001H287V313Q287 188 331 128T469 68Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1208" d="M268 1087V383Q268 219 337 145T551 70Q745 70 836 168T928 487V1087H1026V0H942L924 150H918Q812 -20 541 -20Q170 -20 170 377V1087H268Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="940" d="M420 0L0 1087H102L383 348Q439 206 467 100H473Q514 236 557 350L838 1087H940L520 0H420Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1481" d="M1051 0L813 727Q790 801 754 944H748L727 870L682 725L440 0H342L31 1087H137L311 457Q372 223 391 113H397Q456 347 483 424L707 1087H797L1010 426Q1082 191 1098 115H1104Q1112 180 1184 463L1350
+1087H1450L1155 0H1051Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1020" d="M449 559L70 1087H184L508 629L829 1087H938L565 559L965 0H850L508 485L164 0H55L449 559Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="940" d="M0 1087H102L332 477Q437 196 465 98H471Q513 227 608 483L838 1087H940L453 -176Q394 -330 354 -384T261 -465T131 -492Q74 -492 4 -471V-385Q62 -401 129 -401Q180 -401 219 -377T289 -303T362 -143T416
+0L0 1087Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="944" d="M858 0H82V63L727 999H129V1087H856V1024L207 88H858V0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="723" d="M389 -27Q389 -129 448 -179T651 -233V-324Q456 -324 374 -249T291 -18V319Q291 524 61 528V608Q183 610 237 659T291 807V1157Q291 1456 651 1462V1372Q513 1367 451 1314T389 1157V852Q389 722
+345 658T203 573V565Q300 545 344 482T389 295V-27Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1108" d="M508 1561H600V-506H508V1561Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="723" d="M334 295Q334 418 378 481T520 565V573Q423 593 379 657T334 852V1157Q334 1260 273 1313T72 1372V1462Q246 1462 339 1385T432 1157V807Q432 707 486 659T662 608V528Q432 524 432 319V-18Q432
+-173 350 -248T72 -324V-233Q213 -231 273 -181T334 -27V295Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1169" d="M334 745Q285 745 226 715T111 625V719Q219 829 344 829Q405 829 459 816T614 758Q740 700 834 700Q890 700 943 730T1059 825V729Q1011 680 955 648T825 616Q709 616 555 688Q431 745 334 745Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="492" d="M215 711H276L305 -375H186L215 711ZM166 1010Q166 1108 246 1108Q328 1108 328 1010Q328 957 305 934T246 911Q212 911 189 934T166 1010Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1169" d="M602 190Q416 220 314 365T211 745Q211 977 313 1126T602 1309V1483H684V1317H698Q829 1317 973 1262L942 1178Q808 1229 705 1229Q518 1229 417 1107T315 748Q315 523 415 399T696 274Q827 274
+963 332V240Q853 184 696 184H684V-20H602V190Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1169" d="M412 676V420Q412 304 377 224T264 96H1073V0H78V84Q188 105 249 194T311 418V676H100V758H311V1055Q311 1259 409 1370T690 1481Q865 1481 1020 1413L985 1327Q828 1393 690 1393Q549 1393
+481 1312T412 1059V758H823V676H412Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1169" d="M991 723Q991 572 901 467L1040 326L981 266L844 408Q734 315 584 315Q431 315 324 408L186 266L127 326L266 467Q176 573 176 723Q176 870 266 981L127 1122L186 1182L324 1040Q427 1133
+584 1133Q739 1133 844 1040L981 1182L1040 1122L901 981Q991 870 991 723ZM584 395Q718 395 812 490T907 723Q907 859 812 956T584 1053Q450 1053 355 956T260 723Q260 587 354 491T584 395Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1169" d="M586 666L1014 1462H1124L692 674H975V592H637V387H975V305H637V0H532V305H195V387H532V592H195V674H473L43 1462H160L586 666Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1108" d="M508 1561H600V797H508V1561ZM508 258H600V-506H508V258Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="1057" d="M145 813Q145 896 195 965T334 1073Q248 1120 209 1175T170 1311Q170 1428 271 1494T547 1561Q722 1561 883 1497L848 1417Q757 1451 690 1464T545 1477Q411 1477 340 1433T268 1313Q268 1259
+293 1225T379 1159T567 1085Q759 1021 831 953T903 782Q903 609 717 508Q803 466 846 412T889 276Q889 141 776 69T465 -4Q373 -4 294 11T129 63V158Q311 80 461 80Q623 80 708 129T793 270Q793 325 768 357T680 423T489 502Q289 575 217 643T145 813ZM246 825Q246
+760 277 721T383 646T633 547Q715 588 759 645T803 766Q803 828 771 868T663 945T426 1032Q345 1009 296 953T246 825Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1182" d="M336 1389Q336 1435 351 1455T399 1475Q463 1475 463 1389Q463 1303 399 1303Q336 1303 336 1389ZM717 1389Q717 1435 732 1455T780 1475Q844 1475 844 1389Q844 1303 780 1303Q717 1303 717 1389Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M897 1092Q755 1092 675 998T594 733Q594 547 668 458T889 369Q973 369 1087 412V324Q985 279 879 279Q692 279 591 394T489 725Q489 933 600 1057T897 1182Q1016 1182 1124 1130L1087 1047Q989
+1092 897 1092ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM193 731Q193 553 281 402T522 161T852 72Q1030 72 1181 160T1422 401T1511 731Q1511
+905 1426 1056T1187 1299T852 1391Q676 1391 524 1303T282 1060T193 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="686" d="M512 813L487 885Q403 801 285 801Q190 801 134 850T78 989Q78 1089 158 1140T399 1200L494 1204V1247Q494 1324 456 1361T350 1399Q263 1399 154 1350L121 1423Q238 1479 352 1479Q580
+1479 580 1264V813H512ZM168 993Q168 939 203 908T299 877Q389 877 441 927T494 1069V1133L406 1128Q290 1122 229 1092T168 993Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="885" d="M82 543L391 936L453 893L199 530L453 168L391 125L82 516V543ZM442 543L752 936L813 893L559 530L813 168L752 125L442 516V543Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1169" d="M1038 764V270H956V682H111V764H1038Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="659" d="M92 512V594H567V512H92Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M709 731H821Q912 731 964 777T1016 913Q1016 1085 819 1085H709V731ZM1120 918Q1120 839 1082 779T971 684L1208 291H1087L877 651H709V291H608V1171H819Q962 1171 1041 1109T1120 918ZM100
+731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM193 731Q193 553 281 402T522 161T852 72Q1030 72 1181 160T1422 401T1511 731Q1511 905 1426 1056T1187
+1299T852 1391Q676 1391 524 1303T282 1060T193 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6V1638H1030V1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M139 1184Q139 1316 225 1399T438 1483Q564 1483 650 1400T737 1184Q737 1052 651 969T438 885Q308 885 224 968T139 1184ZM229 1184Q229 1093 290 1030T438 967Q524 967 585 1029T647 1184Q647
+1276 587 1338T438 1401Q348 1401 289 1337T229 1184Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1169" d="M111 1V83H1059V1H111ZM625 764H1059V682H625V250H543V682H111V764H543V1198H625V764Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="688" d="M629 586H53V664L295 901Q420 1022 467 1094T514 1243Q514 1314 468 1355T344 1397Q236 1397 127 1315L78 1380Q197 1483 348 1483Q472 1483 542 1420T612 1245Q612 1198 599 1156T559
+1071T491 981T182 674H629V586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="688" d="M616 1260Q616 1182 572 1129T455 1053Q641 1008 641 842Q641 712 553 641T305 569Q161 569 41 629V717Q177 655 307 655Q422 655 481 704T541 840Q541 923 482 962T303 1001H172V1085H307Q412
+1085 465 1128T518 1249Q518 1316 471 1356T344 1397Q216 1397 98 1319L51 1389Q181 1483 344 1483Q471 1483 543 1423T616 1260Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1182" d="M393 1257Q466 1336 537 1428T635 1569H776V1552Q740 1500 654 1414T463 1241H393V1257Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1221" d="M281 1087V383Q281 219 350 145T563 70Q757 70 848 168T940 487V1087H1038V0H954L936 150H930Q880 73 780 27T563 -20Q464 -20 396 7T276 92Q281 0 281 -78V-492H182V1087H281Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1106 -260H1006V1462H778V-260H678V559Q614 541 532 541Q316 541 215 666T113 1042Q113 1302 222 1429T563 1556H1106V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="487" d="M162 721Q162 819 242 819Q324 819 324 721Q324 623 242 623Q162 623 162 721Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="420" d="M393 -291Q393 -391 326 -441T137 -492Q69 -492 43 -481V-393Q73 -403 135 -403Q213 -403 254 -375T295 -295Q295 -201 102 -174L195 0H291L225 -117Q393 -154 393 -291Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="688" d="M350 1462H442V586H344V1133Q344 1232 356 1366Q330 1343 123 1221L76 1298L350 1462Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="739" d="M670 1141Q670 980 590 891T367 801Q224 801 147 887T70 1141Q70 1303 148 1391T371 1479Q513 1479 591 1392T670 1141ZM160 1141Q160 877 369 877Q578 877 578 1141Q578 1272 528 1335T369
+1399Q260 1399 210 1336T160 1141Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="885" d="M803 518L494 125L432 168L686 530L432 893L494 936L803 545V518ZM442 518L133 125L72 168L326 530L72 893L133 936L442 545V518Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1516" d="M589 1462H681V586H583V1133Q583 1232 595 1366Q569 1343 362 1221L315 1298L589 1462ZM1148 1462L337 0H243L1054 1462H1148ZM1392 242H1263V1H1173V242H760V302L1167 883H1263V320H1392V242ZM1173
+320V541Q1173 673 1181 773Q1175 761 1160 738T864 320H1173Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1516" d="M541 1462H633V586H535V1133Q535 1232 547 1366Q521 1343 314 1221L267 1298L541 1462ZM1073 1462L262 0H168L979 1462H1073ZM1403 1H827V79L1069 316Q1194 437 1241 509T1288 658Q1288 729
+1242 770T1118 812Q1010 812 901 730L852 795Q971 898 1122 898Q1246 898 1316 835T1386 660Q1386 613 1373 571T1333 486T1265 396T956 89H1403V1Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1516" d="M616 1260Q616 1182 572 1129T455 1053Q641 1008 641 842Q641 712 553 641T305 569Q161 569 41 629V717Q177 655 307 655Q422 655 481 704T541 840Q541 923 482 962T303 1001H172V1085H307Q412
+1085 465 1128T518 1249Q518 1316 471 1356T344 1397Q216 1397 98 1319L51 1389Q181 1483 344 1483Q471 1483 543 1423T616 1260ZM1300 1462L489 0H395L1206 1462H1300ZM1495 242H1366V1H1276V242H863V302L1270 883H1366V320H1495V242ZM1276 320V541Q1276 673 1284
+773Q1278 761 1263 738T967 320H1276Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="862" d="M569 711V674Q569 549 530 470T393 305L303 226Q230 165 199 106T168 -33Q168 -157 250 -233T471 -309Q596 -309 704 -263L768 -236L805 -315Q694 -363 620 -379T467 -395Q283 -395 179
+-296T74 -27Q74 43 94 97T152 199T324 358Q388 411 422 456T472 550T487 696V711H569ZM440 1010Q440 1108 520 1108Q602 1108 602 1010Q602 957 579 934T520 911Q486 911 463 934T440 1010Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM720 1579H651Q555 1658 463 1750T337 1890V1907H479Q505 1859
+577 1765T720 1595V1579Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM504 1595Q577 1674 648 1766T746 1907H887V1890Q851 1838
+765 1752T574 1579H504V1595Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM328 1595Q390 1662 459 1751T570 1907H668Q736 1787
+910 1595V1579H840Q718 1680 619 1786Q511 1672 398 1579H328V1595Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM784 1581Q748 1581 709 1599T608 1671Q576 1697 546 1717T483
+1737Q438 1737 408 1703T360 1581H287Q297 1692 350 1755T487 1819Q535 1819 575 1794T657 1735Q691 1707 723 1685T784 1663Q830 1663 861 1699T909 1819H985Q969 1703 916 1642T784 1581Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM367 1727Q367 1773 382 1793T430 1813Q494 1813 494 1727Q494
+1641 430 1641Q367 1641 367 1727ZM748 1727Q748 1773 763 1793T811 1813Q875 1813 875 1727Q875 1641 811 1641Q748 1641 748 1727Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1229" d="M911 516H317L113 0H0L588 1468H653L1229 0H1114L911 516ZM354 608H877L678 1135Q653 1197 618 1307Q591 1211 559 1133L354 608ZM836 1610Q836 1513 776 1455T619 1397Q522 1397 462 1455T402
+1610Q402 1704 462 1762T619 1821Q716 1821 776 1762T836 1610ZM482 1610Q482 1544 519 1507T619 1469Q681 1469 718 1506T756 1610Q756 1674 717 1711T619 1749Q557 1749 520 1711T482 1610Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1653" d="M1528 0H811V516H336L109 0H-2L651 1462H1528V1368H913V815H1489V721H913V94H1528V0ZM377 608H811V1368H711L377 608Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1272" d="M831 1391Q556 1391 398 1215T240 733Q240 420 389 247T815 74Q999 74 1153 121V31Q1008 -20 791 -20Q483 -20 306 179T129 735Q129 958 213 1128T456 1390T825 1483Q1039 1483 1208 1403L1167
+1311Q1007 1391 831 1391ZM911 -291Q911 -391 844 -441T655 -492Q587 -492 561 -481V-393Q591 -403 653 -403Q731 -403 772 -375T813 -295Q813 -201 620 -174L713 0H809L743 -117Q911 -154 911 -291Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1130" d="M1006 0H207V1462H1006V1368H309V815H967V721H309V94H1006V0ZM697 1579H628Q532 1658 440 1750T314 1890V1907H456Q482 1859 554 1765T697 1595V1579Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1130" d="M1006 0H207V1462H1006V1368H309V815H967V721H309V94H1006V0ZM463 1595Q536 1674 607 1766T705 1907H846V1890Q810 1838 724 1752T533 1579H463V1595Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1130" d="M1006 0H207V1462H1006V1368H309V815H967V721H309V94H1006V0ZM315 1595Q377 1662 446 1751T557 1907H655Q723 1787 897 1595V1579H827Q705 1680 606 1786Q498 1672 385 1579H315V1595Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1130" d="M1006 0H207V1462H1006V1368H309V815H967V721H309V94H1006V0ZM354 1727Q354 1773 369 1793T417 1813Q481 1813 481 1727Q481 1641 417 1641Q354 1641 354 1727ZM735 1727Q735 1773 750 1793T798
+1813Q862 1813 862 1727Q862 1641 798 1641Q735 1641 735 1727Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="516" d="M207 0V1462H309V0H207ZM320 1579H251Q155 1658 63 1750T-63 1890V1907H79Q105 1859 177 1765T320 1595V1579Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="516" d="M207 0V1462H309V0H207ZM191 1595Q264 1674 335 1766T433 1907H574V1890Q538 1838 452 1752T261 1579H191V1595Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="516" d="M207 0V1462H309V0H207ZM-32 1595Q30 1662 99 1751T210 1907H308Q376 1787 550 1595V1579H480Q358 1680 259 1786Q151 1672 38 1579H-32V1595Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="516" d="M207 0V1462H309V0H207ZM5 1727Q5 1773 20 1793T68 1813Q132 1813 132 1727Q132 1641 68 1641Q5 1641 5 1727ZM386 1727Q386 1773 401 1793T449 1813Q513 1813 513 1727Q513 1641 449 1641Q386
+1641 386 1727Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1466" d="M1317 745Q1317 377 1124 189T557 0H207V678H47V772H207V1462H602Q952 1462 1134 1279T1317 745ZM1206 741Q1206 1055 1047 1213T578 1372H309V772H715V678H309V90H551Q1206 90 1206 741Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1477" d="M1270 0H1167L301 1298H293Q305 1066 305 948V0H207V1462H309L1174 166H1180Q1171 346 1171 508V1462H1270V0ZM897 1581Q861 1581 822 1599T721 1671Q689 1697 659 1717T596 1737Q551 1737
+521 1703T473 1581H400Q410 1692 463 1755T600 1819Q648 1819 688 1794T770 1735Q804 1707 836 1685T897 1663Q943 1663 974 1699T1022 1819H1098Q1082 1703 1029 1642T897 1581Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325 733Q1325
+1049 1186 1217T784 1386Q523 1386 382 1216T240 733ZM885 1579H816Q720 1658 628 1750T502 1890V1907H644Q670 1859 742 1765T885 1595V1579Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325 733Q1325
+1049 1186 1217T784 1386Q523 1386 382 1216T240 733ZM686 1595Q759 1674 830 1766T928 1907H1069V1890Q1033 1838 947 1752T756 1579H686V1595Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325
+733Q1325 1049 1186 1217T784 1386Q523 1386 382 1216T240 733ZM492 1595Q554 1662 623 1751T734 1907H832Q900 1787 1074 1595V1579H1004Q882 1680 783 1786Q675 1672 562 1579H492V1595Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325 733Q1325
+1049 1186 1217T784 1386Q523 1386 382 1216T240 733ZM940 1581Q904 1581 865 1599T764 1671Q732 1697 702 1717T639 1737Q594 1737 564 1703T516 1581H443Q453 1692 506 1755T643 1819Q691 1819 731 1794T813 1735Q847 1707 879 1685T940 1663Q986 1663 1017 1699T1065
+1819H1141Q1125 1703 1072 1642T940 1581Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q477 -20 303 182T129 735Q129 1084 304 1284T784 1485Q1090 1485 1263 1284T1436 733ZM240 733Q240 419 380 248T782 76Q1046 76 1185 246T1325 733Q1325
+1049 1186 1217T784 1386Q523 1386 382 1216T240 733ZM529 1727Q529 1773 544 1793T592 1813Q656 1813 656 1727Q656 1641 592 1641Q529 1641 529 1727ZM910 1727Q910 1773 925 1793T973 1813Q1037 1813 1037 1727Q1037 1641 973 1641Q910 1641 910 1727Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1169" d="M584 780L993 1188L1051 1130L643 723L1049 315L991 258L584 666L178 258L121 315L526 723L119 1130L176 1188L584 780Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1565" d="M1436 733Q1436 385 1262 183T782 -20Q546 -20 387 100L301 -20L227 39L317 166Q129 366 129 735Q129 1084 304 1284T784 1485Q1016 1485 1176 1364L1284 1516L1356 1456L1245 1303Q1436 1096
+1436 733ZM1325 733Q1325 1048 1186 1219L444 182Q577 76 782 76Q1046 76 1185 246T1325 733ZM240 733Q240 421 379 250L1118 1284Q985 1386 784 1386Q523 1386 382 1216T240 733Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1473" d="M1282 1462V516Q1282 264 1136 122T729 -20Q475 -20 333 122T190 520V1462H293V516Q293 305 410 188T741 70Q950 70 1065 185T1180 506V1462H1282ZM833 1579H764Q668 1658 576 1750T450 1890V1907H592Q618
+1859 690 1765T833 1595V1579Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1473" d="M1282 1462V516Q1282 264 1136 122T729 -20Q475 -20 333 122T190 520V1462H293V516Q293 305 410 188T741 70Q950 70 1065 185T1180 506V1462H1282ZM633 1595Q706 1674 777 1766T875 1907H1016V1890Q980
+1838 894 1752T703 1579H633V1595Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1473" d="M1282 1462V516Q1282 264 1136 122T729 -20Q475 -20 333 122T190 520V1462H293V516Q293 305 410 188T741 70Q950 70 1065 185T1180 506V1462H1282ZM444 1595Q506 1662 575 1751T686 1907H784Q852
+1787 1026 1595V1579H956Q834 1680 735 1786Q627 1672 514 1579H444V1595Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1473" d="M1282 1462V516Q1282 264 1136 122T729 -20Q475 -20 333 122T190 520V1462H293V516Q293 305 410 188T741 70Q950 70 1065 185T1180 506V1462H1282ZM481 1727Q481 1773 496 1793T544 1813Q608
+1813 608 1727Q608 1641 544 1641Q481 1641 481 1727ZM862 1727Q862 1773 877 1793T925 1813Q989 1813 989 1727Q989 1641 925 1641Q862 1641 862 1727Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1081" d="M543 662L971 1462H1081L594 565V0H489V557L0 1462H117L543 662ZM434 1595Q507 1674 578 1766T676 1907H817V1890Q781 1838 695 1752T504 1579H434V1595Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1198" d="M1087 778Q1087 566 943 453T535 340H309V0H207V1462H309V1198H565Q1087 1198 1087 778ZM309 428H510Q757 428 867 509T977 774Q977 943 873 1024T551 1106H309V428Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1194" d="M961 1284Q961 1145 822 1034Q741 970 712 934T682 858Q682 814 696 790T748 733T850 655Q956 580 1001 531T1069 428T1092 307Q1092 151 1004 66T758 -20Q663 -20 584 -2T457 47V154Q522
+116 605 92T758 68Q872 68 932 122T993 283Q993 366 954 427T805 563Q678 650 630 710T582 856Q582 916 614 966T721 1074Q795 1131 827 1179T860 1286Q860 1379 790 1429T588 1479Q443 1479 362 1410T281 1214V0H182V1206Q182 1379 285 1473T578 1567Q766 1567
+863 1495T961 1284Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106
+826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM638 1241H569Q473 1320 381 1412T255 1552V1569H397Q423 1521 495 1427T638 1257V1241Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106
+826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM422 1257Q495 1336 566 1428T664 1569H805V1552Q769 1500 683 1414T492 1241H422V1257Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738
+1106 826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM507 1257Q569 1324 638 1413T749 1569H847Q915 1449 1089 1257V1241H1019Q897 1342 798 1448Q690 1334 577 1241H507V1257Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106
+826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM953 1243Q917 1243 878 1261T777 1333Q745 1359 715 1379T652 1399Q607 1399 577 1365T529 1243H456Q466 1354 519 1417T656 1481Q704 1481
+744 1456T826 1397Q860 1369 892 1347T953 1325Q999 1325 1030 1361T1078 1481H1154Q1138 1365 1085 1304T953 1243Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106
+826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM538 1389Q538 1435 553 1455T601 1475Q665 1475 665 1389Q665 1303 601 1303Q538 1303 538 1389ZM919 1389Q919 1435 934 1455T982 1475Q1046
+1475 1046 1389Q1046 1303 982 1303Q919 1303 919 1389Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1085" d="M842 0L817 172H809Q727 67 641 24T436 -20Q276 -20 187 62T98 289Q98 448 230 536T614 629L821 635V707Q821 862 758 941T555 1020Q404 1020 242 936L205 1022Q384 1106 559 1106Q738 1106
+826 1013T915 723V0H842ZM442 70Q616 70 716 169T817 446V553L627 545Q398 534 301 474T203 285Q203 183 265 127T442 70ZM1015 1456Q1015 1359 955 1301T798 1243Q701 1243 641 1301T581 1456Q581 1550 641 1608T798 1667Q895 1667 955 1608T1015 1456ZM661 1456Q661
+1390 698 1353T798 1315Q860 1315 897 1352T935 1456Q935 1520 896 1557T798 1595Q736 1595 699 1557T661 1456Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1731" d="M1243 -20Q948 -20 846 236Q778 103 678 42T426 -20Q270 -20 184 62T98 289Q98 443 223 532T600 629L801 635V707Q801 862 740 941T541 1020Q393 1020 236 936L199 1022Q372 1106 545 1106Q806
+1106 870 895Q981 1108 1217 1108Q1401 1108 1506 974T1612 610V530H897Q897 70 1245 70Q1330 70 1395 82T1569 139V49Q1477 8 1404 -6T1243 -20ZM434 70Q603 70 700 169T797 446V553L610 545Q391 534 297 474T203 285Q203 183 264 127T434 70ZM1217 1020Q933 1020
+903 618H1507Q1507 806 1430 913T1217 1020Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="973" d="M616 -20Q383 -20 251 127T119 537Q119 807 256 957T631 1108Q772 1108 901 1059L874 971Q733 1018 629 1018Q429 1018 326 895T223 539Q223 319 326 195T614 70Q762 70 889 123V31Q785 -20
+616 -20ZM723 -291Q723 -391 656 -441T467 -492Q399 -492 373 -481V-393Q403 -403 465 -403Q543 -403 584 -375T625 -295Q625 -201 432 -174L525 0H621L555 -117Q723 -154 723 -291Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1124" d="M621 -20Q384 -20 252 126T119 535Q119 795 247 951T592 1108Q784 1108 895 974T1006 610V530H223Q225 306 327 188T621 70Q714 70 784 83T963 139V49Q871 9 793 -5T621 -20ZM592 1020Q435
+1020 340 917T229 618H901Q901 807 819 913T592 1020ZM941 1241H872Q776 1320 684 1412T558 1552V1569H700Q726 1521 798 1427T941 1257V1241Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1124" d="M621 -20Q384 -20 252 126T119 535Q119 795 247 951T592 1108Q784 1108 895 974T1006 610V530H223Q225 306 327 188T621 70Q714 70 784 83T963 139V49Q871 9 793 -5T621 -20ZM592 1020Q435
+1020 340 917T229 618H901Q901 807 819 913T592 1020ZM452 1257Q525 1336 596 1428T694 1569H835V1552Q799 1500 713 1414T522 1241H452V1257Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1124" d="M621 -20Q384 -20 252 126T119 535Q119 795 247 951T592 1108Q784 1108 895 974T1006 610V530H223Q225 306 327 188T621 70Q714 70 784 83T963 139V49Q871 9 793 -5T621 -20ZM592 1020Q435
+1020 340 917T229 618H901Q901 807 819 913T592 1020ZM546 1257Q608 1324 677 1413T788 1569H886Q954 1449 1128 1257V1241H1058Q936 1342 837 1448Q729 1334 616 1241H546V1257Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1124" d="M621 -20Q384 -20 252 126T119 535Q119 795 247 951T592 1108Q784 1108 895 974T1006 610V530H223Q225 306 327 188T621 70Q714 70 784 83T963 139V49Q871 9 793 -5T621 -20ZM592 1020Q435
+1020 340 917T229 618H901Q901 807 819 913T592 1020ZM587 1389Q587 1435 602 1455T650 1475Q714 1475 714 1389Q714 1303 650 1303Q587 1303 587 1389ZM968 1389Q968 1435 983 1455T1031 1475Q1095 1475 1095 1389Q1095 1303 1031 1303Q968 1303 968 1389Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="463" d="M281 0H182V1087H281V0ZM349 1241H280Q184 1320 92 1412T-34 1552V1569H108Q134 1521 206 1427T349 1257V1241Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="463" d="M281 0H182V1087H281V0ZM107 1257Q180 1336 251 1428T349 1569H490V1552Q454 1500 368 1414T177 1241H107V1257Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="463" d="M281 0H182V1087H281V0ZM-58 1257Q4 1324 73 1413T184 1569H282Q350 1449 524 1257V1241H454Q332 1342 233 1448Q125 1334 12 1241H-58V1257Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="463" d="M281 0H182V1087H281V0ZM-21 1389Q-21 1435 -6 1455T42 1475Q106 1475 106 1389Q106 1303 42 1303Q-21 1303 -21 1389ZM360 1389Q360 1435 375 1455T423 1475Q487 1475 487 1389Q487 1303
+423 1303Q360 1303 360 1389Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1174" d="M1055 559Q1055 283 931 132T582 -20Q368 -20 243 110T117 471Q117 699 243 828T586 958Q694 958 773 925T922 829L926 831Q862 1101 657 1290L387 1133L338 1210L582 1356Q496 1418 383 1475L428
+1556Q575 1487 676 1411L901 1548L950 1464L748 1343Q902 1192 978 990T1055 559ZM950 557Q950 703 853 785T586 868Q401 868 311 768T221 463Q221 277 315 174T584 70Q763 70 856 193T950 557Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1208" d="M940 0V705Q940 869 871 943T657 1018Q462 1018 372 920T281 600V0H182V1087H266L285 938H291Q397 1108 668 1108Q1038 1108 1038 711V0H940ZM1035 1243Q999 1243 960 1261T859 1333Q827 1359
+797 1379T734 1399Q689 1399 659 1365T611 1243H538Q548 1354 601 1417T738 1481Q786 1481 826 1456T908 1397Q942 1369 974 1347T1035 1325Q1081 1325 1112 1361T1160 1481H1236Q1220 1365 1167 1304T1035 1243Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977
+770 878 894T598 1018Q418 1018 321 895T223 545ZM974 1241H905Q809 1320 717 1412T591 1552V1569H733Q759 1521 831 1427T974 1257V1241Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977
+770 878 894T598 1018Q418 1018 321 895T223 545ZM499 1257Q572 1336 643 1428T741 1569H882V1552Q846 1500 760 1414T569 1241H499V1257Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977
+770 878 894T598 1018Q418 1018 321 895T223 545ZM309 1257Q371 1324 440 1413T551 1569H649Q717 1449 891 1257V1241H821Q699 1342 600 1448Q492 1334 379 1241H309V1257Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977
+770 878 894T598 1018Q418 1018 321 895T223 545ZM1017 1243Q981 1243 942 1261T841 1333Q809 1359 779 1379T716 1399Q671 1399 641 1365T593 1243H520Q530 1354 583 1417T720 1481Q768 1481 808 1456T890 1397Q924 1369 956 1347T1017 1325Q1063 1325 1094 1361T1142
+1481H1218Q1202 1365 1149 1304T1017 1243Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q453 -20 344 49T177 247T119 545Q119 811 248 959T602 1108Q826 1108 953 958T1081 545ZM223 545Q223 321 321 196T600 70Q780 70 878 195T977 545Q977
+770 878 894T598 1018Q418 1018 321 895T223 545ZM346 1389Q346 1435 361 1455T409 1475Q473 1475 473 1389Q473 1303 409 1303Q346 1303 346 1389ZM727 1389Q727 1435 742 1455T790 1475Q854 1475 854 1389Q854 1303 790 1303Q727 1303 727 1389Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1169" d="M111 682V764H1059V682H111ZM504 1075Q504 1174 584 1174Q666 1174 666 1075Q666 1023 643 1000T584 977Q550 977 527 1000T504 1075ZM504 371Q504 469 584 469Q666 469 666 371Q666 318 643
+295T584 272Q550 272 527 295T504 371Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1200" d="M1081 545Q1081 279 952 130T596 -20Q423 -20 305 78L219 -35L147 23L240 143Q119 296 119 545Q119 811 248 959T602 1108Q781 1108 903 1004L999 1128L1073 1073L969 936Q1081 789 1081 545ZM223
+545Q223 345 301 223L844 928Q746 1018 598 1018Q418 1018 321 895T223 545ZM977 545Q977 735 905 854L362 152Q456 70 600 70Q780 70 878 195T977 545Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1208" d="M268 1087V383Q268 219 337 145T551 70Q745 70 836 168T928 487V1087H1026V0H942L924 150H918Q812 -20 541 -20Q170 -20 170 377V1087H268ZM943 1241H874Q778 1320 686 1412T560 1552V1569H702Q728
+1521 800 1427T943 1257V1241Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1208" d="M268 1087V383Q268 219 337 145T551 70Q745 70 836 168T928 487V1087H1026V0H942L924 150H918Q812 -20 541 -20Q170 -20 170 377V1087H268ZM495 1257Q568 1336 639 1428T737 1569H878V1552Q842
+1500 756 1414T565 1241H495V1257Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1208" d="M268 1087V383Q268 219 337 145T551 70Q745 70 836 168T928 487V1087H1026V0H942L924 150H918Q812 -20 541 -20Q170 -20 170 377V1087H268ZM313 1257Q375 1324 444 1413T555 1569H653Q721
+1449 895 1257V1241H825Q703 1342 604 1448Q496 1334 383 1241H313V1257Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1208" d="M268 1087V383Q268 219 337 145T551 70Q745 70 836 168T928 487V1087H1026V0H942L924 150H918Q812 -20 541 -20Q170 -20 170 377V1087H268ZM350 1389Q350 1435 365 1455T413 1475Q477 1475
+477 1389Q477 1303 413 1303Q350 1303 350 1389ZM731 1389Q731 1435 746 1455T794 1475Q858 1475 858 1389Q858 1303 794 1303Q731 1303 731 1389Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="940" d="M0 1087H102L332 477Q437 196 465 98H471Q513 227 608 483L838 1087H940L453 -176Q394 -330 354 -384T261 -465T131 -492Q74 -492 4 -471V-385Q62 -401 129 -401Q180 -401 219 -377T289 -303T362
+-143T416 0L0 1087ZM617 1257Q690 1336 761 1428T859 1569H1000V1552Q964 1500 878 1414T687 1241H617V1257Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1219" d="M281 918Q395 1108 649 1108Q869 1108 984 964T1100 543Q1100 275 979 128T647 -20Q396 -20 281 168H274L277 84Q281 10 281 -78V-492H182V1556H281V1165L274 918H281ZM645 68Q812 68 903 192T995
+539Q995 1018 647 1018Q454 1018 368 913T281 559V541Q281 286 366 177T645 68Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="940" d="M0 1087H102L332 477Q437 196 465 98H471Q513 227 608 483L838 1087H940L453 -176Q394 -330 354 -384T261 -465T131 -492Q74 -492 4 -471V-385Q62 -401 129 -401Q180 -401 219 -377T289 -303T362
+-143T416 0L0 1087ZM470 1389Q470 1435 485 1455T533 1475Q597 1475 597 1389Q597 1303 533 1303Q470 1303 470 1389ZM851 1389Q851 1435 866 1455T914 1475Q978 1475 978 1389Q978 1303 914 1303Q851 1303 851 1389Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1024" d="M82 512V594H942V512H82Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="2048" d="M82 512V594H1966V512H82Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="297" d="M41 961L29 981Q61 1093 110 1232T203 1462H268Q238 1361 204 1205T158 961H41Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="297" d="M256 1462L268 1442Q193 1177 94 961H29Q58 1057 90 1202T139 1462H256Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="451" d="M295 238L307 218Q232 -47 133 -263H68Q97 -167 129 -22T178 238H295Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="614" d="M358 961L346 981Q380 1101 429 1236T520 1462H586Q556 1364 523 1214T475 961H358ZM41 961L29 981Q61 1093 110 1232T203 1462H268Q238 1361 204 1205T158 961H41Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="614" d="M256 1462L268 1442Q193 1177 94 961H29Q58 1057 90 1202T139 1462H256ZM573 1462L586 1442Q550 1314 501 1181T412 961H346Q376 1059 409 1209T457 1462H573Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="768" d="M295 238L307 218Q232 -47 133 -263H68Q97 -167 129 -22T178 238H295ZM612 238L625 218Q589 90 540 -43T451 -263H385Q415 -165 448 -15T496 238H612Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="770" d="M231 748Q231 837 271 882T385 928Q458 928 498 881T539 748Q539 663 498 615T385 567Q313 567 272 614T231 748Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="524" d="M82 543L391 936L453 893L199 530L453 168L391 125L82 516V543Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="524" d="M442 518L133 125L72 168L326 530L72 893L133 936L442 545V518Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.ttf b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.ttf
new file mode 100644
index 0000000..0d38189
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.ttf differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.woff b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.woff
new file mode 100644
index 0000000..fb34cf3
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.woff differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.woff2 b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.woff2
new file mode 100644
index 0000000..9a71d1c
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Light-webfont.woff2 differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.eot b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.eot
new file mode 100644
index 0000000..8d4b7d9
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.eot differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.svg
new file mode 100644
index 0000000..0ec5da5
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.svg
@@ -0,0 +1,19030 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1206" ><font-face
+    font-family="Open Sans"
+    units-per-em="2048"
+    panose-1="2 11 6 6 3 5 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="547" d="M326 403H221L170 1462H377L326 403ZM152 106Q152 242 272 242Q330 242 361 207T393 106Q393 42 361 7T272 -29Q220 -29 186 2T152 106Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="821" d="M319 1462L279 934H174L133 1462H319ZM688 1462L647 934H543L502 1462H688Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M981 899L915 559H1198V430H891L807 0H670L754 430H451L369 0H233L313 430H51V559H338L406 899H129V1026H428L510 1462H649L567 1026H872L956 1462H1090L1006 1026H1270V899H981ZM475 559H778L844
+899H541L475 559Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1171" d="M1036 449Q1036 313 934 225T649 113V-119H520V104Q408 104 303 121T131 170V326Q214 289 322 266T520 242V682Q315 747 233 833T150 1055Q150 1186 251 1270T520 1372V1554H649V1374Q833 1369 1004
+1300L952 1169Q803 1228 649 1239V805Q806 755 884 708T999 599T1036 449ZM866 436Q866 508 822 552T649 641V252Q866 282 866 436ZM319 1057Q319 981 364 935T520 848V1235Q421 1219 370 1173T319 1057Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1686" d="M242 1026Q242 856 279 771T399 686Q563 686 563 1026Q563 1364 399 1364Q316 1364 279 1280T242 1026ZM700 1026Q700 798 624 682T399 565Q259 565 182 684T104 1026Q104 1253 178 1368T399 1483Q544
+1483 622 1364T700 1026ZM1122 440Q1122 269 1159 185T1280 100Q1364 100 1404 183T1444 440Q1444 611 1404 693T1280 776Q1196 776 1159 694T1122 440ZM1581 440Q1581 213 1505 97T1280 -20Q1138 -20 1062 99T985 440Q985 667 1059 782T1280 897Q1422 897 1501
+780T1581 440ZM1323 1462L512 0H365L1176 1462H1323Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1495" d="M414 1171Q414 1102 450 1040T573 889Q702 964 752 1027T803 1174Q803 1251 752 1299T614 1348Q525 1348 470 1300T414 1171ZM569 129Q810 129 969 283L532 707Q421 639 375 595T307 499T285
+383Q285 266 362 198T569 129ZM113 379Q113 509 182 609T432 811Q347 906 317 955T268 1057T250 1167Q250 1317 348 1401T621 1485Q783 1485 876 1402T969 1169Q969 1062 901 972T676 788L1083 397Q1139 459 1172 542T1229 725H1397Q1329 439 1192 291L1491 0H1262L1077
+178Q959 72 837 26T565 -20Q350 -20 232 86T113 379Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="453" d="M319 1462L279 934H174L133 1462H319Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="606" d="M82 561Q82 826 159 1057T383 1462H545Q401 1269 329 1038T256 563Q256 323 330 94T543 -324H383Q236 -154 159 73T82 561Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="606" d="M524 561Q524 298 447 71T223 -324H63Q202 -136 276 93T350 563Q350 807 278 1038T61 1462H223Q370 1287 447 1056T524 561Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1130" d="M657 1556L614 1161L1012 1272L1038 1090L657 1059L905 733L733 639L557 1001L397 639L221 733L463 1059L86 1090L115 1272L506 1161L463 1556H657Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1171" d="M653 791H1065V653H653V227H514V653H104V791H514V1219H653V791Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="502" d="M350 238L365 215Q339 115 290 -17T188 -264H63Q90 -160 122 -7T168 238H350Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="659" d="M84 473V625H575V473H84Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="545" d="M152 106Q152 173 182 207T270 242Q328 242 360 208T393 106Q393 41 360 6T270 -29Q219 -29 186 2T152 106Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="752" d="M731 1462L186 0H20L565 1462H731Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1171" d="M1069 733Q1069 354 950 167T584 -20Q348 -20 225 171T102 733Q102 1115 221 1300T584 1485Q822 1485 945 1292T1069 733ZM270 733Q270 414 345 269T584 123Q750 123 824 270T899 733Q899 1048 825
+1194T584 1341Q420 1341 345 1197T270 733Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1171" d="M715 0H553V1042Q553 1172 561 1288Q540 1267 514 1244T276 1049L188 1163L575 1462H715V0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1171" d="M1061 0H100V143L485 530Q661 708 717 784T801 932T829 1087Q829 1204 758 1272T561 1341Q470 1341 389 1311T207 1202L119 1315Q321 1483 559 1483Q765 1483 882 1378T999 1094Q999 955 921 819T629
+475L309 162V154H1061V0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1171" d="M1006 1118Q1006 978 928 889T705 770V762Q881 740 966 650T1051 414Q1051 205 906 93T494 -20Q378 -20 282 -3T94 59V217Q189 170 296 146T500 121Q879 121 879 418Q879 684 461 684H317V827H463Q634
+827 734 902T834 1112Q834 1219 761 1280T561 1341Q465 1341 380 1315T186 1219L102 1331Q192 1402 309 1442T557 1483Q770 1483 888 1386T1006 1118Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1171" d="M1130 336H913V0H754V336H43V481L737 1470H913V487H1130V336ZM754 487V973Q754 1116 764 1296H756Q708 1200 666 1137L209 487H754Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1171" d="M557 893Q788 893 920 779T1053 465Q1053 238 909 109T510 -20Q263 -20 133 59V219Q203 174 307 149T512 123Q688 123 785 206T883 446Q883 752 508 752Q413 752 254 723L168 778L223 1462H950V1309H365L328
+870Q443 893 557 893Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1171" d="M117 625Q117 1056 284 1269T780 1483Q893 1483 958 1464V1321Q881 1346 782 1346Q547 1346 423 1200T287 739H299Q409 911 647 911Q844 911 957 792T1071 469Q1071 241 947 111T610 -20Q383 -20 250
+150T117 625ZM608 121Q750 121 828 210T907 469Q907 614 834 697T616 780Q526 780 451 743T332 641T287 506Q287 403 327 314T440 173T608 121Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1171" d="M285 0L891 1309H94V1462H1067V1329L469 0H285Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1171" d="M584 1483Q784 1483 901 1390T1018 1133Q1018 1025 951 936T737 774Q915 689 990 596T1065 379Q1065 197 938 89T590 -20Q356 -20 230 82T104 373Q104 624 410 764Q272 842 212 932T152 1135Q152
+1294 269 1388T584 1483ZM268 369Q268 249 351 182T586 115Q735 115 818 185T901 377Q901 474 823 549T551 696Q402 632 335 555T268 369ZM582 1348Q457 1348 386 1288T315 1128Q315 1036 374 970T592 838Q735 898 794 967T854 1128Q854 1229 782 1288T582 1348Z"
+/>
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1171" d="M1061 838Q1061 -20 397 -20Q281 -20 213 0V143Q293 117 395 117Q635 117 757 265T891 721H879Q824 638 733 595T528 551Q334 551 220 667T106 991Q106 1219 233 1351T569 1483Q718 1483 829 1407T1001
+1184T1061 838ZM569 1341Q426 1341 348 1249T270 993Q270 849 342 767T561 684Q652 684 728 721T849 822T893 956Q893 1061 852 1150T738 1290T569 1341Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="545" d="M152 106Q152 173 182 207T270 242Q328 242 360 208T393 106Q393 41 360 6T270 -29Q219 -29 186 2T152 106ZM152 989Q152 1124 270 1124Q393 1124 393 989Q393 924 360 889T270 854Q219 854 186 885T152 989Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="545" d="M350 238L365 215Q339 115 290 -17T188 -264H63Q90 -160 122 -7T168 238H350ZM147 989Q147 1124 266 1124Q389 1124 389 989Q389 924 356 889T266 854Q208 854 178 889T147 989Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1171" d="M1065 242L104 664V762L1065 1241V1092L283 721L1065 393V242Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1171" d="M119 858V995H1049V858H119ZM119 449V586H1049V449H119Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1171" d="M104 393L887 719L104 1092V1241L1065 762V664L104 242V393Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="879" d="M289 403V457Q289 574 325 649T459 809Q595 924 630 982T666 1122Q666 1224 601 1279T412 1335Q333 1335 258 1317T86 1249L27 1384Q216 1483 422 1483Q613 1483 719 1389T825 1124Q825 1051 806
+996T748 891T584 731Q483 645 451 588T418 436V403H289ZM240 106Q240 242 360 242Q418 242 449 207T481 106Q481 42 449 7T360 -29Q308 -29 274 2T240 106Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1841" d="M1720 729Q1720 587 1676 469T1552 286T1368 221Q1282 221 1223 273T1153 406H1145Q1105 319 1031 270T854 221Q704 221 620 323T535 602Q535 806 653 933T963 1061Q1031 1061 1117 1049T1272 1014L1247
+544V522Q1247 344 1380 344Q1471 344 1528 451T1585 731Q1585 912 1511 1048T1301 1257T987 1331Q764 1331 599 1239T347 975T260 578Q260 273 421 109T885 -55Q1095 -55 1321 31V-102Q1129 -186 885 -186Q522 -186 322 13T121 571Q121 831 228 1034T533 1348T987
+1460Q1202 1460 1369 1370T1628 1113T1720 729ZM686 598Q686 344 881 344Q1088 344 1106 657L1120 918Q1048 938 963 938Q833 938 760 848T686 598Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1327" d="M201 1462H614Q905 1462 1035 1375T1165 1100Q1165 970 1093 886T881 776V766Q1214 709 1214 416Q1214 220 1082 110T711 0H201V1462ZM371 836H651Q831 836 910 892T989 1083Q989 1206 901 1260T621 1315H371V836ZM371
+692V145H676Q853 145 942 213T1032 428Q1032 564 941 628T662 692H371Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1292" d="M827 1331Q586 1331 447 1171T307 731Q307 444 441 288T825 131Q978 131 1174 186V37Q1022 -20 799 -20Q476 -20 301 176T125 733Q125 959 209 1129T453 1391T829 1483Q1059 1483 1231 1399L1159 1253Q993
+1331 827 1331Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1493" d="M1368 745Q1368 383 1172 192T606 0H201V1462H649Q990 1462 1179 1273T1368 745ZM1188 739Q1188 1025 1045 1170T618 1315H371V147H578Q882 147 1035 296T1188 739Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1057" d="M371 0H201V1462H1016V1311H371V776H977V625H371V0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1491" d="M844 766H1341V55Q1225 18 1105 -1T827 -20Q495 -20 310 177T125 731Q125 959 216 1130T480 1392T883 1483Q1117 1483 1319 1397L1253 1247Q1055 1331 872 1331Q605 1331 455 1172T305 731Q305 435 449
+282T874 129Q1026 129 1171 164V614H844V766Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1511" d="M1311 0H1141V688H371V0H201V1462H371V840H1141V1462H1311V0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="571" d="M201 0V1462H371V0H201Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="547" d="M-12 -385Q-106 -385 -160 -358V-213Q-89 -233 -12 -233Q87 -233 138 -173T190 0V1462H360V14Q360 -176 264 -280T-12 -385Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1257" d="M1257 0H1057L524 709L371 573V0H201V1462H371V737L1034 1462H1235L647 827L1257 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1063" d="M201 0V1462H371V154H1016V0H201Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1849" d="M848 0L352 1296H344Q358 1142 358 930V0H201V1462H457L920 256H928L1395 1462H1649V0H1479V942Q1479 1104 1493 1294H1485L985 0H848Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1544" d="M1343 0H1149L350 1227H342Q358 1011 358 831V0H201V1462H393L1190 240H1198Q1196 267 1189 413T1184 623V1462H1343V0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290 1028
+1167 1180T801 1333Q558 1333 432 1180T305 733Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1233" d="M1128 1036Q1128 814 977 695T543 575H371V0H201V1462H580Q1128 1462 1128 1036ZM371 721H524Q750 721 851 794T952 1028Q952 1173 857 1244T561 1315H371V721Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1595" d="M1470 733Q1470 452 1357 266T1038 14L1386 -348H1139L854 -18L799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042
+129 1166 282T1290 733Q1290 1028 1167 1180T801 1333Q558 1333 432 1180T305 733Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1266" d="M371 608V0H201V1462H602Q871 1462 999 1359T1128 1049Q1128 759 834 657L1231 0H1030L676 608H371ZM371 754H604Q784 754 868 825T952 1040Q952 1185 867 1249T592 1313H371V754Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1124" d="M1026 389Q1026 196 886 88T506 -20Q246 -20 106 47V211Q196 173 302 151T512 129Q682 129 768 193T854 373Q854 449 824 497T722 587T504 680Q300 753 213 853T125 1114Q125 1283 252 1383T588 1483Q806
+1483 989 1403L936 1255Q755 1331 584 1331Q449 1331 373 1273T297 1112Q297 1036 325 988T419 899T623 809Q853 727 939 633T1026 389Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1133" d="M651 0H481V1311H18V1462H1114V1311H651V0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1219" d="M1036 1462H1219L692 0H524L0 1462H180L516 516Q574 353 608 199Q644 361 702 522L1036 1462Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1896" d="M1477 0H1309L1014 979Q993 1044 967 1143T940 1262Q918 1130 870 973L584 0H416L27 1462H207L438 559Q486 369 508 215Q535 398 588 573L850 1462H1030L1305 565Q1353 410 1386 215Q1405 357 1458 561L1688
+1462H1868L1477 0Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1182" d="M1174 0H981L588 643L188 0H8L494 764L41 1462H229L592 883L958 1462H1139L686 770L1174 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1147" d="M573 731L963 1462H1147L659 567V0H487V559L0 1462H186L573 731Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1169" d="M1087 0H82V133L858 1309H106V1462H1065V1329L289 154H1087V0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="674" d="M623 -324H166V1462H623V1321H334V-182H623V-324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="752" d="M186 1462L733 0H567L23 1462H186Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="674" d="M51 -182H340V1321H51V1462H508V-324H51V-182Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1110" d="M49 551L483 1473H582L1059 551H907L535 1296L201 551H49Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="918" d="M922 -315H-4V-184H922V-315Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1182" d="M786 1241H676Q611 1293 522 1389T393 1548V1569H596Q628 1500 685 1410T786 1266V1241Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114 878 1027T973
+748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1255" d="M686 1114Q902 1114 1021 967T1141 549Q1141 279 1021 130T686 -20Q579 -20 491 19T342 141H330L295 0H176V1556H342V1178Q342 1051 334 950H342Q458 1114 686 1114ZM662 975Q492 975 417 878T342 549Q342
+318 419 219T666 119Q819 119 894 230T969 551Q969 765 894 870T662 975Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="975" d="M614 -20Q376 -20 246 126T115 541Q115 816 247 966T625 1116Q704 1116 783 1099T907 1059L856 918Q801 940 736 954T621 969Q287 969 287 543Q287 341 368 233T610 125Q747 125 891 184V37Q781 -20 614 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1255" d="M922 147H913Q798 -20 569 -20Q354 -20 235 127T115 545Q115 816 235 966T569 1116Q792 1116 911 954H924L917 1033L913 1110V1556H1079V0H944L922 147ZM590 119Q760 119 836 211T913 510V545Q913 778
+836 877T588 977Q442 977 365 864T287 543Q287 333 364 226T590 119Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977 384 891T291
+653H864Q864 810 794 893T594 977Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="694" d="M670 967H391V0H225V967H29V1042L225 1102V1163Q225 1567 578 1567Q665 1567 782 1532L739 1399Q643 1430 575 1430Q481 1430 436 1368T391 1167V1096H670V967Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1122" d="M1073 1096V991L870 967Q898 932 920 876T942 748Q942 587 832 491T530 395Q481 395 438 403Q332 347 332 262Q332 217 369 196T496 174H690Q868 174 963 99T1059 -119Q1059 -301 913 -396T487 -492Q272
+-492 156 -412T39 -186Q39 -86 103 -13T283 86Q241 105 213 145T184 238Q184 298 216 343T317 430Q232 465 179 549T125 741Q125 921 233 1018T539 1116Q625 1116 694 1096H1073ZM199 -184Q199 -273 274 -319T489 -365Q698 -365 798 -303T899 -133Q899 -44 844
+-10T637 25H438Q325 25 262 -29T199 -184ZM289 745Q289 630 354 571T535 512Q778 512 778 748Q778 995 532 995Q415 995 352 932T289 745Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1257" d="M926 0V709Q926 843 865 909T674 975Q501 975 422 881T342 573V0H176V1556H342V1085Q342 1000 334 944H344Q393 1023 483 1068T690 1114Q891 1114 991 1019T1092 715V0H926Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM162 1393Q162 1450 190 1476T260 1503Q300 1503 329 1476T358 1393Q358 1337 329 1310T260 1282Q218 1282 190 1309T162 1393Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="518" d="M43 -492Q-52 -492 -111 -467V-332Q-42 -352 25 -352Q103 -352 139 -310T176 -180V1096H342V-168Q342 -492 43 -492ZM162 1393Q162 1450 190 1476T260 1503Q300 1503 329 1476T358 1393Q358 1337 329 1310T260
+1282Q218 1282 190 1309T162 1393Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1075" d="M340 561Q383 622 471 721L825 1096H1022L578 629L1053 0H852L465 518L340 410V0H176V1556H340V731Q340 676 332 561H340Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="518" d="M342 0H176V1556H342V0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1905" d="M1573 0V713Q1573 844 1517 909T1343 975Q1188 975 1114 886T1040 612V0H874V713Q874 844 818 909T643 975Q487 975 415 882T342 575V0H176V1096H311L338 946H346Q393 1026 478 1071T670 1116Q927 1116
+1006 930H1014Q1063 1016 1156 1066T1368 1116Q1554 1116 1646 1021T1739 715V0H1573Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1257" d="M926 0V709Q926 843 865 909T674 975Q502 975 422 882T342 575V0H176V1096H311L338 946H346Q397 1027 489 1071T694 1116Q892 1116 992 1021T1092 715V0H926Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950 758 866
+866T616 975Q453 975 370 868T287 549Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1255" d="M686 -20Q579 -20 491 19T342 141H330Q342 45 342 -41V-492H176V1096H311L334 946H342Q406 1036 491 1076T686 1116Q904 1116 1022 967T1141 549Q1141 279 1021 130T686 -20ZM662 975Q494 975 419 882T342
+586V549Q342 318 419 219T666 119Q808 119 888 234T969 551Q969 756 889 865T662 975Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1255" d="M590 119Q756 119 832 208T913 508V545Q913 775 835 876T588 977Q442 977 365 864T287 543Q287 336 363 228T590 119ZM565 -20Q353 -20 234 129T115 545Q115 814 235 965T569 1116Q794 1116 915 946H924L948
+1096H1079V-492H913V-23Q913 77 924 147H911Q796 -20 565 -20Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="836" d="M676 1116Q749 1116 807 1104L784 950Q716 965 664 965Q531 965 437 857T342 588V0H176V1096H313L332 893H340Q401 1000 487 1058T676 1116Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="977" d="M883 299Q883 146 769 63T449 -20Q231 -20 109 49V203Q188 163 278 140T453 117Q583 117 653 158T723 285Q723 349 668 394T451 502Q298 559 234 601T138 698T106 827Q106 961 215 1038T514 1116Q691 1116
+860 1044L801 909Q636 977 502 977Q384 977 324 940T264 838Q264 794 286 763T359 704T551 623Q746 552 814 480T883 299Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="723" d="M530 117Q574 117 615 123T680 137V10Q653 -3 601 -11T506 -20Q188 -20 188 315V967H31V1047L188 1116L258 1350H354V1096H672V967H354V322Q354 223 401 170T530 117Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="1026" d="M416 0L0 1096H178L414 446Q494 218 508 150H516Q527 203 585 369T848 1096H1026L610 0H416Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1593" d="M1071 0L870 643Q851 702 799 911H791Q751 736 721 641L514 0H322L23 1096H197Q303 683 358 467T422 176H430Q441 233 465 323T508 467L709 1096H889L1085 467Q1141 295 1161 178H1169Q1173 214 1190
+289T1399 1096H1571L1268 0H1071Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1073" d="M440 561L59 1096H248L537 676L825 1096H1012L631 561L1032 0H844L537 444L227 0H39L440 561Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1032" d="M2 1096H180L420 471Q499 257 518 162H526Q539 213 580 336T852 1096H1030L559 -152Q489 -337 396 -414T166 -492Q90 -492 16 -475V-342Q71 -354 139 -354Q310 -354 383 -162L444 -6L2 1096Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="958" d="M877 0H82V113L680 967H119V1096H862V967L272 129H877V0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="776" d="M475 12Q475 -90 533 -136T705 -184V-324Q515 -322 411 -237T307 2V305Q307 409 244 453T61 498V639Q191 641 249 687T307 829V1135Q307 1290 415 1376T705 1462V1323Q475 1317 475 1124V829Q475
+614 252 575V563Q475 524 475 309V12Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M494 1556H635V-496H494V1556Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="776" d="M522 575Q299 614 299 829V1124Q299 1317 72 1323V1462Q256 1462 361 1375T467 1135V829Q467 732 526 687T715 639V498Q593 498 530 454T467 305V2Q467 -151 365 -236T72 -324V-184Q183 -182
+241 -136T299 12V309Q299 423 354 483T522 563V575Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1171" d="M338 713Q285 713 222 680T104 592V743Q204 852 348 852Q416 852 472 838T618 786Q684 758 733 745T829 731Q883 731 947 763T1065 852V702Q963 592 821 592Q749 592 686 608T551 657Q476 689
+431 701T338 713Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="547" d="M219 684H324L375 -373H168L219 684ZM393 983Q393 848 272 848Q212 848 182 883T152 983Q152 1046 183 1082T272 1118Q323 1118 358 1086T393 983Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1171" d="M971 240Q866 186 719 180V-20H586V186Q383 218 287 354T190 741Q190 1249 586 1311V1483H721V1319Q796 1316 867 1300T987 1260L938 1120Q805 1171 696 1171Q524 1171 443 1066T362 743Q362
+531 441 430T688 328Q829 328 971 387V240Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1171" d="M682 1481Q872 1481 1042 1397L981 1264Q827 1341 684 1341Q561 1341 499 1279T436 1077V782H858V655H436V434Q436 334 404 266T297 154H1092V0H63V141Q268 188 268 432V655H70V782H268V1098Q268
+1276 380 1378T682 1481Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1171" d="M184 723Q184 845 258 952L123 1092L217 1184L352 1051Q456 1124 586 1124Q713 1124 815 1051L952 1184L1047 1092L913 954Q987 841 987 723Q987 592 913 489L1044 354L952 262L815 395Q713
+324 586 324Q452 324 352 397L217 264L125 356L258 492Q184 599 184 723ZM313 723Q313 611 391 531T586 451Q702 451 781 530T860 723Q860 837 780 918T586 999Q470 999 392 917T313 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1171" d="M584 735L963 1462H1137L721 692H983V565H666V395H983V268H666V0H502V268H186V395H502V565H186V692H442L31 1462H209L584 735Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M494 1556H635V780H494V1556ZM494 281H635V-496H494V281Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="1057" d="M139 809Q139 895 182 963T303 1069Q229 1109 187 1164T145 1305Q145 1426 248 1495T549 1565Q643 1565 722 1551T899 1497L846 1366Q748 1405 681 1418T537 1432Q421 1432 363 1403T305 1309Q305
+1249 366 1207T582 1110Q768 1042 843 967T918 784Q918 694 877 624T762 512Q915 431 915 285Q915 145 798 69T469 -8Q251 -8 123 57V205Q201 168 298 146T477 123Q611 123 681 161T752 270Q752 316 728 345T650 403T481 475Q339 527 272 572T172 674T139 809ZM285
+829Q285 752 351 700T584 586L633 567Q770 647 770 758Q770 841 697 897T438 1010Q370 991 328 941T285 829Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1182" d="M309 1393Q309 1445 335 1468T399 1491Q437 1491 464 1468T492 1393Q492 1343 465 1319T399 1294Q362 1294 336 1318T309 1393ZM690 1393Q690 1445 716 1468T780 1491Q817 1491 844 1468T872
+1393Q872 1343 845 1319T780 1294Q743 1294 717 1318T690 1393Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M893 1059Q768 1059 701 972T633 731Q633 563 696 482T891 401Q977 401 1102 446V322Q1054 302 1004 288T883 274Q689 274 585 394T481 731Q481 940 591 1063T893 1186Q1021 1186 1139 1126L1081
+1008Q973 1059 893 1059ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM205 731Q205 558 292 408T529 171T852 84Q1026 84 1175 171T1411 406T1499
+731Q1499 905 1412 1054T1177 1290T852 1378Q678 1378 529 1291T293 1056T205 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="725" d="M532 801L508 885Q416 788 276 788Q181 788 126 837T70 989Q70 1091 147 1143T389 1202L506 1206V1245Q506 1378 358 1378Q258 1378 154 1327L111 1423Q225 1479 358 1479Q488 1479 556
+1427T625 1253V801H532ZM193 989Q193 889 305 889Q506 889 506 1069V1118L408 1114Q296 1110 245 1082T193 989Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1018" d="M82 551L424 958L543 889L254 539L543 188L424 117L82 524V551ZM477 551L821 958L938 889L651 539L938 188L821 117L477 524V551Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1171" d="M1065 791V264H928V653H104V791H1065Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="659" d="M84 473V625H575V473H84Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M723 762H831Q911 762 959 803T1008 909Q1008 984 965 1016T829 1049H723V762ZM1157 913Q1157 833 1115 772T995 680L1233 285H1065L858 639H723V285H575V1176H836Q1002 1176 1079 1111T1157
+913ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM205 731Q205 558 292 408T529 171T852 84Q1026 84 1175 171T1411 406T1499 731Q1499 905 1412
+1054T1177 1290T852 1378Q678 1378 529 1291T293 1056T205 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6V1683H1030V1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M127 1171Q127 1301 217 1392T438 1483Q568 1483 659 1393T750 1171Q750 1087 709 1016T595 902T438 860Q308 860 218 950T127 1171ZM242 1171Q242 1089 300 1032T440 975Q520 975 577 1031T635
+1171Q635 1255 579 1311T440 1368Q357 1368 300 1311T242 1171Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1171" d="M653 791H1065V653H653V227H514V653H104V791H514V1219H653V791ZM104 1V139H1065V1H104Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="711" d="M653 586H49V690L285 920Q374 1006 415 1054T472 1141T489 1233Q489 1301 449 1335T346 1370Q294 1370 245 1351T127 1282L61 1370Q192 1481 344 1481Q476 1481 549 1416T623 1239Q623
+1159 579 1084T387 870L213 705H653V586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="711" d="M627 1255Q627 1175 586 1124T477 1049Q653 1002 653 840Q653 712 561 641T301 569Q149 569 33 625V748Q180 680 303 680Q514 680 514 842Q514 987 283 987H166V1094H285Q388 1094 437
+1133T487 1241Q487 1302 447 1336T340 1370Q274 1370 218 1349T106 1292L37 1382Q100 1427 170 1454T334 1481Q470 1481 548 1422T627 1255Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1182" d="M393 1266Q441 1328 496 1416T584 1569H786V1548Q742 1483 655 1388T504 1241H393V1266Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1268" d="M342 381Q342 119 596 119Q767 119 846 213T926 520V1096H1092V0H956L930 147H920Q809 -20 580 -20Q430 -20 342 72H332Q342 -12 342 -172V-492H176V1096H342V381Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1120 -260H1006V1452H793V-260H678V559Q616 541 532 541Q316 541 215 666T113 1042Q113 1302 222 1429T563 1556H1120V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="545" d="M152 723Q152 789 183 823T270 858Q328 858 360 824T393 723Q393 658 360 623T270 588Q219 588 186 619T152 723Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="465" d="M436 -289Q436 -386 360 -439T133 -492Q82 -492 37 -483V-377Q82 -385 141 -385Q220 -385 260 -365T301 -291Q301 -248 262 -222T113 -178L201 0H311L256 -115Q436 -154 436 -289Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="711" d="M338 1462H481V586H348V1165Q348 1256 354 1346Q332 1324 305 1302T143 1184L76 1280L338 1462Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="768" d="M702 1135Q702 971 617 880T381 788Q235 788 151 881T66 1135Q66 1298 150 1388T385 1479Q537 1479 619 1388T702 1135ZM188 1135Q188 1013 233 952T383 891Q488 891 534 952T580 1135Q580
+1258 534 1317T383 1376Q280 1376 234 1317T188 1135Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1018" d="M936 524L592 117L475 188L762 539L475 889L592 958L936 551V524ZM541 524L197 117L80 188L367 539L80 889L197 958L541 551V524Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1597" d="M1298 1462L395 0H252L1155 1462H1298ZM593 1462H736V586H603V1165Q603 1256 609 1346Q587 1324 560 1302T398 1184L331 1280L593 1462ZM1489 203H1364V1H1219V203H817V304L1225 883H1364V320H1489V203ZM1219
+320V515Q1219 649 1225 724Q1220 712 1208 693T1181 651T1151 606T1125 566L957 320H1219Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1597" d="M1230 1462L327 0H184L1087 1462H1230ZM564 1462H707V586H574V1165Q574 1256 580 1346Q558 1324 531 1302T369 1184L302 1280L564 1462ZM1499 1H895V105L1131 335Q1220 421 1261 469T1318
+556T1335 648Q1335 716 1295 750T1192 785Q1140 785 1091 766T973 697L907 785Q1038 896 1190 896Q1322 896 1395 831T1469 654Q1469 574 1425 499T1233 285L1059 120H1499V1Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1597" d="M876 1255Q876 1175 835 1124T726 1049Q902 1002 902 840Q902 712 810 641T550 569Q398 569 282 625V748Q429 680 552 680Q763 680 763 842Q763 987 532 987H415V1094H534Q637 1094
+686 1133T736 1241Q736 1302 696 1336T589 1370Q523 1370 467 1349T355 1292L286 1382Q349 1427 419 1454T583 1481Q719 1481 797 1422T876 1255ZM1390 1462L487 0H344L1247 1462H1390ZM1569 203H1444V1H1299V203H897V304L1305 883H1444V320H1569V203ZM1299 320V515Q1299
+649 1305 724Q1300 712 1288 693T1261 651T1231 606T1205 566L1037 320H1299Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="879" d="M590 684V633Q590 511 553 437T418 279Q297 173 267 136T224 60T211 -35Q211 -135 277 -191T465 -248Q545 -248 620 -229T793 -162L852 -297Q655 -393 457 -393Q267 -393 159 -300T51
+-37Q51 33 68 85T118 182T194 268T293 356Q394 444 426 502T459 653V684H590ZM639 983Q639 848 518 848Q459 848 428 882T397 983Q397 1047 430 1082T518 1118Q569 1118 604 1086T639 983Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM724 1579H614Q549 1631 460 1727T331 1886V1907H534Q566 1838
+623 1748T724 1604V1579Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM526 1604Q574 1666 629 1754T717 1907H919V1886Q875 1821 788
+1726T637 1579H526V1604Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM303 1602Q430 1738 481 1802T555 1907H721Q743 1865 797
+1799T977 1602V1579H858Q770 1634 637 1765Q501 1631 418 1579H303V1602Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM792 1581Q749 1581 708 1599T628 1640T552 1681T481 1700Q431
+1700 406 1670T366 1579H268Q281 1700 338 1768T487 1837Q533 1837 576 1819T658 1778T733 1737T801 1718Q850 1718 874 1747T913 1839H1012Q999 1718 943 1650T792 1581Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM364 1731Q364 1783 390 1806T454 1829Q492 1829 519 1806T547
+1731Q547 1681 520 1657T454 1632Q417 1632 391 1656T364 1731ZM745 1731Q745 1783 771 1806T835 1829Q872 1829 899 1806T927 1731Q927 1681 900 1657T835 1632Q798 1632 772 1656T745 1731Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1296" d="M1120 0L938 465H352L172 0H0L578 1468H721L1296 0H1120ZM885 618L715 1071Q682 1157 647 1282Q625 1186 584 1071L412 618H885ZM870 1587Q870 1489 809 1430T645 1370Q544 1370 484 1428T424
+1585Q424 1683 484 1740T645 1798Q746 1798 808 1739T870 1587ZM762 1585Q762 1641 729 1671T645 1702Q594 1702 561 1672T528 1585Q528 1529 558 1499T645 1468Q697 1468 729 1498T762 1585Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1788" d="M1665 0H915V465H401L174 0H-2L696 1462H1665V1311H1085V840H1626V690H1085V152H1665V0ZM469 618H915V1311H797L469 618Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1292" d="M827 1331Q586 1331 447 1171T307 731Q307 444 441 288T825 131Q978 131 1174 186V37Q1022 -20 799 -20Q476 -20 301 176T125 733Q125 959 209 1129T453 1391T829 1483Q1059 1483 1231 1399L1159
+1253Q993 1331 827 1331ZM950 -289Q950 -386 874 -439T647 -492Q596 -492 551 -483V-377Q596 -385 655 -385Q734 -385 774 -365T815 -291Q815 -248 776 -222T627 -178L715 0H825L770 -115Q950 -154 950 -289Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM713 1579H603Q538 1631 449 1727T320 1886V1907H523Q555 1838 612 1748T713 1604V1579Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM456 1604Q504 1666 559 1754T647 1907H849V1886Q805 1821 718 1726T567 1579H456V1604Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM263 1602Q390 1738 441 1802T515 1907H681Q703 1865 757 1799T937 1602V1579H818Q730 1634 597 1765Q461 1631 378 1579H263V1602Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1139" d="M1016 0H201V1462H1016V1311H371V840H977V690H371V152H1016V0ZM327 1731Q327 1783 353 1806T417 1829Q455 1829 482 1806T510 1731Q510 1681 483 1657T417 1632Q380 1632 354 1656T327 1731ZM708
+1731Q708 1783 734 1806T798 1829Q835 1829 862 1806T890 1731Q890 1681 863 1657T798 1632Q761 1632 735 1656T708 1731Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM398 1579H288Q223 1631 134 1727T5 1886V1907H208Q240 1838 297 1748T398 1604V1579Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM179 1604Q227 1666 282 1754T370 1907H572V1886Q528 1821 441 1726T290 1579H179V1604Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM-57 1602Q70 1738 121 1802T195 1907H361Q383 1865 437 1799T617 1602V1579H498Q410 1634 277 1765Q141 1631 58 1579H-57V1602Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="571" d="M201 0V1462H371V0H201ZM5 1731Q5 1783 31 1806T95 1829Q133 1829 160 1806T188 1731Q188 1681 161 1657T95 1632Q58 1632 32 1656T5 1731ZM386 1731Q386 1783 412 1806T476 1829Q513 1829
+540 1806T568 1731Q568 1681 541 1657T476 1632Q439 1632 413 1656T386 1731Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1479" d="M1352 745Q1352 383 1156 192T590 0H201V649H47V799H201V1462H635Q972 1462 1162 1275T1352 745ZM1171 739Q1171 1315 602 1315H371V799H750V649H371V147H561Q1171 147 1171 739Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1544" d="M1343 0H1149L350 1227H342Q358 1011 358 831V0H201V1462H393L1190 240H1198Q1196 267 1189 413T1184 623V1462H1343V0ZM935 1581Q892 1581 851 1599T771 1640T695 1681T624 1700Q574 1700
+549 1670T509 1579H411Q424 1700 481 1768T630 1837Q676 1837 719 1819T801 1778T876 1737T944 1718Q993 1718 1017 1747T1056 1839H1155Q1142 1718 1086 1650T935 1581Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290
+1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM907 1579H797Q732 1631 643 1727T514 1886V1907H717Q749 1838 806 1748T907 1604V1579Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290
+1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM659 1604Q707 1666 762 1754T850 1907H1052V1886Q1008 1821 921 1726T770 1579H659V1604Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290
+733Q1290 1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM448 1602Q575 1738 626 1802T700 1907H866Q888 1865 942 1799T1122 1602V1579H1003Q915 1634 782 1765Q646 1631 563 1579H448V1602Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290 733Q1290
+1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM942 1581Q899 1581 858 1599T778 1640T702 1681T631 1700Q581 1700 556 1670T516 1579H418Q431 1700 488 1768T637 1837Q683 1837 726 1819T808 1778T883 1737T951 1718Q1000 1718 1024 1747T1063 1839H1162Q1149
+1718 1093 1650T942 1581Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q476 -20 301 177T125 735Q125 1092 301 1288T801 1485Q1116 1485 1293 1285T1470 733ZM305 733Q305 436 431 283T799 129Q1042 129 1166 282T1290
+733Q1290 1028 1167 1180T801 1333Q558 1333 432 1180T305 733ZM522 1731Q522 1783 548 1806T612 1829Q650 1829 677 1806T705 1731Q705 1681 678 1657T612 1632Q575 1632 549 1656T522 1731ZM903 1731Q903 1783 929 1806T993 1829Q1030 1829 1057 1806T1085 1731Q1085
+1681 1058 1657T993 1632Q956 1632 930 1656T903 1731Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1171" d="M940 1176L1036 1077L684 723L1034 371L938 272L584 623L236 272L135 371L485 723L133 1075L233 1176L586 821L940 1176Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1595" d="M1470 733Q1470 382 1293 181T799 -20Q564 -20 416 80L315 -61L195 18L303 172Q125 370 125 735Q125 1092 301 1288T801 1485Q1010 1485 1167 1391L1264 1526L1384 1446L1278 1298Q1470 1096
+1470 733ZM1290 733Q1290 1005 1180 1159L508 211Q623 129 799 129Q1042 129 1166 282T1290 733ZM305 733Q305 471 406 317L1075 1260Q969 1333 801 1333Q558 1333 432 1180T305 733Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM856 1579H746Q681 1631 592 1727T463 1886V1907H666Q698
+1838 755 1748T856 1604V1579Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM600 1604Q648 1666 703 1754T791 1907H993V1886Q949
+1821 862 1726T711 1579H600V1604Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM393 1602Q520 1738 571 1802T645
+1907H811Q833 1865 887 1799T1067 1602V1579H948Q860 1634 727 1765Q591 1631 508 1579H393V1602Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1491" d="M1305 1462V516Q1305 266 1154 123T739 -20Q475 -20 331 124T186 520V1462H356V508Q356 325 456 227T750 129Q935 129 1035 227T1135 510V1462H1305ZM461 1731Q461 1783 487 1806T551 1829Q589
+1829 616 1806T644 1731Q644 1681 617 1657T551 1632Q514 1632 488 1656T461 1731ZM842 1731Q842 1783 868 1806T932 1829Q969 1829 996 1806T1024 1731Q1024 1681 997 1657T932 1632Q895 1632 869 1656T842 1731Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1147" d="M573 731L963 1462H1147L659 567V0H487V559L0 1462H186L573 731ZM442 1604Q490 1666 545 1754T633 1907H835V1886Q791 1821 704 1726T553 1579H442V1604Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1251" d="M1145 784Q1145 557 994 438T555 319H371V0H201V1462H371V1206H586Q867 1206 1006 1103T1145 784ZM371 465H539Q765 465 866 536T967 772Q967 921 872 990T575 1059H371V465Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1274" d="M1049 1266Q1049 1131 906 1016Q818 946 790 913T762 846Q762 814 775 793T824 744T938 664Q1078 569 1129 491T1180 311Q1180 151 1083 66T807 -20Q619 -20 512 49V203Q575 164 653 141T803
+117Q1018 117 1018 299Q1018 374 977 427T825 551Q698 633 650 694T602 840Q602 903 636 956T742 1062Q817 1119 849 1164T881 1262Q881 1342 813 1384T618 1427Q342 1427 342 1204V0H176V1202Q176 1380 286 1473T618 1567Q824 1567 936 1489T1049 1266Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
+878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM928 1241H818Q753 1293 664 1389T535 1548V1569H738Q770 1500 827 1410T928 1266V1241Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
+878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM436 1266Q484 1328 539 1416T627 1569H829V1548Q785 1483 698 1388T547 1241H436V1266Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784
+1114 878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM484 1264Q611 1400 662 1464T736 1569H902Q924 1527 978 1461T1158 1264V1241H1039Q951 1296 818 1427Q682 1293 599 1241H484V1264Z"
+/>
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
+878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM977 1243Q934 1243 893 1261T813 1302T737 1343T666 1362Q616 1362 591 1332T551 1241H453Q466 1362 523 1430T672 1499Q718 1499 761
+1481T843 1440T918 1399T986 1380Q1035 1380 1059 1409T1098 1501H1197Q1184 1380 1128 1312T977 1243Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114
+878 1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM535 1393Q535 1445 561 1468T625 1491Q663 1491 690 1468T718 1393Q718 1343 691 1319T625 1294Q588 1294 562 1318T535 1393ZM916 1393Q916
+1445 942 1468T1006 1491Q1043 1491 1070 1468T1098 1393Q1098 1343 1071 1319T1006 1294Q969 1294 943 1318T916 1393Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1139" d="M850 0L817 156H809Q727 53 646 17T442 -20Q279 -20 187 64T94 303Q94 635 625 651L811 657V725Q811 854 756 915T578 977Q441 977 268 893L217 1020Q298 1064 394 1089T588 1114Q784 1114 878
+1027T973 748V0H850ZM475 117Q630 117 718 202T807 440V539L641 532Q443 525 356 471T268 301Q268 211 322 164T475 117ZM1060 1458Q1060 1360 999 1301T835 1241Q734 1241 674 1299T614 1456Q614 1554 674 1611T835 1669Q936 1669 998 1610T1060 1458ZM952 1456Q952
+1512 919 1542T835 1573Q784 1573 751 1543T718 1456Q718 1400 748 1370T835 1339Q887 1339 919 1369T952 1456Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1757" d="M94 303Q94 464 218 553T596 651L780 657V725Q780 854 722 915T545 977Q401 977 238 893L186 1020Q260 1061 359 1087T557 1114Q687 1114 769 1071T893 932Q946 1020 1031 1068T1227 1116Q1419
+1116 1535 983T1651 627V520H950Q958 125 1272 125Q1363 125 1441 142T1604 199V51Q1518 13 1444 -3T1268 -20Q979 -20 854 213Q773 86 675 33T442 -20Q279 -20 187 65T94 303ZM268 301Q268 206 321 162T463 117Q608 117 692 201T776 440V539L618 532Q432 524 350
+470T268 301ZM1225 977Q1104 977 1035 894T954 653H1473Q1473 809 1409 893T1225 977Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="975" d="M614 -20Q376 -20 246 126T115 541Q115 816 247 966T625 1116Q704 1116 783 1099T907 1059L856 918Q801 940 736 954T621 969Q287 969 287 543Q287 341 368 233T610 125Q747 125 891 184V37Q781
+-20 614 -20ZM762 -289Q762 -386 686 -439T459 -492Q408 -492 363 -483V-377Q408 -385 467 -385Q546 -385 586 -365T627 -291Q627 -248 588 -222T439 -178L527 0H637L582 -115Q762 -154 762 -289Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977 384
+891T291 653H864Q864 810 794 893T594 977ZM967 1241H857Q792 1293 703 1389T574 1548V1569H777Q809 1500 866 1410T967 1266V1241Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977 384
+891T291 653H864Q864 810 794 893T594 977ZM471 1266Q519 1328 574 1416T662 1569H864V1548Q820 1483 733 1388T582 1241H471V1266Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462
+977 384 891T291 653H864Q864 810 794 893T594 977ZM515 1264Q642 1400 693 1464T767 1569H933Q955 1527 1009 1461T1189 1264V1241H1070Q982 1296 849 1427Q713 1293 630 1241H515V1264Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1149" d="M639 -20Q396 -20 256 128T115 539Q115 804 245 960T596 1116Q802 1116 922 981T1042 623V518H287Q292 325 384 225T645 125Q822 125 995 199V51Q907 13 829 -3T639 -20ZM594 977Q462 977
+384 891T291 653H864Q864 810 794 893T594 977ZM319 1393Q319 1445 345 1468T409 1491Q447 1491 474 1468T502 1393Q502 1343 475 1319T409 1294Q372 1294 346 1318T319 1393ZM700 1393Q700 1445 726 1468T790 1491Q827 1491 854 1468T882 1393Q882 1343 855 1319T790
+1294Q753 1294 727 1318T700 1393Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM355 1241H245Q180 1293 91 1389T-38 1548V1569H165Q197 1500 254 1410T355 1266V1241Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM169 1266Q217 1328 272 1416T360 1569H562V1548Q518 1483 431 1388T280 1241H169V1266Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM-77 1264Q50 1400 101 1464T175 1569H341Q363 1527 417 1461T597 1264V1241H478Q390 1296 257 1427Q121 1293 38 1241H-77V1264Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="518" d="M342 0H176V1096H342V0ZM-20 1393Q-20 1445 6 1468T70 1491Q108 1491 135 1468T163 1393Q163 1343 136 1319T70 1294Q33 1294 7 1318T-20 1393ZM361 1393Q361 1445 387 1468T451 1491Q488
+1491 515 1468T543 1393Q543 1343 516 1319T451 1294Q414 1294 388 1318T361 1393Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1221" d="M1122 563Q1122 282 992 131T614 -20Q392 -20 253 114T113 475Q113 705 244 836T596 967Q822 967 922 846L930 850Q873 1064 668 1255L397 1100L324 1208L557 1341Q465 1403 371 1452L440 1569Q596
+1496 698 1421L936 1559L1012 1452L805 1333Q957 1190 1039 991T1122 563ZM954 512Q954 659 864 744T618 829Q281 829 281 469Q281 302 368 211T618 119Q793 119 873 219T954 512Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1257" d="M926 0V709Q926 843 865 909T674 975Q502 975 422 882T342 575V0H176V1096H311L338 946H346Q397 1027 489 1071T694 1116Q892 1116 992 1021T1092 715V0H926ZM802 1243Q759 1243 718 1261T638
+1302T562 1343T491 1362Q441 1362 416 1332T376 1241H278Q291 1362 348 1430T497 1499Q543 1499 586 1481T668 1440T743 1399T811 1380Q860 1380 884 1409T923 1501H1022Q1009 1380 953 1312T802 1243Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
+758 866 866T616 975Q453 975 370 868T287 549ZM998 1241H888Q823 1293 734 1389T605 1548V1569H808Q840 1500 897 1410T998 1266V1241Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
+758 866 866T616 975Q453 975 370 868T287 549ZM479 1266Q527 1328 582 1416T670 1569H872V1548Q828 1483 741 1388T590 1241H479V1266Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950
+549Q950 758 866 866T616 975Q453 975 370 868T287 549ZM282 1264Q409 1400 460 1464T534 1569H700Q722 1527 776 1461T956 1264V1241H837Q749 1296 616 1427Q480 1293 397 1241H282V1264Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
+758 866 866T616 975Q453 975 370 868T287 549ZM1029 1243Q986 1243 945 1261T865 1302T789 1343T718 1362Q668 1362 643 1332T603 1241H505Q518 1362 575 1430T724 1499Q770 1499 813 1481T895 1440T970 1399T1038 1380Q1087 1380 1111 1409T1150 1501H1249Q1236
+1380 1180 1312T1029 1243Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q467 -20 353 49T177 247T115 549Q115 817 249 966T621 1116Q851 1116 986 963T1122 549ZM287 549Q287 339 371 229T618 119Q781 119 865 228T950 549Q950
+758 866 866T616 975Q453 975 370 868T287 549ZM336 1393Q336 1445 362 1468T426 1491Q464 1491 491 1468T519 1393Q519 1343 492 1319T426 1294Q389 1294 363 1318T336 1393ZM717 1393Q717 1445 743 1468T807 1491Q844 1491 871 1468T899 1393Q899 1343 872 1319T807
+1294Q770 1294 744 1318T717 1393Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1171" d="M104 653V791H1065V653H104ZM471 373Q471 433 500 463T584 494Q636 494 665 463T694 373Q694 316 665 284T584 252Q532 252 502 283T471 373ZM471 1071Q471 1131 500 1161T584 1192Q636 1192
+665 1161T694 1071Q694 1014 665 982T584 950Q532 950 502 981T471 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1237" d="M1122 549Q1122 281 987 131T614 -20Q460 -20 348 49L264 -68L150 10L244 141Q115 293 115 549Q115 817 249 966T621 1116Q775 1116 891 1040L975 1159L1092 1083L995 950Q1122 798 1122 549ZM287
+549Q287 378 340 276L805 922Q730 975 616 975Q453 975 370 868T287 549ZM950 549Q950 713 899 813L434 170Q505 119 618 119Q781 119 865 228T950 549Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM982 1241H872Q807 1293 718 1389T589
+1548V1569H792Q824 1500 881 1410T982 1266V1241Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM506 1266Q554 1328 609 1416T697
+1569H899V1548Q855 1483 768 1388T617 1241H506V1266Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM286 1264Q413 1400 464 1464T538
+1569H704Q726 1527 780 1461T960 1264V1241H841Q753 1296 620 1427Q484 1293 401 1241H286V1264Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1257" d="M332 1096V385Q332 251 393 185T584 119Q756 119 835 213T915 520V1096H1081V0H944L920 147H911Q860 66 770 23T563 -20Q363 -20 264 75T164 379V1096H332ZM342 1393Q342 1445 368 1468T432
+1491Q470 1491 497 1468T525 1393Q525 1343 498 1319T432 1294Q395 1294 369 1318T342 1393ZM723 1393Q723 1445 749 1468T813 1491Q850 1491 877 1468T905 1393Q905 1343 878 1319T813 1294Q776 1294 750 1318T723 1393Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1032" d="M2 1096H180L420 471Q499 257 518 162H526Q539 213 580 336T852 1096H1030L559 -152Q489 -337 396 -414T166 -492Q90 -492 16 -475V-342Q71 -354 139 -354Q310 -354 383 -162L444 -6L2 1096ZM411
+1266Q459 1328 514 1416T602 1569H804V1548Q760 1483 673 1388T522 1241H411V1266Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1255" d="M344 948Q410 1037 495 1076T686 1116Q901 1116 1021 966T1141 549Q1141 281 1021 131T686 -20Q464 -20 342 141H330L334 107Q342 30 342 -33V-492H176V1556H342V1090Q342 1038 336 948H344ZM664
+975Q496 975 420 883T342 590V549Q342 318 419 219T666 119Q969 119 969 551Q969 766 895 870T664 975Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1032" d="M2 1096H180L420 471Q499 257 518 162H526Q539 213 580 336T852 1096H1030L559 -152Q489 -337 396 -414T166 -492Q90 -492 16 -475V-342Q71 -354 139 -354Q310 -354 383 -162L444 -6L2 1096ZM490
+1393Q490 1445 516 1468T580 1491Q618 1491 645 1468T673 1393Q673 1343 646 1319T580 1294Q543 1294 517 1318T490 1393ZM871 1393Q871 1445 897 1468T961 1491Q998 1491 1025 1468T1053 1393Q1053 1343 1026 1319T961 1294Q924 1294 898 1318T871 1393Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1024" d="M82 473V625H942V473H82Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="2048" d="M82 473V625H1966V473H82Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="348" d="M37 961L25 983Q47 1073 96 1207T201 1462H324Q258 1208 221 961H37Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="348" d="M309 1462L324 1440Q298 1340 249 1208T147 961H25Q95 1246 127 1462H309Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="502" d="M350 238L365 215Q339 115 290 -17T188 -264H63Q90 -160 122 -7T168 238H350Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="717" d="M406 961L391 983Q447 1198 569 1462H692Q662 1347 633 1203T590 961H406ZM37 961L25 983Q47 1073 96 1207T201 1462H324Q258 1208 221 961H37Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="717" d="M309 1462L324 1440Q298 1340 249 1208T147 961H25Q95 1246 127 1462H309ZM678 1462L692 1440Q668 1349 620 1216T516 961H391Q417 1061 450 1215T496 1462H678Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="829" d="M309 238L324 216Q298 116 249 -16T147 -263H25Q95 22 127 238H309ZM678 238L692 216Q668 125 620 -8T516 -263H391Q417 -163 450 -9T496 238H678Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="770" d="M164 748Q164 869 220 932T385 995Q490 995 548 933T606 748Q606 629 549 565T385 500Q278 500 221 565T164 748Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="623" d="M82 551L424 958L543 889L254 539L543 188L424 117L82 524V551Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="623" d="M541 524L197 117L80 188L367 539L80 889L197 958L541 551V524Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.ttf b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.ttf
new file mode 100644
index 0000000..db43334
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.ttf differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.woff b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.woff
new file mode 100644
index 0000000..1251d51
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.woff differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.woff2 b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.woff2
new file mode 100644
index 0000000..0964c7c
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Regular-webfont.woff2 differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.eot b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.eot
new file mode 100644
index 0000000..5b7ffea
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.eot differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.svg
new file mode 100644
index 0000000..6e9c820
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.svg
@@ -0,0 +1,19043 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1174" ><font-face
+    font-family="Open Sans Semibold"
+    units-per-em="2048"
+    panose-1="2 11 7 6 3 8 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="557" d="M336 444H160L328 1462H600L336 444ZM33 96Q33 176 78 226T209 276Q266 276 300 244T334 150Q334 71 287 22T164 -27Q102 -27 68 6T33 96Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="858" d="M516 1462L365 934H213L285 1462H516ZM893 1462L741 934H588L662 1462H893Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M1036 872L952 586H1223L1208 418H905L784 0H604L727 418H479L358 0H184L301 418H51L68 586H348L432 872H168L184 1040H479L600 1462H778L657 1040H909L1030 1462H1204L1083 1040H1335L1321
+872H1036ZM526 586H776L858 872H608L526 586Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1128" d="M987 494Q987 322 868 217T530 92L485 -119H350L395 92Q198 105 61 172V381Q139 339 240 311T434 281L518 668Q362 724 295 806T227 1006Q227 1173 345 1273T670 1391L707 1554H842L807 1389Q968
+1373 1096 1307L1010 1122Q876 1188 766 1196L686 825Q814 774 872 730T959 629T987 494ZM571 285Q657 296 707 345T758 471Q758 572 643 616L571 285ZM629 1196Q540 1185 496 1139T451 1016Q451 918 561 877L629 1196Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1688" d="M530 1315Q475 1315 431 1254T361 1081T334 866Q334 731 414 731Q466 731 509 789T582 964T612 1184Q612 1315 530 1315ZM805 1186Q805 1026 750 873T603 642T397 565Q273 565 207 644T141 872Q141
+1038 194 1185T336 1408T545 1483Q672 1483 738 1407T805 1186ZM1511 1462L426 0H231L1317 1462H1511ZM1329 731Q1277 731 1234 674T1162 503T1133 281Q1133 147 1214 147Q1266 147 1310 205T1383 380T1413 600Q1413 731 1329 731ZM1606 604Q1606 443 1551 289T1404
+57T1200 -20Q1073 -20 1007 56T940 279Q940 450 993 599T1135 822T1343 897Q1470 897 1538 822T1606 604Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1411" d="M748 1298Q661 1298 614 1244T567 1102Q567 993 629 901Q776 976 828 1034T881 1161Q881 1227 845 1262T748 1298ZM508 176Q585 176 655 203T799 285L535 666Q402 592 354 525T305 371Q305
+285 361 231T508 176ZM66 350Q66 497 151 604T438 809Q350 960 350 1092Q350 1272 462 1378T760 1485Q920 1485 1012 1404T1104 1186Q1104 1057 1015 956T721 764L956 438Q1065 550 1137 733H1370Q1257 463 1073 279L1278 0H1001L907 131Q801 51 696 16T467 -20Q277
+-20 172 77T66 350Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="483" d="M516 1462L365 934H213L285 1462H516Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="639" d="M78 276Q78 619 202 908T582 1462H791Q293 914 293 272Q293 -57 408 -324H225Q78 -63 78 276Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="639" d="M559 860Q559 518 436 231T55 -324H-154Q344 224 344 866Q344 1193 229 1462H412Q559 1197 559 860Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1122" d="M868 1524L752 1157L1155 1180L1143 975L776 1020L946 659L741 598L639 969L412 657L250 801L543 1067L193 1167L264 1362L618 1184L655 1567L868 1524Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1128" d="M496 631H117V811H496V1192H676V811H1053V631H676V256H496V631Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="530" d="M334 238L342 215Q217 -45 76 -264H-102Q3 -26 98 238H334Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="649" d="M47 446L92 649H594L549 446H47Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="551" d="M33 94Q33 177 80 226T211 276Q267 276 300 245T334 152Q334 74 287 23T162 -29Q96 -29 65 6T33 94Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="788" d="M952 1462L141 0H-92L719 1462H952Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1128" d="M1100 1012Q1100 706 1021 466T802 103T477 -20Q283 -20 188 107T92 471Q92 755 175 997T397 1362T719 1485Q906 1485 1003 1367T1100 1012ZM700 1288Q603 1288 520 1176T384 864T330 469Q330 326
+369 251T498 176Q598 176 680 289T812 606T862 1020Q862 1288 700 1288Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1128" d="M637 0H399L588 870Q616 1020 670 1194Q613 1139 535 1092L348 975L242 1145L750 1462H948L637 0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1128" d="M911 0H-18L18 180L489 602Q665 761 727 833T818 966T846 1098Q846 1183 797 1232T657 1282Q587 1282 518 1252T348 1143L233 1303Q353 1400 464 1441T692 1483Q873 1483 980 1390T1087 1139Q1087 1031
+1048 938T925 748T641 479L330 215V207H952L911 0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1128" d="M1087 1153Q1087 995 988 889T719 752V745Q846 721 915 639T985 434Q985 301 917 198T721 37T416 -20Q191 -20 31 59V274Q115 225 216 199T412 172Q569 172 657 243T745 440Q745 659 467 659H334L371
+842H477Q641 842 744 916T848 1116Q848 1195 799 1240T659 1286Q587 1286 513 1261T350 1176L246 1337Q366 1418 471 1450T698 1483Q881 1483 984 1395T1087 1153Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1128" d="M1047 317H846L778 0H549L618 317H-4L33 514L836 1466H1090L889 514H1090L1047 317ZM659 514L727 823Q758 959 827 1200H819Q768 1114 684 1014L262 514H659Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1128" d="M610 907Q791 907 898 804T1006 518Q1006 357 936 235T732 47T408 -20Q194 -20 53 59V276Q220 176 395 176Q568 176 665 259T762 489Q762 594 700 657T512 721Q417 721 287 686L199 754L399 1462H1112L1067
+1253H561L455 889Q548 907 610 907Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1128" d="M111 446Q111 651 171 852T336 1195T587 1410T930 1483Q1047 1483 1133 1458L1090 1264Q1018 1286 909 1286Q704 1286 572 1157T375 764H381Q506 934 707 934Q863 934 950 835T1038 563Q1038 401 970
+262T784 52T514 -20Q320 -20 216 100T111 446ZM530 174Q611 174 673 222T769 357T803 545Q803 745 625 745Q574 745 530 726T451 678T392 614T353 532T340 418Q340 308 389 241T530 174Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1128" d="M125 0L879 1257H205L248 1462H1180L1147 1294L389 0H125Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1128" d="M731 1485Q910 1485 1014 1396T1118 1157Q1118 1025 1039 928T791 764Q911 686 963 599T1016 397Q1016 276 955 181T779 33T508 -20Q305 -20 191 80T76 348Q76 645 444 780Q353 850 314 925T274 1087Q274
+1266 401 1375T731 1485ZM594 672Q445 618 378 546T311 369Q311 276 370 220T528 164Q643 164 712 228T782 395Q782 486 734 552T594 672ZM711 1300Q618 1300 561 1244T504 1096Q504 1013 543 959T647 866Q762 909 824 971T887 1128Q887 1209 839 1254T711 1300Z"
+/>
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1128" d="M1079 1018Q1079 813 1021 604T869 255T643 48T332 -20Q199 -20 92 12V219Q213 176 328 176Q516 176 634 299T811 688H805Q692 528 500 528Q335 528 245 630T154 918Q154 1074 221 1207T407 1411T682
+1483Q874 1483 976 1364T1079 1018ZM664 1288Q582 1288 519 1241T421 1111T387 932Q387 827 433 772T567 717Q684 717 765 811T846 1051Q846 1159 798 1223T664 1288Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="551" d="M205 948Q205 1031 252 1080T383 1130Q439 1130 472 1099T506 1006Q506 927 458 876T332 825Q266 825 236 860T205 948ZM33 94Q33 177 80 226T211 276Q267 276 300 245T334 152Q334 74 287 23T162
+-29Q96 -29 65 6T33 94Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="551" d="M334 238L342 215Q217 -45 76 -264H-100Q-5 -50 98 238H334ZM205 948Q205 1031 252 1080T383 1130Q439 1130 472 1099T506 1006Q506 927 458 876T332 825Q266 825 236 860T205 948Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1128" d="M1051 221L115 651V772L1051 1260V1065L354 721L1051 418V221Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1128" d="M117 831V1010H1053V831H117ZM117 430V610H1053V430H117Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1128" d="M115 418L809 721L115 1065V1260L1051 772V651L115 221V418Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="907" d="M260 444Q278 577 331 664T508 842Q615 919 654 959T712 1039T731 1128Q731 1198 689 1242T565 1286Q488 1286 415 1259T264 1194L186 1370Q393 1483 596 1483Q767 1483 865 1398T963 1155Q963
+1035 900 938T668 721Q564 647 518 588T457 444H260ZM162 94Q162 177 209 226T340 276Q396 276 429 245T463 152Q463 73 414 23T289 -27Q223 -27 193 7T162 94Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1743" d="M1706 846Q1706 670 1647 524T1480 294T1241 211Q1143 211 1091 257T1026 377H1020Q919 211 743 211Q620 211 554 289T487 508Q487 659 554 787T742 990T1006 1065Q1058 1065 1100 1060T1180 1047T1309
+1008L1208 616Q1178 502 1178 457Q1178 365 1257 365Q1329 365 1391 431T1488 606T1524 836Q1524 1064 1396 1183T1032 1303Q818 1303 647 1204T381 922T285 516Q285 257 425 115T817 -27Q1017 -27 1247 59V-96Q1028 -186 793 -186Q583 -186 426 -103T185 137T100
+502Q100 772 222 991T565 1335T1059 1460Q1259 1460 1405 1386T1628 1171T1706 846ZM989 913Q903 913 831 860T717 716T676 522Q676 365 788 365Q870 365 929 437T1030 657L1094 897Q1041 913 989 913Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1210" d="M827 406H342L133 0H-121L662 1464H936L1102 0H868L827 406ZM811 614Q771 1030 766 1117T760 1257Q705 1118 618 950L446 614H811Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1247" d="M778 1462Q1000 1462 1113 1378T1227 1130Q1227 984 1141 887T901 760V752Q1009 724 1068 649T1128 465Q1128 248 978 124T561 0H70L379 1462H778ZM489 858H688Q827 858 903 918T979 1090Q979 1262 756
+1262H575L489 858ZM348 201H571Q718 201 801 269T885 463Q885 561 825 612T649 664H449L348 201Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1225" d="M924 1278Q770 1278 649 1189T456 930T383 555Q383 375 465 280T709 184Q850 184 1038 252V47Q858 -20 664 -20Q416 -20 276 128T135 545Q135 805 240 1028T522 1367T924 1483Q1141 1483 1313 1391L1219
+1196Q1156 1230 1085 1254T924 1278Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1374" d="M1311 893Q1311 622 1211 420T920 109T471 0H70L379 1462H748Q1019 1462 1165 1317T1311 893ZM483 201Q660 201 792 287T994 529T1065 885Q1065 1069 977 1165T721 1262H575L348 201H483Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1077" d="M846 0H70L379 1462H1155L1112 1257H573L489 862H991L950 659H446L350 203H889L846 0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1026" d="M307 0H70L379 1462H1153L1110 1257H573L477 803H979L934 600H434L307 0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1399" d="M786 793H1298L1141 57Q1029 17 923 -1T684 -20Q423 -20 279 126T135 539Q135 803 237 1022T527 1362T954 1483Q1065 1483 1167 1463T1372 1393L1282 1190Q1108 1276 948 1276Q790 1276 661 1186T458
+928T383 555Q383 372 472 278T725 184Q834 184 940 217L1020 588H743L786 793Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1411" d="M1110 0H872L1012 659H446L307 0H70L379 1462H616L489 864H1055L1182 1462H1419L1110 0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="608" d="M70 0L381 1462H616L305 0H70Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="612" d="M-152 -408Q-256 -408 -322 -383L-317 -182Q-233 -203 -164 -203Q37 -203 90 47L389 1462H627L322 16Q276 -201 161 -304T-152 -408Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1198" d="M1087 0H825L573 655L424 555L307 0H70L379 1462H616L465 756L606 922L1098 1462H1382L766 793L1087 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1016" d="M70 0L379 1462H616L350 205H889L846 0H70Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1757" d="M647 0L532 1214H526Q517 1096 471 874L287 0H68L377 1462H700L809 313H815L1421 1462H1765L1460 0H1233L1415 872Q1454 1058 1501 1214H1495L852 0H647Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1491" d="M1192 0H932L522 1163H516L506 1094Q482 945 471 882T287 0H68L377 1462H645L1044 313H1051Q1057 367 1082 505T1122 709L1282 1462H1501L1192 0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1485" d="M1421 922Q1421 643 1326 425T1065 94T678 -20Q419 -20 277 129T135 543Q135 810 233 1030T503 1368T891 1485Q1142 1485 1281 1336T1421 922ZM872 1280Q734 1280 622 1184T447 918T383 545Q383 372 464
+278T692 184Q830 184 940 279T1112 544T1174 920Q1174 1090 1095 1185T872 1280Z" />
+<glyph unicode="P" glyph-name="P" d="M465 748H559Q737 748 834 827T932 1053Q932 1162 874 1212T694 1262H575L465 748ZM1174 1061Q1174 813 1005 680T532 547H422L307 0H70L379 1462H713Q942 1462 1058 1362T1174 1061Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1485" d="M1421 922Q1421 600 1291 359T936 27L1200 -348H911L709 -20H678Q419 -20 277 129T135 543Q135 810 233 1030T503 1368T891 1485Q1142 1485 1281 1336T1421 922ZM872 1280Q734 1280 622 1184T447 918T383
+545Q383 372 464 278T692 184Q830 184 940 278T1112 541T1174 920Q1174 1090 1095 1185T872 1280Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1206" d="M430 584L307 0H70L379 1462H717Q940 1462 1059 1368T1178 1077Q1178 912 1092 799T834 633L1083 0H823L616 584H430ZM473 782H596Q766 782 850 857T934 1063Q934 1168 875 1214T692 1260H573L473 782Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1057" d="M930 428Q930 218 786 99T387 -20Q177 -20 39 55V279Q212 182 389 182Q526 182 605 240T684 403Q684 472 643 525T471 662Q366 729 316 784T240 904T213 1049Q213 1177 274 1276T448 1429T702 1483Q907
+1483 1083 1391L997 1200Q836 1278 702 1278Q593 1278 527 1220T461 1067Q461 1020 476 985T522 919T657 823Q812 726 871 636T930 428Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1053" d="M528 0H291L555 1257H176L221 1462H1219L1176 1257H795L528 0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1399" d="M1419 1462L1217 506Q1161 239 1009 110T606 -20Q389 -20 271 86T152 391Q152 474 172 561L365 1462H602L410 557Q389 469 389 399Q389 297 448 241T629 184Q774 184 859 264T983 526L1182 1462H1419Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1165" d="M506 248Q576 426 643 557L1098 1462H1352L588 0H330L186 1462H418L492 557Q501 454 503 324L502 248H506Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1788" d="M1317 0H1059L1022 842L1016 1027L1020 1133H1014Q967 989 897 842L512 0H256L203 1462H432L451 612Q451 476 438 266H444Q527 487 586 621L973 1462H1198L1229 623L1232 454L1229 266H1237Q1265 354
+1307 463T1368 616L1726 1462H1972L1317 0Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1151" d="M1040 0H784L592 592L154 0H-111L475 770L225 1462H471L649 922L1051 1462H1317L766 752L1040 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1092" d="M582 793L1014 1462H1280L657 549L543 0H305L424 553L186 1462H428L582 793Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1092" d="M901 0H-39L-6 168L844 1255H246L289 1462H1186L1151 1290L299 205H944L901 0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="631" d="M403 -324H-27L354 1462H784L745 1286H524L221 -147H442L403 -324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="788" d="M428 1462L647 0H438L221 1462H428Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="631" d="M-106 -147H113L418 1286H197L236 1462H666L285 -324H-143L-106 -147Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1069" d="M37 537L645 1470H772L1044 537H860L672 1227L238 537H37Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="813" d="M629 -324H-188L-158 -184H659L629 -324Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1135" d="M918 1241H774Q709 1304 642 1392T541 1548V1569H786Q833 1415 918 1266V1241Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1186" d="M399 -20Q258 -20 176 81T94 367Q94 569 163 745T355 1023T623 1126Q720 1126 790 1081T899 948H909L971 1106H1151L915 0H733L754 176H748Q590 -20 399 -20ZM485 170Q567 170 646 247T776 455T827 739Q827
+827 780 880T657 934Q572 934 497 857T377 648T332 373Q332 271 372 221T485 170Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1200" d="M578 -20Q480 -20 410 25T299 156H289L225 0H47L377 1556H612L541 1223Q528 1160 503 1067T463 926H471Q561 1039 636 1082T797 1126Q942 1126 1023 1023T1104 737Q1104 535 1035 358T844 80T578 -20ZM711
+934Q630 934 549 854T419 644T369 373Q369 277 415 224T547 170Q632 170 706 248T823 458T866 733Q866 934 711 934Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="954" d="M506 -20Q310 -20 202 86T94 389Q94 596 167 765T374 1030T676 1126Q840 1126 973 1065L903 881Q781 934 682 934Q532 934 432 781T332 401Q332 290 388 230T543 170Q617 170 681 192T811 246V51Q671 -20
+506 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1198" d="M623 1126Q802 1126 891 948H899Q912 1094 936 1198L1012 1556H1245L915 0H731L750 176H743Q655 70 573 25T399 -20Q256 -20 175 81T94 369Q94 574 165 752T357 1028T623 1126ZM489 170Q571 170 651 252T780
+466T829 733Q829 824 786 879T653 934Q568 934 494 857T376 646T332 373Q332 170 489 170Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1075" d="M664 946Q568 946 484 860T362 633H391Q579 633 685 686T791 838Q791 889 759 917T664 946ZM512 -20Q315 -20 205 91T94 401Q94 599 171 769T381 1033T678 1126Q839 1126 928 1054T1018 848Q1018 666
+852 564T377 461H334L332 430V401Q332 290 388 227T557 164Q629 164 700 183T868 248V61Q772 17 692 -1T512 -20Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="702" d="M-76 -492Q-166 -492 -225 -469V-279Q-161 -299 -111 -299Q23 -299 66 -94L283 928H104L125 1034L319 1110L340 1202Q384 1400 474 1483T731 1567Q846 1567 942 1524L881 1348Q807 1376 745 1376Q676 1376
+635 1333T571 1192L553 1106H782L745 928H516L293 -125Q253 -314 162 -403T-76 -492Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1067" d="M1143 1106L1112 969L920 936Q948 878 948 799Q948 606 829 493T510 379Q458 379 418 387Q307 347 307 283Q307 245 338 231T430 209L557 193Q733 171 809 106T885 -82Q885 -278 734 -385T305 -492Q102
+-492 -9 -417T-121 -211Q-121 -108 -52 -33T172 94Q96 139 96 221Q96 290 142 340T289 438Q154 519 154 690Q154 886 276 1006T600 1126Q680 1126 760 1106H1143ZM324 18Q212 0 152 -53T92 -184Q92 -249 147 -287T317 -326Q480 -326 572 -272T664 -117Q664 -66
+619 -37T461 4L324 18ZM594 969Q529 969 480 931T404 826T377 680Q377 609 412 571T514 532Q579 532 626 571T700 678T727 827Q727 969 594 969Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1208" d="M702 0L844 672Q862 762 862 799Q862 934 733 934Q621 934 524 809T381 467L283 0H47L377 1556H612L555 1294Q528 1168 482 1001L463 926H471Q555 1032 639 1079T817 1126Q953 1126 1025 1049T1098 827Q1098
+751 1075 653L936 0H702Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="563" d="M330 1378Q330 1446 369 1488T479 1530Q532 1530 565 1504T598 1423Q598 1352 558 1311T453 1270Q400 1270 365 1296T330 1378ZM283 0H47L283 1106H518L283 0Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="563" d="M-113 -492Q-203 -492 -262 -469V-279Q-198 -299 -145 -299Q-14 -299 25 -113L285 1106H518L252 -141Q214 -322 125 -407T-113 -492ZM332 1378Q332 1446 370 1488T479 1530Q533 1530 565 1504T598 1423Q598
+1352 558 1311T453 1270Q400 1270 366 1295T332 1378Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1081" d="M887 1106H1159L676 621L967 0H705L496 471L360 375L283 0H47L377 1556H612Q477 929 453 827T393 600H397L887 1106Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="563" d="M281 0H47L377 1556H612L281 0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1819" d="M807 1126Q1027 1126 1061 891H1069Q1144 1007 1239 1066T1438 1126Q1571 1126 1640 1050T1710 834Q1710 770 1688 653L1548 0H1313L1456 672Q1475 767 1475 805Q1475 934 1354 934Q1246 934 1153 810T1016
+481L915 0H680L823 672Q840 754 840 799Q840 934 723 934Q613 934 520 807T381 469L283 0H47L283 1106H467L446 901H455Q603 1126 807 1126Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1208" d="M702 0L844 672Q862 762 862 803Q862 934 733 934Q661 934 591 877T465 713T381 469L283 0H47L283 1106H467L446 901H455Q538 1019 626 1072T817 1126Q951 1126 1024 1050T1098 834Q1098 765 1075 653L938
+0H702Z" />
+<glyph unicode="o" glyph-name="o" d="M842 702Q842 809 793 869T653 930Q560 930 487 859T373 665T332 403Q332 292 381 233T528 174Q618 174 690 242T802 432T842 702ZM1079 692Q1079 490 1006 325T806 71T512 -18Q320 -18 207 96T94 408Q94 607 165 773T366
+1031T664 1124Q859 1124 969 1008T1079 692Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1200" d="M578 -20Q397 -20 309 156H299Q292 59 274 -29L178 -492H-55L283 1106H467L446 918H455Q612 1126 799 1126Q942 1126 1023 1023T1104 737Q1104 533 1034 356T844 79T578 -20ZM711 934Q630 934 550 855T420
+644T369 373Q369 277 415 224T547 170Q632 170 706 248T823 458T866 733Q866 934 711 934Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1198" d="M625 1126Q808 1126 899 948H909L973 1106H1151L811 -492H578L653 -143Q665 -87 696 37T735 178H727Q643 70 563 25T393 -20Q254 -20 174 82T94 367Q94 575 167 754T359 1029T625 1126ZM492 170Q572 170
+651 251T778 464T827 733Q827 827 782 880T655 934Q569 934 495 857T377 647T332 373Q332 170 492 170Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="836" d="M797 1126Q859 1126 905 1114L854 895Q800 909 752 909Q626 909 527 796T389 500L283 0H47L283 1106H467L446 901H455Q538 1021 621 1073T797 1126Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="922" d="M782 340Q782 167 664 74T336 -20Q146 -20 14 47V250Q167 160 326 160Q423 160 483 200T543 309Q543 360 509 396T367 494Q242 561 191 630T139 795Q139 950 246 1038T535 1126Q731 1126 881 1042L805
+866Q665 942 539 942Q466 942 421 909T375 817Q375 772 408 737T543 647Q648 588 692 546T759 455T782 340Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="752" d="M455 170Q523 170 606 201V23Q571 6 511 -7T391 -20Q117 -20 117 227Q117 284 133 358L254 928H92L113 1038L303 1120L432 1352H578L526 1106H805L766 928H489L367 356Q354 301 354 264Q354 221 379 196T455 170Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1208" d="M506 1106L377 496Q346 355 346 303Q346 170 473 170Q545 170 616 227T742 389T827 637L926 1106H1159L926 0H741L762 205H754Q672 89 583 35T391 -20Q257 -20 184 56T111 274Q111 337 123 398T147 522L270
+1106H506Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="997" d="M231 0L100 1106H332L387 508Q401 349 401 211H408Q436 285 478 376T543 508L854 1106H1104L506 0H231Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1540" d="M844 0L825 627L824 697L827 897Q802 835 776 772T430 0H168L121 1106H342L355 460Q353 373 344 215H350Q416 391 459 487L737 1106H991L1010 502L1011 449L1008 215H1014Q1031 265 1071 373T1134 537T1386
+1106H1630L1112 0H844Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1032" d="M489 387L184 0H-86L389 569L158 1106H403L547 733L834 1106H1108L647 557L895 0H649L489 387Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1004" d="M100 1106H332L395 575Q404 513 411 401T418 219H424Q510 434 559 532L852 1106H1106L418 -174Q328 -339 222 -415T-27 -492Q-103 -492 -170 -473V-285Q-95 -301 -45 -301Q29 -301 89 -258T213 -102L264
+-10L100 1106Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="920" d="M719 0H-39L-10 147L625 928H186L225 1106H930L893 936L270 178H756L719 0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="721" d="M457 -324Q141 -324 141 -88Q141 -27 158 45L203 246Q217 311 217 344Q217 485 8 485L47 672Q167 672 238 714T332 858L391 1133Q419 1267 464 1334T584 1432T782 1462H842L801 1278Q705 1278
+662 1244T600 1128L530 819Q506 711 443 649T264 569V563Q424 518 424 348Q424 310 408 227L365 33Q354 -15 354 -41Q354 -92 386 -115T496 -139V-324H457Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M498 1552H676V-481H498V1552Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="721" d="M270 1462Q588 1462 588 1227Q588 1166 571 1094L526 891Q512 826 512 793Q512 651 721 651L682 465Q561 465 490 423T397 281L334 -25Q300 -190 211 -257T-59 -324H-88V-141Q18 -139 64 -105T129
+10L199 319Q223 428 286 489T465 567V573Q307 621 307 788Q307 843 324 909L367 1106Q377 1150 377 1180Q377 1238 334 1258T213 1278L248 1462H270Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1128" d="M344 692Q293 692 232 661T111 571V762Q211 870 360 870Q424 870 478 858T625 807Q695 777 740 765T834 752Q884 752 946 783T1067 872V682Q964 571 817 571Q754 571 693 587T555 637Q479 669
+436 680T344 692Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="557" d="M221 645H395L229 -373H-45L221 645ZM522 993Q522 913 475 863T348 813Q289 813 255 844T221 936Q221 1018 270 1068T397 1118Q462 1118 492 1083T522 993Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1128" d="M578 -20H422L467 193Q335 227 265 327T195 586Q195 776 258 937T436 1197T698 1319L733 1483H889L852 1319Q976 1307 1073 1262L1004 1077Q879 1130 782 1130Q683 1130 602 1059T477 864T432
+598Q432 487 488 427T643 367Q717 367 781 388T911 442V248Q778 179 618 174L578 -20Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1128" d="M856 1483Q1044 1483 1208 1397L1120 1214Q977 1288 862 1288Q677 1288 635 1083L578 805H911L877 633H541L508 481Q487 383 440 316T309 207H999L954 0H-18L20 193Q220 238 270 469L305
+633H109L145 805H342L403 1104Q441 1289 556 1386T856 1483Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1128" d="M209 723Q209 833 270 928L141 1057L260 1176L387 1049Q489 1110 594 1110Q702 1110 801 1047L928 1176L1049 1059L920 930Q981 831 981 723Q981 609 920 514L1047 389L928 270L801 397Q706
+338 594 338Q474 338 387 397L260 272L143 391L270 516Q209 611 209 723ZM377 723Q377 632 439 569T594 506Q685 506 750 568T815 723Q815 816 750 879T594 942Q502 942 440 878T377 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1128" d="M594 793L1026 1462H1274L756 702H973L938 547H664L633 399H907L874 244H602L549 0H328L379 244H106L139 399H412L442 547H170L205 702H416L217 1462H449L594 793Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M498 1552H676V758H498V1552ZM498 315H676V-481H498V315Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="995" d="M162 764Q162 952 381 1071Q334 1103 303 1153T272 1268Q272 1406 383 1488T680 1571Q858 1571 1012 1493L944 1335Q882 1364 815 1385T670 1407Q584 1407 536 1373T487 1278Q487 1235 523
+1202T672 1118Q799 1062 858 991T918 823Q918 731 866 652T705 512Q807 436 807 319Q807 162 684 74T354 -14Q166 -14 39 53V240Q191 147 358 147Q474 147 532 187T590 299Q590 342 551 378T410 463Q280 523 221 594T162 764ZM510 987Q441 961 400 908T358 793Q358
+732 404 689T578 588Q640 624 677 678T715 793Q715 853 666 897T510 987Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1135" d="M426 1380Q426 1440 461 1478T559 1516Q607 1516 635 1493T664 1421Q664 1356 629 1319T535 1282Q488 1282 457 1305T426 1380ZM809 1380Q809 1440 844 1478T942 1516Q990 1516 1018 1493T1047
+1421Q1047 1356 1012 1319T918 1282Q871 1282 840 1305T809 1380Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M930 1034Q817 1034 755 958T692 727Q692 426 930 426Q977 426 1042 442T1151 477V319Q1034 268 911 268Q714 268 608 391T502 727Q502 943 615 1067T928 1192Q1066 1192 1194 1126L1126
+979Q1020 1034 930 1034ZM131 731Q131 931 231 1106T506 1382T883 1483Q1082 1483 1256 1384T1532 1109T1634 731Q1634 532 1536 358T1263 82T883 -20Q676 -20 501 83T229 360T131 731ZM254 731Q254 563 337 419T566 188T883 102Q1056 102 1202 189T1430 420T1511
+731Q1511 896 1429 1041T1202 1273T883 1360Q715 1360 569 1276T338 1045T254 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="729" d="M498 1479Q611 1479 664 1376H670L709 1466H827L680 782H557L567 887H563Q513 825 465 798T356 770Q265 770 213 836T160 1016Q160 1144 207 1254T329 1422T498 1479ZM412 897Q462 897
+509 945T586 1072T616 1231Q616 1350 514 1350Q432 1350 376 1253T319 1022Q319 897 412 897Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1055" d="M80 575L475 995L610 877L322 545L475 176L297 100L80 553V575ZM520 555L905 989L1042 877L762 526L909 176L729 100L520 530V555Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1128" d="M1053 811V256H874V631H117V811H1053Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="649" d="M47 446L92 649H594L549 446H47Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M131 731Q131 931 231 1106T506 1382T883 1483Q1082 1483 1256 1384T1532 1109T1634 731Q1634 532 1536 358T1263 82T883 -20Q676 -20 501 83T229 360T131 731ZM254 731Q254 563 337 419T566
+188T883 102Q1056 102 1202 189T1430 420T1511 731Q1511 896 1429 1041T1202 1273T883 1360Q715 1360 569 1276T338 1045T254 731ZM1214 907Q1214 824 1169 762T1038 664L1249 291H1049L877 616H786V291H608V1169H877Q1214 1169 1214 907ZM786 760H858Q942 760
+987 796T1032 895Q1032 968 987 996T858 1024H786V760Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="903" d="M1020 1556H111L150 1722H1061L1020 1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M188 1153Q188 1289 285 1386T518 1483Q654 1483 750 1386T846 1153Q846 1016 750 922T518 827Q430 827 353 871T232 990T188 1153ZM340 1153Q340 1083 392 1031T518 979Q590 979 642 1031T694
+1153Q694 1227 643 1279T518 1331Q444 1331 392 1280T340 1153Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1128" d="M496 657H117V838H496V1219H676V838H1053V657H676V283H496V657ZM117 0V180H1053V0H117Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="745" d="M682 586H78L106 721L375 944Q486 1039 523 1080T578 1157T596 1231Q596 1277 568 1303T492 1329Q401 1329 301 1249L221 1372Q289 1426 363 1453T532 1481Q647 1481 715 1421T784 1266Q784
+1197 761 1142T687 1031T518 885L344 743H715L682 586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="745" d="M784 1272Q784 1182 730 1123T571 1038V1034Q649 1016 686 967T723 852Q723 723 624 646T354 569Q216 569 104 625V784Q230 713 352 713Q442 713 491 750T541 856Q541 969 395 969H287L315
+1102H408Q497 1102 550 1136T604 1235Q604 1335 487 1335Q395 1335 299 1270L231 1391Q357 1481 522 1481Q646 1481 715 1426T784 1272Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1135" d="M508 1266Q605 1374 733 1569H997V1550Q943 1484 839 1389T664 1241H508V1266Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1221" d="M358 307Q358 242 391 206T487 170Q600 170 696 295T838 633L940 1106H1171L936 0H752L774 190H764Q689 79 611 30T446 -20Q338 -20 291 61H283Q274 -12 244 -174L178 -492H-55L283 1106H518L377
+436Q358 352 358 307Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1204 -260H1065V1378H877V-260H737V559Q675 541 592 541Q376 541 274 666T172 1042Q172 1302 281 1429T623 1556H1204V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="551" d="M150 692Q150 775 197 824T328 874Q384 874 417 843T451 750Q451 672 404 621T279 569Q213 569 182 604T150 692Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="420" d="M236 -264Q236 -370 154 -431T-70 -492Q-134 -492 -188 -477V-342Q-141 -356 -92 -356Q45 -356 45 -260Q45 -220 10 -199T-94 -168L4 0H150L100 -96Q172 -121 204 -163T236 -264Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="745" d="M532 1462H694L508 586H317L416 1047Q433 1126 473 1264Q452 1244 424 1221T270 1118L193 1247L532 1462Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="721" d="M776 1206Q776 1080 734 981T613 826T424 770Q302 770 233 843T164 1047Q164 1169 208 1268T333 1423T522 1479Q646 1479 711 1408T776 1206ZM510 1346Q429 1346 378 1259T326 1042Q326
+901 438 901Q515 901 565 988T616 1208Q616 1346 510 1346Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1055" d="M975 510L578 92L444 211L731 541L578 911L758 987L975 532V510ZM535 530L150 98L10 211L291 559L145 911L324 987L535 555V530Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1661" d="M1429 1462L346 0H149L1234 1462H1429ZM746 1462H908L722 586H531L630 1047Q647 1126 687 1264Q666 1244 638 1221T484 1118L407 1247L746 1462ZM1448 177H1326L1287 1H1104L1143 177H775L801
+314L1278 883H1475L1354 320H1477L1448 177ZM1172 320L1224 541L1258 670Q1226 619 1160 539L973 320H1172Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1661" d="M1401 1462L318 0H121L1206 1462H1401ZM717 1462H879L693 586H502L601 1047Q618 1126 658 1264Q637 1244 609 1221T455 1118L378 1247L717 1462ZM1464 1H860L888 136L1157 359Q1268 454 1305
+495T1360 572T1378 646Q1378 692 1350 718T1274 744Q1183 744 1083 664L1003 787Q1071 841 1145 868T1314 896Q1429 896 1497 836T1566 681Q1566 612 1543 557T1469 446T1300 300L1126 158H1497L1464 1Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1683" d="M1571 1462L488 0H291L1376 1462H1571ZM1554 177H1432L1393 1H1210L1249 177H881L907 314L1384 883H1581L1460 320H1583L1554 177ZM1278 320L1330 541L1364 670Q1332 619 1266 539L1079
+320H1278ZM788 1272Q788 1182 734 1123T575 1038V1034Q653 1016 690 967T727 852Q727 723 628 646T358 569Q220 569 108 625V784Q234 713 356 713Q446 713 495 750T545 856Q545 969 399 969H291L319 1102H412Q501 1102 554 1136T608 1235Q608 1335 491 1335Q399
+1335 303 1270L235 1391Q361 1481 526 1481Q650 1481 719 1426T788 1272Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="907" d="M668 643Q643 497 589 412T418 244Q311 165 273 126T216 47T197 -41Q197 -112 239 -155T362 -199Q438 -199 511 -172T664 -106L739 -283Q534 -395 330 -395Q156 -395 61 -310T-35 -68Q-35
+52 29 151T260 367Q353 431 401 489T471 643H668ZM766 993Q766 908 718 859T588 809Q532 809 499 841T465 934Q465 1012 511 1063T637 1114Q703 1114 734 1080T766 993Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1210" d="M827 406H342L133 0H-121L662 1464H936L1102 0H868L827 406ZM811 614Q771 1030 766 1117T760 1257Q705 1118 618 950L446 614H811ZM915 1579H771Q706 1642 639 1730T538 1886V1907H783Q830
+1753 915 1604V1579Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1210" d="M827 406H342L133 0H-121L662 1464H936L1102 0H868L827 406ZM811 614Q771 1030 766 1117T760 1257Q705 1118 618 950L446 614H811ZM707 1604Q804 1712 932 1907H1196V1888Q1142 1822 1038 1727T863
+1579H707V1604Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1210" d="M827 406H342L133 0H-121L662 1464H936L1102 0H868L827 406ZM811 614Q771 1030 766 1117T760 1257Q705 1118 618 950L446 614H811ZM1157 1579H1005Q929 1642 844 1757Q713 1647 608 1579H444V1604Q582
+1732 645 1799T735 1907H983Q1021 1808 1157 1604V1579Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1210" d="M827 406H342L133 0H-121L662 1464H936L1102 0H868L827 406ZM811 614Q771 1030 766 1117T760 1257Q705 1118 618 950L446 614H811ZM967 1579Q922 1579 885 1596T813 1633T748 1671T684 1688Q646
+1688 621 1661T578 1577H441Q498 1862 697 1862Q743 1862 782 1845T854 1807T918 1769T977 1751Q1017 1751 1042 1777T1090 1864H1227Q1161 1579 967 1579Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1210" d="M827 406H342L133 0H-121L662 1464H936L1102 0H868L827 406ZM811 614Q771 1030 766 1117T760 1257Q705 1118 618 950L446 614H811ZM518 1718Q518 1778 553 1816T651 1854Q699 1854 727 1831T756
+1759Q756 1694 721 1657T627 1620Q580 1620 549 1643T518 1718ZM901 1718Q901 1778 936 1816T1034 1854Q1082 1854 1110 1831T1139 1759Q1139 1694 1104 1657T1010 1620Q963 1620 932 1643T901 1718Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1210" d="M827 406H342L133 0H-121L662 1464H936L1102 0H868L827 406ZM811 614Q771 1030 766 1117T760 1257Q705 1118 618 950L446 614H811ZM1039 1575Q1039 1471 973 1410T801 1348Q695 1348 632 1409T568
+1573Q568 1676 633 1737T801 1799Q905 1799 972 1739T1039 1575ZM908 1573Q908 1623 878 1651T801 1680Q756 1680 727 1652T697 1573Q697 1524 723 1497T801 1469Q848 1469 878 1496T908 1573Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1753" d="M1520 0H743L829 406H397L141 0H-121L809 1462H1829L1786 1257H1247L1163 862H1667L1624 662H1122L1024 203H1563L1520 0ZM872 614L1010 1257H928L528 614H872Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1225" d="M924 1278Q770 1278 649 1189T456 930T383 555Q383 375 465 280T709 184Q850 184 1038 252V47Q858 -20 664 -20Q416 -20 276 128T135 545Q135 805 240 1028T522 1367T924 1483Q1141 1483
+1313 1391L1219 1196Q1156 1230 1085 1254T924 1278ZM791 -264Q791 -370 709 -431T485 -492Q421 -492 367 -477V-342Q414 -356 463 -356Q600 -356 600 -260Q600 -220 565 -199T461 -168L559 0H705L655 -96Q727 -121 759 -163T791 -264Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1077" d="M846 0H70L379 1462H1155L1112 1257H573L489 862H991L950 659H446L350 203H889L846 0ZM903 1579H759Q694 1642 627 1730T526 1886V1907H771Q818 1753 903 1604V1579Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1077" d="M846 0H70L379 1462H1155L1112 1257H573L489 862H991L950 659H446L350 203H889L846 0ZM633 1604Q730 1712 858 1907H1122V1888Q1068 1822 964 1727T789 1579H633V1604Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1077" d="M846 0H70L379 1462H1155L1112 1257H573L489 862H991L950 659H446L350 203H889L846 0ZM1130 1579H978Q902 1642 817 1757Q686 1647 581 1579H417V1604Q555 1732 618 1799T708 1907H956Q994
+1808 1130 1604V1579Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1077" d="M846 0H70L379 1462H1155L1112 1257H573L489 862H991L950 659H446L350 203H889L846 0ZM479 1718Q479 1778 514 1816T612 1854Q660 1854 688 1831T717 1759Q717 1694 682 1657T588 1620Q541
+1620 510 1643T479 1718ZM862 1718Q862 1778 897 1816T995 1854Q1043 1854 1071 1831T1100 1759Q1100 1694 1065 1657T971 1620Q924 1620 893 1643T862 1718Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="608" d="M70 0L381 1462H616L305 0H70ZM630 1579H486Q421 1642 354 1730T253 1886V1907H498Q545 1753 630 1604V1579Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="608" d="M70 0L381 1462H616L305 0H70ZM415 1604Q512 1712 640 1907H904V1888Q850 1822 746 1727T571 1579H415V1604Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="608" d="M70 0L381 1462H616L305 0H70ZM873 1579H721Q645 1642 560 1757Q429 1647 324 1579H160V1604Q298 1732 361 1799T451 1907H699Q737 1808 873 1604V1579Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="608" d="M70 0L381 1462H616L305 0H70ZM243 1718Q243 1778 278 1816T376 1854Q424 1854 452 1831T481 1759Q481 1694 446 1657T352 1620Q305 1620 274 1643T243 1718ZM626 1718Q626 1778 661 1816T759
+1854Q807 1854 835 1831T864 1759Q864 1694 829 1657T735 1620Q688 1620 657 1643T626 1718Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1374" d="M1311 893Q1311 622 1211 420T920 109T471 0H70L199 623H53L98 823H242L379 1462H748Q1019 1462 1165 1317T1311 893ZM483 201Q660 201 792 287T994 529T1065 885Q1065 1069 977 1165T721 1262H575L481
+823H766L721 623H438L348 201H483Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1491" d="M1192 0H932L522 1163H516L506 1094Q482 945 471 882T287 0H68L377 1462H645L1044 313H1051Q1057 367 1082 505T1122 709L1282 1462H1501L1192 0ZM1108 1579Q1063 1579 1026 1596T954 1633T889
+1671T825 1688Q787 1688 762 1661T719 1577H582Q639 1862 838 1862Q884 1862 923 1845T995 1807T1059 1769T1118 1751Q1158 1751 1183 1777T1231 1864H1368Q1302 1579 1108 1579Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1485" d="M1421 922Q1421 643 1326 425T1065 94T678 -20Q419 -20 277 129T135 543Q135 810 233 1030T503 1368T891 1485Q1142 1485 1281 1336T1421 922ZM872 1280Q734 1280 622 1184T447 918T383 545Q383
+372 464 278T692 184Q830 184 940 279T1112 544T1174 920Q1174 1090 1095 1185T872 1280ZM1029 1579H885Q820 1642 753 1730T652 1886V1907H897Q944 1753 1029 1604V1579Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1485" d="M1421 922Q1421 643 1326 425T1065 94T678 -20Q419 -20 277 129T135 543Q135 810 233 1030T503 1368T891 1485Q1142 1485 1281 1336T1421 922ZM872 1280Q734 1280 622 1184T447 918T383 545Q383
+372 464 278T692 184Q830 184 940 279T1112 544T1174 920Q1174 1090 1095 1185T872 1280ZM787 1604Q884 1712 1012 1907H1276V1888Q1222 1822 1118 1727T943 1579H787V1604Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1485" d="M1421 922Q1421 643 1326 425T1065 94T678 -20Q419 -20 277 129T135 543Q135 810 233 1030T503 1368T891 1485Q1142 1485 1281 1336T1421 922ZM872 1280Q734 1280 622 1184T447 918T383
+545Q383 372 464 278T692 184Q830 184 940 279T1112 544T1174 920Q1174 1090 1095 1185T872 1280ZM1268 1579H1116Q1040 1642 955 1757Q824 1647 719 1579H555V1604Q693 1732 756 1799T846 1907H1094Q1132 1808 1268 1604V1579Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1485" d="M1421 922Q1421 643 1326 425T1065 94T678 -20Q419 -20 277 129T135 543Q135 810 233 1030T503 1368T891 1485Q1142 1485 1281 1336T1421 922ZM872 1280Q734 1280 622 1184T447 918T383 545Q383
+372 464 278T692 184Q830 184 940 279T1112 544T1174 920Q1174 1090 1095 1185T872 1280ZM1069 1579Q1024 1579 987 1596T915 1633T850 1671T786 1688Q748 1688 723 1661T680 1577H543Q600 1862 799 1862Q845 1862 884 1845T956 1807T1020 1769T1079 1751Q1119
+1751 1144 1777T1192 1864H1329Q1263 1579 1069 1579Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1485" d="M1421 922Q1421 643 1326 425T1065 94T678 -20Q419 -20 277 129T135 543Q135 810 233 1030T503 1368T891 1485Q1142 1485 1281 1336T1421 922ZM872 1280Q734 1280 622 1184T447 918T383
+545Q383 372 464 278T692 184Q830 184 940 279T1112 544T1174 920Q1174 1090 1095 1185T872 1280ZM623 1718Q623 1778 658 1816T756 1854Q804 1854 832 1831T861 1759Q861 1694 826 1657T732 1620Q685 1620 654 1643T623 1718ZM1006 1718Q1006 1778 1041 1816T1139
+1854Q1187 1854 1215 1831T1244 1759Q1244 1694 1209 1657T1115 1620Q1068 1620 1037 1643T1006 1718Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1128" d="M457 723L147 1034L272 1159L584 850L897 1159L1024 1036L709 723L1020 410L897 287L584 596L272 289L150 412L457 723Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1485" d="M1421 922Q1421 643 1326 425T1065 94T678 -20Q485 -20 360 63L242 -86L109 18L238 178Q135 316 135 543Q135 810 233 1030T503 1368T891 1485Q1080 1485 1208 1391L1327 1540L1460 1436L1327
+1270Q1421 1140 1421 922ZM872 1282Q731 1282 619 1189T442 924T377 545Q377 457 401 381L1069 1217Q989 1282 872 1282ZM1180 920Q1180 1008 1161 1063L500 238Q575 182 694 182Q833 182 944 277T1118 542T1180 920Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1399" d="M1419 1462L1217 506Q1161 239 1009 110T606 -20Q389 -20 271 86T152 391Q152 474 172 561L365 1462H602L410 557Q389 469 389 399Q389 297 448 241T629 184Q774 184 859 264T983 526L1182
+1462H1419ZM996 1579H852Q787 1642 720 1730T619 1886V1907H864Q911 1753 996 1604V1579Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1399" d="M1419 1462L1217 506Q1161 239 1009 110T606 -20Q389 -20 271 86T152 391Q152 474 172 561L365 1462H602L410 557Q389 469 389 399Q389 297 448 241T629 184Q774 184 859 264T983 526L1182
+1462H1419ZM791 1604Q888 1712 1016 1907H1280V1888Q1226 1822 1122 1727T947 1579H791V1604Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1399" d="M1419 1462L1217 506Q1161 239 1009 110T606 -20Q389 -20 271 86T152 391Q152 474 172 561L365 1462H602L410 557Q389 469 389 399Q389 297 448 241T629 184Q774 184 859 264T983 526L1182
+1462H1419ZM1249 1579H1097Q1021 1642 936 1757Q805 1647 700 1579H536V1604Q674 1732 737 1799T827 1907H1075Q1113 1808 1249 1604V1579Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1399" d="M1419 1462L1217 506Q1161 239 1009 110T606 -20Q389 -20 271 86T152 391Q152 474 172 561L365 1462H602L410 557Q389 469 389 399Q389 297 448 241T629 184Q774 184 859 264T983 526L1182
+1462H1419ZM602 1718Q602 1778 637 1816T735 1854Q783 1854 811 1831T840 1759Q840 1694 805 1657T711 1620Q664 1620 633 1643T602 1718ZM985 1718Q985 1778 1020 1816T1118 1854Q1166 1854 1194 1831T1223 1759Q1223 1694 1188 1657T1094 1620Q1047 1620 1016
+1643T985 1718Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1092" d="M582 793L1014 1462H1280L657 549L543 0H305L424 553L186 1462H428L582 793ZM610 1604Q707 1712 835 1907H1099V1888Q1045 1822 941 1727T766 1579H610V1604Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" d="M1124 817Q1124 574 958 440T481 305H373L307 0H70L379 1462H616L565 1219H662Q889 1219 1006 1118T1124 817ZM414 506H510Q686 506 784 584T883 811Q883 920 824 969T643 1018H522L414 506Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1266" d="M-117 -492Q-186 -492 -258 -469V-276Q-197 -297 -145 -297Q-80 -297 -39 -254T25 -106L287 1128Q335 1359 460 1461T809 1563Q997 1563 1101 1483T1206 1268Q1206 1099 1027 969Q909 882
+879 850T848 782Q848 738 922 681Q1029 597 1065 554T1120 462T1139 352Q1139 180 1023 80T709 -20Q527 -20 426 45V246Q552 160 678 160Q783 160 842 204T901 328Q901 376 878 413T766 520Q684 584 645 641T606 768Q606 843 650 907T786 1031Q884 1097 924 1143T965
+1241Q965 1306 918 1342T786 1378Q576 1378 524 1139L260 -121Q218 -318 126 -405T-117 -492Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1186" d="M399 -20Q258 -20 176 81T94 367Q94 569 163 745T355 1023T623 1126Q720 1126 790 1081T899 948H909L971 1106H1151L915 0H733L754 176H748Q590 -20 399 -20ZM485 170Q567 170 646 247T776
+455T827 739Q827 827 780 880T657 934Q572 934 497 857T377 648T332 373Q332 271 372 221T485 170ZM1103 1241H959Q894 1304 827 1392T726 1548V1569H971Q1018 1415 1103 1266V1241Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1186" d="M399 -20Q258 -20 176 81T94 367Q94 569 163 745T355 1023T623 1126Q720 1126 790 1081T899 948H909L971 1106H1151L915 0H733L754 176H748Q590 -20 399 -20ZM485 170Q567 170 646 247T776
+455T827 739Q827 827 780 880T657 934Q572 934 497 857T377 648T332 373Q332 271 372 221T485 170ZM598 1266Q695 1374 823 1569H1087V1550Q1033 1484 929 1389T754 1241H598V1266Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1186" d="M399 -20Q258 -20 176 81T94 367Q94 569 163 745T355 1023T623 1126Q720 1126 790 1081T899 948H909L971 1106H1151L915 0H733L754 176H748Q590 -20 399 -20ZM485 170Q567 170 646 247T776
+455T827 739Q827 827 780 880T657 934Q572 934 497 857T377 648T332 373Q332 271 372 221T485 170ZM1320 1241H1168Q1092 1304 1007 1419Q876 1309 771 1241H607V1266Q745 1394 808 1461T898 1569H1146Q1184 1470 1320 1266V1241Z" />
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1186" d="M399 -20Q258 -20 176 81T94 367Q94 569 163 745T355 1023T623 1126Q720 1126 790 1081T899 948H909L971 1106H1151L915 0H733L754 176H748Q590 -20 399 -20ZM485 170Q567 170 646 247T776
+455T827 739Q827 827 780 880T657 934Q572 934 497 857T377 648T332 373Q332 271 372 221T485 170ZM870 1241Q825 1241 788 1258T716 1295T651 1333T587 1350Q549 1350 524 1323T481 1239H344Q401 1524 600 1524Q646 1524 685 1507T757 1469T821 1431T880 1413Q920
+1413 945 1439T993 1526H1130Q1064 1241 870 1241Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1186" d="M399 -20Q258 -20 176 81T94 367Q94 569 163 745T355 1023T623 1126Q720 1126 790 1081T899 948H909L971 1106H1151L915 0H733L754 176H748Q590 -20 399 -20ZM485 170Q567 170 646 247T776
+455T827 739Q827 827 780 880T657 934Q572 934 497 857T377 648T332 373Q332 271 372 221T485 170ZM681 1380Q681 1440 716 1478T814 1516Q862 1516 890 1493T919 1421Q919 1356 884 1319T790 1282Q743 1282 712 1305T681 1380ZM1064 1380Q1064 1440 1099 1478T1197
+1516Q1245 1516 1273 1493T1302 1421Q1302 1356 1267 1319T1173 1282Q1126 1282 1095 1305T1064 1380Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1186" d="M399 -20Q258 -20 176 81T94 367Q94 569 163 745T355 1023T623 1126Q720 1126 790 1081T899 948H909L971 1106H1151L915 0H733L754 176H748Q590 -20 399 -20ZM485 170Q567 170 646 247T776 455T827
+739Q827 827 780 880T657 934Q572 934 497 857T377 648T332 373Q332 271 372 221T485 170ZM1244 1466Q1244 1362 1178 1301T1006 1239Q900 1239 837 1300T773 1464Q773 1567 838 1628T1006 1690Q1110 1690 1177 1630T1244 1466ZM1113 1464Q1113 1514 1083 1542T1006
+1571Q961 1571 932 1543T902 1464Q902 1415 928 1388T1006 1360Q1053 1360 1083 1387T1113 1464Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1726" d="M1186 -20Q964 -20 881 117L858 0H707L727 176H719Q634 70 554 25T379 -20Q245 -20 170 83T94 367Q94 568 163 745T351 1024T612 1126Q700 1126 764 1083T872 948H881L944 1106H1092L1067 989Q1118
+1052 1198 1089T1378 1126Q1518 1126 1598 1050T1679 848Q1679 666 1513 564T1038 461H993L989 401Q989 284 1049 224T1225 164Q1350 164 1530 248V59Q1355 -20 1186 -20ZM465 170Q550 170 627 250T753 466T801 733Q801 824 763 879T649 934Q564 934 490 854T374
+643T332 373Q332 268 369 219T465 170ZM1333 946Q1230 946 1145 860T1022 633H1053Q1240 633 1346 686T1452 836Q1452 894 1418 920T1333 946Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="954" d="M506 -20Q310 -20 202 86T94 389Q94 596 167 765T374 1030T676 1126Q840 1126 973 1065L903 881Q781 934 682 934Q532 934 432 781T332 401Q332 290 388 230T543 170Q617 170 681 192T811
+246V51Q671 -20 506 -20ZM621 -264Q621 -370 539 -431T315 -492Q251 -492 197 -477V-342Q244 -356 293 -356Q430 -356 430 -260Q430 -220 395 -199T291 -168L389 0H535L485 -96Q557 -121 589 -163T621 -264Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1075" d="M664 946Q568 946 484 860T362 633H391Q579 633 685 686T791 838Q791 889 759 917T664 946ZM512 -20Q315 -20 205 91T94 401Q94 599 171 769T381 1033T678 1126Q839 1126 928 1054T1018 848Q1018
+666 852 564T377 461H334L332 430V401Q332 290 388 227T557 164Q629 164 700 183T868 248V61Q772 17 692 -1T512 -20ZM1069 1241H925Q860 1304 793 1392T692 1548V1569H937Q984 1415 1069 1266V1241Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1075" d="M664 946Q568 946 484 860T362 633H391Q579 633 685 686T791 838Q791 889 759 917T664 946ZM512 -20Q315 -20 205 91T94 401Q94 599 171 769T381 1033T678 1126Q839 1126 928 1054T1018 848Q1018
+666 852 564T377 461H334L332 430V401Q332 290 388 227T557 164Q629 164 700 183T868 248V61Q772 17 692 -1T512 -20ZM557 1266Q654 1374 782 1569H1046V1550Q992 1484 888 1389T713 1241H557V1266Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1075" d="M664 946Q568 946 484 860T362 633H391Q579 633 685 686T791 838Q791 889 759 917T664 946ZM512 -20Q315 -20 205 91T94 401Q94 599 171 769T381 1033T678 1126Q839 1126 928 1054T1018
+848Q1018 666 852 564T377 461H334L332 430V401Q332 290 388 227T557 164Q629 164 700 183T868 248V61Q772 17 692 -1T512 -20ZM1289 1241H1137Q1061 1304 976 1419Q845 1309 740 1241H576V1266Q714 1394 777 1461T867 1569H1115Q1153 1470 1289 1266V1241Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1075" d="M664 946Q568 946 484 860T362 633H391Q579 633 685 686T791 838Q791 889 759 917T664 946ZM512 -20Q315 -20 205 91T94 401Q94 599 171 769T381 1033T678 1126Q839 1126 928 1054T1018
+848Q1018 666 852 564T377 461H334L332 430V401Q332 290 388 227T557 164Q629 164 700 183T868 248V61Q772 17 692 -1T512 -20ZM644 1380Q644 1440 679 1478T777 1516Q825 1516 853 1493T882 1421Q882 1356 847 1319T753 1282Q706 1282 675 1305T644 1380ZM1027
+1380Q1027 1440 1062 1478T1160 1516Q1208 1516 1236 1493T1265 1421Q1265 1356 1230 1319T1136 1282Q1089 1282 1058 1305T1027 1380Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="563" d="M283 0H47L283 1106H518L283 0ZM536 1241H392Q327 1304 260 1392T159 1548V1569H404Q451 1415 536 1266V1241Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="563" d="M283 0H47L283 1106H518L283 0ZM308 1266Q405 1374 533 1569H797V1550Q743 1484 639 1389T464 1241H308V1266Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="563" d="M283 0H47L283 1106H518L283 0ZM777 1241H625Q549 1304 464 1419Q333 1309 228 1241H64V1266Q202 1394 265 1461T355 1569H603Q641 1470 777 1266V1241Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="563" d="M283 0H47L283 1106H518L283 0ZM142 1380Q142 1440 177 1478T275 1516Q323 1516 351 1493T380 1421Q380 1356 345 1319T251 1282Q204 1282 173 1305T142 1380ZM525 1380Q525 1440 560 1478T658
+1516Q706 1516 734 1493T763 1421Q763 1356 728 1319T634 1282Q587 1282 556 1305T525 1380Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" d="M647 1325Q603 1366 512 1421L618 1573Q747 1501 827 1427L1077 1565L1147 1438L930 1317Q1085 1112 1085 805Q1085 550 1012 361T808 76T496 -20Q299 -20 190 87T80 389Q80 551 145 688T330 903T596 981Q692 981
+764 943T877 834H883Q873 1077 750 1217L500 1075L428 1204L647 1325ZM508 162Q600 162 669 221T778 380T817 586Q817 683 765 741T621 799Q530 799 461 743T354 590T317 377Q317 273 366 218T508 162Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1208" d="M702 0L844 672Q862 762 862 803Q862 934 733 934Q661 934 591 877T465 713T381 469L283 0H47L283 1106H467L446 901H455Q538 1019 626 1072T817 1126Q951 1126 1024 1050T1098 834Q1098 765
+1075 653L938 0H702ZM889 1241Q844 1241 807 1258T735 1295T670 1333T606 1350Q568 1350 543 1323T500 1239H363Q420 1524 619 1524Q665 1524 704 1507T776 1469T840 1431T899 1413Q939 1413 964 1439T1012 1526H1149Q1083 1241 889 1241Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" d="M842 702Q842 809 793 869T653 930Q560 930 487 859T373 665T332 403Q332 292 381 233T528 174Q618 174 690 242T802 432T842 702ZM1079 692Q1079 490 1006 325T806 71T512 -18Q320 -18 207 96T94 408Q94 607 165
+773T366 1031T664 1124Q859 1124 969 1008T1079 692ZM1077 1241H933Q868 1304 801 1392T700 1548V1569H945Q992 1415 1077 1266V1241Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" d="M842 702Q842 809 793 869T653 930Q560 930 487 859T373 665T332 403Q332 292 381 233T528 174Q618 174 690 242T802 432T842 702ZM1079 692Q1079 490 1006 325T806 71T512 -18Q320 -18 207 96T94 408Q94 607 165
+773T366 1031T664 1124Q859 1124 969 1008T1079 692ZM580 1266Q677 1374 805 1569H1069V1550Q1015 1484 911 1389T736 1241H580V1266Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" d="M842 702Q842 809 793 869T653 930Q560 930 487 859T373 665T332 403Q332 292 381 233T528 174Q618 174 690 242T802 432T842 702ZM1079 692Q1079 490 1006 325T806 71T512 -18Q320 -18 207 96T94 408Q94
+607 165 773T366 1031T664 1124Q859 1124 969 1008T1079 692ZM1310 1241H1158Q1082 1304 997 1419Q866 1309 761 1241H597V1266Q735 1394 798 1461T888 1569H1136Q1174 1470 1310 1266V1241Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" d="M842 702Q842 809 793 869T653 930Q560 930 487 859T373 665T332 403Q332 292 381 233T528 174Q618 174 690 242T802 432T842 702ZM1079 692Q1079 490 1006 325T806 71T512 -18Q320 -18 207 96T94 408Q94 607 165
+773T366 1031T664 1124Q859 1124 969 1008T1079 692ZM854 1241Q809 1241 772 1258T700 1295T635 1333T571 1350Q533 1350 508 1323T465 1239H328Q385 1524 584 1524Q630 1524 669 1507T741 1469T805 1431T864 1413Q904 1413 929 1439T977 1526H1114Q1048 1241 854
+1241Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" d="M842 702Q842 809 793 869T653 930Q560 930 487 859T373 665T332 403Q332 292 381 233T528 174Q618 174 690 242T802 432T842 702ZM1079 692Q1079 490 1006 325T806 71T512 -18Q320 -18 207 96T94 408Q94 607
+165 773T366 1031T664 1124Q859 1124 969 1008T1079 692ZM665 1380Q665 1440 700 1478T798 1516Q846 1516 874 1493T903 1421Q903 1356 868 1319T774 1282Q727 1282 696 1305T665 1380ZM1048 1380Q1048 1440 1083 1478T1181 1516Q1229 1516 1257 1493T1286 1421Q1286
+1356 1251 1319T1157 1282Q1110 1282 1079 1305T1048 1380Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1128" d="M117 631V811H1053V631H117ZM459 373Q459 437 490 472T584 508Q646 508 678 472T711 373Q711 309 677 273T584 236Q526 236 493 271T459 373ZM459 1071Q459 1135 490 1170T584 1206Q646 1206
+678 1170T711 1071Q711 1007 677 971T584 934Q526 934 493 969T459 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" d="M1077 700Q1077 492 1003 324T803 69T514 -18Q377 -18 279 41L174 -90L51 6L166 147Q96 251 96 408Q96 608 166 773T366 1031T664 1124Q800 1124 903 1063L989 1171L1114 1075L1014 958Q1077 858 1077 700ZM653
+936Q512 936 418 791T324 426Q324 387 332 352L774 901Q729 936 653 936ZM528 168Q617 168 691 234T807 418T850 676Q850 721 844 743L408 201Q449 168 528 168Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1208" d="M506 1106L377 496Q346 355 346 303Q346 170 473 170Q545 170 616 227T742 389T827 637L926 1106H1159L926 0H741L762 205H754Q672 89 583 35T391 -20Q257 -20 184 56T111 274Q111 337 123
+398T147 522L270 1106H506ZM1079 1241H935Q870 1304 803 1392T702 1548V1569H947Q994 1415 1079 1266V1241Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1208" d="M506 1106L377 496Q346 355 346 303Q346 170 473 170Q545 170 616 227T742 389T827 637L926 1106H1159L926 0H741L762 205H754Q672 89 583 35T391 -20Q257 -20 184 56T111 274Q111 337 123
+398T147 522L270 1106H506ZM623 1266Q720 1374 848 1569H1112V1550Q1058 1484 954 1389T779 1241H623V1266Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1208" d="M506 1106L377 496Q346 355 346 303Q346 170 473 170Q545 170 616 227T742 389T827 637L926 1106H1159L926 0H741L762 205H754Q672 89 583 35T391 -20Q257 -20 184 56T111 274Q111 337
+123 398T147 522L270 1106H506ZM1083 1241H931Q855 1304 770 1419Q639 1309 534 1241H370V1266Q508 1394 571 1461T661 1569H909Q947 1470 1083 1266V1241Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1208" d="M506 1106L377 496Q346 355 346 303Q346 170 473 170Q545 170 616 227T742 389T827 637L926 1106H1159L926 0H741L762 205H754Q672 89 583 35T391 -20Q257 -20 184 56T111 274Q111 337 123
+398T147 522L270 1106H506ZM432 1380Q432 1440 467 1478T565 1516Q613 1516 641 1493T670 1421Q670 1356 635 1319T541 1282Q494 1282 463 1305T432 1380ZM815 1380Q815 1440 850 1478T948 1516Q996 1516 1024 1493T1053 1421Q1053 1356 1018 1319T924 1282Q877
+1282 846 1305T815 1380Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1004" d="M100 1106H332L395 575Q404 513 411 401T418 219H424Q510 434 559 532L852 1106H1106L418 -174Q328 -339 222 -415T-27 -492Q-103 -492 -170 -473V-285Q-95 -301 -45 -301Q29 -301 89 -258T213
+-102L264 -10L100 1106ZM757 1266Q854 1374 982 1569H1246V1550Q1192 1484 1088 1389T913 1241H757V1266Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1200" d="M586 -20Q492 -20 421 25T307 156H299Q292 65 274 -29L178 -492H-55L377 1556H612Q564 1333 539 1217T463 926H471Q626 1126 799 1126Q943 1126 1023 1024T1104 737Q1104 533 1036 356T852 79T586
+-20ZM707 934Q623 934 544 853T417 640T369 373Q369 275 415 223T547 170Q633 170 706 247T823 456T866 733Q866 833 825 883T707 934Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1004" d="M100 1106H332L395 575Q404 513 411 401T418 219H424Q510 434 559 532L852 1106H1106L418 -174Q328 -339 222 -415T-27 -492Q-103 -492 -170 -473V-285Q-95 -301 -45 -301Q29 -301 89 -258T213
+-102L264 -10L100 1106ZM579 1380Q579 1440 614 1478T712 1516Q760 1516 788 1493T817 1421Q817 1356 782 1319T688 1282Q641 1282 610 1305T579 1380ZM962 1380Q962 1440 997 1478T1095 1516Q1143 1516 1171 1493T1200 1421Q1200 1356 1165 1319T1071 1282Q1024
+1282 993 1305T962 1380Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="983" d="M47 453L90 647H928L885 453H47Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="1966" d="M47 453L90 647H1911L1868 453H47Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="393" d="M125 961L119 983Q153 1059 225 1192T385 1462H561Q439 1176 362 961H125Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="393" d="M551 1462L559 1440Q522 1357 449 1223T293 961H115Q158 1056 221 1216T313 1462H551Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="530" d="M334 238L342 215Q234 -18 76 -264H-102Q3 -26 98 238H334Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="803" d="M535 961L526 983Q610 1173 793 1462H969Q847 1176 770 961H535ZM125 961L119 983Q153 1059 225 1192T385 1462H561Q439 1176 362 961H125Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="803" d="M551 1462L559 1440Q522 1357 449 1223T293 961H115Q158 1056 221 1216T313 1462H551ZM958 1462L967 1440Q869 1220 698 961H522Q573 1075 631 1222T721 1462H958Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="938" d="M334 238L342 215Q234 -18 76 -264H-102Q3 -26 98 238H334ZM741 238L750 215Q658 9 483 -264H307Q427 17 506 238H741Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="756" d="M152 684Q152 840 235 936T459 1032Q559 1032 617 978T676 809Q676 653 594 557T367 461Q265 461 209 518T152 684Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="621" d="M80 573L475 995L610 877L322 543L475 176L297 100L80 549V573Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="621" d="M541 514L145 92L10 211L299 545L145 911L324 987L541 539V514Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.ttf b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.ttf
new file mode 100644
index 0000000..59b6d16
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.ttf differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.woff b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.woff
new file mode 100644
index 0000000..5431477
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.woff differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.woff2 b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.woff2
new file mode 100644
index 0000000..2d20d77
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-SemiboldItalic-webfont.woff2 differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.eot b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.eot
new file mode 100644
index 0000000..5cf668d
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.eot differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.svg
new file mode 100644
index 0000000..81fdf89
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.svg
@@ -0,0 +1,19030 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg">
+<defs >
+<font id="OpenSans" horiz-adv-x="1250" ><font-face
+    font-family="Open Sans Semibold"
+    units-per-em="2048"
+    panose-1="2 11 7 6 3 8 4 2 2 4"
+    ascent="2189"
+    descent="-600"
+    alphabetic="0" />
+<glyph unicode=" " glyph-name="space" horiz-adv-x="532" />
+<glyph unicode="!" glyph-name="exclam" horiz-adv-x="565" d="M371 444H197L145 1462H422L371 444ZM133 125Q133 199 172 237T283 276Q354 276 392 236T430 125Q430 54 392 13T283 -29Q212 -29 173 11T133 125Z" />
+<glyph unicode="&quot;" glyph-name="quotedbl" horiz-adv-x="893" d="M365 1462L324 934H174L133 1462H365ZM760 1462L719 934H569L528 1462H760Z" />
+<glyph unicode="#" glyph-name="numbersign" horiz-adv-x="1323" d="M989 870L934 586H1204V418H901L821 0H643L723 418H475L395 0H221L297 418H47V586H330L387 870H123V1038H416L496 1460H676L596 1038H848L928 1460H1102L1022 1038H1274V870H989ZM506 586H756L813
+870H563L506 586Z" />
+<glyph unicode="$" glyph-name="dollar" horiz-adv-x="1169" d="M1063 453Q1063 308 957 214T651 98V-119H518V92Q270 96 111 168V379Q197 337 312 309T518 279V653L434 684Q270 747 195 834T119 1051Q119 1189 226 1278T518 1386V1554H651V1389Q854 1382 1036
+1307L963 1124Q806 1186 651 1198V834L727 805Q917 732 990 651T1063 453ZM827 438Q827 496 787 533T651 606V287Q827 314 827 438ZM354 1053Q354 996 389 958T518 883V1194Q438 1182 396 1145T354 1053Z" />
+<glyph unicode="%" glyph-name="percent" horiz-adv-x="1765" d="M279 1024Q279 875 308 802T403 729Q535 729 535 1024Q535 1319 403 1319Q337 1319 308 1246T279 1024ZM729 1026Q729 796 647 681T403 565Q251 565 168 684T84 1026Q84 1483 403 1483Q560 1483
+644 1365T729 1026ZM1231 440Q1231 291 1260 217T1356 143Q1487 143 1487 440Q1487 733 1356 733Q1290 733 1261 661T1231 440ZM1681 440Q1681 210 1598 95T1356 -20Q1204 -20 1120 98T1036 440Q1036 897 1356 897Q1510 897 1595 779T1681 440ZM1384 1462L573 0H379L1190
+1462H1384Z" />
+<glyph unicode="&amp;" glyph-name="ampersand" horiz-adv-x="1516" d="M451 1147Q451 1084 484 1028T578 909Q691 973 736 1028T782 1153Q782 1218 739 1257T623 1296Q544 1296 498 1256T451 1147ZM600 182Q783 182 913 289L530 666Q424 598 384 539T344 403Q344
+305 413 244T600 182ZM96 387Q96 518 160 615T391 809Q296 920 262 996T227 1155Q227 1307 335 1395T627 1483Q804 1483 905 1398T1006 1167Q1006 1053 939 960T713 774L1059 440Q1140 547 1194 754H1436Q1366 470 1212 291L1513 0H1210L1061 145Q959 63 844 22T588
+-20Q358 -20 227 89T96 387Z" />
+<glyph unicode="&apos;" glyph-name="quotesingle" horiz-adv-x="498" d="M365 1462L324 934H174L133 1462H365Z" />
+<glyph unicode="(" glyph-name="parenleft" horiz-adv-x="649" d="M82 561Q82 826 159 1057T383 1462H588Q449 1274 375 1041T301 563Q301 319 375 90T586 -324H383Q236 -154 159 73T82 561Z" />
+<glyph unicode=")" glyph-name="parenright" horiz-adv-x="649" d="M567 561Q567 298 490 71T266 -324H63Q201 -137 274 91T348 563Q348 808 274 1040T61 1462H266Q413 1287 490 1056T567 561Z" />
+<glyph unicode="*" glyph-name="asterisk" horiz-adv-x="1122" d="M672 1556L631 1174L1016 1282L1044 1065L684 1036L920 725L721 618L555 956L406 618L201 725L432 1036L74 1065L109 1282L485 1174L444 1556H672Z" />
+<glyph unicode="+" glyph-name="plus" horiz-adv-x="1169" d="M494 633H96V811H494V1219H674V811H1073V633H674V227H494V633Z" />
+<glyph unicode="," glyph-name="comma" horiz-adv-x="547" d="M412 215Q364 29 236 -264H63Q132 6 166 238H397L412 215Z" />
+<glyph unicode="-" glyph-name="hyphen" horiz-adv-x="659" d="M72 449V649H586V449H72Z" />
+<glyph unicode="." glyph-name="period" horiz-adv-x="563" d="M133 125Q133 198 171 237T281 276Q354 276 392 236T430 125Q430 54 392 13T281 -29Q209 -29 171 12T133 125Z" />
+<glyph unicode="/" glyph-name="slash" horiz-adv-x="799" d="M782 1462L238 0H16L561 1462H782Z" />
+<glyph unicode="0" glyph-name="zero" horiz-adv-x="1169" d="M1081 731Q1081 350 959 165T584 -20Q340 -20 214 171T88 731Q88 1118 210 1301T584 1485Q829 1485 955 1293T1081 731ZM326 731Q326 432 387 304T584 176Q719 176 781 306T844 731Q844 1025 782 1156T584
+1288Q449 1288 388 1159T326 731Z" />
+<glyph unicode="1" glyph-name="one" horiz-adv-x="1169" d="M780 0H545V944Q545 1113 553 1212Q530 1188 497 1159T272 975L154 1124L584 1462H780V0Z" />
+<glyph unicode="2" glyph-name="two" horiz-adv-x="1169" d="M1081 0H90V178L467 557Q634 728 688 799T768 934T793 1069Q793 1168 734 1225T569 1282Q485 1282 407 1251T225 1139L98 1294Q220 1397 335 1440T580 1483Q784 1483 907 1377T1030 1090Q1030 991 995
+902T886 719T641 463L387 217V207H1081V0Z" />
+<glyph unicode="3" glyph-name="three" horiz-adv-x="1169" d="M1026 1126Q1026 987 945 895T717 770V762Q893 740 981 653T1069 420Q1069 209 920 95T496 -20Q253 -20 86 59V268Q179 222 283 197T483 172Q653 172 737 235T821 430Q821 547 728 602T436 657H309V848H438Q788
+848 788 1090Q788 1184 727 1235T547 1286Q464 1286 387 1263T205 1171L90 1335Q291 1483 557 1483Q778 1483 902 1388T1026 1126Z" />
+<glyph unicode="4" glyph-name="four" horiz-adv-x="1169" d="M1133 319H936V0H707V319H39V500L707 1466H936V514H1133V319ZM707 514V881Q707 1077 717 1202H709Q681 1136 621 1042L258 514H707Z" />
+<glyph unicode="5" glyph-name="five" horiz-adv-x="1169" d="M586 913Q807 913 936 796T1065 477Q1065 243 919 112T502 -20Q257 -20 117 59V272Q198 226 303 201T498 176Q657 176 740 247T823 455Q823 717 489 717Q442 717 373 708T252 686L147 748L203 1462H963V1253H410L377
+891Q412 897 462 905T586 913Z" />
+<glyph unicode="6" glyph-name="six" horiz-adv-x="1169" d="M94 623Q94 1481 793 1481Q903 1481 979 1464V1268Q903 1290 803 1290Q568 1290 450 1164T322 760H334Q381 841 466 885T666 930Q865 930 976 808T1087 477Q1087 247 959 114T608 -20Q451 -20 335 55T157
+275T94 623ZM604 174Q725 174 790 252T856 475Q856 601 795 673T610 745Q534 745 470 713T369 624T332 508Q332 367 408 271T604 174Z" />
+<glyph unicode="7" glyph-name="seven" horiz-adv-x="1169" d="M256 0L834 1253H74V1460H1085V1296L510 0H256Z" />
+<glyph unicode="8" glyph-name="eight" horiz-adv-x="1169" d="M584 1481Q792 1481 913 1386T1034 1130Q1034 905 764 772Q936 686 1008 591T1081 379Q1081 198 948 89T588 -20Q350 -20 219 82T88 371Q88 493 156 590T381 764Q247 844 190 933T133 1133Q133 1292
+258 1386T584 1481ZM313 379Q313 275 386 218T584 160Q713 160 784 219T856 381Q856 462 790 529T590 653L561 666Q429 608 371 539T313 379ZM582 1300Q482 1300 421 1251T360 1116Q360 1064 382 1023T446 949T588 868Q708 921 757 979T807 1116Q807 1201 746 1250T582
+1300Z" />
+<glyph unicode="9" glyph-name="nine" horiz-adv-x="1169" d="M1079 838Q1079 406 905 193T381 -20Q248 -20 190 -4V193Q279 168 369 168Q607 168 724 296T852 698H840Q781 608 698 568T502 528Q308 528 197 649T86 981Q86 1210 214 1345T565 1481Q721 1481 837
+1405T1016 1185T1079 838ZM569 1286Q447 1286 382 1207T317 983Q317 858 377 787T561 715Q680 715 761 786T842 952Q842 1041 808 1118T711 1241T569 1286Z" />
+<glyph unicode=":" glyph-name="colon" horiz-adv-x="563" d="M133 125Q133 198 171 237T281 276Q354 276 392 236T430 125Q430 54 392 13T281 -29Q209 -29 171 12T133 125ZM133 979Q133 1130 281 1130Q356 1130 393 1090T430 979Q430 908 392 867T281 825Q209
+825 171 866T133 979Z" />
+<glyph unicode=";" glyph-name="semicolon" horiz-adv-x="569" d="M397 238L412 215Q364 29 236 -264H63Q132 6 166 238H397ZM131 979Q131 1130 279 1130Q354 1130 391 1090T428 979Q428 908 390 867T279 825Q207 825 169 866T131 979Z" />
+<glyph unicode="&lt;" glyph-name="less" horiz-adv-x="1169" d="M1073 221L96 651V772L1073 1260V1065L340 721L1073 418V221Z" />
+<glyph unicode="=" glyph-name="equal" horiz-adv-x="1169" d="M102 831V1010H1065V831H102ZM102 432V610H1065V432H102Z" />
+<glyph unicode="&gt;" glyph-name="greater" horiz-adv-x="1169" d="M96 418L829 721L96 1065V1260L1073 772V651L96 221V418Z" />
+<glyph unicode="?" glyph-name="question" horiz-adv-x="928" d="M283 444V508Q283 618 323 691T463 842Q582 936 616 988T651 1112Q651 1196 595 1241T434 1286Q339 1286 258 1259T100 1194L16 1370Q219 1483 451 1483Q647 1483 762 1387T877 1122Q877 1047 855
+989T789 877T635 739Q542 666 511 618T479 489V444H283ZM242 125Q242 276 389 276Q461 276 499 237T537 125Q537 54 499 13T389 -29Q318 -29 280 11T242 125Z" />
+<glyph unicode="@" glyph-name="at" horiz-adv-x="1839" d="M1726 739Q1726 596 1681 478T1555 293T1366 227Q1287 227 1229 269T1151 383H1139Q1090 305 1018 266T856 227Q693 227 600 332T506 616Q506 822 630 950T963 1079Q1039 1079 1131 1066T1296 1028L1274
+563V539Q1274 379 1378 379Q1457 379 1503 481T1550 741Q1550 912 1480 1041T1281 1241T985 1311Q772 1311 615 1223T374 972T291 592Q291 302 446 146T891 -10Q1112 -10 1352 80V-84Q1142 -170 895 -170Q525 -170 318 29T111 586Q111 847 223 1050T533 1362T983
+1470Q1200 1470 1369 1380T1632 1124T1726 739ZM698 612Q698 379 881 379Q1074 379 1092 672L1104 911Q1041 928 969 928Q841 928 770 843T698 612Z" />
+<glyph unicode="A" glyph-name="A" horiz-adv-x="1354" d="M1100 0L954 406H395L252 0H0L547 1468H807L1354 0H1100ZM891 612L754 1010Q739 1050 713 1136T676 1262Q649 1139 597 993L465 612H891Z" />
+<glyph unicode="B" glyph-name="B" horiz-adv-x="1352" d="M193 1462H627Q929 1462 1063 1374T1198 1096Q1198 968 1132 883T942 776V766Q1096 737 1168 652T1241 420Q1241 223 1104 112T721 0H193V1462ZM432 858H662Q812 858 881 905T950 1067Q950 1170 876 1216T639
+1262H432V858ZM432 664V201H686Q836 201 912 258T989 440Q989 554 911 609T674 664H432Z" />
+<glyph unicode="C" glyph-name="C" horiz-adv-x="1298" d="M815 1278Q609 1278 491 1132T373 729Q373 460 486 322T815 184Q908 184 995 202T1176 250V45Q1004 -20 786 -20Q465 -20 293 174T121 731Q121 959 204 1130T446 1392T817 1483Q1041 1483 1231 1389L1145
+1190Q1071 1225 989 1251T815 1278Z" />
+<glyph unicode="D" glyph-name="D" horiz-adv-x="1503" d="M1382 745Q1382 383 1181 192T602 0H193V1462H645Q994 1462 1188 1274T1382 745ZM1130 737Q1130 1262 639 1262H432V201H602Q1130 201 1130 737Z" />
+<glyph unicode="E" glyph-name="E" horiz-adv-x="1143" d="M1020 0H193V1462H1020V1260H432V862H983V662H432V203H1020V0Z" />
+<glyph unicode="F" glyph-name="F" horiz-adv-x="1090" d="M430 0H193V1462H1018V1260H430V803H981V600H430V0Z" />
+<glyph unicode="G" glyph-name="G" horiz-adv-x="1487" d="M791 793H1329V59Q1197 16 1076 -2T813 -20Q481 -20 301 176T121 731Q121 1084 324 1283T883 1483Q1112 1483 1317 1395L1233 1196Q1055 1278 877 1278Q643 1278 507 1131T371 729Q371 461 493 322T846
+182Q962 182 1094 211V588H791V793Z" />
+<glyph unicode="H" glyph-name="H" horiz-adv-x="1538" d="M1346 0H1106V659H432V0H193V1462H432V864H1106V1462H1346V0Z" />
+<glyph unicode="I" glyph-name="I" horiz-adv-x="625" d="M193 0V1462H432V0H193Z" />
+<glyph unicode="J" glyph-name="J" horiz-adv-x="612" d="M8 -408Q-90 -408 -156 -383V-182Q-72 -203 -10 -203Q186 -203 186 45V1462H426V53Q426 -171 320 -289T8 -408Z" />
+<glyph unicode="K" glyph-name="K" horiz-adv-x="1309" d="M1309 0H1032L573 662L432 547V0H193V1462H432V764Q530 884 627 995L1022 1462H1294Q911 1012 745 821L1309 0Z" />
+<glyph unicode="L" glyph-name="L" horiz-adv-x="1110" d="M193 0V1462H432V205H1051V0H193Z" />
+<glyph unicode="M" glyph-name="M" horiz-adv-x="1890" d="M825 0L401 1221H393Q410 949 410 711V0H193V1462H530L936 299H942L1360 1462H1698V0H1468V723Q1468 832 1473 1007T1483 1219H1475L1036 0H825Z" />
+<glyph unicode="N" glyph-name="N" horiz-adv-x="1604" d="M1411 0H1118L399 1165H391L396 1100Q410 914 410 760V0H193V1462H483L1200 303H1206Q1204 326 1198 470T1192 696V1462H1411V0Z" />
+<glyph unicode="O" glyph-name="O" horiz-adv-x="1612" d="M1491 733Q1491 376 1313 178T807 -20Q476 -20 299 176T121 735Q121 1097 299 1291T809 1485Q1135 1485 1313 1288T1491 733ZM375 733Q375 463 484 324T807 184Q1020 184 1128 322T1237 733Q1237 1002
+1130 1141T809 1280Q594 1280 485 1141T375 733Z" />
+<glyph unicode="P" glyph-name="P" horiz-adv-x="1260" d="M1161 1020Q1161 791 1011 669T584 547H432V0H193V1462H614Q888 1462 1024 1350T1161 1020ZM432 748H559Q743 748 829 812T915 1012Q915 1138 838 1200T598 1262H432V748Z" />
+<glyph unicode="Q" glyph-name="Q" horiz-adv-x="1612" d="M1491 733Q1491 467 1390 285T1094 29L1444 -348H1122L846 -20H807Q476 -20 299 176T121 735Q121 1097 299 1291T809 1485Q1135 1485 1313 1288T1491 733ZM375 733Q375 463 484 324T807 184Q1020 184
+1128 322T1237 733Q1237 1002 1130 1141T809 1280Q594 1280 485 1141T375 733Z" />
+<glyph unicode="R" glyph-name="R" horiz-adv-x="1309" d="M432 782H598Q765 782 840 844T915 1028Q915 1152 834 1206T590 1260H432V782ZM432 584V0H193V1462H606Q889 1462 1025 1356T1161 1036Q1161 763 877 647L1290 0H1018L668 584H432Z" />
+<glyph unicode="S" glyph-name="S" horiz-adv-x="1126" d="M1036 397Q1036 202 895 91T506 -20Q258 -20 100 57V283Q200 236 312 209T522 182Q664 182 731 236T799 381Q799 463 737 520T481 655Q281 736 199 840T117 1090Q117 1273 247 1378T596 1483Q806 1483
+1014 1391L938 1196Q743 1278 590 1278Q474 1278 414 1228T354 1094Q354 1037 378 997T457 920T655 825Q816 758 891 700T1001 569T1036 397Z" />
+<glyph unicode="T" glyph-name="T" horiz-adv-x="1159" d="M698 0H459V1257H29V1462H1128V1257H698V0Z" />
+<glyph unicode="U" glyph-name="U" horiz-adv-x="1520" d="M1339 1462V516Q1339 354 1270 233T1069 46T754 -20Q482 -20 331 124T180 520V1462H420V537Q420 356 504 270T762 184Q1100 184 1100 539V1462H1339Z" />
+<glyph unicode="V" glyph-name="V" horiz-adv-x="1274" d="M1026 1462H1274L762 0H510L0 1462H246L551 553Q575 488 602 386T637 233Q650 309 677 409T721 557L1026 1462Z" />
+<glyph unicode="W" glyph-name="W" horiz-adv-x="1937" d="M1542 0H1282L1034 872Q1018 929 994 1036T965 1186Q955 1122 933 1020T895 868L653 0H393L204 732L12 1462H256L465 610Q514 405 535 248Q546 333 568 438T608 608L846 1462H1083L1327 604Q1362 485
+1401 248Q1416 391 1473 612L1681 1462H1923L1542 0Z" />
+<glyph unicode="X" glyph-name="X" horiz-adv-x="1274" d="M1270 0H995L629 598L260 0H4L489 758L35 1462H301L639 909L977 1462H1235L778 754L1270 0Z" />
+<glyph unicode="Y" glyph-name="Y" horiz-adv-x="1212" d="M606 795L952 1462H1212L725 567V0H485V559L0 1462H260L606 795Z" />
+<glyph unicode="Z" glyph-name="Z" horiz-adv-x="1178" d="M1112 0H66V166L803 1257H86V1462H1092V1294L352 205H1112V0Z" />
+<glyph unicode="[" glyph-name="bracketleft" horiz-adv-x="676" d="M625 -324H154V1462H625V1286H369V-147H625V-324Z" />
+<glyph unicode="\" glyph-name="backslash" horiz-adv-x="799" d="M238 1462L782 0H561L16 1462H238Z" />
+<glyph unicode="]" glyph-name="bracketright" horiz-adv-x="676" d="M51 -147H307V1286H51V1462H520V-324H51V-147Z" />
+<glyph unicode="^" glyph-name="asciicircum" horiz-adv-x="1100" d="M29 535L465 1470H586L1071 535H877L528 1229L221 535H29Z" />
+<glyph unicode="_" glyph-name="underscore" horiz-adv-x="879" d="M883 -319H-4V-184H883V-319Z" />
+<glyph unicode="`" glyph-name="grave" horiz-adv-x="1212" d="M690 1241Q621 1293 516 1391T362 1548V1569H635Q673 1499 738 1408T848 1266V1241H690Z" />
+<glyph unicode="a" glyph-name="a" horiz-adv-x="1188" d="M860 0L813 154H805Q725 53 644 17T436 -20Q273 -20 182 68T90 317Q90 488 217 575T604 670L795 676V735Q795 841 746 893T592 946Q507 946 429 921T279 862L203 1030Q293 1077 400 1101T602 1126Q813
+1126 920 1034T1028 745V0H860ZM510 160Q638 160 715 231T793 432V528L651 522Q485 516 410 467T334 315Q334 241 378 201T510 160Z" />
+<glyph unicode="b" glyph-name="b" horiz-adv-x="1276" d="M733 1126Q940 1126 1055 976T1171 555Q1171 283 1054 132T729 -20Q519 -20 403 131H387L344 0H168V1556H403V1186Q403 1145 399 1064T393 961H403Q515 1126 733 1126ZM672 934Q530 934 468 851T403 571V555Q403
+353 467 263T676 172Q801 172 865 271T930 557Q930 934 672 934Z" />
+<glyph unicode="c" glyph-name="c" horiz-adv-x="1014" d="M614 -20Q363 -20 233 126T102 547Q102 826 238 976T633 1126Q808 1126 948 1061L877 872Q728 930 631 930Q344 930 344 549Q344 363 415 270T625 176Q782 176 922 254V49Q859 12 788 -4T614 -20Z" />
+<glyph unicode="d" glyph-name="d" horiz-adv-x="1276" d="M541 -20Q334 -20 218 130T102 551Q102 823 219 974T545 1126Q763 1126 877 965H889Q872 1084 872 1153V1556H1108V0H924L883 145H872Q759 -20 541 -20ZM604 170Q749 170 815 251T883 516V549Q883 758
+815 846T602 934Q478 934 411 834T344 547Q344 363 409 267T604 170Z" />
+<glyph unicode="e" glyph-name="e" horiz-adv-x="1180" d="M651 -20Q393 -20 248 130T102 545Q102 816 237 971T608 1126Q827 1126 954 993T1081 627V500H344Q349 339 431 253T662 166Q760 166 844 184T1026 246V55Q940 14 852 -3T651 -20ZM608 948Q496 948 429
+877T348 670H850Q848 807 784 877T608 948Z" />
+<glyph unicode="f" glyph-name="f" horiz-adv-x="743" d="M723 928H453V0H217V928H35V1038L217 1110V1182Q217 1378 309 1472T590 1567Q714 1567 834 1526L772 1348Q685 1376 606 1376Q526 1376 490 1327T453 1178V1106H723V928Z" />
+<glyph unicode="g" glyph-name="g" horiz-adv-x="1139" d="M1102 1106V977L913 942Q939 907 956 856T973 748Q973 577 855 479T530 381Q477 381 434 389Q358 342 358 279Q358 241 393 222T524 203H717Q900 203 995 125T1090 -100Q1090 -288 935 -390T487 -492Q261
+-492 142 -412T23 -184Q23 -82 87 -13T268 84Q221 104 191 148T160 242Q160 304 195 347T299 432Q213 469 160 552T106 748Q106 928 219 1027T543 1126Q590 1126 641 1120T719 1106H1102ZM233 -172Q233 -248 301 -289T494 -330Q686 -330 780 -275T874 -129Q874
+-57 823 -27T631 4H453Q352 4 293 -43T233 -172ZM334 748Q334 644 387 588T541 532Q745 532 745 750Q745 858 695 916T541 975Q439 975 387 917T334 748Z" />
+<glyph unicode="h" glyph-name="h" horiz-adv-x="1300" d="M1141 0H905V680Q905 808 854 871T690 934Q542 934 473 846T403 549V0H168V1556H403V1161Q403 1066 391 958H406Q454 1038 539 1082T739 1126Q1141 1126 1141 721V0Z" />
+<glyph unicode="i" glyph-name="i" horiz-adv-x="571" d="M403 0H168V1106H403V0ZM154 1399Q154 1462 188 1496T287 1530Q349 1530 383 1496T418 1399Q418 1339 384 1305T287 1270Q223 1270 189 1304T154 1399Z" />
+<glyph unicode="j" glyph-name="j" horiz-adv-x="571" d="M55 -492Q-51 -492 -121 -467V-281Q-53 -299 18 -299Q168 -299 168 -129V1106H403V-145Q403 -316 314 -404T55 -492ZM154 1399Q154 1462 188 1496T287 1530Q349 1530 383 1496T418 1399Q418 1339 384 1305T287
+1270Q223 1270 189 1304T154 1399Z" />
+<glyph unicode="k" glyph-name="k" horiz-adv-x="1171" d="M395 584L528 750L862 1106H1133L688 631L1161 0H885L530 485L401 379V0H168V1556H401V797L389 584H395Z" />
+<glyph unicode="l" glyph-name="l" horiz-adv-x="571" d="M403 0H168V1556H403V0Z" />
+<glyph unicode="m" glyph-name="m" horiz-adv-x="1958" d="M1100 0H864V682Q864 809 816 871T666 934Q530 934 467 846T403 551V0H168V1106H352L385 961H397Q443 1040 530 1083T723 1126Q978 1126 1061 952H1077Q1126 1034 1215 1080T1419 1126Q1617 1126 1707
+1026T1798 721V0H1563V682Q1563 809 1515 871T1364 934Q1227 934 1164 849T1100 586V0Z" />
+<glyph unicode="n" glyph-name="n" horiz-adv-x="1300" d="M1141 0H905V680Q905 808 854 871T690 934Q541 934 472 846T403 551V0H168V1106H352L385 961H397Q447 1040 539 1083T743 1126Q1141 1126 1141 721V0Z" />
+<glyph unicode="o" glyph-name="o" horiz-adv-x="1251" d="M1149 555Q1149 284 1010 132T623 -20Q468 -20 349 50T166 251T102 555Q102 824 240 975T629 1126Q869 1126 1009 972T1149 555ZM344 555Q344 172 627 172Q907 172 907 555Q907 934 625 934Q477 934 411
+836T344 555Z" />
+<glyph unicode="p" glyph-name="p" horiz-adv-x="1276" d="M729 -20Q519 -20 403 131H389Q403 -9 403 -39V-492H168V1106H358Q366 1075 391 958H403Q513 1126 733 1126Q940 1126 1055 976T1171 555Q1171 284 1054 132T729 -20ZM672 934Q532 934 468 852T403 590V555Q403
+353 467 263T676 172Q798 172 864 272T930 557Q930 743 865 838T672 934Z" />
+<glyph unicode="q" glyph-name="q" horiz-adv-x="1276" d="M606 168Q754 168 818 253T883 512V549Q883 754 817 844T602 934Q476 934 410 834T344 547Q344 168 606 168ZM539 -20Q334 -20 218 130T102 551Q102 821 220 973T545 1126Q649 1126 731 1088T879 961H887L913
+1106H1108V-492H872V-23Q872 21 876 70T883 145H870Q766 -20 539 -20Z" />
+<glyph unicode="r" glyph-name="r" horiz-adv-x="883" d="M729 1126Q800 1126 846 1116L823 897Q773 909 719 909Q578 909 491 817T403 578V0H168V1106H352L383 911H395Q450 1010 538 1068T729 1126Z" />
+<glyph unicode="s" glyph-name="s" horiz-adv-x="997" d="M911 315Q911 153 793 67T455 -20Q234 -20 100 47V250Q295 160 463 160Q680 160 680 291Q680 333 656 361T577 419T424 487Q233 561 166 635T98 827Q98 969 212 1047T524 1126Q719 1126 893 1047L817 870Q638
+944 516 944Q330 944 330 838Q330 786 378 750T590 651Q727 598 789 554T881 453T911 315Z" />
+<glyph unicode="t" glyph-name="t" horiz-adv-x="805" d="M580 170Q666 170 752 197V20Q713 3 652 -8T524 -20Q190 -20 190 332V928H39V1032L201 1118L281 1352H426V1106H741V928H426V336Q426 251 468 211T580 170Z" />
+<glyph unicode="u" glyph-name="u" horiz-adv-x="1300" d="M948 0L915 145H903Q854 68 764 24T557 -20Q356 -20 257 80T158 383V1106H395V424Q395 297 447 234T610 170Q758 170 827 258T897 555V1106H1133V0H948Z" />
+<glyph unicode="v" glyph-name="v" horiz-adv-x="1096" d="M420 0L0 1106H248L473 463Q531 301 543 201H551Q560 273 621 463L846 1106H1096L674 0H420Z" />
+<glyph unicode="w" glyph-name="w" horiz-adv-x="1673" d="M1075 0L932 516Q906 598 838 897H829Q771 627 737 514L590 0H330L20 1106H260L401 561Q449 359 469 215H475Q485 288 505 382T541 524L709 1106H967L1130 524Q1145 475 1167 374T1194 217H1202Q1217
+340 1272 561L1415 1106H1651L1339 0H1075Z" />
+<glyph unicode="x" glyph-name="x" horiz-adv-x="1128" d="M414 565L43 1106H311L563 719L817 1106H1083L711 565L1102 0H836L563 414L291 0H25L414 565Z" />
+<glyph unicode="y" glyph-name="y" horiz-adv-x="1098" d="M0 1106H256L481 479Q532 345 549 227H557Q566 282 590 360T844 1106H1098L625 -147Q496 -492 195 -492Q117 -492 43 -475V-289Q96 -301 164 -301Q334 -301 403 -104L444 0L0 1106Z" />
+<glyph unicode="z" glyph-name="z" horiz-adv-x="979" d="M907 0H68V145L627 926H102V1106H891V942L344 180H907V0Z" />
+<glyph unicode="{" glyph-name="braceleft" horiz-adv-x="791" d="M311 287Q311 473 45 473V664Q180 664 245 709T311 848V1159Q311 1315 419 1388T745 1462V1280Q631 1275 580 1234T528 1110V813Q528 614 299 575V563Q528 527 528 326V27Q528 -55 579 -97T745
+-141V-324Q514 -322 413 -246T311 2V287Z" />
+<glyph unicode="|" glyph-name="bar" horiz-adv-x="1128" d="M473 1552H653V-481H473V1552Z" />
+<glyph unicode="}" glyph-name="braceright" horiz-adv-x="760" d="M463 -20Q463 -176 364 -249T45 -324V-141Q140 -140 193 -103T246 27V289Q246 410 299 476T475 563V575Q246 614 246 813V1110Q246 1192 201 1233T45 1280V1462Q268 1462 365 1386T463 1135V848Q463
+748 526 706T715 664V473Q592 473 528 431T463 287V-20Z" />
+<glyph unicode="~" glyph-name="asciitilde" horiz-adv-x="1169" d="M330 692Q280 692 219 662T96 571V762Q195 870 346 870Q412 870 471 857T618 807Q749 752 838 752Q890 752 952 783T1073 872V682Q968 571 823 571Q758 571 696 586T549 637Q422 692 330 692Z" />
+<glyph unicode="&#xa0;" glyph-name="nonbreakingspace" horiz-adv-x="532" />
+<glyph unicode="&#xa1;" glyph-name="exclamdown" horiz-adv-x="565" d="M193 645H367L418 -371H141L193 645ZM430 965Q430 891 393 852T281 813Q209 813 171 852T133 965Q133 1034 171 1076T281 1118Q353 1118 391 1078T430 965Z" />
+<glyph unicode="&#xa2;" glyph-name="cent" horiz-adv-x="1169" d="M987 238Q868 179 729 174V-20H573V180Q366 211 266 351T166 741Q166 995 266 1138T573 1313V1483H731V1321Q883 1316 1014 1255L944 1067Q798 1126 694 1126Q548 1126 478 1031T408 743Q408
+549 480 460T690 371Q765 371 832 386T987 438V238Z" />
+<glyph unicode="&#xa3;" glyph-name="sterling" horiz-adv-x="1169" d="M690 1481Q884 1481 1065 1399L989 1217Q827 1288 705 1288Q500 1288 500 1069V825H897V653H500V471Q500 380 467 316T354 207H1110V0H72V195Q170 225 217 291T264 469V653H76V825H264V1081Q264
+1269 377 1375T690 1481Z" />
+<glyph unicode="&#xa4;" glyph-name="currency" horiz-adv-x="1169" d="M186 723Q186 832 250 936L117 1069L238 1188L369 1059Q469 1122 584 1122Q699 1122 797 1057L930 1188L1051 1071L920 938Q983 838 983 723Q983 604 920 506L1049 377L930 258L797 387Q698
+326 584 326Q458 326 369 387L238 260L119 379L250 508Q186 607 186 723ZM354 723Q354 625 422 559T584 492Q681 492 749 558T817 723Q817 820 749 888T584 956Q491 956 423 888T354 723Z" />
+<glyph unicode="&#xa5;" glyph-name="yen" horiz-adv-x="1169" d="M584 797L905 1462H1149L750 702H977V551H696V397H977V244H696V0H471V244H188V397H471V551H188V702H412L18 1462H264L584 797Z" />
+<glyph unicode="&#xa6;" glyph-name="brokenbar" horiz-adv-x="1128" d="M473 1552H653V758H473V1552ZM473 315H653V-481H473V315Z" />
+<glyph unicode="&#xa7;" glyph-name="section" horiz-adv-x="1026" d="M129 807Q129 887 167 952T279 1061Q133 1144 133 1296Q133 1425 242 1498T537 1571Q628 1571 711 1554T893 1495L825 1333Q709 1383 649 1396T528 1409Q334 1409 334 1300Q334 1246 389 1207T580
+1116Q755 1048 830 970T905 782Q905 605 766 516Q905 436 905 293Q905 151 787 69T461 -14Q249 -14 115 57V236Q192 196 288 171T465 145Q700 145 700 276Q700 319 679 346T608 400T461 465Q320 520 255 566T160 671T129 807ZM313 827Q313 782 337 747T415 678T610
+588Q719 653 719 756Q719 831 657 882T436 987Q382 971 348 926T313 827Z" />
+<glyph unicode="&#xa8;" glyph-name="dieresis" horiz-adv-x="1212" d="M293 1399Q293 1461 326 1488T408 1516Q461 1516 492 1485T524 1399Q524 1346 492 1314T408 1282Q360 1282 327 1311T293 1399ZM686 1399Q686 1461 719 1488T801 1516Q854 1516 886 1485T918
+1399Q918 1345 885 1314T801 1282Q753 1282 720 1311T686 1399Z" />
+<glyph unicode="&#xa9;" glyph-name="copyright" horiz-adv-x="1704" d="M893 1034Q782 1034 722 954T662 731Q662 584 716 505T893 426Q948 426 1011 441T1120 477V319Q1005 268 885 268Q688 268 580 388T471 731Q471 945 581 1068T887 1192Q1025 1192 1161 1122L1096
+979Q990 1034 893 1034ZM100 731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM223 731Q223 561 307 416T538 186T852 102Q1022 102 1168 187T1397 417T1481
+731Q1481 899 1397 1045T1166 1276T852 1360Q684 1360 540 1277T309 1048T223 731Z" />
+<glyph unicode="&#xaa;" glyph-name="ordfeminine" horiz-adv-x="754" d="M547 782L518 879Q472 824 413 797T283 770Q170 770 114 822T57 981Q57 1085 141 1140T393 1202L500 1206Q500 1278 466 1314T362 1350Q272 1350 152 1294L98 1409Q242 1479 383 1479Q521
+1479 590 1417T659 1229V782H547ZM401 1098Q330 1096 276 1064T221 983Q221 895 317 895Q408 895 454 936T500 1059V1102L401 1098Z" />
+<glyph unicode="&#xab;" glyph-name="guillemotleft" horiz-adv-x="1139" d="M82 561L438 993L606 899L324 549L606 201L438 104L82 535V561ZM532 561L889 993L1057 899L774 549L1057 201L889 104L532 535V561Z" />
+<glyph unicode="&#xac;" glyph-name="logicalnot" horiz-adv-x="1169" d="M1073 256H895V633H96V811H1073V256Z" />
+<glyph unicode="&#xad;" glyph-name="uni00AD" horiz-adv-x="659" d="M72 449V649H586V449H72Z" />
+<glyph unicode="&#xae;" glyph-name="registered" horiz-adv-x="1704" d="M748 770H817Q891 770 929 805T967 905Q967 977 931 1005T815 1034H748V770ZM1157 909Q1157 738 1004 676L1241 279H1030L838 625H748V279H559V1182H821Q995 1182 1076 1114T1157 909ZM100
+731Q100 931 200 1106T475 1382T852 1483Q1052 1483 1227 1383T1503 1108T1604 731Q1604 534 1507 361T1235 84T852 -20Q645 -20 470 83T198 360T100 731ZM223 731Q223 561 307 416T538 186T852 102Q1022 102 1168 187T1397 417T1481 731Q1481 899 1397 1045T1166
+1276T852 1360Q684 1360 540 1277T309 1048T223 731Z" />
+<glyph unicode="&#xaf;" glyph-name="overscore" horiz-adv-x="1024" d="M1030 1556H-6V1720H1030V1556Z" />
+<glyph unicode="&#xb0;" glyph-name="degree" horiz-adv-x="877" d="M109 1153Q109 1288 204 1385T438 1483Q576 1483 671 1387T766 1153Q766 1014 670 920T438 825Q350 825 274 868T153 988T109 1153ZM262 1153Q262 1083 313 1031T438 979Q512 979 563 1030T614
+1153Q614 1229 562 1280T438 1331Q366 1331 314 1279T262 1153Z" />
+<glyph unicode="&#xb1;" glyph-name="plusminus" horiz-adv-x="1169" d="M494 664H96V842H494V1249H674V842H1073V664H674V258H494V664ZM96 0V178H1073V0H96Z" />
+<glyph unicode="&#xb2;" glyph-name="twosuperior" horiz-adv-x="743" d="M678 586H51V721L281 946Q398 1058 430 1111T463 1223Q463 1275 431 1302T348 1329Q255 1329 147 1241L53 1362Q192 1481 362 1481Q498 1481 573 1415T649 1235Q649 1152 603 1077T420
+874L281 745H678V586Z" />
+<glyph unicode="&#xb3;" glyph-name="threesuperior" horiz-adv-x="743" d="M645 1251Q645 1176 605 1129T485 1042Q579 1021 626 966T674 834Q674 707 581 638T315 569Q167 569 45 631V788Q190 709 315 709Q494 709 494 844Q494 969 295 969H180V1102H285Q469
+1102 469 1231Q469 1283 435 1311T344 1339Q287 1339 239 1319T133 1262L49 1376Q110 1422 183 1451T354 1481Q488 1481 566 1420T645 1251Z" />
+<glyph unicode="&#xb4;" glyph-name="acute" horiz-adv-x="1212" d="M362 1241V1266Q419 1336 479 1422T575 1569H848V1548Q796 1487 693 1391T518 1241H362Z" />
+<glyph unicode="&#xb5;" glyph-name="mu" horiz-adv-x="1309" d="M403 422Q403 170 621 170Q767 170 836 258T905 555V1106H1141V0H958L924 147H911Q863 64 792 22T616 -20Q476 -20 397 70H393Q396 42 399 -47T403 -172V-492H168V1106H403V422Z" />
+<glyph unicode="&#xb6;" glyph-name="paragraph" horiz-adv-x="1341" d="M1143 -260H1006V1403H815V-260H678V559Q616 541 532 541Q316 541 215 666T113 1042Q113 1302 222 1429T563 1556H1143V-260Z" />
+<glyph unicode="&#xb7;" glyph-name="periodcentered" horiz-adv-x="563" d="M133 723Q133 796 171 835T281 874Q354 874 392 834T430 723Q430 652 392 611T281 569Q209 569 171 610T133 723Z" />
+<glyph unicode="&#xb8;" glyph-name="cedilla" horiz-adv-x="442" d="M426 -270Q426 -492 121 -492Q55 -492 0 -477V-340Q54 -354 123 -354Q177 -354 208 -338T240 -276Q240 -191 61 -166L145 0H297L256 -88Q336 -109 381 -156T426 -270Z" />
+<glyph unicode="&#xb9;" glyph-name="onesuperior" horiz-adv-x="743" d="M532 586H346V1098L349 1201L354 1292Q337 1274 314 1252T172 1141L84 1253L365 1462H532V586Z" />
+<glyph unicode="&#xba;" glyph-name="ordmasculine" horiz-adv-x="780" d="M719 1124Q719 960 632 865T387 770Q237 770 149 865T61 1124Q61 1293 149 1386T391 1479Q543 1479 631 1385T719 1124ZM223 1124Q223 1013 262 958T389 903Q477 903 516 958T555 1124Q555
+1237 516 1291T389 1346Q301 1346 262 1292T223 1124Z" />
+<glyph unicode="&#xbb;" glyph-name="guillemotright" horiz-adv-x="1139" d="M1057 535L698 104L530 201L813 549L530 899L698 993L1057 561V535ZM606 535L248 104L80 201L362 549L80 899L248 993L606 561V535Z" />
+<glyph unicode="&#xbc;" glyph-name="onequarter" horiz-adv-x="1700" d="M1333 1462L477 0H285L1143 1462H1333ZM764 586H578V1098L581 1201L586 1292Q569 1274 546 1252T404 1141L316 1253L597 1462H764V586ZM1585 177H1460V1H1268V177H876V304L1272 883H1460V320H1585V177ZM1268
+320V498Q1268 595 1274 695Q1222 591 1186 537L1038 320H1268Z" />
+<glyph unicode="&#xbd;" glyph-name="onehalf" horiz-adv-x="1700" d="M1298 1462L442 0H250L1108 1462H1298ZM750 586H564V1098L567 1201L572 1292Q555 1274 532 1252T390 1141L302 1253L583 1462H750V586ZM1608 1H981V136L1211 361Q1328 473 1360 526T1393 638Q1393
+690 1361 717T1278 744Q1185 744 1077 656L983 777Q1122 896 1292 896Q1428 896 1503 830T1579 650Q1579 567 1533 492T1350 289L1211 160H1608V1Z" />
+<glyph unicode="&#xbe;" glyph-name="threequarters" horiz-adv-x="1700" d="M1415 1462L559 0H367L1225 1462H1415ZM1640 177H1515V1H1323V177H931V304L1327 883H1515V320H1640V177ZM1323 320V498Q1323 595 1329 695Q1277 591 1241 537L1093 320H1323ZM655 1251Q655
+1176 615 1129T495 1042Q589 1021 636 966T684 834Q684 707 591 638T325 569Q177 569 55 631V788Q200 709 325 709Q504 709 504 844Q504 969 305 969H190V1102H295Q479 1102 479 1231Q479 1283 445 1311T354 1339Q297 1339 249 1319T143 1262L59 1376Q120 1422
+193 1451T364 1481Q498 1481 576 1420T655 1251Z" />
+<glyph unicode="&#xbf;" glyph-name="questiondown" horiz-adv-x="928" d="M651 645V582Q651 476 610 401T467 246Q343 148 312 99T281 -25Q281 -103 335 -150T496 -197Q586 -197 670 -170T836 -104L918 -283Q698 -393 494 -393Q287 -393 171 -298T55 -33Q55 40
+76 97T140 206T297 348Q391 424 422 472T453 600V645H651ZM692 965Q692 891 655 852T543 813Q471 813 433 852T395 965Q395 1034 433 1076T543 1118Q615 1118 653 1078T692 965Z" />
+<glyph unicode="&#xc0;" glyph-name="Agrave" horiz-adv-x="1354" d="M1100 0L954 406H395L252 0H0L547 1468H807L1354 0H1100ZM891 612L754 1010Q739 1050 713 1136T676 1262Q649 1139 597 993L465 612H891ZM662 1579Q593 1631 488 1729T334 1886V1907H607Q645
+1837 710 1746T820 1604V1579H662Z" />
+<glyph unicode="&#xc1;" glyph-name="Aacute" horiz-adv-x="1354" d="M1100 0L954 406H395L252 0H0L547 1468H807L1354 0H1100ZM891 612L754 1010Q739 1050 713 1136T676 1262Q649 1139 597 993L465 612H891ZM532 1579V1604Q589 1674 649 1760T745 1907H1018V1886Q966
+1825 863 1729T688 1579H532Z" />
+<glyph unicode="&#xc2;" glyph-name="Acircumflex" horiz-adv-x="1354" d="M1100 0L954 406H395L252 0H0L547 1468H807L1354 0H1100ZM891 612L754 1010Q739 1050 713 1136T676 1262Q649 1139 597 993L465 612H891ZM897 1579Q774 1652 669 1759Q566 1656 444 1579H286V1604Q477
+1802 540 1907H800Q863 1797 1056 1604V1579H897Z" />
+<glyph unicode="&#xc3;" glyph-name="Atilde" horiz-adv-x="1354" d="M1100 0L954 406H395L252 0H0L547 1468H807L1354 0H1100ZM891 612L754 1010Q739 1050 713 1136T676 1262Q649 1139 597 993L465 612H891ZM821 1579Q779 1579 739 1596T659 1635T583 1674T512
+1692Q431 1692 403 1577H281Q293 1716 358 1789T526 1862Q569 1862 610 1845T690 1806T765 1767T836 1749Q915 1749 942 1864H1067Q1055 1730 990 1655T821 1579Z" />
+<glyph unicode="&#xc4;" glyph-name="Adieresis" horiz-adv-x="1354" d="M1100 0L954 406H395L252 0H0L547 1468H807L1354 0H1100ZM891 612L754 1010Q739 1050 713 1136T676 1262Q649 1139 597 993L465 612H891ZM363 1737Q363 1799 396 1826T478 1854Q531 1854
+562 1823T594 1737Q594 1684 562 1652T478 1620Q430 1620 397 1649T363 1737ZM756 1737Q756 1799 789 1826T871 1854Q924 1854 956 1823T988 1737Q988 1683 955 1652T871 1620Q823 1620 790 1649T756 1737Z" />
+<glyph unicode="&#xc5;" glyph-name="Aring" horiz-adv-x="1354" d="M1100 0L954 406H395L252 0H0L547 1468H807L1354 0H1100ZM891 612L754 1010Q739 1050 713 1136T676 1262Q649 1139 597 993L465 612H891ZM913 1577Q913 1475 848 1412T674 1348Q566 1348 502
+1410T438 1575Q438 1676 501 1738T674 1801Q778 1801 845 1739T913 1577ZM780 1575Q780 1625 750 1653T674 1682Q627 1682 597 1654T567 1575Q567 1469 674 1469Q720 1469 750 1496T780 1575Z" />
+<glyph unicode="&#xc6;" glyph-name="AE" horiz-adv-x="1868" d="M1747 0H936V406H432L244 0H-2L676 1462H1747V1260H1176V862H1708V662H1176V203H1747V0ZM522 612H936V1253H813L522 612Z" />
+<glyph unicode="&#xc7;" glyph-name="Ccedilla" horiz-adv-x="1298" d="M815 1278Q609 1278 491 1132T373 729Q373 460 486 322T815 184Q908 184 995 202T1176 250V45Q1004 -20 786 -20Q465 -20 293 174T121 731Q121 959 204 1130T446 1392T817 1483Q1041 1483
+1231 1389L1145 1190Q1071 1225 989 1251T815 1278ZM952 -270Q952 -492 647 -492Q581 -492 526 -477V-340Q580 -354 649 -354Q703 -354 734 -338T766 -276Q766 -191 587 -166L671 0H823L782 -88Q862 -109 907 -156T952 -270Z" />
+<glyph unicode="&#xc8;" glyph-name="Egrave" horiz-adv-x="1143" d="M1020 0H193V1462H1020V1260H432V862H983V662H432V203H1020V0ZM617 1579Q548 1631 443 1729T289 1886V1907H562Q600 1837 665 1746T775 1604V1579H617Z" />
+<glyph unicode="&#xc9;" glyph-name="Eacute" horiz-adv-x="1143" d="M1020 0H193V1462H1020V1260H432V862H983V662H432V203H1020V0ZM440 1579V1604Q497 1674 557 1760T653 1907H926V1886Q874 1825 771 1729T596 1579H440Z" />
+<glyph unicode="&#xca;" glyph-name="Ecircumflex" horiz-adv-x="1143" d="M1020 0H193V1462H1020V1260H432V862H983V662H432V203H1020V0ZM831 1579Q708 1652 603 1759Q500 1656 378 1579H220V1604Q411 1802 474 1907H734Q797 1797 990 1604V1579H831Z" />
+<glyph unicode="&#xcb;" glyph-name="Edieresis" horiz-adv-x="1143" d="M1020 0H193V1462H1020V1260H432V862H983V662H432V203H1020V0ZM297 1737Q297 1799 330 1826T412 1854Q465 1854 496 1823T528 1737Q528 1684 496 1652T412 1620Q364 1620 331 1649T297 1737ZM690
+1737Q690 1799 723 1826T805 1854Q858 1854 890 1823T922 1737Q922 1683 889 1652T805 1620Q757 1620 724 1649T690 1737Z" />
+<glyph unicode="&#xcc;" glyph-name="Igrave" horiz-adv-x="625" d="M193 0V1462H432V0H193ZM322 1579Q253 1631 148 1729T-6 1886V1907H267Q305 1837 370 1746T480 1604V1579H322Z" />
+<glyph unicode="&#xcd;" glyph-name="Iacute" horiz-adv-x="625" d="M193 0V1462H432V0H193ZM179 1579V1604Q236 1674 296 1760T392 1907H665V1886Q613 1825 510 1729T335 1579H179Z" />
+<glyph unicode="&#xce;" glyph-name="Icircumflex" horiz-adv-x="625" d="M193 0V1462H432V0H193ZM536 1579Q413 1652 308 1759Q205 1656 83 1579H-75V1604Q116 1802 179 1907H439Q502 1797 695 1604V1579H536Z" />
+<glyph unicode="&#xcf;" glyph-name="Idieresis" horiz-adv-x="625" d="M193 0V1462H432V0H193ZM1 1737Q1 1799 34 1826T116 1854Q169 1854 200 1823T232 1737Q232 1684 200 1652T116 1620Q68 1620 35 1649T1 1737ZM394 1737Q394 1799 427 1826T509 1854Q562 1854
+594 1823T626 1737Q626 1683 593 1652T509 1620Q461 1620 428 1649T394 1737Z" />
+<glyph unicode="&#xd0;" glyph-name="Eth" horiz-adv-x="1497" d="M1374 745Q1374 385 1173 193T594 0H193V623H47V823H193V1462H639Q986 1462 1180 1274T1374 745ZM1122 737Q1122 997 998 1129T629 1262H432V823H739V623H432V201H592Q1122 201 1122 737Z" />
+<glyph unicode="&#xd1;" glyph-name="Ntilde" horiz-adv-x="1604" d="M1411 0H1118L399 1165H391L396 1100Q410 914 410 760V0H193V1462H483L1200 303H1206Q1204 326 1198 470T1192 696V1462H1411V0ZM954 1579Q912 1579 872 1596T792 1635T716 1674T645 1692Q564
+1692 536 1577H414Q426 1716 491 1789T659 1862Q702 1862 743 1845T823 1806T898 1767T969 1749Q1048 1749 1075 1864H1200Q1188 1730 1123 1655T954 1579Z" />
+<glyph unicode="&#xd2;" glyph-name="Ograve" horiz-adv-x="1612" d="M1491 733Q1491 376 1313 178T807 -20Q476 -20 299 176T121 735Q121 1097 299 1291T809 1485Q1135 1485 1313 1288T1491 733ZM375 733Q375 463 484 324T807 184Q1020 184 1128 322T1237 733Q1237
+1002 1130 1141T809 1280Q594 1280 485 1141T375 733ZM809 1579Q740 1631 635 1729T481 1886V1907H754Q792 1837 857 1746T967 1604V1579H809Z" />
+<glyph unicode="&#xd3;" glyph-name="Oacute" horiz-adv-x="1612" d="M1491 733Q1491 376 1313 178T807 -20Q476 -20 299 176T121 735Q121 1097 299 1291T809 1485Q1135 1485 1313 1288T1491 733ZM375 733Q375 463 484 324T807 184Q1020 184 1128 322T1237 733Q1237
+1002 1130 1141T809 1280Q594 1280 485 1141T375 733ZM657 1579V1604Q714 1674 774 1760T870 1907H1143V1886Q1091 1825 988 1729T813 1579H657Z" />
+<glyph unicode="&#xd4;" glyph-name="Ocircumflex" horiz-adv-x="1612" d="M1491 733Q1491 376 1313 178T807 -20Q476 -20 299 176T121 735Q121 1097 299 1291T809 1485Q1135 1485 1313 1288T1491 733ZM375 733Q375 463 484 324T807 184Q1020 184 1128 322T1237
+733Q1237 1002 1130 1141T809 1280Q594 1280 485 1141T375 733ZM1024 1579Q901 1652 796 1759Q693 1656 571 1579H413V1604Q604 1802 667 1907H927Q990 1797 1183 1604V1579H1024Z" />
+<glyph unicode="&#xd5;" glyph-name="Otilde" horiz-adv-x="1612" d="M1491 733Q1491 376 1313 178T807 -20Q476 -20 299 176T121 735Q121 1097 299 1291T809 1485Q1135 1485 1313 1288T1491 733ZM375 733Q375 463 484 324T807 184Q1020 184 1128 322T1237 733Q1237
+1002 1130 1141T809 1280Q594 1280 485 1141T375 733ZM950 1579Q908 1579 868 1596T788 1635T712 1674T641 1692Q560 1692 532 1577H410Q422 1716 487 1789T655 1862Q698 1862 739 1845T819 1806T894 1767T965 1749Q1044 1749 1071 1864H1196Q1184 1730 1119 1655T950
+1579Z" />
+<glyph unicode="&#xd6;" glyph-name="Odieresis" horiz-adv-x="1612" d="M1491 733Q1491 376 1313 178T807 -20Q476 -20 299 176T121 735Q121 1097 299 1291T809 1485Q1135 1485 1313 1288T1491 733ZM375 733Q375 463 484 324T807 184Q1020 184 1128 322T1237
+733Q1237 1002 1130 1141T809 1280Q594 1280 485 1141T375 733ZM496 1737Q496 1799 529 1826T611 1854Q664 1854 695 1823T727 1737Q727 1684 695 1652T611 1620Q563 1620 530 1649T496 1737ZM889 1737Q889 1799 922 1826T1004 1854Q1057 1854 1089 1823T1121 1737Q1121
+1683 1088 1652T1004 1620Q956 1620 923 1649T889 1737Z" />
+<glyph unicode="&#xd7;" glyph-name="multiply" horiz-adv-x="1169" d="M457 723L131 1049L256 1176L584 850L913 1176L1038 1053L709 723L1034 395L911 270L582 596L258 270L133 395L457 723Z" />
+<glyph unicode="&#xd8;" glyph-name="Oslash" horiz-adv-x="1612" d="M1491 733Q1491 376 1313 178T807 -20Q594 -20 446 61L352 -76L211 18L309 162Q121 358 121 735Q121 1097 299 1291T809 1485Q1008 1485 1163 1403L1253 1532L1395 1440L1296 1300Q1491 1101
+1491 733ZM1237 733Q1237 958 1157 1094L571 244Q668 184 807 184Q1020 184 1128 322T1237 733ZM375 733Q375 502 453 371L1040 1221Q948 1280 809 1280Q594 1280 485 1141T375 733Z" />
+<glyph unicode="&#xd9;" glyph-name="Ugrave" horiz-adv-x="1520" d="M1339 1462V516Q1339 354 1270 233T1069 46T754 -20Q482 -20 331 124T180 520V1462H420V537Q420 356 504 270T762 184Q1100 184 1100 539V1462H1339ZM745 1579Q676 1631 571 1729T417 1886V1907H690Q728
+1837 793 1746T903 1604V1579H745Z" />
+<glyph unicode="&#xda;" glyph-name="Uacute" horiz-adv-x="1520" d="M1339 1462V516Q1339 354 1270 233T1069 46T754 -20Q482 -20 331 124T180 520V1462H420V537Q420 356 504 270T762 184Q1100 184 1100 539V1462H1339ZM600 1579V1604Q657 1674 717 1760T813
+1907H1086V1886Q1034 1825 931 1729T756 1579H600Z" />
+<glyph unicode="&#xdb;" glyph-name="Ucircumflex" horiz-adv-x="1520" d="M1339 1462V516Q1339 354 1270 233T1069 46T754 -20Q482 -20 331 124T180 520V1462H420V537Q420 356 504 270T762 184Q1100 184 1100 539V1462H1339ZM977 1579Q854 1652 749 1759Q646
+1656 524 1579H366V1604Q557 1802 620 1907H880Q943 1797 1136 1604V1579H977Z" />
+<glyph unicode="&#xdc;" glyph-name="Udieresis" horiz-adv-x="1520" d="M1339 1462V516Q1339 354 1270 233T1069 46T754 -20Q482 -20 331 124T180 520V1462H420V537Q420 356 504 270T762 184Q1100 184 1100 539V1462H1339ZM445 1737Q445 1799 478 1826T560 1854Q613
+1854 644 1823T676 1737Q676 1684 644 1652T560 1620Q512 1620 479 1649T445 1737ZM838 1737Q838 1799 871 1826T953 1854Q1006 1854 1038 1823T1070 1737Q1070 1683 1037 1652T953 1620Q905 1620 872 1649T838 1737Z" />
+<glyph unicode="&#xdd;" glyph-name="Yacute" horiz-adv-x="1212" d="M606 795L952 1462H1212L725 567V0H485V559L0 1462H260L606 795ZM450 1579V1604Q507 1674 567 1760T663 1907H936V1886Q884 1825 781 1729T606 1579H450Z" />
+<glyph unicode="&#xde;" glyph-name="Thorn" horiz-adv-x="1268" d="M1169 776Q1169 549 1023 427T600 305H432V0H193V1462H432V1219H629Q897 1219 1033 1107T1169 776ZM432 504H565Q752 504 838 567T924 770Q924 897 846 958T596 1020H432V504Z" />
+<glyph unicode="&#xdf;" glyph-name="germandbls" horiz-adv-x="1364" d="M1149 1253Q1149 1179 1111 1113T1006 995Q916 926 889 897T862 840Q862 810 884 785T964 721L1059 657Q1151 595 1194 548T1260 444T1282 317Q1282 152 1175 66T864 -20Q674 -20 565 45V244Q623
+207 704 183T852 158Q1044 158 1044 309Q1044 370 1010 414T854 532Q735 605 683 667T631 813Q631 876 665 928T770 1034Q845 1089 877 1131T909 1225Q909 1297 842 1337T664 1378Q537 1378 470 1324T403 1165V0H168V1169Q168 1362 296 1464T664 1567Q889 1567
+1019 1483T1149 1253Z" />
+<glyph unicode="&#xe0;" glyph-name="agrave" horiz-adv-x="1188" d="M860 0L813 154H805Q725 53 644 17T436 -20Q273 -20 182 68T90 317Q90 488 217 575T604 670L795 676V735Q795 841 746 893T592 946Q507 946 429 921T279 862L203 1030Q293 1077 400 1101T602
+1126Q813 1126 920 1034T1028 745V0H860ZM510 160Q638 160 715 231T793 432V528L651 522Q485 516 410 467T334 315Q334 241 378 201T510 160ZM843 1241Q774 1293 669 1391T515 1548V1569H788Q826 1499 891 1408T1001 1266V1241H843Z" />
+<glyph unicode="&#xe1;" glyph-name="aacute" horiz-adv-x="1188" d="M860 0L813 154H805Q725 53 644 17T436 -20Q273 -20 182 68T90 317Q90 488 217 575T604 670L795 676V735Q795 841 746 893T592 946Q507 946 429 921T279 862L203 1030Q293 1077 400 1101T602
+1126Q813 1126 920 1034T1028 745V0H860ZM510 160Q638 160 715 231T793 432V528L651 522Q485 516 410 467T334 315Q334 241 378 201T510 160ZM438 1241V1266Q495 1336 555 1422T651 1569H924V1548Q872 1487 769 1391T594 1241H438Z" />
+<glyph unicode="&#xe2;" glyph-name="acircumflex" horiz-adv-x="1188" d="M860 0L813 154H805Q725 53 644 17T436 -20Q273 -20 182 68T90 317Q90 488 217 575T604 670L795 676V735Q795 841 746 893T592 946Q507 946 429 921T279 862L203 1030Q293 1077 400 1101T602
+1126Q813 1126 920 1034T1028 745V0H860ZM510 160Q638 160 715 231T793 432V528L651 522Q485 516 410 467T334 315Q334 241 378 201T510 160ZM1070 1241Q947 1314 842 1421Q739 1318 617 1241H459V1266Q650 1464 713 1569H973Q1036 1459 1229 1266V1241H1070Z"
+/>
+<glyph unicode="&#xe3;" glyph-name="atilde" horiz-adv-x="1188" d="M860 0L813 154H805Q725 53 644 17T436 -20Q273 -20 182 68T90 317Q90 488 217 575T604 670L795 676V735Q795 841 746 893T592 946Q507 946 429 921T279 862L203 1030Q293 1077 400 1101T602
+1126Q813 1126 920 1034T1028 745V0H860ZM510 160Q638 160 715 231T793 432V528L651 522Q485 516 410 467T334 315Q334 241 378 201T510 160ZM1004 1241Q962 1241 922 1258T842 1297T766 1336T695 1354Q614 1354 586 1239H464Q476 1378 541 1451T709 1524Q752 1524
+793 1507T873 1468T948 1429T1019 1411Q1098 1411 1125 1526H1250Q1238 1392 1173 1317T1004 1241Z" />
+<glyph unicode="&#xe4;" glyph-name="adieresis" horiz-adv-x="1188" d="M860 0L813 154H805Q725 53 644 17T436 -20Q273 -20 182 68T90 317Q90 488 217 575T604 670L795 676V735Q795 841 746 893T592 946Q507 946 429 921T279 862L203 1030Q293 1077 400 1101T602
+1126Q813 1126 920 1034T1028 745V0H860ZM510 160Q638 160 715 231T793 432V528L651 522Q485 516 410 467T334 315Q334 241 378 201T510 160ZM538 1399Q538 1461 571 1488T653 1516Q706 1516 737 1485T769 1399Q769 1346 737 1314T653 1282Q605 1282 572 1311T538
+1399ZM931 1399Q931 1461 964 1488T1046 1516Q1099 1516 1131 1485T1163 1399Q1163 1345 1130 1314T1046 1282Q998 1282 965 1311T931 1399Z" />
+<glyph unicode="&#xe5;" glyph-name="aring" horiz-adv-x="1188" d="M860 0L813 154H805Q725 53 644 17T436 -20Q273 -20 182 68T90 317Q90 488 217 575T604 670L795 676V735Q795 841 746 893T592 946Q507 946 429 921T279 862L203 1030Q293 1077 400 1101T602
+1126Q813 1126 920 1034T1028 745V0H860ZM510 160Q638 160 715 231T793 432V528L651 522Q485 516 410 467T334 315Q334 241 378 201T510 160ZM841 1468Q841 1366 776 1303T602 1239Q494 1239 430 1301T366 1466Q366 1567 429 1629T602 1692Q706 1692 773 1630T841
+1468ZM708 1466Q708 1516 678 1544T602 1573Q555 1573 525 1545T495 1466Q495 1360 602 1360Q648 1360 678 1387T708 1466Z" />
+<glyph unicode="&#xe6;" glyph-name="ae" horiz-adv-x="1817" d="M90 317Q90 489 211 575T582 670L770 676V752Q770 946 569 946Q428 946 262 864L188 1030Q276 1077 380 1101T584 1126Q825 1126 924 971Q1044 1126 1270 1126Q1476 1126 1598 992T1720 629V502H1008Q1018
+166 1309 166Q1493 166 1665 246V55Q1579 14 1494 -3T1298 -20Q1158 -20 1050 34T874 199Q780 74 684 27T442 -20Q277 -20 184 70T90 317ZM334 315Q334 160 500 160Q624 160 696 232T768 432V528L633 522Q478 516 406 468T334 315ZM1266 948Q1154 948 1089 879T1014
+670H1487Q1487 800 1429 874T1266 948Z" />
+<glyph unicode="&#xe7;" glyph-name="ccedilla" horiz-adv-x="1014" d="M614 -20Q363 -20 233 126T102 547Q102 826 238 976T633 1126Q808 1126 948 1061L877 872Q728 930 631 930Q344 930 344 549Q344 363 415 270T625 176Q782 176 922 254V49Q859 12 788 -4T614
+-20ZM782 -270Q782 -492 477 -492Q411 -492 356 -477V-340Q410 -354 479 -354Q533 -354 564 -338T596 -276Q596 -191 417 -166L501 0H653L612 -88Q692 -109 737 -156T782 -270Z" />
+<glyph unicode="&#xe8;" glyph-name="egrave" horiz-adv-x="1180" d="M651 -20Q393 -20 248 130T102 545Q102 816 237 971T608 1126Q827 1126 954 993T1081 627V500H344Q349 339 431 253T662 166Q760 166 844 184T1026 246V55Q940 14 852 -3T651 -20ZM608 948Q496
+948 429 877T348 670H850Q848 807 784 877T608 948ZM865 1241Q796 1293 691 1391T537 1548V1569H810Q848 1499 913 1408T1023 1266V1241H865Z" />
+<glyph unicode="&#xe9;" glyph-name="eacute" horiz-adv-x="1180" d="M651 -20Q393 -20 248 130T102 545Q102 816 237 971T608 1126Q827 1126 954 993T1081 627V500H344Q349 339 431 253T662 166Q760 166 844 184T1026 246V55Q940 14 852 -3T651 -20ZM608 948Q496
+948 429 877T348 670H850Q848 807 784 877T608 948ZM458 1241V1266Q515 1336 575 1422T671 1569H944V1548Q892 1487 789 1391T614 1241H458Z" />
+<glyph unicode="&#xea;" glyph-name="ecircumflex" horiz-adv-x="1180" d="M651 -20Q393 -20 248 130T102 545Q102 816 237 971T608 1126Q827 1126 954 993T1081 627V500H344Q349 339 431 253T662 166Q760 166 844 184T1026 246V55Q940 14 852 -3T651 -20ZM608
+948Q496 948 429 877T348 670H850Q848 807 784 877T608 948ZM838 1241Q715 1314 610 1421Q507 1318 385 1241H227V1266Q418 1464 481 1569H741Q804 1459 997 1266V1241H838Z" />
+<glyph unicode="&#xeb;" glyph-name="edieresis" horiz-adv-x="1180" d="M651 -20Q393 -20 248 130T102 545Q102 816 237 971T608 1126Q827 1126 954 993T1081 627V500H344Q349 339 431 253T662 166Q760 166 844 184T1026 246V55Q940 14 852 -3T651 -20ZM608 948Q496
+948 429 877T348 670H850Q848 807 784 877T608 948ZM307 1399Q307 1461 340 1488T422 1516Q475 1516 506 1485T538 1399Q538 1346 506 1314T422 1282Q374 1282 341 1311T307 1399ZM700 1399Q700 1461 733 1488T815 1516Q868 1516 900 1485T932 1399Q932 1345 899
+1314T815 1282Q767 1282 734 1311T700 1399Z" />
+<glyph unicode="&#xec;" glyph-name="igrave" horiz-adv-x="571" d="M403 0H168V1106H403V0ZM259 1241Q190 1293 85 1391T-69 1548V1569H204Q242 1499 307 1408T417 1266V1241H259Z" />
+<glyph unicode="&#xed;" glyph-name="iacute" horiz-adv-x="571" d="M403 0H168V1106H403V0ZM156 1241V1266Q213 1336 273 1422T369 1569H642V1548Q590 1487 487 1391T312 1241H156Z" />
+<glyph unicode="&#xee;" glyph-name="icircumflex" horiz-adv-x="571" d="M403 0H168V1106H403V0ZM511 1241Q388 1314 283 1421Q180 1318 58 1241H-100V1266Q91 1464 154 1569H414Q477 1459 670 1266V1241H511Z" />
+<glyph unicode="&#xef;" glyph-name="idieresis" horiz-adv-x="571" d="M403 0H168V1106H403V0ZM-25 1399Q-25 1461 8 1488T90 1516Q143 1516 174 1485T206 1399Q206 1346 174 1314T90 1282Q42 1282 9 1311T-25 1399ZM368 1399Q368 1461 401 1488T483 1516Q536
+1516 568 1485T600 1399Q600 1345 567 1314T483 1282Q435 1282 402 1311T368 1399Z" />
+<glyph unicode="&#xf0;" glyph-name="eth" horiz-adv-x="1243" d="M1149 567Q1149 288 1012 134T623 -20Q388 -20 245 116T102 481Q102 712 233 846T584 981Q798 981 885 870L893 874Q831 1063 666 1219L416 1069L328 1202L532 1321Q446 1380 365 1423L449 1569Q589
+1506 707 1425L938 1563L1026 1434L838 1321Q990 1181 1069 991T1149 567ZM909 522Q909 649 834 724T627 799Q476 799 409 717T342 477Q342 324 416 243T627 162Q775 162 842 253T909 522Z" />
+<glyph unicode="&#xf1;" glyph-name="ntilde" horiz-adv-x="1300" d="M1141 0H905V680Q905 808 854 871T690 934Q541 934 472 846T403 551V0H168V1106H352L385 961H397Q447 1040 539 1083T743 1126Q1141 1126 1141 721V0ZM809 1241Q767 1241 727 1258T647 1297T571
+1336T500 1354Q419 1354 391 1239H269Q281 1378 346 1451T514 1524Q557 1524 598 1507T678 1468T753 1429T824 1411Q903 1411 930 1526H1055Q1043 1392 978 1317T809 1241Z" />
+<glyph unicode="&#xf2;" glyph-name="ograve" horiz-adv-x="1251" d="M1149 555Q1149 284 1010 132T623 -20Q468 -20 349 50T166 251T102 555Q102 824 240 975T629 1126Q869 1126 1009 972T1149 555ZM344 555Q344 172 627 172Q907 172 907 555Q907 934 625 934Q477
+934 411 836T344 555ZM877 1241Q808 1293 703 1391T549 1548V1569H822Q860 1499 925 1408T1035 1266V1241H877Z" />
+<glyph unicode="&#xf3;" glyph-name="oacute" horiz-adv-x="1251" d="M1149 555Q1149 284 1010 132T623 -20Q468 -20 349 50T166 251T102 555Q102 824 240 975T629 1126Q869 1126 1009 972T1149 555ZM344 555Q344 172 627 172Q907 172 907 555Q907 934 625 934Q477
+934 411 836T344 555ZM473 1241V1266Q530 1336 590 1422T686 1569H959V1548Q907 1487 804 1391T629 1241H473Z" />
+<glyph unicode="&#xf4;" glyph-name="ocircumflex" horiz-adv-x="1251" d="M1149 555Q1149 284 1010 132T623 -20Q468 -20 349 50T166 251T102 555Q102 824 240 975T629 1126Q869 1126 1009 972T1149 555ZM344 555Q344 172 627 172Q907 172 907 555Q907 934 625
+934Q477 934 411 836T344 555ZM850 1241Q727 1314 622 1421Q519 1318 397 1241H239V1266Q430 1464 493 1569H753Q816 1459 1009 1266V1241H850Z" />
+<glyph unicode="&#xf5;" glyph-name="otilde" horiz-adv-x="1251" d="M1149 555Q1149 284 1010 132T623 -20Q468 -20 349 50T166 251T102 555Q102 824 240 975T629 1126Q869 1126 1009 972T1149 555ZM344 555Q344 172 627 172Q907 172 907 555Q907 934 625 934Q477
+934 411 836T344 555ZM1031 1241Q989 1241 949 1258T869 1297T793 1336T722 1354Q641 1354 613 1239H491Q503 1378 568 1451T736 1524Q779 1524 820 1507T900 1468T975 1429T1046 1411Q1125 1411 1152 1526H1277Q1265 1392 1200 1317T1031 1241Z" />
+<glyph unicode="&#xf6;" glyph-name="odieresis" horiz-adv-x="1251" d="M1149 555Q1149 284 1010 132T623 -20Q468 -20 349 50T166 251T102 555Q102 824 240 975T629 1126Q869 1126 1009 972T1149 555ZM344 555Q344 172 627 172Q907 172 907 555Q907 934 625
+934Q477 934 411 836T344 555ZM311 1399Q311 1461 344 1488T426 1516Q479 1516 510 1485T542 1399Q542 1346 510 1314T426 1282Q378 1282 345 1311T311 1399ZM704 1399Q704 1461 737 1488T819 1516Q872 1516 904 1485T936 1399Q936 1345 903 1314T819 1282Q771
+1282 738 1311T704 1399Z" />
+<glyph unicode="&#xf7;" glyph-name="divide" horiz-adv-x="1169" d="M96 633V811H1073V633H96ZM457 373Q457 437 488 472T584 508Q645 508 677 472T709 373Q709 310 675 273T584 236Q524 236 491 271T457 373ZM457 1071Q457 1135 488 1170T584 1206Q645 1206
+677 1170T709 1071Q709 1008 675 971T584 934Q524 934 491 969T457 1071Z" />
+<glyph unicode="&#xf8;" glyph-name="oslash" horiz-adv-x="1251" d="M1149 555Q1149 284 1010 132T623 -20Q479 -20 373 37L297 -72L162 18L244 135Q102 290 102 555Q102 824 240 975T629 1126Q773 1126 887 1063L956 1163L1092 1071L1014 963Q1149 811 1149
+555ZM344 555Q344 420 381 336L772 895Q712 934 625 934Q477 934 411 836T344 555ZM907 555Q907 676 874 758L487 205Q541 172 627 172Q907 172 907 555Z" />
+<glyph unicode="&#xf9;" glyph-name="ugrave" horiz-adv-x="1300" d="M948 0L915 145H903Q854 68 764 24T557 -20Q356 -20 257 80T158 383V1106H395V424Q395 297 447 234T610 170Q758 170 827 258T897 555V1106H1133V0H948ZM873 1241Q804 1293 699 1391T545 1548V1569H818Q856
+1499 921 1408T1031 1266V1241H873Z" />
+<glyph unicode="&#xfa;" glyph-name="uacute" horiz-adv-x="1300" d="M948 0L915 145H903Q854 68 764 24T557 -20Q356 -20 257 80T158 383V1106H395V424Q395 297 447 234T610 170Q758 170 827 258T897 555V1106H1133V0H948ZM501 1241V1266Q558 1336 618 1422T714
+1569H987V1548Q935 1487 832 1391T657 1241H501Z" />
+<glyph unicode="&#xfb;" glyph-name="ucircumflex" horiz-adv-x="1300" d="M948 0L915 145H903Q854 68 764 24T557 -20Q356 -20 257 80T158 383V1106H395V424Q395 297 447 234T610 170Q758 170 827 258T897 555V1106H1133V0H948ZM871 1241Q748 1314 643 1421Q540
+1318 418 1241H260V1266Q451 1464 514 1569H774Q837 1459 1030 1266V1241H871Z" />
+<glyph unicode="&#xfc;" glyph-name="udieresis" horiz-adv-x="1300" d="M948 0L915 145H903Q854 68 764 24T557 -20Q356 -20 257 80T158 383V1106H395V424Q395 297 447 234T610 170Q758 170 827 258T897 555V1106H1133V0H948ZM332 1399Q332 1461 365 1488T447
+1516Q500 1516 531 1485T563 1399Q563 1346 531 1314T447 1282Q399 1282 366 1311T332 1399ZM725 1399Q725 1461 758 1488T840 1516Q893 1516 925 1485T957 1399Q957 1345 924 1314T840 1282Q792 1282 759 1311T725 1399Z" />
+<glyph unicode="&#xfd;" glyph-name="yacute" horiz-adv-x="1098" d="M0 1106H256L481 479Q532 345 549 227H557Q566 282 590 360T844 1106H1098L625 -147Q496 -492 195 -492Q117 -492 43 -475V-289Q96 -301 164 -301Q334 -301 403 -104L444 0L0 1106ZM401 1241V1266Q458
+1336 518 1422T614 1569H887V1548Q835 1487 732 1391T557 1241H401Z" />
+<glyph unicode="&#xfe;" glyph-name="thorn" horiz-adv-x="1276" d="M403 961Q464 1047 545 1086T733 1126Q939 1126 1055 975T1171 555Q1171 283 1055 132T733 -20Q514 -20 403 129H389L397 57L403 -35V-492H168V1556H403V1126L396 988L393 961H403ZM674 934Q532
+934 468 852T403 592V555Q403 353 467 263T676 172Q930 172 930 557Q930 747 869 840T674 934Z" />
+<glyph unicode="&#xff;" glyph-name="ydieresis" horiz-adv-x="1098" d="M0 1106H256L481 479Q532 345 549 227H557Q566 282 590 360T844 1106H1098L625 -147Q496 -492 195 -492Q117 -492 43 -475V-289Q96 -301 164 -301Q334 -301 403 -104L444 0L0 1106ZM495
+1399Q495 1461 528 1488T610 1516Q663 1516 694 1485T726 1399Q726 1346 694 1314T610 1282Q562 1282 529 1311T495 1399ZM888 1399Q888 1461 921 1488T1003 1516Q1056 1516 1088 1485T1120 1399Q1120 1345 1087 1314T1003 1282Q955 1282 922 1311T888 1399Z" />
+<glyph unicode="&#x2013;" glyph-name="endash" horiz-adv-x="1024" d="M82 455V645H942V455H82Z" />
+<glyph unicode="&#x2014;" glyph-name="emdash" horiz-adv-x="2048" d="M82 455V645H1966V455H82Z" />
+<glyph unicode="&#x2018;" glyph-name="quoteleft" horiz-adv-x="395" d="M37 961L25 983Q45 1066 96 1207T201 1462H371Q307 1206 270 961H37Z" />
+<glyph unicode="&#x2019;" glyph-name="quoteright" horiz-adv-x="395" d="M356 1462L371 1440Q318 1231 195 961H25Q94 1250 125 1462H356Z" />
+<glyph unicode="&#x201a;" glyph-name="quotesinglbase" horiz-adv-x="549" d="M412 215Q364 29 236 -264H63Q132 6 166 238H397L412 215Z" />
+<glyph unicode="&#x201c;" glyph-name="quotedblleft" horiz-adv-x="813" d="M440 983Q493 1186 618 1462H788Q719 1166 688 961H455L440 983ZM25 983Q45 1066 96 1207T201 1462H371Q307 1206 270 961H37L25 983Z" />
+<glyph unicode="&#x201d;" glyph-name="quotedblright" horiz-adv-x="813" d="M371 1440Q318 1231 195 961H25Q94 1250 125 1462H356L371 1440ZM788 1440Q735 1231 612 961H440Q509 1232 543 1462H774L788 1440Z" />
+<glyph unicode="&#x201e;" glyph-name="quotedblbase" horiz-adv-x="944" d="M391 215Q336 1 215 -264H43Q109 -4 145 238H377L391 215ZM809 215Q761 29 633 -264H461Q527 -4 563 238H795L809 215Z" />
+<glyph unicode="&#x2022;" glyph-name="bullet" horiz-adv-x="770" d="M131 748Q131 886 197 958T385 1030Q506 1030 572 958T639 748Q639 613 572 539T385 465Q265 465 198 537T131 748Z" />
+<glyph unicode="&#x2039;" glyph-name="guilsinglleft" horiz-adv-x="688" d="M82 561L438 993L606 899L324 549L606 201L438 104L82 535V561Z" />
+<glyph unicode="&#x203a;" glyph-name="guilsinglright" horiz-adv-x="688" d="M606 535L248 104L80 201L362 549L80 899L248 993L606 561V535Z" />
+<hkern g1="quotedbl" g2="A" k="143" />
+<hkern g1="quotedbl" g2="T" k="-41" />
+<hkern g1="quotedbl" g2="V" k="-41" />
+<hkern g1="quotedbl" g2="W" k="-41" />
+<hkern g1="quotedbl" g2="Y" k="-20" />
+<hkern g1="quotedbl" g2="a" k="82" />
+<hkern g1="quotedbl" g2="c" k="123" />
+<hkern g1="quotedbl" g2="d" k="123" />
+<hkern g1="quotedbl" g2="e" k="123" />
+<hkern g1="quotedbl" g2="g" k="61" />
+<hkern g1="quotedbl" g2="m" k="61" />
+<hkern g1="quotedbl" g2="n" k="61" />
+<hkern g1="quotedbl" g2="o" k="123" />
+<hkern g1="quotedbl" g2="p" k="61" />
+<hkern g1="quotedbl" g2="q" k="123" />
+<hkern g1="quotedbl" g2="r" k="61" />
+<hkern g1="quotedbl" g2="s" k="61" />
+<hkern g1="quotedbl" g2="u" k="61" />
+<hkern g1="quotedbl" g2="Agrave" k="143" />
+<hkern g1="quotedbl" g2="Aacute" k="143" />
+<hkern g1="quotedbl" g2="Acircumflex" k="143" />
+<hkern g1="quotedbl" g2="Atilde" k="143" />
+<hkern g1="quotedbl" g2="Adieresis" k="143" />
+<hkern g1="quotedbl" g2="Aring" k="143" />
+<hkern g1="quotedbl" g2="Yacute" k="-20" />
+<hkern g1="quotedbl" g2="agrave" k="123" />
+<hkern g1="quotedbl" g2="aacute" k="82" />
+<hkern g1="quotedbl" g2="acircumflex" k="82" />
+<hkern g1="quotedbl" g2="atilde" k="82" />
+<hkern g1="quotedbl" g2="adieresis" k="82" />
+<hkern g1="quotedbl" g2="aring" k="82" />
+<hkern g1="quotedbl" g2="ae" k="82" />
+<hkern g1="quotedbl" g2="ccedilla" k="123" />
+<hkern g1="quotedbl" g2="egrave" k="123" />
+<hkern g1="quotedbl" g2="eacute" k="123" />
+<hkern g1="quotedbl" g2="ecircumflex" k="123" />
+<hkern g1="quotedbl" g2="edieresis" k="123" />
+<hkern g1="quotedbl" g2="ograve" k="123" />
+<hkern g1="quotedbl" g2="oacute" k="123" />
+<hkern g1="quotedbl" g2="ocircumflex" k="123" />
+<hkern g1="quotedbl" g2="otilde" k="123" />
+<hkern g1="quotedbl" g2="odieresis" k="123" />
+<hkern g1="quotedbl" g2="oslash" k="123" />
+<hkern g1="quotedbl" g2="ugrave" k="61" />
+<hkern g1="quotedbl" g2="uacute" k="61" />
+<hkern g1="quotedbl" g2="ucircumflex" k="61" />
+<hkern g1="quotedbl" g2="udieresis" k="61" />
+<hkern g1="quotedbl" g2="Amacron" k="143" />
+<hkern g1="quotedbl" g2="amacron" k="82" />
+<hkern g1="quotedbl" g2="Abreve" k="143" />
+<hkern g1="quotedbl" g2="abreve" k="82" />
+<hkern g1="quotedbl" g2="Aogonek" k="143" />
+<hkern g1="quotedbl" g2="aogonek" k="82" />
+<hkern g1="quotedbl" g2="cacute" k="123" />
+<hkern g1="quotedbl" g2="ccircumflex" k="123" />
+<hkern g1="quotedbl" g2="cdot" k="123" />
+<hkern g1="quotedbl" g2="ccaron" k="123" />
+<hkern g1="quotedbl" g2="dcaron" k="123" />
+<hkern g1="quotedbl" g2="dcroat" k="123" />
+<hkern g1="quotedbl" g2="emacron" k="123" />
+<hkern g1="quotedbl" g2="ebreve" k="123" />
+<hkern g1="quotedbl" g2="edotaccent" k="123" />
+<hkern g1="quotedbl" g2="eogonek" k="123" />
+<hkern g1="quotedbl" g2="ecaron" k="123" />
+<hkern g1="quotedbl" g2="gcircumflex" k="61" />
+<hkern g1="quotedbl" g2="gbreve" k="61" />
+<hkern g1="quotedbl" g2="gdot" k="61" />
+<hkern g1="quotedbl" g2="gcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="kgreenlandic" k="61" />
+<hkern g1="quotedbl" g2="nacute" k="61" />
+<hkern g1="quotedbl" g2="ncommaaccent" k="61" />
+<hkern g1="quotedbl" g2="eng" k="61" />
+<hkern g1="quotedbl" g2="omacron" k="123" />
+<hkern g1="quotedbl" g2="obreve" k="123" />
+<hkern g1="quotedbl" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedbl" g2="oe" k="123" />
+<hkern g1="quotedbl" g2="racute" k="61" />
+<hkern g1="quotedbl" g2="rcommaaccent" k="61" />
+<hkern g1="quotedbl" g2="sacute" k="61" />
+<hkern g1="quotedbl" g2="scedilla" k="61" />
+<hkern g1="quotedbl" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedbl" g2="Tcaron" k="-41" />
+<hkern g1="quotedbl" g2="utilde" k="61" />
+<hkern g1="quotedbl" g2="umacron" k="61" />
+<hkern g1="quotedbl" g2="ubreve" k="61" />
+<hkern g1="quotedbl" g2="uring" k="61" />
+<hkern g1="quotedbl" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedbl" g2="uogonek" k="61" />
+<hkern g1="quotedbl" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedbl" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedbl" g2="Ydieresis" k="-20" />
+<hkern g1="quotedbl" g2="Aringacute" k="143" />
+<hkern g1="quotedbl" g2="aringacute" k="82" />
+<hkern g1="quotedbl" g2="aeacute" k="82" />
+<hkern g1="quotedbl" g2="oslashacute" k="123" />
+<hkern g1="quotedbl" g2="scommaaccent" k="61" />
+<hkern g1="quotedbl" g2="Alphatonos" k="143" />
+<hkern g1="quotedbl" g2="Alpha" k="143" />
+<hkern g1="quotedbl" g2="uni0394" k="143" />
+<hkern g1="quotedbl" g2="Lambda" k="143" />
+<hkern g1="quotedbl" g2="alphatonos" k="82" />
+<hkern g1="quotedbl" g2="epsilontonos" k="41" />
+<hkern g1="quotedbl" g2="etatonos" k="41" />
+<hkern g1="quotedbl" g2="alpha" k="82" />
+<hkern g1="quotedbl" g2="delta" k="61" />
+<hkern g1="quotedbl" g2="epsilon" k="41" />
+<hkern g1="quotedbl" g2="zeta" k="41" />
+<hkern g1="quotedbl" g2="eta" k="41" />
+<hkern g1="quotedbl" g2="kappa" k="41" />
+<hkern g1="quotedbl" g2="uni03BC" k="41" />
+<hkern g1="quotedbl" g2="omicron" k="82" />
+<hkern g1="quotedbl" g2="rho" k="61" />
+<hkern g1="quotedbl" g2="sigma1" k="82" />
+<hkern g1="quotedbl" g2="sigma" k="82" />
+<hkern g1="quotedbl" g2="phi" k="82" />
+<hkern g1="quotedbl" g2="omicrontonos" k="82" />
+<hkern g1="quotedbl" g2="afii10058" k="123" />
+<hkern g1="quotedbl" g2="afii10017" k="143" />
+<hkern g1="quotedbl" g2="afii10021" k="123" />
+<hkern g1="quotedbl" g2="afii10029" k="123" />
+<hkern g1="quotedbl" g2="afii10065" k="41" />
+<hkern g1="quotedbl" g2="afii10069" k="143" />
+<hkern g1="quotedbl" g2="afii10070" k="123" />
+<hkern g1="quotedbl" g2="afii10077" k="143" />
+<hkern g1="quotedbl" g2="afii10080" k="123" />
+<hkern g1="quotedbl" g2="afii10083" k="123" />
+<hkern g1="quotedbl" g2="afii10086" k="123" />
+<hkern g1="quotedbl" g2="afii10071" k="123" />
+<hkern g1="quotedbl" g2="afii10101" k="123" />
+<hkern g1="quotedbl" g2="afii10102" k="61" />
+<hkern g1="quotedbl" g2="afii10106" k="143" />
+<hkern g1="quotedbl" g2="Wgrave" k="-41" />
+<hkern g1="quotedbl" g2="Wacute" k="-41" />
+<hkern g1="quotedbl" g2="Wdieresis" k="-41" />
+<hkern g1="quotedbl" g2="Ygrave" k="-20" />
+<hkern g1="quotedbl" g2="uni1E3F" k="61" />
+<hkern g1="quotedbl" g2="uni1E00" k="143" />
+<hkern g1="quotedbl" g2="uni1E01" k="82" />
+<hkern g1="quotedbl" g2="ohorn" k="123" />
+<hkern g1="quotedbl" g2="uhorn" k="61" />
+<hkern g1="quotedbl" g2="uni0450" k="123" />
+<hkern g1="quotedbl" g2="uni0466" k="143" />
+<hkern g1="quotedbl" g2="uni0467" k="143" />
+<hkern g1="quotedbl" g2="uni0471" k="20" />
+<hkern g1="quotedbl" g2="uni0473" k="123" />
+<hkern g1="quotedbl" g2="uni0479" k="123" />
+<hkern g1="quotedbl" g2="uni047B" k="123" />
+<hkern g1="quotedbl" g2="uni047D" k="123" />
+<hkern g1="quotedbl" g2="uni0481" k="123" />
+<hkern g1="quotedbl" g2="uni04A9" k="123" />
+<hkern g1="quotedbl" g2="uni04AB" k="123" />
+<hkern g1="quotedbl" g2="uni04C5" k="123" />
+<hkern g1="quotedbl" g2="uni04C6" k="143" />
+<hkern g1="quotedbl" g2="uni04D0" k="143" />
+<hkern g1="quotedbl" g2="uni04D1" k="41" />
+<hkern g1="quotedbl" g2="uni04D2" k="143" />
+<hkern g1="quotedbl" g2="uni04D3" k="41" />
+<hkern g1="quotedbl" g2="uni04D4" k="143" />
+<hkern g1="quotedbl" g2="uni04D5" k="41" />
+<hkern g1="quotedbl" g2="uni04D7" k="123" />
+<hkern g1="quotedbl" g2="uni04D9" k="41" />
+<hkern g1="quotedbl" g2="uni04DB" k="41" />
+<hkern g1="quotedbl" g2="uni04E7" k="123" />
+<hkern g1="quotedbl" g2="uni04E9" k="123" />
+<hkern g1="quotedbl" g2="uni04EB" k="123" />
+<hkern g1="quotedbl" g2="uni0500" k="143" />
+<hkern g1="quotedbl" g2="uni0501" k="123" />
+<hkern g1="quotedbl" g2="uni0502" k="143" />
+<hkern g1="quotedbl" g2="uni0503" k="123" />
+<hkern g1="quotedbl" g2="uni0508" k="123" />
+<hkern g1="quotedbl" g2="uni0509" k="143" />
+<hkern g1="quotedbl" g2="uni050D" k="123" />
+<hkern g1="quotedbl" g2="uni0511" k="123" />
+<hkern g1="quotedbl" g2="uni0512" k="123" />
+<hkern g1="quotedbl" g2="uni0513" k="143" />
+<hkern g1="quotedbl" g2="uni1EA0" k="143" />
+<hkern g1="quotedbl" g2="uni1EA1" k="82" />
+<hkern g1="quotedbl" g2="uni1EA2" k="143" />
+<hkern g1="quotedbl" g2="uni1EA3" k="82" />
+<hkern g1="quotedbl" g2="uni1EA4" k="143" />
+<hkern g1="quotedbl" g2="uni1EA5" k="82" />
+<hkern g1="quotedbl" g2="uni1EA6" k="143" />
+<hkern g1="quotedbl" g2="uni1EA8" k="143" />
+<hkern g1="quotedbl" g2="uni1EA9" k="82" />
+<hkern g1="quotedbl" g2="uni1EAA" k="143" />
+<hkern g1="quotedbl" g2="uni1EAB" k="82" />
+<hkern g1="quotedbl" g2="uni1EAC" k="143" />
+<hkern g1="quotedbl" g2="uni1EAD" k="82" />
+<hkern g1="quotedbl" g2="uni1EAE" k="143" />
+<hkern g1="quotedbl" g2="uni1EAF" k="82" />
+<hkern g1="quotedbl" g2="uni1EB0" k="143" />
+<hkern g1="quotedbl" g2="uni1EB1" k="82" />
+<hkern g1="quotedbl" g2="uni1EB2" k="143" />
+<hkern g1="quotedbl" g2="uni1EB3" k="82" />
+<hkern g1="quotedbl" g2="uni1EB4" k="143" />
+<hkern g1="quotedbl" g2="uni1EB5" k="82" />
+<hkern g1="quotedbl" g2="uni1EB6" k="143" />
+<hkern g1="quotedbl" g2="uni1EB7" k="82" />
+<hkern g1="quotedbl" g2="uni1EB9" k="123" />
+<hkern g1="quotedbl" g2="uni1EBB" k="123" />
+<hkern g1="quotedbl" g2="uni1EBD" k="123" />
+<hkern g1="quotedbl" g2="uni1EBF" k="123" />
+<hkern g1="quotedbl" g2="uni1EC3" k="123" />
+<hkern g1="quotedbl" g2="uni1EC5" k="123" />
+<hkern g1="quotedbl" g2="uni1EC7" k="123" />
+<hkern g1="quotedbl" g2="uni1ECD" k="123" />
+<hkern g1="quotedbl" g2="uni1ECF" k="123" />
+<hkern g1="quotedbl" g2="uni1ED1" k="123" />
+<hkern g1="quotedbl" g2="uni1ED5" k="123" />
+<hkern g1="quotedbl" g2="uni1ED7" k="123" />
+<hkern g1="quotedbl" g2="uni1ED9" k="123" />
+<hkern g1="quotedbl" g2="uni1EDB" k="123" />
+<hkern g1="quotedbl" g2="uni1EDD" k="123" />
+<hkern g1="quotedbl" g2="uni1EDF" k="123" />
+<hkern g1="quotedbl" g2="uni1EE1" k="123" />
+<hkern g1="quotedbl" g2="uni1EE3" k="123" />
+<hkern g1="quotedbl" g2="uni1EE5" k="61" />
+<hkern g1="quotedbl" g2="uni1EE7" k="61" />
+<hkern g1="quotedbl" g2="uni1EE9" k="61" />
+<hkern g1="quotedbl" g2="uni1EEB" k="61" />
+<hkern g1="quotedbl" g2="uni1EED" k="61" />
+<hkern g1="quotedbl" g2="uni1EEF" k="61" />
+<hkern g1="quotedbl" g2="uni1EF1" k="61" />
+<hkern g1="quotedbl" g2="uni1EF4" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF6" k="-20" />
+<hkern g1="quotedbl" g2="uni1EF8" k="-20" />
+<hkern g1="quotedbl" g2="Tcedilla" k="-41" />
+<hkern g1="quotesingle" g2="A" k="143" />
+<hkern g1="quotesingle" g2="T" k="-41" />
+<hkern g1="quotesingle" g2="V" k="-41" />
+<hkern g1="quotesingle" g2="W" k="-41" />
+<hkern g1="quotesingle" g2="Y" k="-20" />
+<hkern g1="quotesingle" g2="a" k="82" />
+<hkern g1="quotesingle" g2="c" k="123" />
+<hkern g1="quotesingle" g2="d" k="123" />
+<hkern g1="quotesingle" g2="e" k="123" />
+<hkern g1="quotesingle" g2="g" k="61" />
+<hkern g1="quotesingle" g2="m" k="61" />
+<hkern g1="quotesingle" g2="n" k="61" />
+<hkern g1="quotesingle" g2="o" k="123" />
+<hkern g1="quotesingle" g2="p" k="61" />
+<hkern g1="quotesingle" g2="q" k="123" />
+<hkern g1="quotesingle" g2="r" k="61" />
+<hkern g1="quotesingle" g2="s" k="61" />
+<hkern g1="quotesingle" g2="u" k="61" />
+<hkern g1="quotesingle" g2="Agrave" k="143" />
+<hkern g1="quotesingle" g2="Aacute" k="143" />
+<hkern g1="quotesingle" g2="Acircumflex" k="143" />
+<hkern g1="quotesingle" g2="Atilde" k="143" />
+<hkern g1="quotesingle" g2="Adieresis" k="143" />
+<hkern g1="quotesingle" g2="Aring" k="143" />
+<hkern g1="quotesingle" g2="Yacute" k="-20" />
+<hkern g1="quotesingle" g2="agrave" k="123" />
+<hkern g1="quotesingle" g2="aacute" k="82" />
+<hkern g1="quotesingle" g2="acircumflex" k="82" />
+<hkern g1="quotesingle" g2="atilde" k="82" />
+<hkern g1="quotesingle" g2="adieresis" k="82" />
+<hkern g1="quotesingle" g2="aring" k="82" />
+<hkern g1="quotesingle" g2="ae" k="82" />
+<hkern g1="quotesingle" g2="ccedilla" k="123" />
+<hkern g1="quotesingle" g2="egrave" k="123" />
+<hkern g1="quotesingle" g2="eacute" k="123" />
+<hkern g1="quotesingle" g2="ecircumflex" k="123" />
+<hkern g1="quotesingle" g2="edieresis" k="123" />
+<hkern g1="quotesingle" g2="ograve" k="123" />
+<hkern g1="quotesingle" g2="oacute" k="123" />
+<hkern g1="quotesingle" g2="ocircumflex" k="123" />
+<hkern g1="quotesingle" g2="otilde" k="123" />
+<hkern g1="quotesingle" g2="odieresis" k="123" />
+<hkern g1="quotesingle" g2="oslash" k="123" />
+<hkern g1="quotesingle" g2="ugrave" k="61" />
+<hkern g1="quotesingle" g2="uacute" k="61" />
+<hkern g1="quotesingle" g2="ucircumflex" k="61" />
+<hkern g1="quotesingle" g2="udieresis" k="61" />
+<hkern g1="quotesingle" g2="Amacron" k="143" />
+<hkern g1="quotesingle" g2="amacron" k="82" />
+<hkern g1="quotesingle" g2="Abreve" k="143" />
+<hkern g1="quotesingle" g2="abreve" k="82" />
+<hkern g1="quotesingle" g2="Aogonek" k="143" />
+<hkern g1="quotesingle" g2="aogonek" k="82" />
+<hkern g1="quotesingle" g2="cacute" k="123" />
+<hkern g1="quotesingle" g2="ccircumflex" k="123" />
+<hkern g1="quotesingle" g2="cdot" k="123" />
+<hkern g1="quotesingle" g2="ccaron" k="123" />
+<hkern g1="quotesingle" g2="dcaron" k="123" />
+<hkern g1="quotesingle" g2="dcroat" k="123" />
+<hkern g1="quotesingle" g2="emacron" k="123" />
+<hkern g1="quotesingle" g2="ebreve" k="123" />
+<hkern g1="quotesingle" g2="edotaccent" k="123" />
+<hkern g1="quotesingle" g2="eogonek" k="123" />
+<hkern g1="quotesingle" g2="ecaron" k="123" />
+<hkern g1="quotesingle" g2="gcircumflex" k="61" />
+<hkern g1="quotesingle" g2="gbreve" k="61" />
+<hkern g1="quotesingle" g2="gdot" k="61" />
+<hkern g1="quotesingle" g2="gcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="kgreenlandic" k="61" />
+<hkern g1="quotesingle" g2="nacute" k="61" />
+<hkern g1="quotesingle" g2="ncommaaccent" k="61" />
+<hkern g1="quotesingle" g2="eng" k="61" />
+<hkern g1="quotesingle" g2="omacron" k="123" />
+<hkern g1="quotesingle" g2="obreve" k="123" />
+<hkern g1="quotesingle" g2="ohungarumlaut" k="123" />
+<hkern g1="quotesingle" g2="oe" k="123" />
+<hkern g1="quotesingle" g2="racute" k="61" />
+<hkern g1="quotesingle" g2="rcommaaccent" k="61" />
+<hkern g1="quotesingle" g2="sacute" k="61" />
+<hkern g1="quotesingle" g2="scedilla" k="61" />
+<hkern g1="quotesingle" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotesingle" g2="Tcaron" k="-41" />
+<hkern g1="quotesingle" g2="utilde" k="61" />
+<hkern g1="quotesingle" g2="umacron" k="61" />
+<hkern g1="quotesingle" g2="ubreve" k="61" />
+<hkern g1="quotesingle" g2="uring" k="61" />
+<hkern g1="quotesingle" g2="uhungarumlaut" k="61" />
+<hkern g1="quotesingle" g2="uogonek" k="61" />
+<hkern g1="quotesingle" g2="Wcircumflex" k="-41" />
+<hkern g1="quotesingle" g2="Ycircumflex" k="-20" />
+<hkern g1="quotesingle" g2="Ydieresis" k="-20" />
+<hkern g1="quotesingle" g2="Aringacute" k="143" />
+<hkern g1="quotesingle" g2="aringacute" k="82" />
+<hkern g1="quotesingle" g2="aeacute" k="82" />
+<hkern g1="quotesingle" g2="oslashacute" k="123" />
+<hkern g1="quotesingle" g2="scommaaccent" k="61" />
+<hkern g1="quotesingle" g2="Alphatonos" k="143" />
+<hkern g1="quotesingle" g2="Alpha" k="143" />
+<hkern g1="quotesingle" g2="uni0394" k="143" />
+<hkern g1="quotesingle" g2="Lambda" k="143" />
+<hkern g1="quotesingle" g2="alphatonos" k="82" />
+<hkern g1="quotesingle" g2="epsilontonos" k="41" />
+<hkern g1="quotesingle" g2="etatonos" k="41" />
+<hkern g1="quotesingle" g2="alpha" k="82" />
+<hkern g1="quotesingle" g2="delta" k="61" />
+<hkern g1="quotesingle" g2="epsilon" k="41" />
+<hkern g1="quotesingle" g2="zeta" k="41" />
+<hkern g1="quotesingle" g2="eta" k="41" />
+<hkern g1="quotesingle" g2="kappa" k="41" />
+<hkern g1="quotesingle" g2="uni03BC" k="41" />
+<hkern g1="quotesingle" g2="omicron" k="82" />
+<hkern g1="quotesingle" g2="rho" k="61" />
+<hkern g1="quotesingle" g2="sigma1" k="82" />
+<hkern g1="quotesingle" g2="sigma" k="82" />
+<hkern g1="quotesingle" g2="phi" k="82" />
+<hkern g1="quotesingle" g2="omicrontonos" k="82" />
+<hkern g1="quotesingle" g2="afii10058" k="123" />
+<hkern g1="quotesingle" g2="afii10017" k="143" />
+<hkern g1="quotesingle" g2="afii10021" k="123" />
+<hkern g1="quotesingle" g2="afii10029" k="123" />
+<hkern g1="quotesingle" g2="afii10065" k="41" />
+<hkern g1="quotesingle" g2="afii10069" k="143" />
+<hkern g1="quotesingle" g2="afii10070" k="123" />
+<hkern g1="quotesingle" g2="afii10077" k="143" />
+<hkern g1="quotesingle" g2="afii10080" k="123" />
+<hkern g1="quotesingle" g2="afii10083" k="123" />
+<hkern g1="quotesingle" g2="afii10086" k="123" />
+<hkern g1="quotesingle" g2="afii10071" k="123" />
+<hkern g1="quotesingle" g2="afii10101" k="123" />
+<hkern g1="quotesingle" g2="afii10102" k="61" />
+<hkern g1="quotesingle" g2="afii10106" k="143" />
+<hkern g1="quotesingle" g2="Wgrave" k="-41" />
+<hkern g1="quotesingle" g2="Wacute" k="-41" />
+<hkern g1="quotesingle" g2="Wdieresis" k="-41" />
+<hkern g1="quotesingle" g2="Ygrave" k="-20" />
+<hkern g1="quotesingle" g2="uni1E3F" k="61" />
+<hkern g1="quotesingle" g2="uni1E00" k="143" />
+<hkern g1="quotesingle" g2="uni1E01" k="82" />
+<hkern g1="quotesingle" g2="ohorn" k="123" />
+<hkern g1="quotesingle" g2="uhorn" k="61" />
+<hkern g1="quotesingle" g2="uni0450" k="123" />
+<hkern g1="quotesingle" g2="uni0466" k="143" />
+<hkern g1="quotesingle" g2="uni0467" k="143" />
+<hkern g1="quotesingle" g2="uni0471" k="20" />
+<hkern g1="quotesingle" g2="uni0473" k="123" />
+<hkern g1="quotesingle" g2="uni0479" k="123" />
+<hkern g1="quotesingle" g2="uni047B" k="123" />
+<hkern g1="quotesingle" g2="uni047D" k="123" />
+<hkern g1="quotesingle" g2="uni0481" k="123" />
+<hkern g1="quotesingle" g2="uni04A9" k="123" />
+<hkern g1="quotesingle" g2="uni04AB" k="123" />
+<hkern g1="quotesingle" g2="uni04C5" k="123" />
+<hkern g1="quotesingle" g2="uni04C6" k="143" />
+<hkern g1="quotesingle" g2="uni04D0" k="143" />
+<hkern g1="quotesingle" g2="uni04D1" k="41" />
+<hkern g1="quotesingle" g2="uni04D2" k="143" />
+<hkern g1="quotesingle" g2="uni04D3" k="41" />
+<hkern g1="quotesingle" g2="uni04D4" k="143" />
+<hkern g1="quotesingle" g2="uni04D5" k="41" />
+<hkern g1="quotesingle" g2="uni04D7" k="123" />
+<hkern g1="quotesingle" g2="uni04D9" k="41" />
+<hkern g1="quotesingle" g2="uni04DB" k="41" />
+<hkern g1="quotesingle" g2="uni04E7" k="123" />
+<hkern g1="quotesingle" g2="uni04E9" k="123" />
+<hkern g1="quotesingle" g2="uni04EB" k="123" />
+<hkern g1="quotesingle" g2="uni0500" k="143" />
+<hkern g1="quotesingle" g2="uni0501" k="123" />
+<hkern g1="quotesingle" g2="uni0502" k="143" />
+<hkern g1="quotesingle" g2="uni0503" k="123" />
+<hkern g1="quotesingle" g2="uni0508" k="123" />
+<hkern g1="quotesingle" g2="uni0509" k="143" />
+<hkern g1="quotesingle" g2="uni050D" k="123" />
+<hkern g1="quotesingle" g2="uni0511" k="123" />
+<hkern g1="quotesingle" g2="uni0512" k="123" />
+<hkern g1="quotesingle" g2="uni0513" k="143" />
+<hkern g1="quotesingle" g2="uni1EA0" k="143" />
+<hkern g1="quotesingle" g2="uni1EA1" k="82" />
+<hkern g1="quotesingle" g2="uni1EA2" k="143" />
+<hkern g1="quotesingle" g2="uni1EA3" k="82" />
+<hkern g1="quotesingle" g2="uni1EA4" k="143" />
+<hkern g1="quotesingle" g2="uni1EA5" k="82" />
+<hkern g1="quotesingle" g2="uni1EA6" k="143" />
+<hkern g1="quotesingle" g2="uni1EA8" k="143" />
+<hkern g1="quotesingle" g2="uni1EA9" k="82" />
+<hkern g1="quotesingle" g2="uni1EAA" k="143" />
+<hkern g1="quotesingle" g2="uni1EAB" k="82" />
+<hkern g1="quotesingle" g2="uni1EAC" k="143" />
+<hkern g1="quotesingle" g2="uni1EAD" k="82" />
+<hkern g1="quotesingle" g2="uni1EAE" k="143" />
+<hkern g1="quotesingle" g2="uni1EAF" k="82" />
+<hkern g1="quotesingle" g2="uni1EB0" k="143" />
+<hkern g1="quotesingle" g2="uni1EB1" k="82" />
+<hkern g1="quotesingle" g2="uni1EB2" k="143" />
+<hkern g1="quotesingle" g2="uni1EB3" k="82" />
+<hkern g1="quotesingle" g2="uni1EB4" k="143" />
+<hkern g1="quotesingle" g2="uni1EB5" k="82" />
+<hkern g1="quotesingle" g2="uni1EB6" k="143" />
+<hkern g1="quotesingle" g2="uni1EB7" k="82" />
+<hkern g1="quotesingle" g2="uni1EB9" k="123" />
+<hkern g1="quotesingle" g2="uni1EBB" k="123" />
+<hkern g1="quotesingle" g2="uni1EBD" k="123" />
+<hkern g1="quotesingle" g2="uni1EBF" k="123" />
+<hkern g1="quotesingle" g2="uni1EC3" k="123" />
+<hkern g1="quotesingle" g2="uni1EC5" k="123" />
+<hkern g1="quotesingle" g2="uni1EC7" k="123" />
+<hkern g1="quotesingle" g2="uni1ECD" k="123" />
+<hkern g1="quotesingle" g2="uni1ECF" k="123" />
+<hkern g1="quotesingle" g2="uni1ED1" k="123" />
+<hkern g1="quotesingle" g2="uni1ED5" k="123" />
+<hkern g1="quotesingle" g2="uni1ED7" k="123" />
+<hkern g1="quotesingle" g2="uni1ED9" k="123" />
+<hkern g1="quotesingle" g2="uni1EDB" k="123" />
+<hkern g1="quotesingle" g2="uni1EDD" k="123" />
+<hkern g1="quotesingle" g2="uni1EDF" k="123" />
+<hkern g1="quotesingle" g2="uni1EE1" k="123" />
+<hkern g1="quotesingle" g2="uni1EE3" k="123" />
+<hkern g1="quotesingle" g2="uni1EE5" k="61" />
+<hkern g1="quotesingle" g2="uni1EE7" k="61" />
+<hkern g1="quotesingle" g2="uni1EE9" k="61" />
+<hkern g1="quotesingle" g2="uni1EEB" k="61" />
+<hkern g1="quotesingle" g2="uni1EED" k="61" />
+<hkern g1="quotesingle" g2="uni1EEF" k="61" />
+<hkern g1="quotesingle" g2="uni1EF1" k="61" />
+<hkern g1="quotesingle" g2="uni1EF4" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF6" k="-20" />
+<hkern g1="quotesingle" g2="uni1EF8" k="-20" />
+<hkern g1="quotesingle" g2="Tcedilla" k="-41" />
+<hkern g1="parenleft" g2="J" k="-184" />
+<hkern g1="comma" g2="C" k="102" />
+<hkern g1="comma" g2="G" k="102" />
+<hkern g1="comma" g2="O" k="102" />
+<hkern g1="comma" g2="Q" k="102" />
+<hkern g1="comma" g2="T" k="143" />
+<hkern g1="comma" g2="U" k="41" />
+<hkern g1="comma" g2="V" k="123" />
+<hkern g1="comma" g2="W" k="123" />
+<hkern g1="comma" g2="Y" k="123" />
+<hkern g1="comma" g2="Ccedilla" k="102" />
+<hkern g1="comma" g2="Ograve" k="102" />
+<hkern g1="comma" g2="Oacute" k="102" />
+<hkern g1="comma" g2="Ocircumflex" k="102" />
+<hkern g1="comma" g2="Otilde" k="102" />
+<hkern g1="comma" g2="Odieresis" k="102" />
+<hkern g1="comma" g2="Oslash" k="102" />
+<hkern g1="comma" g2="Ugrave" k="41" />
+<hkern g1="comma" g2="Uacute" k="41" />
+<hkern g1="comma" g2="Ucircumflex" k="41" />
+<hkern g1="comma" g2="Udieresis" k="41" />
+<hkern g1="comma" g2="Yacute" k="123" />
+<hkern g1="comma" g2="Cacute" k="102" />
+<hkern g1="comma" g2="Ccircumflex" k="102" />
+<hkern g1="comma" g2="Cdot" k="102" />
+<hkern g1="comma" g2="Ccaron" k="102" />
+<hkern g1="comma" g2="Gcircumflex" k="102" />
+<hkern g1="comma" g2="Gbreve" k="102" />
+<hkern g1="comma" g2="Gdot" k="102" />
+<hkern g1="comma" g2="Gcommaaccent" k="102" />
+<hkern g1="comma" g2="Omacron" k="102" />
+<hkern g1="comma" g2="Obreve" k="102" />
+<hkern g1="comma" g2="Ohungarumlaut" k="102" />
+<hkern g1="comma" g2="OE" k="102" />
+<hkern g1="comma" g2="Tcommaaccent" k="143" />
+<hkern g1="comma" g2="Tcaron" k="143" />
+<hkern g1="comma" g2="Utilde" k="41" />
+<hkern g1="comma" g2="Umacron" k="41" />
+<hkern g1="comma" g2="Ubreve" k="41" />
+<hkern g1="comma" g2="Uring" k="41" />
+<hkern g1="comma" g2="Uhungarumlaut" k="41" />
+<hkern g1="comma" g2="Uogonek" k="41" />
+<hkern g1="comma" g2="Wcircumflex" k="123" />
+<hkern g1="comma" g2="Ycircumflex" k="123" />
+<hkern g1="comma" g2="Ydieresis" k="123" />
+<hkern g1="comma" g2="Oslashacute" k="102" />
+<hkern g1="comma" g2="Theta" k="82" />
+<hkern g1="comma" g2="Omicron" k="82" />
+<hkern g1="comma" g2="Tau" k="143" />
+<hkern g1="comma" g2="Upsilon" k="123" />
+<hkern g1="comma" g2="Phi" k="102" />
+<hkern g1="comma" g2="Psi" k="123" />
+<hkern g1="comma" g2="Upsilondieresis" k="123" />
+<hkern g1="comma" g2="theta" k="41" />
+<hkern g1="comma" g2="afii10051" k="143" />
+<hkern g1="comma" g2="afii10053" k="102" />
+<hkern g1="comma" g2="afii10060" k="143" />
+<hkern g1="comma" g2="afii10032" k="102" />
+<hkern g1="comma" g2="afii10035" k="102" />
+<hkern g1="comma" g2="afii10036" k="143" />
+<hkern g1="comma" g2="afii10038" k="82" />
+<hkern g1="comma" g2="afii10041" k="164" />
+<hkern g1="comma" g2="afii10044" k="143" />
+<hkern g1="comma" g2="afii10084" k="102" />
+<hkern g1="comma" g2="afii10089" k="123" />
+<hkern g1="comma" g2="afii10092" k="102" />
+<hkern g1="comma" g2="Wgrave" k="123" />
+<hkern g1="comma" g2="Wacute" k="123" />
+<hkern g1="comma" g2="Wdieresis" k="123" />
+<hkern g1="comma" g2="Ygrave" k="123" />
+<hkern g1="comma" g2="uni03D2" k="123" />
+<hkern g1="comma" g2="Ohorn" k="102" />
+<hkern g1="comma" g2="Uhorn" k="41" />
+<hkern g1="comma" g2="uni0460" k="102" />
+<hkern g1="comma" g2="uni0470" k="164" />
+<hkern g1="comma" g2="uni0472" k="102" />
+<hkern g1="comma" g2="uni0474" k="123" />
+<hkern g1="comma" g2="uni0476" k="123" />
+<hkern g1="comma" g2="uni0478" k="102" />
+<hkern g1="comma" g2="uni047A" k="102" />
+<hkern g1="comma" g2="uni047C" k="102" />
+<hkern g1="comma" g2="uni047E" k="102" />
+<hkern g1="comma" g2="uni0480" k="102" />
+<hkern g1="comma" g2="uni04A0" k="143" />
+<hkern g1="comma" g2="uni04A1" k="102" />
+<hkern g1="comma" g2="uni04A8" k="102" />
+<hkern g1="comma" g2="uni04AA" k="102" />
+<hkern g1="comma" g2="uni04AC" k="143" />
+<hkern g1="comma" g2="uni04AD" k="102" />
+<hkern g1="comma" g2="uni04AE" k="123" />
+<hkern g1="comma" g2="uni04B0" k="123" />
+<hkern g1="comma" g2="uni04B4" k="143" />
+<hkern g1="comma" g2="uni04B5" k="102" />
+<hkern g1="comma" g2="uni04B6" k="164" />
+<hkern g1="comma" g2="uni04B7" k="123" />
+<hkern g1="comma" g2="uni04B8" k="164" />
+<hkern g1="comma" g2="uni04B9" k="123" />
+<hkern g1="comma" g2="uni04BC" k="123" />
+<hkern g1="comma" g2="uni04BE" k="123" />
+<hkern g1="comma" g2="uni04CB" k="164" />
+<hkern g1="comma" g2="uni04CC" k="123" />
+<hkern g1="comma" g2="uni04E6" k="102" />
+<hkern g1="comma" g2="uni04E8" k="102" />
+<hkern g1="comma" g2="uni04EA" k="102" />
+<hkern g1="comma" g2="uni04F4" k="164" />
+<hkern g1="comma" g2="uni04F5" k="123" />
+<hkern g1="comma" g2="uni0504" k="123" />
+<hkern g1="comma" g2="uni0505" k="102" />
+<hkern g1="comma" g2="uni0506" k="123" />
+<hkern g1="comma" g2="uni0507" k="102" />
+<hkern g1="comma" g2="uni050C" k="102" />
+<hkern g1="comma" g2="uni050E" k="143" />
+<hkern g1="comma" g2="uni050F" k="102" />
+<hkern g1="comma" g2="uni1ECC" k="102" />
+<hkern g1="comma" g2="uni1ECE" k="102" />
+<hkern g1="comma" g2="uni1ED0" k="102" />
+<hkern g1="comma" g2="uni1ED2" k="102" />
+<hkern g1="comma" g2="uni1ED4" k="102" />
+<hkern g1="comma" g2="uni1ED6" k="102" />
+<hkern g1="comma" g2="uni1ED8" k="102" />
+<hkern g1="comma" g2="uni1EDA" k="102" />
+<hkern g1="comma" g2="uni1EDC" k="102" />
+<hkern g1="comma" g2="uni1EDE" k="102" />
+<hkern g1="comma" g2="uni1EE0" k="102" />
+<hkern g1="comma" g2="uni1EE2" k="102" />
+<hkern g1="comma" g2="uni1EE4" k="41" />
+<hkern g1="comma" g2="uni1EE6" k="41" />
+<hkern g1="comma" g2="uni1EE8" k="41" />
+<hkern g1="comma" g2="uni1EEA" k="41" />
+<hkern g1="comma" g2="uni1EEC" k="41" />
+<hkern g1="comma" g2="uni1EEE" k="41" />
+<hkern g1="comma" g2="uni1EF0" k="41" />
+<hkern g1="comma" g2="uni1EF4" k="123" />
+<hkern g1="comma" g2="uni1EF6" k="123" />
+<hkern g1="comma" g2="uni1EF8" k="123" />
+<hkern g1="comma" g2="Tcedilla" k="143" />
+<hkern g1="hyphen" g2="T" k="82" />
+<hkern g1="hyphen" g2="Tcommaaccent" k="82" />
+<hkern g1="hyphen" g2="Tcaron" k="82" />
+<hkern g1="hyphen" g2="Tau" k="82" />
+<hkern g1="hyphen" g2="afii10051" k="82" />
+<hkern g1="hyphen" g2="afii10060" k="82" />
+<hkern g1="hyphen" g2="afii10036" k="82" />
+<hkern g1="hyphen" g2="afii10044" k="82" />
+<hkern g1="hyphen" g2="afii10084" k="41" />
+<hkern g1="hyphen" g2="afii10092" k="41" />
+<hkern g1="hyphen" g2="uni04A0" k="82" />
+<hkern g1="hyphen" g2="uni04A1" k="41" />
+<hkern g1="hyphen" g2="uni04AC" k="82" />
+<hkern g1="hyphen" g2="uni04AD" k="41" />
+<hkern g1="hyphen" g2="uni04B4" k="82" />
+<hkern g1="hyphen" g2="uni04B5" k="41" />
+<hkern g1="hyphen" g2="uni050E" k="82" />
+<hkern g1="hyphen" g2="uni050F" k="41" />
+<hkern g1="hyphen" g2="Tcedilla" k="82" />
+<hkern g1="period" g2="C" k="102" />
+<hkern g1="period" g2="G" k="102" />
+<hkern g1="period" g2="O" k="102" />
+<hkern g1="period" g2="Q" k="102" />
+<hkern g1="period" g2="T" k="143" />
+<hkern g1="period" g2="U" k="41" />
+<hkern g1="period" g2="V" k="123" />
+<hkern g1="period" g2="W" k="123" />
+<hkern g1="period" g2="Y" k="123" />
+<hkern g1="period" g2="Ccedilla" k="102" />
+<hkern g1="period" g2="Ograve" k="102" />
+<hkern g1="period" g2="Oacute" k="102" />
+<hkern g1="period" g2="Ocircumflex" k="102" />
+<hkern g1="period" g2="Otilde" k="102" />
+<hkern g1="period" g2="Odieresis" k="102" />
+<hkern g1="period" g2="Oslash" k="102" />
+<hkern g1="period" g2="Ugrave" k="41" />
+<hkern g1="period" g2="Uacute" k="41" />
+<hkern g1="period" g2="Ucircumflex" k="41" />
+<hkern g1="period" g2="Udieresis" k="41" />
+<hkern g1="period" g2="Yacute" k="123" />
+<hkern g1="period" g2="Cacute" k="102" />
+<hkern g1="period" g2="Ccircumflex" k="102" />
+<hkern g1="period" g2="Cdot" k="102" />
+<hkern g1="period" g2="Ccaron" k="102" />
+<hkern g1="period" g2="Gcircumflex" k="102" />
+<hkern g1="period" g2="Gbreve" k="102" />
+<hkern g1="period" g2="Gdot" k="102" />
+<hkern g1="period" g2="Gcommaaccent" k="102" />
+<hkern g1="period" g2="Omacron" k="102" />
+<hkern g1="period" g2="Obreve" k="102" />
+<hkern g1="period" g2="Ohungarumlaut" k="102" />
+<hkern g1="period" g2="OE" k="102" />
+<hkern g1="period" g2="Tcommaaccent" k="143" />
+<hkern g1="period" g2="Tcaron" k="143" />
+<hkern g1="period" g2="Utilde" k="41" />
+<hkern g1="period" g2="Umacron" k="41" />
+<hkern g1="period" g2="Ubreve" k="41" />
+<hkern g1="period" g2="Uring" k="41" />
+<hkern g1="period" g2="Uhungarumlaut" k="41" />
+<hkern g1="period" g2="Uogonek" k="41" />
+<hkern g1="period" g2="Wcircumflex" k="123" />
+<hkern g1="period" g2="Ycircumflex" k="123" />
+<hkern g1="period" g2="Ydieresis" k="123" />
+<hkern g1="period" g2="Oslashacute" k="102" />
+<hkern g1="period" g2="Theta" k="82" />
+<hkern g1="period" g2="Omicron" k="82" />
+<hkern g1="period" g2="Tau" k="143" />
+<hkern g1="period" g2="Upsilon" k="123" />
+<hkern g1="period" g2="Phi" k="102" />
+<hkern g1="period" g2="Psi" k="123" />
+<hkern g1="period" g2="Upsilondieresis" k="123" />
+<hkern g1="period" g2="theta" k="41" />
+<hkern g1="period" g2="afii10051" k="143" />
+<hkern g1="period" g2="afii10053" k="102" />
+<hkern g1="period" g2="afii10060" k="143" />
+<hkern g1="period" g2="afii10032" k="102" />
+<hkern g1="period" g2="afii10035" k="102" />
+<hkern g1="period" g2="afii10036" k="143" />
+<hkern g1="period" g2="afii10038" k="82" />
+<hkern g1="period" g2="afii10041" k="164" />
+<hkern g1="period" g2="afii10044" k="143" />
+<hkern g1="period" g2="afii10084" k="102" />
+<hkern g1="period" g2="afii10089" k="123" />
+<hkern g1="period" g2="afii10092" k="102" />
+<hkern g1="period" g2="Wgrave" k="123" />
+<hkern g1="period" g2="Wacute" k="123" />
+<hkern g1="period" g2="Wdieresis" k="123" />
+<hkern g1="period" g2="Ygrave" k="123" />
+<hkern g1="period" g2="uni03D2" k="123" />
+<hkern g1="period" g2="Ohorn" k="102" />
+<hkern g1="period" g2="Uhorn" k="41" />
+<hkern g1="period" g2="uni0460" k="102" />
+<hkern g1="period" g2="uni0470" k="164" />
+<hkern g1="period" g2="uni0472" k="102" />
+<hkern g1="period" g2="uni0474" k="123" />
+<hkern g1="period" g2="uni0476" k="123" />
+<hkern g1="period" g2="uni0478" k="102" />
+<hkern g1="period" g2="uni047A" k="102" />
+<hkern g1="period" g2="uni047C" k="102" />
+<hkern g1="period" g2="uni047E" k="102" />
+<hkern g1="period" g2="uni0480" k="102" />
+<hkern g1="period" g2="uni04A0" k="143" />
+<hkern g1="period" g2="uni04A1" k="102" />
+<hkern g1="period" g2="uni04A8" k="102" />
+<hkern g1="period" g2="uni04AA" k="102" />
+<hkern g1="period" g2="uni04AC" k="143" />
+<hkern g1="period" g2="uni04AD" k="102" />
+<hkern g1="period" g2="uni04AE" k="123" />
+<hkern g1="period" g2="uni04B0" k="123" />
+<hkern g1="period" g2="uni04B4" k="143" />
+<hkern g1="period" g2="uni04B5" k="102" />
+<hkern g1="period" g2="uni04B6" k="164" />
+<hkern g1="period" g2="uni04B7" k="123" />
+<hkern g1="period" g2="uni04B8" k="164" />
+<hkern g1="period" g2="uni04B9" k="123" />
+<hkern g1="period" g2="uni04BC" k="123" />
+<hkern g1="period" g2="uni04BE" k="123" />
+<hkern g1="period" g2="uni04CB" k="164" />
+<hkern g1="period" g2="uni04CC" k="123" />
+<hkern g1="period" g2="uni04E6" k="102" />
+<hkern g1="period" g2="uni04E8" k="102" />
+<hkern g1="period" g2="uni04EA" k="102" />
+<hkern g1="period" g2="uni04F4" k="164" />
+<hkern g1="period" g2="uni04F5" k="123" />
+<hkern g1="period" g2="uni0504" k="123" />
+<hkern g1="period" g2="uni0505" k="102" />
+<hkern g1="period" g2="uni0506" k="123" />
+<hkern g1="period" g2="uni0507" k="102" />
+<hkern g1="period" g2="uni050C" k="102" />
+<hkern g1="period" g2="uni050E" k="143" />
+<hkern g1="period" g2="uni050F" k="102" />
+<hkern g1="period" g2="uni1ECC" k="102" />
+<hkern g1="period" g2="uni1ECE" k="102" />
+<hkern g1="period" g2="uni1ED0" k="102" />
+<hkern g1="period" g2="uni1ED2" k="102" />
+<hkern g1="period" g2="uni1ED4" k="102" />
+<hkern g1="period" g2="uni1ED6" k="102" />
+<hkern g1="period" g2="uni1ED8" k="102" />
+<hkern g1="period" g2="uni1EDA" k="102" />
+<hkern g1="period" g2="uni1EDC" k="102" />
+<hkern g1="period" g2="uni1EDE" k="102" />
+<hkern g1="period" g2="uni1EE0" k="102" />
+<hkern g1="period" g2="uni1EE2" k="102" />
+<hkern g1="period" g2="uni1EE4" k="41" />
+<hkern g1="period" g2="uni1EE6" k="41" />
+<hkern g1="period" g2="uni1EE8" k="41" />
+<hkern g1="period" g2="uni1EEA" k="41" />
+<hkern g1="period" g2="uni1EEC" k="41" />
+<hkern g1="period" g2="uni1EEE" k="41" />
+<hkern g1="period" g2="uni1EF0" k="41" />
+<hkern g1="period" g2="uni1EF4" k="123" />
+<hkern g1="period" g2="uni1EF6" k="123" />
+<hkern g1="period" g2="uni1EF8" k="123" />
+<hkern g1="period" g2="Tcedilla" k="143" />
+<hkern g1="A" g2="quotedbl" k="143" />
+<hkern g1="A" g2="quotesingle" k="143" />
+<hkern g1="A" g2="C" k="41" />
+<hkern g1="A" g2="G" k="41" />
+<hkern g1="A" g2="J" k="-266" />
+<hkern g1="A" g2="O" k="41" />
+<hkern g1="A" g2="Q" k="41" />
+<hkern g1="A" g2="T" k="143" />
+<hkern g1="A" g2="V" k="82" />
+<hkern g1="A" g2="W" k="82" />
+<hkern g1="A" g2="Y" k="123" />
+<hkern g1="A" g2="Ccedilla" k="41" />
+<hkern g1="A" g2="Ograve" k="41" />
+<hkern g1="A" g2="Oacute" k="41" />
+<hkern g1="A" g2="Ocircumflex" k="41" />
+<hkern g1="A" g2="Otilde" k="41" />
+<hkern g1="A" g2="Odieresis" k="41" />
+<hkern g1="A" g2="Oslash" k="41" />
+<hkern g1="A" g2="Yacute" k="123" />
+<hkern g1="A" g2="Cacute" k="41" />
+<hkern g1="A" g2="Ccircumflex" k="41" />
+<hkern g1="A" g2="Cdot" k="41" />
+<hkern g1="A" g2="Ccaron" k="41" />
+<hkern g1="A" g2="Gcircumflex" k="41" />
+<hkern g1="A" g2="Gbreve" k="41" />
+<hkern g1="A" g2="Gdot" k="41" />
+<hkern g1="A" g2="Gcommaaccent" k="41" />
+<hkern g1="A" g2="Omacron" k="41" />
+<hkern g1="A" g2="Obreve" k="41" />
+<hkern g1="A" g2="Ohungarumlaut" k="41" />
+<hkern g1="A" g2="OE" k="41" />
+<hkern g1="A" g2="Tcommaaccent" k="143" />
+<hkern g1="A" g2="Tcaron" k="143" />
+<hkern g1="A" g2="Wcircumflex" k="82" />
+<hkern g1="A" g2="Ycircumflex" k="123" />
+<hkern g1="A" g2="Ydieresis" k="123" />
+<hkern g1="A" g2="Oslashacute" k="41" />
+<hkern g1="A" g2="Wgrave" k="82" />
+<hkern g1="A" g2="Wacute" k="82" />
+<hkern g1="A" g2="Wdieresis" k="82" />
+<hkern g1="A" g2="Ygrave" k="123" />
+<hkern g1="A" g2="quoteright" k="143" />
+<hkern g1="A" g2="quotedblright" k="143" />
+<hkern g1="A" g2="Ohorn" k="41" />
+<hkern g1="A" g2="uni1ECC" k="41" />
+<hkern g1="A" g2="uni1ECE" k="41" />
+<hkern g1="A" g2="uni1ED0" k="41" />
+<hkern g1="A" g2="uni1ED2" k="41" />
+<hkern g1="A" g2="uni1ED4" k="41" />
+<hkern g1="A" g2="uni1ED6" k="41" />
+<hkern g1="A" g2="uni1ED8" k="41" />
+<hkern g1="A" g2="uni1EDA" k="41" />
+<hkern g1="A" g2="uni1EDC" k="41" />
+<hkern g1="A" g2="uni1EDE" k="41" />
+<hkern g1="A" g2="uni1EE0" k="41" />
+<hkern g1="A" g2="uni1EE2" k="41" />
+<hkern g1="A" g2="uni1EF4" k="123" />
+<hkern g1="A" g2="uni1EF6" k="123" />
+<hkern g1="A" g2="uni1EF8" k="123" />
+<hkern g1="A" g2="Tcedilla" k="143" />
+<hkern g1="B" g2="comma" k="82" />
+<hkern g1="B" g2="period" k="82" />
+<hkern g1="B" g2="A" k="41" />
+<hkern g1="B" g2="T" k="61" />
+<hkern g1="B" g2="V" k="20" />
+<hkern g1="B" g2="W" k="20" />
+<hkern g1="B" g2="X" k="41" />
+<hkern g1="B" g2="Y" k="20" />
+<hkern g1="B" g2="Z" k="20" />
+<hkern g1="B" g2="Agrave" k="41" />
+<hkern g1="B" g2="Aacute" k="41" />
+<hkern g1="B" g2="Acircumflex" k="41" />
+<hkern g1="B" g2="Atilde" k="41" />
+<hkern g1="B" g2="Adieresis" k="41" />
+<hkern g1="B" g2="Aring" k="41" />
+<hkern g1="B" g2="Yacute" k="20" />
+<hkern g1="B" g2="Amacron" k="41" />
+<hkern g1="B" g2="Abreve" k="41" />
+<hkern g1="B" g2="Aogonek" k="41" />
+<hkern g1="B" g2="Tcommaaccent" k="61" />
+<hkern g1="B" g2="Tcaron" k="61" />
+<hkern g1="B" g2="Wcircumflex" k="20" />
+<hkern g1="B" g2="Ycircumflex" k="20" />
+<hkern g1="B" g2="Ydieresis" k="20" />
+<hkern g1="B" g2="Zacute" k="20" />
+<hkern g1="B" g2="Zdotaccent" k="20" />
+<hkern g1="B" g2="Zcaron" k="20" />
+<hkern g1="B" g2="Aringacute" k="41" />
+<hkern g1="B" g2="afii10054" k="20" />
+<hkern g1="B" g2="Wgrave" k="20" />
+<hkern g1="B" g2="Wacute" k="20" />
+<hkern g1="B" g2="Wdieresis" k="20" />
+<hkern g1="B" g2="Ygrave" k="20" />
+<hkern g1="B" g2="quotesinglbase" k="82" />
+<hkern g1="B" g2="quotedblbase" k="82" />
+<hkern g1="B" g2="uni1E00" k="41" />
+<hkern g1="B" g2="uni1EA0" k="41" />
+<hkern g1="B" g2="uni1EA2" k="41" />
+<hkern g1="B" g2="uni1EA4" k="41" />
+<hkern g1="B" g2="uni1EA6" k="41" />
+<hkern g1="B" g2="uni1EA8" k="41" />
+<hkern g1="B" g2="uni1EAA" k="41" />
+<hkern g1="B" g2="uni1EAC" k="41" />
+<hkern g1="B" g2="uni1EAE" k="41" />
+<hkern g1="B" g2="uni1EB0" k="41" />
+<hkern g1="B" g2="uni1EB2" k="41" />
+<hkern g1="B" g2="uni1EB4" k="41" />
+<hkern g1="B" g2="uni1EB6" k="41" />
+<hkern g1="B" g2="uni1EF4" k="20" />
+<hkern g1="B" g2="uni1EF6" k="20" />
+<hkern g1="B" g2="uni1EF8" k="20" />
+<hkern g1="B" g2="Tcedilla" k="61" />
+<hkern g1="C" g2="C" k="41" />
+<hkern g1="C" g2="G" k="41" />
+<hkern g1="C" g2="O" k="41" />
+<hkern g1="C" g2="Q" k="41" />
+<hkern g1="C" g2="Ccedilla" k="41" />
+<hkern g1="C" g2="Ograve" k="41" />
+<hkern g1="C" g2="Oacute" k="41" />
+<hkern g1="C" g2="Ocircumflex" k="41" />
+<hkern g1="C" g2="Otilde" k="41" />
+<hkern g1="C" g2="Odieresis" k="41" />
+<hkern g1="C" g2="Oslash" k="41" />
+<hkern g1="C" g2="Cacute" k="41" />
+<hkern g1="C" g2="Ccircumflex" k="41" />
+<hkern g1="C" g2="Cdot" k="41" />
+<hkern g1="C" g2="Ccaron" k="41" />
+<hkern g1="C" g2="Gcircumflex" k="41" />
+<hkern g1="C" g2="Gbreve" k="41" />
+<hkern g1="C" g2="Gdot" k="41" />
+<hkern g1="C" g2="Gcommaaccent" k="41" />
+<hkern g1="C" g2="Omacron" k="41" />
+<hkern g1="C" g2="Obreve" k="41" />
+<hkern g1="C" g2="Ohungarumlaut" k="41" />
+<hkern g1="C" g2="OE" k="41" />
+<hkern g1="C" g2="Oslashacute" k="41" />
+<hkern g1="C" g2="Ohorn" k="41" />
+<hkern g1="C" g2="uni1ECC" k="41" />
+<hkern g1="C" g2="uni1ECE" k="41" />
+<hkern g1="C" g2="uni1ED0" k="41" />
+<hkern g1="C" g2="uni1ED2" k="41" />
+<hkern g1="C" g2="uni1ED4" k="41" />
+<hkern g1="C" g2="uni1ED6" k="41" />
+<hkern g1="C" g2="uni1ED8" k="41" />
+<hkern g1="C" g2="uni1EDA" k="41" />
+<hkern g1="C" g2="uni1EDC" k="41" />
+<hkern g1="C" g2="uni1EDE" k="41" />
+<hkern g1="C" g2="uni1EE0" k="41" />
+<hkern g1="C" g2="uni1EE2" k="41" />
+<hkern g1="D" g2="comma" k="82" />
+<hkern g1="D" g2="period" k="82" />
+<hkern g1="D" g2="A" k="41" />
+<hkern g1="D" g2="T" k="61" />
+<hkern g1="D" g2="V" k="20" />
+<hkern g1="D" g2="W" k="20" />
+<hkern g1="D" g2="X" k="41" />
+<hkern g1="D" g2="Y" k="20" />
+<hkern g1="D" g2="Z" k="20" />
+<hkern g1="D" g2="Agrave" k="41" />
+<hkern g1="D" g2="Aacute" k="41" />
+<hkern g1="D" g2="Acircumflex" k="41" />
+<hkern g1="D" g2="Atilde" k="41" />
+<hkern g1="D" g2="Adieresis" k="41" />
+<hkern g1="D" g2="Aring" k="41" />
+<hkern g1="D" g2="Yacute" k="20" />
+<hkern g1="D" g2="Amacron" k="41" />
+<hkern g1="D" g2="Abreve" k="41" />
+<hkern g1="D" g2="Aogonek" k="41" />
+<hkern g1="D" g2="Tcommaaccent" k="61" />
+<hkern g1="D" g2="Tcaron" k="61" />
+<hkern g1="D" g2="Wcircumflex" k="20" />
+<hkern g1="D" g2="Ycircumflex" k="20" />
+<hkern g1="D" g2="Ydieresis" k="20" />
+<hkern g1="D" g2="Zacute" k="20" />
+<hkern g1="D" g2="Zdotaccent" k="20" />
+<hkern g1="D" g2="Zcaron" k="20" />
+<hkern g1="D" g2="Aringacute" k="41" />
+<hkern g1="D" g2="afii10054" k="20" />
+<hkern g1="D" g2="Wgrave" k="20" />
+<hkern g1="D" g2="Wacute" k="20" />
+<hkern g1="D" g2="Wdieresis" k="20" />
+<hkern g1="D" g2="Ygrave" k="20" />
+<hkern g1="D" g2="quotesinglbase" k="82" />
+<hkern g1="D" g2="quotedblbase" k="82" />
+<hkern g1="D" g2="uni1E00" k="41" />
+<hkern g1="D" g2="uni1EA0" k="41" />
+<hkern g1="D" g2="uni1EA2" k="41" />
+<hkern g1="D" g2="uni1EA4" k="41" />
+<hkern g1="D" g2="uni1EA6" k="41" />
+<hkern g1="D" g2="uni1EA8" k="41" />
+<hkern g1="D" g2="uni1EAA" k="41" />
+<hkern g1="D" g2="uni1EAC" k="41" />
+<hkern g1="D" g2="uni1EAE" k="41" />
+<hkern g1="D" g2="uni1EB0" k="41" />
+<hkern g1="D" g2="uni1EB2" k="41" />
+<hkern g1="D" g2="uni1EB4" k="41" />
+<hkern g1="D" g2="uni1EB6" k="41" />
+<hkern g1="D" g2="uni1EF4" k="20" />
+<hkern g1="D" g2="uni1EF6" k="20" />
+<hkern g1="D" g2="uni1EF8" k="20" />
+<hkern g1="D" g2="Tcedilla" k="61" />
+<hkern g1="E" g2="J" k="-123" />
+<hkern g1="F" g2="comma" k="123" />
+<hkern g1="F" g2="period" k="123" />
+<hkern g1="F" g2="question" k="-41" />
+<hkern g1="F" g2="A" k="41" />
+<hkern g1="F" g2="Agrave" k="41" />
+<hkern g1="F" g2="Aacute" k="41" />
+<hkern g1="F" g2="Acircumflex" k="41" />
+<hkern g1="F" g2="Atilde" k="41" />
+<hkern g1="F" g2="Adieresis" k="41" />
+<hkern g1="F" g2="Aring" k="41" />
+<hkern g1="F" g2="Amacron" k="41" />
+<hkern g1="F" g2="Abreve" k="41" />
+<hkern g1="F" g2="Aogonek" k="41" />
+<hkern g1="F" g2="Aringacute" k="41" />
+<hkern g1="F" g2="quotesinglbase" k="123" />
+<hkern g1="F" g2="quotedblbase" k="123" />
+<hkern g1="F" g2="uni1E00" k="41" />
+<hkern g1="F" g2="uni1EA0" k="41" />
+<hkern g1="F" g2="uni1EA2" k="41" />
+<hkern g1="F" g2="uni1EA4" k="41" />
+<hkern g1="F" g2="uni1EA6" k="41" />
+<hkern g1="F" g2="uni1EA8" k="41" />
+<hkern g1="F" g2="uni1EAA" k="41" />
+<hkern g1="F" g2="uni1EAC" k="41" />
+<hkern g1="F" g2="uni1EAE" k="41" />
+<hkern g1="F" g2="uni1EB0" k="41" />
+<hkern g1="F" g2="uni1EB2" k="41" />
+<hkern g1="F" g2="uni1EB4" k="41" />
+<hkern g1="F" g2="uni1EB6" k="41" />
+<hkern g1="K" g2="C" k="41" />
+<hkern g1="K" g2="G" k="41" />
+<hkern g1="K" g2="O" k="41" />
+<hkern g1="K" g2="Q" k="41" />
+<hkern g1="K" g2="Ccedilla" k="41" />
+<hkern g1="K" g2="Ograve" k="41" />
+<hkern g1="K" g2="Oacute" k="41" />
+<hkern g1="K" g2="Ocircumflex" k="41" />
+<hkern g1="K" g2="Otilde" k="41" />
+<hkern g1="K" g2="Odieresis" k="41" />
+<hkern g1="K" g2="Oslash" k="41" />
+<hkern g1="K" g2="Cacute" k="41" />
+<hkern g1="K" g2="Ccircumflex" k="41" />
+<hkern g1="K" g2="Cdot" k="41" />
+<hkern g1="K" g2="Ccaron" k="41" />
+<hkern g1="K" g2="Gcircumflex" k="41" />
+<hkern g1="K" g2="Gbreve" k="41" />
+<hkern g1="K" g2="Gdot" k="41" />
+<hkern g1="K" g2="Gcommaaccent" k="41" />
+<hkern g1="K" g2="Omacron" k="41" />
+<hkern g1="K" g2="Obreve" k="41" />
+<hkern g1="K" g2="Ohungarumlaut" k="41" />
+<hkern g1="K" g2="OE" k="41" />
+<hkern g1="K" g2="Oslashacute" k="41" />
+<hkern g1="K" g2="Ohorn" k="41" />
+<hkern g1="K" g2="uni1ECC" k="41" />
+<hkern g1="K" g2="uni1ECE" k="41" />
+<hkern g1="K" g2="uni1ED0" k="41" />
+<hkern g1="K" g2="uni1ED2" k="41" />
+<hkern g1="K" g2="uni1ED4" k="41" />
+<hkern g1="K" g2="uni1ED6" k="41" />
+<hkern g1="K" g2="uni1ED8" k="41" />
+<hkern g1="K" g2="uni1EDA" k="41" />
+<hkern g1="K" g2="uni1EDC" k="41" />
+<hkern g1="K" g2="uni1EDE" k="41" />
+<hkern g1="K" g2="uni1EE0" k="41" />
+<hkern g1="K" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="quotedbl" k="164" />
+<hkern g1="L" g2="quotesingle" k="164" />
+<hkern g1="L" g2="C" k="41" />
+<hkern g1="L" g2="G" k="41" />
+<hkern g1="L" g2="O" k="41" />
+<hkern g1="L" g2="Q" k="41" />
+<hkern g1="L" g2="T" k="41" />
+<hkern g1="L" g2="U" k="20" />
+<hkern g1="L" g2="V" k="41" />
+<hkern g1="L" g2="W" k="41" />
+<hkern g1="L" g2="Y" k="61" />
+<hkern g1="L" g2="Ccedilla" k="41" />
+<hkern g1="L" g2="Ograve" k="41" />
+<hkern g1="L" g2="Oacute" k="41" />
+<hkern g1="L" g2="Ocircumflex" k="41" />
+<hkern g1="L" g2="Otilde" k="41" />
+<hkern g1="L" g2="Odieresis" k="41" />
+<hkern g1="L" g2="Oslash" k="41" />
+<hkern g1="L" g2="Ugrave" k="20" />
+<hkern g1="L" g2="Uacute" k="20" />
+<hkern g1="L" g2="Ucircumflex" k="20" />
+<hkern g1="L" g2="Udieresis" k="20" />
+<hkern g1="L" g2="Yacute" k="61" />
+<hkern g1="L" g2="Cacute" k="41" />
+<hkern g1="L" g2="Ccircumflex" k="41" />
+<hkern g1="L" g2="Cdot" k="41" />
+<hkern g1="L" g2="Ccaron" k="41" />
+<hkern g1="L" g2="Gcircumflex" k="41" />
+<hkern g1="L" g2="Gbreve" k="41" />
+<hkern g1="L" g2="Gdot" k="41" />
+<hkern g1="L" g2="Gcommaaccent" k="41" />
+<hkern g1="L" g2="Omacron" k="41" />
+<hkern g1="L" g2="Obreve" k="41" />
+<hkern g1="L" g2="Ohungarumlaut" k="41" />
+<hkern g1="L" g2="OE" k="41" />
+<hkern g1="L" g2="Tcommaaccent" k="41" />
+<hkern g1="L" g2="Tcaron" k="41" />
+<hkern g1="L" g2="Utilde" k="20" />
+<hkern g1="L" g2="Umacron" k="20" />
+<hkern g1="L" g2="Ubreve" k="20" />
+<hkern g1="L" g2="Uring" k="20" />
+<hkern g1="L" g2="Uhungarumlaut" k="20" />
+<hkern g1="L" g2="Uogonek" k="20" />
+<hkern g1="L" g2="Wcircumflex" k="41" />
+<hkern g1="L" g2="Ycircumflex" k="61" />
+<hkern g1="L" g2="Ydieresis" k="61" />
+<hkern g1="L" g2="Oslashacute" k="41" />
+<hkern g1="L" g2="Wgrave" k="41" />
+<hkern g1="L" g2="Wacute" k="41" />
+<hkern g1="L" g2="Wdieresis" k="41" />
+<hkern g1="L" g2="Ygrave" k="61" />
+<hkern g1="L" g2="quoteright" k="164" />
+<hkern g1="L" g2="quotedblright" k="164" />
+<hkern g1="L" g2="Ohorn" k="41" />
+<hkern g1="L" g2="Uhorn" k="20" />
+<hkern g1="L" g2="uni1ECC" k="41" />
+<hkern g1="L" g2="uni1ECE" k="41" />
+<hkern g1="L" g2="uni1ED0" k="41" />
+<hkern g1="L" g2="uni1ED2" k="41" />
+<hkern g1="L" g2="uni1ED4" k="41" />
+<hkern g1="L" g2="uni1ED6" k="41" />
+<hkern g1="L" g2="uni1ED8" k="41" />
+<hkern g1="L" g2="uni1EDA" k="41" />
+<hkern g1="L" g2="uni1EDC" k="41" />
+<hkern g1="L" g2="uni1EDE" k="41" />
+<hkern g1="L" g2="uni1EE0" k="41" />
+<hkern g1="L" g2="uni1EE2" k="41" />
+<hkern g1="L" g2="uni1EE4" k="20" />
+<hkern g1="L" g2="uni1EE6" k="20" />
+<hkern g1="L" g2="uni1EE8" k="20" />
+<hkern g1="L" g2="uni1EEA" k="20" />
+<hkern g1="L" g2="uni1EEC" k="20" />
+<hkern g1="L" g2="uni1EEE" k="20" />
+<hkern g1="L" g2="uni1EF0" k="20" />
+<hkern g1="L" g2="uni1EF4" k="61" />
+<hkern g1="L" g2="uni1EF6" k="61" />
+<hkern g1="L" g2="uni1EF8" k="61" />
+<hkern g1="L" g2="Tcedilla" k="41" />
+<hkern g1="O" g2="comma" k="82" />
+<hkern g1="O" g2="period" k="82" />
+<hkern g1="O" g2="A" k="41" />
+<hkern g1="O" g2="T" k="61" />
+<hkern g1="O" g2="V" k="20" />
+<hkern g1="O" g2="W" k="20" />
+<hkern g1="O" g2="X" k="41" />
+<hkern g1="O" g2="Y" k="20" />
+<hkern g1="O" g2="Z" k="20" />
+<hkern g1="O" g2="Agrave" k="41" />
+<hkern g1="O" g2="Aacute" k="41" />
+<hkern g1="O" g2="Acircumflex" k="41" />
+<hkern g1="O" g2="Atilde" k="41" />
+<hkern g1="O" g2="Adieresis" k="41" />
+<hkern g1="O" g2="Aring" k="41" />
+<hkern g1="O" g2="Yacute" k="20" />
+<hkern g1="O" g2="Amacron" k="41" />
+<hkern g1="O" g2="Abreve" k="41" />
+<hkern g1="O" g2="Aogonek" k="41" />
+<hkern g1="O" g2="Tcommaaccent" k="61" />
+<hkern g1="O" g2="Tcaron" k="61" />
+<hkern g1="O" g2="Wcircumflex" k="20" />
+<hkern g1="O" g2="Ycircumflex" k="20" />
+<hkern g1="O" g2="Ydieresis" k="20" />
+<hkern g1="O" g2="Zacute" k="20" />
+<hkern g1="O" g2="Zdotaccent" k="20" />
+<hkern g1="O" g2="Zcaron" k="20" />
+<hkern g1="O" g2="Aringacute" k="41" />
+<hkern g1="O" g2="afii10054" k="20" />
+<hkern g1="O" g2="Wgrave" k="20" />
+<hkern g1="O" g2="Wacute" k="20" />
+<hkern g1="O" g2="Wdieresis" k="20" />
+<hkern g1="O" g2="Ygrave" k="20" />
+<hkern g1="O" g2="quotesinglbase" k="82" />
+<hkern g1="O" g2="quotedblbase" k="82" />
+<hkern g1="O" g2="uni1E00" k="41" />
+<hkern g1="O" g2="uni1EA0" k="41" />
+<hkern g1="O" g2="uni1EA2" k="41" />
+<hkern g1="O" g2="uni1EA4" k="41" />
+<hkern g1="O" g2="uni1EA6" k="41" />
+<hkern g1="O" g2="uni1EA8" k="41" />
+<hkern g1="O" g2="uni1EAA" k="41" />
+<hkern g1="O" g2="uni1EAC" k="41" />
+<hkern g1="O" g2="uni1EAE" k="41" />
+<hkern g1="O" g2="uni1EB0" k="41" />
+<hkern g1="O" g2="uni1EB2" k="41" />
+<hkern g1="O" g2="uni1EB4" k="41" />
+<hkern g1="O" g2="uni1EB6" k="41" />
+<hkern g1="O" g2="uni1EF4" k="20" />
+<hkern g1="O" g2="uni1EF6" k="20" />
+<hkern g1="O" g2="uni1EF8" k="20" />
+<hkern g1="O" g2="Tcedilla" k="61" />
+<hkern g1="P" g2="comma" k="266" />
+<hkern g1="P" g2="period" k="266" />
+<hkern g1="P" g2="A" k="102" />
+<hkern g1="P" g2="X" k="41" />
+<hkern g1="P" g2="Z" k="20" />
+<hkern g1="P" g2="Agrave" k="102" />
+<hkern g1="P" g2="Aacute" k="102" />
+<hkern g1="P" g2="Acircumflex" k="102" />
+<hkern g1="P" g2="Atilde" k="102" />
+<hkern g1="P" g2="Adieresis" k="102" />
+<hkern g1="P" g2="Aring" k="102" />
+<hkern g1="P" g2="Amacron" k="102" />
+<hkern g1="P" g2="Abreve" k="102" />
+<hkern g1="P" g2="Aogonek" k="102" />
+<hkern g1="P" g2="Zacute" k="20" />
+<hkern g1="P" g2="Zdotaccent" k="20" />
+<hkern g1="P" g2="Zcaron" k="20" />
+<hkern g1="P" g2="Aringacute" k="102" />
+<hkern g1="P" g2="quotesinglbase" k="266" />
+<hkern g1="P" g2="quotedblbase" k="266" />
+<hkern g1="P" g2="uni1E00" k="102" />
+<hkern g1="P" g2="uni1EA0" k="102" />
+<hkern g1="P" g2="uni1EA2" k="102" />
+<hkern g1="P" g2="uni1EA4" k="102" />
+<hkern g1="P" g2="uni1EA6" k="102" />
+<hkern g1="P" g2="uni1EA8" k="102" />
+<hkern g1="P" g2="uni1EAA" k="102" />
+<hkern g1="P" g2="uni1EAC" k="102" />
+<hkern g1="P" g2="uni1EAE" k="102" />
+<hkern g1="P" g2="uni1EB0" k="102" />
+<hkern g1="P" g2="uni1EB2" k="102" />
+<hkern g1="P" g2="uni1EB4" k="102" />
+<hkern g1="P" g2="uni1EB6" k="102" />
+<hkern g1="Q" g2="comma" k="82" />
+<hkern g1="Q" g2="period" k="82" />
+<hkern g1="Q" g2="A" k="41" />
+<hkern g1="Q" g2="T" k="61" />
+<hkern g1="Q" g2="V" k="20" />
+<hkern g1="Q" g2="W" k="20" />
+<hkern g1="Q" g2="X" k="41" />
+<hkern g1="Q" g2="Y" k="20" />
+<hkern g1="Q" g2="Z" k="20" />
+<hkern g1="Q" g2="Agrave" k="41" />
+<hkern g1="Q" g2="Aacute" k="41" />
+<hkern g1="Q" g2="Acircumflex" k="41" />
+<hkern g1="Q" g2="Atilde" k="41" />
+<hkern g1="Q" g2="Adieresis" k="41" />
+<hkern g1="Q" g2="Aring" k="41" />
+<hkern g1="Q" g2="Yacute" k="20" />
+<hkern g1="Q" g2="Amacron" k="41" />
+<hkern g1="Q" g2="Abreve" k="41" />
+<hkern g1="Q" g2="Aogonek" k="41" />
+<hkern g1="Q" g2="Tcommaaccent" k="61" />
+<hkern g1="Q" g2="Tcaron" k="61" />
+<hkern g1="Q" g2="Wcircumflex" k="20" />
+<hkern g1="Q" g2="Ycircumflex" k="20" />
+<hkern g1="Q" g2="Ydieresis" k="20" />
+<hkern g1="Q" g2="Zacute" k="20" />
+<hkern g1="Q" g2="Zdotaccent" k="20" />
+<hkern g1="Q" g2="Zcaron" k="20" />
+<hkern g1="Q" g2="Aringacute" k="41" />
+<hkern g1="Q" g2="afii10054" k="20" />
+<hkern g1="Q" g2="Wgrave" k="20" />
+<hkern g1="Q" g2="Wacute" k="20" />
+<hkern g1="Q" g2="Wdieresis" k="20" />
+<hkern g1="Q" g2="Ygrave" k="20" />
+<hkern g1="Q" g2="quotesinglbase" k="82" />
+<hkern g1="Q" g2="quotedblbase" k="82" />
+<hkern g1="Q" g2="uni1E00" k="41" />
+<hkern g1="Q" g2="uni1EA0" k="41" />
+<hkern g1="Q" g2="uni1EA2" k="41" />
+<hkern g1="Q" g2="uni1EA4" k="41" />
+<hkern g1="Q" g2="uni1EA6" k="41" />
+<hkern g1="Q" g2="uni1EA8" k="41" />
+<hkern g1="Q" g2="uni1EAA" k="41" />
+<hkern g1="Q" g2="uni1EAC" k="41" />
+<hkern g1="Q" g2="uni1EAE" k="41" />
+<hkern g1="Q" g2="uni1EB0" k="41" />
+<hkern g1="Q" g2="uni1EB2" k="41" />
+<hkern g1="Q" g2="uni1EB4" k="41" />
+<hkern g1="Q" g2="uni1EB6" k="41" />
+<hkern g1="Q" g2="uni1EF4" k="20" />
+<hkern g1="Q" g2="uni1EF6" k="20" />
+<hkern g1="Q" g2="uni1EF8" k="20" />
+<hkern g1="Q" g2="Tcedilla" k="61" />
+<hkern g1="T" g2="comma" k="123" />
+<hkern g1="T" g2="hyphen" k="82" />
+<hkern g1="T" g2="period" k="123" />
+<hkern g1="T" g2="question" k="-41" />
+<hkern g1="T" g2="A" k="143" />
+<hkern g1="T" g2="C" k="41" />
+<hkern g1="T" g2="G" k="41" />
+<hkern g1="T" g2="O" k="41" />
+<hkern g1="T" g2="Q" k="41" />
+<hkern g1="T" g2="T" k="-41" />
+<hkern g1="T" g2="a" k="164" />
+<hkern g1="T" g2="c" k="143" />
+<hkern g1="T" g2="d" k="143" />
+<hkern g1="T" g2="e" k="143" />
+<hkern g1="T" g2="g" k="143" />
+<hkern g1="T" g2="m" k="102" />
+<hkern g1="T" g2="n" k="102" />
+<hkern g1="T" g2="o" k="143" />
+<hkern g1="T" g2="p" k="102" />
+<hkern g1="T" g2="q" k="143" />
+<hkern g1="T" g2="r" k="102" />
+<hkern g1="T" g2="s" k="123" />
+<hkern g1="T" g2="u" k="102" />
+<hkern g1="T" g2="v" k="41" />
+<hkern g1="T" g2="w" k="41" />
+<hkern g1="T" g2="x" k="41" />
+<hkern g1="T" g2="y" k="41" />
+<hkern g1="T" g2="z" k="82" />
+<hkern g1="T" g2="Agrave" k="143" />
+<hkern g1="T" g2="Aacute" k="143" />
+<hkern g1="T" g2="Acircumflex" k="143" />
+<hkern g1="T" g2="Atilde" k="143" />
+<hkern g1="T" g2="Adieresis" k="143" />
+<hkern g1="T" g2="Aring" k="143" />
+<hkern g1="T" g2="Ccedilla" k="41" />
+<hkern g1="T" g2="Ograve" k="41" />
+<hkern g1="T" g2="Oacute" k="41" />
+<hkern g1="T" g2="Ocircumflex" k="41" />
+<hkern g1="T" g2="Otilde" k="41" />
+<hkern g1="T" g2="Odieresis" k="41" />
+<hkern g1="T" g2="Oslash" k="41" />
+<hkern g1="T" g2="agrave" k="143" />
+<hkern g1="T" g2="aacute" k="164" />
+<hkern g1="T" g2="acircumflex" k="164" />
+<hkern g1="T" g2="atilde" k="164" />
+<hkern g1="T" g2="adieresis" k="164" />
+<hkern g1="T" g2="aring" k="164" />
+<hkern g1="T" g2="ae" k="164" />
+<hkern g1="T" g2="ccedilla" k="143" />
+<hkern g1="T" g2="egrave" k="143" />
+<hkern g1="T" g2="eacute" k="143" />
+<hkern g1="T" g2="ecircumflex" k="143" />
+<hkern g1="T" g2="edieresis" k="143" />
+<hkern g1="T" g2="ograve" k="143" />
+<hkern g1="T" g2="oacute" k="143" />
+<hkern g1="T" g2="ocircumflex" k="143" />
+<hkern g1="T" g2="otilde" k="143" />
+<hkern g1="T" g2="odieresis" k="143" />
+<hkern g1="T" g2="oslash" k="143" />
+<hkern g1="T" g2="ugrave" k="102" />
+<hkern g1="T" g2="uacute" k="102" />
+<hkern g1="T" g2="ucircumflex" k="102" />
+<hkern g1="T" g2="udieresis" k="102" />
+<hkern g1="T" g2="yacute" k="41" />
+<hkern g1="T" g2="Amacron" k="143" />
+<hkern g1="T" g2="amacron" k="164" />
+<hkern g1="T" g2="Abreve" k="143" />
+<hkern g1="T" g2="abreve" k="164" />
+<hkern g1="T" g2="Aogonek" k="143" />
+<hkern g1="T" g2="aogonek" k="164" />
+<hkern g1="T" g2="Cacute" k="41" />
+<hkern g1="T" g2="cacute" k="143" />
+<hkern g1="T" g2="Ccircumflex" k="41" />
+<hkern g1="T" g2="ccircumflex" k="143" />
+<hkern g1="T" g2="Cdot" k="41" />
+<hkern g1="T" g2="cdot" k="143" />
+<hkern g1="T" g2="Ccaron" k="41" />
+<hkern g1="T" g2="ccaron" k="143" />
+<hkern g1="T" g2="dcaron" k="143" />
+<hkern g1="T" g2="dcroat" k="143" />
+<hkern g1="T" g2="emacron" k="143" />
+<hkern g1="T" g2="ebreve" k="143" />
+<hkern g1="T" g2="edotaccent" k="143" />
+<hkern g1="T" g2="eogonek" k="143" />
+<hkern g1="T" g2="ecaron" k="143" />
+<hkern g1="T" g2="Gcircumflex" k="41" />
+<hkern g1="T" g2="gcircumflex" k="143" />
+<hkern g1="T" g2="Gbreve" k="41" />
+<hkern g1="T" g2="gbreve" k="143" />
+<hkern g1="T" g2="Gdot" k="41" />
+<hkern g1="T" g2="gdot" k="143" />
+<hkern g1="T" g2="Gcommaaccent" k="41" />
+<hkern g1="T" g2="gcommaaccent" k="143" />
+<hkern g1="T" g2="kgreenlandic" k="102" />
+<hkern g1="T" g2="nacute" k="102" />
+<hkern g1="T" g2="ncommaaccent" k="102" />
+<hkern g1="T" g2="eng" k="102" />
+<hkern g1="T" g2="Omacron" k="41" />
+<hkern g1="T" g2="omacron" k="143" />
+<hkern g1="T" g2="Obreve" k="41" />
+<hkern g1="T" g2="obreve" k="143" />
+<hkern g1="T" g2="Ohungarumlaut" k="41" />
+<hkern g1="T" g2="ohungarumlaut" k="143" />
+<hkern g1="T" g2="OE" k="41" />
+<hkern g1="T" g2="oe" k="143" />
+<hkern g1="T" g2="racute" k="102" />
+<hkern g1="T" g2="rcommaaccent" k="102" />
+<hkern g1="T" g2="sacute" k="123" />
+<hkern g1="T" g2="scedilla" k="123" />
+<hkern g1="T" g2="Tcommaaccent" k="-41" />
+<hkern g1="T" g2="Tcaron" k="-41" />
+<hkern g1="T" g2="utilde" k="102" />
+<hkern g1="T" g2="umacron" k="102" />
+<hkern g1="T" g2="ubreve" k="102" />
+<hkern g1="T" g2="uring" k="102" />
+<hkern g1="T" g2="uhungarumlaut" k="102" />
+<hkern g1="T" g2="uogonek" k="102" />
+<hkern g1="T" g2="wcircumflex" k="41" />
+<hkern g1="T" g2="zacute" k="82" />
+<hkern g1="T" g2="zdotaccent" k="82" />
+<hkern g1="T" g2="zcaron" k="82" />
+<hkern g1="T" g2="Aringacute" k="143" />
+<hkern g1="T" g2="aringacute" k="164" />
+<hkern g1="T" g2="aeacute" k="164" />
+<hkern g1="T" g2="Oslashacute" k="41" />
+<hkern g1="T" g2="oslashacute" k="143" />
+<hkern g1="T" g2="scommaaccent" k="123" />
+<hkern g1="T" g2="wgrave" k="41" />
+<hkern g1="T" g2="wacute" k="41" />
+<hkern g1="T" g2="endash" k="82" />
+<hkern g1="T" g2="emdash" k="82" />
+<hkern g1="T" g2="afii00208" k="82" />
+<hkern g1="T" g2="quotesinglbase" k="123" />
+<hkern g1="T" g2="quotedblbase" k="123" />
+<hkern g1="T" g2="uni1E3F" k="102" />
+<hkern g1="T" g2="uni1E00" k="143" />
+<hkern g1="T" g2="uni1E01" k="164" />
+<hkern g1="T" g2="Ohorn" k="41" />
+<hkern g1="T" g2="ohorn" k="143" />
+<hkern g1="T" g2="uhorn" k="102" />
+<hkern g1="T" g2="uni1EA0" k="143" />
+<hkern g1="T" g2="uni1EA1" k="164" />
+<hkern g1="T" g2="uni1EA2" k="143" />
+<hkern g1="T" g2="uni1EA3" k="164" />
+<hkern g1="T" g2="uni1EA4" k="143" />
+<hkern g1="T" g2="uni1EA5" k="164" />
+<hkern g1="T" g2="uni1EA6" k="143" />
+<hkern g1="T" g2="uni1EA8" k="143" />
+<hkern g1="T" g2="uni1EA9" k="164" />
+<hkern g1="T" g2="uni1EAA" k="143" />
+<hkern g1="T" g2="uni1EAB" k="164" />
+<hkern g1="T" g2="uni1EAC" k="143" />
+<hkern g1="T" g2="uni1EAD" k="164" />
+<hkern g1="T" g2="uni1EAE" k="143" />
+<hkern g1="T" g2="uni1EAF" k="164" />
+<hkern g1="T" g2="uni1EB0" k="143" />
+<hkern g1="T" g2="uni1EB1" k="164" />
+<hkern g1="T" g2="uni1EB2" k="143" />
+<hkern g1="T" g2="uni1EB3" k="164" />
+<hkern g1="T" g2="uni1EB4" k="143" />
+<hkern g1="T" g2="uni1EB5" k="164" />
+<hkern g1="T" g2="uni1EB6" k="143" />
+<hkern g1="T" g2="uni1EB7" k="164" />
+<hkern g1="T" g2="uni1EB9" k="143" />
+<hkern g1="T" g2="uni1EBB" k="143" />
+<hkern g1="T" g2="uni1EBD" k="143" />
+<hkern g1="T" g2="uni1EBF" k="143" />
+<hkern g1="T" g2="uni1EC3" k="143" />
+<hkern g1="T" g2="uni1EC5" k="143" />
+<hkern g1="T" g2="uni1EC7" k="143" />
+<hkern g1="T" g2="uni1ECC" k="41" />
+<hkern g1="T" g2="uni1ECD" k="143" />
+<hkern g1="T" g2="uni1ECE" k="41" />
+<hkern g1="T" g2="uni1ECF" k="143" />
+<hkern g1="T" g2="uni1ED0" k="41" />
+<hkern g1="T" g2="uni1ED1" k="143" />
+<hkern g1="T" g2="uni1ED2" k="41" />
+<hkern g1="T" g2="uni1ED4" k="41" />
+<hkern g1="T" g2="uni1ED5" k="143" />
+<hkern g1="T" g2="uni1ED6" k="41" />
+<hkern g1="T" g2="uni1ED7" k="143" />
+<hkern g1="T" g2="uni1ED8" k="41" />
+<hkern g1="T" g2="uni1ED9" k="143" />
+<hkern g1="T" g2="uni1EDA" k="41" />
+<hkern g1="T" g2="uni1EDB" k="143" />
+<hkern g1="T" g2="uni1EDC" k="41" />
+<hkern g1="T" g2="uni1EDD" k="143" />
+<hkern g1="T" g2="uni1EDE" k="41" />
+<hkern g1="T" g2="uni1EDF" k="143" />
+<hkern g1="T" g2="uni1EE0" k="41" />
+<hkern g1="T" g2="uni1EE1" k="143" />
+<hkern g1="T" g2="uni1EE2" k="41" />
+<hkern g1="T" g2="uni1EE3" k="143" />
+<hkern g1="T" g2="uni1EE5" k="102" />
+<hkern g1="T" g2="uni1EE7" k="102" />
+<hkern g1="T" g2="uni1EE9" k="102" />
+<hkern g1="T" g2="uni1EEB" k="102" />
+<hkern g1="T" g2="uni1EED" k="102" />
+<hkern g1="T" g2="uni1EEF" k="102" />
+<hkern g1="T" g2="uni1EF1" k="102" />
+<hkern g1="T" g2="uni1EF5" k="41" />
+<hkern g1="T" g2="Tcedilla" k="-41" />
+<hkern g1="U" g2="comma" k="41" />
+<hkern g1="U" g2="period" k="41" />
+<hkern g1="U" g2="A" k="20" />
+<hkern g1="U" g2="Agrave" k="20" />
+<hkern g1="U" g2="Aacute" k="20" />
+<hkern g1="U" g2="Acircumflex" k="20" />
+<hkern g1="U" g2="Atilde" k="20" />
+<hkern g1="U" g2="Adieresis" k="20" />
+<hkern g1="U" g2="Aring" k="20" />
+<hkern g1="U" g2="Amacron" k="20" />
+<hkern g1="U" g2="Abreve" k="20" />
+<hkern g1="U" g2="Aogonek" k="20" />
+<hkern g1="U" g2="Aringacute" k="20" />
+<hkern g1="U" g2="quotesinglbase" k="41" />
+<hkern g1="U" g2="quotedblbase" k="41" />
+<hkern g1="U" g2="uni1E00" k="20" />
+<hkern g1="U" g2="uni1EA0" k="20" />
+<hkern g1="U" g2="uni1EA2" k="20" />
+<hkern g1="U" g2="uni1EA4" k="20" />
+<hkern g1="U" g2="uni1EA6" k="20" />
+<hkern g1="U" g2="uni1EA8" k="20" />
+<hkern g1="U" g2="uni1EAA" k="20" />
+<hkern g1="U" g2="uni1EAC" k="20" />
+<hkern g1="U" g2="uni1EAE" k="20" />
+<hkern g1="U" g2="uni1EB0" k="20" />
+<hkern g1="U" g2="uni1EB2" k="20" />
+<hkern g1="U" g2="uni1EB4" k="20" />
+<hkern g1="U" g2="uni1EB6" k="20" />
+<hkern g1="V" g2="comma" k="102" />
+<hkern g1="V" g2="period" k="102" />
+<hkern g1="V" g2="question" k="-41" />
+<hkern g1="V" g2="A" k="82" />
+<hkern g1="V" g2="C" k="20" />
+<hkern g1="V" g2="G" k="20" />
+<hkern g1="V" g2="O" k="20" />
+<hkern g1="V" g2="Q" k="20" />
+<hkern g1="V" g2="a" k="41" />
+<hkern g1="V" g2="c" k="41" />
+<hkern g1="V" g2="d" k="41" />
+<hkern g1="V" g2="e" k="41" />
+<hkern g1="V" g2="g" k="20" />
+<hkern g1="V" g2="m" k="20" />
+<hkern g1="V" g2="n" k="20" />
+<hkern g1="V" g2="o" k="41" />
+<hkern g1="V" g2="p" k="20" />
+<hkern g1="V" g2="q" k="41" />
+<hkern g1="V" g2="r" k="20" />
+<hkern g1="V" g2="s" k="20" />
+<hkern g1="V" g2="u" k="20" />
+<hkern g1="V" g2="Agrave" k="82" />
+<hkern g1="V" g2="Aacute" k="82" />
+<hkern g1="V" g2="Acircumflex" k="82" />
+<hkern g1="V" g2="Atilde" k="82" />
+<hkern g1="V" g2="Adieresis" k="82" />
+<hkern g1="V" g2="Aring" k="82" />
+<hkern g1="V" g2="Ccedilla" k="20" />
+<hkern g1="V" g2="Ograve" k="20" />
+<hkern g1="V" g2="Oacute" k="20" />
+<hkern g1="V" g2="Ocircumflex" k="20" />
+<hkern g1="V" g2="Otilde" k="20" />
+<hkern g1="V" g2="Odieresis" k="20" />
+<hkern g1="V" g2="Oslash" k="20" />
+<hkern g1="V" g2="agrave" k="41" />
+<hkern g1="V" g2="aacute" k="41" />
+<hkern g1="V" g2="acircumflex" k="41" />
+<hkern g1="V" g2="atilde" k="41" />
+<hkern g1="V" g2="adieresis" k="41" />
+<hkern g1="V" g2="aring" k="41" />
+<hkern g1="V" g2="ae" k="41" />
+<hkern g1="V" g2="ccedilla" k="41" />
+<hkern g1="V" g2="egrave" k="41" />
+<hkern g1="V" g2="eacute" k="41" />
+<hkern g1="V" g2="ecircumflex" k="41" />
+<hkern g1="V" g2="edieresis" k="41" />
+<hkern g1="V" g2="ograve" k="41" />
+<hkern g1="V" g2="oacute" k="41" />
+<hkern g1="V" g2="ocircumflex" k="41" />
+<hkern g1="V" g2="otilde" k="41" />
+<hkern g1="V" g2="odieresis" k="41" />
+<hkern g1="V" g2="oslash" k="41" />
+<hkern g1="V" g2="ugrave" k="20" />
+<hkern g1="V" g2="uacute" k="20" />
+<hkern g1="V" g2="ucircumflex" k="20" />
+<hkern g1="V" g2="udieresis" k="20" />
+<hkern g1="V" g2="Amacron" k="82" />
+<hkern g1="V" g2="amacron" k="41" />
+<hkern g1="V" g2="Abreve" k="82" />
+<hkern g1="V" g2="abreve" k="41" />
+<hkern g1="V" g2="Aogonek" k="82" />
+<hkern g1="V" g2="aogonek" k="41" />
+<hkern g1="V" g2="Cacute" k="20" />
+<hkern g1="V" g2="cacute" k="41" />
+<hkern g1="V" g2="Ccircumflex" k="20" />
+<hkern g1="V" g2="ccircumflex" k="41" />
+<hkern g1="V" g2="Cdot" k="20" />
+<hkern g1="V" g2="cdot" k="41" />
+<hkern g1="V" g2="Ccaron" k="20" />
+<hkern g1="V" g2="ccaron" k="41" />
+<hkern g1="V" g2="dcaron" k="41" />
+<hkern g1="V" g2="dcroat" k="41" />
+<hkern g1="V" g2="emacron" k="41" />
+<hkern g1="V" g2="ebreve" k="41" />
+<hkern g1="V" g2="edotaccent" k="41" />
+<hkern g1="V" g2="eogonek" k="41" />
+<hkern g1="V" g2="ecaron" k="41" />
+<hkern g1="V" g2="Gcircumflex" k="20" />
+<hkern g1="V" g2="gcircumflex" k="20" />
+<hkern g1="V" g2="Gbreve" k="20" />
+<hkern g1="V" g2="gbreve" k="20" />
+<hkern g1="V" g2="Gdot" k="20" />
+<hkern g1="V" g2="gdot" k="20" />
+<hkern g1="V" g2="Gcommaaccent" k="20" />
+<hkern g1="V" g2="gcommaaccent" k="20" />
+<hkern g1="V" g2="kgreenlandic" k="20" />
+<hkern g1="V" g2="nacute" k="20" />
+<hkern g1="V" g2="ncommaaccent" k="20" />
+<hkern g1="V" g2="eng" k="20" />
+<hkern g1="V" g2="Omacron" k="20" />
+<hkern g1="V" g2="omacron" k="41" />
+<hkern g1="V" g2="Obreve" k="20" />
+<hkern g1="V" g2="obreve" k="41" />
+<hkern g1="V" g2="Ohungarumlaut" k="20" />
+<hkern g1="V" g2="ohungarumlaut" k="41" />
+<hkern g1="V" g2="OE" k="20" />
+<hkern g1="V" g2="oe" k="41" />
+<hkern g1="V" g2="racute" k="20" />
+<hkern g1="V" g2="rcommaaccent" k="20" />
+<hkern g1="V" g2="sacute" k="20" />
+<hkern g1="V" g2="scedilla" k="20" />
+<hkern g1="V" g2="utilde" k="20" />
+<hkern g1="V" g2="umacron" k="20" />
+<hkern g1="V" g2="ubreve" k="20" />
+<hkern g1="V" g2="uring" k="20" />
+<hkern g1="V" g2="uhungarumlaut" k="20" />
+<hkern g1="V" g2="uogonek" k="20" />
+<hkern g1="V" g2="Aringacute" k="82" />
+<hkern g1="V" g2="aringacute" k="41" />
+<hkern g1="V" g2="aeacute" k="41" />
+<hkern g1="V" g2="Oslashacute" k="20" />
+<hkern g1="V" g2="oslashacute" k="41" />
+<hkern g1="V" g2="scommaaccent" k="20" />
+<hkern g1="V" g2="quotesinglbase" k="102" />
+<hkern g1="V" g2="quotedblbase" k="102" />
+<hkern g1="V" g2="uni1E3F" k="20" />
+<hkern g1="V" g2="uni1E00" k="82" />
+<hkern g1="V" g2="uni1E01" k="41" />
+<hkern g1="V" g2="Ohorn" k="20" />
+<hkern g1="V" g2="ohorn" k="41" />
+<hkern g1="V" g2="uhorn" k="20" />
+<hkern g1="V" g2="uni1EA0" k="82" />
+<hkern g1="V" g2="uni1EA1" k="41" />
+<hkern g1="V" g2="uni1EA2" k="82" />
+<hkern g1="V" g2="uni1EA3" k="41" />
+<hkern g1="V" g2="uni1EA4" k="82" />
+<hkern g1="V" g2="uni1EA5" k="41" />
+<hkern g1="V" g2="uni1EA6" k="82" />
+<hkern g1="V" g2="uni1EA8" k="82" />
+<hkern g1="V" g2="uni1EA9" k="41" />
+<hkern g1="V" g2="uni1EAA" k="82" />
+<hkern g1="V" g2="uni1EAB" k="41" />
+<hkern g1="V" g2="uni1EAC" k="82" />
+<hkern g1="V" g2="uni1EAD" k="41" />
+<hkern g1="V" g2="uni1EAE" k="82" />
+<hkern g1="V" g2="uni1EAF" k="41" />
+<hkern g1="V" g2="uni1EB0" k="82" />
+<hkern g1="V" g2="uni1EB1" k="41" />
+<hkern g1="V" g2="uni1EB2" k="82" />
+<hkern g1="V" g2="uni1EB3" k="41" />
+<hkern g1="V" g2="uni1EB4" k="82" />
+<hkern g1="V" g2="uni1EB5" k="41" />
+<hkern g1="V" g2="uni1EB6" k="82" />
+<hkern g1="V" g2="uni1EB7" k="41" />
+<hkern g1="V" g2="uni1EB9" k="41" />
+<hkern g1="V" g2="uni1EBB" k="41" />
+<hkern g1="V" g2="uni1EBD" k="41" />
+<hkern g1="V" g2="uni1EBF" k="41" />
+<hkern g1="V" g2="uni1EC3" k="41" />
+<hkern g1="V" g2="uni1EC5" k="41" />
+<hkern g1="V" g2="uni1EC7" k="41" />
+<hkern g1="V" g2="uni1ECC" k="20" />
+<hkern g1="V" g2="uni1ECD" k="41" />
+<hkern g1="V" g2="uni1ECE" k="20" />
+<hkern g1="V" g2="uni1ECF" k="41" />
+<hkern g1="V" g2="uni1ED0" k="20" />
+<hkern g1="V" g2="uni1ED1" k="41" />
+<hkern g1="V" g2="uni1ED2" k="20" />
+<hkern g1="V" g2="uni1ED4" k="20" />
+<hkern g1="V" g2="uni1ED5" k="41" />
+<hkern g1="V" g2="uni1ED6" k="20" />
+<hkern g1="V" g2="uni1ED7" k="41" />
+<hkern g1="V" g2="uni1ED8" k="20" />
+<hkern g1="V" g2="uni1ED9" k="41" />
+<hkern g1="V" g2="uni1EDA" k="20" />
+<hkern g1="V" g2="uni1EDB" k="41" />
+<hkern g1="V" g2="uni1EDC" k="20" />
+<hkern g1="V" g2="uni1EDD" k="41" />
+<hkern g1="V" g2="uni1EDE" k="20" />
+<hkern g1="V" g2="uni1EDF" k="41" />
+<hkern g1="V" g2="uni1EE0" k="20" />
+<hkern g1="V" g2="uni1EE1" k="41" />
+<hkern g1="V" g2="uni1EE2" k="20" />
+<hkern g1="V" g2="uni1EE3" k="41" />
+<hkern g1="V" g2="uni1EE5" k="20" />
+<hkern g1="V" g2="uni1EE7" k="20" />
+<hkern g1="V" g2="uni1EE9" k="20" />
+<hkern g1="V" g2="uni1EEB" k="20" />
+<hkern g1="V" g2="uni1EED" k="20" />
+<hkern g1="V" g2="uni1EEF" k="20" />
+<hkern g1="V" g2="uni1EF1" k="20" />
+<hkern g1="W" g2="comma" k="102" />
+<hkern g1="W" g2="period" k="102" />
+<hkern g1="W" g2="question" k="-41" />
+<hkern g1="W" g2="A" k="82" />
+<hkern g1="W" g2="C" k="20" />
+<hkern g1="W" g2="G" k="20" />
+<hkern g1="W" g2="O" k="20" />
+<hkern g1="W" g2="Q" k="20" />
+<hkern g1="W" g2="a" k="41" />
+<hkern g1="W" g2="c" k="41" />
+<hkern g1="W" g2="d" k="41" />
+<hkern g1="W" g2="e" k="41" />
+<hkern g1="W" g2="g" k="20" />
+<hkern g1="W" g2="m" k="20" />
+<hkern g1="W" g2="n" k="20" />
+<hkern g1="W" g2="o" k="41" />
+<hkern g1="W" g2="p" k="20" />
+<hkern g1="W" g2="q" k="41" />
+<hkern g1="W" g2="r" k="20" />
+<hkern g1="W" g2="s" k="20" />
+<hkern g1="W" g2="u" k="20" />
+<hkern g1="W" g2="Agrave" k="82" />
+<hkern g1="W" g2="Aacute" k="82" />
+<hkern g1="W" g2="Acircumflex" k="82" />
+<hkern g1="W" g2="Atilde" k="82" />
+<hkern g1="W" g2="Adieresis" k="82" />
+<hkern g1="W" g2="Aring" k="82" />
+<hkern g1="W" g2="Ccedilla" k="20" />
+<hkern g1="W" g2="Ograve" k="20" />
+<hkern g1="W" g2="Oacute" k="20" />
+<hkern g1="W" g2="Ocircumflex" k="20" />
+<hkern g1="W" g2="Otilde" k="20" />
+<hkern g1="W" g2="Odieresis" k="20" />
+<hkern g1="W" g2="Oslash" k="20" />
+<hkern g1="W" g2="agrave" k="41" />
+<hkern g1="W" g2="aacute" k="41" />
+<hkern g1="W" g2="acircumflex" k="41" />
+<hkern g1="W" g2="atilde" k="41" />
+<hkern g1="W" g2="adieresis" k="41" />
+<hkern g1="W" g2="aring" k="41" />
+<hkern g1="W" g2="ae" k="41" />
+<hkern g1="W" g2="ccedilla" k="41" />
+<hkern g1="W" g2="egrave" k="41" />
+<hkern g1="W" g2="eacute" k="41" />
+<hkern g1="W" g2="ecircumflex" k="41" />
+<hkern g1="W" g2="edieresis" k="41" />
+<hkern g1="W" g2="ograve" k="41" />
+<hkern g1="W" g2="oacute" k="41" />
+<hkern g1="W" g2="ocircumflex" k="41" />
+<hkern g1="W" g2="otilde" k="41" />
+<hkern g1="W" g2="odieresis" k="41" />
+<hkern g1="W" g2="oslash" k="41" />
+<hkern g1="W" g2="ugrave" k="20" />
+<hkern g1="W" g2="uacute" k="20" />
+<hkern g1="W" g2="ucircumflex" k="20" />
+<hkern g1="W" g2="udieresis" k="20" />
+<hkern g1="W" g2="Amacron" k="82" />
+<hkern g1="W" g2="amacron" k="41" />
+<hkern g1="W" g2="Abreve" k="82" />
+<hkern g1="W" g2="abreve" k="41" />
+<hkern g1="W" g2="Aogonek" k="82" />
+<hkern g1="W" g2="aogonek" k="41" />
+<hkern g1="W" g2="Cacute" k="20" />
+<hkern g1="W" g2="cacute" k="41" />
+<hkern g1="W" g2="Ccircumflex" k="20" />
+<hkern g1="W" g2="ccircumflex" k="41" />
+<hkern g1="W" g2="Cdot" k="20" />
+<hkern g1="W" g2="cdot" k="41" />
+<hkern g1="W" g2="Ccaron" k="20" />
+<hkern g1="W" g2="ccaron" k="41" />
+<hkern g1="W" g2="dcaron" k="41" />
+<hkern g1="W" g2="dcroat" k="41" />
+<hkern g1="W" g2="emacron" k="41" />
+<hkern g1="W" g2="ebreve" k="41" />
+<hkern g1="W" g2="edotaccent" k="41" />
+<hkern g1="W" g2="eogonek" k="41" />
+<hkern g1="W" g2="ecaron" k="41" />
+<hkern g1="W" g2="Gcircumflex" k="20" />
+<hkern g1="W" g2="gcircumflex" k="20" />
+<hkern g1="W" g2="Gbreve" k="20" />
+<hkern g1="W" g2="gbreve" k="20" />
+<hkern g1="W" g2="Gdot" k="20" />
+<hkern g1="W" g2="gdot" k="20" />
+<hkern g1="W" g2="Gcommaaccent" k="20" />
+<hkern g1="W" g2="gcommaaccent" k="20" />
+<hkern g1="W" g2="kgreenlandic" k="20" />
+<hkern g1="W" g2="nacute" k="20" />
+<hkern g1="W" g2="ncommaaccent" k="20" />
+<hkern g1="W" g2="eng" k="20" />
+<hkern g1="W" g2="Omacron" k="20" />
+<hkern g1="W" g2="omacron" k="41" />
+<hkern g1="W" g2="Obreve" k="20" />
+<hkern g1="W" g2="obreve" k="41" />
+<hkern g1="W" g2="Ohungarumlaut" k="20" />
+<hkern g1="W" g2="ohungarumlaut" k="41" />
+<hkern g1="W" g2="OE" k="20" />
+<hkern g1="W" g2="oe" k="41" />
+<hkern g1="W" g2="racute" k="20" />
+<hkern g1="W" g2="rcommaaccent" k="20" />
+<hkern g1="W" g2="sacute" k="20" />
+<hkern g1="W" g2="scedilla" k="20" />
+<hkern g1="W" g2="utilde" k="20" />
+<hkern g1="W" g2="umacron" k="20" />
+<hkern g1="W" g2="ubreve" k="20" />
+<hkern g1="W" g2="uring" k="20" />
+<hkern g1="W" g2="uhungarumlaut" k="20" />
+<hkern g1="W" g2="uogonek" k="20" />
+<hkern g1="W" g2="Aringacute" k="82" />
+<hkern g1="W" g2="aringacute" k="41" />
+<hkern g1="W" g2="aeacute" k="41" />
+<hkern g1="W" g2="Oslashacute" k="20" />
+<hkern g1="W" g2="oslashacute" k="41" />
+<hkern g1="W" g2="scommaaccent" k="20" />
+<hkern g1="W" g2="quotesinglbase" k="102" />
+<hkern g1="W" g2="quotedblbase" k="102" />
+<hkern g1="W" g2="uni1E3F" k="20" />
+<hkern g1="W" g2="uni1E00" k="82" />
+<hkern g1="W" g2="uni1E01" k="41" />
+<hkern g1="W" g2="Ohorn" k="20" />
+<hkern g1="W" g2="ohorn" k="41" />
+<hkern g1="W" g2="uhorn" k="20" />
+<hkern g1="W" g2="uni1EA0" k="82" />
+<hkern g1="W" g2="uni1EA1" k="41" />
+<hkern g1="W" g2="uni1EA2" k="82" />
+<hkern g1="W" g2="uni1EA3" k="41" />
+<hkern g1="W" g2="uni1EA4" k="82" />
+<hkern g1="W" g2="uni1EA5" k="41" />
+<hkern g1="W" g2="uni1EA6" k="82" />
+<hkern g1="W" g2="uni1EA8" k="82" />
+<hkern g1="W" g2="uni1EA9" k="41" />
+<hkern g1="W" g2="uni1EAA" k="82" />
+<hkern g1="W" g2="uni1EAB" k="41" />
+<hkern g1="W" g2="uni1EAC" k="82" />
+<hkern g1="W" g2="uni1EAD" k="41" />
+<hkern g1="W" g2="uni1EAE" k="82" />
+<hkern g1="W" g2="uni1EAF" k="41" />
+<hkern g1="W" g2="uni1EB0" k="82" />
+<hkern g1="W" g2="uni1EB1" k="41" />
+<hkern g1="W" g2="uni1EB2" k="82" />
+<hkern g1="W" g2="uni1EB3" k="41" />
+<hkern g1="W" g2="uni1EB4" k="82" />
+<hkern g1="W" g2="uni1EB5" k="41" />
+<hkern g1="W" g2="uni1EB6" k="82" />
+<hkern g1="W" g2="uni1EB7" k="41" />
+<hkern g1="W" g2="uni1EB9" k="41" />
+<hkern g1="W" g2="uni1EBB" k="41" />
+<hkern g1="W" g2="uni1EBD" k="41" />
+<hkern g1="W" g2="uni1EBF" k="41" />
+<hkern g1="W" g2="uni1EC3" k="41" />
+<hkern g1="W" g2="uni1EC5" k="41" />
+<hkern g1="W" g2="uni1EC7" k="41" />
+<hkern g1="W" g2="uni1ECC" k="20" />
+<hkern g1="W" g2="uni1ECD" k="41" />
+<hkern g1="W" g2="uni1ECE" k="20" />
+<hkern g1="W" g2="uni1ECF" k="41" />
+<hkern g1="W" g2="uni1ED0" k="20" />
+<hkern g1="W" g2="uni1ED1" k="41" />
+<hkern g1="W" g2="uni1ED2" k="20" />
+<hkern g1="W" g2="uni1ED4" k="20" />
+<hkern g1="W" g2="uni1ED5" k="41" />
+<hkern g1="W" g2="uni1ED6" k="20" />
+<hkern g1="W" g2="uni1ED7" k="41" />
+<hkern g1="W" g2="uni1ED8" k="20" />
+<hkern g1="W" g2="uni1ED9" k="41" />
+<hkern g1="W" g2="uni1EDA" k="20" />
+<hkern g1="W" g2="uni1EDB" k="41" />
+<hkern g1="W" g2="uni1EDC" k="20" />
+<hkern g1="W" g2="uni1EDD" k="41" />
+<hkern g1="W" g2="uni1EDE" k="20" />
+<hkern g1="W" g2="uni1EDF" k="41" />
+<hkern g1="W" g2="uni1EE0" k="20" />
+<hkern g1="W" g2="uni1EE1" k="41" />
+<hkern g1="W" g2="uni1EE2" k="20" />
+<hkern g1="W" g2="uni1EE3" k="41" />
+<hkern g1="W" g2="uni1EE5" k="20" />
+<hkern g1="W" g2="uni1EE7" k="20" />
+<hkern g1="W" g2="uni1EE9" k="20" />
+<hkern g1="W" g2="uni1EEB" k="20" />
+<hkern g1="W" g2="uni1EED" k="20" />
+<hkern g1="W" g2="uni1EEF" k="20" />
+<hkern g1="W" g2="uni1EF1" k="20" />
+<hkern g1="X" g2="C" k="41" />
+<hkern g1="X" g2="G" k="41" />
+<hkern g1="X" g2="O" k="41" />
+<hkern g1="X" g2="Q" k="41" />
+<hkern g1="X" g2="Ccedilla" k="41" />
+<hkern g1="X" g2="Ograve" k="41" />
+<hkern g1="X" g2="Oacute" k="41" />
+<hkern g1="X" g2="Ocircumflex" k="41" />
+<hkern g1="X" g2="Otilde" k="41" />
+<hkern g1="X" g2="Odieresis" k="41" />
+<hkern g1="X" g2="Oslash" k="41" />
+<hkern g1="X" g2="Cacute" k="41" />
+<hkern g1="X" g2="Ccircumflex" k="41" />
+<hkern g1="X" g2="Cdot" k="41" />
+<hkern g1="X" g2="Ccaron" k="41" />
+<hkern g1="X" g2="Gcircumflex" k="41" />
+<hkern g1="X" g2="Gbreve" k="41" />
+<hkern g1="X" g2="Gdot" k="41" />
+<hkern g1="X" g2="Gcommaaccent" k="41" />
+<hkern g1="X" g2="Omacron" k="41" />
+<hkern g1="X" g2="Obreve" k="41" />
+<hkern g1="X" g2="Ohungarumlaut" k="41" />
+<hkern g1="X" g2="OE" k="41" />
+<hkern g1="X" g2="Oslashacute" k="41" />
+<hkern g1="X" g2="Ohorn" k="41" />
+<hkern g1="X" g2="uni1ECC" k="41" />
+<hkern g1="X" g2="uni1ECE" k="41" />
+<hkern g1="X" g2="uni1ED0" k="41" />
+<hkern g1="X" g2="uni1ED2" k="41" />
+<hkern g1="X" g2="uni1ED4" k="41" />
+<hkern g1="X" g2="uni1ED6" k="41" />
+<hkern g1="X" g2="uni1ED8" k="41" />
+<hkern g1="X" g2="uni1EDA" k="41" />
+<hkern g1="X" g2="uni1EDC" k="41" />
+<hkern g1="X" g2="uni1EDE" k="41" />
+<hkern g1="X" g2="uni1EE0" k="41" />
+<hkern g1="X" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="comma" k="123" />
+<hkern g1="Y" g2="period" k="123" />
+<hkern g1="Y" g2="question" k="-41" />
+<hkern g1="Y" g2="A" k="123" />
+<hkern g1="Y" g2="C" k="41" />
+<hkern g1="Y" g2="G" k="41" />
+<hkern g1="Y" g2="O" k="41" />
+<hkern g1="Y" g2="Q" k="41" />
+<hkern g1="Y" g2="a" k="102" />
+<hkern g1="Y" g2="c" k="102" />
+<hkern g1="Y" g2="d" k="102" />
+<hkern g1="Y" g2="e" k="102" />
+<hkern g1="Y" g2="g" k="41" />
+<hkern g1="Y" g2="m" k="61" />
+<hkern g1="Y" g2="n" k="61" />
+<hkern g1="Y" g2="o" k="102" />
+<hkern g1="Y" g2="p" k="61" />
+<hkern g1="Y" g2="q" k="102" />
+<hkern g1="Y" g2="r" k="61" />
+<hkern g1="Y" g2="s" k="82" />
+<hkern g1="Y" g2="u" k="61" />
+<hkern g1="Y" g2="z" k="41" />
+<hkern g1="Y" g2="Agrave" k="123" />
+<hkern g1="Y" g2="Aacute" k="123" />
+<hkern g1="Y" g2="Acircumflex" k="123" />
+<hkern g1="Y" g2="Atilde" k="123" />
+<hkern g1="Y" g2="Adieresis" k="123" />
+<hkern g1="Y" g2="Aring" k="123" />
+<hkern g1="Y" g2="Ccedilla" k="41" />
+<hkern g1="Y" g2="Ograve" k="41" />
+<hkern g1="Y" g2="Oacute" k="41" />
+<hkern g1="Y" g2="Ocircumflex" k="41" />
+<hkern g1="Y" g2="Otilde" k="41" />
+<hkern g1="Y" g2="Odieresis" k="41" />
+<hkern g1="Y" g2="Oslash" k="41" />
+<hkern g1="Y" g2="agrave" k="102" />
+<hkern g1="Y" g2="aacute" k="102" />
+<hkern g1="Y" g2="acircumflex" k="102" />
+<hkern g1="Y" g2="atilde" k="102" />
+<hkern g1="Y" g2="adieresis" k="102" />
+<hkern g1="Y" g2="aring" k="102" />
+<hkern g1="Y" g2="ae" k="102" />
+<hkern g1="Y" g2="ccedilla" k="102" />
+<hkern g1="Y" g2="egrave" k="102" />
+<hkern g1="Y" g2="eacute" k="102" />
+<hkern g1="Y" g2="ecircumflex" k="102" />
+<hkern g1="Y" g2="edieresis" k="102" />
+<hkern g1="Y" g2="ograve" k="102" />
+<hkern g1="Y" g2="oacute" k="102" />
+<hkern g1="Y" g2="ocircumflex" k="102" />
+<hkern g1="Y" g2="otilde" k="102" />
+<hkern g1="Y" g2="odieresis" k="102" />
+<hkern g1="Y" g2="oslash" k="102" />
+<hkern g1="Y" g2="ugrave" k="61" />
+<hkern g1="Y" g2="uacute" k="61" />
+<hkern g1="Y" g2="ucircumflex" k="61" />
+<hkern g1="Y" g2="udieresis" k="61" />
+<hkern g1="Y" g2="Amacron" k="123" />
+<hkern g1="Y" g2="amacron" k="102" />
+<hkern g1="Y" g2="Abreve" k="123" />
+<hkern g1="Y" g2="abreve" k="102" />
+<hkern g1="Y" g2="Aogonek" k="123" />
+<hkern g1="Y" g2="aogonek" k="102" />
+<hkern g1="Y" g2="Cacute" k="41" />
+<hkern g1="Y" g2="cacute" k="102" />
+<hkern g1="Y" g2="Ccircumflex" k="41" />
+<hkern g1="Y" g2="ccircumflex" k="102" />
+<hkern g1="Y" g2="Cdot" k="41" />
+<hkern g1="Y" g2="cdot" k="102" />
+<hkern g1="Y" g2="Ccaron" k="41" />
+<hkern g1="Y" g2="ccaron" k="102" />
+<hkern g1="Y" g2="dcaron" k="102" />
+<hkern g1="Y" g2="dcroat" k="102" />
+<hkern g1="Y" g2="emacron" k="102" />
+<hkern g1="Y" g2="ebreve" k="102" />
+<hkern g1="Y" g2="edotaccent" k="102" />
+<hkern g1="Y" g2="eogonek" k="102" />
+<hkern g1="Y" g2="ecaron" k="102" />
+<hkern g1="Y" g2="Gcircumflex" k="41" />
+<hkern g1="Y" g2="gcircumflex" k="41" />
+<hkern g1="Y" g2="Gbreve" k="41" />
+<hkern g1="Y" g2="gbreve" k="41" />
+<hkern g1="Y" g2="Gdot" k="41" />
+<hkern g1="Y" g2="gdot" k="41" />
+<hkern g1="Y" g2="Gcommaaccent" k="41" />
+<hkern g1="Y" g2="gcommaaccent" k="41" />
+<hkern g1="Y" g2="kgreenlandic" k="61" />
+<hkern g1="Y" g2="nacute" k="61" />
+<hkern g1="Y" g2="ncommaaccent" k="61" />
+<hkern g1="Y" g2="eng" k="61" />
+<hkern g1="Y" g2="Omacron" k="41" />
+<hkern g1="Y" g2="omacron" k="102" />
+<hkern g1="Y" g2="Obreve" k="41" />
+<hkern g1="Y" g2="obreve" k="102" />
+<hkern g1="Y" g2="Ohungarumlaut" k="41" />
+<hkern g1="Y" g2="ohungarumlaut" k="102" />
+<hkern g1="Y" g2="OE" k="41" />
+<hkern g1="Y" g2="oe" k="102" />
+<hkern g1="Y" g2="racute" k="61" />
+<hkern g1="Y" g2="rcommaaccent" k="61" />
+<hkern g1="Y" g2="sacute" k="82" />
+<hkern g1="Y" g2="scedilla" k="82" />
+<hkern g1="Y" g2="utilde" k="61" />
+<hkern g1="Y" g2="umacron" k="61" />
+<hkern g1="Y" g2="ubreve" k="61" />
+<hkern g1="Y" g2="uring" k="61" />
+<hkern g1="Y" g2="uhungarumlaut" k="61" />
+<hkern g1="Y" g2="uogonek" k="61" />
+<hkern g1="Y" g2="zacute" k="41" />
+<hkern g1="Y" g2="zdotaccent" k="41" />
+<hkern g1="Y" g2="zcaron" k="41" />
+<hkern g1="Y" g2="Aringacute" k="123" />
+<hkern g1="Y" g2="aringacute" k="102" />
+<hkern g1="Y" g2="aeacute" k="102" />
+<hkern g1="Y" g2="Oslashacute" k="41" />
+<hkern g1="Y" g2="oslashacute" k="102" />
+<hkern g1="Y" g2="scommaaccent" k="82" />
+<hkern g1="Y" g2="quotesinglbase" k="123" />
+<hkern g1="Y" g2="quotedblbase" k="123" />
+<hkern g1="Y" g2="uni1E3F" k="61" />
+<hkern g1="Y" g2="uni1E00" k="123" />
+<hkern g1="Y" g2="uni1E01" k="102" />
+<hkern g1="Y" g2="Ohorn" k="41" />
+<hkern g1="Y" g2="ohorn" k="102" />
+<hkern g1="Y" g2="uhorn" k="61" />
+<hkern g1="Y" g2="uni1EA0" k="123" />
+<hkern g1="Y" g2="uni1EA1" k="102" />
+<hkern g1="Y" g2="uni1EA2" k="123" />
+<hkern g1="Y" g2="uni1EA3" k="102" />
+<hkern g1="Y" g2="uni1EA4" k="123" />
+<hkern g1="Y" g2="uni1EA5" k="102" />
+<hkern g1="Y" g2="uni1EA6" k="123" />
+<hkern g1="Y" g2="uni1EA8" k="123" />
+<hkern g1="Y" g2="uni1EA9" k="102" />
+<hkern g1="Y" g2="uni1EAA" k="123" />
+<hkern g1="Y" g2="uni1EAB" k="102" />
+<hkern g1="Y" g2="uni1EAC" k="123" />
+<hkern g1="Y" g2="uni1EAD" k="102" />
+<hkern g1="Y" g2="uni1EAE" k="123" />
+<hkern g1="Y" g2="uni1EAF" k="102" />
+<hkern g1="Y" g2="uni1EB0" k="123" />
+<hkern g1="Y" g2="uni1EB1" k="102" />
+<hkern g1="Y" g2="uni1EB2" k="123" />
+<hkern g1="Y" g2="uni1EB3" k="102" />
+<hkern g1="Y" g2="uni1EB4" k="123" />
+<hkern g1="Y" g2="uni1EB5" k="102" />
+<hkern g1="Y" g2="uni1EB6" k="123" />
+<hkern g1="Y" g2="uni1EB7" k="102" />
+<hkern g1="Y" g2="uni1EB9" k="102" />
+<hkern g1="Y" g2="uni1EBB" k="102" />
+<hkern g1="Y" g2="uni1EBD" k="102" />
+<hkern g1="Y" g2="uni1EBF" k="102" />
+<hkern g1="Y" g2="uni1EC3" k="102" />
+<hkern g1="Y" g2="uni1EC5" k="102" />
+<hkern g1="Y" g2="uni1EC7" k="102" />
+<hkern g1="Y" g2="uni1ECC" k="41" />
+<hkern g1="Y" g2="uni1ECD" k="102" />
+<hkern g1="Y" g2="uni1ECE" k="41" />
+<hkern g1="Y" g2="uni1ECF" k="102" />
+<hkern g1="Y" g2="uni1ED0" k="41" />
+<hkern g1="Y" g2="uni1ED1" k="102" />
+<hkern g1="Y" g2="uni1ED2" k="41" />
+<hkern g1="Y" g2="uni1ED4" k="41" />
+<hkern g1="Y" g2="uni1ED5" k="102" />
+<hkern g1="Y" g2="uni1ED6" k="41" />
+<hkern g1="Y" g2="uni1ED7" k="102" />
+<hkern g1="Y" g2="uni1ED8" k="41" />
+<hkern g1="Y" g2="uni1ED9" k="102" />
+<hkern g1="Y" g2="uni1EDA" k="41" />
+<hkern g1="Y" g2="uni1EDB" k="102" />
+<hkern g1="Y" g2="uni1EDC" k="41" />
+<hkern g1="Y" g2="uni1EDD" k="102" />
+<hkern g1="Y" g2="uni1EDE" k="41" />
+<hkern g1="Y" g2="uni1EDF" k="102" />
+<hkern g1="Y" g2="uni1EE0" k="41" />
+<hkern g1="Y" g2="uni1EE1" k="102" />
+<hkern g1="Y" g2="uni1EE2" k="41" />
+<hkern g1="Y" g2="uni1EE3" k="102" />
+<hkern g1="Y" g2="uni1EE5" k="61" />
+<hkern g1="Y" g2="uni1EE7" k="61" />
+<hkern g1="Y" g2="uni1EE9" k="61" />
+<hkern g1="Y" g2="uni1EEB" k="61" />
+<hkern g1="Y" g2="uni1EED" k="61" />
+<hkern g1="Y" g2="uni1EEF" k="61" />
+<hkern g1="Y" g2="uni1EF1" k="61" />
+<hkern g1="Z" g2="C" k="20" />
+<hkern g1="Z" g2="G" k="20" />
+<hkern g1="Z" g2="O" k="20" />
+<hkern g1="Z" g2="Q" k="20" />
+<hkern g1="Z" g2="Ccedilla" k="20" />
+<hkern g1="Z" g2="Ograve" k="20" />
+<hkern g1="Z" g2="Oacute" k="20" />
+<hkern g1="Z" g2="Ocircumflex" k="20" />
+<hkern g1="Z" g2="Otilde" k="20" />
+<hkern g1="Z" g2="Odieresis" k="20" />
+<hkern g1="Z" g2="Oslash" k="20" />
+<hkern g1="Z" g2="Cacute" k="20" />
+<hkern g1="Z" g2="Ccircumflex" k="20" />
+<hkern g1="Z" g2="Cdot" k="20" />
+<hkern g1="Z" g2="Ccaron" k="20" />
+<hkern g1="Z" g2="Gcircumflex" k="20" />
+<hkern g1="Z" g2="Gbreve" k="20" />
+<hkern g1="Z" g2="Gdot" k="20" />
+<hkern g1="Z" g2="Gcommaaccent" k="20" />
+<hkern g1="Z" g2="Omacron" k="20" />
+<hkern g1="Z" g2="Obreve" k="20" />
+<hkern g1="Z" g2="Ohungarumlaut" k="20" />
+<hkern g1="Z" g2="OE" k="20" />
+<hkern g1="Z" g2="Oslashacute" k="20" />
+<hkern g1="Z" g2="Ohorn" k="20" />
+<hkern g1="Z" g2="uni1ECC" k="20" />
+<hkern g1="Z" g2="uni1ECE" k="20" />
+<hkern g1="Z" g2="uni1ED0" k="20" />
+<hkern g1="Z" g2="uni1ED2" k="20" />
+<hkern g1="Z" g2="uni1ED4" k="20" />
+<hkern g1="Z" g2="uni1ED6" k="20" />
+<hkern g1="Z" g2="uni1ED8" k="20" />
+<hkern g1="Z" g2="uni1EDA" k="20" />
+<hkern g1="Z" g2="uni1EDC" k="20" />
+<hkern g1="Z" g2="uni1EDE" k="20" />
+<hkern g1="Z" g2="uni1EE0" k="20" />
+<hkern g1="Z" g2="uni1EE2" k="20" />
+<hkern g1="bracketleft" g2="J" k="-184" />
+<hkern g1="a" g2="quotedbl" k="20" />
+<hkern g1="a" g2="quotesingle" k="20" />
+<hkern g1="a" g2="quoteright" k="20" />
+<hkern g1="a" g2="quotedblright" k="20" />
+<hkern g1="b" g2="quotedbl" k="20" />
+<hkern g1="b" g2="quotesingle" k="20" />
+<hkern g1="b" g2="v" k="41" />
+<hkern g1="b" g2="w" k="41" />
+<hkern g1="b" g2="x" k="41" />
+<hkern g1="b" g2="y" k="41" />
+<hkern g1="b" g2="z" k="20" />
+<hkern g1="b" g2="yacute" k="41" />
+<hkern g1="b" g2="wcircumflex" k="41" />
+<hkern g1="b" g2="zacute" k="20" />
+<hkern g1="b" g2="zdotaccent" k="20" />
+<hkern g1="b" g2="zcaron" k="20" />
+<hkern g1="b" g2="wgrave" k="41" />
+<hkern g1="b" g2="wacute" k="41" />
+<hkern g1="b" g2="quoteright" k="20" />
+<hkern g1="b" g2="quotedblright" k="20" />
+<hkern g1="b" g2="uni1EF5" k="41" />
+<hkern g1="c" g2="quotedbl" k="-41" />
+<hkern g1="c" g2="quotesingle" k="-41" />
+<hkern g1="c" g2="quoteright" k="-41" />
+<hkern g1="c" g2="quotedblright" k="-41" />
+<hkern g1="e" g2="quotedbl" k="20" />
+<hkern g1="e" g2="quotesingle" k="20" />
+<hkern g1="e" g2="v" k="41" />
+<hkern g1="e" g2="w" k="41" />
+<hkern g1="e" g2="x" k="41" />
+<hkern g1="e" g2="y" k="41" />
+<hkern g1="e" g2="z" k="20" />
+<hkern g1="e" g2="yacute" k="41" />
+<hkern g1="e" g2="wcircumflex" k="41" />
+<hkern g1="e" g2="zacute" k="20" />
+<hkern g1="e" g2="zdotaccent" k="20" />
+<hkern g1="e" g2="zcaron" k="20" />
+<hkern g1="e" g2="wgrave" k="41" />
+<hkern g1="e" g2="wacute" k="41" />
+<hkern g1="e" g2="quoteright" k="20" />
+<hkern g1="e" g2="quotedblright" k="20" />
+<hkern g1="e" g2="uni1EF5" k="41" />
+<hkern g1="f" g2="quotedbl" k="-123" />
+<hkern g1="f" g2="quotesingle" k="-123" />
+<hkern g1="f" g2="quoteright" k="-123" />
+<hkern g1="f" g2="quotedblright" k="-123" />
+<hkern g1="h" g2="quotedbl" k="20" />
+<hkern g1="h" g2="quotesingle" k="20" />
+<hkern g1="h" g2="quoteright" k="20" />
+<hkern g1="h" g2="quotedblright" k="20" />
+<hkern g1="k" g2="c" k="41" />
+<hkern g1="k" g2="d" k="41" />
+<hkern g1="k" g2="e" k="41" />
+<hkern g1="k" g2="o" k="41" />
+<hkern g1="k" g2="q" k="41" />
+<hkern g1="k" g2="agrave" k="41" />
+<hkern g1="k" g2="ccedilla" k="41" />
+<hkern g1="k" g2="egrave" k="41" />
+<hkern g1="k" g2="eacute" k="41" />
+<hkern g1="k" g2="ecircumflex" k="41" />
+<hkern g1="k" g2="edieresis" k="41" />
+<hkern g1="k" g2="ograve" k="41" />
+<hkern g1="k" g2="oacute" k="41" />
+<hkern g1="k" g2="ocircumflex" k="41" />
+<hkern g1="k" g2="otilde" k="41" />
+<hkern g1="k" g2="odieresis" k="41" />
+<hkern g1="k" g2="oslash" k="41" />
+<hkern g1="k" g2="cacute" k="41" />
+<hkern g1="k" g2="ccircumflex" k="41" />
+<hkern g1="k" g2="cdot" k="41" />
+<hkern g1="k" g2="ccaron" k="41" />
+<hkern g1="k" g2="dcaron" k="41" />
+<hkern g1="k" g2="dcroat" k="41" />
+<hkern g1="k" g2="emacron" k="41" />
+<hkern g1="k" g2="ebreve" k="41" />
+<hkern g1="k" g2="edotaccent" k="41" />
+<hkern g1="k" g2="eogonek" k="41" />
+<hkern g1="k" g2="ecaron" k="41" />
+<hkern g1="k" g2="omacron" k="41" />
+<hkern g1="k" g2="obreve" k="41" />
+<hkern g1="k" g2="ohungarumlaut" k="41" />
+<hkern g1="k" g2="oe" k="41" />
+<hkern g1="k" g2="oslashacute" k="41" />
+<hkern g1="k" g2="ohorn" k="41" />
+<hkern g1="k" g2="uni1EB9" k="41" />
+<hkern g1="k" g2="uni1EBB" k="41" />
+<hkern g1="k" g2="uni1EBD" k="41" />
+<hkern g1="k" g2="uni1EBF" k="41" />
+<hkern g1="k" g2="uni1EC3" k="41" />
+<hkern g1="k" g2="uni1EC5" k="41" />
+<hkern g1="k" g2="uni1EC7" k="41" />
+<hkern g1="k" g2="uni1ECD" k="41" />
+<hkern g1="k" g2="uni1ECF" k="41" />
+<hkern g1="k" g2="uni1ED1" k="41" />
+<hkern g1="k" g2="uni1ED5" k="41" />
+<hkern g1="k" g2="uni1ED7" k="41" />
+<hkern g1="k" g2="uni1ED9" k="41" />
+<hkern g1="k" g2="uni1EDB" k="41" />
+<hkern g1="k" g2="uni1EDD" k="41" />
+<hkern g1="k" g2="uni1EDF" k="41" />
+<hkern g1="k" g2="uni1EE1" k="41" />
+<hkern g1="k" g2="uni1EE3" k="41" />
+<hkern g1="m" g2="quotedbl" k="20" />
+<hkern g1="m" g2="quotesingle" k="20" />
+<hkern g1="m" g2="quoteright" k="20" />
+<hkern g1="m" g2="quotedblright" k="20" />
+<hkern g1="n" g2="quotedbl" k="20" />
+<hkern g1="n" g2="quotesingle" k="20" />
+<hkern g1="n" g2="quoteright" k="20" />
+<hkern g1="n" g2="quotedblright" k="20" />
+<hkern g1="o" g2="quotedbl" k="20" />
+<hkern g1="o" g2="quotesingle" k="20" />
+<hkern g1="o" g2="v" k="41" />
+<hkern g1="o" g2="w" k="41" />
+<hkern g1="o" g2="x" k="41" />
+<hkern g1="o" g2="y" k="41" />
+<hkern g1="o" g2="z" k="20" />
+<hkern g1="o" g2="yacute" k="41" />
+<hkern g1="o" g2="wcircumflex" k="41" />
+<hkern g1="o" g2="zacute" k="20" />
+<hkern g1="o" g2="zdotaccent" k="20" />
+<hkern g1="o" g2="zcaron" k="20" />
+<hkern g1="o" g2="wgrave" k="41" />
+<hkern g1="o" g2="wacute" k="41" />
+<hkern g1="o" g2="quoteright" k="20" />
+<hkern g1="o" g2="quotedblright" k="20" />
+<hkern g1="o" g2="uni1EF5" k="41" />
+<hkern g1="p" g2="quotedbl" k="20" />
+<hkern g1="p" g2="quotesingle" k="20" />
+<hkern g1="p" g2="v" k="41" />
+<hkern g1="p" g2="w" k="41" />
+<hkern g1="p" g2="x" k="41" />
+<hkern g1="p" g2="y" k="41" />
+<hkern g1="p" g2="z" k="20" />
+<hkern g1="p" g2="yacute" k="41" />
+<hkern g1="p" g2="wcircumflex" k="41" />
+<hkern g1="p" g2="zacute" k="20" />
+<hkern g1="p" g2="zdotaccent" k="20" />
+<hkern g1="p" g2="zcaron" k="20" />
+<hkern g1="p" g2="wgrave" k="41" />
+<hkern g1="p" g2="wacute" k="41" />
+<hkern g1="p" g2="quoteright" k="20" />
+<hkern g1="p" g2="quotedblright" k="20" />
+<hkern g1="p" g2="uni1EF5" k="41" />
+<hkern g1="r" g2="quotedbl" k="-82" />
+<hkern g1="r" g2="quotesingle" k="-82" />
+<hkern g1="r" g2="a" k="41" />
+<hkern g1="r" g2="c" k="41" />
+<hkern g1="r" g2="d" k="41" />
+<hkern g1="r" g2="e" k="41" />
+<hkern g1="r" g2="g" k="20" />
+<hkern g1="r" g2="o" k="41" />
+<hkern g1="r" g2="q" k="41" />
+<hkern g1="r" g2="agrave" k="41" />
+<hkern g1="r" g2="aacute" k="41" />
+<hkern g1="r" g2="acircumflex" k="41" />
+<hkern g1="r" g2="atilde" k="41" />
+<hkern g1="r" g2="adieresis" k="41" />
+<hkern g1="r" g2="aring" k="41" />
+<hkern g1="r" g2="ae" k="41" />
+<hkern g1="r" g2="ccedilla" k="41" />
+<hkern g1="r" g2="egrave" k="41" />
+<hkern g1="r" g2="eacute" k="41" />
+<hkern g1="r" g2="ecircumflex" k="41" />
+<hkern g1="r" g2="edieresis" k="41" />
+<hkern g1="r" g2="ograve" k="41" />
+<hkern g1="r" g2="oacute" k="41" />
+<hkern g1="r" g2="ocircumflex" k="41" />
+<hkern g1="r" g2="otilde" k="41" />
+<hkern g1="r" g2="odieresis" k="41" />
+<hkern g1="r" g2="oslash" k="41" />
+<hkern g1="r" g2="amacron" k="41" />
+<hkern g1="r" g2="abreve" k="41" />
+<hkern g1="r" g2="aogonek" k="41" />
+<hkern g1="r" g2="cacute" k="41" />
+<hkern g1="r" g2="ccircumflex" k="41" />
+<hkern g1="r" g2="cdot" k="41" />
+<hkern g1="r" g2="ccaron" k="41" />
+<hkern g1="r" g2="dcaron" k="41" />
+<hkern g1="r" g2="dcroat" k="41" />
+<hkern g1="r" g2="emacron" k="41" />
+<hkern g1="r" g2="ebreve" k="41" />
+<hkern g1="r" g2="edotaccent" k="41" />
+<hkern g1="r" g2="eogonek" k="41" />
+<hkern g1="r" g2="ecaron" k="41" />
+<hkern g1="r" g2="gcircumflex" k="20" />
+<hkern g1="r" g2="gbreve" k="20" />
+<hkern g1="r" g2="gdot" k="20" />
+<hkern g1="r" g2="gcommaaccent" k="20" />
+<hkern g1="r" g2="omacron" k="41" />
+<hkern g1="r" g2="obreve" k="41" />
+<hkern g1="r" g2="ohungarumlaut" k="41" />
+<hkern g1="r" g2="oe" k="41" />
+<hkern g1="r" g2="aringacute" k="41" />
+<hkern g1="r" g2="aeacute" k="41" />
+<hkern g1="r" g2="oslashacute" k="41" />
+<hkern g1="r" g2="quoteright" k="-82" />
+<hkern g1="r" g2="quotedblright" k="-82" />
+<hkern g1="r" g2="uni1E01" k="41" />
+<hkern g1="r" g2="ohorn" k="41" />
+<hkern g1="r" g2="uni1EA1" k="41" />
+<hkern g1="r" g2="uni1EA3" k="41" />
+<hkern g1="r" g2="uni1EA5" k="41" />
+<hkern g1="r" g2="uni1EA9" k="41" />
+<hkern g1="r" g2="uni1EAB" k="41" />
+<hkern g1="r" g2="uni1EAD" k="41" />
+<hkern g1="r" g2="uni1EAF" k="41" />
+<hkern g1="r" g2="uni1EB1" k="41" />
+<hkern g1="r" g2="uni1EB3" k="41" />
+<hkern g1="r" g2="uni1EB5" k="41" />
+<hkern g1="r" g2="uni1EB7" k="41" />
+<hkern g1="r" g2="uni1EB9" k="41" />
+<hkern g1="r" g2="uni1EBB" k="41" />
+<hkern g1="r" g2="uni1EBD" k="41" />
+<hkern g1="r" g2="uni1EBF" k="41" />
+<hkern g1="r" g2="uni1EC3" k="41" />
+<hkern g1="r" g2="uni1EC5" k="41" />
+<hkern g1="r" g2="uni1EC7" k="41" />
+<hkern g1="r" g2="uni1ECD" k="41" />
+<hkern g1="r" g2="uni1ECF" k="41" />
+<hkern g1="r" g2="uni1ED1" k="41" />
+<hkern g1="r" g2="uni1ED5" k="41" />
+<hkern g1="r" g2="uni1ED7" k="41" />
+<hkern g1="r" g2="uni1ED9" k="41" />
+<hkern g1="r" g2="uni1EDB" k="41" />
+<hkern g1="r" g2="uni1EDD" k="41" />
+<hkern g1="r" g2="uni1EDF" k="41" />
+<hkern g1="r" g2="uni1EE1" k="41" />
+<hkern g1="r" g2="uni1EE3" k="41" />
+<hkern g1="t" g2="quotedbl" k="-41" />
+<hkern g1="t" g2="quotesingle" k="-41" />
+<hkern g1="t" g2="quoteright" k="-41" />
+<hkern g1="t" g2="quotedblright" k="-41" />
+<hkern g1="v" g2="quotedbl" k="-82" />
+<hkern g1="v" g2="quotesingle" k="-82" />
+<hkern g1="v" g2="comma" k="82" />
+<hkern g1="v" g2="period" k="82" />
+<hkern g1="v" g2="question" k="-41" />
+<hkern g1="v" g2="quoteright" k="-82" />
+<hkern g1="v" g2="quotesinglbase" k="82" />
+<hkern g1="v" g2="quotedblright" k="-82" />
+<hkern g1="v" g2="quotedblbase" k="82" />
+<hkern g1="w" g2="quotedbl" k="-82" />
+<hkern g1="w" g2="quotesingle" k="-82" />
+<hkern g1="w" g2="comma" k="82" />
+<hkern g1="w" g2="period" k="82" />
+<hkern g1="w" g2="question" k="-41" />
+<hkern g1="w" g2="quoteright" k="-82" />
+<hkern g1="w" g2="quotesinglbase" k="82" />
+<hkern g1="w" g2="quotedblright" k="-82" />
+<hkern g1="w" g2="quotedblbase" k="82" />
+<hkern g1="x" g2="c" k="41" />
+<hkern g1="x" g2="d" k="41" />
+<hkern g1="x" g2="e" k="41" />
+<hkern g1="x" g2="o" k="41" />
+<hkern g1="x" g2="q" k="41" />
+<hkern g1="x" g2="agrave" k="41" />
+<hkern g1="x" g2="ccedilla" k="41" />
+<hkern g1="x" g2="egrave" k="41" />
+<hkern g1="x" g2="eacute" k="41" />
+<hkern g1="x" g2="ecircumflex" k="41" />
+<hkern g1="x" g2="edieresis" k="41" />
+<hkern g1="x" g2="ograve" k="41" />
+<hkern g1="x" g2="oacute" k="41" />
+<hkern g1="x" g2="ocircumflex" k="41" />
+<hkern g1="x" g2="otilde" k="41" />
+<hkern g1="x" g2="odieresis" k="41" />
+<hkern g1="x" g2="oslash" k="41" />
+<hkern g1="x" g2="cacute" k="41" />
+<hkern g1="x" g2="ccircumflex" k="41" />
+<hkern g1="x" g2="cdot" k="41" />
+<hkern g1="x" g2="ccaron" k="41" />
+<hkern g1="x" g2="dcaron" k="41" />
+<hkern g1="x" g2="dcroat" k="41" />
+<hkern g1="x" g2="emacron" k="41" />
+<hkern g1="x" g2="ebreve" k="41" />
+<hkern g1="x" g2="edotaccent" k="41" />
+<hkern g1="x" g2="eogonek" k="41" />
+<hkern g1="x" g2="ecaron" k="41" />
+<hkern g1="x" g2="omacron" k="41" />
+<hkern g1="x" g2="obreve" k="41" />
+<hkern g1="x" g2="ohungarumlaut" k="41" />
+<hkern g1="x" g2="oe" k="41" />
+<hkern g1="x" g2="oslashacute" k="41" />
+<hkern g1="x" g2="ohorn" k="41" />
+<hkern g1="x" g2="uni1EB9" k="41" />
+<hkern g1="x" g2="uni1EBB" k="41" />
+<hkern g1="x" g2="uni1EBD" k="41" />
+<hkern g1="x" g2="uni1EBF" k="41" />
+<hkern g1="x" g2="uni1EC3" k="41" />
+<hkern g1="x" g2="uni1EC5" k="41" />
+<hkern g1="x" g2="uni1EC7" k="41" />
+<hkern g1="x" g2="uni1ECD" k="41" />
+<hkern g1="x" g2="uni1ECF" k="41" />
+<hkern g1="x" g2="uni1ED1" k="41" />
+<hkern g1="x" g2="uni1ED5" k="41" />
+<hkern g1="x" g2="uni1ED7" k="41" />
+<hkern g1="x" g2="uni1ED9" k="41" />
+<hkern g1="x" g2="uni1EDB" k="41" />
+<hkern g1="x" g2="uni1EDD" k="41" />
+<hkern g1="x" g2="uni1EDF" k="41" />
+<hkern g1="x" g2="uni1EE1" k="41" />
+<hkern g1="x" g2="uni1EE3" k="41" />
+<hkern g1="y" g2="quotedbl" k="-82" />
+<hkern g1="y" g2="quotesingle" k="-82" />
+<hkern g1="y" g2="comma" k="82" />
+<hkern g1="y" g2="period" k="82" />
+<hkern g1="y" g2="question" k="-41" />
+<hkern g1="y" g2="quoteright" k="-82" />
+<hkern g1="y" g2="quotesinglbase" k="82" />
+<hkern g1="y" g2="quotedblright" k="-82" />
+<hkern g1="y" g2="quotedblbase" k="82" />
+<hkern g1="braceleft" g2="J" k="-184" />
+<hkern g1="Agrave" g2="quotedbl" k="143" />
+<hkern g1="Agrave" g2="quotesingle" k="143" />
+<hkern g1="Agrave" g2="C" k="41" />
+<hkern g1="Agrave" g2="G" k="41" />
+<hkern g1="Agrave" g2="J" k="-266" />
+<hkern g1="Agrave" g2="O" k="41" />
+<hkern g1="Agrave" g2="Q" k="41" />
+<hkern g1="Agrave" g2="T" k="143" />
+<hkern g1="Agrave" g2="V" k="82" />
+<hkern g1="Agrave" g2="W" k="82" />
+<hkern g1="Agrave" g2="Y" k="123" />
+<hkern g1="Agrave" g2="Ccedilla" k="41" />
+<hkern g1="Agrave" g2="Ograve" k="41" />
+<hkern g1="Agrave" g2="Oacute" k="41" />
+<hkern g1="Agrave" g2="Ocircumflex" k="41" />
+<hkern g1="Agrave" g2="Otilde" k="41" />
+<hkern g1="Agrave" g2="Odieresis" k="41" />
+<hkern g1="Agrave" g2="Oslash" k="41" />
+<hkern g1="Agrave" g2="Yacute" k="123" />
+<hkern g1="Agrave" g2="Cacute" k="41" />
+<hkern g1="Agrave" g2="Ccircumflex" k="41" />
+<hkern g1="Agrave" g2="Cdot" k="41" />
+<hkern g1="Agrave" g2="Ccaron" k="41" />
+<hkern g1="Agrave" g2="Gcircumflex" k="41" />
+<hkern g1="Agrave" g2="Gbreve" k="41" />
+<hkern g1="Agrave" g2="Gdot" k="41" />
+<hkern g1="Agrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Agrave" g2="Omacron" k="41" />
+<hkern g1="Agrave" g2="Obreve" k="41" />
+<hkern g1="Agrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Agrave" g2="OE" k="41" />
+<hkern g1="Agrave" g2="Tcommaaccent" k="143" />
+<hkern g1="Agrave" g2="Tcaron" k="143" />
+<hkern g1="Agrave" g2="Wcircumflex" k="82" />
+<hkern g1="Agrave" g2="Ycircumflex" k="123" />
+<hkern g1="Agrave" g2="Ydieresis" k="123" />
+<hkern g1="Agrave" g2="Oslashacute" k="41" />
+<hkern g1="Agrave" g2="Wgrave" k="82" />
+<hkern g1="Agrave" g2="Wacute" k="82" />
+<hkern g1="Agrave" g2="Wdieresis" k="82" />
+<hkern g1="Agrave" g2="Ygrave" k="123" />
+<hkern g1="Agrave" g2="quoteright" k="143" />
+<hkern g1="Agrave" g2="quotedblright" k="143" />
+<hkern g1="Agrave" g2="Ohorn" k="41" />
+<hkern g1="Agrave" g2="uni1ECC" k="41" />
+<hkern g1="Agrave" g2="uni1ECE" k="41" />
+<hkern g1="Agrave" g2="uni1ED0" k="41" />
+<hkern g1="Agrave" g2="uni1ED2" k="41" />
+<hkern g1="Agrave" g2="uni1ED4" k="41" />
+<hkern g1="Agrave" g2="uni1ED6" k="41" />
+<hkern g1="Agrave" g2="uni1ED8" k="41" />
+<hkern g1="Agrave" g2="uni1EDA" k="41" />
+<hkern g1="Agrave" g2="uni1EDC" k="41" />
+<hkern g1="Agrave" g2="uni1EDE" k="41" />
+<hkern g1="Agrave" g2="uni1EE0" k="41" />
+<hkern g1="Agrave" g2="uni1EE2" k="41" />
+<hkern g1="Agrave" g2="uni1EF4" k="123" />
+<hkern g1="Agrave" g2="uni1EF6" k="123" />
+<hkern g1="Agrave" g2="uni1EF8" k="123" />
+<hkern g1="Agrave" g2="Tcedilla" k="143" />
+<hkern g1="Aacute" g2="quotedbl" k="143" />
+<hkern g1="Aacute" g2="quotesingle" k="143" />
+<hkern g1="Aacute" g2="C" k="41" />
+<hkern g1="Aacute" g2="G" k="41" />
+<hkern g1="Aacute" g2="J" k="-266" />
+<hkern g1="Aacute" g2="O" k="41" />
+<hkern g1="Aacute" g2="Q" k="41" />
+<hkern g1="Aacute" g2="T" k="143" />
+<hkern g1="Aacute" g2="V" k="82" />
+<hkern g1="Aacute" g2="W" k="82" />
+<hkern g1="Aacute" g2="Y" k="123" />
+<hkern g1="Aacute" g2="Ccedilla" k="41" />
+<hkern g1="Aacute" g2="Ograve" k="41" />
+<hkern g1="Aacute" g2="Oacute" k="41" />
+<hkern g1="Aacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aacute" g2="Otilde" k="41" />
+<hkern g1="Aacute" g2="Odieresis" k="41" />
+<hkern g1="Aacute" g2="Oslash" k="41" />
+<hkern g1="Aacute" g2="Yacute" k="123" />
+<hkern g1="Aacute" g2="Cacute" k="41" />
+<hkern g1="Aacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aacute" g2="Cdot" k="41" />
+<hkern g1="Aacute" g2="Ccaron" k="41" />
+<hkern g1="Aacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aacute" g2="Gbreve" k="41" />
+<hkern g1="Aacute" g2="Gdot" k="41" />
+<hkern g1="Aacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aacute" g2="Omacron" k="41" />
+<hkern g1="Aacute" g2="Obreve" k="41" />
+<hkern g1="Aacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aacute" g2="OE" k="41" />
+<hkern g1="Aacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aacute" g2="Tcaron" k="143" />
+<hkern g1="Aacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aacute" g2="Ydieresis" k="123" />
+<hkern g1="Aacute" g2="Oslashacute" k="41" />
+<hkern g1="Aacute" g2="Wgrave" k="82" />
+<hkern g1="Aacute" g2="Wacute" k="82" />
+<hkern g1="Aacute" g2="Wdieresis" k="82" />
+<hkern g1="Aacute" g2="Ygrave" k="123" />
+<hkern g1="Aacute" g2="quoteright" k="143" />
+<hkern g1="Aacute" g2="quotedblright" k="143" />
+<hkern g1="Aacute" g2="Ohorn" k="41" />
+<hkern g1="Aacute" g2="uni1ECC" k="41" />
+<hkern g1="Aacute" g2="uni1ECE" k="41" />
+<hkern g1="Aacute" g2="uni1ED0" k="41" />
+<hkern g1="Aacute" g2="uni1ED2" k="41" />
+<hkern g1="Aacute" g2="uni1ED4" k="41" />
+<hkern g1="Aacute" g2="uni1ED6" k="41" />
+<hkern g1="Aacute" g2="uni1ED8" k="41" />
+<hkern g1="Aacute" g2="uni1EDA" k="41" />
+<hkern g1="Aacute" g2="uni1EDC" k="41" />
+<hkern g1="Aacute" g2="uni1EDE" k="41" />
+<hkern g1="Aacute" g2="uni1EE0" k="41" />
+<hkern g1="Aacute" g2="uni1EE2" k="41" />
+<hkern g1="Aacute" g2="uni1EF4" k="123" />
+<hkern g1="Aacute" g2="uni1EF6" k="123" />
+<hkern g1="Aacute" g2="uni1EF8" k="123" />
+<hkern g1="Aacute" g2="Tcedilla" k="143" />
+<hkern g1="Acircumflex" g2="quotedbl" k="143" />
+<hkern g1="Acircumflex" g2="quotesingle" k="143" />
+<hkern g1="Acircumflex" g2="C" k="41" />
+<hkern g1="Acircumflex" g2="G" k="41" />
+<hkern g1="Acircumflex" g2="J" k="-266" />
+<hkern g1="Acircumflex" g2="O" k="41" />
+<hkern g1="Acircumflex" g2="Q" k="41" />
+<hkern g1="Acircumflex" g2="T" k="143" />
+<hkern g1="Acircumflex" g2="V" k="82" />
+<hkern g1="Acircumflex" g2="W" k="82" />
+<hkern g1="Acircumflex" g2="Y" k="123" />
+<hkern g1="Acircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Acircumflex" g2="Ograve" k="41" />
+<hkern g1="Acircumflex" g2="Oacute" k="41" />
+<hkern g1="Acircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Otilde" k="41" />
+<hkern g1="Acircumflex" g2="Odieresis" k="41" />
+<hkern g1="Acircumflex" g2="Oslash" k="41" />
+<hkern g1="Acircumflex" g2="Yacute" k="123" />
+<hkern g1="Acircumflex" g2="Cacute" k="41" />
+<hkern g1="Acircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Cdot" k="41" />
+<hkern g1="Acircumflex" g2="Ccaron" k="41" />
+<hkern g1="Acircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Acircumflex" g2="Gbreve" k="41" />
+<hkern g1="Acircumflex" g2="Gdot" k="41" />
+<hkern g1="Acircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Acircumflex" g2="Omacron" k="41" />
+<hkern g1="Acircumflex" g2="Obreve" k="41" />
+<hkern g1="Acircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Acircumflex" g2="OE" k="41" />
+<hkern g1="Acircumflex" g2="Tcommaaccent" k="143" />
+<hkern g1="Acircumflex" g2="Tcaron" k="143" />
+<hkern g1="Acircumflex" g2="Wcircumflex" k="82" />
+<hkern g1="Acircumflex" g2="Ycircumflex" k="123" />
+<hkern g1="Acircumflex" g2="Ydieresis" k="123" />
+<hkern g1="Acircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Acircumflex" g2="Wgrave" k="82" />
+<hkern g1="Acircumflex" g2="Wacute" k="82" />
+<hkern g1="Acircumflex" g2="Wdieresis" k="82" />
+<hkern g1="Acircumflex" g2="Ygrave" k="123" />
+<hkern g1="Acircumflex" g2="quoteright" k="143" />
+<hkern g1="Acircumflex" g2="quotedblright" k="143" />
+<hkern g1="Acircumflex" g2="Ohorn" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Acircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Acircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Acircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Acircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Acircumflex" g2="uni1EF4" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF6" k="123" />
+<hkern g1="Acircumflex" g2="uni1EF8" k="123" />
+<hkern g1="Acircumflex" g2="Tcedilla" k="143" />
+<hkern g1="Atilde" g2="quotedbl" k="143" />
+<hkern g1="Atilde" g2="quotesingle" k="143" />
+<hkern g1="Atilde" g2="C" k="41" />
+<hkern g1="Atilde" g2="G" k="41" />
+<hkern g1="Atilde" g2="J" k="-266" />
+<hkern g1="Atilde" g2="O" k="41" />
+<hkern g1="Atilde" g2="Q" k="41" />
+<hkern g1="Atilde" g2="T" k="143" />
+<hkern g1="Atilde" g2="V" k="82" />
+<hkern g1="Atilde" g2="W" k="82" />
+<hkern g1="Atilde" g2="Y" k="123" />
+<hkern g1="Atilde" g2="Ccedilla" k="41" />
+<hkern g1="Atilde" g2="Ograve" k="41" />
+<hkern g1="Atilde" g2="Oacute" k="41" />
+<hkern g1="Atilde" g2="Ocircumflex" k="41" />
+<hkern g1="Atilde" g2="Otilde" k="41" />
+<hkern g1="Atilde" g2="Odieresis" k="41" />
+<hkern g1="Atilde" g2="Oslash" k="41" />
+<hkern g1="Atilde" g2="Yacute" k="123" />
+<hkern g1="Atilde" g2="Cacute" k="41" />
+<hkern g1="Atilde" g2="Ccircumflex" k="41" />
+<hkern g1="Atilde" g2="Cdot" k="41" />
+<hkern g1="Atilde" g2="Ccaron" k="41" />
+<hkern g1="Atilde" g2="Gcircumflex" k="41" />
+<hkern g1="Atilde" g2="Gbreve" k="41" />
+<hkern g1="Atilde" g2="Gdot" k="41" />
+<hkern g1="Atilde" g2="Gcommaaccent" k="41" />
+<hkern g1="Atilde" g2="Omacron" k="41" />
+<hkern g1="Atilde" g2="Obreve" k="41" />
+<hkern g1="Atilde" g2="Ohungarumlaut" k="41" />
+<hkern g1="Atilde" g2="OE" k="41" />
+<hkern g1="Atilde" g2="Tcommaaccent" k="143" />
+<hkern g1="Atilde" g2="Tcaron" k="143" />
+<hkern g1="Atilde" g2="Wcircumflex" k="82" />
+<hkern g1="Atilde" g2="Ycircumflex" k="123" />
+<hkern g1="Atilde" g2="Ydieresis" k="123" />
+<hkern g1="Atilde" g2="Oslashacute" k="41" />
+<hkern g1="Atilde" g2="Wgrave" k="82" />
+<hkern g1="Atilde" g2="Wacute" k="82" />
+<hkern g1="Atilde" g2="Wdieresis" k="82" />
+<hkern g1="Atilde" g2="Ygrave" k="123" />
+<hkern g1="Atilde" g2="quoteright" k="143" />
+<hkern g1="Atilde" g2="quotedblright" k="143" />
+<hkern g1="Atilde" g2="Ohorn" k="41" />
+<hkern g1="Atilde" g2="uni1ECC" k="41" />
+<hkern g1="Atilde" g2="uni1ECE" k="41" />
+<hkern g1="Atilde" g2="uni1ED0" k="41" />
+<hkern g1="Atilde" g2="uni1ED2" k="41" />
+<hkern g1="Atilde" g2="uni1ED4" k="41" />
+<hkern g1="Atilde" g2="uni1ED6" k="41" />
+<hkern g1="Atilde" g2="uni1ED8" k="41" />
+<hkern g1="Atilde" g2="uni1EDA" k="41" />
+<hkern g1="Atilde" g2="uni1EDC" k="41" />
+<hkern g1="Atilde" g2="uni1EDE" k="41" />
+<hkern g1="Atilde" g2="uni1EE0" k="41" />
+<hkern g1="Atilde" g2="uni1EE2" k="41" />
+<hkern g1="Atilde" g2="uni1EF4" k="123" />
+<hkern g1="Atilde" g2="uni1EF6" k="123" />
+<hkern g1="Atilde" g2="uni1EF8" k="123" />
+<hkern g1="Atilde" g2="Tcedilla" k="143" />
+<hkern g1="Adieresis" g2="quotedbl" k="143" />
+<hkern g1="Adieresis" g2="quotesingle" k="143" />
+<hkern g1="Adieresis" g2="C" k="41" />
+<hkern g1="Adieresis" g2="G" k="41" />
+<hkern g1="Adieresis" g2="J" k="-266" />
+<hkern g1="Adieresis" g2="O" k="41" />
+<hkern g1="Adieresis" g2="Q" k="41" />
+<hkern g1="Adieresis" g2="T" k="143" />
+<hkern g1="Adieresis" g2="V" k="82" />
+<hkern g1="Adieresis" g2="W" k="82" />
+<hkern g1="Adieresis" g2="Y" k="123" />
+<hkern g1="Adieresis" g2="Ccedilla" k="41" />
+<hkern g1="Adieresis" g2="Ograve" k="41" />
+<hkern g1="Adieresis" g2="Oacute" k="41" />
+<hkern g1="Adieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Adieresis" g2="Otilde" k="41" />
+<hkern g1="Adieresis" g2="Odieresis" k="41" />
+<hkern g1="Adieresis" g2="Oslash" k="41" />
+<hkern g1="Adieresis" g2="Yacute" k="123" />
+<hkern g1="Adieresis" g2="Cacute" k="41" />
+<hkern g1="Adieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Adieresis" g2="Cdot" k="41" />
+<hkern g1="Adieresis" g2="Ccaron" k="41" />
+<hkern g1="Adieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Adieresis" g2="Gbreve" k="41" />
+<hkern g1="Adieresis" g2="Gdot" k="41" />
+<hkern g1="Adieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Adieresis" g2="Omacron" k="41" />
+<hkern g1="Adieresis" g2="Obreve" k="41" />
+<hkern g1="Adieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Adieresis" g2="OE" k="41" />
+<hkern g1="Adieresis" g2="Tcommaaccent" k="143" />
+<hkern g1="Adieresis" g2="Tcaron" k="143" />
+<hkern g1="Adieresis" g2="Wcircumflex" k="82" />
+<hkern g1="Adieresis" g2="Ycircumflex" k="123" />
+<hkern g1="Adieresis" g2="Ydieresis" k="123" />
+<hkern g1="Adieresis" g2="Oslashacute" k="41" />
+<hkern g1="Adieresis" g2="Wgrave" k="82" />
+<hkern g1="Adieresis" g2="Wacute" k="82" />
+<hkern g1="Adieresis" g2="Wdieresis" k="82" />
+<hkern g1="Adieresis" g2="Ygrave" k="123" />
+<hkern g1="Adieresis" g2="quoteright" k="143" />
+<hkern g1="Adieresis" g2="quotedblright" k="143" />
+<hkern g1="Adieresis" g2="Ohorn" k="41" />
+<hkern g1="Adieresis" g2="uni1ECC" k="41" />
+<hkern g1="Adieresis" g2="uni1ECE" k="41" />
+<hkern g1="Adieresis" g2="uni1ED0" k="41" />
+<hkern g1="Adieresis" g2="uni1ED2" k="41" />
+<hkern g1="Adieresis" g2="uni1ED4" k="41" />
+<hkern g1="Adieresis" g2="uni1ED6" k="41" />
+<hkern g1="Adieresis" g2="uni1ED8" k="41" />
+<hkern g1="Adieresis" g2="uni1EDA" k="41" />
+<hkern g1="Adieresis" g2="uni1EDC" k="41" />
+<hkern g1="Adieresis" g2="uni1EDE" k="41" />
+<hkern g1="Adieresis" g2="uni1EE0" k="41" />
+<hkern g1="Adieresis" g2="uni1EE2" k="41" />
+<hkern g1="Adieresis" g2="uni1EF4" k="123" />
+<hkern g1="Adieresis" g2="uni1EF6" k="123" />
+<hkern g1="Adieresis" g2="uni1EF8" k="123" />
+<hkern g1="Adieresis" g2="Tcedilla" k="143" />
+<hkern g1="Aring" g2="quotedbl" k="143" />
+<hkern g1="Aring" g2="quotesingle" k="143" />
+<hkern g1="Aring" g2="C" k="41" />
+<hkern g1="Aring" g2="G" k="41" />
+<hkern g1="Aring" g2="J" k="-266" />
+<hkern g1="Aring" g2="O" k="41" />
+<hkern g1="Aring" g2="Q" k="41" />
+<hkern g1="Aring" g2="T" k="143" />
+<hkern g1="Aring" g2="V" k="82" />
+<hkern g1="Aring" g2="W" k="82" />
+<hkern g1="Aring" g2="Y" k="123" />
+<hkern g1="Aring" g2="Ccedilla" k="41" />
+<hkern g1="Aring" g2="Ograve" k="41" />
+<hkern g1="Aring" g2="Oacute" k="41" />
+<hkern g1="Aring" g2="Ocircumflex" k="41" />
+<hkern g1="Aring" g2="Otilde" k="41" />
+<hkern g1="Aring" g2="Odieresis" k="41" />
+<hkern g1="Aring" g2="Oslash" k="41" />
+<hkern g1="Aring" g2="Yacute" k="123" />
+<hkern g1="Aring" g2="Cacute" k="41" />
+<hkern g1="Aring" g2="Ccircumflex" k="41" />
+<hkern g1="Aring" g2="Cdot" k="41" />
+<hkern g1="Aring" g2="Ccaron" k="41" />
+<hkern g1="Aring" g2="Gcircumflex" k="41" />
+<hkern g1="Aring" g2="Gbreve" k="41" />
+<hkern g1="Aring" g2="Gdot" k="41" />
+<hkern g1="Aring" g2="Gcommaaccent" k="41" />
+<hkern g1="Aring" g2="Omacron" k="41" />
+<hkern g1="Aring" g2="Obreve" k="41" />
+<hkern g1="Aring" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aring" g2="OE" k="41" />
+<hkern g1="Aring" g2="Tcommaaccent" k="143" />
+<hkern g1="Aring" g2="Tcaron" k="143" />
+<hkern g1="Aring" g2="Wcircumflex" k="82" />
+<hkern g1="Aring" g2="Ycircumflex" k="123" />
+<hkern g1="Aring" g2="Ydieresis" k="123" />
+<hkern g1="Aring" g2="Oslashacute" k="41" />
+<hkern g1="Aring" g2="Wgrave" k="82" />
+<hkern g1="Aring" g2="Wacute" k="82" />
+<hkern g1="Aring" g2="Wdieresis" k="82" />
+<hkern g1="Aring" g2="Ygrave" k="123" />
+<hkern g1="Aring" g2="quoteright" k="143" />
+<hkern g1="Aring" g2="quotedblright" k="143" />
+<hkern g1="Aring" g2="Ohorn" k="41" />
+<hkern g1="Aring" g2="uni1ECC" k="41" />
+<hkern g1="Aring" g2="uni1ECE" k="41" />
+<hkern g1="Aring" g2="uni1ED0" k="41" />
+<hkern g1="Aring" g2="uni1ED2" k="41" />
+<hkern g1="Aring" g2="uni1ED4" k="41" />
+<hkern g1="Aring" g2="uni1ED6" k="41" />
+<hkern g1="Aring" g2="uni1ED8" k="41" />
+<hkern g1="Aring" g2="uni1EDA" k="41" />
+<hkern g1="Aring" g2="uni1EDC" k="41" />
+<hkern g1="Aring" g2="uni1EDE" k="41" />
+<hkern g1="Aring" g2="uni1EE0" k="41" />
+<hkern g1="Aring" g2="uni1EE2" k="41" />
+<hkern g1="Aring" g2="uni1EF4" k="123" />
+<hkern g1="Aring" g2="uni1EF6" k="123" />
+<hkern g1="Aring" g2="uni1EF8" k="123" />
+<hkern g1="Aring" g2="Tcedilla" k="143" />
+<hkern g1="AE" g2="J" k="-123" />
+<hkern g1="Ccedilla" g2="C" k="41" />
+<hkern g1="Ccedilla" g2="G" k="41" />
+<hkern g1="Ccedilla" g2="O" k="41" />
+<hkern g1="Ccedilla" g2="Q" k="41" />
+<hkern g1="Ccedilla" g2="Ccedilla" k="41" />
+<hkern g1="Ccedilla" g2="Ograve" k="41" />
+<hkern g1="Ccedilla" g2="Oacute" k="41" />
+<hkern g1="Ccedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Otilde" k="41" />
+<hkern g1="Ccedilla" g2="Odieresis" k="41" />
+<hkern g1="Ccedilla" g2="Oslash" k="41" />
+<hkern g1="Ccedilla" g2="Cacute" k="41" />
+<hkern g1="Ccedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Cdot" k="41" />
+<hkern g1="Ccedilla" g2="Ccaron" k="41" />
+<hkern g1="Ccedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Ccedilla" g2="Gbreve" k="41" />
+<hkern g1="Ccedilla" g2="Gdot" k="41" />
+<hkern g1="Ccedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccedilla" g2="Omacron" k="41" />
+<hkern g1="Ccedilla" g2="Obreve" k="41" />
+<hkern g1="Ccedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccedilla" g2="OE" k="41" />
+<hkern g1="Ccedilla" g2="Oslashacute" k="41" />
+<hkern g1="Ccedilla" g2="Ohorn" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECC" k="41" />
+<hkern g1="Ccedilla" g2="uni1ECE" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED0" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED2" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED4" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED6" k="41" />
+<hkern g1="Ccedilla" g2="uni1ED8" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDA" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDC" k="41" />
+<hkern g1="Ccedilla" g2="uni1EDE" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE0" k="41" />
+<hkern g1="Ccedilla" g2="uni1EE2" k="41" />
+<hkern g1="Egrave" g2="J" k="-123" />
+<hkern g1="Eacute" g2="J" k="-123" />
+<hkern g1="Ecircumflex" g2="J" k="-123" />
+<hkern g1="Edieresis" g2="J" k="-123" />
+<hkern g1="Eth" g2="comma" k="82" />
+<hkern g1="Eth" g2="period" k="82" />
+<hkern g1="Eth" g2="A" k="41" />
+<hkern g1="Eth" g2="T" k="61" />
+<hkern g1="Eth" g2="V" k="20" />
+<hkern g1="Eth" g2="W" k="20" />
+<hkern g1="Eth" g2="X" k="41" />
+<hkern g1="Eth" g2="Y" k="20" />
+<hkern g1="Eth" g2="Z" k="20" />
+<hkern g1="Eth" g2="Agrave" k="41" />
+<hkern g1="Eth" g2="Aacute" k="41" />
+<hkern g1="Eth" g2="Acircumflex" k="41" />
+<hkern g1="Eth" g2="Atilde" k="41" />
+<hkern g1="Eth" g2="Adieresis" k="41" />
+<hkern g1="Eth" g2="Aring" k="41" />
+<hkern g1="Eth" g2="Yacute" k="20" />
+<hkern g1="Eth" g2="Amacron" k="41" />
+<hkern g1="Eth" g2="Abreve" k="41" />
+<hkern g1="Eth" g2="Aogonek" k="41" />
+<hkern g1="Eth" g2="Tcommaaccent" k="61" />
+<hkern g1="Eth" g2="Tcaron" k="61" />
+<hkern g1="Eth" g2="Wcircumflex" k="20" />
+<hkern g1="Eth" g2="Ycircumflex" k="20" />
+<hkern g1="Eth" g2="Ydieresis" k="20" />
+<hkern g1="Eth" g2="Zacute" k="20" />
+<hkern g1="Eth" g2="Zdotaccent" k="20" />
+<hkern g1="Eth" g2="Zcaron" k="20" />
+<hkern g1="Eth" g2="Aringacute" k="41" />
+<hkern g1="Eth" g2="afii10054" k="20" />
+<hkern g1="Eth" g2="Wgrave" k="20" />
+<hkern g1="Eth" g2="Wacute" k="20" />
+<hkern g1="Eth" g2="Wdieresis" k="20" />
+<hkern g1="Eth" g2="Ygrave" k="20" />
+<hkern g1="Eth" g2="quotesinglbase" k="82" />
+<hkern g1="Eth" g2="quotedblbase" k="82" />
+<hkern g1="Eth" g2="uni1E00" k="41" />
+<hkern g1="Eth" g2="uni1EA0" k="41" />
+<hkern g1="Eth" g2="uni1EA2" k="41" />
+<hkern g1="Eth" g2="uni1EA4" k="41" />
+<hkern g1="Eth" g2="uni1EA6" k="41" />
+<hkern g1="Eth" g2="uni1EA8" k="41" />
+<hkern g1="Eth" g2="uni1EAA" k="41" />
+<hkern g1="Eth" g2="uni1EAC" k="41" />
+<hkern g1="Eth" g2="uni1EAE" k="41" />
+<hkern g1="Eth" g2="uni1EB0" k="41" />
+<hkern g1="Eth" g2="uni1EB2" k="41" />
+<hkern g1="Eth" g2="uni1EB4" k="41" />
+<hkern g1="Eth" g2="uni1EB6" k="41" />
+<hkern g1="Eth" g2="uni1EF4" k="20" />
+<hkern g1="Eth" g2="uni1EF6" k="20" />
+<hkern g1="Eth" g2="uni1EF8" k="20" />
+<hkern g1="Eth" g2="Tcedilla" k="61" />
+<hkern g1="Ograve" g2="comma" k="82" />
+<hkern g1="Ograve" g2="period" k="82" />
+<hkern g1="Ograve" g2="A" k="41" />
+<hkern g1="Ograve" g2="T" k="61" />
+<hkern g1="Ograve" g2="V" k="20" />
+<hkern g1="Ograve" g2="W" k="20" />
+<hkern g1="Ograve" g2="X" k="41" />
+<hkern g1="Ograve" g2="Y" k="20" />
+<hkern g1="Ograve" g2="Z" k="20" />
+<hkern g1="Ograve" g2="Agrave" k="41" />
+<hkern g1="Ograve" g2="Aacute" k="41" />
+<hkern g1="Ograve" g2="Acircumflex" k="41" />
+<hkern g1="Ograve" g2="Atilde" k="41" />
+<hkern g1="Ograve" g2="Adieresis" k="41" />
+<hkern g1="Ograve" g2="Aring" k="41" />
+<hkern g1="Ograve" g2="Yacute" k="20" />
+<hkern g1="Ograve" g2="Amacron" k="41" />
+<hkern g1="Ograve" g2="Abreve" k="41" />
+<hkern g1="Ograve" g2="Aogonek" k="41" />
+<hkern g1="Ograve" g2="Tcommaaccent" k="61" />
+<hkern g1="Ograve" g2="Tcaron" k="61" />
+<hkern g1="Ograve" g2="Wcircumflex" k="20" />
+<hkern g1="Ograve" g2="Ycircumflex" k="20" />
+<hkern g1="Ograve" g2="Ydieresis" k="20" />
+<hkern g1="Ograve" g2="Zacute" k="20" />
+<hkern g1="Ograve" g2="Zdotaccent" k="20" />
+<hkern g1="Ograve" g2="Zcaron" k="20" />
+<hkern g1="Ograve" g2="Aringacute" k="41" />
+<hkern g1="Ograve" g2="afii10054" k="20" />
+<hkern g1="Ograve" g2="Wgrave" k="20" />
+<hkern g1="Ograve" g2="Wacute" k="20" />
+<hkern g1="Ograve" g2="Wdieresis" k="20" />
+<hkern g1="Ograve" g2="Ygrave" k="20" />
+<hkern g1="Ograve" g2="quotesinglbase" k="82" />
+<hkern g1="Ograve" g2="quotedblbase" k="82" />
+<hkern g1="Ograve" g2="uni1E00" k="41" />
+<hkern g1="Ograve" g2="uni1EA0" k="41" />
+<hkern g1="Ograve" g2="uni1EA2" k="41" />
+<hkern g1="Ograve" g2="uni1EA4" k="41" />
+<hkern g1="Ograve" g2="uni1EA6" k="41" />
+<hkern g1="Ograve" g2="uni1EA8" k="41" />
+<hkern g1="Ograve" g2="uni1EAA" k="41" />
+<hkern g1="Ograve" g2="uni1EAC" k="41" />
+<hkern g1="Ograve" g2="uni1EAE" k="41" />
+<hkern g1="Ograve" g2="uni1EB0" k="41" />
+<hkern g1="Ograve" g2="uni1EB2" k="41" />
+<hkern g1="Ograve" g2="uni1EB4" k="41" />
+<hkern g1="Ograve" g2="uni1EB6" k="41" />
+<hkern g1="Ograve" g2="uni1EF4" k="20" />
+<hkern g1="Ograve" g2="uni1EF6" k="20" />
+<hkern g1="Ograve" g2="uni1EF8" k="20" />
+<hkern g1="Ograve" g2="Tcedilla" k="61" />
+<hkern g1="Oacute" g2="comma" k="82" />
+<hkern g1="Oacute" g2="period" k="82" />
+<hkern g1="Oacute" g2="A" k="41" />
+<hkern g1="Oacute" g2="T" k="61" />
+<hkern g1="Oacute" g2="V" k="20" />
+<hkern g1="Oacute" g2="W" k="20" />
+<hkern g1="Oacute" g2="X" k="41" />
+<hkern g1="Oacute" g2="Y" k="20" />
+<hkern g1="Oacute" g2="Z" k="20" />
+<hkern g1="Oacute" g2="Agrave" k="41" />
+<hkern g1="Oacute" g2="Aacute" k="41" />
+<hkern g1="Oacute" g2="Acircumflex" k="41" />
+<hkern g1="Oacute" g2="Atilde" k="41" />
+<hkern g1="Oacute" g2="Adieresis" k="41" />
+<hkern g1="Oacute" g2="Aring" k="41" />
+<hkern g1="Oacute" g2="Yacute" k="20" />
+<hkern g1="Oacute" g2="Amacron" k="41" />
+<hkern g1="Oacute" g2="Abreve" k="41" />
+<hkern g1="Oacute" g2="Aogonek" k="41" />
+<hkern g1="Oacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oacute" g2="Tcaron" k="61" />
+<hkern g1="Oacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oacute" g2="Ydieresis" k="20" />
+<hkern g1="Oacute" g2="Zacute" k="20" />
+<hkern g1="Oacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oacute" g2="Zcaron" k="20" />
+<hkern g1="Oacute" g2="Aringacute" k="41" />
+<hkern g1="Oacute" g2="afii10054" k="20" />
+<hkern g1="Oacute" g2="Wgrave" k="20" />
+<hkern g1="Oacute" g2="Wacute" k="20" />
+<hkern g1="Oacute" g2="Wdieresis" k="20" />
+<hkern g1="Oacute" g2="Ygrave" k="20" />
+<hkern g1="Oacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oacute" g2="quotedblbase" k="82" />
+<hkern g1="Oacute" g2="uni1E00" k="41" />
+<hkern g1="Oacute" g2="uni1EA0" k="41" />
+<hkern g1="Oacute" g2="uni1EA2" k="41" />
+<hkern g1="Oacute" g2="uni1EA4" k="41" />
+<hkern g1="Oacute" g2="uni1EA6" k="41" />
+<hkern g1="Oacute" g2="uni1EA8" k="41" />
+<hkern g1="Oacute" g2="uni1EAA" k="41" />
+<hkern g1="Oacute" g2="uni1EAC" k="41" />
+<hkern g1="Oacute" g2="uni1EAE" k="41" />
+<hkern g1="Oacute" g2="uni1EB0" k="41" />
+<hkern g1="Oacute" g2="uni1EB2" k="41" />
+<hkern g1="Oacute" g2="uni1EB4" k="41" />
+<hkern g1="Oacute" g2="uni1EB6" k="41" />
+<hkern g1="Oacute" g2="uni1EF4" k="20" />
+<hkern g1="Oacute" g2="uni1EF6" k="20" />
+<hkern g1="Oacute" g2="uni1EF8" k="20" />
+<hkern g1="Oacute" g2="Tcedilla" k="61" />
+<hkern g1="Ocircumflex" g2="comma" k="82" />
+<hkern g1="Ocircumflex" g2="period" k="82" />
+<hkern g1="Ocircumflex" g2="A" k="41" />
+<hkern g1="Ocircumflex" g2="T" k="61" />
+<hkern g1="Ocircumflex" g2="V" k="20" />
+<hkern g1="Ocircumflex" g2="W" k="20" />
+<hkern g1="Ocircumflex" g2="X" k="41" />
+<hkern g1="Ocircumflex" g2="Y" k="20" />
+<hkern g1="Ocircumflex" g2="Z" k="20" />
+<hkern g1="Ocircumflex" g2="Agrave" k="41" />
+<hkern g1="Ocircumflex" g2="Aacute" k="41" />
+<hkern g1="Ocircumflex" g2="Acircumflex" k="41" />
+<hkern g1="Ocircumflex" g2="Atilde" k="41" />
+<hkern g1="Ocircumflex" g2="Adieresis" k="41" />
+<hkern g1="Ocircumflex" g2="Aring" k="41" />
+<hkern g1="Ocircumflex" g2="Yacute" k="20" />
+<hkern g1="Ocircumflex" g2="Amacron" k="41" />
+<hkern g1="Ocircumflex" g2="Abreve" k="41" />
+<hkern g1="Ocircumflex" g2="Aogonek" k="41" />
+<hkern g1="Ocircumflex" g2="Tcommaaccent" k="61" />
+<hkern g1="Ocircumflex" g2="Tcaron" k="61" />
+<hkern g1="Ocircumflex" g2="Wcircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ycircumflex" k="20" />
+<hkern g1="Ocircumflex" g2="Ydieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Zacute" k="20" />
+<hkern g1="Ocircumflex" g2="Zdotaccent" k="20" />
+<hkern g1="Ocircumflex" g2="Zcaron" k="20" />
+<hkern g1="Ocircumflex" g2="Aringacute" k="41" />
+<hkern g1="Ocircumflex" g2="afii10054" k="20" />
+<hkern g1="Ocircumflex" g2="Wgrave" k="20" />
+<hkern g1="Ocircumflex" g2="Wacute" k="20" />
+<hkern g1="Ocircumflex" g2="Wdieresis" k="20" />
+<hkern g1="Ocircumflex" g2="Ygrave" k="20" />
+<hkern g1="Ocircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="Ocircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ocircumflex" g2="uni1E00" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EA8" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAA" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAC" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EAE" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB0" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB2" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB4" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EB6" k="41" />
+<hkern g1="Ocircumflex" g2="uni1EF4" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF6" k="20" />
+<hkern g1="Ocircumflex" g2="uni1EF8" k="20" />
+<hkern g1="Ocircumflex" g2="Tcedilla" k="61" />
+<hkern g1="Otilde" g2="comma" k="82" />
+<hkern g1="Otilde" g2="period" k="82" />
+<hkern g1="Otilde" g2="A" k="41" />
+<hkern g1="Otilde" g2="T" k="61" />
+<hkern g1="Otilde" g2="V" k="20" />
+<hkern g1="Otilde" g2="W" k="20" />
+<hkern g1="Otilde" g2="X" k="41" />
+<hkern g1="Otilde" g2="Y" k="20" />
+<hkern g1="Otilde" g2="Z" k="20" />
+<hkern g1="Otilde" g2="Agrave" k="41" />
+<hkern g1="Otilde" g2="Aacute" k="41" />
+<hkern g1="Otilde" g2="Acircumflex" k="41" />
+<hkern g1="Otilde" g2="Atilde" k="41" />
+<hkern g1="Otilde" g2="Adieresis" k="41" />
+<hkern g1="Otilde" g2="Aring" k="41" />
+<hkern g1="Otilde" g2="Yacute" k="20" />
+<hkern g1="Otilde" g2="Amacron" k="41" />
+<hkern g1="Otilde" g2="Abreve" k="41" />
+<hkern g1="Otilde" g2="Aogonek" k="41" />
+<hkern g1="Otilde" g2="Tcommaaccent" k="61" />
+<hkern g1="Otilde" g2="Tcaron" k="61" />
+<hkern g1="Otilde" g2="Wcircumflex" k="20" />
+<hkern g1="Otilde" g2="Ycircumflex" k="20" />
+<hkern g1="Otilde" g2="Ydieresis" k="20" />
+<hkern g1="Otilde" g2="Zacute" k="20" />
+<hkern g1="Otilde" g2="Zdotaccent" k="20" />
+<hkern g1="Otilde" g2="Zcaron" k="20" />
+<hkern g1="Otilde" g2="Aringacute" k="41" />
+<hkern g1="Otilde" g2="afii10054" k="20" />
+<hkern g1="Otilde" g2="Wgrave" k="20" />
+<hkern g1="Otilde" g2="Wacute" k="20" />
+<hkern g1="Otilde" g2="Wdieresis" k="20" />
+<hkern g1="Otilde" g2="Ygrave" k="20" />
+<hkern g1="Otilde" g2="quotesinglbase" k="82" />
+<hkern g1="Otilde" g2="quotedblbase" k="82" />
+<hkern g1="Otilde" g2="uni1E00" k="41" />
+<hkern g1="Otilde" g2="uni1EA0" k="41" />
+<hkern g1="Otilde" g2="uni1EA2" k="41" />
+<hkern g1="Otilde" g2="uni1EA4" k="41" />
+<hkern g1="Otilde" g2="uni1EA6" k="41" />
+<hkern g1="Otilde" g2="uni1EA8" k="41" />
+<hkern g1="Otilde" g2="uni1EAA" k="41" />
+<hkern g1="Otilde" g2="uni1EAC" k="41" />
+<hkern g1="Otilde" g2="uni1EAE" k="41" />
+<hkern g1="Otilde" g2="uni1EB0" k="41" />
+<hkern g1="Otilde" g2="uni1EB2" k="41" />
+<hkern g1="Otilde" g2="uni1EB4" k="41" />
+<hkern g1="Otilde" g2="uni1EB6" k="41" />
+<hkern g1="Otilde" g2="uni1EF4" k="20" />
+<hkern g1="Otilde" g2="uni1EF6" k="20" />
+<hkern g1="Otilde" g2="uni1EF8" k="20" />
+<hkern g1="Otilde" g2="Tcedilla" k="61" />
+<hkern g1="Odieresis" g2="comma" k="82" />
+<hkern g1="Odieresis" g2="period" k="82" />
+<hkern g1="Odieresis" g2="A" k="41" />
+<hkern g1="Odieresis" g2="T" k="61" />
+<hkern g1="Odieresis" g2="V" k="20" />
+<hkern g1="Odieresis" g2="W" k="20" />
+<hkern g1="Odieresis" g2="X" k="41" />
+<hkern g1="Odieresis" g2="Y" k="20" />
+<hkern g1="Odieresis" g2="Z" k="20" />
+<hkern g1="Odieresis" g2="Agrave" k="41" />
+<hkern g1="Odieresis" g2="Aacute" k="41" />
+<hkern g1="Odieresis" g2="Acircumflex" k="41" />
+<hkern g1="Odieresis" g2="Atilde" k="41" />
+<hkern g1="Odieresis" g2="Adieresis" k="41" />
+<hkern g1="Odieresis" g2="Aring" k="41" />
+<hkern g1="Odieresis" g2="Yacute" k="20" />
+<hkern g1="Odieresis" g2="Amacron" k="41" />
+<hkern g1="Odieresis" g2="Abreve" k="41" />
+<hkern g1="Odieresis" g2="Aogonek" k="41" />
+<hkern g1="Odieresis" g2="Tcommaaccent" k="61" />
+<hkern g1="Odieresis" g2="Tcaron" k="61" />
+<hkern g1="Odieresis" g2="Wcircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ycircumflex" k="20" />
+<hkern g1="Odieresis" g2="Ydieresis" k="20" />
+<hkern g1="Odieresis" g2="Zacute" k="20" />
+<hkern g1="Odieresis" g2="Zdotaccent" k="20" />
+<hkern g1="Odieresis" g2="Zcaron" k="20" />
+<hkern g1="Odieresis" g2="Aringacute" k="41" />
+<hkern g1="Odieresis" g2="afii10054" k="20" />
+<hkern g1="Odieresis" g2="Wgrave" k="20" />
+<hkern g1="Odieresis" g2="Wacute" k="20" />
+<hkern g1="Odieresis" g2="Wdieresis" k="20" />
+<hkern g1="Odieresis" g2="Ygrave" k="20" />
+<hkern g1="Odieresis" g2="quotesinglbase" k="82" />
+<hkern g1="Odieresis" g2="quotedblbase" k="82" />
+<hkern g1="Odieresis" g2="uni1E00" k="41" />
+<hkern g1="Odieresis" g2="uni1EA0" k="41" />
+<hkern g1="Odieresis" g2="uni1EA2" k="41" />
+<hkern g1="Odieresis" g2="uni1EA4" k="41" />
+<hkern g1="Odieresis" g2="uni1EA6" k="41" />
+<hkern g1="Odieresis" g2="uni1EA8" k="41" />
+<hkern g1="Odieresis" g2="uni1EAA" k="41" />
+<hkern g1="Odieresis" g2="uni1EAC" k="41" />
+<hkern g1="Odieresis" g2="uni1EAE" k="41" />
+<hkern g1="Odieresis" g2="uni1EB0" k="41" />
+<hkern g1="Odieresis" g2="uni1EB2" k="41" />
+<hkern g1="Odieresis" g2="uni1EB4" k="41" />
+<hkern g1="Odieresis" g2="uni1EB6" k="41" />
+<hkern g1="Odieresis" g2="uni1EF4" k="20" />
+<hkern g1="Odieresis" g2="uni1EF6" k="20" />
+<hkern g1="Odieresis" g2="uni1EF8" k="20" />
+<hkern g1="Odieresis" g2="Tcedilla" k="61" />
+<hkern g1="Oslash" g2="comma" k="82" />
+<hkern g1="Oslash" g2="period" k="82" />
+<hkern g1="Oslash" g2="A" k="41" />
+<hkern g1="Oslash" g2="T" k="61" />
+<hkern g1="Oslash" g2="V" k="20" />
+<hkern g1="Oslash" g2="W" k="20" />
+<hkern g1="Oslash" g2="X" k="41" />
+<hkern g1="Oslash" g2="Y" k="20" />
+<hkern g1="Oslash" g2="Z" k="20" />
+<hkern g1="Oslash" g2="Agrave" k="41" />
+<hkern g1="Oslash" g2="Aacute" k="41" />
+<hkern g1="Oslash" g2="Acircumflex" k="41" />
+<hkern g1="Oslash" g2="Atilde" k="41" />
+<hkern g1="Oslash" g2="Adieresis" k="41" />
+<hkern g1="Oslash" g2="Aring" k="41" />
+<hkern g1="Oslash" g2="Yacute" k="20" />
+<hkern g1="Oslash" g2="Amacron" k="41" />
+<hkern g1="Oslash" g2="Abreve" k="41" />
+<hkern g1="Oslash" g2="Aogonek" k="41" />
+<hkern g1="Oslash" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslash" g2="Tcaron" k="61" />
+<hkern g1="Oslash" g2="Wcircumflex" k="20" />
+<hkern g1="Oslash" g2="Ycircumflex" k="20" />
+<hkern g1="Oslash" g2="Ydieresis" k="20" />
+<hkern g1="Oslash" g2="Zacute" k="20" />
+<hkern g1="Oslash" g2="Zdotaccent" k="20" />
+<hkern g1="Oslash" g2="Zcaron" k="20" />
+<hkern g1="Oslash" g2="Aringacute" k="41" />
+<hkern g1="Oslash" g2="afii10054" k="20" />
+<hkern g1="Oslash" g2="Wgrave" k="20" />
+<hkern g1="Oslash" g2="Wacute" k="20" />
+<hkern g1="Oslash" g2="Wdieresis" k="20" />
+<hkern g1="Oslash" g2="Ygrave" k="20" />
+<hkern g1="Oslash" g2="quotesinglbase" k="82" />
+<hkern g1="Oslash" g2="quotedblbase" k="82" />
+<hkern g1="Oslash" g2="uni1E00" k="41" />
+<hkern g1="Oslash" g2="uni1EA0" k="41" />
+<hkern g1="Oslash" g2="uni1EA2" k="41" />
+<hkern g1="Oslash" g2="uni1EA4" k="41" />
+<hkern g1="Oslash" g2="uni1EA6" k="41" />
+<hkern g1="Oslash" g2="uni1EA8" k="41" />
+<hkern g1="Oslash" g2="uni1EAA" k="41" />
+<hkern g1="Oslash" g2="uni1EAC" k="41" />
+<hkern g1="Oslash" g2="uni1EAE" k="41" />
+<hkern g1="Oslash" g2="uni1EB0" k="41" />
+<hkern g1="Oslash" g2="uni1EB2" k="41" />
+<hkern g1="Oslash" g2="uni1EB4" k="41" />
+<hkern g1="Oslash" g2="uni1EB6" k="41" />
+<hkern g1="Oslash" g2="uni1EF4" k="20" />
+<hkern g1="Oslash" g2="uni1EF6" k="20" />
+<hkern g1="Oslash" g2="uni1EF8" k="20" />
+<hkern g1="Oslash" g2="Tcedilla" k="61" />
+<hkern g1="Ugrave" g2="comma" k="41" />
+<hkern g1="Ugrave" g2="period" k="41" />
+<hkern g1="Ugrave" g2="A" k="20" />
+<hkern g1="Ugrave" g2="Agrave" k="20" />
+<hkern g1="Ugrave" g2="Aacute" k="20" />
+<hkern g1="Ugrave" g2="Acircumflex" k="20" />
+<hkern g1="Ugrave" g2="Atilde" k="20" />
+<hkern g1="Ugrave" g2="Adieresis" k="20" />
+<hkern g1="Ugrave" g2="Aring" k="20" />
+<hkern g1="Ugrave" g2="Amacron" k="20" />
+<hkern g1="Ugrave" g2="Abreve" k="20" />
+<hkern g1="Ugrave" g2="Aogonek" k="20" />
+<hkern g1="Ugrave" g2="Aringacute" k="20" />
+<hkern g1="Ugrave" g2="quotesinglbase" k="41" />
+<hkern g1="Ugrave" g2="quotedblbase" k="41" />
+<hkern g1="Ugrave" g2="uni1E00" k="20" />
+<hkern g1="Ugrave" g2="uni1EA0" k="20" />
+<hkern g1="Ugrave" g2="uni1EA2" k="20" />
+<hkern g1="Ugrave" g2="uni1EA4" k="20" />
+<hkern g1="Ugrave" g2="uni1EA6" k="20" />
+<hkern g1="Ugrave" g2="uni1EA8" k="20" />
+<hkern g1="Ugrave" g2="uni1EAA" k="20" />
+<hkern g1="Ugrave" g2="uni1EAC" k="20" />
+<hkern g1="Ugrave" g2="uni1EAE" k="20" />
+<hkern g1="Ugrave" g2="uni1EB0" k="20" />
+<hkern g1="Ugrave" g2="uni1EB2" k="20" />
+<hkern g1="Ugrave" g2="uni1EB4" k="20" />
+<hkern g1="Ugrave" g2="uni1EB6" k="20" />
+<hkern g1="Uacute" g2="comma" k="41" />
+<hkern g1="Uacute" g2="period" k="41" />
+<hkern g1="Uacute" g2="A" k="20" />
+<hkern g1="Uacute" g2="Agrave" k="20" />
+<hkern g1="Uacute" g2="Aacute" k="20" />
+<hkern g1="Uacute" g2="Acircumflex" k="20" />
+<hkern g1="Uacute" g2="Atilde" k="20" />
+<hkern g1="Uacute" g2="Adieresis" k="20" />
+<hkern g1="Uacute" g2="Aring" k="20" />
+<hkern g1="Uacute" g2="Amacron" k="20" />
+<hkern g1="Uacute" g2="Abreve" k="20" />
+<hkern g1="Uacute" g2="Aogonek" k="20" />
+<hkern g1="Uacute" g2="Aringacute" k="20" />
+<hkern g1="Uacute" g2="quotesinglbase" k="41" />
+<hkern g1="Uacute" g2="quotedblbase" k="41" />
+<hkern g1="Uacute" g2="uni1E00" k="20" />
+<hkern g1="Uacute" g2="uni1EA0" k="20" />
+<hkern g1="Uacute" g2="uni1EA2" k="20" />
+<hkern g1="Uacute" g2="uni1EA4" k="20" />
+<hkern g1="Uacute" g2="uni1EA6" k="20" />
+<hkern g1="Uacute" g2="uni1EA8" k="20" />
+<hkern g1="Uacute" g2="uni1EAA" k="20" />
+<hkern g1="Uacute" g2="uni1EAC" k="20" />
+<hkern g1="Uacute" g2="uni1EAE" k="20" />
+<hkern g1="Uacute" g2="uni1EB0" k="20" />
+<hkern g1="Uacute" g2="uni1EB2" k="20" />
+<hkern g1="Uacute" g2="uni1EB4" k="20" />
+<hkern g1="Uacute" g2="uni1EB6" k="20" />
+<hkern g1="Ucircumflex" g2="comma" k="41" />
+<hkern g1="Ucircumflex" g2="period" k="41" />
+<hkern g1="Ucircumflex" g2="A" k="20" />
+<hkern g1="Ucircumflex" g2="Agrave" k="20" />
+<hkern g1="Ucircumflex" g2="Aacute" k="20" />
+<hkern g1="Ucircumflex" g2="Acircumflex" k="20" />
+<hkern g1="Ucircumflex" g2="Atilde" k="20" />
+<hkern g1="Ucircumflex" g2="Adieresis" k="20" />
+<hkern g1="Ucircumflex" g2="Aring" k="20" />
+<hkern g1="Ucircumflex" g2="Amacron" k="20" />
+<hkern g1="Ucircumflex" g2="Abreve" k="20" />
+<hkern g1="Ucircumflex" g2="Aogonek" k="20" />
+<hkern g1="Ucircumflex" g2="Aringacute" k="20" />
+<hkern g1="Ucircumflex" g2="quotesinglbase" k="41" />
+<hkern g1="Ucircumflex" g2="quotedblbase" k="41" />
+<hkern g1="Ucircumflex" g2="uni1E00" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA6" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EA8" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAA" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAC" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EAE" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB0" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB2" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB4" k="20" />
+<hkern g1="Ucircumflex" g2="uni1EB6" k="20" />
+<hkern g1="Udieresis" g2="comma" k="41" />
+<hkern g1="Udieresis" g2="period" k="41" />
+<hkern g1="Udieresis" g2="A" k="20" />
+<hkern g1="Udieresis" g2="Agrave" k="20" />
+<hkern g1="Udieresis" g2="Aacute" k="20" />
+<hkern g1="Udieresis" g2="Acircumflex" k="20" />
+<hkern g1="Udieresis" g2="Atilde" k="20" />
+<hkern g1="Udieresis" g2="Adieresis" k="20" />
+<hkern g1="Udieresis" g2="Aring" k="20" />
+<hkern g1="Udieresis" g2="Amacron" k="20" />
+<hkern g1="Udieresis" g2="Abreve" k="20" />
+<hkern g1="Udieresis" g2="Aogonek" k="20" />
+<hkern g1="Udieresis" g2="Aringacute" k="20" />
+<hkern g1="Udieresis" g2="quotesinglbase" k="41" />
+<hkern g1="Udieresis" g2="quotedblbase" k="41" />
+<hkern g1="Udieresis" g2="uni1E00" k="20" />
+<hkern g1="Udieresis" g2="uni1EA0" k="20" />
+<hkern g1="Udieresis" g2="uni1EA2" k="20" />
+<hkern g1="Udieresis" g2="uni1EA4" k="20" />
+<hkern g1="Udieresis" g2="uni1EA6" k="20" />
+<hkern g1="Udieresis" g2="uni1EA8" k="20" />
+<hkern g1="Udieresis" g2="uni1EAA" k="20" />
+<hkern g1="Udieresis" g2="uni1EAC" k="20" />
+<hkern g1="Udieresis" g2="uni1EAE" k="20" />
+<hkern g1="Udieresis" g2="uni1EB0" k="20" />
+<hkern g1="Udieresis" g2="uni1EB2" k="20" />
+<hkern g1="Udieresis" g2="uni1EB4" k="20" />
+<hkern g1="Udieresis" g2="uni1EB6" k="20" />
+<hkern g1="Yacute" g2="comma" k="123" />
+<hkern g1="Yacute" g2="period" k="123" />
+<hkern g1="Yacute" g2="question" k="-41" />
+<hkern g1="Yacute" g2="A" k="123" />
+<hkern g1="Yacute" g2="C" k="41" />
+<hkern g1="Yacute" g2="G" k="41" />
+<hkern g1="Yacute" g2="O" k="41" />
+<hkern g1="Yacute" g2="Q" k="41" />
+<hkern g1="Yacute" g2="a" k="102" />
+<hkern g1="Yacute" g2="c" k="102" />
+<hkern g1="Yacute" g2="d" k="102" />
+<hkern g1="Yacute" g2="e" k="102" />
+<hkern g1="Yacute" g2="g" k="41" />
+<hkern g1="Yacute" g2="m" k="61" />
+<hkern g1="Yacute" g2="n" k="61" />
+<hkern g1="Yacute" g2="o" k="102" />
+<hkern g1="Yacute" g2="p" k="61" />
+<hkern g1="Yacute" g2="q" k="102" />
+<hkern g1="Yacute" g2="r" k="61" />
+<hkern g1="Yacute" g2="s" k="82" />
+<hkern g1="Yacute" g2="u" k="61" />
+<hkern g1="Yacute" g2="z" k="41" />
+<hkern g1="Yacute" g2="Agrave" k="123" />
+<hkern g1="Yacute" g2="Aacute" k="123" />
+<hkern g1="Yacute" g2="Acircumflex" k="123" />
+<hkern g1="Yacute" g2="Atilde" k="123" />
+<hkern g1="Yacute" g2="Adieresis" k="123" />
+<hkern g1="Yacute" g2="Aring" k="123" />
+<hkern g1="Yacute" g2="Ccedilla" k="41" />
+<hkern g1="Yacute" g2="Ograve" k="41" />
+<hkern g1="Yacute" g2="Oacute" k="41" />
+<hkern g1="Yacute" g2="Ocircumflex" k="41" />
+<hkern g1="Yacute" g2="Otilde" k="41" />
+<hkern g1="Yacute" g2="Odieresis" k="41" />
+<hkern g1="Yacute" g2="Oslash" k="41" />
+<hkern g1="Yacute" g2="agrave" k="102" />
+<hkern g1="Yacute" g2="aacute" k="102" />
+<hkern g1="Yacute" g2="acircumflex" k="102" />
+<hkern g1="Yacute" g2="atilde" k="102" />
+<hkern g1="Yacute" g2="adieresis" k="102" />
+<hkern g1="Yacute" g2="aring" k="102" />
+<hkern g1="Yacute" g2="ae" k="102" />
+<hkern g1="Yacute" g2="ccedilla" k="102" />
+<hkern g1="Yacute" g2="egrave" k="102" />
+<hkern g1="Yacute" g2="eacute" k="102" />
+<hkern g1="Yacute" g2="ecircumflex" k="102" />
+<hkern g1="Yacute" g2="edieresis" k="102" />
+<hkern g1="Yacute" g2="ograve" k="102" />
+<hkern g1="Yacute" g2="oacute" k="102" />
+<hkern g1="Yacute" g2="ocircumflex" k="102" />
+<hkern g1="Yacute" g2="otilde" k="102" />
+<hkern g1="Yacute" g2="odieresis" k="102" />
+<hkern g1="Yacute" g2="oslash" k="102" />
+<hkern g1="Yacute" g2="ugrave" k="61" />
+<hkern g1="Yacute" g2="uacute" k="61" />
+<hkern g1="Yacute" g2="ucircumflex" k="61" />
+<hkern g1="Yacute" g2="udieresis" k="61" />
+<hkern g1="Yacute" g2="Amacron" k="123" />
+<hkern g1="Yacute" g2="amacron" k="102" />
+<hkern g1="Yacute" g2="Abreve" k="123" />
+<hkern g1="Yacute" g2="abreve" k="102" />
+<hkern g1="Yacute" g2="Aogonek" k="123" />
+<hkern g1="Yacute" g2="aogonek" k="102" />
+<hkern g1="Yacute" g2="Cacute" k="41" />
+<hkern g1="Yacute" g2="cacute" k="102" />
+<hkern g1="Yacute" g2="Ccircumflex" k="41" />
+<hkern g1="Yacute" g2="ccircumflex" k="102" />
+<hkern g1="Yacute" g2="Cdot" k="41" />
+<hkern g1="Yacute" g2="cdot" k="102" />
+<hkern g1="Yacute" g2="Ccaron" k="41" />
+<hkern g1="Yacute" g2="ccaron" k="102" />
+<hkern g1="Yacute" g2="dcaron" k="102" />
+<hkern g1="Yacute" g2="dcroat" k="102" />
+<hkern g1="Yacute" g2="emacron" k="102" />
+<hkern g1="Yacute" g2="ebreve" k="102" />
+<hkern g1="Yacute" g2="edotaccent" k="102" />
+<hkern g1="Yacute" g2="eogonek" k="102" />
+<hkern g1="Yacute" g2="ecaron" k="102" />
+<hkern g1="Yacute" g2="Gcircumflex" k="41" />
+<hkern g1="Yacute" g2="gcircumflex" k="41" />
+<hkern g1="Yacute" g2="Gbreve" k="41" />
+<hkern g1="Yacute" g2="gbreve" k="41" />
+<hkern g1="Yacute" g2="Gdot" k="41" />
+<hkern g1="Yacute" g2="gdot" k="41" />
+<hkern g1="Yacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="gcommaaccent" k="41" />
+<hkern g1="Yacute" g2="kgreenlandic" k="61" />
+<hkern g1="Yacute" g2="nacute" k="61" />
+<hkern g1="Yacute" g2="ncommaaccent" k="61" />
+<hkern g1="Yacute" g2="eng" k="61" />
+<hkern g1="Yacute" g2="Omacron" k="41" />
+<hkern g1="Yacute" g2="omacron" k="102" />
+<hkern g1="Yacute" g2="Obreve" k="41" />
+<hkern g1="Yacute" g2="obreve" k="102" />
+<hkern g1="Yacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Yacute" g2="ohungarumlaut" k="102" />
+<hkern g1="Yacute" g2="OE" k="41" />
+<hkern g1="Yacute" g2="oe" k="102" />
+<hkern g1="Yacute" g2="racute" k="61" />
+<hkern g1="Yacute" g2="rcommaaccent" k="61" />
+<hkern g1="Yacute" g2="sacute" k="82" />
+<hkern g1="Yacute" g2="scedilla" k="82" />
+<hkern g1="Yacute" g2="utilde" k="61" />
+<hkern g1="Yacute" g2="umacron" k="61" />
+<hkern g1="Yacute" g2="ubreve" k="61" />
+<hkern g1="Yacute" g2="uring" k="61" />
+<hkern g1="Yacute" g2="uhungarumlaut" k="61" />
+<hkern g1="Yacute" g2="uogonek" k="61" />
+<hkern g1="Yacute" g2="zacute" k="41" />
+<hkern g1="Yacute" g2="zdotaccent" k="41" />
+<hkern g1="Yacute" g2="zcaron" k="41" />
+<hkern g1="Yacute" g2="Aringacute" k="123" />
+<hkern g1="Yacute" g2="aringacute" k="102" />
+<hkern g1="Yacute" g2="aeacute" k="102" />
+<hkern g1="Yacute" g2="Oslashacute" k="41" />
+<hkern g1="Yacute" g2="oslashacute" k="102" />
+<hkern g1="Yacute" g2="scommaaccent" k="82" />
+<hkern g1="Yacute" g2="quotesinglbase" k="123" />
+<hkern g1="Yacute" g2="quotedblbase" k="123" />
+<hkern g1="Yacute" g2="uni1E3F" k="61" />
+<hkern g1="Yacute" g2="uni1E00" k="123" />
+<hkern g1="Yacute" g2="uni1E01" k="102" />
+<hkern g1="Yacute" g2="Ohorn" k="41" />
+<hkern g1="Yacute" g2="ohorn" k="102" />
+<hkern g1="Yacute" g2="uhorn" k="61" />
+<hkern g1="Yacute" g2="uni1EA0" k="123" />
+<hkern g1="Yacute" g2="uni1EA1" k="102" />
+<hkern g1="Yacute" g2="uni1EA2" k="123" />
+<hkern g1="Yacute" g2="uni1EA3" k="102" />
+<hkern g1="Yacute" g2="uni1EA4" k="123" />
+<hkern g1="Yacute" g2="uni1EA5" k="102" />
+<hkern g1="Yacute" g2="uni1EA6" k="123" />
+<hkern g1="Yacute" g2="uni1EA8" k="123" />
+<hkern g1="Yacute" g2="uni1EA9" k="102" />
+<hkern g1="Yacute" g2="uni1EAA" k="123" />
+<hkern g1="Yacute" g2="uni1EAB" k="102" />
+<hkern g1="Yacute" g2="uni1EAC" k="123" />
+<hkern g1="Yacute" g2="uni1EAD" k="102" />
+<hkern g1="Yacute" g2="uni1EAE" k="123" />
+<hkern g1="Yacute" g2="uni1EAF" k="102" />
+<hkern g1="Yacute" g2="uni1EB0" k="123" />
+<hkern g1="Yacute" g2="uni1EB1" k="102" />
+<hkern g1="Yacute" g2="uni1EB2" k="123" />
+<hkern g1="Yacute" g2="uni1EB3" k="102" />
+<hkern g1="Yacute" g2="uni1EB4" k="123" />
+<hkern g1="Yacute" g2="uni1EB5" k="102" />
+<hkern g1="Yacute" g2="uni1EB6" k="123" />
+<hkern g1="Yacute" g2="uni1EB7" k="102" />
+<hkern g1="Yacute" g2="uni1EB9" k="102" />
+<hkern g1="Yacute" g2="uni1EBB" k="102" />
+<hkern g1="Yacute" g2="uni1EBD" k="102" />
+<hkern g1="Yacute" g2="uni1EBF" k="102" />
+<hkern g1="Yacute" g2="uni1EC3" k="102" />
+<hkern g1="Yacute" g2="uni1EC5" k="102" />
+<hkern g1="Yacute" g2="uni1EC7" k="102" />
+<hkern g1="Yacute" g2="uni1ECC" k="41" />
+<hkern g1="Yacute" g2="uni1ECD" k="102" />
+<hkern g1="Yacute" g2="uni1ECE" k="41" />
+<hkern g1="Yacute" g2="uni1ECF" k="102" />
+<hkern g1="Yacute" g2="uni1ED0" k="41" />
+<hkern g1="Yacute" g2="uni1ED1" k="102" />
+<hkern g1="Yacute" g2="uni1ED2" k="41" />
+<hkern g1="Yacute" g2="uni1ED4" k="41" />
+<hkern g1="Yacute" g2="uni1ED5" k="102" />
+<hkern g1="Yacute" g2="uni1ED6" k="41" />
+<hkern g1="Yacute" g2="uni1ED7" k="102" />
+<hkern g1="Yacute" g2="uni1ED8" k="41" />
+<hkern g1="Yacute" g2="uni1ED9" k="102" />
+<hkern g1="Yacute" g2="uni1EDA" k="41" />
+<hkern g1="Yacute" g2="uni1EDB" k="102" />
+<hkern g1="Yacute" g2="uni1EDC" k="41" />
+<hkern g1="Yacute" g2="uni1EDD" k="102" />
+<hkern g1="Yacute" g2="uni1EDE" k="41" />
+<hkern g1="Yacute" g2="uni1EDF" k="102" />
+<hkern g1="Yacute" g2="uni1EE0" k="41" />
+<hkern g1="Yacute" g2="uni1EE1" k="102" />
+<hkern g1="Yacute" g2="uni1EE2" k="41" />
+<hkern g1="Yacute" g2="uni1EE3" k="102" />
+<hkern g1="Yacute" g2="uni1EE5" k="61" />
+<hkern g1="Yacute" g2="uni1EE7" k="61" />
+<hkern g1="Yacute" g2="uni1EE9" k="61" />
+<hkern g1="Yacute" g2="uni1EEB" k="61" />
+<hkern g1="Yacute" g2="uni1EED" k="61" />
+<hkern g1="Yacute" g2="uni1EEF" k="61" />
+<hkern g1="Yacute" g2="uni1EF1" k="61" />
+<hkern g1="Thorn" g2="comma" k="266" />
+<hkern g1="Thorn" g2="period" k="266" />
+<hkern g1="Thorn" g2="A" k="102" />
+<hkern g1="Thorn" g2="X" k="41" />
+<hkern g1="Thorn" g2="Z" k="20" />
+<hkern g1="Thorn" g2="Agrave" k="102" />
+<hkern g1="Thorn" g2="Aacute" k="102" />
+<hkern g1="Thorn" g2="Acircumflex" k="102" />
+<hkern g1="Thorn" g2="Atilde" k="102" />
+<hkern g1="Thorn" g2="Adieresis" k="102" />
+<hkern g1="Thorn" g2="Aring" k="102" />
+<hkern g1="Thorn" g2="Amacron" k="102" />
+<hkern g1="Thorn" g2="Abreve" k="102" />
+<hkern g1="Thorn" g2="Aogonek" k="102" />
+<hkern g1="Thorn" g2="Zacute" k="20" />
+<hkern g1="Thorn" g2="Zdotaccent" k="20" />
+<hkern g1="Thorn" g2="Zcaron" k="20" />
+<hkern g1="Thorn" g2="Aringacute" k="102" />
+<hkern g1="Thorn" g2="quotesinglbase" k="266" />
+<hkern g1="Thorn" g2="quotedblbase" k="266" />
+<hkern g1="Thorn" g2="uni1E00" k="102" />
+<hkern g1="Thorn" g2="uni1EA0" k="102" />
+<hkern g1="Thorn" g2="uni1EA2" k="102" />
+<hkern g1="Thorn" g2="uni1EA4" k="102" />
+<hkern g1="Thorn" g2="uni1EA6" k="102" />
+<hkern g1="Thorn" g2="uni1EA8" k="102" />
+<hkern g1="Thorn" g2="uni1EAA" k="102" />
+<hkern g1="Thorn" g2="uni1EAC" k="102" />
+<hkern g1="Thorn" g2="uni1EAE" k="102" />
+<hkern g1="Thorn" g2="uni1EB0" k="102" />
+<hkern g1="Thorn" g2="uni1EB2" k="102" />
+<hkern g1="Thorn" g2="uni1EB4" k="102" />
+<hkern g1="Thorn" g2="uni1EB6" k="102" />
+<hkern g1="agrave" g2="quotedbl" k="20" />
+<hkern g1="agrave" g2="quotesingle" k="20" />
+<hkern g1="agrave" g2="quoteright" k="20" />
+<hkern g1="agrave" g2="quotedblright" k="20" />
+<hkern g1="aacute" g2="quotedbl" k="20" />
+<hkern g1="aacute" g2="quotesingle" k="20" />
+<hkern g1="aacute" g2="quoteright" k="20" />
+<hkern g1="aacute" g2="quotedblright" k="20" />
+<hkern g1="acircumflex" g2="quotedbl" k="20" />
+<hkern g1="acircumflex" g2="quotesingle" k="20" />
+<hkern g1="acircumflex" g2="quoteright" k="20" />
+<hkern g1="acircumflex" g2="quotedblright" k="20" />
+<hkern g1="atilde" g2="quotedbl" k="20" />
+<hkern g1="atilde" g2="quotesingle" k="20" />
+<hkern g1="atilde" g2="quoteright" k="20" />
+<hkern g1="atilde" g2="quotedblright" k="20" />
+<hkern g1="adieresis" g2="quotedbl" k="20" />
+<hkern g1="adieresis" g2="quotesingle" k="20" />
+<hkern g1="adieresis" g2="quoteright" k="20" />
+<hkern g1="adieresis" g2="quotedblright" k="20" />
+<hkern g1="aring" g2="quotedbl" k="20" />
+<hkern g1="aring" g2="quotesingle" k="20" />
+<hkern g1="aring" g2="quoteright" k="20" />
+<hkern g1="aring" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="quotedbl" k="20" />
+<hkern g1="egrave" g2="quotesingle" k="20" />
+<hkern g1="egrave" g2="v" k="41" />
+<hkern g1="egrave" g2="w" k="41" />
+<hkern g1="egrave" g2="x" k="41" />
+<hkern g1="egrave" g2="y" k="41" />
+<hkern g1="egrave" g2="z" k="20" />
+<hkern g1="egrave" g2="yacute" k="41" />
+<hkern g1="egrave" g2="wcircumflex" k="41" />
+<hkern g1="egrave" g2="zacute" k="20" />
+<hkern g1="egrave" g2="zdotaccent" k="20" />
+<hkern g1="egrave" g2="zcaron" k="20" />
+<hkern g1="egrave" g2="wgrave" k="41" />
+<hkern g1="egrave" g2="wacute" k="41" />
+<hkern g1="egrave" g2="quoteright" k="20" />
+<hkern g1="egrave" g2="quotedblright" k="20" />
+<hkern g1="egrave" g2="uni1EF5" k="41" />
+<hkern g1="eacute" g2="quotedbl" k="20" />
+<hkern g1="eacute" g2="quotesingle" k="20" />
+<hkern g1="eacute" g2="v" k="41" />
+<hkern g1="eacute" g2="w" k="41" />
+<hkern g1="eacute" g2="x" k="41" />
+<hkern g1="eacute" g2="y" k="41" />
+<hkern g1="eacute" g2="z" k="20" />
+<hkern g1="eacute" g2="yacute" k="41" />
+<hkern g1="eacute" g2="wcircumflex" k="41" />
+<hkern g1="eacute" g2="zacute" k="20" />
+<hkern g1="eacute" g2="zdotaccent" k="20" />
+<hkern g1="eacute" g2="zcaron" k="20" />
+<hkern g1="eacute" g2="wgrave" k="41" />
+<hkern g1="eacute" g2="wacute" k="41" />
+<hkern g1="eacute" g2="quoteright" k="20" />
+<hkern g1="eacute" g2="quotedblright" k="20" />
+<hkern g1="eacute" g2="uni1EF5" k="41" />
+<hkern g1="ecircumflex" g2="quotedbl" k="20" />
+<hkern g1="ecircumflex" g2="quotesingle" k="20" />
+<hkern g1="ecircumflex" g2="v" k="41" />
+<hkern g1="ecircumflex" g2="w" k="41" />
+<hkern g1="ecircumflex" g2="x" k="41" />
+<hkern g1="ecircumflex" g2="y" k="41" />
+<hkern g1="ecircumflex" g2="z" k="20" />
+<hkern g1="ecircumflex" g2="yacute" k="41" />
+<hkern g1="ecircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ecircumflex" g2="zacute" k="20" />
+<hkern g1="ecircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ecircumflex" g2="zcaron" k="20" />
+<hkern g1="ecircumflex" g2="wgrave" k="41" />
+<hkern g1="ecircumflex" g2="wacute" k="41" />
+<hkern g1="ecircumflex" g2="quoteright" k="20" />
+<hkern g1="ecircumflex" g2="quotedblright" k="20" />
+<hkern g1="ecircumflex" g2="uni1EF5" k="41" />
+<hkern g1="edieresis" g2="quotedbl" k="20" />
+<hkern g1="edieresis" g2="quotesingle" k="20" />
+<hkern g1="edieresis" g2="v" k="41" />
+<hkern g1="edieresis" g2="w" k="41" />
+<hkern g1="edieresis" g2="x" k="41" />
+<hkern g1="edieresis" g2="y" k="41" />
+<hkern g1="edieresis" g2="z" k="20" />
+<hkern g1="edieresis" g2="yacute" k="41" />
+<hkern g1="edieresis" g2="wcircumflex" k="41" />
+<hkern g1="edieresis" g2="zacute" k="20" />
+<hkern g1="edieresis" g2="zdotaccent" k="20" />
+<hkern g1="edieresis" g2="zcaron" k="20" />
+<hkern g1="edieresis" g2="wgrave" k="41" />
+<hkern g1="edieresis" g2="wacute" k="41" />
+<hkern g1="edieresis" g2="quoteright" k="20" />
+<hkern g1="edieresis" g2="quotedblright" k="20" />
+<hkern g1="edieresis" g2="uni1EF5" k="41" />
+<hkern g1="eth" g2="quotedbl" k="20" />
+<hkern g1="eth" g2="quotesingle" k="20" />
+<hkern g1="eth" g2="v" k="41" />
+<hkern g1="eth" g2="w" k="41" />
+<hkern g1="eth" g2="x" k="41" />
+<hkern g1="eth" g2="y" k="41" />
+<hkern g1="eth" g2="z" k="20" />
+<hkern g1="eth" g2="yacute" k="41" />
+<hkern g1="eth" g2="wcircumflex" k="41" />
+<hkern g1="eth" g2="zacute" k="20" />
+<hkern g1="eth" g2="zdotaccent" k="20" />
+<hkern g1="eth" g2="zcaron" k="20" />
+<hkern g1="eth" g2="wgrave" k="41" />
+<hkern g1="eth" g2="wacute" k="41" />
+<hkern g1="eth" g2="quoteright" k="20" />
+<hkern g1="eth" g2="quotedblright" k="20" />
+<hkern g1="eth" g2="uni1EF5" k="41" />
+<hkern g1="ograve" g2="quotedbl" k="20" />
+<hkern g1="ograve" g2="quotesingle" k="20" />
+<hkern g1="ograve" g2="v" k="41" />
+<hkern g1="ograve" g2="w" k="41" />
+<hkern g1="ograve" g2="x" k="41" />
+<hkern g1="ograve" g2="y" k="41" />
+<hkern g1="ograve" g2="z" k="20" />
+<hkern g1="ograve" g2="yacute" k="41" />
+<hkern g1="ograve" g2="wcircumflex" k="41" />
+<hkern g1="ograve" g2="zacute" k="20" />
+<hkern g1="ograve" g2="zdotaccent" k="20" />
+<hkern g1="ograve" g2="zcaron" k="20" />
+<hkern g1="ograve" g2="wgrave" k="41" />
+<hkern g1="ograve" g2="wacute" k="41" />
+<hkern g1="ograve" g2="quoteright" k="20" />
+<hkern g1="ograve" g2="quotedblright" k="20" />
+<hkern g1="ograve" g2="uni1EF5" k="41" />
+<hkern g1="oacute" g2="quotedbl" k="20" />
+<hkern g1="oacute" g2="quotesingle" k="20" />
+<hkern g1="oacute" g2="v" k="41" />
+<hkern g1="oacute" g2="w" k="41" />
+<hkern g1="oacute" g2="x" k="41" />
+<hkern g1="oacute" g2="y" k="41" />
+<hkern g1="oacute" g2="z" k="20" />
+<hkern g1="oacute" g2="yacute" k="41" />
+<hkern g1="oacute" g2="wcircumflex" k="41" />
+<hkern g1="oacute" g2="zacute" k="20" />
+<hkern g1="oacute" g2="zdotaccent" k="20" />
+<hkern g1="oacute" g2="zcaron" k="20" />
+<hkern g1="oacute" g2="wgrave" k="41" />
+<hkern g1="oacute" g2="wacute" k="41" />
+<hkern g1="oacute" g2="quoteright" k="20" />
+<hkern g1="oacute" g2="quotedblright" k="20" />
+<hkern g1="oacute" g2="uni1EF5" k="41" />
+<hkern g1="ocircumflex" g2="quotedbl" k="20" />
+<hkern g1="ocircumflex" g2="quotesingle" k="20" />
+<hkern g1="ocircumflex" g2="v" k="41" />
+<hkern g1="ocircumflex" g2="w" k="41" />
+<hkern g1="ocircumflex" g2="x" k="41" />
+<hkern g1="ocircumflex" g2="y" k="41" />
+<hkern g1="ocircumflex" g2="z" k="20" />
+<hkern g1="ocircumflex" g2="yacute" k="41" />
+<hkern g1="ocircumflex" g2="wcircumflex" k="41" />
+<hkern g1="ocircumflex" g2="zacute" k="20" />
+<hkern g1="ocircumflex" g2="zdotaccent" k="20" />
+<hkern g1="ocircumflex" g2="zcaron" k="20" />
+<hkern g1="ocircumflex" g2="wgrave" k="41" />
+<hkern g1="ocircumflex" g2="wacute" k="41" />
+<hkern g1="ocircumflex" g2="quoteright" k="20" />
+<hkern g1="ocircumflex" g2="quotedblright" k="20" />
+<hkern g1="ocircumflex" g2="uni1EF5" k="41" />
+<hkern g1="odieresis" g2="quotedbl" k="41" />
+<hkern g1="odieresis" g2="quotesingle" k="41" />
+<hkern g1="odieresis" g2="quoteright" k="41" />
+<hkern g1="odieresis" g2="quotedblright" k="41" />
+<hkern g1="oslash" g2="quotedbl" k="20" />
+<hkern g1="oslash" g2="quotesingle" k="20" />
+<hkern g1="oslash" g2="v" k="41" />
+<hkern g1="oslash" g2="w" k="41" />
+<hkern g1="oslash" g2="x" k="41" />
+<hkern g1="oslash" g2="y" k="41" />
+<hkern g1="oslash" g2="z" k="20" />
+<hkern g1="oslash" g2="yacute" k="41" />
+<hkern g1="oslash" g2="wcircumflex" k="41" />
+<hkern g1="oslash" g2="zacute" k="20" />
+<hkern g1="oslash" g2="zdotaccent" k="20" />
+<hkern g1="oslash" g2="zcaron" k="20" />
+<hkern g1="oslash" g2="wgrave" k="41" />
+<hkern g1="oslash" g2="wacute" k="41" />
+<hkern g1="oslash" g2="quoteright" k="20" />
+<hkern g1="oslash" g2="quotedblright" k="20" />
+<hkern g1="oslash" g2="uni1EF5" k="41" />
+<hkern g1="yacute" g2="quotedbl" k="-82" />
+<hkern g1="yacute" g2="quotesingle" k="-82" />
+<hkern g1="yacute" g2="comma" k="82" />
+<hkern g1="yacute" g2="period" k="82" />
+<hkern g1="yacute" g2="question" k="-41" />
+<hkern g1="yacute" g2="quoteright" k="-82" />
+<hkern g1="yacute" g2="quotesinglbase" k="82" />
+<hkern g1="yacute" g2="quotedblright" k="-82" />
+<hkern g1="yacute" g2="quotedblbase" k="82" />
+<hkern g1="thorn" g2="quotedbl" k="20" />
+<hkern g1="thorn" g2="quotesingle" k="20" />
+<hkern g1="thorn" g2="v" k="41" />
+<hkern g1="thorn" g2="w" k="41" />
+<hkern g1="thorn" g2="x" k="41" />
+<hkern g1="thorn" g2="y" k="41" />
+<hkern g1="thorn" g2="z" k="20" />
+<hkern g1="thorn" g2="yacute" k="41" />
+<hkern g1="thorn" g2="wcircumflex" k="41" />
+<hkern g1="thorn" g2="zacute" k="20" />
+<hkern g1="thorn" g2="zdotaccent" k="20" />
+<hkern g1="thorn" g2="zcaron" k="20" />
+<hkern g1="thorn" g2="wgrave" k="41" />
+<hkern g1="thorn" g2="wacute" k="41" />
+<hkern g1="thorn" g2="quoteright" k="20" />
+<hkern g1="thorn" g2="quotedblright" k="20" />
+<hkern g1="thorn" g2="uni1EF5" k="41" />
+<hkern g1="ydieresis" g2="quotedbl" k="-82" />
+<hkern g1="ydieresis" g2="quotesingle" k="-82" />
+<hkern g1="ydieresis" g2="comma" k="82" />
+<hkern g1="ydieresis" g2="period" k="82" />
+<hkern g1="ydieresis" g2="question" k="-41" />
+<hkern g1="ydieresis" g2="quoteright" k="-82" />
+<hkern g1="ydieresis" g2="quotesinglbase" k="82" />
+<hkern g1="ydieresis" g2="quotedblright" k="-82" />
+<hkern g1="ydieresis" g2="quotedblbase" k="82" />
+<hkern g1="Amacron" g2="quotedbl" k="143" />
+<hkern g1="Amacron" g2="quotesingle" k="143" />
+<hkern g1="Amacron" g2="C" k="41" />
+<hkern g1="Amacron" g2="G" k="41" />
+<hkern g1="Amacron" g2="J" k="-266" />
+<hkern g1="Amacron" g2="O" k="41" />
+<hkern g1="Amacron" g2="Q" k="41" />
+<hkern g1="Amacron" g2="T" k="143" />
+<hkern g1="Amacron" g2="V" k="82" />
+<hkern g1="Amacron" g2="W" k="82" />
+<hkern g1="Amacron" g2="Y" k="123" />
+<hkern g1="Amacron" g2="Ccedilla" k="41" />
+<hkern g1="Amacron" g2="Ograve" k="41" />
+<hkern g1="Amacron" g2="Oacute" k="41" />
+<hkern g1="Amacron" g2="Ocircumflex" k="41" />
+<hkern g1="Amacron" g2="Otilde" k="41" />
+<hkern g1="Amacron" g2="Odieresis" k="41" />
+<hkern g1="Amacron" g2="Oslash" k="41" />
+<hkern g1="Amacron" g2="Yacute" k="123" />
+<hkern g1="Amacron" g2="Cacute" k="41" />
+<hkern g1="Amacron" g2="Ccircumflex" k="41" />
+<hkern g1="Amacron" g2="Cdot" k="41" />
+<hkern g1="Amacron" g2="Ccaron" k="41" />
+<hkern g1="Amacron" g2="Gcircumflex" k="41" />
+<hkern g1="Amacron" g2="Gbreve" k="41" />
+<hkern g1="Amacron" g2="Gdot" k="41" />
+<hkern g1="Amacron" g2="Gcommaaccent" k="41" />
+<hkern g1="Amacron" g2="Omacron" k="41" />
+<hkern g1="Amacron" g2="Obreve" k="41" />
+<hkern g1="Amacron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Amacron" g2="OE" k="41" />
+<hkern g1="Amacron" g2="Tcommaaccent" k="143" />
+<hkern g1="Amacron" g2="Tcaron" k="143" />
+<hkern g1="Amacron" g2="Wcircumflex" k="82" />
+<hkern g1="Amacron" g2="Ycircumflex" k="123" />
+<hkern g1="Amacron" g2="Ydieresis" k="123" />
+<hkern g1="Amacron" g2="Oslashacute" k="41" />
+<hkern g1="Amacron" g2="Wgrave" k="82" />
+<hkern g1="Amacron" g2="Wacute" k="82" />
+<hkern g1="Amacron" g2="Wdieresis" k="82" />
+<hkern g1="Amacron" g2="Ygrave" k="123" />
+<hkern g1="Amacron" g2="quoteright" k="143" />
+<hkern g1="Amacron" g2="quotedblright" k="143" />
+<hkern g1="Amacron" g2="Ohorn" k="41" />
+<hkern g1="Amacron" g2="uni1ECC" k="41" />
+<hkern g1="Amacron" g2="uni1ECE" k="41" />
+<hkern g1="Amacron" g2="uni1ED0" k="41" />
+<hkern g1="Amacron" g2="uni1ED2" k="41" />
+<hkern g1="Amacron" g2="uni1ED4" k="41" />
+<hkern g1="Amacron" g2="uni1ED6" k="41" />
+<hkern g1="Amacron" g2="uni1ED8" k="41" />
+<hkern g1="Amacron" g2="uni1EDA" k="41" />
+<hkern g1="Amacron" g2="uni1EDC" k="41" />
+<hkern g1="Amacron" g2="uni1EDE" k="41" />
+<hkern g1="Amacron" g2="uni1EE0" k="41" />
+<hkern g1="Amacron" g2="uni1EE2" k="41" />
+<hkern g1="Amacron" g2="uni1EF4" k="123" />
+<hkern g1="Amacron" g2="uni1EF6" k="123" />
+<hkern g1="Amacron" g2="uni1EF8" k="123" />
+<hkern g1="Amacron" g2="Tcedilla" k="143" />
+<hkern g1="amacron" g2="quotedbl" k="20" />
+<hkern g1="amacron" g2="quotesingle" k="20" />
+<hkern g1="amacron" g2="quoteright" k="20" />
+<hkern g1="amacron" g2="quotedblright" k="20" />
+<hkern g1="Abreve" g2="quotedbl" k="143" />
+<hkern g1="Abreve" g2="quotesingle" k="143" />
+<hkern g1="Abreve" g2="C" k="41" />
+<hkern g1="Abreve" g2="G" k="41" />
+<hkern g1="Abreve" g2="J" k="-266" />
+<hkern g1="Abreve" g2="O" k="41" />
+<hkern g1="Abreve" g2="Q" k="41" />
+<hkern g1="Abreve" g2="T" k="143" />
+<hkern g1="Abreve" g2="V" k="82" />
+<hkern g1="Abreve" g2="W" k="82" />
+<hkern g1="Abreve" g2="Y" k="123" />
+<hkern g1="Abreve" g2="Ccedilla" k="41" />
+<hkern g1="Abreve" g2="Ograve" k="41" />
+<hkern g1="Abreve" g2="Oacute" k="41" />
+<hkern g1="Abreve" g2="Ocircumflex" k="41" />
+<hkern g1="Abreve" g2="Otilde" k="41" />
+<hkern g1="Abreve" g2="Odieresis" k="41" />
+<hkern g1="Abreve" g2="Oslash" k="41" />
+<hkern g1="Abreve" g2="Yacute" k="123" />
+<hkern g1="Abreve" g2="Cacute" k="41" />
+<hkern g1="Abreve" g2="Ccircumflex" k="41" />
+<hkern g1="Abreve" g2="Cdot" k="41" />
+<hkern g1="Abreve" g2="Ccaron" k="41" />
+<hkern g1="Abreve" g2="Gcircumflex" k="41" />
+<hkern g1="Abreve" g2="Gbreve" k="41" />
+<hkern g1="Abreve" g2="Gdot" k="41" />
+<hkern g1="Abreve" g2="Gcommaaccent" k="41" />
+<hkern g1="Abreve" g2="Omacron" k="41" />
+<hkern g1="Abreve" g2="Obreve" k="41" />
+<hkern g1="Abreve" g2="Ohungarumlaut" k="41" />
+<hkern g1="Abreve" g2="OE" k="41" />
+<hkern g1="Abreve" g2="Tcommaaccent" k="143" />
+<hkern g1="Abreve" g2="Tcaron" k="143" />
+<hkern g1="Abreve" g2="Wcircumflex" k="82" />
+<hkern g1="Abreve" g2="Ycircumflex" k="123" />
+<hkern g1="Abreve" g2="Ydieresis" k="123" />
+<hkern g1="Abreve" g2="Oslashacute" k="41" />
+<hkern g1="Abreve" g2="Wgrave" k="82" />
+<hkern g1="Abreve" g2="Wacute" k="82" />
+<hkern g1="Abreve" g2="Wdieresis" k="82" />
+<hkern g1="Abreve" g2="Ygrave" k="123" />
+<hkern g1="Abreve" g2="quoteright" k="143" />
+<hkern g1="Abreve" g2="quotedblright" k="143" />
+<hkern g1="Abreve" g2="Ohorn" k="41" />
+<hkern g1="Abreve" g2="uni1ECC" k="41" />
+<hkern g1="Abreve" g2="uni1ECE" k="41" />
+<hkern g1="Abreve" g2="uni1ED0" k="41" />
+<hkern g1="Abreve" g2="uni1ED2" k="41" />
+<hkern g1="Abreve" g2="uni1ED4" k="41" />
+<hkern g1="Abreve" g2="uni1ED6" k="41" />
+<hkern g1="Abreve" g2="uni1ED8" k="41" />
+<hkern g1="Abreve" g2="uni1EDA" k="41" />
+<hkern g1="Abreve" g2="uni1EDC" k="41" />
+<hkern g1="Abreve" g2="uni1EDE" k="41" />
+<hkern g1="Abreve" g2="uni1EE0" k="41" />
+<hkern g1="Abreve" g2="uni1EE2" k="41" />
+<hkern g1="Abreve" g2="uni1EF4" k="123" />
+<hkern g1="Abreve" g2="uni1EF6" k="123" />
+<hkern g1="Abreve" g2="uni1EF8" k="123" />
+<hkern g1="Abreve" g2="Tcedilla" k="143" />
+<hkern g1="abreve" g2="quotedbl" k="20" />
+<hkern g1="abreve" g2="quotesingle" k="20" />
+<hkern g1="abreve" g2="quoteright" k="20" />
+<hkern g1="abreve" g2="quotedblright" k="20" />
+<hkern g1="Aogonek" g2="quotedbl" k="143" />
+<hkern g1="Aogonek" g2="quotesingle" k="143" />
+<hkern g1="Aogonek" g2="C" k="41" />
+<hkern g1="Aogonek" g2="G" k="41" />
+<hkern g1="Aogonek" g2="J" k="-266" />
+<hkern g1="Aogonek" g2="O" k="41" />
+<hkern g1="Aogonek" g2="Q" k="41" />
+<hkern g1="Aogonek" g2="T" k="143" />
+<hkern g1="Aogonek" g2="V" k="82" />
+<hkern g1="Aogonek" g2="W" k="82" />
+<hkern g1="Aogonek" g2="Y" k="123" />
+<hkern g1="Aogonek" g2="Ccedilla" k="41" />
+<hkern g1="Aogonek" g2="Ograve" k="41" />
+<hkern g1="Aogonek" g2="Oacute" k="41" />
+<hkern g1="Aogonek" g2="Ocircumflex" k="41" />
+<hkern g1="Aogonek" g2="Otilde" k="41" />
+<hkern g1="Aogonek" g2="Odieresis" k="41" />
+<hkern g1="Aogonek" g2="Oslash" k="41" />
+<hkern g1="Aogonek" g2="Yacute" k="123" />
+<hkern g1="Aogonek" g2="Cacute" k="41" />
+<hkern g1="Aogonek" g2="Ccircumflex" k="41" />
+<hkern g1="Aogonek" g2="Cdot" k="41" />
+<hkern g1="Aogonek" g2="Ccaron" k="41" />
+<hkern g1="Aogonek" g2="Gcircumflex" k="41" />
+<hkern g1="Aogonek" g2="Gbreve" k="41" />
+<hkern g1="Aogonek" g2="Gdot" k="41" />
+<hkern g1="Aogonek" g2="Gcommaaccent" k="41" />
+<hkern g1="Aogonek" g2="Omacron" k="41" />
+<hkern g1="Aogonek" g2="Obreve" k="41" />
+<hkern g1="Aogonek" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aogonek" g2="OE" k="41" />
+<hkern g1="Aogonek" g2="Tcommaaccent" k="143" />
+<hkern g1="Aogonek" g2="Tcaron" k="143" />
+<hkern g1="Aogonek" g2="Wcircumflex" k="82" />
+<hkern g1="Aogonek" g2="Ycircumflex" k="123" />
+<hkern g1="Aogonek" g2="Ydieresis" k="123" />
+<hkern g1="Aogonek" g2="Oslashacute" k="41" />
+<hkern g1="Aogonek" g2="Wgrave" k="82" />
+<hkern g1="Aogonek" g2="Wacute" k="82" />
+<hkern g1="Aogonek" g2="Wdieresis" k="82" />
+<hkern g1="Aogonek" g2="Ygrave" k="123" />
+<hkern g1="Aogonek" g2="quoteright" k="143" />
+<hkern g1="Aogonek" g2="quotedblright" k="143" />
+<hkern g1="Aogonek" g2="Ohorn" k="41" />
+<hkern g1="Aogonek" g2="uni1ECC" k="41" />
+<hkern g1="Aogonek" g2="uni1ECE" k="41" />
+<hkern g1="Aogonek" g2="uni1ED0" k="41" />
+<hkern g1="Aogonek" g2="uni1ED2" k="41" />
+<hkern g1="Aogonek" g2="uni1ED4" k="41" />
+<hkern g1="Aogonek" g2="uni1ED6" k="41" />
+<hkern g1="Aogonek" g2="uni1ED8" k="41" />
+<hkern g1="Aogonek" g2="uni1EDA" k="41" />
+<hkern g1="Aogonek" g2="uni1EDC" k="41" />
+<hkern g1="Aogonek" g2="uni1EDE" k="41" />
+<hkern g1="Aogonek" g2="uni1EE0" k="41" />
+<hkern g1="Aogonek" g2="uni1EE2" k="41" />
+<hkern g1="Aogonek" g2="uni1EF4" k="123" />
+<hkern g1="Aogonek" g2="uni1EF6" k="123" />
+<hkern g1="Aogonek" g2="uni1EF8" k="123" />
+<hkern g1="Aogonek" g2="Tcedilla" k="143" />
+<hkern g1="aogonek" g2="quotedbl" k="20" />
+<hkern g1="aogonek" g2="quotesingle" k="20" />
+<hkern g1="aogonek" g2="quoteright" k="20" />
+<hkern g1="aogonek" g2="quotedblright" k="20" />
+<hkern g1="Cacute" g2="C" k="41" />
+<hkern g1="Cacute" g2="G" k="41" />
+<hkern g1="Cacute" g2="O" k="41" />
+<hkern g1="Cacute" g2="Q" k="41" />
+<hkern g1="Cacute" g2="Ccedilla" k="41" />
+<hkern g1="Cacute" g2="Ograve" k="41" />
+<hkern g1="Cacute" g2="Oacute" k="41" />
+<hkern g1="Cacute" g2="Ocircumflex" k="41" />
+<hkern g1="Cacute" g2="Otilde" k="41" />
+<hkern g1="Cacute" g2="Odieresis" k="41" />
+<hkern g1="Cacute" g2="Oslash" k="41" />
+<hkern g1="Cacute" g2="Cacute" k="41" />
+<hkern g1="Cacute" g2="Ccircumflex" k="41" />
+<hkern g1="Cacute" g2="Cdot" k="41" />
+<hkern g1="Cacute" g2="Ccaron" k="41" />
+<hkern g1="Cacute" g2="Gcircumflex" k="41" />
+<hkern g1="Cacute" g2="Gbreve" k="41" />
+<hkern g1="Cacute" g2="Gdot" k="41" />
+<hkern g1="Cacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Cacute" g2="Omacron" k="41" />
+<hkern g1="Cacute" g2="Obreve" k="41" />
+<hkern g1="Cacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cacute" g2="OE" k="41" />
+<hkern g1="Cacute" g2="Oslashacute" k="41" />
+<hkern g1="Cacute" g2="Ohorn" k="41" />
+<hkern g1="Cacute" g2="uni1ECC" k="41" />
+<hkern g1="Cacute" g2="uni1ECE" k="41" />
+<hkern g1="Cacute" g2="uni1ED0" k="41" />
+<hkern g1="Cacute" g2="uni1ED2" k="41" />
+<hkern g1="Cacute" g2="uni1ED4" k="41" />
+<hkern g1="Cacute" g2="uni1ED6" k="41" />
+<hkern g1="Cacute" g2="uni1ED8" k="41" />
+<hkern g1="Cacute" g2="uni1EDA" k="41" />
+<hkern g1="Cacute" g2="uni1EDC" k="41" />
+<hkern g1="Cacute" g2="uni1EDE" k="41" />
+<hkern g1="Cacute" g2="uni1EE0" k="41" />
+<hkern g1="Cacute" g2="uni1EE2" k="41" />
+<hkern g1="Ccircumflex" g2="C" k="41" />
+<hkern g1="Ccircumflex" g2="G" k="41" />
+<hkern g1="Ccircumflex" g2="O" k="41" />
+<hkern g1="Ccircumflex" g2="Q" k="41" />
+<hkern g1="Ccircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ccircumflex" g2="Ograve" k="41" />
+<hkern g1="Ccircumflex" g2="Oacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Otilde" k="41" />
+<hkern g1="Ccircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ccircumflex" g2="Oslash" k="41" />
+<hkern g1="Ccircumflex" g2="Cacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Cdot" k="41" />
+<hkern g1="Ccircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ccircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ccircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ccircumflex" g2="Gdot" k="41" />
+<hkern g1="Ccircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccircumflex" g2="Omacron" k="41" />
+<hkern g1="Ccircumflex" g2="Obreve" k="41" />
+<hkern g1="Ccircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccircumflex" g2="OE" k="41" />
+<hkern g1="Ccircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ccircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ccircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ccircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Cdot" g2="C" k="41" />
+<hkern g1="Cdot" g2="G" k="41" />
+<hkern g1="Cdot" g2="O" k="41" />
+<hkern g1="Cdot" g2="Q" k="41" />
+<hkern g1="Cdot" g2="Ccedilla" k="41" />
+<hkern g1="Cdot" g2="Ograve" k="41" />
+<hkern g1="Cdot" g2="Oacute" k="41" />
+<hkern g1="Cdot" g2="Ocircumflex" k="41" />
+<hkern g1="Cdot" g2="Otilde" k="41" />
+<hkern g1="Cdot" g2="Odieresis" k="41" />
+<hkern g1="Cdot" g2="Oslash" k="41" />
+<hkern g1="Cdot" g2="Cacute" k="41" />
+<hkern g1="Cdot" g2="Ccircumflex" k="41" />
+<hkern g1="Cdot" g2="Cdot" k="41" />
+<hkern g1="Cdot" g2="Ccaron" k="41" />
+<hkern g1="Cdot" g2="Gcircumflex" k="41" />
+<hkern g1="Cdot" g2="Gbreve" k="41" />
+<hkern g1="Cdot" g2="Gdot" k="41" />
+<hkern g1="Cdot" g2="Gcommaaccent" k="41" />
+<hkern g1="Cdot" g2="Omacron" k="41" />
+<hkern g1="Cdot" g2="Obreve" k="41" />
+<hkern g1="Cdot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Cdot" g2="OE" k="41" />
+<hkern g1="Cdot" g2="Oslashacute" k="41" />
+<hkern g1="Cdot" g2="Ohorn" k="41" />
+<hkern g1="Cdot" g2="uni1ECC" k="41" />
+<hkern g1="Cdot" g2="uni1ECE" k="41" />
+<hkern g1="Cdot" g2="uni1ED0" k="41" />
+<hkern g1="Cdot" g2="uni1ED2" k="41" />
+<hkern g1="Cdot" g2="uni1ED4" k="41" />
+<hkern g1="Cdot" g2="uni1ED6" k="41" />
+<hkern g1="Cdot" g2="uni1ED8" k="41" />
+<hkern g1="Cdot" g2="uni1EDA" k="41" />
+<hkern g1="Cdot" g2="uni1EDC" k="41" />
+<hkern g1="Cdot" g2="uni1EDE" k="41" />
+<hkern g1="Cdot" g2="uni1EE0" k="41" />
+<hkern g1="Cdot" g2="uni1EE2" k="41" />
+<hkern g1="Ccaron" g2="C" k="41" />
+<hkern g1="Ccaron" g2="G" k="41" />
+<hkern g1="Ccaron" g2="O" k="41" />
+<hkern g1="Ccaron" g2="Q" k="41" />
+<hkern g1="Ccaron" g2="Ccedilla" k="41" />
+<hkern g1="Ccaron" g2="Ograve" k="41" />
+<hkern g1="Ccaron" g2="Oacute" k="41" />
+<hkern g1="Ccaron" g2="Ocircumflex" k="41" />
+<hkern g1="Ccaron" g2="Otilde" k="41" />
+<hkern g1="Ccaron" g2="Odieresis" k="41" />
+<hkern g1="Ccaron" g2="Oslash" k="41" />
+<hkern g1="Ccaron" g2="Cacute" k="41" />
+<hkern g1="Ccaron" g2="Ccircumflex" k="41" />
+<hkern g1="Ccaron" g2="Cdot" k="41" />
+<hkern g1="Ccaron" g2="Ccaron" k="41" />
+<hkern g1="Ccaron" g2="Gcircumflex" k="41" />
+<hkern g1="Ccaron" g2="Gbreve" k="41" />
+<hkern g1="Ccaron" g2="Gdot" k="41" />
+<hkern g1="Ccaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Ccaron" g2="Omacron" k="41" />
+<hkern g1="Ccaron" g2="Obreve" k="41" />
+<hkern g1="Ccaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ccaron" g2="OE" k="41" />
+<hkern g1="Ccaron" g2="Oslashacute" k="41" />
+<hkern g1="Ccaron" g2="Ohorn" k="41" />
+<hkern g1="Ccaron" g2="uni1ECC" k="41" />
+<hkern g1="Ccaron" g2="uni1ECE" k="41" />
+<hkern g1="Ccaron" g2="uni1ED0" k="41" />
+<hkern g1="Ccaron" g2="uni1ED2" k="41" />
+<hkern g1="Ccaron" g2="uni1ED4" k="41" />
+<hkern g1="Ccaron" g2="uni1ED6" k="41" />
+<hkern g1="Ccaron" g2="uni1ED8" k="41" />
+<hkern g1="Ccaron" g2="uni1EDA" k="41" />
+<hkern g1="Ccaron" g2="uni1EDC" k="41" />
+<hkern g1="Ccaron" g2="uni1EDE" k="41" />
+<hkern g1="Ccaron" g2="uni1EE0" k="41" />
+<hkern g1="Ccaron" g2="uni1EE2" k="41" />
+<hkern g1="Dcaron" g2="comma" k="82" />
+<hkern g1="Dcaron" g2="period" k="82" />
+<hkern g1="Dcaron" g2="A" k="41" />
+<hkern g1="Dcaron" g2="T" k="61" />
+<hkern g1="Dcaron" g2="V" k="20" />
+<hkern g1="Dcaron" g2="W" k="20" />
+<hkern g1="Dcaron" g2="X" k="41" />
+<hkern g1="Dcaron" g2="Y" k="20" />
+<hkern g1="Dcaron" g2="Z" k="20" />
+<hkern g1="Dcaron" g2="Agrave" k="41" />
+<hkern g1="Dcaron" g2="Aacute" k="41" />
+<hkern g1="Dcaron" g2="Acircumflex" k="41" />
+<hkern g1="Dcaron" g2="Atilde" k="41" />
+<hkern g1="Dcaron" g2="Adieresis" k="41" />
+<hkern g1="Dcaron" g2="Aring" k="41" />
+<hkern g1="Dcaron" g2="Yacute" k="20" />
+<hkern g1="Dcaron" g2="Amacron" k="41" />
+<hkern g1="Dcaron" g2="Abreve" k="41" />
+<hkern g1="Dcaron" g2="Aogonek" k="41" />
+<hkern g1="Dcaron" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcaron" g2="Tcaron" k="61" />
+<hkern g1="Dcaron" g2="Wcircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ycircumflex" k="20" />
+<hkern g1="Dcaron" g2="Ydieresis" k="20" />
+<hkern g1="Dcaron" g2="Zacute" k="20" />
+<hkern g1="Dcaron" g2="Zdotaccent" k="20" />
+<hkern g1="Dcaron" g2="Zcaron" k="20" />
+<hkern g1="Dcaron" g2="Aringacute" k="41" />
+<hkern g1="Dcaron" g2="afii10054" k="20" />
+<hkern g1="Dcaron" g2="Wgrave" k="20" />
+<hkern g1="Dcaron" g2="Wacute" k="20" />
+<hkern g1="Dcaron" g2="Wdieresis" k="20" />
+<hkern g1="Dcaron" g2="Ygrave" k="20" />
+<hkern g1="Dcaron" g2="quotesinglbase" k="82" />
+<hkern g1="Dcaron" g2="quotedblbase" k="82" />
+<hkern g1="Dcaron" g2="uni1E00" k="41" />
+<hkern g1="Dcaron" g2="uni1EA0" k="41" />
+<hkern g1="Dcaron" g2="uni1EA2" k="41" />
+<hkern g1="Dcaron" g2="uni1EA4" k="41" />
+<hkern g1="Dcaron" g2="uni1EA6" k="41" />
+<hkern g1="Dcaron" g2="uni1EA8" k="41" />
+<hkern g1="Dcaron" g2="uni1EAA" k="41" />
+<hkern g1="Dcaron" g2="uni1EAC" k="41" />
+<hkern g1="Dcaron" g2="uni1EAE" k="41" />
+<hkern g1="Dcaron" g2="uni1EB0" k="41" />
+<hkern g1="Dcaron" g2="uni1EB2" k="41" />
+<hkern g1="Dcaron" g2="uni1EB4" k="41" />
+<hkern g1="Dcaron" g2="uni1EB6" k="41" />
+<hkern g1="Dcaron" g2="uni1EF4" k="20" />
+<hkern g1="Dcaron" g2="uni1EF6" k="20" />
+<hkern g1="Dcaron" g2="uni1EF8" k="20" />
+<hkern g1="Dcaron" g2="Tcedilla" k="61" />
+<hkern g1="dcaron" g2="quotedbl" k="-82" />
+<hkern g1="dcaron" g2="quotesingle" k="-82" />
+<hkern g1="dcaron" g2="parenright" k="-143" />
+<hkern g1="dcaron" g2="question" k="-164" />
+<hkern g1="dcaron" g2="bracketright" k="-143" />
+<hkern g1="dcaron" g2="b" k="-61" />
+<hkern g1="dcaron" g2="h" k="-61" />
+<hkern g1="dcaron" g2="k" k="-61" />
+<hkern g1="dcaron" g2="l" k="-61" />
+<hkern g1="dcaron" g2="braceright" k="-143" />
+<hkern g1="dcaron" g2="hcircumflex" k="-61" />
+<hkern g1="dcaron" g2="hbar" k="-123" />
+<hkern g1="dcaron" g2="quoteright" k="-82" />
+<hkern g1="dcaron" g2="quotedblright" k="-82" />
+<hkern g1="Dcroat" g2="comma" k="82" />
+<hkern g1="Dcroat" g2="period" k="82" />
+<hkern g1="Dcroat" g2="A" k="41" />
+<hkern g1="Dcroat" g2="T" k="61" />
+<hkern g1="Dcroat" g2="V" k="20" />
+<hkern g1="Dcroat" g2="W" k="20" />
+<hkern g1="Dcroat" g2="X" k="41" />
+<hkern g1="Dcroat" g2="Y" k="20" />
+<hkern g1="Dcroat" g2="Z" k="20" />
+<hkern g1="Dcroat" g2="Agrave" k="41" />
+<hkern g1="Dcroat" g2="Aacute" k="41" />
+<hkern g1="Dcroat" g2="Acircumflex" k="41" />
+<hkern g1="Dcroat" g2="Atilde" k="41" />
+<hkern g1="Dcroat" g2="Adieresis" k="41" />
+<hkern g1="Dcroat" g2="Aring" k="41" />
+<hkern g1="Dcroat" g2="Yacute" k="20" />
+<hkern g1="Dcroat" g2="Amacron" k="41" />
+<hkern g1="Dcroat" g2="Abreve" k="41" />
+<hkern g1="Dcroat" g2="Aogonek" k="41" />
+<hkern g1="Dcroat" g2="Tcommaaccent" k="61" />
+<hkern g1="Dcroat" g2="Tcaron" k="61" />
+<hkern g1="Dcroat" g2="Wcircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ycircumflex" k="20" />
+<hkern g1="Dcroat" g2="Ydieresis" k="20" />
+<hkern g1="Dcroat" g2="Zacute" k="20" />
+<hkern g1="Dcroat" g2="Zdotaccent" k="20" />
+<hkern g1="Dcroat" g2="Zcaron" k="20" />
+<hkern g1="Dcroat" g2="Aringacute" k="41" />
+<hkern g1="Dcroat" g2="afii10054" k="20" />
+<hkern g1="Dcroat" g2="Wgrave" k="20" />
+<hkern g1="Dcroat" g2="Wacute" k="20" />
+<hkern g1="Dcroat" g2="Wdieresis" k="20" />
+<hkern g1="Dcroat" g2="Ygrave" k="20" />
+<hkern g1="Dcroat" g2="quotesinglbase" k="82" />
+<hkern g1="Dcroat" g2="quotedblbase" k="82" />
+<hkern g1="Dcroat" g2="uni1E00" k="41" />
+<hkern g1="Dcroat" g2="uni1EA0" k="41" />
+<hkern g1="Dcroat" g2="uni1EA2" k="41" />
+<hkern g1="Dcroat" g2="uni1EA4" k="41" />
+<hkern g1="Dcroat" g2="uni1EA6" k="41" />
+<hkern g1="Dcroat" g2="uni1EA8" k="41" />
+<hkern g1="Dcroat" g2="uni1EAA" k="41" />
+<hkern g1="Dcroat" g2="uni1EAC" k="41" />
+<hkern g1="Dcroat" g2="uni1EAE" k="41" />
+<hkern g1="Dcroat" g2="uni1EB0" k="41" />
+<hkern g1="Dcroat" g2="uni1EB2" k="41" />
+<hkern g1="Dcroat" g2="uni1EB4" k="41" />
+<hkern g1="Dcroat" g2="uni1EB6" k="41" />
+<hkern g1="Dcroat" g2="uni1EF4" k="20" />
+<hkern g1="Dcroat" g2="uni1EF6" k="20" />
+<hkern g1="Dcroat" g2="uni1EF8" k="20" />
+<hkern g1="Dcroat" g2="Tcedilla" k="61" />
+<hkern g1="Emacron" g2="J" k="-123" />
+<hkern g1="emacron" g2="quotedbl" k="20" />
+<hkern g1="emacron" g2="quotesingle" k="20" />
+<hkern g1="emacron" g2="v" k="41" />
+<hkern g1="emacron" g2="w" k="41" />
+<hkern g1="emacron" g2="x" k="41" />
+<hkern g1="emacron" g2="y" k="41" />
+<hkern g1="emacron" g2="z" k="20" />
+<hkern g1="emacron" g2="yacute" k="41" />
+<hkern g1="emacron" g2="wcircumflex" k="41" />
+<hkern g1="emacron" g2="zacute" k="20" />
+<hkern g1="emacron" g2="zdotaccent" k="20" />
+<hkern g1="emacron" g2="zcaron" k="20" />
+<hkern g1="emacron" g2="wgrave" k="41" />
+<hkern g1="emacron" g2="wacute" k="41" />
+<hkern g1="emacron" g2="quoteright" k="20" />
+<hkern g1="emacron" g2="quotedblright" k="20" />
+<hkern g1="emacron" g2="uni1EF5" k="41" />
+<hkern g1="Ebreve" g2="J" k="-123" />
+<hkern g1="ebreve" g2="quotedbl" k="20" />
+<hkern g1="ebreve" g2="quotesingle" k="20" />
+<hkern g1="ebreve" g2="v" k="41" />
+<hkern g1="ebreve" g2="w" k="41" />
+<hkern g1="ebreve" g2="x" k="41" />
+<hkern g1="ebreve" g2="y" k="41" />
+<hkern g1="ebreve" g2="z" k="20" />
+<hkern g1="ebreve" g2="yacute" k="41" />
+<hkern g1="ebreve" g2="wcircumflex" k="41" />
+<hkern g1="ebreve" g2="zacute" k="20" />
+<hkern g1="ebreve" g2="zdotaccent" k="20" />
+<hkern g1="ebreve" g2="zcaron" k="20" />
+<hkern g1="ebreve" g2="wgrave" k="41" />
+<hkern g1="ebreve" g2="wacute" k="41" />
+<hkern g1="ebreve" g2="quoteright" k="20" />
+<hkern g1="ebreve" g2="quotedblright" k="20" />
+<hkern g1="ebreve" g2="uni1EF5" k="41" />
+<hkern g1="Edotaccent" g2="J" k="-123" />
+<hkern g1="edotaccent" g2="quotedbl" k="20" />
+<hkern g1="edotaccent" g2="quotesingle" k="20" />
+<hkern g1="edotaccent" g2="v" k="41" />
+<hkern g1="edotaccent" g2="w" k="41" />
+<hkern g1="edotaccent" g2="x" k="41" />
+<hkern g1="edotaccent" g2="y" k="41" />
+<hkern g1="edotaccent" g2="z" k="20" />
+<hkern g1="edotaccent" g2="yacute" k="41" />
+<hkern g1="edotaccent" g2="wcircumflex" k="41" />
+<hkern g1="edotaccent" g2="zacute" k="20" />
+<hkern g1="edotaccent" g2="zdotaccent" k="20" />
+<hkern g1="edotaccent" g2="zcaron" k="20" />
+<hkern g1="edotaccent" g2="wgrave" k="41" />
+<hkern g1="edotaccent" g2="wacute" k="41" />
+<hkern g1="edotaccent" g2="quoteright" k="20" />
+<hkern g1="edotaccent" g2="quotedblright" k="20" />
+<hkern g1="edotaccent" g2="uni1EF5" k="41" />
+<hkern g1="Eogonek" g2="J" k="-123" />
+<hkern g1="eogonek" g2="quotedbl" k="20" />
+<hkern g1="eogonek" g2="quotesingle" k="20" />
+<hkern g1="eogonek" g2="v" k="41" />
+<hkern g1="eogonek" g2="w" k="41" />
+<hkern g1="eogonek" g2="x" k="41" />
+<hkern g1="eogonek" g2="y" k="41" />
+<hkern g1="eogonek" g2="z" k="20" />
+<hkern g1="eogonek" g2="yacute" k="41" />
+<hkern g1="eogonek" g2="wcircumflex" k="41" />
+<hkern g1="eogonek" g2="zacute" k="20" />
+<hkern g1="eogonek" g2="zdotaccent" k="20" />
+<hkern g1="eogonek" g2="zcaron" k="20" />
+<hkern g1="eogonek" g2="wgrave" k="41" />
+<hkern g1="eogonek" g2="wacute" k="41" />
+<hkern g1="eogonek" g2="quoteright" k="20" />
+<hkern g1="eogonek" g2="quotedblright" k="20" />
+<hkern g1="eogonek" g2="uni1EF5" k="41" />
+<hkern g1="Ecaron" g2="J" k="-123" />
+<hkern g1="ecaron" g2="quotedbl" k="20" />
+<hkern g1="ecaron" g2="quotesingle" k="20" />
+<hkern g1="ecaron" g2="v" k="41" />
+<hkern g1="ecaron" g2="w" k="41" />
+<hkern g1="ecaron" g2="x" k="41" />
+<hkern g1="ecaron" g2="y" k="41" />
+<hkern g1="ecaron" g2="z" k="20" />
+<hkern g1="ecaron" g2="yacute" k="41" />
+<hkern g1="ecaron" g2="wcircumflex" k="41" />
+<hkern g1="ecaron" g2="zacute" k="20" />
+<hkern g1="ecaron" g2="zdotaccent" k="20" />
+<hkern g1="ecaron" g2="zcaron" k="20" />
+<hkern g1="ecaron" g2="wgrave" k="41" />
+<hkern g1="ecaron" g2="wacute" k="41" />
+<hkern g1="ecaron" g2="quoteright" k="20" />
+<hkern g1="ecaron" g2="quotedblright" k="20" />
+<hkern g1="ecaron" g2="uni1EF5" k="41" />
+<hkern g1="hcircumflex" g2="quotedbl" k="20" />
+<hkern g1="hcircumflex" g2="quotesingle" k="20" />
+<hkern g1="hcircumflex" g2="quoteright" k="20" />
+<hkern g1="hcircumflex" g2="quotedblright" k="20" />
+<hkern g1="Kcommaaccent" g2="C" k="41" />
+<hkern g1="Kcommaaccent" g2="G" k="41" />
+<hkern g1="Kcommaaccent" g2="O" k="41" />
+<hkern g1="Kcommaaccent" g2="Q" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Kcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Kcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Kcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Kcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Kcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Kcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Kcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Kcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Kcommaaccent" g2="OE" k="41" />
+<hkern g1="Kcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Kcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Kcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="kcommaaccent" g2="c" k="41" />
+<hkern g1="kcommaaccent" g2="d" k="41" />
+<hkern g1="kcommaaccent" g2="e" k="41" />
+<hkern g1="kcommaaccent" g2="o" k="41" />
+<hkern g1="kcommaaccent" g2="q" k="41" />
+<hkern g1="kcommaaccent" g2="agrave" k="41" />
+<hkern g1="kcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="kcommaaccent" g2="egrave" k="41" />
+<hkern g1="kcommaaccent" g2="eacute" k="41" />
+<hkern g1="kcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="edieresis" k="41" />
+<hkern g1="kcommaaccent" g2="ograve" k="41" />
+<hkern g1="kcommaaccent" g2="oacute" k="41" />
+<hkern g1="kcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="otilde" k="41" />
+<hkern g1="kcommaaccent" g2="odieresis" k="41" />
+<hkern g1="kcommaaccent" g2="oslash" k="41" />
+<hkern g1="kcommaaccent" g2="cacute" k="41" />
+<hkern g1="kcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="kcommaaccent" g2="cdot" k="41" />
+<hkern g1="kcommaaccent" g2="ccaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcaron" k="41" />
+<hkern g1="kcommaaccent" g2="dcroat" k="41" />
+<hkern g1="kcommaaccent" g2="emacron" k="41" />
+<hkern g1="kcommaaccent" g2="ebreve" k="41" />
+<hkern g1="kcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="kcommaaccent" g2="eogonek" k="41" />
+<hkern g1="kcommaaccent" g2="ecaron" k="41" />
+<hkern g1="kcommaaccent" g2="omacron" k="41" />
+<hkern g1="kcommaaccent" g2="obreve" k="41" />
+<hkern g1="kcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="kcommaaccent" g2="oe" k="41" />
+<hkern g1="kcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="kcommaaccent" g2="ohorn" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="kcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="kcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="kgreenlandic" g2="c" k="41" />
+<hkern g1="kgreenlandic" g2="d" k="41" />
+<hkern g1="kgreenlandic" g2="e" k="41" />
+<hkern g1="kgreenlandic" g2="o" k="41" />
+<hkern g1="kgreenlandic" g2="q" k="41" />
+<hkern g1="kgreenlandic" g2="agrave" k="41" />
+<hkern g1="kgreenlandic" g2="ccedilla" k="41" />
+<hkern g1="kgreenlandic" g2="egrave" k="41" />
+<hkern g1="kgreenlandic" g2="eacute" k="41" />
+<hkern g1="kgreenlandic" g2="ecircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="edieresis" k="41" />
+<hkern g1="kgreenlandic" g2="ograve" k="41" />
+<hkern g1="kgreenlandic" g2="oacute" k="41" />
+<hkern g1="kgreenlandic" g2="ocircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="otilde" k="41" />
+<hkern g1="kgreenlandic" g2="odieresis" k="41" />
+<hkern g1="kgreenlandic" g2="oslash" k="41" />
+<hkern g1="kgreenlandic" g2="cacute" k="41" />
+<hkern g1="kgreenlandic" g2="ccircumflex" k="41" />
+<hkern g1="kgreenlandic" g2="cdot" k="41" />
+<hkern g1="kgreenlandic" g2="ccaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcaron" k="41" />
+<hkern g1="kgreenlandic" g2="dcroat" k="41" />
+<hkern g1="kgreenlandic" g2="emacron" k="41" />
+<hkern g1="kgreenlandic" g2="ebreve" k="41" />
+<hkern g1="kgreenlandic" g2="edotaccent" k="41" />
+<hkern g1="kgreenlandic" g2="eogonek" k="41" />
+<hkern g1="kgreenlandic" g2="ecaron" k="41" />
+<hkern g1="kgreenlandic" g2="omacron" k="41" />
+<hkern g1="kgreenlandic" g2="obreve" k="41" />
+<hkern g1="kgreenlandic" g2="ohungarumlaut" k="41" />
+<hkern g1="kgreenlandic" g2="oe" k="41" />
+<hkern g1="kgreenlandic" g2="oslashacute" k="41" />
+<hkern g1="kgreenlandic" g2="ohorn" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EB9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EBF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC3" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EC7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ECF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED5" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED7" k="41" />
+<hkern g1="kgreenlandic" g2="uni1ED9" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDB" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDD" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EDF" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE1" k="41" />
+<hkern g1="kgreenlandic" g2="uni1EE3" k="41" />
+<hkern g1="Lacute" g2="quotedbl" k="164" />
+<hkern g1="Lacute" g2="quotesingle" k="164" />
+<hkern g1="Lacute" g2="C" k="41" />
+<hkern g1="Lacute" g2="G" k="41" />
+<hkern g1="Lacute" g2="O" k="41" />
+<hkern g1="Lacute" g2="Q" k="41" />
+<hkern g1="Lacute" g2="T" k="41" />
+<hkern g1="Lacute" g2="U" k="20" />
+<hkern g1="Lacute" g2="V" k="41" />
+<hkern g1="Lacute" g2="W" k="41" />
+<hkern g1="Lacute" g2="Y" k="61" />
+<hkern g1="Lacute" g2="Ccedilla" k="41" />
+<hkern g1="Lacute" g2="Ograve" k="41" />
+<hkern g1="Lacute" g2="Oacute" k="41" />
+<hkern g1="Lacute" g2="Ocircumflex" k="41" />
+<hkern g1="Lacute" g2="Otilde" k="41" />
+<hkern g1="Lacute" g2="Odieresis" k="41" />
+<hkern g1="Lacute" g2="Oslash" k="41" />
+<hkern g1="Lacute" g2="Ugrave" k="20" />
+<hkern g1="Lacute" g2="Uacute" k="20" />
+<hkern g1="Lacute" g2="Ucircumflex" k="20" />
+<hkern g1="Lacute" g2="Udieresis" k="20" />
+<hkern g1="Lacute" g2="Yacute" k="61" />
+<hkern g1="Lacute" g2="Cacute" k="41" />
+<hkern g1="Lacute" g2="Ccircumflex" k="41" />
+<hkern g1="Lacute" g2="Cdot" k="41" />
+<hkern g1="Lacute" g2="Ccaron" k="41" />
+<hkern g1="Lacute" g2="Gcircumflex" k="41" />
+<hkern g1="Lacute" g2="Gbreve" k="41" />
+<hkern g1="Lacute" g2="Gdot" k="41" />
+<hkern g1="Lacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Omacron" k="41" />
+<hkern g1="Lacute" g2="Obreve" k="41" />
+<hkern g1="Lacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lacute" g2="OE" k="41" />
+<hkern g1="Lacute" g2="Tcommaaccent" k="41" />
+<hkern g1="Lacute" g2="Tcaron" k="41" />
+<hkern g1="Lacute" g2="Utilde" k="20" />
+<hkern g1="Lacute" g2="Umacron" k="20" />
+<hkern g1="Lacute" g2="Ubreve" k="20" />
+<hkern g1="Lacute" g2="Uring" k="20" />
+<hkern g1="Lacute" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lacute" g2="Uogonek" k="20" />
+<hkern g1="Lacute" g2="Wcircumflex" k="41" />
+<hkern g1="Lacute" g2="Ycircumflex" k="61" />
+<hkern g1="Lacute" g2="Ydieresis" k="61" />
+<hkern g1="Lacute" g2="Oslashacute" k="41" />
+<hkern g1="Lacute" g2="Wgrave" k="41" />
+<hkern g1="Lacute" g2="Wacute" k="41" />
+<hkern g1="Lacute" g2="Wdieresis" k="41" />
+<hkern g1="Lacute" g2="Ygrave" k="61" />
+<hkern g1="Lacute" g2="quoteright" k="164" />
+<hkern g1="Lacute" g2="quotedblright" k="164" />
+<hkern g1="Lacute" g2="Ohorn" k="41" />
+<hkern g1="Lacute" g2="Uhorn" k="20" />
+<hkern g1="Lacute" g2="uni1ECC" k="41" />
+<hkern g1="Lacute" g2="uni1ECE" k="41" />
+<hkern g1="Lacute" g2="uni1ED0" k="41" />
+<hkern g1="Lacute" g2="uni1ED2" k="41" />
+<hkern g1="Lacute" g2="uni1ED4" k="41" />
+<hkern g1="Lacute" g2="uni1ED6" k="41" />
+<hkern g1="Lacute" g2="uni1ED8" k="41" />
+<hkern g1="Lacute" g2="uni1EDA" k="41" />
+<hkern g1="Lacute" g2="uni1EDC" k="41" />
+<hkern g1="Lacute" g2="uni1EDE" k="41" />
+<hkern g1="Lacute" g2="uni1EE0" k="41" />
+<hkern g1="Lacute" g2="uni1EE2" k="41" />
+<hkern g1="Lacute" g2="uni1EE4" k="20" />
+<hkern g1="Lacute" g2="uni1EE6" k="20" />
+<hkern g1="Lacute" g2="uni1EE8" k="20" />
+<hkern g1="Lacute" g2="uni1EEA" k="20" />
+<hkern g1="Lacute" g2="uni1EEC" k="20" />
+<hkern g1="Lacute" g2="uni1EEE" k="20" />
+<hkern g1="Lacute" g2="uni1EF0" k="20" />
+<hkern g1="Lacute" g2="uni1EF4" k="61" />
+<hkern g1="Lacute" g2="uni1EF6" k="61" />
+<hkern g1="Lacute" g2="uni1EF8" k="61" />
+<hkern g1="Lacute" g2="Tcedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="quotedbl" k="164" />
+<hkern g1="Lcommaaccent" g2="quotesingle" k="164" />
+<hkern g1="Lcommaaccent" g2="C" k="41" />
+<hkern g1="Lcommaaccent" g2="G" k="41" />
+<hkern g1="Lcommaaccent" g2="O" k="41" />
+<hkern g1="Lcommaaccent" g2="Q" k="41" />
+<hkern g1="Lcommaaccent" g2="T" k="41" />
+<hkern g1="Lcommaaccent" g2="U" k="20" />
+<hkern g1="Lcommaaccent" g2="V" k="41" />
+<hkern g1="Lcommaaccent" g2="W" k="41" />
+<hkern g1="Lcommaaccent" g2="Y" k="61" />
+<hkern g1="Lcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Lcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Lcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Lcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Lcommaaccent" g2="Ugrave" k="20" />
+<hkern g1="Lcommaaccent" g2="Uacute" k="20" />
+<hkern g1="Lcommaaccent" g2="Ucircumflex" k="20" />
+<hkern g1="Lcommaaccent" g2="Udieresis" k="20" />
+<hkern g1="Lcommaaccent" g2="Yacute" k="61" />
+<hkern g1="Lcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Lcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Lcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Lcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcommaaccent" g2="OE" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcommaaccent" g2="Tcaron" k="41" />
+<hkern g1="Lcommaaccent" g2="Utilde" k="20" />
+<hkern g1="Lcommaaccent" g2="Umacron" k="20" />
+<hkern g1="Lcommaaccent" g2="Ubreve" k="20" />
+<hkern g1="Lcommaaccent" g2="Uring" k="20" />
+<hkern g1="Lcommaaccent" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcommaaccent" g2="Uogonek" k="20" />
+<hkern g1="Lcommaaccent" g2="Wcircumflex" k="41" />
+<hkern g1="Lcommaaccent" g2="Ycircumflex" k="61" />
+<hkern g1="Lcommaaccent" g2="Ydieresis" k="61" />
+<hkern g1="Lcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wgrave" k="41" />
+<hkern g1="Lcommaaccent" g2="Wacute" k="41" />
+<hkern g1="Lcommaaccent" g2="Wdieresis" k="41" />
+<hkern g1="Lcommaaccent" g2="Ygrave" k="61" />
+<hkern g1="Lcommaaccent" g2="quoteright" k="164" />
+<hkern g1="Lcommaaccent" g2="quotedblright" k="164" />
+<hkern g1="Lcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Lcommaaccent" g2="Uhorn" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Lcommaaccent" g2="uni1EE4" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE6" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EE8" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEA" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEC" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EEE" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF0" k="20" />
+<hkern g1="Lcommaaccent" g2="uni1EF4" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF6" k="61" />
+<hkern g1="Lcommaaccent" g2="uni1EF8" k="61" />
+<hkern g1="Lcommaaccent" g2="Tcedilla" k="41" />
+<hkern g1="Lcaron" g2="quotedbl" k="164" />
+<hkern g1="Lcaron" g2="quotesingle" k="164" />
+<hkern g1="Lcaron" g2="C" k="41" />
+<hkern g1="Lcaron" g2="G" k="41" />
+<hkern g1="Lcaron" g2="O" k="41" />
+<hkern g1="Lcaron" g2="Q" k="41" />
+<hkern g1="Lcaron" g2="T" k="41" />
+<hkern g1="Lcaron" g2="U" k="20" />
+<hkern g1="Lcaron" g2="V" k="41" />
+<hkern g1="Lcaron" g2="W" k="41" />
+<hkern g1="Lcaron" g2="Y" k="61" />
+<hkern g1="Lcaron" g2="Ccedilla" k="41" />
+<hkern g1="Lcaron" g2="Ograve" k="41" />
+<hkern g1="Lcaron" g2="Oacute" k="41" />
+<hkern g1="Lcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Lcaron" g2="Otilde" k="41" />
+<hkern g1="Lcaron" g2="Odieresis" k="41" />
+<hkern g1="Lcaron" g2="Oslash" k="41" />
+<hkern g1="Lcaron" g2="Ugrave" k="20" />
+<hkern g1="Lcaron" g2="Uacute" k="20" />
+<hkern g1="Lcaron" g2="Ucircumflex" k="20" />
+<hkern g1="Lcaron" g2="Udieresis" k="20" />
+<hkern g1="Lcaron" g2="Yacute" k="61" />
+<hkern g1="Lcaron" g2="Cacute" k="41" />
+<hkern g1="Lcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Lcaron" g2="Cdot" k="41" />
+<hkern g1="Lcaron" g2="Ccaron" k="41" />
+<hkern g1="Lcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Gbreve" k="41" />
+<hkern g1="Lcaron" g2="Gdot" k="41" />
+<hkern g1="Lcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Omacron" k="41" />
+<hkern g1="Lcaron" g2="Obreve" k="41" />
+<hkern g1="Lcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lcaron" g2="OE" k="41" />
+<hkern g1="Lcaron" g2="Tcommaaccent" k="41" />
+<hkern g1="Lcaron" g2="Tcaron" k="41" />
+<hkern g1="Lcaron" g2="Utilde" k="20" />
+<hkern g1="Lcaron" g2="Umacron" k="20" />
+<hkern g1="Lcaron" g2="Ubreve" k="20" />
+<hkern g1="Lcaron" g2="Uring" k="20" />
+<hkern g1="Lcaron" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lcaron" g2="Uogonek" k="20" />
+<hkern g1="Lcaron" g2="Wcircumflex" k="41" />
+<hkern g1="Lcaron" g2="Ycircumflex" k="61" />
+<hkern g1="Lcaron" g2="Ydieresis" k="61" />
+<hkern g1="Lcaron" g2="Oslashacute" k="41" />
+<hkern g1="Lcaron" g2="Wgrave" k="41" />
+<hkern g1="Lcaron" g2="Wacute" k="41" />
+<hkern g1="Lcaron" g2="Wdieresis" k="41" />
+<hkern g1="Lcaron" g2="Ygrave" k="61" />
+<hkern g1="Lcaron" g2="quoteright" k="164" />
+<hkern g1="Lcaron" g2="quotedblright" k="164" />
+<hkern g1="Lcaron" g2="Ohorn" k="41" />
+<hkern g1="Lcaron" g2="Uhorn" k="20" />
+<hkern g1="Lcaron" g2="uni1ECC" k="41" />
+<hkern g1="Lcaron" g2="uni1ECE" k="41" />
+<hkern g1="Lcaron" g2="uni1ED0" k="41" />
+<hkern g1="Lcaron" g2="uni1ED2" k="41" />
+<hkern g1="Lcaron" g2="uni1ED4" k="41" />
+<hkern g1="Lcaron" g2="uni1ED6" k="41" />
+<hkern g1="Lcaron" g2="uni1ED8" k="41" />
+<hkern g1="Lcaron" g2="uni1EDA" k="41" />
+<hkern g1="Lcaron" g2="uni1EDC" k="41" />
+<hkern g1="Lcaron" g2="uni1EDE" k="41" />
+<hkern g1="Lcaron" g2="uni1EE0" k="41" />
+<hkern g1="Lcaron" g2="uni1EE2" k="41" />
+<hkern g1="Lcaron" g2="uni1EE4" k="20" />
+<hkern g1="Lcaron" g2="uni1EE6" k="20" />
+<hkern g1="Lcaron" g2="uni1EE8" k="20" />
+<hkern g1="Lcaron" g2="uni1EEA" k="20" />
+<hkern g1="Lcaron" g2="uni1EEC" k="20" />
+<hkern g1="Lcaron" g2="uni1EEE" k="20" />
+<hkern g1="Lcaron" g2="uni1EF0" k="20" />
+<hkern g1="Lcaron" g2="uni1EF4" k="61" />
+<hkern g1="Lcaron" g2="uni1EF6" k="61" />
+<hkern g1="Lcaron" g2="uni1EF8" k="61" />
+<hkern g1="Lcaron" g2="Tcedilla" k="41" />
+<hkern g1="lcaron" g2="quotedbl" k="-82" />
+<hkern g1="lcaron" g2="quotesingle" k="-82" />
+<hkern g1="lcaron" g2="parenright" k="-143" />
+<hkern g1="lcaron" g2="question" k="-143" />
+<hkern g1="lcaron" g2="bracketright" k="-143" />
+<hkern g1="lcaron" g2="b" k="-61" />
+<hkern g1="lcaron" g2="h" k="-61" />
+<hkern g1="lcaron" g2="k" k="-61" />
+<hkern g1="lcaron" g2="l" k="-61" />
+<hkern g1="lcaron" g2="braceright" k="-143" />
+<hkern g1="lcaron" g2="hcircumflex" k="-61" />
+<hkern g1="lcaron" g2="hbar" k="-143" />
+<hkern g1="lcaron" g2="quoteright" k="-82" />
+<hkern g1="lcaron" g2="quotedblright" k="-82" />
+<hkern g1="Ldot" g2="quotedbl" k="164" />
+<hkern g1="Ldot" g2="quotesingle" k="164" />
+<hkern g1="Ldot" g2="C" k="41" />
+<hkern g1="Ldot" g2="G" k="41" />
+<hkern g1="Ldot" g2="O" k="41" />
+<hkern g1="Ldot" g2="Q" k="41" />
+<hkern g1="Ldot" g2="T" k="41" />
+<hkern g1="Ldot" g2="U" k="20" />
+<hkern g1="Ldot" g2="V" k="41" />
+<hkern g1="Ldot" g2="W" k="41" />
+<hkern g1="Ldot" g2="Y" k="61" />
+<hkern g1="Ldot" g2="Ccedilla" k="41" />
+<hkern g1="Ldot" g2="Ograve" k="41" />
+<hkern g1="Ldot" g2="Oacute" k="41" />
+<hkern g1="Ldot" g2="Ocircumflex" k="41" />
+<hkern g1="Ldot" g2="Otilde" k="41" />
+<hkern g1="Ldot" g2="Odieresis" k="41" />
+<hkern g1="Ldot" g2="Oslash" k="41" />
+<hkern g1="Ldot" g2="Ugrave" k="20" />
+<hkern g1="Ldot" g2="Uacute" k="20" />
+<hkern g1="Ldot" g2="Ucircumflex" k="20" />
+<hkern g1="Ldot" g2="Udieresis" k="20" />
+<hkern g1="Ldot" g2="Yacute" k="61" />
+<hkern g1="Ldot" g2="Cacute" k="41" />
+<hkern g1="Ldot" g2="Ccircumflex" k="41" />
+<hkern g1="Ldot" g2="Cdot" k="41" />
+<hkern g1="Ldot" g2="Ccaron" k="41" />
+<hkern g1="Ldot" g2="Gcircumflex" k="41" />
+<hkern g1="Ldot" g2="Gbreve" k="41" />
+<hkern g1="Ldot" g2="Gdot" k="41" />
+<hkern g1="Ldot" g2="Gcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Omacron" k="41" />
+<hkern g1="Ldot" g2="Obreve" k="41" />
+<hkern g1="Ldot" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ldot" g2="OE" k="41" />
+<hkern g1="Ldot" g2="Tcommaaccent" k="41" />
+<hkern g1="Ldot" g2="Tcaron" k="41" />
+<hkern g1="Ldot" g2="Utilde" k="20" />
+<hkern g1="Ldot" g2="Umacron" k="20" />
+<hkern g1="Ldot" g2="Ubreve" k="20" />
+<hkern g1="Ldot" g2="Uring" k="20" />
+<hkern g1="Ldot" g2="Uhungarumlaut" k="20" />
+<hkern g1="Ldot" g2="Uogonek" k="20" />
+<hkern g1="Ldot" g2="Wcircumflex" k="41" />
+<hkern g1="Ldot" g2="Ycircumflex" k="61" />
+<hkern g1="Ldot" g2="Ydieresis" k="61" />
+<hkern g1="Ldot" g2="Oslashacute" k="41" />
+<hkern g1="Ldot" g2="Wgrave" k="41" />
+<hkern g1="Ldot" g2="Wacute" k="41" />
+<hkern g1="Ldot" g2="Wdieresis" k="41" />
+<hkern g1="Ldot" g2="Ygrave" k="61" />
+<hkern g1="Ldot" g2="quoteright" k="164" />
+<hkern g1="Ldot" g2="quotedblright" k="164" />
+<hkern g1="Ldot" g2="Ohorn" k="41" />
+<hkern g1="Ldot" g2="Uhorn" k="20" />
+<hkern g1="Ldot" g2="uni1ECC" k="41" />
+<hkern g1="Ldot" g2="uni1ECE" k="41" />
+<hkern g1="Ldot" g2="uni1ED0" k="41" />
+<hkern g1="Ldot" g2="uni1ED2" k="41" />
+<hkern g1="Ldot" g2="uni1ED4" k="41" />
+<hkern g1="Ldot" g2="uni1ED6" k="41" />
+<hkern g1="Ldot" g2="uni1ED8" k="41" />
+<hkern g1="Ldot" g2="uni1EDA" k="41" />
+<hkern g1="Ldot" g2="uni1EDC" k="41" />
+<hkern g1="Ldot" g2="uni1EDE" k="41" />
+<hkern g1="Ldot" g2="uni1EE0" k="41" />
+<hkern g1="Ldot" g2="uni1EE2" k="41" />
+<hkern g1="Ldot" g2="uni1EE4" k="20" />
+<hkern g1="Ldot" g2="uni1EE6" k="20" />
+<hkern g1="Ldot" g2="uni1EE8" k="20" />
+<hkern g1="Ldot" g2="uni1EEA" k="20" />
+<hkern g1="Ldot" g2="uni1EEC" k="20" />
+<hkern g1="Ldot" g2="uni1EEE" k="20" />
+<hkern g1="Ldot" g2="uni1EF0" k="20" />
+<hkern g1="Ldot" g2="uni1EF4" k="61" />
+<hkern g1="Ldot" g2="uni1EF6" k="61" />
+<hkern g1="Ldot" g2="uni1EF8" k="61" />
+<hkern g1="Ldot" g2="Tcedilla" k="41" />
+<hkern g1="Lslash" g2="quotedbl" k="164" />
+<hkern g1="Lslash" g2="quotesingle" k="164" />
+<hkern g1="Lslash" g2="C" k="41" />
+<hkern g1="Lslash" g2="G" k="41" />
+<hkern g1="Lslash" g2="O" k="41" />
+<hkern g1="Lslash" g2="Q" k="41" />
+<hkern g1="Lslash" g2="T" k="41" />
+<hkern g1="Lslash" g2="U" k="20" />
+<hkern g1="Lslash" g2="V" k="41" />
+<hkern g1="Lslash" g2="W" k="41" />
+<hkern g1="Lslash" g2="Y" k="61" />
+<hkern g1="Lslash" g2="Ccedilla" k="41" />
+<hkern g1="Lslash" g2="Ograve" k="41" />
+<hkern g1="Lslash" g2="Oacute" k="41" />
+<hkern g1="Lslash" g2="Ocircumflex" k="41" />
+<hkern g1="Lslash" g2="Otilde" k="41" />
+<hkern g1="Lslash" g2="Odieresis" k="41" />
+<hkern g1="Lslash" g2="Oslash" k="41" />
+<hkern g1="Lslash" g2="Ugrave" k="20" />
+<hkern g1="Lslash" g2="Uacute" k="20" />
+<hkern g1="Lslash" g2="Ucircumflex" k="20" />
+<hkern g1="Lslash" g2="Udieresis" k="20" />
+<hkern g1="Lslash" g2="Yacute" k="61" />
+<hkern g1="Lslash" g2="Cacute" k="41" />
+<hkern g1="Lslash" g2="Ccircumflex" k="41" />
+<hkern g1="Lslash" g2="Cdot" k="41" />
+<hkern g1="Lslash" g2="Ccaron" k="41" />
+<hkern g1="Lslash" g2="Gcircumflex" k="41" />
+<hkern g1="Lslash" g2="Gbreve" k="41" />
+<hkern g1="Lslash" g2="Gdot" k="41" />
+<hkern g1="Lslash" g2="Gcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Omacron" k="41" />
+<hkern g1="Lslash" g2="Obreve" k="41" />
+<hkern g1="Lslash" g2="Ohungarumlaut" k="41" />
+<hkern g1="Lslash" g2="OE" k="41" />
+<hkern g1="Lslash" g2="Tcommaaccent" k="41" />
+<hkern g1="Lslash" g2="Tcaron" k="41" />
+<hkern g1="Lslash" g2="Utilde" k="20" />
+<hkern g1="Lslash" g2="Umacron" k="20" />
+<hkern g1="Lslash" g2="Ubreve" k="20" />
+<hkern g1="Lslash" g2="Uring" k="20" />
+<hkern g1="Lslash" g2="Uhungarumlaut" k="20" />
+<hkern g1="Lslash" g2="Uogonek" k="20" />
+<hkern g1="Lslash" g2="Wcircumflex" k="41" />
+<hkern g1="Lslash" g2="Ycircumflex" k="61" />
+<hkern g1="Lslash" g2="Ydieresis" k="61" />
+<hkern g1="Lslash" g2="Oslashacute" k="41" />
+<hkern g1="Lslash" g2="Wgrave" k="41" />
+<hkern g1="Lslash" g2="Wacute" k="41" />
+<hkern g1="Lslash" g2="Wdieresis" k="41" />
+<hkern g1="Lslash" g2="Ygrave" k="61" />
+<hkern g1="Lslash" g2="quoteright" k="164" />
+<hkern g1="Lslash" g2="quotedblright" k="164" />
+<hkern g1="Lslash" g2="Ohorn" k="41" />
+<hkern g1="Lslash" g2="Uhorn" k="20" />
+<hkern g1="Lslash" g2="uni1ECC" k="41" />
+<hkern g1="Lslash" g2="uni1ECE" k="41" />
+<hkern g1="Lslash" g2="uni1ED0" k="41" />
+<hkern g1="Lslash" g2="uni1ED2" k="41" />
+<hkern g1="Lslash" g2="uni1ED4" k="41" />
+<hkern g1="Lslash" g2="uni1ED6" k="41" />
+<hkern g1="Lslash" g2="uni1ED8" k="41" />
+<hkern g1="Lslash" g2="uni1EDA" k="41" />
+<hkern g1="Lslash" g2="uni1EDC" k="41" />
+<hkern g1="Lslash" g2="uni1EDE" k="41" />
+<hkern g1="Lslash" g2="uni1EE0" k="41" />
+<hkern g1="Lslash" g2="uni1EE2" k="41" />
+<hkern g1="Lslash" g2="uni1EE4" k="20" />
+<hkern g1="Lslash" g2="uni1EE6" k="20" />
+<hkern g1="Lslash" g2="uni1EE8" k="20" />
+<hkern g1="Lslash" g2="uni1EEA" k="20" />
+<hkern g1="Lslash" g2="uni1EEC" k="20" />
+<hkern g1="Lslash" g2="uni1EEE" k="20" />
+<hkern g1="Lslash" g2="uni1EF0" k="20" />
+<hkern g1="Lslash" g2="uni1EF4" k="61" />
+<hkern g1="Lslash" g2="uni1EF6" k="61" />
+<hkern g1="Lslash" g2="uni1EF8" k="61" />
+<hkern g1="Lslash" g2="Tcedilla" k="41" />
+<hkern g1="ncommaaccent" g2="quotedbl" k="20" />
+<hkern g1="ncommaaccent" g2="quotesingle" k="20" />
+<hkern g1="ncommaaccent" g2="quoteright" k="20" />
+<hkern g1="ncommaaccent" g2="quotedblright" k="20" />
+<hkern g1="Omacron" g2="comma" k="82" />
+<hkern g1="Omacron" g2="period" k="82" />
+<hkern g1="Omacron" g2="A" k="41" />
+<hkern g1="Omacron" g2="T" k="61" />
+<hkern g1="Omacron" g2="V" k="20" />
+<hkern g1="Omacron" g2="W" k="20" />
+<hkern g1="Omacron" g2="X" k="41" />
+<hkern g1="Omacron" g2="Y" k="20" />
+<hkern g1="Omacron" g2="Z" k="20" />
+<hkern g1="Omacron" g2="Agrave" k="41" />
+<hkern g1="Omacron" g2="Aacute" k="41" />
+<hkern g1="Omacron" g2="Acircumflex" k="41" />
+<hkern g1="Omacron" g2="Atilde" k="41" />
+<hkern g1="Omacron" g2="Adieresis" k="41" />
+<hkern g1="Omacron" g2="Aring" k="41" />
+<hkern g1="Omacron" g2="Yacute" k="20" />
+<hkern g1="Omacron" g2="Amacron" k="41" />
+<hkern g1="Omacron" g2="Abreve" k="41" />
+<hkern g1="Omacron" g2="Aogonek" k="41" />
+<hkern g1="Omacron" g2="Tcommaaccent" k="61" />
+<hkern g1="Omacron" g2="Tcaron" k="61" />
+<hkern g1="Omacron" g2="Wcircumflex" k="20" />
+<hkern g1="Omacron" g2="Ycircumflex" k="20" />
+<hkern g1="Omacron" g2="Ydieresis" k="20" />
+<hkern g1="Omacron" g2="Zacute" k="20" />
+<hkern g1="Omacron" g2="Zdotaccent" k="20" />
+<hkern g1="Omacron" g2="Zcaron" k="20" />
+<hkern g1="Omacron" g2="Aringacute" k="41" />
+<hkern g1="Omacron" g2="afii10054" k="20" />
+<hkern g1="Omacron" g2="Wgrave" k="20" />
+<hkern g1="Omacron" g2="Wacute" k="20" />
+<hkern g1="Omacron" g2="Wdieresis" k="20" />
+<hkern g1="Omacron" g2="Ygrave" k="20" />
+<hkern g1="Omacron" g2="quotesinglbase" k="82" />
+<hkern g1="Omacron" g2="quotedblbase" k="82" />
+<hkern g1="Omacron" g2="uni1E00" k="41" />
+<hkern g1="Omacron" g2="uni1EA0" k="41" />
+<hkern g1="Omacron" g2="uni1EA2" k="41" />
+<hkern g1="Omacron" g2="uni1EA4" k="41" />
+<hkern g1="Omacron" g2="uni1EA6" k="41" />
+<hkern g1="Omacron" g2="uni1EA8" k="41" />
+<hkern g1="Omacron" g2="uni1EAA" k="41" />
+<hkern g1="Omacron" g2="uni1EAC" k="41" />
+<hkern g1="Omacron" g2="uni1EAE" k="41" />
+<hkern g1="Omacron" g2="uni1EB0" k="41" />
+<hkern g1="Omacron" g2="uni1EB2" k="41" />
+<hkern g1="Omacron" g2="uni1EB4" k="41" />
+<hkern g1="Omacron" g2="uni1EB6" k="41" />
+<hkern g1="Omacron" g2="uni1EF4" k="20" />
+<hkern g1="Omacron" g2="uni1EF6" k="20" />
+<hkern g1="Omacron" g2="uni1EF8" k="20" />
+<hkern g1="Omacron" g2="Tcedilla" k="61" />
+<hkern g1="Obreve" g2="comma" k="82" />
+<hkern g1="Obreve" g2="period" k="82" />
+<hkern g1="Obreve" g2="A" k="41" />
+<hkern g1="Obreve" g2="T" k="61" />
+<hkern g1="Obreve" g2="V" k="20" />
+<hkern g1="Obreve" g2="W" k="20" />
+<hkern g1="Obreve" g2="X" k="41" />
+<hkern g1="Obreve" g2="Y" k="20" />
+<hkern g1="Obreve" g2="Z" k="20" />
+<hkern g1="Obreve" g2="Agrave" k="41" />
+<hkern g1="Obreve" g2="Aacute" k="41" />
+<hkern g1="Obreve" g2="Acircumflex" k="41" />
+<hkern g1="Obreve" g2="Atilde" k="41" />
+<hkern g1="Obreve" g2="Adieresis" k="41" />
+<hkern g1="Obreve" g2="Aring" k="41" />
+<hkern g1="Obreve" g2="Yacute" k="20" />
+<hkern g1="Obreve" g2="Amacron" k="41" />
+<hkern g1="Obreve" g2="Abreve" k="41" />
+<hkern g1="Obreve" g2="Aogonek" k="41" />
+<hkern g1="Obreve" g2="Tcommaaccent" k="61" />
+<hkern g1="Obreve" g2="Tcaron" k="61" />
+<hkern g1="Obreve" g2="Wcircumflex" k="20" />
+<hkern g1="Obreve" g2="Ycircumflex" k="20" />
+<hkern g1="Obreve" g2="Ydieresis" k="20" />
+<hkern g1="Obreve" g2="Zacute" k="20" />
+<hkern g1="Obreve" g2="Zdotaccent" k="20" />
+<hkern g1="Obreve" g2="Zcaron" k="20" />
+<hkern g1="Obreve" g2="Aringacute" k="41" />
+<hkern g1="Obreve" g2="afii10054" k="20" />
+<hkern g1="Obreve" g2="Wgrave" k="20" />
+<hkern g1="Obreve" g2="Wacute" k="20" />
+<hkern g1="Obreve" g2="Wdieresis" k="20" />
+<hkern g1="Obreve" g2="Ygrave" k="20" />
+<hkern g1="Obreve" g2="quotesinglbase" k="82" />
+<hkern g1="Obreve" g2="quotedblbase" k="82" />
+<hkern g1="Obreve" g2="uni1E00" k="41" />
+<hkern g1="Obreve" g2="uni1EA0" k="41" />
+<hkern g1="Obreve" g2="uni1EA2" k="41" />
+<hkern g1="Obreve" g2="uni1EA4" k="41" />
+<hkern g1="Obreve" g2="uni1EA6" k="41" />
+<hkern g1="Obreve" g2="uni1EA8" k="41" />
+<hkern g1="Obreve" g2="uni1EAA" k="41" />
+<hkern g1="Obreve" g2="uni1EAC" k="41" />
+<hkern g1="Obreve" g2="uni1EAE" k="41" />
+<hkern g1="Obreve" g2="uni1EB0" k="41" />
+<hkern g1="Obreve" g2="uni1EB2" k="41" />
+<hkern g1="Obreve" g2="uni1EB4" k="41" />
+<hkern g1="Obreve" g2="uni1EB6" k="41" />
+<hkern g1="Obreve" g2="uni1EF4" k="20" />
+<hkern g1="Obreve" g2="uni1EF6" k="20" />
+<hkern g1="Obreve" g2="uni1EF8" k="20" />
+<hkern g1="Obreve" g2="Tcedilla" k="61" />
+<hkern g1="Ohungarumlaut" g2="comma" k="82" />
+<hkern g1="Ohungarumlaut" g2="period" k="82" />
+<hkern g1="Ohungarumlaut" g2="A" k="41" />
+<hkern g1="Ohungarumlaut" g2="T" k="61" />
+<hkern g1="Ohungarumlaut" g2="V" k="20" />
+<hkern g1="Ohungarumlaut" g2="W" k="20" />
+<hkern g1="Ohungarumlaut" g2="X" k="41" />
+<hkern g1="Ohungarumlaut" g2="Y" k="20" />
+<hkern g1="Ohungarumlaut" g2="Z" k="20" />
+<hkern g1="Ohungarumlaut" g2="Agrave" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="Acircumflex" k="41" />
+<hkern g1="Ohungarumlaut" g2="Atilde" k="41" />
+<hkern g1="Ohungarumlaut" g2="Adieresis" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aring" k="41" />
+<hkern g1="Ohungarumlaut" g2="Yacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Amacron" k="41" />
+<hkern g1="Ohungarumlaut" g2="Abreve" k="41" />
+<hkern g1="Ohungarumlaut" g2="Aogonek" k="41" />
+<hkern g1="Ohungarumlaut" g2="Tcommaaccent" k="61" />
+<hkern g1="Ohungarumlaut" g2="Tcaron" k="61" />
+<hkern g1="Ohungarumlaut" g2="Wcircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ycircumflex" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ydieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zdotaccent" k="20" />
+<hkern g1="Ohungarumlaut" g2="Zcaron" k="20" />
+<hkern g1="Ohungarumlaut" g2="Aringacute" k="41" />
+<hkern g1="Ohungarumlaut" g2="afii10054" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wgrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wacute" k="20" />
+<hkern g1="Ohungarumlaut" g2="Wdieresis" k="20" />
+<hkern g1="Ohungarumlaut" g2="Ygrave" k="20" />
+<hkern g1="Ohungarumlaut" g2="quotesinglbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="quotedblbase" k="82" />
+<hkern g1="Ohungarumlaut" g2="uni1E00" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EA8" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAA" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAC" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EAE" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB0" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB2" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB4" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EB6" k="41" />
+<hkern g1="Ohungarumlaut" g2="uni1EF4" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF6" k="20" />
+<hkern g1="Ohungarumlaut" g2="uni1EF8" k="20" />
+<hkern g1="Ohungarumlaut" g2="Tcedilla" k="61" />
+<hkern g1="OE" g2="J" k="-123" />
+<hkern g1="racute" g2="quotedbl" k="-82" />
+<hkern g1="racute" g2="quotesingle" k="-82" />
+<hkern g1="racute" g2="a" k="41" />
+<hkern g1="racute" g2="c" k="41" />
+<hkern g1="racute" g2="d" k="41" />
+<hkern g1="racute" g2="e" k="41" />
+<hkern g1="racute" g2="g" k="20" />
+<hkern g1="racute" g2="o" k="41" />
+<hkern g1="racute" g2="q" k="41" />
+<hkern g1="racute" g2="agrave" k="41" />
+<hkern g1="racute" g2="aacute" k="41" />
+<hkern g1="racute" g2="acircumflex" k="41" />
+<hkern g1="racute" g2="atilde" k="41" />
+<hkern g1="racute" g2="adieresis" k="41" />
+<hkern g1="racute" g2="aring" k="41" />
+<hkern g1="racute" g2="ae" k="41" />
+<hkern g1="racute" g2="ccedilla" k="41" />
+<hkern g1="racute" g2="egrave" k="41" />
+<hkern g1="racute" g2="eacute" k="41" />
+<hkern g1="racute" g2="ecircumflex" k="41" />
+<hkern g1="racute" g2="edieresis" k="41" />
+<hkern g1="racute" g2="ograve" k="41" />
+<hkern g1="racute" g2="oacute" k="41" />
+<hkern g1="racute" g2="ocircumflex" k="41" />
+<hkern g1="racute" g2="otilde" k="41" />
+<hkern g1="racute" g2="odieresis" k="41" />
+<hkern g1="racute" g2="oslash" k="41" />
+<hkern g1="racute" g2="amacron" k="41" />
+<hkern g1="racute" g2="abreve" k="41" />
+<hkern g1="racute" g2="aogonek" k="41" />
+<hkern g1="racute" g2="cacute" k="41" />
+<hkern g1="racute" g2="ccircumflex" k="41" />
+<hkern g1="racute" g2="cdot" k="41" />
+<hkern g1="racute" g2="ccaron" k="41" />
+<hkern g1="racute" g2="dcaron" k="41" />
+<hkern g1="racute" g2="dcroat" k="41" />
+<hkern g1="racute" g2="emacron" k="41" />
+<hkern g1="racute" g2="ebreve" k="41" />
+<hkern g1="racute" g2="edotaccent" k="41" />
+<hkern g1="racute" g2="eogonek" k="41" />
+<hkern g1="racute" g2="ecaron" k="41" />
+<hkern g1="racute" g2="gcircumflex" k="20" />
+<hkern g1="racute" g2="gbreve" k="20" />
+<hkern g1="racute" g2="gdot" k="20" />
+<hkern g1="racute" g2="gcommaaccent" k="20" />
+<hkern g1="racute" g2="omacron" k="41" />
+<hkern g1="racute" g2="obreve" k="41" />
+<hkern g1="racute" g2="ohungarumlaut" k="41" />
+<hkern g1="racute" g2="oe" k="41" />
+<hkern g1="racute" g2="aringacute" k="41" />
+<hkern g1="racute" g2="aeacute" k="41" />
+<hkern g1="racute" g2="oslashacute" k="41" />
+<hkern g1="racute" g2="quoteright" k="-82" />
+<hkern g1="racute" g2="quotedblright" k="-82" />
+<hkern g1="racute" g2="uni1E01" k="41" />
+<hkern g1="racute" g2="ohorn" k="41" />
+<hkern g1="racute" g2="uni1EA1" k="41" />
+<hkern g1="racute" g2="uni1EA3" k="41" />
+<hkern g1="racute" g2="uni1EA5" k="41" />
+<hkern g1="racute" g2="uni1EA9" k="41" />
+<hkern g1="racute" g2="uni1EAB" k="41" />
+<hkern g1="racute" g2="uni1EAD" k="41" />
+<hkern g1="racute" g2="uni1EAF" k="41" />
+<hkern g1="racute" g2="uni1EB1" k="41" />
+<hkern g1="racute" g2="uni1EB3" k="41" />
+<hkern g1="racute" g2="uni1EB5" k="41" />
+<hkern g1="racute" g2="uni1EB7" k="41" />
+<hkern g1="racute" g2="uni1EB9" k="41" />
+<hkern g1="racute" g2="uni1EBB" k="41" />
+<hkern g1="racute" g2="uni1EBD" k="41" />
+<hkern g1="racute" g2="uni1EBF" k="41" />
+<hkern g1="racute" g2="uni1EC3" k="41" />
+<hkern g1="racute" g2="uni1EC5" k="41" />
+<hkern g1="racute" g2="uni1EC7" k="41" />
+<hkern g1="racute" g2="uni1ECD" k="41" />
+<hkern g1="racute" g2="uni1ECF" k="41" />
+<hkern g1="racute" g2="uni1ED1" k="41" />
+<hkern g1="racute" g2="uni1ED5" k="41" />
+<hkern g1="racute" g2="uni1ED7" k="41" />
+<hkern g1="racute" g2="uni1ED9" k="41" />
+<hkern g1="racute" g2="uni1EDB" k="41" />
+<hkern g1="racute" g2="uni1EDD" k="41" />
+<hkern g1="racute" g2="uni1EDF" k="41" />
+<hkern g1="racute" g2="uni1EE1" k="41" />
+<hkern g1="racute" g2="uni1EE3" k="41" />
+<hkern g1="rcommaaccent" g2="quotedbl" k="-82" />
+<hkern g1="rcommaaccent" g2="quotesingle" k="-82" />
+<hkern g1="rcommaaccent" g2="a" k="41" />
+<hkern g1="rcommaaccent" g2="c" k="41" />
+<hkern g1="rcommaaccent" g2="d" k="41" />
+<hkern g1="rcommaaccent" g2="e" k="41" />
+<hkern g1="rcommaaccent" g2="g" k="20" />
+<hkern g1="rcommaaccent" g2="o" k="41" />
+<hkern g1="rcommaaccent" g2="q" k="41" />
+<hkern g1="rcommaaccent" g2="agrave" k="41" />
+<hkern g1="rcommaaccent" g2="aacute" k="41" />
+<hkern g1="rcommaaccent" g2="acircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="atilde" k="41" />
+<hkern g1="rcommaaccent" g2="adieresis" k="41" />
+<hkern g1="rcommaaccent" g2="aring" k="41" />
+<hkern g1="rcommaaccent" g2="ae" k="41" />
+<hkern g1="rcommaaccent" g2="ccedilla" k="41" />
+<hkern g1="rcommaaccent" g2="egrave" k="41" />
+<hkern g1="rcommaaccent" g2="eacute" k="41" />
+<hkern g1="rcommaaccent" g2="ecircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="edieresis" k="41" />
+<hkern g1="rcommaaccent" g2="ograve" k="41" />
+<hkern g1="rcommaaccent" g2="oacute" k="41" />
+<hkern g1="rcommaaccent" g2="ocircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="otilde" k="41" />
+<hkern g1="rcommaaccent" g2="odieresis" k="41" />
+<hkern g1="rcommaaccent" g2="oslash" k="41" />
+<hkern g1="rcommaaccent" g2="amacron" k="41" />
+<hkern g1="rcommaaccent" g2="abreve" k="41" />
+<hkern g1="rcommaaccent" g2="aogonek" k="41" />
+<hkern g1="rcommaaccent" g2="cacute" k="41" />
+<hkern g1="rcommaaccent" g2="ccircumflex" k="41" />
+<hkern g1="rcommaaccent" g2="cdot" k="41" />
+<hkern g1="rcommaaccent" g2="ccaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcaron" k="41" />
+<hkern g1="rcommaaccent" g2="dcroat" k="41" />
+<hkern g1="rcommaaccent" g2="emacron" k="41" />
+<hkern g1="rcommaaccent" g2="ebreve" k="41" />
+<hkern g1="rcommaaccent" g2="edotaccent" k="41" />
+<hkern g1="rcommaaccent" g2="eogonek" k="41" />
+<hkern g1="rcommaaccent" g2="ecaron" k="41" />
+<hkern g1="rcommaaccent" g2="gcircumflex" k="20" />
+<hkern g1="rcommaaccent" g2="gbreve" k="20" />
+<hkern g1="rcommaaccent" g2="gdot" k="20" />
+<hkern g1="rcommaaccent" g2="gcommaaccent" k="20" />
+<hkern g1="rcommaaccent" g2="omacron" k="41" />
+<hkern g1="rcommaaccent" g2="obreve" k="41" />
+<hkern g1="rcommaaccent" g2="ohungarumlaut" k="41" />
+<hkern g1="rcommaaccent" g2="oe" k="41" />
+<hkern g1="rcommaaccent" g2="aringacute" k="41" />
+<hkern g1="rcommaaccent" g2="aeacute" k="41" />
+<hkern g1="rcommaaccent" g2="oslashacute" k="41" />
+<hkern g1="rcommaaccent" g2="quoteright" k="-82" />
+<hkern g1="rcommaaccent" g2="quotedblright" k="-82" />
+<hkern g1="rcommaaccent" g2="uni1E01" k="41" />
+<hkern g1="rcommaaccent" g2="ohorn" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EA9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EAF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EB9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EBF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC3" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EC7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ECF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED5" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED7" k="41" />
+<hkern g1="rcommaaccent" g2="uni1ED9" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDB" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDD" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EDF" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE1" k="41" />
+<hkern g1="rcommaaccent" g2="uni1EE3" k="41" />
+<hkern g1="rcaron" g2="quotedbl" k="-82" />
+<hkern g1="rcaron" g2="quotesingle" k="-82" />
+<hkern g1="rcaron" g2="a" k="41" />
+<hkern g1="rcaron" g2="c" k="41" />
+<hkern g1="rcaron" g2="d" k="41" />
+<hkern g1="rcaron" g2="e" k="41" />
+<hkern g1="rcaron" g2="g" k="20" />
+<hkern g1="rcaron" g2="o" k="41" />
+<hkern g1="rcaron" g2="q" k="41" />
+<hkern g1="rcaron" g2="agrave" k="41" />
+<hkern g1="rcaron" g2="aacute" k="41" />
+<hkern g1="rcaron" g2="acircumflex" k="41" />
+<hkern g1="rcaron" g2="atilde" k="41" />
+<hkern g1="rcaron" g2="adieresis" k="41" />
+<hkern g1="rcaron" g2="aring" k="41" />
+<hkern g1="rcaron" g2="ae" k="41" />
+<hkern g1="rcaron" g2="ccedilla" k="41" />
+<hkern g1="rcaron" g2="egrave" k="41" />
+<hkern g1="rcaron" g2="eacute" k="41" />
+<hkern g1="rcaron" g2="ecircumflex" k="41" />
+<hkern g1="rcaron" g2="edieresis" k="41" />
+<hkern g1="rcaron" g2="ograve" k="41" />
+<hkern g1="rcaron" g2="oacute" k="41" />
+<hkern g1="rcaron" g2="ocircumflex" k="41" />
+<hkern g1="rcaron" g2="otilde" k="41" />
+<hkern g1="rcaron" g2="odieresis" k="41" />
+<hkern g1="rcaron" g2="oslash" k="41" />
+<hkern g1="rcaron" g2="amacron" k="41" />
+<hkern g1="rcaron" g2="abreve" k="41" />
+<hkern g1="rcaron" g2="aogonek" k="41" />
+<hkern g1="rcaron" g2="cacute" k="41" />
+<hkern g1="rcaron" g2="ccircumflex" k="41" />
+<hkern g1="rcaron" g2="cdot" k="41" />
+<hkern g1="rcaron" g2="ccaron" k="41" />
+<hkern g1="rcaron" g2="dcaron" k="41" />
+<hkern g1="rcaron" g2="dcroat" k="41" />
+<hkern g1="rcaron" g2="emacron" k="41" />
+<hkern g1="rcaron" g2="ebreve" k="41" />
+<hkern g1="rcaron" g2="edotaccent" k="41" />
+<hkern g1="rcaron" g2="eogonek" k="41" />
+<hkern g1="rcaron" g2="ecaron" k="41" />
+<hkern g1="rcaron" g2="gcircumflex" k="20" />
+<hkern g1="rcaron" g2="gbreve" k="20" />
+<hkern g1="rcaron" g2="gdot" k="20" />
+<hkern g1="rcaron" g2="gcommaaccent" k="20" />
+<hkern g1="rcaron" g2="omacron" k="41" />
+<hkern g1="rcaron" g2="obreve" k="41" />
+<hkern g1="rcaron" g2="ohungarumlaut" k="41" />
+<hkern g1="rcaron" g2="oe" k="41" />
+<hkern g1="rcaron" g2="aringacute" k="41" />
+<hkern g1="rcaron" g2="aeacute" k="41" />
+<hkern g1="rcaron" g2="oslashacute" k="41" />
+<hkern g1="rcaron" g2="quoteright" k="-82" />
+<hkern g1="rcaron" g2="quotedblright" k="-82" />
+<hkern g1="rcaron" g2="uni1E01" k="41" />
+<hkern g1="rcaron" g2="ohorn" k="41" />
+<hkern g1="rcaron" g2="uni1EA1" k="41" />
+<hkern g1="rcaron" g2="uni1EA3" k="41" />
+<hkern g1="rcaron" g2="uni1EA5" k="41" />
+<hkern g1="rcaron" g2="uni1EA9" k="41" />
+<hkern g1="rcaron" g2="uni1EAB" k="41" />
+<hkern g1="rcaron" g2="uni1EAD" k="41" />
+<hkern g1="rcaron" g2="uni1EAF" k="41" />
+<hkern g1="rcaron" g2="uni1EB1" k="41" />
+<hkern g1="rcaron" g2="uni1EB3" k="41" />
+<hkern g1="rcaron" g2="uni1EB5" k="41" />
+<hkern g1="rcaron" g2="uni1EB7" k="41" />
+<hkern g1="rcaron" g2="uni1EB9" k="41" />
+<hkern g1="rcaron" g2="uni1EBB" k="41" />
+<hkern g1="rcaron" g2="uni1EBD" k="41" />
+<hkern g1="rcaron" g2="uni1EBF" k="41" />
+<hkern g1="rcaron" g2="uni1EC3" k="41" />
+<hkern g1="rcaron" g2="uni1EC5" k="41" />
+<hkern g1="rcaron" g2="uni1EC7" k="41" />
+<hkern g1="rcaron" g2="uni1ECD" k="41" />
+<hkern g1="rcaron" g2="uni1ECF" k="41" />
+<hkern g1="rcaron" g2="uni1ED1" k="41" />
+<hkern g1="rcaron" g2="uni1ED5" k="41" />
+<hkern g1="rcaron" g2="uni1ED7" k="41" />
+<hkern g1="rcaron" g2="uni1ED9" k="41" />
+<hkern g1="rcaron" g2="uni1EDB" k="41" />
+<hkern g1="rcaron" g2="uni1EDD" k="41" />
+<hkern g1="rcaron" g2="uni1EDF" k="41" />
+<hkern g1="rcaron" g2="uni1EE1" k="41" />
+<hkern g1="rcaron" g2="uni1EE3" k="41" />
+<hkern g1="Tcommaaccent" g2="comma" k="123" />
+<hkern g1="Tcommaaccent" g2="hyphen" k="82" />
+<hkern g1="Tcommaaccent" g2="period" k="123" />
+<hkern g1="Tcommaaccent" g2="question" k="-41" />
+<hkern g1="Tcommaaccent" g2="A" k="143" />
+<hkern g1="Tcommaaccent" g2="C" k="41" />
+<hkern g1="Tcommaaccent" g2="G" k="41" />
+<hkern g1="Tcommaaccent" g2="O" k="41" />
+<hkern g1="Tcommaaccent" g2="Q" k="41" />
+<hkern g1="Tcommaaccent" g2="T" k="-41" />
+<hkern g1="Tcommaaccent" g2="a" k="164" />
+<hkern g1="Tcommaaccent" g2="c" k="143" />
+<hkern g1="Tcommaaccent" g2="d" k="143" />
+<hkern g1="Tcommaaccent" g2="e" k="143" />
+<hkern g1="Tcommaaccent" g2="g" k="143" />
+<hkern g1="Tcommaaccent" g2="m" k="102" />
+<hkern g1="Tcommaaccent" g2="n" k="102" />
+<hkern g1="Tcommaaccent" g2="o" k="143" />
+<hkern g1="Tcommaaccent" g2="p" k="102" />
+<hkern g1="Tcommaaccent" g2="q" k="143" />
+<hkern g1="Tcommaaccent" g2="r" k="102" />
+<hkern g1="Tcommaaccent" g2="s" k="123" />
+<hkern g1="Tcommaaccent" g2="u" k="102" />
+<hkern g1="Tcommaaccent" g2="v" k="41" />
+<hkern g1="Tcommaaccent" g2="w" k="41" />
+<hkern g1="Tcommaaccent" g2="x" k="41" />
+<hkern g1="Tcommaaccent" g2="y" k="41" />
+<hkern g1="Tcommaaccent" g2="z" k="82" />
+<hkern g1="Tcommaaccent" g2="Agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="Aacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Acircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Atilde" k="143" />
+<hkern g1="Tcommaaccent" g2="Adieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="Aring" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccedilla" k="41" />
+<hkern g1="Tcommaaccent" g2="Ograve" k="41" />
+<hkern g1="Tcommaaccent" g2="Oacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Ocircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="Otilde" k="41" />
+<hkern g1="Tcommaaccent" g2="Odieresis" k="41" />
+<hkern g1="Tcommaaccent" g2="Oslash" k="41" />
+<hkern g1="Tcommaaccent" g2="agrave" k="143" />
+<hkern g1="Tcommaaccent" g2="aacute" k="164" />
+<hkern g1="Tcommaaccent" g2="acircumflex" k="164" />
+<hkern g1="Tcommaaccent" g2="atilde" k="164" />
+<hkern g1="Tcommaaccent" g2="adieresis" k="164" />
+<hkern g1="Tcommaaccent" g2="aring" k="164" />
+<hkern g1="Tcommaaccent" g2="ae" k="164" />
+<hkern g1="Tcommaaccent" g2="ccedilla" k="143" />
+<hkern g1="Tcommaaccent" g2="egrave" k="143" />
+<hkern g1="Tcommaaccent" g2="eacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ecircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="edieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="ograve" k="143" />
+<hkern g1="Tcommaaccent" g2="oacute" k="143" />
+<hkern g1="Tcommaaccent" g2="ocircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="otilde" k="143" />
+<hkern g1="Tcommaaccent" g2="odieresis" k="143" />
+<hkern g1="Tcommaaccent" g2="oslash" k="143" />
+<hkern g1="Tcommaaccent" g2="ugrave" k="102" />
+<hkern g1="Tcommaaccent" g2="uacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ucircumflex" k="102" />
+<hkern g1="Tcommaaccent" g2="udieresis" k="102" />
+<hkern g1="Tcommaaccent" g2="yacute" k="41" />
+<hkern g1="Tcommaaccent" g2="Amacron" k="143" />
+<hkern g1="Tcommaaccent" g2="amacron" k="164" />
+<hkern g1="Tcommaaccent" g2="Abreve" k="143" />
+<hkern g1="Tcommaaccent" g2="abreve" k="164" />
+<hkern g1="Tcommaaccent" g2="Aogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="aogonek" k="164" />
+<hkern g1="Tcommaaccent" g2="Cacute" k="41" />
+<hkern g1="Tcommaaccent" g2="cacute" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="ccircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Cdot" k="41" />
+<hkern g1="Tcommaaccent" g2="cdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Ccaron" k="41" />
+<hkern g1="Tcommaaccent" g2="ccaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcaron" k="143" />
+<hkern g1="Tcommaaccent" g2="dcroat" k="143" />
+<hkern g1="Tcommaaccent" g2="emacron" k="143" />
+<hkern g1="Tcommaaccent" g2="ebreve" k="143" />
+<hkern g1="Tcommaaccent" g2="edotaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="eogonek" k="143" />
+<hkern g1="Tcommaaccent" g2="ecaron" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="gcircumflex" k="143" />
+<hkern g1="Tcommaaccent" g2="Gbreve" k="41" />
+<hkern g1="Tcommaaccent" g2="gbreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Gdot" k="41" />
+<hkern g1="Tcommaaccent" g2="gdot" k="143" />
+<hkern g1="Tcommaaccent" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcommaaccent" g2="gcommaaccent" k="143" />
+<hkern g1="Tcommaaccent" g2="kgreenlandic" k="102" />
+<hkern g1="Tcommaaccent" g2="nacute" k="102" />
+<hkern g1="Tcommaaccent" g2="ncommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="eng" k="102" />
+<hkern g1="Tcommaaccent" g2="Omacron" k="41" />
+<hkern g1="Tcommaaccent" g2="omacron" k="143" />
+<hkern g1="Tcommaaccent" g2="Obreve" k="41" />
+<hkern g1="Tcommaaccent" g2="obreve" k="143" />
+<hkern g1="Tcommaaccent" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcommaaccent" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcommaaccent" g2="OE" k="41" />
+<hkern g1="Tcommaaccent" g2="oe" k="143" />
+<hkern g1="Tcommaaccent" g2="racute" k="102" />
+<hkern g1="Tcommaaccent" g2="rcommaaccent" k="102" />
+<hkern g1="Tcommaaccent" g2="sacute" k="123" />
+<hkern g1="Tcommaaccent" g2="scedilla" k="123" />
+<hkern g1="Tcommaaccent" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcommaaccent" g2="Tcaron" k="-41" />
+<hkern g1="Tcommaaccent" g2="utilde" k="102" />
+<hkern g1="Tcommaaccent" g2="umacron" k="102" />
+<hkern g1="Tcommaaccent" g2="ubreve" k="102" />
+<hkern g1="Tcommaaccent" g2="uring" k="102" />
+<hkern g1="Tcommaaccent" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcommaaccent" g2="uogonek" k="102" />
+<hkern g1="Tcommaaccent" g2="wcircumflex" k="41" />
+<hkern g1="Tcommaaccent" g2="zacute" k="82" />
+<hkern g1="Tcommaaccent" g2="zdotaccent" k="82" />
+<hkern g1="Tcommaaccent" g2="zcaron" k="82" />
+<hkern g1="Tcommaaccent" g2="Aringacute" k="143" />
+<hkern g1="Tcommaaccent" g2="aringacute" k="164" />
+<hkern g1="Tcommaaccent" g2="aeacute" k="164" />
+<hkern g1="Tcommaaccent" g2="Oslashacute" k="41" />
+<hkern g1="Tcommaaccent" g2="oslashacute" k="143" />
+<hkern g1="Tcommaaccent" g2="scommaaccent" k="123" />
+<hkern g1="Tcommaaccent" g2="wgrave" k="41" />
+<hkern g1="Tcommaaccent" g2="wacute" k="41" />
+<hkern g1="Tcommaaccent" g2="endash" k="82" />
+<hkern g1="Tcommaaccent" g2="emdash" k="82" />
+<hkern g1="Tcommaaccent" g2="afii00208" k="82" />
+<hkern g1="Tcommaaccent" g2="quotesinglbase" k="123" />
+<hkern g1="Tcommaaccent" g2="quotedblbase" k="123" />
+<hkern g1="Tcommaaccent" g2="uni1E3F" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1E00" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1E01" k="164" />
+<hkern g1="Tcommaaccent" g2="Ohorn" k="41" />
+<hkern g1="Tcommaaccent" g2="ohorn" k="143" />
+<hkern g1="Tcommaaccent" g2="uhorn" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EA0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EA6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA8" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EA9" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAA" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAB" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAC" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAD" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EAE" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EAF" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB0" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB1" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB2" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB3" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB4" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB5" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB6" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EB7" k="164" />
+<hkern g1="Tcommaaccent" g2="uni1EB9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EBF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EC7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ECE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ECF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED4" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED5" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED6" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED7" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1ED8" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1ED9" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDA" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDB" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDC" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDD" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EDE" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EDF" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE0" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE1" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE2" k="41" />
+<hkern g1="Tcommaaccent" g2="uni1EE3" k="143" />
+<hkern g1="Tcommaaccent" g2="uni1EE5" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE7" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EE9" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEB" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EED" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EEF" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF1" k="102" />
+<hkern g1="Tcommaaccent" g2="uni1EF5" k="41" />
+<hkern g1="Tcommaaccent" g2="Tcedilla" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedbl" k="-41" />
+<hkern g1="tcommaaccent" g2="quotesingle" k="-41" />
+<hkern g1="tcommaaccent" g2="quoteright" k="-41" />
+<hkern g1="tcommaaccent" g2="quotedblright" k="-41" />
+<hkern g1="Tcaron" g2="comma" k="123" />
+<hkern g1="Tcaron" g2="hyphen" k="82" />
+<hkern g1="Tcaron" g2="period" k="123" />
+<hkern g1="Tcaron" g2="question" k="-41" />
+<hkern g1="Tcaron" g2="A" k="143" />
+<hkern g1="Tcaron" g2="C" k="41" />
+<hkern g1="Tcaron" g2="G" k="41" />
+<hkern g1="Tcaron" g2="O" k="41" />
+<hkern g1="Tcaron" g2="Q" k="41" />
+<hkern g1="Tcaron" g2="T" k="-41" />
+<hkern g1="Tcaron" g2="a" k="164" />
+<hkern g1="Tcaron" g2="c" k="143" />
+<hkern g1="Tcaron" g2="d" k="143" />
+<hkern g1="Tcaron" g2="e" k="143" />
+<hkern g1="Tcaron" g2="g" k="143" />
+<hkern g1="Tcaron" g2="m" k="102" />
+<hkern g1="Tcaron" g2="n" k="102" />
+<hkern g1="Tcaron" g2="o" k="143" />
+<hkern g1="Tcaron" g2="p" k="102" />
+<hkern g1="Tcaron" g2="q" k="143" />
+<hkern g1="Tcaron" g2="r" k="102" />
+<hkern g1="Tcaron" g2="s" k="123" />
+<hkern g1="Tcaron" g2="u" k="102" />
+<hkern g1="Tcaron" g2="v" k="41" />
+<hkern g1="Tcaron" g2="w" k="41" />
+<hkern g1="Tcaron" g2="x" k="41" />
+<hkern g1="Tcaron" g2="y" k="41" />
+<hkern g1="Tcaron" g2="z" k="82" />
+<hkern g1="Tcaron" g2="Agrave" k="143" />
+<hkern g1="Tcaron" g2="Aacute" k="143" />
+<hkern g1="Tcaron" g2="Acircumflex" k="143" />
+<hkern g1="Tcaron" g2="Atilde" k="143" />
+<hkern g1="Tcaron" g2="Adieresis" k="143" />
+<hkern g1="Tcaron" g2="Aring" k="143" />
+<hkern g1="Tcaron" g2="Ccedilla" k="41" />
+<hkern g1="Tcaron" g2="Ograve" k="41" />
+<hkern g1="Tcaron" g2="Oacute" k="41" />
+<hkern g1="Tcaron" g2="Ocircumflex" k="41" />
+<hkern g1="Tcaron" g2="Otilde" k="41" />
+<hkern g1="Tcaron" g2="Odieresis" k="41" />
+<hkern g1="Tcaron" g2="Oslash" k="41" />
+<hkern g1="Tcaron" g2="agrave" k="143" />
+<hkern g1="Tcaron" g2="aacute" k="164" />
+<hkern g1="Tcaron" g2="acircumflex" k="164" />
+<hkern g1="Tcaron" g2="atilde" k="164" />
+<hkern g1="Tcaron" g2="adieresis" k="164" />
+<hkern g1="Tcaron" g2="aring" k="164" />
+<hkern g1="Tcaron" g2="ae" k="164" />
+<hkern g1="Tcaron" g2="ccedilla" k="143" />
+<hkern g1="Tcaron" g2="egrave" k="143" />
+<hkern g1="Tcaron" g2="eacute" k="143" />
+<hkern g1="Tcaron" g2="ecircumflex" k="143" />
+<hkern g1="Tcaron" g2="edieresis" k="143" />
+<hkern g1="Tcaron" g2="ograve" k="143" />
+<hkern g1="Tcaron" g2="oacute" k="143" />
+<hkern g1="Tcaron" g2="ocircumflex" k="143" />
+<hkern g1="Tcaron" g2="otilde" k="143" />
+<hkern g1="Tcaron" g2="odieresis" k="143" />
+<hkern g1="Tcaron" g2="oslash" k="143" />
+<hkern g1="Tcaron" g2="ugrave" k="102" />
+<hkern g1="Tcaron" g2="uacute" k="102" />
+<hkern g1="Tcaron" g2="ucircumflex" k="102" />
+<hkern g1="Tcaron" g2="udieresis" k="102" />
+<hkern g1="Tcaron" g2="yacute" k="41" />
+<hkern g1="Tcaron" g2="Amacron" k="143" />
+<hkern g1="Tcaron" g2="amacron" k="164" />
+<hkern g1="Tcaron" g2="Abreve" k="143" />
+<hkern g1="Tcaron" g2="abreve" k="164" />
+<hkern g1="Tcaron" g2="Aogonek" k="143" />
+<hkern g1="Tcaron" g2="aogonek" k="164" />
+<hkern g1="Tcaron" g2="Cacute" k="41" />
+<hkern g1="Tcaron" g2="cacute" k="143" />
+<hkern g1="Tcaron" g2="Ccircumflex" k="41" />
+<hkern g1="Tcaron" g2="ccircumflex" k="143" />
+<hkern g1="Tcaron" g2="Cdot" k="41" />
+<hkern g1="Tcaron" g2="cdot" k="143" />
+<hkern g1="Tcaron" g2="Ccaron" k="41" />
+<hkern g1="Tcaron" g2="ccaron" k="143" />
+<hkern g1="Tcaron" g2="dcaron" k="143" />
+<hkern g1="Tcaron" g2="dcroat" k="143" />
+<hkern g1="Tcaron" g2="emacron" k="143" />
+<hkern g1="Tcaron" g2="ebreve" k="143" />
+<hkern g1="Tcaron" g2="edotaccent" k="143" />
+<hkern g1="Tcaron" g2="eogonek" k="143" />
+<hkern g1="Tcaron" g2="ecaron" k="143" />
+<hkern g1="Tcaron" g2="Gcircumflex" k="41" />
+<hkern g1="Tcaron" g2="gcircumflex" k="143" />
+<hkern g1="Tcaron" g2="Gbreve" k="41" />
+<hkern g1="Tcaron" g2="gbreve" k="143" />
+<hkern g1="Tcaron" g2="Gdot" k="41" />
+<hkern g1="Tcaron" g2="gdot" k="143" />
+<hkern g1="Tcaron" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcaron" g2="gcommaaccent" k="143" />
+<hkern g1="Tcaron" g2="kgreenlandic" k="102" />
+<hkern g1="Tcaron" g2="nacute" k="102" />
+<hkern g1="Tcaron" g2="ncommaaccent" k="102" />
+<hkern g1="Tcaron" g2="eng" k="102" />
+<hkern g1="Tcaron" g2="Omacron" k="41" />
+<hkern g1="Tcaron" g2="omacron" k="143" />
+<hkern g1="Tcaron" g2="Obreve" k="41" />
+<hkern g1="Tcaron" g2="obreve" k="143" />
+<hkern g1="Tcaron" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcaron" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcaron" g2="OE" k="41" />
+<hkern g1="Tcaron" g2="oe" k="143" />
+<hkern g1="Tcaron" g2="racute" k="102" />
+<hkern g1="Tcaron" g2="rcommaaccent" k="102" />
+<hkern g1="Tcaron" g2="sacute" k="123" />
+<hkern g1="Tcaron" g2="scedilla" k="123" />
+<hkern g1="Tcaron" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcaron" g2="Tcaron" k="-41" />
+<hkern g1="Tcaron" g2="utilde" k="102" />
+<hkern g1="Tcaron" g2="umacron" k="102" />
+<hkern g1="Tcaron" g2="ubreve" k="102" />
+<hkern g1="Tcaron" g2="uring" k="102" />
+<hkern g1="Tcaron" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcaron" g2="uogonek" k="102" />
+<hkern g1="Tcaron" g2="wcircumflex" k="41" />
+<hkern g1="Tcaron" g2="zacute" k="82" />
+<hkern g1="Tcaron" g2="zdotaccent" k="82" />
+<hkern g1="Tcaron" g2="zcaron" k="82" />
+<hkern g1="Tcaron" g2="Aringacute" k="143" />
+<hkern g1="Tcaron" g2="aringacute" k="164" />
+<hkern g1="Tcaron" g2="aeacute" k="164" />
+<hkern g1="Tcaron" g2="Oslashacute" k="41" />
+<hkern g1="Tcaron" g2="oslashacute" k="143" />
+<hkern g1="Tcaron" g2="scommaaccent" k="123" />
+<hkern g1="Tcaron" g2="wgrave" k="41" />
+<hkern g1="Tcaron" g2="wacute" k="41" />
+<hkern g1="Tcaron" g2="endash" k="82" />
+<hkern g1="Tcaron" g2="emdash" k="82" />
+<hkern g1="Tcaron" g2="afii00208" k="82" />
+<hkern g1="Tcaron" g2="quotesinglbase" k="123" />
+<hkern g1="Tcaron" g2="quotedblbase" k="123" />
+<hkern g1="Tcaron" g2="uni1E3F" k="102" />
+<hkern g1="Tcaron" g2="uni1E00" k="143" />
+<hkern g1="Tcaron" g2="uni1E01" k="164" />
+<hkern g1="Tcaron" g2="Ohorn" k="41" />
+<hkern g1="Tcaron" g2="ohorn" k="143" />
+<hkern g1="Tcaron" g2="uhorn" k="102" />
+<hkern g1="Tcaron" g2="uni1EA0" k="143" />
+<hkern g1="Tcaron" g2="uni1EA1" k="164" />
+<hkern g1="Tcaron" g2="uni1EA2" k="143" />
+<hkern g1="Tcaron" g2="uni1EA3" k="164" />
+<hkern g1="Tcaron" g2="uni1EA4" k="143" />
+<hkern g1="Tcaron" g2="uni1EA5" k="164" />
+<hkern g1="Tcaron" g2="uni1EA6" k="143" />
+<hkern g1="Tcaron" g2="uni1EA8" k="143" />
+<hkern g1="Tcaron" g2="uni1EA9" k="164" />
+<hkern g1="Tcaron" g2="uni1EAA" k="143" />
+<hkern g1="Tcaron" g2="uni1EAB" k="164" />
+<hkern g1="Tcaron" g2="uni1EAC" k="143" />
+<hkern g1="Tcaron" g2="uni1EAD" k="164" />
+<hkern g1="Tcaron" g2="uni1EAE" k="143" />
+<hkern g1="Tcaron" g2="uni1EAF" k="164" />
+<hkern g1="Tcaron" g2="uni1EB0" k="143" />
+<hkern g1="Tcaron" g2="uni1EB1" k="164" />
+<hkern g1="Tcaron" g2="uni1EB2" k="143" />
+<hkern g1="Tcaron" g2="uni1EB3" k="164" />
+<hkern g1="Tcaron" g2="uni1EB4" k="143" />
+<hkern g1="Tcaron" g2="uni1EB5" k="164" />
+<hkern g1="Tcaron" g2="uni1EB6" k="143" />
+<hkern g1="Tcaron" g2="uni1EB7" k="164" />
+<hkern g1="Tcaron" g2="uni1EB9" k="143" />
+<hkern g1="Tcaron" g2="uni1EBB" k="143" />
+<hkern g1="Tcaron" g2="uni1EBD" k="143" />
+<hkern g1="Tcaron" g2="uni1EBF" k="143" />
+<hkern g1="Tcaron" g2="uni1EC3" k="143" />
+<hkern g1="Tcaron" g2="uni1EC5" k="143" />
+<hkern g1="Tcaron" g2="uni1EC7" k="143" />
+<hkern g1="Tcaron" g2="uni1ECC" k="41" />
+<hkern g1="Tcaron" g2="uni1ECD" k="143" />
+<hkern g1="Tcaron" g2="uni1ECE" k="41" />
+<hkern g1="Tcaron" g2="uni1ECF" k="143" />
+<hkern g1="Tcaron" g2="uni1ED0" k="41" />
+<hkern g1="Tcaron" g2="uni1ED1" k="143" />
+<hkern g1="Tcaron" g2="uni1ED2" k="41" />
+<hkern g1="Tcaron" g2="uni1ED4" k="41" />
+<hkern g1="Tcaron" g2="uni1ED5" k="143" />
+<hkern g1="Tcaron" g2="uni1ED6" k="41" />
+<hkern g1="Tcaron" g2="uni1ED7" k="143" />
+<hkern g1="Tcaron" g2="uni1ED8" k="41" />
+<hkern g1="Tcaron" g2="uni1ED9" k="143" />
+<hkern g1="Tcaron" g2="uni1EDA" k="41" />
+<hkern g1="Tcaron" g2="uni1EDB" k="143" />
+<hkern g1="Tcaron" g2="uni1EDC" k="41" />
+<hkern g1="Tcaron" g2="uni1EDD" k="143" />
+<hkern g1="Tcaron" g2="uni1EDE" k="41" />
+<hkern g1="Tcaron" g2="uni1EDF" k="143" />
+<hkern g1="Tcaron" g2="uni1EE0" k="41" />
+<hkern g1="Tcaron" g2="uni1EE1" k="143" />
+<hkern g1="Tcaron" g2="uni1EE2" k="41" />
+<hkern g1="Tcaron" g2="uni1EE3" k="143" />
+<hkern g1="Tcaron" g2="uni1EE5" k="102" />
+<hkern g1="Tcaron" g2="uni1EE7" k="102" />
+<hkern g1="Tcaron" g2="uni1EE9" k="102" />
+<hkern g1="Tcaron" g2="uni1EEB" k="102" />
+<hkern g1="Tcaron" g2="uni1EED" k="102" />
+<hkern g1="Tcaron" g2="uni1EEF" k="102" />
+<hkern g1="Tcaron" g2="uni1EF1" k="102" />
+<hkern g1="Tcaron" g2="uni1EF5" k="41" />
+<hkern g1="Tcaron" g2="Tcedilla" k="-41" />
+<hkern g1="tcaron" g2="quotedbl" k="-41" />
+<hkern g1="tcaron" g2="quotesingle" k="-41" />
+<hkern g1="tcaron" g2="quoteright" k="-41" />
+<hkern g1="tcaron" g2="quotedblright" k="-41" />
+<hkern g1="Tbar" g2="comma" k="123" />
+<hkern g1="Tbar" g2="hyphen" k="82" />
+<hkern g1="Tbar" g2="period" k="123" />
+<hkern g1="Tbar" g2="question" k="-41" />
+<hkern g1="Tbar" g2="A" k="143" />
+<hkern g1="Tbar" g2="C" k="41" />
+<hkern g1="Tbar" g2="G" k="41" />
+<hkern g1="Tbar" g2="O" k="41" />
+<hkern g1="Tbar" g2="Q" k="41" />
+<hkern g1="Tbar" g2="T" k="-41" />
+<hkern g1="Tbar" g2="a" k="164" />
+<hkern g1="Tbar" g2="c" k="143" />
+<hkern g1="Tbar" g2="d" k="143" />
+<hkern g1="Tbar" g2="e" k="143" />
+<hkern g1="Tbar" g2="g" k="143" />
+<hkern g1="Tbar" g2="m" k="102" />
+<hkern g1="Tbar" g2="n" k="102" />
+<hkern g1="Tbar" g2="o" k="143" />
+<hkern g1="Tbar" g2="p" k="102" />
+<hkern g1="Tbar" g2="q" k="143" />
+<hkern g1="Tbar" g2="r" k="102" />
+<hkern g1="Tbar" g2="s" k="123" />
+<hkern g1="Tbar" g2="u" k="102" />
+<hkern g1="Tbar" g2="v" k="41" />
+<hkern g1="Tbar" g2="w" k="41" />
+<hkern g1="Tbar" g2="x" k="41" />
+<hkern g1="Tbar" g2="y" k="41" />
+<hkern g1="Tbar" g2="z" k="82" />
+<hkern g1="Tbar" g2="Agrave" k="143" />
+<hkern g1="Tbar" g2="Aacute" k="143" />
+<hkern g1="Tbar" g2="Acircumflex" k="143" />
+<hkern g1="Tbar" g2="Atilde" k="143" />
+<hkern g1="Tbar" g2="Adieresis" k="143" />
+<hkern g1="Tbar" g2="Aring" k="143" />
+<hkern g1="Tbar" g2="Ccedilla" k="41" />
+<hkern g1="Tbar" g2="Ograve" k="41" />
+<hkern g1="Tbar" g2="Oacute" k="41" />
+<hkern g1="Tbar" g2="Ocircumflex" k="41" />
+<hkern g1="Tbar" g2="Otilde" k="41" />
+<hkern g1="Tbar" g2="Odieresis" k="41" />
+<hkern g1="Tbar" g2="Oslash" k="41" />
+<hkern g1="Tbar" g2="agrave" k="143" />
+<hkern g1="Tbar" g2="aacute" k="164" />
+<hkern g1="Tbar" g2="acircumflex" k="164" />
+<hkern g1="Tbar" g2="atilde" k="164" />
+<hkern g1="Tbar" g2="adieresis" k="164" />
+<hkern g1="Tbar" g2="aring" k="164" />
+<hkern g1="Tbar" g2="ae" k="164" />
+<hkern g1="Tbar" g2="ccedilla" k="143" />
+<hkern g1="Tbar" g2="egrave" k="143" />
+<hkern g1="Tbar" g2="eacute" k="143" />
+<hkern g1="Tbar" g2="ecircumflex" k="143" />
+<hkern g1="Tbar" g2="edieresis" k="143" />
+<hkern g1="Tbar" g2="ograve" k="143" />
+<hkern g1="Tbar" g2="oacute" k="143" />
+<hkern g1="Tbar" g2="ocircumflex" k="143" />
+<hkern g1="Tbar" g2="otilde" k="143" />
+<hkern g1="Tbar" g2="odieresis" k="143" />
+<hkern g1="Tbar" g2="oslash" k="143" />
+<hkern g1="Tbar" g2="ugrave" k="102" />
+<hkern g1="Tbar" g2="uacute" k="102" />
+<hkern g1="Tbar" g2="ucircumflex" k="102" />
+<hkern g1="Tbar" g2="udieresis" k="102" />
+<hkern g1="Tbar" g2="yacute" k="41" />
+<hkern g1="Tbar" g2="Amacron" k="143" />
+<hkern g1="Tbar" g2="amacron" k="164" />
+<hkern g1="Tbar" g2="Abreve" k="143" />
+<hkern g1="Tbar" g2="abreve" k="164" />
+<hkern g1="Tbar" g2="Aogonek" k="143" />
+<hkern g1="Tbar" g2="aogonek" k="164" />
+<hkern g1="Tbar" g2="Cacute" k="41" />
+<hkern g1="Tbar" g2="cacute" k="143" />
+<hkern g1="Tbar" g2="Ccircumflex" k="41" />
+<hkern g1="Tbar" g2="ccircumflex" k="143" />
+<hkern g1="Tbar" g2="Cdot" k="41" />
+<hkern g1="Tbar" g2="cdot" k="143" />
+<hkern g1="Tbar" g2="Ccaron" k="41" />
+<hkern g1="Tbar" g2="ccaron" k="143" />
+<hkern g1="Tbar" g2="dcaron" k="143" />
+<hkern g1="Tbar" g2="dcroat" k="143" />
+<hkern g1="Tbar" g2="emacron" k="143" />
+<hkern g1="Tbar" g2="ebreve" k="143" />
+<hkern g1="Tbar" g2="edotaccent" k="143" />
+<hkern g1="Tbar" g2="eogonek" k="143" />
+<hkern g1="Tbar" g2="ecaron" k="143" />
+<hkern g1="Tbar" g2="Gcircumflex" k="41" />
+<hkern g1="Tbar" g2="gcircumflex" k="143" />
+<hkern g1="Tbar" g2="Gbreve" k="41" />
+<hkern g1="Tbar" g2="gbreve" k="143" />
+<hkern g1="Tbar" g2="Gdot" k="41" />
+<hkern g1="Tbar" g2="gdot" k="143" />
+<hkern g1="Tbar" g2="Gcommaaccent" k="41" />
+<hkern g1="Tbar" g2="gcommaaccent" k="143" />
+<hkern g1="Tbar" g2="kgreenlandic" k="102" />
+<hkern g1="Tbar" g2="nacute" k="102" />
+<hkern g1="Tbar" g2="ncommaaccent" k="102" />
+<hkern g1="Tbar" g2="eng" k="102" />
+<hkern g1="Tbar" g2="Omacron" k="41" />
+<hkern g1="Tbar" g2="omacron" k="143" />
+<hkern g1="Tbar" g2="Obreve" k="41" />
+<hkern g1="Tbar" g2="obreve" k="143" />
+<hkern g1="Tbar" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tbar" g2="ohungarumlaut" k="143" />
+<hkern g1="Tbar" g2="OE" k="41" />
+<hkern g1="Tbar" g2="oe" k="143" />
+<hkern g1="Tbar" g2="racute" k="102" />
+<hkern g1="Tbar" g2="rcommaaccent" k="102" />
+<hkern g1="Tbar" g2="sacute" k="123" />
+<hkern g1="Tbar" g2="scedilla" k="123" />
+<hkern g1="Tbar" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tbar" g2="Tcaron" k="-41" />
+<hkern g1="Tbar" g2="utilde" k="102" />
+<hkern g1="Tbar" g2="umacron" k="102" />
+<hkern g1="Tbar" g2="ubreve" k="102" />
+<hkern g1="Tbar" g2="uring" k="102" />
+<hkern g1="Tbar" g2="uhungarumlaut" k="102" />
+<hkern g1="Tbar" g2="uogonek" k="102" />
+<hkern g1="Tbar" g2="wcircumflex" k="41" />
+<hkern g1="Tbar" g2="zacute" k="82" />
+<hkern g1="Tbar" g2="zdotaccent" k="82" />
+<hkern g1="Tbar" g2="zcaron" k="82" />
+<hkern g1="Tbar" g2="Aringacute" k="143" />
+<hkern g1="Tbar" g2="aringacute" k="164" />
+<hkern g1="Tbar" g2="aeacute" k="164" />
+<hkern g1="Tbar" g2="Oslashacute" k="41" />
+<hkern g1="Tbar" g2="oslashacute" k="143" />
+<hkern g1="Tbar" g2="scommaaccent" k="123" />
+<hkern g1="Tbar" g2="wgrave" k="41" />
+<hkern g1="Tbar" g2="wacute" k="41" />
+<hkern g1="Tbar" g2="endash" k="82" />
+<hkern g1="Tbar" g2="emdash" k="82" />
+<hkern g1="Tbar" g2="afii00208" k="82" />
+<hkern g1="Tbar" g2="quotesinglbase" k="123" />
+<hkern g1="Tbar" g2="quotedblbase" k="123" />
+<hkern g1="Tbar" g2="uni1E3F" k="102" />
+<hkern g1="Tbar" g2="uni1E00" k="143" />
+<hkern g1="Tbar" g2="uni1E01" k="164" />
+<hkern g1="Tbar" g2="Ohorn" k="41" />
+<hkern g1="Tbar" g2="ohorn" k="143" />
+<hkern g1="Tbar" g2="uhorn" k="102" />
+<hkern g1="Tbar" g2="uni1EA0" k="143" />
+<hkern g1="Tbar" g2="uni1EA1" k="164" />
+<hkern g1="Tbar" g2="uni1EA2" k="143" />
+<hkern g1="Tbar" g2="uni1EA3" k="164" />
+<hkern g1="Tbar" g2="uni1EA4" k="143" />
+<hkern g1="Tbar" g2="uni1EA5" k="164" />
+<hkern g1="Tbar" g2="uni1EA6" k="143" />
+<hkern g1="Tbar" g2="uni1EA8" k="143" />
+<hkern g1="Tbar" g2="uni1EA9" k="164" />
+<hkern g1="Tbar" g2="uni1EAA" k="143" />
+<hkern g1="Tbar" g2="uni1EAB" k="164" />
+<hkern g1="Tbar" g2="uni1EAC" k="143" />
+<hkern g1="Tbar" g2="uni1EAD" k="164" />
+<hkern g1="Tbar" g2="uni1EAE" k="143" />
+<hkern g1="Tbar" g2="uni1EAF" k="164" />
+<hkern g1="Tbar" g2="uni1EB0" k="143" />
+<hkern g1="Tbar" g2="uni1EB1" k="164" />
+<hkern g1="Tbar" g2="uni1EB2" k="143" />
+<hkern g1="Tbar" g2="uni1EB3" k="164" />
+<hkern g1="Tbar" g2="uni1EB4" k="143" />
+<hkern g1="Tbar" g2="uni1EB5" k="164" />
+<hkern g1="Tbar" g2="uni1EB6" k="143" />
+<hkern g1="Tbar" g2="uni1EB7" k="164" />
+<hkern g1="Tbar" g2="uni1EB9" k="143" />
+<hkern g1="Tbar" g2="uni1EBB" k="143" />
+<hkern g1="Tbar" g2="uni1EBD" k="143" />
+<hkern g1="Tbar" g2="uni1EBF" k="143" />
+<hkern g1="Tbar" g2="uni1EC3" k="143" />
+<hkern g1="Tbar" g2="uni1EC5" k="143" />
+<hkern g1="Tbar" g2="uni1EC7" k="143" />
+<hkern g1="Tbar" g2="uni1ECC" k="41" />
+<hkern g1="Tbar" g2="uni1ECD" k="143" />
+<hkern g1="Tbar" g2="uni1ECE" k="41" />
+<hkern g1="Tbar" g2="uni1ECF" k="143" />
+<hkern g1="Tbar" g2="uni1ED0" k="41" />
+<hkern g1="Tbar" g2="uni1ED1" k="143" />
+<hkern g1="Tbar" g2="uni1ED2" k="41" />
+<hkern g1="Tbar" g2="uni1ED4" k="41" />
+<hkern g1="Tbar" g2="uni1ED5" k="143" />
+<hkern g1="Tbar" g2="uni1ED6" k="41" />
+<hkern g1="Tbar" g2="uni1ED7" k="143" />
+<hkern g1="Tbar" g2="uni1ED8" k="41" />
+<hkern g1="Tbar" g2="uni1ED9" k="143" />
+<hkern g1="Tbar" g2="uni1EDA" k="41" />
+<hkern g1="Tbar" g2="uni1EDB" k="143" />
+<hkern g1="Tbar" g2="uni1EDC" k="41" />
+<hkern g1="Tbar" g2="uni1EDD" k="143" />
+<hkern g1="Tbar" g2="uni1EDE" k="41" />
+<hkern g1="Tbar" g2="uni1EDF" k="143" />
+<hkern g1="Tbar" g2="uni1EE0" k="41" />
+<hkern g1="Tbar" g2="uni1EE1" k="143" />
+<hkern g1="Tbar" g2="uni1EE2" k="41" />
+<hkern g1="Tbar" g2="uni1EE3" k="143" />
+<hkern g1="Tbar" g2="uni1EE5" k="102" />
+<hkern g1="Tbar" g2="uni1EE7" k="102" />
+<hkern g1="Tbar" g2="uni1EE9" k="102" />
+<hkern g1="Tbar" g2="uni1EEB" k="102" />
+<hkern g1="Tbar" g2="uni1EED" k="102" />
+<hkern g1="Tbar" g2="uni1EEF" k="102" />
+<hkern g1="Tbar" g2="uni1EF1" k="102" />
+<hkern g1="Tbar" g2="uni1EF5" k="41" />
+<hkern g1="Tbar" g2="Tcedilla" k="-41" />
+<hkern g1="Utilde" g2="comma" k="41" />
+<hkern g1="Utilde" g2="period" k="41" />
+<hkern g1="Utilde" g2="A" k="20" />
+<hkern g1="Utilde" g2="Agrave" k="20" />
+<hkern g1="Utilde" g2="Aacute" k="20" />
+<hkern g1="Utilde" g2="Acircumflex" k="20" />
+<hkern g1="Utilde" g2="Atilde" k="20" />
+<hkern g1="Utilde" g2="Adieresis" k="20" />
+<hkern g1="Utilde" g2="Aring" k="20" />
+<hkern g1="Utilde" g2="Amacron" k="20" />
+<hkern g1="Utilde" g2="Abreve" k="20" />
+<hkern g1="Utilde" g2="Aogonek" k="20" />
+<hkern g1="Utilde" g2="Aringacute" k="20" />
+<hkern g1="Utilde" g2="quotesinglbase" k="41" />
+<hkern g1="Utilde" g2="quotedblbase" k="41" />
+<hkern g1="Utilde" g2="uni1E00" k="20" />
+<hkern g1="Utilde" g2="uni1EA0" k="20" />
+<hkern g1="Utilde" g2="uni1EA2" k="20" />
+<hkern g1="Utilde" g2="uni1EA4" k="20" />
+<hkern g1="Utilde" g2="uni1EA6" k="20" />
+<hkern g1="Utilde" g2="uni1EA8" k="20" />
+<hkern g1="Utilde" g2="uni1EAA" k="20" />
+<hkern g1="Utilde" g2="uni1EAC" k="20" />
+<hkern g1="Utilde" g2="uni1EAE" k="20" />
+<hkern g1="Utilde" g2="uni1EB0" k="20" />
+<hkern g1="Utilde" g2="uni1EB2" k="20" />
+<hkern g1="Utilde" g2="uni1EB4" k="20" />
+<hkern g1="Utilde" g2="uni1EB6" k="20" />
+<hkern g1="Umacron" g2="comma" k="41" />
+<hkern g1="Umacron" g2="period" k="41" />
+<hkern g1="Umacron" g2="A" k="20" />
+<hkern g1="Umacron" g2="Agrave" k="20" />
+<hkern g1="Umacron" g2="Aacute" k="20" />
+<hkern g1="Umacron" g2="Acircumflex" k="20" />
+<hkern g1="Umacron" g2="Atilde" k="20" />
+<hkern g1="Umacron" g2="Adieresis" k="20" />
+<hkern g1="Umacron" g2="Aring" k="20" />
+<hkern g1="Umacron" g2="Amacron" k="20" />
+<hkern g1="Umacron" g2="Abreve" k="20" />
+<hkern g1="Umacron" g2="Aogonek" k="20" />
+<hkern g1="Umacron" g2="Aringacute" k="20" />
+<hkern g1="Umacron" g2="quotesinglbase" k="41" />
+<hkern g1="Umacron" g2="quotedblbase" k="41" />
+<hkern g1="Umacron" g2="uni1E00" k="20" />
+<hkern g1="Umacron" g2="uni1EA0" k="20" />
+<hkern g1="Umacron" g2="uni1EA2" k="20" />
+<hkern g1="Umacron" g2="uni1EA4" k="20" />
+<hkern g1="Umacron" g2="uni1EA6" k="20" />
+<hkern g1="Umacron" g2="uni1EA8" k="20" />
+<hkern g1="Umacron" g2="uni1EAA" k="20" />
+<hkern g1="Umacron" g2="uni1EAC" k="20" />
+<hkern g1="Umacron" g2="uni1EAE" k="20" />
+<hkern g1="Umacron" g2="uni1EB0" k="20" />
+<hkern g1="Umacron" g2="uni1EB2" k="20" />
+<hkern g1="Umacron" g2="uni1EB4" k="20" />
+<hkern g1="Umacron" g2="uni1EB6" k="20" />
+<hkern g1="Ubreve" g2="comma" k="41" />
+<hkern g1="Ubreve" g2="period" k="41" />
+<hkern g1="Ubreve" g2="A" k="20" />
+<hkern g1="Ubreve" g2="Agrave" k="20" />
+<hkern g1="Ubreve" g2="Aacute" k="20" />
+<hkern g1="Ubreve" g2="Acircumflex" k="20" />
+<hkern g1="Ubreve" g2="Atilde" k="20" />
+<hkern g1="Ubreve" g2="Adieresis" k="20" />
+<hkern g1="Ubreve" g2="Aring" k="20" />
+<hkern g1="Ubreve" g2="Amacron" k="20" />
+<hkern g1="Ubreve" g2="Abreve" k="20" />
+<hkern g1="Ubreve" g2="Aogonek" k="20" />
+<hkern g1="Ubreve" g2="Aringacute" k="20" />
+<hkern g1="Ubreve" g2="quotesinglbase" k="41" />
+<hkern g1="Ubreve" g2="quotedblbase" k="41" />
+<hkern g1="Ubreve" g2="uni1E00" k="20" />
+<hkern g1="Ubreve" g2="uni1EA0" k="20" />
+<hkern g1="Ubreve" g2="uni1EA2" k="20" />
+<hkern g1="Ubreve" g2="uni1EA4" k="20" />
+<hkern g1="Ubreve" g2="uni1EA6" k="20" />
+<hkern g1="Ubreve" g2="uni1EA8" k="20" />
+<hkern g1="Ubreve" g2="uni1EAA" k="20" />
+<hkern g1="Ubreve" g2="uni1EAC" k="20" />
+<hkern g1="Ubreve" g2="uni1EAE" k="20" />
+<hkern g1="Ubreve" g2="uni1EB0" k="20" />
+<hkern g1="Ubreve" g2="uni1EB2" k="20" />
+<hkern g1="Ubreve" g2="uni1EB4" k="20" />
+<hkern g1="Ubreve" g2="uni1EB6" k="20" />
+<hkern g1="Uring" g2="comma" k="41" />
+<hkern g1="Uring" g2="period" k="41" />
+<hkern g1="Uring" g2="A" k="20" />
+<hkern g1="Uring" g2="Agrave" k="20" />
+<hkern g1="Uring" g2="Aacute" k="20" />
+<hkern g1="Uring" g2="Acircumflex" k="20" />
+<hkern g1="Uring" g2="Atilde" k="20" />
+<hkern g1="Uring" g2="Adieresis" k="20" />
+<hkern g1="Uring" g2="Aring" k="20" />
+<hkern g1="Uring" g2="Amacron" k="20" />
+<hkern g1="Uring" g2="Abreve" k="20" />
+<hkern g1="Uring" g2="Aogonek" k="20" />
+<hkern g1="Uring" g2="Aringacute" k="20" />
+<hkern g1="Uring" g2="quotesinglbase" k="41" />
+<hkern g1="Uring" g2="quotedblbase" k="41" />
+<hkern g1="Uring" g2="uni1E00" k="20" />
+<hkern g1="Uring" g2="uni1EA0" k="20" />
+<hkern g1="Uring" g2="uni1EA2" k="20" />
+<hkern g1="Uring" g2="uni1EA4" k="20" />
+<hkern g1="Uring" g2="uni1EA6" k="20" />
+<hkern g1="Uring" g2="uni1EA8" k="20" />
+<hkern g1="Uring" g2="uni1EAA" k="20" />
+<hkern g1="Uring" g2="uni1EAC" k="20" />
+<hkern g1="Uring" g2="uni1EAE" k="20" />
+<hkern g1="Uring" g2="uni1EB0" k="20" />
+<hkern g1="Uring" g2="uni1EB2" k="20" />
+<hkern g1="Uring" g2="uni1EB4" k="20" />
+<hkern g1="Uring" g2="uni1EB6" k="20" />
+<hkern g1="Uhungarumlaut" g2="comma" k="41" />
+<hkern g1="Uhungarumlaut" g2="period" k="41" />
+<hkern g1="Uhungarumlaut" g2="A" k="20" />
+<hkern g1="Uhungarumlaut" g2="Agrave" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="Acircumflex" k="20" />
+<hkern g1="Uhungarumlaut" g2="Atilde" k="20" />
+<hkern g1="Uhungarumlaut" g2="Adieresis" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aring" k="20" />
+<hkern g1="Uhungarumlaut" g2="Amacron" k="20" />
+<hkern g1="Uhungarumlaut" g2="Abreve" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aogonek" k="20" />
+<hkern g1="Uhungarumlaut" g2="Aringacute" k="20" />
+<hkern g1="Uhungarumlaut" g2="quotesinglbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="quotedblbase" k="41" />
+<hkern g1="Uhungarumlaut" g2="uni1E00" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA6" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EA8" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAA" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAC" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EAE" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB0" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB2" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB4" k="20" />
+<hkern g1="Uhungarumlaut" g2="uni1EB6" k="20" />
+<hkern g1="Uogonek" g2="comma" k="41" />
+<hkern g1="Uogonek" g2="period" k="41" />
+<hkern g1="Uogonek" g2="A" k="20" />
+<hkern g1="Uogonek" g2="Agrave" k="20" />
+<hkern g1="Uogonek" g2="Aacute" k="20" />
+<hkern g1="Uogonek" g2="Acircumflex" k="20" />
+<hkern g1="Uogonek" g2="Atilde" k="20" />
+<hkern g1="Uogonek" g2="Adieresis" k="20" />
+<hkern g1="Uogonek" g2="Aring" k="20" />
+<hkern g1="Uogonek" g2="Amacron" k="20" />
+<hkern g1="Uogonek" g2="Abreve" k="20" />
+<hkern g1="Uogonek" g2="Aogonek" k="20" />
+<hkern g1="Uogonek" g2="Aringacute" k="20" />
+<hkern g1="Uogonek" g2="quotesinglbase" k="41" />
+<hkern g1="Uogonek" g2="quotedblbase" k="41" />
+<hkern g1="Uogonek" g2="uni1E00" k="20" />
+<hkern g1="Uogonek" g2="uni1EA0" k="20" />
+<hkern g1="Uogonek" g2="uni1EA2" k="20" />
+<hkern g1="Uogonek" g2="uni1EA4" k="20" />
+<hkern g1="Uogonek" g2="uni1EA6" k="20" />
+<hkern g1="Uogonek" g2="uni1EA8" k="20" />
+<hkern g1="Uogonek" g2="uni1EAA" k="20" />
+<hkern g1="Uogonek" g2="uni1EAC" k="20" />
+<hkern g1="Uogonek" g2="uni1EAE" k="20" />
+<hkern g1="Uogonek" g2="uni1EB0" k="20" />
+<hkern g1="Uogonek" g2="uni1EB2" k="20" />
+<hkern g1="Uogonek" g2="uni1EB4" k="20" />
+<hkern g1="Uogonek" g2="uni1EB6" k="20" />
+<hkern g1="Wcircumflex" g2="comma" k="102" />
+<hkern g1="Wcircumflex" g2="period" k="102" />
+<hkern g1="Wcircumflex" g2="question" k="-41" />
+<hkern g1="Wcircumflex" g2="A" k="82" />
+<hkern g1="Wcircumflex" g2="C" k="20" />
+<hkern g1="Wcircumflex" g2="G" k="20" />
+<hkern g1="Wcircumflex" g2="O" k="20" />
+<hkern g1="Wcircumflex" g2="Q" k="20" />
+<hkern g1="Wcircumflex" g2="a" k="41" />
+<hkern g1="Wcircumflex" g2="c" k="41" />
+<hkern g1="Wcircumflex" g2="d" k="41" />
+<hkern g1="Wcircumflex" g2="e" k="41" />
+<hkern g1="Wcircumflex" g2="g" k="20" />
+<hkern g1="Wcircumflex" g2="m" k="20" />
+<hkern g1="Wcircumflex" g2="n" k="20" />
+<hkern g1="Wcircumflex" g2="o" k="41" />
+<hkern g1="Wcircumflex" g2="p" k="20" />
+<hkern g1="Wcircumflex" g2="q" k="41" />
+<hkern g1="Wcircumflex" g2="r" k="20" />
+<hkern g1="Wcircumflex" g2="s" k="20" />
+<hkern g1="Wcircumflex" g2="u" k="20" />
+<hkern g1="Wcircumflex" g2="Agrave" k="82" />
+<hkern g1="Wcircumflex" g2="Aacute" k="82" />
+<hkern g1="Wcircumflex" g2="Acircumflex" k="82" />
+<hkern g1="Wcircumflex" g2="Atilde" k="82" />
+<hkern g1="Wcircumflex" g2="Adieresis" k="82" />
+<hkern g1="Wcircumflex" g2="Aring" k="82" />
+<hkern g1="Wcircumflex" g2="Ccedilla" k="20" />
+<hkern g1="Wcircumflex" g2="Ograve" k="20" />
+<hkern g1="Wcircumflex" g2="Oacute" k="20" />
+<hkern g1="Wcircumflex" g2="Ocircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Otilde" k="20" />
+<hkern g1="Wcircumflex" g2="Odieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Oslash" k="20" />
+<hkern g1="Wcircumflex" g2="agrave" k="41" />
+<hkern g1="Wcircumflex" g2="aacute" k="41" />
+<hkern g1="Wcircumflex" g2="acircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="atilde" k="41" />
+<hkern g1="Wcircumflex" g2="adieresis" k="41" />
+<hkern g1="Wcircumflex" g2="aring" k="41" />
+<hkern g1="Wcircumflex" g2="ae" k="41" />
+<hkern g1="Wcircumflex" g2="ccedilla" k="41" />
+<hkern g1="Wcircumflex" g2="egrave" k="41" />
+<hkern g1="Wcircumflex" g2="eacute" k="41" />
+<hkern g1="Wcircumflex" g2="ecircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="edieresis" k="41" />
+<hkern g1="Wcircumflex" g2="ograve" k="41" />
+<hkern g1="Wcircumflex" g2="oacute" k="41" />
+<hkern g1="Wcircumflex" g2="ocircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="otilde" k="41" />
+<hkern g1="Wcircumflex" g2="odieresis" k="41" />
+<hkern g1="Wcircumflex" g2="oslash" k="41" />
+<hkern g1="Wcircumflex" g2="ugrave" k="20" />
+<hkern g1="Wcircumflex" g2="uacute" k="20" />
+<hkern g1="Wcircumflex" g2="ucircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="udieresis" k="20" />
+<hkern g1="Wcircumflex" g2="Amacron" k="82" />
+<hkern g1="Wcircumflex" g2="amacron" k="41" />
+<hkern g1="Wcircumflex" g2="Abreve" k="82" />
+<hkern g1="Wcircumflex" g2="abreve" k="41" />
+<hkern g1="Wcircumflex" g2="Aogonek" k="82" />
+<hkern g1="Wcircumflex" g2="aogonek" k="41" />
+<hkern g1="Wcircumflex" g2="Cacute" k="20" />
+<hkern g1="Wcircumflex" g2="cacute" k="41" />
+<hkern g1="Wcircumflex" g2="Ccircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="ccircumflex" k="41" />
+<hkern g1="Wcircumflex" g2="Cdot" k="20" />
+<hkern g1="Wcircumflex" g2="cdot" k="41" />
+<hkern g1="Wcircumflex" g2="Ccaron" k="20" />
+<hkern g1="Wcircumflex" g2="ccaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcaron" k="41" />
+<hkern g1="Wcircumflex" g2="dcroat" k="41" />
+<hkern g1="Wcircumflex" g2="emacron" k="41" />
+<hkern g1="Wcircumflex" g2="ebreve" k="41" />
+<hkern g1="Wcircumflex" g2="edotaccent" k="41" />
+<hkern g1="Wcircumflex" g2="eogonek" k="41" />
+<hkern g1="Wcircumflex" g2="ecaron" k="41" />
+<hkern g1="Wcircumflex" g2="Gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="gcircumflex" k="20" />
+<hkern g1="Wcircumflex" g2="Gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="gbreve" k="20" />
+<hkern g1="Wcircumflex" g2="Gdot" k="20" />
+<hkern g1="Wcircumflex" g2="gdot" k="20" />
+<hkern g1="Wcircumflex" g2="Gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="gcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="kgreenlandic" k="20" />
+<hkern g1="Wcircumflex" g2="nacute" k="20" />
+<hkern g1="Wcircumflex" g2="ncommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="eng" k="20" />
+<hkern g1="Wcircumflex" g2="Omacron" k="20" />
+<hkern g1="Wcircumflex" g2="omacron" k="41" />
+<hkern g1="Wcircumflex" g2="Obreve" k="20" />
+<hkern g1="Wcircumflex" g2="obreve" k="41" />
+<hkern g1="Wcircumflex" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="ohungarumlaut" k="41" />
+<hkern g1="Wcircumflex" g2="OE" k="20" />
+<hkern g1="Wcircumflex" g2="oe" k="41" />
+<hkern g1="Wcircumflex" g2="racute" k="20" />
+<hkern g1="Wcircumflex" g2="rcommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="sacute" k="20" />
+<hkern g1="Wcircumflex" g2="scedilla" k="20" />
+<hkern g1="Wcircumflex" g2="utilde" k="20" />
+<hkern g1="Wcircumflex" g2="umacron" k="20" />
+<hkern g1="Wcircumflex" g2="ubreve" k="20" />
+<hkern g1="Wcircumflex" g2="uring" k="20" />
+<hkern g1="Wcircumflex" g2="uhungarumlaut" k="20" />
+<hkern g1="Wcircumflex" g2="uogonek" k="20" />
+<hkern g1="Wcircumflex" g2="Aringacute" k="82" />
+<hkern g1="Wcircumflex" g2="aringacute" k="41" />
+<hkern g1="Wcircumflex" g2="aeacute" k="41" />
+<hkern g1="Wcircumflex" g2="Oslashacute" k="20" />
+<hkern g1="Wcircumflex" g2="oslashacute" k="41" />
+<hkern g1="Wcircumflex" g2="scommaaccent" k="20" />
+<hkern g1="Wcircumflex" g2="quotesinglbase" k="102" />
+<hkern g1="Wcircumflex" g2="quotedblbase" k="102" />
+<hkern g1="Wcircumflex" g2="uni1E3F" k="20" />
+<hkern g1="Wcircumflex" g2="uni1E00" k="82" />
+<hkern g1="Wcircumflex" g2="uni1E01" k="41" />
+<hkern g1="Wcircumflex" g2="Ohorn" k="20" />
+<hkern g1="Wcircumflex" g2="ohorn" k="41" />
+<hkern g1="Wcircumflex" g2="uhorn" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EA0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EA6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA8" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EA9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAA" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAC" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EAE" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EAF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB0" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB2" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB4" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB6" k="82" />
+<hkern g1="Wcircumflex" g2="uni1EB7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EB9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EBF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EC7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ECE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ECF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED4" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED5" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED6" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED7" k="41" />
+<hkern g1="Wcircumflex" g2="uni1ED8" k="20" />
+<hkern g1="Wcircumflex" g2="uni1ED9" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDA" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDB" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDC" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDD" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EDE" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EDF" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE0" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE1" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE2" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE3" k="41" />
+<hkern g1="Wcircumflex" g2="uni1EE5" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE7" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EE9" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEB" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EED" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EEF" k="20" />
+<hkern g1="Wcircumflex" g2="uni1EF1" k="20" />
+<hkern g1="wcircumflex" g2="quotedbl" k="-82" />
+<hkern g1="wcircumflex" g2="quotesingle" k="-82" />
+<hkern g1="wcircumflex" g2="comma" k="82" />
+<hkern g1="wcircumflex" g2="period" k="82" />
+<hkern g1="wcircumflex" g2="question" k="-41" />
+<hkern g1="wcircumflex" g2="quoteright" k="-82" />
+<hkern g1="wcircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="wcircumflex" g2="quotedblright" k="-82" />
+<hkern g1="wcircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ycircumflex" g2="comma" k="123" />
+<hkern g1="Ycircumflex" g2="period" k="123" />
+<hkern g1="Ycircumflex" g2="question" k="-41" />
+<hkern g1="Ycircumflex" g2="A" k="123" />
+<hkern g1="Ycircumflex" g2="C" k="41" />
+<hkern g1="Ycircumflex" g2="G" k="41" />
+<hkern g1="Ycircumflex" g2="O" k="41" />
+<hkern g1="Ycircumflex" g2="Q" k="41" />
+<hkern g1="Ycircumflex" g2="a" k="102" />
+<hkern g1="Ycircumflex" g2="c" k="102" />
+<hkern g1="Ycircumflex" g2="d" k="102" />
+<hkern g1="Ycircumflex" g2="e" k="102" />
+<hkern g1="Ycircumflex" g2="g" k="41" />
+<hkern g1="Ycircumflex" g2="m" k="61" />
+<hkern g1="Ycircumflex" g2="n" k="61" />
+<hkern g1="Ycircumflex" g2="o" k="102" />
+<hkern g1="Ycircumflex" g2="p" k="61" />
+<hkern g1="Ycircumflex" g2="q" k="102" />
+<hkern g1="Ycircumflex" g2="r" k="61" />
+<hkern g1="Ycircumflex" g2="s" k="82" />
+<hkern g1="Ycircumflex" g2="u" k="61" />
+<hkern g1="Ycircumflex" g2="z" k="41" />
+<hkern g1="Ycircumflex" g2="Agrave" k="123" />
+<hkern g1="Ycircumflex" g2="Aacute" k="123" />
+<hkern g1="Ycircumflex" g2="Acircumflex" k="123" />
+<hkern g1="Ycircumflex" g2="Atilde" k="123" />
+<hkern g1="Ycircumflex" g2="Adieresis" k="123" />
+<hkern g1="Ycircumflex" g2="Aring" k="123" />
+<hkern g1="Ycircumflex" g2="Ccedilla" k="41" />
+<hkern g1="Ycircumflex" g2="Ograve" k="41" />
+<hkern g1="Ycircumflex" g2="Oacute" k="41" />
+<hkern g1="Ycircumflex" g2="Ocircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Otilde" k="41" />
+<hkern g1="Ycircumflex" g2="Odieresis" k="41" />
+<hkern g1="Ycircumflex" g2="Oslash" k="41" />
+<hkern g1="Ycircumflex" g2="agrave" k="102" />
+<hkern g1="Ycircumflex" g2="aacute" k="102" />
+<hkern g1="Ycircumflex" g2="acircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="atilde" k="102" />
+<hkern g1="Ycircumflex" g2="adieresis" k="102" />
+<hkern g1="Ycircumflex" g2="aring" k="102" />
+<hkern g1="Ycircumflex" g2="ae" k="102" />
+<hkern g1="Ycircumflex" g2="ccedilla" k="102" />
+<hkern g1="Ycircumflex" g2="egrave" k="102" />
+<hkern g1="Ycircumflex" g2="eacute" k="102" />
+<hkern g1="Ycircumflex" g2="ecircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="edieresis" k="102" />
+<hkern g1="Ycircumflex" g2="ograve" k="102" />
+<hkern g1="Ycircumflex" g2="oacute" k="102" />
+<hkern g1="Ycircumflex" g2="ocircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="otilde" k="102" />
+<hkern g1="Ycircumflex" g2="odieresis" k="102" />
+<hkern g1="Ycircumflex" g2="oslash" k="102" />
+<hkern g1="Ycircumflex" g2="ugrave" k="61" />
+<hkern g1="Ycircumflex" g2="uacute" k="61" />
+<hkern g1="Ycircumflex" g2="ucircumflex" k="61" />
+<hkern g1="Ycircumflex" g2="udieresis" k="61" />
+<hkern g1="Ycircumflex" g2="Amacron" k="123" />
+<hkern g1="Ycircumflex" g2="amacron" k="102" />
+<hkern g1="Ycircumflex" g2="Abreve" k="123" />
+<hkern g1="Ycircumflex" g2="abreve" k="102" />
+<hkern g1="Ycircumflex" g2="Aogonek" k="123" />
+<hkern g1="Ycircumflex" g2="aogonek" k="102" />
+<hkern g1="Ycircumflex" g2="Cacute" k="41" />
+<hkern g1="Ycircumflex" g2="cacute" k="102" />
+<hkern g1="Ycircumflex" g2="Ccircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="ccircumflex" k="102" />
+<hkern g1="Ycircumflex" g2="Cdot" k="41" />
+<hkern g1="Ycircumflex" g2="cdot" k="102" />
+<hkern g1="Ycircumflex" g2="Ccaron" k="41" />
+<hkern g1="Ycircumflex" g2="ccaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcaron" k="102" />
+<hkern g1="Ycircumflex" g2="dcroat" k="102" />
+<hkern g1="Ycircumflex" g2="emacron" k="102" />
+<hkern g1="Ycircumflex" g2="ebreve" k="102" />
+<hkern g1="Ycircumflex" g2="edotaccent" k="102" />
+<hkern g1="Ycircumflex" g2="eogonek" k="102" />
+<hkern g1="Ycircumflex" g2="ecaron" k="102" />
+<hkern g1="Ycircumflex" g2="Gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="gcircumflex" k="41" />
+<hkern g1="Ycircumflex" g2="Gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="gbreve" k="41" />
+<hkern g1="Ycircumflex" g2="Gdot" k="41" />
+<hkern g1="Ycircumflex" g2="gdot" k="41" />
+<hkern g1="Ycircumflex" g2="Gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="gcommaaccent" k="41" />
+<hkern g1="Ycircumflex" g2="kgreenlandic" k="61" />
+<hkern g1="Ycircumflex" g2="nacute" k="61" />
+<hkern g1="Ycircumflex" g2="ncommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="eng" k="61" />
+<hkern g1="Ycircumflex" g2="Omacron" k="41" />
+<hkern g1="Ycircumflex" g2="omacron" k="102" />
+<hkern g1="Ycircumflex" g2="Obreve" k="41" />
+<hkern g1="Ycircumflex" g2="obreve" k="102" />
+<hkern g1="Ycircumflex" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ycircumflex" g2="ohungarumlaut" k="102" />
+<hkern g1="Ycircumflex" g2="OE" k="41" />
+<hkern g1="Ycircumflex" g2="oe" k="102" />
+<hkern g1="Ycircumflex" g2="racute" k="61" />
+<hkern g1="Ycircumflex" g2="rcommaaccent" k="61" />
+<hkern g1="Ycircumflex" g2="sacute" k="82" />
+<hkern g1="Ycircumflex" g2="scedilla" k="82" />
+<hkern g1="Ycircumflex" g2="utilde" k="61" />
+<hkern g1="Ycircumflex" g2="umacron" k="61" />
+<hkern g1="Ycircumflex" g2="ubreve" k="61" />
+<hkern g1="Ycircumflex" g2="uring" k="61" />
+<hkern g1="Ycircumflex" g2="uhungarumlaut" k="61" />
+<hkern g1="Ycircumflex" g2="uogonek" k="61" />
+<hkern g1="Ycircumflex" g2="zacute" k="41" />
+<hkern g1="Ycircumflex" g2="zdotaccent" k="41" />
+<hkern g1="Ycircumflex" g2="zcaron" k="41" />
+<hkern g1="Ycircumflex" g2="Aringacute" k="123" />
+<hkern g1="Ycircumflex" g2="aringacute" k="102" />
+<hkern g1="Ycircumflex" g2="aeacute" k="102" />
+<hkern g1="Ycircumflex" g2="Oslashacute" k="41" />
+<hkern g1="Ycircumflex" g2="oslashacute" k="102" />
+<hkern g1="Ycircumflex" g2="scommaaccent" k="82" />
+<hkern g1="Ycircumflex" g2="quotesinglbase" k="123" />
+<hkern g1="Ycircumflex" g2="quotedblbase" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E3F" k="61" />
+<hkern g1="Ycircumflex" g2="uni1E00" k="123" />
+<hkern g1="Ycircumflex" g2="uni1E01" k="102" />
+<hkern g1="Ycircumflex" g2="Ohorn" k="41" />
+<hkern g1="Ycircumflex" g2="ohorn" k="102" />
+<hkern g1="Ycircumflex" g2="uhorn" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EA0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EA6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA8" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EA9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAA" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAC" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EAE" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EAF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB0" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB2" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB4" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB6" k="123" />
+<hkern g1="Ycircumflex" g2="uni1EB7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EB9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EBF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EC7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ECE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ECF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED4" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED5" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED6" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED7" k="102" />
+<hkern g1="Ycircumflex" g2="uni1ED8" k="41" />
+<hkern g1="Ycircumflex" g2="uni1ED9" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDA" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDB" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDC" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDD" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EDE" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EDF" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE0" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE1" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE2" k="41" />
+<hkern g1="Ycircumflex" g2="uni1EE3" k="102" />
+<hkern g1="Ycircumflex" g2="uni1EE5" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE7" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EE9" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEB" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EED" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EEF" k="61" />
+<hkern g1="Ycircumflex" g2="uni1EF1" k="61" />
+<hkern g1="ycircumflex" g2="quotedbl" k="-82" />
+<hkern g1="ycircumflex" g2="quotesingle" k="-82" />
+<hkern g1="ycircumflex" g2="comma" k="82" />
+<hkern g1="ycircumflex" g2="period" k="82" />
+<hkern g1="ycircumflex" g2="question" k="-41" />
+<hkern g1="ycircumflex" g2="quoteright" k="-82" />
+<hkern g1="ycircumflex" g2="quotesinglbase" k="82" />
+<hkern g1="ycircumflex" g2="quotedblright" k="-82" />
+<hkern g1="ycircumflex" g2="quotedblbase" k="82" />
+<hkern g1="Ydieresis" g2="comma" k="123" />
+<hkern g1="Ydieresis" g2="period" k="123" />
+<hkern g1="Ydieresis" g2="question" k="-41" />
+<hkern g1="Ydieresis" g2="A" k="123" />
+<hkern g1="Ydieresis" g2="C" k="41" />
+<hkern g1="Ydieresis" g2="G" k="41" />
+<hkern g1="Ydieresis" g2="O" k="41" />
+<hkern g1="Ydieresis" g2="Q" k="41" />
+<hkern g1="Ydieresis" g2="a" k="102" />
+<hkern g1="Ydieresis" g2="c" k="102" />
+<hkern g1="Ydieresis" g2="d" k="102" />
+<hkern g1="Ydieresis" g2="e" k="102" />
+<hkern g1="Ydieresis" g2="g" k="41" />
+<hkern g1="Ydieresis" g2="m" k="61" />
+<hkern g1="Ydieresis" g2="n" k="61" />
+<hkern g1="Ydieresis" g2="o" k="102" />
+<hkern g1="Ydieresis" g2="p" k="61" />
+<hkern g1="Ydieresis" g2="q" k="102" />
+<hkern g1="Ydieresis" g2="r" k="61" />
+<hkern g1="Ydieresis" g2="s" k="82" />
+<hkern g1="Ydieresis" g2="u" k="61" />
+<hkern g1="Ydieresis" g2="z" k="41" />
+<hkern g1="Ydieresis" g2="Agrave" k="123" />
+<hkern g1="Ydieresis" g2="Aacute" k="123" />
+<hkern g1="Ydieresis" g2="Acircumflex" k="123" />
+<hkern g1="Ydieresis" g2="Atilde" k="123" />
+<hkern g1="Ydieresis" g2="Adieresis" k="123" />
+<hkern g1="Ydieresis" g2="Aring" k="123" />
+<hkern g1="Ydieresis" g2="Ccedilla" k="41" />
+<hkern g1="Ydieresis" g2="Ograve" k="41" />
+<hkern g1="Ydieresis" g2="Oacute" k="41" />
+<hkern g1="Ydieresis" g2="Ocircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Otilde" k="41" />
+<hkern g1="Ydieresis" g2="Odieresis" k="41" />
+<hkern g1="Ydieresis" g2="Oslash" k="41" />
+<hkern g1="Ydieresis" g2="agrave" k="102" />
+<hkern g1="Ydieresis" g2="aacute" k="102" />
+<hkern g1="Ydieresis" g2="acircumflex" k="102" />
+<hkern g1="Ydieresis" g2="atilde" k="102" />
+<hkern g1="Ydieresis" g2="adieresis" k="102" />
+<hkern g1="Ydieresis" g2="aring" k="102" />
+<hkern g1="Ydieresis" g2="ae" k="102" />
+<hkern g1="Ydieresis" g2="ccedilla" k="102" />
+<hkern g1="Ydieresis" g2="egrave" k="102" />
+<hkern g1="Ydieresis" g2="eacute" k="102" />
+<hkern g1="Ydieresis" g2="ecircumflex" k="102" />
+<hkern g1="Ydieresis" g2="edieresis" k="102" />
+<hkern g1="Ydieresis" g2="ograve" k="102" />
+<hkern g1="Ydieresis" g2="oacute" k="102" />
+<hkern g1="Ydieresis" g2="ocircumflex" k="102" />
+<hkern g1="Ydieresis" g2="otilde" k="102" />
+<hkern g1="Ydieresis" g2="odieresis" k="102" />
+<hkern g1="Ydieresis" g2="oslash" k="102" />
+<hkern g1="Ydieresis" g2="ugrave" k="61" />
+<hkern g1="Ydieresis" g2="uacute" k="61" />
+<hkern g1="Ydieresis" g2="ucircumflex" k="61" />
+<hkern g1="Ydieresis" g2="udieresis" k="61" />
+<hkern g1="Ydieresis" g2="Amacron" k="123" />
+<hkern g1="Ydieresis" g2="amacron" k="102" />
+<hkern g1="Ydieresis" g2="Abreve" k="123" />
+<hkern g1="Ydieresis" g2="abreve" k="102" />
+<hkern g1="Ydieresis" g2="Aogonek" k="123" />
+<hkern g1="Ydieresis" g2="aogonek" k="102" />
+<hkern g1="Ydieresis" g2="Cacute" k="41" />
+<hkern g1="Ydieresis" g2="cacute" k="102" />
+<hkern g1="Ydieresis" g2="Ccircumflex" k="41" />
+<hkern g1="Ydieresis" g2="ccircumflex" k="102" />
+<hkern g1="Ydieresis" g2="Cdot" k="41" />
+<hkern g1="Ydieresis" g2="cdot" k="102" />
+<hkern g1="Ydieresis" g2="Ccaron" k="41" />
+<hkern g1="Ydieresis" g2="ccaron" k="102" />
+<hkern g1="Ydieresis" g2="dcaron" k="102" />
+<hkern g1="Ydieresis" g2="dcroat" k="102" />
+<hkern g1="Ydieresis" g2="emacron" k="102" />
+<hkern g1="Ydieresis" g2="ebreve" k="102" />
+<hkern g1="Ydieresis" g2="edotaccent" k="102" />
+<hkern g1="Ydieresis" g2="eogonek" k="102" />
+<hkern g1="Ydieresis" g2="ecaron" k="102" />
+<hkern g1="Ydieresis" g2="Gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="gcircumflex" k="41" />
+<hkern g1="Ydieresis" g2="Gbreve" k="41" />
+<hkern g1="Ydieresis" g2="gbreve" k="41" />
+<hkern g1="Ydieresis" g2="Gdot" k="41" />
+<hkern g1="Ydieresis" g2="gdot" k="41" />
+<hkern g1="Ydieresis" g2="Gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="gcommaaccent" k="41" />
+<hkern g1="Ydieresis" g2="kgreenlandic" k="61" />
+<hkern g1="Ydieresis" g2="nacute" k="61" />
+<hkern g1="Ydieresis" g2="ncommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="eng" k="61" />
+<hkern g1="Ydieresis" g2="Omacron" k="41" />
+<hkern g1="Ydieresis" g2="omacron" k="102" />
+<hkern g1="Ydieresis" g2="Obreve" k="41" />
+<hkern g1="Ydieresis" g2="obreve" k="102" />
+<hkern g1="Ydieresis" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ydieresis" g2="ohungarumlaut" k="102" />
+<hkern g1="Ydieresis" g2="OE" k="41" />
+<hkern g1="Ydieresis" g2="oe" k="102" />
+<hkern g1="Ydieresis" g2="racute" k="61" />
+<hkern g1="Ydieresis" g2="rcommaaccent" k="61" />
+<hkern g1="Ydieresis" g2="sacute" k="82" />
+<hkern g1="Ydieresis" g2="scedilla" k="82" />
+<hkern g1="Ydieresis" g2="utilde" k="61" />
+<hkern g1="Ydieresis" g2="umacron" k="61" />
+<hkern g1="Ydieresis" g2="ubreve" k="61" />
+<hkern g1="Ydieresis" g2="uring" k="61" />
+<hkern g1="Ydieresis" g2="uhungarumlaut" k="61" />
+<hkern g1="Ydieresis" g2="uogonek" k="61" />
+<hkern g1="Ydieresis" g2="zacute" k="41" />
+<hkern g1="Ydieresis" g2="zdotaccent" k="41" />
+<hkern g1="Ydieresis" g2="zcaron" k="41" />
+<hkern g1="Ydieresis" g2="Aringacute" k="123" />
+<hkern g1="Ydieresis" g2="aringacute" k="102" />
+<hkern g1="Ydieresis" g2="aeacute" k="102" />
+<hkern g1="Ydieresis" g2="Oslashacute" k="41" />
+<hkern g1="Ydieresis" g2="oslashacute" k="102" />
+<hkern g1="Ydieresis" g2="scommaaccent" k="82" />
+<hkern g1="Ydieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Ydieresis" g2="quotedblbase" k="123" />
+<hkern g1="Ydieresis" g2="uni1E3F" k="61" />
+<hkern g1="Ydieresis" g2="uni1E00" k="123" />
+<hkern g1="Ydieresis" g2="uni1E01" k="102" />
+<hkern g1="Ydieresis" g2="Ohorn" k="41" />
+<hkern g1="Ydieresis" g2="ohorn" k="102" />
+<hkern g1="Ydieresis" g2="uhorn" k="61" />
+<hkern g1="Ydieresis" g2="uni1EA0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EA6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA8" k="123" />
+<hkern g1="Ydieresis" g2="uni1EA9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAA" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAC" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EAE" k="123" />
+<hkern g1="Ydieresis" g2="uni1EAF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB0" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB2" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB4" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB6" k="123" />
+<hkern g1="Ydieresis" g2="uni1EB7" k="102" />
+<hkern g1="Ydieresis" g2="uni1EB9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EBF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC5" k="102" />
+<hkern g1="Ydieresis" g2="uni1EC7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECC" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECD" k="102" />
+<hkern g1="Ydieresis" g2="uni1ECE" k="41" />
+<hkern g1="Ydieresis" g2="uni1ECF" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED0" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED1" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED2" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED4" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED5" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED6" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED7" k="102" />
+<hkern g1="Ydieresis" g2="uni1ED8" k="41" />
+<hkern g1="Ydieresis" g2="uni1ED9" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDA" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDB" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDC" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDD" k="102" />
+<hkern g1="Ydieresis" g2="uni1EDE" k="41" />
+<hkern g1="Ydieresis" g2="uni1EDF" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE0" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE1" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE2" k="41" />
+<hkern g1="Ydieresis" g2="uni1EE3" k="102" />
+<hkern g1="Ydieresis" g2="uni1EE5" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE7" k="61" />
+<hkern g1="Ydieresis" g2="uni1EE9" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEB" k="61" />
+<hkern g1="Ydieresis" g2="uni1EED" k="61" />
+<hkern g1="Ydieresis" g2="uni1EEF" k="61" />
+<hkern g1="Ydieresis" g2="uni1EF1" k="61" />
+<hkern g1="Zacute" g2="C" k="20" />
+<hkern g1="Zacute" g2="G" k="20" />
+<hkern g1="Zacute" g2="O" k="20" />
+<hkern g1="Zacute" g2="Q" k="20" />
+<hkern g1="Zacute" g2="Ccedilla" k="20" />
+<hkern g1="Zacute" g2="Ograve" k="20" />
+<hkern g1="Zacute" g2="Oacute" k="20" />
+<hkern g1="Zacute" g2="Ocircumflex" k="20" />
+<hkern g1="Zacute" g2="Otilde" k="20" />
+<hkern g1="Zacute" g2="Odieresis" k="20" />
+<hkern g1="Zacute" g2="Oslash" k="20" />
+<hkern g1="Zacute" g2="Cacute" k="20" />
+<hkern g1="Zacute" g2="Ccircumflex" k="20" />
+<hkern g1="Zacute" g2="Cdot" k="20" />
+<hkern g1="Zacute" g2="Ccaron" k="20" />
+<hkern g1="Zacute" g2="Gcircumflex" k="20" />
+<hkern g1="Zacute" g2="Gbreve" k="20" />
+<hkern g1="Zacute" g2="Gdot" k="20" />
+<hkern g1="Zacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Zacute" g2="Omacron" k="20" />
+<hkern g1="Zacute" g2="Obreve" k="20" />
+<hkern g1="Zacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zacute" g2="OE" k="20" />
+<hkern g1="Zacute" g2="Oslashacute" k="20" />
+<hkern g1="Zacute" g2="Ohorn" k="20" />
+<hkern g1="Zacute" g2="uni1ECC" k="20" />
+<hkern g1="Zacute" g2="uni1ECE" k="20" />
+<hkern g1="Zacute" g2="uni1ED0" k="20" />
+<hkern g1="Zacute" g2="uni1ED2" k="20" />
+<hkern g1="Zacute" g2="uni1ED4" k="20" />
+<hkern g1="Zacute" g2="uni1ED6" k="20" />
+<hkern g1="Zacute" g2="uni1ED8" k="20" />
+<hkern g1="Zacute" g2="uni1EDA" k="20" />
+<hkern g1="Zacute" g2="uni1EDC" k="20" />
+<hkern g1="Zacute" g2="uni1EDE" k="20" />
+<hkern g1="Zacute" g2="uni1EE0" k="20" />
+<hkern g1="Zacute" g2="uni1EE2" k="20" />
+<hkern g1="Zdotaccent" g2="C" k="20" />
+<hkern g1="Zdotaccent" g2="G" k="20" />
+<hkern g1="Zdotaccent" g2="O" k="20" />
+<hkern g1="Zdotaccent" g2="Q" k="20" />
+<hkern g1="Zdotaccent" g2="Ccedilla" k="20" />
+<hkern g1="Zdotaccent" g2="Ograve" k="20" />
+<hkern g1="Zdotaccent" g2="Oacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ocircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Otilde" k="20" />
+<hkern g1="Zdotaccent" g2="Odieresis" k="20" />
+<hkern g1="Zdotaccent" g2="Oslash" k="20" />
+<hkern g1="Zdotaccent" g2="Cacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ccircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Cdot" k="20" />
+<hkern g1="Zdotaccent" g2="Ccaron" k="20" />
+<hkern g1="Zdotaccent" g2="Gcircumflex" k="20" />
+<hkern g1="Zdotaccent" g2="Gbreve" k="20" />
+<hkern g1="Zdotaccent" g2="Gdot" k="20" />
+<hkern g1="Zdotaccent" g2="Gcommaaccent" k="20" />
+<hkern g1="Zdotaccent" g2="Omacron" k="20" />
+<hkern g1="Zdotaccent" g2="Obreve" k="20" />
+<hkern g1="Zdotaccent" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zdotaccent" g2="OE" k="20" />
+<hkern g1="Zdotaccent" g2="Oslashacute" k="20" />
+<hkern g1="Zdotaccent" g2="Ohorn" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ECE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED2" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED4" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED6" k="20" />
+<hkern g1="Zdotaccent" g2="uni1ED8" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDA" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDC" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EDE" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE0" k="20" />
+<hkern g1="Zdotaccent" g2="uni1EE2" k="20" />
+<hkern g1="Zcaron" g2="C" k="20" />
+<hkern g1="Zcaron" g2="G" k="20" />
+<hkern g1="Zcaron" g2="O" k="20" />
+<hkern g1="Zcaron" g2="Q" k="20" />
+<hkern g1="Zcaron" g2="Ccedilla" k="20" />
+<hkern g1="Zcaron" g2="Ograve" k="20" />
+<hkern g1="Zcaron" g2="Oacute" k="20" />
+<hkern g1="Zcaron" g2="Ocircumflex" k="20" />
+<hkern g1="Zcaron" g2="Otilde" k="20" />
+<hkern g1="Zcaron" g2="Odieresis" k="20" />
+<hkern g1="Zcaron" g2="Oslash" k="20" />
+<hkern g1="Zcaron" g2="Cacute" k="20" />
+<hkern g1="Zcaron" g2="Ccircumflex" k="20" />
+<hkern g1="Zcaron" g2="Cdot" k="20" />
+<hkern g1="Zcaron" g2="Ccaron" k="20" />
+<hkern g1="Zcaron" g2="Gcircumflex" k="20" />
+<hkern g1="Zcaron" g2="Gbreve" k="20" />
+<hkern g1="Zcaron" g2="Gdot" k="20" />
+<hkern g1="Zcaron" g2="Gcommaaccent" k="20" />
+<hkern g1="Zcaron" g2="Omacron" k="20" />
+<hkern g1="Zcaron" g2="Obreve" k="20" />
+<hkern g1="Zcaron" g2="Ohungarumlaut" k="20" />
+<hkern g1="Zcaron" g2="OE" k="20" />
+<hkern g1="Zcaron" g2="Oslashacute" k="20" />
+<hkern g1="Zcaron" g2="Ohorn" k="20" />
+<hkern g1="Zcaron" g2="uni1ECC" k="20" />
+<hkern g1="Zcaron" g2="uni1ECE" k="20" />
+<hkern g1="Zcaron" g2="uni1ED0" k="20" />
+<hkern g1="Zcaron" g2="uni1ED2" k="20" />
+<hkern g1="Zcaron" g2="uni1ED4" k="20" />
+<hkern g1="Zcaron" g2="uni1ED6" k="20" />
+<hkern g1="Zcaron" g2="uni1ED8" k="20" />
+<hkern g1="Zcaron" g2="uni1EDA" k="20" />
+<hkern g1="Zcaron" g2="uni1EDC" k="20" />
+<hkern g1="Zcaron" g2="uni1EDE" k="20" />
+<hkern g1="Zcaron" g2="uni1EE0" k="20" />
+<hkern g1="Zcaron" g2="uni1EE2" k="20" />
+<hkern g1="Aringacute" g2="quotedbl" k="143" />
+<hkern g1="Aringacute" g2="quotesingle" k="143" />
+<hkern g1="Aringacute" g2="C" k="41" />
+<hkern g1="Aringacute" g2="G" k="41" />
+<hkern g1="Aringacute" g2="J" k="-266" />
+<hkern g1="Aringacute" g2="O" k="41" />
+<hkern g1="Aringacute" g2="Q" k="41" />
+<hkern g1="Aringacute" g2="T" k="143" />
+<hkern g1="Aringacute" g2="V" k="82" />
+<hkern g1="Aringacute" g2="W" k="82" />
+<hkern g1="Aringacute" g2="Y" k="123" />
+<hkern g1="Aringacute" g2="Ccedilla" k="41" />
+<hkern g1="Aringacute" g2="Ograve" k="41" />
+<hkern g1="Aringacute" g2="Oacute" k="41" />
+<hkern g1="Aringacute" g2="Ocircumflex" k="41" />
+<hkern g1="Aringacute" g2="Otilde" k="41" />
+<hkern g1="Aringacute" g2="Odieresis" k="41" />
+<hkern g1="Aringacute" g2="Oslash" k="41" />
+<hkern g1="Aringacute" g2="Yacute" k="123" />
+<hkern g1="Aringacute" g2="Cacute" k="41" />
+<hkern g1="Aringacute" g2="Ccircumflex" k="41" />
+<hkern g1="Aringacute" g2="Cdot" k="41" />
+<hkern g1="Aringacute" g2="Ccaron" k="41" />
+<hkern g1="Aringacute" g2="Gcircumflex" k="41" />
+<hkern g1="Aringacute" g2="Gbreve" k="41" />
+<hkern g1="Aringacute" g2="Gdot" k="41" />
+<hkern g1="Aringacute" g2="Gcommaaccent" k="41" />
+<hkern g1="Aringacute" g2="Omacron" k="41" />
+<hkern g1="Aringacute" g2="Obreve" k="41" />
+<hkern g1="Aringacute" g2="Ohungarumlaut" k="41" />
+<hkern g1="Aringacute" g2="OE" k="41" />
+<hkern g1="Aringacute" g2="Tcommaaccent" k="143" />
+<hkern g1="Aringacute" g2="Tcaron" k="143" />
+<hkern g1="Aringacute" g2="Wcircumflex" k="82" />
+<hkern g1="Aringacute" g2="Ycircumflex" k="123" />
+<hkern g1="Aringacute" g2="Ydieresis" k="123" />
+<hkern g1="Aringacute" g2="Oslashacute" k="41" />
+<hkern g1="Aringacute" g2="Wgrave" k="82" />
+<hkern g1="Aringacute" g2="Wacute" k="82" />
+<hkern g1="Aringacute" g2="Wdieresis" k="82" />
+<hkern g1="Aringacute" g2="Ygrave" k="123" />
+<hkern g1="Aringacute" g2="quoteright" k="143" />
+<hkern g1="Aringacute" g2="quotedblright" k="143" />
+<hkern g1="Aringacute" g2="Ohorn" k="41" />
+<hkern g1="Aringacute" g2="uni1ECC" k="41" />
+<hkern g1="Aringacute" g2="uni1ECE" k="41" />
+<hkern g1="Aringacute" g2="uni1ED0" k="41" />
+<hkern g1="Aringacute" g2="uni1ED2" k="41" />
+<hkern g1="Aringacute" g2="uni1ED4" k="41" />
+<hkern g1="Aringacute" g2="uni1ED6" k="41" />
+<hkern g1="Aringacute" g2="uni1ED8" k="41" />
+<hkern g1="Aringacute" g2="uni1EDA" k="41" />
+<hkern g1="Aringacute" g2="uni1EDC" k="41" />
+<hkern g1="Aringacute" g2="uni1EDE" k="41" />
+<hkern g1="Aringacute" g2="uni1EE0" k="41" />
+<hkern g1="Aringacute" g2="uni1EE2" k="41" />
+<hkern g1="Aringacute" g2="uni1EF4" k="123" />
+<hkern g1="Aringacute" g2="uni1EF6" k="123" />
+<hkern g1="Aringacute" g2="uni1EF8" k="123" />
+<hkern g1="Aringacute" g2="Tcedilla" k="143" />
+<hkern g1="aringacute" g2="quotedbl" k="20" />
+<hkern g1="aringacute" g2="quotesingle" k="20" />
+<hkern g1="aringacute" g2="quoteright" k="20" />
+<hkern g1="aringacute" g2="quotedblright" k="20" />
+<hkern g1="AEacute" g2="J" k="-123" />
+<hkern g1="Oslashacute" g2="comma" k="82" />
+<hkern g1="Oslashacute" g2="period" k="82" />
+<hkern g1="Oslashacute" g2="A" k="41" />
+<hkern g1="Oslashacute" g2="T" k="61" />
+<hkern g1="Oslashacute" g2="V" k="20" />
+<hkern g1="Oslashacute" g2="W" k="20" />
+<hkern g1="Oslashacute" g2="X" k="41" />
+<hkern g1="Oslashacute" g2="Y" k="20" />
+<hkern g1="Oslashacute" g2="Z" k="20" />
+<hkern g1="Oslashacute" g2="Agrave" k="41" />
+<hkern g1="Oslashacute" g2="Aacute" k="41" />
+<hkern g1="Oslashacute" g2="Acircumflex" k="41" />
+<hkern g1="Oslashacute" g2="Atilde" k="41" />
+<hkern g1="Oslashacute" g2="Adieresis" k="41" />
+<hkern g1="Oslashacute" g2="Aring" k="41" />
+<hkern g1="Oslashacute" g2="Yacute" k="20" />
+<hkern g1="Oslashacute" g2="Amacron" k="41" />
+<hkern g1="Oslashacute" g2="Abreve" k="41" />
+<hkern g1="Oslashacute" g2="Aogonek" k="41" />
+<hkern g1="Oslashacute" g2="Tcommaaccent" k="61" />
+<hkern g1="Oslashacute" g2="Tcaron" k="61" />
+<hkern g1="Oslashacute" g2="Wcircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ycircumflex" k="20" />
+<hkern g1="Oslashacute" g2="Ydieresis" k="20" />
+<hkern g1="Oslashacute" g2="Zacute" k="20" />
+<hkern g1="Oslashacute" g2="Zdotaccent" k="20" />
+<hkern g1="Oslashacute" g2="Zcaron" k="20" />
+<hkern g1="Oslashacute" g2="Aringacute" k="41" />
+<hkern g1="Oslashacute" g2="afii10054" k="20" />
+<hkern g1="Oslashacute" g2="Wgrave" k="20" />
+<hkern g1="Oslashacute" g2="Wacute" k="20" />
+<hkern g1="Oslashacute" g2="Wdieresis" k="20" />
+<hkern g1="Oslashacute" g2="Ygrave" k="20" />
+<hkern g1="Oslashacute" g2="quotesinglbase" k="82" />
+<hkern g1="Oslashacute" g2="quotedblbase" k="82" />
+<hkern g1="Oslashacute" g2="uni1E00" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EA8" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAA" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAC" k="41" />
+<hkern g1="Oslashacute" g2="uni1EAE" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB0" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB2" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB4" k="41" />
+<hkern g1="Oslashacute" g2="uni1EB6" k="41" />
+<hkern g1="Oslashacute" g2="uni1EF4" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF6" k="20" />
+<hkern g1="Oslashacute" g2="uni1EF8" k="20" />
+<hkern g1="Oslashacute" g2="Tcedilla" k="61" />
+<hkern g1="Alphatonos" g2="quotedbl" k="143" />
+<hkern g1="Alphatonos" g2="quotesingle" k="143" />
+<hkern g1="Alphatonos" g2="Theta" k="41" />
+<hkern g1="Alphatonos" g2="Omicron" k="41" />
+<hkern g1="Alphatonos" g2="Tau" k="143" />
+<hkern g1="Alphatonos" g2="Upsilon" k="123" />
+<hkern g1="Alphatonos" g2="Phi" k="41" />
+<hkern g1="Alphatonos" g2="Psi" k="82" />
+<hkern g1="Alphatonos" g2="Upsilondieresis" k="123" />
+<hkern g1="Alphatonos" g2="quoteright" k="143" />
+<hkern g1="Alphatonos" g2="quotedblright" k="143" />
+<hkern g1="Alphatonos" g2="uni03D2" k="123" />
+<hkern g1="Omicrontonos" g2="comma" k="82" />
+<hkern g1="Omicrontonos" g2="period" k="82" />
+<hkern g1="Omicrontonos" g2="Alphatonos" k="41" />
+<hkern g1="Omicrontonos" g2="Alpha" k="41" />
+<hkern g1="Omicrontonos" g2="uni0394" k="41" />
+<hkern g1="Omicrontonos" g2="Zeta" k="20" />
+<hkern g1="Omicrontonos" g2="Lambda" k="41" />
+<hkern g1="Omicrontonos" g2="Sigma" k="20" />
+<hkern g1="Omicrontonos" g2="Tau" k="61" />
+<hkern g1="Omicrontonos" g2="Upsilon" k="20" />
+<hkern g1="Omicrontonos" g2="Chi" k="41" />
+<hkern g1="Omicrontonos" g2="Psi" k="20" />
+<hkern g1="Omicrontonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicrontonos" g2="lambda" k="20" />
+<hkern g1="Omicrontonos" g2="quotesinglbase" k="82" />
+<hkern g1="Omicrontonos" g2="quotedblbase" k="82" />
+<hkern g1="Omicrontonos" g2="uni03D2" k="20" />
+<hkern g1="Upsilontonos" g2="comma" k="123" />
+<hkern g1="Upsilontonos" g2="period" k="123" />
+<hkern g1="Upsilontonos" g2="Alphatonos" k="123" />
+<hkern g1="Upsilontonos" g2="Alpha" k="123" />
+<hkern g1="Upsilontonos" g2="uni0394" k="123" />
+<hkern g1="Upsilontonos" g2="Theta" k="41" />
+<hkern g1="Upsilontonos" g2="Lambda" k="123" />
+<hkern g1="Upsilontonos" g2="Omicron" k="41" />
+<hkern g1="Upsilontonos" g2="Phi" k="61" />
+<hkern g1="Upsilontonos" g2="uni03A9" k="20" />
+<hkern g1="Upsilontonos" g2="alphatonos" k="102" />
+<hkern g1="Upsilontonos" g2="epsilontonos" k="82" />
+<hkern g1="Upsilontonos" g2="etatonos" k="61" />
+<hkern g1="Upsilontonos" g2="iotatonos" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilontonos" g2="alpha" k="102" />
+<hkern g1="Upsilontonos" g2="delta" k="61" />
+<hkern g1="Upsilontonos" g2="epsilon" k="82" />
+<hkern g1="Upsilontonos" g2="eta" k="61" />
+<hkern g1="Upsilontonos" g2="iota" k="61" />
+<hkern g1="Upsilontonos" g2="kappa" k="61" />
+<hkern g1="Upsilontonos" g2="uni03BC" k="61" />
+<hkern g1="Upsilontonos" g2="omicron" k="102" />
+<hkern g1="Upsilontonos" g2="rho" k="102" />
+<hkern g1="Upsilontonos" g2="sigma1" k="102" />
+<hkern g1="Upsilontonos" g2="sigma" k="102" />
+<hkern g1="Upsilontonos" g2="upsilon" k="61" />
+<hkern g1="Upsilontonos" g2="phi" k="102" />
+<hkern g1="Upsilontonos" g2="psi" k="61" />
+<hkern g1="Upsilontonos" g2="omega" k="61" />
+<hkern g1="Upsilontonos" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilontonos" g2="omicrontonos" k="102" />
+<hkern g1="Upsilontonos" g2="upsilontonos" k="61" />
+<hkern g1="Upsilontonos" g2="omegatonos" k="61" />
+<hkern g1="Upsilontonos" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilontonos" g2="quotedblbase" k="123" />
+<hkern g1="Upsilontonos" g2="Omega" k="20" />
+<hkern g1="Omegatonos" g2="Tau" k="41" />
+<hkern g1="Omegatonos" g2="Upsilon" k="20" />
+<hkern g1="Omegatonos" g2="Upsilondieresis" k="20" />
+<hkern g1="Omegatonos" g2="uni03D2" k="20" />
+<hkern g1="iotadieresistonos" g2="quotedbl" k="41" />
+<hkern g1="iotadieresistonos" g2="quotesingle" k="41" />
+<hkern g1="iotadieresistonos" g2="quoteright" k="41" />
+<hkern g1="iotadieresistonos" g2="quotedblright" k="41" />
+<hkern g1="Alpha" g2="quotedbl" k="143" />
+<hkern g1="Alpha" g2="quotesingle" k="143" />
+<hkern g1="Alpha" g2="Theta" k="41" />
+<hkern g1="Alpha" g2="Omicron" k="41" />
+<hkern g1="Alpha" g2="Tau" k="143" />
+<hkern g1="Alpha" g2="Upsilon" k="123" />
+<hkern g1="Alpha" g2="Phi" k="41" />
+<hkern g1="Alpha" g2="Psi" k="82" />
+<hkern g1="Alpha" g2="Upsilondieresis" k="123" />
+<hkern g1="Alpha" g2="quoteright" k="143" />
+<hkern g1="Alpha" g2="quotedblright" k="143" />
+<hkern g1="Alpha" g2="uni03D2" k="123" />
+<hkern g1="Beta" g2="comma" k="82" />
+<hkern g1="Beta" g2="period" k="82" />
+<hkern g1="Beta" g2="Alphatonos" k="41" />
+<hkern g1="Beta" g2="Alpha" k="41" />
+<hkern g1="Beta" g2="uni0394" k="41" />
+<hkern g1="Beta" g2="Lambda" k="41" />
+<hkern g1="Beta" g2="Chi" k="41" />
+<hkern g1="Beta" g2="quotesinglbase" k="82" />
+<hkern g1="Beta" g2="quotedblbase" k="82" />
+<hkern g1="Gamma" g2="comma" k="123" />
+<hkern g1="Gamma" g2="hyphen" k="82" />
+<hkern g1="Gamma" g2="period" k="123" />
+<hkern g1="Gamma" g2="Alphatonos" k="164" />
+<hkern g1="Gamma" g2="Alpha" k="164" />
+<hkern g1="Gamma" g2="uni0394" k="164" />
+<hkern g1="Gamma" g2="Theta" k="61" />
+<hkern g1="Gamma" g2="Lambda" k="164" />
+<hkern g1="Gamma" g2="Omicron" k="61" />
+<hkern g1="Gamma" g2="Phi" k="102" />
+<hkern g1="Gamma" g2="uni03A9" k="61" />
+<hkern g1="Gamma" g2="alphatonos" k="143" />
+<hkern g1="Gamma" g2="epsilontonos" k="102" />
+<hkern g1="Gamma" g2="etatonos" k="102" />
+<hkern g1="Gamma" g2="iotatonos" k="82" />
+<hkern g1="Gamma" g2="upsilondieresistonos" k="102" />
+<hkern g1="Gamma" g2="alpha" k="143" />
+<hkern g1="Gamma" g2="gamma" k="41" />
+<hkern g1="Gamma" g2="delta" k="61" />
+<hkern g1="Gamma" g2="epsilon" k="102" />
+<hkern g1="Gamma" g2="eta" k="102" />
+<hkern g1="Gamma" g2="iota" k="82" />
+<hkern g1="Gamma" g2="kappa" k="102" />
+<hkern g1="Gamma" g2="uni03BC" k="102" />
+<hkern g1="Gamma" g2="nu" k="41" />
+<hkern g1="Gamma" g2="omicron" k="143" />
+<hkern g1="Gamma" g2="rho" k="102" />
+<hkern g1="Gamma" g2="sigma1" k="143" />
+<hkern g1="Gamma" g2="sigma" k="143" />
+<hkern g1="Gamma" g2="upsilon" k="102" />
+<hkern g1="Gamma" g2="phi" k="143" />
+<hkern g1="Gamma" g2="chi" k="41" />
+<hkern g1="Gamma" g2="psi" k="102" />
+<hkern g1="Gamma" g2="omega" k="102" />
+<hkern g1="Gamma" g2="upsilondieresis" k="102" />
+<hkern g1="Gamma" g2="omicrontonos" k="143" />
+<hkern g1="Gamma" g2="upsilontonos" k="102" />
+<hkern g1="Gamma" g2="omegatonos" k="102" />
+<hkern g1="Gamma" g2="endash" k="82" />
+<hkern g1="Gamma" g2="emdash" k="82" />
+<hkern g1="Gamma" g2="afii00208" k="82" />
+<hkern g1="Gamma" g2="quotesinglbase" k="123" />
+<hkern g1="Gamma" g2="quotedblbase" k="123" />
+<hkern g1="Gamma" g2="Omega" k="61" />
+<hkern g1="Gamma" g2="uni03D1" k="41" />
+<hkern g1="uni0394" g2="quotedbl" k="143" />
+<hkern g1="uni0394" g2="quotesingle" k="143" />
+<hkern g1="uni0394" g2="Theta" k="41" />
+<hkern g1="uni0394" g2="Omicron" k="41" />
+<hkern g1="uni0394" g2="Tau" k="143" />
+<hkern g1="uni0394" g2="Upsilon" k="123" />
+<hkern g1="uni0394" g2="Phi" k="41" />
+<hkern g1="uni0394" g2="Psi" k="82" />
+<hkern g1="uni0394" g2="Upsilondieresis" k="123" />
+<hkern g1="uni0394" g2="quoteright" k="143" />
+<hkern g1="uni0394" g2="quotedblright" k="143" />
+<hkern g1="uni0394" g2="uni03D2" k="123" />
+<hkern g1="Zeta" g2="Theta" k="20" />
+<hkern g1="Zeta" g2="Omicron" k="20" />
+<hkern g1="Zeta" g2="Phi" k="61" />
+<hkern g1="Theta" g2="comma" k="82" />
+<hkern g1="Theta" g2="period" k="82" />
+<hkern g1="Theta" g2="Alphatonos" k="41" />
+<hkern g1="Theta" g2="Alpha" k="41" />
+<hkern g1="Theta" g2="uni0394" k="41" />
+<hkern g1="Theta" g2="Zeta" k="20" />
+<hkern g1="Theta" g2="Lambda" k="41" />
+<hkern g1="Theta" g2="Sigma" k="20" />
+<hkern g1="Theta" g2="Tau" k="61" />
+<hkern g1="Theta" g2="Upsilon" k="20" />
+<hkern g1="Theta" g2="Chi" k="41" />
+<hkern g1="Theta" g2="Psi" k="20" />
+<hkern g1="Theta" g2="Upsilondieresis" k="20" />
+<hkern g1="Theta" g2="lambda" k="20" />
+<hkern g1="Theta" g2="quotesinglbase" k="82" />
+<hkern g1="Theta" g2="quotedblbase" k="82" />
+<hkern g1="Theta" g2="uni03D2" k="20" />
+<hkern g1="Kappa" g2="Theta" k="41" />
+<hkern g1="Kappa" g2="Omicron" k="41" />
+<hkern g1="Kappa" g2="Phi" k="61" />
+<hkern g1="Kappa" g2="pi" k="20" />
+<hkern g1="Kappa" g2="tau" k="20" />
+<hkern g1="Lambda" g2="quotedbl" k="143" />
+<hkern g1="Lambda" g2="quotesingle" k="143" />
+<hkern g1="Lambda" g2="Theta" k="41" />
+<hkern g1="Lambda" g2="Omicron" k="41" />
+<hkern g1="Lambda" g2="Tau" k="143" />
+<hkern g1="Lambda" g2="Upsilon" k="123" />
+<hkern g1="Lambda" g2="Phi" k="41" />
+<hkern g1="Lambda" g2="Psi" k="82" />
+<hkern g1="Lambda" g2="Upsilondieresis" k="123" />
+<hkern g1="Lambda" g2="quoteright" k="143" />
+<hkern g1="Lambda" g2="quotedblright" k="143" />
+<hkern g1="Lambda" g2="uni03D2" k="123" />
+<hkern g1="Omicron" g2="comma" k="82" />
+<hkern g1="Omicron" g2="period" k="82" />
+<hkern g1="Omicron" g2="Alphatonos" k="41" />
+<hkern g1="Omicron" g2="Alpha" k="41" />
+<hkern g1="Omicron" g2="uni0394" k="41" />
+<hkern g1="Omicron" g2="Zeta" k="20" />
+<hkern g1="Omicron" g2="Lambda" k="41" />
+<hkern g1="Omicron" g2="Sigma" k="20" />
+<hkern g1="Omicron" g2="Tau" k="61" />
+<hkern g1="Omicron" g2="Upsilon" k="20" />
+<hkern g1="Omicron" g2="Chi" k="41" />
+<hkern g1="Omicron" g2="Psi" k="20" />
+<hkern g1="Omicron" g2="Upsilondieresis" k="20" />
+<hkern g1="Omicron" g2="lambda" k="20" />
+<hkern g1="Omicron" g2="quotesinglbase" k="82" />
+<hkern g1="Omicron" g2="quotedblbase" k="82" />
+<hkern g1="Omicron" g2="uni03D2" k="20" />
+<hkern g1="Rho" g2="comma" k="266" />
+<hkern g1="Rho" g2="period" k="266" />
+<hkern g1="Rho" g2="Alphatonos" k="102" />
+<hkern g1="Rho" g2="Alpha" k="102" />
+<hkern g1="Rho" g2="uni0394" k="102" />
+<hkern g1="Rho" g2="Zeta" k="20" />
+<hkern g1="Rho" g2="Lambda" k="102" />
+<hkern g1="Rho" g2="Chi" k="41" />
+<hkern g1="Rho" g2="lambda" k="41" />
+<hkern g1="Rho" g2="quotesinglbase" k="266" />
+<hkern g1="Rho" g2="quotedblbase" k="266" />
+<hkern g1="Tau" g2="comma" k="123" />
+<hkern g1="Tau" g2="hyphen" k="82" />
+<hkern g1="Tau" g2="period" k="123" />
+<hkern g1="Tau" g2="Alphatonos" k="164" />
+<hkern g1="Tau" g2="Alpha" k="164" />
+<hkern g1="Tau" g2="uni0394" k="164" />
+<hkern g1="Tau" g2="Theta" k="61" />
+<hkern g1="Tau" g2="Lambda" k="164" />
+<hkern g1="Tau" g2="Omicron" k="61" />
+<hkern g1="Tau" g2="Phi" k="102" />
+<hkern g1="Tau" g2="uni03A9" k="61" />
+<hkern g1="Tau" g2="alphatonos" k="143" />
+<hkern g1="Tau" g2="epsilontonos" k="102" />
+<hkern g1="Tau" g2="etatonos" k="102" />
+<hkern g1="Tau" g2="iotatonos" k="82" />
+<hkern g1="Tau" g2="upsilondieresistonos" k="102" />
+<hkern g1="Tau" g2="alpha" k="143" />
+<hkern g1="Tau" g2="gamma" k="41" />
+<hkern g1="Tau" g2="delta" k="61" />
+<hkern g1="Tau" g2="epsilon" k="102" />
+<hkern g1="Tau" g2="eta" k="102" />
+<hkern g1="Tau" g2="iota" k="82" />
+<hkern g1="Tau" g2="kappa" k="102" />
+<hkern g1="Tau" g2="uni03BC" k="102" />
+<hkern g1="Tau" g2="nu" k="41" />
+<hkern g1="Tau" g2="omicron" k="143" />
+<hkern g1="Tau" g2="rho" k="102" />
+<hkern g1="Tau" g2="sigma1" k="143" />
+<hkern g1="Tau" g2="sigma" k="143" />
+<hkern g1="Tau" g2="upsilon" k="102" />
+<hkern g1="Tau" g2="phi" k="143" />
+<hkern g1="Tau" g2="chi" k="41" />
+<hkern g1="Tau" g2="psi" k="102" />
+<hkern g1="Tau" g2="omega" k="102" />
+<hkern g1="Tau" g2="upsilondieresis" k="102" />
+<hkern g1="Tau" g2="omicrontonos" k="143" />
+<hkern g1="Tau" g2="upsilontonos" k="102" />
+<hkern g1="Tau" g2="omegatonos" k="102" />
+<hkern g1="Tau" g2="endash" k="82" />
+<hkern g1="Tau" g2="emdash" k="82" />
+<hkern g1="Tau" g2="afii00208" k="82" />
+<hkern g1="Tau" g2="quotesinglbase" k="123" />
+<hkern g1="Tau" g2="quotedblbase" k="123" />
+<hkern g1="Tau" g2="Omega" k="61" />
+<hkern g1="Tau" g2="uni03D1" k="41" />
+<hkern g1="Upsilon" g2="comma" k="123" />
+<hkern g1="Upsilon" g2="period" k="123" />
+<hkern g1="Upsilon" g2="Alphatonos" k="123" />
+<hkern g1="Upsilon" g2="Alpha" k="123" />
+<hkern g1="Upsilon" g2="uni0394" k="123" />
+<hkern g1="Upsilon" g2="Theta" k="41" />
+<hkern g1="Upsilon" g2="Lambda" k="123" />
+<hkern g1="Upsilon" g2="Omicron" k="41" />
+<hkern g1="Upsilon" g2="Phi" k="61" />
+<hkern g1="Upsilon" g2="uni03A9" k="20" />
+<hkern g1="Upsilon" g2="alphatonos" k="102" />
+<hkern g1="Upsilon" g2="epsilontonos" k="82" />
+<hkern g1="Upsilon" g2="etatonos" k="61" />
+<hkern g1="Upsilon" g2="iotatonos" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilon" g2="alpha" k="102" />
+<hkern g1="Upsilon" g2="delta" k="61" />
+<hkern g1="Upsilon" g2="epsilon" k="82" />
+<hkern g1="Upsilon" g2="eta" k="61" />
+<hkern g1="Upsilon" g2="iota" k="61" />
+<hkern g1="Upsilon" g2="kappa" k="61" />
+<hkern g1="Upsilon" g2="uni03BC" k="61" />
+<hkern g1="Upsilon" g2="omicron" k="102" />
+<hkern g1="Upsilon" g2="rho" k="102" />
+<hkern g1="Upsilon" g2="sigma1" k="102" />
+<hkern g1="Upsilon" g2="sigma" k="102" />
+<hkern g1="Upsilon" g2="upsilon" k="61" />
+<hkern g1="Upsilon" g2="phi" k="102" />
+<hkern g1="Upsilon" g2="psi" k="61" />
+<hkern g1="Upsilon" g2="omega" k="61" />
+<hkern g1="Upsilon" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilon" g2="omicrontonos" k="102" />
+<hkern g1="Upsilon" g2="upsilontonos" k="61" />
+<hkern g1="Upsilon" g2="omegatonos" k="61" />
+<hkern g1="Upsilon" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilon" g2="quotedblbase" k="123" />
+<hkern g1="Upsilon" g2="Omega" k="20" />
+<hkern g1="Phi" g2="comma" k="102" />
+<hkern g1="Phi" g2="period" k="102" />
+<hkern g1="Phi" g2="Alphatonos" k="41" />
+<hkern g1="Phi" g2="Alpha" k="41" />
+<hkern g1="Phi" g2="uni0394" k="41" />
+<hkern g1="Phi" g2="Zeta" k="61" />
+<hkern g1="Phi" g2="Lambda" k="41" />
+<hkern g1="Phi" g2="Sigma" k="20" />
+<hkern g1="Phi" g2="Tau" k="82" />
+<hkern g1="Phi" g2="Upsilon" k="61" />
+<hkern g1="Phi" g2="Chi" k="20" />
+<hkern g1="Phi" g2="Upsilondieresis" k="61" />
+<hkern g1="Phi" g2="lambda" k="20" />
+<hkern g1="Phi" g2="quotesinglbase" k="102" />
+<hkern g1="Phi" g2="quotedblbase" k="102" />
+<hkern g1="Phi" g2="uni03D2" k="61" />
+<hkern g1="Chi" g2="Theta" k="41" />
+<hkern g1="Chi" g2="Omicron" k="41" />
+<hkern g1="Chi" g2="Phi" k="61" />
+<hkern g1="Chi" g2="pi" k="20" />
+<hkern g1="Chi" g2="tau" k="20" />
+<hkern g1="Psi" g2="comma" k="123" />
+<hkern g1="Psi" g2="period" k="123" />
+<hkern g1="Psi" g2="Alphatonos" k="82" />
+<hkern g1="Psi" g2="Alpha" k="82" />
+<hkern g1="Psi" g2="uni0394" k="82" />
+<hkern g1="Psi" g2="Theta" k="20" />
+<hkern g1="Psi" g2="Lambda" k="82" />
+<hkern g1="Psi" g2="Omicron" k="20" />
+<hkern g1="Psi" g2="quotesinglbase" k="123" />
+<hkern g1="Psi" g2="quotedblbase" k="123" />
+<hkern g1="uni03A9" g2="Tau" k="41" />
+<hkern g1="uni03A9" g2="Upsilon" k="20" />
+<hkern g1="uni03A9" g2="Upsilondieresis" k="20" />
+<hkern g1="uni03A9" g2="uni03D2" k="20" />
+<hkern g1="Upsilondieresis" g2="comma" k="123" />
+<hkern g1="Upsilondieresis" g2="period" k="123" />
+<hkern g1="Upsilondieresis" g2="Alphatonos" k="123" />
+<hkern g1="Upsilondieresis" g2="Alpha" k="123" />
+<hkern g1="Upsilondieresis" g2="uni0394" k="123" />
+<hkern g1="Upsilondieresis" g2="Theta" k="41" />
+<hkern g1="Upsilondieresis" g2="Lambda" k="123" />
+<hkern g1="Upsilondieresis" g2="Omicron" k="41" />
+<hkern g1="Upsilondieresis" g2="Phi" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03A9" k="20" />
+<hkern g1="Upsilondieresis" g2="alphatonos" k="102" />
+<hkern g1="Upsilondieresis" g2="epsilontonos" k="82" />
+<hkern g1="Upsilondieresis" g2="etatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="iotatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresistonos" k="61" />
+<hkern g1="Upsilondieresis" g2="alpha" k="102" />
+<hkern g1="Upsilondieresis" g2="delta" k="61" />
+<hkern g1="Upsilondieresis" g2="epsilon" k="82" />
+<hkern g1="Upsilondieresis" g2="eta" k="61" />
+<hkern g1="Upsilondieresis" g2="iota" k="61" />
+<hkern g1="Upsilondieresis" g2="kappa" k="61" />
+<hkern g1="Upsilondieresis" g2="uni03BC" k="61" />
+<hkern g1="Upsilondieresis" g2="omicron" k="102" />
+<hkern g1="Upsilondieresis" g2="rho" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma1" k="102" />
+<hkern g1="Upsilondieresis" g2="sigma" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilon" k="61" />
+<hkern g1="Upsilondieresis" g2="phi" k="102" />
+<hkern g1="Upsilondieresis" g2="psi" k="61" />
+<hkern g1="Upsilondieresis" g2="omega" k="61" />
+<hkern g1="Upsilondieresis" g2="upsilondieresis" k="61" />
+<hkern g1="Upsilondieresis" g2="omicrontonos" k="102" />
+<hkern g1="Upsilondieresis" g2="upsilontonos" k="61" />
+<hkern g1="Upsilondieresis" g2="omegatonos" k="61" />
+<hkern g1="Upsilondieresis" g2="quotesinglbase" k="123" />
+<hkern g1="Upsilondieresis" g2="quotedblbase" k="123" />
+<hkern g1="Upsilondieresis" g2="Omega" k="20" />
+<hkern g1="alphatonos" g2="lambda" k="-41" />
+<hkern g1="etatonos" g2="quotedbl" k="20" />
+<hkern g1="etatonos" g2="quotesingle" k="20" />
+<hkern g1="etatonos" g2="quoteright" k="20" />
+<hkern g1="etatonos" g2="quotedblright" k="20" />
+<hkern g1="iotatonos" g2="quotedbl" k="82" />
+<hkern g1="iotatonos" g2="quotesingle" k="82" />
+<hkern g1="iotatonos" g2="pi" k="20" />
+<hkern g1="iotatonos" g2="tau" k="20" />
+<hkern g1="iotatonos" g2="quoteright" k="82" />
+<hkern g1="iotatonos" g2="quotedblright" k="82" />
+<hkern g1="alpha" g2="lambda" k="-41" />
+<hkern g1="gamma" g2="comma" k="82" />
+<hkern g1="gamma" g2="period" k="82" />
+<hkern g1="gamma" g2="lambda" k="20" />
+<hkern g1="gamma" g2="quotesinglbase" k="82" />
+<hkern g1="gamma" g2="quotedblbase" k="82" />
+<hkern g1="zeta" g2="hyphen" k="102" />
+<hkern g1="zeta" g2="alphatonos" k="41" />
+<hkern g1="zeta" g2="alpha" k="41" />
+<hkern g1="zeta" g2="delta" k="41" />
+<hkern g1="zeta" g2="omicron" k="41" />
+<hkern g1="zeta" g2="pi" k="41" />
+<hkern g1="zeta" g2="sigma1" k="41" />
+<hkern g1="zeta" g2="sigma" k="41" />
+<hkern g1="zeta" g2="tau" k="41" />
+<hkern g1="zeta" g2="phi" k="41" />
+<hkern g1="zeta" g2="omicrontonos" k="41" />
+<hkern g1="zeta" g2="endash" k="102" />
+<hkern g1="zeta" g2="emdash" k="102" />
+<hkern g1="zeta" g2="afii00208" k="102" />
+<hkern g1="eta" g2="quotedbl" k="20" />
+<hkern g1="eta" g2="quotesingle" k="20" />
+<hkern g1="eta" g2="quoteright" k="20" />
+<hkern g1="eta" g2="quotedblright" k="20" />
+<hkern g1="theta" g2="comma" k="41" />
+<hkern g1="theta" g2="period" k="41" />
+<hkern g1="theta" g2="quotesinglbase" k="41" />
+<hkern g1="theta" g2="quotedblbase" k="41" />
+<hkern g1="iota" g2="quotedbl" k="82" />
+<hkern g1="iota" g2="quotesingle" k="82" />
+<hkern g1="iota" g2="pi" k="20" />
+<hkern g1="iota" g2="tau" k="20" />
+<hkern g1="iota" g2="quoteright" k="82" />
+<hkern g1="iota" g2="quotedblright" k="82" />
+<hkern g1="kappa" g2="alphatonos" k="41" />
+<hkern g1="kappa" g2="alpha" k="41" />
+<hkern g1="kappa" g2="omicron" k="41" />
+<hkern g1="kappa" g2="sigma1" k="41" />
+<hkern g1="kappa" g2="sigma" k="41" />
+<hkern g1="kappa" g2="phi" k="41" />
+<hkern g1="kappa" g2="omicrontonos" k="41" />
+<hkern g1="lambda" g2="quotedbl" k="123" />
+<hkern g1="lambda" g2="quotesingle" k="123" />
+<hkern g1="lambda" g2="alphatonos" k="20" />
+<hkern g1="lambda" g2="alpha" k="20" />
+<hkern g1="lambda" g2="gamma" k="41" />
+<hkern g1="lambda" g2="nu" k="41" />
+<hkern g1="lambda" g2="omicron" k="20" />
+<hkern g1="lambda" g2="pi" k="41" />
+<hkern g1="lambda" g2="sigma1" k="20" />
+<hkern g1="lambda" g2="sigma" k="20" />
+<hkern g1="lambda" g2="tau" k="41" />
+<hkern g1="lambda" g2="phi" k="20" />
+<hkern g1="lambda" g2="omicrontonos" k="20" />
+<hkern g1="lambda" g2="quoteright" k="123" />
+<hkern g1="lambda" g2="quotedblright" k="123" />
+<hkern g1="nu" g2="comma" k="82" />
+<hkern g1="nu" g2="period" k="82" />
+<hkern g1="nu" g2="lambda" k="20" />
+<hkern g1="nu" g2="quotesinglbase" k="82" />
+<hkern g1="nu" g2="quotedblbase" k="82" />
+<hkern g1="omicron" g2="quotedbl" k="20" />
+<hkern g1="omicron" g2="quotesingle" k="20" />
+<hkern g1="omicron" g2="gamma" k="41" />
+<hkern g1="omicron" g2="nu" k="41" />
+<hkern g1="omicron" g2="quoteright" k="20" />
+<hkern g1="omicron" g2="quotedblright" k="20" />
+<hkern g1="rho" g2="quotedbl" k="20" />
+<hkern g1="rho" g2="quotesingle" k="20" />
+<hkern g1="rho" g2="gamma" k="41" />
+<hkern g1="rho" g2="nu" k="41" />
+<hkern g1="rho" g2="quoteright" k="20" />
+<hkern g1="rho" g2="quotedblright" k="20" />
+<hkern g1="sigma" g2="comma" k="20" />
+<hkern g1="sigma" g2="period" k="20" />
+<hkern g1="sigma" g2="quotesinglbase" k="20" />
+<hkern g1="sigma" g2="quotedblbase" k="20" />
+<hkern g1="phi" g2="quotedbl" k="20" />
+<hkern g1="phi" g2="quotesingle" k="20" />
+<hkern g1="phi" g2="gamma" k="41" />
+<hkern g1="phi" g2="nu" k="41" />
+<hkern g1="phi" g2="quoteright" k="20" />
+<hkern g1="phi" g2="quotedblright" k="20" />
+<hkern g1="chi" g2="comma" k="61" />
+<hkern g1="chi" g2="hyphen" k="41" />
+<hkern g1="chi" g2="period" k="61" />
+<hkern g1="chi" g2="alphatonos" k="41" />
+<hkern g1="chi" g2="alpha" k="41" />
+<hkern g1="chi" g2="delta" k="41" />
+<hkern g1="chi" g2="omicron" k="41" />
+<hkern g1="chi" g2="sigma1" k="41" />
+<hkern g1="chi" g2="sigma" k="41" />
+<hkern g1="chi" g2="phi" k="41" />
+<hkern g1="chi" g2="omicrontonos" k="41" />
+<hkern g1="chi" g2="endash" k="41" />
+<hkern g1="chi" g2="emdash" k="41" />
+<hkern g1="chi" g2="afii00208" k="41" />
+<hkern g1="chi" g2="quotesinglbase" k="61" />
+<hkern g1="chi" g2="quotedblbase" k="61" />
+<hkern g1="iotadieresis" g2="quotedbl" k="41" />
+<hkern g1="iotadieresis" g2="quotesingle" k="41" />
+<hkern g1="iotadieresis" g2="quoteright" k="41" />
+<hkern g1="iotadieresis" g2="quotedblright" k="41" />
+<hkern g1="omicrontonos" g2="quotedbl" k="20" />
+<hkern g1="omicrontonos" g2="quotesingle" k="20" />
+<hkern g1="omicrontonos" g2="gamma" k="41" />
+<hkern g1="omicrontonos" g2="nu" k="41" />
+<hkern g1="omicrontonos" g2="quoteright" k="20" />
+<hkern g1="omicrontonos" g2="quotedblright" k="20" />
+<hkern g1="afii10051" g2="quotedbl" k="82" />
+<hkern g1="afii10051" g2="quotesingle" k="82" />
+<hkern g1="afii10051" g2="afii10051" k="123" />
+<hkern g1="afii10051" g2="afii10060" k="123" />
+<hkern g1="afii10051" g2="afii10062" k="41" />
+<hkern g1="afii10051" g2="afii10036" k="102" />
+<hkern g1="afii10051" g2="afii10037" k="41" />
+<hkern g1="afii10051" g2="afii10041" k="102" />
+<hkern g1="afii10051" g2="afii10044" k="123" />
+<hkern g1="afii10051" g2="afii10084" k="41" />
+<hkern g1="afii10051" g2="afii10085" k="41" />
+<hkern g1="afii10051" g2="afii10089" k="41" />
+<hkern g1="afii10051" g2="afii10092" k="41" />
+<hkern g1="afii10051" g2="afii10110" k="41" />
+<hkern g1="afii10051" g2="quoteright" k="82" />
+<hkern g1="afii10051" g2="quotedblright" k="82" />
+<hkern g1="afii10051" g2="uni0462" k="82" />
+<hkern g1="afii10051" g2="uni0470" k="102" />
+<hkern g1="afii10051" g2="uni0474" k="82" />
+<hkern g1="afii10051" g2="uni0476" k="82" />
+<hkern g1="afii10051" g2="uni048C" k="82" />
+<hkern g1="afii10051" g2="uni0492" k="82" />
+<hkern g1="afii10051" g2="uni049E" k="82" />
+<hkern g1="afii10051" g2="uni04A0" k="123" />
+<hkern g1="afii10051" g2="uni04A1" k="41" />
+<hkern g1="afii10051" g2="uni04AC" k="102" />
+<hkern g1="afii10051" g2="uni04AD" k="41" />
+<hkern g1="afii10051" g2="uni04AE" k="102" />
+<hkern g1="afii10051" g2="uni04AF" k="41" />
+<hkern g1="afii10051" g2="uni04B0" k="102" />
+<hkern g1="afii10051" g2="uni04B1" k="41" />
+<hkern g1="afii10051" g2="uni04B4" k="123" />
+<hkern g1="afii10051" g2="uni04B5" k="41" />
+<hkern g1="afii10051" g2="uni04B6" k="102" />
+<hkern g1="afii10051" g2="uni04B7" k="41" />
+<hkern g1="afii10051" g2="uni04B8" k="102" />
+<hkern g1="afii10051" g2="uni04B9" k="41" />
+<hkern g1="afii10051" g2="uni04CB" k="102" />
+<hkern g1="afii10051" g2="uni04CC" k="41" />
+<hkern g1="afii10051" g2="uni04EE" k="41" />
+<hkern g1="afii10051" g2="uni04EF" k="41" />
+<hkern g1="afii10051" g2="uni04F0" k="41" />
+<hkern g1="afii10051" g2="uni04F1" k="41" />
+<hkern g1="afii10051" g2="uni04F2" k="41" />
+<hkern g1="afii10051" g2="uni04F3" k="41" />
+<hkern g1="afii10051" g2="uni04F4" k="102" />
+<hkern g1="afii10051" g2="uni04F5" k="41" />
+<hkern g1="afii10051" g2="uni04FA" k="82" />
+<hkern g1="afii10051" g2="uni0504" k="102" />
+<hkern g1="afii10051" g2="uni0505" k="61" />
+<hkern g1="afii10051" g2="uni0506" k="102" />
+<hkern g1="afii10051" g2="uni0507" k="61" />
+<hkern g1="afii10051" g2="uni050E" k="123" />
+<hkern g1="afii10051" g2="uni050F" k="41" />
+<hkern g1="afii10052" g2="comma" k="123" />
+<hkern g1="afii10052" g2="hyphen" k="82" />
+<hkern g1="afii10052" g2="period" k="123" />
+<hkern g1="afii10052" g2="afii10053" k="41" />
+<hkern g1="afii10052" g2="afii10058" k="102" />
+<hkern g1="afii10052" g2="afii10017" k="143" />
+<hkern g1="afii10052" g2="afii10021" k="102" />
+<hkern g1="afii10052" g2="afii10029" k="102" />
+<hkern g1="afii10052" g2="afii10032" k="41" />
+<hkern g1="afii10052" g2="afii10035" k="41" />
+<hkern g1="afii10052" g2="afii10036" k="-41" />
+<hkern g1="afii10052" g2="afii10038" k="82" />
+<hkern g1="afii10052" g2="afii10067" k="102" />
+<hkern g1="afii10052" g2="afii10068" k="102" />
+<hkern g1="afii10052" g2="afii10069" k="123" />
+<hkern g1="afii10052" g2="afii10070" k="143" />
+<hkern g1="afii10052" g2="afii10072" k="41" />
+<hkern g1="afii10052" g2="afii10073" k="41" />
+<hkern g1="afii10052" g2="afii10074" k="102" />
+<hkern g1="afii10052" g2="afii10075" k="102" />
+<hkern g1="afii10052" g2="afii10076" k="102" />
+<hkern g1="afii10052" g2="afii10077" k="123" />
+<hkern g1="afii10052" g2="afii10078" k="102" />
+<hkern g1="afii10052" g2="afii10079" k="102" />
+<hkern g1="afii10052" g2="afii10080" k="143" />
+<hkern g1="afii10052" g2="afii10081" k="102" />
+<hkern g1="afii10052" g2="afii10082" k="102" />
+<hkern g1="afii10052" g2="afii10083" k="143" />
+<hkern g1="afii10052" g2="afii10084" k="82" />
+<hkern g1="afii10052" g2="afii10085" k="82" />
+<hkern g1="afii10052" g2="afii10086" k="143" />
+<hkern g1="afii10052" g2="afii10087" k="41" />
+<hkern g1="afii10052" g2="afii10088" k="102" />
+<hkern g1="afii10052" g2="afii10089" k="102" />
+<hkern g1="afii10052" g2="afii10090" k="102" />
+<hkern g1="afii10052" g2="afii10091" k="102" />
+<hkern g1="afii10052" g2="afii10092" k="82" />
+<hkern g1="afii10052" g2="afii10093" k="102" />
+<hkern g1="afii10052" g2="afii10094" k="102" />
+<hkern g1="afii10052" g2="afii10095" k="41" />
+<hkern g1="afii10052" g2="afii10096" k="102" />
+<hkern g1="afii10052" g2="afii10097" k="61" />
+<hkern g1="afii10052" g2="afii10071" k="143" />
+<hkern g1="afii10052" g2="afii10100" k="102" />
+<hkern g1="afii10052" g2="afii10101" k="143" />
+<hkern g1="afii10052" g2="afii10102" k="123" />
+<hkern g1="afii10052" g2="afii10106" k="123" />
+<hkern g1="afii10052" g2="afii10107" k="102" />
+<hkern g1="afii10052" g2="afii10109" k="102" />
+<hkern g1="afii10052" g2="afii10110" k="82" />
+<hkern g1="afii10052" g2="afii10193" k="102" />
+<hkern g1="afii10052" g2="afii10098" k="102" />
+<hkern g1="afii10052" g2="endash" k="82" />
+<hkern g1="afii10052" g2="emdash" k="82" />
+<hkern g1="afii10052" g2="afii00208" k="82" />
+<hkern g1="afii10052" g2="quotesinglbase" k="123" />
+<hkern g1="afii10052" g2="quotedblbase" k="123" />
+<hkern g1="afii10052" g2="uni0450" k="143" />
+<hkern g1="afii10052" g2="uni045D" k="102" />
+<hkern g1="afii10052" g2="uni0460" k="41" />
+<hkern g1="afii10052" g2="uni0461" k="41" />
+<hkern g1="afii10052" g2="uni0465" k="102" />
+<hkern g1="afii10052" g2="uni0466" k="143" />
+<hkern g1="afii10052" g2="uni0467" k="123" />
+<hkern g1="afii10052" g2="uni0469" k="102" />
+<hkern g1="afii10052" g2="uni046B" k="102" />
+<hkern g1="afii10052" g2="uni046D" k="102" />
+<hkern g1="afii10052" g2="uni0471" k="102" />
+<hkern g1="afii10052" g2="uni0472" k="41" />
+<hkern g1="afii10052" g2="uni0473" k="143" />
+<hkern g1="afii10052" g2="uni0475" k="41" />
+<hkern g1="afii10052" g2="uni0477" k="41" />
+<hkern g1="afii10052" g2="uni0478" k="41" />
+<hkern g1="afii10052" g2="uni0479" k="143" />
+<hkern g1="afii10052" g2="uni047A" k="41" />
+<hkern g1="afii10052" g2="uni047B" k="143" />
+<hkern g1="afii10052" g2="uni047C" k="41" />
+<hkern g1="afii10052" g2="uni047D" k="143" />
+<hkern g1="afii10052" g2="uni047E" k="41" />
+<hkern g1="afii10052" g2="uni047F" k="41" />
+<hkern g1="afii10052" g2="uni0480" k="41" />
+<hkern g1="afii10052" g2="uni0481" k="143" />
+<hkern g1="afii10052" g2="uni048B" k="102" />
+<hkern g1="afii10052" g2="uni048F" k="102" />
+<hkern g1="afii10052" g2="uni0495" k="102" />
+<hkern g1="afii10052" g2="uni0497" k="41" />
+<hkern g1="afii10052" g2="uni0499" k="41" />
+<hkern g1="afii10052" g2="uni049B" k="102" />
+<hkern g1="afii10052" g2="uni049D" k="102" />
+<hkern g1="afii10052" g2="uni04A1" k="82" />
+<hkern g1="afii10052" g2="uni04A3" k="102" />
+<hkern g1="afii10052" g2="uni04A5" k="102" />
+<hkern g1="afii10052" g2="uni04A7" k="102" />
+<hkern g1="afii10052" g2="uni04A8" k="41" />
+<hkern g1="afii10052" g2="uni04A9" k="143" />
+<hkern g1="afii10052" g2="uni04AA" k="41" />
+<hkern g1="afii10052" g2="uni04AB" k="143" />
+<hkern g1="afii10052" g2="uni04AC" k="-41" />
+<hkern g1="afii10052" g2="uni04AD" k="82" />
+<hkern g1="afii10052" g2="uni04AF" k="82" />
+<hkern g1="afii10052" g2="uni04B1" k="82" />
+<hkern g1="afii10052" g2="uni04B3" k="41" />
+<hkern g1="afii10052" g2="uni04B5" k="82" />
+<hkern g1="afii10052" g2="uni04B7" k="102" />
+<hkern g1="afii10052" g2="uni04B9" k="102" />
+<hkern g1="afii10052" g2="uni04BB" k="102" />
+<hkern g1="afii10052" g2="uni04BC" k="102" />
+<hkern g1="afii10052" g2="uni04BD" k="143" />
+<hkern g1="afii10052" g2="uni04BE" k="102" />
+<hkern g1="afii10052" g2="uni04BF" k="143" />
+<hkern g1="afii10052" g2="uni04C2" k="41" />
+<hkern g1="afii10052" g2="uni04C4" k="102" />
+<hkern g1="afii10052" g2="uni04C5" k="102" />
+<hkern g1="afii10052" g2="uni04C6" k="123" />
+<hkern g1="afii10052" g2="uni04C8" k="102" />
+<hkern g1="afii10052" g2="uni04CA" k="102" />
+<hkern g1="afii10052" g2="uni04CC" k="102" />
+<hkern g1="afii10052" g2="uni04CE" k="102" />
+<hkern g1="afii10052" g2="uni04D0" k="143" />
+<hkern g1="afii10052" g2="uni04D2" k="143" />
+<hkern g1="afii10052" g2="uni04D4" k="143" />
+<hkern g1="afii10052" g2="uni04D7" k="143" />
+<hkern g1="afii10052" g2="uni04DD" k="41" />
+<hkern g1="afii10052" g2="uni04DF" k="41" />
+<hkern g1="afii10052" g2="uni04E1" k="61" />
+<hkern g1="afii10052" g2="uni04E3" k="102" />
+<hkern g1="afii10052" g2="uni04E5" k="102" />
+<hkern g1="afii10052" g2="uni04E6" k="41" />
+<hkern g1="afii10052" g2="uni04E7" k="143" />
+<hkern g1="afii10052" g2="uni04E8" k="41" />
+<hkern g1="afii10052" g2="uni04E9" k="143" />
+<hkern g1="afii10052" g2="uni04EA" k="41" />
+<hkern g1="afii10052" g2="uni04EB" k="143" />
+<hkern g1="afii10052" g2="uni04ED" k="41" />
+<hkern g1="afii10052" g2="uni04EF" k="82" />
+<hkern g1="afii10052" g2="uni04F1" k="82" />
+<hkern g1="afii10052" g2="uni04F3" k="82" />
+<hkern g1="afii10052" g2="uni04F5" k="102" />
+<hkern g1="afii10052" g2="uni04F7" k="102" />
+<hkern g1="afii10052" g2="uni04F9" k="102" />
+<hkern g1="afii10052" g2="uni04FD" k="41" />
+<hkern g1="afii10052" g2="uni04FF" k="41" />
+<hkern g1="afii10052" g2="uni0500" k="143" />
+<hkern g1="afii10052" g2="uni0501" k="143" />
+<hkern g1="afii10052" g2="uni0502" k="143" />
+<hkern g1="afii10052" g2="uni0503" k="143" />
+<hkern g1="afii10052" g2="uni0505" k="102" />
+<hkern g1="afii10052" g2="uni0507" k="102" />
+<hkern g1="afii10052" g2="uni0508" k="102" />
+<hkern g1="afii10052" g2="uni0509" k="123" />
+<hkern g1="afii10052" g2="uni050B" k="102" />
+<hkern g1="afii10052" g2="uni050C" k="41" />
+<hkern g1="afii10052" g2="uni050D" k="143" />
+<hkern g1="afii10052" g2="uni050F" k="82" />
+<hkern g1="afii10052" g2="uni0511" k="143" />
+<hkern g1="afii10052" g2="uni0512" k="102" />
+<hkern g1="afii10052" g2="uni0513" k="123" />
+<hkern g1="afii10053" g2="afii10053" k="41" />
+<hkern g1="afii10053" g2="afii10032" k="41" />
+<hkern g1="afii10053" g2="afii10035" k="41" />
+<hkern g1="afii10053" g2="afii10038" k="41" />
+<hkern g1="afii10053" g2="afii10089" k="41" />
+<hkern g1="afii10053" g2="uni0460" k="41" />
+<hkern g1="afii10053" g2="uni0472" k="41" />
+<hkern g1="afii10053" g2="uni0478" k="41" />
+<hkern g1="afii10053" g2="uni047A" k="41" />
+<hkern g1="afii10053" g2="uni047C" k="41" />
+<hkern g1="afii10053" g2="uni047E" k="41" />
+<hkern g1="afii10053" g2="uni0480" k="41" />
+<hkern g1="afii10053" g2="uni04A8" k="41" />
+<hkern g1="afii10053" g2="uni04AA" k="41" />
+<hkern g1="afii10053" g2="uni04B7" k="41" />
+<hkern g1="afii10053" g2="uni04B9" k="41" />
+<hkern g1="afii10053" g2="uni04BC" k="41" />
+<hkern g1="afii10053" g2="uni04BE" k="41" />
+<hkern g1="afii10053" g2="uni04CC" k="41" />
+<hkern g1="afii10053" g2="uni04E6" k="41" />
+<hkern g1="afii10053" g2="uni04E8" k="41" />
+<hkern g1="afii10053" g2="uni04EA" k="41" />
+<hkern g1="afii10053" g2="uni04F5" k="41" />
+<hkern g1="afii10053" g2="uni0500" k="41" />
+<hkern g1="afii10053" g2="uni0502" k="41" />
+<hkern g1="afii10053" g2="uni0505" k="41" />
+<hkern g1="afii10053" g2="uni0507" k="41" />
+<hkern g1="afii10053" g2="uni050C" k="41" />
+<hkern g1="afii10054" g2="uni0505" k="41" />
+<hkern g1="afii10054" g2="uni0507" k="41" />
+<hkern g1="afii10058" g2="quotedbl" k="82" />
+<hkern g1="afii10058" g2="quotesingle" k="82" />
+<hkern g1="afii10058" g2="afii10051" k="123" />
+<hkern g1="afii10058" g2="afii10060" k="123" />
+<hkern g1="afii10058" g2="afii10062" k="41" />
+<hkern g1="afii10058" g2="afii10036" k="102" />
+<hkern g1="afii10058" g2="afii10037" k="41" />
+<hkern g1="afii10058" g2="afii10041" k="102" />
+<hkern g1="afii10058" g2="afii10044" k="123" />
+<hkern g1="afii10058" g2="afii10084" k="41" />
+<hkern g1="afii10058" g2="afii10085" k="41" />
+<hkern g1="afii10058" g2="afii10089" k="41" />
+<hkern g1="afii10058" g2="afii10092" k="41" />
+<hkern g1="afii10058" g2="afii10110" k="41" />
+<hkern g1="afii10058" g2="quoteright" k="82" />
+<hkern g1="afii10058" g2="quotedblright" k="82" />
+<hkern g1="afii10058" g2="uni0462" k="82" />
+<hkern g1="afii10058" g2="uni0470" k="102" />
+<hkern g1="afii10058" g2="uni0474" k="82" />
+<hkern g1="afii10058" g2="uni0476" k="82" />
+<hkern g1="afii10058" g2="uni048C" k="82" />
+<hkern g1="afii10058" g2="uni0492" k="82" />
+<hkern g1="afii10058" g2="uni049E" k="82" />
+<hkern g1="afii10058" g2="uni04A0" k="123" />
+<hkern g1="afii10058" g2="uni04A1" k="41" />
+<hkern g1="afii10058" g2="uni04AC" k="102" />
+<hkern g1="afii10058" g2="uni04AD" k="41" />
+<hkern g1="afii10058" g2="uni04AE" k="102" />
+<hkern g1="afii10058" g2="uni04AF" k="41" />
+<hkern g1="afii10058" g2="uni04B0" k="102" />
+<hkern g1="afii10058" g2="uni04B1" k="41" />
+<hkern g1="afii10058" g2="uni04B4" k="123" />
+<hkern g1="afii10058" g2="uni04B5" k="41" />
+<hkern g1="afii10058" g2="uni04B6" k="102" />
+<hkern g1="afii10058" g2="uni04B7" k="41" />
+<hkern g1="afii10058" g2="uni04B8" k="102" />
+<hkern g1="afii10058" g2="uni04B9" k="41" />
+<hkern g1="afii10058" g2="uni04CB" k="102" />
+<hkern g1="afii10058" g2="uni04CC" k="41" />
+<hkern g1="afii10058" g2="uni04EE" k="41" />
+<hkern g1="afii10058" g2="uni04EF" k="41" />
+<hkern g1="afii10058" g2="uni04F0" k="41" />
+<hkern g1="afii10058" g2="uni04F1" k="41" />
+<hkern g1="afii10058" g2="uni04F2" k="41" />
+<hkern g1="afii10058" g2="uni04F3" k="41" />
+<hkern g1="afii10058" g2="uni04F4" k="102" />
+<hkern g1="afii10058" g2="uni04F5" k="41" />
+<hkern g1="afii10058" g2="uni04FA" k="82" />
+<hkern g1="afii10058" g2="uni0504" k="102" />
+<hkern g1="afii10058" g2="uni0505" k="61" />
+<hkern g1="afii10058" g2="uni0506" k="102" />
+<hkern g1="afii10058" g2="uni0507" k="61" />
+<hkern g1="afii10058" g2="uni050E" k="123" />
+<hkern g1="afii10058" g2="uni050F" k="41" />
+<hkern g1="afii10059" g2="quotedbl" k="82" />
+<hkern g1="afii10059" g2="quotesingle" k="82" />
+<hkern g1="afii10059" g2="afii10051" k="123" />
+<hkern g1="afii10059" g2="afii10060" k="123" />
+<hkern g1="afii10059" g2="afii10062" k="41" />
+<hkern g1="afii10059" g2="afii10036" k="102" />
+<hkern g1="afii10059" g2="afii10037" k="41" />
+<hkern g1="afii10059" g2="afii10041" k="102" />
+<hkern g1="afii10059" g2="afii10044" k="123" />
+<hkern g1="afii10059" g2="afii10084" k="41" />
+<hkern g1="afii10059" g2="afii10085" k="41" />
+<hkern g1="afii10059" g2="afii10089" k="41" />
+<hkern g1="afii10059" g2="afii10092" k="41" />
+<hkern g1="afii10059" g2="afii10110" k="41" />
+<hkern g1="afii10059" g2="quoteright" k="82" />
+<hkern g1="afii10059" g2="quotedblright" k="82" />
+<hkern g1="afii10059" g2="uni0462" k="82" />
+<hkern g1="afii10059" g2="uni0470" k="102" />
+<hkern g1="afii10059" g2="uni0474" k="82" />
+<hkern g1="afii10059" g2="uni0476" k="82" />
+<hkern g1="afii10059" g2="uni048C" k="82" />
+<hkern g1="afii10059" g2="uni0492" k="82" />
+<hkern g1="afii10059" g2="uni049E" k="82" />
+<hkern g1="afii10059" g2="uni04A0" k="123" />
+<hkern g1="afii10059" g2="uni04A1" k="41" />
+<hkern g1="afii10059" g2="uni04AC" k="102" />
+<hkern g1="afii10059" g2="uni04AD" k="41" />
+<hkern g1="afii10059" g2="uni04AE" k="102" />
+<hkern g1="afii10059" g2="uni04AF" k="41" />
+<hkern g1="afii10059" g2="uni04B0" k="102" />
+<hkern g1="afii10059" g2="uni04B1" k="41" />
+<hkern g1="afii10059" g2="uni04B4" k="123" />
+<hkern g1="afii10059" g2="uni04B5" k="41" />
+<hkern g1="afii10059" g2="uni04B6" k="102" />
+<hkern g1="afii10059" g2="uni04B7" k="41" />
+<hkern g1="afii10059" g2="uni04B8" k="102" />
+<hkern g1="afii10059" g2="uni04B9" k="41" />
+<hkern g1="afii10059" g2="uni04CB" k="102" />
+<hkern g1="afii10059" g2="uni04CC" k="41" />
+<hkern g1="afii10059" g2="uni04EE" k="41" />
+<hkern g1="afii10059" g2="uni04EF" k="41" />
+<hkern g1="afii10059" g2="uni04F0" k="41" />
+<hkern g1="afii10059" g2="uni04F1" k="41" />
+<hkern g1="afii10059" g2="uni04F2" k="41" />
+<hkern g1="afii10059" g2="uni04F3" k="41" />
+<hkern g1="afii10059" g2="uni04F4" k="102" />
+<hkern g1="afii10059" g2="uni04F5" k="41" />
+<hkern g1="afii10059" g2="uni04FA" k="82" />
+<hkern g1="afii10059" g2="uni0504" k="102" />
+<hkern g1="afii10059" g2="uni0505" k="61" />
+<hkern g1="afii10059" g2="uni0506" k="102" />
+<hkern g1="afii10059" g2="uni0507" k="61" />
+<hkern g1="afii10059" g2="uni050E" k="123" />
+<hkern g1="afii10059" g2="uni050F" k="41" />
+<hkern g1="afii10060" g2="quotedbl" k="82" />
+<hkern g1="afii10060" g2="quotesingle" k="82" />
+<hkern g1="afii10060" g2="afii10051" k="123" />
+<hkern g1="afii10060" g2="afii10060" k="123" />
+<hkern g1="afii10060" g2="afii10062" k="41" />
+<hkern g1="afii10060" g2="afii10036" k="102" />
+<hkern g1="afii10060" g2="afii10037" k="41" />
+<hkern g1="afii10060" g2="afii10041" k="102" />
+<hkern g1="afii10060" g2="afii10044" k="123" />
+<hkern g1="afii10060" g2="afii10084" k="41" />
+<hkern g1="afii10060" g2="afii10085" k="41" />
+<hkern g1="afii10060" g2="afii10089" k="41" />
+<hkern g1="afii10060" g2="afii10092" k="41" />
+<hkern g1="afii10060" g2="afii10110" k="41" />
+<hkern g1="afii10060" g2="quoteright" k="82" />
+<hkern g1="afii10060" g2="quotedblright" k="82" />
+<hkern g1="afii10060" g2="uni0462" k="82" />
+<hkern g1="afii10060" g2="uni0470" k="102" />
+<hkern g1="afii10060" g2="uni0474" k="82" />
+<hkern g1="afii10060" g2="uni0476" k="82" />
+<hkern g1="afii10060" g2="uni048C" k="82" />
+<hkern g1="afii10060" g2="uni0492" k="82" />
+<hkern g1="afii10060" g2="uni049E" k="82" />
+<hkern g1="afii10060" g2="uni04A0" k="123" />
+<hkern g1="afii10060" g2="uni04A1" k="41" />
+<hkern g1="afii10060" g2="uni04AC" k="102" />
+<hkern g1="afii10060" g2="uni04AD" k="41" />
+<hkern g1="afii10060" g2="uni04AE" k="102" />
+<hkern g1="afii10060" g2="uni04AF" k="41" />
+<hkern g1="afii10060" g2="uni04B0" k="102" />
+<hkern g1="afii10060" g2="uni04B1" k="41" />
+<hkern g1="afii10060" g2="uni04B4" k="123" />
+<hkern g1="afii10060" g2="uni04B5" k="41" />
+<hkern g1="afii10060" g2="uni04B6" k="102" />
+<hkern g1="afii10060" g2="uni04B7" k="41" />
+<hkern g1="afii10060" g2="uni04B8" k="102" />
+<hkern g1="afii10060" g2="uni04B9" k="41" />
+<hkern g1="afii10060" g2="uni04CB" k="102" />
+<hkern g1="afii10060" g2="uni04CC" k="41" />
+<hkern g1="afii10060" g2="uni04EE" k="41" />
+<hkern g1="afii10060" g2="uni04EF" k="41" />
+<hkern g1="afii10060" g2="uni04F0" k="41" />
+<hkern g1="afii10060" g2="uni04F1" k="41" />
+<hkern g1="afii10060" g2="uni04F2" k="41" />
+<hkern g1="afii10060" g2="uni04F3" k="41" />
+<hkern g1="afii10060" g2="uni04F4" k="102" />
+<hkern g1="afii10060" g2="uni04F5" k="41" />
+<hkern g1="afii10060" g2="uni04FA" k="82" />
+<hkern g1="afii10060" g2="uni0504" k="102" />
+<hkern g1="afii10060" g2="uni0505" k="61" />
+<hkern g1="afii10060" g2="uni0506" k="102" />
+<hkern g1="afii10060" g2="uni0507" k="61" />
+<hkern g1="afii10060" g2="uni050E" k="123" />
+<hkern g1="afii10060" g2="uni050F" k="41" />
+<hkern g1="afii10061" g2="afii10053" k="41" />
+<hkern g1="afii10061" g2="afii10032" k="41" />
+<hkern g1="afii10061" g2="afii10035" k="41" />
+<hkern g1="afii10061" g2="afii10038" k="41" />
+<hkern g1="afii10061" g2="afii10041" k="41" />
+<hkern g1="afii10061" g2="afii10089" k="41" />
+<hkern g1="afii10061" g2="uni0460" k="41" />
+<hkern g1="afii10061" g2="uni0470" k="41" />
+<hkern g1="afii10061" g2="uni0472" k="41" />
+<hkern g1="afii10061" g2="uni0478" k="41" />
+<hkern g1="afii10061" g2="uni047A" k="41" />
+<hkern g1="afii10061" g2="uni047C" k="41" />
+<hkern g1="afii10061" g2="uni047E" k="41" />
+<hkern g1="afii10061" g2="uni0480" k="41" />
+<hkern g1="afii10061" g2="uni04A8" k="41" />
+<hkern g1="afii10061" g2="uni04AA" k="41" />
+<hkern g1="afii10061" g2="uni04B6" k="41" />
+<hkern g1="afii10061" g2="uni04B7" k="41" />
+<hkern g1="afii10061" g2="uni04B8" k="41" />
+<hkern g1="afii10061" g2="uni04B9" k="41" />
+<hkern g1="afii10061" g2="uni04BC" k="102" />
+<hkern g1="afii10061" g2="uni04BE" k="102" />
+<hkern g1="afii10061" g2="uni04CB" k="41" />
+<hkern g1="afii10061" g2="uni04CC" k="41" />
+<hkern g1="afii10061" g2="uni04E6" k="41" />
+<hkern g1="afii10061" g2="uni04E8" k="41" />
+<hkern g1="afii10061" g2="uni04EA" k="41" />
+<hkern g1="afii10061" g2="uni04F4" k="41" />
+<hkern g1="afii10061" g2="uni04F5" k="41" />
+<hkern g1="afii10061" g2="uni0500" k="41" />
+<hkern g1="afii10061" g2="uni0502" k="41" />
+<hkern g1="afii10061" g2="uni0505" k="41" />
+<hkern g1="afii10061" g2="uni0507" k="41" />
+<hkern g1="afii10061" g2="uni050C" k="41" />
+<hkern g1="afii10061" g2="uni0510" k="20" />
+<hkern g1="afii10062" g2="comma" k="123" />
+<hkern g1="afii10062" g2="period" k="123" />
+<hkern g1="afii10062" g2="afii10053" k="20" />
+<hkern g1="afii10062" g2="afii10058" k="102" />
+<hkern g1="afii10062" g2="afii10017" k="143" />
+<hkern g1="afii10062" g2="afii10021" k="102" />
+<hkern g1="afii10062" g2="afii10029" k="102" />
+<hkern g1="afii10062" g2="afii10032" k="20" />
+<hkern g1="afii10062" g2="afii10035" k="20" />
+<hkern g1="afii10062" g2="afii10038" k="61" />
+<hkern g1="afii10062" g2="afii10049" k="20" />
+<hkern g1="afii10062" g2="afii10069" k="82" />
+<hkern g1="afii10062" g2="afii10070" k="41" />
+<hkern g1="afii10062" g2="afii10077" k="82" />
+<hkern g1="afii10062" g2="afii10080" k="41" />
+<hkern g1="afii10062" g2="afii10083" k="41" />
+<hkern g1="afii10062" g2="afii10086" k="41" />
+<hkern g1="afii10062" g2="afii10089" k="41" />
+<hkern g1="afii10062" g2="afii10071" k="41" />
+<hkern g1="afii10062" g2="afii10099" k="-102" />
+<hkern g1="afii10062" g2="afii10101" k="41" />
+<hkern g1="afii10062" g2="afii10102" k="20" />
+<hkern g1="afii10062" g2="afii10106" k="82" />
+<hkern g1="afii10062" g2="afii10108" k="-102" />
+<hkern g1="afii10062" g2="quotesinglbase" k="123" />
+<hkern g1="afii10062" g2="quotedblbase" k="123" />
+<hkern g1="afii10062" g2="uni0450" k="41" />
+<hkern g1="afii10062" g2="uni0460" k="20" />
+<hkern g1="afii10062" g2="uni0466" k="143" />
+<hkern g1="afii10062" g2="uni0467" k="82" />
+<hkern g1="afii10062" g2="uni0472" k="20" />
+<hkern g1="afii10062" g2="uni0473" k="41" />
+<hkern g1="afii10062" g2="uni0478" k="20" />
+<hkern g1="afii10062" g2="uni0479" k="41" />
+<hkern g1="afii10062" g2="uni047A" k="20" />
+<hkern g1="afii10062" g2="uni047B" k="41" />
+<hkern g1="afii10062" g2="uni047C" k="20" />
+<hkern g1="afii10062" g2="uni047D" k="41" />
+<hkern g1="afii10062" g2="uni047E" k="20" />
+<hkern g1="afii10062" g2="uni0480" k="20" />
+<hkern g1="afii10062" g2="uni0481" k="41" />
+<hkern g1="afii10062" g2="uni048D" k="-102" />
+<hkern g1="afii10062" g2="uni049F" k="-102" />
+<hkern g1="afii10062" g2="uni04A8" k="20" />
+<hkern g1="afii10062" g2="uni04A9" k="41" />
+<hkern g1="afii10062" g2="uni04AA" k="20" />
+<hkern g1="afii10062" g2="uni04AB" k="41" />
+<hkern g1="afii10062" g2="uni04B7" k="41" />
+<hkern g1="afii10062" g2="uni04B9" k="41" />
+<hkern g1="afii10062" g2="uni04BC" k="41" />
+<hkern g1="afii10062" g2="uni04BD" k="61" />
+<hkern g1="afii10062" g2="uni04BE" k="41" />
+<hkern g1="afii10062" g2="uni04BF" k="61" />
+<hkern g1="afii10062" g2="uni04C5" k="102" />
+<hkern g1="afii10062" g2="uni04C6" k="82" />
+<hkern g1="afii10062" g2="uni04CC" k="41" />
+<hkern g1="afii10062" g2="uni04D0" k="143" />
+<hkern g1="afii10062" g2="uni04D2" k="143" />
+<hkern g1="afii10062" g2="uni04D4" k="143" />
+<hkern g1="afii10062" g2="uni04D7" k="41" />
+<hkern g1="afii10062" g2="uni04E6" k="20" />
+<hkern g1="afii10062" g2="uni04E7" k="41" />
+<hkern g1="afii10062" g2="uni04E8" k="20" />
+<hkern g1="afii10062" g2="uni04E9" k="41" />
+<hkern g1="afii10062" g2="uni04EA" k="20" />
+<hkern g1="afii10062" g2="uni04EB" k="41" />
+<hkern g1="afii10062" g2="uni04F5" k="41" />
+<hkern g1="afii10062" g2="uni0500" k="143" />
+<hkern g1="afii10062" g2="uni0501" k="41" />
+<hkern g1="afii10062" g2="uni0502" k="143" />
+<hkern g1="afii10062" g2="uni0503" k="41" />
+<hkern g1="afii10062" g2="uni0508" k="102" />
+<hkern g1="afii10062" g2="uni0509" k="82" />
+<hkern g1="afii10062" g2="uni050C" k="20" />
+<hkern g1="afii10062" g2="uni050D" k="41" />
+<hkern g1="afii10062" g2="uni0511" k="41" />
+<hkern g1="afii10062" g2="uni0512" k="102" />
+<hkern g1="afii10062" g2="uni0513" k="82" />
+<hkern g1="afii10017" g2="quotedbl" k="143" />
+<hkern g1="afii10017" g2="quotesingle" k="143" />
+<hkern g1="afii10017" g2="afii10051" k="102" />
+<hkern g1="afii10017" g2="afii10060" k="102" />
+<hkern g1="afii10017" g2="afii10036" k="143" />
+<hkern g1="afii10017" g2="afii10038" k="41" />
+<hkern g1="afii10017" g2="afii10041" k="102" />
+<hkern g1="afii10017" g2="afii10044" k="102" />
+<hkern g1="afii10017" g2="afii10084" k="41" />
+<hkern g1="afii10017" g2="afii10089" k="41" />
+<hkern g1="afii10017" g2="afii10092" k="41" />
+<hkern g1="afii10017" g2="quoteright" k="143" />
+<hkern g1="afii10017" g2="quotedblright" k="143" />
+<hkern g1="afii10017" g2="uni0462" k="41" />
+<hkern g1="afii10017" g2="uni0470" k="102" />
+<hkern g1="afii10017" g2="uni0474" k="82" />
+<hkern g1="afii10017" g2="uni0476" k="82" />
+<hkern g1="afii10017" g2="uni048C" k="41" />
+<hkern g1="afii10017" g2="uni0492" k="41" />
+<hkern g1="afii10017" g2="uni049E" k="41" />
+<hkern g1="afii10017" g2="uni04A0" k="102" />
+<hkern g1="afii10017" g2="uni04A1" k="41" />
+<hkern g1="afii10017" g2="uni04AC" k="143" />
+<hkern g1="afii10017" g2="uni04AD" k="41" />
+<hkern g1="afii10017" g2="uni04AE" k="123" />
+<hkern g1="afii10017" g2="uni04B0" k="123" />
+<hkern g1="afii10017" g2="uni04B4" k="102" />
+<hkern g1="afii10017" g2="uni04B5" k="41" />
+<hkern g1="afii10017" g2="uni04B6" k="102" />
+<hkern g1="afii10017" g2="uni04B7" k="41" />
+<hkern g1="afii10017" g2="uni04B8" k="102" />
+<hkern g1="afii10017" g2="uni04B9" k="41" />
+<hkern g1="afii10017" g2="uni04BC" k="102" />
+<hkern g1="afii10017" g2="uni04BE" k="102" />
+<hkern g1="afii10017" g2="uni04CB" k="102" />
+<hkern g1="afii10017" g2="uni04CC" k="41" />
+<hkern g1="afii10017" g2="uni04D8" k="41" />
+<hkern g1="afii10017" g2="uni04DA" k="41" />
+<hkern g1="afii10017" g2="uni04F4" k="102" />
+<hkern g1="afii10017" g2="uni04F5" k="41" />
+<hkern g1="afii10017" g2="uni04FA" k="41" />
+<hkern g1="afii10017" g2="uni0504" k="143" />
+<hkern g1="afii10017" g2="uni0505" k="41" />
+<hkern g1="afii10017" g2="uni0506" k="143" />
+<hkern g1="afii10017" g2="uni0507" k="41" />
+<hkern g1="afii10017" g2="uni050E" k="102" />
+<hkern g1="afii10017" g2="uni050F" k="41" />
+<hkern g1="afii10018" g2="quotedbl" k="41" />
+<hkern g1="afii10018" g2="quotesingle" k="41" />
+<hkern g1="afii10018" g2="afii10017" k="20" />
+<hkern g1="afii10018" g2="afii10041" k="41" />
+<hkern g1="afii10018" g2="quoteright" k="41" />
+<hkern g1="afii10018" g2="quotedblright" k="41" />
+<hkern g1="afii10018" g2="uni0466" k="20" />
+<hkern g1="afii10018" g2="uni0470" k="41" />
+<hkern g1="afii10018" g2="uni04B6" k="41" />
+<hkern g1="afii10018" g2="uni04B8" k="41" />
+<hkern g1="afii10018" g2="uni04BC" k="41" />
+<hkern g1="afii10018" g2="uni04BE" k="41" />
+<hkern g1="afii10018" g2="uni04CB" k="41" />
+<hkern g1="afii10018" g2="uni04D0" k="20" />
+<hkern g1="afii10018" g2="uni04D2" k="20" />
+<hkern g1="afii10018" g2="uni04D4" k="20" />
+<hkern g1="afii10018" g2="uni04F4" k="41" />
+<hkern g1="afii10019" g2="comma" k="82" />
+<hkern g1="afii10019" g2="period" k="82" />
+<hkern g1="afii10019" g2="quotesinglbase" k="82" />
+<hkern g1="afii10019" g2="quotedblbase" k="82" />
+<hkern g1="afii10019" g2="uni0474" k="20" />
+<hkern g1="afii10019" g2="uni0476" k="20" />
+<hkern g1="afii10019" g2="uni04AE" k="20" />
+<hkern g1="afii10019" g2="uni04B0" k="20" />
+<hkern g1="afii10019" g2="uni0504" k="41" />
+<hkern g1="afii10019" g2="uni0506" k="41" />
+<hkern g1="afii10020" g2="comma" k="123" />
+<hkern g1="afii10020" g2="hyphen" k="82" />
+<hkern g1="afii10020" g2="period" k="123" />
+<hkern g1="afii10020" g2="afii10053" k="41" />
+<hkern g1="afii10020" g2="afii10058" k="102" />
+<hkern g1="afii10020" g2="afii10017" k="143" />
+<hkern g1="afii10020" g2="afii10021" k="102" />
+<hkern g1="afii10020" g2="afii10029" k="102" />
+<hkern g1="afii10020" g2="afii10032" k="41" />
+<hkern g1="afii10020" g2="afii10035" k="41" />
+<hkern g1="afii10020" g2="afii10036" k="-41" />
+<hkern g1="afii10020" g2="afii10038" k="82" />
+<hkern g1="afii10020" g2="afii10067" k="102" />
+<hkern g1="afii10020" g2="afii10068" k="102" />
+<hkern g1="afii10020" g2="afii10069" k="123" />
+<hkern g1="afii10020" g2="afii10070" k="143" />
+<hkern g1="afii10020" g2="afii10072" k="41" />
+<hkern g1="afii10020" g2="afii10073" k="41" />
+<hkern g1="afii10020" g2="afii10074" k="102" />
+<hkern g1="afii10020" g2="afii10075" k="102" />
+<hkern g1="afii10020" g2="afii10076" k="102" />
+<hkern g1="afii10020" g2="afii10077" k="123" />
+<hkern g1="afii10020" g2="afii10078" k="102" />
+<hkern g1="afii10020" g2="afii10079" k="102" />
+<hkern g1="afii10020" g2="afii10080" k="143" />
+<hkern g1="afii10020" g2="afii10081" k="102" />
+<hkern g1="afii10020" g2="afii10082" k="102" />
+<hkern g1="afii10020" g2="afii10083" k="143" />
+<hkern g1="afii10020" g2="afii10084" k="82" />
+<hkern g1="afii10020" g2="afii10085" k="82" />
+<hkern g1="afii10020" g2="afii10086" k="143" />
+<hkern g1="afii10020" g2="afii10087" k="41" />
+<hkern g1="afii10020" g2="afii10088" k="102" />
+<hkern g1="afii10020" g2="afii10089" k="102" />
+<hkern g1="afii10020" g2="afii10090" k="102" />
+<hkern g1="afii10020" g2="afii10091" k="102" />
+<hkern g1="afii10020" g2="afii10092" k="82" />
+<hkern g1="afii10020" g2="afii10093" k="102" />
+<hkern g1="afii10020" g2="afii10094" k="102" />
+<hkern g1="afii10020" g2="afii10095" k="41" />
+<hkern g1="afii10020" g2="afii10096" k="102" />
+<hkern g1="afii10020" g2="afii10097" k="61" />
+<hkern g1="afii10020" g2="afii10071" k="143" />
+<hkern g1="afii10020" g2="afii10100" k="102" />
+<hkern g1="afii10020" g2="afii10101" k="143" />
+<hkern g1="afii10020" g2="afii10102" k="123" />
+<hkern g1="afii10020" g2="afii10106" k="123" />
+<hkern g1="afii10020" g2="afii10107" k="102" />
+<hkern g1="afii10020" g2="afii10109" k="102" />
+<hkern g1="afii10020" g2="afii10110" k="82" />
+<hkern g1="afii10020" g2="afii10193" k="102" />
+<hkern g1="afii10020" g2="afii10098" k="102" />
+<hkern g1="afii10020" g2="endash" k="82" />
+<hkern g1="afii10020" g2="emdash" k="82" />
+<hkern g1="afii10020" g2="afii00208" k="82" />
+<hkern g1="afii10020" g2="quotesinglbase" k="123" />
+<hkern g1="afii10020" g2="quotedblbase" k="123" />
+<hkern g1="afii10020" g2="uni0450" k="143" />
+<hkern g1="afii10020" g2="uni045D" k="102" />
+<hkern g1="afii10020" g2="uni0460" k="41" />
+<hkern g1="afii10020" g2="uni0461" k="41" />
+<hkern g1="afii10020" g2="uni0465" k="102" />
+<hkern g1="afii10020" g2="uni0466" k="143" />
+<hkern g1="afii10020" g2="uni0467" k="123" />
+<hkern g1="afii10020" g2="uni0469" k="102" />
+<hkern g1="afii10020" g2="uni046B" k="102" />
+<hkern g1="afii10020" g2="uni046D" k="102" />
+<hkern g1="afii10020" g2="uni0471" k="102" />
+<hkern g1="afii10020" g2="uni0472" k="41" />
+<hkern g1="afii10020" g2="uni0473" k="143" />
+<hkern g1="afii10020" g2="uni0475" k="41" />
+<hkern g1="afii10020" g2="uni0477" k="41" />
+<hkern g1="afii10020" g2="uni0478" k="41" />
+<hkern g1="afii10020" g2="uni0479" k="143" />
+<hkern g1="afii10020" g2="uni047A" k="41" />
+<hkern g1="afii10020" g2="uni047B" k="143" />
+<hkern g1="afii10020" g2="uni047C" k="41" />
+<hkern g1="afii10020" g2="uni047D" k="143" />
+<hkern g1="afii10020" g2="uni047E" k="41" />
+<hkern g1="afii10020" g2="uni047F" k="41" />
+<hkern g1="afii10020" g2="uni0480" k="41" />
+<hkern g1="afii10020" g2="uni0481" k="143" />
+<hkern g1="afii10020" g2="uni048B" k="102" />
+<hkern g1="afii10020" g2="uni048F" k="102" />
+<hkern g1="afii10020" g2="uni0495" k="102" />
+<hkern g1="afii10020" g2="uni0497" k="41" />
+<hkern g1="afii10020" g2="uni0499" k="41" />
+<hkern g1="afii10020" g2="uni049B" k="102" />
+<hkern g1="afii10020" g2="uni049D" k="102" />
+<hkern g1="afii10020" g2="uni04A1" k="82" />
+<hkern g1="afii10020" g2="uni04A3" k="102" />
+<hkern g1="afii10020" g2="uni04A5" k="102" />
+<hkern g1="afii10020" g2="uni04A7" k="102" />
+<hkern g1="afii10020" g2="uni04A8" k="41" />
+<hkern g1="afii10020" g2="uni04A9" k="143" />
+<hkern g1="afii10020" g2="uni04AA" k="41" />
+<hkern g1="afii10020" g2="uni04AB" k="143" />
+<hkern g1="afii10020" g2="uni04AC" k="-41" />
+<hkern g1="afii10020" g2="uni04AD" k="82" />
+<hkern g1="afii10020" g2="uni04AF" k="82" />
+<hkern g1="afii10020" g2="uni04B1" k="82" />
+<hkern g1="afii10020" g2="uni04B3" k="41" />
+<hkern g1="afii10020" g2="uni04B5" k="82" />
+<hkern g1="afii10020" g2="uni04B7" k="102" />
+<hkern g1="afii10020" g2="uni04B9" k="102" />
+<hkern g1="afii10020" g2="uni04BB" k="102" />
+<hkern g1="afii10020" g2="uni04BC" k="102" />
+<hkern g1="afii10020" g2="uni04BD" k="143" />
+<hkern g1="afii10020" g2="uni04BE" k="102" />
+<hkern g1="afii10020" g2="uni04BF" k="143" />
+<hkern g1="afii10020" g2="uni04C2" k="41" />
+<hkern g1="afii10020" g2="uni04C4" k="102" />
+<hkern g1="afii10020" g2="uni04C5" k="102" />
+<hkern g1="afii10020" g2="uni04C6" k="123" />
+<hkern g1="afii10020" g2="uni04C8" k="102" />
+<hkern g1="afii10020" g2="uni04CA" k="102" />
+<hkern g1="afii10020" g2="uni04CC" k="102" />
+<hkern g1="afii10020" g2="uni04CE" k="102" />
+<hkern g1="afii10020" g2="uni04D0" k="143" />
+<hkern g1="afii10020" g2="uni04D2" k="143" />
+<hkern g1="afii10020" g2="uni04D4" k="143" />
+<hkern g1="afii10020" g2="uni04D7" k="143" />
+<hkern g1="afii10020" g2="uni04DD" k="41" />
+<hkern g1="afii10020" g2="uni04DF" k="41" />
+<hkern g1="afii10020" g2="uni04E1" k="61" />
+<hkern g1="afii10020" g2="uni04E3" k="102" />
+<hkern g1="afii10020" g2="uni04E5" k="102" />
+<hkern g1="afii10020" g2="uni04E6" k="41" />
+<hkern g1="afii10020" g2="uni04E7" k="143" />
+<hkern g1="afii10020" g2="uni04E8" k="41" />
+<hkern g1="afii10020" g2="uni04E9" k="143" />
+<hkern g1="afii10020" g2="uni04EA" k="41" />
+<hkern g1="afii10020" g2="uni04EB" k="143" />
+<hkern g1="afii10020" g2="uni04ED" k="41" />
+<hkern g1="afii10020" g2="uni04EF" k="82" />
+<hkern g1="afii10020" g2="uni04F1" k="82" />
+<hkern g1="afii10020" g2="uni04F3" k="82" />
+<hkern g1="afii10020" g2="uni04F5" k="102" />
+<hkern g1="afii10020" g2="uni04F7" k="102" />
+<hkern g1="afii10020" g2="uni04F9" k="102" />
+<hkern g1="afii10020" g2="uni04FD" k="41" />
+<hkern g1="afii10020" g2="uni04FF" k="41" />
+<hkern g1="afii10020" g2="uni0500" k="143" />
+<hkern g1="afii10020" g2="uni0501" k="143" />
+<hkern g1="afii10020" g2="uni0502" k="143" />
+<hkern g1="afii10020" g2="uni0503" k="143" />
+<hkern g1="afii10020" g2="uni0505" k="102" />
+<hkern g1="afii10020" g2="uni0507" k="102" />
+<hkern g1="afii10020" g2="uni0508" k="102" />
+<hkern g1="afii10020" g2="uni0509" k="123" />
+<hkern g1="afii10020" g2="uni050B" k="102" />
+<hkern g1="afii10020" g2="uni050C" k="41" />
+<hkern g1="afii10020" g2="uni050D" k="143" />
+<hkern g1="afii10020" g2="uni050F" k="82" />
+<hkern g1="afii10020" g2="uni0511" k="143" />
+<hkern g1="afii10020" g2="uni0512" k="102" />
+<hkern g1="afii10020" g2="uni0513" k="123" />
+<hkern g1="afii10021" g2="afii10057" k="-225" />
+<hkern g1="afii10021" g2="uni04E1" k="-41" />
+<hkern g1="afii10021" g2="uni0505" k="41" />
+<hkern g1="afii10021" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="afii10053" k="41" />
+<hkern g1="afii10024" g2="afii10032" k="41" />
+<hkern g1="afii10024" g2="afii10035" k="41" />
+<hkern g1="afii10024" g2="afii10038" k="41" />
+<hkern g1="afii10024" g2="afii10041" k="41" />
+<hkern g1="afii10024" g2="afii10089" k="41" />
+<hkern g1="afii10024" g2="uni0460" k="41" />
+<hkern g1="afii10024" g2="uni0470" k="41" />
+<hkern g1="afii10024" g2="uni0472" k="41" />
+<hkern g1="afii10024" g2="uni0478" k="41" />
+<hkern g1="afii10024" g2="uni047A" k="41" />
+<hkern g1="afii10024" g2="uni047C" k="41" />
+<hkern g1="afii10024" g2="uni047E" k="41" />
+<hkern g1="afii10024" g2="uni0480" k="41" />
+<hkern g1="afii10024" g2="uni04A8" k="41" />
+<hkern g1="afii10024" g2="uni04AA" k="41" />
+<hkern g1="afii10024" g2="uni04B6" k="41" />
+<hkern g1="afii10024" g2="uni04B7" k="41" />
+<hkern g1="afii10024" g2="uni04B8" k="41" />
+<hkern g1="afii10024" g2="uni04B9" k="41" />
+<hkern g1="afii10024" g2="uni04BC" k="102" />
+<hkern g1="afii10024" g2="uni04BE" k="102" />
+<hkern g1="afii10024" g2="uni04CB" k="41" />
+<hkern g1="afii10024" g2="uni04CC" k="41" />
+<hkern g1="afii10024" g2="uni04E6" k="41" />
+<hkern g1="afii10024" g2="uni04E8" k="41" />
+<hkern g1="afii10024" g2="uni04EA" k="41" />
+<hkern g1="afii10024" g2="uni04F4" k="41" />
+<hkern g1="afii10024" g2="uni04F5" k="41" />
+<hkern g1="afii10024" g2="uni0500" k="41" />
+<hkern g1="afii10024" g2="uni0502" k="41" />
+<hkern g1="afii10024" g2="uni0505" k="41" />
+<hkern g1="afii10024" g2="uni0507" k="41" />
+<hkern g1="afii10024" g2="uni050C" k="41" />
+<hkern g1="afii10024" g2="uni0510" k="20" />
+<hkern g1="afii10025" g2="comma" k="82" />
+<hkern g1="afii10025" g2="period" k="82" />
+<hkern g1="afii10025" g2="quotesinglbase" k="82" />
+<hkern g1="afii10025" g2="quotedblbase" k="82" />
+<hkern g1="afii10025" g2="uni0474" k="20" />
+<hkern g1="afii10025" g2="uni0476" k="20" />
+<hkern g1="afii10025" g2="uni04AE" k="20" />
+<hkern g1="afii10025" g2="uni04B0" k="20" />
+<hkern g1="afii10025" g2="uni0504" k="41" />
+<hkern g1="afii10025" g2="uni0506" k="41" />
+<hkern g1="afii10028" g2="afii10053" k="41" />
+<hkern g1="afii10028" g2="afii10032" k="41" />
+<hkern g1="afii10028" g2="afii10035" k="41" />
+<hkern g1="afii10028" g2="afii10038" k="41" />
+<hkern g1="afii10028" g2="afii10041" k="41" />
+<hkern g1="afii10028" g2="afii10089" k="41" />
+<hkern g1="afii10028" g2="uni0460" k="41" />
+<hkern g1="afii10028" g2="uni0470" k="41" />
+<hkern g1="afii10028" g2="uni0472" k="41" />
+<hkern g1="afii10028" g2="uni0478" k="41" />
+<hkern g1="afii10028" g2="uni047A" k="41" />
+<hkern g1="afii10028" g2="uni047C" k="41" />
+<hkern g1="afii10028" g2="uni047E" k="41" />
+<hkern g1="afii10028" g2="uni0480" k="41" />
+<hkern g1="afii10028" g2="uni04A8" k="41" />
+<hkern g1="afii10028" g2="uni04AA" k="41" />
+<hkern g1="afii10028" g2="uni04B6" k="41" />
+<hkern g1="afii10028" g2="uni04B7" k="41" />
+<hkern g1="afii10028" g2="uni04B8" k="41" />
+<hkern g1="afii10028" g2="uni04B9" k="41" />
+<hkern g1="afii10028" g2="uni04BC" k="102" />
+<hkern g1="afii10028" g2="uni04BE" k="102" />
+<hkern g1="afii10028" g2="uni04CB" k="41" />
+<hkern g1="afii10028" g2="uni04CC" k="41" />
+<hkern g1="afii10028" g2="uni04E6" k="41" />
+<hkern g1="afii10028" g2="uni04E8" k="41" />
+<hkern g1="afii10028" g2="uni04EA" k="41" />
+<hkern g1="afii10028" g2="uni04F4" k="41" />
+<hkern g1="afii10028" g2="uni04F5" k="41" />
+<hkern g1="afii10028" g2="uni0500" k="41" />
+<hkern g1="afii10028" g2="uni0502" k="41" />
+<hkern g1="afii10028" g2="uni0505" k="41" />
+<hkern g1="afii10028" g2="uni0507" k="41" />
+<hkern g1="afii10028" g2="uni050C" k="41" />
+<hkern g1="afii10028" g2="uni0510" k="20" />
+<hkern g1="afii10032" g2="comma" k="82" />
+<hkern g1="afii10032" g2="period" k="82" />
+<hkern g1="afii10032" g2="afii10051" k="20" />
+<hkern g1="afii10032" g2="afii10058" k="41" />
+<hkern g1="afii10032" g2="afii10060" k="20" />
+<hkern g1="afii10032" g2="afii10062" k="41" />
+<hkern g1="afii10032" g2="afii10017" k="41" />
+<hkern g1="afii10032" g2="afii10021" k="41" />
+<hkern g1="afii10032" g2="afii10024" k="41" />
+<hkern g1="afii10032" g2="afii10025" k="20" />
+<hkern g1="afii10032" g2="afii10029" k="41" />
+<hkern g1="afii10032" g2="afii10036" k="61" />
+<hkern g1="afii10032" g2="afii10037" k="41" />
+<hkern g1="afii10032" g2="afii10039" k="41" />
+<hkern g1="afii10032" g2="afii10041" k="41" />
+<hkern g1="afii10032" g2="afii10044" k="20" />
+<hkern g1="afii10032" g2="afii10047" k="20" />
+<hkern g1="afii10032" g2="afii10069" k="20" />
+<hkern g1="afii10032" g2="afii10077" k="20" />
+<hkern g1="afii10032" g2="afii10106" k="20" />
+<hkern g1="afii10032" g2="quotesinglbase" k="82" />
+<hkern g1="afii10032" g2="quotedblbase" k="82" />
+<hkern g1="afii10032" g2="uni0466" k="41" />
+<hkern g1="afii10032" g2="uni0467" k="20" />
+<hkern g1="afii10032" g2="uni046E" k="20" />
+<hkern g1="afii10032" g2="uni0470" k="41" />
+<hkern g1="afii10032" g2="uni0474" k="20" />
+<hkern g1="afii10032" g2="uni0476" k="20" />
+<hkern g1="afii10032" g2="uni0496" k="41" />
+<hkern g1="afii10032" g2="uni0498" k="20" />
+<hkern g1="afii10032" g2="uni04A0" k="20" />
+<hkern g1="afii10032" g2="uni04AC" k="61" />
+<hkern g1="afii10032" g2="uni04AE" k="20" />
+<hkern g1="afii10032" g2="uni04B0" k="20" />
+<hkern g1="afii10032" g2="uni04B2" k="41" />
+<hkern g1="afii10032" g2="uni04B4" k="20" />
+<hkern g1="afii10032" g2="uni04B6" k="41" />
+<hkern g1="afii10032" g2="uni04B8" k="41" />
+<hkern g1="afii10032" g2="uni04C1" k="41" />
+<hkern g1="afii10032" g2="uni04C5" k="41" />
+<hkern g1="afii10032" g2="uni04C6" k="20" />
+<hkern g1="afii10032" g2="uni04CB" k="41" />
+<hkern g1="afii10032" g2="uni04D0" k="41" />
+<hkern g1="afii10032" g2="uni04D2" k="41" />
+<hkern g1="afii10032" g2="uni04D4" k="41" />
+<hkern g1="afii10032" g2="uni04DC" k="41" />
+<hkern g1="afii10032" g2="uni04DE" k="20" />
+<hkern g1="afii10032" g2="uni04EC" k="20" />
+<hkern g1="afii10032" g2="uni04EE" k="41" />
+<hkern g1="afii10032" g2="uni04F0" k="41" />
+<hkern g1="afii10032" g2="uni04F2" k="41" />
+<hkern g1="afii10032" g2="uni04F4" k="41" />
+<hkern g1="afii10032" g2="uni04FC" k="41" />
+<hkern g1="afii10032" g2="uni04FE" k="41" />
+<hkern g1="afii10032" g2="uni0504" k="41" />
+<hkern g1="afii10032" g2="uni0506" k="41" />
+<hkern g1="afii10032" g2="uni0508" k="41" />
+<hkern g1="afii10032" g2="uni0509" k="20" />
+<hkern g1="afii10032" g2="uni050E" k="20" />
+<hkern g1="afii10032" g2="uni0512" k="41" />
+<hkern g1="afii10032" g2="uni0513" k="20" />
+<hkern g1="afii10034" g2="comma" k="266" />
+<hkern g1="afii10034" g2="period" k="266" />
+<hkern g1="afii10034" g2="afii10058" k="123" />
+<hkern g1="afii10034" g2="afii10017" k="102" />
+<hkern g1="afii10034" g2="afii10021" k="123" />
+<hkern g1="afii10034" g2="afii10024" k="41" />
+<hkern g1="afii10034" g2="afii10029" k="123" />
+<hkern g1="afii10034" g2="afii10039" k="41" />
+<hkern g1="afii10034" g2="afii10069" k="102" />
+<hkern g1="afii10034" g2="afii10077" k="102" />
+<hkern g1="afii10034" g2="afii10106" k="102" />
+<hkern g1="afii10034" g2="quotesinglbase" k="266" />
+<hkern g1="afii10034" g2="quotedblbase" k="266" />
+<hkern g1="afii10034" g2="uni0466" k="102" />
+<hkern g1="afii10034" g2="uni0467" k="102" />
+<hkern g1="afii10034" g2="uni046A" k="20" />
+<hkern g1="afii10034" g2="uni0496" k="41" />
+<hkern g1="afii10034" g2="uni04B2" k="41" />
+<hkern g1="afii10034" g2="uni04C1" k="41" />
+<hkern g1="afii10034" g2="uni04C5" k="123" />
+<hkern g1="afii10034" g2="uni04C6" k="102" />
+<hkern g1="afii10034" g2="uni04D0" k="102" />
+<hkern g1="afii10034" g2="uni04D2" k="102" />
+<hkern g1="afii10034" g2="uni04D4" k="102" />
+<hkern g1="afii10034" g2="uni04DC" k="41" />
+<hkern g1="afii10034" g2="uni04FC" k="41" />
+<hkern g1="afii10034" g2="uni04FE" k="41" />
+<hkern g1="afii10034" g2="uni0500" k="82" />
+<hkern g1="afii10034" g2="uni0502" k="82" />
+<hkern g1="afii10034" g2="uni0508" k="123" />
+<hkern g1="afii10034" g2="uni0509" k="102" />
+<hkern g1="afii10034" g2="uni0512" k="123" />
+<hkern g1="afii10034" g2="uni0513" k="102" />
+<hkern g1="afii10035" g2="afii10053" k="41" />
+<hkern g1="afii10035" g2="afii10032" k="41" />
+<hkern g1="afii10035" g2="afii10035" k="41" />
+<hkern g1="afii10035" g2="afii10038" k="41" />
+<hkern g1="afii10035" g2="afii10089" k="41" />
+<hkern g1="afii10035" g2="uni0460" k="41" />
+<hkern g1="afii10035" g2="uni0472" k="41" />
+<hkern g1="afii10035" g2="uni0478" k="41" />
+<hkern g1="afii10035" g2="uni047A" k="41" />
+<hkern g1="afii10035" g2="uni047C" k="41" />
+<hkern g1="afii10035" g2="uni047E" k="41" />
+<hkern g1="afii10035" g2="uni0480" k="41" />
+<hkern g1="afii10035" g2="uni04A8" k="41" />
+<hkern g1="afii10035" g2="uni04AA" k="41" />
+<hkern g1="afii10035" g2="uni04B7" k="41" />
+<hkern g1="afii10035" g2="uni04B9" k="41" />
+<hkern g1="afii10035" g2="uni04BC" k="41" />
+<hkern g1="afii10035" g2="uni04BE" k="41" />
+<hkern g1="afii10035" g2="uni04CC" k="41" />
+<hkern g1="afii10035" g2="uni04E6" k="41" />
+<hkern g1="afii10035" g2="uni04E8" k="41" />
+<hkern g1="afii10035" g2="uni04EA" k="41" />
+<hkern g1="afii10035" g2="uni04F5" k="41" />
+<hkern g1="afii10035" g2="uni0500" k="41" />
+<hkern g1="afii10035" g2="uni0502" k="41" />
+<hkern g1="afii10035" g2="uni0505" k="41" />
+<hkern g1="afii10035" g2="uni0507" k="41" />
+<hkern g1="afii10035" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="comma" k="123" />
+<hkern g1="afii10036" g2="hyphen" k="82" />
+<hkern g1="afii10036" g2="period" k="123" />
+<hkern g1="afii10036" g2="afii10053" k="41" />
+<hkern g1="afii10036" g2="afii10058" k="102" />
+<hkern g1="afii10036" g2="afii10017" k="143" />
+<hkern g1="afii10036" g2="afii10021" k="102" />
+<hkern g1="afii10036" g2="afii10029" k="102" />
+<hkern g1="afii10036" g2="afii10032" k="41" />
+<hkern g1="afii10036" g2="afii10035" k="41" />
+<hkern g1="afii10036" g2="afii10036" k="-41" />
+<hkern g1="afii10036" g2="afii10038" k="82" />
+<hkern g1="afii10036" g2="afii10067" k="102" />
+<hkern g1="afii10036" g2="afii10068" k="102" />
+<hkern g1="afii10036" g2="afii10069" k="123" />
+<hkern g1="afii10036" g2="afii10070" k="143" />
+<hkern g1="afii10036" g2="afii10072" k="41" />
+<hkern g1="afii10036" g2="afii10073" k="41" />
+<hkern g1="afii10036" g2="afii10074" k="102" />
+<hkern g1="afii10036" g2="afii10075" k="102" />
+<hkern g1="afii10036" g2="afii10076" k="102" />
+<hkern g1="afii10036" g2="afii10077" k="123" />
+<hkern g1="afii10036" g2="afii10078" k="102" />
+<hkern g1="afii10036" g2="afii10079" k="102" />
+<hkern g1="afii10036" g2="afii10080" k="143" />
+<hkern g1="afii10036" g2="afii10081" k="102" />
+<hkern g1="afii10036" g2="afii10082" k="102" />
+<hkern g1="afii10036" g2="afii10083" k="143" />
+<hkern g1="afii10036" g2="afii10084" k="82" />
+<hkern g1="afii10036" g2="afii10085" k="82" />
+<hkern g1="afii10036" g2="afii10086" k="143" />
+<hkern g1="afii10036" g2="afii10087" k="41" />
+<hkern g1="afii10036" g2="afii10088" k="102" />
+<hkern g1="afii10036" g2="afii10089" k="102" />
+<hkern g1="afii10036" g2="afii10090" k="102" />
+<hkern g1="afii10036" g2="afii10091" k="102" />
+<hkern g1="afii10036" g2="afii10092" k="82" />
+<hkern g1="afii10036" g2="afii10093" k="102" />
+<hkern g1="afii10036" g2="afii10094" k="102" />
+<hkern g1="afii10036" g2="afii10095" k="41" />
+<hkern g1="afii10036" g2="afii10096" k="102" />
+<hkern g1="afii10036" g2="afii10097" k="61" />
+<hkern g1="afii10036" g2="afii10071" k="143" />
+<hkern g1="afii10036" g2="afii10100" k="102" />
+<hkern g1="afii10036" g2="afii10101" k="143" />
+<hkern g1="afii10036" g2="afii10102" k="123" />
+<hkern g1="afii10036" g2="afii10106" k="123" />
+<hkern g1="afii10036" g2="afii10107" k="102" />
+<hkern g1="afii10036" g2="afii10109" k="102" />
+<hkern g1="afii10036" g2="afii10110" k="82" />
+<hkern g1="afii10036" g2="afii10193" k="102" />
+<hkern g1="afii10036" g2="afii10098" k="102" />
+<hkern g1="afii10036" g2="endash" k="82" />
+<hkern g1="afii10036" g2="emdash" k="82" />
+<hkern g1="afii10036" g2="afii00208" k="82" />
+<hkern g1="afii10036" g2="quotesinglbase" k="123" />
+<hkern g1="afii10036" g2="quotedblbase" k="123" />
+<hkern g1="afii10036" g2="uni0450" k="143" />
+<hkern g1="afii10036" g2="uni045D" k="102" />
+<hkern g1="afii10036" g2="uni0460" k="41" />
+<hkern g1="afii10036" g2="uni0461" k="41" />
+<hkern g1="afii10036" g2="uni0465" k="102" />
+<hkern g1="afii10036" g2="uni0466" k="143" />
+<hkern g1="afii10036" g2="uni0467" k="123" />
+<hkern g1="afii10036" g2="uni0469" k="102" />
+<hkern g1="afii10036" g2="uni046B" k="102" />
+<hkern g1="afii10036" g2="uni046D" k="102" />
+<hkern g1="afii10036" g2="uni0471" k="102" />
+<hkern g1="afii10036" g2="uni0472" k="41" />
+<hkern g1="afii10036" g2="uni0473" k="143" />
+<hkern g1="afii10036" g2="uni0475" k="41" />
+<hkern g1="afii10036" g2="uni0477" k="41" />
+<hkern g1="afii10036" g2="uni0478" k="41" />
+<hkern g1="afii10036" g2="uni0479" k="143" />
+<hkern g1="afii10036" g2="uni047A" k="41" />
+<hkern g1="afii10036" g2="uni047B" k="143" />
+<hkern g1="afii10036" g2="uni047C" k="41" />
+<hkern g1="afii10036" g2="uni047D" k="143" />
+<hkern g1="afii10036" g2="uni047E" k="41" />
+<hkern g1="afii10036" g2="uni047F" k="41" />
+<hkern g1="afii10036" g2="uni0480" k="41" />
+<hkern g1="afii10036" g2="uni0481" k="143" />
+<hkern g1="afii10036" g2="uni048B" k="102" />
+<hkern g1="afii10036" g2="uni048F" k="102" />
+<hkern g1="afii10036" g2="uni0495" k="102" />
+<hkern g1="afii10036" g2="uni0497" k="41" />
+<hkern g1="afii10036" g2="uni0499" k="41" />
+<hkern g1="afii10036" g2="uni049B" k="102" />
+<hkern g1="afii10036" g2="uni049D" k="102" />
+<hkern g1="afii10036" g2="uni04A1" k="82" />
+<hkern g1="afii10036" g2="uni04A3" k="102" />
+<hkern g1="afii10036" g2="uni04A5" k="102" />
+<hkern g1="afii10036" g2="uni04A7" k="102" />
+<hkern g1="afii10036" g2="uni04A8" k="41" />
+<hkern g1="afii10036" g2="uni04A9" k="143" />
+<hkern g1="afii10036" g2="uni04AA" k="41" />
+<hkern g1="afii10036" g2="uni04AB" k="143" />
+<hkern g1="afii10036" g2="uni04AC" k="-41" />
+<hkern g1="afii10036" g2="uni04AD" k="82" />
+<hkern g1="afii10036" g2="uni04AF" k="82" />
+<hkern g1="afii10036" g2="uni04B1" k="82" />
+<hkern g1="afii10036" g2="uni04B3" k="41" />
+<hkern g1="afii10036" g2="uni04B5" k="82" />
+<hkern g1="afii10036" g2="uni04B7" k="102" />
+<hkern g1="afii10036" g2="uni04B9" k="102" />
+<hkern g1="afii10036" g2="uni04BB" k="102" />
+<hkern g1="afii10036" g2="uni04BC" k="102" />
+<hkern g1="afii10036" g2="uni04BD" k="143" />
+<hkern g1="afii10036" g2="uni04BE" k="102" />
+<hkern g1="afii10036" g2="uni04BF" k="143" />
+<hkern g1="afii10036" g2="uni04C2" k="41" />
+<hkern g1="afii10036" g2="uni04C4" k="102" />
+<hkern g1="afii10036" g2="uni04C5" k="102" />
+<hkern g1="afii10036" g2="uni04C6" k="123" />
+<hkern g1="afii10036" g2="uni04C8" k="102" />
+<hkern g1="afii10036" g2="uni04CA" k="102" />
+<hkern g1="afii10036" g2="uni04CC" k="102" />
+<hkern g1="afii10036" g2="uni04CE" k="102" />
+<hkern g1="afii10036" g2="uni04D0" k="143" />
+<hkern g1="afii10036" g2="uni04D2" k="143" />
+<hkern g1="afii10036" g2="uni04D4" k="143" />
+<hkern g1="afii10036" g2="uni04D7" k="143" />
+<hkern g1="afii10036" g2="uni04DD" k="41" />
+<hkern g1="afii10036" g2="uni04DF" k="41" />
+<hkern g1="afii10036" g2="uni04E1" k="61" />
+<hkern g1="afii10036" g2="uni04E3" k="102" />
+<hkern g1="afii10036" g2="uni04E5" k="102" />
+<hkern g1="afii10036" g2="uni04E6" k="41" />
+<hkern g1="afii10036" g2="uni04E7" k="143" />
+<hkern g1="afii10036" g2="uni04E8" k="41" />
+<hkern g1="afii10036" g2="uni04E9" k="143" />
+<hkern g1="afii10036" g2="uni04EA" k="41" />
+<hkern g1="afii10036" g2="uni04EB" k="143" />
+<hkern g1="afii10036" g2="uni04ED" k="41" />
+<hkern g1="afii10036" g2="uni04EF" k="82" />
+<hkern g1="afii10036" g2="uni04F1" k="82" />
+<hkern g1="afii10036" g2="uni04F3" k="82" />
+<hkern g1="afii10036" g2="uni04F5" k="102" />
+<hkern g1="afii10036" g2="uni04F7" k="102" />
+<hkern g1="afii10036" g2="uni04F9" k="102" />
+<hkern g1="afii10036" g2="uni04FD" k="41" />
+<hkern g1="afii10036" g2="uni04FF" k="41" />
+<hkern g1="afii10036" g2="uni0500" k="143" />
+<hkern g1="afii10036" g2="uni0501" k="143" />
+<hkern g1="afii10036" g2="uni0502" k="143" />
+<hkern g1="afii10036" g2="uni0503" k="143" />
+<hkern g1="afii10036" g2="uni0505" k="102" />
+<hkern g1="afii10036" g2="uni0507" k="102" />
+<hkern g1="afii10036" g2="uni0508" k="102" />
+<hkern g1="afii10036" g2="uni0509" k="123" />
+<hkern g1="afii10036" g2="uni050B" k="102" />
+<hkern g1="afii10036" g2="uni050C" k="41" />
+<hkern g1="afii10036" g2="uni050D" k="143" />
+<hkern g1="afii10036" g2="uni050F" k="82" />
+<hkern g1="afii10036" g2="uni0511" k="143" />
+<hkern g1="afii10036" g2="uni0512" k="102" />
+<hkern g1="afii10036" g2="uni0513" k="123" />
+<hkern g1="afii10037" g2="comma" k="123" />
+<hkern g1="afii10037" g2="period" k="123" />
+<hkern g1="afii10037" g2="afii10053" k="20" />
+<hkern g1="afii10037" g2="afii10058" k="102" />
+<hkern g1="afii10037" g2="afii10017" k="143" />
+<hkern g1="afii10037" g2="afii10021" k="102" />
+<hkern g1="afii10037" g2="afii10029" k="102" />
+<hkern g1="afii10037" g2="afii10032" k="20" />
+<hkern g1="afii10037" g2="afii10035" k="20" />
+<hkern g1="afii10037" g2="afii10038" k="61" />
+<hkern g1="afii10037" g2="afii10049" k="20" />
+<hkern g1="afii10037" g2="afii10069" k="82" />
+<hkern g1="afii10037" g2="afii10070" k="41" />
+<hkern g1="afii10037" g2="afii10077" k="82" />
+<hkern g1="afii10037" g2="afii10080" k="41" />
+<hkern g1="afii10037" g2="afii10083" k="41" />
+<hkern g1="afii10037" g2="afii10086" k="41" />
+<hkern g1="afii10037" g2="afii10089" k="41" />
+<hkern g1="afii10037" g2="afii10071" k="41" />
+<hkern g1="afii10037" g2="afii10099" k="-102" />
+<hkern g1="afii10037" g2="afii10101" k="41" />
+<hkern g1="afii10037" g2="afii10102" k="20" />
+<hkern g1="afii10037" g2="afii10106" k="82" />
+<hkern g1="afii10037" g2="afii10108" k="-102" />
+<hkern g1="afii10037" g2="quotesinglbase" k="123" />
+<hkern g1="afii10037" g2="quotedblbase" k="123" />
+<hkern g1="afii10037" g2="uni0450" k="41" />
+<hkern g1="afii10037" g2="uni0460" k="20" />
+<hkern g1="afii10037" g2="uni0466" k="143" />
+<hkern g1="afii10037" g2="uni0467" k="82" />
+<hkern g1="afii10037" g2="uni0472" k="20" />
+<hkern g1="afii10037" g2="uni0473" k="41" />
+<hkern g1="afii10037" g2="uni0478" k="20" />
+<hkern g1="afii10037" g2="uni0479" k="41" />
+<hkern g1="afii10037" g2="uni047A" k="20" />
+<hkern g1="afii10037" g2="uni047B" k="41" />
+<hkern g1="afii10037" g2="uni047C" k="20" />
+<hkern g1="afii10037" g2="uni047D" k="41" />
+<hkern g1="afii10037" g2="uni047E" k="20" />
+<hkern g1="afii10037" g2="uni0480" k="20" />
+<hkern g1="afii10037" g2="uni0481" k="41" />
+<hkern g1="afii10037" g2="uni048D" k="-102" />
+<hkern g1="afii10037" g2="uni049F" k="-102" />
+<hkern g1="afii10037" g2="uni04A8" k="20" />
+<hkern g1="afii10037" g2="uni04A9" k="41" />
+<hkern g1="afii10037" g2="uni04AA" k="20" />
+<hkern g1="afii10037" g2="uni04AB" k="41" />
+<hkern g1="afii10037" g2="uni04B7" k="41" />
+<hkern g1="afii10037" g2="uni04B9" k="41" />
+<hkern g1="afii10037" g2="uni04BC" k="41" />
+<hkern g1="afii10037" g2="uni04BD" k="61" />
+<hkern g1="afii10037" g2="uni04BE" k="41" />
+<hkern g1="afii10037" g2="uni04BF" k="61" />
+<hkern g1="afii10037" g2="uni04C5" k="102" />
+<hkern g1="afii10037" g2="uni04C6" k="82" />
+<hkern g1="afii10037" g2="uni04CC" k="41" />
+<hkern g1="afii10037" g2="uni04D0" k="143" />
+<hkern g1="afii10037" g2="uni04D2" k="143" />
+<hkern g1="afii10037" g2="uni04D4" k="143" />
+<hkern g1="afii10037" g2="uni04D7" k="41" />
+<hkern g1="afii10037" g2="uni04E6" k="20" />
+<hkern g1="afii10037" g2="uni04E7" k="41" />
+<hkern g1="afii10037" g2="uni04E8" k="20" />
+<hkern g1="afii10037" g2="uni04E9" k="41" />
+<hkern g1="afii10037" g2="uni04EA" k="20" />
+<hkern g1="afii10037" g2="uni04EB" k="41" />
+<hkern g1="afii10037" g2="uni04F5" k="41" />
+<hkern g1="afii10037" g2="uni0500" k="143" />
+<hkern g1="afii10037" g2="uni0501" k="41" />
+<hkern g1="afii10037" g2="uni0502" k="143" />
+<hkern g1="afii10037" g2="uni0503" k="41" />
+<hkern g1="afii10037" g2="uni0508" k="102" />
+<hkern g1="afii10037" g2="uni0509" k="82" />
+<hkern g1="afii10037" g2="uni050C" k="20" />
+<hkern g1="afii10037" g2="uni050D" k="41" />
+<hkern g1="afii10037" g2="uni0511" k="41" />
+<hkern g1="afii10037" g2="uni0512" k="102" />
+<hkern g1="afii10037" g2="uni0513" k="82" />
+<hkern g1="afii10038" g2="comma" k="82" />
+<hkern g1="afii10038" g2="period" k="82" />
+<hkern g1="afii10038" g2="afii10051" k="41" />
+<hkern g1="afii10038" g2="afii10058" k="41" />
+<hkern g1="afii10038" g2="afii10060" k="41" />
+<hkern g1="afii10038" g2="afii10062" k="61" />
+<hkern g1="afii10038" g2="afii10017" k="41" />
+<hkern g1="afii10038" g2="afii10021" k="41" />
+<hkern g1="afii10038" g2="afii10024" k="41" />
+<hkern g1="afii10038" g2="afii10025" k="41" />
+<hkern g1="afii10038" g2="afii10029" k="41" />
+<hkern g1="afii10038" g2="afii10036" k="61" />
+<hkern g1="afii10038" g2="afii10037" k="61" />
+<hkern g1="afii10038" g2="afii10039" k="41" />
+<hkern g1="afii10038" g2="afii10044" k="41" />
+<hkern g1="afii10038" g2="afii10047" k="41" />
+<hkern g1="afii10038" g2="afii10069" k="20" />
+<hkern g1="afii10038" g2="afii10077" k="20" />
+<hkern g1="afii10038" g2="afii10106" k="20" />
+<hkern g1="afii10038" g2="quotesinglbase" k="82" />
+<hkern g1="afii10038" g2="quotedblbase" k="82" />
+<hkern g1="afii10038" g2="uni0466" k="41" />
+<hkern g1="afii10038" g2="uni0467" k="20" />
+<hkern g1="afii10038" g2="uni046E" k="41" />
+<hkern g1="afii10038" g2="uni0474" k="20" />
+<hkern g1="afii10038" g2="uni0476" k="20" />
+<hkern g1="afii10038" g2="uni0496" k="41" />
+<hkern g1="afii10038" g2="uni0498" k="41" />
+<hkern g1="afii10038" g2="uni04A0" k="41" />
+<hkern g1="afii10038" g2="uni04AC" k="61" />
+<hkern g1="afii10038" g2="uni04AE" k="61" />
+<hkern g1="afii10038" g2="uni04B0" k="61" />
+<hkern g1="afii10038" g2="uni04B2" k="41" />
+<hkern g1="afii10038" g2="uni04B4" k="41" />
+<hkern g1="afii10038" g2="uni04C1" k="41" />
+<hkern g1="afii10038" g2="uni04C5" k="41" />
+<hkern g1="afii10038" g2="uni04C6" k="20" />
+<hkern g1="afii10038" g2="uni04D0" k="41" />
+<hkern g1="afii10038" g2="uni04D2" k="41" />
+<hkern g1="afii10038" g2="uni04D4" k="41" />
+<hkern g1="afii10038" g2="uni04DC" k="41" />
+<hkern g1="afii10038" g2="uni04DE" k="41" />
+<hkern g1="afii10038" g2="uni04EC" k="41" />
+<hkern g1="afii10038" g2="uni04EE" k="61" />
+<hkern g1="afii10038" g2="uni04F0" k="61" />
+<hkern g1="afii10038" g2="uni04F2" k="61" />
+<hkern g1="afii10038" g2="uni04FC" k="41" />
+<hkern g1="afii10038" g2="uni04FE" k="41" />
+<hkern g1="afii10038" g2="uni0504" k="41" />
+<hkern g1="afii10038" g2="uni0506" k="41" />
+<hkern g1="afii10038" g2="uni0508" k="41" />
+<hkern g1="afii10038" g2="uni0509" k="20" />
+<hkern g1="afii10038" g2="uni050E" k="41" />
+<hkern g1="afii10038" g2="uni0512" k="41" />
+<hkern g1="afii10038" g2="uni0513" k="20" />
+<hkern g1="afii10039" g2="afii10053" k="41" />
+<hkern g1="afii10039" g2="afii10032" k="41" />
+<hkern g1="afii10039" g2="afii10035" k="41" />
+<hkern g1="afii10039" g2="afii10038" k="41" />
+<hkern g1="afii10039" g2="afii10041" k="41" />
+<hkern g1="afii10039" g2="afii10089" k="41" />
+<hkern g1="afii10039" g2="uni0460" k="41" />
+<hkern g1="afii10039" g2="uni0470" k="41" />
+<hkern g1="afii10039" g2="uni0472" k="41" />
+<hkern g1="afii10039" g2="uni0478" k="41" />
+<hkern g1="afii10039" g2="uni047A" k="41" />
+<hkern g1="afii10039" g2="uni047C" k="41" />
+<hkern g1="afii10039" g2="uni047E" k="41" />
+<hkern g1="afii10039" g2="uni0480" k="41" />
+<hkern g1="afii10039" g2="uni04A8" k="41" />
+<hkern g1="afii10039" g2="uni04AA" k="41" />
+<hkern g1="afii10039" g2="uni04B6" k="41" />
+<hkern g1="afii10039" g2="uni04B7" k="41" />
+<hkern g1="afii10039" g2="uni04B8" k="41" />
+<hkern g1="afii10039" g2="uni04B9" k="41" />
+<hkern g1="afii10039" g2="uni04BC" k="102" />
+<hkern g1="afii10039" g2="uni04BE" k="102" />
+<hkern g1="afii10039" g2="uni04CB" k="41" />
+<hkern g1="afii10039" g2="uni04CC" k="41" />
+<hkern g1="afii10039" g2="uni04E6" k="41" />
+<hkern g1="afii10039" g2="uni04E8" k="41" />
+<hkern g1="afii10039" g2="uni04EA" k="41" />
+<hkern g1="afii10039" g2="uni04F4" k="41" />
+<hkern g1="afii10039" g2="uni04F5" k="41" />
+<hkern g1="afii10039" g2="uni0500" k="41" />
+<hkern g1="afii10039" g2="uni0502" k="41" />
+<hkern g1="afii10039" g2="uni0505" k="41" />
+<hkern g1="afii10039" g2="uni0507" k="41" />
+<hkern g1="afii10039" g2="uni050C" k="41" />
+<hkern g1="afii10039" g2="uni0510" k="20" />
+<hkern g1="afii10040" g2="afii10057" k="-225" />
+<hkern g1="afii10040" g2="uni04E1" k="-41" />
+<hkern g1="afii10040" g2="uni0505" k="41" />
+<hkern g1="afii10040" g2="uni0507" k="41" />
+<hkern g1="afii10043" g2="afii10057" k="-225" />
+<hkern g1="afii10043" g2="uni04E1" k="-41" />
+<hkern g1="afii10043" g2="uni0505" k="41" />
+<hkern g1="afii10043" g2="uni0507" k="41" />
+<hkern g1="afii10044" g2="quotedbl" k="82" />
+<hkern g1="afii10044" g2="quotesingle" k="82" />
+<hkern g1="afii10044" g2="afii10051" k="123" />
+<hkern g1="afii10044" g2="afii10060" k="123" />
+<hkern g1="afii10044" g2="afii10062" k="41" />
+<hkern g1="afii10044" g2="afii10036" k="102" />
+<hkern g1="afii10044" g2="afii10037" k="41" />
+<hkern g1="afii10044" g2="afii10041" k="102" />
+<hkern g1="afii10044" g2="afii10044" k="123" />
+<hkern g1="afii10044" g2="afii10084" k="41" />
+<hkern g1="afii10044" g2="afii10085" k="41" />
+<hkern g1="afii10044" g2="afii10089" k="41" />
+<hkern g1="afii10044" g2="afii10092" k="41" />
+<hkern g1="afii10044" g2="afii10110" k="41" />
+<hkern g1="afii10044" g2="quoteright" k="82" />
+<hkern g1="afii10044" g2="quotedblright" k="82" />
+<hkern g1="afii10044" g2="uni0462" k="82" />
+<hkern g1="afii10044" g2="uni0470" k="102" />
+<hkern g1="afii10044" g2="uni0474" k="82" />
+<hkern g1="afii10044" g2="uni0476" k="82" />
+<hkern g1="afii10044" g2="uni048C" k="82" />
+<hkern g1="afii10044" g2="uni0492" k="82" />
+<hkern g1="afii10044" g2="uni049E" k="82" />
+<hkern g1="afii10044" g2="uni04A0" k="123" />
+<hkern g1="afii10044" g2="uni04A1" k="41" />
+<hkern g1="afii10044" g2="uni04AC" k="102" />
+<hkern g1="afii10044" g2="uni04AD" k="41" />
+<hkern g1="afii10044" g2="uni04AE" k="102" />
+<hkern g1="afii10044" g2="uni04AF" k="41" />
+<hkern g1="afii10044" g2="uni04B0" k="102" />
+<hkern g1="afii10044" g2="uni04B1" k="41" />
+<hkern g1="afii10044" g2="uni04B4" k="123" />
+<hkern g1="afii10044" g2="uni04B5" k="41" />
+<hkern g1="afii10044" g2="uni04B6" k="102" />
+<hkern g1="afii10044" g2="uni04B7" k="41" />
+<hkern g1="afii10044" g2="uni04B8" k="102" />
+<hkern g1="afii10044" g2="uni04B9" k="41" />
+<hkern g1="afii10044" g2="uni04CB" k="102" />
+<hkern g1="afii10044" g2="uni04CC" k="41" />
+<hkern g1="afii10044" g2="uni04EE" k="41" />
+<hkern g1="afii10044" g2="uni04EF" k="41" />
+<hkern g1="afii10044" g2="uni04F0" k="41" />
+<hkern g1="afii10044" g2="uni04F1" k="41" />
+<hkern g1="afii10044" g2="uni04F2" k="41" />
+<hkern g1="afii10044" g2="uni04F3" k="41" />
+<hkern g1="afii10044" g2="uni04F4" k="102" />
+<hkern g1="afii10044" g2="uni04F5" k="41" />
+<hkern g1="afii10044" g2="uni04FA" k="82" />
+<hkern g1="afii10044" g2="uni0504" k="102" />
+<hkern g1="afii10044" g2="uni0505" k="61" />
+<hkern g1="afii10044" g2="uni0506" k="102" />
+<hkern g1="afii10044" g2="uni0507" k="61" />
+<hkern g1="afii10044" g2="uni050E" k="123" />
+<hkern g1="afii10044" g2="uni050F" k="41" />
+<hkern g1="afii10046" g2="quotedbl" k="82" />
+<hkern g1="afii10046" g2="quotesingle" k="82" />
+<hkern g1="afii10046" g2="afii10051" k="123" />
+<hkern g1="afii10046" g2="afii10060" k="123" />
+<hkern g1="afii10046" g2="afii10062" k="41" />
+<hkern g1="afii10046" g2="afii10036" k="102" />
+<hkern g1="afii10046" g2="afii10037" k="41" />
+<hkern g1="afii10046" g2="afii10041" k="102" />
+<hkern g1="afii10046" g2="afii10044" k="123" />
+<hkern g1="afii10046" g2="afii10084" k="41" />
+<hkern g1="afii10046" g2="afii10085" k="41" />
+<hkern g1="afii10046" g2="afii10089" k="41" />
+<hkern g1="afii10046" g2="afii10092" k="41" />
+<hkern g1="afii10046" g2="afii10110" k="41" />
+<hkern g1="afii10046" g2="quoteright" k="82" />
+<hkern g1="afii10046" g2="quotedblright" k="82" />
+<hkern g1="afii10046" g2="uni0462" k="82" />
+<hkern g1="afii10046" g2="uni0470" k="102" />
+<hkern g1="afii10046" g2="uni0474" k="82" />
+<hkern g1="afii10046" g2="uni0476" k="82" />
+<hkern g1="afii10046" g2="uni048C" k="82" />
+<hkern g1="afii10046" g2="uni0492" k="82" />
+<hkern g1="afii10046" g2="uni049E" k="82" />
+<hkern g1="afii10046" g2="uni04A0" k="123" />
+<hkern g1="afii10046" g2="uni04A1" k="41" />
+<hkern g1="afii10046" g2="uni04AC" k="102" />
+<hkern g1="afii10046" g2="uni04AD" k="41" />
+<hkern g1="afii10046" g2="uni04AE" k="102" />
+<hkern g1="afii10046" g2="uni04AF" k="41" />
+<hkern g1="afii10046" g2="uni04B0" k="102" />
+<hkern g1="afii10046" g2="uni04B1" k="41" />
+<hkern g1="afii10046" g2="uni04B4" k="123" />
+<hkern g1="afii10046" g2="uni04B5" k="41" />
+<hkern g1="afii10046" g2="uni04B6" k="102" />
+<hkern g1="afii10046" g2="uni04B7" k="41" />
+<hkern g1="afii10046" g2="uni04B8" k="102" />
+<hkern g1="afii10046" g2="uni04B9" k="41" />
+<hkern g1="afii10046" g2="uni04CB" k="102" />
+<hkern g1="afii10046" g2="uni04CC" k="41" />
+<hkern g1="afii10046" g2="uni04EE" k="41" />
+<hkern g1="afii10046" g2="uni04EF" k="41" />
+<hkern g1="afii10046" g2="uni04F0" k="41" />
+<hkern g1="afii10046" g2="uni04F1" k="41" />
+<hkern g1="afii10046" g2="uni04F2" k="41" />
+<hkern g1="afii10046" g2="uni04F3" k="41" />
+<hkern g1="afii10046" g2="uni04F4" k="102" />
+<hkern g1="afii10046" g2="uni04F5" k="41" />
+<hkern g1="afii10046" g2="uni04FA" k="82" />
+<hkern g1="afii10046" g2="uni0504" k="102" />
+<hkern g1="afii10046" g2="uni0505" k="61" />
+<hkern g1="afii10046" g2="uni0506" k="102" />
+<hkern g1="afii10046" g2="uni0507" k="61" />
+<hkern g1="afii10046" g2="uni050E" k="123" />
+<hkern g1="afii10046" g2="uni050F" k="41" />
+<hkern g1="afii10047" g2="comma" k="82" />
+<hkern g1="afii10047" g2="period" k="82" />
+<hkern g1="afii10047" g2="afii10051" k="20" />
+<hkern g1="afii10047" g2="afii10058" k="41" />
+<hkern g1="afii10047" g2="afii10060" k="20" />
+<hkern g1="afii10047" g2="afii10062" k="41" />
+<hkern g1="afii10047" g2="afii10017" k="41" />
+<hkern g1="afii10047" g2="afii10021" k="41" />
+<hkern g1="afii10047" g2="afii10024" k="41" />
+<hkern g1="afii10047" g2="afii10025" k="20" />
+<hkern g1="afii10047" g2="afii10029" k="41" />
+<hkern g1="afii10047" g2="afii10036" k="61" />
+<hkern g1="afii10047" g2="afii10037" k="41" />
+<hkern g1="afii10047" g2="afii10039" k="41" />
+<hkern g1="afii10047" g2="afii10041" k="41" />
+<hkern g1="afii10047" g2="afii10044" k="20" />
+<hkern g1="afii10047" g2="afii10047" k="20" />
+<hkern g1="afii10047" g2="afii10069" k="20" />
+<hkern g1="afii10047" g2="afii10077" k="20" />
+<hkern g1="afii10047" g2="afii10106" k="20" />
+<hkern g1="afii10047" g2="quotesinglbase" k="82" />
+<hkern g1="afii10047" g2="quotedblbase" k="82" />
+<hkern g1="afii10047" g2="uni0466" k="41" />
+<hkern g1="afii10047" g2="uni0467" k="20" />
+<hkern g1="afii10047" g2="uni046E" k="20" />
+<hkern g1="afii10047" g2="uni0470" k="41" />
+<hkern g1="afii10047" g2="uni0474" k="20" />
+<hkern g1="afii10047" g2="uni0476" k="20" />
+<hkern g1="afii10047" g2="uni0496" k="41" />
+<hkern g1="afii10047" g2="uni0498" k="20" />
+<hkern g1="afii10047" g2="uni04A0" k="20" />
+<hkern g1="afii10047" g2="uni04AC" k="61" />
+<hkern g1="afii10047" g2="uni04AE" k="20" />
+<hkern g1="afii10047" g2="uni04B0" k="20" />
+<hkern g1="afii10047" g2="uni04B2" k="41" />
+<hkern g1="afii10047" g2="uni04B4" k="20" />
+<hkern g1="afii10047" g2="uni04B6" k="41" />
+<hkern g1="afii10047" g2="uni04B8" k="41" />
+<hkern g1="afii10047" g2="uni04C1" k="41" />
+<hkern g1="afii10047" g2="uni04C5" k="41" />
+<hkern g1="afii10047" g2="uni04C6" k="20" />
+<hkern g1="afii10047" g2="uni04CB" k="41" />
+<hkern g1="afii10047" g2="uni04D0" k="41" />
+<hkern g1="afii10047" g2="uni04D2" k="41" />
+<hkern g1="afii10047" g2="uni04D4" k="41" />
+<hkern g1="afii10047" g2="uni04DC" k="41" />
+<hkern g1="afii10047" g2="uni04DE" k="20" />
+<hkern g1="afii10047" g2="uni04EC" k="20" />
+<hkern g1="afii10047" g2="uni04EE" k="41" />
+<hkern g1="afii10047" g2="uni04F0" k="41" />
+<hkern g1="afii10047" g2="uni04F2" k="41" />
+<hkern g1="afii10047" g2="uni04F4" k="41" />
+<hkern g1="afii10047" g2="uni04FC" k="41" />
+<hkern g1="afii10047" g2="uni04FE" k="41" />
+<hkern g1="afii10047" g2="uni0504" k="41" />
+<hkern g1="afii10047" g2="uni0506" k="41" />
+<hkern g1="afii10047" g2="uni0508" k="41" />
+<hkern g1="afii10047" g2="uni0509" k="20" />
+<hkern g1="afii10047" g2="uni050E" k="20" />
+<hkern g1="afii10047" g2="uni0512" k="41" />
+<hkern g1="afii10047" g2="uni0513" k="20" />
+<hkern g1="afii10048" g2="comma" k="82" />
+<hkern g1="afii10048" g2="period" k="82" />
+<hkern g1="afii10048" g2="afii10051" k="20" />
+<hkern g1="afii10048" g2="afii10058" k="41" />
+<hkern g1="afii10048" g2="afii10060" k="20" />
+<hkern g1="afii10048" g2="afii10062" k="41" />
+<hkern g1="afii10048" g2="afii10017" k="41" />
+<hkern g1="afii10048" g2="afii10021" k="41" />
+<hkern g1="afii10048" g2="afii10024" k="41" />
+<hkern g1="afii10048" g2="afii10025" k="20" />
+<hkern g1="afii10048" g2="afii10029" k="41" />
+<hkern g1="afii10048" g2="afii10036" k="61" />
+<hkern g1="afii10048" g2="afii10037" k="41" />
+<hkern g1="afii10048" g2="afii10039" k="41" />
+<hkern g1="afii10048" g2="afii10041" k="41" />
+<hkern g1="afii10048" g2="afii10044" k="20" />
+<hkern g1="afii10048" g2="afii10047" k="20" />
+<hkern g1="afii10048" g2="afii10069" k="20" />
+<hkern g1="afii10048" g2="afii10077" k="20" />
+<hkern g1="afii10048" g2="afii10106" k="20" />
+<hkern g1="afii10048" g2="quotesinglbase" k="82" />
+<hkern g1="afii10048" g2="quotedblbase" k="82" />
+<hkern g1="afii10048" g2="uni0466" k="41" />
+<hkern g1="afii10048" g2="uni0467" k="20" />
+<hkern g1="afii10048" g2="uni046E" k="20" />
+<hkern g1="afii10048" g2="uni0470" k="41" />
+<hkern g1="afii10048" g2="uni0474" k="20" />
+<hkern g1="afii10048" g2="uni0476" k="20" />
+<hkern g1="afii10048" g2="uni0496" k="41" />
+<hkern g1="afii10048" g2="uni0498" k="20" />
+<hkern g1="afii10048" g2="uni04A0" k="20" />
+<hkern g1="afii10048" g2="uni04AC" k="61" />
+<hkern g1="afii10048" g2="uni04AE" k="20" />
+<hkern g1="afii10048" g2="uni04B0" k="20" />
+<hkern g1="afii10048" g2="uni04B2" k="41" />
+<hkern g1="afii10048" g2="uni04B4" k="20" />
+<hkern g1="afii10048" g2="uni04B6" k="41" />
+<hkern g1="afii10048" g2="uni04B8" k="41" />
+<hkern g1="afii10048" g2="uni04C1" k="41" />
+<hkern g1="afii10048" g2="uni04C5" k="41" />
+<hkern g1="afii10048" g2="uni04C6" k="20" />
+<hkern g1="afii10048" g2="uni04CB" k="41" />
+<hkern g1="afii10048" g2="uni04D0" k="41" />
+<hkern g1="afii10048" g2="uni04D2" k="41" />
+<hkern g1="afii10048" g2="uni04D4" k="41" />
+<hkern g1="afii10048" g2="uni04DC" k="41" />
+<hkern g1="afii10048" g2="uni04DE" k="20" />
+<hkern g1="afii10048" g2="uni04EC" k="20" />
+<hkern g1="afii10048" g2="uni04EE" k="41" />
+<hkern g1="afii10048" g2="uni04F0" k="41" />
+<hkern g1="afii10048" g2="uni04F2" k="41" />
+<hkern g1="afii10048" g2="uni04F4" k="41" />
+<hkern g1="afii10048" g2="uni04FC" k="41" />
+<hkern g1="afii10048" g2="uni04FE" k="41" />
+<hkern g1="afii10048" g2="uni0504" k="41" />
+<hkern g1="afii10048" g2="uni0506" k="41" />
+<hkern g1="afii10048" g2="uni0508" k="41" />
+<hkern g1="afii10048" g2="uni0509" k="20" />
+<hkern g1="afii10048" g2="uni050E" k="20" />
+<hkern g1="afii10048" g2="uni0512" k="41" />
+<hkern g1="afii10048" g2="uni0513" k="20" />
+<hkern g1="afii10065" g2="quotedbl" k="20" />
+<hkern g1="afii10065" g2="quotesingle" k="20" />
+<hkern g1="afii10065" g2="quoteright" k="20" />
+<hkern g1="afii10065" g2="quotedblright" k="20" />
+<hkern g1="afii10067" g2="afii10097" k="-41" />
+<hkern g1="afii10068" g2="comma" k="102" />
+<hkern g1="afii10068" g2="hyphen" k="41" />
+<hkern g1="afii10068" g2="period" k="102" />
+<hkern g1="afii10068" g2="afii10069" k="61" />
+<hkern g1="afii10068" g2="afii10070" k="20" />
+<hkern g1="afii10068" g2="afii10077" k="61" />
+<hkern g1="afii10068" g2="afii10080" k="20" />
+<hkern g1="afii10068" g2="afii10083" k="20" />
+<hkern g1="afii10068" g2="afii10086" k="20" />
+<hkern g1="afii10068" g2="afii10071" k="20" />
+<hkern g1="afii10068" g2="afii10101" k="20" />
+<hkern g1="afii10068" g2="afii10106" k="61" />
+<hkern g1="afii10068" g2="endash" k="41" />
+<hkern g1="afii10068" g2="emdash" k="41" />
+<hkern g1="afii10068" g2="afii00208" k="41" />
+<hkern g1="afii10068" g2="quotesinglbase" k="102" />
+<hkern g1="afii10068" g2="quotedblbase" k="102" />
+<hkern g1="afii10068" g2="uni0450" k="20" />
+<hkern g1="afii10068" g2="uni0467" k="61" />
+<hkern g1="afii10068" g2="uni0473" k="20" />
+<hkern g1="afii10068" g2="uni0479" k="20" />
+<hkern g1="afii10068" g2="uni047B" k="20" />
+<hkern g1="afii10068" g2="uni047D" k="20" />
+<hkern g1="afii10068" g2="uni0481" k="20" />
+<hkern g1="afii10068" g2="uni04A9" k="20" />
+<hkern g1="afii10068" g2="uni04AB" k="20" />
+<hkern g1="afii10068" g2="uni04C6" k="61" />
+<hkern g1="afii10068" g2="uni04D7" k="20" />
+<hkern g1="afii10068" g2="uni04E7" k="20" />
+<hkern g1="afii10068" g2="uni04E9" k="20" />
+<hkern g1="afii10068" g2="uni04EB" k="20" />
+<hkern g1="afii10068" g2="uni0501" k="20" />
+<hkern g1="afii10068" g2="uni0503" k="20" />
+<hkern g1="afii10068" g2="uni0509" k="61" />
+<hkern g1="afii10068" g2="uni050D" k="20" />
+<hkern g1="afii10068" g2="uni0511" k="20" />
+<hkern g1="afii10068" g2="uni0513" k="61" />
+<hkern g1="afii10069" g2="quotedbl" k="20" />
+<hkern g1="afii10069" g2="quotesingle" k="20" />
+<hkern g1="afii10069" g2="quoteright" k="20" />
+<hkern g1="afii10069" g2="quotedblright" k="20" />
+<hkern g1="afii10070" g2="quotedbl" k="20" />
+<hkern g1="afii10070" g2="quotesingle" k="20" />
+<hkern g1="afii10070" g2="quoteright" k="20" />
+<hkern g1="afii10070" g2="quotedblright" k="20" />
+<hkern g1="afii10072" g2="afii10070" k="41" />
+<hkern g1="afii10072" g2="afii10080" k="41" />
+<hkern g1="afii10072" g2="afii10083" k="41" />
+<hkern g1="afii10072" g2="afii10086" k="41" />
+<hkern g1="afii10072" g2="afii10089" k="41" />
+<hkern g1="afii10072" g2="afii10071" k="41" />
+<hkern g1="afii10072" g2="afii10101" k="41" />
+<hkern g1="afii10072" g2="uni0450" k="41" />
+<hkern g1="afii10072" g2="uni0473" k="41" />
+<hkern g1="afii10072" g2="uni0479" k="41" />
+<hkern g1="afii10072" g2="uni047B" k="41" />
+<hkern g1="afii10072" g2="uni047D" k="41" />
+<hkern g1="afii10072" g2="uni0481" k="41" />
+<hkern g1="afii10072" g2="uni04A9" k="41" />
+<hkern g1="afii10072" g2="uni04AB" k="41" />
+<hkern g1="afii10072" g2="uni04B7" k="41" />
+<hkern g1="afii10072" g2="uni04B9" k="41" />
+<hkern g1="afii10072" g2="uni04BD" k="41" />
+<hkern g1="afii10072" g2="uni04BF" k="41" />
+<hkern g1="afii10072" g2="uni04CC" k="41" />
+<hkern g1="afii10072" g2="uni04D7" k="41" />
+<hkern g1="afii10072" g2="uni04E7" k="41" />
+<hkern g1="afii10072" g2="uni04E9" k="41" />
+<hkern g1="afii10072" g2="uni04EB" k="41" />
+<hkern g1="afii10072" g2="uni04F5" k="41" />
+<hkern g1="afii10072" g2="uni0501" k="41" />
+<hkern g1="afii10072" g2="uni0503" k="41" />
+<hkern g1="afii10072" g2="uni050D" k="41" />
+<hkern g1="afii10072" g2="uni0511" k="41" />
+<hkern g1="afii10073" g2="afii10097" k="-41" />
+<hkern g1="afii10076" g2="afii10070" k="41" />
+<hkern g1="afii10076" g2="afii10080" k="41" />
+<hkern g1="afii10076" g2="afii10083" k="41" />
+<hkern g1="afii10076" g2="afii10086" k="41" />
+<hkern g1="afii10076" g2="afii10089" k="41" />
+<hkern g1="afii10076" g2="afii10071" k="41" />
+<hkern g1="afii10076" g2="afii10101" k="41" />
+<hkern g1="afii10076" g2="uni0450" k="41" />
+<hkern g1="afii10076" g2="uni0473" k="41" />
+<hkern g1="afii10076" g2="uni0479" k="41" />
+<hkern g1="afii10076" g2="uni047B" k="41" />
+<hkern g1="afii10076" g2="uni047D" k="41" />
+<hkern g1="afii10076" g2="uni0481" k="41" />
+<hkern g1="afii10076" g2="uni04A9" k="41" />
+<hkern g1="afii10076" g2="uni04AB" k="41" />
+<hkern g1="afii10076" g2="uni04B7" k="41" />
+<hkern g1="afii10076" g2="uni04B9" k="41" />
+<hkern g1="afii10076" g2="uni04BD" k="41" />
+<hkern g1="afii10076" g2="uni04BF" k="41" />
+<hkern g1="afii10076" g2="uni04CC" k="41" />
+<hkern g1="afii10076" g2="uni04D7" k="41" />
+<hkern g1="afii10076" g2="uni04E7" k="41" />
+<hkern g1="afii10076" g2="uni04E9" k="41" />
+<hkern g1="afii10076" g2="uni04EB" k="41" />
+<hkern g1="afii10076" g2="uni04F5" k="41" />
+<hkern g1="afii10076" g2="uni0501" k="41" />
+<hkern g1="afii10076" g2="uni0503" k="41" />
+<hkern g1="afii10076" g2="uni050D" k="41" />
+<hkern g1="afii10076" g2="uni0511" k="41" />
+<hkern g1="afii10080" g2="quotedbl" k="20" />
+<hkern g1="afii10080" g2="quotesingle" k="20" />
+<hkern g1="afii10080" g2="afii10072" k="41" />
+<hkern g1="afii10080" g2="afii10084" k="20" />
+<hkern g1="afii10080" g2="afii10085" k="20" />
+<hkern g1="afii10080" g2="afii10087" k="41" />
+<hkern g1="afii10080" g2="afii10089" k="20" />
+<hkern g1="afii10080" g2="afii10092" k="20" />
+<hkern g1="afii10080" g2="afii10110" k="20" />
+<hkern g1="afii10080" g2="quoteright" k="20" />
+<hkern g1="afii10080" g2="quotedblright" k="20" />
+<hkern g1="afii10080" g2="uni0497" k="41" />
+<hkern g1="afii10080" g2="uni04A1" k="20" />
+<hkern g1="afii10080" g2="uni04AD" k="20" />
+<hkern g1="afii10080" g2="uni04B3" k="41" />
+<hkern g1="afii10080" g2="uni04B5" k="20" />
+<hkern g1="afii10080" g2="uni04B7" k="20" />
+<hkern g1="afii10080" g2="uni04B9" k="20" />
+<hkern g1="afii10080" g2="uni04C2" k="41" />
+<hkern g1="afii10080" g2="uni04CC" k="20" />
+<hkern g1="afii10080" g2="uni04DD" k="41" />
+<hkern g1="afii10080" g2="uni04EF" k="20" />
+<hkern g1="afii10080" g2="uni04F1" k="20" />
+<hkern g1="afii10080" g2="uni04F3" k="20" />
+<hkern g1="afii10080" g2="uni04F5" k="20" />
+<hkern g1="afii10080" g2="uni04FD" k="41" />
+<hkern g1="afii10080" g2="uni04FF" k="41" />
+<hkern g1="afii10080" g2="uni0505" k="20" />
+<hkern g1="afii10080" g2="uni0507" k="20" />
+<hkern g1="afii10080" g2="uni050F" k="20" />
+<hkern g1="afii10082" g2="quotedbl" k="20" />
+<hkern g1="afii10082" g2="quotesingle" k="20" />
+<hkern g1="afii10082" g2="afii10072" k="41" />
+<hkern g1="afii10082" g2="afii10084" k="20" />
+<hkern g1="afii10082" g2="afii10085" k="20" />
+<hkern g1="afii10082" g2="afii10087" k="41" />
+<hkern g1="afii10082" g2="afii10089" k="20" />
+<hkern g1="afii10082" g2="afii10092" k="20" />
+<hkern g1="afii10082" g2="afii10110" k="20" />
+<hkern g1="afii10082" g2="quoteright" k="20" />
+<hkern g1="afii10082" g2="quotedblright" k="20" />
+<hkern g1="afii10082" g2="uni0497" k="41" />
+<hkern g1="afii10082" g2="uni04A1" k="20" />
+<hkern g1="afii10082" g2="uni04AD" k="20" />
+<hkern g1="afii10082" g2="uni04B3" k="41" />
+<hkern g1="afii10082" g2="uni04B5" k="20" />
+<hkern g1="afii10082" g2="uni04B7" k="20" />
+<hkern g1="afii10082" g2="uni04B9" k="20" />
+<hkern g1="afii10082" g2="uni04C2" k="41" />
+<hkern g1="afii10082" g2="uni04CC" k="20" />
+<hkern g1="afii10082" g2="uni04DD" k="41" />
+<hkern g1="afii10082" g2="uni04EF" k="20" />
+<hkern g1="afii10082" g2="uni04F1" k="20" />
+<hkern g1="afii10082" g2="uni04F3" k="20" />
+<hkern g1="afii10082" g2="uni04F5" k="20" />
+<hkern g1="afii10082" g2="uni04FD" k="41" />
+<hkern g1="afii10082" g2="uni04FF" k="41" />
+<hkern g1="afii10082" g2="uni0505" k="20" />
+<hkern g1="afii10082" g2="uni0507" k="20" />
+<hkern g1="afii10082" g2="uni050F" k="20" />
+<hkern g1="afii10084" g2="comma" k="102" />
+<hkern g1="afii10084" g2="hyphen" k="41" />
+<hkern g1="afii10084" g2="period" k="102" />
+<hkern g1="afii10084" g2="afii10069" k="61" />
+<hkern g1="afii10084" g2="afii10070" k="20" />
+<hkern g1="afii10084" g2="afii10077" k="61" />
+<hkern g1="afii10084" g2="afii10080" k="20" />
+<hkern g1="afii10084" g2="afii10083" k="20" />
+<hkern g1="afii10084" g2="afii10086" k="20" />
+<hkern g1="afii10084" g2="afii10071" k="20" />
+<hkern g1="afii10084" g2="afii10101" k="20" />
+<hkern g1="afii10084" g2="afii10106" k="61" />
+<hkern g1="afii10084" g2="endash" k="41" />
+<hkern g1="afii10084" g2="emdash" k="41" />
+<hkern g1="afii10084" g2="afii00208" k="41" />
+<hkern g1="afii10084" g2="quotesinglbase" k="102" />
+<hkern g1="afii10084" g2="quotedblbase" k="102" />
+<hkern g1="afii10084" g2="uni0450" k="20" />
+<hkern g1="afii10084" g2="uni0467" k="61" />
+<hkern g1="afii10084" g2="uni0473" k="20" />
+<hkern g1="afii10084" g2="uni0479" k="20" />
+<hkern g1="afii10084" g2="uni047B" k="20" />
+<hkern g1="afii10084" g2="uni047D" k="20" />
+<hkern g1="afii10084" g2="uni0481" k="20" />
+<hkern g1="afii10084" g2="uni04A9" k="20" />
+<hkern g1="afii10084" g2="uni04AB" k="20" />
+<hkern g1="afii10084" g2="uni04C6" k="61" />
+<hkern g1="afii10084" g2="uni04D7" k="20" />
+<hkern g1="afii10084" g2="uni04E7" k="20" />
+<hkern g1="afii10084" g2="uni04E9" k="20" />
+<hkern g1="afii10084" g2="uni04EB" k="20" />
+<hkern g1="afii10084" g2="uni0501" k="20" />
+<hkern g1="afii10084" g2="uni0503" k="20" />
+<hkern g1="afii10084" g2="uni0509" k="61" />
+<hkern g1="afii10084" g2="uni050D" k="20" />
+<hkern g1="afii10084" g2="uni0511" k="20" />
+<hkern g1="afii10084" g2="uni0513" k="61" />
+<hkern g1="afii10085" g2="comma" k="82" />
+<hkern g1="afii10085" g2="period" k="82" />
+<hkern g1="afii10085" g2="afii10069" k="41" />
+<hkern g1="afii10085" g2="afii10077" k="41" />
+<hkern g1="afii10085" g2="afii10106" k="41" />
+<hkern g1="afii10085" g2="quotesinglbase" k="82" />
+<hkern g1="afii10085" g2="quotedblbase" k="82" />
+<hkern g1="afii10085" g2="uni0467" k="41" />
+<hkern g1="afii10085" g2="uni04C6" k="41" />
+<hkern g1="afii10085" g2="uni0509" k="41" />
+<hkern g1="afii10085" g2="uni0513" k="41" />
+<hkern g1="afii10086" g2="quotedbl" k="20" />
+<hkern g1="afii10086" g2="quotesingle" k="20" />
+<hkern g1="afii10086" g2="afii10072" k="41" />
+<hkern g1="afii10086" g2="afii10084" k="20" />
+<hkern g1="afii10086" g2="afii10085" k="20" />
+<hkern g1="afii10086" g2="afii10087" k="41" />
+<hkern g1="afii10086" g2="afii10089" k="20" />
+<hkern g1="afii10086" g2="afii10092" k="20" />
+<hkern g1="afii10086" g2="afii10110" k="20" />
+<hkern g1="afii10086" g2="quoteright" k="20" />
+<hkern g1="afii10086" g2="quotedblright" k="20" />
+<hkern g1="afii10086" g2="uni0497" k="41" />
+<hkern g1="afii10086" g2="uni04A1" k="20" />
+<hkern g1="afii10086" g2="uni04AD" k="20" />
+<hkern g1="afii10086" g2="uni04B3" k="41" />
+<hkern g1="afii10086" g2="uni04B5" k="20" />
+<hkern g1="afii10086" g2="uni04B7" k="20" />
+<hkern g1="afii10086" g2="uni04B9" k="20" />
+<hkern g1="afii10086" g2="uni04C2" k="41" />
+<hkern g1="afii10086" g2="uni04CC" k="20" />
+<hkern g1="afii10086" g2="uni04DD" k="41" />
+<hkern g1="afii10086" g2="uni04EF" k="20" />
+<hkern g1="afii10086" g2="uni04F1" k="20" />
+<hkern g1="afii10086" g2="uni04F3" k="20" />
+<hkern g1="afii10086" g2="uni04F5" k="20" />
+<hkern g1="afii10086" g2="uni04FD" k="41" />
+<hkern g1="afii10086" g2="uni04FF" k="41" />
+<hkern g1="afii10086" g2="uni0505" k="20" />
+<hkern g1="afii10086" g2="uni0507" k="20" />
+<hkern g1="afii10086" g2="uni050F" k="20" />
+<hkern g1="afii10087" g2="afii10070" k="41" />
+<hkern g1="afii10087" g2="afii10080" k="41" />
+<hkern g1="afii10087" g2="afii10083" k="41" />
+<hkern g1="afii10087" g2="afii10086" k="41" />
+<hkern g1="afii10087" g2="afii10089" k="41" />
+<hkern g1="afii10087" g2="afii10071" k="41" />
+<hkern g1="afii10087" g2="afii10101" k="41" />
+<hkern g1="afii10087" g2="uni0450" k="41" />
+<hkern g1="afii10087" g2="uni0473" k="41" />
+<hkern g1="afii10087" g2="uni0479" k="41" />
+<hkern g1="afii10087" g2="uni047B" k="41" />
+<hkern g1="afii10087" g2="uni047D" k="41" />
+<hkern g1="afii10087" g2="uni0481" k="41" />
+<hkern g1="afii10087" g2="uni04A9" k="41" />
+<hkern g1="afii10087" g2="uni04AB" k="41" />
+<hkern g1="afii10087" g2="uni04B7" k="41" />
+<hkern g1="afii10087" g2="uni04B9" k="41" />
+<hkern g1="afii10087" g2="uni04BD" k="41" />
+<hkern g1="afii10087" g2="uni04BF" k="41" />
+<hkern g1="afii10087" g2="uni04CC" k="41" />
+<hkern g1="afii10087" g2="uni04D7" k="41" />
+<hkern g1="afii10087" g2="uni04E7" k="41" />
+<hkern g1="afii10087" g2="uni04E9" k="41" />
+<hkern g1="afii10087" g2="uni04EB" k="41" />
+<hkern g1="afii10087" g2="uni04F5" k="41" />
+<hkern g1="afii10087" g2="uni0501" k="41" />
+<hkern g1="afii10087" g2="uni0503" k="41" />
+<hkern g1="afii10087" g2="uni050D" k="41" />
+<hkern g1="afii10087" g2="uni0511" k="41" />
+<hkern g1="afii10088" g2="quotedbl" k="20" />
+<hkern g1="afii10088" g2="quotesingle" k="20" />
+<hkern g1="afii10088" g2="quoteright" k="20" />
+<hkern g1="afii10088" g2="quotedblright" k="20" />
+<hkern g1="afii10091" g2="quotedbl" k="20" />
+<hkern g1="afii10091" g2="quotesingle" k="20" />
+<hkern g1="afii10091" g2="quoteright" k="20" />
+<hkern g1="afii10091" g2="quotedblright" k="20" />
+<hkern g1="afii10092" g2="quotedbl" k="123" />
+<hkern g1="afii10092" g2="quotesingle" k="123" />
+<hkern g1="afii10092" g2="afii10072" k="41" />
+<hkern g1="afii10092" g2="afii10084" k="102" />
+<hkern g1="afii10092" g2="afii10085" k="61" />
+<hkern g1="afii10092" g2="afii10087" k="41" />
+<hkern g1="afii10092" g2="afii10089" k="82" />
+<hkern g1="afii10092" g2="afii10092" k="102" />
+<hkern g1="afii10092" g2="afii10110" k="61" />
+<hkern g1="afii10092" g2="quoteright" k="123" />
+<hkern g1="afii10092" g2="quotedblright" k="123" />
+<hkern g1="afii10092" g2="uni0461" k="41" />
+<hkern g1="afii10092" g2="uni0475" k="41" />
+<hkern g1="afii10092" g2="uni0477" k="41" />
+<hkern g1="afii10092" g2="uni047F" k="41" />
+<hkern g1="afii10092" g2="uni0497" k="41" />
+<hkern g1="afii10092" g2="uni04A1" k="102" />
+<hkern g1="afii10092" g2="uni04AD" k="102" />
+<hkern g1="afii10092" g2="uni04AF" k="61" />
+<hkern g1="afii10092" g2="uni04B1" k="61" />
+<hkern g1="afii10092" g2="uni04B3" k="41" />
+<hkern g1="afii10092" g2="uni04B5" k="102" />
+<hkern g1="afii10092" g2="uni04B7" k="82" />
+<hkern g1="afii10092" g2="uni04B9" k="82" />
+<hkern g1="afii10092" g2="uni04BD" k="41" />
+<hkern g1="afii10092" g2="uni04BF" k="41" />
+<hkern g1="afii10092" g2="uni04C2" k="41" />
+<hkern g1="afii10092" g2="uni04CC" k="82" />
+<hkern g1="afii10092" g2="uni04DD" k="41" />
+<hkern g1="afii10092" g2="uni04E1" k="41" />
+<hkern g1="afii10092" g2="uni04EF" k="61" />
+<hkern g1="afii10092" g2="uni04F1" k="61" />
+<hkern g1="afii10092" g2="uni04F3" k="61" />
+<hkern g1="afii10092" g2="uni04F5" k="82" />
+<hkern g1="afii10092" g2="uni04FD" k="41" />
+<hkern g1="afii10092" g2="uni04FF" k="41" />
+<hkern g1="afii10092" g2="uni0505" k="102" />
+<hkern g1="afii10092" g2="uni0507" k="102" />
+<hkern g1="afii10092" g2="uni050F" k="102" />
+<hkern g1="afii10094" g2="quotedbl" k="123" />
+<hkern g1="afii10094" g2="quotesingle" k="123" />
+<hkern g1="afii10094" g2="afii10072" k="41" />
+<hkern g1="afii10094" g2="afii10084" k="102" />
+<hkern g1="afii10094" g2="afii10085" k="61" />
+<hkern g1="afii10094" g2="afii10087" k="41" />
+<hkern g1="afii10094" g2="afii10089" k="82" />
+<hkern g1="afii10094" g2="afii10092" k="102" />
+<hkern g1="afii10094" g2="afii10110" k="61" />
+<hkern g1="afii10094" g2="quoteright" k="123" />
+<hkern g1="afii10094" g2="quotedblright" k="123" />
+<hkern g1="afii10094" g2="uni0461" k="41" />
+<hkern g1="afii10094" g2="uni0475" k="41" />
+<hkern g1="afii10094" g2="uni0477" k="41" />
+<hkern g1="afii10094" g2="uni047F" k="41" />
+<hkern g1="afii10094" g2="uni0497" k="41" />
+<hkern g1="afii10094" g2="uni04A1" k="102" />
+<hkern g1="afii10094" g2="uni04AD" k="102" />
+<hkern g1="afii10094" g2="uni04AF" k="61" />
+<hkern g1="afii10094" g2="uni04B1" k="61" />
+<hkern g1="afii10094" g2="uni04B3" k="41" />
+<hkern g1="afii10094" g2="uni04B5" k="102" />
+<hkern g1="afii10094" g2="uni04B7" k="82" />
+<hkern g1="afii10094" g2="uni04B9" k="82" />
+<hkern g1="afii10094" g2="uni04BD" k="41" />
+<hkern g1="afii10094" g2="uni04BF" k="41" />
+<hkern g1="afii10094" g2="uni04C2" k="41" />
+<hkern g1="afii10094" g2="uni04CC" k="82" />
+<hkern g1="afii10094" g2="uni04DD" k="41" />
+<hkern g1="afii10094" g2="uni04E1" k="41" />
+<hkern g1="afii10094" g2="uni04EF" k="61" />
+<hkern g1="afii10094" g2="uni04F1" k="61" />
+<hkern g1="afii10094" g2="uni04F3" k="61" />
+<hkern g1="afii10094" g2="uni04F5" k="82" />
+<hkern g1="afii10094" g2="uni04FD" k="41" />
+<hkern g1="afii10094" g2="uni04FF" k="41" />
+<hkern g1="afii10094" g2="uni0505" k="102" />
+<hkern g1="afii10094" g2="uni0507" k="102" />
+<hkern g1="afii10094" g2="uni050F" k="102" />
+<hkern g1="afii10095" g2="quotedbl" k="20" />
+<hkern g1="afii10095" g2="quotesingle" k="20" />
+<hkern g1="afii10095" g2="afii10072" k="41" />
+<hkern g1="afii10095" g2="afii10084" k="20" />
+<hkern g1="afii10095" g2="afii10085" k="20" />
+<hkern g1="afii10095" g2="afii10087" k="41" />
+<hkern g1="afii10095" g2="afii10089" k="20" />
+<hkern g1="afii10095" g2="afii10092" k="20" />
+<hkern g1="afii10095" g2="afii10110" k="20" />
+<hkern g1="afii10095" g2="quoteright" k="20" />
+<hkern g1="afii10095" g2="quotedblright" k="20" />
+<hkern g1="afii10095" g2="uni0497" k="41" />
+<hkern g1="afii10095" g2="uni04A1" k="20" />
+<hkern g1="afii10095" g2="uni04AD" k="20" />
+<hkern g1="afii10095" g2="uni04B3" k="41" />
+<hkern g1="afii10095" g2="uni04B5" k="20" />
+<hkern g1="afii10095" g2="uni04B7" k="20" />
+<hkern g1="afii10095" g2="uni04B9" k="20" />
+<hkern g1="afii10095" g2="uni04C2" k="41" />
+<hkern g1="afii10095" g2="uni04CC" k="20" />
+<hkern g1="afii10095" g2="uni04DD" k="41" />
+<hkern g1="afii10095" g2="uni04EF" k="20" />
+<hkern g1="afii10095" g2="uni04F1" k="20" />
+<hkern g1="afii10095" g2="uni04F3" k="20" />
+<hkern g1="afii10095" g2="uni04F5" k="20" />
+<hkern g1="afii10095" g2="uni04FD" k="41" />
+<hkern g1="afii10095" g2="uni04FF" k="41" />
+<hkern g1="afii10095" g2="uni0505" k="20" />
+<hkern g1="afii10095" g2="uni0507" k="20" />
+<hkern g1="afii10095" g2="uni050F" k="20" />
+<hkern g1="afii10096" g2="quotedbl" k="20" />
+<hkern g1="afii10096" g2="quotesingle" k="20" />
+<hkern g1="afii10096" g2="afii10072" k="41" />
+<hkern g1="afii10096" g2="afii10084" k="20" />
+<hkern g1="afii10096" g2="afii10085" k="20" />
+<hkern g1="afii10096" g2="afii10087" k="41" />
+<hkern g1="afii10096" g2="afii10089" k="20" />
+<hkern g1="afii10096" g2="afii10092" k="20" />
+<hkern g1="afii10096" g2="afii10110" k="20" />
+<hkern g1="afii10096" g2="quoteright" k="20" />
+<hkern g1="afii10096" g2="quotedblright" k="20" />
+<hkern g1="afii10096" g2="uni0497" k="41" />
+<hkern g1="afii10096" g2="uni04A1" k="20" />
+<hkern g1="afii10096" g2="uni04AD" k="20" />
+<hkern g1="afii10096" g2="uni04B3" k="41" />
+<hkern g1="afii10096" g2="uni04B5" k="20" />
+<hkern g1="afii10096" g2="uni04B7" k="20" />
+<hkern g1="afii10096" g2="uni04B9" k="20" />
+<hkern g1="afii10096" g2="uni04C2" k="41" />
+<hkern g1="afii10096" g2="uni04CC" k="20" />
+<hkern g1="afii10096" g2="uni04DD" k="41" />
+<hkern g1="afii10096" g2="uni04EF" k="20" />
+<hkern g1="afii10096" g2="uni04F1" k="20" />
+<hkern g1="afii10096" g2="uni04F3" k="20" />
+<hkern g1="afii10096" g2="uni04F5" k="20" />
+<hkern g1="afii10096" g2="uni04FD" k="41" />
+<hkern g1="afii10096" g2="uni04FF" k="41" />
+<hkern g1="afii10096" g2="uni0505" k="20" />
+<hkern g1="afii10096" g2="uni0507" k="20" />
+<hkern g1="afii10096" g2="uni050F" k="20" />
+<hkern g1="afii10071" g2="quotedbl" k="20" />
+<hkern g1="afii10071" g2="quotesingle" k="20" />
+<hkern g1="afii10071" g2="quoteright" k="20" />
+<hkern g1="afii10071" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="quotedbl" k="20" />
+<hkern g1="afii10099" g2="quotesingle" k="20" />
+<hkern g1="afii10099" g2="quoteright" k="20" />
+<hkern g1="afii10099" g2="quotedblright" k="20" />
+<hkern g1="afii10099" g2="uni0505" k="41" />
+<hkern g1="afii10099" g2="uni0507" k="41" />
+<hkern g1="afii10100" g2="comma" k="102" />
+<hkern g1="afii10100" g2="hyphen" k="41" />
+<hkern g1="afii10100" g2="period" k="102" />
+<hkern g1="afii10100" g2="afii10069" k="61" />
+<hkern g1="afii10100" g2="afii10070" k="20" />
+<hkern g1="afii10100" g2="afii10077" k="61" />
+<hkern g1="afii10100" g2="afii10080" k="20" />
+<hkern g1="afii10100" g2="afii10083" k="20" />
+<hkern g1="afii10100" g2="afii10086" k="20" />
+<hkern g1="afii10100" g2="afii10071" k="20" />
+<hkern g1="afii10100" g2="afii10101" k="20" />
+<hkern g1="afii10100" g2="afii10106" k="61" />
+<hkern g1="afii10100" g2="endash" k="41" />
+<hkern g1="afii10100" g2="emdash" k="41" />
+<hkern g1="afii10100" g2="afii00208" k="41" />
+<hkern g1="afii10100" g2="quotesinglbase" k="102" />
+<hkern g1="afii10100" g2="quotedblbase" k="102" />
+<hkern g1="afii10100" g2="uni0450" k="20" />
+<hkern g1="afii10100" g2="uni0467" k="61" />
+<hkern g1="afii10100" g2="uni0473" k="20" />
+<hkern g1="afii10100" g2="uni0479" k="20" />
+<hkern g1="afii10100" g2="uni047B" k="20" />
+<hkern g1="afii10100" g2="uni047D" k="20" />
+<hkern g1="afii10100" g2="uni0481" k="20" />
+<hkern g1="afii10100" g2="uni04A9" k="20" />
+<hkern g1="afii10100" g2="uni04AB" k="20" />
+<hkern g1="afii10100" g2="uni04C6" k="61" />
+<hkern g1="afii10100" g2="uni04D7" k="20" />
+<hkern g1="afii10100" g2="uni04E7" k="20" />
+<hkern g1="afii10100" g2="uni04E9" k="20" />
+<hkern g1="afii10100" g2="uni04EB" k="20" />
+<hkern g1="afii10100" g2="uni0501" k="20" />
+<hkern g1="afii10100" g2="uni0503" k="20" />
+<hkern g1="afii10100" g2="uni0509" k="61" />
+<hkern g1="afii10100" g2="uni050D" k="20" />
+<hkern g1="afii10100" g2="uni0511" k="20" />
+<hkern g1="afii10100" g2="uni0513" k="61" />
+<hkern g1="afii10106" g2="quotedbl" k="123" />
+<hkern g1="afii10106" g2="quotesingle" k="123" />
+<hkern g1="afii10106" g2="afii10072" k="41" />
+<hkern g1="afii10106" g2="afii10084" k="102" />
+<hkern g1="afii10106" g2="afii10085" k="61" />
+<hkern g1="afii10106" g2="afii10087" k="41" />
+<hkern g1="afii10106" g2="afii10089" k="82" />
+<hkern g1="afii10106" g2="afii10092" k="102" />
+<hkern g1="afii10106" g2="afii10110" k="61" />
+<hkern g1="afii10106" g2="quoteright" k="123" />
+<hkern g1="afii10106" g2="quotedblright" k="123" />
+<hkern g1="afii10106" g2="uni0461" k="41" />
+<hkern g1="afii10106" g2="uni0475" k="41" />
+<hkern g1="afii10106" g2="uni0477" k="41" />
+<hkern g1="afii10106" g2="uni047F" k="41" />
+<hkern g1="afii10106" g2="uni0497" k="41" />
+<hkern g1="afii10106" g2="uni04A1" k="102" />
+<hkern g1="afii10106" g2="uni04AD" k="102" />
+<hkern g1="afii10106" g2="uni04AF" k="61" />
+<hkern g1="afii10106" g2="uni04B1" k="61" />
+<hkern g1="afii10106" g2="uni04B3" k="41" />
+<hkern g1="afii10106" g2="uni04B5" k="102" />
+<hkern g1="afii10106" g2="uni04B7" k="82" />
+<hkern g1="afii10106" g2="uni04B9" k="82" />
+<hkern g1="afii10106" g2="uni04BD" k="41" />
+<hkern g1="afii10106" g2="uni04BF" k="41" />
+<hkern g1="afii10106" g2="uni04C2" k="41" />
+<hkern g1="afii10106" g2="uni04CC" k="82" />
+<hkern g1="afii10106" g2="uni04DD" k="41" />
+<hkern g1="afii10106" g2="uni04E1" k="41" />
+<hkern g1="afii10106" g2="uni04EF" k="61" />
+<hkern g1="afii10106" g2="uni04F1" k="61" />
+<hkern g1="afii10106" g2="uni04F3" k="61" />
+<hkern g1="afii10106" g2="uni04F5" k="82" />
+<hkern g1="afii10106" g2="uni04FD" k="41" />
+<hkern g1="afii10106" g2="uni04FF" k="41" />
+<hkern g1="afii10106" g2="uni0505" k="102" />
+<hkern g1="afii10106" g2="uni0507" k="102" />
+<hkern g1="afii10106" g2="uni050F" k="102" />
+<hkern g1="afii10107" g2="quotedbl" k="123" />
+<hkern g1="afii10107" g2="quotesingle" k="123" />
+<hkern g1="afii10107" g2="afii10072" k="41" />
+<hkern g1="afii10107" g2="afii10084" k="102" />
+<hkern g1="afii10107" g2="afii10085" k="61" />
+<hkern g1="afii10107" g2="afii10087" k="41" />
+<hkern g1="afii10107" g2="afii10089" k="82" />
+<hkern g1="afii10107" g2="afii10092" k="102" />
+<hkern g1="afii10107" g2="afii10110" k="61" />
+<hkern g1="afii10107" g2="quoteright" k="123" />
+<hkern g1="afii10107" g2="quotedblright" k="123" />
+<hkern g1="afii10107" g2="uni0461" k="41" />
+<hkern g1="afii10107" g2="uni0475" k="41" />
+<hkern g1="afii10107" g2="uni0477" k="41" />
+<hkern g1="afii10107" g2="uni047F" k="41" />
+<hkern g1="afii10107" g2="uni0497" k="41" />
+<hkern g1="afii10107" g2="uni04A1" k="102" />
+<hkern g1="afii10107" g2="uni04AD" k="102" />
+<hkern g1="afii10107" g2="uni04AF" k="61" />
+<hkern g1="afii10107" g2="uni04B1" k="61" />
+<hkern g1="afii10107" g2="uni04B3" k="41" />
+<hkern g1="afii10107" g2="uni04B5" k="102" />
+<hkern g1="afii10107" g2="uni04B7" k="82" />
+<hkern g1="afii10107" g2="uni04B9" k="82" />
+<hkern g1="afii10107" g2="uni04BD" k="41" />
+<hkern g1="afii10107" g2="uni04BF" k="41" />
+<hkern g1="afii10107" g2="uni04C2" k="41" />
+<hkern g1="afii10107" g2="uni04CC" k="82" />
+<hkern g1="afii10107" g2="uni04DD" k="41" />
+<hkern g1="afii10107" g2="uni04E1" k="41" />
+<hkern g1="afii10107" g2="uni04EF" k="61" />
+<hkern g1="afii10107" g2="uni04F1" k="61" />
+<hkern g1="afii10107" g2="uni04F3" k="61" />
+<hkern g1="afii10107" g2="uni04F5" k="82" />
+<hkern g1="afii10107" g2="uni04FD" k="41" />
+<hkern g1="afii10107" g2="uni04FF" k="41" />
+<hkern g1="afii10107" g2="uni0505" k="102" />
+<hkern g1="afii10107" g2="uni0507" k="102" />
+<hkern g1="afii10107" g2="uni050F" k="102" />
+<hkern g1="afii10108" g2="quotedbl" k="20" />
+<hkern g1="afii10108" g2="quotesingle" k="20" />
+<hkern g1="afii10108" g2="quoteright" k="20" />
+<hkern g1="afii10108" g2="quotedblright" k="20" />
+<hkern g1="afii10108" g2="uni0505" k="41" />
+<hkern g1="afii10108" g2="uni0507" k="41" />
+<hkern g1="afii10109" g2="afii10070" k="41" />
+<hkern g1="afii10109" g2="afii10080" k="41" />
+<hkern g1="afii10109" g2="afii10083" k="41" />
+<hkern g1="afii10109" g2="afii10086" k="41" />
+<hkern g1="afii10109" g2="afii10089" k="41" />
+<hkern g1="afii10109" g2="afii10071" k="41" />
+<hkern g1="afii10109" g2="afii10101" k="41" />
+<hkern g1="afii10109" g2="uni0450" k="41" />
+<hkern g1="afii10109" g2="uni0473" k="41" />
+<hkern g1="afii10109" g2="uni0479" k="41" />
+<hkern g1="afii10109" g2="uni047B" k="41" />
+<hkern g1="afii10109" g2="uni047D" k="41" />
+<hkern g1="afii10109" g2="uni0481" k="41" />
+<hkern g1="afii10109" g2="uni04A9" k="41" />
+<hkern g1="afii10109" g2="uni04AB" k="41" />
+<hkern g1="afii10109" g2="uni04B7" k="41" />
+<hkern g1="afii10109" g2="uni04B9" k="41" />
+<hkern g1="afii10109" g2="uni04BD" k="41" />
+<hkern g1="afii10109" g2="uni04BF" k="41" />
+<hkern g1="afii10109" g2="uni04CC" k="41" />
+<hkern g1="afii10109" g2="uni04D7" k="41" />
+<hkern g1="afii10109" g2="uni04E7" k="41" />
+<hkern g1="afii10109" g2="uni04E9" k="41" />
+<hkern g1="afii10109" g2="uni04EB" k="41" />
+<hkern g1="afii10109" g2="uni04F5" k="41" />
+<hkern g1="afii10109" g2="uni0501" k="41" />
+<hkern g1="afii10109" g2="uni0503" k="41" />
+<hkern g1="afii10109" g2="uni050D" k="41" />
+<hkern g1="afii10109" g2="uni0511" k="41" />
+<hkern g1="afii10110" g2="comma" k="82" />
+<hkern g1="afii10110" g2="period" k="82" />
+<hkern g1="afii10110" g2="afii10069" k="41" />
+<hkern g1="afii10110" g2="afii10077" k="41" />
+<hkern g1="afii10110" g2="afii10106" k="41" />
+<hkern g1="afii10110" g2="quotesinglbase" k="82" />
+<hkern g1="afii10110" g2="quotedblbase" k="82" />
+<hkern g1="afii10110" g2="uni0467" k="41" />
+<hkern g1="afii10110" g2="uni04C6" k="41" />
+<hkern g1="afii10110" g2="uni0509" k="41" />
+<hkern g1="afii10110" g2="uni0513" k="41" />
+<hkern g1="afii10050" g2="comma" k="123" />
+<hkern g1="afii10050" g2="hyphen" k="82" />
+<hkern g1="afii10050" g2="period" k="123" />
+<hkern g1="afii10050" g2="afii10053" k="41" />
+<hkern g1="afii10050" g2="afii10058" k="102" />
+<hkern g1="afii10050" g2="afii10017" k="143" />
+<hkern g1="afii10050" g2="afii10021" k="102" />
+<hkern g1="afii10050" g2="afii10029" k="102" />
+<hkern g1="afii10050" g2="afii10032" k="41" />
+<hkern g1="afii10050" g2="afii10035" k="41" />
+<hkern g1="afii10050" g2="afii10036" k="-41" />
+<hkern g1="afii10050" g2="afii10038" k="82" />
+<hkern g1="afii10050" g2="afii10067" k="102" />
+<hkern g1="afii10050" g2="afii10068" k="102" />
+<hkern g1="afii10050" g2="afii10069" k="123" />
+<hkern g1="afii10050" g2="afii10070" k="143" />
+<hkern g1="afii10050" g2="afii10072" k="41" />
+<hkern g1="afii10050" g2="afii10073" k="41" />
+<hkern g1="afii10050" g2="afii10074" k="102" />
+<hkern g1="afii10050" g2="afii10075" k="102" />
+<hkern g1="afii10050" g2="afii10076" k="102" />
+<hkern g1="afii10050" g2="afii10077" k="123" />
+<hkern g1="afii10050" g2="afii10078" k="102" />
+<hkern g1="afii10050" g2="afii10079" k="102" />
+<hkern g1="afii10050" g2="afii10080" k="143" />
+<hkern g1="afii10050" g2="afii10081" k="102" />
+<hkern g1="afii10050" g2="afii10082" k="102" />
+<hkern g1="afii10050" g2="afii10083" k="143" />
+<hkern g1="afii10050" g2="afii10084" k="82" />
+<hkern g1="afii10050" g2="afii10085" k="82" />
+<hkern g1="afii10050" g2="afii10086" k="143" />
+<hkern g1="afii10050" g2="afii10087" k="41" />
+<hkern g1="afii10050" g2="afii10088" k="102" />
+<hkern g1="afii10050" g2="afii10089" k="102" />
+<hkern g1="afii10050" g2="afii10090" k="102" />
+<hkern g1="afii10050" g2="afii10091" k="102" />
+<hkern g1="afii10050" g2="afii10092" k="82" />
+<hkern g1="afii10050" g2="afii10093" k="102" />
+<hkern g1="afii10050" g2="afii10094" k="102" />
+<hkern g1="afii10050" g2="afii10095" k="41" />
+<hkern g1="afii10050" g2="afii10096" k="102" />
+<hkern g1="afii10050" g2="afii10097" k="61" />
+<hkern g1="afii10050" g2="afii10071" k="143" />
+<hkern g1="afii10050" g2="afii10100" k="102" />
+<hkern g1="afii10050" g2="afii10101" k="143" />
+<hkern g1="afii10050" g2="afii10102" k="123" />
+<hkern g1="afii10050" g2="afii10106" k="123" />
+<hkern g1="afii10050" g2="afii10107" k="102" />
+<hkern g1="afii10050" g2="afii10109" k="102" />
+<hkern g1="afii10050" g2="afii10110" k="82" />
+<hkern g1="afii10050" g2="afii10193" k="102" />
+<hkern g1="afii10050" g2="afii10098" k="102" />
+<hkern g1="afii10050" g2="endash" k="82" />
+<hkern g1="afii10050" g2="emdash" k="82" />
+<hkern g1="afii10050" g2="afii00208" k="82" />
+<hkern g1="afii10050" g2="quotesinglbase" k="123" />
+<hkern g1="afii10050" g2="quotedblbase" k="123" />
+<hkern g1="afii10050" g2="uni0450" k="143" />
+<hkern g1="afii10050" g2="uni045D" k="102" />
+<hkern g1="afii10050" g2="uni0460" k="41" />
+<hkern g1="afii10050" g2="uni0461" k="41" />
+<hkern g1="afii10050" g2="uni0465" k="102" />
+<hkern g1="afii10050" g2="uni0466" k="143" />
+<hkern g1="afii10050" g2="uni0467" k="123" />
+<hkern g1="afii10050" g2="uni0469" k="102" />
+<hkern g1="afii10050" g2="uni046B" k="102" />
+<hkern g1="afii10050" g2="uni046D" k="102" />
+<hkern g1="afii10050" g2="uni0471" k="102" />
+<hkern g1="afii10050" g2="uni0472" k="41" />
+<hkern g1="afii10050" g2="uni0473" k="143" />
+<hkern g1="afii10050" g2="uni0475" k="41" />
+<hkern g1="afii10050" g2="uni0477" k="41" />
+<hkern g1="afii10050" g2="uni0478" k="41" />
+<hkern g1="afii10050" g2="uni0479" k="143" />
+<hkern g1="afii10050" g2="uni047A" k="41" />
+<hkern g1="afii10050" g2="uni047B" k="143" />
+<hkern g1="afii10050" g2="uni047C" k="41" />
+<hkern g1="afii10050" g2="uni047D" k="143" />
+<hkern g1="afii10050" g2="uni047E" k="41" />
+<hkern g1="afii10050" g2="uni047F" k="41" />
+<hkern g1="afii10050" g2="uni0480" k="41" />
+<hkern g1="afii10050" g2="uni0481" k="143" />
+<hkern g1="afii10050" g2="uni048B" k="102" />
+<hkern g1="afii10050" g2="uni048F" k="102" />
+<hkern g1="afii10050" g2="uni0495" k="102" />
+<hkern g1="afii10050" g2="uni0497" k="41" />
+<hkern g1="afii10050" g2="uni0499" k="41" />
+<hkern g1="afii10050" g2="uni049B" k="102" />
+<hkern g1="afii10050" g2="uni049D" k="102" />
+<hkern g1="afii10050" g2="uni04A1" k="82" />
+<hkern g1="afii10050" g2="uni04A3" k="102" />
+<hkern g1="afii10050" g2="uni04A5" k="102" />
+<hkern g1="afii10050" g2="uni04A7" k="102" />
+<hkern g1="afii10050" g2="uni04A8" k="41" />
+<hkern g1="afii10050" g2="uni04A9" k="143" />
+<hkern g1="afii10050" g2="uni04AA" k="41" />
+<hkern g1="afii10050" g2="uni04AB" k="143" />
+<hkern g1="afii10050" g2="uni04AC" k="-41" />
+<hkern g1="afii10050" g2="uni04AD" k="82" />
+<hkern g1="afii10050" g2="uni04AF" k="82" />
+<hkern g1="afii10050" g2="uni04B1" k="82" />
+<hkern g1="afii10050" g2="uni04B3" k="41" />
+<hkern g1="afii10050" g2="uni04B5" k="82" />
+<hkern g1="afii10050" g2="uni04B7" k="102" />
+<hkern g1="afii10050" g2="uni04B9" k="102" />
+<hkern g1="afii10050" g2="uni04BB" k="102" />
+<hkern g1="afii10050" g2="uni04BC" k="102" />
+<hkern g1="afii10050" g2="uni04BD" k="143" />
+<hkern g1="afii10050" g2="uni04BE" k="102" />
+<hkern g1="afii10050" g2="uni04BF" k="143" />
+<hkern g1="afii10050" g2="uni04C2" k="41" />
+<hkern g1="afii10050" g2="uni04C4" k="102" />
+<hkern g1="afii10050" g2="uni04C5" k="102" />
+<hkern g1="afii10050" g2="uni04C6" k="123" />
+<hkern g1="afii10050" g2="uni04C8" k="102" />
+<hkern g1="afii10050" g2="uni04CA" k="102" />
+<hkern g1="afii10050" g2="uni04CC" k="102" />
+<hkern g1="afii10050" g2="uni04CE" k="102" />
+<hkern g1="afii10050" g2="uni04D0" k="143" />
+<hkern g1="afii10050" g2="uni04D2" k="143" />
+<hkern g1="afii10050" g2="uni04D4" k="143" />
+<hkern g1="afii10050" g2="uni04D7" k="143" />
+<hkern g1="afii10050" g2="uni04DD" k="41" />
+<hkern g1="afii10050" g2="uni04DF" k="41" />
+<hkern g1="afii10050" g2="uni04E1" k="61" />
+<hkern g1="afii10050" g2="uni04E3" k="102" />
+<hkern g1="afii10050" g2="uni04E5" k="102" />
+<hkern g1="afii10050" g2="uni04E6" k="41" />
+<hkern g1="afii10050" g2="uni04E7" k="143" />
+<hkern g1="afii10050" g2="uni04E8" k="41" />
+<hkern g1="afii10050" g2="uni04E9" k="143" />
+<hkern g1="afii10050" g2="uni04EA" k="41" />
+<hkern g1="afii10050" g2="uni04EB" k="143" />
+<hkern g1="afii10050" g2="uni04ED" k="41" />
+<hkern g1="afii10050" g2="uni04EF" k="82" />
+<hkern g1="afii10050" g2="uni04F1" k="82" />
+<hkern g1="afii10050" g2="uni04F3" k="82" />
+<hkern g1="afii10050" g2="uni04F5" k="102" />
+<hkern g1="afii10050" g2="uni04F7" k="102" />
+<hkern g1="afii10050" g2="uni04F9" k="102" />
+<hkern g1="afii10050" g2="uni04FD" k="41" />
+<hkern g1="afii10050" g2="uni04FF" k="41" />
+<hkern g1="afii10050" g2="uni0500" k="143" />
+<hkern g1="afii10050" g2="uni0501" k="143" />
+<hkern g1="afii10050" g2="uni0502" k="143" />
+<hkern g1="afii10050" g2="uni0503" k="143" />
+<hkern g1="afii10050" g2="uni0505" k="102" />
+<hkern g1="afii10050" g2="uni0507" k="102" />
+<hkern g1="afii10050" g2="uni0508" k="102" />
+<hkern g1="afii10050" g2="uni0509" k="123" />
+<hkern g1="afii10050" g2="uni050B" k="102" />
+<hkern g1="afii10050" g2="uni050C" k="41" />
+<hkern g1="afii10050" g2="uni050D" k="143" />
+<hkern g1="afii10050" g2="uni050F" k="82" />
+<hkern g1="afii10050" g2="uni0511" k="143" />
+<hkern g1="afii10050" g2="uni0512" k="102" />
+<hkern g1="afii10050" g2="uni0513" k="123" />
+<hkern g1="afii10098" g2="comma" k="102" />
+<hkern g1="afii10098" g2="hyphen" k="41" />
+<hkern g1="afii10098" g2="period" k="102" />
+<hkern g1="afii10098" g2="afii10069" k="61" />
+<hkern g1="afii10098" g2="afii10070" k="20" />
+<hkern g1="afii10098" g2="afii10077" k="61" />
+<hkern g1="afii10098" g2="afii10080" k="20" />
+<hkern g1="afii10098" g2="afii10083" k="20" />
+<hkern g1="afii10098" g2="afii10086" k="20" />
+<hkern g1="afii10098" g2="afii10071" k="20" />
+<hkern g1="afii10098" g2="afii10101" k="20" />
+<hkern g1="afii10098" g2="afii10106" k="61" />
+<hkern g1="afii10098" g2="endash" k="41" />
+<hkern g1="afii10098" g2="emdash" k="41" />
+<hkern g1="afii10098" g2="afii00208" k="41" />
+<hkern g1="afii10098" g2="quotesinglbase" k="102" />
+<hkern g1="afii10098" g2="quotedblbase" k="102" />
+<hkern g1="afii10098" g2="uni0450" k="20" />
+<hkern g1="afii10098" g2="uni0467" k="61" />
+<hkern g1="afii10098" g2="uni0473" k="20" />
+<hkern g1="afii10098" g2="uni0479" k="20" />
+<hkern g1="afii10098" g2="uni047B" k="20" />
+<hkern g1="afii10098" g2="uni047D" k="20" />
+<hkern g1="afii10098" g2="uni0481" k="20" />
+<hkern g1="afii10098" g2="uni04A9" k="20" />
+<hkern g1="afii10098" g2="uni04AB" k="20" />
+<hkern g1="afii10098" g2="uni04C6" k="61" />
+<hkern g1="afii10098" g2="uni04D7" k="20" />
+<hkern g1="afii10098" g2="uni04E7" k="20" />
+<hkern g1="afii10098" g2="uni04E9" k="20" />
+<hkern g1="afii10098" g2="uni04EB" k="20" />
+<hkern g1="afii10098" g2="uni0501" k="20" />
+<hkern g1="afii10098" g2="uni0503" k="20" />
+<hkern g1="afii10098" g2="uni0509" k="61" />
+<hkern g1="afii10098" g2="uni050D" k="20" />
+<hkern g1="afii10098" g2="uni0511" k="20" />
+<hkern g1="afii10098" g2="uni0513" k="61" />
+<hkern g1="Wgrave" g2="comma" k="102" />
+<hkern g1="Wgrave" g2="period" k="102" />
+<hkern g1="Wgrave" g2="question" k="-41" />
+<hkern g1="Wgrave" g2="A" k="82" />
+<hkern g1="Wgrave" g2="C" k="20" />
+<hkern g1="Wgrave" g2="G" k="20" />
+<hkern g1="Wgrave" g2="O" k="20" />
+<hkern g1="Wgrave" g2="Q" k="20" />
+<hkern g1="Wgrave" g2="a" k="41" />
+<hkern g1="Wgrave" g2="c" k="41" />
+<hkern g1="Wgrave" g2="d" k="41" />
+<hkern g1="Wgrave" g2="e" k="41" />
+<hkern g1="Wgrave" g2="g" k="20" />
+<hkern g1="Wgrave" g2="m" k="20" />
+<hkern g1="Wgrave" g2="n" k="20" />
+<hkern g1="Wgrave" g2="o" k="41" />
+<hkern g1="Wgrave" g2="p" k="20" />
+<hkern g1="Wgrave" g2="q" k="41" />
+<hkern g1="Wgrave" g2="r" k="20" />
+<hkern g1="Wgrave" g2="s" k="20" />
+<hkern g1="Wgrave" g2="u" k="20" />
+<hkern g1="Wgrave" g2="Agrave" k="82" />
+<hkern g1="Wgrave" g2="Aacute" k="82" />
+<hkern g1="Wgrave" g2="Acircumflex" k="82" />
+<hkern g1="Wgrave" g2="Atilde" k="82" />
+<hkern g1="Wgrave" g2="Adieresis" k="82" />
+<hkern g1="Wgrave" g2="Aring" k="82" />
+<hkern g1="Wgrave" g2="Ccedilla" k="20" />
+<hkern g1="Wgrave" g2="Ograve" k="20" />
+<hkern g1="Wgrave" g2="Oacute" k="20" />
+<hkern g1="Wgrave" g2="Ocircumflex" k="20" />
+<hkern g1="Wgrave" g2="Otilde" k="20" />
+<hkern g1="Wgrave" g2="Odieresis" k="20" />
+<hkern g1="Wgrave" g2="Oslash" k="20" />
+<hkern g1="Wgrave" g2="agrave" k="41" />
+<hkern g1="Wgrave" g2="aacute" k="41" />
+<hkern g1="Wgrave" g2="acircumflex" k="41" />
+<hkern g1="Wgrave" g2="atilde" k="41" />
+<hkern g1="Wgrave" g2="adieresis" k="41" />
+<hkern g1="Wgrave" g2="aring" k="41" />
+<hkern g1="Wgrave" g2="ae" k="41" />
+<hkern g1="Wgrave" g2="ccedilla" k="41" />
+<hkern g1="Wgrave" g2="egrave" k="41" />
+<hkern g1="Wgrave" g2="eacute" k="41" />
+<hkern g1="Wgrave" g2="ecircumflex" k="41" />
+<hkern g1="Wgrave" g2="edieresis" k="41" />
+<hkern g1="Wgrave" g2="ograve" k="41" />
+<hkern g1="Wgrave" g2="oacute" k="41" />
+<hkern g1="Wgrave" g2="ocircumflex" k="41" />
+<hkern g1="Wgrave" g2="otilde" k="41" />
+<hkern g1="Wgrave" g2="odieresis" k="41" />
+<hkern g1="Wgrave" g2="oslash" k="41" />
+<hkern g1="Wgrave" g2="ugrave" k="20" />
+<hkern g1="Wgrave" g2="uacute" k="20" />
+<hkern g1="Wgrave" g2="ucircumflex" k="20" />
+<hkern g1="Wgrave" g2="udieresis" k="20" />
+<hkern g1="Wgrave" g2="Amacron" k="82" />
+<hkern g1="Wgrave" g2="amacron" k="41" />
+<hkern g1="Wgrave" g2="Abreve" k="82" />
+<hkern g1="Wgrave" g2="abreve" k="41" />
+<hkern g1="Wgrave" g2="Aogonek" k="82" />
+<hkern g1="Wgrave" g2="aogonek" k="41" />
+<hkern g1="Wgrave" g2="Cacute" k="20" />
+<hkern g1="Wgrave" g2="cacute" k="41" />
+<hkern g1="Wgrave" g2="Ccircumflex" k="20" />
+<hkern g1="Wgrave" g2="ccircumflex" k="41" />
+<hkern g1="Wgrave" g2="Cdot" k="20" />
+<hkern g1="Wgrave" g2="cdot" k="41" />
+<hkern g1="Wgrave" g2="Ccaron" k="20" />
+<hkern g1="Wgrave" g2="ccaron" k="41" />
+<hkern g1="Wgrave" g2="dcaron" k="41" />
+<hkern g1="Wgrave" g2="dcroat" k="41" />
+<hkern g1="Wgrave" g2="emacron" k="41" />
+<hkern g1="Wgrave" g2="ebreve" k="41" />
+<hkern g1="Wgrave" g2="edotaccent" k="41" />
+<hkern g1="Wgrave" g2="eogonek" k="41" />
+<hkern g1="Wgrave" g2="ecaron" k="41" />
+<hkern g1="Wgrave" g2="Gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="gcircumflex" k="20" />
+<hkern g1="Wgrave" g2="Gbreve" k="20" />
+<hkern g1="Wgrave" g2="gbreve" k="20" />
+<hkern g1="Wgrave" g2="Gdot" k="20" />
+<hkern g1="Wgrave" g2="gdot" k="20" />
+<hkern g1="Wgrave" g2="Gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="gcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="kgreenlandic" k="20" />
+<hkern g1="Wgrave" g2="nacute" k="20" />
+<hkern g1="Wgrave" g2="ncommaaccent" k="20" />
+<hkern g1="Wgrave" g2="eng" k="20" />
+<hkern g1="Wgrave" g2="Omacron" k="20" />
+<hkern g1="Wgrave" g2="omacron" k="41" />
+<hkern g1="Wgrave" g2="Obreve" k="20" />
+<hkern g1="Wgrave" g2="obreve" k="41" />
+<hkern g1="Wgrave" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="ohungarumlaut" k="41" />
+<hkern g1="Wgrave" g2="OE" k="20" />
+<hkern g1="Wgrave" g2="oe" k="41" />
+<hkern g1="Wgrave" g2="racute" k="20" />
+<hkern g1="Wgrave" g2="rcommaaccent" k="20" />
+<hkern g1="Wgrave" g2="sacute" k="20" />
+<hkern g1="Wgrave" g2="scedilla" k="20" />
+<hkern g1="Wgrave" g2="utilde" k="20" />
+<hkern g1="Wgrave" g2="umacron" k="20" />
+<hkern g1="Wgrave" g2="ubreve" k="20" />
+<hkern g1="Wgrave" g2="uring" k="20" />
+<hkern g1="Wgrave" g2="uhungarumlaut" k="20" />
+<hkern g1="Wgrave" g2="uogonek" k="20" />
+<hkern g1="Wgrave" g2="Aringacute" k="82" />
+<hkern g1="Wgrave" g2="aringacute" k="41" />
+<hkern g1="Wgrave" g2="aeacute" k="41" />
+<hkern g1="Wgrave" g2="Oslashacute" k="20" />
+<hkern g1="Wgrave" g2="oslashacute" k="41" />
+<hkern g1="Wgrave" g2="scommaaccent" k="20" />
+<hkern g1="Wgrave" g2="quotesinglbase" k="102" />
+<hkern g1="Wgrave" g2="quotedblbase" k="102" />
+<hkern g1="Wgrave" g2="uni1E3F" k="20" />
+<hkern g1="Wgrave" g2="uni1E00" k="82" />
+<hkern g1="Wgrave" g2="uni1E01" k="41" />
+<hkern g1="Wgrave" g2="Ohorn" k="20" />
+<hkern g1="Wgrave" g2="ohorn" k="41" />
+<hkern g1="Wgrave" g2="uhorn" k="20" />
+<hkern g1="Wgrave" g2="uni1EA0" k="82" />
+<hkern g1="Wgrave" g2="uni1EA1" k="41" />
+<hkern g1="Wgrave" g2="uni1EA2" k="82" />
+<hkern g1="Wgrave" g2="uni1EA3" k="41" />
+<hkern g1="Wgrave" g2="uni1EA4" k="82" />
+<hkern g1="Wgrave" g2="uni1EA5" k="41" />
+<hkern g1="Wgrave" g2="uni1EA6" k="82" />
+<hkern g1="Wgrave" g2="uni1EA8" k="82" />
+<hkern g1="Wgrave" g2="uni1EA9" k="41" />
+<hkern g1="Wgrave" g2="uni1EAA" k="82" />
+<hkern g1="Wgrave" g2="uni1EAB" k="41" />
+<hkern g1="Wgrave" g2="uni1EAC" k="82" />
+<hkern g1="Wgrave" g2="uni1EAD" k="41" />
+<hkern g1="Wgrave" g2="uni1EAE" k="82" />
+<hkern g1="Wgrave" g2="uni1EAF" k="41" />
+<hkern g1="Wgrave" g2="uni1EB0" k="82" />
+<hkern g1="Wgrave" g2="uni1EB1" k="41" />
+<hkern g1="Wgrave" g2="uni1EB2" k="82" />
+<hkern g1="Wgrave" g2="uni1EB3" k="41" />
+<hkern g1="Wgrave" g2="uni1EB4" k="82" />
+<hkern g1="Wgrave" g2="uni1EB5" k="41" />
+<hkern g1="Wgrave" g2="uni1EB6" k="82" />
+<hkern g1="Wgrave" g2="uni1EB7" k="41" />
+<hkern g1="Wgrave" g2="uni1EB9" k="41" />
+<hkern g1="Wgrave" g2="uni1EBB" k="41" />
+<hkern g1="Wgrave" g2="uni1EBD" k="41" />
+<hkern g1="Wgrave" g2="uni1EBF" k="41" />
+<hkern g1="Wgrave" g2="uni1EC3" k="41" />
+<hkern g1="Wgrave" g2="uni1EC5" k="41" />
+<hkern g1="Wgrave" g2="uni1EC7" k="41" />
+<hkern g1="Wgrave" g2="uni1ECC" k="20" />
+<hkern g1="Wgrave" g2="uni1ECD" k="41" />
+<hkern g1="Wgrave" g2="uni1ECE" k="20" />
+<hkern g1="Wgrave" g2="uni1ECF" k="41" />
+<hkern g1="Wgrave" g2="uni1ED0" k="20" />
+<hkern g1="Wgrave" g2="uni1ED1" k="41" />
+<hkern g1="Wgrave" g2="uni1ED2" k="20" />
+<hkern g1="Wgrave" g2="uni1ED4" k="20" />
+<hkern g1="Wgrave" g2="uni1ED5" k="41" />
+<hkern g1="Wgrave" g2="uni1ED6" k="20" />
+<hkern g1="Wgrave" g2="uni1ED7" k="41" />
+<hkern g1="Wgrave" g2="uni1ED8" k="20" />
+<hkern g1="Wgrave" g2="uni1ED9" k="41" />
+<hkern g1="Wgrave" g2="uni1EDA" k="20" />
+<hkern g1="Wgrave" g2="uni1EDB" k="41" />
+<hkern g1="Wgrave" g2="uni1EDC" k="20" />
+<hkern g1="Wgrave" g2="uni1EDD" k="41" />
+<hkern g1="Wgrave" g2="uni1EDE" k="20" />
+<hkern g1="Wgrave" g2="uni1EDF" k="41" />
+<hkern g1="Wgrave" g2="uni1EE0" k="20" />
+<hkern g1="Wgrave" g2="uni1EE1" k="41" />
+<hkern g1="Wgrave" g2="uni1EE2" k="20" />
+<hkern g1="Wgrave" g2="uni1EE3" k="41" />
+<hkern g1="Wgrave" g2="uni1EE5" k="20" />
+<hkern g1="Wgrave" g2="uni1EE7" k="20" />
+<hkern g1="Wgrave" g2="uni1EE9" k="20" />
+<hkern g1="Wgrave" g2="uni1EEB" k="20" />
+<hkern g1="Wgrave" g2="uni1EED" k="20" />
+<hkern g1="Wgrave" g2="uni1EEF" k="20" />
+<hkern g1="Wgrave" g2="uni1EF1" k="20" />
+<hkern g1="wgrave" g2="quotedbl" k="-82" />
+<hkern g1="wgrave" g2="quotesingle" k="-82" />
+<hkern g1="wgrave" g2="comma" k="82" />
+<hkern g1="wgrave" g2="period" k="82" />
+<hkern g1="wgrave" g2="question" k="-41" />
+<hkern g1="wgrave" g2="quoteright" k="-82" />
+<hkern g1="wgrave" g2="quotesinglbase" k="82" />
+<hkern g1="wgrave" g2="quotedblright" k="-82" />
+<hkern g1="wgrave" g2="quotedblbase" k="82" />
+<hkern g1="Wacute" g2="comma" k="102" />
+<hkern g1="Wacute" g2="period" k="102" />
+<hkern g1="Wacute" g2="question" k="-41" />
+<hkern g1="Wacute" g2="A" k="82" />
+<hkern g1="Wacute" g2="C" k="20" />
+<hkern g1="Wacute" g2="G" k="20" />
+<hkern g1="Wacute" g2="O" k="20" />
+<hkern g1="Wacute" g2="Q" k="20" />
+<hkern g1="Wacute" g2="a" k="41" />
+<hkern g1="Wacute" g2="c" k="41" />
+<hkern g1="Wacute" g2="d" k="41" />
+<hkern g1="Wacute" g2="e" k="41" />
+<hkern g1="Wacute" g2="g" k="20" />
+<hkern g1="Wacute" g2="m" k="20" />
+<hkern g1="Wacute" g2="n" k="20" />
+<hkern g1="Wacute" g2="o" k="41" />
+<hkern g1="Wacute" g2="p" k="20" />
+<hkern g1="Wacute" g2="q" k="41" />
+<hkern g1="Wacute" g2="r" k="20" />
+<hkern g1="Wacute" g2="s" k="20" />
+<hkern g1="Wacute" g2="u" k="20" />
+<hkern g1="Wacute" g2="Agrave" k="82" />
+<hkern g1="Wacute" g2="Aacute" k="82" />
+<hkern g1="Wacute" g2="Acircumflex" k="82" />
+<hkern g1="Wacute" g2="Atilde" k="82" />
+<hkern g1="Wacute" g2="Adieresis" k="82" />
+<hkern g1="Wacute" g2="Aring" k="82" />
+<hkern g1="Wacute" g2="Ccedilla" k="20" />
+<hkern g1="Wacute" g2="Ograve" k="20" />
+<hkern g1="Wacute" g2="Oacute" k="20" />
+<hkern g1="Wacute" g2="Ocircumflex" k="20" />
+<hkern g1="Wacute" g2="Otilde" k="20" />
+<hkern g1="Wacute" g2="Odieresis" k="20" />
+<hkern g1="Wacute" g2="Oslash" k="20" />
+<hkern g1="Wacute" g2="agrave" k="41" />
+<hkern g1="Wacute" g2="aacute" k="41" />
+<hkern g1="Wacute" g2="acircumflex" k="41" />
+<hkern g1="Wacute" g2="atilde" k="41" />
+<hkern g1="Wacute" g2="adieresis" k="41" />
+<hkern g1="Wacute" g2="aring" k="41" />
+<hkern g1="Wacute" g2="ae" k="41" />
+<hkern g1="Wacute" g2="ccedilla" k="41" />
+<hkern g1="Wacute" g2="egrave" k="41" />
+<hkern g1="Wacute" g2="eacute" k="41" />
+<hkern g1="Wacute" g2="ecircumflex" k="41" />
+<hkern g1="Wacute" g2="edieresis" k="41" />
+<hkern g1="Wacute" g2="ograve" k="41" />
+<hkern g1="Wacute" g2="oacute" k="41" />
+<hkern g1="Wacute" g2="ocircumflex" k="41" />
+<hkern g1="Wacute" g2="otilde" k="41" />
+<hkern g1="Wacute" g2="odieresis" k="41" />
+<hkern g1="Wacute" g2="oslash" k="41" />
+<hkern g1="Wacute" g2="ugrave" k="20" />
+<hkern g1="Wacute" g2="uacute" k="20" />
+<hkern g1="Wacute" g2="ucircumflex" k="20" />
+<hkern g1="Wacute" g2="udieresis" k="20" />
+<hkern g1="Wacute" g2="Amacron" k="82" />
+<hkern g1="Wacute" g2="amacron" k="41" />
+<hkern g1="Wacute" g2="Abreve" k="82" />
+<hkern g1="Wacute" g2="abreve" k="41" />
+<hkern g1="Wacute" g2="Aogonek" k="82" />
+<hkern g1="Wacute" g2="aogonek" k="41" />
+<hkern g1="Wacute" g2="Cacute" k="20" />
+<hkern g1="Wacute" g2="cacute" k="41" />
+<hkern g1="Wacute" g2="Ccircumflex" k="20" />
+<hkern g1="Wacute" g2="ccircumflex" k="41" />
+<hkern g1="Wacute" g2="Cdot" k="20" />
+<hkern g1="Wacute" g2="cdot" k="41" />
+<hkern g1="Wacute" g2="Ccaron" k="20" />
+<hkern g1="Wacute" g2="ccaron" k="41" />
+<hkern g1="Wacute" g2="dcaron" k="41" />
+<hkern g1="Wacute" g2="dcroat" k="41" />
+<hkern g1="Wacute" g2="emacron" k="41" />
+<hkern g1="Wacute" g2="ebreve" k="41" />
+<hkern g1="Wacute" g2="edotaccent" k="41" />
+<hkern g1="Wacute" g2="eogonek" k="41" />
+<hkern g1="Wacute" g2="ecaron" k="41" />
+<hkern g1="Wacute" g2="Gcircumflex" k="20" />
+<hkern g1="Wacute" g2="gcircumflex" k="20" />
+<hkern g1="Wacute" g2="Gbreve" k="20" />
+<hkern g1="Wacute" g2="gbreve" k="20" />
+<hkern g1="Wacute" g2="Gdot" k="20" />
+<hkern g1="Wacute" g2="gdot" k="20" />
+<hkern g1="Wacute" g2="Gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="gcommaaccent" k="20" />
+<hkern g1="Wacute" g2="kgreenlandic" k="20" />
+<hkern g1="Wacute" g2="nacute" k="20" />
+<hkern g1="Wacute" g2="ncommaaccent" k="20" />
+<hkern g1="Wacute" g2="eng" k="20" />
+<hkern g1="Wacute" g2="Omacron" k="20" />
+<hkern g1="Wacute" g2="omacron" k="41" />
+<hkern g1="Wacute" g2="Obreve" k="20" />
+<hkern g1="Wacute" g2="obreve" k="41" />
+<hkern g1="Wacute" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wacute" g2="ohungarumlaut" k="41" />
+<hkern g1="Wacute" g2="OE" k="20" />
+<hkern g1="Wacute" g2="oe" k="41" />
+<hkern g1="Wacute" g2="racute" k="20" />
+<hkern g1="Wacute" g2="rcommaaccent" k="20" />
+<hkern g1="Wacute" g2="sacute" k="20" />
+<hkern g1="Wacute" g2="scedilla" k="20" />
+<hkern g1="Wacute" g2="utilde" k="20" />
+<hkern g1="Wacute" g2="umacron" k="20" />
+<hkern g1="Wacute" g2="ubreve" k="20" />
+<hkern g1="Wacute" g2="uring" k="20" />
+<hkern g1="Wacute" g2="uhungarumlaut" k="20" />
+<hkern g1="Wacute" g2="uogonek" k="20" />
+<hkern g1="Wacute" g2="Aringacute" k="82" />
+<hkern g1="Wacute" g2="aringacute" k="41" />
+<hkern g1="Wacute" g2="aeacute" k="41" />
+<hkern g1="Wacute" g2="Oslashacute" k="20" />
+<hkern g1="Wacute" g2="oslashacute" k="41" />
+<hkern g1="Wacute" g2="scommaaccent" k="20" />
+<hkern g1="Wacute" g2="quotesinglbase" k="102" />
+<hkern g1="Wacute" g2="quotedblbase" k="102" />
+<hkern g1="Wacute" g2="uni1E3F" k="20" />
+<hkern g1="Wacute" g2="uni1E00" k="82" />
+<hkern g1="Wacute" g2="uni1E01" k="41" />
+<hkern g1="Wacute" g2="Ohorn" k="20" />
+<hkern g1="Wacute" g2="ohorn" k="41" />
+<hkern g1="Wacute" g2="uhorn" k="20" />
+<hkern g1="Wacute" g2="uni1EA0" k="82" />
+<hkern g1="Wacute" g2="uni1EA1" k="41" />
+<hkern g1="Wacute" g2="uni1EA2" k="82" />
+<hkern g1="Wacute" g2="uni1EA3" k="41" />
+<hkern g1="Wacute" g2="uni1EA4" k="82" />
+<hkern g1="Wacute" g2="uni1EA5" k="41" />
+<hkern g1="Wacute" g2="uni1EA6" k="82" />
+<hkern g1="Wacute" g2="uni1EA8" k="82" />
+<hkern g1="Wacute" g2="uni1EA9" k="41" />
+<hkern g1="Wacute" g2="uni1EAA" k="82" />
+<hkern g1="Wacute" g2="uni1EAB" k="41" />
+<hkern g1="Wacute" g2="uni1EAC" k="82" />
+<hkern g1="Wacute" g2="uni1EAD" k="41" />
+<hkern g1="Wacute" g2="uni1EAE" k="82" />
+<hkern g1="Wacute" g2="uni1EAF" k="41" />
+<hkern g1="Wacute" g2="uni1EB0" k="82" />
+<hkern g1="Wacute" g2="uni1EB1" k="41" />
+<hkern g1="Wacute" g2="uni1EB2" k="82" />
+<hkern g1="Wacute" g2="uni1EB3" k="41" />
+<hkern g1="Wacute" g2="uni1EB4" k="82" />
+<hkern g1="Wacute" g2="uni1EB5" k="41" />
+<hkern g1="Wacute" g2="uni1EB6" k="82" />
+<hkern g1="Wacute" g2="uni1EB7" k="41" />
+<hkern g1="Wacute" g2="uni1EB9" k="41" />
+<hkern g1="Wacute" g2="uni1EBB" k="41" />
+<hkern g1="Wacute" g2="uni1EBD" k="41" />
+<hkern g1="Wacute" g2="uni1EBF" k="41" />
+<hkern g1="Wacute" g2="uni1EC3" k="41" />
+<hkern g1="Wacute" g2="uni1EC5" k="41" />
+<hkern g1="Wacute" g2="uni1EC7" k="41" />
+<hkern g1="Wacute" g2="uni1ECC" k="20" />
+<hkern g1="Wacute" g2="uni1ECD" k="41" />
+<hkern g1="Wacute" g2="uni1ECE" k="20" />
+<hkern g1="Wacute" g2="uni1ECF" k="41" />
+<hkern g1="Wacute" g2="uni1ED0" k="20" />
+<hkern g1="Wacute" g2="uni1ED1" k="41" />
+<hkern g1="Wacute" g2="uni1ED2" k="20" />
+<hkern g1="Wacute" g2="uni1ED4" k="20" />
+<hkern g1="Wacute" g2="uni1ED5" k="41" />
+<hkern g1="Wacute" g2="uni1ED6" k="20" />
+<hkern g1="Wacute" g2="uni1ED7" k="41" />
+<hkern g1="Wacute" g2="uni1ED8" k="20" />
+<hkern g1="Wacute" g2="uni1ED9" k="41" />
+<hkern g1="Wacute" g2="uni1EDA" k="20" />
+<hkern g1="Wacute" g2="uni1EDB" k="41" />
+<hkern g1="Wacute" g2="uni1EDC" k="20" />
+<hkern g1="Wacute" g2="uni1EDD" k="41" />
+<hkern g1="Wacute" g2="uni1EDE" k="20" />
+<hkern g1="Wacute" g2="uni1EDF" k="41" />
+<hkern g1="Wacute" g2="uni1EE0" k="20" />
+<hkern g1="Wacute" g2="uni1EE1" k="41" />
+<hkern g1="Wacute" g2="uni1EE2" k="20" />
+<hkern g1="Wacute" g2="uni1EE3" k="41" />
+<hkern g1="Wacute" g2="uni1EE5" k="20" />
+<hkern g1="Wacute" g2="uni1EE7" k="20" />
+<hkern g1="Wacute" g2="uni1EE9" k="20" />
+<hkern g1="Wacute" g2="uni1EEB" k="20" />
+<hkern g1="Wacute" g2="uni1EED" k="20" />
+<hkern g1="Wacute" g2="uni1EEF" k="20" />
+<hkern g1="Wacute" g2="uni1EF1" k="20" />
+<hkern g1="wacute" g2="quotedbl" k="-82" />
+<hkern g1="wacute" g2="quotesingle" k="-82" />
+<hkern g1="wacute" g2="comma" k="82" />
+<hkern g1="wacute" g2="period" k="82" />
+<hkern g1="wacute" g2="question" k="-41" />
+<hkern g1="wacute" g2="quoteright" k="-82" />
+<hkern g1="wacute" g2="quotesinglbase" k="82" />
+<hkern g1="wacute" g2="quotedblright" k="-82" />
+<hkern g1="wacute" g2="quotedblbase" k="82" />
+<hkern g1="Wdieresis" g2="comma" k="102" />
+<hkern g1="Wdieresis" g2="period" k="102" />
+<hkern g1="Wdieresis" g2="question" k="-41" />
+<hkern g1="Wdieresis" g2="A" k="82" />
+<hkern g1="Wdieresis" g2="C" k="20" />
+<hkern g1="Wdieresis" g2="G" k="20" />
+<hkern g1="Wdieresis" g2="O" k="20" />
+<hkern g1="Wdieresis" g2="Q" k="20" />
+<hkern g1="Wdieresis" g2="a" k="41" />
+<hkern g1="Wdieresis" g2="c" k="41" />
+<hkern g1="Wdieresis" g2="d" k="41" />
+<hkern g1="Wdieresis" g2="e" k="41" />
+<hkern g1="Wdieresis" g2="g" k="20" />
+<hkern g1="Wdieresis" g2="m" k="20" />
+<hkern g1="Wdieresis" g2="n" k="20" />
+<hkern g1="Wdieresis" g2="o" k="41" />
+<hkern g1="Wdieresis" g2="p" k="20" />
+<hkern g1="Wdieresis" g2="q" k="41" />
+<hkern g1="Wdieresis" g2="r" k="20" />
+<hkern g1="Wdieresis" g2="s" k="20" />
+<hkern g1="Wdieresis" g2="u" k="20" />
+<hkern g1="Wdieresis" g2="Agrave" k="82" />
+<hkern g1="Wdieresis" g2="Aacute" k="82" />
+<hkern g1="Wdieresis" g2="Acircumflex" k="82" />
+<hkern g1="Wdieresis" g2="Atilde" k="82" />
+<hkern g1="Wdieresis" g2="Adieresis" k="82" />
+<hkern g1="Wdieresis" g2="Aring" k="82" />
+<hkern g1="Wdieresis" g2="Ccedilla" k="20" />
+<hkern g1="Wdieresis" g2="Ograve" k="20" />
+<hkern g1="Wdieresis" g2="Oacute" k="20" />
+<hkern g1="Wdieresis" g2="Ocircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Otilde" k="20" />
+<hkern g1="Wdieresis" g2="Odieresis" k="20" />
+<hkern g1="Wdieresis" g2="Oslash" k="20" />
+<hkern g1="Wdieresis" g2="agrave" k="41" />
+<hkern g1="Wdieresis" g2="aacute" k="41" />
+<hkern g1="Wdieresis" g2="acircumflex" k="41" />
+<hkern g1="Wdieresis" g2="atilde" k="41" />
+<hkern g1="Wdieresis" g2="adieresis" k="41" />
+<hkern g1="Wdieresis" g2="aring" k="41" />
+<hkern g1="Wdieresis" g2="ae" k="41" />
+<hkern g1="Wdieresis" g2="ccedilla" k="41" />
+<hkern g1="Wdieresis" g2="egrave" k="41" />
+<hkern g1="Wdieresis" g2="eacute" k="41" />
+<hkern g1="Wdieresis" g2="ecircumflex" k="41" />
+<hkern g1="Wdieresis" g2="edieresis" k="41" />
+<hkern g1="Wdieresis" g2="ograve" k="41" />
+<hkern g1="Wdieresis" g2="oacute" k="41" />
+<hkern g1="Wdieresis" g2="ocircumflex" k="41" />
+<hkern g1="Wdieresis" g2="otilde" k="41" />
+<hkern g1="Wdieresis" g2="odieresis" k="41" />
+<hkern g1="Wdieresis" g2="oslash" k="41" />
+<hkern g1="Wdieresis" g2="ugrave" k="20" />
+<hkern g1="Wdieresis" g2="uacute" k="20" />
+<hkern g1="Wdieresis" g2="ucircumflex" k="20" />
+<hkern g1="Wdieresis" g2="udieresis" k="20" />
+<hkern g1="Wdieresis" g2="Amacron" k="82" />
+<hkern g1="Wdieresis" g2="amacron" k="41" />
+<hkern g1="Wdieresis" g2="Abreve" k="82" />
+<hkern g1="Wdieresis" g2="abreve" k="41" />
+<hkern g1="Wdieresis" g2="Aogonek" k="82" />
+<hkern g1="Wdieresis" g2="aogonek" k="41" />
+<hkern g1="Wdieresis" g2="Cacute" k="20" />
+<hkern g1="Wdieresis" g2="cacute" k="41" />
+<hkern g1="Wdieresis" g2="Ccircumflex" k="20" />
+<hkern g1="Wdieresis" g2="ccircumflex" k="41" />
+<hkern g1="Wdieresis" g2="Cdot" k="20" />
+<hkern g1="Wdieresis" g2="cdot" k="41" />
+<hkern g1="Wdieresis" g2="Ccaron" k="20" />
+<hkern g1="Wdieresis" g2="ccaron" k="41" />
+<hkern g1="Wdieresis" g2="dcaron" k="41" />
+<hkern g1="Wdieresis" g2="dcroat" k="41" />
+<hkern g1="Wdieresis" g2="emacron" k="41" />
+<hkern g1="Wdieresis" g2="ebreve" k="41" />
+<hkern g1="Wdieresis" g2="edotaccent" k="41" />
+<hkern g1="Wdieresis" g2="eogonek" k="41" />
+<hkern g1="Wdieresis" g2="ecaron" k="41" />
+<hkern g1="Wdieresis" g2="Gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="gcircumflex" k="20" />
+<hkern g1="Wdieresis" g2="Gbreve" k="20" />
+<hkern g1="Wdieresis" g2="gbreve" k="20" />
+<hkern g1="Wdieresis" g2="Gdot" k="20" />
+<hkern g1="Wdieresis" g2="gdot" k="20" />
+<hkern g1="Wdieresis" g2="Gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="gcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="kgreenlandic" k="20" />
+<hkern g1="Wdieresis" g2="nacute" k="20" />
+<hkern g1="Wdieresis" g2="ncommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="eng" k="20" />
+<hkern g1="Wdieresis" g2="Omacron" k="20" />
+<hkern g1="Wdieresis" g2="omacron" k="41" />
+<hkern g1="Wdieresis" g2="Obreve" k="20" />
+<hkern g1="Wdieresis" g2="obreve" k="41" />
+<hkern g1="Wdieresis" g2="Ohungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="ohungarumlaut" k="41" />
+<hkern g1="Wdieresis" g2="OE" k="20" />
+<hkern g1="Wdieresis" g2="oe" k="41" />
+<hkern g1="Wdieresis" g2="racute" k="20" />
+<hkern g1="Wdieresis" g2="rcommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="sacute" k="20" />
+<hkern g1="Wdieresis" g2="scedilla" k="20" />
+<hkern g1="Wdieresis" g2="utilde" k="20" />
+<hkern g1="Wdieresis" g2="umacron" k="20" />
+<hkern g1="Wdieresis" g2="ubreve" k="20" />
+<hkern g1="Wdieresis" g2="uring" k="20" />
+<hkern g1="Wdieresis" g2="uhungarumlaut" k="20" />
+<hkern g1="Wdieresis" g2="uogonek" k="20" />
+<hkern g1="Wdieresis" g2="Aringacute" k="82" />
+<hkern g1="Wdieresis" g2="aringacute" k="41" />
+<hkern g1="Wdieresis" g2="aeacute" k="41" />
+<hkern g1="Wdieresis" g2="Oslashacute" k="20" />
+<hkern g1="Wdieresis" g2="oslashacute" k="41" />
+<hkern g1="Wdieresis" g2="scommaaccent" k="20" />
+<hkern g1="Wdieresis" g2="quotesinglbase" k="102" />
+<hkern g1="Wdieresis" g2="quotedblbase" k="102" />
+<hkern g1="Wdieresis" g2="uni1E3F" k="20" />
+<hkern g1="Wdieresis" g2="uni1E00" k="82" />
+<hkern g1="Wdieresis" g2="uni1E01" k="41" />
+<hkern g1="Wdieresis" g2="Ohorn" k="20" />
+<hkern g1="Wdieresis" g2="ohorn" k="41" />
+<hkern g1="Wdieresis" g2="uhorn" k="20" />
+<hkern g1="Wdieresis" g2="uni1EA0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EA6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA8" k="82" />
+<hkern g1="Wdieresis" g2="uni1EA9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAA" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAC" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EAE" k="82" />
+<hkern g1="Wdieresis" g2="uni1EAF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB0" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB2" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB4" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB6" k="82" />
+<hkern g1="Wdieresis" g2="uni1EB7" k="41" />
+<hkern g1="Wdieresis" g2="uni1EB9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EBF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC5" k="41" />
+<hkern g1="Wdieresis" g2="uni1EC7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECC" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECD" k="41" />
+<hkern g1="Wdieresis" g2="uni1ECE" k="20" />
+<hkern g1="Wdieresis" g2="uni1ECF" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED0" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED1" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED2" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED4" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED5" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED6" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED7" k="41" />
+<hkern g1="Wdieresis" g2="uni1ED8" k="20" />
+<hkern g1="Wdieresis" g2="uni1ED9" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDA" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDB" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDC" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDD" k="41" />
+<hkern g1="Wdieresis" g2="uni1EDE" k="20" />
+<hkern g1="Wdieresis" g2="uni1EDF" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE0" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE1" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE2" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE3" k="41" />
+<hkern g1="Wdieresis" g2="uni1EE5" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE7" k="20" />
+<hkern g1="Wdieresis" g2="uni1EE9" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEB" k="20" />
+<hkern g1="Wdieresis" g2="uni1EED" k="20" />
+<hkern g1="Wdieresis" g2="uni1EEF" k="20" />
+<hkern g1="Wdieresis" g2="uni1EF1" k="20" />
+<hkern g1="wdieresis" g2="quotedbl" k="-82" />
+<hkern g1="wdieresis" g2="quotesingle" k="-82" />
+<hkern g1="wdieresis" g2="comma" k="82" />
+<hkern g1="wdieresis" g2="period" k="82" />
+<hkern g1="wdieresis" g2="question" k="-41" />
+<hkern g1="wdieresis" g2="quoteright" k="-82" />
+<hkern g1="wdieresis" g2="quotesinglbase" k="82" />
+<hkern g1="wdieresis" g2="quotedblright" k="-82" />
+<hkern g1="wdieresis" g2="quotedblbase" k="82" />
+<hkern g1="Ygrave" g2="comma" k="123" />
+<hkern g1="Ygrave" g2="period" k="123" />
+<hkern g1="Ygrave" g2="question" k="-41" />
+<hkern g1="Ygrave" g2="A" k="123" />
+<hkern g1="Ygrave" g2="C" k="41" />
+<hkern g1="Ygrave" g2="G" k="41" />
+<hkern g1="Ygrave" g2="O" k="41" />
+<hkern g1="Ygrave" g2="Q" k="41" />
+<hkern g1="Ygrave" g2="a" k="102" />
+<hkern g1="Ygrave" g2="c" k="102" />
+<hkern g1="Ygrave" g2="d" k="102" />
+<hkern g1="Ygrave" g2="e" k="102" />
+<hkern g1="Ygrave" g2="g" k="41" />
+<hkern g1="Ygrave" g2="m" k="61" />
+<hkern g1="Ygrave" g2="n" k="61" />
+<hkern g1="Ygrave" g2="o" k="102" />
+<hkern g1="Ygrave" g2="p" k="61" />
+<hkern g1="Ygrave" g2="q" k="102" />
+<hkern g1="Ygrave" g2="r" k="61" />
+<hkern g1="Ygrave" g2="s" k="82" />
+<hkern g1="Ygrave" g2="u" k="61" />
+<hkern g1="Ygrave" g2="z" k="41" />
+<hkern g1="Ygrave" g2="Agrave" k="123" />
+<hkern g1="Ygrave" g2="Aacute" k="123" />
+<hkern g1="Ygrave" g2="Acircumflex" k="123" />
+<hkern g1="Ygrave" g2="Atilde" k="123" />
+<hkern g1="Ygrave" g2="Adieresis" k="123" />
+<hkern g1="Ygrave" g2="Aring" k="123" />
+<hkern g1="Ygrave" g2="Ccedilla" k="41" />
+<hkern g1="Ygrave" g2="Ograve" k="41" />
+<hkern g1="Ygrave" g2="Oacute" k="41" />
+<hkern g1="Ygrave" g2="Ocircumflex" k="41" />
+<hkern g1="Ygrave" g2="Otilde" k="41" />
+<hkern g1="Ygrave" g2="Odieresis" k="41" />
+<hkern g1="Ygrave" g2="Oslash" k="41" />
+<hkern g1="Ygrave" g2="agrave" k="102" />
+<hkern g1="Ygrave" g2="aacute" k="102" />
+<hkern g1="Ygrave" g2="acircumflex" k="102" />
+<hkern g1="Ygrave" g2="atilde" k="102" />
+<hkern g1="Ygrave" g2="adieresis" k="102" />
+<hkern g1="Ygrave" g2="aring" k="102" />
+<hkern g1="Ygrave" g2="ae" k="102" />
+<hkern g1="Ygrave" g2="ccedilla" k="102" />
+<hkern g1="Ygrave" g2="egrave" k="102" />
+<hkern g1="Ygrave" g2="eacute" k="102" />
+<hkern g1="Ygrave" g2="ecircumflex" k="102" />
+<hkern g1="Ygrave" g2="edieresis" k="102" />
+<hkern g1="Ygrave" g2="ograve" k="102" />
+<hkern g1="Ygrave" g2="oacute" k="102" />
+<hkern g1="Ygrave" g2="ocircumflex" k="102" />
+<hkern g1="Ygrave" g2="otilde" k="102" />
+<hkern g1="Ygrave" g2="odieresis" k="102" />
+<hkern g1="Ygrave" g2="oslash" k="102" />
+<hkern g1="Ygrave" g2="ugrave" k="61" />
+<hkern g1="Ygrave" g2="uacute" k="61" />
+<hkern g1="Ygrave" g2="ucircumflex" k="61" />
+<hkern g1="Ygrave" g2="udieresis" k="61" />
+<hkern g1="Ygrave" g2="Amacron" k="123" />
+<hkern g1="Ygrave" g2="amacron" k="102" />
+<hkern g1="Ygrave" g2="Abreve" k="123" />
+<hkern g1="Ygrave" g2="abreve" k="102" />
+<hkern g1="Ygrave" g2="Aogonek" k="123" />
+<hkern g1="Ygrave" g2="aogonek" k="102" />
+<hkern g1="Ygrave" g2="Cacute" k="41" />
+<hkern g1="Ygrave" g2="cacute" k="102" />
+<hkern g1="Ygrave" g2="Ccircumflex" k="41" />
+<hkern g1="Ygrave" g2="ccircumflex" k="102" />
+<hkern g1="Ygrave" g2="Cdot" k="41" />
+<hkern g1="Ygrave" g2="cdot" k="102" />
+<hkern g1="Ygrave" g2="Ccaron" k="41" />
+<hkern g1="Ygrave" g2="ccaron" k="102" />
+<hkern g1="Ygrave" g2="dcaron" k="102" />
+<hkern g1="Ygrave" g2="dcroat" k="102" />
+<hkern g1="Ygrave" g2="emacron" k="102" />
+<hkern g1="Ygrave" g2="ebreve" k="102" />
+<hkern g1="Ygrave" g2="edotaccent" k="102" />
+<hkern g1="Ygrave" g2="eogonek" k="102" />
+<hkern g1="Ygrave" g2="ecaron" k="102" />
+<hkern g1="Ygrave" g2="Gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="gcircumflex" k="41" />
+<hkern g1="Ygrave" g2="Gbreve" k="41" />
+<hkern g1="Ygrave" g2="gbreve" k="41" />
+<hkern g1="Ygrave" g2="Gdot" k="41" />
+<hkern g1="Ygrave" g2="gdot" k="41" />
+<hkern g1="Ygrave" g2="Gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="gcommaaccent" k="41" />
+<hkern g1="Ygrave" g2="kgreenlandic" k="61" />
+<hkern g1="Ygrave" g2="nacute" k="61" />
+<hkern g1="Ygrave" g2="ncommaaccent" k="61" />
+<hkern g1="Ygrave" g2="eng" k="61" />
+<hkern g1="Ygrave" g2="Omacron" k="41" />
+<hkern g1="Ygrave" g2="omacron" k="102" />
+<hkern g1="Ygrave" g2="Obreve" k="41" />
+<hkern g1="Ygrave" g2="obreve" k="102" />
+<hkern g1="Ygrave" g2="Ohungarumlaut" k="41" />
+<hkern g1="Ygrave" g2="ohungarumlaut" k="102" />
+<hkern g1="Ygrave" g2="OE" k="41" />
+<hkern g1="Ygrave" g2="oe" k="102" />
+<hkern g1="Ygrave" g2="racute" k="61" />
+<hkern g1="Ygrave" g2="rcommaaccent" k="61" />
+<hkern g1="Ygrave" g2="sacute" k="82" />
+<hkern g1="Ygrave" g2="scedilla" k="82" />
+<hkern g1="Ygrave" g2="utilde" k="61" />
+<hkern g1="Ygrave" g2="umacron" k="61" />
+<hkern g1="Ygrave" g2="ubreve" k="61" />
+<hkern g1="Ygrave" g2="uring" k="61" />
+<hkern g1="Ygrave" g2="uhungarumlaut" k="61" />
+<hkern g1="Ygrave" g2="uogonek" k="61" />
+<hkern g1="Ygrave" g2="zacute" k="41" />
+<hkern g1="Ygrave" g2="zdotaccent" k="41" />
+<hkern g1="Ygrave" g2="zcaron" k="41" />
+<hkern g1="Ygrave" g2="Aringacute" k="123" />
+<hkern g1="Ygrave" g2="aringacute" k="102" />
+<hkern g1="Ygrave" g2="aeacute" k="102" />
+<hkern g1="Ygrave" g2="Oslashacute" k="41" />
+<hkern g1="Ygrave" g2="oslashacute" k="102" />
+<hkern g1="Ygrave" g2="scommaaccent" k="82" />
+<hkern g1="Ygrave" g2="quotesinglbase" k="123" />
+<hkern g1="Ygrave" g2="quotedblbase" k="123" />
+<hkern g1="Ygrave" g2="uni1E3F" k="61" />
+<hkern g1="Ygrave" g2="uni1E00" k="123" />
+<hkern g1="Ygrave" g2="uni1E01" k="102" />
+<hkern g1="Ygrave" g2="Ohorn" k="41" />
+<hkern g1="Ygrave" g2="ohorn" k="102" />
+<hkern g1="Ygrave" g2="uhorn" k="61" />
+<hkern g1="Ygrave" g2="uni1EA0" k="123" />
+<hkern g1="Ygrave" g2="uni1EA1" k="102" />
+<hkern g1="Ygrave" g2="uni1EA2" k="123" />
+<hkern g1="Ygrave" g2="uni1EA3" k="102" />
+<hkern g1="Ygrave" g2="uni1EA4" k="123" />
+<hkern g1="Ygrave" g2="uni1EA5" k="102" />
+<hkern g1="Ygrave" g2="uni1EA6" k="123" />
+<hkern g1="Ygrave" g2="uni1EA8" k="123" />
+<hkern g1="Ygrave" g2="uni1EA9" k="102" />
+<hkern g1="Ygrave" g2="uni1EAA" k="123" />
+<hkern g1="Ygrave" g2="uni1EAB" k="102" />
+<hkern g1="Ygrave" g2="uni1EAC" k="123" />
+<hkern g1="Ygrave" g2="uni1EAD" k="102" />
+<hkern g1="Ygrave" g2="uni1EAE" k="123" />
+<hkern g1="Ygrave" g2="uni1EAF" k="102" />
+<hkern g1="Ygrave" g2="uni1EB0" k="123" />
+<hkern g1="Ygrave" g2="uni1EB1" k="102" />
+<hkern g1="Ygrave" g2="uni1EB2" k="123" />
+<hkern g1="Ygrave" g2="uni1EB3" k="102" />
+<hkern g1="Ygrave" g2="uni1EB4" k="123" />
+<hkern g1="Ygrave" g2="uni1EB5" k="102" />
+<hkern g1="Ygrave" g2="uni1EB6" k="123" />
+<hkern g1="Ygrave" g2="uni1EB7" k="102" />
+<hkern g1="Ygrave" g2="uni1EB9" k="102" />
+<hkern g1="Ygrave" g2="uni1EBB" k="102" />
+<hkern g1="Ygrave" g2="uni1EBD" k="102" />
+<hkern g1="Ygrave" g2="uni1EBF" k="102" />
+<hkern g1="Ygrave" g2="uni1EC3" k="102" />
+<hkern g1="Ygrave" g2="uni1EC5" k="102" />
+<hkern g1="Ygrave" g2="uni1EC7" k="102" />
+<hkern g1="Ygrave" g2="uni1ECC" k="41" />
+<hkern g1="Ygrave" g2="uni1ECD" k="102" />
+<hkern g1="Ygrave" g2="uni1ECE" k="41" />
+<hkern g1="Ygrave" g2="uni1ECF" k="102" />
+<hkern g1="Ygrave" g2="uni1ED0" k="41" />
+<hkern g1="Ygrave" g2="uni1ED1" k="102" />
+<hkern g1="Ygrave" g2="uni1ED2" k="41" />
+<hkern g1="Ygrave" g2="uni1ED4" k="41" />
+<hkern g1="Ygrave" g2="uni1ED5" k="102" />
+<hkern g1="Ygrave" g2="uni1ED6" k="41" />
+<hkern g1="Ygrave" g2="uni1ED7" k="102" />
+<hkern g1="Ygrave" g2="uni1ED8" k="41" />
+<hkern g1="Ygrave" g2="uni1ED9" k="102" />
+<hkern g1="Ygrave" g2="uni1EDA" k="41" />
+<hkern g1="Ygrave" g2="uni1EDB" k="102" />
+<hkern g1="Ygrave" g2="uni1EDC" k="41" />
+<hkern g1="Ygrave" g2="uni1EDD" k="102" />
+<hkern g1="Ygrave" g2="uni1EDE" k="41" />
+<hkern g1="Ygrave" g2="uni1EDF" k="102" />
+<hkern g1="Ygrave" g2="uni1EE0" k="41" />
+<hkern g1="Ygrave" g2="uni1EE1" k="102" />
+<hkern g1="Ygrave" g2="uni1EE2" k="41" />
+<hkern g1="Ygrave" g2="uni1EE3" k="102" />
+<hkern g1="Ygrave" g2="uni1EE5" k="61" />
+<hkern g1="Ygrave" g2="uni1EE7" k="61" />
+<hkern g1="Ygrave" g2="uni1EE9" k="61" />
+<hkern g1="Ygrave" g2="uni1EEB" k="61" />
+<hkern g1="Ygrave" g2="uni1EED" k="61" />
+<hkern g1="Ygrave" g2="uni1EEF" k="61" />
+<hkern g1="Ygrave" g2="uni1EF1" k="61" />
+<hkern g1="ygrave" g2="quotedbl" k="-82" />
+<hkern g1="ygrave" g2="quotesingle" k="-82" />
+<hkern g1="ygrave" g2="comma" k="82" />
+<hkern g1="ygrave" g2="period" k="82" />
+<hkern g1="ygrave" g2="question" k="-41" />
+<hkern g1="ygrave" g2="quoteright" k="-82" />
+<hkern g1="ygrave" g2="quotesinglbase" k="82" />
+<hkern g1="ygrave" g2="quotedblright" k="-82" />
+<hkern g1="ygrave" g2="quotedblbase" k="82" />
+<hkern g1="endash" g2="T" k="82" />
+<hkern g1="endash" g2="Tcommaaccent" k="82" />
+<hkern g1="endash" g2="Tcaron" k="82" />
+<hkern g1="endash" g2="Tau" k="82" />
+<hkern g1="endash" g2="afii10051" k="82" />
+<hkern g1="endash" g2="afii10060" k="82" />
+<hkern g1="endash" g2="afii10036" k="82" />
+<hkern g1="endash" g2="afii10044" k="82" />
+<hkern g1="endash" g2="afii10084" k="41" />
+<hkern g1="endash" g2="afii10092" k="41" />
+<hkern g1="endash" g2="uni04A0" k="82" />
+<hkern g1="endash" g2="uni04A1" k="41" />
+<hkern g1="endash" g2="uni04AC" k="82" />
+<hkern g1="endash" g2="uni04AD" k="41" />
+<hkern g1="endash" g2="uni04B4" k="82" />
+<hkern g1="endash" g2="uni04B5" k="41" />
+<hkern g1="endash" g2="uni050E" k="82" />
+<hkern g1="endash" g2="uni050F" k="41" />
+<hkern g1="endash" g2="Tcedilla" k="82" />
+<hkern g1="emdash" g2="T" k="82" />
+<hkern g1="emdash" g2="Tcommaaccent" k="82" />
+<hkern g1="emdash" g2="Tcaron" k="82" />
+<hkern g1="emdash" g2="Tau" k="82" />
+<hkern g1="emdash" g2="afii10051" k="82" />
+<hkern g1="emdash" g2="afii10060" k="82" />
+<hkern g1="emdash" g2="afii10036" k="82" />
+<hkern g1="emdash" g2="afii10044" k="82" />
+<hkern g1="emdash" g2="afii10084" k="41" />
+<hkern g1="emdash" g2="afii10092" k="41" />
+<hkern g1="emdash" g2="uni04A0" k="82" />
+<hkern g1="emdash" g2="uni04A1" k="41" />
+<hkern g1="emdash" g2="uni04AC" k="82" />
+<hkern g1="emdash" g2="uni04AD" k="41" />
+<hkern g1="emdash" g2="uni04B4" k="82" />
+<hkern g1="emdash" g2="uni04B5" k="41" />
+<hkern g1="emdash" g2="uni050E" k="82" />
+<hkern g1="emdash" g2="uni050F" k="41" />
+<hkern g1="emdash" g2="Tcedilla" k="82" />
+<hkern g1="afii00208" g2="T" k="82" />
+<hkern g1="afii00208" g2="Tcommaaccent" k="82" />
+<hkern g1="afii00208" g2="Tcaron" k="82" />
+<hkern g1="afii00208" g2="Tau" k="82" />
+<hkern g1="afii00208" g2="afii10051" k="82" />
+<hkern g1="afii00208" g2="afii10060" k="82" />
+<hkern g1="afii00208" g2="afii10036" k="82" />
+<hkern g1="afii00208" g2="afii10044" k="82" />
+<hkern g1="afii00208" g2="afii10084" k="41" />
+<hkern g1="afii00208" g2="afii10092" k="41" />
+<hkern g1="afii00208" g2="uni04A0" k="82" />
+<hkern g1="afii00208" g2="uni04A1" k="41" />
+<hkern g1="afii00208" g2="uni04AC" k="82" />
+<hkern g1="afii00208" g2="uni04AD" k="41" />
+<hkern g1="afii00208" g2="uni04B4" k="82" />
+<hkern g1="afii00208" g2="uni04B5" k="41" />
+<hkern g1="afii00208" g2="uni050E" k="82" />
+<hkern g1="afii00208" g2="uni050F" k="41" />
+<hkern g1="afii00208" g2="Tcedilla" k="82" />
+<hkern g1="quoteleft" g2="A" k="143" />
+<hkern g1="quoteleft" g2="T" k="-41" />
+<hkern g1="quoteleft" g2="V" k="-41" />
+<hkern g1="quoteleft" g2="W" k="-41" />
+<hkern g1="quoteleft" g2="Y" k="-20" />
+<hkern g1="quoteleft" g2="a" k="82" />
+<hkern g1="quoteleft" g2="c" k="123" />
+<hkern g1="quoteleft" g2="d" k="123" />
+<hkern g1="quoteleft" g2="e" k="123" />
+<hkern g1="quoteleft" g2="g" k="61" />
+<hkern g1="quoteleft" g2="m" k="61" />
+<hkern g1="quoteleft" g2="n" k="61" />
+<hkern g1="quoteleft" g2="o" k="123" />
+<hkern g1="quoteleft" g2="p" k="61" />
+<hkern g1="quoteleft" g2="q" k="123" />
+<hkern g1="quoteleft" g2="r" k="61" />
+<hkern g1="quoteleft" g2="s" k="61" />
+<hkern g1="quoteleft" g2="u" k="61" />
+<hkern g1="quoteleft" g2="Agrave" k="143" />
+<hkern g1="quoteleft" g2="Aacute" k="143" />
+<hkern g1="quoteleft" g2="Acircumflex" k="143" />
+<hkern g1="quoteleft" g2="Atilde" k="143" />
+<hkern g1="quoteleft" g2="Adieresis" k="143" />
+<hkern g1="quoteleft" g2="Aring" k="143" />
+<hkern g1="quoteleft" g2="Yacute" k="-20" />
+<hkern g1="quoteleft" g2="agrave" k="123" />
+<hkern g1="quoteleft" g2="aacute" k="82" />
+<hkern g1="quoteleft" g2="acircumflex" k="82" />
+<hkern g1="quoteleft" g2="atilde" k="82" />
+<hkern g1="quoteleft" g2="adieresis" k="82" />
+<hkern g1="quoteleft" g2="aring" k="82" />
+<hkern g1="quoteleft" g2="ae" k="82" />
+<hkern g1="quoteleft" g2="ccedilla" k="123" />
+<hkern g1="quoteleft" g2="egrave" k="123" />
+<hkern g1="quoteleft" g2="eacute" k="123" />
+<hkern g1="quoteleft" g2="ecircumflex" k="123" />
+<hkern g1="quoteleft" g2="edieresis" k="123" />
+<hkern g1="quoteleft" g2="ograve" k="123" />
+<hkern g1="quoteleft" g2="oacute" k="123" />
+<hkern g1="quoteleft" g2="ocircumflex" k="123" />
+<hkern g1="quoteleft" g2="otilde" k="123" />
+<hkern g1="quoteleft" g2="odieresis" k="123" />
+<hkern g1="quoteleft" g2="oslash" k="123" />
+<hkern g1="quoteleft" g2="ugrave" k="61" />
+<hkern g1="quoteleft" g2="uacute" k="61" />
+<hkern g1="quoteleft" g2="ucircumflex" k="61" />
+<hkern g1="quoteleft" g2="udieresis" k="61" />
+<hkern g1="quoteleft" g2="Amacron" k="143" />
+<hkern g1="quoteleft" g2="amacron" k="82" />
+<hkern g1="quoteleft" g2="Abreve" k="143" />
+<hkern g1="quoteleft" g2="abreve" k="82" />
+<hkern g1="quoteleft" g2="Aogonek" k="143" />
+<hkern g1="quoteleft" g2="aogonek" k="82" />
+<hkern g1="quoteleft" g2="cacute" k="123" />
+<hkern g1="quoteleft" g2="ccircumflex" k="123" />
+<hkern g1="quoteleft" g2="cdot" k="123" />
+<hkern g1="quoteleft" g2="ccaron" k="123" />
+<hkern g1="quoteleft" g2="dcaron" k="123" />
+<hkern g1="quoteleft" g2="dcroat" k="123" />
+<hkern g1="quoteleft" g2="emacron" k="123" />
+<hkern g1="quoteleft" g2="ebreve" k="123" />
+<hkern g1="quoteleft" g2="edotaccent" k="123" />
+<hkern g1="quoteleft" g2="eogonek" k="123" />
+<hkern g1="quoteleft" g2="ecaron" k="123" />
+<hkern g1="quoteleft" g2="gcircumflex" k="61" />
+<hkern g1="quoteleft" g2="gbreve" k="61" />
+<hkern g1="quoteleft" g2="gdot" k="61" />
+<hkern g1="quoteleft" g2="gcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="kgreenlandic" k="61" />
+<hkern g1="quoteleft" g2="nacute" k="61" />
+<hkern g1="quoteleft" g2="ncommaaccent" k="61" />
+<hkern g1="quoteleft" g2="eng" k="61" />
+<hkern g1="quoteleft" g2="omacron" k="123" />
+<hkern g1="quoteleft" g2="obreve" k="123" />
+<hkern g1="quoteleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteleft" g2="oe" k="123" />
+<hkern g1="quoteleft" g2="racute" k="61" />
+<hkern g1="quoteleft" g2="rcommaaccent" k="61" />
+<hkern g1="quoteleft" g2="sacute" k="61" />
+<hkern g1="quoteleft" g2="scedilla" k="61" />
+<hkern g1="quoteleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteleft" g2="Tcaron" k="-41" />
+<hkern g1="quoteleft" g2="utilde" k="61" />
+<hkern g1="quoteleft" g2="umacron" k="61" />
+<hkern g1="quoteleft" g2="ubreve" k="61" />
+<hkern g1="quoteleft" g2="uring" k="61" />
+<hkern g1="quoteleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteleft" g2="uogonek" k="61" />
+<hkern g1="quoteleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteleft" g2="Ydieresis" k="-20" />
+<hkern g1="quoteleft" g2="Aringacute" k="143" />
+<hkern g1="quoteleft" g2="aringacute" k="82" />
+<hkern g1="quoteleft" g2="aeacute" k="82" />
+<hkern g1="quoteleft" g2="oslashacute" k="123" />
+<hkern g1="quoteleft" g2="scommaaccent" k="61" />
+<hkern g1="quoteleft" g2="Alphatonos" k="143" />
+<hkern g1="quoteleft" g2="Alpha" k="143" />
+<hkern g1="quoteleft" g2="uni0394" k="143" />
+<hkern g1="quoteleft" g2="Lambda" k="143" />
+<hkern g1="quoteleft" g2="alphatonos" k="82" />
+<hkern g1="quoteleft" g2="epsilontonos" k="41" />
+<hkern g1="quoteleft" g2="etatonos" k="41" />
+<hkern g1="quoteleft" g2="alpha" k="82" />
+<hkern g1="quoteleft" g2="delta" k="61" />
+<hkern g1="quoteleft" g2="epsilon" k="41" />
+<hkern g1="quoteleft" g2="zeta" k="41" />
+<hkern g1="quoteleft" g2="eta" k="41" />
+<hkern g1="quoteleft" g2="kappa" k="41" />
+<hkern g1="quoteleft" g2="uni03BC" k="41" />
+<hkern g1="quoteleft" g2="omicron" k="82" />
+<hkern g1="quoteleft" g2="rho" k="61" />
+<hkern g1="quoteleft" g2="sigma1" k="82" />
+<hkern g1="quoteleft" g2="sigma" k="82" />
+<hkern g1="quoteleft" g2="phi" k="82" />
+<hkern g1="quoteleft" g2="omicrontonos" k="82" />
+<hkern g1="quoteleft" g2="afii10058" k="123" />
+<hkern g1="quoteleft" g2="afii10017" k="143" />
+<hkern g1="quoteleft" g2="afii10021" k="123" />
+<hkern g1="quoteleft" g2="afii10029" k="123" />
+<hkern g1="quoteleft" g2="afii10065" k="41" />
+<hkern g1="quoteleft" g2="afii10069" k="143" />
+<hkern g1="quoteleft" g2="afii10070" k="123" />
+<hkern g1="quoteleft" g2="afii10077" k="143" />
+<hkern g1="quoteleft" g2="afii10080" k="123" />
+<hkern g1="quoteleft" g2="afii10083" k="123" />
+<hkern g1="quoteleft" g2="afii10086" k="123" />
+<hkern g1="quoteleft" g2="afii10071" k="123" />
+<hkern g1="quoteleft" g2="afii10101" k="123" />
+<hkern g1="quoteleft" g2="afii10102" k="61" />
+<hkern g1="quoteleft" g2="afii10106" k="143" />
+<hkern g1="quoteleft" g2="Wgrave" k="-41" />
+<hkern g1="quoteleft" g2="Wacute" k="-41" />
+<hkern g1="quoteleft" g2="Wdieresis" k="-41" />
+<hkern g1="quoteleft" g2="Ygrave" k="-20" />
+<hkern g1="quoteleft" g2="uni1E3F" k="61" />
+<hkern g1="quoteleft" g2="uni1E00" k="143" />
+<hkern g1="quoteleft" g2="uni1E01" k="82" />
+<hkern g1="quoteleft" g2="ohorn" k="123" />
+<hkern g1="quoteleft" g2="uhorn" k="61" />
+<hkern g1="quoteleft" g2="uni0450" k="123" />
+<hkern g1="quoteleft" g2="uni0466" k="143" />
+<hkern g1="quoteleft" g2="uni0467" k="143" />
+<hkern g1="quoteleft" g2="uni0471" k="20" />
+<hkern g1="quoteleft" g2="uni0473" k="123" />
+<hkern g1="quoteleft" g2="uni0479" k="123" />
+<hkern g1="quoteleft" g2="uni047B" k="123" />
+<hkern g1="quoteleft" g2="uni047D" k="123" />
+<hkern g1="quoteleft" g2="uni0481" k="123" />
+<hkern g1="quoteleft" g2="uni04A9" k="123" />
+<hkern g1="quoteleft" g2="uni04AB" k="123" />
+<hkern g1="quoteleft" g2="uni04C5" k="123" />
+<hkern g1="quoteleft" g2="uni04C6" k="143" />
+<hkern g1="quoteleft" g2="uni04D0" k="143" />
+<hkern g1="quoteleft" g2="uni04D1" k="41" />
+<hkern g1="quoteleft" g2="uni04D2" k="143" />
+<hkern g1="quoteleft" g2="uni04D3" k="41" />
+<hkern g1="quoteleft" g2="uni04D4" k="143" />
+<hkern g1="quoteleft" g2="uni04D5" k="41" />
+<hkern g1="quoteleft" g2="uni04D7" k="123" />
+<hkern g1="quoteleft" g2="uni04D9" k="41" />
+<hkern g1="quoteleft" g2="uni04DB" k="41" />
+<hkern g1="quoteleft" g2="uni04E7" k="123" />
+<hkern g1="quoteleft" g2="uni04E9" k="123" />
+<hkern g1="quoteleft" g2="uni04EB" k="123" />
+<hkern g1="quoteleft" g2="uni0500" k="143" />
+<hkern g1="quoteleft" g2="uni0501" k="123" />
+<hkern g1="quoteleft" g2="uni0502" k="143" />
+<hkern g1="quoteleft" g2="uni0503" k="123" />
+<hkern g1="quoteleft" g2="uni0508" k="123" />
+<hkern g1="quoteleft" g2="uni0509" k="143" />
+<hkern g1="quoteleft" g2="uni050D" k="123" />
+<hkern g1="quoteleft" g2="uni0511" k="123" />
+<hkern g1="quoteleft" g2="uni0512" k="123" />
+<hkern g1="quoteleft" g2="uni0513" k="143" />
+<hkern g1="quoteleft" g2="uni1EA0" k="143" />
+<hkern g1="quoteleft" g2="uni1EA1" k="82" />
+<hkern g1="quoteleft" g2="uni1EA2" k="143" />
+<hkern g1="quoteleft" g2="uni1EA3" k="82" />
+<hkern g1="quoteleft" g2="uni1EA4" k="143" />
+<hkern g1="quoteleft" g2="uni1EA5" k="82" />
+<hkern g1="quoteleft" g2="uni1EA6" k="143" />
+<hkern g1="quoteleft" g2="uni1EA8" k="143" />
+<hkern g1="quoteleft" g2="uni1EA9" k="82" />
+<hkern g1="quoteleft" g2="uni1EAA" k="143" />
+<hkern g1="quoteleft" g2="uni1EAB" k="82" />
+<hkern g1="quoteleft" g2="uni1EAC" k="143" />
+<hkern g1="quoteleft" g2="uni1EAD" k="82" />
+<hkern g1="quoteleft" g2="uni1EAE" k="143" />
+<hkern g1="quoteleft" g2="uni1EAF" k="82" />
+<hkern g1="quoteleft" g2="uni1EB0" k="143" />
+<hkern g1="quoteleft" g2="uni1EB1" k="82" />
+<hkern g1="quoteleft" g2="uni1EB2" k="143" />
+<hkern g1="quoteleft" g2="uni1EB3" k="82" />
+<hkern g1="quoteleft" g2="uni1EB4" k="143" />
+<hkern g1="quoteleft" g2="uni1EB5" k="82" />
+<hkern g1="quoteleft" g2="uni1EB6" k="143" />
+<hkern g1="quoteleft" g2="uni1EB7" k="82" />
+<hkern g1="quoteleft" g2="uni1EB9" k="123" />
+<hkern g1="quoteleft" g2="uni1EBB" k="123" />
+<hkern g1="quoteleft" g2="uni1EBD" k="123" />
+<hkern g1="quoteleft" g2="uni1EBF" k="123" />
+<hkern g1="quoteleft" g2="uni1EC3" k="123" />
+<hkern g1="quoteleft" g2="uni1EC5" k="123" />
+<hkern g1="quoteleft" g2="uni1EC7" k="123" />
+<hkern g1="quoteleft" g2="uni1ECD" k="123" />
+<hkern g1="quoteleft" g2="uni1ECF" k="123" />
+<hkern g1="quoteleft" g2="uni1ED1" k="123" />
+<hkern g1="quoteleft" g2="uni1ED5" k="123" />
+<hkern g1="quoteleft" g2="uni1ED7" k="123" />
+<hkern g1="quoteleft" g2="uni1ED9" k="123" />
+<hkern g1="quoteleft" g2="uni1EDB" k="123" />
+<hkern g1="quoteleft" g2="uni1EDD" k="123" />
+<hkern g1="quoteleft" g2="uni1EDF" k="123" />
+<hkern g1="quoteleft" g2="uni1EE1" k="123" />
+<hkern g1="quoteleft" g2="uni1EE3" k="123" />
+<hkern g1="quoteleft" g2="uni1EE5" k="61" />
+<hkern g1="quoteleft" g2="uni1EE7" k="61" />
+<hkern g1="quoteleft" g2="uni1EE9" k="61" />
+<hkern g1="quoteleft" g2="uni1EEB" k="61" />
+<hkern g1="quoteleft" g2="uni1EED" k="61" />
+<hkern g1="quoteleft" g2="uni1EEF" k="61" />
+<hkern g1="quoteleft" g2="uni1EF1" k="61" />
+<hkern g1="quoteleft" g2="uni1EF4" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF6" k="-20" />
+<hkern g1="quoteleft" g2="uni1EF8" k="-20" />
+<hkern g1="quoteleft" g2="Tcedilla" k="-41" />
+<hkern g1="quoteright" g2="A" k="143" />
+<hkern g1="quoteright" g2="T" k="-41" />
+<hkern g1="quoteright" g2="V" k="-41" />
+<hkern g1="quoteright" g2="W" k="-41" />
+<hkern g1="quoteright" g2="Y" k="-20" />
+<hkern g1="quoteright" g2="a" k="82" />
+<hkern g1="quoteright" g2="c" k="123" />
+<hkern g1="quoteright" g2="d" k="123" />
+<hkern g1="quoteright" g2="e" k="123" />
+<hkern g1="quoteright" g2="g" k="61" />
+<hkern g1="quoteright" g2="m" k="61" />
+<hkern g1="quoteright" g2="n" k="61" />
+<hkern g1="quoteright" g2="o" k="123" />
+<hkern g1="quoteright" g2="p" k="61" />
+<hkern g1="quoteright" g2="q" k="123" />
+<hkern g1="quoteright" g2="r" k="61" />
+<hkern g1="quoteright" g2="s" k="61" />
+<hkern g1="quoteright" g2="u" k="61" />
+<hkern g1="quoteright" g2="Agrave" k="143" />
+<hkern g1="quoteright" g2="Aacute" k="143" />
+<hkern g1="quoteright" g2="Acircumflex" k="143" />
+<hkern g1="quoteright" g2="Atilde" k="143" />
+<hkern g1="quoteright" g2="Adieresis" k="143" />
+<hkern g1="quoteright" g2="Aring" k="143" />
+<hkern g1="quoteright" g2="Yacute" k="-20" />
+<hkern g1="quoteright" g2="agrave" k="123" />
+<hkern g1="quoteright" g2="aacute" k="82" />
+<hkern g1="quoteright" g2="acircumflex" k="82" />
+<hkern g1="quoteright" g2="atilde" k="82" />
+<hkern g1="quoteright" g2="adieresis" k="82" />
+<hkern g1="quoteright" g2="aring" k="82" />
+<hkern g1="quoteright" g2="ae" k="82" />
+<hkern g1="quoteright" g2="ccedilla" k="123" />
+<hkern g1="quoteright" g2="egrave" k="123" />
+<hkern g1="quoteright" g2="eacute" k="123" />
+<hkern g1="quoteright" g2="ecircumflex" k="123" />
+<hkern g1="quoteright" g2="edieresis" k="123" />
+<hkern g1="quoteright" g2="ograve" k="123" />
+<hkern g1="quoteright" g2="oacute" k="123" />
+<hkern g1="quoteright" g2="ocircumflex" k="123" />
+<hkern g1="quoteright" g2="otilde" k="123" />
+<hkern g1="quoteright" g2="odieresis" k="123" />
+<hkern g1="quoteright" g2="oslash" k="123" />
+<hkern g1="quoteright" g2="ugrave" k="61" />
+<hkern g1="quoteright" g2="uacute" k="61" />
+<hkern g1="quoteright" g2="ucircumflex" k="61" />
+<hkern g1="quoteright" g2="udieresis" k="61" />
+<hkern g1="quoteright" g2="Amacron" k="143" />
+<hkern g1="quoteright" g2="amacron" k="82" />
+<hkern g1="quoteright" g2="Abreve" k="143" />
+<hkern g1="quoteright" g2="abreve" k="82" />
+<hkern g1="quoteright" g2="Aogonek" k="143" />
+<hkern g1="quoteright" g2="aogonek" k="82" />
+<hkern g1="quoteright" g2="cacute" k="123" />
+<hkern g1="quoteright" g2="ccircumflex" k="123" />
+<hkern g1="quoteright" g2="cdot" k="123" />
+<hkern g1="quoteright" g2="ccaron" k="123" />
+<hkern g1="quoteright" g2="dcaron" k="123" />
+<hkern g1="quoteright" g2="dcroat" k="123" />
+<hkern g1="quoteright" g2="emacron" k="123" />
+<hkern g1="quoteright" g2="ebreve" k="123" />
+<hkern g1="quoteright" g2="edotaccent" k="123" />
+<hkern g1="quoteright" g2="eogonek" k="123" />
+<hkern g1="quoteright" g2="ecaron" k="123" />
+<hkern g1="quoteright" g2="gcircumflex" k="61" />
+<hkern g1="quoteright" g2="gbreve" k="61" />
+<hkern g1="quoteright" g2="gdot" k="61" />
+<hkern g1="quoteright" g2="gcommaaccent" k="61" />
+<hkern g1="quoteright" g2="kgreenlandic" k="61" />
+<hkern g1="quoteright" g2="nacute" k="61" />
+<hkern g1="quoteright" g2="ncommaaccent" k="61" />
+<hkern g1="quoteright" g2="eng" k="61" />
+<hkern g1="quoteright" g2="omacron" k="123" />
+<hkern g1="quoteright" g2="obreve" k="123" />
+<hkern g1="quoteright" g2="ohungarumlaut" k="123" />
+<hkern g1="quoteright" g2="oe" k="123" />
+<hkern g1="quoteright" g2="racute" k="61" />
+<hkern g1="quoteright" g2="rcommaaccent" k="61" />
+<hkern g1="quoteright" g2="sacute" k="61" />
+<hkern g1="quoteright" g2="scedilla" k="61" />
+<hkern g1="quoteright" g2="Tcommaaccent" k="-41" />
+<hkern g1="quoteright" g2="Tcaron" k="-41" />
+<hkern g1="quoteright" g2="utilde" k="61" />
+<hkern g1="quoteright" g2="umacron" k="61" />
+<hkern g1="quoteright" g2="ubreve" k="61" />
+<hkern g1="quoteright" g2="uring" k="61" />
+<hkern g1="quoteright" g2="uhungarumlaut" k="61" />
+<hkern g1="quoteright" g2="uogonek" k="61" />
+<hkern g1="quoteright" g2="Wcircumflex" k="-41" />
+<hkern g1="quoteright" g2="Ycircumflex" k="-20" />
+<hkern g1="quoteright" g2="Ydieresis" k="-20" />
+<hkern g1="quoteright" g2="Aringacute" k="143" />
+<hkern g1="quoteright" g2="aringacute" k="82" />
+<hkern g1="quoteright" g2="aeacute" k="82" />
+<hkern g1="quoteright" g2="oslashacute" k="123" />
+<hkern g1="quoteright" g2="scommaaccent" k="61" />
+<hkern g1="quoteright" g2="Alphatonos" k="143" />
+<hkern g1="quoteright" g2="Alpha" k="143" />
+<hkern g1="quoteright" g2="uni0394" k="143" />
+<hkern g1="quoteright" g2="Lambda" k="143" />
+<hkern g1="quoteright" g2="alphatonos" k="82" />
+<hkern g1="quoteright" g2="epsilontonos" k="41" />
+<hkern g1="quoteright" g2="etatonos" k="41" />
+<hkern g1="quoteright" g2="alpha" k="82" />
+<hkern g1="quoteright" g2="delta" k="61" />
+<hkern g1="quoteright" g2="epsilon" k="41" />
+<hkern g1="quoteright" g2="zeta" k="41" />
+<hkern g1="quoteright" g2="eta" k="41" />
+<hkern g1="quoteright" g2="kappa" k="41" />
+<hkern g1="quoteright" g2="uni03BC" k="41" />
+<hkern g1="quoteright" g2="omicron" k="82" />
+<hkern g1="quoteright" g2="rho" k="61" />
+<hkern g1="quoteright" g2="sigma1" k="82" />
+<hkern g1="quoteright" g2="sigma" k="82" />
+<hkern g1="quoteright" g2="phi" k="82" />
+<hkern g1="quoteright" g2="omicrontonos" k="82" />
+<hkern g1="quoteright" g2="afii10058" k="123" />
+<hkern g1="quoteright" g2="afii10017" k="143" />
+<hkern g1="quoteright" g2="afii10021" k="123" />
+<hkern g1="quoteright" g2="afii10029" k="123" />
+<hkern g1="quoteright" g2="afii10065" k="41" />
+<hkern g1="quoteright" g2="afii10069" k="143" />
+<hkern g1="quoteright" g2="afii10070" k="123" />
+<hkern g1="quoteright" g2="afii10077" k="143" />
+<hkern g1="quoteright" g2="afii10080" k="123" />
+<hkern g1="quoteright" g2="afii10083" k="123" />
+<hkern g1="quoteright" g2="afii10086" k="123" />
+<hkern g1="quoteright" g2="afii10071" k="123" />
+<hkern g1="quoteright" g2="afii10101" k="123" />
+<hkern g1="quoteright" g2="afii10102" k="61" />
+<hkern g1="quoteright" g2="afii10106" k="143" />
+<hkern g1="quoteright" g2="Wgrave" k="-41" />
+<hkern g1="quoteright" g2="Wacute" k="-41" />
+<hkern g1="quoteright" g2="Wdieresis" k="-41" />
+<hkern g1="quoteright" g2="Ygrave" k="-20" />
+<hkern g1="quoteright" g2="uni1E3F" k="61" />
+<hkern g1="quoteright" g2="uni1E00" k="143" />
+<hkern g1="quoteright" g2="uni1E01" k="82" />
+<hkern g1="quoteright" g2="ohorn" k="123" />
+<hkern g1="quoteright" g2="uhorn" k="61" />
+<hkern g1="quoteright" g2="uni0450" k="123" />
+<hkern g1="quoteright" g2="uni0466" k="143" />
+<hkern g1="quoteright" g2="uni0467" k="143" />
+<hkern g1="quoteright" g2="uni0471" k="20" />
+<hkern g1="quoteright" g2="uni0473" k="123" />
+<hkern g1="quoteright" g2="uni0479" k="123" />
+<hkern g1="quoteright" g2="uni047B" k="123" />
+<hkern g1="quoteright" g2="uni047D" k="123" />
+<hkern g1="quoteright" g2="uni0481" k="123" />
+<hkern g1="quoteright" g2="uni04A9" k="123" />
+<hkern g1="quoteright" g2="uni04AB" k="123" />
+<hkern g1="quoteright" g2="uni04C5" k="123" />
+<hkern g1="quoteright" g2="uni04C6" k="143" />
+<hkern g1="quoteright" g2="uni04D0" k="143" />
+<hkern g1="quoteright" g2="uni04D1" k="41" />
+<hkern g1="quoteright" g2="uni04D2" k="143" />
+<hkern g1="quoteright" g2="uni04D3" k="41" />
+<hkern g1="quoteright" g2="uni04D4" k="143" />
+<hkern g1="quoteright" g2="uni04D5" k="41" />
+<hkern g1="quoteright" g2="uni04D7" k="123" />
+<hkern g1="quoteright" g2="uni04D9" k="41" />
+<hkern g1="quoteright" g2="uni04DB" k="41" />
+<hkern g1="quoteright" g2="uni04E7" k="123" />
+<hkern g1="quoteright" g2="uni04E9" k="123" />
+<hkern g1="quoteright" g2="uni04EB" k="123" />
+<hkern g1="quoteright" g2="uni0500" k="143" />
+<hkern g1="quoteright" g2="uni0501" k="123" />
+<hkern g1="quoteright" g2="uni0502" k="143" />
+<hkern g1="quoteright" g2="uni0503" k="123" />
+<hkern g1="quoteright" g2="uni0508" k="123" />
+<hkern g1="quoteright" g2="uni0509" k="143" />
+<hkern g1="quoteright" g2="uni050D" k="123" />
+<hkern g1="quoteright" g2="uni0511" k="123" />
+<hkern g1="quoteright" g2="uni0512" k="123" />
+<hkern g1="quoteright" g2="uni0513" k="143" />
+<hkern g1="quoteright" g2="uni1EA0" k="143" />
+<hkern g1="quoteright" g2="uni1EA1" k="82" />
+<hkern g1="quoteright" g2="uni1EA2" k="143" />
+<hkern g1="quoteright" g2="uni1EA3" k="82" />
+<hkern g1="quoteright" g2="uni1EA4" k="143" />
+<hkern g1="quoteright" g2="uni1EA5" k="82" />
+<hkern g1="quoteright" g2="uni1EA6" k="143" />
+<hkern g1="quoteright" g2="uni1EA8" k="143" />
+<hkern g1="quoteright" g2="uni1EA9" k="82" />
+<hkern g1="quoteright" g2="uni1EAA" k="143" />
+<hkern g1="quoteright" g2="uni1EAB" k="82" />
+<hkern g1="quoteright" g2="uni1EAC" k="143" />
+<hkern g1="quoteright" g2="uni1EAD" k="82" />
+<hkern g1="quoteright" g2="uni1EAE" k="143" />
+<hkern g1="quoteright" g2="uni1EAF" k="82" />
+<hkern g1="quoteright" g2="uni1EB0" k="143" />
+<hkern g1="quoteright" g2="uni1EB1" k="82" />
+<hkern g1="quoteright" g2="uni1EB2" k="143" />
+<hkern g1="quoteright" g2="uni1EB3" k="82" />
+<hkern g1="quoteright" g2="uni1EB4" k="143" />
+<hkern g1="quoteright" g2="uni1EB5" k="82" />
+<hkern g1="quoteright" g2="uni1EB6" k="143" />
+<hkern g1="quoteright" g2="uni1EB7" k="82" />
+<hkern g1="quoteright" g2="uni1EB9" k="123" />
+<hkern g1="quoteright" g2="uni1EBB" k="123" />
+<hkern g1="quoteright" g2="uni1EBD" k="123" />
+<hkern g1="quoteright" g2="uni1EBF" k="123" />
+<hkern g1="quoteright" g2="uni1EC3" k="123" />
+<hkern g1="quoteright" g2="uni1EC5" k="123" />
+<hkern g1="quoteright" g2="uni1EC7" k="123" />
+<hkern g1="quoteright" g2="uni1ECD" k="123" />
+<hkern g1="quoteright" g2="uni1ECF" k="123" />
+<hkern g1="quoteright" g2="uni1ED1" k="123" />
+<hkern g1="quoteright" g2="uni1ED5" k="123" />
+<hkern g1="quoteright" g2="uni1ED7" k="123" />
+<hkern g1="quoteright" g2="uni1ED9" k="123" />
+<hkern g1="quoteright" g2="uni1EDB" k="123" />
+<hkern g1="quoteright" g2="uni1EDD" k="123" />
+<hkern g1="quoteright" g2="uni1EDF" k="123" />
+<hkern g1="quoteright" g2="uni1EE1" k="123" />
+<hkern g1="quoteright" g2="uni1EE3" k="123" />
+<hkern g1="quoteright" g2="uni1EE5" k="61" />
+<hkern g1="quoteright" g2="uni1EE7" k="61" />
+<hkern g1="quoteright" g2="uni1EE9" k="61" />
+<hkern g1="quoteright" g2="uni1EEB" k="61" />
+<hkern g1="quoteright" g2="uni1EED" k="61" />
+<hkern g1="quoteright" g2="uni1EEF" k="61" />
+<hkern g1="quoteright" g2="uni1EF1" k="61" />
+<hkern g1="quoteright" g2="uni1EF4" k="-20" />
+<hkern g1="quoteright" g2="uni1EF6" k="-20" />
+<hkern g1="quoteright" g2="uni1EF8" k="-20" />
+<hkern g1="quoteright" g2="Tcedilla" k="-41" />
+<hkern g1="quotesinglbase" g2="C" k="102" />
+<hkern g1="quotesinglbase" g2="G" k="102" />
+<hkern g1="quotesinglbase" g2="O" k="102" />
+<hkern g1="quotesinglbase" g2="Q" k="102" />
+<hkern g1="quotesinglbase" g2="T" k="143" />
+<hkern g1="quotesinglbase" g2="U" k="41" />
+<hkern g1="quotesinglbase" g2="V" k="123" />
+<hkern g1="quotesinglbase" g2="W" k="123" />
+<hkern g1="quotesinglbase" g2="Y" k="123" />
+<hkern g1="quotesinglbase" g2="Ccedilla" k="102" />
+<hkern g1="quotesinglbase" g2="Ograve" k="102" />
+<hkern g1="quotesinglbase" g2="Oacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Otilde" k="102" />
+<hkern g1="quotesinglbase" g2="Odieresis" k="102" />
+<hkern g1="quotesinglbase" g2="Oslash" k="102" />
+<hkern g1="quotesinglbase" g2="Ugrave" k="41" />
+<hkern g1="quotesinglbase" g2="Uacute" k="41" />
+<hkern g1="quotesinglbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotesinglbase" g2="Udieresis" k="41" />
+<hkern g1="quotesinglbase" g2="Yacute" k="123" />
+<hkern g1="quotesinglbase" g2="Cacute" k="102" />
+<hkern g1="quotesinglbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Cdot" k="102" />
+<hkern g1="quotesinglbase" g2="Ccaron" k="102" />
+<hkern g1="quotesinglbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotesinglbase" g2="Gbreve" k="102" />
+<hkern g1="quotesinglbase" g2="Gdot" k="102" />
+<hkern g1="quotesinglbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotesinglbase" g2="Omacron" k="102" />
+<hkern g1="quotesinglbase" g2="Obreve" k="102" />
+<hkern g1="quotesinglbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotesinglbase" g2="OE" k="102" />
+<hkern g1="quotesinglbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotesinglbase" g2="Tcaron" k="143" />
+<hkern g1="quotesinglbase" g2="Utilde" k="41" />
+<hkern g1="quotesinglbase" g2="Umacron" k="41" />
+<hkern g1="quotesinglbase" g2="Ubreve" k="41" />
+<hkern g1="quotesinglbase" g2="Uring" k="41" />
+<hkern g1="quotesinglbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotesinglbase" g2="Uogonek" k="41" />
+<hkern g1="quotesinglbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotesinglbase" g2="Ydieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Oslashacute" k="102" />
+<hkern g1="quotesinglbase" g2="Theta" k="82" />
+<hkern g1="quotesinglbase" g2="Omicron" k="82" />
+<hkern g1="quotesinglbase" g2="Tau" k="143" />
+<hkern g1="quotesinglbase" g2="Upsilon" k="123" />
+<hkern g1="quotesinglbase" g2="Phi" k="102" />
+<hkern g1="quotesinglbase" g2="Psi" k="123" />
+<hkern g1="quotesinglbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotesinglbase" g2="theta" k="41" />
+<hkern g1="quotesinglbase" g2="afii10051" k="143" />
+<hkern g1="quotesinglbase" g2="afii10053" k="102" />
+<hkern g1="quotesinglbase" g2="afii10060" k="143" />
+<hkern g1="quotesinglbase" g2="afii10032" k="102" />
+<hkern g1="quotesinglbase" g2="afii10035" k="102" />
+<hkern g1="quotesinglbase" g2="afii10036" k="143" />
+<hkern g1="quotesinglbase" g2="afii10038" k="82" />
+<hkern g1="quotesinglbase" g2="afii10041" k="164" />
+<hkern g1="quotesinglbase" g2="afii10044" k="143" />
+<hkern g1="quotesinglbase" g2="afii10084" k="102" />
+<hkern g1="quotesinglbase" g2="afii10089" k="123" />
+<hkern g1="quotesinglbase" g2="afii10092" k="102" />
+<hkern g1="quotesinglbase" g2="Wgrave" k="123" />
+<hkern g1="quotesinglbase" g2="Wacute" k="123" />
+<hkern g1="quotesinglbase" g2="Wdieresis" k="123" />
+<hkern g1="quotesinglbase" g2="Ygrave" k="123" />
+<hkern g1="quotesinglbase" g2="uni03D2" k="123" />
+<hkern g1="quotesinglbase" g2="Ohorn" k="102" />
+<hkern g1="quotesinglbase" g2="Uhorn" k="41" />
+<hkern g1="quotesinglbase" g2="uni0460" k="102" />
+<hkern g1="quotesinglbase" g2="uni0470" k="164" />
+<hkern g1="quotesinglbase" g2="uni0472" k="102" />
+<hkern g1="quotesinglbase" g2="uni0474" k="123" />
+<hkern g1="quotesinglbase" g2="uni0476" k="123" />
+<hkern g1="quotesinglbase" g2="uni0478" k="102" />
+<hkern g1="quotesinglbase" g2="uni047A" k="102" />
+<hkern g1="quotesinglbase" g2="uni047C" k="102" />
+<hkern g1="quotesinglbase" g2="uni047E" k="102" />
+<hkern g1="quotesinglbase" g2="uni0480" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A0" k="143" />
+<hkern g1="quotesinglbase" g2="uni04A1" k="102" />
+<hkern g1="quotesinglbase" g2="uni04A8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AC" k="143" />
+<hkern g1="quotesinglbase" g2="uni04AD" k="102" />
+<hkern g1="quotesinglbase" g2="uni04AE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B0" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B4" k="143" />
+<hkern g1="quotesinglbase" g2="uni04B5" k="102" />
+<hkern g1="quotesinglbase" g2="uni04B6" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B7" k="123" />
+<hkern g1="quotesinglbase" g2="uni04B8" k="164" />
+<hkern g1="quotesinglbase" g2="uni04B9" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04BE" k="123" />
+<hkern g1="quotesinglbase" g2="uni04CB" k="164" />
+<hkern g1="quotesinglbase" g2="uni04CC" k="123" />
+<hkern g1="quotesinglbase" g2="uni04E6" k="102" />
+<hkern g1="quotesinglbase" g2="uni04E8" k="102" />
+<hkern g1="quotesinglbase" g2="uni04EA" k="102" />
+<hkern g1="quotesinglbase" g2="uni04F4" k="164" />
+<hkern g1="quotesinglbase" g2="uni04F5" k="123" />
+<hkern g1="quotesinglbase" g2="uni0504" k="123" />
+<hkern g1="quotesinglbase" g2="uni0505" k="102" />
+<hkern g1="quotesinglbase" g2="uni0506" k="123" />
+<hkern g1="quotesinglbase" g2="uni0507" k="102" />
+<hkern g1="quotesinglbase" g2="uni050C" k="102" />
+<hkern g1="quotesinglbase" g2="uni050E" k="143" />
+<hkern g1="quotesinglbase" g2="uni050F" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ECE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED4" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED6" k="102" />
+<hkern g1="quotesinglbase" g2="uni1ED8" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDA" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDC" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EDE" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE0" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE2" k="102" />
+<hkern g1="quotesinglbase" g2="uni1EE4" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE6" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EE8" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEA" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEC" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EEE" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF0" k="41" />
+<hkern g1="quotesinglbase" g2="uni1EF4" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF6" k="123" />
+<hkern g1="quotesinglbase" g2="uni1EF8" k="123" />
+<hkern g1="quotesinglbase" g2="Tcedilla" k="143" />
+<hkern g1="quotedblleft" g2="A" k="143" />
+<hkern g1="quotedblleft" g2="T" k="-41" />
+<hkern g1="quotedblleft" g2="V" k="-41" />
+<hkern g1="quotedblleft" g2="W" k="-41" />
+<hkern g1="quotedblleft" g2="Y" k="-20" />
+<hkern g1="quotedblleft" g2="a" k="82" />
+<hkern g1="quotedblleft" g2="c" k="123" />
+<hkern g1="quotedblleft" g2="d" k="123" />
+<hkern g1="quotedblleft" g2="e" k="123" />
+<hkern g1="quotedblleft" g2="g" k="61" />
+<hkern g1="quotedblleft" g2="m" k="61" />
+<hkern g1="quotedblleft" g2="n" k="61" />
+<hkern g1="quotedblleft" g2="o" k="123" />
+<hkern g1="quotedblleft" g2="p" k="61" />
+<hkern g1="quotedblleft" g2="q" k="123" />
+<hkern g1="quotedblleft" g2="r" k="61" />
+<hkern g1="quotedblleft" g2="s" k="61" />
+<hkern g1="quotedblleft" g2="u" k="61" />
+<hkern g1="quotedblleft" g2="Agrave" k="143" />
+<hkern g1="quotedblleft" g2="Aacute" k="143" />
+<hkern g1="quotedblleft" g2="Acircumflex" k="143" />
+<hkern g1="quotedblleft" g2="Atilde" k="143" />
+<hkern g1="quotedblleft" g2="Adieresis" k="143" />
+<hkern g1="quotedblleft" g2="Aring" k="143" />
+<hkern g1="quotedblleft" g2="Yacute" k="-20" />
+<hkern g1="quotedblleft" g2="agrave" k="123" />
+<hkern g1="quotedblleft" g2="aacute" k="82" />
+<hkern g1="quotedblleft" g2="acircumflex" k="82" />
+<hkern g1="quotedblleft" g2="atilde" k="82" />
+<hkern g1="quotedblleft" g2="adieresis" k="82" />
+<hkern g1="quotedblleft" g2="aring" k="82" />
+<hkern g1="quotedblleft" g2="ae" k="82" />
+<hkern g1="quotedblleft" g2="ccedilla" k="123" />
+<hkern g1="quotedblleft" g2="egrave" k="123" />
+<hkern g1="quotedblleft" g2="eacute" k="123" />
+<hkern g1="quotedblleft" g2="ecircumflex" k="123" />
+<hkern g1="quotedblleft" g2="edieresis" k="123" />
+<hkern g1="quotedblleft" g2="ograve" k="123" />
+<hkern g1="quotedblleft" g2="oacute" k="123" />
+<hkern g1="quotedblleft" g2="ocircumflex" k="123" />
+<hkern g1="quotedblleft" g2="otilde" k="123" />
+<hkern g1="quotedblleft" g2="odieresis" k="123" />
+<hkern g1="quotedblleft" g2="oslash" k="123" />
+<hkern g1="quotedblleft" g2="ugrave" k="61" />
+<hkern g1="quotedblleft" g2="uacute" k="61" />
+<hkern g1="quotedblleft" g2="ucircumflex" k="61" />
+<hkern g1="quotedblleft" g2="udieresis" k="61" />
+<hkern g1="quotedblleft" g2="Amacron" k="143" />
+<hkern g1="quotedblleft" g2="amacron" k="82" />
+<hkern g1="quotedblleft" g2="Abreve" k="143" />
+<hkern g1="quotedblleft" g2="abreve" k="82" />
+<hkern g1="quotedblleft" g2="Aogonek" k="143" />
+<hkern g1="quotedblleft" g2="aogonek" k="82" />
+<hkern g1="quotedblleft" g2="cacute" k="123" />
+<hkern g1="quotedblleft" g2="ccircumflex" k="123" />
+<hkern g1="quotedblleft" g2="cdot" k="123" />
+<hkern g1="quotedblleft" g2="ccaron" k="123" />
+<hkern g1="quotedblleft" g2="dcaron" k="123" />
+<hkern g1="quotedblleft" g2="dcroat" k="123" />
+<hkern g1="quotedblleft" g2="emacron" k="123" />
+<hkern g1="quotedblleft" g2="ebreve" k="123" />
+<hkern g1="quotedblleft" g2="edotaccent" k="123" />
+<hkern g1="quotedblleft" g2="eogonek" k="123" />
+<hkern g1="quotedblleft" g2="ecaron" k="123" />
+<hkern g1="quotedblleft" g2="gcircumflex" k="61" />
+<hkern g1="quotedblleft" g2="gbreve" k="61" />
+<hkern g1="quotedblleft" g2="gdot" k="61" />
+<hkern g1="quotedblleft" g2="gcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="kgreenlandic" k="61" />
+<hkern g1="quotedblleft" g2="nacute" k="61" />
+<hkern g1="quotedblleft" g2="ncommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="eng" k="61" />
+<hkern g1="quotedblleft" g2="omacron" k="123" />
+<hkern g1="quotedblleft" g2="obreve" k="123" />
+<hkern g1="quotedblleft" g2="ohungarumlaut" k="123" />
+<hkern g1="quotedblleft" g2="oe" k="123" />
+<hkern g1="quotedblleft" g2="racute" k="61" />
+<hkern g1="quotedblleft" g2="rcommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="sacute" k="61" />
+<hkern g1="quotedblleft" g2="scedilla" k="61" />
+<hkern g1="quotedblleft" g2="Tcommaaccent" k="-41" />
+<hkern g1="quotedblleft" g2="Tcaron" k="-41" />
+<hkern g1="quotedblleft" g2="utilde" k="61" />
+<hkern g1="quotedblleft" g2="umacron" k="61" />
+<hkern g1="quotedblleft" g2="ubreve" k="61" />
+<hkern g1="quotedblleft" g2="uring" k="61" />
+<hkern g1="quotedblleft" g2="uhungarumlaut" k="61" />
+<hkern g1="quotedblleft" g2="uogonek" k="61" />
+<hkern g1="quotedblleft" g2="Wcircumflex" k="-41" />
+<hkern g1="quotedblleft" g2="Ycircumflex" k="-20" />
+<hkern g1="quotedblleft" g2="Ydieresis" k="-20" />
+<hkern g1="quotedblleft" g2="Aringacute" k="143" />
+<hkern g1="quotedblleft" g2="aringacute" k="82" />
+<hkern g1="quotedblleft" g2="aeacute" k="82" />
+<hkern g1="quotedblleft" g2="oslashacute" k="123" />
+<hkern g1="quotedblleft" g2="scommaaccent" k="61" />
+<hkern g1="quotedblleft" g2="Alphatonos" k="143" />
+<hkern g1="quotedblleft" g2="Alpha" k="143" />
+<hkern g1="quotedblleft" g2="uni0394" k="143" />
+<hkern g1="quotedblleft" g2="Lambda" k="143" />
+<hkern g1="quotedblleft" g2="alphatonos" k="82" />
+<hkern g1="quotedblleft" g2="epsilontonos" k="41" />
+<hkern g1="quotedblleft" g2="etatonos" k="41" />
+<hkern g1="quotedblleft" g2="alpha" k="82" />
+<hkern g1="quotedblleft" g2="delta" k="61" />
+<hkern g1="quotedblleft" g2="epsilon" k="41" />
+<hkern g1="quotedblleft" g2="zeta" k="41" />
+<hkern g1="quotedblleft" g2="eta" k="41" />
+<hkern g1="quotedblleft" g2="kappa" k="41" />
+<hkern g1="quotedblleft" g2="uni03BC" k="41" />
+<hkern g1="quotedblleft" g2="omicron" k="82" />
+<hkern g1="quotedblleft" g2="rho" k="61" />
+<hkern g1="quotedblleft" g2="sigma1" k="82" />
+<hkern g1="quotedblleft" g2="sigma" k="82" />
+<hkern g1="quotedblleft" g2="phi" k="82" />
+<hkern g1="quotedblleft" g2="omicrontonos" k="82" />
+<hkern g1="quotedblleft" g2="afii10058" k="123" />
+<hkern g1="quotedblleft" g2="afii10017" k="143" />
+<hkern g1="quotedblleft" g2="afii10021" k="123" />
+<hkern g1="quotedblleft" g2="afii10029" k="123" />
+<hkern g1="quotedblleft" g2="afii10065" k="41" />
+<hkern g1="quotedblleft" g2="afii10069" k="143" />
+<hkern g1="quotedblleft" g2="afii10070" k="123" />
+<hkern g1="quotedblleft" g2="afii10077" k="143" />
+<hkern g1="quotedblleft" g2="afii10080" k="123" />
+<hkern g1="quotedblleft" g2="afii10083" k="123" />
+<hkern g1="quotedblleft" g2="afii10086" k="123" />
+<hkern g1="quotedblleft" g2="afii10071" k="123" />
+<hkern g1="quotedblleft" g2="afii10101" k="123" />
+<hkern g1="quotedblleft" g2="afii10102" k="61" />
+<hkern g1="quotedblleft" g2="afii10106" k="143" />
+<hkern g1="quotedblleft" g2="Wgrave" k="-41" />
+<hkern g1="quotedblleft" g2="Wacute" k="-41" />
+<hkern g1="quotedblleft" g2="Wdieresis" k="-41" />
+<hkern g1="quotedblleft" g2="Ygrave" k="-20" />
+<hkern g1="quotedblleft" g2="uni1E3F" k="61" />
+<hkern g1="quotedblleft" g2="uni1E00" k="143" />
+<hkern g1="quotedblleft" g2="uni1E01" k="82" />
+<hkern g1="quotedblleft" g2="ohorn" k="123" />
+<hkern g1="quotedblleft" g2="uhorn" k="61" />
+<hkern g1="quotedblleft" g2="uni0450" k="123" />
+<hkern g1="quotedblleft" g2="uni0466" k="143" />
+<hkern g1="quotedblleft" g2="uni0467" k="143" />
+<hkern g1="quotedblleft" g2="uni0471" k="20" />
+<hkern g1="quotedblleft" g2="uni0473" k="123" />
+<hkern g1="quotedblleft" g2="uni0479" k="123" />
+<hkern g1="quotedblleft" g2="uni047B" k="123" />
+<hkern g1="quotedblleft" g2="uni047D" k="123" />
+<hkern g1="quotedblleft" g2="uni0481" k="123" />
+<hkern g1="quotedblleft" g2="uni04A9" k="123" />
+<hkern g1="quotedblleft" g2="uni04AB" k="123" />
+<hkern g1="quotedblleft" g2="uni04C5" k="123" />
+<hkern g1="quotedblleft" g2="uni04C6" k="143" />
+<hkern g1="quotedblleft" g2="uni04D0" k="143" />
+<hkern g1="quotedblleft" g2="uni04D1" k="41" />
+<hkern g1="quotedblleft" g2="uni04D2" k="143" />
+<hkern g1="quotedblleft" g2="uni04D3" k="41" />
+<hkern g1="quotedblleft" g2="uni04D4" k="143" />
+<hkern g1="quotedblleft" g2="uni04D5" k="41" />
+<hkern g1="quotedblleft" g2="uni04D7" k="123" />
+<hkern g1="quotedblleft" g2="uni04D9" k="41" />
+<hkern g1="quotedblleft" g2="uni04DB" k="41" />
+<hkern g1="quotedblleft" g2="uni04E7" k="123" />
+<hkern g1="quotedblleft" g2="uni04E9" k="123" />
+<hkern g1="quotedblleft" g2="uni04EB" k="123" />
+<hkern g1="quotedblleft" g2="uni0500" k="143" />
+<hkern g1="quotedblleft" g2="uni0501" k="123" />
+<hkern g1="quotedblleft" g2="uni0502" k="143" />
+<hkern g1="quotedblleft" g2="uni0503" k="123" />
+<hkern g1="quotedblleft" g2="uni0508" k="123" />
+<hkern g1="quotedblleft" g2="uni0509" k="143" />
+<hkern g1="quotedblleft" g2="uni050D" k="123" />
+<hkern g1="quotedblleft" g2="uni0511" k="123" />
+<hkern g1="quotedblleft" g2="uni0512" k="123" />
+<hkern g1="quotedblleft" g2="uni0513" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EA6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA8" k="143" />
+<hkern g1="quotedblleft" g2="uni1EA9" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAA" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAB" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAC" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAD" k="82" />
+<hkern g1="quotedblleft" g2="uni1EAE" k="143" />
+<hkern g1="quotedblleft" g2="uni1EAF" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB0" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB1" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB2" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB3" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB4" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB5" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB6" k="143" />
+<hkern g1="quotedblleft" g2="uni1EB7" k="82" />
+<hkern g1="quotedblleft" g2="uni1EB9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EBF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC5" k="123" />
+<hkern g1="quotedblleft" g2="uni1EC7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECD" k="123" />
+<hkern g1="quotedblleft" g2="uni1ECF" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED1" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED5" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED7" k="123" />
+<hkern g1="quotedblleft" g2="uni1ED9" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDB" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDD" k="123" />
+<hkern g1="quotedblleft" g2="uni1EDF" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE1" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE3" k="123" />
+<hkern g1="quotedblleft" g2="uni1EE5" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE7" k="61" />
+<hkern g1="quotedblleft" g2="uni1EE9" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEB" k="61" />
+<hkern g1="quotedblleft" g2="uni1EED" k="61" />
+<hkern g1="quotedblleft" g2="uni1EEF" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF1" k="61" />
+<hkern g1="quotedblleft" g2="uni1EF4" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF6" k="-20" />
+<hkern g1="quotedblleft" g2="uni1EF8" k="-20" />
+<hkern g1="quotedblleft" g2="Tcedilla" k="-41" />
+<hkern g1="quotedblbase" g2="C" k="102" />
+<hkern g1="quotedblbase" g2="G" k="102" />
+<hkern g1="quotedblbase" g2="O" k="102" />
+<hkern g1="quotedblbase" g2="Q" k="102" />
+<hkern g1="quotedblbase" g2="T" k="143" />
+<hkern g1="quotedblbase" g2="U" k="41" />
+<hkern g1="quotedblbase" g2="V" k="123" />
+<hkern g1="quotedblbase" g2="W" k="123" />
+<hkern g1="quotedblbase" g2="Y" k="123" />
+<hkern g1="quotedblbase" g2="Ccedilla" k="102" />
+<hkern g1="quotedblbase" g2="Ograve" k="102" />
+<hkern g1="quotedblbase" g2="Oacute" k="102" />
+<hkern g1="quotedblbase" g2="Ocircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Otilde" k="102" />
+<hkern g1="quotedblbase" g2="Odieresis" k="102" />
+<hkern g1="quotedblbase" g2="Oslash" k="102" />
+<hkern g1="quotedblbase" g2="Ugrave" k="41" />
+<hkern g1="quotedblbase" g2="Uacute" k="41" />
+<hkern g1="quotedblbase" g2="Ucircumflex" k="41" />
+<hkern g1="quotedblbase" g2="Udieresis" k="41" />
+<hkern g1="quotedblbase" g2="Yacute" k="123" />
+<hkern g1="quotedblbase" g2="Cacute" k="102" />
+<hkern g1="quotedblbase" g2="Ccircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Cdot" k="102" />
+<hkern g1="quotedblbase" g2="Ccaron" k="102" />
+<hkern g1="quotedblbase" g2="Gcircumflex" k="102" />
+<hkern g1="quotedblbase" g2="Gbreve" k="102" />
+<hkern g1="quotedblbase" g2="Gdot" k="102" />
+<hkern g1="quotedblbase" g2="Gcommaaccent" k="102" />
+<hkern g1="quotedblbase" g2="Omacron" k="102" />
+<hkern g1="quotedblbase" g2="Obreve" k="102" />
+<hkern g1="quotedblbase" g2="Ohungarumlaut" k="102" />
+<hkern g1="quotedblbase" g2="OE" k="102" />
+<hkern g1="quotedblbase" g2="Tcommaaccent" k="143" />
+<hkern g1="quotedblbase" g2="Tcaron" k="143" />
+<hkern g1="quotedblbase" g2="Utilde" k="41" />
+<hkern g1="quotedblbase" g2="Umacron" k="41" />
+<hkern g1="quotedblbase" g2="Ubreve" k="41" />
+<hkern g1="quotedblbase" g2="Uring" k="41" />
+<hkern g1="quotedblbase" g2="Uhungarumlaut" k="41" />
+<hkern g1="quotedblbase" g2="Uogonek" k="41" />
+<hkern g1="quotedblbase" g2="Wcircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ycircumflex" k="123" />
+<hkern g1="quotedblbase" g2="Ydieresis" k="123" />
+<hkern g1="quotedblbase" g2="Oslashacute" k="102" />
+<hkern g1="quotedblbase" g2="Theta" k="82" />
+<hkern g1="quotedblbase" g2="Omicron" k="82" />
+<hkern g1="quotedblbase" g2="Tau" k="143" />
+<hkern g1="quotedblbase" g2="Upsilon" k="123" />
+<hkern g1="quotedblbase" g2="Phi" k="102" />
+<hkern g1="quotedblbase" g2="Psi" k="123" />
+<hkern g1="quotedblbase" g2="Upsilondieresis" k="123" />
+<hkern g1="quotedblbase" g2="theta" k="41" />
+<hkern g1="quotedblbase" g2="afii10051" k="143" />
+<hkern g1="quotedblbase" g2="afii10053" k="102" />
+<hkern g1="quotedblbase" g2="afii10060" k="143" />
+<hkern g1="quotedblbase" g2="afii10032" k="102" />
+<hkern g1="quotedblbase" g2="afii10035" k="102" />
+<hkern g1="quotedblbase" g2="afii10036" k="143" />
+<hkern g1="quotedblbase" g2="afii10038" k="82" />
+<hkern g1="quotedblbase" g2="afii10041" k="164" />
+<hkern g1="quotedblbase" g2="afii10044" k="143" />
+<hkern g1="quotedblbase" g2="afii10084" k="102" />
+<hkern g1="quotedblbase" g2="afii10089" k="123" />
+<hkern g1="quotedblbase" g2="afii10092" k="102" />
+<hkern g1="quotedblbase" g2="Wgrave" k="123" />
+<hkern g1="quotedblbase" g2="Wacute" k="123" />
+<hkern g1="quotedblbase" g2="Wdieresis" k="123" />
+<hkern g1="quotedblbase" g2="Ygrave" k="123" />
+<hkern g1="quotedblbase" g2="uni03D2" k="123" />
+<hkern g1="quotedblbase" g2="Ohorn" k="102" />
+<hkern g1="quotedblbase" g2="Uhorn" k="41" />
+<hkern g1="quotedblbase" g2="uni0460" k="102" />
+<hkern g1="quotedblbase" g2="uni0470" k="164" />
+<hkern g1="quotedblbase" g2="uni0472" k="102" />
+<hkern g1="quotedblbase" g2="uni0474" k="123" />
+<hkern g1="quotedblbase" g2="uni0476" k="123" />
+<hkern g1="quotedblbase" g2="uni0478" k="102" />
+<hkern g1="quotedblbase" g2="uni047A" k="102" />
+<hkern g1="quotedblbase" g2="uni047C" k="102" />
+<hkern g1="quotedblbase" g2="uni047E" k="102" />
+<hkern g1="quotedblbase" g2="uni0480" k="102" />
+<hkern g1="quotedblbase" g2="uni04A0" k="143" />
+<hkern g1="quotedblbase" g2="uni04A1" k="102" />
+<hkern g1="quotedblbase" g2="uni04A8" k="102" />
+<hkern g1="quotedblbase" g2="uni04AA" k="102" />
+<hkern g1="quotedblbase" g2="uni04AC" k="143" />
+<hkern g1="quotedblbase" g2="uni04AD" k="102" />
+<hkern g1="quotedblbase" g2="uni04AE" k="123" />
+<hkern g1="quotedblbase" g2="uni04B0" k="123" />
+<hkern g1="quotedblbase" g2="uni04B4" k="143" />
+<hkern g1="quotedblbase" g2="uni04B5" k="102" />
+<hkern g1="quotedblbase" g2="uni04B6" k="164" />
+<hkern g1="quotedblbase" g2="uni04B7" k="123" />
+<hkern g1="quotedblbase" g2="uni04B8" k="164" />
+<hkern g1="quotedblbase" g2="uni04B9" k="123" />
+<hkern g1="quotedblbase" g2="uni04BC" k="123" />
+<hkern g1="quotedblbase" g2="uni04BE" k="123" />
+<hkern g1="quotedblbase" g2="uni04CB" k="164" />
+<hkern g1="quotedblbase" g2="uni04CC" k="123" />
+<hkern g1="quotedblbase" g2="uni04E6" k="102" />
+<hkern g1="quotedblbase" g2="uni04E8" k="102" />
+<hkern g1="quotedblbase" g2="uni04EA" k="102" />
+<hkern g1="quotedblbase" g2="uni04F4" k="164" />
+<hkern g1="quotedblbase" g2="uni04F5" k="123" />
+<hkern g1="quotedblbase" g2="uni0504" k="123" />
+<hkern g1="quotedblbase" g2="uni0505" k="102" />
+<hkern g1="quotedblbase" g2="uni0506" k="123" />
+<hkern g1="quotedblbase" g2="uni0507" k="102" />
+<hkern g1="quotedblbase" g2="uni050C" k="102" />
+<hkern g1="quotedblbase" g2="uni050E" k="143" />
+<hkern g1="quotedblbase" g2="uni050F" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECC" k="102" />
+<hkern g1="quotedblbase" g2="uni1ECE" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED0" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED2" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED4" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED6" k="102" />
+<hkern g1="quotedblbase" g2="uni1ED8" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDA" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDC" k="102" />
+<hkern g1="quotedblbase" g2="uni1EDE" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE0" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE2" k="102" />
+<hkern g1="quotedblbase" g2="uni1EE4" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE6" k="41" />
+<hkern g1="quotedblbase" g2="uni1EE8" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEA" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEC" k="41" />
+<hkern g1="quotedblbase" g2="uni1EEE" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF0" k="41" />
+<hkern g1="quotedblbase" g2="uni1EF4" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF6" k="123" />
+<hkern g1="quotedblbase" g2="uni1EF8" k="123" />
+<hkern g1="quotedblbase" g2="Tcedilla" k="143" />
+<hkern g1="Omega" g2="Tau" k="41" />
+<hkern g1="Omega" g2="Upsilon" k="20" />
+<hkern g1="Omega" g2="Upsilondieresis" k="20" />
+<hkern g1="Omega" g2="uni03D2" k="20" />
+<hkern g1="uni03D1" g2="comma" k="61" />
+<hkern g1="uni03D1" g2="period" k="61" />
+<hkern g1="uni03D1" g2="quotesinglbase" k="61" />
+<hkern g1="uni03D1" g2="quotedblbase" k="61" />
+<hkern g1="uni03D2" g2="comma" k="123" />
+<hkern g1="uni03D2" g2="period" k="123" />
+<hkern g1="uni03D2" g2="Alphatonos" k="123" />
+<hkern g1="uni03D2" g2="Alpha" k="123" />
+<hkern g1="uni03D2" g2="uni0394" k="123" />
+<hkern g1="uni03D2" g2="Theta" k="41" />
+<hkern g1="uni03D2" g2="Lambda" k="123" />
+<hkern g1="uni03D2" g2="Omicron" k="41" />
+<hkern g1="uni03D2" g2="Phi" k="61" />
+<hkern g1="uni03D2" g2="uni03A9" k="20" />
+<hkern g1="uni03D2" g2="alphatonos" k="102" />
+<hkern g1="uni03D2" g2="epsilontonos" k="82" />
+<hkern g1="uni03D2" g2="etatonos" k="61" />
+<hkern g1="uni03D2" g2="iotatonos" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresistonos" k="61" />
+<hkern g1="uni03D2" g2="alpha" k="102" />
+<hkern g1="uni03D2" g2="delta" k="61" />
+<hkern g1="uni03D2" g2="epsilon" k="82" />
+<hkern g1="uni03D2" g2="eta" k="61" />
+<hkern g1="uni03D2" g2="iota" k="61" />
+<hkern g1="uni03D2" g2="kappa" k="61" />
+<hkern g1="uni03D2" g2="uni03BC" k="61" />
+<hkern g1="uni03D2" g2="omicron" k="102" />
+<hkern g1="uni03D2" g2="rho" k="102" />
+<hkern g1="uni03D2" g2="sigma1" k="102" />
+<hkern g1="uni03D2" g2="sigma" k="102" />
+<hkern g1="uni03D2" g2="upsilon" k="61" />
+<hkern g1="uni03D2" g2="phi" k="102" />
+<hkern g1="uni03D2" g2="psi" k="61" />
+<hkern g1="uni03D2" g2="omega" k="61" />
+<hkern g1="uni03D2" g2="upsilondieresis" k="61" />
+<hkern g1="uni03D2" g2="omicrontonos" k="102" />
+<hkern g1="uni03D2" g2="upsilontonos" k="61" />
+<hkern g1="uni03D2" g2="omegatonos" k="61" />
+<hkern g1="uni03D2" g2="quotesinglbase" k="123" />
+<hkern g1="uni03D2" g2="quotedblbase" k="123" />
+<hkern g1="uni03D2" g2="Omega" k="20" />
+<hkern g1="uni1E00" g2="quotedbl" k="143" />
+<hkern g1="uni1E00" g2="quotesingle" k="143" />
+<hkern g1="uni1E00" g2="C" k="41" />
+<hkern g1="uni1E00" g2="G" k="41" />
+<hkern g1="uni1E00" g2="J" k="-266" />
+<hkern g1="uni1E00" g2="O" k="41" />
+<hkern g1="uni1E00" g2="Q" k="41" />
+<hkern g1="uni1E00" g2="T" k="143" />
+<hkern g1="uni1E00" g2="V" k="82" />
+<hkern g1="uni1E00" g2="W" k="82" />
+<hkern g1="uni1E00" g2="Y" k="123" />
+<hkern g1="uni1E00" g2="Ccedilla" k="41" />
+<hkern g1="uni1E00" g2="Ograve" k="41" />
+<hkern g1="uni1E00" g2="Oacute" k="41" />
+<hkern g1="uni1E00" g2="Ocircumflex" k="41" />
+<hkern g1="uni1E00" g2="Otilde" k="41" />
+<hkern g1="uni1E00" g2="Odieresis" k="41" />
+<hkern g1="uni1E00" g2="Oslash" k="41" />
+<hkern g1="uni1E00" g2="Yacute" k="123" />
+<hkern g1="uni1E00" g2="Cacute" k="41" />
+<hkern g1="uni1E00" g2="Ccircumflex" k="41" />
+<hkern g1="uni1E00" g2="Cdot" k="41" />
+<hkern g1="uni1E00" g2="Ccaron" k="41" />
+<hkern g1="uni1E00" g2="Gcircumflex" k="41" />
+<hkern g1="uni1E00" g2="Gbreve" k="41" />
+<hkern g1="uni1E00" g2="Gdot" k="41" />
+<hkern g1="uni1E00" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1E00" g2="Omacron" k="41" />
+<hkern g1="uni1E00" g2="Obreve" k="41" />
+<hkern g1="uni1E00" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1E00" g2="OE" k="41" />
+<hkern g1="uni1E00" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1E00" g2="Tcaron" k="143" />
+<hkern g1="uni1E00" g2="Wcircumflex" k="82" />
+<hkern g1="uni1E00" g2="Ycircumflex" k="123" />
+<hkern g1="uni1E00" g2="Ydieresis" k="123" />
+<hkern g1="uni1E00" g2="Oslashacute" k="41" />
+<hkern g1="uni1E00" g2="Wgrave" k="82" />
+<hkern g1="uni1E00" g2="Wacute" k="82" />
+<hkern g1="uni1E00" g2="Wdieresis" k="82" />
+<hkern g1="uni1E00" g2="Ygrave" k="123" />
+<hkern g1="uni1E00" g2="quoteright" k="143" />
+<hkern g1="uni1E00" g2="quotedblright" k="143" />
+<hkern g1="uni1E00" g2="Ohorn" k="41" />
+<hkern g1="uni1E00" g2="uni1ECC" k="41" />
+<hkern g1="uni1E00" g2="uni1ECE" k="41" />
+<hkern g1="uni1E00" g2="uni1ED0" k="41" />
+<hkern g1="uni1E00" g2="uni1ED2" k="41" />
+<hkern g1="uni1E00" g2="uni1ED4" k="41" />
+<hkern g1="uni1E00" g2="uni1ED6" k="41" />
+<hkern g1="uni1E00" g2="uni1ED8" k="41" />
+<hkern g1="uni1E00" g2="uni1EDA" k="41" />
+<hkern g1="uni1E00" g2="uni1EDC" k="41" />
+<hkern g1="uni1E00" g2="uni1EDE" k="41" />
+<hkern g1="uni1E00" g2="uni1EE0" k="41" />
+<hkern g1="uni1E00" g2="uni1EE2" k="41" />
+<hkern g1="uni1E00" g2="uni1EF4" k="123" />
+<hkern g1="uni1E00" g2="uni1EF6" k="123" />
+<hkern g1="uni1E00" g2="uni1EF8" k="123" />
+<hkern g1="uni1E00" g2="Tcedilla" k="143" />
+<hkern g1="uni1E01" g2="quotedbl" k="20" />
+<hkern g1="uni1E01" g2="quotesingle" k="20" />
+<hkern g1="uni1E01" g2="quoteright" k="20" />
+<hkern g1="uni1E01" g2="quotedblright" k="20" />
+<hkern g1="uni1F4D" g2="comma" k="82" />
+<hkern g1="uni1F4D" g2="period" k="82" />
+<hkern g1="uni1F4D" g2="Alphatonos" k="41" />
+<hkern g1="uni1F4D" g2="Alpha" k="41" />
+<hkern g1="uni1F4D" g2="uni0394" k="41" />
+<hkern g1="uni1F4D" g2="Zeta" k="20" />
+<hkern g1="uni1F4D" g2="Lambda" k="41" />
+<hkern g1="uni1F4D" g2="Sigma" k="20" />
+<hkern g1="uni1F4D" g2="Tau" k="61" />
+<hkern g1="uni1F4D" g2="Upsilon" k="20" />
+<hkern g1="uni1F4D" g2="Chi" k="41" />
+<hkern g1="uni1F4D" g2="Psi" k="20" />
+<hkern g1="uni1F4D" g2="Upsilondieresis" k="20" />
+<hkern g1="uni1F4D" g2="lambda" k="20" />
+<hkern g1="uni1F4D" g2="quotesinglbase" k="82" />
+<hkern g1="uni1F4D" g2="quotedblbase" k="82" />
+<hkern g1="uni1F4D" g2="uni03D2" k="20" />
+<hkern g1="ohorn" g2="f" k="-82" />
+<hkern g1="ohorn" g2="t" k="-82" />
+<hkern g1="ohorn" g2="v" k="-102" />
+<hkern g1="ohorn" g2="w" k="-102" />
+<hkern g1="ohorn" g2="x" k="-102" />
+<hkern g1="ohorn" g2="y" k="-102" />
+<hkern g1="ohorn" g2="yacute" k="-102" />
+<hkern g1="ohorn" g2="tcommaaccent" k="-82" />
+<hkern g1="ohorn" g2="tcaron" k="-82" />
+<hkern g1="ohorn" g2="wcircumflex" k="-102" />
+<hkern g1="ohorn" g2="wgrave" k="-102" />
+<hkern g1="ohorn" g2="wacute" k="-102" />
+<hkern g1="ohorn" g2="uniFB01" k="-82" />
+<hkern g1="ohorn" g2="uniFB02" k="-82" />
+<hkern g1="ohorn" g2="uniFB03" k="-82" />
+<hkern g1="ohorn" g2="uniFB04" k="-82" />
+<hkern g1="ohorn" g2="uni1EF5" k="-102" />
+<hkern g1="ohorn" g2="ff" k="-82" />
+<hkern g1="ohorn" g2="tcedilla" k="-82" />
+<hkern g1="uhorn" g2="f" k="-102" />
+<hkern g1="uhorn" g2="t" k="-102" />
+<hkern g1="uhorn" g2="v" k="-102" />
+<hkern g1="uhorn" g2="w" k="-102" />
+<hkern g1="uhorn" g2="x" k="-102" />
+<hkern g1="uhorn" g2="y" k="-102" />
+<hkern g1="uhorn" g2="yacute" k="-102" />
+<hkern g1="uhorn" g2="tcommaaccent" k="-102" />
+<hkern g1="uhorn" g2="tcaron" k="-102" />
+<hkern g1="uhorn" g2="wcircumflex" k="-102" />
+<hkern g1="uhorn" g2="wgrave" k="-102" />
+<hkern g1="uhorn" g2="wacute" k="-102" />
+<hkern g1="uhorn" g2="uniFB01" k="-102" />
+<hkern g1="uhorn" g2="uniFB02" k="-102" />
+<hkern g1="uhorn" g2="uniFB03" k="-102" />
+<hkern g1="uhorn" g2="uniFB04" k="-102" />
+<hkern g1="uhorn" g2="uni1EF5" k="-102" />
+<hkern g1="uhorn" g2="ff" k="-102" />
+<hkern g1="uhorn" g2="tcedilla" k="-102" />
+<hkern g1="uni0450" g2="quotedbl" k="20" />
+<hkern g1="uni0450" g2="quotesingle" k="20" />
+<hkern g1="uni0450" g2="quoteright" k="20" />
+<hkern g1="uni0450" g2="quotedblright" k="20" />
+<hkern g1="uni0460" g2="comma" k="82" />
+<hkern g1="uni0460" g2="period" k="82" />
+<hkern g1="uni0460" g2="afii10051" k="20" />
+<hkern g1="uni0460" g2="afii10058" k="41" />
+<hkern g1="uni0460" g2="afii10060" k="20" />
+<hkern g1="uni0460" g2="afii10062" k="41" />
+<hkern g1="uni0460" g2="afii10017" k="41" />
+<hkern g1="uni0460" g2="afii10021" k="41" />
+<hkern g1="uni0460" g2="afii10024" k="41" />
+<hkern g1="uni0460" g2="afii10025" k="20" />
+<hkern g1="uni0460" g2="afii10029" k="41" />
+<hkern g1="uni0460" g2="afii10036" k="61" />
+<hkern g1="uni0460" g2="afii10037" k="41" />
+<hkern g1="uni0460" g2="afii10039" k="41" />
+<hkern g1="uni0460" g2="afii10041" k="41" />
+<hkern g1="uni0460" g2="afii10044" k="20" />
+<hkern g1="uni0460" g2="afii10047" k="20" />
+<hkern g1="uni0460" g2="afii10069" k="20" />
+<hkern g1="uni0460" g2="afii10077" k="20" />
+<hkern g1="uni0460" g2="afii10106" k="20" />
+<hkern g1="uni0460" g2="quotesinglbase" k="82" />
+<hkern g1="uni0460" g2="quotedblbase" k="82" />
+<hkern g1="uni0460" g2="uni0466" k="41" />
+<hkern g1="uni0460" g2="uni0467" k="20" />
+<hkern g1="uni0460" g2="uni046E" k="20" />
+<hkern g1="uni0460" g2="uni0470" k="41" />
+<hkern g1="uni0460" g2="uni0474" k="20" />
+<hkern g1="uni0460" g2="uni0476" k="20" />
+<hkern g1="uni0460" g2="uni0496" k="41" />
+<hkern g1="uni0460" g2="uni0498" k="20" />
+<hkern g1="uni0460" g2="uni04A0" k="20" />
+<hkern g1="uni0460" g2="uni04AC" k="61" />
+<hkern g1="uni0460" g2="uni04AE" k="20" />
+<hkern g1="uni0460" g2="uni04B0" k="20" />
+<hkern g1="uni0460" g2="uni04B2" k="41" />
+<hkern g1="uni0460" g2="uni04B4" k="20" />
+<hkern g1="uni0460" g2="uni04B6" k="41" />
+<hkern g1="uni0460" g2="uni04B8" k="41" />
+<hkern g1="uni0460" g2="uni04C1" k="41" />
+<hkern g1="uni0460" g2="uni04C5" k="41" />
+<hkern g1="uni0460" g2="uni04C6" k="20" />
+<hkern g1="uni0460" g2="uni04CB" k="41" />
+<hkern g1="uni0460" g2="uni04D0" k="41" />
+<hkern g1="uni0460" g2="uni04D2" k="41" />
+<hkern g1="uni0460" g2="uni04D4" k="41" />
+<hkern g1="uni0460" g2="uni04DC" k="41" />
+<hkern g1="uni0460" g2="uni04DE" k="20" />
+<hkern g1="uni0460" g2="uni04EC" k="20" />
+<hkern g1="uni0460" g2="uni04EE" k="41" />
+<hkern g1="uni0460" g2="uni04F0" k="41" />
+<hkern g1="uni0460" g2="uni04F2" k="41" />
+<hkern g1="uni0460" g2="uni04F4" k="41" />
+<hkern g1="uni0460" g2="uni04FC" k="41" />
+<hkern g1="uni0460" g2="uni04FE" k="41" />
+<hkern g1="uni0460" g2="uni0504" k="41" />
+<hkern g1="uni0460" g2="uni0506" k="41" />
+<hkern g1="uni0460" g2="uni0508" k="41" />
+<hkern g1="uni0460" g2="uni0509" k="20" />
+<hkern g1="uni0460" g2="uni050E" k="20" />
+<hkern g1="uni0460" g2="uni0512" k="41" />
+<hkern g1="uni0460" g2="uni0513" k="20" />
+<hkern g1="uni0461" g2="comma" k="82" />
+<hkern g1="uni0461" g2="period" k="82" />
+<hkern g1="uni0461" g2="afii10069" k="41" />
+<hkern g1="uni0461" g2="afii10077" k="41" />
+<hkern g1="uni0461" g2="afii10106" k="41" />
+<hkern g1="uni0461" g2="quotesinglbase" k="82" />
+<hkern g1="uni0461" g2="quotedblbase" k="82" />
+<hkern g1="uni0461" g2="uni0467" k="41" />
+<hkern g1="uni0461" g2="uni04C6" k="41" />
+<hkern g1="uni0461" g2="uni0509" k="41" />
+<hkern g1="uni0461" g2="uni0513" k="41" />
+<hkern g1="uni0462" g2="quotedbl" k="82" />
+<hkern g1="uni0462" g2="quotesingle" k="82" />
+<hkern g1="uni0462" g2="afii10051" k="41" />
+<hkern g1="uni0462" g2="afii10060" k="41" />
+<hkern g1="uni0462" g2="afii10036" k="82" />
+<hkern g1="uni0462" g2="afii10041" k="82" />
+<hkern g1="uni0462" g2="afii10044" k="41" />
+<hkern g1="uni0462" g2="afii10084" k="41" />
+<hkern g1="uni0462" g2="afii10092" k="41" />
+<hkern g1="uni0462" g2="quoteright" k="82" />
+<hkern g1="uni0462" g2="quotedblright" k="82" />
+<hkern g1="uni0462" g2="uni0470" k="82" />
+<hkern g1="uni0462" g2="uni0474" k="61" />
+<hkern g1="uni0462" g2="uni0476" k="61" />
+<hkern g1="uni0462" g2="uni04A0" k="41" />
+<hkern g1="uni0462" g2="uni04A1" k="41" />
+<hkern g1="uni0462" g2="uni04AC" k="82" />
+<hkern g1="uni0462" g2="uni04AD" k="41" />
+<hkern g1="uni0462" g2="uni04AE" k="61" />
+<hkern g1="uni0462" g2="uni04B0" k="61" />
+<hkern g1="uni0462" g2="uni04B4" k="41" />
+<hkern g1="uni0462" g2="uni04B5" k="41" />
+<hkern g1="uni0462" g2="uni04B6" k="82" />
+<hkern g1="uni0462" g2="uni04B8" k="82" />
+<hkern g1="uni0462" g2="uni04CB" k="82" />
+<hkern g1="uni0462" g2="uni04F4" k="82" />
+<hkern g1="uni0462" g2="uni0504" k="102" />
+<hkern g1="uni0462" g2="uni0506" k="102" />
+<hkern g1="uni0462" g2="uni050E" k="41" />
+<hkern g1="uni0462" g2="uni050F" k="41" />
+<hkern g1="uni0463" g2="quotedbl" k="123" />
+<hkern g1="uni0463" g2="quotesingle" k="123" />
+<hkern g1="uni0463" g2="afii10072" k="41" />
+<hkern g1="uni0463" g2="afii10084" k="102" />
+<hkern g1="uni0463" g2="afii10085" k="61" />
+<hkern g1="uni0463" g2="afii10087" k="41" />
+<hkern g1="uni0463" g2="afii10089" k="82" />
+<hkern g1="uni0463" g2="afii10092" k="102" />
+<hkern g1="uni0463" g2="afii10110" k="61" />
+<hkern g1="uni0463" g2="quoteright" k="123" />
+<hkern g1="uni0463" g2="quotedblright" k="123" />
+<hkern g1="uni0463" g2="uni0461" k="41" />
+<hkern g1="uni0463" g2="uni0475" k="41" />
+<hkern g1="uni0463" g2="uni0477" k="41" />
+<hkern g1="uni0463" g2="uni047F" k="41" />
+<hkern g1="uni0463" g2="uni0497" k="41" />
+<hkern g1="uni0463" g2="uni04A1" k="102" />
+<hkern g1="uni0463" g2="uni04AD" k="102" />
+<hkern g1="uni0463" g2="uni04AF" k="61" />
+<hkern g1="uni0463" g2="uni04B1" k="61" />
+<hkern g1="uni0463" g2="uni04B3" k="41" />
+<hkern g1="uni0463" g2="uni04B5" k="102" />
+<hkern g1="uni0463" g2="uni04B7" k="82" />
+<hkern g1="uni0463" g2="uni04B9" k="82" />
+<hkern g1="uni0463" g2="uni04BD" k="41" />
+<hkern g1="uni0463" g2="uni04BF" k="41" />
+<hkern g1="uni0463" g2="uni04C2" k="41" />
+<hkern g1="uni0463" g2="uni04CC" k="82" />
+<hkern g1="uni0463" g2="uni04DD" k="41" />
+<hkern g1="uni0463" g2="uni04E1" k="41" />
+<hkern g1="uni0463" g2="uni04EF" k="61" />
+<hkern g1="uni0463" g2="uni04F1" k="61" />
+<hkern g1="uni0463" g2="uni04F3" k="61" />
+<hkern g1="uni0463" g2="uni04F5" k="82" />
+<hkern g1="uni0463" g2="uni04FD" k="41" />
+<hkern g1="uni0463" g2="uni04FF" k="41" />
+<hkern g1="uni0463" g2="uni0505" k="102" />
+<hkern g1="uni0463" g2="uni0507" k="102" />
+<hkern g1="uni0463" g2="uni050F" k="102" />
+<hkern g1="uni0464" g2="afii10053" k="41" />
+<hkern g1="uni0464" g2="afii10032" k="41" />
+<hkern g1="uni0464" g2="afii10035" k="41" />
+<hkern g1="uni0464" g2="afii10038" k="41" />
+<hkern g1="uni0464" g2="afii10089" k="41" />
+<hkern g1="uni0464" g2="uni0460" k="41" />
+<hkern g1="uni0464" g2="uni0472" k="41" />
+<hkern g1="uni0464" g2="uni0478" k="41" />
+<hkern g1="uni0464" g2="uni047A" k="41" />
+<hkern g1="uni0464" g2="uni047C" k="41" />
+<hkern g1="uni0464" g2="uni047E" k="41" />
+<hkern g1="uni0464" g2="uni0480" k="41" />
+<hkern g1="uni0464" g2="uni04A8" k="41" />
+<hkern g1="uni0464" g2="uni04AA" k="41" />
+<hkern g1="uni0464" g2="uni04B7" k="41" />
+<hkern g1="uni0464" g2="uni04B9" k="41" />
+<hkern g1="uni0464" g2="uni04BC" k="41" />
+<hkern g1="uni0464" g2="uni04BE" k="41" />
+<hkern g1="uni0464" g2="uni04CC" k="41" />
+<hkern g1="uni0464" g2="uni04E6" k="41" />
+<hkern g1="uni0464" g2="uni04E8" k="41" />
+<hkern g1="uni0464" g2="uni04EA" k="41" />
+<hkern g1="uni0464" g2="uni04F5" k="41" />
+<hkern g1="uni0464" g2="uni0500" k="41" />
+<hkern g1="uni0464" g2="uni0502" k="41" />
+<hkern g1="uni0464" g2="uni0505" k="41" />
+<hkern g1="uni0464" g2="uni0507" k="41" />
+<hkern g1="uni0464" g2="uni050C" k="41" />
+<hkern g1="uni0466" g2="quotedbl" k="143" />
+<hkern g1="uni0466" g2="quotesingle" k="143" />
+<hkern g1="uni0466" g2="afii10051" k="102" />
+<hkern g1="uni0466" g2="afii10060" k="102" />
+<hkern g1="uni0466" g2="afii10036" k="143" />
+<hkern g1="uni0466" g2="afii10038" k="41" />
+<hkern g1="uni0466" g2="afii10041" k="102" />
+<hkern g1="uni0466" g2="afii10044" k="102" />
+<hkern g1="uni0466" g2="afii10084" k="41" />
+<hkern g1="uni0466" g2="afii10089" k="41" />
+<hkern g1="uni0466" g2="afii10092" k="41" />
+<hkern g1="uni0466" g2="quoteright" k="143" />
+<hkern g1="uni0466" g2="quotedblright" k="143" />
+<hkern g1="uni0466" g2="uni0462" k="41" />
+<hkern g1="uni0466" g2="uni0470" k="102" />
+<hkern g1="uni0466" g2="uni0474" k="82" />
+<hkern g1="uni0466" g2="uni0476" k="82" />
+<hkern g1="uni0466" g2="uni048C" k="41" />
+<hkern g1="uni0466" g2="uni0492" k="41" />
+<hkern g1="uni0466" g2="uni049E" k="41" />
+<hkern g1="uni0466" g2="uni04A0" k="102" />
+<hkern g1="uni0466" g2="uni04A1" k="41" />
+<hkern g1="uni0466" g2="uni04AC" k="143" />
+<hkern g1="uni0466" g2="uni04AD" k="41" />
+<hkern g1="uni0466" g2="uni04AE" k="123" />
+<hkern g1="uni0466" g2="uni04B0" k="123" />
+<hkern g1="uni0466" g2="uni04B4" k="102" />
+<hkern g1="uni0466" g2="uni04B5" k="41" />
+<hkern g1="uni0466" g2="uni04B6" k="102" />
+<hkern g1="uni0466" g2="uni04B7" k="41" />
+<hkern g1="uni0466" g2="uni04B8" k="102" />
+<hkern g1="uni0466" g2="uni04B9" k="41" />
+<hkern g1="uni0466" g2="uni04BC" k="102" />
+<hkern g1="uni0466" g2="uni04BE" k="102" />
+<hkern g1="uni0466" g2="uni04CB" k="102" />
+<hkern g1="uni0466" g2="uni04CC" k="41" />
+<hkern g1="uni0466" g2="uni04D8" k="41" />
+<hkern g1="uni0466" g2="uni04DA" k="41" />
+<hkern g1="uni0466" g2="uni04F4" k="102" />
+<hkern g1="uni0466" g2="uni04F5" k="41" />
+<hkern g1="uni0466" g2="uni04FA" k="41" />
+<hkern g1="uni0466" g2="uni0504" k="143" />
+<hkern g1="uni0466" g2="uni0505" k="41" />
+<hkern g1="uni0466" g2="uni0506" k="143" />
+<hkern g1="uni0466" g2="uni0507" k="41" />
+<hkern g1="uni0466" g2="uni050E" k="102" />
+<hkern g1="uni0466" g2="uni050F" k="41" />
+<hkern g1="uni0467" g2="quotedbl" k="143" />
+<hkern g1="uni0467" g2="quotesingle" k="143" />
+<hkern g1="uni0467" g2="afii10070" k="41" />
+<hkern g1="uni0467" g2="afii10080" k="41" />
+<hkern g1="uni0467" g2="afii10083" k="41" />
+<hkern g1="uni0467" g2="afii10084" k="102" />
+<hkern g1="uni0467" g2="afii10085" k="61" />
+<hkern g1="uni0467" g2="afii10086" k="41" />
+<hkern g1="uni0467" g2="afii10089" k="61" />
+<hkern g1="uni0467" g2="afii10092" k="102" />
+<hkern g1="uni0467" g2="afii10071" k="41" />
+<hkern g1="uni0467" g2="afii10101" k="41" />
+<hkern g1="uni0467" g2="afii10110" k="61" />
+<hkern g1="uni0467" g2="quoteright" k="143" />
+<hkern g1="uni0467" g2="quotedblright" k="143" />
+<hkern g1="uni0467" g2="uni0450" k="41" />
+<hkern g1="uni0467" g2="uni0461" k="41" />
+<hkern g1="uni0467" g2="uni0471" k="20" />
+<hkern g1="uni0467" g2="uni0473" k="41" />
+<hkern g1="uni0467" g2="uni0475" k="41" />
+<hkern g1="uni0467" g2="uni0477" k="41" />
+<hkern g1="uni0467" g2="uni0479" k="41" />
+<hkern g1="uni0467" g2="uni047B" k="41" />
+<hkern g1="uni0467" g2="uni047D" k="41" />
+<hkern g1="uni0467" g2="uni047F" k="41" />
+<hkern g1="uni0467" g2="uni0481" k="41" />
+<hkern g1="uni0467" g2="uni04A1" k="102" />
+<hkern g1="uni0467" g2="uni04A9" k="41" />
+<hkern g1="uni0467" g2="uni04AB" k="41" />
+<hkern g1="uni0467" g2="uni04AD" k="102" />
+<hkern g1="uni0467" g2="uni04AF" k="41" />
+<hkern g1="uni0467" g2="uni04B1" k="41" />
+<hkern g1="uni0467" g2="uni04B5" k="102" />
+<hkern g1="uni0467" g2="uni04B7" k="61" />
+<hkern g1="uni0467" g2="uni04B9" k="61" />
+<hkern g1="uni0467" g2="uni04BD" k="41" />
+<hkern g1="uni0467" g2="uni04BF" k="41" />
+<hkern g1="uni0467" g2="uni04CC" k="61" />
+<hkern g1="uni0467" g2="uni04D7" k="41" />
+<hkern g1="uni0467" g2="uni04E7" k="41" />
+<hkern g1="uni0467" g2="uni04E9" k="41" />
+<hkern g1="uni0467" g2="uni04EB" k="41" />
+<hkern g1="uni0467" g2="uni04EF" k="61" />
+<hkern g1="uni0467" g2="uni04F1" k="61" />
+<hkern g1="uni0467" g2="uni04F3" k="61" />
+<hkern g1="uni0467" g2="uni04F5" k="61" />
+<hkern g1="uni0467" g2="uni0501" k="41" />
+<hkern g1="uni0467" g2="uni0503" k="41" />
+<hkern g1="uni0467" g2="uni0505" k="123" />
+<hkern g1="uni0467" g2="uni0507" k="123" />
+<hkern g1="uni0467" g2="uni050D" k="41" />
+<hkern g1="uni0467" g2="uni050F" k="102" />
+<hkern g1="uni0467" g2="uni0511" k="41" />
+<hkern g1="uni0468" g2="quotedbl" k="143" />
+<hkern g1="uni0468" g2="quotesingle" k="143" />
+<hkern g1="uni0468" g2="afii10051" k="102" />
+<hkern g1="uni0468" g2="afii10060" k="102" />
+<hkern g1="uni0468" g2="afii10036" k="143" />
+<hkern g1="uni0468" g2="afii10038" k="41" />
+<hkern g1="uni0468" g2="afii10041" k="102" />
+<hkern g1="uni0468" g2="afii10044" k="102" />
+<hkern g1="uni0468" g2="afii10084" k="41" />
+<hkern g1="uni0468" g2="afii10089" k="41" />
+<hkern g1="uni0468" g2="afii10092" k="41" />
+<hkern g1="uni0468" g2="quoteright" k="143" />
+<hkern g1="uni0468" g2="quotedblright" k="143" />
+<hkern g1="uni0468" g2="uni0462" k="41" />
+<hkern g1="uni0468" g2="uni0470" k="102" />
+<hkern g1="uni0468" g2="uni0474" k="82" />
+<hkern g1="uni0468" g2="uni0476" k="82" />
+<hkern g1="uni0468" g2="uni048C" k="41" />
+<hkern g1="uni0468" g2="uni0492" k="41" />
+<hkern g1="uni0468" g2="uni049E" k="41" />
+<hkern g1="uni0468" g2="uni04A0" k="102" />
+<hkern g1="uni0468" g2="uni04A1" k="41" />
+<hkern g1="uni0468" g2="uni04AC" k="143" />
+<hkern g1="uni0468" g2="uni04AD" k="41" />
+<hkern g1="uni0468" g2="uni04AE" k="123" />
+<hkern g1="uni0468" g2="uni04B0" k="123" />
+<hkern g1="uni0468" g2="uni04B4" k="102" />
+<hkern g1="uni0468" g2="uni04B5" k="41" />
+<hkern g1="uni0468" g2="uni04B6" k="102" />
+<hkern g1="uni0468" g2="uni04B7" k="41" />
+<hkern g1="uni0468" g2="uni04B8" k="102" />
+<hkern g1="uni0468" g2="uni04B9" k="41" />
+<hkern g1="uni0468" g2="uni04BC" k="102" />
+<hkern g1="uni0468" g2="uni04BE" k="102" />
+<hkern g1="uni0468" g2="uni04CB" k="102" />
+<hkern g1="uni0468" g2="uni04CC" k="41" />
+<hkern g1="uni0468" g2="uni04D8" k="41" />
+<hkern g1="uni0468" g2="uni04DA" k="41" />
+<hkern g1="uni0468" g2="uni04F4" k="102" />
+<hkern g1="uni0468" g2="uni04F5" k="41" />
+<hkern g1="uni0468" g2="uni04FA" k="41" />
+<hkern g1="uni0468" g2="uni0504" k="143" />
+<hkern g1="uni0468" g2="uni0505" k="41" />
+<hkern g1="uni0468" g2="uni0506" k="143" />
+<hkern g1="uni0468" g2="uni0507" k="41" />
+<hkern g1="uni0468" g2="uni050E" k="102" />
+<hkern g1="uni0468" g2="uni050F" k="41" />
+<hkern g1="uni0469" g2="quotedbl" k="143" />
+<hkern g1="uni0469" g2="quotesingle" k="143" />
+<hkern g1="uni0469" g2="afii10070" k="41" />
+<hkern g1="uni0469" g2="afii10080" k="41" />
+<hkern g1="uni0469" g2="afii10083" k="41" />
+<hkern g1="uni0469" g2="afii10084" k="102" />
+<hkern g1="uni0469" g2="afii10085" k="61" />
+<hkern g1="uni0469" g2="afii10086" k="41" />
+<hkern g1="uni0469" g2="afii10089" k="61" />
+<hkern g1="uni0469" g2="afii10092" k="102" />
+<hkern g1="uni0469" g2="afii10071" k="41" />
+<hkern g1="uni0469" g2="afii10101" k="41" />
+<hkern g1="uni0469" g2="afii10110" k="61" />
+<hkern g1="uni0469" g2="quoteright" k="143" />
+<hkern g1="uni0469" g2="quotedblright" k="143" />
+<hkern g1="uni0469" g2="uni0450" k="41" />
+<hkern g1="uni0469" g2="uni0461" k="41" />
+<hkern g1="uni0469" g2="uni0471" k="20" />
+<hkern g1="uni0469" g2="uni0473" k="41" />
+<hkern g1="uni0469" g2="uni0475" k="41" />
+<hkern g1="uni0469" g2="uni0477" k="41" />
+<hkern g1="uni0469" g2="uni0479" k="41" />
+<hkern g1="uni0469" g2="uni047B" k="41" />
+<hkern g1="uni0469" g2="uni047D" k="41" />
+<hkern g1="uni0469" g2="uni047F" k="41" />
+<hkern g1="uni0469" g2="uni0481" k="41" />
+<hkern g1="uni0469" g2="uni04A1" k="102" />
+<hkern g1="uni0469" g2="uni04A9" k="41" />
+<hkern g1="uni0469" g2="uni04AB" k="41" />
+<hkern g1="uni0469" g2="uni04AD" k="102" />
+<hkern g1="uni0469" g2="uni04AF" k="41" />
+<hkern g1="uni0469" g2="uni04B1" k="41" />
+<hkern g1="uni0469" g2="uni04B5" k="102" />
+<hkern g1="uni0469" g2="uni04B7" k="61" />
+<hkern g1="uni0469" g2="uni04B9" k="61" />
+<hkern g1="uni0469" g2="uni04BD" k="41" />
+<hkern g1="uni0469" g2="uni04BF" k="41" />
+<hkern g1="uni0469" g2="uni04CC" k="61" />
+<hkern g1="uni0469" g2="uni04D7" k="41" />
+<hkern g1="uni0469" g2="uni04E7" k="41" />
+<hkern g1="uni0469" g2="uni04E9" k="41" />
+<hkern g1="uni0469" g2="uni04EB" k="41" />
+<hkern g1="uni0469" g2="uni04EF" k="61" />
+<hkern g1="uni0469" g2="uni04F1" k="61" />
+<hkern g1="uni0469" g2="uni04F3" k="61" />
+<hkern g1="uni0469" g2="uni04F5" k="61" />
+<hkern g1="uni0469" g2="uni0501" k="41" />
+<hkern g1="uni0469" g2="uni0503" k="41" />
+<hkern g1="uni0469" g2="uni0505" k="123" />
+<hkern g1="uni0469" g2="uni0507" k="123" />
+<hkern g1="uni0469" g2="uni050D" k="41" />
+<hkern g1="uni0469" g2="uni050F" k="102" />
+<hkern g1="uni0469" g2="uni0511" k="41" />
+<hkern g1="uni046A" g2="uni0504" k="20" />
+<hkern g1="uni046A" g2="uni0506" k="20" />
+<hkern g1="uni046C" g2="uni0504" k="20" />
+<hkern g1="uni046C" g2="uni0506" k="20" />
+<hkern g1="uni046E" g2="comma" k="82" />
+<hkern g1="uni046E" g2="period" k="82" />
+<hkern g1="uni046E" g2="quotesinglbase" k="82" />
+<hkern g1="uni046E" g2="quotedblbase" k="82" />
+<hkern g1="uni046E" g2="uni0474" k="20" />
+<hkern g1="uni046E" g2="uni0476" k="20" />
+<hkern g1="uni046E" g2="uni04AE" k="20" />
+<hkern g1="uni046E" g2="uni04B0" k="20" />
+<hkern g1="uni046E" g2="uni0504" k="41" />
+<hkern g1="uni046E" g2="uni0506" k="41" />
+<hkern g1="uni0470" g2="comma" k="143" />
+<hkern g1="uni0470" g2="period" k="143" />
+<hkern g1="uni0470" g2="afii10058" k="61" />
+<hkern g1="uni0470" g2="afii10017" k="82" />
+<hkern g1="uni0470" g2="afii10021" k="61" />
+<hkern g1="uni0470" g2="afii10029" k="61" />
+<hkern g1="uni0470" g2="afii10069" k="41" />
+<hkern g1="uni0470" g2="afii10077" k="41" />
+<hkern g1="uni0470" g2="afii10106" k="41" />
+<hkern g1="uni0470" g2="quotesinglbase" k="143" />
+<hkern g1="uni0470" g2="quotedblbase" k="143" />
+<hkern g1="uni0470" g2="uni0466" k="82" />
+<hkern g1="uni0470" g2="uni0467" k="41" />
+<hkern g1="uni0470" g2="uni04C5" k="61" />
+<hkern g1="uni0470" g2="uni04C6" k="41" />
+<hkern g1="uni0470" g2="uni04D0" k="82" />
+<hkern g1="uni0470" g2="uni04D2" k="82" />
+<hkern g1="uni0470" g2="uni04D4" k="82" />
+<hkern g1="uni0470" g2="uni0500" k="82" />
+<hkern g1="uni0470" g2="uni0502" k="82" />
+<hkern g1="uni0470" g2="uni0508" k="61" />
+<hkern g1="uni0470" g2="uni0509" k="41" />
+<hkern g1="uni0470" g2="uni0512" k="61" />
+<hkern g1="uni0470" g2="uni0513" k="41" />
+<hkern g1="uni0471" g2="quotedbl" k="20" />
+<hkern g1="uni0471" g2="quotesingle" k="20" />
+<hkern g1="uni0471" g2="afii10072" k="41" />
+<hkern g1="uni0471" g2="afii10084" k="20" />
+<hkern g1="uni0471" g2="afii10085" k="20" />
+<hkern g1="uni0471" g2="afii10087" k="41" />
+<hkern g1="uni0471" g2="afii10089" k="20" />
+<hkern g1="uni0471" g2="afii10092" k="20" />
+<hkern g1="uni0471" g2="afii10110" k="20" />
+<hkern g1="uni0471" g2="quoteright" k="20" />
+<hkern g1="uni0471" g2="quotedblright" k="20" />
+<hkern g1="uni0471" g2="uni0497" k="41" />
+<hkern g1="uni0471" g2="uni04A1" k="20" />
+<hkern g1="uni0471" g2="uni04AD" k="20" />
+<hkern g1="uni0471" g2="uni04B3" k="41" />
+<hkern g1="uni0471" g2="uni04B5" k="20" />
+<hkern g1="uni0471" g2="uni04B7" k="20" />
+<hkern g1="uni0471" g2="uni04B9" k="20" />
+<hkern g1="uni0471" g2="uni04C2" k="41" />
+<hkern g1="uni0471" g2="uni04CC" k="20" />
+<hkern g1="uni0471" g2="uni04DD" k="41" />
+<hkern g1="uni0471" g2="uni04EF" k="20" />
+<hkern g1="uni0471" g2="uni04F1" k="20" />
+<hkern g1="uni0471" g2="uni04F3" k="20" />
+<hkern g1="uni0471" g2="uni04F5" k="20" />
+<hkern g1="uni0471" g2="uni04FD" k="41" />
+<hkern g1="uni0471" g2="uni04FF" k="41" />
+<hkern g1="uni0471" g2="uni0505" k="20" />
+<hkern g1="uni0471" g2="uni0507" k="20" />
+<hkern g1="uni0471" g2="uni050F" k="20" />
+<hkern g1="uni0472" g2="comma" k="82" />
+<hkern g1="uni0472" g2="period" k="82" />
+<hkern g1="uni0472" g2="afii10051" k="20" />
+<hkern g1="uni0472" g2="afii10058" k="41" />
+<hkern g1="uni0472" g2="afii10060" k="20" />
+<hkern g1="uni0472" g2="afii10062" k="41" />
+<hkern g1="uni0472" g2="afii10017" k="41" />
+<hkern g1="uni0472" g2="afii10021" k="41" />
+<hkern g1="uni0472" g2="afii10024" k="41" />
+<hkern g1="uni0472" g2="afii10025" k="20" />
+<hkern g1="uni0472" g2="afii10029" k="41" />
+<hkern g1="uni0472" g2="afii10036" k="61" />
+<hkern g1="uni0472" g2="afii10037" k="41" />
+<hkern g1="uni0472" g2="afii10039" k="41" />
+<hkern g1="uni0472" g2="afii10041" k="41" />
+<hkern g1="uni0472" g2="afii10044" k="20" />
+<hkern g1="uni0472" g2="afii10047" k="20" />
+<hkern g1="uni0472" g2="afii10069" k="20" />
+<hkern g1="uni0472" g2="afii10077" k="20" />
+<hkern g1="uni0472" g2="afii10106" k="20" />
+<hkern g1="uni0472" g2="quotesinglbase" k="82" />
+<hkern g1="uni0472" g2="quotedblbase" k="82" />
+<hkern g1="uni0472" g2="uni0466" k="41" />
+<hkern g1="uni0472" g2="uni0467" k="20" />
+<hkern g1="uni0472" g2="uni046E" k="20" />
+<hkern g1="uni0472" g2="uni0470" k="41" />
+<hkern g1="uni0472" g2="uni0474" k="20" />
+<hkern g1="uni0472" g2="uni0476" k="20" />
+<hkern g1="uni0472" g2="uni0496" k="41" />
+<hkern g1="uni0472" g2="uni0498" k="20" />
+<hkern g1="uni0472" g2="uni04A0" k="20" />
+<hkern g1="uni0472" g2="uni04AC" k="61" />
+<hkern g1="uni0472" g2="uni04AE" k="20" />
+<hkern g1="uni0472" g2="uni04B0" k="20" />
+<hkern g1="uni0472" g2="uni04B2" k="41" />
+<hkern g1="uni0472" g2="uni04B4" k="20" />
+<hkern g1="uni0472" g2="uni04B6" k="41" />
+<hkern g1="uni0472" g2="uni04B8" k="41" />
+<hkern g1="uni0472" g2="uni04C1" k="41" />
+<hkern g1="uni0472" g2="uni04C5" k="41" />
+<hkern g1="uni0472" g2="uni04C6" k="20" />
+<hkern g1="uni0472" g2="uni04CB" k="41" />
+<hkern g1="uni0472" g2="uni04D0" k="41" />
+<hkern g1="uni0472" g2="uni04D2" k="41" />
+<hkern g1="uni0472" g2="uni04D4" k="41" />
+<hkern g1="uni0472" g2="uni04DC" k="41" />
+<hkern g1="uni0472" g2="uni04DE" k="20" />
+<hkern g1="uni0472" g2="uni04EC" k="20" />
+<hkern g1="uni0472" g2="uni04EE" k="41" />
+<hkern g1="uni0472" g2="uni04F0" k="41" />
+<hkern g1="uni0472" g2="uni04F2" k="41" />
+<hkern g1="uni0472" g2="uni04F4" k="41" />
+<hkern g1="uni0472" g2="uni04FC" k="41" />
+<hkern g1="uni0472" g2="uni04FE" k="41" />
+<hkern g1="uni0472" g2="uni0504" k="41" />
+<hkern g1="uni0472" g2="uni0506" k="41" />
+<hkern g1="uni0472" g2="uni0508" k="41" />
+<hkern g1="uni0472" g2="uni0509" k="20" />
+<hkern g1="uni0472" g2="uni050E" k="20" />
+<hkern g1="uni0472" g2="uni0512" k="41" />
+<hkern g1="uni0472" g2="uni0513" k="20" />
+<hkern g1="uni0473" g2="quotedbl" k="20" />
+<hkern g1="uni0473" g2="quotesingle" k="20" />
+<hkern g1="uni0473" g2="afii10072" k="41" />
+<hkern g1="uni0473" g2="afii10084" k="20" />
+<hkern g1="uni0473" g2="afii10085" k="20" />
+<hkern g1="uni0473" g2="afii10087" k="41" />
+<hkern g1="uni0473" g2="afii10089" k="20" />
+<hkern g1="uni0473" g2="afii10092" k="20" />
+<hkern g1="uni0473" g2="afii10110" k="20" />
+<hkern g1="uni0473" g2="quoteright" k="20" />
+<hkern g1="uni0473" g2="quotedblright" k="20" />
+<hkern g1="uni0473" g2="uni0497" k="41" />
+<hkern g1="uni0473" g2="uni04A1" k="20" />
+<hkern g1="uni0473" g2="uni04AD" k="20" />
+<hkern g1="uni0473" g2="uni04B3" k="41" />
+<hkern g1="uni0473" g2="uni04B5" k="20" />
+<hkern g1="uni0473" g2="uni04B7" k="20" />
+<hkern g1="uni0473" g2="uni04B9" k="20" />
+<hkern g1="uni0473" g2="uni04C2" k="41" />
+<hkern g1="uni0473" g2="uni04CC" k="20" />
+<hkern g1="uni0473" g2="uni04DD" k="41" />
+<hkern g1="uni0473" g2="uni04EF" k="20" />
+<hkern g1="uni0473" g2="uni04F1" k="20" />
+<hkern g1="uni0473" g2="uni04F3" k="20" />
+<hkern g1="uni0473" g2="uni04F5" k="20" />
+<hkern g1="uni0473" g2="uni04FD" k="41" />
+<hkern g1="uni0473" g2="uni04FF" k="41" />
+<hkern g1="uni0473" g2="uni0505" k="20" />
+<hkern g1="uni0473" g2="uni0507" k="20" />
+<hkern g1="uni0473" g2="uni050F" k="20" />
+<hkern g1="uni0474" g2="comma" k="123" />
+<hkern g1="uni0474" g2="period" k="123" />
+<hkern g1="uni0474" g2="afii10053" k="20" />
+<hkern g1="uni0474" g2="afii10058" k="102" />
+<hkern g1="uni0474" g2="afii10017" k="143" />
+<hkern g1="uni0474" g2="afii10021" k="102" />
+<hkern g1="uni0474" g2="afii10029" k="102" />
+<hkern g1="uni0474" g2="afii10032" k="20" />
+<hkern g1="uni0474" g2="afii10035" k="20" />
+<hkern g1="uni0474" g2="afii10038" k="61" />
+<hkern g1="uni0474" g2="afii10049" k="20" />
+<hkern g1="uni0474" g2="afii10069" k="82" />
+<hkern g1="uni0474" g2="afii10070" k="41" />
+<hkern g1="uni0474" g2="afii10077" k="82" />
+<hkern g1="uni0474" g2="afii10080" k="41" />
+<hkern g1="uni0474" g2="afii10083" k="41" />
+<hkern g1="uni0474" g2="afii10086" k="41" />
+<hkern g1="uni0474" g2="afii10089" k="41" />
+<hkern g1="uni0474" g2="afii10071" k="41" />
+<hkern g1="uni0474" g2="afii10099" k="-102" />
+<hkern g1="uni0474" g2="afii10101" k="41" />
+<hkern g1="uni0474" g2="afii10102" k="20" />
+<hkern g1="uni0474" g2="afii10106" k="82" />
+<hkern g1="uni0474" g2="afii10108" k="-102" />
+<hkern g1="uni0474" g2="quotesinglbase" k="123" />
+<hkern g1="uni0474" g2="quotedblbase" k="123" />
+<hkern g1="uni0474" g2="uni0450" k="41" />
+<hkern g1="uni0474" g2="uni0460" k="20" />
+<hkern g1="uni0474" g2="uni0466" k="143" />
+<hkern g1="uni0474" g2="uni0467" k="82" />
+<hkern g1="uni0474" g2="uni0472" k="20" />
+<hkern g1="uni0474" g2="uni0473" k="41" />
+<hkern g1="uni0474" g2="uni0478" k="20" />
+<hkern g1="uni0474" g2="uni0479" k="41" />
+<hkern g1="uni0474" g2="uni047A" k="20" />
+<hkern g1="uni0474" g2="uni047B" k="41" />
+<hkern g1="uni0474" g2="uni047C" k="20" />
+<hkern g1="uni0474" g2="uni047D" k="41" />
+<hkern g1="uni0474" g2="uni047E" k="20" />
+<hkern g1="uni0474" g2="uni0480" k="20" />
+<hkern g1="uni0474" g2="uni0481" k="41" />
+<hkern g1="uni0474" g2="uni048D" k="-102" />
+<hkern g1="uni0474" g2="uni049F" k="-102" />
+<hkern g1="uni0474" g2="uni04A8" k="20" />
+<hkern g1="uni0474" g2="uni04A9" k="41" />
+<hkern g1="uni0474" g2="uni04AA" k="20" />
+<hkern g1="uni0474" g2="uni04AB" k="41" />
+<hkern g1="uni0474" g2="uni04B7" k="41" />
+<hkern g1="uni0474" g2="uni04B9" k="41" />
+<hkern g1="uni0474" g2="uni04BC" k="41" />
+<hkern g1="uni0474" g2="uni04BD" k="61" />
+<hkern g1="uni0474" g2="uni04BE" k="41" />
+<hkern g1="uni0474" g2="uni04BF" k="61" />
+<hkern g1="uni0474" g2="uni04C5" k="102" />
+<hkern g1="uni0474" g2="uni04C6" k="82" />
+<hkern g1="uni0474" g2="uni04CC" k="41" />
+<hkern g1="uni0474" g2="uni04D0" k="143" />
+<hkern g1="uni0474" g2="uni04D2" k="143" />
+<hkern g1="uni0474" g2="uni04D4" k="143" />
+<hkern g1="uni0474" g2="uni04D7" k="41" />
+<hkern g1="uni0474" g2="uni04E6" k="20" />
+<hkern g1="uni0474" g2="uni04E7" k="41" />
+<hkern g1="uni0474" g2="uni04E8" k="20" />
+<hkern g1="uni0474" g2="uni04E9" k="41" />
+<hkern g1="uni0474" g2="uni04EA" k="20" />
+<hkern g1="uni0474" g2="uni04EB" k="41" />
+<hkern g1="uni0474" g2="uni04F5" k="41" />
+<hkern g1="uni0474" g2="uni0500" k="143" />
+<hkern g1="uni0474" g2="uni0501" k="41" />
+<hkern g1="uni0474" g2="uni0502" k="143" />
+<hkern g1="uni0474" g2="uni0503" k="41" />
+<hkern g1="uni0474" g2="uni0508" k="102" />
+<hkern g1="uni0474" g2="uni0509" k="82" />
+<hkern g1="uni0474" g2="uni050C" k="20" />
+<hkern g1="uni0474" g2="uni050D" k="41" />
+<hkern g1="uni0474" g2="uni0511" k="41" />
+<hkern g1="uni0474" g2="uni0512" k="102" />
+<hkern g1="uni0474" g2="uni0513" k="82" />
+<hkern g1="uni0475" g2="comma" k="82" />
+<hkern g1="uni0475" g2="period" k="82" />
+<hkern g1="uni0475" g2="afii10069" k="41" />
+<hkern g1="uni0475" g2="afii10077" k="41" />
+<hkern g1="uni0475" g2="afii10106" k="41" />
+<hkern g1="uni0475" g2="quotesinglbase" k="82" />
+<hkern g1="uni0475" g2="quotedblbase" k="82" />
+<hkern g1="uni0475" g2="uni0467" k="41" />
+<hkern g1="uni0475" g2="uni04C6" k="41" />
+<hkern g1="uni0475" g2="uni0509" k="41" />
+<hkern g1="uni0475" g2="uni0513" k="41" />
+<hkern g1="uni0476" g2="comma" k="123" />
+<hkern g1="uni0476" g2="period" k="123" />
+<hkern g1="uni0476" g2="afii10053" k="20" />
+<hkern g1="uni0476" g2="afii10058" k="102" />
+<hkern g1="uni0476" g2="afii10017" k="143" />
+<hkern g1="uni0476" g2="afii10021" k="102" />
+<hkern g1="uni0476" g2="afii10029" k="102" />
+<hkern g1="uni0476" g2="afii10032" k="20" />
+<hkern g1="uni0476" g2="afii10035" k="20" />
+<hkern g1="uni0476" g2="afii10038" k="61" />
+<hkern g1="uni0476" g2="afii10049" k="20" />
+<hkern g1="uni0476" g2="afii10069" k="82" />
+<hkern g1="uni0476" g2="afii10070" k="41" />
+<hkern g1="uni0476" g2="afii10077" k="82" />
+<hkern g1="uni0476" g2="afii10080" k="41" />
+<hkern g1="uni0476" g2="afii10083" k="41" />
+<hkern g1="uni0476" g2="afii10086" k="41" />
+<hkern g1="uni0476" g2="afii10089" k="41" />
+<hkern g1="uni0476" g2="afii10071" k="41" />
+<hkern g1="uni0476" g2="afii10099" k="-102" />
+<hkern g1="uni0476" g2="afii10101" k="41" />
+<hkern g1="uni0476" g2="afii10102" k="20" />
+<hkern g1="uni0476" g2="afii10106" k="82" />
+<hkern g1="uni0476" g2="afii10108" k="-102" />
+<hkern g1="uni0476" g2="quotesinglbase" k="123" />
+<hkern g1="uni0476" g2="quotedblbase" k="123" />
+<hkern g1="uni0476" g2="uni0450" k="41" />
+<hkern g1="uni0476" g2="uni0460" k="20" />
+<hkern g1="uni0476" g2="uni0466" k="143" />
+<hkern g1="uni0476" g2="uni0467" k="82" />
+<hkern g1="uni0476" g2="uni0472" k="20" />
+<hkern g1="uni0476" g2="uni0473" k="41" />
+<hkern g1="uni0476" g2="uni0478" k="20" />
+<hkern g1="uni0476" g2="uni0479" k="41" />
+<hkern g1="uni0476" g2="uni047A" k="20" />
+<hkern g1="uni0476" g2="uni047B" k="41" />
+<hkern g1="uni0476" g2="uni047C" k="20" />
+<hkern g1="uni0476" g2="uni047D" k="41" />
+<hkern g1="uni0476" g2="uni047E" k="20" />
+<hkern g1="uni0476" g2="uni0480" k="20" />
+<hkern g1="uni0476" g2="uni0481" k="41" />
+<hkern g1="uni0476" g2="uni048D" k="-102" />
+<hkern g1="uni0476" g2="uni049F" k="-102" />
+<hkern g1="uni0476" g2="uni04A8" k="20" />
+<hkern g1="uni0476" g2="uni04A9" k="41" />
+<hkern g1="uni0476" g2="uni04AA" k="20" />
+<hkern g1="uni0476" g2="uni04AB" k="41" />
+<hkern g1="uni0476" g2="uni04B7" k="41" />
+<hkern g1="uni0476" g2="uni04B9" k="41" />
+<hkern g1="uni0476" g2="uni04BC" k="41" />
+<hkern g1="uni0476" g2="uni04BD" k="61" />
+<hkern g1="uni0476" g2="uni04BE" k="41" />
+<hkern g1="uni0476" g2="uni04BF" k="61" />
+<hkern g1="uni0476" g2="uni04C5" k="102" />
+<hkern g1="uni0476" g2="uni04C6" k="82" />
+<hkern g1="uni0476" g2="uni04CC" k="41" />
+<hkern g1="uni0476" g2="uni04D0" k="143" />
+<hkern g1="uni0476" g2="uni04D2" k="143" />
+<hkern g1="uni0476" g2="uni04D4" k="143" />
+<hkern g1="uni0476" g2="uni04D7" k="41" />
+<hkern g1="uni0476" g2="uni04E6" k="20" />
+<hkern g1="uni0476" g2="uni04E7" k="41" />
+<hkern g1="uni0476" g2="uni04E8" k="20" />
+<hkern g1="uni0476" g2="uni04E9" k="41" />
+<hkern g1="uni0476" g2="uni04EA" k="20" />
+<hkern g1="uni0476" g2="uni04EB" k="41" />
+<hkern g1="uni0476" g2="uni04F5" k="41" />
+<hkern g1="uni0476" g2="uni0500" k="143" />
+<hkern g1="uni0476" g2="uni0501" k="41" />
+<hkern g1="uni0476" g2="uni0502" k="143" />
+<hkern g1="uni0476" g2="uni0503" k="41" />
+<hkern g1="uni0476" g2="uni0508" k="102" />
+<hkern g1="uni0476" g2="uni0509" k="82" />
+<hkern g1="uni0476" g2="uni050C" k="20" />
+<hkern g1="uni0476" g2="uni050D" k="41" />
+<hkern g1="uni0476" g2="uni0511" k="41" />
+<hkern g1="uni0476" g2="uni0512" k="102" />
+<hkern g1="uni0476" g2="uni0513" k="82" />
+<hkern g1="uni0477" g2="comma" k="82" />
+<hkern g1="uni0477" g2="period" k="82" />
+<hkern g1="uni0477" g2="afii10069" k="41" />
+<hkern g1="uni0477" g2="afii10077" k="41" />
+<hkern g1="uni0477" g2="afii10106" k="41" />
+<hkern g1="uni0477" g2="quotesinglbase" k="82" />
+<hkern g1="uni0477" g2="quotedblbase" k="82" />
+<hkern g1="uni0477" g2="uni0467" k="41" />
+<hkern g1="uni0477" g2="uni04C6" k="41" />
+<hkern g1="uni0477" g2="uni0509" k="41" />
+<hkern g1="uni0477" g2="uni0513" k="41" />
+<hkern g1="uni0478" g2="comma" k="82" />
+<hkern g1="uni0478" g2="period" k="82" />
+<hkern g1="uni0478" g2="afii10069" k="41" />
+<hkern g1="uni0478" g2="afii10077" k="41" />
+<hkern g1="uni0478" g2="afii10106" k="41" />
+<hkern g1="uni0478" g2="quotesinglbase" k="82" />
+<hkern g1="uni0478" g2="quotedblbase" k="82" />
+<hkern g1="uni0478" g2="uni0467" k="41" />
+<hkern g1="uni0478" g2="uni04C6" k="41" />
+<hkern g1="uni0478" g2="uni0509" k="41" />
+<hkern g1="uni0478" g2="uni0513" k="41" />
+<hkern g1="uni0479" g2="comma" k="82" />
+<hkern g1="uni0479" g2="period" k="82" />
+<hkern g1="uni0479" g2="afii10069" k="41" />
+<hkern g1="uni0479" g2="afii10077" k="41" />
+<hkern g1="uni0479" g2="afii10106" k="41" />
+<hkern g1="uni0479" g2="quotesinglbase" k="82" />
+<hkern g1="uni0479" g2="quotedblbase" k="82" />
+<hkern g1="uni0479" g2="uni0467" k="41" />
+<hkern g1="uni0479" g2="uni04C6" k="41" />
+<hkern g1="uni0479" g2="uni0509" k="41" />
+<hkern g1="uni0479" g2="uni0513" k="41" />
+<hkern g1="uni047A" g2="comma" k="82" />
+<hkern g1="uni047A" g2="period" k="82" />
+<hkern g1="uni047A" g2="afii10051" k="20" />
+<hkern g1="uni047A" g2="afii10058" k="41" />
+<hkern g1="uni047A" g2="afii10060" k="20" />
+<hkern g1="uni047A" g2="afii10062" k="41" />
+<hkern g1="uni047A" g2="afii10017" k="41" />
+<hkern g1="uni047A" g2="afii10021" k="41" />
+<hkern g1="uni047A" g2="afii10024" k="41" />
+<hkern g1="uni047A" g2="afii10025" k="20" />
+<hkern g1="uni047A" g2="afii10029" k="41" />
+<hkern g1="uni047A" g2="afii10036" k="61" />
+<hkern g1="uni047A" g2="afii10037" k="41" />
+<hkern g1="uni047A" g2="afii10039" k="41" />
+<hkern g1="uni047A" g2="afii10041" k="41" />
+<hkern g1="uni047A" g2="afii10044" k="20" />
+<hkern g1="uni047A" g2="afii10047" k="20" />
+<hkern g1="uni047A" g2="afii10069" k="20" />
+<hkern g1="uni047A" g2="afii10077" k="20" />
+<hkern g1="uni047A" g2="afii10106" k="20" />
+<hkern g1="uni047A" g2="quotesinglbase" k="82" />
+<hkern g1="uni047A" g2="quotedblbase" k="82" />
+<hkern g1="uni047A" g2="uni0466" k="41" />
+<hkern g1="uni047A" g2="uni0467" k="20" />
+<hkern g1="uni047A" g2="uni046E" k="20" />
+<hkern g1="uni047A" g2="uni0470" k="41" />
+<hkern g1="uni047A" g2="uni0474" k="20" />
+<hkern g1="uni047A" g2="uni0476" k="20" />
+<hkern g1="uni047A" g2="uni0496" k="41" />
+<hkern g1="uni047A" g2="uni0498" k="20" />
+<hkern g1="uni047A" g2="uni04A0" k="20" />
+<hkern g1="uni047A" g2="uni04AC" k="61" />
+<hkern g1="uni047A" g2="uni04AE" k="20" />
+<hkern g1="uni047A" g2="uni04B0" k="20" />
+<hkern g1="uni047A" g2="uni04B2" k="41" />
+<hkern g1="uni047A" g2="uni04B4" k="20" />
+<hkern g1="uni047A" g2="uni04B6" k="41" />
+<hkern g1="uni047A" g2="uni04B8" k="41" />
+<hkern g1="uni047A" g2="uni04C1" k="41" />
+<hkern g1="uni047A" g2="uni04C5" k="41" />
+<hkern g1="uni047A" g2="uni04C6" k="20" />
+<hkern g1="uni047A" g2="uni04CB" k="41" />
+<hkern g1="uni047A" g2="uni04D0" k="41" />
+<hkern g1="uni047A" g2="uni04D2" k="41" />
+<hkern g1="uni047A" g2="uni04D4" k="41" />
+<hkern g1="uni047A" g2="uni04DC" k="41" />
+<hkern g1="uni047A" g2="uni04DE" k="20" />
+<hkern g1="uni047A" g2="uni04EC" k="20" />
+<hkern g1="uni047A" g2="uni04EE" k="41" />
+<hkern g1="uni047A" g2="uni04F0" k="41" />
+<hkern g1="uni047A" g2="uni04F2" k="41" />
+<hkern g1="uni047A" g2="uni04F4" k="41" />
+<hkern g1="uni047A" g2="uni04FC" k="41" />
+<hkern g1="uni047A" g2="uni04FE" k="41" />
+<hkern g1="uni047A" g2="uni0504" k="41" />
+<hkern g1="uni047A" g2="uni0506" k="41" />
+<hkern g1="uni047A" g2="uni0508" k="41" />
+<hkern g1="uni047A" g2="uni0509" k="20" />
+<hkern g1="uni047A" g2="uni050E" k="20" />
+<hkern g1="uni047A" g2="uni0512" k="41" />
+<hkern g1="uni047A" g2="uni0513" k="20" />
+<hkern g1="uni047B" g2="quotedbl" k="20" />
+<hkern g1="uni047B" g2="quotesingle" k="20" />
+<hkern g1="uni047B" g2="afii10072" k="41" />
+<hkern g1="uni047B" g2="afii10084" k="20" />
+<hkern g1="uni047B" g2="afii10085" k="20" />
+<hkern g1="uni047B" g2="afii10087" k="41" />
+<hkern g1="uni047B" g2="afii10089" k="20" />
+<hkern g1="uni047B" g2="afii10092" k="20" />
+<hkern g1="uni047B" g2="afii10110" k="20" />
+<hkern g1="uni047B" g2="quoteright" k="20" />
+<hkern g1="uni047B" g2="quotedblright" k="20" />
+<hkern g1="uni047B" g2="uni0497" k="41" />
+<hkern g1="uni047B" g2="uni04A1" k="20" />
+<hkern g1="uni047B" g2="uni04AD" k="20" />
+<hkern g1="uni047B" g2="uni04B3" k="41" />
+<hkern g1="uni047B" g2="uni04B5" k="20" />
+<hkern g1="uni047B" g2="uni04B7" k="20" />
+<hkern g1="uni047B" g2="uni04B9" k="20" />
+<hkern g1="uni047B" g2="uni04C2" k="41" />
+<hkern g1="uni047B" g2="uni04CC" k="20" />
+<hkern g1="uni047B" g2="uni04DD" k="41" />
+<hkern g1="uni047B" g2="uni04EF" k="20" />
+<hkern g1="uni047B" g2="uni04F1" k="20" />
+<hkern g1="uni047B" g2="uni04F3" k="20" />
+<hkern g1="uni047B" g2="uni04F5" k="20" />
+<hkern g1="uni047B" g2="uni04FD" k="41" />
+<hkern g1="uni047B" g2="uni04FF" k="41" />
+<hkern g1="uni047B" g2="uni0505" k="20" />
+<hkern g1="uni047B" g2="uni0507" k="20" />
+<hkern g1="uni047B" g2="uni050F" k="20" />
+<hkern g1="uni047C" g2="comma" k="82" />
+<hkern g1="uni047C" g2="period" k="82" />
+<hkern g1="uni047C" g2="afii10051" k="20" />
+<hkern g1="uni047C" g2="afii10058" k="41" />
+<hkern g1="uni047C" g2="afii10060" k="20" />
+<hkern g1="uni047C" g2="afii10062" k="41" />
+<hkern g1="uni047C" g2="afii10017" k="41" />
+<hkern g1="uni047C" g2="afii10021" k="41" />
+<hkern g1="uni047C" g2="afii10024" k="41" />
+<hkern g1="uni047C" g2="afii10025" k="20" />
+<hkern g1="uni047C" g2="afii10029" k="41" />
+<hkern g1="uni047C" g2="afii10036" k="61" />
+<hkern g1="uni047C" g2="afii10037" k="41" />
+<hkern g1="uni047C" g2="afii10039" k="41" />
+<hkern g1="uni047C" g2="afii10041" k="41" />
+<hkern g1="uni047C" g2="afii10044" k="20" />
+<hkern g1="uni047C" g2="afii10047" k="20" />
+<hkern g1="uni047C" g2="afii10069" k="20" />
+<hkern g1="uni047C" g2="afii10077" k="20" />
+<hkern g1="uni047C" g2="afii10106" k="20" />
+<hkern g1="uni047C" g2="quotesinglbase" k="82" />
+<hkern g1="uni047C" g2="quotedblbase" k="82" />
+<hkern g1="uni047C" g2="uni0466" k="41" />
+<hkern g1="uni047C" g2="uni0467" k="20" />
+<hkern g1="uni047C" g2="uni046E" k="20" />
+<hkern g1="uni047C" g2="uni0470" k="41" />
+<hkern g1="uni047C" g2="uni0474" k="20" />
+<hkern g1="uni047C" g2="uni0476" k="20" />
+<hkern g1="uni047C" g2="uni0496" k="41" />
+<hkern g1="uni047C" g2="uni0498" k="20" />
+<hkern g1="uni047C" g2="uni04A0" k="20" />
+<hkern g1="uni047C" g2="uni04AC" k="61" />
+<hkern g1="uni047C" g2="uni04AE" k="20" />
+<hkern g1="uni047C" g2="uni04B0" k="20" />
+<hkern g1="uni047C" g2="uni04B2" k="41" />
+<hkern g1="uni047C" g2="uni04B4" k="20" />
+<hkern g1="uni047C" g2="uni04B6" k="41" />
+<hkern g1="uni047C" g2="uni04B8" k="41" />
+<hkern g1="uni047C" g2="uni04C1" k="41" />
+<hkern g1="uni047C" g2="uni04C5" k="41" />
+<hkern g1="uni047C" g2="uni04C6" k="20" />
+<hkern g1="uni047C" g2="uni04CB" k="41" />
+<hkern g1="uni047C" g2="uni04D0" k="41" />
+<hkern g1="uni047C" g2="uni04D2" k="41" />
+<hkern g1="uni047C" g2="uni04D4" k="41" />
+<hkern g1="uni047C" g2="uni04DC" k="41" />
+<hkern g1="uni047C" g2="uni04DE" k="20" />
+<hkern g1="uni047C" g2="uni04EC" k="20" />
+<hkern g1="uni047C" g2="uni04EE" k="41" />
+<hkern g1="uni047C" g2="uni04F0" k="41" />
+<hkern g1="uni047C" g2="uni04F2" k="41" />
+<hkern g1="uni047C" g2="uni04F4" k="41" />
+<hkern g1="uni047C" g2="uni04FC" k="41" />
+<hkern g1="uni047C" g2="uni04FE" k="41" />
+<hkern g1="uni047C" g2="uni0504" k="41" />
+<hkern g1="uni047C" g2="uni0506" k="41" />
+<hkern g1="uni047C" g2="uni0508" k="41" />
+<hkern g1="uni047C" g2="uni0509" k="20" />
+<hkern g1="uni047C" g2="uni050E" k="20" />
+<hkern g1="uni047C" g2="uni0512" k="41" />
+<hkern g1="uni047C" g2="uni0513" k="20" />
+<hkern g1="uni047D" g2="quotedbl" k="20" />
+<hkern g1="uni047D" g2="quotesingle" k="20" />
+<hkern g1="uni047D" g2="afii10072" k="41" />
+<hkern g1="uni047D" g2="afii10084" k="20" />
+<hkern g1="uni047D" g2="afii10085" k="20" />
+<hkern g1="uni047D" g2="afii10087" k="41" />
+<hkern g1="uni047D" g2="afii10089" k="20" />
+<hkern g1="uni047D" g2="afii10092" k="20" />
+<hkern g1="uni047D" g2="afii10110" k="20" />
+<hkern g1="uni047D" g2="quoteright" k="20" />
+<hkern g1="uni047D" g2="quotedblright" k="20" />
+<hkern g1="uni047D" g2="uni0497" k="41" />
+<hkern g1="uni047D" g2="uni04A1" k="20" />
+<hkern g1="uni047D" g2="uni04AD" k="20" />
+<hkern g1="uni047D" g2="uni04B3" k="41" />
+<hkern g1="uni047D" g2="uni04B5" k="20" />
+<hkern g1="uni047D" g2="uni04B7" k="20" />
+<hkern g1="uni047D" g2="uni04B9" k="20" />
+<hkern g1="uni047D" g2="uni04C2" k="41" />
+<hkern g1="uni047D" g2="uni04CC" k="20" />
+<hkern g1="uni047D" g2="uni04DD" k="41" />
+<hkern g1="uni047D" g2="uni04EF" k="20" />
+<hkern g1="uni047D" g2="uni04F1" k="20" />
+<hkern g1="uni047D" g2="uni04F3" k="20" />
+<hkern g1="uni047D" g2="uni04F5" k="20" />
+<hkern g1="uni047D" g2="uni04FD" k="41" />
+<hkern g1="uni047D" g2="uni04FF" k="41" />
+<hkern g1="uni047D" g2="uni0505" k="20" />
+<hkern g1="uni047D" g2="uni0507" k="20" />
+<hkern g1="uni047D" g2="uni050F" k="20" />
+<hkern g1="uni047E" g2="comma" k="82" />
+<hkern g1="uni047E" g2="period" k="82" />
+<hkern g1="uni047E" g2="afii10051" k="20" />
+<hkern g1="uni047E" g2="afii10058" k="41" />
+<hkern g1="uni047E" g2="afii10060" k="20" />
+<hkern g1="uni047E" g2="afii10062" k="41" />
+<hkern g1="uni047E" g2="afii10017" k="41" />
+<hkern g1="uni047E" g2="afii10021" k="41" />
+<hkern g1="uni047E" g2="afii10024" k="41" />
+<hkern g1="uni047E" g2="afii10025" k="20" />
+<hkern g1="uni047E" g2="afii10029" k="41" />
+<hkern g1="uni047E" g2="afii10036" k="61" />
+<hkern g1="uni047E" g2="afii10037" k="41" />
+<hkern g1="uni047E" g2="afii10039" k="41" />
+<hkern g1="uni047E" g2="afii10041" k="41" />
+<hkern g1="uni047E" g2="afii10044" k="20" />
+<hkern g1="uni047E" g2="afii10047" k="20" />
+<hkern g1="uni047E" g2="afii10069" k="20" />
+<hkern g1="uni047E" g2="afii10077" k="20" />
+<hkern g1="uni047E" g2="afii10106" k="20" />
+<hkern g1="uni047E" g2="quotesinglbase" k="82" />
+<hkern g1="uni047E" g2="quotedblbase" k="82" />
+<hkern g1="uni047E" g2="uni0466" k="41" />
+<hkern g1="uni047E" g2="uni0467" k="20" />
+<hkern g1="uni047E" g2="uni046E" k="20" />
+<hkern g1="uni047E" g2="uni0470" k="41" />
+<hkern g1="uni047E" g2="uni0474" k="20" />
+<hkern g1="uni047E" g2="uni0476" k="20" />
+<hkern g1="uni047E" g2="uni0496" k="41" />
+<hkern g1="uni047E" g2="uni0498" k="20" />
+<hkern g1="uni047E" g2="uni04A0" k="20" />
+<hkern g1="uni047E" g2="uni04AC" k="61" />
+<hkern g1="uni047E" g2="uni04AE" k="20" />
+<hkern g1="uni047E" g2="uni04B0" k="20" />
+<hkern g1="uni047E" g2="uni04B2" k="41" />
+<hkern g1="uni047E" g2="uni04B4" k="20" />
+<hkern g1="uni047E" g2="uni04B6" k="41" />
+<hkern g1="uni047E" g2="uni04B8" k="41" />
+<hkern g1="uni047E" g2="uni04C1" k="41" />
+<hkern g1="uni047E" g2="uni04C5" k="41" />
+<hkern g1="uni047E" g2="uni04C6" k="20" />
+<hkern g1="uni047E" g2="uni04CB" k="41" />
+<hkern g1="uni047E" g2="uni04D0" k="41" />
+<hkern g1="uni047E" g2="uni04D2" k="41" />
+<hkern g1="uni047E" g2="uni04D4" k="41" />
+<hkern g1="uni047E" g2="uni04DC" k="41" />
+<hkern g1="uni047E" g2="uni04DE" k="20" />
+<hkern g1="uni047E" g2="uni04EC" k="20" />
+<hkern g1="uni047E" g2="uni04EE" k="41" />
+<hkern g1="uni047E" g2="uni04F0" k="41" />
+<hkern g1="uni047E" g2="uni04F2" k="41" />
+<hkern g1="uni047E" g2="uni04F4" k="41" />
+<hkern g1="uni047E" g2="uni04FC" k="41" />
+<hkern g1="uni047E" g2="uni04FE" k="41" />
+<hkern g1="uni047E" g2="uni0504" k="41" />
+<hkern g1="uni047E" g2="uni0506" k="41" />
+<hkern g1="uni047E" g2="uni0508" k="41" />
+<hkern g1="uni047E" g2="uni0509" k="20" />
+<hkern g1="uni047E" g2="uni050E" k="20" />
+<hkern g1="uni047E" g2="uni0512" k="41" />
+<hkern g1="uni047E" g2="uni0513" k="20" />
+<hkern g1="uni047F" g2="comma" k="82" />
+<hkern g1="uni047F" g2="period" k="82" />
+<hkern g1="uni047F" g2="afii10069" k="41" />
+<hkern g1="uni047F" g2="afii10077" k="41" />
+<hkern g1="uni047F" g2="afii10106" k="41" />
+<hkern g1="uni047F" g2="quotesinglbase" k="82" />
+<hkern g1="uni047F" g2="quotedblbase" k="82" />
+<hkern g1="uni047F" g2="uni0467" k="41" />
+<hkern g1="uni047F" g2="uni04C6" k="41" />
+<hkern g1="uni047F" g2="uni0509" k="41" />
+<hkern g1="uni047F" g2="uni0513" k="41" />
+<hkern g1="uni0480" g2="afii10053" k="41" />
+<hkern g1="uni0480" g2="afii10032" k="41" />
+<hkern g1="uni0480" g2="afii10035" k="41" />
+<hkern g1="uni0480" g2="afii10038" k="41" />
+<hkern g1="uni0480" g2="afii10089" k="41" />
+<hkern g1="uni0480" g2="uni0460" k="41" />
+<hkern g1="uni0480" g2="uni0472" k="41" />
+<hkern g1="uni0480" g2="uni0478" k="41" />
+<hkern g1="uni0480" g2="uni047A" k="41" />
+<hkern g1="uni0480" g2="uni047C" k="41" />
+<hkern g1="uni0480" g2="uni047E" k="41" />
+<hkern g1="uni0480" g2="uni0480" k="41" />
+<hkern g1="uni0480" g2="uni04A8" k="41" />
+<hkern g1="uni0480" g2="uni04AA" k="41" />
+<hkern g1="uni0480" g2="uni04B7" k="41" />
+<hkern g1="uni0480" g2="uni04B9" k="41" />
+<hkern g1="uni0480" g2="uni04BC" k="41" />
+<hkern g1="uni0480" g2="uni04BE" k="41" />
+<hkern g1="uni0480" g2="uni04CC" k="41" />
+<hkern g1="uni0480" g2="uni04E6" k="41" />
+<hkern g1="uni0480" g2="uni04E8" k="41" />
+<hkern g1="uni0480" g2="uni04EA" k="41" />
+<hkern g1="uni0480" g2="uni04F5" k="41" />
+<hkern g1="uni0480" g2="uni0500" k="41" />
+<hkern g1="uni0480" g2="uni0502" k="41" />
+<hkern g1="uni0480" g2="uni0505" k="41" />
+<hkern g1="uni0480" g2="uni0507" k="41" />
+<hkern g1="uni0480" g2="uni050C" k="41" />
+<hkern g1="uni048A" g2="afii10057" k="-225" />
+<hkern g1="uni048A" g2="uni04E1" k="-41" />
+<hkern g1="uni048A" g2="uni0505" k="41" />
+<hkern g1="uni048A" g2="uni0507" k="41" />
+<hkern g1="uni048B" g2="quotedbl" k="20" />
+<hkern g1="uni048B" g2="quotesingle" k="20" />
+<hkern g1="uni048B" g2="quoteright" k="20" />
+<hkern g1="uni048B" g2="quotedblright" k="20" />
+<hkern g1="uni048C" g2="quotedbl" k="82" />
+<hkern g1="uni048C" g2="quotesingle" k="82" />
+<hkern g1="uni048C" g2="afii10051" k="41" />
+<hkern g1="uni048C" g2="afii10060" k="41" />
+<hkern g1="uni048C" g2="afii10036" k="82" />
+<hkern g1="uni048C" g2="afii10041" k="82" />
+<hkern g1="uni048C" g2="afii10044" k="41" />
+<hkern g1="uni048C" g2="afii10084" k="41" />
+<hkern g1="uni048C" g2="afii10092" k="41" />
+<hkern g1="uni048C" g2="quoteright" k="82" />
+<hkern g1="uni048C" g2="quotedblright" k="82" />
+<hkern g1="uni048C" g2="uni0470" k="82" />
+<hkern g1="uni048C" g2="uni0474" k="61" />
+<hkern g1="uni048C" g2="uni0476" k="61" />
+<hkern g1="uni048C" g2="uni04A0" k="41" />
+<hkern g1="uni048C" g2="uni04A1" k="41" />
+<hkern g1="uni048C" g2="uni04AC" k="82" />
+<hkern g1="uni048C" g2="uni04AD" k="41" />
+<hkern g1="uni048C" g2="uni04AE" k="61" />
+<hkern g1="uni048C" g2="uni04B0" k="61" />
+<hkern g1="uni048C" g2="uni04B4" k="41" />
+<hkern g1="uni048C" g2="uni04B5" k="41" />
+<hkern g1="uni048C" g2="uni04B6" k="82" />
+<hkern g1="uni048C" g2="uni04B8" k="82" />
+<hkern g1="uni048C" g2="uni04CB" k="82" />
+<hkern g1="uni048C" g2="uni04F4" k="82" />
+<hkern g1="uni048C" g2="uni0504" k="102" />
+<hkern g1="uni048C" g2="uni0506" k="102" />
+<hkern g1="uni048C" g2="uni050E" k="41" />
+<hkern g1="uni048C" g2="uni050F" k="41" />
+<hkern g1="uni048D" g2="quotedbl" k="123" />
+<hkern g1="uni048D" g2="quotesingle" k="123" />
+<hkern g1="uni048D" g2="afii10072" k="41" />
+<hkern g1="uni048D" g2="afii10084" k="102" />
+<hkern g1="uni048D" g2="afii10085" k="61" />
+<hkern g1="uni048D" g2="afii10087" k="41" />
+<hkern g1="uni048D" g2="afii10089" k="82" />
+<hkern g1="uni048D" g2="afii10092" k="102" />
+<hkern g1="uni048D" g2="afii10110" k="61" />
+<hkern g1="uni048D" g2="quoteright" k="123" />
+<hkern g1="uni048D" g2="quotedblright" k="123" />
+<hkern g1="uni048D" g2="uni0461" k="41" />
+<hkern g1="uni048D" g2="uni0475" k="41" />
+<hkern g1="uni048D" g2="uni0477" k="41" />
+<hkern g1="uni048D" g2="uni047F" k="41" />
+<hkern g1="uni048D" g2="uni0497" k="41" />
+<hkern g1="uni048D" g2="uni04A1" k="102" />
+<hkern g1="uni048D" g2="uni04AD" k="102" />
+<hkern g1="uni048D" g2="uni04AF" k="61" />
+<hkern g1="uni048D" g2="uni04B1" k="61" />
+<hkern g1="uni048D" g2="uni04B3" k="41" />
+<hkern g1="uni048D" g2="uni04B5" k="102" />
+<hkern g1="uni048D" g2="uni04B7" k="82" />
+<hkern g1="uni048D" g2="uni04B9" k="82" />
+<hkern g1="uni048D" g2="uni04BD" k="41" />
+<hkern g1="uni048D" g2="uni04BF" k="41" />
+<hkern g1="uni048D" g2="uni04C2" k="41" />
+<hkern g1="uni048D" g2="uni04CC" k="82" />
+<hkern g1="uni048D" g2="uni04DD" k="41" />
+<hkern g1="uni048D" g2="uni04E1" k="41" />
+<hkern g1="uni048D" g2="uni04EF" k="61" />
+<hkern g1="uni048D" g2="uni04F1" k="61" />
+<hkern g1="uni048D" g2="uni04F3" k="61" />
+<hkern g1="uni048D" g2="uni04F5" k="82" />
+<hkern g1="uni048D" g2="uni04FD" k="41" />
+<hkern g1="uni048D" g2="uni04FF" k="41" />
+<hkern g1="uni048D" g2="uni0505" k="102" />
+<hkern g1="uni048D" g2="uni0507" k="102" />
+<hkern g1="uni048D" g2="uni050F" k="102" />
+<hkern g1="uni048E" g2="comma" k="266" />
+<hkern g1="uni048E" g2="period" k="266" />
+<hkern g1="uni048E" g2="afii10058" k="123" />
+<hkern g1="uni048E" g2="afii10017" k="102" />
+<hkern g1="uni048E" g2="afii10021" k="123" />
+<hkern g1="uni048E" g2="afii10024" k="41" />
+<hkern g1="uni048E" g2="afii10029" k="123" />
+<hkern g1="uni048E" g2="afii10039" k="41" />
+<hkern g1="uni048E" g2="afii10069" k="102" />
+<hkern g1="uni048E" g2="afii10077" k="102" />
+<hkern g1="uni048E" g2="afii10106" k="102" />
+<hkern g1="uni048E" g2="quotesinglbase" k="266" />
+<hkern g1="uni048E" g2="quotedblbase" k="266" />
+<hkern g1="uni048E" g2="uni0466" k="102" />
+<hkern g1="uni048E" g2="uni0467" k="102" />
+<hkern g1="uni048E" g2="uni046A" k="20" />
+<hkern g1="uni048E" g2="uni0496" k="41" />
+<hkern g1="uni048E" g2="uni04B2" k="41" />
+<hkern g1="uni048E" g2="uni04C1" k="41" />
+<hkern g1="uni048E" g2="uni04C5" k="123" />
+<hkern g1="uni048E" g2="uni04C6" k="102" />
+<hkern g1="uni048E" g2="uni04D0" k="102" />
+<hkern g1="uni048E" g2="uni04D2" k="102" />
+<hkern g1="uni048E" g2="uni04D4" k="102" />
+<hkern g1="uni048E" g2="uni04DC" k="41" />
+<hkern g1="uni048E" g2="uni04FC" k="41" />
+<hkern g1="uni048E" g2="uni04FE" k="41" />
+<hkern g1="uni048E" g2="uni0500" k="82" />
+<hkern g1="uni048E" g2="uni0502" k="82" />
+<hkern g1="uni048E" g2="uni0508" k="123" />
+<hkern g1="uni048E" g2="uni0509" k="102" />
+<hkern g1="uni048E" g2="uni0512" k="123" />
+<hkern g1="uni048E" g2="uni0513" k="102" />
+<hkern g1="uni048F" g2="quotedbl" k="20" />
+<hkern g1="uni048F" g2="quotesingle" k="20" />
+<hkern g1="uni048F" g2="afii10072" k="41" />
+<hkern g1="uni048F" g2="afii10084" k="20" />
+<hkern g1="uni048F" g2="afii10085" k="20" />
+<hkern g1="uni048F" g2="afii10087" k="41" />
+<hkern g1="uni048F" g2="afii10089" k="20" />
+<hkern g1="uni048F" g2="afii10092" k="20" />
+<hkern g1="uni048F" g2="afii10110" k="20" />
+<hkern g1="uni048F" g2="quoteright" k="20" />
+<hkern g1="uni048F" g2="quotedblright" k="20" />
+<hkern g1="uni048F" g2="uni0497" k="41" />
+<hkern g1="uni048F" g2="uni04A1" k="20" />
+<hkern g1="uni048F" g2="uni04AD" k="20" />
+<hkern g1="uni048F" g2="uni04B3" k="41" />
+<hkern g1="uni048F" g2="uni04B5" k="20" />
+<hkern g1="uni048F" g2="uni04B7" k="20" />
+<hkern g1="uni048F" g2="uni04B9" k="20" />
+<hkern g1="uni048F" g2="uni04C2" k="41" />
+<hkern g1="uni048F" g2="uni04CC" k="20" />
+<hkern g1="uni048F" g2="uni04DD" k="41" />
+<hkern g1="uni048F" g2="uni04EF" k="20" />
+<hkern g1="uni048F" g2="uni04F1" k="20" />
+<hkern g1="uni048F" g2="uni04F3" k="20" />
+<hkern g1="uni048F" g2="uni04F5" k="20" />
+<hkern g1="uni048F" g2="uni04FD" k="41" />
+<hkern g1="uni048F" g2="uni04FF" k="41" />
+<hkern g1="uni048F" g2="uni0505" k="20" />
+<hkern g1="uni048F" g2="uni0507" k="20" />
+<hkern g1="uni048F" g2="uni050F" k="20" />
+<hkern g1="uni0492" g2="comma" k="102" />
+<hkern g1="uni0492" g2="hyphen" k="41" />
+<hkern g1="uni0492" g2="period" k="102" />
+<hkern g1="uni0492" g2="afii10051" k="-41" />
+<hkern g1="uni0492" g2="afii10053" k="41" />
+<hkern g1="uni0492" g2="afii10058" k="82" />
+<hkern g1="uni0492" g2="afii10060" k="-41" />
+<hkern g1="uni0492" g2="afii10017" k="123" />
+<hkern g1="uni0492" g2="afii10021" k="82" />
+<hkern g1="uni0492" g2="afii10029" k="82" />
+<hkern g1="uni0492" g2="afii10032" k="41" />
+<hkern g1="uni0492" g2="afii10035" k="41" />
+<hkern g1="uni0492" g2="afii10036" k="-41" />
+<hkern g1="uni0492" g2="afii10038" k="61" />
+<hkern g1="uni0492" g2="afii10044" k="-41" />
+<hkern g1="uni0492" g2="afii10067" k="61" />
+<hkern g1="uni0492" g2="afii10068" k="61" />
+<hkern g1="uni0492" g2="afii10069" k="102" />
+<hkern g1="uni0492" g2="afii10070" k="82" />
+<hkern g1="uni0492" g2="afii10072" k="41" />
+<hkern g1="uni0492" g2="afii10073" k="41" />
+<hkern g1="uni0492" g2="afii10074" k="61" />
+<hkern g1="uni0492" g2="afii10075" k="61" />
+<hkern g1="uni0492" g2="afii10076" k="61" />
+<hkern g1="uni0492" g2="afii10077" k="102" />
+<hkern g1="uni0492" g2="afii10078" k="61" />
+<hkern g1="uni0492" g2="afii10079" k="61" />
+<hkern g1="uni0492" g2="afii10080" k="82" />
+<hkern g1="uni0492" g2="afii10081" k="61" />
+<hkern g1="uni0492" g2="afii10082" k="61" />
+<hkern g1="uni0492" g2="afii10083" k="82" />
+<hkern g1="uni0492" g2="afii10086" k="82" />
+<hkern g1="uni0492" g2="afii10087" k="41" />
+<hkern g1="uni0492" g2="afii10088" k="61" />
+<hkern g1="uni0492" g2="afii10089" k="102" />
+<hkern g1="uni0492" g2="afii10090" k="61" />
+<hkern g1="uni0492" g2="afii10091" k="61" />
+<hkern g1="uni0492" g2="afii10093" k="61" />
+<hkern g1="uni0492" g2="afii10094" k="61" />
+<hkern g1="uni0492" g2="afii10095" k="41" />
+<hkern g1="uni0492" g2="afii10096" k="61" />
+<hkern g1="uni0492" g2="afii10071" k="82" />
+<hkern g1="uni0492" g2="afii10099" k="-41" />
+<hkern g1="uni0492" g2="afii10100" k="61" />
+<hkern g1="uni0492" g2="afii10101" k="82" />
+<hkern g1="uni0492" g2="afii10102" k="61" />
+<hkern g1="uni0492" g2="afii10106" k="102" />
+<hkern g1="uni0492" g2="afii10107" k="61" />
+<hkern g1="uni0492" g2="afii10108" k="-41" />
+<hkern g1="uni0492" g2="afii10109" k="61" />
+<hkern g1="uni0492" g2="afii10193" k="61" />
+<hkern g1="uni0492" g2="afii10098" k="61" />
+<hkern g1="uni0492" g2="endash" k="41" />
+<hkern g1="uni0492" g2="emdash" k="41" />
+<hkern g1="uni0492" g2="afii00208" k="41" />
+<hkern g1="uni0492" g2="quotesinglbase" k="102" />
+<hkern g1="uni0492" g2="quotedblbase" k="102" />
+<hkern g1="uni0492" g2="uni0450" k="82" />
+<hkern g1="uni0492" g2="uni045D" k="61" />
+<hkern g1="uni0492" g2="uni0460" k="41" />
+<hkern g1="uni0492" g2="uni0465" k="61" />
+<hkern g1="uni0492" g2="uni0466" k="123" />
+<hkern g1="uni0492" g2="uni0467" k="102" />
+<hkern g1="uni0492" g2="uni0469" k="61" />
+<hkern g1="uni0492" g2="uni046B" k="41" />
+<hkern g1="uni0492" g2="uni046D" k="61" />
+<hkern g1="uni0492" g2="uni0471" k="61" />
+<hkern g1="uni0492" g2="uni0472" k="41" />
+<hkern g1="uni0492" g2="uni0473" k="82" />
+<hkern g1="uni0492" g2="uni0478" k="41" />
+<hkern g1="uni0492" g2="uni0479" k="82" />
+<hkern g1="uni0492" g2="uni047A" k="41" />
+<hkern g1="uni0492" g2="uni047B" k="82" />
+<hkern g1="uni0492" g2="uni047C" k="41" />
+<hkern g1="uni0492" g2="uni047D" k="82" />
+<hkern g1="uni0492" g2="uni047E" k="41" />
+<hkern g1="uni0492" g2="uni0480" k="41" />
+<hkern g1="uni0492" g2="uni0481" k="82" />
+<hkern g1="uni0492" g2="uni048B" k="61" />
+<hkern g1="uni0492" g2="uni048D" k="-41" />
+<hkern g1="uni0492" g2="uni048F" k="61" />
+<hkern g1="uni0492" g2="uni0495" k="61" />
+<hkern g1="uni0492" g2="uni0497" k="41" />
+<hkern g1="uni0492" g2="uni0499" k="41" />
+<hkern g1="uni0492" g2="uni049B" k="61" />
+<hkern g1="uni0492" g2="uni049D" k="61" />
+<hkern g1="uni0492" g2="uni049F" k="-41" />
+<hkern g1="uni0492" g2="uni04A0" k="-41" />
+<hkern g1="uni0492" g2="uni04A3" k="61" />
+<hkern g1="uni0492" g2="uni04A5" k="61" />
+<hkern g1="uni0492" g2="uni04A7" k="61" />
+<hkern g1="uni0492" g2="uni04A8" k="41" />
+<hkern g1="uni0492" g2="uni04A9" k="82" />
+<hkern g1="uni0492" g2="uni04AA" k="41" />
+<hkern g1="uni0492" g2="uni04AB" k="82" />
+<hkern g1="uni0492" g2="uni04AC" k="-41" />
+<hkern g1="uni0492" g2="uni04B3" k="41" />
+<hkern g1="uni0492" g2="uni04B4" k="-41" />
+<hkern g1="uni0492" g2="uni04B7" k="102" />
+<hkern g1="uni0492" g2="uni04B9" k="102" />
+<hkern g1="uni0492" g2="uni04BB" k="61" />
+<hkern g1="uni0492" g2="uni04BC" k="41" />
+<hkern g1="uni0492" g2="uni04BD" k="61" />
+<hkern g1="uni0492" g2="uni04BE" k="41" />
+<hkern g1="uni0492" g2="uni04BF" k="61" />
+<hkern g1="uni0492" g2="uni04C2" k="41" />
+<hkern g1="uni0492" g2="uni04C4" k="61" />
+<hkern g1="uni0492" g2="uni04C5" k="82" />
+<hkern g1="uni0492" g2="uni04C6" k="102" />
+<hkern g1="uni0492" g2="uni04C8" k="61" />
+<hkern g1="uni0492" g2="uni04CA" k="61" />
+<hkern g1="uni0492" g2="uni04CC" k="102" />
+<hkern g1="uni0492" g2="uni04CE" k="61" />
+<hkern g1="uni0492" g2="uni04D0" k="123" />
+<hkern g1="uni0492" g2="uni04D2" k="123" />
+<hkern g1="uni0492" g2="uni04D4" k="123" />
+<hkern g1="uni0492" g2="uni04D7" k="82" />
+<hkern g1="uni0492" g2="uni04DD" k="41" />
+<hkern g1="uni0492" g2="uni04DF" k="41" />
+<hkern g1="uni0492" g2="uni04E3" k="61" />
+<hkern g1="uni0492" g2="uni04E5" k="61" />
+<hkern g1="uni0492" g2="uni04E6" k="41" />
+<hkern g1="uni0492" g2="uni04E7" k="82" />
+<hkern g1="uni0492" g2="uni04E8" k="41" />
+<hkern g1="uni0492" g2="uni04E9" k="82" />
+<hkern g1="uni0492" g2="uni04EA" k="41" />
+<hkern g1="uni0492" g2="uni04EB" k="82" />
+<hkern g1="uni0492" g2="uni04ED" k="41" />
+<hkern g1="uni0492" g2="uni04F5" k="102" />
+<hkern g1="uni0492" g2="uni04F7" k="61" />
+<hkern g1="uni0492" g2="uni04F9" k="61" />
+<hkern g1="uni0492" g2="uni04FD" k="41" />
+<hkern g1="uni0492" g2="uni04FF" k="41" />
+<hkern g1="uni0492" g2="uni0500" k="102" />
+<hkern g1="uni0492" g2="uni0501" k="82" />
+<hkern g1="uni0492" g2="uni0502" k="102" />
+<hkern g1="uni0492" g2="uni0503" k="82" />
+<hkern g1="uni0492" g2="uni0505" k="41" />
+<hkern g1="uni0492" g2="uni0507" k="41" />
+<hkern g1="uni0492" g2="uni0508" k="82" />
+<hkern g1="uni0492" g2="uni0509" k="102" />
+<hkern g1="uni0492" g2="uni050B" k="61" />
+<hkern g1="uni0492" g2="uni050C" k="41" />
+<hkern g1="uni0492" g2="uni050D" k="82" />
+<hkern g1="uni0492" g2="uni050E" k="-41" />
+<hkern g1="uni0492" g2="uni0511" k="82" />
+<hkern g1="uni0492" g2="uni0512" k="82" />
+<hkern g1="uni0492" g2="uni0513" k="102" />
+<hkern g1="uni0493" g2="comma" k="61" />
+<hkern g1="uni0493" g2="period" k="61" />
+<hkern g1="uni0493" g2="afii10069" k="61" />
+<hkern g1="uni0493" g2="afii10070" k="41" />
+<hkern g1="uni0493" g2="afii10077" k="61" />
+<hkern g1="uni0493" g2="afii10080" k="41" />
+<hkern g1="uni0493" g2="afii10083" k="41" />
+<hkern g1="uni0493" g2="afii10086" k="41" />
+<hkern g1="uni0493" g2="afii10071" k="41" />
+<hkern g1="uni0493" g2="afii10101" k="41" />
+<hkern g1="uni0493" g2="afii10106" k="61" />
+<hkern g1="uni0493" g2="quotesinglbase" k="61" />
+<hkern g1="uni0493" g2="quotedblbase" k="61" />
+<hkern g1="uni0493" g2="uni0450" k="41" />
+<hkern g1="uni0493" g2="uni0467" k="61" />
+<hkern g1="uni0493" g2="uni0473" k="41" />
+<hkern g1="uni0493" g2="uni0479" k="41" />
+<hkern g1="uni0493" g2="uni047B" k="41" />
+<hkern g1="uni0493" g2="uni047D" k="41" />
+<hkern g1="uni0493" g2="uni0481" k="41" />
+<hkern g1="uni0493" g2="uni04A9" k="41" />
+<hkern g1="uni0493" g2="uni04AB" k="41" />
+<hkern g1="uni0493" g2="uni04C6" k="61" />
+<hkern g1="uni0493" g2="uni04D7" k="41" />
+<hkern g1="uni0493" g2="uni04E7" k="41" />
+<hkern g1="uni0493" g2="uni04E9" k="41" />
+<hkern g1="uni0493" g2="uni04EB" k="41" />
+<hkern g1="uni0493" g2="uni0501" k="41" />
+<hkern g1="uni0493" g2="uni0503" k="41" />
+<hkern g1="uni0493" g2="uni0509" k="61" />
+<hkern g1="uni0493" g2="uni050D" k="41" />
+<hkern g1="uni0493" g2="uni0511" k="41" />
+<hkern g1="uni0493" g2="uni0513" k="61" />
+<hkern g1="uni0494" g2="quotedbl" k="61" />
+<hkern g1="uni0494" g2="quotesingle" k="61" />
+<hkern g1="uni0494" g2="afii10051" k="61" />
+<hkern g1="uni0494" g2="afii10057" k="-102" />
+<hkern g1="uni0494" g2="afii10060" k="61" />
+<hkern g1="uni0494" g2="afii10036" k="61" />
+<hkern g1="uni0494" g2="afii10041" k="82" />
+<hkern g1="uni0494" g2="afii10044" k="61" />
+<hkern g1="uni0494" g2="afii10084" k="41" />
+<hkern g1="uni0494" g2="afii10089" k="41" />
+<hkern g1="uni0494" g2="afii10092" k="41" />
+<hkern g1="uni0494" g2="quoteright" k="61" />
+<hkern g1="uni0494" g2="quotedblright" k="61" />
+<hkern g1="uni0494" g2="uni0470" k="82" />
+<hkern g1="uni0494" g2="uni0474" k="61" />
+<hkern g1="uni0494" g2="uni0476" k="61" />
+<hkern g1="uni0494" g2="uni04A0" k="61" />
+<hkern g1="uni0494" g2="uni04A1" k="41" />
+<hkern g1="uni0494" g2="uni04AC" k="61" />
+<hkern g1="uni0494" g2="uni04AD" k="41" />
+<hkern g1="uni0494" g2="uni04AE" k="41" />
+<hkern g1="uni0494" g2="uni04B0" k="41" />
+<hkern g1="uni0494" g2="uni04B4" k="61" />
+<hkern g1="uni0494" g2="uni04B5" k="41" />
+<hkern g1="uni0494" g2="uni04B6" k="82" />
+<hkern g1="uni0494" g2="uni04B7" k="41" />
+<hkern g1="uni0494" g2="uni04B8" k="82" />
+<hkern g1="uni0494" g2="uni04B9" k="41" />
+<hkern g1="uni0494" g2="uni04CB" k="82" />
+<hkern g1="uni0494" g2="uni04CC" k="41" />
+<hkern g1="uni0494" g2="uni04F4" k="82" />
+<hkern g1="uni0494" g2="uni04F5" k="41" />
+<hkern g1="uni0494" g2="uni0504" k="41" />
+<hkern g1="uni0494" g2="uni0505" k="61" />
+<hkern g1="uni0494" g2="uni0506" k="41" />
+<hkern g1="uni0494" g2="uni0507" k="61" />
+<hkern g1="uni0494" g2="uni050E" k="61" />
+<hkern g1="uni0494" g2="uni050F" k="41" />
+<hkern g1="uni0495" g2="quotedbl" k="61" />
+<hkern g1="uni0495" g2="quotesingle" k="61" />
+<hkern g1="uni0495" g2="quoteright" k="61" />
+<hkern g1="uni0495" g2="quotedblright" k="61" />
+<hkern g1="uni0495" g2="uni0505" k="41" />
+<hkern g1="uni0495" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="afii10053" k="41" />
+<hkern g1="uni0496" g2="afii10057" k="-225" />
+<hkern g1="uni0496" g2="afii10032" k="41" />
+<hkern g1="uni0496" g2="afii10035" k="41" />
+<hkern g1="uni0496" g2="afii10038" k="61" />
+<hkern g1="uni0496" g2="afii10084" k="41" />
+<hkern g1="uni0496" g2="afii10089" k="82" />
+<hkern g1="uni0496" g2="afii10092" k="41" />
+<hkern g1="uni0496" g2="uni0460" k="41" />
+<hkern g1="uni0496" g2="uni046F" k="-61" />
+<hkern g1="uni0496" g2="uni0471" k="20" />
+<hkern g1="uni0496" g2="uni0472" k="41" />
+<hkern g1="uni0496" g2="uni0478" k="41" />
+<hkern g1="uni0496" g2="uni047A" k="41" />
+<hkern g1="uni0496" g2="uni047C" k="41" />
+<hkern g1="uni0496" g2="uni047E" k="41" />
+<hkern g1="uni0496" g2="uni0480" k="41" />
+<hkern g1="uni0496" g2="uni04A1" k="41" />
+<hkern g1="uni0496" g2="uni04A8" k="41" />
+<hkern g1="uni0496" g2="uni04AA" k="41" />
+<hkern g1="uni0496" g2="uni04AD" k="41" />
+<hkern g1="uni0496" g2="uni04B5" k="41" />
+<hkern g1="uni0496" g2="uni04B7" k="82" />
+<hkern g1="uni0496" g2="uni04B9" k="82" />
+<hkern g1="uni0496" g2="uni04BC" k="61" />
+<hkern g1="uni0496" g2="uni04BD" k="41" />
+<hkern g1="uni0496" g2="uni04BE" k="61" />
+<hkern g1="uni0496" g2="uni04BF" k="41" />
+<hkern g1="uni0496" g2="uni04CC" k="82" />
+<hkern g1="uni0496" g2="uni04E6" k="41" />
+<hkern g1="uni0496" g2="uni04E8" k="41" />
+<hkern g1="uni0496" g2="uni04EA" k="41" />
+<hkern g1="uni0496" g2="uni04F5" k="82" />
+<hkern g1="uni0496" g2="uni0505" k="41" />
+<hkern g1="uni0496" g2="uni0507" k="41" />
+<hkern g1="uni0496" g2="uni050C" k="41" />
+<hkern g1="uni0496" g2="uni050F" k="41" />
+<hkern g1="uni0497" g2="afii10070" k="20" />
+<hkern g1="uni0497" g2="afii10080" k="20" />
+<hkern g1="uni0497" g2="afii10083" k="20" />
+<hkern g1="uni0497" g2="afii10086" k="20" />
+<hkern g1="uni0497" g2="afii10089" k="20" />
+<hkern g1="uni0497" g2="afii10071" k="20" />
+<hkern g1="uni0497" g2="afii10101" k="20" />
+<hkern g1="uni0497" g2="uni0450" k="20" />
+<hkern g1="uni0497" g2="uni0473" k="20" />
+<hkern g1="uni0497" g2="uni0479" k="20" />
+<hkern g1="uni0497" g2="uni047B" k="20" />
+<hkern g1="uni0497" g2="uni047D" k="20" />
+<hkern g1="uni0497" g2="uni0481" k="20" />
+<hkern g1="uni0497" g2="uni04A9" k="20" />
+<hkern g1="uni0497" g2="uni04AB" k="20" />
+<hkern g1="uni0497" g2="uni04B7" k="20" />
+<hkern g1="uni0497" g2="uni04B9" k="20" />
+<hkern g1="uni0497" g2="uni04CC" k="20" />
+<hkern g1="uni0497" g2="uni04D7" k="20" />
+<hkern g1="uni0497" g2="uni04E7" k="20" />
+<hkern g1="uni0497" g2="uni04E9" k="20" />
+<hkern g1="uni0497" g2="uni04EB" k="20" />
+<hkern g1="uni0497" g2="uni04F5" k="20" />
+<hkern g1="uni0497" g2="uni0501" k="20" />
+<hkern g1="uni0497" g2="uni0503" k="20" />
+<hkern g1="uni0497" g2="uni0505" k="41" />
+<hkern g1="uni0497" g2="uni0507" k="41" />
+<hkern g1="uni0497" g2="uni050D" k="20" />
+<hkern g1="uni0497" g2="uni0511" k="20" />
+<hkern g1="uni0498" g2="comma" k="82" />
+<hkern g1="uni0498" g2="period" k="82" />
+<hkern g1="uni0498" g2="quotesinglbase" k="82" />
+<hkern g1="uni0498" g2="quotedblbase" k="82" />
+<hkern g1="uni0498" g2="uni0474" k="20" />
+<hkern g1="uni0498" g2="uni0476" k="20" />
+<hkern g1="uni0498" g2="uni04AE" k="20" />
+<hkern g1="uni0498" g2="uni04B0" k="20" />
+<hkern g1="uni0498" g2="uni0504" k="41" />
+<hkern g1="uni0498" g2="uni0506" k="41" />
+<hkern g1="uni0499" g2="afii10097" k="-41" />
+<hkern g1="uni049A" g2="afii10053" k="41" />
+<hkern g1="uni049A" g2="afii10057" k="-225" />
+<hkern g1="uni049A" g2="afii10032" k="41" />
+<hkern g1="uni049A" g2="afii10035" k="41" />
+<hkern g1="uni049A" g2="afii10038" k="61" />
+<hkern g1="uni049A" g2="afii10084" k="41" />
+<hkern g1="uni049A" g2="afii10089" k="82" />
+<hkern g1="uni049A" g2="afii10092" k="41" />
+<hkern g1="uni049A" g2="uni0460" k="41" />
+<hkern g1="uni049A" g2="uni046F" k="-61" />
+<hkern g1="uni049A" g2="uni0471" k="20" />
+<hkern g1="uni049A" g2="uni0472" k="41" />
+<hkern g1="uni049A" g2="uni0478" k="41" />
+<hkern g1="uni049A" g2="uni047A" k="41" />
+<hkern g1="uni049A" g2="uni047C" k="41" />
+<hkern g1="uni049A" g2="uni047E" k="41" />
+<hkern g1="uni049A" g2="uni0480" k="41" />
+<hkern g1="uni049A" g2="uni04A1" k="41" />
+<hkern g1="uni049A" g2="uni04A8" k="41" />
+<hkern g1="uni049A" g2="uni04AA" k="41" />
+<hkern g1="uni049A" g2="uni04AD" k="41" />
+<hkern g1="uni049A" g2="uni04B5" k="41" />
+<hkern g1="uni049A" g2="uni04B7" k="82" />
+<hkern g1="uni049A" g2="uni04B9" k="82" />
+<hkern g1="uni049A" g2="uni04BC" k="61" />
+<hkern g1="uni049A" g2="uni04BD" k="41" />
+<hkern g1="uni049A" g2="uni04BE" k="61" />
+<hkern g1="uni049A" g2="uni04BF" k="41" />
+<hkern g1="uni049A" g2="uni04CC" k="82" />
+<hkern g1="uni049A" g2="uni04E6" k="41" />
+<hkern g1="uni049A" g2="uni04E8" k="41" />
+<hkern g1="uni049A" g2="uni04EA" k="41" />
+<hkern g1="uni049A" g2="uni04F5" k="82" />
+<hkern g1="uni049A" g2="uni0505" k="41" />
+<hkern g1="uni049A" g2="uni0507" k="41" />
+<hkern g1="uni049A" g2="uni050C" k="41" />
+<hkern g1="uni049A" g2="uni050F" k="41" />
+<hkern g1="uni049B" g2="afii10070" k="20" />
+<hkern g1="uni049B" g2="afii10080" k="20" />
+<hkern g1="uni049B" g2="afii10083" k="20" />
+<hkern g1="uni049B" g2="afii10086" k="20" />
+<hkern g1="uni049B" g2="afii10089" k="20" />
+<hkern g1="uni049B" g2="afii10071" k="20" />
+<hkern g1="uni049B" g2="afii10101" k="20" />
+<hkern g1="uni049B" g2="uni0450" k="20" />
+<hkern g1="uni049B" g2="uni0473" k="20" />
+<hkern g1="uni049B" g2="uni0479" k="20" />
+<hkern g1="uni049B" g2="uni047B" k="20" />
+<hkern g1="uni049B" g2="uni047D" k="20" />
+<hkern g1="uni049B" g2="uni0481" k="20" />
+<hkern g1="uni049B" g2="uni04A9" k="20" />
+<hkern g1="uni049B" g2="uni04AB" k="20" />
+<hkern g1="uni049B" g2="uni04B7" k="20" />
+<hkern g1="uni049B" g2="uni04B9" k="20" />
+<hkern g1="uni049B" g2="uni04CC" k="20" />
+<hkern g1="uni049B" g2="uni04D7" k="20" />
+<hkern g1="uni049B" g2="uni04E7" k="20" />
+<hkern g1="uni049B" g2="uni04E9" k="20" />
+<hkern g1="uni049B" g2="uni04EB" k="20" />
+<hkern g1="uni049B" g2="uni04F5" k="20" />
+<hkern g1="uni049B" g2="uni0501" k="20" />
+<hkern g1="uni049B" g2="uni0503" k="20" />
+<hkern g1="uni049B" g2="uni0505" k="41" />
+<hkern g1="uni049B" g2="uni0507" k="41" />
+<hkern g1="uni049B" g2="uni050D" k="20" />
+<hkern g1="uni049B" g2="uni0511" k="20" />
+<hkern g1="uni049C" g2="afii10053" k="41" />
+<hkern g1="uni049C" g2="afii10032" k="41" />
+<hkern g1="uni049C" g2="afii10035" k="41" />
+<hkern g1="uni049C" g2="afii10038" k="41" />
+<hkern g1="uni049C" g2="afii10041" k="41" />
+<hkern g1="uni049C" g2="afii10089" k="41" />
+<hkern g1="uni049C" g2="uni0460" k="41" />
+<hkern g1="uni049C" g2="uni0470" k="41" />
+<hkern g1="uni049C" g2="uni0472" k="41" />
+<hkern g1="uni049C" g2="uni0478" k="41" />
+<hkern g1="uni049C" g2="uni047A" k="41" />
+<hkern g1="uni049C" g2="uni047C" k="41" />
+<hkern g1="uni049C" g2="uni047E" k="41" />
+<hkern g1="uni049C" g2="uni0480" k="41" />
+<hkern g1="uni049C" g2="uni04A8" k="41" />
+<hkern g1="uni049C" g2="uni04AA" k="41" />
+<hkern g1="uni049C" g2="uni04B6" k="41" />
+<hkern g1="uni049C" g2="uni04B7" k="41" />
+<hkern g1="uni049C" g2="uni04B8" k="41" />
+<hkern g1="uni049C" g2="uni04B9" k="41" />
+<hkern g1="uni049C" g2="uni04BC" k="102" />
+<hkern g1="uni049C" g2="uni04BE" k="102" />
+<hkern g1="uni049C" g2="uni04CB" k="41" />
+<hkern g1="uni049C" g2="uni04CC" k="41" />
+<hkern g1="uni049C" g2="uni04E6" k="41" />
+<hkern g1="uni049C" g2="uni04E8" k="41" />
+<hkern g1="uni049C" g2="uni04EA" k="41" />
+<hkern g1="uni049C" g2="uni04F4" k="41" />
+<hkern g1="uni049C" g2="uni04F5" k="41" />
+<hkern g1="uni049C" g2="uni0500" k="41" />
+<hkern g1="uni049C" g2="uni0502" k="41" />
+<hkern g1="uni049C" g2="uni0505" k="41" />
+<hkern g1="uni049C" g2="uni0507" k="41" />
+<hkern g1="uni049C" g2="uni050C" k="41" />
+<hkern g1="uni049C" g2="uni0510" k="20" />
+<hkern g1="uni049D" g2="afii10070" k="41" />
+<hkern g1="uni049D" g2="afii10080" k="41" />
+<hkern g1="uni049D" g2="afii10083" k="41" />
+<hkern g1="uni049D" g2="afii10086" k="41" />
+<hkern g1="uni049D" g2="afii10089" k="41" />
+<hkern g1="uni049D" g2="afii10071" k="41" />
+<hkern g1="uni049D" g2="afii10101" k="41" />
+<hkern g1="uni049D" g2="uni0450" k="41" />
+<hkern g1="uni049D" g2="uni0473" k="41" />
+<hkern g1="uni049D" g2="uni0479" k="41" />
+<hkern g1="uni049D" g2="uni047B" k="41" />
+<hkern g1="uni049D" g2="uni047D" k="41" />
+<hkern g1="uni049D" g2="uni0481" k="41" />
+<hkern g1="uni049D" g2="uni04A9" k="41" />
+<hkern g1="uni049D" g2="uni04AB" k="41" />
+<hkern g1="uni049D" g2="uni04B7" k="41" />
+<hkern g1="uni049D" g2="uni04B9" k="41" />
+<hkern g1="uni049D" g2="uni04BD" k="41" />
+<hkern g1="uni049D" g2="uni04BF" k="41" />
+<hkern g1="uni049D" g2="uni04CC" k="41" />
+<hkern g1="uni049D" g2="uni04D7" k="41" />
+<hkern g1="uni049D" g2="uni04E7" k="41" />
+<hkern g1="uni049D" g2="uni04E9" k="41" />
+<hkern g1="uni049D" g2="uni04EB" k="41" />
+<hkern g1="uni049D" g2="uni04F5" k="41" />
+<hkern g1="uni049D" g2="uni0501" k="41" />
+<hkern g1="uni049D" g2="uni0503" k="41" />
+<hkern g1="uni049D" g2="uni050D" k="41" />
+<hkern g1="uni049D" g2="uni0511" k="41" />
+<hkern g1="uni049E" g2="afii10053" k="41" />
+<hkern g1="uni049E" g2="afii10032" k="41" />
+<hkern g1="uni049E" g2="afii10035" k="41" />
+<hkern g1="uni049E" g2="afii10038" k="41" />
+<hkern g1="uni049E" g2="afii10041" k="41" />
+<hkern g1="uni049E" g2="afii10089" k="41" />
+<hkern g1="uni049E" g2="uni0460" k="41" />
+<hkern g1="uni049E" g2="uni0470" k="41" />
+<hkern g1="uni049E" g2="uni0472" k="41" />
+<hkern g1="uni049E" g2="uni0478" k="41" />
+<hkern g1="uni049E" g2="uni047A" k="41" />
+<hkern g1="uni049E" g2="uni047C" k="41" />
+<hkern g1="uni049E" g2="uni047E" k="41" />
+<hkern g1="uni049E" g2="uni0480" k="41" />
+<hkern g1="uni049E" g2="uni04A8" k="41" />
+<hkern g1="uni049E" g2="uni04AA" k="41" />
+<hkern g1="uni049E" g2="uni04B6" k="41" />
+<hkern g1="uni049E" g2="uni04B7" k="41" />
+<hkern g1="uni049E" g2="uni04B8" k="41" />
+<hkern g1="uni049E" g2="uni04B9" k="41" />
+<hkern g1="uni049E" g2="uni04BC" k="102" />
+<hkern g1="uni049E" g2="uni04BE" k="102" />
+<hkern g1="uni049E" g2="uni04CB" k="41" />
+<hkern g1="uni049E" g2="uni04CC" k="41" />
+<hkern g1="uni049E" g2="uni04E6" k="41" />
+<hkern g1="uni049E" g2="uni04E8" k="41" />
+<hkern g1="uni049E" g2="uni04EA" k="41" />
+<hkern g1="uni049E" g2="uni04F4" k="41" />
+<hkern g1="uni049E" g2="uni04F5" k="41" />
+<hkern g1="uni049E" g2="uni0500" k="41" />
+<hkern g1="uni049E" g2="uni0502" k="41" />
+<hkern g1="uni049E" g2="uni0505" k="41" />
+<hkern g1="uni049E" g2="uni0507" k="41" />
+<hkern g1="uni049E" g2="uni050C" k="41" />
+<hkern g1="uni049E" g2="uni0510" k="20" />
+<hkern g1="uni049F" g2="afii10070" k="41" />
+<hkern g1="uni049F" g2="afii10080" k="41" />
+<hkern g1="uni049F" g2="afii10083" k="41" />
+<hkern g1="uni049F" g2="afii10086" k="41" />
+<hkern g1="uni049F" g2="afii10089" k="41" />
+<hkern g1="uni049F" g2="afii10071" k="41" />
+<hkern g1="uni049F" g2="afii10101" k="41" />
+<hkern g1="uni049F" g2="uni0450" k="41" />
+<hkern g1="uni049F" g2="uni0473" k="41" />
+<hkern g1="uni049F" g2="uni0479" k="41" />
+<hkern g1="uni049F" g2="uni047B" k="41" />
+<hkern g1="uni049F" g2="uni047D" k="41" />
+<hkern g1="uni049F" g2="uni0481" k="41" />
+<hkern g1="uni049F" g2="uni04A9" k="41" />
+<hkern g1="uni049F" g2="uni04AB" k="41" />
+<hkern g1="uni049F" g2="uni04B7" k="41" />
+<hkern g1="uni049F" g2="uni04B9" k="41" />
+<hkern g1="uni049F" g2="uni04BD" k="41" />
+<hkern g1="uni049F" g2="uni04BF" k="41" />
+<hkern g1="uni049F" g2="uni04CC" k="41" />
+<hkern g1="uni049F" g2="uni04D7" k="41" />
+<hkern g1="uni049F" g2="uni04E7" k="41" />
+<hkern g1="uni049F" g2="uni04E9" k="41" />
+<hkern g1="uni049F" g2="uni04EB" k="41" />
+<hkern g1="uni049F" g2="uni04F5" k="41" />
+<hkern g1="uni049F" g2="uni0501" k="41" />
+<hkern g1="uni049F" g2="uni0503" k="41" />
+<hkern g1="uni049F" g2="uni050D" k="41" />
+<hkern g1="uni049F" g2="uni0511" k="41" />
+<hkern g1="uni04A0" g2="afii10053" k="41" />
+<hkern g1="uni04A0" g2="afii10032" k="41" />
+<hkern g1="uni04A0" g2="afii10035" k="41" />
+<hkern g1="uni04A0" g2="afii10038" k="41" />
+<hkern g1="uni04A0" g2="afii10041" k="41" />
+<hkern g1="uni04A0" g2="afii10089" k="41" />
+<hkern g1="uni04A0" g2="uni0460" k="41" />
+<hkern g1="uni04A0" g2="uni0470" k="41" />
+<hkern g1="uni04A0" g2="uni0472" k="41" />
+<hkern g1="uni04A0" g2="uni0478" k="41" />
+<hkern g1="uni04A0" g2="uni047A" k="41" />
+<hkern g1="uni04A0" g2="uni047C" k="41" />
+<hkern g1="uni04A0" g2="uni047E" k="41" />
+<hkern g1="uni04A0" g2="uni0480" k="41" />
+<hkern g1="uni04A0" g2="uni04A8" k="41" />
+<hkern g1="uni04A0" g2="uni04AA" k="41" />
+<hkern g1="uni04A0" g2="uni04B6" k="41" />
+<hkern g1="uni04A0" g2="uni04B7" k="41" />
+<hkern g1="uni04A0" g2="uni04B8" k="41" />
+<hkern g1="uni04A0" g2="uni04B9" k="41" />
+<hkern g1="uni04A0" g2="uni04BC" k="102" />
+<hkern g1="uni04A0" g2="uni04BE" k="102" />
+<hkern g1="uni04A0" g2="uni04CB" k="41" />
+<hkern g1="uni04A0" g2="uni04CC" k="41" />
+<hkern g1="uni04A0" g2="uni04E6" k="41" />
+<hkern g1="uni04A0" g2="uni04E8" k="41" />
+<hkern g1="uni04A0" g2="uni04EA" k="41" />
+<hkern g1="uni04A0" g2="uni04F4" k="41" />
+<hkern g1="uni04A0" g2="uni04F5" k="41" />
+<hkern g1="uni04A0" g2="uni0500" k="41" />
+<hkern g1="uni04A0" g2="uni0502" k="41" />
+<hkern g1="uni04A0" g2="uni0505" k="41" />
+<hkern g1="uni04A0" g2="uni0507" k="41" />
+<hkern g1="uni04A0" g2="uni050C" k="41" />
+<hkern g1="uni04A0" g2="uni0510" k="20" />
+<hkern g1="uni04A1" g2="afii10070" k="41" />
+<hkern g1="uni04A1" g2="afii10080" k="41" />
+<hkern g1="uni04A1" g2="afii10083" k="41" />
+<hkern g1="uni04A1" g2="afii10086" k="41" />
+<hkern g1="uni04A1" g2="afii10089" k="41" />
+<hkern g1="uni04A1" g2="afii10071" k="41" />
+<hkern g1="uni04A1" g2="afii10101" k="41" />
+<hkern g1="uni04A1" g2="uni0450" k="41" />
+<hkern g1="uni04A1" g2="uni0473" k="41" />
+<hkern g1="uni04A1" g2="uni0479" k="41" />
+<hkern g1="uni04A1" g2="uni047B" k="41" />
+<hkern g1="uni04A1" g2="uni047D" k="41" />
+<hkern g1="uni04A1" g2="uni0481" k="41" />
+<hkern g1="uni04A1" g2="uni04A9" k="41" />
+<hkern g1="uni04A1" g2="uni04AB" k="41" />
+<hkern g1="uni04A1" g2="uni04B7" k="41" />
+<hkern g1="uni04A1" g2="uni04B9" k="41" />
+<hkern g1="uni04A1" g2="uni04BD" k="41" />
+<hkern g1="uni04A1" g2="uni04BF" k="41" />
+<hkern g1="uni04A1" g2="uni04CC" k="41" />
+<hkern g1="uni04A1" g2="uni04D7" k="41" />
+<hkern g1="uni04A1" g2="uni04E7" k="41" />
+<hkern g1="uni04A1" g2="uni04E9" k="41" />
+<hkern g1="uni04A1" g2="uni04EB" k="41" />
+<hkern g1="uni04A1" g2="uni04F5" k="41" />
+<hkern g1="uni04A1" g2="uni0501" k="41" />
+<hkern g1="uni04A1" g2="uni0503" k="41" />
+<hkern g1="uni04A1" g2="uni050D" k="41" />
+<hkern g1="uni04A1" g2="uni0511" k="41" />
+<hkern g1="uni04A2" g2="afii10057" k="-225" />
+<hkern g1="uni04A2" g2="uni04E1" k="-41" />
+<hkern g1="uni04A2" g2="uni0505" k="41" />
+<hkern g1="uni04A2" g2="uni0507" k="41" />
+<hkern g1="uni04A3" g2="quotedbl" k="20" />
+<hkern g1="uni04A3" g2="quotesingle" k="20" />
+<hkern g1="uni04A3" g2="quoteright" k="20" />
+<hkern g1="uni04A3" g2="quotedblright" k="20" />
+<hkern g1="uni04A4" g2="comma" k="102" />
+<hkern g1="uni04A4" g2="hyphen" k="41" />
+<hkern g1="uni04A4" g2="period" k="102" />
+<hkern g1="uni04A4" g2="afii10051" k="-41" />
+<hkern g1="uni04A4" g2="afii10053" k="41" />
+<hkern g1="uni04A4" g2="afii10058" k="82" />
+<hkern g1="uni04A4" g2="afii10060" k="-41" />
+<hkern g1="uni04A4" g2="afii10017" k="123" />
+<hkern g1="uni04A4" g2="afii10021" k="82" />
+<hkern g1="uni04A4" g2="afii10029" k="82" />
+<hkern g1="uni04A4" g2="afii10032" k="41" />
+<hkern g1="uni04A4" g2="afii10035" k="41" />
+<hkern g1="uni04A4" g2="afii10036" k="-41" />
+<hkern g1="uni04A4" g2="afii10038" k="61" />
+<hkern g1="uni04A4" g2="afii10044" k="-41" />
+<hkern g1="uni04A4" g2="afii10067" k="61" />
+<hkern g1="uni04A4" g2="afii10068" k="61" />
+<hkern g1="uni04A4" g2="afii10069" k="102" />
+<hkern g1="uni04A4" g2="afii10070" k="82" />
+<hkern g1="uni04A4" g2="afii10072" k="41" />
+<hkern g1="uni04A4" g2="afii10073" k="41" />
+<hkern g1="uni04A4" g2="afii10074" k="61" />
+<hkern g1="uni04A4" g2="afii10075" k="61" />
+<hkern g1="uni04A4" g2="afii10076" k="61" />
+<hkern g1="uni04A4" g2="afii10077" k="102" />
+<hkern g1="uni04A4" g2="afii10078" k="61" />
+<hkern g1="uni04A4" g2="afii10079" k="61" />
+<hkern g1="uni04A4" g2="afii10080" k="82" />
+<hkern g1="uni04A4" g2="afii10081" k="61" />
+<hkern g1="uni04A4" g2="afii10082" k="61" />
+<hkern g1="uni04A4" g2="afii10083" k="82" />
+<hkern g1="uni04A4" g2="afii10086" k="82" />
+<hkern g1="uni04A4" g2="afii10087" k="41" />
+<hkern g1="uni04A4" g2="afii10088" k="61" />
+<hkern g1="uni04A4" g2="afii10089" k="102" />
+<hkern g1="uni04A4" g2="afii10090" k="61" />
+<hkern g1="uni04A4" g2="afii10091" k="61" />
+<hkern g1="uni04A4" g2="afii10093" k="61" />
+<hkern g1="uni04A4" g2="afii10094" k="61" />
+<hkern g1="uni04A4" g2="afii10095" k="41" />
+<hkern g1="uni04A4" g2="afii10096" k="61" />
+<hkern g1="uni04A4" g2="afii10071" k="82" />
+<hkern g1="uni04A4" g2="afii10099" k="-41" />
+<hkern g1="uni04A4" g2="afii10100" k="61" />
+<hkern g1="uni04A4" g2="afii10101" k="82" />
+<hkern g1="uni04A4" g2="afii10102" k="61" />
+<hkern g1="uni04A4" g2="afii10106" k="102" />
+<hkern g1="uni04A4" g2="afii10107" k="61" />
+<hkern g1="uni04A4" g2="afii10108" k="-41" />
+<hkern g1="uni04A4" g2="afii10109" k="61" />
+<hkern g1="uni04A4" g2="afii10193" k="61" />
+<hkern g1="uni04A4" g2="afii10098" k="61" />
+<hkern g1="uni04A4" g2="endash" k="41" />
+<hkern g1="uni04A4" g2="emdash" k="41" />
+<hkern g1="uni04A4" g2="afii00208" k="41" />
+<hkern g1="uni04A4" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A4" g2="quotedblbase" k="102" />
+<hkern g1="uni04A4" g2="uni0450" k="82" />
+<hkern g1="uni04A4" g2="uni045D" k="61" />
+<hkern g1="uni04A4" g2="uni0460" k="41" />
+<hkern g1="uni04A4" g2="uni0465" k="61" />
+<hkern g1="uni04A4" g2="uni0466" k="123" />
+<hkern g1="uni04A4" g2="uni0467" k="102" />
+<hkern g1="uni04A4" g2="uni0469" k="61" />
+<hkern g1="uni04A4" g2="uni046B" k="41" />
+<hkern g1="uni04A4" g2="uni046D" k="61" />
+<hkern g1="uni04A4" g2="uni0471" k="61" />
+<hkern g1="uni04A4" g2="uni0472" k="41" />
+<hkern g1="uni04A4" g2="uni0473" k="82" />
+<hkern g1="uni04A4" g2="uni0478" k="41" />
+<hkern g1="uni04A4" g2="uni0479" k="82" />
+<hkern g1="uni04A4" g2="uni047A" k="41" />
+<hkern g1="uni04A4" g2="uni047B" k="82" />
+<hkern g1="uni04A4" g2="uni047C" k="41" />
+<hkern g1="uni04A4" g2="uni047D" k="82" />
+<hkern g1="uni04A4" g2="uni047E" k="41" />
+<hkern g1="uni04A4" g2="uni0480" k="41" />
+<hkern g1="uni04A4" g2="uni0481" k="82" />
+<hkern g1="uni04A4" g2="uni048B" k="61" />
+<hkern g1="uni04A4" g2="uni048D" k="-41" />
+<hkern g1="uni04A4" g2="uni048F" k="61" />
+<hkern g1="uni04A4" g2="uni0495" k="61" />
+<hkern g1="uni04A4" g2="uni0497" k="41" />
+<hkern g1="uni04A4" g2="uni0499" k="41" />
+<hkern g1="uni04A4" g2="uni049B" k="61" />
+<hkern g1="uni04A4" g2="uni049D" k="61" />
+<hkern g1="uni04A4" g2="uni049F" k="-41" />
+<hkern g1="uni04A4" g2="uni04A0" k="-41" />
+<hkern g1="uni04A4" g2="uni04A3" k="61" />
+<hkern g1="uni04A4" g2="uni04A5" k="61" />
+<hkern g1="uni04A4" g2="uni04A7" k="61" />
+<hkern g1="uni04A4" g2="uni04A8" k="41" />
+<hkern g1="uni04A4" g2="uni04A9" k="82" />
+<hkern g1="uni04A4" g2="uni04AA" k="41" />
+<hkern g1="uni04A4" g2="uni04AB" k="82" />
+<hkern g1="uni04A4" g2="uni04AC" k="-41" />
+<hkern g1="uni04A4" g2="uni04B3" k="41" />
+<hkern g1="uni04A4" g2="uni04B4" k="-41" />
+<hkern g1="uni04A4" g2="uni04B7" k="102" />
+<hkern g1="uni04A4" g2="uni04B9" k="102" />
+<hkern g1="uni04A4" g2="uni04BB" k="61" />
+<hkern g1="uni04A4" g2="uni04BC" k="41" />
+<hkern g1="uni04A4" g2="uni04BD" k="61" />
+<hkern g1="uni04A4" g2="uni04BE" k="41" />
+<hkern g1="uni04A4" g2="uni04BF" k="61" />
+<hkern g1="uni04A4" g2="uni04C2" k="41" />
+<hkern g1="uni04A4" g2="uni04C4" k="61" />
+<hkern g1="uni04A4" g2="uni04C5" k="82" />
+<hkern g1="uni04A4" g2="uni04C6" k="102" />
+<hkern g1="uni04A4" g2="uni04C8" k="61" />
+<hkern g1="uni04A4" g2="uni04CA" k="61" />
+<hkern g1="uni04A4" g2="uni04CC" k="102" />
+<hkern g1="uni04A4" g2="uni04CE" k="61" />
+<hkern g1="uni04A4" g2="uni04D0" k="123" />
+<hkern g1="uni04A4" g2="uni04D2" k="123" />
+<hkern g1="uni04A4" g2="uni04D4" k="123" />
+<hkern g1="uni04A4" g2="uni04D7" k="82" />
+<hkern g1="uni04A4" g2="uni04DD" k="41" />
+<hkern g1="uni04A4" g2="uni04DF" k="41" />
+<hkern g1="uni04A4" g2="uni04E3" k="61" />
+<hkern g1="uni04A4" g2="uni04E5" k="61" />
+<hkern g1="uni04A4" g2="uni04E6" k="41" />
+<hkern g1="uni04A4" g2="uni04E7" k="82" />
+<hkern g1="uni04A4" g2="uni04E8" k="41" />
+<hkern g1="uni04A4" g2="uni04E9" k="82" />
+<hkern g1="uni04A4" g2="uni04EA" k="41" />
+<hkern g1="uni04A4" g2="uni04EB" k="82" />
+<hkern g1="uni04A4" g2="uni04ED" k="41" />
+<hkern g1="uni04A4" g2="uni04F5" k="102" />
+<hkern g1="uni04A4" g2="uni04F7" k="61" />
+<hkern g1="uni04A4" g2="uni04F9" k="61" />
+<hkern g1="uni04A4" g2="uni04FD" k="41" />
+<hkern g1="uni04A4" g2="uni04FF" k="41" />
+<hkern g1="uni04A4" g2="uni0500" k="102" />
+<hkern g1="uni04A4" g2="uni0501" k="82" />
+<hkern g1="uni04A4" g2="uni0502" k="102" />
+<hkern g1="uni04A4" g2="uni0503" k="82" />
+<hkern g1="uni04A4" g2="uni0505" k="41" />
+<hkern g1="uni04A4" g2="uni0507" k="41" />
+<hkern g1="uni04A4" g2="uni0508" k="82" />
+<hkern g1="uni04A4" g2="uni0509" k="102" />
+<hkern g1="uni04A4" g2="uni050B" k="61" />
+<hkern g1="uni04A4" g2="uni050C" k="41" />
+<hkern g1="uni04A4" g2="uni050D" k="82" />
+<hkern g1="uni04A4" g2="uni050E" k="-41" />
+<hkern g1="uni04A4" g2="uni0511" k="82" />
+<hkern g1="uni04A4" g2="uni0512" k="82" />
+<hkern g1="uni04A4" g2="uni0513" k="102" />
+<hkern g1="uni04A5" g2="comma" k="102" />
+<hkern g1="uni04A5" g2="hyphen" k="41" />
+<hkern g1="uni04A5" g2="period" k="102" />
+<hkern g1="uni04A5" g2="afii10069" k="61" />
+<hkern g1="uni04A5" g2="afii10070" k="20" />
+<hkern g1="uni04A5" g2="afii10077" k="61" />
+<hkern g1="uni04A5" g2="afii10080" k="20" />
+<hkern g1="uni04A5" g2="afii10083" k="20" />
+<hkern g1="uni04A5" g2="afii10086" k="20" />
+<hkern g1="uni04A5" g2="afii10071" k="20" />
+<hkern g1="uni04A5" g2="afii10101" k="20" />
+<hkern g1="uni04A5" g2="afii10106" k="61" />
+<hkern g1="uni04A5" g2="endash" k="41" />
+<hkern g1="uni04A5" g2="emdash" k="41" />
+<hkern g1="uni04A5" g2="afii00208" k="41" />
+<hkern g1="uni04A5" g2="quotesinglbase" k="102" />
+<hkern g1="uni04A5" g2="quotedblbase" k="102" />
+<hkern g1="uni04A5" g2="uni0450" k="20" />
+<hkern g1="uni04A5" g2="uni0467" k="61" />
+<hkern g1="uni04A5" g2="uni0473" k="20" />
+<hkern g1="uni04A5" g2="uni0479" k="20" />
+<hkern g1="uni04A5" g2="uni047B" k="20" />
+<hkern g1="uni04A5" g2="uni047D" k="20" />
+<hkern g1="uni04A5" g2="uni0481" k="20" />
+<hkern g1="uni04A5" g2="uni04A9" k="20" />
+<hkern g1="uni04A5" g2="uni04AB" k="20" />
+<hkern g1="uni04A5" g2="uni04C6" k="61" />
+<hkern g1="uni04A5" g2="uni04D7" k="20" />
+<hkern g1="uni04A5" g2="uni04E7" k="20" />
+<hkern g1="uni04A5" g2="uni04E9" k="20" />
+<hkern g1="uni04A5" g2="uni04EB" k="20" />
+<hkern g1="uni04A5" g2="uni0501" k="20" />
+<hkern g1="uni04A5" g2="uni0503" k="20" />
+<hkern g1="uni04A5" g2="uni0509" k="61" />
+<hkern g1="uni04A5" g2="uni050D" k="20" />
+<hkern g1="uni04A5" g2="uni0511" k="20" />
+<hkern g1="uni04A5" g2="uni0513" k="61" />
+<hkern g1="uni04A6" g2="quotedbl" k="164" />
+<hkern g1="uni04A6" g2="quotesingle" k="164" />
+<hkern g1="uni04A6" g2="afii10051" k="102" />
+<hkern g1="uni04A6" g2="afii10057" k="-102" />
+<hkern g1="uni04A6" g2="afii10060" k="102" />
+<hkern g1="uni04A6" g2="afii10036" k="184" />
+<hkern g1="uni04A6" g2="afii10041" k="123" />
+<hkern g1="uni04A6" g2="afii10044" k="102" />
+<hkern g1="uni04A6" g2="afii10084" k="82" />
+<hkern g1="uni04A6" g2="afii10089" k="41" />
+<hkern g1="uni04A6" g2="afii10092" k="82" />
+<hkern g1="uni04A6" g2="quoteright" k="164" />
+<hkern g1="uni04A6" g2="quotedblright" k="164" />
+<hkern g1="uni04A6" g2="uni0470" k="123" />
+<hkern g1="uni04A6" g2="uni0474" k="143" />
+<hkern g1="uni04A6" g2="uni0476" k="143" />
+<hkern g1="uni04A6" g2="uni04A0" k="102" />
+<hkern g1="uni04A6" g2="uni04A1" k="82" />
+<hkern g1="uni04A6" g2="uni04AC" k="184" />
+<hkern g1="uni04A6" g2="uni04AD" k="82" />
+<hkern g1="uni04A6" g2="uni04AE" k="102" />
+<hkern g1="uni04A6" g2="uni04B0" k="102" />
+<hkern g1="uni04A6" g2="uni04B4" k="102" />
+<hkern g1="uni04A6" g2="uni04B5" k="82" />
+<hkern g1="uni04A6" g2="uni04B6" k="123" />
+<hkern g1="uni04A6" g2="uni04B7" k="41" />
+<hkern g1="uni04A6" g2="uni04B8" k="123" />
+<hkern g1="uni04A6" g2="uni04B9" k="41" />
+<hkern g1="uni04A6" g2="uni04BC" k="61" />
+<hkern g1="uni04A6" g2="uni04BD" k="41" />
+<hkern g1="uni04A6" g2="uni04BE" k="61" />
+<hkern g1="uni04A6" g2="uni04BF" k="41" />
+<hkern g1="uni04A6" g2="uni04CB" k="123" />
+<hkern g1="uni04A6" g2="uni04CC" k="41" />
+<hkern g1="uni04A6" g2="uni04F4" k="123" />
+<hkern g1="uni04A6" g2="uni04F5" k="41" />
+<hkern g1="uni04A6" g2="uni0504" k="184" />
+<hkern g1="uni04A6" g2="uni0505" k="82" />
+<hkern g1="uni04A6" g2="uni0506" k="184" />
+<hkern g1="uni04A6" g2="uni0507" k="82" />
+<hkern g1="uni04A6" g2="uni050E" k="102" />
+<hkern g1="uni04A6" g2="uni050F" k="82" />
+<hkern g1="uni04A7" g2="quotedbl" k="143" />
+<hkern g1="uni04A7" g2="quotesingle" k="143" />
+<hkern g1="uni04A7" g2="afii10084" k="102" />
+<hkern g1="uni04A7" g2="afii10089" k="41" />
+<hkern g1="uni04A7" g2="afii10092" k="102" />
+<hkern g1="uni04A7" g2="quoteright" k="143" />
+<hkern g1="uni04A7" g2="quotedblright" k="143" />
+<hkern g1="uni04A7" g2="uni0461" k="41" />
+<hkern g1="uni04A7" g2="uni0475" k="41" />
+<hkern g1="uni04A7" g2="uni0477" k="41" />
+<hkern g1="uni04A7" g2="uni047F" k="41" />
+<hkern g1="uni04A7" g2="uni04A1" k="102" />
+<hkern g1="uni04A7" g2="uni04AD" k="102" />
+<hkern g1="uni04A7" g2="uni04AF" k="41" />
+<hkern g1="uni04A7" g2="uni04B1" k="41" />
+<hkern g1="uni04A7" g2="uni04B5" k="102" />
+<hkern g1="uni04A7" g2="uni04B7" k="41" />
+<hkern g1="uni04A7" g2="uni04B9" k="41" />
+<hkern g1="uni04A7" g2="uni04BD" k="41" />
+<hkern g1="uni04A7" g2="uni04BF" k="41" />
+<hkern g1="uni04A7" g2="uni04CC" k="41" />
+<hkern g1="uni04A7" g2="uni04F5" k="41" />
+<hkern g1="uni04A7" g2="uni0505" k="143" />
+<hkern g1="uni04A7" g2="uni0507" k="143" />
+<hkern g1="uni04A7" g2="uni050F" k="102" />
+<hkern g1="uni04A8" g2="afii10051" k="41" />
+<hkern g1="uni04A8" g2="afii10060" k="41" />
+<hkern g1="uni04A8" g2="afii10036" k="61" />
+<hkern g1="uni04A8" g2="afii10044" k="41" />
+<hkern g1="uni04A8" g2="uni0474" k="20" />
+<hkern g1="uni04A8" g2="uni0476" k="20" />
+<hkern g1="uni04A8" g2="uni04A0" k="41" />
+<hkern g1="uni04A8" g2="uni04AC" k="61" />
+<hkern g1="uni04A8" g2="uni04AE" k="20" />
+<hkern g1="uni04A8" g2="uni04B0" k="20" />
+<hkern g1="uni04A8" g2="uni04B4" k="41" />
+<hkern g1="uni04A8" g2="uni0504" k="41" />
+<hkern g1="uni04A8" g2="uni0506" k="41" />
+<hkern g1="uni04A8" g2="uni050E" k="41" />
+<hkern g1="uni04A9" g2="quotedbl" k="20" />
+<hkern g1="uni04A9" g2="quotesingle" k="20" />
+<hkern g1="uni04A9" g2="afii10072" k="41" />
+<hkern g1="uni04A9" g2="afii10084" k="20" />
+<hkern g1="uni04A9" g2="afii10085" k="20" />
+<hkern g1="uni04A9" g2="afii10087" k="41" />
+<hkern g1="uni04A9" g2="afii10089" k="20" />
+<hkern g1="uni04A9" g2="afii10092" k="20" />
+<hkern g1="uni04A9" g2="afii10110" k="20" />
+<hkern g1="uni04A9" g2="quoteright" k="20" />
+<hkern g1="uni04A9" g2="quotedblright" k="20" />
+<hkern g1="uni04A9" g2="uni0497" k="41" />
+<hkern g1="uni04A9" g2="uni04A1" k="20" />
+<hkern g1="uni04A9" g2="uni04AD" k="20" />
+<hkern g1="uni04A9" g2="uni04B3" k="41" />
+<hkern g1="uni04A9" g2="uni04B5" k="20" />
+<hkern g1="uni04A9" g2="uni04B7" k="20" />
+<hkern g1="uni04A9" g2="uni04B9" k="20" />
+<hkern g1="uni04A9" g2="uni04C2" k="41" />
+<hkern g1="uni04A9" g2="uni04CC" k="20" />
+<hkern g1="uni04A9" g2="uni04DD" k="41" />
+<hkern g1="uni04A9" g2="uni04EF" k="20" />
+<hkern g1="uni04A9" g2="uni04F1" k="20" />
+<hkern g1="uni04A9" g2="uni04F3" k="20" />
+<hkern g1="uni04A9" g2="uni04F5" k="20" />
+<hkern g1="uni04A9" g2="uni04FD" k="41" />
+<hkern g1="uni04A9" g2="uni04FF" k="41" />
+<hkern g1="uni04A9" g2="uni0505" k="20" />
+<hkern g1="uni04A9" g2="uni0507" k="20" />
+<hkern g1="uni04A9" g2="uni050F" k="20" />
+<hkern g1="uni04AA" g2="afii10053" k="41" />
+<hkern g1="uni04AA" g2="afii10032" k="41" />
+<hkern g1="uni04AA" g2="afii10035" k="41" />
+<hkern g1="uni04AA" g2="afii10038" k="41" />
+<hkern g1="uni04AA" g2="afii10089" k="41" />
+<hkern g1="uni04AA" g2="uni0460" k="41" />
+<hkern g1="uni04AA" g2="uni0472" k="41" />
+<hkern g1="uni04AA" g2="uni0478" k="41" />
+<hkern g1="uni04AA" g2="uni047A" k="41" />
+<hkern g1="uni04AA" g2="uni047C" k="41" />
+<hkern g1="uni04AA" g2="uni047E" k="41" />
+<hkern g1="uni04AA" g2="uni0480" k="41" />
+<hkern g1="uni04AA" g2="uni04A8" k="41" />
+<hkern g1="uni04AA" g2="uni04AA" k="41" />
+<hkern g1="uni04AA" g2="uni04B7" k="41" />
+<hkern g1="uni04AA" g2="uni04B9" k="41" />
+<hkern g1="uni04AA" g2="uni04BC" k="41" />
+<hkern g1="uni04AA" g2="uni04BE" k="41" />
+<hkern g1="uni04AA" g2="uni04CC" k="41" />
+<hkern g1="uni04AA" g2="uni04E6" k="41" />
+<hkern g1="uni04AA" g2="uni04E8" k="41" />
+<hkern g1="uni04AA" g2="uni04EA" k="41" />
+<hkern g1="uni04AA" g2="uni04F5" k="41" />
+<hkern g1="uni04AA" g2="uni0500" k="41" />
+<hkern g1="uni04AA" g2="uni0502" k="41" />
+<hkern g1="uni04AA" g2="uni0505" k="41" />
+<hkern g1="uni04AA" g2="uni0507" k="41" />
+<hkern g1="uni04AA" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="comma" k="123" />
+<hkern g1="uni04AC" g2="hyphen" k="82" />
+<hkern g1="uni04AC" g2="period" k="123" />
+<hkern g1="uni04AC" g2="afii10053" k="41" />
+<hkern g1="uni04AC" g2="afii10058" k="102" />
+<hkern g1="uni04AC" g2="afii10017" k="143" />
+<hkern g1="uni04AC" g2="afii10021" k="102" />
+<hkern g1="uni04AC" g2="afii10029" k="102" />
+<hkern g1="uni04AC" g2="afii10032" k="41" />
+<hkern g1="uni04AC" g2="afii10035" k="41" />
+<hkern g1="uni04AC" g2="afii10036" k="-41" />
+<hkern g1="uni04AC" g2="afii10038" k="82" />
+<hkern g1="uni04AC" g2="afii10067" k="102" />
+<hkern g1="uni04AC" g2="afii10068" k="102" />
+<hkern g1="uni04AC" g2="afii10069" k="123" />
+<hkern g1="uni04AC" g2="afii10070" k="143" />
+<hkern g1="uni04AC" g2="afii10072" k="41" />
+<hkern g1="uni04AC" g2="afii10073" k="41" />
+<hkern g1="uni04AC" g2="afii10074" k="102" />
+<hkern g1="uni04AC" g2="afii10075" k="102" />
+<hkern g1="uni04AC" g2="afii10076" k="102" />
+<hkern g1="uni04AC" g2="afii10077" k="123" />
+<hkern g1="uni04AC" g2="afii10078" k="102" />
+<hkern g1="uni04AC" g2="afii10079" k="102" />
+<hkern g1="uni04AC" g2="afii10080" k="143" />
+<hkern g1="uni04AC" g2="afii10081" k="102" />
+<hkern g1="uni04AC" g2="afii10082" k="102" />
+<hkern g1="uni04AC" g2="afii10083" k="143" />
+<hkern g1="uni04AC" g2="afii10084" k="82" />
+<hkern g1="uni04AC" g2="afii10085" k="82" />
+<hkern g1="uni04AC" g2="afii10086" k="143" />
+<hkern g1="uni04AC" g2="afii10087" k="41" />
+<hkern g1="uni04AC" g2="afii10088" k="102" />
+<hkern g1="uni04AC" g2="afii10089" k="102" />
+<hkern g1="uni04AC" g2="afii10090" k="102" />
+<hkern g1="uni04AC" g2="afii10091" k="102" />
+<hkern g1="uni04AC" g2="afii10092" k="82" />
+<hkern g1="uni04AC" g2="afii10093" k="102" />
+<hkern g1="uni04AC" g2="afii10094" k="102" />
+<hkern g1="uni04AC" g2="afii10095" k="41" />
+<hkern g1="uni04AC" g2="afii10096" k="102" />
+<hkern g1="uni04AC" g2="afii10097" k="61" />
+<hkern g1="uni04AC" g2="afii10071" k="143" />
+<hkern g1="uni04AC" g2="afii10100" k="102" />
+<hkern g1="uni04AC" g2="afii10101" k="143" />
+<hkern g1="uni04AC" g2="afii10102" k="123" />
+<hkern g1="uni04AC" g2="afii10106" k="123" />
+<hkern g1="uni04AC" g2="afii10107" k="102" />
+<hkern g1="uni04AC" g2="afii10109" k="102" />
+<hkern g1="uni04AC" g2="afii10110" k="82" />
+<hkern g1="uni04AC" g2="afii10193" k="102" />
+<hkern g1="uni04AC" g2="afii10098" k="102" />
+<hkern g1="uni04AC" g2="endash" k="82" />
+<hkern g1="uni04AC" g2="emdash" k="82" />
+<hkern g1="uni04AC" g2="afii00208" k="82" />
+<hkern g1="uni04AC" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AC" g2="quotedblbase" k="123" />
+<hkern g1="uni04AC" g2="uni0450" k="143" />
+<hkern g1="uni04AC" g2="uni045D" k="102" />
+<hkern g1="uni04AC" g2="uni0460" k="41" />
+<hkern g1="uni04AC" g2="uni0461" k="41" />
+<hkern g1="uni04AC" g2="uni0465" k="102" />
+<hkern g1="uni04AC" g2="uni0466" k="143" />
+<hkern g1="uni04AC" g2="uni0467" k="123" />
+<hkern g1="uni04AC" g2="uni0469" k="102" />
+<hkern g1="uni04AC" g2="uni046B" k="102" />
+<hkern g1="uni04AC" g2="uni046D" k="102" />
+<hkern g1="uni04AC" g2="uni0471" k="102" />
+<hkern g1="uni04AC" g2="uni0472" k="41" />
+<hkern g1="uni04AC" g2="uni0473" k="143" />
+<hkern g1="uni04AC" g2="uni0475" k="41" />
+<hkern g1="uni04AC" g2="uni0477" k="41" />
+<hkern g1="uni04AC" g2="uni0478" k="41" />
+<hkern g1="uni04AC" g2="uni0479" k="143" />
+<hkern g1="uni04AC" g2="uni047A" k="41" />
+<hkern g1="uni04AC" g2="uni047B" k="143" />
+<hkern g1="uni04AC" g2="uni047C" k="41" />
+<hkern g1="uni04AC" g2="uni047D" k="143" />
+<hkern g1="uni04AC" g2="uni047E" k="41" />
+<hkern g1="uni04AC" g2="uni047F" k="41" />
+<hkern g1="uni04AC" g2="uni0480" k="41" />
+<hkern g1="uni04AC" g2="uni0481" k="143" />
+<hkern g1="uni04AC" g2="uni048B" k="102" />
+<hkern g1="uni04AC" g2="uni048F" k="102" />
+<hkern g1="uni04AC" g2="uni0495" k="102" />
+<hkern g1="uni04AC" g2="uni0497" k="41" />
+<hkern g1="uni04AC" g2="uni0499" k="41" />
+<hkern g1="uni04AC" g2="uni049B" k="102" />
+<hkern g1="uni04AC" g2="uni049D" k="102" />
+<hkern g1="uni04AC" g2="uni04A1" k="82" />
+<hkern g1="uni04AC" g2="uni04A3" k="102" />
+<hkern g1="uni04AC" g2="uni04A5" k="102" />
+<hkern g1="uni04AC" g2="uni04A7" k="102" />
+<hkern g1="uni04AC" g2="uni04A8" k="41" />
+<hkern g1="uni04AC" g2="uni04A9" k="143" />
+<hkern g1="uni04AC" g2="uni04AA" k="41" />
+<hkern g1="uni04AC" g2="uni04AB" k="143" />
+<hkern g1="uni04AC" g2="uni04AC" k="-41" />
+<hkern g1="uni04AC" g2="uni04AD" k="82" />
+<hkern g1="uni04AC" g2="uni04AF" k="82" />
+<hkern g1="uni04AC" g2="uni04B1" k="82" />
+<hkern g1="uni04AC" g2="uni04B3" k="41" />
+<hkern g1="uni04AC" g2="uni04B5" k="82" />
+<hkern g1="uni04AC" g2="uni04B7" k="102" />
+<hkern g1="uni04AC" g2="uni04B9" k="102" />
+<hkern g1="uni04AC" g2="uni04BB" k="102" />
+<hkern g1="uni04AC" g2="uni04BC" k="102" />
+<hkern g1="uni04AC" g2="uni04BD" k="143" />
+<hkern g1="uni04AC" g2="uni04BE" k="102" />
+<hkern g1="uni04AC" g2="uni04BF" k="143" />
+<hkern g1="uni04AC" g2="uni04C2" k="41" />
+<hkern g1="uni04AC" g2="uni04C4" k="102" />
+<hkern g1="uni04AC" g2="uni04C5" k="102" />
+<hkern g1="uni04AC" g2="uni04C6" k="123" />
+<hkern g1="uni04AC" g2="uni04C8" k="102" />
+<hkern g1="uni04AC" g2="uni04CA" k="102" />
+<hkern g1="uni04AC" g2="uni04CC" k="102" />
+<hkern g1="uni04AC" g2="uni04CE" k="102" />
+<hkern g1="uni04AC" g2="uni04D0" k="143" />
+<hkern g1="uni04AC" g2="uni04D2" k="143" />
+<hkern g1="uni04AC" g2="uni04D4" k="143" />
+<hkern g1="uni04AC" g2="uni04D7" k="143" />
+<hkern g1="uni04AC" g2="uni04DD" k="41" />
+<hkern g1="uni04AC" g2="uni04DF" k="41" />
+<hkern g1="uni04AC" g2="uni04E1" k="61" />
+<hkern g1="uni04AC" g2="uni04E3" k="102" />
+<hkern g1="uni04AC" g2="uni04E5" k="102" />
+<hkern g1="uni04AC" g2="uni04E6" k="41" />
+<hkern g1="uni04AC" g2="uni04E7" k="143" />
+<hkern g1="uni04AC" g2="uni04E8" k="41" />
+<hkern g1="uni04AC" g2="uni04E9" k="143" />
+<hkern g1="uni04AC" g2="uni04EA" k="41" />
+<hkern g1="uni04AC" g2="uni04EB" k="143" />
+<hkern g1="uni04AC" g2="uni04ED" k="41" />
+<hkern g1="uni04AC" g2="uni04EF" k="82" />
+<hkern g1="uni04AC" g2="uni04F1" k="82" />
+<hkern g1="uni04AC" g2="uni04F3" k="82" />
+<hkern g1="uni04AC" g2="uni04F5" k="102" />
+<hkern g1="uni04AC" g2="uni04F7" k="102" />
+<hkern g1="uni04AC" g2="uni04F9" k="102" />
+<hkern g1="uni04AC" g2="uni04FD" k="41" />
+<hkern g1="uni04AC" g2="uni04FF" k="41" />
+<hkern g1="uni04AC" g2="uni0500" k="143" />
+<hkern g1="uni04AC" g2="uni0501" k="143" />
+<hkern g1="uni04AC" g2="uni0502" k="143" />
+<hkern g1="uni04AC" g2="uni0503" k="143" />
+<hkern g1="uni04AC" g2="uni0505" k="102" />
+<hkern g1="uni04AC" g2="uni0507" k="102" />
+<hkern g1="uni04AC" g2="uni0508" k="102" />
+<hkern g1="uni04AC" g2="uni0509" k="123" />
+<hkern g1="uni04AC" g2="uni050B" k="102" />
+<hkern g1="uni04AC" g2="uni050C" k="41" />
+<hkern g1="uni04AC" g2="uni050D" k="143" />
+<hkern g1="uni04AC" g2="uni050F" k="82" />
+<hkern g1="uni04AC" g2="uni0511" k="143" />
+<hkern g1="uni04AC" g2="uni0512" k="102" />
+<hkern g1="uni04AC" g2="uni0513" k="123" />
+<hkern g1="uni04AD" g2="comma" k="102" />
+<hkern g1="uni04AD" g2="hyphen" k="41" />
+<hkern g1="uni04AD" g2="period" k="102" />
+<hkern g1="uni04AD" g2="afii10069" k="61" />
+<hkern g1="uni04AD" g2="afii10070" k="20" />
+<hkern g1="uni04AD" g2="afii10077" k="61" />
+<hkern g1="uni04AD" g2="afii10080" k="20" />
+<hkern g1="uni04AD" g2="afii10083" k="20" />
+<hkern g1="uni04AD" g2="afii10086" k="20" />
+<hkern g1="uni04AD" g2="afii10071" k="20" />
+<hkern g1="uni04AD" g2="afii10101" k="20" />
+<hkern g1="uni04AD" g2="afii10106" k="61" />
+<hkern g1="uni04AD" g2="endash" k="41" />
+<hkern g1="uni04AD" g2="emdash" k="41" />
+<hkern g1="uni04AD" g2="afii00208" k="41" />
+<hkern g1="uni04AD" g2="quotesinglbase" k="102" />
+<hkern g1="uni04AD" g2="quotedblbase" k="102" />
+<hkern g1="uni04AD" g2="uni0450" k="20" />
+<hkern g1="uni04AD" g2="uni0467" k="61" />
+<hkern g1="uni04AD" g2="uni0473" k="20" />
+<hkern g1="uni04AD" g2="uni0479" k="20" />
+<hkern g1="uni04AD" g2="uni047B" k="20" />
+<hkern g1="uni04AD" g2="uni047D" k="20" />
+<hkern g1="uni04AD" g2="uni0481" k="20" />
+<hkern g1="uni04AD" g2="uni04A9" k="20" />
+<hkern g1="uni04AD" g2="uni04AB" k="20" />
+<hkern g1="uni04AD" g2="uni04C6" k="61" />
+<hkern g1="uni04AD" g2="uni04D7" k="20" />
+<hkern g1="uni04AD" g2="uni04E7" k="20" />
+<hkern g1="uni04AD" g2="uni04E9" k="20" />
+<hkern g1="uni04AD" g2="uni04EB" k="20" />
+<hkern g1="uni04AD" g2="uni0501" k="20" />
+<hkern g1="uni04AD" g2="uni0503" k="20" />
+<hkern g1="uni04AD" g2="uni0509" k="61" />
+<hkern g1="uni04AD" g2="uni050D" k="20" />
+<hkern g1="uni04AD" g2="uni0511" k="20" />
+<hkern g1="uni04AD" g2="uni0513" k="61" />
+<hkern g1="uni04AE" g2="comma" k="123" />
+<hkern g1="uni04AE" g2="period" k="123" />
+<hkern g1="uni04AE" g2="afii10053" k="41" />
+<hkern g1="uni04AE" g2="afii10058" k="82" />
+<hkern g1="uni04AE" g2="afii10017" k="123" />
+<hkern g1="uni04AE" g2="afii10021" k="82" />
+<hkern g1="uni04AE" g2="afii10029" k="82" />
+<hkern g1="uni04AE" g2="afii10032" k="41" />
+<hkern g1="uni04AE" g2="afii10035" k="41" />
+<hkern g1="uni04AE" g2="afii10038" k="61" />
+<hkern g1="uni04AE" g2="afii10065" k="82" />
+<hkern g1="uni04AE" g2="afii10067" k="61" />
+<hkern g1="uni04AE" g2="afii10068" k="61" />
+<hkern g1="uni04AE" g2="afii10069" k="102" />
+<hkern g1="uni04AE" g2="afii10070" k="102" />
+<hkern g1="uni04AE" g2="afii10074" k="61" />
+<hkern g1="uni04AE" g2="afii10075" k="61" />
+<hkern g1="uni04AE" g2="afii10076" k="61" />
+<hkern g1="uni04AE" g2="afii10077" k="102" />
+<hkern g1="uni04AE" g2="afii10078" k="61" />
+<hkern g1="uni04AE" g2="afii10079" k="61" />
+<hkern g1="uni04AE" g2="afii10080" k="102" />
+<hkern g1="uni04AE" g2="afii10081" k="61" />
+<hkern g1="uni04AE" g2="afii10082" k="61" />
+<hkern g1="uni04AE" g2="afii10083" k="102" />
+<hkern g1="uni04AE" g2="afii10086" k="102" />
+<hkern g1="uni04AE" g2="afii10088" k="61" />
+<hkern g1="uni04AE" g2="afii10089" k="82" />
+<hkern g1="uni04AE" g2="afii10090" k="61" />
+<hkern g1="uni04AE" g2="afii10091" k="61" />
+<hkern g1="uni04AE" g2="afii10093" k="61" />
+<hkern g1="uni04AE" g2="afii10094" k="61" />
+<hkern g1="uni04AE" g2="afii10096" k="61" />
+<hkern g1="uni04AE" g2="afii10097" k="41" />
+<hkern g1="uni04AE" g2="afii10071" k="102" />
+<hkern g1="uni04AE" g2="afii10099" k="-41" />
+<hkern g1="uni04AE" g2="afii10100" k="61" />
+<hkern g1="uni04AE" g2="afii10101" k="102" />
+<hkern g1="uni04AE" g2="afii10102" k="82" />
+<hkern g1="uni04AE" g2="afii10106" k="102" />
+<hkern g1="uni04AE" g2="afii10107" k="61" />
+<hkern g1="uni04AE" g2="afii10108" k="-41" />
+<hkern g1="uni04AE" g2="afii10109" k="61" />
+<hkern g1="uni04AE" g2="afii10193" k="61" />
+<hkern g1="uni04AE" g2="afii10098" k="61" />
+<hkern g1="uni04AE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04AE" g2="quotedblbase" k="123" />
+<hkern g1="uni04AE" g2="uni0450" k="102" />
+<hkern g1="uni04AE" g2="uni045D" k="61" />
+<hkern g1="uni04AE" g2="uni0460" k="41" />
+<hkern g1="uni04AE" g2="uni0465" k="61" />
+<hkern g1="uni04AE" g2="uni0466" k="123" />
+<hkern g1="uni04AE" g2="uni0467" k="102" />
+<hkern g1="uni04AE" g2="uni0469" k="61" />
+<hkern g1="uni04AE" g2="uni046B" k="41" />
+<hkern g1="uni04AE" g2="uni046D" k="61" />
+<hkern g1="uni04AE" g2="uni0471" k="41" />
+<hkern g1="uni04AE" g2="uni0472" k="41" />
+<hkern g1="uni04AE" g2="uni0473" k="102" />
+<hkern g1="uni04AE" g2="uni0478" k="41" />
+<hkern g1="uni04AE" g2="uni0479" k="102" />
+<hkern g1="uni04AE" g2="uni047A" k="41" />
+<hkern g1="uni04AE" g2="uni047B" k="102" />
+<hkern g1="uni04AE" g2="uni047C" k="41" />
+<hkern g1="uni04AE" g2="uni047D" k="102" />
+<hkern g1="uni04AE" g2="uni047E" k="41" />
+<hkern g1="uni04AE" g2="uni0480" k="41" />
+<hkern g1="uni04AE" g2="uni0481" k="102" />
+<hkern g1="uni04AE" g2="uni048B" k="61" />
+<hkern g1="uni04AE" g2="uni048D" k="-41" />
+<hkern g1="uni04AE" g2="uni048F" k="61" />
+<hkern g1="uni04AE" g2="uni0495" k="61" />
+<hkern g1="uni04AE" g2="uni049B" k="61" />
+<hkern g1="uni04AE" g2="uni049D" k="61" />
+<hkern g1="uni04AE" g2="uni049F" k="-41" />
+<hkern g1="uni04AE" g2="uni04A3" k="61" />
+<hkern g1="uni04AE" g2="uni04A5" k="61" />
+<hkern g1="uni04AE" g2="uni04A7" k="61" />
+<hkern g1="uni04AE" g2="uni04A8" k="41" />
+<hkern g1="uni04AE" g2="uni04A9" k="102" />
+<hkern g1="uni04AE" g2="uni04AA" k="41" />
+<hkern g1="uni04AE" g2="uni04AB" k="102" />
+<hkern g1="uni04AE" g2="uni04B7" k="82" />
+<hkern g1="uni04AE" g2="uni04B9" k="82" />
+<hkern g1="uni04AE" g2="uni04BB" k="61" />
+<hkern g1="uni04AE" g2="uni04BD" k="82" />
+<hkern g1="uni04AE" g2="uni04BF" k="82" />
+<hkern g1="uni04AE" g2="uni04C4" k="61" />
+<hkern g1="uni04AE" g2="uni04C5" k="82" />
+<hkern g1="uni04AE" g2="uni04C6" k="102" />
+<hkern g1="uni04AE" g2="uni04C8" k="61" />
+<hkern g1="uni04AE" g2="uni04CA" k="61" />
+<hkern g1="uni04AE" g2="uni04CC" k="82" />
+<hkern g1="uni04AE" g2="uni04CE" k="61" />
+<hkern g1="uni04AE" g2="uni04D0" k="123" />
+<hkern g1="uni04AE" g2="uni04D1" k="82" />
+<hkern g1="uni04AE" g2="uni04D2" k="123" />
+<hkern g1="uni04AE" g2="uni04D3" k="82" />
+<hkern g1="uni04AE" g2="uni04D4" k="123" />
+<hkern g1="uni04AE" g2="uni04D5" k="82" />
+<hkern g1="uni04AE" g2="uni04D7" k="102" />
+<hkern g1="uni04AE" g2="uni04D8" k="20" />
+<hkern g1="uni04AE" g2="uni04D9" k="82" />
+<hkern g1="uni04AE" g2="uni04DA" k="20" />
+<hkern g1="uni04AE" g2="uni04DB" k="82" />
+<hkern g1="uni04AE" g2="uni04E3" k="61" />
+<hkern g1="uni04AE" g2="uni04E5" k="61" />
+<hkern g1="uni04AE" g2="uni04E6" k="41" />
+<hkern g1="uni04AE" g2="uni04E7" k="102" />
+<hkern g1="uni04AE" g2="uni04E8" k="41" />
+<hkern g1="uni04AE" g2="uni04E9" k="102" />
+<hkern g1="uni04AE" g2="uni04EA" k="41" />
+<hkern g1="uni04AE" g2="uni04EB" k="102" />
+<hkern g1="uni04AE" g2="uni04F5" k="82" />
+<hkern g1="uni04AE" g2="uni04F7" k="61" />
+<hkern g1="uni04AE" g2="uni04F9" k="61" />
+<hkern g1="uni04AE" g2="uni0500" k="82" />
+<hkern g1="uni04AE" g2="uni0501" k="102" />
+<hkern g1="uni04AE" g2="uni0502" k="82" />
+<hkern g1="uni04AE" g2="uni0503" k="102" />
+<hkern g1="uni04AE" g2="uni0505" k="41" />
+<hkern g1="uni04AE" g2="uni0507" k="41" />
+<hkern g1="uni04AE" g2="uni0508" k="82" />
+<hkern g1="uni04AE" g2="uni0509" k="102" />
+<hkern g1="uni04AE" g2="uni050B" k="61" />
+<hkern g1="uni04AE" g2="uni050C" k="41" />
+<hkern g1="uni04AE" g2="uni050D" k="102" />
+<hkern g1="uni04AE" g2="uni0510" k="20" />
+<hkern g1="uni04AE" g2="uni0511" k="102" />
+<hkern g1="uni04AE" g2="uni0512" k="82" />
+<hkern g1="uni04AE" g2="uni0513" k="102" />
+<hkern g1="uni04AF" g2="comma" k="82" />
+<hkern g1="uni04AF" g2="period" k="82" />
+<hkern g1="uni04AF" g2="afii10069" k="20" />
+<hkern g1="uni04AF" g2="afii10077" k="20" />
+<hkern g1="uni04AF" g2="afii10106" k="20" />
+<hkern g1="uni04AF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04AF" g2="quotedblbase" k="82" />
+<hkern g1="uni04AF" g2="uni0467" k="20" />
+<hkern g1="uni04AF" g2="uni04C6" k="20" />
+<hkern g1="uni04AF" g2="uni0509" k="20" />
+<hkern g1="uni04AF" g2="uni0513" k="20" />
+<hkern g1="uni04B0" g2="comma" k="123" />
+<hkern g1="uni04B0" g2="period" k="123" />
+<hkern g1="uni04B0" g2="afii10053" k="41" />
+<hkern g1="uni04B0" g2="afii10058" k="82" />
+<hkern g1="uni04B0" g2="afii10017" k="123" />
+<hkern g1="uni04B0" g2="afii10021" k="82" />
+<hkern g1="uni04B0" g2="afii10029" k="82" />
+<hkern g1="uni04B0" g2="afii10032" k="41" />
+<hkern g1="uni04B0" g2="afii10035" k="41" />
+<hkern g1="uni04B0" g2="afii10038" k="61" />
+<hkern g1="uni04B0" g2="afii10065" k="82" />
+<hkern g1="uni04B0" g2="afii10067" k="61" />
+<hkern g1="uni04B0" g2="afii10068" k="61" />
+<hkern g1="uni04B0" g2="afii10069" k="102" />
+<hkern g1="uni04B0" g2="afii10070" k="102" />
+<hkern g1="uni04B0" g2="afii10074" k="61" />
+<hkern g1="uni04B0" g2="afii10075" k="61" />
+<hkern g1="uni04B0" g2="afii10076" k="61" />
+<hkern g1="uni04B0" g2="afii10077" k="102" />
+<hkern g1="uni04B0" g2="afii10078" k="61" />
+<hkern g1="uni04B0" g2="afii10079" k="61" />
+<hkern g1="uni04B0" g2="afii10080" k="102" />
+<hkern g1="uni04B0" g2="afii10081" k="61" />
+<hkern g1="uni04B0" g2="afii10082" k="61" />
+<hkern g1="uni04B0" g2="afii10083" k="102" />
+<hkern g1="uni04B0" g2="afii10086" k="102" />
+<hkern g1="uni04B0" g2="afii10088" k="61" />
+<hkern g1="uni04B0" g2="afii10089" k="82" />
+<hkern g1="uni04B0" g2="afii10090" k="61" />
+<hkern g1="uni04B0" g2="afii10091" k="61" />
+<hkern g1="uni04B0" g2="afii10093" k="61" />
+<hkern g1="uni04B0" g2="afii10094" k="61" />
+<hkern g1="uni04B0" g2="afii10096" k="61" />
+<hkern g1="uni04B0" g2="afii10097" k="41" />
+<hkern g1="uni04B0" g2="afii10071" k="102" />
+<hkern g1="uni04B0" g2="afii10099" k="-41" />
+<hkern g1="uni04B0" g2="afii10100" k="61" />
+<hkern g1="uni04B0" g2="afii10101" k="102" />
+<hkern g1="uni04B0" g2="afii10102" k="82" />
+<hkern g1="uni04B0" g2="afii10106" k="102" />
+<hkern g1="uni04B0" g2="afii10107" k="61" />
+<hkern g1="uni04B0" g2="afii10108" k="-41" />
+<hkern g1="uni04B0" g2="afii10109" k="61" />
+<hkern g1="uni04B0" g2="afii10193" k="61" />
+<hkern g1="uni04B0" g2="afii10098" k="61" />
+<hkern g1="uni04B0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04B0" g2="quotedblbase" k="123" />
+<hkern g1="uni04B0" g2="uni0450" k="102" />
+<hkern g1="uni04B0" g2="uni045D" k="61" />
+<hkern g1="uni04B0" g2="uni0460" k="41" />
+<hkern g1="uni04B0" g2="uni0465" k="61" />
+<hkern g1="uni04B0" g2="uni0466" k="123" />
+<hkern g1="uni04B0" g2="uni0467" k="102" />
+<hkern g1="uni04B0" g2="uni0469" k="61" />
+<hkern g1="uni04B0" g2="uni046B" k="41" />
+<hkern g1="uni04B0" g2="uni046D" k="61" />
+<hkern g1="uni04B0" g2="uni0471" k="41" />
+<hkern g1="uni04B0" g2="uni0472" k="41" />
+<hkern g1="uni04B0" g2="uni0473" k="102" />
+<hkern g1="uni04B0" g2="uni0478" k="41" />
+<hkern g1="uni04B0" g2="uni0479" k="102" />
+<hkern g1="uni04B0" g2="uni047A" k="41" />
+<hkern g1="uni04B0" g2="uni047B" k="102" />
+<hkern g1="uni04B0" g2="uni047C" k="41" />
+<hkern g1="uni04B0" g2="uni047D" k="102" />
+<hkern g1="uni04B0" g2="uni047E" k="41" />
+<hkern g1="uni04B0" g2="uni0480" k="41" />
+<hkern g1="uni04B0" g2="uni0481" k="102" />
+<hkern g1="uni04B0" g2="uni048B" k="61" />
+<hkern g1="uni04B0" g2="uni048D" k="-41" />
+<hkern g1="uni04B0" g2="uni048F" k="61" />
+<hkern g1="uni04B0" g2="uni0495" k="61" />
+<hkern g1="uni04B0" g2="uni049B" k="61" />
+<hkern g1="uni04B0" g2="uni049D" k="61" />
+<hkern g1="uni04B0" g2="uni049F" k="-41" />
+<hkern g1="uni04B0" g2="uni04A3" k="61" />
+<hkern g1="uni04B0" g2="uni04A5" k="61" />
+<hkern g1="uni04B0" g2="uni04A7" k="61" />
+<hkern g1="uni04B0" g2="uni04A8" k="41" />
+<hkern g1="uni04B0" g2="uni04A9" k="102" />
+<hkern g1="uni04B0" g2="uni04AA" k="41" />
+<hkern g1="uni04B0" g2="uni04AB" k="102" />
+<hkern g1="uni04B0" g2="uni04B7" k="82" />
+<hkern g1="uni04B0" g2="uni04B9" k="82" />
+<hkern g1="uni04B0" g2="uni04BB" k="61" />
+<hkern g1="uni04B0" g2="uni04BD" k="82" />
+<hkern g1="uni04B0" g2="uni04BF" k="82" />
+<hkern g1="uni04B0" g2="uni04C4" k="61" />
+<hkern g1="uni04B0" g2="uni04C5" k="82" />
+<hkern g1="uni04B0" g2="uni04C6" k="102" />
+<hkern g1="uni04B0" g2="uni04C8" k="61" />
+<hkern g1="uni04B0" g2="uni04CA" k="61" />
+<hkern g1="uni04B0" g2="uni04CC" k="82" />
+<hkern g1="uni04B0" g2="uni04CE" k="61" />
+<hkern g1="uni04B0" g2="uni04D0" k="123" />
+<hkern g1="uni04B0" g2="uni04D1" k="82" />
+<hkern g1="uni04B0" g2="uni04D2" k="123" />
+<hkern g1="uni04B0" g2="uni04D3" k="82" />
+<hkern g1="uni04B0" g2="uni04D4" k="123" />
+<hkern g1="uni04B0" g2="uni04D5" k="82" />
+<hkern g1="uni04B0" g2="uni04D7" k="102" />
+<hkern g1="uni04B0" g2="uni04D8" k="20" />
+<hkern g1="uni04B0" g2="uni04D9" k="82" />
+<hkern g1="uni04B0" g2="uni04DA" k="20" />
+<hkern g1="uni04B0" g2="uni04DB" k="82" />
+<hkern g1="uni04B0" g2="uni04E3" k="61" />
+<hkern g1="uni04B0" g2="uni04E5" k="61" />
+<hkern g1="uni04B0" g2="uni04E6" k="41" />
+<hkern g1="uni04B0" g2="uni04E7" k="102" />
+<hkern g1="uni04B0" g2="uni04E8" k="41" />
+<hkern g1="uni04B0" g2="uni04E9" k="102" />
+<hkern g1="uni04B0" g2="uni04EA" k="41" />
+<hkern g1="uni04B0" g2="uni04EB" k="102" />
+<hkern g1="uni04B0" g2="uni04F5" k="82" />
+<hkern g1="uni04B0" g2="uni04F7" k="61" />
+<hkern g1="uni04B0" g2="uni04F9" k="61" />
+<hkern g1="uni04B0" g2="uni0500" k="82" />
+<hkern g1="uni04B0" g2="uni0501" k="102" />
+<hkern g1="uni04B0" g2="uni0502" k="82" />
+<hkern g1="uni04B0" g2="uni0503" k="102" />
+<hkern g1="uni04B0" g2="uni0505" k="41" />
+<hkern g1="uni04B0" g2="uni0507" k="41" />
+<hkern g1="uni04B0" g2="uni0508" k="82" />
+<hkern g1="uni04B0" g2="uni0509" k="102" />
+<hkern g1="uni04B0" g2="uni050B" k="61" />
+<hkern g1="uni04B0" g2="uni050C" k="41" />
+<hkern g1="uni04B0" g2="uni050D" k="102" />
+<hkern g1="uni04B0" g2="uni0510" k="20" />
+<hkern g1="uni04B0" g2="uni0511" k="102" />
+<hkern g1="uni04B0" g2="uni0512" k="82" />
+<hkern g1="uni04B0" g2="uni0513" k="102" />
+<hkern g1="uni04B1" g2="comma" k="82" />
+<hkern g1="uni04B1" g2="period" k="82" />
+<hkern g1="uni04B1" g2="afii10069" k="20" />
+<hkern g1="uni04B1" g2="afii10077" k="20" />
+<hkern g1="uni04B1" g2="afii10106" k="20" />
+<hkern g1="uni04B1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04B1" g2="quotedblbase" k="82" />
+<hkern g1="uni04B1" g2="uni0467" k="20" />
+<hkern g1="uni04B1" g2="uni04C6" k="20" />
+<hkern g1="uni04B1" g2="uni0509" k="20" />
+<hkern g1="uni04B1" g2="uni0513" k="20" />
+<hkern g1="uni04B2" g2="afii10053" k="41" />
+<hkern g1="uni04B2" g2="afii10057" k="-225" />
+<hkern g1="uni04B2" g2="afii10032" k="41" />
+<hkern g1="uni04B2" g2="afii10035" k="41" />
+<hkern g1="uni04B2" g2="afii10038" k="61" />
+<hkern g1="uni04B2" g2="afii10084" k="41" />
+<hkern g1="uni04B2" g2="afii10089" k="82" />
+<hkern g1="uni04B2" g2="afii10092" k="41" />
+<hkern g1="uni04B2" g2="uni0460" k="41" />
+<hkern g1="uni04B2" g2="uni046F" k="-61" />
+<hkern g1="uni04B2" g2="uni0471" k="20" />
+<hkern g1="uni04B2" g2="uni0472" k="41" />
+<hkern g1="uni04B2" g2="uni0478" k="41" />
+<hkern g1="uni04B2" g2="uni047A" k="41" />
+<hkern g1="uni04B2" g2="uni047C" k="41" />
+<hkern g1="uni04B2" g2="uni047E" k="41" />
+<hkern g1="uni04B2" g2="uni0480" k="41" />
+<hkern g1="uni04B2" g2="uni04A1" k="41" />
+<hkern g1="uni04B2" g2="uni04A8" k="41" />
+<hkern g1="uni04B2" g2="uni04AA" k="41" />
+<hkern g1="uni04B2" g2="uni04AD" k="41" />
+<hkern g1="uni04B2" g2="uni04B5" k="41" />
+<hkern g1="uni04B2" g2="uni04B7" k="82" />
+<hkern g1="uni04B2" g2="uni04B9" k="82" />
+<hkern g1="uni04B2" g2="uni04BC" k="61" />
+<hkern g1="uni04B2" g2="uni04BD" k="41" />
+<hkern g1="uni04B2" g2="uni04BE" k="61" />
+<hkern g1="uni04B2" g2="uni04BF" k="41" />
+<hkern g1="uni04B2" g2="uni04CC" k="82" />
+<hkern g1="uni04B2" g2="uni04E6" k="41" />
+<hkern g1="uni04B2" g2="uni04E8" k="41" />
+<hkern g1="uni04B2" g2="uni04EA" k="41" />
+<hkern g1="uni04B2" g2="uni04F5" k="82" />
+<hkern g1="uni04B2" g2="uni0505" k="41" />
+<hkern g1="uni04B2" g2="uni0507" k="41" />
+<hkern g1="uni04B2" g2="uni050C" k="41" />
+<hkern g1="uni04B2" g2="uni050F" k="41" />
+<hkern g1="uni04B3" g2="afii10070" k="20" />
+<hkern g1="uni04B3" g2="afii10080" k="20" />
+<hkern g1="uni04B3" g2="afii10083" k="20" />
+<hkern g1="uni04B3" g2="afii10086" k="20" />
+<hkern g1="uni04B3" g2="afii10089" k="20" />
+<hkern g1="uni04B3" g2="afii10071" k="20" />
+<hkern g1="uni04B3" g2="afii10101" k="20" />
+<hkern g1="uni04B3" g2="uni0450" k="20" />
+<hkern g1="uni04B3" g2="uni0473" k="20" />
+<hkern g1="uni04B3" g2="uni0479" k="20" />
+<hkern g1="uni04B3" g2="uni047B" k="20" />
+<hkern g1="uni04B3" g2="uni047D" k="20" />
+<hkern g1="uni04B3" g2="uni0481" k="20" />
+<hkern g1="uni04B3" g2="uni04A9" k="20" />
+<hkern g1="uni04B3" g2="uni04AB" k="20" />
+<hkern g1="uni04B3" g2="uni04B7" k="20" />
+<hkern g1="uni04B3" g2="uni04B9" k="20" />
+<hkern g1="uni04B3" g2="uni04CC" k="20" />
+<hkern g1="uni04B3" g2="uni04D7" k="20" />
+<hkern g1="uni04B3" g2="uni04E7" k="20" />
+<hkern g1="uni04B3" g2="uni04E9" k="20" />
+<hkern g1="uni04B3" g2="uni04EB" k="20" />
+<hkern g1="uni04B3" g2="uni04F5" k="20" />
+<hkern g1="uni04B3" g2="uni0501" k="20" />
+<hkern g1="uni04B3" g2="uni0503" k="20" />
+<hkern g1="uni04B3" g2="uni0505" k="41" />
+<hkern g1="uni04B3" g2="uni0507" k="41" />
+<hkern g1="uni04B3" g2="uni050D" k="20" />
+<hkern g1="uni04B3" g2="uni0511" k="20" />
+<hkern g1="uni04B4" g2="afii10057" k="-225" />
+<hkern g1="uni04B4" g2="uni04E1" k="-41" />
+<hkern g1="uni04B4" g2="uni0505" k="41" />
+<hkern g1="uni04B4" g2="uni0507" k="41" />
+<hkern g1="uni04B5" g2="quotedbl" k="20" />
+<hkern g1="uni04B5" g2="quotesingle" k="20" />
+<hkern g1="uni04B5" g2="quoteright" k="20" />
+<hkern g1="uni04B5" g2="quotedblright" k="20" />
+<hkern g1="uni04B6" g2="afii10057" k="-225" />
+<hkern g1="uni04B6" g2="uni04E1" k="-41" />
+<hkern g1="uni04B6" g2="uni0505" k="41" />
+<hkern g1="uni04B6" g2="uni0507" k="41" />
+<hkern g1="uni04B7" g2="quotedbl" k="20" />
+<hkern g1="uni04B7" g2="quotesingle" k="20" />
+<hkern g1="uni04B7" g2="quoteright" k="20" />
+<hkern g1="uni04B7" g2="quotedblright" k="20" />
+<hkern g1="uni04BA" g2="quotedbl" k="61" />
+<hkern g1="uni04BA" g2="quotesingle" k="61" />
+<hkern g1="uni04BA" g2="afii10051" k="41" />
+<hkern g1="uni04BA" g2="afii10060" k="41" />
+<hkern g1="uni04BA" g2="afii10036" k="123" />
+<hkern g1="uni04BA" g2="afii10041" k="82" />
+<hkern g1="uni04BA" g2="afii10044" k="41" />
+<hkern g1="uni04BA" g2="afii10084" k="41" />
+<hkern g1="uni04BA" g2="afii10085" k="20" />
+<hkern g1="uni04BA" g2="afii10089" k="20" />
+<hkern g1="uni04BA" g2="afii10092" k="41" />
+<hkern g1="uni04BA" g2="afii10110" k="20" />
+<hkern g1="uni04BA" g2="quoteright" k="61" />
+<hkern g1="uni04BA" g2="quotedblright" k="61" />
+<hkern g1="uni04BA" g2="uni0470" k="82" />
+<hkern g1="uni04BA" g2="uni0474" k="61" />
+<hkern g1="uni04BA" g2="uni0476" k="61" />
+<hkern g1="uni04BA" g2="uni04A0" k="41" />
+<hkern g1="uni04BA" g2="uni04A1" k="41" />
+<hkern g1="uni04BA" g2="uni04AC" k="123" />
+<hkern g1="uni04BA" g2="uni04AD" k="41" />
+<hkern g1="uni04BA" g2="uni04AE" k="102" />
+<hkern g1="uni04BA" g2="uni04B0" k="102" />
+<hkern g1="uni04BA" g2="uni04B4" k="41" />
+<hkern g1="uni04BA" g2="uni04B5" k="41" />
+<hkern g1="uni04BA" g2="uni04B6" k="82" />
+<hkern g1="uni04BA" g2="uni04B7" k="20" />
+<hkern g1="uni04BA" g2="uni04B8" k="82" />
+<hkern g1="uni04BA" g2="uni04B9" k="20" />
+<hkern g1="uni04BA" g2="uni04CB" k="82" />
+<hkern g1="uni04BA" g2="uni04CC" k="20" />
+<hkern g1="uni04BA" g2="uni04EF" k="20" />
+<hkern g1="uni04BA" g2="uni04F1" k="20" />
+<hkern g1="uni04BA" g2="uni04F3" k="20" />
+<hkern g1="uni04BA" g2="uni04F4" k="82" />
+<hkern g1="uni04BA" g2="uni04F5" k="20" />
+<hkern g1="uni04BA" g2="uni0504" k="82" />
+<hkern g1="uni04BA" g2="uni0505" k="41" />
+<hkern g1="uni04BA" g2="uni0506" k="82" />
+<hkern g1="uni04BA" g2="uni0507" k="41" />
+<hkern g1="uni04BA" g2="uni050E" k="41" />
+<hkern g1="uni04BA" g2="uni050F" k="41" />
+<hkern g1="uni04BB" g2="quotedbl" k="102" />
+<hkern g1="uni04BB" g2="quotesingle" k="102" />
+<hkern g1="uni04BB" g2="afii10084" k="41" />
+<hkern g1="uni04BB" g2="afii10085" k="41" />
+<hkern g1="uni04BB" g2="afii10092" k="41" />
+<hkern g1="uni04BB" g2="afii10110" k="41" />
+<hkern g1="uni04BB" g2="quoteright" k="102" />
+<hkern g1="uni04BB" g2="quotedblright" k="102" />
+<hkern g1="uni04BB" g2="uni04A1" k="41" />
+<hkern g1="uni04BB" g2="uni04AD" k="41" />
+<hkern g1="uni04BB" g2="uni04AF" k="41" />
+<hkern g1="uni04BB" g2="uni04B1" k="41" />
+<hkern g1="uni04BB" g2="uni04B5" k="41" />
+<hkern g1="uni04BB" g2="uni04EF" k="41" />
+<hkern g1="uni04BB" g2="uni04F1" k="41" />
+<hkern g1="uni04BB" g2="uni04F3" k="41" />
+<hkern g1="uni04BB" g2="uni0505" k="82" />
+<hkern g1="uni04BB" g2="uni0507" k="82" />
+<hkern g1="uni04BB" g2="uni050F" k="41" />
+<hkern g1="uni04BC" g2="afii10036" k="41" />
+<hkern g1="uni04BC" g2="uni0474" k="20" />
+<hkern g1="uni04BC" g2="uni0476" k="20" />
+<hkern g1="uni04BC" g2="uni04AC" k="41" />
+<hkern g1="uni04BC" g2="uni04AE" k="20" />
+<hkern g1="uni04BC" g2="uni04B0" k="20" />
+<hkern g1="uni04BC" g2="uni0504" k="20" />
+<hkern g1="uni04BC" g2="uni0506" k="20" />
+<hkern g1="uni04BD" g2="quotedbl" k="20" />
+<hkern g1="uni04BD" g2="quotesingle" k="20" />
+<hkern g1="uni04BD" g2="quoteright" k="20" />
+<hkern g1="uni04BD" g2="quotedblright" k="20" />
+<hkern g1="uni04BE" g2="afii10036" k="41" />
+<hkern g1="uni04BE" g2="uni0474" k="20" />
+<hkern g1="uni04BE" g2="uni0476" k="20" />
+<hkern g1="uni04BE" g2="uni04AC" k="41" />
+<hkern g1="uni04BE" g2="uni04AE" k="20" />
+<hkern g1="uni04BE" g2="uni04B0" k="20" />
+<hkern g1="uni04BE" g2="uni0504" k="20" />
+<hkern g1="uni04BE" g2="uni0506" k="20" />
+<hkern g1="uni04BF" g2="quotedbl" k="20" />
+<hkern g1="uni04BF" g2="quotesingle" k="20" />
+<hkern g1="uni04BF" g2="quoteright" k="20" />
+<hkern g1="uni04BF" g2="quotedblright" k="20" />
+<hkern g1="uni04C1" g2="afii10053" k="41" />
+<hkern g1="uni04C1" g2="afii10032" k="41" />
+<hkern g1="uni04C1" g2="afii10035" k="41" />
+<hkern g1="uni04C1" g2="afii10038" k="41" />
+<hkern g1="uni04C1" g2="afii10041" k="41" />
+<hkern g1="uni04C1" g2="afii10089" k="41" />
+<hkern g1="uni04C1" g2="uni0460" k="41" />
+<hkern g1="uni04C1" g2="uni0470" k="41" />
+<hkern g1="uni04C1" g2="uni0472" k="41" />
+<hkern g1="uni04C1" g2="uni0478" k="41" />
+<hkern g1="uni04C1" g2="uni047A" k="41" />
+<hkern g1="uni04C1" g2="uni047C" k="41" />
+<hkern g1="uni04C1" g2="uni047E" k="41" />
+<hkern g1="uni04C1" g2="uni0480" k="41" />
+<hkern g1="uni04C1" g2="uni04A8" k="41" />
+<hkern g1="uni04C1" g2="uni04AA" k="41" />
+<hkern g1="uni04C1" g2="uni04B6" k="41" />
+<hkern g1="uni04C1" g2="uni04B7" k="41" />
+<hkern g1="uni04C1" g2="uni04B8" k="41" />
+<hkern g1="uni04C1" g2="uni04B9" k="41" />
+<hkern g1="uni04C1" g2="uni04BC" k="102" />
+<hkern g1="uni04C1" g2="uni04BE" k="102" />
+<hkern g1="uni04C1" g2="uni04CB" k="41" />
+<hkern g1="uni04C1" g2="uni04CC" k="41" />
+<hkern g1="uni04C1" g2="uni04E6" k="41" />
+<hkern g1="uni04C1" g2="uni04E8" k="41" />
+<hkern g1="uni04C1" g2="uni04EA" k="41" />
+<hkern g1="uni04C1" g2="uni04F4" k="41" />
+<hkern g1="uni04C1" g2="uni04F5" k="41" />
+<hkern g1="uni04C1" g2="uni0500" k="41" />
+<hkern g1="uni04C1" g2="uni0502" k="41" />
+<hkern g1="uni04C1" g2="uni0505" k="41" />
+<hkern g1="uni04C1" g2="uni0507" k="41" />
+<hkern g1="uni04C1" g2="uni050C" k="41" />
+<hkern g1="uni04C1" g2="uni0510" k="20" />
+<hkern g1="uni04C2" g2="afii10070" k="41" />
+<hkern g1="uni04C2" g2="afii10080" k="41" />
+<hkern g1="uni04C2" g2="afii10083" k="41" />
+<hkern g1="uni04C2" g2="afii10086" k="41" />
+<hkern g1="uni04C2" g2="afii10089" k="41" />
+<hkern g1="uni04C2" g2="afii10071" k="41" />
+<hkern g1="uni04C2" g2="afii10101" k="41" />
+<hkern g1="uni04C2" g2="uni0450" k="41" />
+<hkern g1="uni04C2" g2="uni0473" k="41" />
+<hkern g1="uni04C2" g2="uni0479" k="41" />
+<hkern g1="uni04C2" g2="uni047B" k="41" />
+<hkern g1="uni04C2" g2="uni047D" k="41" />
+<hkern g1="uni04C2" g2="uni0481" k="41" />
+<hkern g1="uni04C2" g2="uni04A9" k="41" />
+<hkern g1="uni04C2" g2="uni04AB" k="41" />
+<hkern g1="uni04C2" g2="uni04B7" k="41" />
+<hkern g1="uni04C2" g2="uni04B9" k="41" />
+<hkern g1="uni04C2" g2="uni04BD" k="41" />
+<hkern g1="uni04C2" g2="uni04BF" k="41" />
+<hkern g1="uni04C2" g2="uni04CC" k="41" />
+<hkern g1="uni04C2" g2="uni04D7" k="41" />
+<hkern g1="uni04C2" g2="uni04E7" k="41" />
+<hkern g1="uni04C2" g2="uni04E9" k="41" />
+<hkern g1="uni04C2" g2="uni04EB" k="41" />
+<hkern g1="uni04C2" g2="uni04F5" k="41" />
+<hkern g1="uni04C2" g2="uni0501" k="41" />
+<hkern g1="uni04C2" g2="uni0503" k="41" />
+<hkern g1="uni04C2" g2="uni050D" k="41" />
+<hkern g1="uni04C2" g2="uni0511" k="41" />
+<hkern g1="uni04C3" g2="quotedbl" k="61" />
+<hkern g1="uni04C3" g2="quotesingle" k="61" />
+<hkern g1="uni04C3" g2="afii10057" k="-102" />
+<hkern g1="uni04C3" g2="afii10036" k="41" />
+<hkern g1="uni04C3" g2="afii10038" k="41" />
+<hkern g1="uni04C3" g2="afii10041" k="82" />
+<hkern g1="uni04C3" g2="afii10084" k="61" />
+<hkern g1="uni04C3" g2="afii10089" k="41" />
+<hkern g1="uni04C3" g2="afii10092" k="61" />
+<hkern g1="uni04C3" g2="quoteright" k="61" />
+<hkern g1="uni04C3" g2="quotedblright" k="61" />
+<hkern g1="uni04C3" g2="uni0461" k="20" />
+<hkern g1="uni04C3" g2="uni0470" k="82" />
+<hkern g1="uni04C3" g2="uni0474" k="41" />
+<hkern g1="uni04C3" g2="uni0475" k="20" />
+<hkern g1="uni04C3" g2="uni0476" k="41" />
+<hkern g1="uni04C3" g2="uni0477" k="20" />
+<hkern g1="uni04C3" g2="uni047F" k="20" />
+<hkern g1="uni04C3" g2="uni04A1" k="61" />
+<hkern g1="uni04C3" g2="uni04AC" k="41" />
+<hkern g1="uni04C3" g2="uni04AD" k="61" />
+<hkern g1="uni04C3" g2="uni04AE" k="41" />
+<hkern g1="uni04C3" g2="uni04AF" k="20" />
+<hkern g1="uni04C3" g2="uni04B0" k="41" />
+<hkern g1="uni04C3" g2="uni04B1" k="20" />
+<hkern g1="uni04C3" g2="uni04B5" k="61" />
+<hkern g1="uni04C3" g2="uni04B6" k="82" />
+<hkern g1="uni04C3" g2="uni04B7" k="41" />
+<hkern g1="uni04C3" g2="uni04B8" k="82" />
+<hkern g1="uni04C3" g2="uni04B9" k="41" />
+<hkern g1="uni04C3" g2="uni04BC" k="61" />
+<hkern g1="uni04C3" g2="uni04BD" k="41" />
+<hkern g1="uni04C3" g2="uni04BE" k="61" />
+<hkern g1="uni04C3" g2="uni04BF" k="41" />
+<hkern g1="uni04C3" g2="uni04CB" k="82" />
+<hkern g1="uni04C3" g2="uni04CC" k="41" />
+<hkern g1="uni04C3" g2="uni04F4" k="82" />
+<hkern g1="uni04C3" g2="uni04F5" k="41" />
+<hkern g1="uni04C3" g2="uni0504" k="41" />
+<hkern g1="uni04C3" g2="uni0505" k="61" />
+<hkern g1="uni04C3" g2="uni0506" k="41" />
+<hkern g1="uni04C3" g2="uni0507" k="61" />
+<hkern g1="uni04C3" g2="uni050F" k="61" />
+<hkern g1="uni04C4" g2="afii10089" k="41" />
+<hkern g1="uni04C4" g2="uni04B7" k="41" />
+<hkern g1="uni04C4" g2="uni04B9" k="41" />
+<hkern g1="uni04C4" g2="uni04CC" k="41" />
+<hkern g1="uni04C4" g2="uni04F5" k="41" />
+<hkern g1="uni04C5" g2="afii10057" k="-225" />
+<hkern g1="uni04C5" g2="uni04E1" k="-41" />
+<hkern g1="uni04C5" g2="uni0505" k="41" />
+<hkern g1="uni04C5" g2="uni0507" k="41" />
+<hkern g1="uni04C6" g2="quotedbl" k="20" />
+<hkern g1="uni04C6" g2="quotesingle" k="20" />
+<hkern g1="uni04C6" g2="quoteright" k="20" />
+<hkern g1="uni04C6" g2="quotedblright" k="20" />
+<hkern g1="uni04C9" g2="afii10057" k="-225" />
+<hkern g1="uni04C9" g2="uni04E1" k="-41" />
+<hkern g1="uni04C9" g2="uni0505" k="41" />
+<hkern g1="uni04C9" g2="uni0507" k="41" />
+<hkern g1="uni04CA" g2="quotedbl" k="20" />
+<hkern g1="uni04CA" g2="quotesingle" k="20" />
+<hkern g1="uni04CA" g2="quoteright" k="20" />
+<hkern g1="uni04CA" g2="quotedblright" k="20" />
+<hkern g1="uni04CD" g2="afii10057" k="-225" />
+<hkern g1="uni04CD" g2="uni04E1" k="-41" />
+<hkern g1="uni04CD" g2="uni0505" k="41" />
+<hkern g1="uni04CD" g2="uni0507" k="41" />
+<hkern g1="uni04CE" g2="quotedbl" k="20" />
+<hkern g1="uni04CE" g2="quotesingle" k="20" />
+<hkern g1="uni04CE" g2="quoteright" k="20" />
+<hkern g1="uni04CE" g2="quotedblright" k="20" />
+<hkern g1="uni04D0" g2="quotedbl" k="143" />
+<hkern g1="uni04D0" g2="quotesingle" k="143" />
+<hkern g1="uni04D0" g2="afii10051" k="102" />
+<hkern g1="uni04D0" g2="afii10060" k="102" />
+<hkern g1="uni04D0" g2="afii10036" k="143" />
+<hkern g1="uni04D0" g2="afii10038" k="41" />
+<hkern g1="uni04D0" g2="afii10041" k="102" />
+<hkern g1="uni04D0" g2="afii10044" k="102" />
+<hkern g1="uni04D0" g2="afii10084" k="41" />
+<hkern g1="uni04D0" g2="afii10089" k="41" />
+<hkern g1="uni04D0" g2="afii10092" k="41" />
+<hkern g1="uni04D0" g2="quoteright" k="143" />
+<hkern g1="uni04D0" g2="quotedblright" k="143" />
+<hkern g1="uni04D0" g2="uni0462" k="41" />
+<hkern g1="uni04D0" g2="uni0470" k="102" />
+<hkern g1="uni04D0" g2="uni0474" k="82" />
+<hkern g1="uni04D0" g2="uni0476" k="82" />
+<hkern g1="uni04D0" g2="uni048C" k="41" />
+<hkern g1="uni04D0" g2="uni0492" k="41" />
+<hkern g1="uni04D0" g2="uni049E" k="41" />
+<hkern g1="uni04D0" g2="uni04A0" k="102" />
+<hkern g1="uni04D0" g2="uni04A1" k="41" />
+<hkern g1="uni04D0" g2="uni04AC" k="143" />
+<hkern g1="uni04D0" g2="uni04AD" k="41" />
+<hkern g1="uni04D0" g2="uni04AE" k="123" />
+<hkern g1="uni04D0" g2="uni04B0" k="123" />
+<hkern g1="uni04D0" g2="uni04B4" k="102" />
+<hkern g1="uni04D0" g2="uni04B5" k="41" />
+<hkern g1="uni04D0" g2="uni04B6" k="102" />
+<hkern g1="uni04D0" g2="uni04B7" k="41" />
+<hkern g1="uni04D0" g2="uni04B8" k="102" />
+<hkern g1="uni04D0" g2="uni04B9" k="41" />
+<hkern g1="uni04D0" g2="uni04BC" k="102" />
+<hkern g1="uni04D0" g2="uni04BE" k="102" />
+<hkern g1="uni04D0" g2="uni04CB" k="102" />
+<hkern g1="uni04D0" g2="uni04CC" k="41" />
+<hkern g1="uni04D0" g2="uni04D8" k="41" />
+<hkern g1="uni04D0" g2="uni04DA" k="41" />
+<hkern g1="uni04D0" g2="uni04F4" k="102" />
+<hkern g1="uni04D0" g2="uni04F5" k="41" />
+<hkern g1="uni04D0" g2="uni04FA" k="41" />
+<hkern g1="uni04D0" g2="uni0504" k="143" />
+<hkern g1="uni04D0" g2="uni0505" k="41" />
+<hkern g1="uni04D0" g2="uni0506" k="143" />
+<hkern g1="uni04D0" g2="uni0507" k="41" />
+<hkern g1="uni04D0" g2="uni050E" k="102" />
+<hkern g1="uni04D0" g2="uni050F" k="41" />
+<hkern g1="uni04D1" g2="quotedbl" k="20" />
+<hkern g1="uni04D1" g2="quotesingle" k="20" />
+<hkern g1="uni04D1" g2="quoteright" k="20" />
+<hkern g1="uni04D1" g2="quotedblright" k="20" />
+<hkern g1="uni04D2" g2="quotedbl" k="143" />
+<hkern g1="uni04D2" g2="quotesingle" k="143" />
+<hkern g1="uni04D2" g2="afii10051" k="102" />
+<hkern g1="uni04D2" g2="afii10060" k="102" />
+<hkern g1="uni04D2" g2="afii10036" k="143" />
+<hkern g1="uni04D2" g2="afii10038" k="41" />
+<hkern g1="uni04D2" g2="afii10041" k="102" />
+<hkern g1="uni04D2" g2="afii10044" k="102" />
+<hkern g1="uni04D2" g2="afii10084" k="41" />
+<hkern g1="uni04D2" g2="afii10089" k="41" />
+<hkern g1="uni04D2" g2="afii10092" k="41" />
+<hkern g1="uni04D2" g2="quoteright" k="143" />
+<hkern g1="uni04D2" g2="quotedblright" k="143" />
+<hkern g1="uni04D2" g2="uni0462" k="41" />
+<hkern g1="uni04D2" g2="uni0470" k="102" />
+<hkern g1="uni04D2" g2="uni0474" k="82" />
+<hkern g1="uni04D2" g2="uni0476" k="82" />
+<hkern g1="uni04D2" g2="uni048C" k="41" />
+<hkern g1="uni04D2" g2="uni0492" k="41" />
+<hkern g1="uni04D2" g2="uni049E" k="41" />
+<hkern g1="uni04D2" g2="uni04A0" k="102" />
+<hkern g1="uni04D2" g2="uni04A1" k="41" />
+<hkern g1="uni04D2" g2="uni04AC" k="143" />
+<hkern g1="uni04D2" g2="uni04AD" k="41" />
+<hkern g1="uni04D2" g2="uni04AE" k="123" />
+<hkern g1="uni04D2" g2="uni04B0" k="123" />
+<hkern g1="uni04D2" g2="uni04B4" k="102" />
+<hkern g1="uni04D2" g2="uni04B5" k="41" />
+<hkern g1="uni04D2" g2="uni04B6" k="102" />
+<hkern g1="uni04D2" g2="uni04B7" k="41" />
+<hkern g1="uni04D2" g2="uni04B8" k="102" />
+<hkern g1="uni04D2" g2="uni04B9" k="41" />
+<hkern g1="uni04D2" g2="uni04BC" k="102" />
+<hkern g1="uni04D2" g2="uni04BE" k="102" />
+<hkern g1="uni04D2" g2="uni04CB" k="102" />
+<hkern g1="uni04D2" g2="uni04CC" k="41" />
+<hkern g1="uni04D2" g2="uni04D8" k="41" />
+<hkern g1="uni04D2" g2="uni04DA" k="41" />
+<hkern g1="uni04D2" g2="uni04F4" k="102" />
+<hkern g1="uni04D2" g2="uni04F5" k="41" />
+<hkern g1="uni04D2" g2="uni04FA" k="41" />
+<hkern g1="uni04D2" g2="uni0504" k="143" />
+<hkern g1="uni04D2" g2="uni0505" k="41" />
+<hkern g1="uni04D2" g2="uni0506" k="143" />
+<hkern g1="uni04D2" g2="uni0507" k="41" />
+<hkern g1="uni04D2" g2="uni050E" k="102" />
+<hkern g1="uni04D2" g2="uni050F" k="41" />
+<hkern g1="uni04D3" g2="quotedbl" k="20" />
+<hkern g1="uni04D3" g2="quotesingle" k="20" />
+<hkern g1="uni04D3" g2="quoteright" k="20" />
+<hkern g1="uni04D3" g2="quotedblright" k="20" />
+<hkern g1="uni04D5" g2="quotedbl" k="20" />
+<hkern g1="uni04D5" g2="quotesingle" k="20" />
+<hkern g1="uni04D5" g2="quoteright" k="20" />
+<hkern g1="uni04D5" g2="quotedblright" k="20" />
+<hkern g1="uni04D7" g2="quotedbl" k="20" />
+<hkern g1="uni04D7" g2="quotesingle" k="20" />
+<hkern g1="uni04D7" g2="quoteright" k="20" />
+<hkern g1="uni04D7" g2="quotedblright" k="20" />
+<hkern g1="uni04D8" g2="comma" k="82" />
+<hkern g1="uni04D8" g2="period" k="82" />
+<hkern g1="uni04D8" g2="afii10051" k="20" />
+<hkern g1="uni04D8" g2="afii10058" k="41" />
+<hkern g1="uni04D8" g2="afii10060" k="20" />
+<hkern g1="uni04D8" g2="afii10062" k="41" />
+<hkern g1="uni04D8" g2="afii10017" k="41" />
+<hkern g1="uni04D8" g2="afii10021" k="41" />
+<hkern g1="uni04D8" g2="afii10024" k="41" />
+<hkern g1="uni04D8" g2="afii10025" k="20" />
+<hkern g1="uni04D8" g2="afii10029" k="41" />
+<hkern g1="uni04D8" g2="afii10036" k="61" />
+<hkern g1="uni04D8" g2="afii10037" k="41" />
+<hkern g1="uni04D8" g2="afii10039" k="41" />
+<hkern g1="uni04D8" g2="afii10041" k="41" />
+<hkern g1="uni04D8" g2="afii10044" k="20" />
+<hkern g1="uni04D8" g2="afii10047" k="20" />
+<hkern g1="uni04D8" g2="afii10069" k="20" />
+<hkern g1="uni04D8" g2="afii10077" k="20" />
+<hkern g1="uni04D8" g2="afii10106" k="20" />
+<hkern g1="uni04D8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04D8" g2="quotedblbase" k="82" />
+<hkern g1="uni04D8" g2="uni0466" k="41" />
+<hkern g1="uni04D8" g2="uni0467" k="20" />
+<hkern g1="uni04D8" g2="uni046E" k="20" />
+<hkern g1="uni04D8" g2="uni0470" k="41" />
+<hkern g1="uni04D8" g2="uni0474" k="20" />
+<hkern g1="uni04D8" g2="uni0476" k="20" />
+<hkern g1="uni04D8" g2="uni0496" k="41" />
+<hkern g1="uni04D8" g2="uni0498" k="20" />
+<hkern g1="uni04D8" g2="uni04A0" k="20" />
+<hkern g1="uni04D8" g2="uni04AC" k="61" />
+<hkern g1="uni04D8" g2="uni04AE" k="20" />
+<hkern g1="uni04D8" g2="uni04B0" k="20" />
+<hkern g1="uni04D8" g2="uni04B2" k="41" />
+<hkern g1="uni04D8" g2="uni04B4" k="20" />
+<hkern g1="uni04D8" g2="uni04B6" k="41" />
+<hkern g1="uni04D8" g2="uni04B8" k="41" />
+<hkern g1="uni04D8" g2="uni04C1" k="41" />
+<hkern g1="uni04D8" g2="uni04C5" k="41" />
+<hkern g1="uni04D8" g2="uni04C6" k="20" />
+<hkern g1="uni04D8" g2="uni04CB" k="41" />
+<hkern g1="uni04D8" g2="uni04D0" k="41" />
+<hkern g1="uni04D8" g2="uni04D2" k="41" />
+<hkern g1="uni04D8" g2="uni04D4" k="41" />
+<hkern g1="uni04D8" g2="uni04DC" k="41" />
+<hkern g1="uni04D8" g2="uni04DE" k="20" />
+<hkern g1="uni04D8" g2="uni04EC" k="20" />
+<hkern g1="uni04D8" g2="uni04EE" k="41" />
+<hkern g1="uni04D8" g2="uni04F0" k="41" />
+<hkern g1="uni04D8" g2="uni04F2" k="41" />
+<hkern g1="uni04D8" g2="uni04F4" k="41" />
+<hkern g1="uni04D8" g2="uni04FC" k="41" />
+<hkern g1="uni04D8" g2="uni04FE" k="41" />
+<hkern g1="uni04D8" g2="uni0504" k="41" />
+<hkern g1="uni04D8" g2="uni0506" k="41" />
+<hkern g1="uni04D8" g2="uni0508" k="41" />
+<hkern g1="uni04D8" g2="uni0509" k="20" />
+<hkern g1="uni04D8" g2="uni050E" k="20" />
+<hkern g1="uni04D8" g2="uni0512" k="41" />
+<hkern g1="uni04D8" g2="uni0513" k="20" />
+<hkern g1="uni04D9" g2="quotedbl" k="20" />
+<hkern g1="uni04D9" g2="quotesingle" k="20" />
+<hkern g1="uni04D9" g2="afii10072" k="41" />
+<hkern g1="uni04D9" g2="afii10084" k="20" />
+<hkern g1="uni04D9" g2="afii10085" k="20" />
+<hkern g1="uni04D9" g2="afii10087" k="41" />
+<hkern g1="uni04D9" g2="afii10089" k="20" />
+<hkern g1="uni04D9" g2="afii10092" k="20" />
+<hkern g1="uni04D9" g2="afii10110" k="20" />
+<hkern g1="uni04D9" g2="quoteright" k="20" />
+<hkern g1="uni04D9" g2="quotedblright" k="20" />
+<hkern g1="uni04D9" g2="uni0497" k="41" />
+<hkern g1="uni04D9" g2="uni04A1" k="20" />
+<hkern g1="uni04D9" g2="uni04AD" k="20" />
+<hkern g1="uni04D9" g2="uni04B3" k="41" />
+<hkern g1="uni04D9" g2="uni04B5" k="20" />
+<hkern g1="uni04D9" g2="uni04B7" k="20" />
+<hkern g1="uni04D9" g2="uni04B9" k="20" />
+<hkern g1="uni04D9" g2="uni04C2" k="41" />
+<hkern g1="uni04D9" g2="uni04CC" k="20" />
+<hkern g1="uni04D9" g2="uni04DD" k="41" />
+<hkern g1="uni04D9" g2="uni04EF" k="20" />
+<hkern g1="uni04D9" g2="uni04F1" k="20" />
+<hkern g1="uni04D9" g2="uni04F3" k="20" />
+<hkern g1="uni04D9" g2="uni04F5" k="20" />
+<hkern g1="uni04D9" g2="uni04FD" k="41" />
+<hkern g1="uni04D9" g2="uni04FF" k="41" />
+<hkern g1="uni04D9" g2="uni0505" k="20" />
+<hkern g1="uni04D9" g2="uni0507" k="20" />
+<hkern g1="uni04D9" g2="uni050F" k="20" />
+<hkern g1="uni04DA" g2="comma" k="82" />
+<hkern g1="uni04DA" g2="period" k="82" />
+<hkern g1="uni04DA" g2="afii10051" k="20" />
+<hkern g1="uni04DA" g2="afii10058" k="41" />
+<hkern g1="uni04DA" g2="afii10060" k="20" />
+<hkern g1="uni04DA" g2="afii10062" k="41" />
+<hkern g1="uni04DA" g2="afii10017" k="41" />
+<hkern g1="uni04DA" g2="afii10021" k="41" />
+<hkern g1="uni04DA" g2="afii10024" k="41" />
+<hkern g1="uni04DA" g2="afii10025" k="20" />
+<hkern g1="uni04DA" g2="afii10029" k="41" />
+<hkern g1="uni04DA" g2="afii10036" k="61" />
+<hkern g1="uni04DA" g2="afii10037" k="41" />
+<hkern g1="uni04DA" g2="afii10039" k="41" />
+<hkern g1="uni04DA" g2="afii10041" k="41" />
+<hkern g1="uni04DA" g2="afii10044" k="20" />
+<hkern g1="uni04DA" g2="afii10047" k="20" />
+<hkern g1="uni04DA" g2="afii10069" k="20" />
+<hkern g1="uni04DA" g2="afii10077" k="20" />
+<hkern g1="uni04DA" g2="afii10106" k="20" />
+<hkern g1="uni04DA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DA" g2="quotedblbase" k="82" />
+<hkern g1="uni04DA" g2="uni0466" k="41" />
+<hkern g1="uni04DA" g2="uni0467" k="20" />
+<hkern g1="uni04DA" g2="uni046E" k="20" />
+<hkern g1="uni04DA" g2="uni0470" k="41" />
+<hkern g1="uni04DA" g2="uni0474" k="20" />
+<hkern g1="uni04DA" g2="uni0476" k="20" />
+<hkern g1="uni04DA" g2="uni0496" k="41" />
+<hkern g1="uni04DA" g2="uni0498" k="20" />
+<hkern g1="uni04DA" g2="uni04A0" k="20" />
+<hkern g1="uni04DA" g2="uni04AC" k="61" />
+<hkern g1="uni04DA" g2="uni04AE" k="20" />
+<hkern g1="uni04DA" g2="uni04B0" k="20" />
+<hkern g1="uni04DA" g2="uni04B2" k="41" />
+<hkern g1="uni04DA" g2="uni04B4" k="20" />
+<hkern g1="uni04DA" g2="uni04B6" k="41" />
+<hkern g1="uni04DA" g2="uni04B8" k="41" />
+<hkern g1="uni04DA" g2="uni04C1" k="41" />
+<hkern g1="uni04DA" g2="uni04C5" k="41" />
+<hkern g1="uni04DA" g2="uni04C6" k="20" />
+<hkern g1="uni04DA" g2="uni04CB" k="41" />
+<hkern g1="uni04DA" g2="uni04D0" k="41" />
+<hkern g1="uni04DA" g2="uni04D2" k="41" />
+<hkern g1="uni04DA" g2="uni04D4" k="41" />
+<hkern g1="uni04DA" g2="uni04DC" k="41" />
+<hkern g1="uni04DA" g2="uni04DE" k="20" />
+<hkern g1="uni04DA" g2="uni04EC" k="20" />
+<hkern g1="uni04DA" g2="uni04EE" k="41" />
+<hkern g1="uni04DA" g2="uni04F0" k="41" />
+<hkern g1="uni04DA" g2="uni04F2" k="41" />
+<hkern g1="uni04DA" g2="uni04F4" k="41" />
+<hkern g1="uni04DA" g2="uni04FC" k="41" />
+<hkern g1="uni04DA" g2="uni04FE" k="41" />
+<hkern g1="uni04DA" g2="uni0504" k="41" />
+<hkern g1="uni04DA" g2="uni0506" k="41" />
+<hkern g1="uni04DA" g2="uni0508" k="41" />
+<hkern g1="uni04DA" g2="uni0509" k="20" />
+<hkern g1="uni04DA" g2="uni050E" k="20" />
+<hkern g1="uni04DA" g2="uni0512" k="41" />
+<hkern g1="uni04DA" g2="uni0513" k="20" />
+<hkern g1="uni04DB" g2="quotedbl" k="20" />
+<hkern g1="uni04DB" g2="quotesingle" k="20" />
+<hkern g1="uni04DB" g2="afii10072" k="41" />
+<hkern g1="uni04DB" g2="afii10084" k="20" />
+<hkern g1="uni04DB" g2="afii10085" k="20" />
+<hkern g1="uni04DB" g2="afii10087" k="41" />
+<hkern g1="uni04DB" g2="afii10089" k="20" />
+<hkern g1="uni04DB" g2="afii10092" k="20" />
+<hkern g1="uni04DB" g2="afii10110" k="20" />
+<hkern g1="uni04DB" g2="quoteright" k="20" />
+<hkern g1="uni04DB" g2="quotedblright" k="20" />
+<hkern g1="uni04DB" g2="uni0497" k="41" />
+<hkern g1="uni04DB" g2="uni04A1" k="20" />
+<hkern g1="uni04DB" g2="uni04AD" k="20" />
+<hkern g1="uni04DB" g2="uni04B3" k="41" />
+<hkern g1="uni04DB" g2="uni04B5" k="20" />
+<hkern g1="uni04DB" g2="uni04B7" k="20" />
+<hkern g1="uni04DB" g2="uni04B9" k="20" />
+<hkern g1="uni04DB" g2="uni04C2" k="41" />
+<hkern g1="uni04DB" g2="uni04CC" k="20" />
+<hkern g1="uni04DB" g2="uni04DD" k="41" />
+<hkern g1="uni04DB" g2="uni04EF" k="20" />
+<hkern g1="uni04DB" g2="uni04F1" k="20" />
+<hkern g1="uni04DB" g2="uni04F3" k="20" />
+<hkern g1="uni04DB" g2="uni04F5" k="20" />
+<hkern g1="uni04DB" g2="uni04FD" k="41" />
+<hkern g1="uni04DB" g2="uni04FF" k="41" />
+<hkern g1="uni04DB" g2="uni0505" k="20" />
+<hkern g1="uni04DB" g2="uni0507" k="20" />
+<hkern g1="uni04DB" g2="uni050F" k="20" />
+<hkern g1="uni04DC" g2="afii10053" k="41" />
+<hkern g1="uni04DC" g2="afii10032" k="41" />
+<hkern g1="uni04DC" g2="afii10035" k="41" />
+<hkern g1="uni04DC" g2="afii10038" k="41" />
+<hkern g1="uni04DC" g2="afii10041" k="41" />
+<hkern g1="uni04DC" g2="afii10089" k="41" />
+<hkern g1="uni04DC" g2="uni0460" k="41" />
+<hkern g1="uni04DC" g2="uni0470" k="41" />
+<hkern g1="uni04DC" g2="uni0472" k="41" />
+<hkern g1="uni04DC" g2="uni0478" k="41" />
+<hkern g1="uni04DC" g2="uni047A" k="41" />
+<hkern g1="uni04DC" g2="uni047C" k="41" />
+<hkern g1="uni04DC" g2="uni047E" k="41" />
+<hkern g1="uni04DC" g2="uni0480" k="41" />
+<hkern g1="uni04DC" g2="uni04A8" k="41" />
+<hkern g1="uni04DC" g2="uni04AA" k="41" />
+<hkern g1="uni04DC" g2="uni04B6" k="41" />
+<hkern g1="uni04DC" g2="uni04B7" k="41" />
+<hkern g1="uni04DC" g2="uni04B8" k="41" />
+<hkern g1="uni04DC" g2="uni04B9" k="41" />
+<hkern g1="uni04DC" g2="uni04BC" k="102" />
+<hkern g1="uni04DC" g2="uni04BE" k="102" />
+<hkern g1="uni04DC" g2="uni04CB" k="41" />
+<hkern g1="uni04DC" g2="uni04CC" k="41" />
+<hkern g1="uni04DC" g2="uni04E6" k="41" />
+<hkern g1="uni04DC" g2="uni04E8" k="41" />
+<hkern g1="uni04DC" g2="uni04EA" k="41" />
+<hkern g1="uni04DC" g2="uni04F4" k="41" />
+<hkern g1="uni04DC" g2="uni04F5" k="41" />
+<hkern g1="uni04DC" g2="uni0500" k="41" />
+<hkern g1="uni04DC" g2="uni0502" k="41" />
+<hkern g1="uni04DC" g2="uni0505" k="41" />
+<hkern g1="uni04DC" g2="uni0507" k="41" />
+<hkern g1="uni04DC" g2="uni050C" k="41" />
+<hkern g1="uni04DC" g2="uni0510" k="20" />
+<hkern g1="uni04DD" g2="afii10070" k="41" />
+<hkern g1="uni04DD" g2="afii10080" k="41" />
+<hkern g1="uni04DD" g2="afii10083" k="41" />
+<hkern g1="uni04DD" g2="afii10086" k="41" />
+<hkern g1="uni04DD" g2="afii10089" k="41" />
+<hkern g1="uni04DD" g2="afii10071" k="41" />
+<hkern g1="uni04DD" g2="afii10101" k="41" />
+<hkern g1="uni04DD" g2="uni0450" k="41" />
+<hkern g1="uni04DD" g2="uni0473" k="41" />
+<hkern g1="uni04DD" g2="uni0479" k="41" />
+<hkern g1="uni04DD" g2="uni047B" k="41" />
+<hkern g1="uni04DD" g2="uni047D" k="41" />
+<hkern g1="uni04DD" g2="uni0481" k="41" />
+<hkern g1="uni04DD" g2="uni04A9" k="41" />
+<hkern g1="uni04DD" g2="uni04AB" k="41" />
+<hkern g1="uni04DD" g2="uni04B7" k="41" />
+<hkern g1="uni04DD" g2="uni04B9" k="41" />
+<hkern g1="uni04DD" g2="uni04BD" k="41" />
+<hkern g1="uni04DD" g2="uni04BF" k="41" />
+<hkern g1="uni04DD" g2="uni04CC" k="41" />
+<hkern g1="uni04DD" g2="uni04D7" k="41" />
+<hkern g1="uni04DD" g2="uni04E7" k="41" />
+<hkern g1="uni04DD" g2="uni04E9" k="41" />
+<hkern g1="uni04DD" g2="uni04EB" k="41" />
+<hkern g1="uni04DD" g2="uni04F5" k="41" />
+<hkern g1="uni04DD" g2="uni0501" k="41" />
+<hkern g1="uni04DD" g2="uni0503" k="41" />
+<hkern g1="uni04DD" g2="uni050D" k="41" />
+<hkern g1="uni04DD" g2="uni0511" k="41" />
+<hkern g1="uni04DE" g2="comma" k="82" />
+<hkern g1="uni04DE" g2="period" k="82" />
+<hkern g1="uni04DE" g2="quotesinglbase" k="82" />
+<hkern g1="uni04DE" g2="quotedblbase" k="82" />
+<hkern g1="uni04DE" g2="uni0474" k="20" />
+<hkern g1="uni04DE" g2="uni0476" k="20" />
+<hkern g1="uni04DE" g2="uni04AE" k="20" />
+<hkern g1="uni04DE" g2="uni04B0" k="20" />
+<hkern g1="uni04DE" g2="uni0504" k="41" />
+<hkern g1="uni04DE" g2="uni0506" k="41" />
+<hkern g1="uni04DF" g2="afii10097" k="-41" />
+<hkern g1="uni04E0" g2="quotedbl" k="20" />
+<hkern g1="uni04E0" g2="quotesingle" k="20" />
+<hkern g1="uni04E0" g2="quoteright" k="20" />
+<hkern g1="uni04E0" g2="quotedblright" k="20" />
+<hkern g1="uni04E0" g2="uni0505" k="41" />
+<hkern g1="uni04E0" g2="uni0507" k="41" />
+<hkern g1="uni04E6" g2="comma" k="82" />
+<hkern g1="uni04E6" g2="period" k="82" />
+<hkern g1="uni04E6" g2="afii10051" k="20" />
+<hkern g1="uni04E6" g2="afii10058" k="41" />
+<hkern g1="uni04E6" g2="afii10060" k="20" />
+<hkern g1="uni04E6" g2="afii10062" k="41" />
+<hkern g1="uni04E6" g2="afii10017" k="41" />
+<hkern g1="uni04E6" g2="afii10021" k="41" />
+<hkern g1="uni04E6" g2="afii10024" k="41" />
+<hkern g1="uni04E6" g2="afii10025" k="20" />
+<hkern g1="uni04E6" g2="afii10029" k="41" />
+<hkern g1="uni04E6" g2="afii10036" k="61" />
+<hkern g1="uni04E6" g2="afii10037" k="41" />
+<hkern g1="uni04E6" g2="afii10039" k="41" />
+<hkern g1="uni04E6" g2="afii10041" k="41" />
+<hkern g1="uni04E6" g2="afii10044" k="20" />
+<hkern g1="uni04E6" g2="afii10047" k="20" />
+<hkern g1="uni04E6" g2="afii10069" k="20" />
+<hkern g1="uni04E6" g2="afii10077" k="20" />
+<hkern g1="uni04E6" g2="afii10106" k="20" />
+<hkern g1="uni04E6" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E6" g2="quotedblbase" k="82" />
+<hkern g1="uni04E6" g2="uni0466" k="41" />
+<hkern g1="uni04E6" g2="uni0467" k="20" />
+<hkern g1="uni04E6" g2="uni046E" k="20" />
+<hkern g1="uni04E6" g2="uni0470" k="41" />
+<hkern g1="uni04E6" g2="uni0474" k="20" />
+<hkern g1="uni04E6" g2="uni0476" k="20" />
+<hkern g1="uni04E6" g2="uni0496" k="41" />
+<hkern g1="uni04E6" g2="uni0498" k="20" />
+<hkern g1="uni04E6" g2="uni04A0" k="20" />
+<hkern g1="uni04E6" g2="uni04AC" k="61" />
+<hkern g1="uni04E6" g2="uni04AE" k="20" />
+<hkern g1="uni04E6" g2="uni04B0" k="20" />
+<hkern g1="uni04E6" g2="uni04B2" k="41" />
+<hkern g1="uni04E6" g2="uni04B4" k="20" />
+<hkern g1="uni04E6" g2="uni04B6" k="41" />
+<hkern g1="uni04E6" g2="uni04B8" k="41" />
+<hkern g1="uni04E6" g2="uni04C1" k="41" />
+<hkern g1="uni04E6" g2="uni04C5" k="41" />
+<hkern g1="uni04E6" g2="uni04C6" k="20" />
+<hkern g1="uni04E6" g2="uni04CB" k="41" />
+<hkern g1="uni04E6" g2="uni04D0" k="41" />
+<hkern g1="uni04E6" g2="uni04D2" k="41" />
+<hkern g1="uni04E6" g2="uni04D4" k="41" />
+<hkern g1="uni04E6" g2="uni04DC" k="41" />
+<hkern g1="uni04E6" g2="uni04DE" k="20" />
+<hkern g1="uni04E6" g2="uni04EC" k="20" />
+<hkern g1="uni04E6" g2="uni04EE" k="41" />
+<hkern g1="uni04E6" g2="uni04F0" k="41" />
+<hkern g1="uni04E6" g2="uni04F2" k="41" />
+<hkern g1="uni04E6" g2="uni04F4" k="41" />
+<hkern g1="uni04E6" g2="uni04FC" k="41" />
+<hkern g1="uni04E6" g2="uni04FE" k="41" />
+<hkern g1="uni04E6" g2="uni0504" k="41" />
+<hkern g1="uni04E6" g2="uni0506" k="41" />
+<hkern g1="uni04E6" g2="uni0508" k="41" />
+<hkern g1="uni04E6" g2="uni0509" k="20" />
+<hkern g1="uni04E6" g2="uni050E" k="20" />
+<hkern g1="uni04E6" g2="uni0512" k="41" />
+<hkern g1="uni04E6" g2="uni0513" k="20" />
+<hkern g1="uni04E7" g2="quotedbl" k="20" />
+<hkern g1="uni04E7" g2="quotesingle" k="20" />
+<hkern g1="uni04E7" g2="afii10072" k="41" />
+<hkern g1="uni04E7" g2="afii10084" k="20" />
+<hkern g1="uni04E7" g2="afii10085" k="20" />
+<hkern g1="uni04E7" g2="afii10087" k="41" />
+<hkern g1="uni04E7" g2="afii10089" k="20" />
+<hkern g1="uni04E7" g2="afii10092" k="20" />
+<hkern g1="uni04E7" g2="afii10110" k="20" />
+<hkern g1="uni04E7" g2="quoteright" k="20" />
+<hkern g1="uni04E7" g2="quotedblright" k="20" />
+<hkern g1="uni04E7" g2="uni0497" k="41" />
+<hkern g1="uni04E7" g2="uni04A1" k="20" />
+<hkern g1="uni04E7" g2="uni04AD" k="20" />
+<hkern g1="uni04E7" g2="uni04B3" k="41" />
+<hkern g1="uni04E7" g2="uni04B5" k="20" />
+<hkern g1="uni04E7" g2="uni04B7" k="20" />
+<hkern g1="uni04E7" g2="uni04B9" k="20" />
+<hkern g1="uni04E7" g2="uni04C2" k="41" />
+<hkern g1="uni04E7" g2="uni04CC" k="20" />
+<hkern g1="uni04E7" g2="uni04DD" k="41" />
+<hkern g1="uni04E7" g2="uni04EF" k="20" />
+<hkern g1="uni04E7" g2="uni04F1" k="20" />
+<hkern g1="uni04E7" g2="uni04F3" k="20" />
+<hkern g1="uni04E7" g2="uni04F5" k="20" />
+<hkern g1="uni04E7" g2="uni04FD" k="41" />
+<hkern g1="uni04E7" g2="uni04FF" k="41" />
+<hkern g1="uni04E7" g2="uni0505" k="20" />
+<hkern g1="uni04E7" g2="uni0507" k="20" />
+<hkern g1="uni04E7" g2="uni050F" k="20" />
+<hkern g1="uni04E8" g2="comma" k="82" />
+<hkern g1="uni04E8" g2="period" k="82" />
+<hkern g1="uni04E8" g2="afii10051" k="20" />
+<hkern g1="uni04E8" g2="afii10058" k="41" />
+<hkern g1="uni04E8" g2="afii10060" k="20" />
+<hkern g1="uni04E8" g2="afii10062" k="41" />
+<hkern g1="uni04E8" g2="afii10017" k="41" />
+<hkern g1="uni04E8" g2="afii10021" k="41" />
+<hkern g1="uni04E8" g2="afii10024" k="41" />
+<hkern g1="uni04E8" g2="afii10025" k="20" />
+<hkern g1="uni04E8" g2="afii10029" k="41" />
+<hkern g1="uni04E8" g2="afii10036" k="61" />
+<hkern g1="uni04E8" g2="afii10037" k="41" />
+<hkern g1="uni04E8" g2="afii10039" k="41" />
+<hkern g1="uni04E8" g2="afii10041" k="41" />
+<hkern g1="uni04E8" g2="afii10044" k="20" />
+<hkern g1="uni04E8" g2="afii10047" k="20" />
+<hkern g1="uni04E8" g2="afii10069" k="20" />
+<hkern g1="uni04E8" g2="afii10077" k="20" />
+<hkern g1="uni04E8" g2="afii10106" k="20" />
+<hkern g1="uni04E8" g2="quotesinglbase" k="82" />
+<hkern g1="uni04E8" g2="quotedblbase" k="82" />
+<hkern g1="uni04E8" g2="uni0466" k="41" />
+<hkern g1="uni04E8" g2="uni0467" k="20" />
+<hkern g1="uni04E8" g2="uni046E" k="20" />
+<hkern g1="uni04E8" g2="uni0470" k="41" />
+<hkern g1="uni04E8" g2="uni0474" k="20" />
+<hkern g1="uni04E8" g2="uni0476" k="20" />
+<hkern g1="uni04E8" g2="uni0496" k="41" />
+<hkern g1="uni04E8" g2="uni0498" k="20" />
+<hkern g1="uni04E8" g2="uni04A0" k="20" />
+<hkern g1="uni04E8" g2="uni04AC" k="61" />
+<hkern g1="uni04E8" g2="uni04AE" k="20" />
+<hkern g1="uni04E8" g2="uni04B0" k="20" />
+<hkern g1="uni04E8" g2="uni04B2" k="41" />
+<hkern g1="uni04E8" g2="uni04B4" k="20" />
+<hkern g1="uni04E8" g2="uni04B6" k="41" />
+<hkern g1="uni04E8" g2="uni04B8" k="41" />
+<hkern g1="uni04E8" g2="uni04C1" k="41" />
+<hkern g1="uni04E8" g2="uni04C5" k="41" />
+<hkern g1="uni04E8" g2="uni04C6" k="20" />
+<hkern g1="uni04E8" g2="uni04CB" k="41" />
+<hkern g1="uni04E8" g2="uni04D0" k="41" />
+<hkern g1="uni04E8" g2="uni04D2" k="41" />
+<hkern g1="uni04E8" g2="uni04D4" k="41" />
+<hkern g1="uni04E8" g2="uni04DC" k="41" />
+<hkern g1="uni04E8" g2="uni04DE" k="20" />
+<hkern g1="uni04E8" g2="uni04EC" k="20" />
+<hkern g1="uni04E8" g2="uni04EE" k="41" />
+<hkern g1="uni04E8" g2="uni04F0" k="41" />
+<hkern g1="uni04E8" g2="uni04F2" k="41" />
+<hkern g1="uni04E8" g2="uni04F4" k="41" />
+<hkern g1="uni04E8" g2="uni04FC" k="41" />
+<hkern g1="uni04E8" g2="uni04FE" k="41" />
+<hkern g1="uni04E8" g2="uni0504" k="41" />
+<hkern g1="uni04E8" g2="uni0506" k="41" />
+<hkern g1="uni04E8" g2="uni0508" k="41" />
+<hkern g1="uni04E8" g2="uni0509" k="20" />
+<hkern g1="uni04E8" g2="uni050E" k="20" />
+<hkern g1="uni04E8" g2="uni0512" k="41" />
+<hkern g1="uni04E8" g2="uni0513" k="20" />
+<hkern g1="uni04E9" g2="quotedbl" k="20" />
+<hkern g1="uni04E9" g2="quotesingle" k="20" />
+<hkern g1="uni04E9" g2="afii10072" k="41" />
+<hkern g1="uni04E9" g2="afii10084" k="20" />
+<hkern g1="uni04E9" g2="afii10085" k="20" />
+<hkern g1="uni04E9" g2="afii10087" k="41" />
+<hkern g1="uni04E9" g2="afii10089" k="20" />
+<hkern g1="uni04E9" g2="afii10092" k="20" />
+<hkern g1="uni04E9" g2="afii10110" k="20" />
+<hkern g1="uni04E9" g2="quoteright" k="20" />
+<hkern g1="uni04E9" g2="quotedblright" k="20" />
+<hkern g1="uni04E9" g2="uni0497" k="41" />
+<hkern g1="uni04E9" g2="uni04A1" k="20" />
+<hkern g1="uni04E9" g2="uni04AD" k="20" />
+<hkern g1="uni04E9" g2="uni04B3" k="41" />
+<hkern g1="uni04E9" g2="uni04B5" k="20" />
+<hkern g1="uni04E9" g2="uni04B7" k="20" />
+<hkern g1="uni04E9" g2="uni04B9" k="20" />
+<hkern g1="uni04E9" g2="uni04C2" k="41" />
+<hkern g1="uni04E9" g2="uni04CC" k="20" />
+<hkern g1="uni04E9" g2="uni04DD" k="41" />
+<hkern g1="uni04E9" g2="uni04EF" k="20" />
+<hkern g1="uni04E9" g2="uni04F1" k="20" />
+<hkern g1="uni04E9" g2="uni04F3" k="20" />
+<hkern g1="uni04E9" g2="uni04F5" k="20" />
+<hkern g1="uni04E9" g2="uni04FD" k="41" />
+<hkern g1="uni04E9" g2="uni04FF" k="41" />
+<hkern g1="uni04E9" g2="uni0505" k="20" />
+<hkern g1="uni04E9" g2="uni0507" k="20" />
+<hkern g1="uni04E9" g2="uni050F" k="20" />
+<hkern g1="uni04EA" g2="comma" k="82" />
+<hkern g1="uni04EA" g2="period" k="82" />
+<hkern g1="uni04EA" g2="afii10051" k="20" />
+<hkern g1="uni04EA" g2="afii10058" k="41" />
+<hkern g1="uni04EA" g2="afii10060" k="20" />
+<hkern g1="uni04EA" g2="afii10062" k="41" />
+<hkern g1="uni04EA" g2="afii10017" k="41" />
+<hkern g1="uni04EA" g2="afii10021" k="41" />
+<hkern g1="uni04EA" g2="afii10024" k="41" />
+<hkern g1="uni04EA" g2="afii10025" k="20" />
+<hkern g1="uni04EA" g2="afii10029" k="41" />
+<hkern g1="uni04EA" g2="afii10036" k="61" />
+<hkern g1="uni04EA" g2="afii10037" k="41" />
+<hkern g1="uni04EA" g2="afii10039" k="41" />
+<hkern g1="uni04EA" g2="afii10041" k="41" />
+<hkern g1="uni04EA" g2="afii10044" k="20" />
+<hkern g1="uni04EA" g2="afii10047" k="20" />
+<hkern g1="uni04EA" g2="afii10069" k="20" />
+<hkern g1="uni04EA" g2="afii10077" k="20" />
+<hkern g1="uni04EA" g2="afii10106" k="20" />
+<hkern g1="uni04EA" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EA" g2="quotedblbase" k="82" />
+<hkern g1="uni04EA" g2="uni0466" k="41" />
+<hkern g1="uni04EA" g2="uni0467" k="20" />
+<hkern g1="uni04EA" g2="uni046E" k="20" />
+<hkern g1="uni04EA" g2="uni0470" k="41" />
+<hkern g1="uni04EA" g2="uni0474" k="20" />
+<hkern g1="uni04EA" g2="uni0476" k="20" />
+<hkern g1="uni04EA" g2="uni0496" k="41" />
+<hkern g1="uni04EA" g2="uni0498" k="20" />
+<hkern g1="uni04EA" g2="uni04A0" k="20" />
+<hkern g1="uni04EA" g2="uni04AC" k="61" />
+<hkern g1="uni04EA" g2="uni04AE" k="20" />
+<hkern g1="uni04EA" g2="uni04B0" k="20" />
+<hkern g1="uni04EA" g2="uni04B2" k="41" />
+<hkern g1="uni04EA" g2="uni04B4" k="20" />
+<hkern g1="uni04EA" g2="uni04B6" k="41" />
+<hkern g1="uni04EA" g2="uni04B8" k="41" />
+<hkern g1="uni04EA" g2="uni04C1" k="41" />
+<hkern g1="uni04EA" g2="uni04C5" k="41" />
+<hkern g1="uni04EA" g2="uni04C6" k="20" />
+<hkern g1="uni04EA" g2="uni04CB" k="41" />
+<hkern g1="uni04EA" g2="uni04D0" k="41" />
+<hkern g1="uni04EA" g2="uni04D2" k="41" />
+<hkern g1="uni04EA" g2="uni04D4" k="41" />
+<hkern g1="uni04EA" g2="uni04DC" k="41" />
+<hkern g1="uni04EA" g2="uni04DE" k="20" />
+<hkern g1="uni04EA" g2="uni04EC" k="20" />
+<hkern g1="uni04EA" g2="uni04EE" k="41" />
+<hkern g1="uni04EA" g2="uni04F0" k="41" />
+<hkern g1="uni04EA" g2="uni04F2" k="41" />
+<hkern g1="uni04EA" g2="uni04F4" k="41" />
+<hkern g1="uni04EA" g2="uni04FC" k="41" />
+<hkern g1="uni04EA" g2="uni04FE" k="41" />
+<hkern g1="uni04EA" g2="uni0504" k="41" />
+<hkern g1="uni04EA" g2="uni0506" k="41" />
+<hkern g1="uni04EA" g2="uni0508" k="41" />
+<hkern g1="uni04EA" g2="uni0509" k="20" />
+<hkern g1="uni04EA" g2="uni050E" k="20" />
+<hkern g1="uni04EA" g2="uni0512" k="41" />
+<hkern g1="uni04EA" g2="uni0513" k="20" />
+<hkern g1="uni04EB" g2="quotedbl" k="20" />
+<hkern g1="uni04EB" g2="quotesingle" k="20" />
+<hkern g1="uni04EB" g2="afii10072" k="41" />
+<hkern g1="uni04EB" g2="afii10084" k="20" />
+<hkern g1="uni04EB" g2="afii10085" k="20" />
+<hkern g1="uni04EB" g2="afii10087" k="41" />
+<hkern g1="uni04EB" g2="afii10089" k="20" />
+<hkern g1="uni04EB" g2="afii10092" k="20" />
+<hkern g1="uni04EB" g2="afii10110" k="20" />
+<hkern g1="uni04EB" g2="quoteright" k="20" />
+<hkern g1="uni04EB" g2="quotedblright" k="20" />
+<hkern g1="uni04EB" g2="uni0497" k="41" />
+<hkern g1="uni04EB" g2="uni04A1" k="20" />
+<hkern g1="uni04EB" g2="uni04AD" k="20" />
+<hkern g1="uni04EB" g2="uni04B3" k="41" />
+<hkern g1="uni04EB" g2="uni04B5" k="20" />
+<hkern g1="uni04EB" g2="uni04B7" k="20" />
+<hkern g1="uni04EB" g2="uni04B9" k="20" />
+<hkern g1="uni04EB" g2="uni04C2" k="41" />
+<hkern g1="uni04EB" g2="uni04CC" k="20" />
+<hkern g1="uni04EB" g2="uni04DD" k="41" />
+<hkern g1="uni04EB" g2="uni04EF" k="20" />
+<hkern g1="uni04EB" g2="uni04F1" k="20" />
+<hkern g1="uni04EB" g2="uni04F3" k="20" />
+<hkern g1="uni04EB" g2="uni04F5" k="20" />
+<hkern g1="uni04EB" g2="uni04FD" k="41" />
+<hkern g1="uni04EB" g2="uni04FF" k="41" />
+<hkern g1="uni04EB" g2="uni0505" k="20" />
+<hkern g1="uni04EB" g2="uni0507" k="20" />
+<hkern g1="uni04EB" g2="uni050F" k="20" />
+<hkern g1="uni04EC" g2="comma" k="82" />
+<hkern g1="uni04EC" g2="period" k="82" />
+<hkern g1="uni04EC" g2="afii10051" k="20" />
+<hkern g1="uni04EC" g2="afii10058" k="41" />
+<hkern g1="uni04EC" g2="afii10060" k="20" />
+<hkern g1="uni04EC" g2="afii10062" k="41" />
+<hkern g1="uni04EC" g2="afii10017" k="41" />
+<hkern g1="uni04EC" g2="afii10021" k="41" />
+<hkern g1="uni04EC" g2="afii10024" k="41" />
+<hkern g1="uni04EC" g2="afii10025" k="20" />
+<hkern g1="uni04EC" g2="afii10029" k="41" />
+<hkern g1="uni04EC" g2="afii10036" k="61" />
+<hkern g1="uni04EC" g2="afii10037" k="41" />
+<hkern g1="uni04EC" g2="afii10039" k="41" />
+<hkern g1="uni04EC" g2="afii10041" k="41" />
+<hkern g1="uni04EC" g2="afii10044" k="20" />
+<hkern g1="uni04EC" g2="afii10047" k="20" />
+<hkern g1="uni04EC" g2="afii10069" k="20" />
+<hkern g1="uni04EC" g2="afii10077" k="20" />
+<hkern g1="uni04EC" g2="afii10106" k="20" />
+<hkern g1="uni04EC" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EC" g2="quotedblbase" k="82" />
+<hkern g1="uni04EC" g2="uni0466" k="41" />
+<hkern g1="uni04EC" g2="uni0467" k="20" />
+<hkern g1="uni04EC" g2="uni046E" k="20" />
+<hkern g1="uni04EC" g2="uni0470" k="41" />
+<hkern g1="uni04EC" g2="uni0474" k="20" />
+<hkern g1="uni04EC" g2="uni0476" k="20" />
+<hkern g1="uni04EC" g2="uni0496" k="41" />
+<hkern g1="uni04EC" g2="uni0498" k="20" />
+<hkern g1="uni04EC" g2="uni04A0" k="20" />
+<hkern g1="uni04EC" g2="uni04AC" k="61" />
+<hkern g1="uni04EC" g2="uni04AE" k="20" />
+<hkern g1="uni04EC" g2="uni04B0" k="20" />
+<hkern g1="uni04EC" g2="uni04B2" k="41" />
+<hkern g1="uni04EC" g2="uni04B4" k="20" />
+<hkern g1="uni04EC" g2="uni04B6" k="41" />
+<hkern g1="uni04EC" g2="uni04B8" k="41" />
+<hkern g1="uni04EC" g2="uni04C1" k="41" />
+<hkern g1="uni04EC" g2="uni04C5" k="41" />
+<hkern g1="uni04EC" g2="uni04C6" k="20" />
+<hkern g1="uni04EC" g2="uni04CB" k="41" />
+<hkern g1="uni04EC" g2="uni04D0" k="41" />
+<hkern g1="uni04EC" g2="uni04D2" k="41" />
+<hkern g1="uni04EC" g2="uni04D4" k="41" />
+<hkern g1="uni04EC" g2="uni04DC" k="41" />
+<hkern g1="uni04EC" g2="uni04DE" k="20" />
+<hkern g1="uni04EC" g2="uni04EC" k="20" />
+<hkern g1="uni04EC" g2="uni04EE" k="41" />
+<hkern g1="uni04EC" g2="uni04F0" k="41" />
+<hkern g1="uni04EC" g2="uni04F2" k="41" />
+<hkern g1="uni04EC" g2="uni04F4" k="41" />
+<hkern g1="uni04EC" g2="uni04FC" k="41" />
+<hkern g1="uni04EC" g2="uni04FE" k="41" />
+<hkern g1="uni04EC" g2="uni0504" k="41" />
+<hkern g1="uni04EC" g2="uni0506" k="41" />
+<hkern g1="uni04EC" g2="uni0508" k="41" />
+<hkern g1="uni04EC" g2="uni0509" k="20" />
+<hkern g1="uni04EC" g2="uni050E" k="20" />
+<hkern g1="uni04EC" g2="uni0512" k="41" />
+<hkern g1="uni04EC" g2="uni0513" k="20" />
+<hkern g1="uni04ED" g2="quotedbl" k="20" />
+<hkern g1="uni04ED" g2="quotesingle" k="20" />
+<hkern g1="uni04ED" g2="afii10072" k="41" />
+<hkern g1="uni04ED" g2="afii10084" k="20" />
+<hkern g1="uni04ED" g2="afii10085" k="20" />
+<hkern g1="uni04ED" g2="afii10087" k="41" />
+<hkern g1="uni04ED" g2="afii10089" k="20" />
+<hkern g1="uni04ED" g2="afii10092" k="20" />
+<hkern g1="uni04ED" g2="afii10110" k="20" />
+<hkern g1="uni04ED" g2="quoteright" k="20" />
+<hkern g1="uni04ED" g2="quotedblright" k="20" />
+<hkern g1="uni04ED" g2="uni0497" k="41" />
+<hkern g1="uni04ED" g2="uni04A1" k="20" />
+<hkern g1="uni04ED" g2="uni04AD" k="20" />
+<hkern g1="uni04ED" g2="uni04B3" k="41" />
+<hkern g1="uni04ED" g2="uni04B5" k="20" />
+<hkern g1="uni04ED" g2="uni04B7" k="20" />
+<hkern g1="uni04ED" g2="uni04B9" k="20" />
+<hkern g1="uni04ED" g2="uni04C2" k="41" />
+<hkern g1="uni04ED" g2="uni04CC" k="20" />
+<hkern g1="uni04ED" g2="uni04DD" k="41" />
+<hkern g1="uni04ED" g2="uni04EF" k="20" />
+<hkern g1="uni04ED" g2="uni04F1" k="20" />
+<hkern g1="uni04ED" g2="uni04F3" k="20" />
+<hkern g1="uni04ED" g2="uni04F5" k="20" />
+<hkern g1="uni04ED" g2="uni04FD" k="41" />
+<hkern g1="uni04ED" g2="uni04FF" k="41" />
+<hkern g1="uni04ED" g2="uni0505" k="20" />
+<hkern g1="uni04ED" g2="uni0507" k="20" />
+<hkern g1="uni04ED" g2="uni050F" k="20" />
+<hkern g1="uni04EE" g2="comma" k="123" />
+<hkern g1="uni04EE" g2="period" k="123" />
+<hkern g1="uni04EE" g2="afii10053" k="20" />
+<hkern g1="uni04EE" g2="afii10058" k="102" />
+<hkern g1="uni04EE" g2="afii10017" k="143" />
+<hkern g1="uni04EE" g2="afii10021" k="102" />
+<hkern g1="uni04EE" g2="afii10029" k="102" />
+<hkern g1="uni04EE" g2="afii10032" k="20" />
+<hkern g1="uni04EE" g2="afii10035" k="20" />
+<hkern g1="uni04EE" g2="afii10038" k="61" />
+<hkern g1="uni04EE" g2="afii10049" k="20" />
+<hkern g1="uni04EE" g2="afii10069" k="82" />
+<hkern g1="uni04EE" g2="afii10070" k="41" />
+<hkern g1="uni04EE" g2="afii10077" k="82" />
+<hkern g1="uni04EE" g2="afii10080" k="41" />
+<hkern g1="uni04EE" g2="afii10083" k="41" />
+<hkern g1="uni04EE" g2="afii10086" k="41" />
+<hkern g1="uni04EE" g2="afii10089" k="41" />
+<hkern g1="uni04EE" g2="afii10071" k="41" />
+<hkern g1="uni04EE" g2="afii10099" k="-102" />
+<hkern g1="uni04EE" g2="afii10101" k="41" />
+<hkern g1="uni04EE" g2="afii10102" k="20" />
+<hkern g1="uni04EE" g2="afii10106" k="82" />
+<hkern g1="uni04EE" g2="afii10108" k="-102" />
+<hkern g1="uni04EE" g2="quotesinglbase" k="123" />
+<hkern g1="uni04EE" g2="quotedblbase" k="123" />
+<hkern g1="uni04EE" g2="uni0450" k="41" />
+<hkern g1="uni04EE" g2="uni0460" k="20" />
+<hkern g1="uni04EE" g2="uni0466" k="143" />
+<hkern g1="uni04EE" g2="uni0467" k="82" />
+<hkern g1="uni04EE" g2="uni0472" k="20" />
+<hkern g1="uni04EE" g2="uni0473" k="41" />
+<hkern g1="uni04EE" g2="uni0478" k="20" />
+<hkern g1="uni04EE" g2="uni0479" k="41" />
+<hkern g1="uni04EE" g2="uni047A" k="20" />
+<hkern g1="uni04EE" g2="uni047B" k="41" />
+<hkern g1="uni04EE" g2="uni047C" k="20" />
+<hkern g1="uni04EE" g2="uni047D" k="41" />
+<hkern g1="uni04EE" g2="uni047E" k="20" />
+<hkern g1="uni04EE" g2="uni0480" k="20" />
+<hkern g1="uni04EE" g2="uni0481" k="41" />
+<hkern g1="uni04EE" g2="uni048D" k="-102" />
+<hkern g1="uni04EE" g2="uni049F" k="-102" />
+<hkern g1="uni04EE" g2="uni04A8" k="20" />
+<hkern g1="uni04EE" g2="uni04A9" k="41" />
+<hkern g1="uni04EE" g2="uni04AA" k="20" />
+<hkern g1="uni04EE" g2="uni04AB" k="41" />
+<hkern g1="uni04EE" g2="uni04B7" k="41" />
+<hkern g1="uni04EE" g2="uni04B9" k="41" />
+<hkern g1="uni04EE" g2="uni04BC" k="41" />
+<hkern g1="uni04EE" g2="uni04BD" k="61" />
+<hkern g1="uni04EE" g2="uni04BE" k="41" />
+<hkern g1="uni04EE" g2="uni04BF" k="61" />
+<hkern g1="uni04EE" g2="uni04C5" k="102" />
+<hkern g1="uni04EE" g2="uni04C6" k="82" />
+<hkern g1="uni04EE" g2="uni04CC" k="41" />
+<hkern g1="uni04EE" g2="uni04D0" k="143" />
+<hkern g1="uni04EE" g2="uni04D2" k="143" />
+<hkern g1="uni04EE" g2="uni04D4" k="143" />
+<hkern g1="uni04EE" g2="uni04D7" k="41" />
+<hkern g1="uni04EE" g2="uni04E6" k="20" />
+<hkern g1="uni04EE" g2="uni04E7" k="41" />
+<hkern g1="uni04EE" g2="uni04E8" k="20" />
+<hkern g1="uni04EE" g2="uni04E9" k="41" />
+<hkern g1="uni04EE" g2="uni04EA" k="20" />
+<hkern g1="uni04EE" g2="uni04EB" k="41" />
+<hkern g1="uni04EE" g2="uni04F5" k="41" />
+<hkern g1="uni04EE" g2="uni0500" k="143" />
+<hkern g1="uni04EE" g2="uni0501" k="41" />
+<hkern g1="uni04EE" g2="uni0502" k="143" />
+<hkern g1="uni04EE" g2="uni0503" k="41" />
+<hkern g1="uni04EE" g2="uni0508" k="102" />
+<hkern g1="uni04EE" g2="uni0509" k="82" />
+<hkern g1="uni04EE" g2="uni050C" k="20" />
+<hkern g1="uni04EE" g2="uni050D" k="41" />
+<hkern g1="uni04EE" g2="uni0511" k="41" />
+<hkern g1="uni04EE" g2="uni0512" k="102" />
+<hkern g1="uni04EE" g2="uni0513" k="82" />
+<hkern g1="uni04EF" g2="comma" k="82" />
+<hkern g1="uni04EF" g2="period" k="82" />
+<hkern g1="uni04EF" g2="afii10069" k="41" />
+<hkern g1="uni04EF" g2="afii10077" k="41" />
+<hkern g1="uni04EF" g2="afii10106" k="41" />
+<hkern g1="uni04EF" g2="quotesinglbase" k="82" />
+<hkern g1="uni04EF" g2="quotedblbase" k="82" />
+<hkern g1="uni04EF" g2="uni0467" k="41" />
+<hkern g1="uni04EF" g2="uni04C6" k="41" />
+<hkern g1="uni04EF" g2="uni0509" k="41" />
+<hkern g1="uni04EF" g2="uni0513" k="41" />
+<hkern g1="uni04F0" g2="comma" k="123" />
+<hkern g1="uni04F0" g2="period" k="123" />
+<hkern g1="uni04F0" g2="afii10053" k="20" />
+<hkern g1="uni04F0" g2="afii10058" k="102" />
+<hkern g1="uni04F0" g2="afii10017" k="143" />
+<hkern g1="uni04F0" g2="afii10021" k="102" />
+<hkern g1="uni04F0" g2="afii10029" k="102" />
+<hkern g1="uni04F0" g2="afii10032" k="20" />
+<hkern g1="uni04F0" g2="afii10035" k="20" />
+<hkern g1="uni04F0" g2="afii10038" k="61" />
+<hkern g1="uni04F0" g2="afii10049" k="20" />
+<hkern g1="uni04F0" g2="afii10069" k="82" />
+<hkern g1="uni04F0" g2="afii10070" k="41" />
+<hkern g1="uni04F0" g2="afii10077" k="82" />
+<hkern g1="uni04F0" g2="afii10080" k="41" />
+<hkern g1="uni04F0" g2="afii10083" k="41" />
+<hkern g1="uni04F0" g2="afii10086" k="41" />
+<hkern g1="uni04F0" g2="afii10089" k="41" />
+<hkern g1="uni04F0" g2="afii10071" k="41" />
+<hkern g1="uni04F0" g2="afii10099" k="-102" />
+<hkern g1="uni04F0" g2="afii10101" k="41" />
+<hkern g1="uni04F0" g2="afii10102" k="20" />
+<hkern g1="uni04F0" g2="afii10106" k="82" />
+<hkern g1="uni04F0" g2="afii10108" k="-102" />
+<hkern g1="uni04F0" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F0" g2="quotedblbase" k="123" />
+<hkern g1="uni04F0" g2="uni0450" k="41" />
+<hkern g1="uni04F0" g2="uni0460" k="20" />
+<hkern g1="uni04F0" g2="uni0466" k="143" />
+<hkern g1="uni04F0" g2="uni0467" k="82" />
+<hkern g1="uni04F0" g2="uni0472" k="20" />
+<hkern g1="uni04F0" g2="uni0473" k="41" />
+<hkern g1="uni04F0" g2="uni0478" k="20" />
+<hkern g1="uni04F0" g2="uni0479" k="41" />
+<hkern g1="uni04F0" g2="uni047A" k="20" />
+<hkern g1="uni04F0" g2="uni047B" k="41" />
+<hkern g1="uni04F0" g2="uni047C" k="20" />
+<hkern g1="uni04F0" g2="uni047D" k="41" />
+<hkern g1="uni04F0" g2="uni047E" k="20" />
+<hkern g1="uni04F0" g2="uni0480" k="20" />
+<hkern g1="uni04F0" g2="uni0481" k="41" />
+<hkern g1="uni04F0" g2="uni048D" k="-102" />
+<hkern g1="uni04F0" g2="uni049F" k="-102" />
+<hkern g1="uni04F0" g2="uni04A8" k="20" />
+<hkern g1="uni04F0" g2="uni04A9" k="41" />
+<hkern g1="uni04F0" g2="uni04AA" k="20" />
+<hkern g1="uni04F0" g2="uni04AB" k="41" />
+<hkern g1="uni04F0" g2="uni04B7" k="41" />
+<hkern g1="uni04F0" g2="uni04B9" k="41" />
+<hkern g1="uni04F0" g2="uni04BC" k="41" />
+<hkern g1="uni04F0" g2="uni04BD" k="61" />
+<hkern g1="uni04F0" g2="uni04BE" k="41" />
+<hkern g1="uni04F0" g2="uni04BF" k="61" />
+<hkern g1="uni04F0" g2="uni04C5" k="102" />
+<hkern g1="uni04F0" g2="uni04C6" k="82" />
+<hkern g1="uni04F0" g2="uni04CC" k="41" />
+<hkern g1="uni04F0" g2="uni04D0" k="143" />
+<hkern g1="uni04F0" g2="uni04D2" k="143" />
+<hkern g1="uni04F0" g2="uni04D4" k="143" />
+<hkern g1="uni04F0" g2="uni04D7" k="41" />
+<hkern g1="uni04F0" g2="uni04E6" k="20" />
+<hkern g1="uni04F0" g2="uni04E7" k="41" />
+<hkern g1="uni04F0" g2="uni04E8" k="20" />
+<hkern g1="uni04F0" g2="uni04E9" k="41" />
+<hkern g1="uni04F0" g2="uni04EA" k="20" />
+<hkern g1="uni04F0" g2="uni04EB" k="41" />
+<hkern g1="uni04F0" g2="uni04F5" k="41" />
+<hkern g1="uni04F0" g2="uni0500" k="143" />
+<hkern g1="uni04F0" g2="uni0501" k="41" />
+<hkern g1="uni04F0" g2="uni0502" k="143" />
+<hkern g1="uni04F0" g2="uni0503" k="41" />
+<hkern g1="uni04F0" g2="uni0508" k="102" />
+<hkern g1="uni04F0" g2="uni0509" k="82" />
+<hkern g1="uni04F0" g2="uni050C" k="20" />
+<hkern g1="uni04F0" g2="uni050D" k="41" />
+<hkern g1="uni04F0" g2="uni0511" k="41" />
+<hkern g1="uni04F0" g2="uni0512" k="102" />
+<hkern g1="uni04F0" g2="uni0513" k="82" />
+<hkern g1="uni04F1" g2="comma" k="82" />
+<hkern g1="uni04F1" g2="period" k="82" />
+<hkern g1="uni04F1" g2="afii10069" k="41" />
+<hkern g1="uni04F1" g2="afii10077" k="41" />
+<hkern g1="uni04F1" g2="afii10106" k="41" />
+<hkern g1="uni04F1" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F1" g2="quotedblbase" k="82" />
+<hkern g1="uni04F1" g2="uni0467" k="41" />
+<hkern g1="uni04F1" g2="uni04C6" k="41" />
+<hkern g1="uni04F1" g2="uni0509" k="41" />
+<hkern g1="uni04F1" g2="uni0513" k="41" />
+<hkern g1="uni04F2" g2="comma" k="123" />
+<hkern g1="uni04F2" g2="period" k="123" />
+<hkern g1="uni04F2" g2="afii10053" k="20" />
+<hkern g1="uni04F2" g2="afii10058" k="102" />
+<hkern g1="uni04F2" g2="afii10017" k="143" />
+<hkern g1="uni04F2" g2="afii10021" k="102" />
+<hkern g1="uni04F2" g2="afii10029" k="102" />
+<hkern g1="uni04F2" g2="afii10032" k="20" />
+<hkern g1="uni04F2" g2="afii10035" k="20" />
+<hkern g1="uni04F2" g2="afii10038" k="61" />
+<hkern g1="uni04F2" g2="afii10049" k="20" />
+<hkern g1="uni04F2" g2="afii10069" k="82" />
+<hkern g1="uni04F2" g2="afii10070" k="41" />
+<hkern g1="uni04F2" g2="afii10077" k="82" />
+<hkern g1="uni04F2" g2="afii10080" k="41" />
+<hkern g1="uni04F2" g2="afii10083" k="41" />
+<hkern g1="uni04F2" g2="afii10086" k="41" />
+<hkern g1="uni04F2" g2="afii10089" k="41" />
+<hkern g1="uni04F2" g2="afii10071" k="41" />
+<hkern g1="uni04F2" g2="afii10099" k="-102" />
+<hkern g1="uni04F2" g2="afii10101" k="41" />
+<hkern g1="uni04F2" g2="afii10102" k="20" />
+<hkern g1="uni04F2" g2="afii10106" k="82" />
+<hkern g1="uni04F2" g2="afii10108" k="-102" />
+<hkern g1="uni04F2" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F2" g2="quotedblbase" k="123" />
+<hkern g1="uni04F2" g2="uni0450" k="41" />
+<hkern g1="uni04F2" g2="uni0460" k="20" />
+<hkern g1="uni04F2" g2="uni0466" k="143" />
+<hkern g1="uni04F2" g2="uni0467" k="82" />
+<hkern g1="uni04F2" g2="uni0472" k="20" />
+<hkern g1="uni04F2" g2="uni0473" k="41" />
+<hkern g1="uni04F2" g2="uni0478" k="20" />
+<hkern g1="uni04F2" g2="uni0479" k="41" />
+<hkern g1="uni04F2" g2="uni047A" k="20" />
+<hkern g1="uni04F2" g2="uni047B" k="41" />
+<hkern g1="uni04F2" g2="uni047C" k="20" />
+<hkern g1="uni04F2" g2="uni047D" k="41" />
+<hkern g1="uni04F2" g2="uni047E" k="20" />
+<hkern g1="uni04F2" g2="uni0480" k="20" />
+<hkern g1="uni04F2" g2="uni0481" k="41" />
+<hkern g1="uni04F2" g2="uni048D" k="-102" />
+<hkern g1="uni04F2" g2="uni049F" k="-102" />
+<hkern g1="uni04F2" g2="uni04A8" k="20" />
+<hkern g1="uni04F2" g2="uni04A9" k="41" />
+<hkern g1="uni04F2" g2="uni04AA" k="20" />
+<hkern g1="uni04F2" g2="uni04AB" k="41" />
+<hkern g1="uni04F2" g2="uni04B7" k="41" />
+<hkern g1="uni04F2" g2="uni04B9" k="41" />
+<hkern g1="uni04F2" g2="uni04BC" k="41" />
+<hkern g1="uni04F2" g2="uni04BD" k="61" />
+<hkern g1="uni04F2" g2="uni04BE" k="41" />
+<hkern g1="uni04F2" g2="uni04BF" k="61" />
+<hkern g1="uni04F2" g2="uni04C5" k="102" />
+<hkern g1="uni04F2" g2="uni04C6" k="82" />
+<hkern g1="uni04F2" g2="uni04CC" k="41" />
+<hkern g1="uni04F2" g2="uni04D0" k="143" />
+<hkern g1="uni04F2" g2="uni04D2" k="143" />
+<hkern g1="uni04F2" g2="uni04D4" k="143" />
+<hkern g1="uni04F2" g2="uni04D7" k="41" />
+<hkern g1="uni04F2" g2="uni04E6" k="20" />
+<hkern g1="uni04F2" g2="uni04E7" k="41" />
+<hkern g1="uni04F2" g2="uni04E8" k="20" />
+<hkern g1="uni04F2" g2="uni04E9" k="41" />
+<hkern g1="uni04F2" g2="uni04EA" k="20" />
+<hkern g1="uni04F2" g2="uni04EB" k="41" />
+<hkern g1="uni04F2" g2="uni04F5" k="41" />
+<hkern g1="uni04F2" g2="uni0500" k="143" />
+<hkern g1="uni04F2" g2="uni0501" k="41" />
+<hkern g1="uni04F2" g2="uni0502" k="143" />
+<hkern g1="uni04F2" g2="uni0503" k="41" />
+<hkern g1="uni04F2" g2="uni0508" k="102" />
+<hkern g1="uni04F2" g2="uni0509" k="82" />
+<hkern g1="uni04F2" g2="uni050C" k="20" />
+<hkern g1="uni04F2" g2="uni050D" k="41" />
+<hkern g1="uni04F2" g2="uni0511" k="41" />
+<hkern g1="uni04F2" g2="uni0512" k="102" />
+<hkern g1="uni04F2" g2="uni0513" k="82" />
+<hkern g1="uni04F3" g2="comma" k="82" />
+<hkern g1="uni04F3" g2="period" k="82" />
+<hkern g1="uni04F3" g2="afii10069" k="41" />
+<hkern g1="uni04F3" g2="afii10077" k="41" />
+<hkern g1="uni04F3" g2="afii10106" k="41" />
+<hkern g1="uni04F3" g2="quotesinglbase" k="82" />
+<hkern g1="uni04F3" g2="quotedblbase" k="82" />
+<hkern g1="uni04F3" g2="uni0467" k="41" />
+<hkern g1="uni04F3" g2="uni04C6" k="41" />
+<hkern g1="uni04F3" g2="uni0509" k="41" />
+<hkern g1="uni04F3" g2="uni0513" k="41" />
+<hkern g1="uni04F6" g2="comma" k="123" />
+<hkern g1="uni04F6" g2="hyphen" k="82" />
+<hkern g1="uni04F6" g2="period" k="123" />
+<hkern g1="uni04F6" g2="afii10053" k="41" />
+<hkern g1="uni04F6" g2="afii10058" k="102" />
+<hkern g1="uni04F6" g2="afii10017" k="143" />
+<hkern g1="uni04F6" g2="afii10021" k="102" />
+<hkern g1="uni04F6" g2="afii10029" k="102" />
+<hkern g1="uni04F6" g2="afii10032" k="41" />
+<hkern g1="uni04F6" g2="afii10035" k="41" />
+<hkern g1="uni04F6" g2="afii10036" k="-41" />
+<hkern g1="uni04F6" g2="afii10038" k="82" />
+<hkern g1="uni04F6" g2="afii10067" k="102" />
+<hkern g1="uni04F6" g2="afii10068" k="102" />
+<hkern g1="uni04F6" g2="afii10069" k="123" />
+<hkern g1="uni04F6" g2="afii10070" k="143" />
+<hkern g1="uni04F6" g2="afii10072" k="41" />
+<hkern g1="uni04F6" g2="afii10073" k="41" />
+<hkern g1="uni04F6" g2="afii10074" k="102" />
+<hkern g1="uni04F6" g2="afii10075" k="102" />
+<hkern g1="uni04F6" g2="afii10076" k="102" />
+<hkern g1="uni04F6" g2="afii10077" k="123" />
+<hkern g1="uni04F6" g2="afii10078" k="102" />
+<hkern g1="uni04F6" g2="afii10079" k="102" />
+<hkern g1="uni04F6" g2="afii10080" k="143" />
+<hkern g1="uni04F6" g2="afii10081" k="102" />
+<hkern g1="uni04F6" g2="afii10082" k="102" />
+<hkern g1="uni04F6" g2="afii10083" k="143" />
+<hkern g1="uni04F6" g2="afii10084" k="82" />
+<hkern g1="uni04F6" g2="afii10085" k="82" />
+<hkern g1="uni04F6" g2="afii10086" k="143" />
+<hkern g1="uni04F6" g2="afii10087" k="41" />
+<hkern g1="uni04F6" g2="afii10088" k="102" />
+<hkern g1="uni04F6" g2="afii10089" k="102" />
+<hkern g1="uni04F6" g2="afii10090" k="102" />
+<hkern g1="uni04F6" g2="afii10091" k="102" />
+<hkern g1="uni04F6" g2="afii10092" k="82" />
+<hkern g1="uni04F6" g2="afii10093" k="102" />
+<hkern g1="uni04F6" g2="afii10094" k="102" />
+<hkern g1="uni04F6" g2="afii10095" k="41" />
+<hkern g1="uni04F6" g2="afii10096" k="102" />
+<hkern g1="uni04F6" g2="afii10097" k="61" />
+<hkern g1="uni04F6" g2="afii10071" k="143" />
+<hkern g1="uni04F6" g2="afii10100" k="102" />
+<hkern g1="uni04F6" g2="afii10101" k="143" />
+<hkern g1="uni04F6" g2="afii10102" k="123" />
+<hkern g1="uni04F6" g2="afii10106" k="123" />
+<hkern g1="uni04F6" g2="afii10107" k="102" />
+<hkern g1="uni04F6" g2="afii10109" k="102" />
+<hkern g1="uni04F6" g2="afii10110" k="82" />
+<hkern g1="uni04F6" g2="afii10193" k="102" />
+<hkern g1="uni04F6" g2="afii10098" k="102" />
+<hkern g1="uni04F6" g2="endash" k="82" />
+<hkern g1="uni04F6" g2="emdash" k="82" />
+<hkern g1="uni04F6" g2="afii00208" k="82" />
+<hkern g1="uni04F6" g2="quotesinglbase" k="123" />
+<hkern g1="uni04F6" g2="quotedblbase" k="123" />
+<hkern g1="uni04F6" g2="uni0450" k="143" />
+<hkern g1="uni04F6" g2="uni045D" k="102" />
+<hkern g1="uni04F6" g2="uni0460" k="41" />
+<hkern g1="uni04F6" g2="uni0461" k="41" />
+<hkern g1="uni04F6" g2="uni0465" k="102" />
+<hkern g1="uni04F6" g2="uni0466" k="143" />
+<hkern g1="uni04F6" g2="uni0467" k="123" />
+<hkern g1="uni04F6" g2="uni0469" k="102" />
+<hkern g1="uni04F6" g2="uni046B" k="102" />
+<hkern g1="uni04F6" g2="uni046D" k="102" />
+<hkern g1="uni04F6" g2="uni0471" k="102" />
+<hkern g1="uni04F6" g2="uni0472" k="41" />
+<hkern g1="uni04F6" g2="uni0473" k="143" />
+<hkern g1="uni04F6" g2="uni0475" k="41" />
+<hkern g1="uni04F6" g2="uni0477" k="41" />
+<hkern g1="uni04F6" g2="uni0478" k="41" />
+<hkern g1="uni04F6" g2="uni0479" k="143" />
+<hkern g1="uni04F6" g2="uni047A" k="41" />
+<hkern g1="uni04F6" g2="uni047B" k="143" />
+<hkern g1="uni04F6" g2="uni047C" k="41" />
+<hkern g1="uni04F6" g2="uni047D" k="143" />
+<hkern g1="uni04F6" g2="uni047E" k="41" />
+<hkern g1="uni04F6" g2="uni047F" k="41" />
+<hkern g1="uni04F6" g2="uni0480" k="41" />
+<hkern g1="uni04F6" g2="uni0481" k="143" />
+<hkern g1="uni04F6" g2="uni048B" k="102" />
+<hkern g1="uni04F6" g2="uni048F" k="102" />
+<hkern g1="uni04F6" g2="uni0495" k="102" />
+<hkern g1="uni04F6" g2="uni0497" k="41" />
+<hkern g1="uni04F6" g2="uni0499" k="41" />
+<hkern g1="uni04F6" g2="uni049B" k="102" />
+<hkern g1="uni04F6" g2="uni049D" k="102" />
+<hkern g1="uni04F6" g2="uni04A1" k="82" />
+<hkern g1="uni04F6" g2="uni04A3" k="102" />
+<hkern g1="uni04F6" g2="uni04A5" k="102" />
+<hkern g1="uni04F6" g2="uni04A7" k="102" />
+<hkern g1="uni04F6" g2="uni04A8" k="41" />
+<hkern g1="uni04F6" g2="uni04A9" k="143" />
+<hkern g1="uni04F6" g2="uni04AA" k="41" />
+<hkern g1="uni04F6" g2="uni04AB" k="143" />
+<hkern g1="uni04F6" g2="uni04AC" k="-41" />
+<hkern g1="uni04F6" g2="uni04AD" k="82" />
+<hkern g1="uni04F6" g2="uni04AF" k="82" />
+<hkern g1="uni04F6" g2="uni04B1" k="82" />
+<hkern g1="uni04F6" g2="uni04B3" k="41" />
+<hkern g1="uni04F6" g2="uni04B5" k="82" />
+<hkern g1="uni04F6" g2="uni04B7" k="102" />
+<hkern g1="uni04F6" g2="uni04B9" k="102" />
+<hkern g1="uni04F6" g2="uni04BB" k="102" />
+<hkern g1="uni04F6" g2="uni04BC" k="102" />
+<hkern g1="uni04F6" g2="uni04BD" k="143" />
+<hkern g1="uni04F6" g2="uni04BE" k="102" />
+<hkern g1="uni04F6" g2="uni04BF" k="143" />
+<hkern g1="uni04F6" g2="uni04C2" k="41" />
+<hkern g1="uni04F6" g2="uni04C4" k="102" />
+<hkern g1="uni04F6" g2="uni04C5" k="102" />
+<hkern g1="uni04F6" g2="uni04C6" k="123" />
+<hkern g1="uni04F6" g2="uni04C8" k="102" />
+<hkern g1="uni04F6" g2="uni04CA" k="102" />
+<hkern g1="uni04F6" g2="uni04CC" k="102" />
+<hkern g1="uni04F6" g2="uni04CE" k="102" />
+<hkern g1="uni04F6" g2="uni04D0" k="143" />
+<hkern g1="uni04F6" g2="uni04D2" k="143" />
+<hkern g1="uni04F6" g2="uni04D4" k="143" />
+<hkern g1="uni04F6" g2="uni04D7" k="143" />
+<hkern g1="uni04F6" g2="uni04DD" k="41" />
+<hkern g1="uni04F6" g2="uni04DF" k="41" />
+<hkern g1="uni04F6" g2="uni04E1" k="61" />
+<hkern g1="uni04F6" g2="uni04E3" k="102" />
+<hkern g1="uni04F6" g2="uni04E5" k="102" />
+<hkern g1="uni04F6" g2="uni04E6" k="41" />
+<hkern g1="uni04F6" g2="uni04E7" k="143" />
+<hkern g1="uni04F6" g2="uni04E8" k="41" />
+<hkern g1="uni04F6" g2="uni04E9" k="143" />
+<hkern g1="uni04F6" g2="uni04EA" k="41" />
+<hkern g1="uni04F6" g2="uni04EB" k="143" />
+<hkern g1="uni04F6" g2="uni04ED" k="41" />
+<hkern g1="uni04F6" g2="uni04EF" k="82" />
+<hkern g1="uni04F6" g2="uni04F1" k="82" />
+<hkern g1="uni04F6" g2="uni04F3" k="82" />
+<hkern g1="uni04F6" g2="uni04F5" k="102" />
+<hkern g1="uni04F6" g2="uni04F7" k="102" />
+<hkern g1="uni04F6" g2="uni04F9" k="102" />
+<hkern g1="uni04F6" g2="uni04FD" k="41" />
+<hkern g1="uni04F6" g2="uni04FF" k="41" />
+<hkern g1="uni04F6" g2="uni0500" k="143" />
+<hkern g1="uni04F6" g2="uni0501" k="143" />
+<hkern g1="uni04F6" g2="uni0502" k="143" />
+<hkern g1="uni04F6" g2="uni0503" k="143" />
+<hkern g1="uni04F6" g2="uni0505" k="102" />
+<hkern g1="uni04F6" g2="uni0507" k="102" />
+<hkern g1="uni04F6" g2="uni0508" k="102" />
+<hkern g1="uni04F6" g2="uni0509" k="123" />
+<hkern g1="uni04F6" g2="uni050B" k="102" />
+<hkern g1="uni04F6" g2="uni050C" k="41" />
+<hkern g1="uni04F6" g2="uni050D" k="143" />
+<hkern g1="uni04F6" g2="uni050F" k="82" />
+<hkern g1="uni04F6" g2="uni0511" k="143" />
+<hkern g1="uni04F6" g2="uni0512" k="102" />
+<hkern g1="uni04F6" g2="uni0513" k="123" />
+<hkern g1="uni04F7" g2="comma" k="102" />
+<hkern g1="uni04F7" g2="hyphen" k="41" />
+<hkern g1="uni04F7" g2="period" k="102" />
+<hkern g1="uni04F7" g2="afii10069" k="61" />
+<hkern g1="uni04F7" g2="afii10070" k="20" />
+<hkern g1="uni04F7" g2="afii10077" k="61" />
+<hkern g1="uni04F7" g2="afii10080" k="20" />
+<hkern g1="uni04F7" g2="afii10083" k="20" />
+<hkern g1="uni04F7" g2="afii10086" k="20" />
+<hkern g1="uni04F7" g2="afii10071" k="20" />
+<hkern g1="uni04F7" g2="afii10101" k="20" />
+<hkern g1="uni04F7" g2="afii10106" k="61" />
+<hkern g1="uni04F7" g2="endash" k="41" />
+<hkern g1="uni04F7" g2="emdash" k="41" />
+<hkern g1="uni04F7" g2="afii00208" k="41" />
+<hkern g1="uni04F7" g2="quotesinglbase" k="102" />
+<hkern g1="uni04F7" g2="quotedblbase" k="102" />
+<hkern g1="uni04F7" g2="uni0450" k="20" />
+<hkern g1="uni04F7" g2="uni0467" k="61" />
+<hkern g1="uni04F7" g2="uni0473" k="20" />
+<hkern g1="uni04F7" g2="uni0479" k="20" />
+<hkern g1="uni04F7" g2="uni047B" k="20" />
+<hkern g1="uni04F7" g2="uni047D" k="20" />
+<hkern g1="uni04F7" g2="uni0481" k="20" />
+<hkern g1="uni04F7" g2="uni04A9" k="20" />
+<hkern g1="uni04F7" g2="uni04AB" k="20" />
+<hkern g1="uni04F7" g2="uni04C6" k="61" />
+<hkern g1="uni04F7" g2="uni04D7" k="20" />
+<hkern g1="uni04F7" g2="uni04E7" k="20" />
+<hkern g1="uni04F7" g2="uni04E9" k="20" />
+<hkern g1="uni04F7" g2="uni04EB" k="20" />
+<hkern g1="uni04F7" g2="uni0501" k="20" />
+<hkern g1="uni04F7" g2="uni0503" k="20" />
+<hkern g1="uni04F7" g2="uni0509" k="61" />
+<hkern g1="uni04F7" g2="uni050D" k="20" />
+<hkern g1="uni04F7" g2="uni0511" k="20" />
+<hkern g1="uni04F7" g2="uni0513" k="61" />
+<hkern g1="uni04FA" g2="comma" k="102" />
+<hkern g1="uni04FA" g2="hyphen" k="41" />
+<hkern g1="uni04FA" g2="period" k="102" />
+<hkern g1="uni04FA" g2="afii10051" k="-41" />
+<hkern g1="uni04FA" g2="afii10053" k="41" />
+<hkern g1="uni04FA" g2="afii10058" k="82" />
+<hkern g1="uni04FA" g2="afii10060" k="-41" />
+<hkern g1="uni04FA" g2="afii10017" k="123" />
+<hkern g1="uni04FA" g2="afii10021" k="82" />
+<hkern g1="uni04FA" g2="afii10029" k="82" />
+<hkern g1="uni04FA" g2="afii10032" k="41" />
+<hkern g1="uni04FA" g2="afii10035" k="41" />
+<hkern g1="uni04FA" g2="afii10036" k="-41" />
+<hkern g1="uni04FA" g2="afii10038" k="61" />
+<hkern g1="uni04FA" g2="afii10044" k="-41" />
+<hkern g1="uni04FA" g2="afii10067" k="61" />
+<hkern g1="uni04FA" g2="afii10068" k="61" />
+<hkern g1="uni04FA" g2="afii10069" k="102" />
+<hkern g1="uni04FA" g2="afii10070" k="82" />
+<hkern g1="uni04FA" g2="afii10072" k="41" />
+<hkern g1="uni04FA" g2="afii10073" k="41" />
+<hkern g1="uni04FA" g2="afii10074" k="61" />
+<hkern g1="uni04FA" g2="afii10075" k="61" />
+<hkern g1="uni04FA" g2="afii10076" k="61" />
+<hkern g1="uni04FA" g2="afii10077" k="102" />
+<hkern g1="uni04FA" g2="afii10078" k="61" />
+<hkern g1="uni04FA" g2="afii10079" k="61" />
+<hkern g1="uni04FA" g2="afii10080" k="82" />
+<hkern g1="uni04FA" g2="afii10081" k="61" />
+<hkern g1="uni04FA" g2="afii10082" k="61" />
+<hkern g1="uni04FA" g2="afii10083" k="82" />
+<hkern g1="uni04FA" g2="afii10086" k="82" />
+<hkern g1="uni04FA" g2="afii10087" k="41" />
+<hkern g1="uni04FA" g2="afii10088" k="61" />
+<hkern g1="uni04FA" g2="afii10089" k="102" />
+<hkern g1="uni04FA" g2="afii10090" k="61" />
+<hkern g1="uni04FA" g2="afii10091" k="61" />
+<hkern g1="uni04FA" g2="afii10093" k="61" />
+<hkern g1="uni04FA" g2="afii10094" k="61" />
+<hkern g1="uni04FA" g2="afii10095" k="41" />
+<hkern g1="uni04FA" g2="afii10096" k="61" />
+<hkern g1="uni04FA" g2="afii10071" k="82" />
+<hkern g1="uni04FA" g2="afii10099" k="-41" />
+<hkern g1="uni04FA" g2="afii10100" k="61" />
+<hkern g1="uni04FA" g2="afii10101" k="82" />
+<hkern g1="uni04FA" g2="afii10102" k="61" />
+<hkern g1="uni04FA" g2="afii10106" k="102" />
+<hkern g1="uni04FA" g2="afii10107" k="61" />
+<hkern g1="uni04FA" g2="afii10108" k="-41" />
+<hkern g1="uni04FA" g2="afii10109" k="61" />
+<hkern g1="uni04FA" g2="afii10193" k="61" />
+<hkern g1="uni04FA" g2="afii10098" k="61" />
+<hkern g1="uni04FA" g2="endash" k="41" />
+<hkern g1="uni04FA" g2="emdash" k="41" />
+<hkern g1="uni04FA" g2="afii00208" k="41" />
+<hkern g1="uni04FA" g2="quotesinglbase" k="102" />
+<hkern g1="uni04FA" g2="quotedblbase" k="102" />
+<hkern g1="uni04FA" g2="uni0450" k="82" />
+<hkern g1="uni04FA" g2="uni045D" k="61" />
+<hkern g1="uni04FA" g2="uni0460" k="41" />
+<hkern g1="uni04FA" g2="uni0465" k="61" />
+<hkern g1="uni04FA" g2="uni0466" k="123" />
+<hkern g1="uni04FA" g2="uni0467" k="102" />
+<hkern g1="uni04FA" g2="uni0469" k="61" />
+<hkern g1="uni04FA" g2="uni046B" k="41" />
+<hkern g1="uni04FA" g2="uni046D" k="61" />
+<hkern g1="uni04FA" g2="uni0471" k="61" />
+<hkern g1="uni04FA" g2="uni0472" k="41" />
+<hkern g1="uni04FA" g2="uni0473" k="82" />
+<hkern g1="uni04FA" g2="uni0478" k="41" />
+<hkern g1="uni04FA" g2="uni0479" k="82" />
+<hkern g1="uni04FA" g2="uni047A" k="41" />
+<hkern g1="uni04FA" g2="uni047B" k="82" />
+<hkern g1="uni04FA" g2="uni047C" k="41" />
+<hkern g1="uni04FA" g2="uni047D" k="82" />
+<hkern g1="uni04FA" g2="uni047E" k="41" />
+<hkern g1="uni04FA" g2="uni0480" k="41" />
+<hkern g1="uni04FA" g2="uni0481" k="82" />
+<hkern g1="uni04FA" g2="uni048B" k="61" />
+<hkern g1="uni04FA" g2="uni048D" k="-41" />
+<hkern g1="uni04FA" g2="uni048F" k="61" />
+<hkern g1="uni04FA" g2="uni0495" k="61" />
+<hkern g1="uni04FA" g2="uni0497" k="41" />
+<hkern g1="uni04FA" g2="uni0499" k="41" />
+<hkern g1="uni04FA" g2="uni049B" k="61" />
+<hkern g1="uni04FA" g2="uni049D" k="61" />
+<hkern g1="uni04FA" g2="uni049F" k="-41" />
+<hkern g1="uni04FA" g2="uni04A0" k="-41" />
+<hkern g1="uni04FA" g2="uni04A3" k="61" />
+<hkern g1="uni04FA" g2="uni04A5" k="61" />
+<hkern g1="uni04FA" g2="uni04A7" k="61" />
+<hkern g1="uni04FA" g2="uni04A8" k="41" />
+<hkern g1="uni04FA" g2="uni04A9" k="82" />
+<hkern g1="uni04FA" g2="uni04AA" k="41" />
+<hkern g1="uni04FA" g2="uni04AB" k="82" />
+<hkern g1="uni04FA" g2="uni04AC" k="-41" />
+<hkern g1="uni04FA" g2="uni04B3" k="41" />
+<hkern g1="uni04FA" g2="uni04B4" k="-41" />
+<hkern g1="uni04FA" g2="uni04B7" k="102" />
+<hkern g1="uni04FA" g2="uni04B9" k="102" />
+<hkern g1="uni04FA" g2="uni04BB" k="61" />
+<hkern g1="uni04FA" g2="uni04BC" k="41" />
+<hkern g1="uni04FA" g2="uni04BD" k="61" />
+<hkern g1="uni04FA" g2="uni04BE" k="41" />
+<hkern g1="uni04FA" g2="uni04BF" k="61" />
+<hkern g1="uni04FA" g2="uni04C2" k="41" />
+<hkern g1="uni04FA" g2="uni04C4" k="61" />
+<hkern g1="uni04FA" g2="uni04C5" k="82" />
+<hkern g1="uni04FA" g2="uni04C6" k="102" />
+<hkern g1="uni04FA" g2="uni04C8" k="61" />
+<hkern g1="uni04FA" g2="uni04CA" k="61" />
+<hkern g1="uni04FA" g2="uni04CC" k="102" />
+<hkern g1="uni04FA" g2="uni04CE" k="61" />
+<hkern g1="uni04FA" g2="uni04D0" k="123" />
+<hkern g1="uni04FA" g2="uni04D2" k="123" />
+<hkern g1="uni04FA" g2="uni04D4" k="123" />
+<hkern g1="uni04FA" g2="uni04D7" k="82" />
+<hkern g1="uni04FA" g2="uni04DD" k="41" />
+<hkern g1="uni04FA" g2="uni04DF" k="41" />
+<hkern g1="uni04FA" g2="uni04E3" k="61" />
+<hkern g1="uni04FA" g2="uni04E5" k="61" />
+<hkern g1="uni04FA" g2="uni04E6" k="41" />
+<hkern g1="uni04FA" g2="uni04E7" k="82" />
+<hkern g1="uni04FA" g2="uni04E8" k="41" />
+<hkern g1="uni04FA" g2="uni04E9" k="82" />
+<hkern g1="uni04FA" g2="uni04EA" k="41" />
+<hkern g1="uni04FA" g2="uni04EB" k="82" />
+<hkern g1="uni04FA" g2="uni04ED" k="41" />
+<hkern g1="uni04FA" g2="uni04F5" k="102" />
+<hkern g1="uni04FA" g2="uni04F7" k="61" />
+<hkern g1="uni04FA" g2="uni04F9" k="61" />
+<hkern g1="uni04FA" g2="uni04FD" k="41" />
+<hkern g1="uni04FA" g2="uni04FF" k="41" />
+<hkern g1="uni04FA" g2="uni0500" k="102" />
+<hkern g1="uni04FA" g2="uni0501" k="82" />
+<hkern g1="uni04FA" g2="uni0502" k="102" />
+<hkern g1="uni04FA" g2="uni0503" k="82" />
+<hkern g1="uni04FA" g2="uni0505" k="41" />
+<hkern g1="uni04FA" g2="uni0507" k="41" />
+<hkern g1="uni04FA" g2="uni0508" k="82" />
+<hkern g1="uni04FA" g2="uni0509" k="102" />
+<hkern g1="uni04FA" g2="uni050B" k="61" />
+<hkern g1="uni04FA" g2="uni050C" k="41" />
+<hkern g1="uni04FA" g2="uni050D" k="82" />
+<hkern g1="uni04FA" g2="uni050E" k="-41" />
+<hkern g1="uni04FA" g2="uni0511" k="82" />
+<hkern g1="uni04FA" g2="uni0512" k="82" />
+<hkern g1="uni04FA" g2="uni0513" k="102" />
+<hkern g1="uni04FB" g2="comma" k="61" />
+<hkern g1="uni04FB" g2="period" k="61" />
+<hkern g1="uni04FB" g2="afii10069" k="61" />
+<hkern g1="uni04FB" g2="afii10070" k="41" />
+<hkern g1="uni04FB" g2="afii10077" k="61" />
+<hkern g1="uni04FB" g2="afii10080" k="41" />
+<hkern g1="uni04FB" g2="afii10083" k="41" />
+<hkern g1="uni04FB" g2="afii10086" k="41" />
+<hkern g1="uni04FB" g2="afii10071" k="41" />
+<hkern g1="uni04FB" g2="afii10101" k="41" />
+<hkern g1="uni04FB" g2="afii10106" k="61" />
+<hkern g1="uni04FB" g2="quotesinglbase" k="61" />
+<hkern g1="uni04FB" g2="quotedblbase" k="61" />
+<hkern g1="uni04FB" g2="uni0450" k="41" />
+<hkern g1="uni04FB" g2="uni0467" k="61" />
+<hkern g1="uni04FB" g2="uni0473" k="41" />
+<hkern g1="uni04FB" g2="uni0479" k="41" />
+<hkern g1="uni04FB" g2="uni047B" k="41" />
+<hkern g1="uni04FB" g2="uni047D" k="41" />
+<hkern g1="uni04FB" g2="uni0481" k="41" />
+<hkern g1="uni04FB" g2="uni04A9" k="41" />
+<hkern g1="uni04FB" g2="uni04AB" k="41" />
+<hkern g1="uni04FB" g2="uni04C6" k="61" />
+<hkern g1="uni04FB" g2="uni04D7" k="41" />
+<hkern g1="uni04FB" g2="uni04E7" k="41" />
+<hkern g1="uni04FB" g2="uni04E9" k="41" />
+<hkern g1="uni04FB" g2="uni04EB" k="41" />
+<hkern g1="uni04FB" g2="uni0501" k="41" />
+<hkern g1="uni04FB" g2="uni0503" k="41" />
+<hkern g1="uni04FB" g2="uni0509" k="61" />
+<hkern g1="uni04FB" g2="uni050D" k="41" />
+<hkern g1="uni04FB" g2="uni0511" k="41" />
+<hkern g1="uni04FB" g2="uni0513" k="61" />
+<hkern g1="uni04FC" g2="afii10053" k="41" />
+<hkern g1="uni04FC" g2="afii10057" k="-225" />
+<hkern g1="uni04FC" g2="afii10032" k="41" />
+<hkern g1="uni04FC" g2="afii10035" k="41" />
+<hkern g1="uni04FC" g2="afii10038" k="61" />
+<hkern g1="uni04FC" g2="afii10084" k="41" />
+<hkern g1="uni04FC" g2="afii10089" k="82" />
+<hkern g1="uni04FC" g2="afii10092" k="41" />
+<hkern g1="uni04FC" g2="uni0460" k="41" />
+<hkern g1="uni04FC" g2="uni046F" k="-61" />
+<hkern g1="uni04FC" g2="uni0471" k="20" />
+<hkern g1="uni04FC" g2="uni0472" k="41" />
+<hkern g1="uni04FC" g2="uni0478" k="41" />
+<hkern g1="uni04FC" g2="uni047A" k="41" />
+<hkern g1="uni04FC" g2="uni047C" k="41" />
+<hkern g1="uni04FC" g2="uni047E" k="41" />
+<hkern g1="uni04FC" g2="uni0480" k="41" />
+<hkern g1="uni04FC" g2="uni04A1" k="41" />
+<hkern g1="uni04FC" g2="uni04A8" k="41" />
+<hkern g1="uni04FC" g2="uni04AA" k="41" />
+<hkern g1="uni04FC" g2="uni04AD" k="41" />
+<hkern g1="uni04FC" g2="uni04B5" k="41" />
+<hkern g1="uni04FC" g2="uni04B7" k="82" />
+<hkern g1="uni04FC" g2="uni04B9" k="82" />
+<hkern g1="uni04FC" g2="uni04BC" k="61" />
+<hkern g1="uni04FC" g2="uni04BD" k="41" />
+<hkern g1="uni04FC" g2="uni04BE" k="61" />
+<hkern g1="uni04FC" g2="uni04BF" k="41" />
+<hkern g1="uni04FC" g2="uni04CC" k="82" />
+<hkern g1="uni04FC" g2="uni04E6" k="41" />
+<hkern g1="uni04FC" g2="uni04E8" k="41" />
+<hkern g1="uni04FC" g2="uni04EA" k="41" />
+<hkern g1="uni04FC" g2="uni04F5" k="82" />
+<hkern g1="uni04FC" g2="uni0505" k="41" />
+<hkern g1="uni04FC" g2="uni0507" k="41" />
+<hkern g1="uni04FC" g2="uni050C" k="41" />
+<hkern g1="uni04FC" g2="uni050F" k="41" />
+<hkern g1="uni04FD" g2="afii10070" k="20" />
+<hkern g1="uni04FD" g2="afii10080" k="20" />
+<hkern g1="uni04FD" g2="afii10083" k="20" />
+<hkern g1="uni04FD" g2="afii10086" k="20" />
+<hkern g1="uni04FD" g2="afii10089" k="20" />
+<hkern g1="uni04FD" g2="afii10071" k="20" />
+<hkern g1="uni04FD" g2="afii10101" k="20" />
+<hkern g1="uni04FD" g2="uni0450" k="20" />
+<hkern g1="uni04FD" g2="uni0473" k="20" />
+<hkern g1="uni04FD" g2="uni0479" k="20" />
+<hkern g1="uni04FD" g2="uni047B" k="20" />
+<hkern g1="uni04FD" g2="uni047D" k="20" />
+<hkern g1="uni04FD" g2="uni0481" k="20" />
+<hkern g1="uni04FD" g2="uni04A9" k="20" />
+<hkern g1="uni04FD" g2="uni04AB" k="20" />
+<hkern g1="uni04FD" g2="uni04B7" k="20" />
+<hkern g1="uni04FD" g2="uni04B9" k="20" />
+<hkern g1="uni04FD" g2="uni04CC" k="20" />
+<hkern g1="uni04FD" g2="uni04D7" k="20" />
+<hkern g1="uni04FD" g2="uni04E7" k="20" />
+<hkern g1="uni04FD" g2="uni04E9" k="20" />
+<hkern g1="uni04FD" g2="uni04EB" k="20" />
+<hkern g1="uni04FD" g2="uni04F5" k="20" />
+<hkern g1="uni04FD" g2="uni0501" k="20" />
+<hkern g1="uni04FD" g2="uni0503" k="20" />
+<hkern g1="uni04FD" g2="uni0505" k="41" />
+<hkern g1="uni04FD" g2="uni0507" k="41" />
+<hkern g1="uni04FD" g2="uni050D" k="20" />
+<hkern g1="uni04FD" g2="uni0511" k="20" />
+<hkern g1="uni04FE" g2="afii10053" k="41" />
+<hkern g1="uni04FE" g2="afii10032" k="41" />
+<hkern g1="uni04FE" g2="afii10035" k="41" />
+<hkern g1="uni04FE" g2="afii10038" k="41" />
+<hkern g1="uni04FE" g2="afii10041" k="41" />
+<hkern g1="uni04FE" g2="afii10089" k="41" />
+<hkern g1="uni04FE" g2="uni0460" k="41" />
+<hkern g1="uni04FE" g2="uni0470" k="41" />
+<hkern g1="uni04FE" g2="uni0472" k="41" />
+<hkern g1="uni04FE" g2="uni0478" k="41" />
+<hkern g1="uni04FE" g2="uni047A" k="41" />
+<hkern g1="uni04FE" g2="uni047C" k="41" />
+<hkern g1="uni04FE" g2="uni047E" k="41" />
+<hkern g1="uni04FE" g2="uni0480" k="41" />
+<hkern g1="uni04FE" g2="uni04A8" k="41" />
+<hkern g1="uni04FE" g2="uni04AA" k="41" />
+<hkern g1="uni04FE" g2="uni04B6" k="41" />
+<hkern g1="uni04FE" g2="uni04B7" k="41" />
+<hkern g1="uni04FE" g2="uni04B8" k="41" />
+<hkern g1="uni04FE" g2="uni04B9" k="41" />
+<hkern g1="uni04FE" g2="uni04BC" k="102" />
+<hkern g1="uni04FE" g2="uni04BE" k="102" />
+<hkern g1="uni04FE" g2="uni04CB" k="41" />
+<hkern g1="uni04FE" g2="uni04CC" k="41" />
+<hkern g1="uni04FE" g2="uni04E6" k="41" />
+<hkern g1="uni04FE" g2="uni04E8" k="41" />
+<hkern g1="uni04FE" g2="uni04EA" k="41" />
+<hkern g1="uni04FE" g2="uni04F4" k="41" />
+<hkern g1="uni04FE" g2="uni04F5" k="41" />
+<hkern g1="uni04FE" g2="uni0500" k="41" />
+<hkern g1="uni04FE" g2="uni0502" k="41" />
+<hkern g1="uni04FE" g2="uni0505" k="41" />
+<hkern g1="uni04FE" g2="uni0507" k="41" />
+<hkern g1="uni04FE" g2="uni050C" k="41" />
+<hkern g1="uni04FE" g2="uni0510" k="20" />
+<hkern g1="uni04FF" g2="afii10070" k="20" />
+<hkern g1="uni04FF" g2="afii10080" k="20" />
+<hkern g1="uni04FF" g2="afii10083" k="20" />
+<hkern g1="uni04FF" g2="afii10086" k="20" />
+<hkern g1="uni04FF" g2="afii10089" k="20" />
+<hkern g1="uni04FF" g2="afii10071" k="20" />
+<hkern g1="uni04FF" g2="afii10101" k="20" />
+<hkern g1="uni04FF" g2="uni0450" k="20" />
+<hkern g1="uni04FF" g2="uni0473" k="20" />
+<hkern g1="uni04FF" g2="uni0479" k="20" />
+<hkern g1="uni04FF" g2="uni047B" k="20" />
+<hkern g1="uni04FF" g2="uni047D" k="20" />
+<hkern g1="uni04FF" g2="uni0481" k="20" />
+<hkern g1="uni04FF" g2="uni04A9" k="20" />
+<hkern g1="uni04FF" g2="uni04AB" k="20" />
+<hkern g1="uni04FF" g2="uni04B7" k="20" />
+<hkern g1="uni04FF" g2="uni04B9" k="20" />
+<hkern g1="uni04FF" g2="uni04CC" k="20" />
+<hkern g1="uni04FF" g2="uni04D7" k="20" />
+<hkern g1="uni04FF" g2="uni04E7" k="20" />
+<hkern g1="uni04FF" g2="uni04E9" k="20" />
+<hkern g1="uni04FF" g2="uni04EB" k="20" />
+<hkern g1="uni04FF" g2="uni04F5" k="20" />
+<hkern g1="uni04FF" g2="uni0501" k="20" />
+<hkern g1="uni04FF" g2="uni0503" k="20" />
+<hkern g1="uni04FF" g2="uni0505" k="41" />
+<hkern g1="uni04FF" g2="uni0507" k="41" />
+<hkern g1="uni04FF" g2="uni050D" k="20" />
+<hkern g1="uni04FF" g2="uni0511" k="20" />
+<hkern g1="uni0502" g2="quotedbl" k="102" />
+<hkern g1="uni0502" g2="quotesingle" k="102" />
+<hkern g1="uni0502" g2="afii10051" k="82" />
+<hkern g1="uni0502" g2="afii10060" k="82" />
+<hkern g1="uni0502" g2="afii10062" k="61" />
+<hkern g1="uni0502" g2="afii10017" k="61" />
+<hkern g1="uni0502" g2="afii10024" k="61" />
+<hkern g1="uni0502" g2="afii10036" k="143" />
+<hkern g1="uni0502" g2="afii10037" k="61" />
+<hkern g1="uni0502" g2="afii10039" k="61" />
+<hkern g1="uni0502" g2="afii10041" k="61" />
+<hkern g1="uni0502" g2="afii10044" k="82" />
+<hkern g1="uni0502" g2="afii10072" k="41" />
+<hkern g1="uni0502" g2="afii10084" k="61" />
+<hkern g1="uni0502" g2="afii10087" k="41" />
+<hkern g1="uni0502" g2="afii10089" k="41" />
+<hkern g1="uni0502" g2="afii10092" k="61" />
+<hkern g1="uni0502" g2="quoteright" k="102" />
+<hkern g1="uni0502" g2="quotedblright" k="102" />
+<hkern g1="uni0502" g2="uni0466" k="61" />
+<hkern g1="uni0502" g2="uni046A" k="41" />
+<hkern g1="uni0502" g2="uni0470" k="61" />
+<hkern g1="uni0502" g2="uni0474" k="61" />
+<hkern g1="uni0502" g2="uni0476" k="61" />
+<hkern g1="uni0502" g2="uni0496" k="61" />
+<hkern g1="uni0502" g2="uni0497" k="41" />
+<hkern g1="uni0502" g2="uni04A0" k="82" />
+<hkern g1="uni0502" g2="uni04A1" k="61" />
+<hkern g1="uni0502" g2="uni04AC" k="143" />
+<hkern g1="uni0502" g2="uni04AD" k="61" />
+<hkern g1="uni0502" g2="uni04AE" k="61" />
+<hkern g1="uni0502" g2="uni04B0" k="61" />
+<hkern g1="uni0502" g2="uni04B2" k="61" />
+<hkern g1="uni0502" g2="uni04B3" k="41" />
+<hkern g1="uni0502" g2="uni04B4" k="82" />
+<hkern g1="uni0502" g2="uni04B5" k="61" />
+<hkern g1="uni0502" g2="uni04B6" k="61" />
+<hkern g1="uni0502" g2="uni04B7" k="41" />
+<hkern g1="uni0502" g2="uni04B8" k="61" />
+<hkern g1="uni0502" g2="uni04B9" k="41" />
+<hkern g1="uni0502" g2="uni04C1" k="61" />
+<hkern g1="uni0502" g2="uni04C2" k="41" />
+<hkern g1="uni0502" g2="uni04CB" k="61" />
+<hkern g1="uni0502" g2="uni04CC" k="41" />
+<hkern g1="uni0502" g2="uni04D0" k="61" />
+<hkern g1="uni0502" g2="uni04D2" k="61" />
+<hkern g1="uni0502" g2="uni04D4" k="61" />
+<hkern g1="uni0502" g2="uni04DC" k="61" />
+<hkern g1="uni0502" g2="uni04DD" k="41" />
+<hkern g1="uni0502" g2="uni04EE" k="61" />
+<hkern g1="uni0502" g2="uni04F0" k="61" />
+<hkern g1="uni0502" g2="uni04F2" k="61" />
+<hkern g1="uni0502" g2="uni04F4" k="61" />
+<hkern g1="uni0502" g2="uni04F5" k="41" />
+<hkern g1="uni0502" g2="uni04FC" k="61" />
+<hkern g1="uni0502" g2="uni04FD" k="41" />
+<hkern g1="uni0502" g2="uni04FE" k="61" />
+<hkern g1="uni0502" g2="uni04FF" k="41" />
+<hkern g1="uni0502" g2="uni0504" k="41" />
+<hkern g1="uni0502" g2="uni0505" k="41" />
+<hkern g1="uni0502" g2="uni0506" k="41" />
+<hkern g1="uni0502" g2="uni0507" k="41" />
+<hkern g1="uni0502" g2="uni050E" k="82" />
+<hkern g1="uni0502" g2="uni050F" k="61" />
+<hkern g1="uni0503" g2="quotedbl" k="102" />
+<hkern g1="uni0503" g2="quotesingle" k="102" />
+<hkern g1="uni0503" g2="afii10072" k="41" />
+<hkern g1="uni0503" g2="afii10084" k="61" />
+<hkern g1="uni0503" g2="afii10085" k="41" />
+<hkern g1="uni0503" g2="afii10087" k="41" />
+<hkern g1="uni0503" g2="afii10089" k="41" />
+<hkern g1="uni0503" g2="afii10092" k="61" />
+<hkern g1="uni0503" g2="afii10110" k="41" />
+<hkern g1="uni0503" g2="quoteright" k="102" />
+<hkern g1="uni0503" g2="quotedblright" k="102" />
+<hkern g1="uni0503" g2="uni0497" k="41" />
+<hkern g1="uni0503" g2="uni04A1" k="61" />
+<hkern g1="uni0503" g2="uni04AD" k="61" />
+<hkern g1="uni0503" g2="uni04B3" k="41" />
+<hkern g1="uni0503" g2="uni04B5" k="61" />
+<hkern g1="uni0503" g2="uni04B7" k="41" />
+<hkern g1="uni0503" g2="uni04B9" k="41" />
+<hkern g1="uni0503" g2="uni04C2" k="41" />
+<hkern g1="uni0503" g2="uni04CC" k="41" />
+<hkern g1="uni0503" g2="uni04DD" k="41" />
+<hkern g1="uni0503" g2="uni04EF" k="41" />
+<hkern g1="uni0503" g2="uni04F1" k="41" />
+<hkern g1="uni0503" g2="uni04F3" k="41" />
+<hkern g1="uni0503" g2="uni04F5" k="41" />
+<hkern g1="uni0503" g2="uni04FD" k="41" />
+<hkern g1="uni0503" g2="uni04FF" k="41" />
+<hkern g1="uni0503" g2="uni0505" k="102" />
+<hkern g1="uni0503" g2="uni0507" k="102" />
+<hkern g1="uni0503" g2="uni050F" k="61" />
+<hkern g1="uni0504" g2="quotedbl" k="102" />
+<hkern g1="uni0504" g2="quotesingle" k="102" />
+<hkern g1="uni0504" g2="afii10051" k="82" />
+<hkern g1="uni0504" g2="afii10060" k="82" />
+<hkern g1="uni0504" g2="afii10062" k="61" />
+<hkern g1="uni0504" g2="afii10017" k="61" />
+<hkern g1="uni0504" g2="afii10024" k="61" />
+<hkern g1="uni0504" g2="afii10036" k="143" />
+<hkern g1="uni0504" g2="afii10037" k="61" />
+<hkern g1="uni0504" g2="afii10039" k="61" />
+<hkern g1="uni0504" g2="afii10041" k="61" />
+<hkern g1="uni0504" g2="afii10044" k="82" />
+<hkern g1="uni0504" g2="afii10072" k="41" />
+<hkern g1="uni0504" g2="afii10084" k="61" />
+<hkern g1="uni0504" g2="afii10087" k="41" />
+<hkern g1="uni0504" g2="afii10089" k="41" />
+<hkern g1="uni0504" g2="afii10092" k="61" />
+<hkern g1="uni0504" g2="quoteright" k="102" />
+<hkern g1="uni0504" g2="quotedblright" k="102" />
+<hkern g1="uni0504" g2="uni0466" k="61" />
+<hkern g1="uni0504" g2="uni046A" k="41" />
+<hkern g1="uni0504" g2="uni0470" k="61" />
+<hkern g1="uni0504" g2="uni0474" k="61" />
+<hkern g1="uni0504" g2="uni0476" k="61" />
+<hkern g1="uni0504" g2="uni0496" k="61" />
+<hkern g1="uni0504" g2="uni0497" k="41" />
+<hkern g1="uni0504" g2="uni04A0" k="82" />
+<hkern g1="uni0504" g2="uni04A1" k="61" />
+<hkern g1="uni0504" g2="uni04AC" k="143" />
+<hkern g1="uni0504" g2="uni04AD" k="61" />
+<hkern g1="uni0504" g2="uni04AE" k="61" />
+<hkern g1="uni0504" g2="uni04B0" k="61" />
+<hkern g1="uni0504" g2="uni04B2" k="61" />
+<hkern g1="uni0504" g2="uni04B3" k="41" />
+<hkern g1="uni0504" g2="uni04B4" k="82" />
+<hkern g1="uni0504" g2="uni04B5" k="61" />
+<hkern g1="uni0504" g2="uni04B6" k="61" />
+<hkern g1="uni0504" g2="uni04B7" k="41" />
+<hkern g1="uni0504" g2="uni04B8" k="61" />
+<hkern g1="uni0504" g2="uni04B9" k="41" />
+<hkern g1="uni0504" g2="uni04C1" k="61" />
+<hkern g1="uni0504" g2="uni04C2" k="41" />
+<hkern g1="uni0504" g2="uni04CB" k="61" />
+<hkern g1="uni0504" g2="uni04CC" k="41" />
+<hkern g1="uni0504" g2="uni04D0" k="61" />
+<hkern g1="uni0504" g2="uni04D2" k="61" />
+<hkern g1="uni0504" g2="uni04D4" k="61" />
+<hkern g1="uni0504" g2="uni04DC" k="61" />
+<hkern g1="uni0504" g2="uni04DD" k="41" />
+<hkern g1="uni0504" g2="uni04EE" k="61" />
+<hkern g1="uni0504" g2="uni04F0" k="61" />
+<hkern g1="uni0504" g2="uni04F2" k="61" />
+<hkern g1="uni0504" g2="uni04F4" k="61" />
+<hkern g1="uni0504" g2="uni04F5" k="41" />
+<hkern g1="uni0504" g2="uni04FC" k="61" />
+<hkern g1="uni0504" g2="uni04FD" k="41" />
+<hkern g1="uni0504" g2="uni04FE" k="61" />
+<hkern g1="uni0504" g2="uni04FF" k="41" />
+<hkern g1="uni0504" g2="uni0504" k="41" />
+<hkern g1="uni0504" g2="uni0505" k="41" />
+<hkern g1="uni0504" g2="uni0506" k="41" />
+<hkern g1="uni0504" g2="uni0507" k="41" />
+<hkern g1="uni0504" g2="uni050E" k="82" />
+<hkern g1="uni0504" g2="uni050F" k="61" />
+<hkern g1="uni0505" g2="quotedbl" k="102" />
+<hkern g1="uni0505" g2="quotesingle" k="102" />
+<hkern g1="uni0505" g2="afii10072" k="41" />
+<hkern g1="uni0505" g2="afii10084" k="61" />
+<hkern g1="uni0505" g2="afii10085" k="41" />
+<hkern g1="uni0505" g2="afii10087" k="41" />
+<hkern g1="uni0505" g2="afii10089" k="41" />
+<hkern g1="uni0505" g2="afii10092" k="61" />
+<hkern g1="uni0505" g2="afii10110" k="41" />
+<hkern g1="uni0505" g2="quoteright" k="102" />
+<hkern g1="uni0505" g2="quotedblright" k="102" />
+<hkern g1="uni0505" g2="uni0497" k="41" />
+<hkern g1="uni0505" g2="uni04A1" k="61" />
+<hkern g1="uni0505" g2="uni04AD" k="61" />
+<hkern g1="uni0505" g2="uni04B3" k="41" />
+<hkern g1="uni0505" g2="uni04B5" k="61" />
+<hkern g1="uni0505" g2="uni04B7" k="41" />
+<hkern g1="uni0505" g2="uni04B9" k="41" />
+<hkern g1="uni0505" g2="uni04C2" k="41" />
+<hkern g1="uni0505" g2="uni04CC" k="41" />
+<hkern g1="uni0505" g2="uni04DD" k="41" />
+<hkern g1="uni0505" g2="uni04EF" k="41" />
+<hkern g1="uni0505" g2="uni04F1" k="41" />
+<hkern g1="uni0505" g2="uni04F3" k="41" />
+<hkern g1="uni0505" g2="uni04F5" k="41" />
+<hkern g1="uni0505" g2="uni04FD" k="41" />
+<hkern g1="uni0505" g2="uni04FF" k="41" />
+<hkern g1="uni0505" g2="uni0505" k="102" />
+<hkern g1="uni0505" g2="uni0507" k="102" />
+<hkern g1="uni0505" g2="uni050F" k="61" />
+<hkern g1="uni0506" g2="afii10057" k="-225" />
+<hkern g1="uni0506" g2="uni04E1" k="-41" />
+<hkern g1="uni0506" g2="uni0505" k="41" />
+<hkern g1="uni0506" g2="uni0507" k="41" />
+<hkern g1="uni0507" g2="quotedbl" k="20" />
+<hkern g1="uni0507" g2="quotesingle" k="20" />
+<hkern g1="uni0507" g2="quoteright" k="20" />
+<hkern g1="uni0507" g2="quotedblright" k="20" />
+<hkern g1="uni0508" g2="quotedbl" k="102" />
+<hkern g1="uni0508" g2="quotesingle" k="102" />
+<hkern g1="uni0508" g2="afii10051" k="82" />
+<hkern g1="uni0508" g2="afii10060" k="82" />
+<hkern g1="uni0508" g2="afii10062" k="61" />
+<hkern g1="uni0508" g2="afii10017" k="61" />
+<hkern g1="uni0508" g2="afii10024" k="61" />
+<hkern g1="uni0508" g2="afii10036" k="143" />
+<hkern g1="uni0508" g2="afii10037" k="61" />
+<hkern g1="uni0508" g2="afii10039" k="61" />
+<hkern g1="uni0508" g2="afii10041" k="61" />
+<hkern g1="uni0508" g2="afii10044" k="82" />
+<hkern g1="uni0508" g2="afii10072" k="41" />
+<hkern g1="uni0508" g2="afii10084" k="61" />
+<hkern g1="uni0508" g2="afii10087" k="41" />
+<hkern g1="uni0508" g2="afii10089" k="41" />
+<hkern g1="uni0508" g2="afii10092" k="61" />
+<hkern g1="uni0508" g2="quoteright" k="102" />
+<hkern g1="uni0508" g2="quotedblright" k="102" />
+<hkern g1="uni0508" g2="uni0466" k="61" />
+<hkern g1="uni0508" g2="uni046A" k="41" />
+<hkern g1="uni0508" g2="uni0470" k="61" />
+<hkern g1="uni0508" g2="uni0474" k="61" />
+<hkern g1="uni0508" g2="uni0476" k="61" />
+<hkern g1="uni0508" g2="uni0496" k="61" />
+<hkern g1="uni0508" g2="uni0497" k="41" />
+<hkern g1="uni0508" g2="uni04A0" k="82" />
+<hkern g1="uni0508" g2="uni04A1" k="61" />
+<hkern g1="uni0508" g2="uni04AC" k="143" />
+<hkern g1="uni0508" g2="uni04AD" k="61" />
+<hkern g1="uni0508" g2="uni04AE" k="61" />
+<hkern g1="uni0508" g2="uni04B0" k="61" />
+<hkern g1="uni0508" g2="uni04B2" k="61" />
+<hkern g1="uni0508" g2="uni04B3" k="41" />
+<hkern g1="uni0508" g2="uni04B4" k="82" />
+<hkern g1="uni0508" g2="uni04B5" k="61" />
+<hkern g1="uni0508" g2="uni04B6" k="61" />
+<hkern g1="uni0508" g2="uni04B7" k="41" />
+<hkern g1="uni0508" g2="uni04B8" k="61" />
+<hkern g1="uni0508" g2="uni04B9" k="41" />
+<hkern g1="uni0508" g2="uni04C1" k="61" />
+<hkern g1="uni0508" g2="uni04C2" k="41" />
+<hkern g1="uni0508" g2="uni04CB" k="61" />
+<hkern g1="uni0508" g2="uni04CC" k="41" />
+<hkern g1="uni0508" g2="uni04D0" k="61" />
+<hkern g1="uni0508" g2="uni04D2" k="61" />
+<hkern g1="uni0508" g2="uni04D4" k="61" />
+<hkern g1="uni0508" g2="uni04DC" k="61" />
+<hkern g1="uni0508" g2="uni04DD" k="41" />
+<hkern g1="uni0508" g2="uni04EE" k="61" />
+<hkern g1="uni0508" g2="uni04F0" k="61" />
+<hkern g1="uni0508" g2="uni04F2" k="61" />
+<hkern g1="uni0508" g2="uni04F4" k="61" />
+<hkern g1="uni0508" g2="uni04F5" k="41" />
+<hkern g1="uni0508" g2="uni04FC" k="61" />
+<hkern g1="uni0508" g2="uni04FD" k="41" />
+<hkern g1="uni0508" g2="uni04FE" k="61" />
+<hkern g1="uni0508" g2="uni04FF" k="41" />
+<hkern g1="uni0508" g2="uni0504" k="41" />
+<hkern g1="uni0508" g2="uni0505" k="41" />
+<hkern g1="uni0508" g2="uni0506" k="41" />
+<hkern g1="uni0508" g2="uni0507" k="41" />
+<hkern g1="uni0508" g2="uni050E" k="82" />
+<hkern g1="uni0508" g2="uni050F" k="61" />
+<hkern g1="uni0509" g2="quotedbl" k="102" />
+<hkern g1="uni0509" g2="quotesingle" k="102" />
+<hkern g1="uni0509" g2="afii10072" k="41" />
+<hkern g1="uni0509" g2="afii10084" k="61" />
+<hkern g1="uni0509" g2="afii10085" k="41" />
+<hkern g1="uni0509" g2="afii10087" k="41" />
+<hkern g1="uni0509" g2="afii10089" k="41" />
+<hkern g1="uni0509" g2="afii10092" k="61" />
+<hkern g1="uni0509" g2="afii10110" k="41" />
+<hkern g1="uni0509" g2="quoteright" k="102" />
+<hkern g1="uni0509" g2="quotedblright" k="102" />
+<hkern g1="uni0509" g2="uni0497" k="41" />
+<hkern g1="uni0509" g2="uni04A1" k="61" />
+<hkern g1="uni0509" g2="uni04AD" k="61" />
+<hkern g1="uni0509" g2="uni04B3" k="41" />
+<hkern g1="uni0509" g2="uni04B5" k="61" />
+<hkern g1="uni0509" g2="uni04B7" k="41" />
+<hkern g1="uni0509" g2="uni04B9" k="41" />
+<hkern g1="uni0509" g2="uni04C2" k="41" />
+<hkern g1="uni0509" g2="uni04CC" k="41" />
+<hkern g1="uni0509" g2="uni04DD" k="41" />
+<hkern g1="uni0509" g2="uni04EF" k="41" />
+<hkern g1="uni0509" g2="uni04F1" k="41" />
+<hkern g1="uni0509" g2="uni04F3" k="41" />
+<hkern g1="uni0509" g2="uni04F5" k="41" />
+<hkern g1="uni0509" g2="uni04FD" k="41" />
+<hkern g1="uni0509" g2="uni04FF" k="41" />
+<hkern g1="uni0509" g2="uni0505" k="102" />
+<hkern g1="uni0509" g2="uni0507" k="102" />
+<hkern g1="uni0509" g2="uni050F" k="61" />
+<hkern g1="uni050A" g2="quotedbl" k="102" />
+<hkern g1="uni050A" g2="quotesingle" k="102" />
+<hkern g1="uni050A" g2="afii10051" k="82" />
+<hkern g1="uni050A" g2="afii10060" k="82" />
+<hkern g1="uni050A" g2="afii10062" k="61" />
+<hkern g1="uni050A" g2="afii10017" k="61" />
+<hkern g1="uni050A" g2="afii10024" k="61" />
+<hkern g1="uni050A" g2="afii10036" k="143" />
+<hkern g1="uni050A" g2="afii10037" k="61" />
+<hkern g1="uni050A" g2="afii10039" k="61" />
+<hkern g1="uni050A" g2="afii10041" k="61" />
+<hkern g1="uni050A" g2="afii10044" k="82" />
+<hkern g1="uni050A" g2="afii10072" k="41" />
+<hkern g1="uni050A" g2="afii10084" k="61" />
+<hkern g1="uni050A" g2="afii10087" k="41" />
+<hkern g1="uni050A" g2="afii10089" k="41" />
+<hkern g1="uni050A" g2="afii10092" k="61" />
+<hkern g1="uni050A" g2="quoteright" k="102" />
+<hkern g1="uni050A" g2="quotedblright" k="102" />
+<hkern g1="uni050A" g2="uni0466" k="61" />
+<hkern g1="uni050A" g2="uni046A" k="41" />
+<hkern g1="uni050A" g2="uni0470" k="61" />
+<hkern g1="uni050A" g2="uni0474" k="61" />
+<hkern g1="uni050A" g2="uni0476" k="61" />
+<hkern g1="uni050A" g2="uni0496" k="61" />
+<hkern g1="uni050A" g2="uni0497" k="41" />
+<hkern g1="uni050A" g2="uni04A0" k="82" />
+<hkern g1="uni050A" g2="uni04A1" k="61" />
+<hkern g1="uni050A" g2="uni04AC" k="143" />
+<hkern g1="uni050A" g2="uni04AD" k="61" />
+<hkern g1="uni050A" g2="uni04AE" k="61" />
+<hkern g1="uni050A" g2="uni04B0" k="61" />
+<hkern g1="uni050A" g2="uni04B2" k="61" />
+<hkern g1="uni050A" g2="uni04B3" k="41" />
+<hkern g1="uni050A" g2="uni04B4" k="82" />
+<hkern g1="uni050A" g2="uni04B5" k="61" />
+<hkern g1="uni050A" g2="uni04B6" k="61" />
+<hkern g1="uni050A" g2="uni04B7" k="41" />
+<hkern g1="uni050A" g2="uni04B8" k="61" />
+<hkern g1="uni050A" g2="uni04B9" k="41" />
+<hkern g1="uni050A" g2="uni04C1" k="61" />
+<hkern g1="uni050A" g2="uni04C2" k="41" />
+<hkern g1="uni050A" g2="uni04CB" k="61" />
+<hkern g1="uni050A" g2="uni04CC" k="41" />
+<hkern g1="uni050A" g2="uni04D0" k="61" />
+<hkern g1="uni050A" g2="uni04D2" k="61" />
+<hkern g1="uni050A" g2="uni04D4" k="61" />
+<hkern g1="uni050A" g2="uni04DC" k="61" />
+<hkern g1="uni050A" g2="uni04DD" k="41" />
+<hkern g1="uni050A" g2="uni04EE" k="61" />
+<hkern g1="uni050A" g2="uni04F0" k="61" />
+<hkern g1="uni050A" g2="uni04F2" k="61" />
+<hkern g1="uni050A" g2="uni04F4" k="61" />
+<hkern g1="uni050A" g2="uni04F5" k="41" />
+<hkern g1="uni050A" g2="uni04FC" k="61" />
+<hkern g1="uni050A" g2="uni04FD" k="41" />
+<hkern g1="uni050A" g2="uni04FE" k="61" />
+<hkern g1="uni050A" g2="uni04FF" k="41" />
+<hkern g1="uni050A" g2="uni0504" k="41" />
+<hkern g1="uni050A" g2="uni0505" k="41" />
+<hkern g1="uni050A" g2="uni0506" k="41" />
+<hkern g1="uni050A" g2="uni0507" k="41" />
+<hkern g1="uni050A" g2="uni050E" k="82" />
+<hkern g1="uni050A" g2="uni050F" k="61" />
+<hkern g1="uni050B" g2="quotedbl" k="102" />
+<hkern g1="uni050B" g2="quotesingle" k="102" />
+<hkern g1="uni050B" g2="afii10072" k="41" />
+<hkern g1="uni050B" g2="afii10084" k="61" />
+<hkern g1="uni050B" g2="afii10085" k="41" />
+<hkern g1="uni050B" g2="afii10087" k="41" />
+<hkern g1="uni050B" g2="afii10089" k="41" />
+<hkern g1="uni050B" g2="afii10092" k="61" />
+<hkern g1="uni050B" g2="afii10110" k="41" />
+<hkern g1="uni050B" g2="quoteright" k="102" />
+<hkern g1="uni050B" g2="quotedblright" k="102" />
+<hkern g1="uni050B" g2="uni0497" k="41" />
+<hkern g1="uni050B" g2="uni04A1" k="61" />
+<hkern g1="uni050B" g2="uni04AD" k="61" />
+<hkern g1="uni050B" g2="uni04B3" k="41" />
+<hkern g1="uni050B" g2="uni04B5" k="61" />
+<hkern g1="uni050B" g2="uni04B7" k="41" />
+<hkern g1="uni050B" g2="uni04B9" k="41" />
+<hkern g1="uni050B" g2="uni04C2" k="41" />
+<hkern g1="uni050B" g2="uni04CC" k="41" />
+<hkern g1="uni050B" g2="uni04DD" k="41" />
+<hkern g1="uni050B" g2="uni04EF" k="41" />
+<hkern g1="uni050B" g2="uni04F1" k="41" />
+<hkern g1="uni050B" g2="uni04F3" k="41" />
+<hkern g1="uni050B" g2="uni04F5" k="41" />
+<hkern g1="uni050B" g2="uni04FD" k="41" />
+<hkern g1="uni050B" g2="uni04FF" k="41" />
+<hkern g1="uni050B" g2="uni0505" k="102" />
+<hkern g1="uni050B" g2="uni0507" k="102" />
+<hkern g1="uni050B" g2="uni050F" k="61" />
+<hkern g1="uni050C" g2="comma" k="82" />
+<hkern g1="uni050C" g2="period" k="82" />
+<hkern g1="uni050C" g2="afii10017" k="20" />
+<hkern g1="uni050C" g2="afii10024" k="41" />
+<hkern g1="uni050C" g2="afii10036" k="41" />
+<hkern g1="uni050C" g2="afii10039" k="41" />
+<hkern g1="uni050C" g2="quotesinglbase" k="82" />
+<hkern g1="uni050C" g2="quotedblbase" k="82" />
+<hkern g1="uni050C" g2="uni0466" k="20" />
+<hkern g1="uni050C" g2="uni0474" k="20" />
+<hkern g1="uni050C" g2="uni0476" k="20" />
+<hkern g1="uni050C" g2="uni0496" k="41" />
+<hkern g1="uni050C" g2="uni04AC" k="41" />
+<hkern g1="uni050C" g2="uni04AE" k="20" />
+<hkern g1="uni050C" g2="uni04B0" k="20" />
+<hkern g1="uni050C" g2="uni04B2" k="41" />
+<hkern g1="uni050C" g2="uni04C1" k="41" />
+<hkern g1="uni050C" g2="uni04D0" k="20" />
+<hkern g1="uni050C" g2="uni04D2" k="20" />
+<hkern g1="uni050C" g2="uni04D4" k="20" />
+<hkern g1="uni050C" g2="uni04DC" k="41" />
+<hkern g1="uni050C" g2="uni04FC" k="41" />
+<hkern g1="uni050C" g2="uni04FE" k="41" />
+<hkern g1="uni050D" g2="quotedbl" k="41" />
+<hkern g1="uni050D" g2="quotesingle" k="41" />
+<hkern g1="uni050D" g2="afii10072" k="20" />
+<hkern g1="uni050D" g2="afii10085" k="20" />
+<hkern g1="uni050D" g2="afii10087" k="20" />
+<hkern g1="uni050D" g2="afii10110" k="20" />
+<hkern g1="uni050D" g2="quoteright" k="41" />
+<hkern g1="uni050D" g2="quotedblright" k="41" />
+<hkern g1="uni050D" g2="uni0497" k="20" />
+<hkern g1="uni050D" g2="uni04B3" k="20" />
+<hkern g1="uni050D" g2="uni04C2" k="20" />
+<hkern g1="uni050D" g2="uni04DD" k="20" />
+<hkern g1="uni050D" g2="uni04EF" k="20" />
+<hkern g1="uni050D" g2="uni04F1" k="20" />
+<hkern g1="uni050D" g2="uni04F3" k="20" />
+<hkern g1="uni050D" g2="uni04FD" k="20" />
+<hkern g1="uni050D" g2="uni04FF" k="20" />
+<hkern g1="uni050D" g2="uni0505" k="41" />
+<hkern g1="uni050D" g2="uni0507" k="41" />
+<hkern g1="uni050E" g2="quotedbl" k="82" />
+<hkern g1="uni050E" g2="quotesingle" k="82" />
+<hkern g1="uni050E" g2="afii10051" k="61" />
+<hkern g1="uni050E" g2="afii10060" k="61" />
+<hkern g1="uni050E" g2="afii10017" k="41" />
+<hkern g1="uni050E" g2="afii10024" k="41" />
+<hkern g1="uni050E" g2="afii10036" k="61" />
+<hkern g1="uni050E" g2="afii10039" k="41" />
+<hkern g1="uni050E" g2="afii10041" k="41" />
+<hkern g1="uni050E" g2="afii10044" k="61" />
+<hkern g1="uni050E" g2="afii10084" k="41" />
+<hkern g1="uni050E" g2="afii10092" k="41" />
+<hkern g1="uni050E" g2="quoteright" k="82" />
+<hkern g1="uni050E" g2="quotedblright" k="82" />
+<hkern g1="uni050E" g2="uni0466" k="41" />
+<hkern g1="uni050E" g2="uni0470" k="41" />
+<hkern g1="uni050E" g2="uni0474" k="41" />
+<hkern g1="uni050E" g2="uni0476" k="41" />
+<hkern g1="uni050E" g2="uni0496" k="41" />
+<hkern g1="uni050E" g2="uni04A0" k="61" />
+<hkern g1="uni050E" g2="uni04A1" k="41" />
+<hkern g1="uni050E" g2="uni04AC" k="61" />
+<hkern g1="uni050E" g2="uni04AD" k="41" />
+<hkern g1="uni050E" g2="uni04AE" k="41" />
+<hkern g1="uni050E" g2="uni04B0" k="41" />
+<hkern g1="uni050E" g2="uni04B2" k="41" />
+<hkern g1="uni050E" g2="uni04B4" k="61" />
+<hkern g1="uni050E" g2="uni04B5" k="41" />
+<hkern g1="uni050E" g2="uni04B6" k="41" />
+<hkern g1="uni050E" g2="uni04B8" k="41" />
+<hkern g1="uni050E" g2="uni04C1" k="41" />
+<hkern g1="uni050E" g2="uni04CB" k="41" />
+<hkern g1="uni050E" g2="uni04D0" k="41" />
+<hkern g1="uni050E" g2="uni04D2" k="41" />
+<hkern g1="uni050E" g2="uni04D4" k="41" />
+<hkern g1="uni050E" g2="uni04DC" k="41" />
+<hkern g1="uni050E" g2="uni04F4" k="41" />
+<hkern g1="uni050E" g2="uni04FC" k="41" />
+<hkern g1="uni050E" g2="uni04FE" k="41" />
+<hkern g1="uni050E" g2="uni0504" k="41" />
+<hkern g1="uni050E" g2="uni0506" k="41" />
+<hkern g1="uni050E" g2="uni050E" k="61" />
+<hkern g1="uni050E" g2="uni050F" k="41" />
+<hkern g1="uni050F" g2="quotedbl" k="102" />
+<hkern g1="uni050F" g2="quotesingle" k="102" />
+<hkern g1="uni050F" g2="afii10072" k="41" />
+<hkern g1="uni050F" g2="afii10084" k="61" />
+<hkern g1="uni050F" g2="afii10085" k="41" />
+<hkern g1="uni050F" g2="afii10087" k="41" />
+<hkern g1="uni050F" g2="afii10089" k="41" />
+<hkern g1="uni050F" g2="afii10092" k="61" />
+<hkern g1="uni050F" g2="afii10110" k="41" />
+<hkern g1="uni050F" g2="quoteright" k="102" />
+<hkern g1="uni050F" g2="quotedblright" k="102" />
+<hkern g1="uni050F" g2="uni0497" k="41" />
+<hkern g1="uni050F" g2="uni04A1" k="61" />
+<hkern g1="uni050F" g2="uni04AD" k="61" />
+<hkern g1="uni050F" g2="uni04B3" k="41" />
+<hkern g1="uni050F" g2="uni04B5" k="61" />
+<hkern g1="uni050F" g2="uni04B7" k="41" />
+<hkern g1="uni050F" g2="uni04B9" k="41" />
+<hkern g1="uni050F" g2="uni04C2" k="41" />
+<hkern g1="uni050F" g2="uni04CC" k="41" />
+<hkern g1="uni050F" g2="uni04DD" k="41" />
+<hkern g1="uni050F" g2="uni04EF" k="41" />
+<hkern g1="uni050F" g2="uni04F1" k="41" />
+<hkern g1="uni050F" g2="uni04F3" k="41" />
+<hkern g1="uni050F" g2="uni04F5" k="41" />
+<hkern g1="uni050F" g2="uni04FD" k="41" />
+<hkern g1="uni050F" g2="uni04FF" k="41" />
+<hkern g1="uni050F" g2="uni0505" k="102" />
+<hkern g1="uni050F" g2="uni0507" k="102" />
+<hkern g1="uni050F" g2="uni050F" k="61" />
+<hkern g1="uni0510" g2="afii10089" k="41" />
+<hkern g1="uni0510" g2="uni04B7" k="41" />
+<hkern g1="uni0510" g2="uni04B9" k="41" />
+<hkern g1="uni0510" g2="uni04CC" k="41" />
+<hkern g1="uni0510" g2="uni04F5" k="41" />
+<hkern g1="uni0512" g2="afii10057" k="-225" />
+<hkern g1="uni0512" g2="uni04E1" k="-41" />
+<hkern g1="uni0512" g2="uni0505" k="41" />
+<hkern g1="uni0512" g2="uni0507" k="41" />
+<hkern g1="uni0513" g2="quotedbl" k="20" />
+<hkern g1="uni0513" g2="quotesingle" k="20" />
+<hkern g1="uni0513" g2="quoteright" k="20" />
+<hkern g1="uni0513" g2="quotedblright" k="20" />
+<hkern g1="uni1EA0" g2="quotedbl" k="143" />
+<hkern g1="uni1EA0" g2="quotesingle" k="143" />
+<hkern g1="uni1EA0" g2="C" k="41" />
+<hkern g1="uni1EA0" g2="G" k="41" />
+<hkern g1="uni1EA0" g2="J" k="-266" />
+<hkern g1="uni1EA0" g2="O" k="41" />
+<hkern g1="uni1EA0" g2="Q" k="41" />
+<hkern g1="uni1EA0" g2="T" k="143" />
+<hkern g1="uni1EA0" g2="V" k="82" />
+<hkern g1="uni1EA0" g2="W" k="82" />
+<hkern g1="uni1EA0" g2="Y" k="123" />
+<hkern g1="uni1EA0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA0" g2="Ograve" k="41" />
+<hkern g1="uni1EA0" g2="Oacute" k="41" />
+<hkern g1="uni1EA0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Otilde" k="41" />
+<hkern g1="uni1EA0" g2="Odieresis" k="41" />
+<hkern g1="uni1EA0" g2="Oslash" k="41" />
+<hkern g1="uni1EA0" g2="Yacute" k="123" />
+<hkern g1="uni1EA0" g2="Cacute" k="41" />
+<hkern g1="uni1EA0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Cdot" k="41" />
+<hkern g1="uni1EA0" g2="Ccaron" k="41" />
+<hkern g1="uni1EA0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA0" g2="Gbreve" k="41" />
+<hkern g1="uni1EA0" g2="Gdot" k="41" />
+<hkern g1="uni1EA0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA0" g2="Omacron" k="41" />
+<hkern g1="uni1EA0" g2="Obreve" k="41" />
+<hkern g1="uni1EA0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA0" g2="OE" k="41" />
+<hkern g1="uni1EA0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA0" g2="Tcaron" k="143" />
+<hkern g1="uni1EA0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA0" g2="Wgrave" k="82" />
+<hkern g1="uni1EA0" g2="Wacute" k="82" />
+<hkern g1="uni1EA0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA0" g2="Ygrave" k="123" />
+<hkern g1="uni1EA0" g2="quoteright" k="143" />
+<hkern g1="uni1EA0" g2="quotedblright" k="143" />
+<hkern g1="uni1EA0" g2="Ohorn" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA1" g2="quotedbl" k="20" />
+<hkern g1="uni1EA1" g2="quotesingle" k="20" />
+<hkern g1="uni1EA1" g2="quoteright" k="20" />
+<hkern g1="uni1EA1" g2="quotedblright" k="20" />
+<hkern g1="uni1EA2" g2="quotedbl" k="143" />
+<hkern g1="uni1EA2" g2="quotesingle" k="143" />
+<hkern g1="uni1EA2" g2="C" k="41" />
+<hkern g1="uni1EA2" g2="G" k="41" />
+<hkern g1="uni1EA2" g2="J" k="-266" />
+<hkern g1="uni1EA2" g2="O" k="41" />
+<hkern g1="uni1EA2" g2="Q" k="41" />
+<hkern g1="uni1EA2" g2="T" k="143" />
+<hkern g1="uni1EA2" g2="V" k="82" />
+<hkern g1="uni1EA2" g2="W" k="82" />
+<hkern g1="uni1EA2" g2="Y" k="123" />
+<hkern g1="uni1EA2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA2" g2="Ograve" k="41" />
+<hkern g1="uni1EA2" g2="Oacute" k="41" />
+<hkern g1="uni1EA2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Otilde" k="41" />
+<hkern g1="uni1EA2" g2="Odieresis" k="41" />
+<hkern g1="uni1EA2" g2="Oslash" k="41" />
+<hkern g1="uni1EA2" g2="Yacute" k="123" />
+<hkern g1="uni1EA2" g2="Cacute" k="41" />
+<hkern g1="uni1EA2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Cdot" k="41" />
+<hkern g1="uni1EA2" g2="Ccaron" k="41" />
+<hkern g1="uni1EA2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA2" g2="Gbreve" k="41" />
+<hkern g1="uni1EA2" g2="Gdot" k="41" />
+<hkern g1="uni1EA2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA2" g2="Omacron" k="41" />
+<hkern g1="uni1EA2" g2="Obreve" k="41" />
+<hkern g1="uni1EA2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA2" g2="OE" k="41" />
+<hkern g1="uni1EA2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA2" g2="Tcaron" k="143" />
+<hkern g1="uni1EA2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA2" g2="Wgrave" k="82" />
+<hkern g1="uni1EA2" g2="Wacute" k="82" />
+<hkern g1="uni1EA2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA2" g2="Ygrave" k="123" />
+<hkern g1="uni1EA2" g2="quoteright" k="143" />
+<hkern g1="uni1EA2" g2="quotedblright" k="143" />
+<hkern g1="uni1EA2" g2="Ohorn" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA3" g2="quotedbl" k="20" />
+<hkern g1="uni1EA3" g2="quotesingle" k="20" />
+<hkern g1="uni1EA3" g2="quoteright" k="20" />
+<hkern g1="uni1EA3" g2="quotedblright" k="20" />
+<hkern g1="uni1EA4" g2="quotedbl" k="143" />
+<hkern g1="uni1EA4" g2="quotesingle" k="143" />
+<hkern g1="uni1EA4" g2="C" k="41" />
+<hkern g1="uni1EA4" g2="G" k="41" />
+<hkern g1="uni1EA4" g2="J" k="-266" />
+<hkern g1="uni1EA4" g2="O" k="41" />
+<hkern g1="uni1EA4" g2="Q" k="41" />
+<hkern g1="uni1EA4" g2="T" k="143" />
+<hkern g1="uni1EA4" g2="V" k="82" />
+<hkern g1="uni1EA4" g2="W" k="82" />
+<hkern g1="uni1EA4" g2="Y" k="123" />
+<hkern g1="uni1EA4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA4" g2="Ograve" k="41" />
+<hkern g1="uni1EA4" g2="Oacute" k="41" />
+<hkern g1="uni1EA4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Otilde" k="41" />
+<hkern g1="uni1EA4" g2="Odieresis" k="41" />
+<hkern g1="uni1EA4" g2="Oslash" k="41" />
+<hkern g1="uni1EA4" g2="Yacute" k="123" />
+<hkern g1="uni1EA4" g2="Cacute" k="41" />
+<hkern g1="uni1EA4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Cdot" k="41" />
+<hkern g1="uni1EA4" g2="Ccaron" k="41" />
+<hkern g1="uni1EA4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA4" g2="Gbreve" k="41" />
+<hkern g1="uni1EA4" g2="Gdot" k="41" />
+<hkern g1="uni1EA4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA4" g2="Omacron" k="41" />
+<hkern g1="uni1EA4" g2="Obreve" k="41" />
+<hkern g1="uni1EA4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA4" g2="OE" k="41" />
+<hkern g1="uni1EA4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA4" g2="Tcaron" k="143" />
+<hkern g1="uni1EA4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA4" g2="Wgrave" k="82" />
+<hkern g1="uni1EA4" g2="Wacute" k="82" />
+<hkern g1="uni1EA4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA4" g2="Ygrave" k="123" />
+<hkern g1="uni1EA4" g2="quoteright" k="143" />
+<hkern g1="uni1EA4" g2="quotedblright" k="143" />
+<hkern g1="uni1EA4" g2="Ohorn" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA5" g2="quotedbl" k="20" />
+<hkern g1="uni1EA5" g2="quotesingle" k="20" />
+<hkern g1="uni1EA5" g2="quoteright" k="20" />
+<hkern g1="uni1EA5" g2="quotedblright" k="20" />
+<hkern g1="uni1EA6" g2="quotedbl" k="143" />
+<hkern g1="uni1EA6" g2="quotesingle" k="143" />
+<hkern g1="uni1EA6" g2="C" k="41" />
+<hkern g1="uni1EA6" g2="G" k="41" />
+<hkern g1="uni1EA6" g2="J" k="-266" />
+<hkern g1="uni1EA6" g2="O" k="41" />
+<hkern g1="uni1EA6" g2="Q" k="41" />
+<hkern g1="uni1EA6" g2="T" k="143" />
+<hkern g1="uni1EA6" g2="V" k="82" />
+<hkern g1="uni1EA6" g2="W" k="82" />
+<hkern g1="uni1EA6" g2="Y" k="123" />
+<hkern g1="uni1EA6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA6" g2="Ograve" k="41" />
+<hkern g1="uni1EA6" g2="Oacute" k="41" />
+<hkern g1="uni1EA6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Otilde" k="41" />
+<hkern g1="uni1EA6" g2="Odieresis" k="41" />
+<hkern g1="uni1EA6" g2="Oslash" k="41" />
+<hkern g1="uni1EA6" g2="Yacute" k="123" />
+<hkern g1="uni1EA6" g2="Cacute" k="41" />
+<hkern g1="uni1EA6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Cdot" k="41" />
+<hkern g1="uni1EA6" g2="Ccaron" k="41" />
+<hkern g1="uni1EA6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA6" g2="Gbreve" k="41" />
+<hkern g1="uni1EA6" g2="Gdot" k="41" />
+<hkern g1="uni1EA6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA6" g2="Omacron" k="41" />
+<hkern g1="uni1EA6" g2="Obreve" k="41" />
+<hkern g1="uni1EA6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA6" g2="OE" k="41" />
+<hkern g1="uni1EA6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA6" g2="Tcaron" k="143" />
+<hkern g1="uni1EA6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA6" g2="Wgrave" k="82" />
+<hkern g1="uni1EA6" g2="Wacute" k="82" />
+<hkern g1="uni1EA6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA6" g2="Ygrave" k="123" />
+<hkern g1="uni1EA6" g2="quoteright" k="143" />
+<hkern g1="uni1EA6" g2="quotedblright" k="143" />
+<hkern g1="uni1EA6" g2="Ohorn" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA7" g2="quotedbl" k="20" />
+<hkern g1="uni1EA7" g2="quotesingle" k="20" />
+<hkern g1="uni1EA7" g2="quoteright" k="20" />
+<hkern g1="uni1EA7" g2="quotedblright" k="20" />
+<hkern g1="uni1EA8" g2="quotedbl" k="143" />
+<hkern g1="uni1EA8" g2="quotesingle" k="143" />
+<hkern g1="uni1EA8" g2="C" k="41" />
+<hkern g1="uni1EA8" g2="G" k="41" />
+<hkern g1="uni1EA8" g2="J" k="-266" />
+<hkern g1="uni1EA8" g2="O" k="41" />
+<hkern g1="uni1EA8" g2="Q" k="41" />
+<hkern g1="uni1EA8" g2="T" k="143" />
+<hkern g1="uni1EA8" g2="V" k="82" />
+<hkern g1="uni1EA8" g2="W" k="82" />
+<hkern g1="uni1EA8" g2="Y" k="123" />
+<hkern g1="uni1EA8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EA8" g2="Ograve" k="41" />
+<hkern g1="uni1EA8" g2="Oacute" k="41" />
+<hkern g1="uni1EA8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Otilde" k="41" />
+<hkern g1="uni1EA8" g2="Odieresis" k="41" />
+<hkern g1="uni1EA8" g2="Oslash" k="41" />
+<hkern g1="uni1EA8" g2="Yacute" k="123" />
+<hkern g1="uni1EA8" g2="Cacute" k="41" />
+<hkern g1="uni1EA8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Cdot" k="41" />
+<hkern g1="uni1EA8" g2="Ccaron" k="41" />
+<hkern g1="uni1EA8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EA8" g2="Gbreve" k="41" />
+<hkern g1="uni1EA8" g2="Gdot" k="41" />
+<hkern g1="uni1EA8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EA8" g2="Omacron" k="41" />
+<hkern g1="uni1EA8" g2="Obreve" k="41" />
+<hkern g1="uni1EA8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EA8" g2="OE" k="41" />
+<hkern g1="uni1EA8" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EA8" g2="Tcaron" k="143" />
+<hkern g1="uni1EA8" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EA8" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EA8" g2="Ydieresis" k="123" />
+<hkern g1="uni1EA8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EA8" g2="Wgrave" k="82" />
+<hkern g1="uni1EA8" g2="Wacute" k="82" />
+<hkern g1="uni1EA8" g2="Wdieresis" k="82" />
+<hkern g1="uni1EA8" g2="Ygrave" k="123" />
+<hkern g1="uni1EA8" g2="quoteright" k="143" />
+<hkern g1="uni1EA8" g2="quotedblright" k="143" />
+<hkern g1="uni1EA8" g2="Ohorn" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EA8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EA8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EA8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EA8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EA8" g2="uni1EF4" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF6" k="123" />
+<hkern g1="uni1EA8" g2="uni1EF8" k="123" />
+<hkern g1="uni1EA8" g2="Tcedilla" k="143" />
+<hkern g1="uni1EA9" g2="quotedbl" k="20" />
+<hkern g1="uni1EA9" g2="quotesingle" k="20" />
+<hkern g1="uni1EA9" g2="quoteright" k="20" />
+<hkern g1="uni1EA9" g2="quotedblright" k="20" />
+<hkern g1="uni1EAA" g2="quotedbl" k="143" />
+<hkern g1="uni1EAA" g2="quotesingle" k="143" />
+<hkern g1="uni1EAA" g2="C" k="41" />
+<hkern g1="uni1EAA" g2="G" k="41" />
+<hkern g1="uni1EAA" g2="J" k="-266" />
+<hkern g1="uni1EAA" g2="O" k="41" />
+<hkern g1="uni1EAA" g2="Q" k="41" />
+<hkern g1="uni1EAA" g2="T" k="143" />
+<hkern g1="uni1EAA" g2="V" k="82" />
+<hkern g1="uni1EAA" g2="W" k="82" />
+<hkern g1="uni1EAA" g2="Y" k="123" />
+<hkern g1="uni1EAA" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAA" g2="Ograve" k="41" />
+<hkern g1="uni1EAA" g2="Oacute" k="41" />
+<hkern g1="uni1EAA" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Otilde" k="41" />
+<hkern g1="uni1EAA" g2="Odieresis" k="41" />
+<hkern g1="uni1EAA" g2="Oslash" k="41" />
+<hkern g1="uni1EAA" g2="Yacute" k="123" />
+<hkern g1="uni1EAA" g2="Cacute" k="41" />
+<hkern g1="uni1EAA" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Cdot" k="41" />
+<hkern g1="uni1EAA" g2="Ccaron" k="41" />
+<hkern g1="uni1EAA" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAA" g2="Gbreve" k="41" />
+<hkern g1="uni1EAA" g2="Gdot" k="41" />
+<hkern g1="uni1EAA" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAA" g2="Omacron" k="41" />
+<hkern g1="uni1EAA" g2="Obreve" k="41" />
+<hkern g1="uni1EAA" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAA" g2="OE" k="41" />
+<hkern g1="uni1EAA" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAA" g2="Tcaron" k="143" />
+<hkern g1="uni1EAA" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAA" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAA" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAA" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAA" g2="Wgrave" k="82" />
+<hkern g1="uni1EAA" g2="Wacute" k="82" />
+<hkern g1="uni1EAA" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAA" g2="Ygrave" k="123" />
+<hkern g1="uni1EAA" g2="quoteright" k="143" />
+<hkern g1="uni1EAA" g2="quotedblright" k="143" />
+<hkern g1="uni1EAA" g2="Ohorn" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAA" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAA" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAA" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAA" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAA" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAA" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAA" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAB" g2="quotedbl" k="20" />
+<hkern g1="uni1EAB" g2="quotesingle" k="20" />
+<hkern g1="uni1EAB" g2="quoteright" k="20" />
+<hkern g1="uni1EAB" g2="quotedblright" k="20" />
+<hkern g1="uni1EAC" g2="quotedbl" k="143" />
+<hkern g1="uni1EAC" g2="quotesingle" k="143" />
+<hkern g1="uni1EAC" g2="C" k="41" />
+<hkern g1="uni1EAC" g2="G" k="41" />
+<hkern g1="uni1EAC" g2="J" k="-266" />
+<hkern g1="uni1EAC" g2="O" k="41" />
+<hkern g1="uni1EAC" g2="Q" k="41" />
+<hkern g1="uni1EAC" g2="T" k="143" />
+<hkern g1="uni1EAC" g2="V" k="82" />
+<hkern g1="uni1EAC" g2="W" k="82" />
+<hkern g1="uni1EAC" g2="Y" k="123" />
+<hkern g1="uni1EAC" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAC" g2="Ograve" k="41" />
+<hkern g1="uni1EAC" g2="Oacute" k="41" />
+<hkern g1="uni1EAC" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Otilde" k="41" />
+<hkern g1="uni1EAC" g2="Odieresis" k="41" />
+<hkern g1="uni1EAC" g2="Oslash" k="41" />
+<hkern g1="uni1EAC" g2="Yacute" k="123" />
+<hkern g1="uni1EAC" g2="Cacute" k="41" />
+<hkern g1="uni1EAC" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Cdot" k="41" />
+<hkern g1="uni1EAC" g2="Ccaron" k="41" />
+<hkern g1="uni1EAC" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAC" g2="Gbreve" k="41" />
+<hkern g1="uni1EAC" g2="Gdot" k="41" />
+<hkern g1="uni1EAC" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAC" g2="Omacron" k="41" />
+<hkern g1="uni1EAC" g2="Obreve" k="41" />
+<hkern g1="uni1EAC" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAC" g2="OE" k="41" />
+<hkern g1="uni1EAC" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAC" g2="Tcaron" k="143" />
+<hkern g1="uni1EAC" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAC" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAC" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAC" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAC" g2="Wgrave" k="82" />
+<hkern g1="uni1EAC" g2="Wacute" k="82" />
+<hkern g1="uni1EAC" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAC" g2="Ygrave" k="123" />
+<hkern g1="uni1EAC" g2="quoteright" k="143" />
+<hkern g1="uni1EAC" g2="quotedblright" k="143" />
+<hkern g1="uni1EAC" g2="Ohorn" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAC" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAC" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAC" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAC" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAC" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAC" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAC" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAD" g2="quotedbl" k="20" />
+<hkern g1="uni1EAD" g2="quotesingle" k="20" />
+<hkern g1="uni1EAD" g2="quoteright" k="20" />
+<hkern g1="uni1EAD" g2="quotedblright" k="20" />
+<hkern g1="uni1EAE" g2="quotedbl" k="143" />
+<hkern g1="uni1EAE" g2="quotesingle" k="143" />
+<hkern g1="uni1EAE" g2="C" k="41" />
+<hkern g1="uni1EAE" g2="G" k="41" />
+<hkern g1="uni1EAE" g2="J" k="-266" />
+<hkern g1="uni1EAE" g2="O" k="41" />
+<hkern g1="uni1EAE" g2="Q" k="41" />
+<hkern g1="uni1EAE" g2="T" k="143" />
+<hkern g1="uni1EAE" g2="V" k="82" />
+<hkern g1="uni1EAE" g2="W" k="82" />
+<hkern g1="uni1EAE" g2="Y" k="123" />
+<hkern g1="uni1EAE" g2="Ccedilla" k="41" />
+<hkern g1="uni1EAE" g2="Ograve" k="41" />
+<hkern g1="uni1EAE" g2="Oacute" k="41" />
+<hkern g1="uni1EAE" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Otilde" k="41" />
+<hkern g1="uni1EAE" g2="Odieresis" k="41" />
+<hkern g1="uni1EAE" g2="Oslash" k="41" />
+<hkern g1="uni1EAE" g2="Yacute" k="123" />
+<hkern g1="uni1EAE" g2="Cacute" k="41" />
+<hkern g1="uni1EAE" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Cdot" k="41" />
+<hkern g1="uni1EAE" g2="Ccaron" k="41" />
+<hkern g1="uni1EAE" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EAE" g2="Gbreve" k="41" />
+<hkern g1="uni1EAE" g2="Gdot" k="41" />
+<hkern g1="uni1EAE" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EAE" g2="Omacron" k="41" />
+<hkern g1="uni1EAE" g2="Obreve" k="41" />
+<hkern g1="uni1EAE" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EAE" g2="OE" k="41" />
+<hkern g1="uni1EAE" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EAE" g2="Tcaron" k="143" />
+<hkern g1="uni1EAE" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EAE" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EAE" g2="Ydieresis" k="123" />
+<hkern g1="uni1EAE" g2="Oslashacute" k="41" />
+<hkern g1="uni1EAE" g2="Wgrave" k="82" />
+<hkern g1="uni1EAE" g2="Wacute" k="82" />
+<hkern g1="uni1EAE" g2="Wdieresis" k="82" />
+<hkern g1="uni1EAE" g2="Ygrave" k="123" />
+<hkern g1="uni1EAE" g2="quoteright" k="143" />
+<hkern g1="uni1EAE" g2="quotedblright" k="143" />
+<hkern g1="uni1EAE" g2="Ohorn" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECC" k="41" />
+<hkern g1="uni1EAE" g2="uni1ECE" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED0" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED2" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED4" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED6" k="41" />
+<hkern g1="uni1EAE" g2="uni1ED8" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDA" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDC" k="41" />
+<hkern g1="uni1EAE" g2="uni1EDE" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE0" k="41" />
+<hkern g1="uni1EAE" g2="uni1EE2" k="41" />
+<hkern g1="uni1EAE" g2="uni1EF4" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF6" k="123" />
+<hkern g1="uni1EAE" g2="uni1EF8" k="123" />
+<hkern g1="uni1EAE" g2="Tcedilla" k="143" />
+<hkern g1="uni1EAF" g2="quotedbl" k="20" />
+<hkern g1="uni1EAF" g2="quotesingle" k="20" />
+<hkern g1="uni1EAF" g2="quoteright" k="20" />
+<hkern g1="uni1EAF" g2="quotedblright" k="20" />
+<hkern g1="uni1EB0" g2="quotedbl" k="143" />
+<hkern g1="uni1EB0" g2="quotesingle" k="143" />
+<hkern g1="uni1EB0" g2="C" k="41" />
+<hkern g1="uni1EB0" g2="G" k="41" />
+<hkern g1="uni1EB0" g2="J" k="-266" />
+<hkern g1="uni1EB0" g2="O" k="41" />
+<hkern g1="uni1EB0" g2="Q" k="41" />
+<hkern g1="uni1EB0" g2="T" k="143" />
+<hkern g1="uni1EB0" g2="V" k="82" />
+<hkern g1="uni1EB0" g2="W" k="82" />
+<hkern g1="uni1EB0" g2="Y" k="123" />
+<hkern g1="uni1EB0" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB0" g2="Ograve" k="41" />
+<hkern g1="uni1EB0" g2="Oacute" k="41" />
+<hkern g1="uni1EB0" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Otilde" k="41" />
+<hkern g1="uni1EB0" g2="Odieresis" k="41" />
+<hkern g1="uni1EB0" g2="Oslash" k="41" />
+<hkern g1="uni1EB0" g2="Yacute" k="123" />
+<hkern g1="uni1EB0" g2="Cacute" k="41" />
+<hkern g1="uni1EB0" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Cdot" k="41" />
+<hkern g1="uni1EB0" g2="Ccaron" k="41" />
+<hkern g1="uni1EB0" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB0" g2="Gbreve" k="41" />
+<hkern g1="uni1EB0" g2="Gdot" k="41" />
+<hkern g1="uni1EB0" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB0" g2="Omacron" k="41" />
+<hkern g1="uni1EB0" g2="Obreve" k="41" />
+<hkern g1="uni1EB0" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB0" g2="OE" k="41" />
+<hkern g1="uni1EB0" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB0" g2="Tcaron" k="143" />
+<hkern g1="uni1EB0" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB0" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB0" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB0" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB0" g2="Wgrave" k="82" />
+<hkern g1="uni1EB0" g2="Wacute" k="82" />
+<hkern g1="uni1EB0" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB0" g2="Ygrave" k="123" />
+<hkern g1="uni1EB0" g2="quoteright" k="143" />
+<hkern g1="uni1EB0" g2="quotedblright" k="143" />
+<hkern g1="uni1EB0" g2="Ohorn" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB0" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB0" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB0" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB0" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB0" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB0" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB0" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB1" g2="quotedbl" k="20" />
+<hkern g1="uni1EB1" g2="quotesingle" k="20" />
+<hkern g1="uni1EB1" g2="quoteright" k="20" />
+<hkern g1="uni1EB1" g2="quotedblright" k="20" />
+<hkern g1="uni1EB2" g2="quotedbl" k="143" />
+<hkern g1="uni1EB2" g2="quotesingle" k="143" />
+<hkern g1="uni1EB2" g2="C" k="41" />
+<hkern g1="uni1EB2" g2="G" k="41" />
+<hkern g1="uni1EB2" g2="J" k="-266" />
+<hkern g1="uni1EB2" g2="O" k="41" />
+<hkern g1="uni1EB2" g2="Q" k="41" />
+<hkern g1="uni1EB2" g2="T" k="143" />
+<hkern g1="uni1EB2" g2="V" k="82" />
+<hkern g1="uni1EB2" g2="W" k="82" />
+<hkern g1="uni1EB2" g2="Y" k="123" />
+<hkern g1="uni1EB2" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB2" g2="Ograve" k="41" />
+<hkern g1="uni1EB2" g2="Oacute" k="41" />
+<hkern g1="uni1EB2" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Otilde" k="41" />
+<hkern g1="uni1EB2" g2="Odieresis" k="41" />
+<hkern g1="uni1EB2" g2="Oslash" k="41" />
+<hkern g1="uni1EB2" g2="Yacute" k="123" />
+<hkern g1="uni1EB2" g2="Cacute" k="41" />
+<hkern g1="uni1EB2" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Cdot" k="41" />
+<hkern g1="uni1EB2" g2="Ccaron" k="41" />
+<hkern g1="uni1EB2" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB2" g2="Gbreve" k="41" />
+<hkern g1="uni1EB2" g2="Gdot" k="41" />
+<hkern g1="uni1EB2" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB2" g2="Omacron" k="41" />
+<hkern g1="uni1EB2" g2="Obreve" k="41" />
+<hkern g1="uni1EB2" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB2" g2="OE" k="41" />
+<hkern g1="uni1EB2" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB2" g2="Tcaron" k="143" />
+<hkern g1="uni1EB2" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB2" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB2" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB2" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB2" g2="Wgrave" k="82" />
+<hkern g1="uni1EB2" g2="Wacute" k="82" />
+<hkern g1="uni1EB2" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB2" g2="Ygrave" k="123" />
+<hkern g1="uni1EB2" g2="quoteright" k="143" />
+<hkern g1="uni1EB2" g2="quotedblright" k="143" />
+<hkern g1="uni1EB2" g2="Ohorn" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB2" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB2" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB2" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB2" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB2" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB2" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB2" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB3" g2="quotedbl" k="20" />
+<hkern g1="uni1EB3" g2="quotesingle" k="20" />
+<hkern g1="uni1EB3" g2="quoteright" k="20" />
+<hkern g1="uni1EB3" g2="quotedblright" k="20" />
+<hkern g1="uni1EB4" g2="quotedbl" k="143" />
+<hkern g1="uni1EB4" g2="quotesingle" k="143" />
+<hkern g1="uni1EB4" g2="C" k="41" />
+<hkern g1="uni1EB4" g2="G" k="41" />
+<hkern g1="uni1EB4" g2="J" k="-266" />
+<hkern g1="uni1EB4" g2="O" k="41" />
+<hkern g1="uni1EB4" g2="Q" k="41" />
+<hkern g1="uni1EB4" g2="T" k="143" />
+<hkern g1="uni1EB4" g2="V" k="82" />
+<hkern g1="uni1EB4" g2="W" k="82" />
+<hkern g1="uni1EB4" g2="Y" k="123" />
+<hkern g1="uni1EB4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB4" g2="Ograve" k="41" />
+<hkern g1="uni1EB4" g2="Oacute" k="41" />
+<hkern g1="uni1EB4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Otilde" k="41" />
+<hkern g1="uni1EB4" g2="Odieresis" k="41" />
+<hkern g1="uni1EB4" g2="Oslash" k="41" />
+<hkern g1="uni1EB4" g2="Yacute" k="123" />
+<hkern g1="uni1EB4" g2="Cacute" k="41" />
+<hkern g1="uni1EB4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Cdot" k="41" />
+<hkern g1="uni1EB4" g2="Ccaron" k="41" />
+<hkern g1="uni1EB4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB4" g2="Gbreve" k="41" />
+<hkern g1="uni1EB4" g2="Gdot" k="41" />
+<hkern g1="uni1EB4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB4" g2="Omacron" k="41" />
+<hkern g1="uni1EB4" g2="Obreve" k="41" />
+<hkern g1="uni1EB4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB4" g2="OE" k="41" />
+<hkern g1="uni1EB4" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB4" g2="Tcaron" k="143" />
+<hkern g1="uni1EB4" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB4" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB4" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB4" g2="Wgrave" k="82" />
+<hkern g1="uni1EB4" g2="Wacute" k="82" />
+<hkern g1="uni1EB4" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB4" g2="Ygrave" k="123" />
+<hkern g1="uni1EB4" g2="quoteright" k="143" />
+<hkern g1="uni1EB4" g2="quotedblright" k="143" />
+<hkern g1="uni1EB4" g2="Ohorn" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB4" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB4" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB4" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB5" g2="quotedbl" k="20" />
+<hkern g1="uni1EB5" g2="quotesingle" k="20" />
+<hkern g1="uni1EB5" g2="quoteright" k="20" />
+<hkern g1="uni1EB5" g2="quotedblright" k="20" />
+<hkern g1="uni1EB6" g2="quotedbl" k="143" />
+<hkern g1="uni1EB6" g2="quotesingle" k="143" />
+<hkern g1="uni1EB6" g2="C" k="41" />
+<hkern g1="uni1EB6" g2="G" k="41" />
+<hkern g1="uni1EB6" g2="J" k="-266" />
+<hkern g1="uni1EB6" g2="O" k="41" />
+<hkern g1="uni1EB6" g2="Q" k="41" />
+<hkern g1="uni1EB6" g2="T" k="143" />
+<hkern g1="uni1EB6" g2="V" k="82" />
+<hkern g1="uni1EB6" g2="W" k="82" />
+<hkern g1="uni1EB6" g2="Y" k="123" />
+<hkern g1="uni1EB6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EB6" g2="Ograve" k="41" />
+<hkern g1="uni1EB6" g2="Oacute" k="41" />
+<hkern g1="uni1EB6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Otilde" k="41" />
+<hkern g1="uni1EB6" g2="Odieresis" k="41" />
+<hkern g1="uni1EB6" g2="Oslash" k="41" />
+<hkern g1="uni1EB6" g2="Yacute" k="123" />
+<hkern g1="uni1EB6" g2="Cacute" k="41" />
+<hkern g1="uni1EB6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Cdot" k="41" />
+<hkern g1="uni1EB6" g2="Ccaron" k="41" />
+<hkern g1="uni1EB6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EB6" g2="Gbreve" k="41" />
+<hkern g1="uni1EB6" g2="Gdot" k="41" />
+<hkern g1="uni1EB6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EB6" g2="Omacron" k="41" />
+<hkern g1="uni1EB6" g2="Obreve" k="41" />
+<hkern g1="uni1EB6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EB6" g2="OE" k="41" />
+<hkern g1="uni1EB6" g2="Tcommaaccent" k="143" />
+<hkern g1="uni1EB6" g2="Tcaron" k="143" />
+<hkern g1="uni1EB6" g2="Wcircumflex" k="82" />
+<hkern g1="uni1EB6" g2="Ycircumflex" k="123" />
+<hkern g1="uni1EB6" g2="Ydieresis" k="123" />
+<hkern g1="uni1EB6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EB6" g2="Wgrave" k="82" />
+<hkern g1="uni1EB6" g2="Wacute" k="82" />
+<hkern g1="uni1EB6" g2="Wdieresis" k="82" />
+<hkern g1="uni1EB6" g2="Ygrave" k="123" />
+<hkern g1="uni1EB6" g2="quoteright" k="143" />
+<hkern g1="uni1EB6" g2="quotedblright" k="143" />
+<hkern g1="uni1EB6" g2="Ohorn" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EB6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EB6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EB6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EB6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EB6" g2="uni1EF4" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF6" k="123" />
+<hkern g1="uni1EB6" g2="uni1EF8" k="123" />
+<hkern g1="uni1EB6" g2="Tcedilla" k="143" />
+<hkern g1="uni1EB7" g2="quotedbl" k="20" />
+<hkern g1="uni1EB7" g2="quotesingle" k="20" />
+<hkern g1="uni1EB7" g2="quoteright" k="20" />
+<hkern g1="uni1EB7" g2="quotedblright" k="20" />
+<hkern g1="uni1EB8" g2="J" k="-123" />
+<hkern g1="uni1EB9" g2="quotedbl" k="20" />
+<hkern g1="uni1EB9" g2="quotesingle" k="20" />
+<hkern g1="uni1EB9" g2="v" k="41" />
+<hkern g1="uni1EB9" g2="w" k="41" />
+<hkern g1="uni1EB9" g2="x" k="41" />
+<hkern g1="uni1EB9" g2="y" k="41" />
+<hkern g1="uni1EB9" g2="z" k="20" />
+<hkern g1="uni1EB9" g2="yacute" k="41" />
+<hkern g1="uni1EB9" g2="wcircumflex" k="41" />
+<hkern g1="uni1EB9" g2="zacute" k="20" />
+<hkern g1="uni1EB9" g2="zdotaccent" k="20" />
+<hkern g1="uni1EB9" g2="zcaron" k="20" />
+<hkern g1="uni1EB9" g2="wgrave" k="41" />
+<hkern g1="uni1EB9" g2="wacute" k="41" />
+<hkern g1="uni1EB9" g2="quoteright" k="20" />
+<hkern g1="uni1EB9" g2="quotedblright" k="20" />
+<hkern g1="uni1EB9" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBA" g2="J" k="-123" />
+<hkern g1="uni1EBB" g2="quotedbl" k="20" />
+<hkern g1="uni1EBB" g2="quotesingle" k="20" />
+<hkern g1="uni1EBB" g2="v" k="41" />
+<hkern g1="uni1EBB" g2="w" k="41" />
+<hkern g1="uni1EBB" g2="x" k="41" />
+<hkern g1="uni1EBB" g2="y" k="41" />
+<hkern g1="uni1EBB" g2="z" k="20" />
+<hkern g1="uni1EBB" g2="yacute" k="41" />
+<hkern g1="uni1EBB" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBB" g2="zacute" k="20" />
+<hkern g1="uni1EBB" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBB" g2="zcaron" k="20" />
+<hkern g1="uni1EBB" g2="wgrave" k="41" />
+<hkern g1="uni1EBB" g2="wacute" k="41" />
+<hkern g1="uni1EBB" g2="quoteright" k="20" />
+<hkern g1="uni1EBB" g2="quotedblright" k="20" />
+<hkern g1="uni1EBB" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBC" g2="J" k="-123" />
+<hkern g1="uni1EBD" g2="quotedbl" k="20" />
+<hkern g1="uni1EBD" g2="quotesingle" k="20" />
+<hkern g1="uni1EBD" g2="v" k="41" />
+<hkern g1="uni1EBD" g2="w" k="41" />
+<hkern g1="uni1EBD" g2="x" k="41" />
+<hkern g1="uni1EBD" g2="y" k="41" />
+<hkern g1="uni1EBD" g2="z" k="20" />
+<hkern g1="uni1EBD" g2="yacute" k="41" />
+<hkern g1="uni1EBD" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBD" g2="zacute" k="20" />
+<hkern g1="uni1EBD" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBD" g2="zcaron" k="20" />
+<hkern g1="uni1EBD" g2="wgrave" k="41" />
+<hkern g1="uni1EBD" g2="wacute" k="41" />
+<hkern g1="uni1EBD" g2="quoteright" k="20" />
+<hkern g1="uni1EBD" g2="quotedblright" k="20" />
+<hkern g1="uni1EBD" g2="uni1EF5" k="41" />
+<hkern g1="uni1EBE" g2="J" k="-123" />
+<hkern g1="uni1EBF" g2="quotedbl" k="20" />
+<hkern g1="uni1EBF" g2="quotesingle" k="20" />
+<hkern g1="uni1EBF" g2="v" k="41" />
+<hkern g1="uni1EBF" g2="w" k="41" />
+<hkern g1="uni1EBF" g2="x" k="41" />
+<hkern g1="uni1EBF" g2="y" k="41" />
+<hkern g1="uni1EBF" g2="z" k="20" />
+<hkern g1="uni1EBF" g2="yacute" k="41" />
+<hkern g1="uni1EBF" g2="wcircumflex" k="41" />
+<hkern g1="uni1EBF" g2="zacute" k="20" />
+<hkern g1="uni1EBF" g2="zdotaccent" k="20" />
+<hkern g1="uni1EBF" g2="zcaron" k="20" />
+<hkern g1="uni1EBF" g2="wgrave" k="41" />
+<hkern g1="uni1EBF" g2="wacute" k="41" />
+<hkern g1="uni1EBF" g2="quoteright" k="20" />
+<hkern g1="uni1EBF" g2="quotedblright" k="20" />
+<hkern g1="uni1EBF" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC0" g2="J" k="-123" />
+<hkern g1="uni1EC1" g2="quotedbl" k="20" />
+<hkern g1="uni1EC1" g2="quotesingle" k="20" />
+<hkern g1="uni1EC1" g2="v" k="41" />
+<hkern g1="uni1EC1" g2="w" k="41" />
+<hkern g1="uni1EC1" g2="x" k="41" />
+<hkern g1="uni1EC1" g2="y" k="41" />
+<hkern g1="uni1EC1" g2="z" k="20" />
+<hkern g1="uni1EC1" g2="yacute" k="41" />
+<hkern g1="uni1EC1" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC1" g2="zacute" k="20" />
+<hkern g1="uni1EC1" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC1" g2="zcaron" k="20" />
+<hkern g1="uni1EC1" g2="wgrave" k="41" />
+<hkern g1="uni1EC1" g2="wacute" k="41" />
+<hkern g1="uni1EC1" g2="quoteright" k="20" />
+<hkern g1="uni1EC1" g2="quotedblright" k="20" />
+<hkern g1="uni1EC1" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC2" g2="J" k="-123" />
+<hkern g1="uni1EC3" g2="quotedbl" k="20" />
+<hkern g1="uni1EC3" g2="quotesingle" k="20" />
+<hkern g1="uni1EC3" g2="v" k="41" />
+<hkern g1="uni1EC3" g2="w" k="41" />
+<hkern g1="uni1EC3" g2="x" k="41" />
+<hkern g1="uni1EC3" g2="y" k="41" />
+<hkern g1="uni1EC3" g2="z" k="20" />
+<hkern g1="uni1EC3" g2="yacute" k="41" />
+<hkern g1="uni1EC3" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC3" g2="zacute" k="20" />
+<hkern g1="uni1EC3" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC3" g2="zcaron" k="20" />
+<hkern g1="uni1EC3" g2="wgrave" k="41" />
+<hkern g1="uni1EC3" g2="wacute" k="41" />
+<hkern g1="uni1EC3" g2="quoteright" k="20" />
+<hkern g1="uni1EC3" g2="quotedblright" k="20" />
+<hkern g1="uni1EC3" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC4" g2="J" k="-123" />
+<hkern g1="uni1EC5" g2="quotedbl" k="20" />
+<hkern g1="uni1EC5" g2="quotesingle" k="20" />
+<hkern g1="uni1EC5" g2="v" k="41" />
+<hkern g1="uni1EC5" g2="w" k="41" />
+<hkern g1="uni1EC5" g2="x" k="41" />
+<hkern g1="uni1EC5" g2="y" k="41" />
+<hkern g1="uni1EC5" g2="z" k="20" />
+<hkern g1="uni1EC5" g2="yacute" k="41" />
+<hkern g1="uni1EC5" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC5" g2="zacute" k="20" />
+<hkern g1="uni1EC5" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC5" g2="zcaron" k="20" />
+<hkern g1="uni1EC5" g2="wgrave" k="41" />
+<hkern g1="uni1EC5" g2="wacute" k="41" />
+<hkern g1="uni1EC5" g2="quoteright" k="20" />
+<hkern g1="uni1EC5" g2="quotedblright" k="20" />
+<hkern g1="uni1EC5" g2="uni1EF5" k="41" />
+<hkern g1="uni1EC6" g2="J" k="-123" />
+<hkern g1="uni1EC7" g2="quotedbl" k="20" />
+<hkern g1="uni1EC7" g2="quotesingle" k="20" />
+<hkern g1="uni1EC7" g2="v" k="41" />
+<hkern g1="uni1EC7" g2="w" k="41" />
+<hkern g1="uni1EC7" g2="x" k="41" />
+<hkern g1="uni1EC7" g2="y" k="41" />
+<hkern g1="uni1EC7" g2="z" k="20" />
+<hkern g1="uni1EC7" g2="yacute" k="41" />
+<hkern g1="uni1EC7" g2="wcircumflex" k="41" />
+<hkern g1="uni1EC7" g2="zacute" k="20" />
+<hkern g1="uni1EC7" g2="zdotaccent" k="20" />
+<hkern g1="uni1EC7" g2="zcaron" k="20" />
+<hkern g1="uni1EC7" g2="wgrave" k="41" />
+<hkern g1="uni1EC7" g2="wacute" k="41" />
+<hkern g1="uni1EC7" g2="quoteright" k="20" />
+<hkern g1="uni1EC7" g2="quotedblright" k="20" />
+<hkern g1="uni1EC7" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECC" g2="comma" k="82" />
+<hkern g1="uni1ECC" g2="period" k="82" />
+<hkern g1="uni1ECC" g2="A" k="41" />
+<hkern g1="uni1ECC" g2="T" k="61" />
+<hkern g1="uni1ECC" g2="V" k="20" />
+<hkern g1="uni1ECC" g2="W" k="20" />
+<hkern g1="uni1ECC" g2="X" k="41" />
+<hkern g1="uni1ECC" g2="Y" k="20" />
+<hkern g1="uni1ECC" g2="Z" k="20" />
+<hkern g1="uni1ECC" g2="Agrave" k="41" />
+<hkern g1="uni1ECC" g2="Aacute" k="41" />
+<hkern g1="uni1ECC" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECC" g2="Atilde" k="41" />
+<hkern g1="uni1ECC" g2="Adieresis" k="41" />
+<hkern g1="uni1ECC" g2="Aring" k="41" />
+<hkern g1="uni1ECC" g2="Yacute" k="20" />
+<hkern g1="uni1ECC" g2="Amacron" k="41" />
+<hkern g1="uni1ECC" g2="Abreve" k="41" />
+<hkern g1="uni1ECC" g2="Aogonek" k="41" />
+<hkern g1="uni1ECC" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECC" g2="Tcaron" k="61" />
+<hkern g1="uni1ECC" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECC" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECC" g2="Zacute" k="20" />
+<hkern g1="uni1ECC" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECC" g2="Zcaron" k="20" />
+<hkern g1="uni1ECC" g2="Aringacute" k="41" />
+<hkern g1="uni1ECC" g2="afii10054" k="20" />
+<hkern g1="uni1ECC" g2="Wgrave" k="20" />
+<hkern g1="uni1ECC" g2="Wacute" k="20" />
+<hkern g1="uni1ECC" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECC" g2="Ygrave" k="20" />
+<hkern g1="uni1ECC" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECC" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECC" g2="uni1E00" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECC" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECC" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECC" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECC" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECC" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECD" g2="quotedbl" k="20" />
+<hkern g1="uni1ECD" g2="quotesingle" k="20" />
+<hkern g1="uni1ECD" g2="v" k="41" />
+<hkern g1="uni1ECD" g2="w" k="41" />
+<hkern g1="uni1ECD" g2="x" k="41" />
+<hkern g1="uni1ECD" g2="y" k="41" />
+<hkern g1="uni1ECD" g2="z" k="20" />
+<hkern g1="uni1ECD" g2="yacute" k="41" />
+<hkern g1="uni1ECD" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECD" g2="zacute" k="20" />
+<hkern g1="uni1ECD" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECD" g2="zcaron" k="20" />
+<hkern g1="uni1ECD" g2="wgrave" k="41" />
+<hkern g1="uni1ECD" g2="wacute" k="41" />
+<hkern g1="uni1ECD" g2="quoteright" k="20" />
+<hkern g1="uni1ECD" g2="quotedblright" k="20" />
+<hkern g1="uni1ECD" g2="uni1EF5" k="41" />
+<hkern g1="uni1ECE" g2="comma" k="82" />
+<hkern g1="uni1ECE" g2="period" k="82" />
+<hkern g1="uni1ECE" g2="A" k="41" />
+<hkern g1="uni1ECE" g2="T" k="61" />
+<hkern g1="uni1ECE" g2="V" k="20" />
+<hkern g1="uni1ECE" g2="W" k="20" />
+<hkern g1="uni1ECE" g2="X" k="41" />
+<hkern g1="uni1ECE" g2="Y" k="20" />
+<hkern g1="uni1ECE" g2="Z" k="20" />
+<hkern g1="uni1ECE" g2="Agrave" k="41" />
+<hkern g1="uni1ECE" g2="Aacute" k="41" />
+<hkern g1="uni1ECE" g2="Acircumflex" k="41" />
+<hkern g1="uni1ECE" g2="Atilde" k="41" />
+<hkern g1="uni1ECE" g2="Adieresis" k="41" />
+<hkern g1="uni1ECE" g2="Aring" k="41" />
+<hkern g1="uni1ECE" g2="Yacute" k="20" />
+<hkern g1="uni1ECE" g2="Amacron" k="41" />
+<hkern g1="uni1ECE" g2="Abreve" k="41" />
+<hkern g1="uni1ECE" g2="Aogonek" k="41" />
+<hkern g1="uni1ECE" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ECE" g2="Tcaron" k="61" />
+<hkern g1="uni1ECE" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ECE" g2="Ydieresis" k="20" />
+<hkern g1="uni1ECE" g2="Zacute" k="20" />
+<hkern g1="uni1ECE" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ECE" g2="Zcaron" k="20" />
+<hkern g1="uni1ECE" g2="Aringacute" k="41" />
+<hkern g1="uni1ECE" g2="afii10054" k="20" />
+<hkern g1="uni1ECE" g2="Wgrave" k="20" />
+<hkern g1="uni1ECE" g2="Wacute" k="20" />
+<hkern g1="uni1ECE" g2="Wdieresis" k="20" />
+<hkern g1="uni1ECE" g2="Ygrave" k="20" />
+<hkern g1="uni1ECE" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ECE" g2="quotedblbase" k="82" />
+<hkern g1="uni1ECE" g2="uni1E00" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EA8" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAA" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAC" k="41" />
+<hkern g1="uni1ECE" g2="uni1EAE" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB0" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB2" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB4" k="41" />
+<hkern g1="uni1ECE" g2="uni1EB6" k="41" />
+<hkern g1="uni1ECE" g2="uni1EF4" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF6" k="20" />
+<hkern g1="uni1ECE" g2="uni1EF8" k="20" />
+<hkern g1="uni1ECE" g2="Tcedilla" k="61" />
+<hkern g1="uni1ECF" g2="quotedbl" k="20" />
+<hkern g1="uni1ECF" g2="quotesingle" k="20" />
+<hkern g1="uni1ECF" g2="v" k="41" />
+<hkern g1="uni1ECF" g2="w" k="41" />
+<hkern g1="uni1ECF" g2="x" k="41" />
+<hkern g1="uni1ECF" g2="y" k="41" />
+<hkern g1="uni1ECF" g2="z" k="20" />
+<hkern g1="uni1ECF" g2="yacute" k="41" />
+<hkern g1="uni1ECF" g2="wcircumflex" k="41" />
+<hkern g1="uni1ECF" g2="zacute" k="20" />
+<hkern g1="uni1ECF" g2="zdotaccent" k="20" />
+<hkern g1="uni1ECF" g2="zcaron" k="20" />
+<hkern g1="uni1ECF" g2="wgrave" k="41" />
+<hkern g1="uni1ECF" g2="wacute" k="41" />
+<hkern g1="uni1ECF" g2="quoteright" k="20" />
+<hkern g1="uni1ECF" g2="quotedblright" k="20" />
+<hkern g1="uni1ECF" g2="uni1EF5" k="41" />
+<hkern g1="uni1ED0" g2="comma" k="82" />
+<hkern g1="uni1ED0" g2="period" k="82" />
+<hkern g1="uni1ED0" g2="A" k="41" />
+<hkern g1="uni1ED0" g2="T" k="61" />
+<hkern g1="uni1ED0" g2="V" k="20" />
+<hkern g1="uni1ED0" g2="W" k="20" />
+<hkern g1="uni1ED0" g2="X" k="41" />
+<hkern g1="uni1ED0" g2="Y" k="20" />
+<hkern g1="uni1ED0" g2="Z" k="20" />
+<hkern g1="uni1ED0" g2="Agrave" k="41" />
+<hkern g1="uni1ED0" g2="Aacute" k="41" />
+<hkern g1="uni1ED0" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED0" g2="Atilde" k="41" />
+<hkern g1="uni1ED0" g2="Adieresis" k="41" />
+<hkern g1="uni1ED0" g2="Aring" k="41" />
+<hkern g1="uni1ED0" g2="Yacute" k="20" />
+<hkern g1="uni1ED0" g2="Amacron" k="41" />
+<hkern g1="uni1ED0" g2="Abreve" k="41" />
+<hkern g1="uni1ED0" g2="Aogonek" k="41" />
+<hkern g1="uni1ED0" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED0" g2="Tcaron" k="61" />
+<hkern g1="uni1ED0" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED0" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED0" g2="Zacute" k="20" />
+<hkern g1="uni1ED0" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED0" g2="Zcaron" k="20" />
+<hkern g1="uni1ED0" g2="Aringacute" k="41" />
+<hkern g1="uni1ED0" g2="afii10054" k="20" />
+<hkern g1="uni1ED0" g2="Wgrave" k="20" />
+<hkern g1="uni1ED0" g2="Wacute" k="20" />
+<hkern g1="uni1ED0" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED0" g2="Ygrave" k="20" />
+<hkern g1="uni1ED0" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED0" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED0" g2="uni1E00" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED0" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED0" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED0" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED0" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED0" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED2" g2="comma" k="82" />
+<hkern g1="uni1ED2" g2="period" k="82" />
+<hkern g1="uni1ED2" g2="A" k="41" />
+<hkern g1="uni1ED2" g2="T" k="61" />
+<hkern g1="uni1ED2" g2="V" k="20" />
+<hkern g1="uni1ED2" g2="W" k="20" />
+<hkern g1="uni1ED2" g2="X" k="41" />
+<hkern g1="uni1ED2" g2="Y" k="20" />
+<hkern g1="uni1ED2" g2="Z" k="20" />
+<hkern g1="uni1ED2" g2="Agrave" k="41" />
+<hkern g1="uni1ED2" g2="Aacute" k="41" />
+<hkern g1="uni1ED2" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED2" g2="Atilde" k="41" />
+<hkern g1="uni1ED2" g2="Adieresis" k="41" />
+<hkern g1="uni1ED2" g2="Aring" k="41" />
+<hkern g1="uni1ED2" g2="Yacute" k="20" />
+<hkern g1="uni1ED2" g2="Amacron" k="41" />
+<hkern g1="uni1ED2" g2="Abreve" k="41" />
+<hkern g1="uni1ED2" g2="Aogonek" k="41" />
+<hkern g1="uni1ED2" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED2" g2="Tcaron" k="61" />
+<hkern g1="uni1ED2" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED2" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED2" g2="Zacute" k="20" />
+<hkern g1="uni1ED2" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED2" g2="Zcaron" k="20" />
+<hkern g1="uni1ED2" g2="Aringacute" k="41" />
+<hkern g1="uni1ED2" g2="afii10054" k="20" />
+<hkern g1="uni1ED2" g2="Wgrave" k="20" />
+<hkern g1="uni1ED2" g2="Wacute" k="20" />
+<hkern g1="uni1ED2" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED2" g2="Ygrave" k="20" />
+<hkern g1="uni1ED2" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED2" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED2" g2="uni1E00" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED2" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED2" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED2" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED2" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED2" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED4" g2="comma" k="82" />
+<hkern g1="uni1ED4" g2="period" k="82" />
+<hkern g1="uni1ED4" g2="A" k="41" />
+<hkern g1="uni1ED4" g2="T" k="61" />
+<hkern g1="uni1ED4" g2="V" k="20" />
+<hkern g1="uni1ED4" g2="W" k="20" />
+<hkern g1="uni1ED4" g2="X" k="41" />
+<hkern g1="uni1ED4" g2="Y" k="20" />
+<hkern g1="uni1ED4" g2="Z" k="20" />
+<hkern g1="uni1ED4" g2="Agrave" k="41" />
+<hkern g1="uni1ED4" g2="Aacute" k="41" />
+<hkern g1="uni1ED4" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED4" g2="Atilde" k="41" />
+<hkern g1="uni1ED4" g2="Adieresis" k="41" />
+<hkern g1="uni1ED4" g2="Aring" k="41" />
+<hkern g1="uni1ED4" g2="Yacute" k="20" />
+<hkern g1="uni1ED4" g2="Amacron" k="41" />
+<hkern g1="uni1ED4" g2="Abreve" k="41" />
+<hkern g1="uni1ED4" g2="Aogonek" k="41" />
+<hkern g1="uni1ED4" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED4" g2="Tcaron" k="61" />
+<hkern g1="uni1ED4" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED4" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED4" g2="Zacute" k="20" />
+<hkern g1="uni1ED4" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED4" g2="Zcaron" k="20" />
+<hkern g1="uni1ED4" g2="Aringacute" k="41" />
+<hkern g1="uni1ED4" g2="afii10054" k="20" />
+<hkern g1="uni1ED4" g2="Wgrave" k="20" />
+<hkern g1="uni1ED4" g2="Wacute" k="20" />
+<hkern g1="uni1ED4" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED4" g2="Ygrave" k="20" />
+<hkern g1="uni1ED4" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED4" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED4" g2="uni1E00" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED4" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED4" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED4" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED4" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED4" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED6" g2="comma" k="82" />
+<hkern g1="uni1ED6" g2="period" k="82" />
+<hkern g1="uni1ED6" g2="A" k="41" />
+<hkern g1="uni1ED6" g2="T" k="61" />
+<hkern g1="uni1ED6" g2="V" k="20" />
+<hkern g1="uni1ED6" g2="W" k="20" />
+<hkern g1="uni1ED6" g2="X" k="41" />
+<hkern g1="uni1ED6" g2="Y" k="20" />
+<hkern g1="uni1ED6" g2="Z" k="20" />
+<hkern g1="uni1ED6" g2="Agrave" k="41" />
+<hkern g1="uni1ED6" g2="Aacute" k="41" />
+<hkern g1="uni1ED6" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED6" g2="Atilde" k="41" />
+<hkern g1="uni1ED6" g2="Adieresis" k="41" />
+<hkern g1="uni1ED6" g2="Aring" k="41" />
+<hkern g1="uni1ED6" g2="Yacute" k="20" />
+<hkern g1="uni1ED6" g2="Amacron" k="41" />
+<hkern g1="uni1ED6" g2="Abreve" k="41" />
+<hkern g1="uni1ED6" g2="Aogonek" k="41" />
+<hkern g1="uni1ED6" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED6" g2="Tcaron" k="61" />
+<hkern g1="uni1ED6" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED6" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED6" g2="Zacute" k="20" />
+<hkern g1="uni1ED6" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED6" g2="Zcaron" k="20" />
+<hkern g1="uni1ED6" g2="Aringacute" k="41" />
+<hkern g1="uni1ED6" g2="afii10054" k="20" />
+<hkern g1="uni1ED6" g2="Wgrave" k="20" />
+<hkern g1="uni1ED6" g2="Wacute" k="20" />
+<hkern g1="uni1ED6" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED6" g2="Ygrave" k="20" />
+<hkern g1="uni1ED6" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED6" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED6" g2="uni1E00" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED6" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED6" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED6" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED6" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED6" g2="Tcedilla" k="61" />
+<hkern g1="uni1ED8" g2="comma" k="82" />
+<hkern g1="uni1ED8" g2="period" k="82" />
+<hkern g1="uni1ED8" g2="A" k="41" />
+<hkern g1="uni1ED8" g2="T" k="61" />
+<hkern g1="uni1ED8" g2="V" k="20" />
+<hkern g1="uni1ED8" g2="W" k="20" />
+<hkern g1="uni1ED8" g2="X" k="41" />
+<hkern g1="uni1ED8" g2="Y" k="20" />
+<hkern g1="uni1ED8" g2="Z" k="20" />
+<hkern g1="uni1ED8" g2="Agrave" k="41" />
+<hkern g1="uni1ED8" g2="Aacute" k="41" />
+<hkern g1="uni1ED8" g2="Acircumflex" k="41" />
+<hkern g1="uni1ED8" g2="Atilde" k="41" />
+<hkern g1="uni1ED8" g2="Adieresis" k="41" />
+<hkern g1="uni1ED8" g2="Aring" k="41" />
+<hkern g1="uni1ED8" g2="Yacute" k="20" />
+<hkern g1="uni1ED8" g2="Amacron" k="41" />
+<hkern g1="uni1ED8" g2="Abreve" k="41" />
+<hkern g1="uni1ED8" g2="Aogonek" k="41" />
+<hkern g1="uni1ED8" g2="Tcommaaccent" k="61" />
+<hkern g1="uni1ED8" g2="Tcaron" k="61" />
+<hkern g1="uni1ED8" g2="Wcircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ycircumflex" k="20" />
+<hkern g1="uni1ED8" g2="Ydieresis" k="20" />
+<hkern g1="uni1ED8" g2="Zacute" k="20" />
+<hkern g1="uni1ED8" g2="Zdotaccent" k="20" />
+<hkern g1="uni1ED8" g2="Zcaron" k="20" />
+<hkern g1="uni1ED8" g2="Aringacute" k="41" />
+<hkern g1="uni1ED8" g2="afii10054" k="20" />
+<hkern g1="uni1ED8" g2="Wgrave" k="20" />
+<hkern g1="uni1ED8" g2="Wacute" k="20" />
+<hkern g1="uni1ED8" g2="Wdieresis" k="20" />
+<hkern g1="uni1ED8" g2="Ygrave" k="20" />
+<hkern g1="uni1ED8" g2="quotesinglbase" k="82" />
+<hkern g1="uni1ED8" g2="quotedblbase" k="82" />
+<hkern g1="uni1ED8" g2="uni1E00" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EA8" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAA" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAC" k="41" />
+<hkern g1="uni1ED8" g2="uni1EAE" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB0" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB2" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB4" k="41" />
+<hkern g1="uni1ED8" g2="uni1EB6" k="41" />
+<hkern g1="uni1ED8" g2="uni1EF4" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF6" k="20" />
+<hkern g1="uni1ED8" g2="uni1EF8" k="20" />
+<hkern g1="uni1ED8" g2="Tcedilla" k="61" />
+<hkern g1="uni1EDB" g2="f" k="-82" />
+<hkern g1="uni1EDB" g2="t" k="-82" />
+<hkern g1="uni1EDB" g2="v" k="-102" />
+<hkern g1="uni1EDB" g2="w" k="-102" />
+<hkern g1="uni1EDB" g2="x" k="-102" />
+<hkern g1="uni1EDB" g2="y" k="-102" />
+<hkern g1="uni1EDB" g2="yacute" k="-102" />
+<hkern g1="uni1EDB" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDB" g2="tcaron" k="-82" />
+<hkern g1="uni1EDB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDB" g2="wgrave" k="-102" />
+<hkern g1="uni1EDB" g2="wacute" k="-102" />
+<hkern g1="uni1EDB" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDB" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDB" g2="ff" k="-82" />
+<hkern g1="uni1EDB" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDD" g2="f" k="-82" />
+<hkern g1="uni1EDD" g2="t" k="-82" />
+<hkern g1="uni1EDD" g2="v" k="-102" />
+<hkern g1="uni1EDD" g2="w" k="-102" />
+<hkern g1="uni1EDD" g2="x" k="-102" />
+<hkern g1="uni1EDD" g2="y" k="-102" />
+<hkern g1="uni1EDD" g2="yacute" k="-102" />
+<hkern g1="uni1EDD" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDD" g2="tcaron" k="-82" />
+<hkern g1="uni1EDD" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDD" g2="wgrave" k="-102" />
+<hkern g1="uni1EDD" g2="wacute" k="-102" />
+<hkern g1="uni1EDD" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDD" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDD" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDD" g2="ff" k="-82" />
+<hkern g1="uni1EDD" g2="tcedilla" k="-82" />
+<hkern g1="uni1EDF" g2="f" k="-82" />
+<hkern g1="uni1EDF" g2="t" k="-82" />
+<hkern g1="uni1EDF" g2="v" k="-102" />
+<hkern g1="uni1EDF" g2="w" k="-102" />
+<hkern g1="uni1EDF" g2="x" k="-102" />
+<hkern g1="uni1EDF" g2="y" k="-102" />
+<hkern g1="uni1EDF" g2="yacute" k="-102" />
+<hkern g1="uni1EDF" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EDF" g2="tcaron" k="-82" />
+<hkern g1="uni1EDF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EDF" g2="wgrave" k="-102" />
+<hkern g1="uni1EDF" g2="wacute" k="-102" />
+<hkern g1="uni1EDF" g2="uniFB01" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB02" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB03" k="-82" />
+<hkern g1="uni1EDF" g2="uniFB04" k="-82" />
+<hkern g1="uni1EDF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EDF" g2="ff" k="-82" />
+<hkern g1="uni1EDF" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE1" g2="f" k="-82" />
+<hkern g1="uni1EE1" g2="t" k="-82" />
+<hkern g1="uni1EE1" g2="v" k="-102" />
+<hkern g1="uni1EE1" g2="w" k="-102" />
+<hkern g1="uni1EE1" g2="x" k="-102" />
+<hkern g1="uni1EE1" g2="y" k="-102" />
+<hkern g1="uni1EE1" g2="yacute" k="-102" />
+<hkern g1="uni1EE1" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE1" g2="tcaron" k="-82" />
+<hkern g1="uni1EE1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE1" g2="wgrave" k="-102" />
+<hkern g1="uni1EE1" g2="wacute" k="-102" />
+<hkern g1="uni1EE1" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE1" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE1" g2="ff" k="-82" />
+<hkern g1="uni1EE1" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE3" g2="f" k="-82" />
+<hkern g1="uni1EE3" g2="t" k="-82" />
+<hkern g1="uni1EE3" g2="v" k="-102" />
+<hkern g1="uni1EE3" g2="w" k="-102" />
+<hkern g1="uni1EE3" g2="x" k="-102" />
+<hkern g1="uni1EE3" g2="y" k="-102" />
+<hkern g1="uni1EE3" g2="yacute" k="-102" />
+<hkern g1="uni1EE3" g2="tcommaaccent" k="-82" />
+<hkern g1="uni1EE3" g2="tcaron" k="-82" />
+<hkern g1="uni1EE3" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE3" g2="wgrave" k="-102" />
+<hkern g1="uni1EE3" g2="wacute" k="-102" />
+<hkern g1="uni1EE3" g2="uniFB01" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB02" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB03" k="-82" />
+<hkern g1="uni1EE3" g2="uniFB04" k="-82" />
+<hkern g1="uni1EE3" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE3" g2="ff" k="-82" />
+<hkern g1="uni1EE3" g2="tcedilla" k="-82" />
+<hkern g1="uni1EE4" g2="comma" k="41" />
+<hkern g1="uni1EE4" g2="period" k="41" />
+<hkern g1="uni1EE4" g2="A" k="20" />
+<hkern g1="uni1EE4" g2="Agrave" k="20" />
+<hkern g1="uni1EE4" g2="Aacute" k="20" />
+<hkern g1="uni1EE4" g2="Acircumflex" k="20" />
+<hkern g1="uni1EE4" g2="Atilde" k="20" />
+<hkern g1="uni1EE4" g2="Adieresis" k="20" />
+<hkern g1="uni1EE4" g2="Aring" k="20" />
+<hkern g1="uni1EE4" g2="Amacron" k="20" />
+<hkern g1="uni1EE4" g2="Abreve" k="20" />
+<hkern g1="uni1EE4" g2="Aogonek" k="20" />
+<hkern g1="uni1EE4" g2="Aringacute" k="20" />
+<hkern g1="uni1EE4" g2="quotesinglbase" k="41" />
+<hkern g1="uni1EE4" g2="quotedblbase" k="41" />
+<hkern g1="uni1EE4" g2="uni1E00" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA6" k="20" />
+<hkern g1="uni1EE4" g2="uni1EA8" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAA" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAC" k="20" />
+<hkern g1="uni1EE4" g2="uni1EAE" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB0" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB2" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB4" k="20" />
+<hkern g1="uni1EE4" g2="uni1EB6" k="20" />
+<hkern g1="uni1EE9" g2="f" k="-102" />
+<hkern g1="uni1EE9" g2="t" k="-102" />
+<hkern g1="uni1EE9" g2="v" k="-102" />
+<hkern g1="uni1EE9" g2="w" k="-102" />
+<hkern g1="uni1EE9" g2="x" k="-102" />
+<hkern g1="uni1EE9" g2="y" k="-102" />
+<hkern g1="uni1EE9" g2="yacute" k="-102" />
+<hkern g1="uni1EE9" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EE9" g2="tcaron" k="-102" />
+<hkern g1="uni1EE9" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EE9" g2="wgrave" k="-102" />
+<hkern g1="uni1EE9" g2="wacute" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB01" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB02" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB03" k="-102" />
+<hkern g1="uni1EE9" g2="uniFB04" k="-102" />
+<hkern g1="uni1EE9" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EE9" g2="ff" k="-102" />
+<hkern g1="uni1EE9" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEB" g2="f" k="-102" />
+<hkern g1="uni1EEB" g2="t" k="-102" />
+<hkern g1="uni1EEB" g2="v" k="-102" />
+<hkern g1="uni1EEB" g2="w" k="-102" />
+<hkern g1="uni1EEB" g2="x" k="-102" />
+<hkern g1="uni1EEB" g2="y" k="-102" />
+<hkern g1="uni1EEB" g2="yacute" k="-102" />
+<hkern g1="uni1EEB" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEB" g2="tcaron" k="-102" />
+<hkern g1="uni1EEB" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEB" g2="wgrave" k="-102" />
+<hkern g1="uni1EEB" g2="wacute" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEB" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEB" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEB" g2="ff" k="-102" />
+<hkern g1="uni1EEB" g2="tcedilla" k="-102" />
+<hkern g1="uni1EED" g2="f" k="-102" />
+<hkern g1="uni1EED" g2="t" k="-102" />
+<hkern g1="uni1EED" g2="v" k="-102" />
+<hkern g1="uni1EED" g2="w" k="-102" />
+<hkern g1="uni1EED" g2="x" k="-102" />
+<hkern g1="uni1EED" g2="y" k="-102" />
+<hkern g1="uni1EED" g2="yacute" k="-102" />
+<hkern g1="uni1EED" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EED" g2="tcaron" k="-102" />
+<hkern g1="uni1EED" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EED" g2="wgrave" k="-102" />
+<hkern g1="uni1EED" g2="wacute" k="-102" />
+<hkern g1="uni1EED" g2="uniFB01" k="-102" />
+<hkern g1="uni1EED" g2="uniFB02" k="-102" />
+<hkern g1="uni1EED" g2="uniFB03" k="-102" />
+<hkern g1="uni1EED" g2="uniFB04" k="-102" />
+<hkern g1="uni1EED" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EED" g2="ff" k="-102" />
+<hkern g1="uni1EED" g2="tcedilla" k="-102" />
+<hkern g1="uni1EEF" g2="f" k="-102" />
+<hkern g1="uni1EEF" g2="t" k="-102" />
+<hkern g1="uni1EEF" g2="v" k="-102" />
+<hkern g1="uni1EEF" g2="w" k="-102" />
+<hkern g1="uni1EEF" g2="x" k="-102" />
+<hkern g1="uni1EEF" g2="y" k="-102" />
+<hkern g1="uni1EEF" g2="yacute" k="-102" />
+<hkern g1="uni1EEF" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EEF" g2="tcaron" k="-102" />
+<hkern g1="uni1EEF" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EEF" g2="wgrave" k="-102" />
+<hkern g1="uni1EEF" g2="wacute" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB01" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB02" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB03" k="-102" />
+<hkern g1="uni1EEF" g2="uniFB04" k="-102" />
+<hkern g1="uni1EEF" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EEF" g2="ff" k="-102" />
+<hkern g1="uni1EEF" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF1" g2="f" k="-102" />
+<hkern g1="uni1EF1" g2="t" k="-102" />
+<hkern g1="uni1EF1" g2="v" k="-102" />
+<hkern g1="uni1EF1" g2="w" k="-102" />
+<hkern g1="uni1EF1" g2="x" k="-102" />
+<hkern g1="uni1EF1" g2="y" k="-102" />
+<hkern g1="uni1EF1" g2="yacute" k="-102" />
+<hkern g1="uni1EF1" g2="tcommaaccent" k="-102" />
+<hkern g1="uni1EF1" g2="tcaron" k="-102" />
+<hkern g1="uni1EF1" g2="wcircumflex" k="-102" />
+<hkern g1="uni1EF1" g2="wgrave" k="-102" />
+<hkern g1="uni1EF1" g2="wacute" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB01" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB02" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB03" k="-102" />
+<hkern g1="uni1EF1" g2="uniFB04" k="-102" />
+<hkern g1="uni1EF1" g2="uni1EF5" k="-102" />
+<hkern g1="uni1EF1" g2="ff" k="-102" />
+<hkern g1="uni1EF1" g2="tcedilla" k="-102" />
+<hkern g1="uni1EF4" g2="comma" k="123" />
+<hkern g1="uni1EF4" g2="period" k="123" />
+<hkern g1="uni1EF4" g2="question" k="-41" />
+<hkern g1="uni1EF4" g2="A" k="123" />
+<hkern g1="uni1EF4" g2="C" k="41" />
+<hkern g1="uni1EF4" g2="G" k="41" />
+<hkern g1="uni1EF4" g2="O" k="41" />
+<hkern g1="uni1EF4" g2="Q" k="41" />
+<hkern g1="uni1EF4" g2="a" k="102" />
+<hkern g1="uni1EF4" g2="c" k="102" />
+<hkern g1="uni1EF4" g2="d" k="102" />
+<hkern g1="uni1EF4" g2="e" k="102" />
+<hkern g1="uni1EF4" g2="g" k="41" />
+<hkern g1="uni1EF4" g2="m" k="61" />
+<hkern g1="uni1EF4" g2="n" k="61" />
+<hkern g1="uni1EF4" g2="o" k="102" />
+<hkern g1="uni1EF4" g2="p" k="61" />
+<hkern g1="uni1EF4" g2="q" k="102" />
+<hkern g1="uni1EF4" g2="r" k="61" />
+<hkern g1="uni1EF4" g2="s" k="82" />
+<hkern g1="uni1EF4" g2="u" k="61" />
+<hkern g1="uni1EF4" g2="z" k="41" />
+<hkern g1="uni1EF4" g2="Agrave" k="123" />
+<hkern g1="uni1EF4" g2="Aacute" k="123" />
+<hkern g1="uni1EF4" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF4" g2="Atilde" k="123" />
+<hkern g1="uni1EF4" g2="Adieresis" k="123" />
+<hkern g1="uni1EF4" g2="Aring" k="123" />
+<hkern g1="uni1EF4" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF4" g2="Ograve" k="41" />
+<hkern g1="uni1EF4" g2="Oacute" k="41" />
+<hkern g1="uni1EF4" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Otilde" k="41" />
+<hkern g1="uni1EF4" g2="Odieresis" k="41" />
+<hkern g1="uni1EF4" g2="Oslash" k="41" />
+<hkern g1="uni1EF4" g2="agrave" k="102" />
+<hkern g1="uni1EF4" g2="aacute" k="102" />
+<hkern g1="uni1EF4" g2="acircumflex" k="102" />
+<hkern g1="uni1EF4" g2="atilde" k="102" />
+<hkern g1="uni1EF4" g2="adieresis" k="102" />
+<hkern g1="uni1EF4" g2="aring" k="102" />
+<hkern g1="uni1EF4" g2="ae" k="102" />
+<hkern g1="uni1EF4" g2="ccedilla" k="102" />
+<hkern g1="uni1EF4" g2="egrave" k="102" />
+<hkern g1="uni1EF4" g2="eacute" k="102" />
+<hkern g1="uni1EF4" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF4" g2="edieresis" k="102" />
+<hkern g1="uni1EF4" g2="ograve" k="102" />
+<hkern g1="uni1EF4" g2="oacute" k="102" />
+<hkern g1="uni1EF4" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF4" g2="otilde" k="102" />
+<hkern g1="uni1EF4" g2="odieresis" k="102" />
+<hkern g1="uni1EF4" g2="oslash" k="102" />
+<hkern g1="uni1EF4" g2="ugrave" k="61" />
+<hkern g1="uni1EF4" g2="uacute" k="61" />
+<hkern g1="uni1EF4" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF4" g2="udieresis" k="61" />
+<hkern g1="uni1EF4" g2="Amacron" k="123" />
+<hkern g1="uni1EF4" g2="amacron" k="102" />
+<hkern g1="uni1EF4" g2="Abreve" k="123" />
+<hkern g1="uni1EF4" g2="abreve" k="102" />
+<hkern g1="uni1EF4" g2="Aogonek" k="123" />
+<hkern g1="uni1EF4" g2="aogonek" k="102" />
+<hkern g1="uni1EF4" g2="Cacute" k="41" />
+<hkern g1="uni1EF4" g2="cacute" k="102" />
+<hkern g1="uni1EF4" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF4" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF4" g2="Cdot" k="41" />
+<hkern g1="uni1EF4" g2="cdot" k="102" />
+<hkern g1="uni1EF4" g2="Ccaron" k="41" />
+<hkern g1="uni1EF4" g2="ccaron" k="102" />
+<hkern g1="uni1EF4" g2="dcaron" k="102" />
+<hkern g1="uni1EF4" g2="dcroat" k="102" />
+<hkern g1="uni1EF4" g2="emacron" k="102" />
+<hkern g1="uni1EF4" g2="ebreve" k="102" />
+<hkern g1="uni1EF4" g2="edotaccent" k="102" />
+<hkern g1="uni1EF4" g2="eogonek" k="102" />
+<hkern g1="uni1EF4" g2="ecaron" k="102" />
+<hkern g1="uni1EF4" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF4" g2="Gbreve" k="41" />
+<hkern g1="uni1EF4" g2="gbreve" k="41" />
+<hkern g1="uni1EF4" g2="Gdot" k="41" />
+<hkern g1="uni1EF4" g2="gdot" k="41" />
+<hkern g1="uni1EF4" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF4" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF4" g2="nacute" k="61" />
+<hkern g1="uni1EF4" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="eng" k="61" />
+<hkern g1="uni1EF4" g2="Omacron" k="41" />
+<hkern g1="uni1EF4" g2="omacron" k="102" />
+<hkern g1="uni1EF4" g2="Obreve" k="41" />
+<hkern g1="uni1EF4" g2="obreve" k="102" />
+<hkern g1="uni1EF4" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF4" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF4" g2="OE" k="41" />
+<hkern g1="uni1EF4" g2="oe" k="102" />
+<hkern g1="uni1EF4" g2="racute" k="61" />
+<hkern g1="uni1EF4" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF4" g2="sacute" k="82" />
+<hkern g1="uni1EF4" g2="scedilla" k="82" />
+<hkern g1="uni1EF4" g2="utilde" k="61" />
+<hkern g1="uni1EF4" g2="umacron" k="61" />
+<hkern g1="uni1EF4" g2="ubreve" k="61" />
+<hkern g1="uni1EF4" g2="uring" k="61" />
+<hkern g1="uni1EF4" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF4" g2="uogonek" k="61" />
+<hkern g1="uni1EF4" g2="zacute" k="41" />
+<hkern g1="uni1EF4" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF4" g2="zcaron" k="41" />
+<hkern g1="uni1EF4" g2="Aringacute" k="123" />
+<hkern g1="uni1EF4" g2="aringacute" k="102" />
+<hkern g1="uni1EF4" g2="aeacute" k="102" />
+<hkern g1="uni1EF4" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF4" g2="oslashacute" k="102" />
+<hkern g1="uni1EF4" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF4" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF4" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF4" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF4" g2="uni1E00" k="123" />
+<hkern g1="uni1EF4" g2="uni1E01" k="102" />
+<hkern g1="uni1EF4" g2="Ohorn" k="41" />
+<hkern g1="uni1EF4" g2="ohorn" k="102" />
+<hkern g1="uni1EF4" g2="uhorn" k="61" />
+<hkern g1="uni1EF4" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF4" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF4" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF4" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF4" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF4" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF4" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF4" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF4" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF4" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF4" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF4" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF4" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF4" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF4" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF4" g2="uni1EED" k="61" />
+<hkern g1="uni1EF4" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF4" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF5" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF5" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF5" g2="comma" k="82" />
+<hkern g1="uni1EF5" g2="period" k="82" />
+<hkern g1="uni1EF5" g2="question" k="-41" />
+<hkern g1="uni1EF5" g2="quoteright" k="-82" />
+<hkern g1="uni1EF5" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF5" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF5" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF6" g2="comma" k="123" />
+<hkern g1="uni1EF6" g2="period" k="123" />
+<hkern g1="uni1EF6" g2="question" k="-41" />
+<hkern g1="uni1EF6" g2="A" k="123" />
+<hkern g1="uni1EF6" g2="C" k="41" />
+<hkern g1="uni1EF6" g2="G" k="41" />
+<hkern g1="uni1EF6" g2="O" k="41" />
+<hkern g1="uni1EF6" g2="Q" k="41" />
+<hkern g1="uni1EF6" g2="a" k="102" />
+<hkern g1="uni1EF6" g2="c" k="102" />
+<hkern g1="uni1EF6" g2="d" k="102" />
+<hkern g1="uni1EF6" g2="e" k="102" />
+<hkern g1="uni1EF6" g2="g" k="41" />
+<hkern g1="uni1EF6" g2="m" k="61" />
+<hkern g1="uni1EF6" g2="n" k="61" />
+<hkern g1="uni1EF6" g2="o" k="102" />
+<hkern g1="uni1EF6" g2="p" k="61" />
+<hkern g1="uni1EF6" g2="q" k="102" />
+<hkern g1="uni1EF6" g2="r" k="61" />
+<hkern g1="uni1EF6" g2="s" k="82" />
+<hkern g1="uni1EF6" g2="u" k="61" />
+<hkern g1="uni1EF6" g2="z" k="41" />
+<hkern g1="uni1EF6" g2="Agrave" k="123" />
+<hkern g1="uni1EF6" g2="Aacute" k="123" />
+<hkern g1="uni1EF6" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF6" g2="Atilde" k="123" />
+<hkern g1="uni1EF6" g2="Adieresis" k="123" />
+<hkern g1="uni1EF6" g2="Aring" k="123" />
+<hkern g1="uni1EF6" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF6" g2="Ograve" k="41" />
+<hkern g1="uni1EF6" g2="Oacute" k="41" />
+<hkern g1="uni1EF6" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Otilde" k="41" />
+<hkern g1="uni1EF6" g2="Odieresis" k="41" />
+<hkern g1="uni1EF6" g2="Oslash" k="41" />
+<hkern g1="uni1EF6" g2="agrave" k="102" />
+<hkern g1="uni1EF6" g2="aacute" k="102" />
+<hkern g1="uni1EF6" g2="acircumflex" k="102" />
+<hkern g1="uni1EF6" g2="atilde" k="102" />
+<hkern g1="uni1EF6" g2="adieresis" k="102" />
+<hkern g1="uni1EF6" g2="aring" k="102" />
+<hkern g1="uni1EF6" g2="ae" k="102" />
+<hkern g1="uni1EF6" g2="ccedilla" k="102" />
+<hkern g1="uni1EF6" g2="egrave" k="102" />
+<hkern g1="uni1EF6" g2="eacute" k="102" />
+<hkern g1="uni1EF6" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF6" g2="edieresis" k="102" />
+<hkern g1="uni1EF6" g2="ograve" k="102" />
+<hkern g1="uni1EF6" g2="oacute" k="102" />
+<hkern g1="uni1EF6" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF6" g2="otilde" k="102" />
+<hkern g1="uni1EF6" g2="odieresis" k="102" />
+<hkern g1="uni1EF6" g2="oslash" k="102" />
+<hkern g1="uni1EF6" g2="ugrave" k="61" />
+<hkern g1="uni1EF6" g2="uacute" k="61" />
+<hkern g1="uni1EF6" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF6" g2="udieresis" k="61" />
+<hkern g1="uni1EF6" g2="Amacron" k="123" />
+<hkern g1="uni1EF6" g2="amacron" k="102" />
+<hkern g1="uni1EF6" g2="Abreve" k="123" />
+<hkern g1="uni1EF6" g2="abreve" k="102" />
+<hkern g1="uni1EF6" g2="Aogonek" k="123" />
+<hkern g1="uni1EF6" g2="aogonek" k="102" />
+<hkern g1="uni1EF6" g2="Cacute" k="41" />
+<hkern g1="uni1EF6" g2="cacute" k="102" />
+<hkern g1="uni1EF6" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF6" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF6" g2="Cdot" k="41" />
+<hkern g1="uni1EF6" g2="cdot" k="102" />
+<hkern g1="uni1EF6" g2="Ccaron" k="41" />
+<hkern g1="uni1EF6" g2="ccaron" k="102" />
+<hkern g1="uni1EF6" g2="dcaron" k="102" />
+<hkern g1="uni1EF6" g2="dcroat" k="102" />
+<hkern g1="uni1EF6" g2="emacron" k="102" />
+<hkern g1="uni1EF6" g2="ebreve" k="102" />
+<hkern g1="uni1EF6" g2="edotaccent" k="102" />
+<hkern g1="uni1EF6" g2="eogonek" k="102" />
+<hkern g1="uni1EF6" g2="ecaron" k="102" />
+<hkern g1="uni1EF6" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF6" g2="Gbreve" k="41" />
+<hkern g1="uni1EF6" g2="gbreve" k="41" />
+<hkern g1="uni1EF6" g2="Gdot" k="41" />
+<hkern g1="uni1EF6" g2="gdot" k="41" />
+<hkern g1="uni1EF6" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF6" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF6" g2="nacute" k="61" />
+<hkern g1="uni1EF6" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="eng" k="61" />
+<hkern g1="uni1EF6" g2="Omacron" k="41" />
+<hkern g1="uni1EF6" g2="omacron" k="102" />
+<hkern g1="uni1EF6" g2="Obreve" k="41" />
+<hkern g1="uni1EF6" g2="obreve" k="102" />
+<hkern g1="uni1EF6" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF6" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF6" g2="OE" k="41" />
+<hkern g1="uni1EF6" g2="oe" k="102" />
+<hkern g1="uni1EF6" g2="racute" k="61" />
+<hkern g1="uni1EF6" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF6" g2="sacute" k="82" />
+<hkern g1="uni1EF6" g2="scedilla" k="82" />
+<hkern g1="uni1EF6" g2="utilde" k="61" />
+<hkern g1="uni1EF6" g2="umacron" k="61" />
+<hkern g1="uni1EF6" g2="ubreve" k="61" />
+<hkern g1="uni1EF6" g2="uring" k="61" />
+<hkern g1="uni1EF6" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF6" g2="uogonek" k="61" />
+<hkern g1="uni1EF6" g2="zacute" k="41" />
+<hkern g1="uni1EF6" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF6" g2="zcaron" k="41" />
+<hkern g1="uni1EF6" g2="Aringacute" k="123" />
+<hkern g1="uni1EF6" g2="aringacute" k="102" />
+<hkern g1="uni1EF6" g2="aeacute" k="102" />
+<hkern g1="uni1EF6" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF6" g2="oslashacute" k="102" />
+<hkern g1="uni1EF6" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF6" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF6" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF6" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF6" g2="uni1E00" k="123" />
+<hkern g1="uni1EF6" g2="uni1E01" k="102" />
+<hkern g1="uni1EF6" g2="Ohorn" k="41" />
+<hkern g1="uni1EF6" g2="ohorn" k="102" />
+<hkern g1="uni1EF6" g2="uhorn" k="61" />
+<hkern g1="uni1EF6" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF6" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF6" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF6" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF6" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF6" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF6" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF6" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF6" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF6" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF6" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF6" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF6" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF6" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF6" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF6" g2="uni1EED" k="61" />
+<hkern g1="uni1EF6" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF6" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF7" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF7" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF7" g2="comma" k="82" />
+<hkern g1="uni1EF7" g2="period" k="82" />
+<hkern g1="uni1EF7" g2="question" k="-41" />
+<hkern g1="uni1EF7" g2="quoteright" k="-82" />
+<hkern g1="uni1EF7" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF7" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF7" g2="quotedblbase" k="82" />
+<hkern g1="uni1EF8" g2="comma" k="123" />
+<hkern g1="uni1EF8" g2="period" k="123" />
+<hkern g1="uni1EF8" g2="question" k="-41" />
+<hkern g1="uni1EF8" g2="A" k="123" />
+<hkern g1="uni1EF8" g2="C" k="41" />
+<hkern g1="uni1EF8" g2="G" k="41" />
+<hkern g1="uni1EF8" g2="O" k="41" />
+<hkern g1="uni1EF8" g2="Q" k="41" />
+<hkern g1="uni1EF8" g2="a" k="102" />
+<hkern g1="uni1EF8" g2="c" k="102" />
+<hkern g1="uni1EF8" g2="d" k="102" />
+<hkern g1="uni1EF8" g2="e" k="102" />
+<hkern g1="uni1EF8" g2="g" k="41" />
+<hkern g1="uni1EF8" g2="m" k="61" />
+<hkern g1="uni1EF8" g2="n" k="61" />
+<hkern g1="uni1EF8" g2="o" k="102" />
+<hkern g1="uni1EF8" g2="p" k="61" />
+<hkern g1="uni1EF8" g2="q" k="102" />
+<hkern g1="uni1EF8" g2="r" k="61" />
+<hkern g1="uni1EF8" g2="s" k="82" />
+<hkern g1="uni1EF8" g2="u" k="61" />
+<hkern g1="uni1EF8" g2="z" k="41" />
+<hkern g1="uni1EF8" g2="Agrave" k="123" />
+<hkern g1="uni1EF8" g2="Aacute" k="123" />
+<hkern g1="uni1EF8" g2="Acircumflex" k="123" />
+<hkern g1="uni1EF8" g2="Atilde" k="123" />
+<hkern g1="uni1EF8" g2="Adieresis" k="123" />
+<hkern g1="uni1EF8" g2="Aring" k="123" />
+<hkern g1="uni1EF8" g2="Ccedilla" k="41" />
+<hkern g1="uni1EF8" g2="Ograve" k="41" />
+<hkern g1="uni1EF8" g2="Oacute" k="41" />
+<hkern g1="uni1EF8" g2="Ocircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Otilde" k="41" />
+<hkern g1="uni1EF8" g2="Odieresis" k="41" />
+<hkern g1="uni1EF8" g2="Oslash" k="41" />
+<hkern g1="uni1EF8" g2="agrave" k="102" />
+<hkern g1="uni1EF8" g2="aacute" k="102" />
+<hkern g1="uni1EF8" g2="acircumflex" k="102" />
+<hkern g1="uni1EF8" g2="atilde" k="102" />
+<hkern g1="uni1EF8" g2="adieresis" k="102" />
+<hkern g1="uni1EF8" g2="aring" k="102" />
+<hkern g1="uni1EF8" g2="ae" k="102" />
+<hkern g1="uni1EF8" g2="ccedilla" k="102" />
+<hkern g1="uni1EF8" g2="egrave" k="102" />
+<hkern g1="uni1EF8" g2="eacute" k="102" />
+<hkern g1="uni1EF8" g2="ecircumflex" k="102" />
+<hkern g1="uni1EF8" g2="edieresis" k="102" />
+<hkern g1="uni1EF8" g2="ograve" k="102" />
+<hkern g1="uni1EF8" g2="oacute" k="102" />
+<hkern g1="uni1EF8" g2="ocircumflex" k="102" />
+<hkern g1="uni1EF8" g2="otilde" k="102" />
+<hkern g1="uni1EF8" g2="odieresis" k="102" />
+<hkern g1="uni1EF8" g2="oslash" k="102" />
+<hkern g1="uni1EF8" g2="ugrave" k="61" />
+<hkern g1="uni1EF8" g2="uacute" k="61" />
+<hkern g1="uni1EF8" g2="ucircumflex" k="61" />
+<hkern g1="uni1EF8" g2="udieresis" k="61" />
+<hkern g1="uni1EF8" g2="Amacron" k="123" />
+<hkern g1="uni1EF8" g2="amacron" k="102" />
+<hkern g1="uni1EF8" g2="Abreve" k="123" />
+<hkern g1="uni1EF8" g2="abreve" k="102" />
+<hkern g1="uni1EF8" g2="Aogonek" k="123" />
+<hkern g1="uni1EF8" g2="aogonek" k="102" />
+<hkern g1="uni1EF8" g2="Cacute" k="41" />
+<hkern g1="uni1EF8" g2="cacute" k="102" />
+<hkern g1="uni1EF8" g2="Ccircumflex" k="41" />
+<hkern g1="uni1EF8" g2="ccircumflex" k="102" />
+<hkern g1="uni1EF8" g2="Cdot" k="41" />
+<hkern g1="uni1EF8" g2="cdot" k="102" />
+<hkern g1="uni1EF8" g2="Ccaron" k="41" />
+<hkern g1="uni1EF8" g2="ccaron" k="102" />
+<hkern g1="uni1EF8" g2="dcaron" k="102" />
+<hkern g1="uni1EF8" g2="dcroat" k="102" />
+<hkern g1="uni1EF8" g2="emacron" k="102" />
+<hkern g1="uni1EF8" g2="ebreve" k="102" />
+<hkern g1="uni1EF8" g2="edotaccent" k="102" />
+<hkern g1="uni1EF8" g2="eogonek" k="102" />
+<hkern g1="uni1EF8" g2="ecaron" k="102" />
+<hkern g1="uni1EF8" g2="Gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="gcircumflex" k="41" />
+<hkern g1="uni1EF8" g2="Gbreve" k="41" />
+<hkern g1="uni1EF8" g2="gbreve" k="41" />
+<hkern g1="uni1EF8" g2="Gdot" k="41" />
+<hkern g1="uni1EF8" g2="gdot" k="41" />
+<hkern g1="uni1EF8" g2="Gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="gcommaaccent" k="41" />
+<hkern g1="uni1EF8" g2="kgreenlandic" k="61" />
+<hkern g1="uni1EF8" g2="nacute" k="61" />
+<hkern g1="uni1EF8" g2="ncommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="eng" k="61" />
+<hkern g1="uni1EF8" g2="Omacron" k="41" />
+<hkern g1="uni1EF8" g2="omacron" k="102" />
+<hkern g1="uni1EF8" g2="Obreve" k="41" />
+<hkern g1="uni1EF8" g2="obreve" k="102" />
+<hkern g1="uni1EF8" g2="Ohungarumlaut" k="41" />
+<hkern g1="uni1EF8" g2="ohungarumlaut" k="102" />
+<hkern g1="uni1EF8" g2="OE" k="41" />
+<hkern g1="uni1EF8" g2="oe" k="102" />
+<hkern g1="uni1EF8" g2="racute" k="61" />
+<hkern g1="uni1EF8" g2="rcommaaccent" k="61" />
+<hkern g1="uni1EF8" g2="sacute" k="82" />
+<hkern g1="uni1EF8" g2="scedilla" k="82" />
+<hkern g1="uni1EF8" g2="utilde" k="61" />
+<hkern g1="uni1EF8" g2="umacron" k="61" />
+<hkern g1="uni1EF8" g2="ubreve" k="61" />
+<hkern g1="uni1EF8" g2="uring" k="61" />
+<hkern g1="uni1EF8" g2="uhungarumlaut" k="61" />
+<hkern g1="uni1EF8" g2="uogonek" k="61" />
+<hkern g1="uni1EF8" g2="zacute" k="41" />
+<hkern g1="uni1EF8" g2="zdotaccent" k="41" />
+<hkern g1="uni1EF8" g2="zcaron" k="41" />
+<hkern g1="uni1EF8" g2="Aringacute" k="123" />
+<hkern g1="uni1EF8" g2="aringacute" k="102" />
+<hkern g1="uni1EF8" g2="aeacute" k="102" />
+<hkern g1="uni1EF8" g2="Oslashacute" k="41" />
+<hkern g1="uni1EF8" g2="oslashacute" k="102" />
+<hkern g1="uni1EF8" g2="scommaaccent" k="82" />
+<hkern g1="uni1EF8" g2="quotesinglbase" k="123" />
+<hkern g1="uni1EF8" g2="quotedblbase" k="123" />
+<hkern g1="uni1EF8" g2="uni1E3F" k="61" />
+<hkern g1="uni1EF8" g2="uni1E00" k="123" />
+<hkern g1="uni1EF8" g2="uni1E01" k="102" />
+<hkern g1="uni1EF8" g2="Ohorn" k="41" />
+<hkern g1="uni1EF8" g2="ohorn" k="102" />
+<hkern g1="uni1EF8" g2="uhorn" k="61" />
+<hkern g1="uni1EF8" g2="uni1EA0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EA6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA8" k="123" />
+<hkern g1="uni1EF8" g2="uni1EA9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAA" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAC" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EAE" k="123" />
+<hkern g1="uni1EF8" g2="uni1EAF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB0" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB2" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB4" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB6" k="123" />
+<hkern g1="uni1EF8" g2="uni1EB7" k="102" />
+<hkern g1="uni1EF8" g2="uni1EB9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EBF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC5" k="102" />
+<hkern g1="uni1EF8" g2="uni1EC7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECC" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECD" k="102" />
+<hkern g1="uni1EF8" g2="uni1ECE" k="41" />
+<hkern g1="uni1EF8" g2="uni1ECF" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED0" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED1" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED2" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED4" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED5" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED6" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED7" k="102" />
+<hkern g1="uni1EF8" g2="uni1ED8" k="41" />
+<hkern g1="uni1EF8" g2="uni1ED9" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDA" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDB" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDC" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDD" k="102" />
+<hkern g1="uni1EF8" g2="uni1EDE" k="41" />
+<hkern g1="uni1EF8" g2="uni1EDF" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE0" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE1" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE2" k="41" />
+<hkern g1="uni1EF8" g2="uni1EE3" k="102" />
+<hkern g1="uni1EF8" g2="uni1EE5" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE7" k="61" />
+<hkern g1="uni1EF8" g2="uni1EE9" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEB" k="61" />
+<hkern g1="uni1EF8" g2="uni1EED" k="61" />
+<hkern g1="uni1EF8" g2="uni1EEF" k="61" />
+<hkern g1="uni1EF8" g2="uni1EF1" k="61" />
+<hkern g1="uni1EF9" g2="quotedbl" k="-82" />
+<hkern g1="uni1EF9" g2="quotesingle" k="-82" />
+<hkern g1="uni1EF9" g2="comma" k="82" />
+<hkern g1="uni1EF9" g2="period" k="82" />
+<hkern g1="uni1EF9" g2="question" k="-41" />
+<hkern g1="uni1EF9" g2="quoteright" k="-82" />
+<hkern g1="uni1EF9" g2="quotesinglbase" k="82" />
+<hkern g1="uni1EF9" g2="quotedblright" k="-82" />
+<hkern g1="uni1EF9" g2="quotedblbase" k="82" />
+<hkern g1="ff" g2="quotedbl" k="-123" />
+<hkern g1="ff" g2="quotesingle" k="-123" />
+<hkern g1="ff" g2="quoteright" k="-123" />
+<hkern g1="ff" g2="quotedblright" k="-123" />
+<hkern g1="Tcedilla" g2="comma" k="123" />
+<hkern g1="Tcedilla" g2="hyphen" k="82" />
+<hkern g1="Tcedilla" g2="period" k="123" />
+<hkern g1="Tcedilla" g2="question" k="-41" />
+<hkern g1="Tcedilla" g2="A" k="143" />
+<hkern g1="Tcedilla" g2="C" k="41" />
+<hkern g1="Tcedilla" g2="G" k="41" />
+<hkern g1="Tcedilla" g2="O" k="41" />
+<hkern g1="Tcedilla" g2="Q" k="41" />
+<hkern g1="Tcedilla" g2="T" k="-41" />
+<hkern g1="Tcedilla" g2="a" k="164" />
+<hkern g1="Tcedilla" g2="c" k="143" />
+<hkern g1="Tcedilla" g2="d" k="143" />
+<hkern g1="Tcedilla" g2="e" k="143" />
+<hkern g1="Tcedilla" g2="g" k="143" />
+<hkern g1="Tcedilla" g2="m" k="102" />
+<hkern g1="Tcedilla" g2="n" k="102" />
+<hkern g1="Tcedilla" g2="o" k="143" />
+<hkern g1="Tcedilla" g2="p" k="102" />
+<hkern g1="Tcedilla" g2="q" k="143" />
+<hkern g1="Tcedilla" g2="r" k="102" />
+<hkern g1="Tcedilla" g2="s" k="123" />
+<hkern g1="Tcedilla" g2="u" k="102" />
+<hkern g1="Tcedilla" g2="v" k="41" />
+<hkern g1="Tcedilla" g2="w" k="41" />
+<hkern g1="Tcedilla" g2="x" k="41" />
+<hkern g1="Tcedilla" g2="y" k="41" />
+<hkern g1="Tcedilla" g2="z" k="82" />
+<hkern g1="Tcedilla" g2="Agrave" k="143" />
+<hkern g1="Tcedilla" g2="Aacute" k="143" />
+<hkern g1="Tcedilla" g2="Acircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Atilde" k="143" />
+<hkern g1="Tcedilla" g2="Adieresis" k="143" />
+<hkern g1="Tcedilla" g2="Aring" k="143" />
+<hkern g1="Tcedilla" g2="Ccedilla" k="41" />
+<hkern g1="Tcedilla" g2="Ograve" k="41" />
+<hkern g1="Tcedilla" g2="Oacute" k="41" />
+<hkern g1="Tcedilla" g2="Ocircumflex" k="41" />
+<hkern g1="Tcedilla" g2="Otilde" k="41" />
+<hkern g1="Tcedilla" g2="Odieresis" k="41" />
+<hkern g1="Tcedilla" g2="Oslash" k="41" />
+<hkern g1="Tcedilla" g2="agrave" k="143" />
+<hkern g1="Tcedilla" g2="aacute" k="164" />
+<hkern g1="Tcedilla" g2="acircumflex" k="164" />
+<hkern g1="Tcedilla" g2="atilde" k="164" />
+<hkern g1="Tcedilla" g2="adieresis" k="164" />
+<hkern g1="Tcedilla" g2="aring" k="164" />
+<hkern g1="Tcedilla" g2="ae" k="164" />
+<hkern g1="Tcedilla" g2="ccedilla" k="143" />
+<hkern g1="Tcedilla" g2="egrave" k="143" />
+<hkern g1="Tcedilla" g2="eacute" k="143" />
+<hkern g1="Tcedilla" g2="ecircumflex" k="143" />
+<hkern g1="Tcedilla" g2="edieresis" k="143" />
+<hkern g1="Tcedilla" g2="ograve" k="143" />
+<hkern g1="Tcedilla" g2="oacute" k="143" />
+<hkern g1="Tcedilla" g2="ocircumflex" k="143" />
+<hkern g1="Tcedilla" g2="otilde" k="143" />
+<hkern g1="Tcedilla" g2="odieresis" k="143" />
+<hkern g1="Tcedilla" g2="oslash" k="143" />
+<hkern g1="Tcedilla" g2="ugrave" k="102" />
+<hkern g1="Tcedilla" g2="uacute" k="102" />
+<hkern g1="Tcedilla" g2="ucircumflex" k="102" />
+<hkern g1="Tcedilla" g2="udieresis" k="102" />
+<hkern g1="Tcedilla" g2="yacute" k="41" />
+<hkern g1="Tcedilla" g2="Amacron" k="143" />
+<hkern g1="Tcedilla" g2="amacron" k="164" />
+<hkern g1="Tcedilla" g2="Abreve" k="143" />
+<hkern g1="Tcedilla" g2="abreve" k="164" />
+<hkern g1="Tcedilla" g2="Aogonek" k="143" />
+<hkern g1="Tcedilla" g2="aogonek" k="164" />
+<hkern g1="Tcedilla" g2="Cacute" k="41" />
+<hkern g1="Tcedilla" g2="cacute" k="143" />
+<hkern g1="Tcedilla" g2="Ccircumflex" k="41" />
+<hkern g1="Tcedilla" g2="ccircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Cdot" k="41" />
+<hkern g1="Tcedilla" g2="cdot" k="143" />
+<hkern g1="Tcedilla" g2="Ccaron" k="41" />
+<hkern g1="Tcedilla" g2="ccaron" k="143" />
+<hkern g1="Tcedilla" g2="dcaron" k="143" />
+<hkern g1="Tcedilla" g2="dcroat" k="143" />
+<hkern g1="Tcedilla" g2="emacron" k="143" />
+<hkern g1="Tcedilla" g2="ebreve" k="143" />
+<hkern g1="Tcedilla" g2="edotaccent" k="143" />
+<hkern g1="Tcedilla" g2="eogonek" k="143" />
+<hkern g1="Tcedilla" g2="ecaron" k="143" />
+<hkern g1="Tcedilla" g2="Gcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="gcircumflex" k="143" />
+<hkern g1="Tcedilla" g2="Gbreve" k="41" />
+<hkern g1="Tcedilla" g2="gbreve" k="143" />
+<hkern g1="Tcedilla" g2="Gdot" k="41" />
+<hkern g1="Tcedilla" g2="gdot" k="143" />
+<hkern g1="Tcedilla" g2="Gcommaaccent" k="41" />
+<hkern g1="Tcedilla" g2="gcommaaccent" k="143" />
+<hkern g1="Tcedilla" g2="kgreenlandic" k="102" />
+<hkern g1="Tcedilla" g2="nacute" k="102" />
+<hkern g1="Tcedilla" g2="ncommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="eng" k="102" />
+<hkern g1="Tcedilla" g2="Omacron" k="41" />
+<hkern g1="Tcedilla" g2="omacron" k="143" />
+<hkern g1="Tcedilla" g2="Obreve" k="41" />
+<hkern g1="Tcedilla" g2="obreve" k="143" />
+<hkern g1="Tcedilla" g2="Ohungarumlaut" k="41" />
+<hkern g1="Tcedilla" g2="ohungarumlaut" k="143" />
+<hkern g1="Tcedilla" g2="OE" k="41" />
+<hkern g1="Tcedilla" g2="oe" k="143" />
+<hkern g1="Tcedilla" g2="racute" k="102" />
+<hkern g1="Tcedilla" g2="rcommaaccent" k="102" />
+<hkern g1="Tcedilla" g2="sacute" k="123" />
+<hkern g1="Tcedilla" g2="scedilla" k="123" />
+<hkern g1="Tcedilla" g2="Tcommaaccent" k="-41" />
+<hkern g1="Tcedilla" g2="Tcaron" k="-41" />
+<hkern g1="Tcedilla" g2="utilde" k="102" />
+<hkern g1="Tcedilla" g2="umacron" k="102" />
+<hkern g1="Tcedilla" g2="ubreve" k="102" />
+<hkern g1="Tcedilla" g2="uring" k="102" />
+<hkern g1="Tcedilla" g2="uhungarumlaut" k="102" />
+<hkern g1="Tcedilla" g2="uogonek" k="102" />
+<hkern g1="Tcedilla" g2="wcircumflex" k="41" />
+<hkern g1="Tcedilla" g2="zacute" k="82" />
+<hkern g1="Tcedilla" g2="zdotaccent" k="82" />
+<hkern g1="Tcedilla" g2="zcaron" k="82" />
+<hkern g1="Tcedilla" g2="Aringacute" k="143" />
+<hkern g1="Tcedilla" g2="aringacute" k="164" />
+<hkern g1="Tcedilla" g2="aeacute" k="164" />
+<hkern g1="Tcedilla" g2="Oslashacute" k="41" />
+<hkern g1="Tcedilla" g2="oslashacute" k="143" />
+<hkern g1="Tcedilla" g2="scommaaccent" k="123" />
+<hkern g1="Tcedilla" g2="wgrave" k="41" />
+<hkern g1="Tcedilla" g2="wacute" k="41" />
+<hkern g1="Tcedilla" g2="endash" k="82" />
+<hkern g1="Tcedilla" g2="emdash" k="82" />
+<hkern g1="Tcedilla" g2="afii00208" k="82" />
+<hkern g1="Tcedilla" g2="quotesinglbase" k="123" />
+<hkern g1="Tcedilla" g2="quotedblbase" k="123" />
+<hkern g1="Tcedilla" g2="uni1E3F" k="102" />
+<hkern g1="Tcedilla" g2="uni1E00" k="143" />
+<hkern g1="Tcedilla" g2="uni1E01" k="164" />
+<hkern g1="Tcedilla" g2="Ohorn" k="41" />
+<hkern g1="Tcedilla" g2="ohorn" k="143" />
+<hkern g1="Tcedilla" g2="uhorn" k="102" />
+<hkern g1="Tcedilla" g2="uni1EA0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EA6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA8" k="143" />
+<hkern g1="Tcedilla" g2="uni1EA9" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAA" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAB" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAC" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAD" k="164" />
+<hkern g1="Tcedilla" g2="uni1EAE" k="143" />
+<hkern g1="Tcedilla" g2="uni1EAF" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB0" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB1" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB2" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB3" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB4" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB5" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB6" k="143" />
+<hkern g1="Tcedilla" g2="uni1EB7" k="164" />
+<hkern g1="Tcedilla" g2="uni1EB9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EBF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC5" k="143" />
+<hkern g1="Tcedilla" g2="uni1EC7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECC" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECD" k="143" />
+<hkern g1="Tcedilla" g2="uni1ECE" k="41" />
+<hkern g1="Tcedilla" g2="uni1ECF" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED0" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED1" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED2" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED4" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED5" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED6" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED7" k="143" />
+<hkern g1="Tcedilla" g2="uni1ED8" k="41" />
+<hkern g1="Tcedilla" g2="uni1ED9" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDA" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDB" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDC" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDD" k="143" />
+<hkern g1="Tcedilla" g2="uni1EDE" k="41" />
+<hkern g1="Tcedilla" g2="uni1EDF" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE0" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE1" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE2" k="41" />
+<hkern g1="Tcedilla" g2="uni1EE3" k="143" />
+<hkern g1="Tcedilla" g2="uni1EE5" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE7" k="102" />
+<hkern g1="Tcedilla" g2="uni1EE9" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEB" k="102" />
+<hkern g1="Tcedilla" g2="uni1EED" k="102" />
+<hkern g1="Tcedilla" g2="uni1EEF" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF1" k="102" />
+<hkern g1="Tcedilla" g2="uni1EF5" k="41" />
+<hkern g1="Tcedilla" g2="Tcedilla" k="-41" />
+<hkern g1="tcedilla" g2="quotedbl" k="-41" />
+<hkern g1="tcedilla" g2="quotesingle" k="-41" />
+<hkern g1="tcedilla" g2="quoteright" k="-41" />
+<hkern g1="tcedilla" g2="quotedblright" k="-41" />
+</font>
+</defs>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.ttf b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.ttf
new file mode 100644
index 0000000..1a7679e
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.ttf differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.woff b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.woff
new file mode 100644
index 0000000..409c725
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.woff differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.woff2 b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.woff2
new file mode 100644
index 0000000..d088697
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/OpenSans-Semibold-webfont.woff2 differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.eot b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.eot
new file mode 100644
index 0000000..041cf19
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.eot differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.svg
new file mode 100644
index 0000000..9a9dd49
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.svg
@@ -0,0 +1,137 @@
+<?xml version="1.0" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
+<svg xmlns="http://www.w3.org/2000/svg">
+<metadata>
+<json>
+<![CDATA[
+{
+	"fontFamily": "PatternFlyIcons-webfont",
+	"fontURL": "https://www.patternfly.org",
+	"designer": "Red Hat",
+	"designerURL": "",
+	"license": "Apache 2.0",
+	"licenseURL": "http://www.apache.org/licenses/LICENSE-2.0.html",
+	"majorVersion": 3,
+	"minorVersion": 0,
+	"version": "Version 3.0",
+	"fontId": "PatternFlyIcons-webfont",
+	"psName": "PatternFlyIcons-webfont",
+	"subFamily": "Regular",
+	"fullName": "PatternFlyIcons-webfont",
+	"description": "Font generated by IcoMoon."
+}
+]]>
+</json>
+</metadata>
+<defs>
+<font id="PatternFlyIcons-webfont" horiz-adv-x="1024">
+<font-face units-per-em="1024" ascent="960" descent="-64" />
+<missing-glyph horiz-adv-x="1024" />
+<glyph unicode="&#x20;" horiz-adv-x="512" d="" />
+<glyph unicode="&#xe600;" glyph-name="screen" data-tags="screen, monitor, computer, pc, desktop" d="M1024 146.286v731.429h-1024v-731.429h438.857v-73.143h-219.429v-73.143h585.143v73.143h-219.429v73.143h438.857zM146.286 731.428h731.429v-438.857h-731.429v438.857z" />
+<glyph unicode="&#xe601;" glyph-name="save" data-tags="save" d="M738.448 397.076l-184.514-223.726c-36.11-36.112-48.226-35.646-83.87 0l-184.514 223.726c-23.063 23.065-15.248 41.936 17.369 41.936h135.938v201.159c-0.002 5.298 0.933 9.666 4.375 13.109 3.442 3.44 7.813 5.166 13.111 5.161h109.735c5.296 0.005 9.666-1.719 13.104-5.161 3.445-3.442 5.959-7.815 5.959-13.109v-201.159h135.938c32.619 0 40.434-18.871 17.369-41.936v0zM877.714 950.857h-877.714v-1024h1024v877.735l-146.286 146.265zM877.714 73.143h-732.425l0.997 731.429h658.286l73.143-73.143v-658.286z" />
+<glyph unicode="&#xe602;" glyph-name="ok" data-tags="ok" d="M763.431 521.737c0.002-10.286-3.422-18.855-10.281-25.714l-205.835-204.24-58.288-58.29c-6.857-6.857-15.431-10.286-25.714-10.286-10.286 0-18.857 3.429-25.714 10.286l-171.227 171.189c-6.857 6.862-10.283 15.433-10.283 25.719s3.426 18.857 10.283 25.714l50.206 50.206c6.857 6.857 15.429 10.286 25.714 10.281 10.29 0 18.857-3.424 25.717-10.286l93.691-93.646 188.203 186.608c6.857 6.857 15.429 10.286 25.719 10.286 10.283 0.002 18.855-3.429 25.714-10.286l51.817-51.822c6.855-6.862 10.283-15.433 10.279-25.719v0zM512.059-73.143c-282.338 0-512.059 229.673-512.059 512.025 0 282.235 229.721 511.975 512.059 511.975 282.281 0 511.941-229.735 511.941-511.975 0.005-282.352-229.659-512.025-511.941-512.025zM512.059 826.523c-213.826 0-387.728-173.856-387.728-387.643 0-213.888 173.904-387.691 387.728-387.691 213.717 0 387.671 173.803 387.671 387.691 0.005 213.785-173.957 387.643-387.671 387.643z" />
+<glyph unicode="&#xe603;" glyph-name="messages" data-tags="messages" horiz-adv-x="951" d="M672.75 578.352l10.249 20.555c0 0 35.71 80.126-45.57 104.654-75.518 22.789-353.326 106.617-392.35 118.391l7.25 55.963c4.576 35.349-19.209 72.939-54.553 72.939s-68.855-28.654-73.433-64l-124.345-960h129.145l50.066 386.533 213.232 61.563-3.671-13.854c0 0-3.627-85.241 103.961-53.019 56.818 17.015 458.126 186.702 458.126 186.702l-278.107 83.573z" />
+<glyph unicode="&#xe605;" glyph-name="help" data-tags="help" d="M512.059-73.143c-282.338 0-512.059 229.673-512.059 512.025 0 282.235 229.721 511.975 512.059 511.975 282.281 0 511.941-229.735 511.941-511.975 0.005-282.352-229.659-512.025-511.941-512.025zM512.059 826.523c-213.826 0-387.728-173.856-387.728-387.643 0-213.89 173.904-387.694 387.728-387.694 213.717 0 387.671 173.803 387.671 387.694 0.005 213.785-173.957 387.643-387.671 387.643zM585.143 164.571v109.714c0 4.951-1.808 9.237-5.429 12.857s-7.906 5.429-12.857 5.429h-109.714c-4.953 0-9.239-1.808-12.857-5.429s-5.429-7.906-5.429-12.857v-109.714c0-4.951 1.81-9.237 5.429-12.857s7.904-5.429 12.857-5.429h109.714c4.951 0 9.237 1.808 12.857 5.429s5.429 7.906 5.429 12.857zM521.616 365.714c118.343 0 214.286 88.965 214.286 187.429s-95.943 178.286-214.286 178.286c-173.045 0-208.091-93.714-213.963-171.113 0-7.936 6.729-9.838 15.872-9.838s108.073 0 113.143 0c6.096 0 14.475 0.633 17.554 10.571 0 48.857 135.968 54.953 135.968-7.904 0-31.506-29.717-63.817-68.571-66.194s-82.286-7.607-82.286-54.199c0-13.022 0-25.673 0-44.693 0-19.015 9.717-22.343 27.431-22.343s54.853-0.002 54.853-0.002z" />
+<glyph unicode="&#xe606;" glyph-name="folder-open" data-tags="folder-open" horiz-adv-x="1243" d="M1226.126 430.391c-11.538 5.641-24.709 8.466-39.511 8.466h-783.362c-121.691 0-172.409-79.465-172.409-79.465l-157.701-213.106 72.912 253.2c11.755 31.506 36.455 58.219 74.101 80.146 37.641 21.927 76.905 32.366 117.778 32.366h759.625v146.286c0 0-0.418 73.611-73.561 73.611-83.591 0-512 0-512 0l-51.826 81.083c0 0-30.041 64.734-94.041 64.734-73.143 0-243.257 0-292.571 0-83.591 0-73.143-73.143-73.143-73.143v-804.571h841.797c28.734 0 59.973 7.705 93.714 23.122 33.742 15.413 59.973 34.197 78.695 56.341l208.565 279.929c13.495 15.2 20.242 29.529 20.242 42.99 0 13.029-5.767 22.366-17.303 28.011v0z" />
+<glyph unicode="&#xe607;" glyph-name="folder-close" data-tags="folder-close" horiz-adv-x="1097" d="M1097.563 0v658.286c0 0-0.421 73.611-73.563 73.611-83.591 0-512 0-512 0l-51.826 81.083c0 0-30.043 64.734-94.043 64.734-73.143 0-243.257 0-292.571 0-83.591 0-73.143-73.143-73.143-73.143v-804.571h1097.147z" />
+<glyph unicode="&#xe608;" glyph-name="topology" data-tags="topology" d="M365.714 838.857c0-60.594-49.121-109.714-109.714-109.714s-109.714 49.121-109.714 109.714c0 60.594 49.121 109.714 109.714 109.714s109.714-49.121 109.714-109.714zM1097.143 182.857c0-60.594-49.121-109.714-109.714-109.714s-109.714 49.121-109.714 109.714c0 60.594 49.121 109.714 109.714 109.714s109.714-49.121 109.714-109.714zM219.429 256c0-60.594-49.121-109.714-109.714-109.714s-109.714 49.121-109.714 109.714c0 60.594 49.121 109.714 109.714 109.714s109.714-49.121 109.714-109.714zM828.8 306.286l-75.2 51.2c8.457 25.6 13.257 52.8 13.257 81.143 0 55.086-17.371 106.057-47.314 147.886l87.771 89.6c20.8-11.429 44.8-18.057 70.4-18.057 80.686 0 146.286 65.6 146.286 146.286s-65.6 146.514-146.286 146.514c-80.686 0-146.286-65.6-146.286-146.286 0-28.8 8.229-55.543 22.629-78.171l-85.029-86.857c-43.2 33.829-97.829 54.171-157.029 54.171-33.829 0-66.286-6.629-96-18.743l-13.943 18.971c-13.486 18.286-37.714 23.543-53.714 11.429-16.229-11.886-18.514-36.571-5.257-54.857l9.6-13.029c-58.286-46.629-95.543-118.4-95.543-198.857 0-22.4 2.971-44.114 8.457-64.914l-2.743-1.143c-19.2-9.371-28.343-32-20.571-50.286s29.943-25.6 48.914-16.457l2.514 1.143c35.429-58.514 93.486-101.486 162.286-117.029l-4.343-42.057c-49.143-11.2-85.714-55.771-85.714-109.257 0-61.943 49.143-112 109.714-112s109.714 50.057 109.714 112c0 44.114-24.914 82.057-61.029 100.343l4.8 45.257c79.314 5.257 148.571 46.629 191.771 107.886l68.8-46.857c18.286-12.571 42.286-9.143 53.029 7.771s4.571 40.914-13.943 53.257zM877.714 882.286c42.971 0 77.714-34.743 77.714-77.714s-34.743-77.714-77.714-77.714-77.714 34.743-77.714 77.714 34.743 77.714 77.714 77.714zM475.429-20.572c-32.914 0-59.429 26.514-59.429 59.429s26.514 59.429 59.429 59.429 59.429-26.514 59.429-59.429-26.514-59.429-59.429-59.429zM512 299.428c-77.029 0-139.429 62.4-139.429 139.429s62.4 139.429 139.429 139.429 139.429-62.4 139.429-139.429-62.4-139.429-139.429-139.429z" />
+<glyph unicode="&#xe60a;" glyph-name="edit" data-tags="edit" d="M219.554 0l73.294 73.143-146.583 146.286-73.070-73.143v-73.143h73.090v-73.438l73.269 0.295zM806.176 512l-586.747-585.143h-219.429v219.429l586.585 585.143 219.591-219.429zM1024 762.937c0-19.056-6.656-35.237-19.968-48.537l-146.578-150.455-218.686 218.505 148.576 147.915c12.955 13.662 29.147 20.494 48.578 20.494 19.074 0 35.445-6.832 49.115-20.494l118.994-118.352c13.312-14.023 19.968-30.384 19.968-49.077v0z" />
+<glyph unicode="&#xe60b;" glyph-name="close" data-tags="close" horiz-adv-x="731" d="M96.464 804.571c-4.816-0.064-9.12-1.963-12.912-5.733l-77.815-77.815c-3.769-3.794-5.669-8.096-5.735-12.91-0.032-4.839 1.815-9.113 5.543-12.823l616.603-616.606c3.71-3.714 7.986-5.577 12.823-5.541 4.834 0.039 9.138 1.957 12.91 5.73l77.817 77.819c3.769 3.769 5.691 8.066 5.73 12.912 0.037 4.839-1.829 9.106-5.538 12.825l-616.606 616.599c-3.717 3.73-7.986 5.575-12.821 5.541zM622.144 799.031l-616.603-616.601c-3.726-3.717-5.577-7.989-5.536-12.827 0.059-4.843 1.959-9.143 5.728-12.914l77.817-77.817c3.792-3.774 8.096-5.691 12.91-5.728 4.837-0.039 9.106 1.824 12.821 5.536l616.599 616.608c3.717 3.712 5.579 7.989 5.543 12.823-0.041 4.814-1.959 9.118-5.728 12.91l-77.824 77.808c-3.767 3.778-8.073 5.678-12.907 5.744-4.834 0.034-9.104-1.815-12.818-5.541z" />
+<glyph unicode="&#xe610;" glyph-name="equalizer" data-tags="equalizer, control, options, settings, dashboard" d="M950.857 438.857h18.286c30.171 0 54.857 24.686 54.857 54.857v182.857c0 30.171-24.686 54.857-54.857 54.857h-18.286v219.429h-146.286v-219.429h-18.286c-30.171 0-54.857-24.686-54.857-54.857v-182.857c0-30.171 24.686-54.857 54.857-54.857h18.286v-512h146.286v512zM804.571 658.286h146.286v-146.286h-146.286v146.286zM603.429 146.286c30.171 0 54.857 24.686 54.857 54.857v182.857c0 30.171-24.686 54.857-54.857 54.857h-18.286v512h-146.286v-512h-18.286c-30.171 0-54.857-24.686-54.857-54.857v-182.857c0-30.171 24.686-54.857 54.857-54.857h18.286v-219.429h146.286v219.429h18.286zM438.857 365.714h146.286v-146.286h-146.286v146.286zM237.714 438.857c30.171 0 54.857 24.686 54.857 54.857v182.857c0 30.171-24.686 54.857-54.857 54.857h-18.286v219.429h-146.286v-219.429h-18.286c-30.171 0-54.857-24.686-54.857-54.857v-182.857c0-30.171 24.686-54.857 54.857-54.857h18.286v-512h146.286v512h18.286zM73.143 658.286h146.286v-146.286h-146.286v146.286z" />
+<glyph unicode="&#xe611;" glyph-name="remove2" data-tags="remove, delete, trashcan, recycle bin, bin, dispose" horiz-adv-x="878" d="M146.286-73.143h585.143l73.143 658.286h-731.429l73.143-658.286zM585.143 804.855v146.002h-292.571v-146.002l-292.571-0.283v-219.429l73.001 73.143h731.57l73.143-73.143v219.712h-292.571zM511.010 804.855h-145.296v73.001h145.296v-73.001z" />
+<glyph unicode="&#xe612;" glyph-name="print" data-tags="print, printer" d="M219.429 877.714h585.143v-146.286h-585.143v146.286zM960 658.286h-896c-35.2 0-64-28.8-64-64v-310.857c0-35.2 28.798-64 64-64h155.429v-219.429h585.143v219.429h155.429c35.2 0 64 28.8 64 64v310.857c0 35.2-28.8 64-64 64zM731.429 73.143h-438.857v292.571h438.857v-292.571zM959.925 550.018c0-25.625-20.777-46.4-46.402-46.4s-46.402 20.775-46.402 46.4 20.777 46.4 46.402 46.4c25.63 0 46.402-20.775 46.402-46.4z" />
+<glyph unicode="&#xe613;" glyph-name="spinner2" data-tags="spinner, loading, busy, wait, wheel, repeat" d="M874.016 800.873c-92.647 92.658-220.631 149.984-362.016 149.984-282.77 0-512-229.23-512-512s229.23-512 512-512c153.639 0 291.458 67.691 385.303 174.857l-96.32 84.283c-5.595-6.377-11.401-12.615-17.458-18.667-72.523-72.528-168.955-112.473-271.525-112.473s-198.999 39.945-271.531 112.466c-72.521 72.535-112.469 168.965-112.469 271.534s39.947 198.999 112.469 271.529c72.53 72.526 168.962 112.471 271.531 112.471s198.999-39.945 271.529-112.471l154.805-61.198-64.318 151.685zM682.425 627.568c-23.333-23.333-15.424-42.425 17.575-42.425h264c51.666 0 60 9.001 60 60v264c0 33.001-19.093 40.907-42.425 17.575l-299.15-299.15z" />
+<glyph unicode="&#xe614;" glyph-name="spinner" data-tags="spinner, loading, busy, wait, wheel" d="M585.143 754.658c85.63-20.126 158.018-74.816 201.838-148.633l185.614 60.357c-72.864 150.469-216.526 259.899-387.451 284.475v-196.199zM237.598 607.001c43.877 73.323 116.007 127.621 201.259 147.659v196.197c-170.457-24.507-313.803-133.403-386.857-283.234l185.598-60.622zM153.895 73.73l115.23 158.366c-48.059 56.265-77.125 129.403-77.125 209.378 0 8.761 0.366 17.433 1.056 26.016l-185.776 60.681c-4.766-28.19-7.282-57.145-7.282-86.697 0.002-144.094 58.951-274.327 153.897-367.744zM635.152 144.539c-37.909-15.906-79.506-24.702-123.152-24.702-44.366 0-86.615 9.083-125.024 25.483l-115.232-158.368c71.648-38.343 153.419-60.098 240.256-60.098 86.089 0 167.195 21.387 238.402 59.118l-115.25 158.567zM831.031 466.354c0.631-8.213 0.969-16.507 0.969-24.882 0-80.704-29.589-154.455-78.439-210.923l115.047-158.288c95.824 93.52 155.392 224.363 155.392 369.211 0 29.079-2.427 57.579-7.047 85.337l-185.922-60.455z" />
+<glyph unicode="&#xe615;" glyph-name="import" data-tags="import" d="M687.721 571.335l-95.387-95.387-393.84 393.856c-5.285 5.262-11.353 7.909-18.203 7.911-6.862 0-12.935-2.649-18.222-7.911l-81.019-81.019c-5.262-5.285-7.909-11.353-7.909-18.219 0-6.85 2.649-12.914 7.909-18.203l393.856-393.84-95.381-95.381c-24.039-24.037-15.89-43.705 18.105-43.705h271.982c53.227 0 61.813 9.273 61.813 61.813v271.984c0.005 33.995-19.662 42.149-43.703 18.103zM877.714 84.571c0-3.312-1.077-6.048-3.232-8.203-2.151-2.151-4.889-3.227-8.199-3.225h-708.661c-3.287 0-5.998 1.067-8.137 3.202-2.135 2.137-3.202 4.848-3.202 8.135v404.843c0 6.571-2.135 11.995-6.409 16.272-4.27 4.267-9.696 6.407-16.267 6.405h-100.933c-6.571 0.002-11.998-2.137-16.267-6.405-4.277-4.277-6.409-9.701-6.409-16.272v-539.79c-0.002-6.571 2.137-11.998 6.405-16.267 4.277-4.274 9.701-6.409 16.272-6.409h978.647c6.571-0.002 11.998 2.137 16.267 6.405 4.274 4.277 6.409 9.701 6.409 16.272v978.647c0 6.571-2.135 11.995-6.409 16.272-4.27 4.267-9.696 6.407-16.267 6.405h-539.787c-6.571 0-11.995-2.135-16.272-6.409-4.267-4.27-6.407-9.696-6.405-16.267v-100.933c-0.002-6.569 2.137-11.998 6.405-16.265 4.277-4.277 9.701-6.411 16.272-6.411h404.752c3.312 0 6.048-1.077 8.203-3.232 2.151-2.149 3.227-4.889 3.225-8.197v-708.571z" />
+<glyph unicode="&#xe616;" glyph-name="export" data-tags="export" d="M980.293 278.754l-95.387-95.387-393.84 393.856c-5.285 5.262-11.353 7.909-18.203 7.911-6.862 0-12.935-2.649-18.222-7.911l-81.019-81.019c-5.262-5.285-7.909-11.353-7.909-18.219 0-6.85 2.649-12.914 7.909-18.203l393.856-393.84-95.381-95.381c-24.039-24.037-15.89-43.705 18.105-43.705h271.982c53.227 0 61.813 9.273 61.813 61.813v271.982c0.005 33.998-19.662 42.151-43.703 18.105zM146.286 793.143c0 3.312 1.077 6.048 3.232 8.203 2.151 2.151 4.889 3.227 8.199 3.225h708.661c3.287 0 5.998-1.067 8.137-3.202 2.135-2.137 3.202-4.848 3.202-8.135v-331.701c0-6.571 2.135-11.995 6.409-16.272 4.27-4.267 9.696-6.407 16.267-6.405h100.933c6.571-0.002 11.998 2.137 16.267 6.405 4.277 4.277 6.409 9.701 6.409 16.272v466.647c0.002 6.571-2.137 11.998-6.405 16.267-4.277 4.274-9.701 6.409-16.272 6.409h-978.649c-6.571 0.002-11.998-2.137-16.267-6.405-4.274-4.277-6.409-9.701-6.409-16.272v-978.647c0-6.571 2.135-11.995 6.409-16.272 4.27-4.267 9.696-6.407 16.267-6.405h466.647c6.571 0 11.995 2.135 16.272 6.411 4.267 4.267 6.407 9.696 6.405 16.265v100.933c0.002 6.569-2.137 11.998-6.405 16.265-4.277 4.277-9.701 6.411-16.272 6.411h-331.609c-3.312 0-6.048 1.077-8.203 3.232-2.151 2.149-3.227 4.889-3.225 8.197v708.571z" />
+<glyph unicode="&#xe617;" glyph-name="history" data-tags="history" d="M149.984 800.873c92.647 92.658 220.631 149.984 362.016 149.984 282.77 0 512-229.23 512-512s-229.23-512-512-512c-153.639 0-291.458 67.691-385.303 174.857l96.32 84.283c5.595-6.377 11.401-12.615 17.458-18.667 72.523-72.528 168.955-112.473 271.525-112.473s198.999 39.945 271.531 112.466c72.523 72.533 112.469 168.965 112.469 271.534s-39.947 198.999-112.469 271.529c-72.53 72.526-168.962 112.471-271.531 112.471s-198.999-39.945-271.529-112.471l-154.805-61.198 64.318 151.685zM324.571 365.714c-9.335 0-17.001 2.999-22.999 9.001-6 6-9.001 13.666-9.001 22.999v9.143c0 9.335 2.999 17.001 9.001 22.999 6 6 13.666 9.001 22.999 9.001h187.429v260.571c0 9.335 2.999 17.001 9.001 22.999 6 6 13.666 9.001 22.999 9.001h9.143c9.335 0 17.001-2.999 22.999-9.001 6-6 9.001-13.666 9.001-22.999v-301.714c0-9.335-2.999-17.001-9.001-22.999-6-6-13.666-9.001-22.999-9.001h-228.571zM341.575 627.568c23.333-23.333 15.424-42.425-17.575-42.425h-264c-51.666 0-60 9.001-60 60v264c0 33.001 19.093 40.907 42.425 17.575l299.15-299.15z" />
+<glyph unicode="&#xe618;" glyph-name="home" data-tags="home" d="M1023.929 430.75c-0.425 5.714-2.752 10.267-6.987 13.655l-456.672 417.266c-13.55 11.008-29.641 16.514-48.27 16.514-18.631 0-34.722-5.504-48.272-16.514l-456.67-417.266c-4.235-3.387-6.562-7.941-6.987-13.655-0.425-5.719 1.058-10.695 4.446-14.928l35.017-42.933c3.387-3.81 7.833-6.139 13.337-6.987 0.997-0.082 36.619-0.135 93.282-0.16v-325.563c0-11.008 4.023-20.537 12.069-28.581 8.046-8.046 17.573-12.069 28.581-12.069h252.030v293.545h146.279v-293.545h252.085c11.008 0 20.535 4.025 28.581 12.069 8.048 8.043 12.066 17.573 12.066 28.581v325.685c55.454 0.023 90.258 0 91.323 0h1.906c5.504 0.848 9.95 3.214 13.337 7.024l35.072 42.933c3.387 4.235 4.871 9.211 4.448 14.93z" />
+<glyph unicode="&#xe61b;" glyph-name="add-circle-o" data-tags="add-circle-o" d="M512.059-73.143c-282.338 0-512.059 229.673-512.059 512.025 0 282.238 229.721 511.975 512.059 511.975 282.283 0 511.941-229.735 511.941-511.975 0.005-282.352-229.659-512.025-511.941-512.025zM512.059 826.523c-213.826 0-387.728-173.856-387.728-387.643 0-213.888 173.904-387.691 387.728-387.691 213.717 0 387.671 173.803 387.671 387.691 0.005 213.785-173.957 387.643-387.671 387.643zM726.283 506.777c-3.429 3.477-7.803 5.223-13.138 5.223h-128.005v128.007c0 5.333-1.739 9.71-5.218 13.138s-7.936 5.141-13.351 5.141h-109.143c-5.417 0-9.863-1.714-13.351-5.141-3.481-3.429-5.221-7.808-5.221-13.141v-128.005l-128.007-0.002c-5.333 0-9.71-1.737-13.138-5.218-3.426-3.477-5.141-7.934-5.141-13.351v-109.143c0-5.417 1.714-9.856 5.141-13.351 3.429-3.481 7.808-5.221 13.141-5.221l128.005 0.002v-128.009c0-5.335 1.744-9.707 5.225-13.134 3.477-3.429 7.927-5.145 13.344-5.145h109.143c5.417 0 9.858 1.717 13.351 5.145 3.477 3.429 5.223 7.803 5.223 13.138v128.002h128.007c5.335 0 9.707 1.742 13.134 5.225 3.429 3.477 5.145 7.927 5.145 13.344v109.143c0 5.417-1.717 9.863-5.145 13.351z" />
+<glyph unicode="&#xe61e;" glyph-name="service" data-tags="service" d="M1316.571 621.486l-219.429 183.543v-146.743h-131.429c-0.229 0.229-0.229 0.686-0.457 0.914-39.314 67.2-92.571 120.457-159.771 159.771-67.2 39.086-140.571 58.743-220.343 58.743s-153.143-19.657-220.343-58.971c-67.2-39.314-120.457-92.571-159.771-159.771-39.086-67.2-58.743-140.571-58.743-220.114 0-24.914 1.829-49.143 5.714-72.686h-152.229l0.229-73.371h170.743c8.914-25.6 20.571-50.286 34.514-74.286 39.314-67.2 92.571-120.457 159.771-159.771s140.571-58.743 220.343-58.743c79.771 0 153.143 19.657 220.343 58.743 67.2 39.314 120.457 92.571 159.771 159.771 38.857 67.2 58.514 140.571 58.514 220.343 0 51.2-8.229 99.886-24.457 146.057h97.6v-146.514l219.429 183.086zM242.514 437.714c0 46.629 9.143 90.971 27.429 133.486s42.743 79.086 73.371 109.714c30.629 30.629 67.2 55.086 109.714 73.371s86.857 27.429 133.486 27.429c46.629 0 90.971-9.143 133.486-27.429s79.086-42.743 109.714-73.371c7.086-7.086 13.943-14.629 20.571-22.4h-265.371l0.229-73.371h311.314c2.057-4.571 4.343-9.143 6.171-13.714 18.286-42.514 27.429-86.857 27.429-133.486s-9.143-90.971-27.429-133.486c-18.286-42.514-42.743-79.086-73.371-109.714s-67.2-55.086-109.714-73.371c-42.514-18.286-86.857-27.429-133.486-27.429s-90.971 9.143-133.486 27.429c-42.514 18.286-79.086 42.743-109.714 73.371-27.886 27.886-50.514 60.571-68.114 98.057l310.4-0.229v-146.286l218.743 183.086-218.743 183.314v-146.514h-335.086c-5.029 23.314-7.543 47.086-7.543 71.543z" />
+<glyph unicode="&#xe61f;" glyph-name="image" data-tags="image" d="M1011.429 759.543c-9.371 13.486-21.943 23.086-37.486 29.029l-432.229 157.257c-9.143 3.429-18.057 5.029-27.2 5.029-0.457 0-0.914 0-1.371 0s-0.914 0-1.371 0c-8.914 0-18.057-1.6-26.971-5.029l-432.229-157.486c-15.543-5.714-28.114-15.314-37.486-29.029-9.371-13.486-14.171-28.571-14.171-45.029v-472.686c0-14.4 3.657-27.657 10.971-40s17.371-21.943 30.171-29.029l432.457-236.343c11.429-6.629 24-9.829 37.486-9.829 0.457 0 0.914 0 1.371 0s0.914 0 1.371 0c13.486 0 26.057 3.2 37.486 9.829l432.457 236.343c12.8 6.857 22.629 16.686 30.171 29.029s10.971 25.6 10.971 40v472.914c-0.229 16.457-5.029 31.314-14.4 45.029zM72.457 285.943v74.057l440.686-210.286 438.629 210.286v-74.057l-438.629-238.4-440.686 238.4zM513.143 300.343l-440.686 196.343v82.514l440.686-181.029 438.629 183.771v-85.029l-438.629-196.571z" />
+<glyph unicode="&#xe620;" glyph-name="cluster" data-tags="cluster" d="M-1.371 547.886v146.743c0 9.829 3.657 18.514 10.971 25.829s15.771 10.971 25.829 10.971h954.286c9.829 0 18.514-3.657 25.829-10.971s10.971-15.771 10.971-25.829v-146.743c0-10.057-3.657-18.514-10.971-25.829s-15.771-10.971-25.829-10.971h-954.514c-10.057 0-18.514 3.657-25.829 10.971-7.086 7.314-10.743 15.771-10.743 25.829zM866.514 584.457h86.171v73.371h-86.171v-73.371zM84.114 584.457h86.171v73.371h-86.171v-73.371zM223.543 584.457h86.171v73.371h-86.171v-73.371zM362.743 584.457h86.171v73.371h-86.171v-73.371zM502.171 584.457h86.171v73.371h-86.171v-73.371zM-1.371-36.114v146.743c0 9.829 3.657 18.514 10.971 25.829s15.771 10.971 25.829 10.971h954.286c9.829 0 18.514-3.657 25.829-10.971s10.971-15.771 10.971-25.829v-146.743c0-10.057-3.657-18.514-10.971-25.829s-15.771-10.971-25.829-10.971h-954.514c-10.057 0-18.514 3.657-25.829 10.971-7.086 7.314-10.743 16-10.743 25.829zM866.514 0.686h86.171v73.371h-86.171v-73.371zM84.114 0.686h86.171v73.371h-86.171v-73.371zM223.543 0.686h86.171v73.371h-86.171v-73.371zM362.743 0.686h86.171v73.371h-86.171v-73.371zM502.171 0.686h86.171v73.371h-86.171v-73.371zM-1.371 253.943v146.743c0 9.829 3.657 18.514 10.971 25.829s15.771 10.971 25.829 10.971h954.286c9.829 0 18.514-3.657 25.829-10.971s10.971-15.771 10.971-25.829v-146.743c0-10.057-3.657-18.514-10.971-25.829s-15.771-10.971-25.829-10.971h-954.514c-10.057 0-18.514 3.657-25.829 10.971-7.086 7.314-10.743 16-10.743 25.829zM866.514 290.743h86.171v73.371h-86.171v-73.371zM84.114 290.743h86.171v73.371h-86.171v-73.371zM223.543 290.743h86.171v73.371h-86.171v-73.371zM362.743 290.743h86.171v73.371h-86.171v-73.371zM502.171 290.743h86.171v73.371h-86.171v-73.371zM-2.286 779.2c-2.743 5.714 0.229 12.8 8.686 21.029 0 0 142.171 127.314 152.686 139.657s24 9.829 24 9.829h658.286c0 0 11.886 1.371 22.629-10.286 10.514-11.657 151.086-139.2 151.086-139.2 8.457-8.457 11.429-15.314 8.686-21.029s-9.829-8.686-21.486-8.686h-983.314c-11.429 0-18.743 2.971-21.257 8.686z" />
+<glyph unicode="&#xe621;" glyph-name="container-node" data-tags="container-node" d="M0.914 346.743c-2.743 10.743 0.229 24.229 8.686 40 0 0 141.714 301.714 152.229 325.257s23.771 18.514 23.771 18.514h655.771c0 0 11.886 2.743 22.4-19.657s150.629-324.114 150.629-324.114c8.457-15.771 11.2-29.257 8.686-40-2.743-10.971-9.829-16.229-21.257-16.229h-979.657c-11.429 0-18.514 5.486-21.257 16.229zM1.829 109.028v146.743c0 9.829 3.657 18.514 10.971 25.829s15.771 10.971 25.6 10.971h949.029c9.829 0 18.514-3.657 25.6-10.971 7.314-7.314 10.971-15.771 10.971-25.829v-146.743c0-10.057-3.657-18.514-10.971-25.829s-15.771-10.971-25.6-10.971h-949.257c-10.057 0-18.514 3.657-25.6 10.971s-10.743 15.771-10.743 25.829zM864.914 145.6h85.714v73.371h-85.714v-73.371zM86.857 145.6h85.714v73.371h-85.714v-73.371zM225.6 145.6h85.714v73.371h-85.714v-73.371zM363.886 145.6h85.714v73.371h-85.714v-73.371zM502.629 145.6h85.714v73.371h-85.714v-73.371z" />
+<glyph unicode="&#xe623;" glyph-name="registry" data-tags="registry" d="M799.314 529.6c3.2 5.257 4.8 11.2 4.8 17.371v226.971c0 7.086-2.057 13.714-5.943 19.657-4.114 5.943-9.371 10.057-16 12.571l-184.914 68.571c-3.886 1.371-7.771 2.057-11.657 2.057-0.229 0-0.457 0-0.457 0-0.229 0-0.457 0-0.457 0-3.886 0-7.771-0.686-11.657-2.057l-184.914-68.571c-6.629-2.514-11.886-6.629-16-12.571s-5.943-12.343-5.943-19.657v-226.971c0-6.171 1.6-12.114 4.8-17.371s7.543-9.6 12.8-12.571l184.914-73.829c4.8-2.743 10.286-4.343 16-4.343 0.229 0 0.457 0 0.457 0s0.457 0 0.457 0c5.714 0 11.2 1.371 16 4.343l184.914 73.829c5.257 2.971 9.6 7.086 12.8 12.571zM770.286 574.628l-185.371-82.286-185.6 82.286v32.229l185.6-78.4 185.371 78.4v-32.229zM770.286 678.857l-185.143-84.8-185.6 84.8v35.886l185.6-78.171 185.371 79.314-0.229-37.029zM486.4 355.2l-216 80c-4.571 1.6-8.914 2.514-13.486 2.514-0.229 0-0.457 0-0.686 0s-0.457 0-0.686 0c-4.571 0-8.914-0.914-13.486-2.514l-216-80c-7.771-2.971-13.943-7.771-18.743-14.629-5.029-6.857-7.314-14.629-7.314-22.857v-264.686c0-7.314 1.829-14.171 5.486-20.343s8.686-11.2 15.086-14.629l216-86.171c5.714-3.429 11.886-5.029 18.743-5.029 0.229 0 0.457 0 0.686 0s0.457 0 0.686 0c6.857 0 13.029 1.6 18.743 5.029l216 110.4c6.4 3.429 11.429 8.457 15.086 14.629s5.486 13.029 5.486 20.343v240.457c0 8.229-2.286 16-7.086 22.857-4.571 6.857-10.743 11.657-18.514 14.629zM472.686 87.543l-216.686-98.514-216.914 96v37.714l216.914-91.429 216.686 93.943v-37.714zM472.686 206.857l-216.686-98.971-216.914 98.971v41.829l216.914-91.2 216.686 92.571v-43.2zM1144.457 355.2l-216 80c-4.571 1.6-8.914 2.514-13.486 2.514-0.229 0-0.457 0-0.686 0s-0.457 0-0.686 0c-4.571 0-8.914-0.914-13.486-2.514l-216-80c-7.771-2.971-13.943-7.771-18.743-14.629s-7.086-14.4-7.086-22.857v-264.686c0-7.314 1.829-14.171 5.486-20.343s8.686-11.2 15.086-14.629l216-86.171c5.714-3.429 11.886-5.029 18.743-5.029 0.229 0 0.457 0 0.686 0s0.457 0 0.686 0c6.857 0 13.029 1.6 18.743 5.029l216 110.4c6.4 3.429 11.429 8.457 15.086 14.629s5.486 13.029 5.486 20.343v240.457c0 8.229-2.286 16-7.086 22.857s-10.971 11.657-18.743 14.629zM1130.971 87.543l-216.686-98.514-216.914 96v37.714l216.914-91.429 216.686 93.943v-37.714zM1130.971 206.857l-216.686-98.971-216.914 98.971v41.829l216.914-91.2 216.686 92.571v-43.2z" />
+<glyph unicode="&#xe624;" glyph-name="replicator" data-tags="replicator" d="M1.6 152.228v180.571c0 10.971 3.2 21.029 9.371 30.4s14.4 16.229 24.686 20.8l184.457 80.686v173.714c0 10.971 3.2 21.029 9.371 30.4s14.4 16.229 24.686 20.8l200.457 83.429c6.629 2.971 13.943 4.343 21.714 4.343s15.086-1.371 21.714-4.343l198.171-83.429c10.286-4.571 18.514-11.657 24.686-20.8 6.171-9.371 9.371-19.429 9.371-30.4v-173.714l186.057-80.686c10.514-4.571 18.743-11.657 24.914-20.8 6.171-9.371 9.143-19.429 9.143-30.4v-180.571c0-10.514-2.743-20.114-8.229-29.029s-13.029-15.771-22.629-20.343l-194.971-97.143c-7.314-4.114-15.543-6.171-24.914-6.171s-17.6 2.057-24.914 6.171l-195.2 97.143c-1.371 0.686-2.514 1.143-2.971 1.829-0.686-0.686-1.6-1.143-2.971-1.829l-195.657-97.143c-7.314-4.114-15.543-6.171-24.914-6.171s-17.6 2.057-24.914 6.171l-195.657 97.143c-9.6 4.571-17.143 11.429-22.629 20.343s-8.229 18.743-8.229 29.029zM76.571 341.257l176.457-75.2 176.457 75.2-176.457 75.2-176.457-75.2zM280.914 69.028l167.543 83.429v136.229l-167.543-71.086c0-0.229 0-148.571 0-148.571zM284.114 639.771l192.457-82.057 192.457 82.057-192.457 82.057-192.457-82.057zM504.457 393.143l167.543 71.543v115.429l-167.543-71.086v-115.886zM523.657 341.257l176.457-75.2 176.457 75.2-176.457 75.2-176.457-75.2zM728 69.028l167.543 83.429v136.229l-167.543-71.086v-148.571zM1160.457 476.8c-5.943 8.914-13.943 15.771-24.229 20.343l-186.057 78.4v168.457c0 10.743-2.971 20.571-9.143 29.486s-14.171 15.771-24 20.343l-187.657 80.914c-6.4 2.743-13.486 4.114-21.257 4.114-7.543 0-14.629-1.371-21.257-4.114l-119.086-51.429c6.629 2.743 13.714 4.343 21.257 4.343 7.771 0 14.857-1.371 21.257-4.343l201.6-86.4c10.057-4.571 18.057-11.429 24.229-20.343 6.171-9.143 9.143-18.971 9.143-29.714v-169.829l185.143-78.857c10.286-4.571 18.286-11.429 24.229-20.343 5.943-9.143 8.914-18.971 8.914-29.714v-176.686c0-10.286-2.743-19.657-8-28.343-1.143-1.829-2.514-3.657-3.886-5.486l87.086 46.4c9.371 4.571 16.686 11.2 21.943 19.886s8 18.057 8 28.343v175.314c0.686 10.514-2.286 20.343-8.229 29.257z" />
+<glyph unicode="&#xe625;" glyph-name="route" data-tags="route" d="M1102.4 620.8l-150.4 146.971v-109.486h-146.743v-73.143h146.743v-109.714zM297.829 181.943l-150.4 146.971v-109.486h-146.743v-73.143h146.743v-109.714zM1021.486 440l-437.029-1.143v146.971h36.8l74.971 72.457h-111.771v137.829c0.914 0 2.057-0.229 2.971-0.229 24.686-18.286 47.086-39.543 67.2-63.314 17.6-20.8 33.371-43.886 47.314-68.571l62.171 60.114c-2.971 5.029-5.943 10.057-9.143 15.086 5.029-2.971 10.057-6.171 14.857-9.6l54.4 52.571 3.2 4.8c-13.029 9.371-26.743 18.286-40.914 26.743-72.686 42.514-152.229 63.771-238.4 63.771s-165.714-21.257-238.4-63.771c-72.686-42.514-130.286-100.114-172.8-172.8-42.514-73.143-63.771-152.686-63.771-238.857 0-12.343 0.457-24.457 1.371-36.343l437.486 0.686v-146.971h-35.657l-74.971-72.457h110.629v-138.971c-1.143 0-2.514 0.229-3.657 0.229-23.771 18.057-45.486 38.629-65.143 61.943-18.057 21.257-34.057 44.8-48.457 70.4l-62.171-60.114c3.2-5.486 6.4-10.743 9.6-16-5.257 3.2-10.514 6.629-15.771 10.057l-58.514-56.457c13.257-9.6 27.2-18.743 41.829-27.2 72.686-42.514 152.229-63.771 238.4-63.771s165.714 21.257 238.4 63.771c72.686 42.514 130.286 100.114 172.8 172.8s63.771 152.229 63.771 238.4c-0.229 12.8-0.686 25.371-1.6 37.943zM248.914 438.857h-94.857c3.657 40.457 13.714 79.314 29.714 116.8 4.571 10.286 9.371 20.343 14.4 30.171h75.2c-13.714-46.857-21.714-96-24.457-146.971zM299.657 658.286h-53.029c6.857 8.229 14.171 16 21.714 23.543 22.171 22.171 46.857 41.371 74.286 57.829-10.971-17.6-21.257-35.886-30.857-55.086-4.343-8.686-8.457-17.371-12.114-26.286zM512 438.857h-183.543c3.2 50.286 13.486 98.743 30.4 145.143 0.229 0.686 0.457 1.143 0.686 1.829h152.457v-146.971zM512 658.286h-120c14.857 27.429 32 52.571 51.2 75.429 19.657 23.314 41.6 44.114 65.6 62.171 1.143 0 2.057 0.229 3.2 0.229v-137.829zM654.629 69.028c-18.971-22.629-40-42.743-63.086-60.343-2.286-0.229-4.8-0.457-7.086-0.686v138.971h122.743c-15.314-28.571-32.914-54.4-52.571-77.943zM584.457 219.428v146.971h185.143c-3.2-50.971-13.257-99.886-30.171-146.971h-154.971zM827.886 122.286c-21.029-21.029-44.571-39.543-70.4-55.543 10.057 16.457 19.657 33.371 28.343 51.429 4.8 9.6 9.143 19.2 13.257 29.029h51.429c-7.086-8.686-14.629-17.143-22.629-24.914zM912.229 248.457c-4.343-10.057-8.914-19.657-13.714-29.029h-73.6c13.486 46.857 21.257 96 23.771 146.971h93.486c-3.657-40.686-13.486-80-29.943-117.943z" />
+<glyph unicode="&#xe800;" glyph-name="builder-image" data-tags="builder-image" d="M1009.829 759.086c-9.371 13.486-21.943 23.086-37.486 28.8l-433.143 157.714c-8.686 3.2-17.371 4.8-26.057 4.8-0.229 0-0.457 0-0.686 0h-0.457c-0.229 0-0.457 0-0.686 0-8.686-0.229-17.371-1.829-26.057-4.8l-432.914-157.486c-15.543-5.714-28.114-15.314-37.486-28.8s-14.171-28.571-14.171-44.8v-472.686c0-14.4 3.657-27.657 10.971-40s17.371-21.943 30.171-29.029l433.143-236.114c11.2-6.4 23.314-9.6 36.343-9.829 0.229 0 0.457 0 0.686 0h0.457c0.229 0 0.457 0 0.686 0 13.029 0.229 25.143 3.429 36.343 9.829l433.371 236.343c12.8 6.857 22.857 16.686 30.171 29.029s10.971 25.6 10.971 40v472.229c0 16.457-4.8 31.314-14.171 44.8zM512 857.6l386.057-142.171-386.057-140.114-379.886 139.886 379.886 142.4zM438.857 337.143c-53.486 21.257-235.657 93.486-318.171 126.4l219.2 75.429 98.971-35.657v-166.171zM585.143 503.086l99.657 35.886 219.2-75.429c-82.971-32.914-266.286-105.829-318.857-126.629v166.171zM73.143 632l156.8-53.257-156.8-53.029v106.286zM73.143 375.543l120.686-49.829-120.686-40.457v90.286zM292.114 281.828l146.743-65.6v-153.6l-308.343 166.857 161.6 52.343zM585.143 62.4v153.829l147.429 65.829 161.6-52.114-309.029-167.543zM951.314 286.4l-120.457 39.314 120.457 50.971v-90.286zM951.314 526.857l-156.571 51.657 156.571 54.4v-106.057z" />
+<glyph unicode="&#xe900;" glyph-name="trend-down" data-tags="trend-down" d="M1024 130.235v405.353c-0.311 14.638-6.224 29.271-16.809 39.858-10.587 10.585-24.907 16.187-39.541 16.498l-46.699 0.002c-14.946 0-29.573-5.915-40.162-16.503-10.585-10.585-16.503-25.221-16.187-39.856l-0.315-182.281-331.95 331.952c-7.767 7.767-19.719 7.767-27.488 0l-139.253-139.255-248.624 248.617-114.75-114.743 349.625-349.63c7.771-7.769 19.723-7.769 27.493 0l133.55 133.55 231.847-230.51-182.75-0.313c-14.638 0.313-29.271-5.605-39.856-16.19-10.585-10.587-16.501-25.221-16.19-39.856v-46.697c0-14.942 5.605-29.266 16.19-39.851 10.585-10.587 25.216-16.503 40.16-16.503h405.353c14.185-0.304 28.066 5.554 38.546 15.554 4.011 2.238 7.065 5.874 8.581 10.306 5.904 9.035 9.23 19.598 9.23 30.496z" />
+<glyph unicode="&#xe901;" glyph-name="trend-up" data-tags="trend-up" d="M1014.775 778.658c-1.515 4.432-4.569 8.071-8.581 10.306-10.48 10-24.361 15.858-38.546 15.554l-405.353-0.002c-14.944 0-29.575-5.915-40.16-16.501s-16.19-24.907-16.19-39.851v-46.697c-0.311-14.633 5.605-29.266 16.19-39.854 10.585-10.585 25.216-16.501 39.854-16.19l182.75-0.311-231.847-230.51-133.55 133.55c-7.769 7.769-19.721 7.769-27.493 0l-349.625-349.63 114.75-114.745 248.624 248.619 139.253-139.255c7.769-7.767 19.721-7.767 27.49 0l331.947 331.95 0.313-182.281c-0.313-14.633 5.605-29.269 16.19-39.854 10.587-10.587 25.216-16.503 40.162-16.503l46.699 0.002c14.631 0.311 28.953 5.913 39.538 16.498 10.587 10.587 16.501 25.218 16.811 39.856v405.355c0 10.898-3.326 21.461-9.227 30.491z" />
+<glyph unicode="&#xe902;" glyph-name="build" data-tags="build" d="M1010.971 279.771c-9.371 13.486-21.943 23.314-37.486 29.029l-30.171 10.971-129.829-51.886 85.714-31.771-384.229-140.343-0.914 0.229-382.171 139.657 83.2 31.086-132.8 53.029-30.171-10.971c-15.543-5.714-28.114-15.314-37.486-29.029-8.229-11.886-13.029-24.914-13.943-39.086h-0.229v-12.343l0.457-0.229c1.143-11.657 4.571-22.4 10.743-32.686 7.314-12.343 17.371-21.943 30.171-29.029l433.6-174.857c11.2-6.4 23.314-9.6 36.571-9.829v0c0.229 0 0.457 0 0.686 0 0 0 0.229 0 0.229 0s0.229 0 0.229 0 0.457 0 0.686 0v0c13.029 0.229 25.371 3.429 36.571 9.829l433.829 175.086c12.8 7.086 22.857 16.686 30.171 29.029 6.171 10.286 9.6 21.029 10.743 32.686l0.457 0.229v15.086l-0.457-0.229c-1.829 13.029-6.4 25.143-14.171 36.343zM1010.971 520.914c-9.371 13.486-21.943 23.314-37.486 29.029l-30.171 10.971-129.829-51.886 85.714-31.771-384.229-140.343-0.914 0.229-382.171 139.657 83.2 31.086-132.8 52.8-30.171-10.971c-15.543-5.714-28.114-15.314-37.486-29.029-8.229-11.886-13.029-24.914-13.943-39.086h-0.229v-12.343l0.457-0.229c1.143-11.657 4.571-22.4 10.743-32.686 7.314-12.343 17.371-21.943 30.171-29.029l433.6-174.629c11.2-6.4 23.314-9.6 36.571-9.829v0c0.229 0 0.457 0 0.686 0 0 0 0.229 0 0.229 0s0.229 0 0.229 0 0.457 0 0.686 0v0c13.029 0.229 25.371 3.429 36.571 9.829l433.829 175.086c12.8 7.086 22.857 16.686 30.171 29.029 6.171 10.286 9.6 21.029 10.743 32.686l0.457 0.229v14.857l-0.457-0.229c-1.829 13.257-6.4 25.371-14.171 36.571zM780.571 675.2l-115.886-42.514 31.771-87.543 98.057 35.429-0.457 0.229 18.286 6.629zM359.314 633.6l-115.886 42.514-32.229-89.143 116.114-42.057zM1024.686 722.743c-1.371 13.029-5.943 25.371-13.714 36.571-9.371 13.486-21.943 23.314-37.486 29.029l-433.829 157.714c-8.686 3.2-17.371 4.8-26.057 4.8v0c-0.229 0-0.457 0-0.686 0 0 0-0.229 0-0.229 0s-0.229 0-0.229 0-0.457 0-0.686 0v0c-8.686-0.229-17.371-1.829-26.057-4.8l-433.829-157.714c-15.314-5.943-27.886-15.543-37.486-29.029-8.229-12.114-12.8-25.143-13.943-39.314h-0.229v-12.343l0.457-0.229c1.143-11.657 4.571-22.4 10.743-32.686 7.314-12.343 17.371-21.943 30.171-29.029l98.743-39.771 0.229 0.686 32.229 89.371 4.8 1.829-45.943 16.686 383.086 142.629 384.229-142.4-50.057-18.286 2.057-1.829 31.771-88 2.057-1.371 98.971 40c12.8 7.086 22.857 16.686 30.171 29.029 6.171 10.286 9.6 21.029 10.743 32.686l0.457 0.229v15.086l-0.457 0.457zM512.229 577.828l-82.514 30.171-32-88.457 32.914-11.886h-1.829l44.114-17.829c11.2-6.4 23.314-9.6 36.571-9.829v0c0.229 0 0.457 0 0.686 0 0 0 0.229 0 0.229 0s0.229 0 0.229 0 0.457 0 0.686 0v0c13.029 0.229 25.371 3.429 36.571 9.829l44.114 17.829 34.286 12.343-32 87.086-81.143-29.714-0.914 0.457z" />
+<glyph unicode="&#xe903;" glyph-name="cloud-security" data-tags="cloud-security" horiz-adv-x="1097" d="M548.343 597.257c-22.4 0-41.6-8-57.371-23.771s-23.771-34.971-23.771-57.371v-60.8h162.057v60.8c0 22.4-8 41.6-23.771 57.371-15.543 16-34.743 23.771-57.143 23.771zM1049.143 427.657c-32 39.771-72.686 65.371-121.829 76.8 15.543 24 23.314 50.286 23.314 78.857 0 40.457-14.171 74.971-42.971 103.543-28.114 28.571-62.629 42.971-103.086 42.971-36.571 0-68.114-11.886-94.857-35.429-22.4 54.171-58.286 97.829-107.2 131.429s-103.543 50.286-163.657 50.286c-80.686 0-149.714-28.571-206.857-85.714s-85.714-126.171-85.714-206.857c0-5.714 0.457-13.943 1.143-24.686-44.114-20.571-79.771-51.657-106.971-93.486-26.971-41.6-40.457-87.543-40.457-137.829 0-70.4 25.143-130.743 75.2-180.8s110.4-75.2 180.8-75.2h621.714c60.571 0 112.229 21.486 155.2 64.229 42.971 42.971 64.229 94.629 64.229 155.2 0 51.429-16 96.914-48 136.686zM730.743 250.057c0-8.457-2.971-15.543-8.914-21.486s-13.029-8.914-21.486-8.914h-304c-8.457 0-15.543 2.971-21.486 8.914s-8.914 13.029-8.914 21.486v175.314c0 8.457 2.971 15.543 8.914 21.486s13.029 8.914 21.486 8.914h10.057v60.8c0 38.857 13.943 72 41.829 99.886s61.257 41.829 100.114 41.829 72.229-13.943 100.114-41.829c27.886-27.886 41.829-61.029 41.829-99.886v-60.8h10.057c8.457 0 15.543-2.971 21.486-8.914s8.914-13.029 8.914-21.486v-175.314z" />
+<glyph unicode="&#xe904;" glyph-name="cloud-tenant" data-tags="cloud-tenant" horiz-adv-x="1097" d="M1041.6 471.771c-29.486 33.371-68.571 63.543-141.714 89.143 41.143 96 0.457 151.314-28.343 179.886-28.114 28.571-62.629 42.971-103.086 42.971-36.571 0-68.114-11.886-94.857-35.429-0.457 0.686-0.914 1.371-1.371 1.829l-73.371-544.457-453.029 353.6c-43.657-20.571-79.086-51.429-106.057-93.029s-40.457-87.543-40.457-137.829c0-70.4 25.143-130.743 75.2-180.8s110.4-75.2 180.8-75.2h621.714c60.571 0 112.229 21.486 155.2 64.229 42.971 42.971 64.229 105.6 64.229 155.2 0 24.686 10.971 105.829-54.857 179.886zM132.114 655.314l421.486-329.143 68.343 506.743c-74.286 102.629-162.286 117.943-217.829 117.943-74.971 0-139.429-26.514-192.457-79.771s-79.771-117.486-79.771-192.457c0-5.257 0.457-13.029 1.143-22.857-0.229-0.229-0.686-0.229-0.914-0.457z" />
+<glyph unicode="&#xe905;" glyph-name="project" data-tags="pficon-project" d="M367.982-71.022l-2.267 217.307c-47.47 43.447-72.411 89.673-72.411 181.175v0 0c-0.805 110.665 38.107 257.682 183.223 257.682h71.461c146.651 0.219 182.199-146.286 183.15-257.17v0c0-91.721-20.846-136.85-70.656-182.418v0l-2.267-216.137zM658.286 768c0-80.823-65.536-146.359-146.359-146.359s-146.359 65.536-146.359 146.359c0 80.823 65.536 146.359 146.359 146.359s146.359-65.536 146.359-146.359zM292.571 695.15c0-60.709-49.225-109.861-109.861-109.861s-109.861 49.225-109.861 109.861c0 60.709 49.225 109.861 109.861 109.861s109.861-49.225 109.861-109.861zM292.864-0.293l0.439 146.871c0 0-74.825 41.326-75.922 183.223v0 0 0 0c-1.024 79.36 14.19 151.040 75.776 218.917h-89.673c-203.483-0.146-199.461-114.395-200.997-193.024 1.317-65.902-0.805-136.558-0.805-136.558l1.682-219.136zM951.223 695.15c0-60.709-49.225-109.861-109.861-109.861s-109.861 49.225-109.861 109.861c0 60.709 49.225 109.861 109.861 109.861s109.861-49.225 109.861-109.861zM733.403-0.293l-0.439 146.871c0 0 71.826 63.781 73.582 183.223v0 0 0 0c1.024 79.36-11.922 151.040-73.509 218.917v0h87.406c203.483-0.146 201.728-114.395 203.337-193.024-1.317-65.902-0.439-136.558-0.439-136.558l0.658-219.136z" />
+<glyph unicode="&#xe906;" glyph-name="enterprise" data-tags="enterprise" d="M511.543 950.857h-73.143l-438.4-109.714v-772.571l584.457-141.714h73.143l365.257 146.286v768l-511.314 109.714zM584.686 4.571l-73.143 17.371v109.486l-365.486 88v-111.086l-72.914 17.371v624.229l511.543-113.6v-631.771zM949.714 122.743l-73.143-29.257v86.171l-146.057-57.6v-87.086l-73.143-29.257v616l292.343 112.686v-611.657zM146.057 512l365.486-82.286v147.429l-365.486 81.143zM146.057 292.571l365.486-86.857v147.429l-365.486 85.714zM876.8 618.514l-146.286-57.6v-146.286l146.286 57.6zM876.8 399.086l-146.286-57.6v-146.286l146.286 57.6z" />
+<glyph unicode="&#xe907;" glyph-name="flavor" data-tags="flavor" d="M56.229 804.8h-36.114c-10.057 0-19.2-9.6-19.2-19.886v-110.629l-0.229-584.229c0-10.057 9.371-16.914 19.2-16.914h36.114c10.057 0 17.143 6.857 17.143 16.914v694.857c0 10.057-7.086 19.886-16.914 19.886zM1006.857 804.8h-36.114c-10.057 0-19.2-9.6-19.2-19.886v-110.629l-0.229-584.229c0-10.057 9.371-16.914 19.2-16.914h36.114c10.057 0 17.143 6.857 17.143 16.914v694.857c0 10.057-7.086 19.886-16.914 19.886zM389.029 585.143h48.914v-74.057h-48.914v74.057zM841.6 877.257h-659.2c-20.571 0-35.886-17.829-35.886-38.4v-802.514c0-20.571 15.314-36.114 35.886-36.114h659.429c20.571 0 35.886 17.829 35.886 38.4v802.514c-0.229 20.571-15.543 36.114-36.114 36.114zM659.2 249.371h-58.743v-58.743h58.743v-58.971h-58.743v-58.743h-58.971v58.743h-58.743v-58.743h-58.743v58.743h-58.743v58.971h58.743v58.743h-58.743v58.743h58.743v58.743h58.743v-58.743h58.743v58.743h58.971v-58.743h58.743v-58.743zM731.886 585.371h-54.4v-146.514h-332.114v146.514h-54.629v220.343h441.143v-220.343zM486.857 585.143h48.914v-74.057h-48.914v74.057zM584.914 585.143h48.914v-74.057h-48.914v74.057z" />
+<glyph unicode="&#xe908;" glyph-name="memory" data-tags="memory" horiz-adv-x="1096" d="M1095.92 662.799v101.829c0 21.462-16.439 39.042-36.531 39.042l-1022.858-0.037c-20.092 0-36.531-17.58-36.531-39.042v-652.301c0-21.462 16.439-39.042 36.531-39.042l314.62-0.041c0 0 12.557 2.511 12.557 14.612v133.337h75.801v-132.424c0 0-0.685-15.526 9.818-15.526l610.062 0.078c20.092 0 36.531 17.58 36.531 39.042v371.699l-0.037 178.765 0.037 0.007zM145.666 150.607h-73.061v106.167h73.061v-106.167zM290.647 382.349c0-7.534-6.165-13.699-13.699-13.699h-118.725c-7.534 0-13.699 6.165-13.699 13.699v261.423c0 7.534 6.165 13.699 13.699 13.699h118.725c7.534 0 13.699-6.165 13.699-13.699v-261.423zM292.93 150.607h-75.344v106.167h75.344v-106.167zM510.973 382.349c0-7.534-6.165-13.699-13.699-13.699h-118.725c-7.534 0-13.699 6.165-13.699 13.699v261.423c0 7.534 6.165 13.699 13.699 13.699h118.725c7.534 0 13.699-6.165 13.699-13.699v-261.423zM582.892 150.607h-73.061v106.167h73.061v-106.167zM584.034 382.349v261.423c0 7.534 6.165 13.699 13.699 13.699h118.725c7.534 0 13.699-6.165 13.699-13.699v-261.423c0-7.534-6.165-13.699-13.699-13.699h-118.725c-7.534 0-13.699 6.165-13.699 13.699zM731.298 150.607h-75.344v106.167h75.344v-106.167zM876.279 150.607h-75.344v106.167h75.344v-106.167zM950.482 382.349c0-7.534-6.165-13.699-13.699-13.699h-118.725c-7.534 0-13.699 6.165-13.699 13.699v261.423c0 7.534 6.165 13.699 13.699 13.699h118.725c7.534 0 13.699-6.165 13.699-13.699v-261.423zM1022.402 150.607h-73.061v106.167h73.061v-106.167zM-0.457 657.47c40.64 0 75.344-51.143 75.344-91.783s-34.704-92.012-75.344-92.012v183.795zM1095.883 473.675c-40.64 0-76.678 51.143-76.678 91.783s33.905 91.783 76.678 91.783z" />
+<glyph unicode="&#xe909;" glyph-name="network" data-tags="network" horiz-adv-x="1170" d="M1024 877.257h-877.714v-219.429h877.714v219.429zM949.257 731.428h-218.971v73.143h218.971v-73.143zM1080.457 276.114c-10.743 10.743-23.543 16-38.857 16h-54.857v146.057c0 19.886-7.314 36.8-21.714 51.429-14.4 14.4-31.543 21.714-51.429 21.714h-291.886v110.4h-73.143v-110.629h-292.343c-19.886 0-36.8-7.314-51.429-21.714-14.4-14.4-21.714-31.543-21.714-51.429v-146.057h-54.857c-15.314 0-28.114-5.257-38.857-16s-16-23.543-16-38.857v-182.629c0-15.314 5.257-28.114 16-38.857s23.543-16 38.857-16h182.629c15.314 0 28.114 5.257 38.857 16s16 23.543 16 38.857v182.629c0 15.314-5.257 28.114-16 38.857s-23.543 16-38.857 16h-54.857v146.057h292.571v-146.057h-54.857c-15.314 0-28.114-5.257-38.857-16s-16-23.543-16-38.857v-182.629c0-15.314 5.257-28.114 16-38.857s23.543-16 38.857-16h182.629c15.314 0 28.114 5.257 38.857 16s16 23.543 16 38.857v182.629c0 15.314-5.257 28.114-16 38.857s-23.543 16-38.857 16h-54.857v146.057h292.343v-146.057h-54.857c-15.314 0-28.114-5.257-38.857-16s-16-23.543-16-38.857v-182.629c0-15.314 5.257-28.114 16-38.857s23.543-16 38.857-16h182.629c15.314 0 28.114 5.257 38.857 16s16 23.543 16 38.857v182.629c0 15.314-5.257 28.343-16 39.086z" />
+<glyph unicode="&#xe90a;" glyph-name="regions" data-tags="regions" horiz-adv-x="1170" d="M585.371 293.486c-90.057 0-174.4 8-252.8 24.457-78.4 16.229-140.114 40.457-185.143 72.457v-97.143c0-26.286 19.657-50.743 58.743-73.143s92.343-40.229 159.771-53.257c67.2-13.029 140.571-19.657 219.657-19.657s152.229 6.629 219.657 19.657c67.2 13.029 120.686 30.857 159.771 53.257 39.086 22.629 58.743 46.857 58.743 73.143v97.143c-45.486-32-107.2-56-185.6-72.457-78.4-16.229-162.743-24.457-252.8-24.457zM585.371 74.286c-90.057 0-174.4 8-252.8 24.457-78.4 16.229-140.114 40.457-185.143 72.457v-97.143c0-26.286 19.657-50.743 58.743-73.143s92.343-40.229 159.771-53.257c67.2-13.029 140.571-19.657 219.657-19.657s152.229 6.629 219.657 19.657c67.2 13.029 120.686 30.857 159.771 53.257 39.086 22.629 58.743 46.857 58.743 73.143v97.143c-45.486-32-107.2-56-185.6-72.457-78.4-16.229-162.743-24.457-252.8-24.457zM585.371 512.686c-90.057 0-174.4 8-252.8 24.457-78.4 16.229-140.114 40.457-185.143 72.457v-97.143c0-26.286 19.657-50.743 58.743-73.143s92.343-40.229 159.771-53.257c67.2-13.029 140.571-19.657 219.657-19.657s152.229 6.629 219.657 19.657c67.2 13.029 120.686 30.857 159.771 53.257 39.086 22.629 58.743 46.857 58.743 73.143v97.143c-45.486-32-107.2-56-185.6-72.457-78.4-16.229-162.743-24.457-252.8-24.457zM965.029 877.943c-39.086 22.4-92.571 40.229-159.771 53.257s-140.571 19.657-219.657 19.657c-79.314 0-152.457-6.629-219.886-19.657-67.2-13.257-120.686-30.857-159.543-53.257-39.086-22.629-58.743-46.857-58.743-73.143v-73.143c0-26.286 19.657-50.743 58.743-73.143s92.571-40.229 159.771-53.257c67.2-13.029 140.571-19.657 219.657-19.657s152.457 6.629 219.657 19.657c67.2 13.029 120.686 30.857 159.771 53.257 39.086 22.629 58.743 46.857 58.743 73.143v73.143c0 26.286-19.657 50.743-58.743 73.143zM55.543 804.8h-36.114c-10.057 0-19.2-9.6-19.2-19.886v-110.629l-0.229-584.229c0-10.057 9.371-16.914 19.2-16.914h36.114c10.057 0 17.143 6.857 17.143 16.914v694.857c0 10.057-7.086 19.886-16.914 19.886zM1153.371 804.8h-36.114c-10.057 0-19.2-9.6-19.2-19.886v-110.629l-0.229-584.229c0-10.057 9.371-16.914 19.2-16.914h36.114c10.057 0 17.143 6.857 17.143 16.914v694.857c0 10.057-7.086 19.886-16.914 19.886z" />
+<glyph unicode="&#xe90b;" glyph-name="repository" data-tags="repository" horiz-adv-x="1170" d="M758.857 438.857c25.143 0 45.714-38.629 45.714-38.629l22.857-34.514h50.286v182.857c0 0-0.229 36.571-36.8 36.571-41.829 0-292.571 0-292.571 0l-25.829 40.686c0 0-15.086 32.457-47.086 32.457-36.571 0-121.6 0-146.286 0-36.571 0-36.571-36.571-36.571-36.571v-402.286h146.286v146.286c0 57.143 16 73.143 75.429 73.143 0 0 219.429 0 244.571 0zM539.2 731.428c25.143 0 45.714-38.629 45.714-38.629l22.857-34.514h50.286v182.857c0 0-0.229 36.571-36.8 36.571-41.829 0-292.571 0-292.571 0l-25.829 40.686c0 0-15.086 32.457-47.086 32.457-36.343 0-121.371 0-146.057 0-36.571 0-36.571-36.571-36.571-36.571v-402.286h146.057v146.286c0 57.143 16 73.143 75.429 73.143 0 0 219.429 0 244.571 0zM1060.343 292.571c-41.829 0-292.571 0-292.571 0l-25.829 40.686c0 0-15.086 32.457-47.086 32.457-36.571 0-121.6 0-146.286 0-36.571 0-36.571-36.571-36.571-36.571v-402.286h585.143v329.143c0 0-0.229 36.571-36.8 36.571z" />
+<glyph unicode="&#xe90c;" glyph-name="resource-pool" data-tags="resource-pool" horiz-adv-x="1096" d="M1020.571 804.571v91.429c0 30.171-24.686 54.857-54.629 54.857h-838.171c-29.943 0-54.629-24.686-54.629-54.857v-693.486c0-30.171 24.686-54.857 54.629-54.857h18.514l0.914-1.143v-219.429h803.886v219.429l0.686 1.143h14.171c30.171 0 54.629 24.686 54.629 54.857v64.229l1.143 2.057v535.771h-1.143zM293.029 0h-72.914v146.286h72.914v-146.286zM438.629 0h-72.914v146.286h72.914v-146.286zM584.457 0h-72.914v146.286h72.914v-146.286zM730.286 0h-72.914v146.286h72.914v-146.286zM800.914 660.571v0h-73.143v-73.143h72.914v-73.143h-72.914v-73.143h72.914v-73.143h-72.914v-73.143h-72.914v73.143h-72.914v-73.143h-72.914v73.143h-72.914v-73.143h-72.686v73.143h-72.914v73.143h72.914v73.143h-72.914v73.143h72.914v73.143h-72.914v73.143h72.914v73.143h72.914v-73.143h72.914v73.143h72.914v-73.143h72.914v73.143h72.914v-73.143h72.914v-73.143zM875.886 0h-72.914v146.286h72.914v-146.286z" />
+<glyph unicode="&#xe90d;" glyph-name="server" data-tags="server" d="M986.057 145.828h-949.714c-9.829 0-18.286-3.429-25.6-10.743-7.086-7.086-10.743-15.771-10.743-25.6v-146.057c0-10.057 3.657-18.514 10.971-25.6 7.086-7.086 15.771-10.743 25.6-10.743h949.943c9.829 0 18.286 3.429 25.6 10.743 7.086 7.086 10.743 15.771 10.743 25.6v146.057c0 9.829-3.657 18.514-11.2 25.6-7.086 7.086-15.771 10.743-25.6 10.743zM949.714 0h-365.257v73.143h365.257v-73.143zM1011.886 719.771c-7.086 7.086-15.771 10.743-25.6 10.743h-949.714c-9.829 0-18.286-3.657-25.6-10.971-7.086-7.086-10.743-15.771-10.743-25.6v-146.057c0-9.829 3.429-18.286 10.743-25.6 7.086-7.086 15.771-10.743 25.6-10.743h949.943c9.829 0 18.286 3.429 25.6 10.743 7.086 7.086 10.743 15.771 10.743 25.6v146.057c0 9.829-3.657 18.286-10.971 25.829zM949.714 584.228h-219.2v73.143h219.2v-73.143zM986.286 437.943h-949.714c-9.829 0-18.286-3.429-25.6-10.743-7.086-7.086-10.743-15.771-10.743-25.6v-146.057c0-9.829 3.429-18.286 10.743-25.6 7.086-7.086 15.771-10.743 25.6-10.743h949.943c9.829 0 18.286 3.429 25.6 10.743 7.086 7.086 10.743 15.771 10.743 25.6v146.057c0 10.057-3.657 18.514-10.971 25.6-7.086 7.086-15.771 10.743-25.6 10.743zM949.714 292.114h-584.457v73.143h584.457v-73.143zM33.6 767.314h956.114c33.829 0 41.143 29.943 24.686 46.4s-99.429 101.714-114.286 116.571-32 20.571-48 20.571c-6.629 0-126.629 0-265.371 0-49.6 0-101.257 0-150.629 0-138.743 0-258.743 0-265.371 0-16 0-33.143-5.714-48-20.571s-97.829-100.114-114.286-116.571-9.143-46.4 25.143-46.4z" />
+<glyph unicode="&#xe90e;" glyph-name="storage-domain" data-tags="storage-domain" horiz-adv-x="1097" d="M58.743 658.514c39.086-22.4 92.571-40.229 159.771-53.257s140.571-19.657 219.657-19.657c79.086 0 152.457 6.629 219.657 19.657s120.686 30.857 159.771 53.257c39.086 22.629 58.743 46.857 58.743 73.143v73.143c0 26.286-19.657 50.743-58.743 73.143s-92.571 40.229-159.771 53.257c-67.2 13.029-140.571 19.657-219.657 19.657-79.314 0-152.457-6.629-219.886-19.657-67.2-13.257-120.686-30.857-159.543-53.257-39.086-22.629-58.743-46.857-58.743-73.143v-73.143c0-26.286 19.657-50.743 58.743-73.143zM1075.429 8.914l-134.171 88.457c-13.257 9.371-26.743 13.029-37.257 11.657-0.457 0-0.914-0.229-1.371-0.229 24.686 37.257 36.571 82.971 30.857 130.514-12.8 106.286-109.486 181.943-215.771 168.914s-181.943-109.486-169.143-215.771 109.486-181.943 215.771-168.914c47.771 5.714 89.143 28.571 119.314 61.257 0.914-10.971 7.771-23.771 20.571-34.971l118.171-108.8c10.743-9.371 24-13.257 36.571-11.657 10.743 1.371 21.029 6.629 28.114 15.771 15.314 19.657 10.286 48.457-11.657 63.771zM756.8 87.543c-70.857-8.686-135.543 41.829-144 112.686s41.829 135.543 112.686 144 135.543-41.829 144-112.686-41.829-135.314-112.686-144zM58.743 439.314c39.086-22.4 92.343-40.229 159.771-53.257 67.2-13.029 140.571-19.657 219.657-19.657 26.971 0 53.029 0.686 78.629 2.286 42.514 62.4 110.629 106.743 191.543 116.571 50.743 6.171 99.886-2.057 143.314-21.486 16.457 15.543 24.686 31.543 24.686 48.686v97.143c-45.486-32-107.2-56-185.6-72.457-78.4-16.229-162.743-24.457-252.8-24.457s-174.4 8-252.8 24.457c-78.4 16.229-140.114 40.457-185.143 72.457v-97.143c0-26.286 19.657-50.743 58.743-73.143zM58.743 220.114c39.086-22.4 92.343-40.229 159.771-53.257 67.2-13.029 140.571-19.657 219.657-19.657 13.486 0 26.971 0.229 40.229 0.686-2.971 11.429-5.257 23.086-6.629 35.2-4.8 38.4-1.143 76.114 9.371 111.086-14.171-0.457-28.571-0.686-43.2-0.686-90.057 0-174.4 8-252.8 24.457-78.4 16.229-140.114 40.457-185.143 72.457v-97.143c0-26.286 19.657-50.743 58.743-73.143zM508.571 75.886c-23.086-1.143-46.629-1.829-70.4-1.829-90.057 0-174.4 8-252.8 24.457-78.4 16.229-140.114 40.457-185.143 72.457v-97.143c0-26.286 19.657-50.743 58.743-73.143s92.343-40.229 159.771-53.257c67.2-13.029 140.571-19.657 219.657-19.657s152.229 6.629 219.657 19.657c6.857 1.371 13.486 2.743 20.114 4.114-71.086 17.143-132.343 62.171-169.6 124.343z" />
+<glyph unicode="&#xe90f;" glyph-name="virtual-machine" data-tags="virtual-machine" horiz-adv-x="1170" d="M73.143 950.857h-73.143v-73.143c0-4.571 0-7.543 0-7.543h73.143v80.686zM0 801.6h73.143v-137.143h-73.143v137.143zM0 390.171v-24.914h73.143c21.486 0 39.086 0 39.086 0v73.143h-112.229v-48.229zM0 595.886h73.143v-137.143h-73.143v137.143zM536.457 950.857h137.143v-73.143h-137.143v73.143zM330.743 950.857h137.143v-73.143h-137.143v73.143zM742.171 950.857h137.143v-73.143h-137.143v73.143zM125.029 950.857h137.143v-73.143h-137.143v73.143zM797.943 438.4h81.371v-73.143h-81.371v73.143zM806.171 626.743h73.143v-137.143h-73.143v137.143zM386.514 438.4h137.143v-73.143h-137.143v73.143zM592.229 438.4h137.143v-73.143h-137.143v73.143zM1014.171 804.571h-134.857v27.886h-73.143v-27.886h-659.657v-181.943h-0.229v-477.714h0.229v-72h438.857v-72.914h-219.886v-73.143h585.829v72.914h-219.886v72.914l438.857 0.229v731.657h-156.114zM1024.229 219.886h-730.971v145.371h24.686v73.143h-24.686v184.229h-0.686v35.2h731.657v-437.943z" />
+<glyph unicode="&#xe910;" glyph-name="volume" data-tags="volume" d="M890.743 804.8c-39.086 22.4-92.571 40.229-159.771 53.257s-140.571 19.657-219.657 19.657c-79.314 0-152.457-6.629-219.886-19.657-67.2-13.257-120.686-30.857-159.543-53.257-39.086-22.629-58.743-46.857-58.743-73.143v-148.571c0-26.286 19.657-50.743 58.743-73.143s92.571-40.229 159.771-53.257c67.2-13.029 140.571-19.657 219.657-19.657s152.457 6.629 219.657 19.657c67.2 13.029 120.686 30.857 159.771 53.257 39.086 22.629 58.743 46.857 58.743 73.143v148.571c0 26.286-19.657 50.743-58.743 73.143zM511.086 364.114c-90.057 0-174.4 8-252.8 24.457-78.4 16.229-140.114 40.457-185.143 72.457v-243.429c0-26.286 19.657-50.743 58.743-73.143s92.343-40.229 159.771-53.257c67.2-13.029 140.571-19.657 219.657-19.657s152.229 6.629 219.657 19.657c67.2 13.029 120.686 30.857 159.771 53.257 39.086 22.629 58.743 46.857 58.743 73.143v243.429c-45.486-32-107.2-56-185.6-72.457-78.4-16.229-162.743-24.457-252.8-24.457z" />
+<glyph unicode="&#xe911;" glyph-name="zone" data-tags="zone" horiz-adv-x="1095" d="M984.457 804.571c-52.8 74.514-131.2 123.657-220.571 138.743-88.457 15.086-177.371-5.486-250.057-57.6-44.8-32-79.314-73.371-102.857-119.771-80.914 8-160.914-13.029-227.429-60.571-150.4-107.429-184.229-319.543-75.429-472.914 52.8-74.743 131.429-124.114 221.257-138.971 23.086-3.886 46.4-5.257 69.257-4.343 3.657-5.943 7.543-11.657 11.657-17.371 52.8-74.743 131.429-124.114 221.257-138.971 40.229-6.629 80.686-5.943 119.543 1.6 46.171 9.143 90.286 28.114 130.057 56.229 72.914 52.343 120.686 130.514 134.857 219.886 10.743 68.8 0.686 138.057-28.571 200 29.029 41.371 48.457 89.371 56.686 141.029 13.943 89.143-7.086 178.971-59.657 253.029zM556.571 826.057c30.629 21.943 64.914 36.571 101.029 43.657 30.629 5.943 62.4 6.4 93.943 0.914 70.171-11.657 131.429-50.286 172.8-108.571 60.8-85.943 64.686-195.429 19.2-281.6-52.343 64.914-125.257 107.886-207.771 121.829-23.314 3.886-46.857 5.257-69.943 4.343-3.657 5.943-7.543 11.886-11.657 17.6-42.286 59.657-100.8 102.857-168.229 125.486 17.6 29.257 41.371 55.314 70.629 76.343zM440.229 168.228c-31.086 74.971-26.286 159.086 10.514 228.114 40.686-51.2 94.4-88.686 155.429-109.257-17.6-29.257-41.143-55.314-70.4-76.343-29.029-20.571-61.486-34.971-95.543-42.514zM634.971 355.428c-54.857 17.371-102.4 52.114-136.686 100.114-0.686 0.914-1.143 1.829-1.829 2.743 9.6 9.6 20.343 18.743 31.771 26.743 29.029 20.8 61.486 34.971 95.543 42.514 22.857-55.543 26.057-116.343 11.2-172.114zM485.714 544.686c-8.229-5.943-16-11.886-23.543-18.514-17.143 50.971-18.514 105.143-5.257 155.2 50.514-15.771 94.629-46.171 128-88.229-34.971-10.286-68.571-26.514-99.2-48.457zM700.571 532.571c7.543-0.686 15.086-1.6 22.629-2.971 70.171-11.657 131.429-50.286 172.8-108.571 0.686-0.914 1.143-1.6 1.829-2.514-9.6-9.6-20.343-18.743-31.771-26.971-46.4-33.371-101.257-50.057-157.943-48.457 2.286 9.143 4.114 18.743 5.714 28.114 8.457 54.857 3.886 109.714-13.257 161.371zM341.486 165.943c-70.4 11.886-131.886 50.514-173.486 109.029-85.486 120.457-59.429 286.629 58.057 370.514 30.629 21.943 64.914 36.571 101.029 43.657 18.743 3.886 37.943 5.486 57.371 4.8-18.286-74.514-11.429-155.429 22.857-228.114-61.029-87.086-77.486-200-43.429-302.629-7.314 0.686-14.857 1.6-22.4 2.743zM837.714 50.514c-56.229-40.457-125.257-56.457-194.286-45.029-65.371 10.971-123.2 45.257-164.343 96.914 35.2 10.286 68.8 26.743 99.886 48.914 43.886 31.543 78.857 72.457 102.629 119.543 32.914-3.2 65.829-1.6 97.6 4.571 46.4 9.143 90.514 28.114 130.057 56.229 8 5.714 15.543 11.657 22.857 18.057 35.886-107.886 0.914-230.629-94.4-299.2z" />
+<glyph unicode="&#xe912;" glyph-name="resources-almost-full" data-tags="resources-almost-full" d="M954.743 694.171c45.714-78.4 68.571-164.114 68.571-256.914s-22.857-178.514-68.571-256.914c-45.714-78.4-107.886-140.571-186.286-186.286s-164.114-68.571-256.914-68.571c-92.8 0-178.514 22.857-256.914 68.571s-140.571 107.886-186.286 186.286c-45.486 78.4-68.343 164.114-68.343 256.914s22.857 178.514 68.571 256.914c45.714 78.4 107.886 140.343 186.286 186.057s164.114 68.571 256.914 68.571c92.8 0 178.514-22.857 256.914-68.571 78.171-45.714 140.343-107.657 186.057-186.057zM677.257 829.714c-52.571 22.629-107.886 34.057-165.486 34.057-57.829 0-112.914-11.429-165.486-34.057s-97.829-53.029-136-90.971c-37.943-37.943-68.343-83.2-90.971-136-22.629-52.571-34.057-107.886-34.057-165.486 0-57.829 11.429-112.914 34.057-165.486s53.029-97.829 90.971-136c37.943-37.943 83.2-68.343 136-90.971 52.571-22.629 107.886-34.057 165.486-34.057 57.829 0 112.914 11.429 165.486 34.057s97.829 53.029 136 90.971c37.943 37.943 68.343 83.2 90.971 136 22.629 52.571 34.057 107.886 34.057 165.486 0 57.829-11.429 112.914-34.057 165.486s-53.029 97.829-90.971 136c-37.943 37.943-83.429 68.343-136 90.971zM217.143 585.143c-21.943-44.114-34.286-93.714-34.286-146.286 0-181.486 147.657-329.143 329.371-329.143 181.486 0 329.143 147.657 329.143 329.143 0 52.571-12.343 102.171-34.286 146.286h-589.943z" />
+<glyph unicode="&#xe913;" glyph-name="warning-triangle" data-tags="pficon-warning-triangle-o" d="M511.488 949.321c6.656 0 13.093-0.878 19.456-2.487s12.142-4.169 17.481-7.461c5.998-3.365 11.118-7.314 15.506-11.995s8.119-10.021 11.483-15.945l437.979-842.24c6.656-11.995 9.801-23.918 9.509-35.913s-3.877-23.918-10.459-35.913c-3.365-5.998-7.168-11.118-11.483-15.506s-9.509-8.192-15.506-11.483c-5.339-2.706-10.971-4.827-16.969-6.51s-12.288-2.487-18.944-2.487h-876.032c-6.656 0-12.946 0.805-18.944 2.487s-11.63 3.803-16.969 6.51c-5.998 3.291-11.118 7.095-15.506 11.483s-8.192 9.509-11.483 15.506c-6.656 11.995-10.094 23.918-10.459 35.913s2.779 23.918 9.509 35.913l437.979 842.24c3.291 5.998 7.095 11.264 11.483 15.945s9.509 8.631 15.506 11.995c5.339 3.291 11.118 5.778 17.481 7.461s12.8 2.487 19.456 2.487zM132.974 73.289h759.296l-380.782 741.595-378.514-741.595zM583.387 156.526c-2.121-5.632-7.534-9.509-13.97-9.509-14.263 0-28.526 0-42.715 0-21.138 0-42.277 0-63.415 0-11.045 0-24.576 0.585-24.576 14.994 0 0 0 44.325 0 44.544 0 8.558 6.437 14.994 14.994 14.994 0 0 115.712 0 115.785 0 8.485 0 14.994-6.437 14.994-14.994 0 0 0-44.544 0-44.544 0-1.975-0.366-3.803-1.024-5.486zM583.826 301.934c-2.121-5.632-7.534-9.509-13.97-9.509-14.263 0-28.526 0-42.715 0-21.138 0-42.277 0-63.415 0-11.045 0-24.576 0.585-24.576 14.994 0 0 0 224.914 0 225.134 0 8.558 6.437 14.994 14.994 14.994 0 0 115.712 0 115.785 0 8.485 0 14.994-6.437 14.994-14.994 0 0 0-225.134 0-225.134 0-1.975-0.366-3.803-1.024-5.486z" />
+<glyph unicode="&#xe914;" glyph-name="private" data-tags="private" d="M954.514 695.314c-45.943 78.4-107.886 140.343-186.057 186.057s-163.657 68.571-256.457 68.571-178.286-22.857-256.457-68.571c-78.171-45.486-140.343-107.657-185.829-185.829-45.714-78.171-68.571-163.886-68.571-256.457s22.629-178.286 68.343-256.686c45.714-78.4 107.886-140.343 186.057-186.057s163.657-68.571 256.457-68.571 178.286 22.857 256.457 68.571c78.4 45.714 140.343 107.886 186.057 186.057s68.571 163.657 68.571 256.457c0 92.8-22.857 178.286-68.571 256.457zM809.143 252.8c0-29.943-11.657-58.286-32.914-79.543-21.029-21.257-49.371-32.914-79.543-32.914h-369.143c-30.171 0-58.286 11.657-79.543 32.914-21.257 21.029-32.914 49.371-32.914 79.543v209.143c0 29.943 11.657 58.286 32.914 79.543 7.314 7.314 15.314 13.257 24 18.286v6.629c0 64.686 24.457 123.429 70.629 169.6s104.914 70.629 169.6 70.629 123.429-24.457 169.371-70.629c46.171-46.171 70.629-104.914 70.629-169.6v-6.629c8.686-5.029 16.686-10.971 24-18.286 21.257-21.257 32.914-49.371 32.914-79.543v-209.143zM696.914 496.686h-21.943v69.714c0 44.571-16 82.743-48 114.743s-70.171 48-114.743 48-82.743-16-114.743-48-48-70.171-48-114.743v-69.714h-21.943c-9.6 0-17.829-3.429-24.686-10.057-6.857-6.857-10.057-15.086-10.057-24.686v-209.143c0-9.6 3.429-17.829 10.057-24.686 6.857-6.857 15.086-10.057 24.686-10.057h369.143c9.6 0 17.829 3.429 24.686 10.057 6.857 6.857 10.057 15.086 10.057 24.686v209.143c0 9.6-3.429 17.829-10.057 24.686-6.629 6.629-14.857 10.057-24.457 10.057zM419.429 496.686v69.714c0 25.6 9.143 47.543 27.2 65.6s40 27.2 65.6 27.2c25.6 0 47.543-9.143 65.6-27.2s27.2-40 27.2-65.6v-69.714h-185.6z" />
+<glyph unicode="&#xe915;" glyph-name="blueprint" data-tags="blueprint" d="M78.629 225.143c-3.657 3.657-5.486 8-5.486 12.8v55.086h-73.143v-55.086c0-25.143 8.914-46.629 26.971-64.686 17.829-17.829 39.543-26.971 64.686-26.971h91.429v73.143h-91.657c-5.029 0.457-9.143 2.286-12.8 5.714zM997.257 705.143c-17.829 17.829-39.543 26.971-64.686 26.971h-621.714c-25.143 0-46.629-8.914-64.686-26.971-17.829-17.829-26.971-39.543-26.971-64.686v-621.943c0-25.143 8.914-46.629 26.971-64.686 17.829-17.829 39.543-26.971 64.686-26.971h621.943c25.143 0 46.629 8.914 64.686 26.971 17.829 17.829 26.971 39.543 26.971 64.686v621.943c-0.229 25.143-9.143 46.629-27.2 64.686zM951.086 18.514c0-5.029-1.829-9.143-5.486-12.8s-8-5.486-12.8-5.486h-621.943c-5.029 0-9.143 1.829-12.8 5.486s-5.486 8-5.486 12.8v621.943c0 5.029 1.829 9.143 5.486 12.8s8 5.486 12.8 5.486h621.943c5.029 0 9.143-1.829 12.8-5.486s5.486-8 5.486-12.8v-621.943zM0 512.686h73.143v-147.429h-73.143v147.429zM0 732.114h73.143v-147.429h-73.143v147.429zM73.143 859.886c0 5.029 1.829 9.143 5.486 12.8s8 5.486 12.8 5.486h55.314v73.143h-55.314c-25.143 0-46.629-8.914-64.686-26.971-17.829-17.829-26.743-39.314-26.743-64.457v-55.771h73.143v55.771zM218.971 951.314h147.429v-73.143h-147.429v73.143zM726.171 872.686c3.657-3.657 5.486-8 5.486-12.8v-91.429h73.143v91.429c0 25.143-8.914 46.629-26.971 64.686-17.829 17.829-39.543 26.971-64.686 26.971h-55.543v-73.143h55.543c5.029-0.229 9.371-2.057 13.029-5.714zM438.4 951.314h147.429v-73.143h-147.429v73.143z" />
+<glyph unicode="&#xe916;" glyph-name="tenant" data-tags="tenant" d="M346.971 731.428c-35.657 0-65.829-12.343-90.743-37.257s-37.257-55.086-37.257-90.743 12.343-65.829 37.257-90.743c24.914-24.914 55.086-37.257 90.743-37.257s65.829 12.343 90.743 37.257c24.914 24.914 37.257 55.086 37.257 90.743s-12.343 65.829-37.257 90.743c-25.143 24.914-55.314 37.257-90.743 37.257zM676.571 731.428c-35.657 0-65.829-12.343-90.743-37.257-24.686-24.686-37.257-55.086-37.257-90.743s12.343-65.829 37.257-90.743c24.914-24.914 55.086-37.257 90.743-37.257s65.829 12.343 90.743 37.257c24.914 24.914 37.257 55.086 37.257 90.743s-12.343 65.829-37.257 90.743c-24.686 24.914-55.086 37.257-90.743 37.257zM742.171 538.286c-18.057-18.057-40-27.2-65.371-27.2s-47.314 9.143-65.371 27.2c-18.057 18.057-27.2 40-27.2 65.371s9.143 47.314 27.2 65.371c18.057 18.057 40 27.2 65.371 27.2s47.314-9.143 65.371-27.2c18.057-18.057 27.2-40 27.2-65.371s-8.914-47.314-27.2-65.371zM676.571 402.971c-35.657 0-65.829-12.343-90.743-37.257s-37.257-55.086-37.257-90.743c0-35.657 12.343-65.829 37.257-90.743s55.086-37.257 90.743-37.257 65.829 12.343 90.743 37.257c24.914 24.914 37.257 55.086 37.257 90.743s-12.343 65.829-37.257 90.743c-24.686 24.914-55.086 37.257-90.743 37.257zM742.171 209.6c-18.057-18.057-40-27.2-65.371-27.2s-47.314 9.143-65.371 27.2c-18.057 18.057-27.2 40-27.2 65.371s9.143 47.314 27.2 65.371c18.057 18.057 40 27.2 65.371 27.2s47.314-9.143 65.371-27.2c18.057-18.057 27.2-40 27.2-65.371s-8.914-47.314-27.2-65.371zM346.971 402.971c-35.657 0-65.829-12.343-90.743-37.257s-37.257-55.086-37.257-90.743c0-35.657 12.343-65.829 37.257-90.743s55.086-37.257 90.743-37.257c35.657 0 65.829 12.343 90.743 37.257s37.257 55.086 37.257 90.743c0 35.657-12.343 65.829-37.257 90.743s-55.086 37.257-90.743 37.257zM412.571 209.6c-18.057-18.057-40-27.2-65.371-27.2s-47.314 9.143-65.371 27.2c-18.057 18.057-27.2 40-27.2 65.371s9.143 47.314 27.2 65.371c18.057 18.057 40 27.2 65.371 27.2s47.314-9.143 65.371-27.2c18.057-18.057 27.2-40 27.2-65.371s-9.143-47.314-27.2-65.371zM954.743 695.543c-45.714 78.4-107.657 140.343-186.057 186.057s-163.886 68.571-256.686 68.571c-92.8 0-178.286-22.857-256.686-68.571s-140.343-107.657-186.057-186.057c-45.714-78.4-68.571-163.886-68.571-256.686s22.857-178.286 68.571-256.686 107.657-140.343 186.057-186.057 163.886-68.571 256.686-68.571c92.8 0 178.286 22.857 256.686 68.571s140.343 107.657 186.057 186.057 68.571 163.886 68.571 256.686c0 92.8-22.857 178.286-68.571 256.686zM904 273.371c-22.629-52.571-53.029-97.829-90.971-135.771s-83.2-68.343-135.771-90.971c-52.571-22.629-107.657-34.057-165.486-34.057-57.6 0-112.914 11.429-165.486 34.057s-97.829 53.029-135.771 90.971c-37.943 37.943-68.343 83.2-90.971 135.771s-34.057 107.657-34.057 165.486c0 57.6 11.429 112.914 34.057 165.486s53.029 97.829 90.971 135.771c37.943 37.943 83.2 68.343 135.771 90.971s107.657 34.057 165.486 34.057c57.6 0 112.914-11.2 165.486-34.057 52.571-22.629 97.829-53.029 135.771-90.971s68.343-83.2 90.971-135.771c22.629-52.571 34.057-107.657 34.057-165.486 0-57.6-11.2-112.914-34.057-165.486z" />
+<glyph unicode="&#xe917;" glyph-name="middleware" data-tags="middleware" d="M512 731.428c-161.371 0-292.571-131.2-292.571-292.571s131.2-292.571 292.571-292.571 292.571 131.2 292.571 292.571-131.2 292.571-292.571 292.571zM916.571 125.486c49.371 63.543 84.114 138.971 98.971 221.257 1.829 9.829-5.714 18.971-15.771 18.971h-79.314c-7.543 0-13.943-5.257-15.543-12.571-33.371-153.371-154.743-274.286-308.114-307.429-7.314-1.6-12.8-8-12.8-15.543v-79.543c0-10.057 9.143-17.6 18.971-15.771 82.286 14.629 157.714 49.371 221.257 98.286 6.4 5.029 15.314 4.343 21.029-1.371l100.343-100.343c2.971-2.971 7.086-4.8 11.2-4.8h51.2c8.914 0 16 7.086 16 16v48.914c0 4.343-1.6 8.229-4.8 11.2l-101.257 101.257c-5.714 6.171-6.171 15.086-1.371 21.486zM418.743 942.171c-81.6-15.086-156.8-49.6-219.886-98.971-6.4-5.029-15.543-4.343-21.257 1.371l-101.257 101.486c-3.2 3.2-7.086 4.8-11.429 4.8h-48.914c-8.914 0-16-7.086-16-16v-48.914c0-4.343 1.6-8.229 4.8-11.2l101.257-101.257c5.714-5.714 6.171-14.857 1.371-21.257-49.371-63.543-84.114-138.971-98.971-221.257-1.829-9.829 5.714-18.971 15.771-18.971h79.314c7.543 0 13.943 5.257 15.543 12.571 33.143 152.686 153.371 273.143 306.057 306.971 7.314 1.6 12.571 8 12.571 15.543v79.314c0 10.057-9.143 17.6-18.971 15.771zM920.457 512h79.314c10.057 0 17.6 9.143 15.771 18.971-14.857 81.6-49.371 156.571-98.057 220.114-5.029 6.4-4.343 15.314 1.371 21.029l100.343 100.114c2.971 2.971 4.8 7.086 4.8 11.429v51.2c0 8.914-7.086 16-16 16h-48.914c-4.343 0-8.229-1.6-11.2-4.8l-101.257-101.257c-5.714-5.714-14.857-6.171-21.257-1.371-63.543 49.371-138.971 84.114-221.257 98.971-9.829 1.829-18.971-5.714-18.971-15.771v-79.314c0-7.543 5.257-13.943 12.571-15.543 152.914-33.371 273.6-154.057 307.2-307.2 1.6-7.314 8-12.571 15.543-12.571zM103.543 365.714h-79.543c-10.057 0-17.6-9.143-15.771-18.971 14.857-82.286 49.6-157.714 98.971-221.257 5.029-6.4 4.343-15.543-1.371-21.257l-101.029-101.029c-3.2-3.2-4.8-7.086-4.8-11.429v-48.914c0-8.914 7.086-16 16-16h48.914c4.343 0 8.229 1.6 11.2 4.8l101.257 101.257c5.714 5.714 14.857 6.171 21.029 1.371 63.543-49.371 138.971-84.114 221.257-98.971 9.829-1.829 18.971 5.714 18.971 15.771v79.314c0 7.543-5.257 13.943-12.571 15.543-152.914 33.371-273.6 154.057-307.2 307.2-1.371 7.314-7.771 12.571-15.314 12.571z" />
+<glyph unicode="&#xe918;" glyph-name="bundle" data-tags="Bundle" d="M348.571 721.371l1.143-322.743 317.029-56.457 164.114 94.629 0.229 304.229-319.543 49.371zM658.514 874.743l-228.343 27.2-158.171-43.657 240.686-33.371zM1021.257 829.486v0.229l-0.686-0.229-299.886 36.571-145.143-50.286 313.6-44.343-0.457-299.2 125.486 80.229 7.086 276.343 0.457 0.229zM885.486 122.971l121.371 116.343 6.629 245.257-124.8-84.343zM349.714 318.171l-1.371-296.914 314.057-94.4 167.771 155.657 0.457 281.829-163.886-107.886zM450.971 802.514l-239.771 35.2-208.457-60.114 11.657-315.886 271.086-50.286-2.743 325.257zM25.6 117.714l259.886-80.229v293.943l-270.171 54.857z" />
+<glyph unicode="&#xe919;" glyph-name="domain" data-tags="domain" d="M866.971 522.743c7.086 7.086 10.743 15.771 10.743 25.829v365.486c0 9.829-3.657 18.286-10.971 26.057-7.086 7.086-15.771 10.743-25.829 10.743h-219.2c-9.829 0-18.286-3.657-25.829-10.971-7.086-7.086-10.743-15.771-10.743-25.829v-365.486c0-9.829 3.429-18.286 10.743-25.829 7.086-7.086 15.771-10.743 25.829-10.743h219.429c9.829 0 18.514 3.429 25.829 10.743zM804.571 658.286h-146.286v73.143h146.286v-73.143zM804.571 804.571h-73.143v73.143h73.143v-73.143zM548.343 438.857h-219.2c-9.829 0-18.286-3.657-25.829-10.971-7.086-7.086-10.743-15.771-10.743-25.6v-439.314c0-9.829 3.429-18.286 10.743-25.6 7.086-7.086 15.771-10.743 25.829-10.743h219.429c9.829 0 18.286 3.429 25.829 10.743 7.086 7.086 10.743 15.771 10.743 25.6v439.543c0 9.829-3.657 18.286-10.971 25.829-7.086 6.857-16 10.514-25.829 10.514zM512 146.286h-146.286v73.143h146.286v-73.143zM512 292.571h-73.143v73.143h73.143v-73.143zM512 0h-146.286v73.143h146.286v-73.143zM292.571 914.057c0 9.829-3.657 18.514-10.971 26.057-7.086 7.086-15.771 10.743-25.6 10.743h-219.886c-9.829 0-18.286-3.657-25.6-10.971-6.857-7.314-10.514-16-10.514-25.829v-292.343c0-9.829 3.429-18.514 10.743-25.829 7.086-7.086 15.771-10.743 25.6-10.743h220.114c9.829 0 18.286 3.429 25.6 10.743 7.086 7.086 10.743 15.771 10.743 25.829v292.343zM219.429 658.286h-146.286v73.143h146.286c0 0 0-73.143 0-73.143zM219.429 804.571h-73.143v73.143h73.143c0 0 0-73.143 0-73.143zM512 808v66.743c-0.457 0-1.143 0-1.6 0-50.743 0-99.429-8.686-144.686-24.457v-72c44.343 18.971 93.257 29.714 144.686 29.714 0.457 0 1.143 0 1.6 0zM150.857 512.228h-71.314c-4.114-24.229-6.4-49.371-6.4-74.971 0-129.829 56.457-246.4 146.286-326.4v107.429c-47.314 61.714-75.429 138.971-75.429 222.857 0 24.229 2.286 48 6.857 71.086zM804.571 222.628v-108.571c88 80 143.314 195.2 143.314 323.657 0 0.229 0 0.686 0 0.914h-70.857c-0.686-81.143-27.429-155.657-72.457-216zM950.857 878.857h73.143v-294.857h-73.143v294.857zM658.286 365.714h73.143v-365.714h-73.143v365.714z" />
+<glyph unicode="&#xe91a;" glyph-name="server-group" data-tags="server group" d="M841.143 731.428h182.857v-731.429h-182.857v731.429zM695.086 731.428h-658.514c-9.829 0-18.514-3.657-25.6-10.743-7.314-7.543-10.971-16-10.971-25.829v-731.657c0-9.829 3.657-18.514 10.743-25.6 7.314-7.314 15.771-10.743 25.6-10.743h658.743c9.829 0 18.514 3.657 25.6 10.743 7.314 7.314 10.743 15.771 10.743 25.6v731.657c0 9.829-3.657 18.514-10.743 25.6-7.314 7.314-15.771 10.971-25.6 10.971zM658.286 73.143h-438.857v109.714h438.857v-109.714zM658.286 292.571h-585.143v109.714h585.143v-109.714zM658.286 512h-219.429v109.714h219.429v-109.714zM22.4 768h686.629c11.429 0 18.743 2.971 21.257 8.686 2.743 5.714-0.229 12.8-8.686 21.257 0 0-142.4 130.514-152.914 142.857s-24 9.829-24 9.829h-361.143c0 0-11.886 1.371-22.629-10.286-10.514-11.886-151.314-142.4-151.314-142.4-8.457-8.457-11.429-15.314-8.686-21.257s9.829-8.686 21.486-8.686zM767.314 951.314h-121.143l194.743-182.171 183.086-1.6z" />
+<glyph unicode="&#xe91b;" glyph-name="degraded" data-tags="pficon-degraded" d="M957.257 568.457c-25.6-10.057-54.857-18.514-87.543-25.143-21.714-4.8-43.886-8.686-66.514-11.886l0.457-302.857c13.029 1.829 26.057 4.114 38.629 6.4 27.657 5.714 52.8 12.343 74.971 19.657s42.057 15.771 58.514 24.457c16 9.371 28.343 19.429 36.343 29.714 8 10.514 11.886 21.029 11.886 32.229v262.4c-18.743-13.257-41.143-24.914-66.743-34.971zM364.343 729.828v0h0.686c35.429 0 69.943-1.6 102.629-4.571 34.971-3.2 66.286-7.771 95.314-13.714v0 0c31.543-6.629 58.514-13.486 82.514-21.029l0.914-0.457c27.429-9.143 50.743-19.2 71.314-30.857l0.914-0.457c24-14.171 43.2-30.171 56.914-47.771 5.029-6.4 9.371-13.029 13.029-19.886 18.286 2.286 35.886 5.257 53.029 8.686 27.657 5.029 52.8 11.429 74.971 18.743s42.057 16 58.514 25.371c16 9.371 28.343 19.2 36.343 29.029s11.886 20.571 11.886 31.543v124.343c0 10.514-3.886 21.029-11.886 31.314s-20.343 20.343-36.343 29.714c-16.457 9.371-35.886 17.6-58.286 25.143-22.171 7.086-47.314 13.486-74.971 19.2-27.886 5.714-57.143 9.6-87.543 12.571s-62.629 4.114-96 4.114c-32.914 0-64.457-1.371-95.086-4.343s-60.114-7.086-88.457-12.571c-27.657-5.486-52.8-11.886-74.971-19.2s-41.6-15.771-57.6-25.143c-16.229-9.371-28.571-19.429-36.8-29.714s-12.571-20.8-12.571-31.314v-101.257c23.086 1.829 47.314 2.514 71.543 2.514zM664.686 266.743c-23.543-9.143-50.057-17.143-79.543-23.314v62.4c13.943 3.429 26.971 7.086 39.086 11.2 22.171 7.314 42.057 16 58.514 25.371 16 9.371 28.343 19.2 36.343 29.029s11.886 20.571 11.886 31.543v133.257c0 10.514-3.886 21.029-11.886 31.314s-20.343 20.343-36.343 29.714c-16.457 9.371-35.886 17.6-58.286 25.143-22.171 7.086-47.314 13.486-74.971 19.2-27.886 5.714-57.143 9.6-87.543 12.571s-62.629 4.343-96 4.343c-32.914 0-64.457-1.371-95.086-4.343s-60.343-7.086-88.457-12.571c-27.657-5.486-52.8-11.886-74.971-19.2s-41.6-15.771-57.6-25.143c-16.229-9.371-28.571-19.429-36.8-29.714s-12.571-20.8-12.571-31.314v-133.257c0-11.2 4.343-21.714 12.571-31.543 8.457-10.057 20.571-19.657 36.8-29.029s35.429-18.057 57.6-25.371c11.886-4.114 24.914-7.771 38.857-11.2v-62.4c-29.486 6.4-55.771 14.171-79.086 23.314-25.6 10.057-48 21.714-66.743 34.971v-253.257c0-11.2 4.343-21.943 12.571-32.229 8.457-10.286 20.571-20.343 36.8-29.714 16.229-8.914 35.429-17.143 57.6-24.457 22.171-7.771 47.771-14.171 75.886-19.657 27.657-5.486 57.143-9.6 88-11.657 30.629-2.514 62.171-3.657 95.086-3.657 33.371 0 65.371 1.143 95.543 3.657 30.171 2.286 59.657 6.629 88 11.886 27.657 5.714 52.8 12.343 74.971 19.657s42.057 15.771 58.514 24.457c16 9.371 28.343 19.429 36.343 29.714 8 10.514 11.886 21.029 11.886 32.229v253.029c-18.971-13.257-41.371-24.914-66.971-34.971zM558.857 126.4c-0.686-1.6-1.829-3.2-3.2-4.571l-53.943-53.714c-1.6-1.6-2.971-2.514-4.571-3.2s-3.429-0.914-5.257-0.914c-1.6 0-2.971 0.229-4.571 0.914s-2.971 1.829-3.886 3.2l-117.714 116.571-117.486-117.029c-0.914-1.6-2.286-2.514-3.886-3.2s-3.2-0.914-4.571-0.914c-1.829 0-3.657 0.229-5.257 0.914s-3.2 1.829-4.571 3.2l-53.943 54.171c-1.6 1.6-2.514 2.971-3.2 4.571s-0.914 3.2-0.914 4.571c0 1.829 0.229 3.657 0.914 5.257s1.829 2.971 3.2 3.886l117.486 117.486-115.2 114.743c-1.6 1.6-2.514 2.971-3.2 4.571s-0.914 3.2-0.914 4.571c0 1.829 0.229 3.657 0.914 5.257s1.829 2.971 3.2 3.886l53.943 54.4c1.6 0.914 2.971 1.829 4.571 2.514s3.2 0.914 4.571 0.914c1.829 0 3.657-0.229 5.257-0.686s2.971-1.6 3.886-2.743l115.657-115.657 115.2 115.2c0.914 1.6 2.286 2.286 3.886 2.743s3.2 0.686 4.571 0.686c1.829 0 3.657-0.229 5.257-0.914s3.2-1.6 4.571-2.514l53.257-54.629c1.6-0.914 2.514-2.286 3.2-3.886s0.914-3.429 0.914-5.257c0-1.6-0.229-2.971-0.914-4.571s-1.829-3.2-3.2-4.571l-114.743-114.286 117.486-117.486c1.6-0.914 2.514-2.286 3.2-3.886s0.914-3.429 0.914-5.257c0-1.371-0.229-2.743-0.914-4.343z" />
+<glyph unicode="&#xe91c;" glyph-name="rebalance" data-tags="pficon-rebalance" horiz-adv-x="1243" d="M1018.971-5.029c-3.657 3.2-8 5.029-13.257 5.029h-347.429v737.6c37.943 13.486 66.286 47.086 72 87.771v-0.457l275.429 53.943c5.257 0.914 9.371 3.429 11.886 7.543 2.743 4.114 3.429 8.686 2.514 13.943l-7.086 35.886c-0.914 5.257-3.429 9.371-7.543 11.886s-8.686 3.429-13.943 2.514l-275.2-53.714v-0.457c-18.971 32.457-54.171 54.4-94.629 54.4-55.314 0-101.029-40.914-108.571-93.943v0.457l-275.429-53.714c-5.257-0.914-9.371-3.429-11.886-7.543s-3.429-8.686-2.514-13.943l7.086-35.886c0.914-5.257 3.429-9.371 7.543-11.886 4.114-2.743 8.686-3.429 13.943-2.514l275.429 53.714c13.029-22.171 33.6-39.314 58.057-48v-737.6h-347.657c-5.486 0-10.057-1.371-13.257-5.029s-5.029-8-5.029-13.257v-36.571c0-5.257 1.371-10.057 5.029-13.257s8-5.029 13.257-5.029h768c5.486 0 10.057 1.371 13.257 5.029s5.029 8 5.029 13.257v36.571c0 5.486-1.371 10.057-5.029 13.257zM621.714 886.857c25.143 0 45.714-20.571 45.714-45.714s-20.571-45.714-45.714-45.714-45.714 20.571-45.714 45.714 20.571 45.714 45.714 45.714zM1223.314 430.171c-13.257 26.743-30.857 59.886-52.571 99.657s-42.057 77.029-61.257 111.771c-18.971 34.743-38.4 69.714-58.286 105.143s-30.4 54.4-32 57.143c-6.857 12.571-17.6 18.743-32 18.743s-25.143-6.4-32-18.743c-1.6-2.743-12.114-21.714-32-57.143s-39.314-70.4-58.286-105.143c-18.971-34.743-39.314-72-61.029-111.771s-39.314-73.143-52.571-99.657c-13.257-26.743-20.114-42.057-20.114-46.171 0-27.886 8.914-52.8 26.514-74.971 17.829-22.171 40-39.314 67.2-52.114 26.971-12.571 54.629-21.943 82.514-28.343s54.857-9.143 80-9.143 51.657 3.2 79.771 9.371 55.543 15.771 82.514 28.343c26.971 12.571 49.371 29.943 67.2 52.114s26.514 47.086 26.514 74.971c0 3.886-6.629 19.429-20.114 45.943zM768 384l219.429 402.286 219.429-402.286h-438.857zM439.543 383.771c-21.714 39.771-42.057 77.029-61.257 111.771-18.971 34.743-38.4 69.714-58.286 105.143s-30.4 54.4-32 57.143c-6.857 12.571-17.6 18.743-32 18.743s-25.143-6.4-32-18.743c-1.6-2.743-12.114-21.714-32-57.143s-39.314-70.4-58.286-105.143c-18.971-34.743-39.314-72-61.257-111.771-21.714-39.771-39.314-73.143-52.571-99.657-13.257-26.743-19.886-42.286-19.886-46.4 0-27.886 8.914-52.8 26.514-74.971 17.829-22.171 40-39.314 67.2-52.114 26.971-12.571 54.629-21.943 82.514-28.343s54.629-9.143 79.771-9.143 51.657 3.2 79.771 9.371 55.543 15.771 82.514 28.343c26.971 12.571 49.371 29.943 67.2 52.114s26.514 47.086 26.514 74.971c0 4.114-6.629 19.657-20.114 46.171-13.257 26.514-30.629 59.886-52.343 99.657zM256 640l149.714-274.286h-299.429l149.714 274.286z" />
+<glyph unicode="&#xe91d;" glyph-name="resources-almost-empty" data-tags="resources-almost-empty" d="M954.743 694.171c45.714-78.4 68.571-164.114 68.571-256.914s-22.857-178.514-68.571-256.914-107.886-140.571-186.286-186.286-164.114-68.571-256.914-68.571-178.514 22.857-256.914 68.571-140.571 107.886-186.286 186.286c-45.486 78.4-68.343 164.114-68.343 256.914s22.857 178.514 68.571 256.914 107.886 140.343 186.286 186.057 164.114 68.571 256.914 68.571 178.514-22.857 256.914-68.571c78.171-45.714 140.343-107.657 186.057-186.057zM677.257 829.714c-52.571 22.629-107.886 34.057-165.486 34.057-57.829 0-112.914-11.429-165.486-34.057s-97.829-53.029-136-90.971c-37.943-37.943-68.343-83.2-90.971-136-22.629-52.571-34.057-107.886-34.057-165.486 0-57.829 11.429-112.914 34.057-165.486s53.029-97.829 90.971-136c37.943-37.943 83.2-68.343 136-90.971 52.571-22.629 107.886-34.057 165.486-34.057 57.829 0 112.914 11.429 165.486 34.057s97.829 53.029 136 90.971c37.943 37.943 68.343 83.2 90.971 136 22.629 52.571 34.057 107.886 34.057 165.486 0 57.829-11.429 112.914-34.057 165.486s-53.029 97.829-90.971 136c-37.943 37.943-83.429 68.343-136 90.971zM217.143 292.571c53.943-108.343 165.943-182.857 295.086-182.857 128.914 0 240.914 74.514 294.857 182.857h-589.943z" />
+<glyph unicode="&#xe91e;" glyph-name="user" data-tags="pficon-user" horiz-adv-x="878" d="M657.262 657.92c0-120.978-98.085-219.063-219.063-219.063s-219.063 98.085-219.063 219.063c0 120.978 98.085 219.063 219.063 219.063s219.063-98.085 219.063-219.063zM38.766-73.143c7.826 102.327 37.303 305.737 148.041 389.559v0c0 0 59.758 50.322 150.821 49.883l201.143 0.366c91.136 0 150.821-50.322 150.821-50.322s133.12-88.722 149.285-389.559z" />
+<glyph unicode="&#xe91f;" glyph-name="users" data-tags="pficon-users" horiz-adv-x="951" d="M804.571 511.122c0-80.896-65.536-146.432-146.432-146.432s-146.432 65.536-146.432 146.432c0 80.896 65.536 146.432 146.432 146.432s146.432-65.536 146.432-146.432zM475.429 255.268v0c0 0 43.447 36.571 109.714 36.279l146.286 0.293c66.267 0 109.714-36.571 109.714-36.571s109.714-73.143 109.714-327.607h-585.143c0 0 0 244.517 109.714 327.607zM438.857 730.551c0-80.896-65.536-146.432-146.432-146.432s-146.432 65.536-146.432 146.432c0 80.896 65.536 146.432 146.432 146.432s146.432-65.536 146.432-146.432zM477.696 365.714c-160.768-27.429-189.733-218.697-189.733-218.697h-288.037c0 0 0 244.59 109.714 327.607v0c0 0 43.447 36.571 109.714 36.279l146.286 0.293c29.477 0 17.92 3.73 36.571-4.315 0 0-2.267-111.47 75.41-141.166v0z" />
+<glyph unicode="&#xe920;" glyph-name="thumb-tack" data-tags="pficon-thumb-tack" horiz-adv-x="805" d="M696.832 417.792c-24.064 30.939-71.314 58.368-112.128 58.368v0 328.631c40.741 0 72.338 33.573 71.095 72.704-1.17 37.449-29.769 73.362-68.827 73.362-0.951 0-370.322 0-370.322 0-22.089 0-40.741-10.021-56.174-25.381s-20.773-31.451-20.773-52.882c0-22.089 5.413-33.938 20.773-49.298s34.085-23.040 56.174-23.040v-321.755c-40.814 0-77.385-20.261-109.861-60.709s-34.962-108.91-34.962-159.744c0-10.752 4.023-19.895 12.069-27.575s17.408-11.557 28.087-11.557h214.455l46.153-276.041c1.317-4.681 3.877-8.558 7.534-11.557s7.826-4.535 12.507-4.535h19.31c4.681 0 8.85 1.682 12.507 4.974s5.851 7.68 6.51 13.019l42.496 273.993h218.039c10.679 0 20.041 3.877 28.087 11.557s12.069 16.896 12.069 27.575c0 50.761-3.145 118.784-34.962 159.744z" />
+<glyph unicode="&#xe921;" glyph-name="search" data-tags="pficon-search" d="M1022.171 53.394l-280.137 280.137c52.955 82.725 75.41 187.246 52.955 296.887-27.575 137.143-163.328 275.822-299.813 306.322-291.767 64.585-545.865-189.294-481.28-481.207 35.035-151.698 154.112-268.361 304.494-299.374 112.859-22.894 216.649 0.293 300.178 53.979l280.137-280.137zM403.749 801.060c140.288 0 254.025-113.737 254.025-254.025s-113.737-254.025-254.025-254.025c-140.288 0-254.025 113.737-254.025 254.025 0.146 140.215 113.81 253.879 254.025 254.025z" />
+<glyph unicode="&#xe922;" glyph-name="unlocked" data-tags="pficon-unlocked" d="M838.949 654.482c-17.115 162.597-159.232 296.375-325.193 296.375-177.079 0-329.216-152.21-329.216-329.216v-108.398h-112.055c-38.181-0.073-69.047-30.939-69.12-69.12v-443.977c0-38.107 31.013-73.728 69.12-71.387h880.201c38.107-2.267 69.12 33.28 69.12 71.387v444.050c-0.073 38.181-30.939 69.047-69.12 69.12l-623.104-0.073v108.398c0.219 101.595 82.505 183.954 184.101 184.101 88.869 0 161.426-65.682 178.176-149.358l147.017-1.829zM903.826 73.582h-541.403c-25.088 0-34.231 11.41-34.231 36.498s9.143 36.498 34.231 36.498h541.403c25.088 0 45.641-11.41 45.641-36.498s-20.553-36.425-45.641-36.425v-0.073zM903.826 292.571h-541.403c-25.088 0-34.231 11.41-34.231 36.498s9.143 36.498 34.231 36.498h541.403c25.088 0 45.641-11.41 45.641-36.498s-20.553-36.425-45.641-36.425v-0.073z" />
+<glyph unicode="&#xe923;" glyph-name="locked" data-tags="pficon-locked" d="M952.32 512.951h-112.128v108.471c0 177.152-150.016 329.435-327.168 329.435s-329.435-152.283-329.435-329.435v-108.471h-112.128c-38.107 0-69.193-31.086-69.193-69.193v-444.27c0-38.107 31.086-73.728 69.193-71.461h880.859c38.107-2.267 69.193 33.353 69.193 71.461v444.27c0 38.107-31.086 69.193-69.193 69.193zM328.777 621.422c0.219 101.595 82.651 184.027 184.247 184.247 101.595 0 181.979-82.871 181.979-184.247v-108.471h-366.226v108.471zM904.558 72.923h-541.769c-25.088 0-34.231 11.41-34.231 36.498s9.143 36.498 34.231 36.498h541.769c25.088 0 45.641-11.41 45.641-36.498s-20.553-36.498-45.641-36.498v-0.073zM904.558 292.059h-541.769c-25.088 0-34.231 11.41-34.231 36.498s9.143 36.498 34.231 36.498h541.769c25.088 0 45.641-11.41 45.641-36.498s-20.553-36.498-45.641-36.498v-0.073z" />
+<glyph unicode="&#xe924;" glyph-name="key" data-tags="pficon-key" d="M965.486 804.571c0 0-58.514 80.457-109.714 102.4-160.914 87.771-358.4 29.257-446.171-124.343-51.2-87.771-58.514-190.171-21.943-277.943l-387.657-380.343v-197.486h182.857v109.714h109.714v109.714h146.286l138.971 168.229c168.229-65.829 358.4 21.943 424.229 190.171 36.571 102.4 21.943 212.114-36.571 299.886zM885.029 731.428v0c0-58.514-43.886-102.4-102.4-102.4v0c-58.514 0-102.4 43.886-102.4 102.4s43.886 102.4 102.4 102.4c58.514 7.314 102.4-43.886 102.4-102.4v0z" />
+<glyph unicode="&#xe925;" glyph-name="asleep" data-tags="asleep" d="M512-73.143c-70.656 0-136.997 13.385-199.022 40.009s-116.151 63.342-162.523 110.007-83.017 101.010-110.007 162.962-40.521 128.366-40.521 199.022c0 70.656 13.531 136.997 40.521 199.022s63.634 116.151 110.007 162.523 100.498 83.017 162.523 110.007 128.366 40.521 199.022 40.521c70.656 0 136.997-13.531 199.022-40.521s116.151-63.707 162.523-110.007c46.299-46.299 83.017-100.498 110.007-162.523s40.521-128.366 40.521-199.022c0-70.656-13.531-136.997-40.521-199.022s-63.707-116.37-110.007-162.962c-46.299-46.665-100.498-83.31-162.523-110.007s-128.366-40.009-199.022-40.009zM361.545 796.379c-46.958-20.334-88.137-48.128-123.465-83.529s-63.195-76.507-83.529-123.465c-20.334-46.958-30.501-97.134-30.501-150.455s10.167-103.643 30.501-150.967c20.334-47.323 48.128-88.503 83.529-123.465s76.507-62.683 123.465-83.017c46.958-20.334 97.134-30.501 150.455-30.501s103.497 10.167 150.455 30.501c46.958 20.334 88.137 47.982 123.465 83.017s63.122 76.142 83.529 123.465c20.334 47.323 30.501 97.646 30.501 150.967s-10.167 103.497-30.501 150.455c-20.334 46.958-48.128 88.137-83.529 123.465s-76.507 63.122-123.465 83.529c-46.958 20.334-97.134 30.501-150.455 30.501s-103.497-10.167-150.455-30.501zM758.565 330.313c-21.211-45.861-53.248-82.505-96.037-109.934s-89.527-41.179-140.069-41.179c-35.255 0-68.901 6.875-100.937 20.699s-59.758 32.329-83.017 55.589c-23.259 23.259-41.765 50.907-55.589 83.017s-20.699 65.682-20.699 100.937c0 34.597 6.51 67.584 19.456 99.109s30.574 58.807 52.882 81.847 48.859 41.618 79.799 55.735c30.939 14.117 63.707 21.87 98.231 23.259 9.947 0.439 21.358-6.217 25.234-15.506 4.096-9.289 4.681-19.675-2.779-26.697-19.456-17.627-36.571-38.107-46.885-61.513s-17.701-45.787-17.701-71.753c0-33.426 5.998-61.952 22.455-90.185s38.839-50.615 67.072-67.072 59.099-24.722 92.526-24.722c26.624 0 52.443 5.705 77.239 17.262 9.289 4.096 17.408 2.56 24.357-4.389 3.145-3.145 5.12-7.022 5.925-11.483s0.293-8.85-1.536-12.873v0z" />
+<glyph unicode="&#xe926;" glyph-name="error-circle-o" data-tags="pficon-error-circle-o" d="M512.073-73.143c-282.331 0-512.073 229.669-512.073 512 0 282.258 229.742 512 512.073 512 282.258 0 511.927-229.742 511.927-512 0-282.331-229.669-512-511.927-512zM512.073 826.514c-213.797 0-387.73-173.861-387.73-387.657 0-213.87 173.861-387.657 387.73-387.657 213.723 0 387.657 173.787 387.657 387.73 0 213.723-173.934 387.584-387.657 387.584v0zM730.77 316.196c0.073 4.901-1.829 9.216-5.632 13.019l-109.714 109.714 110.373 110.373c3.803 3.803 5.632 8.119 5.632 13.019s-1.975 9.216-5.778 13.093l-77.166 77.166c-3.877 3.803-8.192 5.778-13.093 5.778s-9.216-1.829-13.019-5.632l-110.373-110.373-110.373 110.373c-3.803 3.803-8.119 5.632-13.019 5.632s-9.216-1.975-13.093-5.778l-77.166-77.166c-3.803-3.877-5.778-8.192-5.778-13.093s1.829-9.216 5.632-13.019l110.373-110.373-110.373-109.714c-3.803-3.803-5.632-8.119-5.632-13.019s1.975-9.216 5.778-13.093l77.166-77.166c3.877-3.877 8.192-5.778 13.093-5.778s9.216 1.829 13.019 5.632l110.373 109.714 109.714-109.714c3.803-3.803 8.119-5.632 13.019-5.632s9.216 1.975 13.093 5.778l77.166 77.166c3.877 3.803 5.778 8.192 5.851 13.019v0z" />
+<glyph unicode="&#xe927;" glyph-name="cpu" data-tags="pficon-cpu" horiz-adv-x="951" d="M128.293 658.286c4.681 0 8.631-1.682 11.995-4.974s4.974-7.387 4.974-11.995v-37.083c0-4.681-1.682-8.997-4.974-13.019s-7.387-5.998-11.995-5.998h-110.226c-5.339 0-10.021 1.975-14.043 5.998s-5.998 8.631-5.998 14.043v36.059c0 5.339 1.975 9.509 5.998 12.507s8.631 4.535 14.043 4.535h110.226zM128.293 510.903c4.681 0 8.631-1.682 11.995-4.974s4.974-7.387 4.974-11.995v-37.083c0-4.681-1.682-8.997-4.974-13.019s-7.387-5.998-11.995-5.998h-110.226c-5.339 0-10.021 1.975-14.043 5.998s-5.998 8.631-5.998 14.043v36.059c0 5.339 1.975 9.509 5.998 12.507s8.631 4.535 14.043 4.535h110.226zM128.293 365.86c4.681 0 8.631-1.536 11.995-4.535s4.974-7.168 4.974-12.507v-37.083c0-4.681-1.682-8.997-4.974-13.019s-7.387-5.998-11.995-5.998h-110.226c-5.339 0-10.021 1.975-14.043 5.998s-5.998 8.631-5.998 14.043v36.059c0 5.339 1.975 9.509 5.998 12.507s8.631 4.535 14.043 4.535h110.226zM128.293 219.502c4.681 0 8.631-1.682 11.995-4.974s4.974-7.68 4.974-13.019v-36.059c0-5.339-1.682-10.021-4.974-14.043s-7.387-5.998-11.995-5.998h-110.226c-5.339 0-10.021 1.975-14.043 5.998s-5.998 8.631-5.998 14.043v36.059c0 5.339 1.975 9.655 5.998 13.019s8.631 4.974 14.043 4.974h110.226zM698.953 655.14c8.777 0 16.165-3.072 22.309-9.216s9.216-13.531 9.216-22.309v-446.318c0-8.777-3.072-16.53-9.216-23.186s-13.531-10.021-22.309-10.021h-448.951c-9.362 0-16.969 2.926-22.747 8.777s-8.777 13.385-8.777 22.747v445.44c0 9.362 2.926 17.335 8.777 24.064s13.385 10.021 22.747 10.021h448.951zM237.495 731.428c-5.339 0-10.021 1.682-14.043 4.974s-5.998 7.314-5.998 11.995h1.024v110.226c0 5.339 1.829 10.021 5.486 14.043s8.192 5.998 13.531 5.998h37.083c4.681 0 8.631-1.975 11.995-5.998s4.974-8.704 4.974-14.043v-110.226c0-4.681-1.682-8.704-4.974-11.995s-7.68-4.974-13.019-4.974h-36.059zM276.846 72.192c4.681 0 8.631-1.975 11.995-5.998s4.974-8.338 4.974-13.019v-110.226c0-5.339-1.682-9.509-4.974-12.507s-7.68-4.535-13.019-4.535h-36.059c-5.339 0-10.021 1.536-14.043 4.535s-5.998 7.168-5.998 12.507h1.024v110.226c0 4.681 1.829 8.997 5.486 13.019s8.192 5.998 13.531 5.998h37.083zM384.878 731.428c-5.339 0-10.021 1.682-14.043 4.974s-5.998 7.314-5.998 11.995v110.226c0 5.339 1.975 10.021 5.998 14.043s8.631 5.998 14.043 5.998h36.059c5.339 0 9.655-1.975 13.019-5.998s4.974-8.704 4.974-14.043v-110.226c0-4.681-1.682-8.704-4.974-11.995s-7.68-4.974-13.019-4.974h-36.059zM420.937 72.192c5.339 0 9.655-1.975 13.019-5.998s4.974-8.338 4.974-13.019v-110.226c0-5.339-1.682-9.509-4.974-12.507s-7.68-4.535-13.019-4.535h-36.059c-5.339 0-10.021 1.536-14.043 4.535s-5.998 7.168-5.998 12.507v110.226c0 4.681 1.975 8.997 5.998 13.019s8.631 5.998 14.043 5.998h36.059zM531.237 731.428c-4.681 0-8.997 1.682-13.019 4.974s-5.998 7.314-5.998 11.995v110.226c0 5.339 1.975 10.021 5.998 14.043s8.631 5.998 14.043 5.998h36.059c5.339 0 9.509-1.975 12.507-5.998s4.535-8.704 4.535-14.043v-110.226c0-4.681-1.536-8.704-4.535-11.995s-7.168-4.974-12.507-4.974h-37.083zM568.32 72.192c5.339 0 9.509-1.975 12.507-5.998s4.535-8.338 4.535-13.019v-110.226c0-5.339-1.536-9.509-4.535-12.507s-7.168-4.535-12.507-4.535h-37.083c-4.681 0-8.997 1.536-13.019 4.535s-5.998 7.168-5.998 12.507v110.226c0 4.681 1.975 8.997 5.998 13.019s8.631 5.998 14.043 5.998h36.059zM676.352 731.428c-4.681 0-8.997 1.682-13.019 4.974s-5.998 7.314-5.998 11.995v110.226c0 5.339 1.975 10.021 5.998 14.043s8.631 5.998 14.043 5.998h36.059c5.339 0 9.509-1.975 12.507-5.998s4.535-8.704 4.535-14.043v-110.226c0-4.681-1.536-8.704-4.535-11.995s-7.168-4.974-12.507-4.974h-37.083zM713.362 72.192c5.339 0 9.509-1.975 12.507-5.998s4.535-8.338 4.535-13.019v-110.226c0-5.339-1.536-9.509-4.535-12.507s-7.168-4.535-12.507-4.535h-37.083c-4.681 0-8.997 1.536-13.019 4.535s-5.998 7.168-5.998 12.507v110.226c0 4.681 1.975 8.997 5.998 13.019s8.631 5.998 14.043 5.998h36.059zM933.815 658.286c5.339 0 9.509-1.682 12.507-4.974s4.535-7.387 4.535-11.995v-37.083c0-4.681-1.536-8.997-4.535-13.019s-7.168-5.998-12.507-5.998h-110.226c-4.681 0-9.216 1.975-13.531 5.998s-6.51 8.631-6.51 14.043v36.059c0 5.339 2.121 9.509 6.51 12.507s8.85 4.535 13.531 4.535h110.226zM933.815 510.903c5.339 0 9.509-1.682 12.507-4.974s4.535-7.387 4.535-11.995v-37.083c0-4.681-1.536-8.997-4.535-13.019s-7.168-5.998-12.507-5.998h-110.226c-4.681 0-9.216 1.975-13.531 5.998s-6.51 8.631-6.51 14.043v36.059c0 5.339 2.121 9.509 6.51 12.507s8.85 4.535 13.531 4.535h110.226zM933.815 365.86c5.339 0 9.509-1.536 12.507-4.535s4.535-7.168 4.535-12.507v-37.083c0-4.681-1.536-8.997-4.535-13.019s-7.168-5.998-12.507-5.998h-110.226c-4.681 0-9.216 1.975-13.531 5.998s-6.51 8.631-6.51 14.043v36.059c0 5.339 2.121 9.509 6.51 12.507s8.85 4.535 13.531 4.535h110.226zM933.815 219.502c5.339 0 9.509-1.682 12.507-4.974s4.535-7.68 4.535-13.019v-36.059c0-5.339-1.536-10.021-4.535-14.043s-7.168-5.998-12.507-5.998h-110.226c-4.681 0-9.216 1.975-13.531 5.998s-6.51 8.631-6.51 14.043v36.059c0 5.339 2.121 9.655 6.51 13.019s8.85 4.974 13.531 4.974h110.226z" />
+<glyph unicode="&#xe928;" glyph-name="chat" data-tags="pficon-chat" d="M964.681 549.010h-85.358v268.727c-1.609 47.031-16.238 59.977-50.688 59.977h-763.904c-56.32 0-64.731-5.339-64.731-59.977v-511.122c0-71.168 0-87.186 64.731-88.649h80.53v-144.53c0-23.845 13.751-35.84 30.939-35.84 140.142 0 210.286 71.607 262.656 180.663h73.143v-80.384c0.293-64.805 0.293-64.805 62.171-64.585h159.013c55.442-93.842 199.68-146.432 199.68-146.432 11.41 0 19.602 10.459 19.602 21.87v124.562h12.215c59.319-0.146 59.319-0.146 59.831 64.585v352.11c-0.512 58.514-0.512 58.514-59.831 58.953zM368.786 364.544c-11.41-203.776-149.358-219.794-149.358-219.794v220.014h-110.665v403.237h659.237v-403.456h-399.214z" />
+<glyph unicode="&#xe929;" glyph-name="arrow" data-tags="arrow" horiz-adv-x="1097" d="M921.6-73.143h-885.029c-21.943 0-36.571 14.629-36.571 36.571v804.571c0 21.943 14.629 36.571 36.571 36.571h292.571l-109.714-146.286h-73.143v-585.143h658.286v73.143l146.286 146.286v-329.143c0-21.943-14.629-36.571-29.257-36.571v0zM665.6 731.428c-219.429 0-394.971-131.657-373.029-351.086 14.629-138.971 87.771-160.914 146.286-204.8-58.514 124.343 36.571 321.829 263.314 336.457 7.314 0 21.943 0 29.257 0v-219.429l365.714 329.143-365.714 329.143v-219.429c0 0-65.829 0-65.829 0z" />
+<glyph unicode="&#xe92a;" glyph-name="resources-full" data-tags="resources-full" d="M512 109.714c-181.486 0-329.143 147.657-329.143 329.143s147.657 329.143 329.143 329.143c181.486 0 329.143-147.657 329.143-329.143s-147.657-329.143-329.143-329.143zM954.743 694.171c45.714-78.4 68.571-164.114 68.571-256.914s-22.857-178.514-68.571-256.914c-45.714-78.4-107.886-140.571-186.286-186.286s-164.114-68.571-256.914-68.571c-92.8 0-178.514 22.857-256.914 68.571s-140.571 107.886-186.286 186.286c-45.486 78.4-68.343 164.114-68.343 256.914s22.857 178.514 68.571 256.914c45.714 78.4 107.886 140.343 186.286 186.057s164.114 68.571 256.914 68.571c92.8 0 178.514-22.857 256.914-68.571 78.171-45.714 140.343-107.657 186.057-186.057zM677.257 829.714c-52.571 22.629-107.886 34.057-165.486 34.057-57.829 0-112.914-11.429-165.486-34.057s-97.829-53.029-136-90.971c-37.943-37.943-68.343-83.2-90.971-136-22.629-52.571-34.057-107.886-34.057-165.486 0-57.829 11.429-112.914 34.057-165.486s53.029-97.829 90.971-136c37.943-37.943 83.2-68.343 136-90.971 52.571-22.629 107.886-34.057 165.486-34.057 57.829 0 112.914 11.429 165.486 34.057s97.829 53.029 136 90.971c37.943 37.943 68.343 83.2 90.971 136 22.629 52.571 34.057 107.886 34.057 165.486 0 57.829-11.429 112.914-34.057 165.486s-53.029 97.829-90.971 136c-37.943 37.943-83.429 68.343-136 90.971z" />
+<glyph unicode="&#xe92b;" glyph-name="info" data-tags="pficon-info" d="M983.552 639.049c-26.99 62.025-63.707 116.151-110.007 162.523-46.373 46.299-100.498 83.017-162.523 110.007s-128.366 40.521-199.022 40.521-136.997-13.531-199.022-40.521c-62.025-26.99-116.224-63.707-162.523-110.007-46.373-46.373-83.017-100.498-110.007-162.523s-40.521-128.366-40.521-199.022 13.531-137.070 40.521-199.022c26.99-61.952 63.634-116.297 110.007-162.962s100.498-83.383 162.523-110.007c62.025-26.624 128.366-40.009 199.022-40.009s136.997 13.312 199.022 40.009 116.151 63.342 162.523 110.007c46.299 46.592 83.017 100.937 110.007 162.962s40.521 128.366 40.521 199.022-13.531 136.997-40.521 199.022zM869.449 289.060c-20.407-47.323-48.201-88.43-83.529-123.465s-76.507-62.683-123.465-83.017c-46.958-20.334-97.134-30.501-150.455-30.501s-103.497 10.167-150.455 30.501c-46.958 20.334-88.064 48.055-123.465 83.017s-63.195 76.142-83.529 123.465c-20.334 47.25-30.501 97.646-30.501 150.967s10.167 103.497 30.501 150.455c20.334 46.958 48.274 88.064 83.529 123.465s76.507 63.195 123.465 83.529c46.958 20.334 97.134 30.501 150.455 30.501s103.497-10.167 150.455-30.501c46.958-20.407 88.137-48.201 123.465-83.529s63.195-76.507 83.529-123.465c20.334-46.958 30.501-97.134 30.501-150.455s-10.167-103.643-30.501-150.967zM584.997 603.136v72.704c0 2.633-0.366 5.193-1.024 7.461s-1.975 4.169-4.023 5.486c-1.975 1.975-4.023 3.511-5.998 4.535s-4.315 1.536-7.022 1.536h-110.007c-2.706 0-4.974-0.512-7.022-1.536s-4.023-2.487-5.998-4.535c-1.975-1.317-3.365-3.145-4.023-5.486s-1.024-4.827-1.024-7.461v-72.704c0-2.706 0.293-5.193 1.024-7.461s1.975-4.169 4.023-5.486c1.975-1.975 4.023-3.365 5.998-4.023s4.315-1.024 7.022-1.024h110.007c2.633 0 4.974 0.293 7.022 1.024s4.023 1.975 5.998 4.023c1.975 1.317 3.365 3.145 4.023 5.486s1.024 4.827 1.024 7.461zM603.429 292.571h-18.432v201.143c0 0.146-0.146 0.219-0.146 0.366-0.073 2.194-0.293 4.462-0.878 6.363-0.658 2.267-1.975 4.535-4.023 6.51-1.975 1.317-4.023 2.487-5.998 3.511s-4.315 1.536-7.022 1.536h-146.359c-10.021 0-18.286-8.265-18.286-18.286v-36.571c0-10.021 8.265-18.286 18.286-18.286h18.286v-146.286h-18.286c-10.021 0-18.286-8.265-18.286-18.286v-36.571c0-10.021 8.265-18.286 18.286-18.286h182.857c10.021 0 18.286 8.265 18.286 18.286v36.571c0 10.021-8.265 18.286-18.286 18.286z" />
+<glyph unicode="&#xe92c;" glyph-name="in-progress" data-tags="in-progress" d="M193.536 38.18l67.438 116.736c-5.705 5.047-11.337 10.24-16.75 15.579-34.231 33.938-61.221 73.801-80.896 119.662-6.729 15.653-12.215 31.598-16.677 47.909l-134.875-9.289c6.729-30.574 16.311-60.27 28.818-89.015 26.99-62.025 63.634-116.37 110.007-162.962 13.678-13.751 28.014-26.624 43.081-38.619zM175.689 608.548l-120.32 60.709c-5.266-10.24-10.167-20.699-14.848-31.378-22.382-51.419-35.474-105.765-39.278-163.109l135.387 9.362c4.242 34.231 13.093 66.999 26.697 98.304 3.877 8.923 7.973 17.627 12.434 26.112v0zM983.479 637.879c-26.99 62.025-63.707 116.151-110.007 162.523s-100.498 83.017-162.523 110.007-128.366 40.521-199.022 40.521v-138.313c50.834-0.293 98.67-10.094 143.579-29.55 45.568-19.675 85.431-46.665 119.662-80.896s61.221-74.094 80.896-119.662 29.55-94.135 29.55-145.847-9.874-100.425-29.55-146.359c-19.675-45.861-46.665-85.723-80.896-119.662s-74.094-60.709-119.662-80.457-94.135-29.55-145.847-29.55c-42.935 0-83.822 6.802-122.514 20.407l-67.511-116.955c60.123-24.795 124.197-37.23 192.293-37.23 70.656 0 136.997 13.385 199.022 40.009s116.151 63.342 162.523 110.007 83.017 101.010 110.007 162.962 40.521 128.366 40.521 199.022c0 70.656-13.531 136.997-40.521 199.022z" />
+<glyph unicode="&#xe92d;" glyph-name="maintenance" data-tags="maintenance" d="M984.064 846.555l-24.503 17.408c-57.49 49.371-146.359 54.272-195.73-3.218l-206.263-239.177 53.321-44.325 194.633 213.431c7.68 9.143 30.354 5.632 39.278-2.267s16.896-26.331 9.216-35.474l-197.925-214.967 41.326-35.035 11.483 12.654 183.881 203.776c7.68 9.143 25.746 5.632 34.743-2.267s16.896-26.331 9.216-35.474l-191.122-219.575 51.419-43.593 192.512 225.499c49.371 57.49 48.128 160.622-5.486 202.606zM1002.935 110.884l-518.656 459.922c19.163 35.986 29.989 77.019 29.989 120.613 0 142.043-115.127 257.17-257.17 257.17-25.966 0-51.054-3.877-74.679-11.045l148.553-148.553c22.235-22.235 22.235-58.587 0-80.823l-90.624-90.624c-22.235-22.235-58.587-22.235-80.823 0l-148.553 148.553c-7.168-23.625-11.045-48.713-11.045-74.679 0-142.043 115.127-257.17 257.17-257.17 43.593 0 84.699 10.825 120.613 29.989l459.922-518.656c20.48-23.845 55.369-25.234 77.605-2.999l90.624 90.624c22.235 22.162 20.846 57.125-2.999 77.605v0zM222.062 147.017l80.677-0.073 104.594 139.045 74.533-71.241-115.639-121.637 0.951-81.847-142.409-84.407-76.873 54.93 74.094 165.303z" />
+<glyph unicode="&#xe92e;" glyph-name="migration" data-tags="migration" d="M77.678 445.513c-3.657 3.657-5.486 7.973-5.486 12.8v52.809h-73.143v-55.077c0-25.161 8.923-46.665 26.99-64.658 17.847-17.847 39.57-26.99 64.658-26.99h54.857v75.41h-55.077c-5.047 0.439-9.143 2.267-12.8 5.705zM997.23 556.544c-17.847 17.847-39.57 26.99-64.658 26.99h-475.429c-4.535 0-8.997-0.293-13.385-0.878l-130.194 130.194c-15.799 15.799-21.431 13.458-40.96 17.042s-28.965-1.243-39.936-12.142-15.726-20.407-12.142-39.936c3.511-19.529 1.243-25.234 17.042-40.96l129.243-129.243c-0.878-5.047-1.243-10.313-1.243-15.653v-54.857h-146.505v-73.143h146.505v-345.381c0-25.161 8.923-46.665 26.99-64.658 17.847-17.847 39.57-26.99 64.658-26.99h475.648c25.161 0 46.665 8.923 64.658 26.99 17.847 17.847 26.99 39.57 26.99 64.658v473.381c-0.219 25.161-9.143 46.665-27.209 64.658zM951.077 18.505c0-5.047-1.829-9.143-5.486-12.8s-7.973-5.486-12.8-5.486h-475.648c-5.047 0-9.143 1.829-12.8 5.486s-5.486 7.973-5.486 12.8v416.987l185.125-185.125c0.951-0.951 1.902-1.829 2.779-2.706l-18.505-18.651-87.918-87.918c-13.166-12.727-16.165-27.355-8.923-43.959 7.241-16.969 19.749-25.454 37.595-25.454h285.477c11.045 0 20.626 4.023 28.672 12.069s12.069 17.627 12.069 28.672v285.477c0 17.847-8.265 32.695-24.869 39.936-17.408 7.168-32.256 1.902-44.617-11.264l-82.798-82.213-20.334-20.48c-0.805 0.805-1.609 1.682-2.487 2.56l-183.735 183.735h416.475c5.047 0 9.143-1.829 12.8-5.486s5.486-7.973 5.486-12.8v-473.381zM-0.951 733.038h73.143v-147.456h-73.143v147.456zM509.733 732.087h73.143v-147.456h-73.143v147.456zM25.819 925.33c-17.847-17.847-26.77-39.278-26.77-64.439v-55.735h73.143v55.735c0 5.047 1.829 9.143 5.486 12.8s7.973 5.486 12.8 5.486h55.296v73.143h-55.296c-25.161 0-46.665-8.923-64.658-26.99zM218.039 952.247h147.456v-73.143h-147.456v73.143zM505.783 873.618v0c3.657-3.657 5.486-7.973 5.486-12.8v-91.429h75.41v91.429c0 25.161-8.923 46.665-26.99 64.658-17.847 17.847-39.57 26.99-64.658 26.99h-55.515v-73.143h53.248c5.047-0.219 9.362-2.048 13.019-5.705z" />
+<glyph unicode="&#xe92f;" glyph-name="off" data-tags="off" d="M584.704 607.012v-336.238c0-21.065-7.68-39.351-23.113-54.711s-29.111-23.113-50.176-23.113-34.743 7.68-50.176 23.113c-15.433 15.433-23.113 33.646-23.113 54.711v336.238c0 21.065 7.68 39.351 23.113 54.711s29.038 23.113 50.176 23.113 34.743-7.68 50.176-23.113c15.433-15.433 23.113-33.646 23.113-54.711zM512-73.143c-70.656 0-136.997 13.385-199.022 40.009s-116.151 63.342-162.523 110.007-83.017 101.010-110.007 162.962-40.521 128.366-40.521 199.022c0 70.656 13.531 136.997 40.521 199.022s63.634 116.151 110.007 162.523 100.498 83.017 162.523 110.007 128.366 40.521 199.022 40.521c70.656 0 136.997-13.531 199.022-40.521s116.151-63.707 162.523-110.007c46.299-46.299 83.017-100.498 110.007-162.523s40.521-128.366 40.521-199.022c0-70.656-13.531-136.997-40.521-199.022s-63.707-116.37-110.007-162.962c-46.299-46.665-100.498-83.31-162.523-110.007s-128.366-40.009-199.022-40.009zM361.545 796.379c-46.958-20.334-88.137-48.128-123.465-83.529s-63.195-76.507-83.529-123.465c-20.334-46.958-30.501-97.134-30.501-150.455s10.167-103.643 30.501-150.967c20.334-47.323 48.128-88.503 83.529-123.465s76.507-62.683 123.465-83.017c46.958-20.334 97.134-30.501 150.455-30.501s103.497 10.167 150.455 30.501c46.958 20.334 88.137 47.982 123.465 83.017s63.122 76.142 83.529 123.465c20.334 47.323 30.501 97.646 30.501 150.967s-10.167 103.497-30.501 150.455c-20.334 46.958-48.128 88.137-83.529 123.465s-76.507 63.122-123.465 83.529c-46.958 20.334-97.134 30.501-150.455 30.501s-103.497-10.167-150.455-30.501z" />
+<glyph unicode="&#xe930;" glyph-name="on-running" data-tags="on-running" d="M511.781-73.143c-70.656 0-136.923 13.312-198.875 40.009s-116.078 63.269-162.45 109.934c-46.299 46.665-82.944 100.937-109.934 162.962s-40.448 128.293-40.448 198.875 13.458 136.923 40.448 198.875 63.634 116.078 109.934 162.45c46.299 46.299 100.425 82.944 162.45 109.934s128.293 40.448 198.875 40.448 136.923-13.458 198.875-40.448 116.078-63.634 162.45-109.934c46.299-46.299 82.944-100.425 109.934-162.45s40.448-128.293 40.448-198.875-13.458-136.923-40.448-198.875-63.634-116.297-109.934-162.962-100.425-83.31-162.45-109.934-128.293-40.009-198.875-40.009v0zM361.326 795.94c-46.958-20.334-88.137-48.128-123.465-83.456s-63.122-76.434-83.456-123.465-30.501-97.134-30.501-150.455 10.167-103.643 30.501-150.894c20.334-47.323 48.128-88.43 83.456-123.465s76.434-62.61 123.465-82.944 97.134-30.501 150.455-30.501 103.424 10.167 150.455 30.501c46.958 20.334 88.137 47.982 123.465 82.944s63.122 76.142 83.456 123.465 30.501 97.646 30.501 150.894-10.167 103.424-30.501 150.455c-20.334 46.958-48.128 88.137-83.456 123.465s-76.434 63.122-123.465 83.456-97.134 30.501-150.455 30.501c-53.321 0-103.424-10.167-150.455-30.501v0zM730.697 498.395c1.975-8.119 2.414-19.383-1.17-26.331-7.387-14.263-16.457-26.99-26.185-40.96-83.017-119.296-158.135-200.485-249.71-305.371-17.993-20.626-34.889-13.751-42.057-9.070-15.579 10.24-15.799 29.769-7.314 52.297 9.801 25.966 20.48 57.783 29.842 79.799 22.455 52.736 20.187 58.075 41.911 114.907-52.297-0.512-127.781-0.951-180.078-1.463-15.067-0.146-33.499 1.902-39.497 16.311-5.778 13.751-0.146 26.039 8.558 38.107 64.146 89.381 172.617 212.626 248.174 294.546 6.51 7.022 30.062 23.333 43.739 21.358 10.825-1.536 21.87 1.243 26.843-9.289 5.851-12.434 2.706-25.746-2.56-37.23-22.016-48.347-45.714-118.638-71.095-174.519 50.615-0.073 144.53-0.073 195.145-0.146 8.558 0 18.432-0.731 23.406-8.046 1.024-1.536 1.755-3.145 2.121-4.901v0z" />
+<glyph unicode="&#xe931;" glyph-name="on" data-tags="on" d="M731.429 770.267c36.571 28.16 77.239 3.584 77.239 3.584 13.97-11.557 26.551-25.234 39.351-38.107 42.935-42.935 76.873-93.038 101.888-150.455s37.522-118.857 37.522-184.247c0-65.463-12.507-126.83-37.522-184.247s-58.953-107.739-101.888-150.967c-42.935-43.227-93.038-77.166-150.455-101.888s-118.857-37.083-184.247-37.083c-65.463 0-126.83 12.361-184.247 37.083s-107.593 58.661-150.455 101.888c-42.935 43.227-76.873 93.55-101.888 150.967s-37.522 118.857-37.522 184.247 12.507 126.83 37.522 184.247 58.953 107.593 101.888 150.455c11.045 11.045 22.162 22.089 33.938 32.256 0 0 32.11 33.499 80.091 3.072 0 0 52.517-45.714 0-98.158-8.777-8.777-18.944-16.165-27.794-25.015-31.963-31.963-57.125-69.193-75.483-111.689s-27.575-87.845-27.575-136.046 9.216-93.696 27.575-136.485 43.52-80.018 75.483-111.689c31.963-31.598 69.193-56.686 111.689-75.045s87.845-27.575 136.046-27.575c48.201 0 93.55 9.216 136.046 27.575s79.726 43.374 111.689 75.045c31.963 31.598 57.125 68.827 75.483 111.689s27.575 88.283 27.575 136.485-9.216 93.55-27.575 136.046-43.52 79.726-75.483 111.689c-9.143 9.143-19.529 16.823-28.745 25.819-47.689 46.226 0 96.622 0 96.622v0zM586.167 873.472v-354.962c0-21.358-7.826-39.79-23.406-55.369s-29.477-23.406-50.834-23.406-35.255 7.826-50.834 23.406-23.406 34.011-23.406 55.369v354.962c0 21.358 7.826 39.79 23.406 55.369s29.477 23.406 50.834 23.406c21.358 0 35.255-7.826 50.834-23.406s23.406-34.011 23.406-55.369z" />
+<glyph unicode="&#xe932;" glyph-name="paused" data-tags="paused" d="M438.418 607.012v-336.238c0-0.219 0-0.512 0-0.805 0-21.285-8.85-40.448-23.113-54.053v0c-15.433-15.433-29.111-23.113-50.322-23.113s-34.743 7.68-50.322 23.113c-14.263 13.678-23.113 32.841-23.113 54.053 0 0.293 0 0.585 0 0.805v-0.073 336.238c0 0.219 0 0.512 0 0.805 0 21.285 8.85 40.448 23.113 54.053v0c15.433 15.433 29.038 23.113 50.322 23.113s34.743-7.68 50.322-23.113c14.263-13.678 23.113-32.841 23.113-54.126 0-0.293 0-0.585 0-0.805v0.073zM730.99 607.012v-336.238c0-0.219 0-0.512 0-0.805 0-21.285-8.85-40.448-23.113-54.053v0c-15.433-15.433-29.111-23.113-50.322-23.113s-34.743 7.68-50.322 23.113c-14.263 13.678-23.113 32.841-23.113 54.053 0 0.293 0 0.585 0 0.805v-0.073 336.238c0 0.219 0 0.512 0 0.805 0 21.285 8.85 40.448 23.113 54.053v0c15.433 15.433 29.038 23.113 50.322 23.113s34.743-7.68 50.322-23.113c14.263-13.678 23.113-32.841 23.113-54.126 0-0.293 0-0.585 0-0.805v0.073zM512-73.143c-70.656 0-136.997 13.312-199.022 40.009-63.195 27.282-117.102 64.366-162.45 109.934v0c-45.349 45.714-82.359 99.767-108.69 159.598l-1.317 3.365c-26.99 62.025-40.521 128.366-40.521 199.022s13.531 136.997 40.521 199.022c53.541 122.88 149.65 218.917 269.166 271.214l3.365 1.317c62.025 26.99 128.366 40.521 199.022 40.521s136.997-13.531 199.022-40.521c122.88-53.541 218.917-149.65 271.214-269.166l1.317-3.365c26.99-62.025 40.521-128.366 40.521-199.022s-13.531-136.997-40.521-199.022c-27.575-63.195-64.658-117.248-110.007-163.035l0.073 0.073c-45.422-45.641-99.328-82.725-159.159-108.763l-3.291-1.317c-62.025-26.697-128.366-40.009-199.022-40.009v0zM361.545 796.379c-93.403-40.594-166.4-113.591-206.043-204.434l-0.951-2.56c-19.31-44.471-30.501-96.329-30.501-150.747s11.191-106.277 31.451-153.307l-0.951 2.487c20.626-47.982 48.786-88.942 83.456-123.392v0c34.597-34.231 75.557-62.245 120.905-81.993l2.56-1.024c44.398-19.31 96.183-30.501 150.528-30.501s106.057 11.191 153.015 31.451l-2.487-0.951c47.909 20.773 88.795 48.786 123.465 83.017l-0.073-0.073c34.67 34.45 62.83 75.41 82.505 120.905l0.951 2.487c19.31 44.471 30.501 96.329 30.501 150.747s-11.191 106.277-31.451 153.307l0.951-2.487c-40.594 93.403-113.591 166.4-204.434 206.043l-2.56 0.951c-44.398 19.31-96.183 30.501-150.528 30.501s-106.057-11.191-153.015-31.451l2.487 0.951h0.146z" />
+<glyph unicode="&#xe933;" glyph-name="pending" data-tags="pending" d="M512-73.143c-70.656 0-136.997 13.385-199.022 40.009s-116.151 63.342-162.523 110.007-83.017 101.010-110.007 162.962-40.521 128.366-40.521 199.022c0 70.656 13.531 136.997 40.521 199.022s63.634 116.151 110.007 162.523 100.498 83.017 162.523 110.007 128.366 40.521 199.022 40.521c70.656 0 136.997-13.531 199.022-40.521s116.151-63.707 162.523-110.007c46.299-46.299 83.017-100.498 110.007-162.523s40.521-128.366 40.521-199.022c0-70.656-13.531-136.997-40.521-199.022s-63.707-116.37-110.007-162.962c-46.299-46.665-100.498-83.31-162.523-110.007s-128.366-40.009-199.022-40.009zM361.545 796.379c-46.958-20.334-88.137-48.128-123.465-83.529s-63.195-76.507-83.529-123.465c-20.334-46.958-30.501-97.134-30.501-150.455s10.167-103.643 30.501-150.967c20.334-47.323 48.128-88.503 83.529-123.465s76.507-62.683 123.465-83.017c46.958-20.334 97.134-30.501 150.455-30.501s103.497 10.167 150.455 30.501c46.958 20.334 88.137 47.982 123.465 83.017s63.122 76.142 83.529 123.465c20.334 47.323 30.501 97.646 30.501 150.967s-10.167 103.497-30.501 150.455c-20.334 46.958-48.128 88.137-83.529 123.465s-76.507 63.122-123.465 83.529c-46.958 20.334-97.134 30.501-150.455 30.501s-103.497-10.167-150.455-30.501zM328.997 662.967c0 0-8.338-94.135 73.143-130.633 26.112-11.703 70.875-33.573 72.411-71.68l0.731-1.536c2.267-36.571-19.017-60.928-74.606-80.311-75.557-26.331-71.753-160.037-71.753-160.037v0c-0.073-0.512-0.146-1.024-0.146-1.536v-62.098c0-2.487 0.805-4.535 2.341-6.071s3.584-2.341 6.071-2.341h349.038c2.487 0 4.535 0.805 6.071 2.341s2.341 3.657 2.341 6.071v62.098c0 0.512-0.073 1.024-0.146 1.536v0c0 0 4.096 134.51-73.143 162.597-58.661 21.358-75.41 48.786-74.313 77.751 3.438 30.427 49.225 60.123 74.313 75.118 79.653 47.616 74.167 119.735 73.289 127.927v60.489c0 2.487-0.805 4.535-2.341 6.071s-3.584 2.341-6.071 2.341h-348.965c-2.487 0-4.535-0.805-6.071-2.341s-2.341-3.584-2.341-6.071v-56.174c0-0.878 0.073-2.121 0.293-3.511h-0.146zM527.872 273.188c111.397 0.512 93.696-54.491 93.696-54.491h-219.429c0 55.223 87.625 53.687 87.625 53.687l38.107 0.731z" />
+<glyph unicode="&#xe934;" glyph-name="rebooting" data-tags="rebooting" d="M997.595 805.303c-17.335 7.168-32.11 4.242-44.398-8.923l-83.017-82.359c-7.314 7.826-14.848 15.433-22.382 22.967-42.935 42.935-93.038 76.873-150.455 101.888s-118.857 37.522-184.247 37.522-126.83-12.507-184.247-37.522-107.739-58.953-150.967-101.888c-43.227-42.935-77.166-93.038-101.888-150.455s-37.083-118.857-37.083-184.247 12.361-126.83 37.010-184.247c24.722-57.417 58.661-107.593 101.888-150.455s93.55-76.873 150.967-101.888 118.857-37.522 184.247-37.522c65.39 0 126.83 12.507 184.247 37.522s107.593 58.953 150.455 101.888c12.873 12.873 26.551 25.381 38.107 39.351 0 0 24.649 40.667-3.584 77.239v0c0 0-50.395 47.616-96.622 0-8.997-9.216-16.603-19.602-25.819-28.745-31.963-31.963-69.193-57.125-111.689-75.483s-87.845-27.575-136.046-27.575c-48.201 0-93.696 9.216-136.485 27.575s-80.018 43.593-111.689 75.483c-31.598 31.963-56.686 69.193-75.045 111.689s-27.575 87.845-27.575 136.046c0 48.201 9.216 93.55 27.575 136.046s43.374 79.726 75.045 111.689c31.671 31.963 68.901 57.125 111.689 75.483s88.283 27.575 136.485 27.575c48.201 0 93.55-9.216 136.046-27.575s79.726-43.52 111.689-75.483c7.973-7.973 14.775-16.969 22.455-25.088l-25.819-25.966-87.625-87.625c-13.093-12.727-16.091-27.282-8.923-43.813 7.168-16.896 19.675-25.381 37.449-25.381h284.306c10.971 0 20.553 4.023 28.599 12.069s12.069 17.554 12.069 28.526v284.306c0 17.774-8.265 30.208-24.722 37.449z" />
+<glyph unicode="&#xe935;" glyph-name="unknown" data-tags="unknown" d="M520.923-73.362c-53.467 0-94.135 16.896-131.438 54.199l-332.8 332.142c-37.522 37.522-55.296 77.678-56.686 126.391-1.609 64.439 32.475 98.523 59.685 125.952l324.315 326.144c25.6 25.6 67.218 59.465 133.705 59.465 0.658 0 1.39 0 2.267 0 58.734-0.658 96.475-30.427 128.658-62.391l320.439-323.657c44.544-50.542 53.979-79.799 54.199-126.171 0.439-59.173-12.581-83.237-53.467-126.83l-322.267-323.438c-26.77-26.77-60.123-60.123-120.247-61.513-2.048-0.219-4.315-0.219-6.363-0.219v0 0zM512.219 821.028c-13.239 0-20.334-5.047-36.352-19.163l-329.143-326.875c-21.943-21.943-21.943-29.257-21.723-37.23 0.439-13.239 5.486-19.675 21.065-35.182l329.582-329.582c13.239-12.361 19.456-18.505 36.133-18.505 17.847 0 25.819 6.656 38.4 18.066l327.973 329.143c21.943 21.943 20.773 22.821 20.773 36.571 0 0 0.439 16.018-21.723 37.522l-329.582 327.753c-21.065 16.457-26.99 17.627-35.401 17.627-0.439 0 0.219 0 0 0v0 0zM583.753 374.857c22.162 8.923 39.058 18.066 55.735 32.695 16.457 14.409 29.477 29.038 39.058 48.421 9.582 19.237 14.409 34.962 14.409 56.027s-4.827 40.667-14.409 59.173-22.601 34.523-39.058 48.201-35.913 24.43-58.075 32.475c-22.162 7.973-45.714 7.314-70.656 7.314-75.63 0-122.075-16.018-144.896-48.201s-35.182-60.123-37.522-93.038c0-3.438 1.39-5.705 3.877-6.875s5.925-1.829 9.801-1.829c3.438 0 12.8 0 42.057 0s42.715 0 45.056 0 5.047 0.439 7.973 1.829c3.218 1.17 6.363 3.657 6.363 7.753-0.219 23.552 23.771 29.696 67.218 29.915 38.619 0.219 74.021-10.313 74.021-36.791 0-13.019-5.486-25.381-16.677-37.010s-40.887-18.066-57.344-19.237c-17.115-1.17-35.401-4.096-50.542-8.923s-22.601-17.115-22.601-37.010c0-5.705 0-6.875 0-12.8s0-8.265 0-16.238 2.048-13.019 5.925-15.287c3.877-2.267 10.021-3.438 17.847-3.438 7.314 0 27.648 0 51.419 0 24.942-0.439 48.713 4.096 70.875 12.8v0zM586.021 275.456c0 2.487-0.439 4.535-1.39 6.437s-2.048 3.657-3.218 5.486c-1.829 1.829-3.657 3.218-5.486 4.096s-4.096 1.39-6.363 1.39h-115.2c-2.487 0-4.535-0.439-6.363-1.39s-3.657-2.267-5.486-4.096c-1.17-1.829-2.267-3.657-3.218-5.486s-1.39-4.096-1.39-6.437v-74.971c0-2.487 0.439-4.827 1.39-6.875s2.048-3.877 3.218-5.047c1.829-1.829 3.657-3.218 5.486-4.096s4.096-1.39 6.363-1.39h115.2c2.487 0 4.535 0.439 6.363 1.39s3.657 2.267 5.486 4.096c1.17 1.17 2.267 2.999 3.218 5.047s1.39 4.535 1.39 6.875v74.971z" />
+<glyph unicode="&#xe936;" glyph-name="applications" data-tags="applications" d="M950.827 643.87h-131.627v197.973c0 40.107-32.853 72.96-73.173 72.96h-672.853c-40.32 0-73.173-32.853-73.173-72.96v-534.613c0-40.32 32.853-73.173 73.173-73.173h131.627v-197.76c0-40.32 32.853-73.173 73.173-73.173h672.853c40.32 0 73.173 32.853 73.173 73.173v534.613c0 40.107-32.853 72.96-73.173 72.96zM887.467 577.524v-70.4h-68.267v70.4h68.267zM612.267 850.59h70.4v-70.4h-70.4v70.4zM70.187 308.51v402.133h679.040v-402.133h-679.040zM953.813 37.364h-678.827v196.693h471.040c40.32 0 73.173 32.853 73.173 73.173v132.48h134.613v-402.347z" />
+<glyph unicode="&#xe937;" glyph-name="automation" data-tags="automation" d="M257.102 590.754v0zM748.061 499.776v0c-15.23 6.212-28.255 3.607-38.876-7.815l-72.742-72.141-16.031-16.031-252.092 255.499c-38.676 32.063-63.123 36.070-111.818 36.070-141.677 0-256.501-114.824-256.501-256.501s114.824-256.501 256.501-256.501c48.094 0 88.373 17.835 124.243 45.89l-0.601 0.401c1.804 1.202 3.607 2.405 5.411 3.607 23.446 16.632 28.856 49.296 12.224 72.742s-49.296 28.856-72.742 12.224c-23.245-16.632-50.298-26.251-78.754-28.456-82.762 1.002-142.077 66.73-142.077 150.093 0 82.561 61.921 149.893 143.881 152.297h0.601c1.403 0 2.605 0 4.008 0 0.802-0.2 1.603 0 2.204-0.2h0.401c14.629 0.2 37.874-5.21 57.913-21.241l234.458-238.867-87.972-87.972c-11.422-11.222-14.027-23.847-7.815-38.475 6.212-14.829 17.234-22.243 32.864-22.243h249.287c9.619 0 18.035 3.607 25.049 10.621s10.621 15.43 10.621 25.049v249.086c0 15.631-7.214 26.652-21.642 32.864zM769.503 695.358v-1.403c-2.805 0.601-5.811 0.802-8.817 0.802-54.506 0.802-106.809-15.029-151.696-45.89-23.646-16.432-29.658-48.695-13.226-72.542 10.020-14.629 26.452-22.444 42.884-22.444 10.22 0 20.44 3.006 29.458 9.218 26.852 18.436 58.314 28.055 90.978 27.454 3.607 0 7.014 0.2 10.42 0.802v-0.401c83.964 0 152.297-68.333 152.297-152.297 0-61.119-36.271-114.023-88.172-138.27v-110.416c110.616 28.456 192.376 128.852 192.376 248.485 0 142.077-114.824 256.902-256.501 256.902z" />
+<glyph unicode="&#xe938;" glyph-name="connected" data-tags="connected" d="M300.48 247.154c-14.377 0-28.526 6.766-37.417 19.406-35.543 50.514-54.331 109.966-54.331 171.931 0 61.897 18.743 121.303 54.24 171.794 14.514 20.663 43.040 25.646 63.68 11.109 20.663-14.514 25.646-43.040 11.109-63.68-24.594-35.017-37.6-76.229-37.6-119.223 0-43.017 13.029-84.297 37.691-119.314 14.537-20.64 9.577-49.166-11.086-63.703-8.023-5.623-17.211-8.32-26.286-8.32v0zM721.737 246.834c-9.12 0-18.309 2.72-26.331 8.366-20.617 14.56-25.531 43.086-10.971 63.703 24.777 35.086 37.851 76.434 37.851 119.566 0 43.429-13.257 85.029-38.331 120.251-14.651 20.571-9.829 49.12 10.72 63.749 20.571 14.629 49.12 9.829 63.749-10.72 36.16-50.811 55.291-110.72 55.291-173.28 0-62.126-18.88-121.714-54.606-172.297-8.891-12.594-23.017-19.337-37.371-19.337v0zM622.034 439.177c0-60.777-49.257-110.034-110.034-110.034s-110.034 49.257-110.034 110.034 49.257 110.034 110.034 110.034 110.034-49.257 110.034-110.034zM862.697 92.571c-12.366 0-24.8 4.251-34.949 12.937-22.514 19.314-25.12 53.211-5.806 75.749 61.463 71.68 95.314 163.269 95.314 257.829 0 95.611-34.514 187.954-97.189 260-19.474 22.377-17.12 56.32 5.28 75.771 22.377 19.474 56.297 17.12 75.771-5.28 79.68-91.589 123.566-208.96 123.566-330.514 0-120.206-43.040-236.617-121.189-327.771-10.606-12.366-25.646-18.72-40.8-18.72zM163.474 89.531c-14.971 0-29.874 6.217-40.48 18.4-80.046 91.68-124.137 209.303-124.137 331.154 0 84.731 21.463 168.549 62.057 242.4 17.257 31.383 37.943 61.029 61.509 88.114 19.474 22.377 53.394 24.731 75.771 5.28s24.731-53.394 5.28-75.771c-18.56-21.326-34.857-44.663-48.434-69.371-31.886-58.034-48.754-123.977-48.754-190.651 0-95.863 34.674-188.389 97.623-260.503 19.52-22.354 17.211-56.274-5.143-75.794-10.171-8.891-22.766-13.257-35.291-13.257z" />
+<glyph unicode="&#xe939;" glyph-name="catalog" data-tags="catalog" horiz-adv-x="1097" d="M509.714 737.371v-0.686c0.229 0.229 0.229 0.457 0 0.686zM184.457 84.114c-67.2-6.171-111.314-83.657-111.314-83.657v877.257c-73.143-2.286-73.143-68.571-73.143-68.571v-813.714c2.971-86.857 109.714-66.286 109.714-66.286 109.714 154.743 402.286-2.286 402.286-2.286v71.314c-125.714 81.829-242.286 95.543-327.543 85.943zM366.629 133.714c53.486-9.371 110.857-52.571 143.086-60.343v72.914h-3.886c-0.229 0-0.457 0-0.686 0h4.571v590.4c0 0 0 0 0 0v0.686c0 0 0 0 0 0l0.229 58.057c0 0-0.229 0-0.229 0.229v8c-119.314 76.8-274.057 129.143-363.429 145.829v-811.2c65.6 18.057 120.229 13.257 220.343-4.571zM587.429 737.371c-0.229-0.229-0.229-0.229 0 0v0zM1024 877.714v-877.257c0 0-44.114 77.486-111.314 83.657-85.257 9.6-201.829-4.114-327.543-85.943v-71.314c0 0 292.571 157.029 402.286 2.286 0 0 106.743-20.571 109.714 66.286v813.714c0 0 0 66.286-73.143 68.571zM587.429 545.143v-398.857l10.514 1.829c-2.057-1.143-4.343-1.829-6.629-1.829h-3.886v-72.914c32.229 7.771 89.6 50.971 143.086 60.343 100.114 17.829 154.743 22.629 220.343 4.571v811.2c-89.371-16.686-244.114-69.029-363.429-145.6v-8.229c0-0.229-0.229-0.229-0.229-0.229l0.229-58.057v-192.229z" />
+<glyph unicode="&#xe93a;" glyph-name="enhancement" data-tags="enhancement" d="M1001.6 317.943l-106.743 120.914 106.743 120.914c4.343 5.486 7.543 11.657 9.371 18.514 7.086 26.286-8.686 53.486-34.971 60.571l-150.629 30.171 23.771 157.486c0.457 7.086-0.686 13.943-3.2 20.571-9.829 25.371-38.4 38.171-64 28.343l-159.543-86.171-68.8 138.971c-3.886 5.943-8.686 10.971-14.629 14.629-22.857 14.857-53.486 8.229-68.343-14.629l-71.314-139.2-157.257 86.171c-6.4 2.514-13.486 3.657-20.343 3.2-27.429-1.371-48.229-24.686-46.857-51.886l23.771-157.486-150.629-30.4c-6.857-1.829-13.029-5.029-18.514-9.371-21.257-17.143-24.457-48.229-7.314-69.486l106.971-120.914-106.743-120.914c-4.343-5.486-7.543-11.657-9.371-18.514-7.086-26.286 8.686-53.486 35.2-60.343l155.2-25.6-28.343-162.057c-0.457-7.086 0.686-13.943 3.2-20.571 9.829-25.371 38.4-38.171 64-28.343l157.257 86.171 71.314-139.2c3.886-5.943 8.686-10.971 14.629-14.629 22.857-14.857 53.486-8.229 68.343 14.629l71.314 139.2 157.257-86.171c6.4-2.514 13.486-3.657 20.571-3.2 27.2 1.371 48.229 24.686 46.629 52.114l-28.343 162.057 155.2 25.6c6.857 1.829 13.029 5.029 18.514 9.371 20.8 17.143 24 48.229 6.629 69.486zM730.971 384.228c0-2.286-0.229-4.8-0.914-7.086-0.914-2.286-2.286-4.343-4.114-5.943-1.371-2.057-3.2-3.429-5.486-4.114-2.514-0.686-5.029-0.914-7.543-0.914h-128v-128c0-2.514-0.229-5.029-0.914-7.543-0.686-2.286-2.057-4.114-4.114-5.486-1.829-1.829-3.657-3.429-5.943-4.571s-4.571-1.6-7.086-1.6h-109.943c-2.514 0-4.8 0.457-7.086 1.6s-4.343 2.743-5.943 4.571c-2.057 1.371-3.429 3.2-4.114 5.486-0.686 2.514-0.914 5.029-0.914 7.543v128h-128c-2.514 0-5.029 0.229-7.543 0.914-2.286 0.686-4.114 2.057-5.486 4.114-1.829 1.6-3.2 3.657-4.114 5.943-0.686 2.286-1.143 4.571-0.914 7.086v109.029c0 2.514 0.229 5.029 0.914 7.543s2.057 4.8 4.114 6.4c1.6 1.6 3.429 2.743 5.486 3.429 2.286 0.914 5.029 1.6 7.543 1.6h128v128c0 2.514 0.229 5.029 0.914 7.543 0.686 2.286 2.057 4.114 4.114 5.486 1.6 1.829 3.657 3.2 5.943 4.114 2.286 0.686 4.571 1.143 7.086 0.914h109.943c2.286 0 4.8-0.229 7.086-0.914 2.286-0.914 4.343-2.286 5.943-4.114 2.057-1.371 3.429-3.2 4.114-5.486 0.686-2.514 0.914-5.029 0.914-7.543v-128h128c2.514 0 5.029-0.457 7.543-1.6v0c2.057-0.686 3.886-2.057 5.714-3.429 1.829-1.829 3.2-4.114 4.114-6.4 0.686-2.514 0.914-5.029 0.914-7.543v-109.029h-0.229z" />
+<glyph unicode="&#xe93b;" glyph-name="pficon-history" data-tags="pficon-history" d="M512 950.857c-136.731 0-260.937-53.623-352.754-140.96l-116.823 116.823c-23.337 23.337-42.423 15.429-42.423-17.577v-264c0-50.994 8.343-60 60-60h264c33.006 0 40.914 19.086 17.577 42.423v0l-91.794 91.794c71.383 66.834 163.977 103.497 262.217 103.497 102.56 0 198.994-39.954 271.52-112.48s112.48-168.96 112.48-271.52c0-102.56-39.954-198.994-112.48-271.543-72.526-72.503-168.96-112.457-271.52-112.457s-198.994 39.954-271.52 112.48c-6.057 6.057-11.863 12.297-17.463 18.674l-96.32-84.297c93.851-107.177 231.657-174.857 385.303-174.857 282.766 0 512 229.234 512 512s-229.234 512-512 512z" />
+<glyph unicode="&#xe93c;" glyph-name="disconnected" data-tags="disconnected" d="M904.686 112.457c77.486 90.971 120 206.857 120 326.629 0 121.6-43.886 238.857-123.657 330.514-19.429 22.4-53.486 24.686-75.657 5.257-22.4-19.429-24.686-53.486-5.257-75.886 62.629-72 97.143-164.343 97.143-259.886 0-91.2-31.543-179.657-88.914-250.286l-73.6 73.6c1.143 1.371 2.514 2.743 3.429 4.343 35.657 50.286 54.4 109.714 54.4 171.657 0 62.4-18.971 122.057-55.086 172.571-14.171 20.114-42.057 24.686-62.171 10.514s-24.686-42.057-10.514-62.171c25.143-35.429 38.629-77.257 38.629-120.914 0-40-11.2-78.629-32.686-112.229l-75.429 75.2c4.343 11.657 6.629 24.229 6.629 37.486 0 60.8-49.371 109.943-109.943 109.943-13.257 0-25.829-2.286-37.486-6.629l-393.371 393.829c-18.286 18.286-48 18.286-66.286 0s-18.286-48 0-66.286l104.229-104.229c0 0 0 0 0 0l76.343-76.114c0 0 0 0 0 0l137.143-137.143c0 0 0 0 0 0l75.886-75.886c0 0 0 0 0 0l140.571-140.571c0 0 0 0 0 0l393.829-393.829c9.143-9.143 21.029-13.714 33.143-13.714s24 4.571 33.143 13.714c18.286 18.286 18.286 48 0 66.286l-104.457 104.229zM298.971 438.4c0 4.8 0.229 9.371 0.457 13.943l-75.886 75.886c-9.143-28.8-13.714-58.971-13.714-89.829 0-61.714 18.743-120.914 54.171-171.2 8.686-12.343 22.4-18.971 36.571-18.971 8.914 0 17.829 2.514 25.6 8 20.114 14.171 24.914 42.057 10.743 62.171-24.914 35.429-37.943 76.8-37.943 120zM106.286 439.086c0 58.514 13.029 116.343 37.714 168.914l-79.543 79.543c-1.143-2.057-2.286-4.114-3.429-6.171-40.457-73.829-61.943-157.714-61.943-242.514 0-121.829 44.114-239.543 124.114-331.2 10.743-12.114 25.6-18.286 40.457-18.286 12.571 0 25.143 4.343 35.2 13.257 22.4 19.429 24.686 53.486 5.029 75.886-62.857 72.229-97.6 164.571-97.6 260.571z" />
+<glyph unicode="&#xe93d;" glyph-name="infrastructure" data-tags="infrastructure" d="M1013.36 171.757c-7.060 7.060-15.44 10.5-25.5 10.5h-27.9v63.6c0 17.4-6.4 34.2-19 47-12.6 12.6-27.6 19-45 19h-63.4v62.56h26.8c10.080 0 18.5 3.46 25.58 10.54s10.54 15.5 10.54 25.58v120.2c0 10.080-3.46 18.5-10.54 25.58s-15.5 10.54-25.58 10.54h-113.16l-106.7 106.7c0.18 1.74 0.28 3.52 0.28 5.36v159.9c0 13.4-4.6 24.6-14.020 34.020s-20.62 14.020-34.020 14.020h-159.9c-13.4 0-24.62-4.6-34.020-14.020-9.42-9.42-14.020-20.62-14.020-34.020v-159.9c0-1.88 0.12-3.68 0.3-5.48l-106.42-106.58c-9.94 0-78.38 0-78.38 0h-36.1c-10.080 0-18.5-3.46-25.58-10.54s-10.54-15.5-10.54-25.58v-120.2c0-10.080 3.46-18.5 10.54-25.58s15.5-10.54 25.58-10.54h27.4v-62.76h-63.6c-17.4 0-32.2-6.4-45-19 0 0-17.5-22.8-18.76-48.56v-61.84h-27.060c-10.040 0-18.44-3.44-25.5-10.5s-10.48-15.44-10.48-25.5v-119.82c0-10.040 3.44-18.44 10.5-25.5 7.040-7.040 15.44-10.5 25.5-10.5h119.8c10.040 0 18.44 3.44 25.5 10.5 7.040 7.040 10.5 15.44 10.5 25.5v119.82c0 10.040-3.44 18.44-10.5 25.5s-15.44 10.5-25.5 10.5h-28v64.6h191.5v-0.6l0.44-64h-27.86c-10.040 0-18.44-3.44-25.5-10.5s-10.5-15.44-10.5-25.5v-119.82c0-10.040 3.44-18.44 10.5-25.5 7.040-7.040 15.44-10.5 25.5-10.5h119.82c10.040 0 18.44 3.44 25.5 10.5 7.040 7.040 10.5 15.44 10.5 25.5v119.82c0 10.040-3.44 18.44-10.5 25.5s-15.44 10.5-25.5 10.5h-27.9v63.6c0 17.4-6.4 34.2-19 47-12.6 12.6-27.6 19-45 19h-63.4v62.56h26.8c10.080 0 18.5 3.46 25.58 10.54s10.54 15.5 10.54 25.58v113.32l107.12 107.28c1.7-0.16 3.42-0.26 5.2-0.26h159.9c1.82 0 3.58 0.1 5.32 0.28l105.98-105.98v-114.64c0-10.080 3.46-18.5 10.54-25.58s15.5-10.54 25.58-10.54h27.4v-62.76h-63.6c-17.4 0-32.2-6.4-45-19 0 0-17.5-22.8-18.76-48.56v-61.84h-27.060c-10.040 0-18.44-3.44-25.5-10.5s-10.5-15.44-10.5-25.5v-119.82c0-10.040 3.44-18.44 10.5-25.5 7.040-7.040 15.44-10.5 25.5-10.5h119.82c10.040 0 18.44 3.44 25.5 10.5 7.040 7.040 10.5 15.44 10.5 25.5v119.82c0 10.040-3.44 18.44-10.5 25.5s-15.44 10.5-25.5 10.5h-28v64.6h191.5v-0.6l0.44-64h-27.86c-10.040 0-18.44-3.44-25.5-10.5s-10.5-15.44-10.5-25.5v-119.82c0-10.040 3.44-18.44 10.5-25.5 7.040-7.040 15.44-10.5 25.5-10.5h119.82c10.040 0 18.44 3.44 25.5 10.5 7.040 7.040 10.5 15.44 10.5 25.5v119.82c0 10.040-3.44 18.44-10.5 25.5zM575.9 696.857h-128v128h128v-128z" />
+<glyph unicode="&#xe93e;" glyph-name="optimize" data-tags="optimize" d="M256 758.857l-128 128h-64v-64l128-128zM320 950.857h64v-128h-64zM576 630.857h128v-64h-128zM640 822.857v64h-64l-128-128 64-64zM0 630.857h128v-64h-128zM320 374.857h64v-128h-64zM64 374.857v-64h64l128 128-64 64zM1010 68.857l-636.118 636.118c-18.668 18.668-49.214 18.668-67.882 0l-60.118-60.118c-18.668-18.668-18.668-49.214 0-67.882l636.118-636.118c18.668-18.668 49.214-18.668 67.882 0l60.118 60.118c18.668 18.668 18.668 49.214 0 67.882zM480 406.857l-192 192 64 64 192-192-64-64z" />
+<glyph unicode="&#xe93f;" glyph-name="orders" data-tags="orders" d="M448 156.347l-205.254 237.254 58.508 58.51 146.746-114.744 274.744 242.744 58.512-58.508zM831.772 822.857c0.078-0.066 0.162-0.15 0.228-0.23v-767.542c-0.066-0.078-0.15-0.162-0.228-0.228h-639.544c-0.080 0.066-0.162 0.15-0.228 0.228v767.544c0.066 0.080 0.15 0.162 0.23 0.228h-128.23v-768c0-70.4 57.6-128 128-128h640c70.4 0 128 57.6 128 128v768h-128.228zM640 822.857v64c0 35.346-28.654 64-64 64h-128c-35.346 0-64-28.654-64-64v-64h-128v-128h512v128h-128zM576 822.857h-128v64h128v-64z" />
+<glyph unicode="&#xe940;" glyph-name="plugged" data-tags="plugged" d="M730.057 694.857l1.6 255.771-146.057-0.686-0.229-255.086h-146.057l-1.829 255.771h-143.543l-3.177-255.771h-106.537c0 0 0-0.411 0-1.143h-37.943l-0.457-114.743 38.4 0.069c0-0.046 0-0.069 0-0.069h693.486v115.886h-147.657zM804.571 508.571v0h-1.189l-34.446 0.229-0.183-0.206-130.4 0.114 0.526 0.526-454.857 2.286c9.829-107.657 44.343-243.429 125.029-330.971l0.183 0.183c66.88-75.223 129.623-80.16 129.623-80.16v-173.714h146.286v172.343c179.2 43.657 239.086 253.943 253.029 409.143l-33.6 0.229z" />
+<glyph unicode="&#xe941;" glyph-name="service-catalog" data-tags="service-catalog" d="M172.16 107.764c79.573 8.96 188.373-3.84 305.707-80.213v-66.56c0 0-273.067 146.56-375.467 2.133 0 0-99.627-19.2-102.4 61.867v759.467c0 0 0 61.867 68.267 64v-818.773c0 0 41.173 72.32 103.893 78.080zM472.107 165.79c-5.973 0-11.947 4.693-12.8 10.667l-7.040 91.307c-11.307 3.413-12.16 2.987-22.4 8.107l-63.147-58.88c-2.133-2.133-5.547-2.987-8.533-2.987-3.413 0-6.4 1.28-8.96 3.413-11.093 10.24-61.653 56.107-61.653 68.48 0 2.987 1.28 5.547 2.987 8.107 12.373 16.213 43.733 51.84 56.107 68.48-5.973 11.733-5.12 7.893-8.96 19.84l-89.6 5.76c-5.973 0.853-10.24 6.4-10.24 12.373v78.933c0 5.547 4.267 11.947 9.813 12.8l88.747 4.267c3.413 11.307 2.56 16.213 8.107 26.88-11.947 17.067-41.6 44.8-55.253 61.013-1.707 2.56-2.987 5.547-2.987 8.533s0.853 5.973 2.987 8.533c8.533 11.52 56.533 63.36 68.907 63.36 3.413 0 6.4-1.28 8.96-2.987l65.92-57.813c10.88 5.547 9.813 6.4 21.333 10.24 2.133 21.547-0.64 67.84 4.907 88.747 1.707 5.973 6.827 10.24 12.8 10.24h3.627v66.133c-111.36 71.68-255.787 120.533-339.2 136.107v-757.12c61.227 16.853 112.213 12.373 205.653-4.267 49.92-8.747 103.467-49.067 133.547-56.32v68.053h-3.627zM851.84 107.764c-79.573 8.96-188.373-3.84-305.707-80.213v-66.56c0 0 273.067 146.56 375.467 2.133 0 0 99.627-19.2 102.4 61.867v759.467c0 0 0 61.867-68.267 64v-818.773c0 0-41.173 72.32-103.893 78.080zM551.893 165.79c5.973 0 11.947 4.693 12.8 10.667l7.040 91.307c11.307 3.413 12.16 2.987 22.4 8.107l63.147-58.88c2.133-2.133 5.547-2.987 8.533-2.987 3.413 0 6.4 1.28 8.96 3.413 11.093 10.24 61.653 56.107 61.653 68.48 0 2.987-1.28 5.547-2.987 8.107-12.373 16.213-43.733 51.84-56.107 68.48 5.973 11.733 5.12 7.893 8.96 19.84l89.6 5.76c5.973 0.853 10.24 6.4 10.24 12.373v78.933c0 5.547-4.267 11.947-9.813 12.8l-88.747 4.267c-3.413 11.307-2.56 16.213-8.107 26.88 11.947 17.067 41.6 44.8 55.253 61.013 1.707 2.56 2.987 5.547 2.987 8.533s-0.853 5.973-2.987 8.533c-8.533 11.52-56.533 63.36-68.907 63.36-3.413 0-6.4-1.28-8.96-2.987l-65.92-57.6c-10.88 5.547-9.813 6.4-21.333 10.24-2.133 21.547 0.64 67.84-4.907 88.747-1.707 5.973-6.827 10.24-12.8 10.24h-3.627v66.133c111.36 71.467 255.787 120.32 339.2 135.893v-757.12c-61.227 16.853-112.213 12.373-205.653-4.267-49.92-8.747-103.467-49.067-133.547-56.32v68.053h3.627zM620.8 434.59c0-60.096-48.704-108.8-108.8-108.8s-108.8 48.704-108.8 108.8c0 60.096 48.704 108.8 108.8 108.8s108.8-48.704 108.8-108.8z" />
+<glyph unicode="&#xe942;" glyph-name="unplugged" data-tags="unplugged" d="M395.429 127.771v0c21.029-13.029 17.829-20.343 43.429-27.2v-173.714h146.286v172.343c179.2 43.657 239.086 253.943 253.029 409.143l-69.257 0.457-373.486-381.029zM944.457 866.514c-16.457 16.686-43.429 16.686-59.886 0.229l-154.4-153.509 1.486 237.394-146.057-0.686-0.229-256.229-146.057 0.914-1.829 256h-143.543l-3.2-256.914h-144.457l-0.457-114.743 450.24 0.914-70.469-70.057-341.6 1.714c7.589-83.223 29.966-183.246 77.006-264.8l-176.434-175.429c-16.686-16.457-16.686-43.429-0.229-59.886 8.229-8.457 18.971-12.571 29.943-12.571v0c10.743 0 21.486 4.114 29.943 12.343l800 795.429c16.686 16.457 16.686 43.429 0.229 59.886z" />
+<glyph unicode="&#xe943;" glyph-name="filter" data-tags="filter" horiz-adv-x="951" d="M908.571 758.857c-113.714 113.714-434.354 118.857-434.354 118.857-366.903 0-437.646-124.571-437.646-124.571-22.857-34.286-0.114-58.286-0.114-58.286l329.143-330.286v-254.857c0-9.714 4-18.857 10.857-25.714l146.286-146.286c6.857-7.429 16-10.857 25.714-10.857 4.571 0 9.714 1.143 14.286 2.857 13.143 5.714 22.286 18.857 22.286 33.714v401.143l329.166 328.023c0 0-2.4-1.509-5.509-1.12l5.509 1.12c20.526 34.309-5.623 66.263-5.623 66.263zM475.429 656c-181.783 0-336 18.126-336 54.56s154.217 77.417 336 77.417 336-40.983 336-77.417-154.217-54.56-336-54.56z" />
+<glyph unicode="&#xe944;" glyph-name="monitoring" data-tags="monitoring" horiz-adv-x="1097" d="M1097.143 75.428v804.571h-1097.143v-804.571h475.429v-73.143h-256v-73.143h658.286v73.143h-256v73.143h475.429zM146.286 221.714v509.714h802.286v-509.714h-802.286zM802.103 655.108l-180.389-186.149-145.76 150.309-249.326-249.326c-18.743-18.743-18.743-49.143 0-67.886 9.371-9.371 21.646-14.057 33.943-14.057s24.571 4.686 33.943 14.057l180.389 180.389 146.811-151.406 249.326 257.28c18.446 19.040 17.966 49.417-1.074 67.863-19.017 18.446-49.417 17.966-67.863-1.074z" />
+<glyph unicode="&#xe945;" glyph-name="port" data-tags="port" horiz-adv-x="951" d="M549.554 64l-164.114 469.806-137.189-243.52h-248.251v114.286h181.463l228.526 405.623 169.6-485.623 120.434 189.714h250.834v-114.286h-188.023z" />
+<glyph unicode="&#xe946;" glyph-name="security" data-tags="security" d="M925.714 938.194c-7.84 8.183-18.697 12.777-30.034 12.663h-767.68c-11.337 0.114-22.194-4.48-30.034-12.663-8.183-7.817-12.754-18.674-12.663-29.989v-511.817c0.137-38.949 7.726-77.509 22.331-113.623 13.851-35.657 32.457-69.257 55.314-99.909 23.497-30.72 49.806-59.177 78.629-84.96 26.72-24.503 54.857-47.406 84.297-68.571 25.76-18.286 52.64-35.497 80.64-51.657s47.863-27.154 59.634-32.983c11.771-5.783 21.211-10.217 28.32-13.326 10.926-5.326 23.726-5.326 34.651 0 7.109 3.040 16.549 7.497 28.32 13.326s31.68 16.777 59.703 32.846c28 16.206 54.88 33.44 80.64 51.657 29.44 21.166 57.577 44.069 84.297 68.571 28.823 25.829 55.131 54.331 78.606 85.097 22.857 30.674 41.463 64.297 55.314 99.954 14.606 36.114 22.194 74.674 22.331 113.623v511.771c0.114 11.314-4.457 22.171-12.617 29.989zM595.337 183.52c-0.206-15.291-12.549-27.634-27.84-27.84h-111.36c-15.291 0.206-27.634 12.549-27.84 27.84v97.44c0.206 15.291 12.549 27.634 27.84 27.84h111.36c15.291-0.206 27.634-12.549 27.84-27.84v-97.44zM596.206 429.097c-0.251-7.451-3.451-14.491-8.914-19.566-5.211-5.326-12.343-8.32-19.794-8.274h-111.36c-7.451-0.046-14.583 2.949-19.794 8.274-5.463 5.074-8.663 12.114-8.914 19.566l-12.183 334.057c-0.366 7.314 2.4 14.423 7.611 19.566 5.006 5.349 12.023 8.366 19.36 8.274h139.2c7.337 0.091 14.354-2.926 19.36-8.274 5.211-5.143 7.977-12.251 7.611-19.566l-12.183-334.057z" />
+<glyph unicode="&#xe947;" glyph-name="services" data-tags="services" horiz-adv-x="1026" d="M962.514 328.228c-45.943 48.229-96 23.086-96 23.086l-205.943-205.029-256-0.686c-36.571 0-35.429 34.971-35.429 34.971 0 36.571 35.657 36.571 35.657 36.571h217.829c15.314 0 16.686 0.686 27.429 11.429 7.223 7.223 9.486 16.389 10.194 26.286 0.274-3.909 0.32-7.931 0.32-12v24c0-4.069-0.046-8.069-0.32-12-0.709 9.897-2.971 19.063-10.194 26.286-10.743 10.743-12.114 13.714-27.429 13.714h-373.257c-20.343 0.457-41.371-10.286-61.943-26.971l-151.086-159.543 184.457-183.086 76.343 73.143h421.714c33.143 1.6 78.4 58.743 78.4 58.743l183.314 192c18.286 43.429-18.057 79.086-18.057 79.086zM291.017 614.057v0c0-6.4 4.571-12.343 10.971-13.257l96-6.171c4.114-12.8 3.2-8.686 9.6-21.257-13.257-17.829-46.857-56-60.114-73.371-1.829-2.743-3.2-5.486-3.2-8.686 0-13.257 54.171-62.4 66.057-73.371 2.743-2.286 5.943-3.657 9.6-3.657 3.2 0 6.857 0.914 9.143 3.2l67.657 63.086c10.971-5.486 11.886-5.029 24-8.686l7.543-97.829c0.914-6.4 7.314-11.429 13.714-11.429h85.257c6.4 0 11.886 4.571 13.714 10.971 5.943 22.4 1.6 74.743 3.886 98.286 12.343 3.657 11.2 4.343 22.857 10.286l72-64.457c2.743-1.829 5.943-3.2 9.6-3.2 13.257 0 64.686 56 73.829 68.343 2.286 2.286 3.2 5.486 3.2 8.686 0 3.657-1.371 6.4-3.2 9.143-14.629 17.371-53.029 49.829-65.829 68.114 5.943 11.429 4.8 11.2 8.457 23.314l101.943 7.543c5.943 0.914 10.514 7.771 10.514 13.714v84.8c-0.229 5.714-4.8 11.657-11.2 13.029l-97.829 8c-4.114 12.8-2.057 9.143-8 21.714 12.8 17.829 47.086 53.029 60.343 70.857 1.829 2.743 3.2 5.486 3.2 8.686 0 12.8-54.171 62.4-66.057 73.371-2.743 2.286-5.943 3.657-9.6 3.657-3.2 0-6.4-0.914-9.143-3.2l-68.114-59.429c-10.971 5.486-12.571 5.486-24.686 9.143l-6.171 93.943c-0.914 6.4-7.314 11.429-13.714 11.429h-85.257c-6.4 0-11.886-4.571-13.714-10.971-5.943-22.4-2.971-72-5.257-95.086-12.343-4.114-11.2-5.029-22.857-10.971l-70.629 61.943c-2.743 1.829-5.943 3.2-9.6 3.2-13.257 0-64.686-55.543-73.829-67.886-2.286-2.743-3.2-5.943-3.2-9.143s1.371-6.4 3.2-9.143c14.629-17.371 46.4-47.086 59.2-65.371-5.943-11.429-5.029-16.686-8.686-28.8l-95.086-4.571c-5.943-0.914-10.514-7.771-10.514-13.714v-84.8zM582.903 769.943c63.314 0 114.743-51.429 114.743-114.743s-51.406-114.743-114.743-114.743c-63.086 0-114.743 51.429-114.743 114.743s51.429 114.743 114.743 114.743zM182.331 658.286c60.594 0 109.714 49.12 109.714 109.714s-49.12 109.714-109.714 109.714-109.714-49.12-109.714-109.714 49.12-109.714 109.714-109.714zM182.331 809.623c22.994 0 41.646-18.629 41.646-41.623s-18.651-41.623-41.646-41.623-41.623 18.629-41.623 41.623 18.629 41.623 41.623 41.623zM219.429 587.428c-40.389 0-73.143-32.754-73.143-73.143s32.754-73.143 73.143-73.143 73.143 32.754 73.143 73.143-32.754 73.143-73.143 73.143zM219.429 489.966c-13.44 0-24.32 10.903-24.32 24.32s10.903 24.32 24.32 24.32 24.32-10.903 24.32-24.32-10.88-24.32-24.32-24.32z" />
+<glyph unicode="&#xe948;" glyph-name="integration" data-tags="integration" horiz-adv-x="1170" d="M665.097 474.171c0 35.817-29.029 64.846-64.846 64.846-23.291 0-43.703-12.274-55.131-30.72-16.503-1.691-31.977 10.331-31.977 36.114v66.697c0 26.354-21.966 48.297-48.297 48.297h-66.697c-35.223 0-44.8 28.869-28.731 49.806 15.794 11.84 26.011 30.697 26.011 51.931 0 35.817-29.029 64.846-64.846 64.846s-64.846-29.029-64.846-64.846c0-18.149 7.451-34.537 19.474-46.309 0.754-0.914 1.509-1.851 2.309-2.743 19.314-21.074 10.537-52.686-26.331-52.686v0l-67.634 0.869c-26.354 0-48.297-21.966-48.297-48.297v-66.697c0-23.36-11.771-35.429-25.76-36.229-11.52 18.011-31.68 29.966-54.651 29.966-35.817 0-64.846-29.029-64.846-64.846s29.029-64.846 64.846-64.846c24 0 44.96 13.051 56.16 32.457 13.943-1.623 25.669-13.623 25.669-36.091v-208.411c0-26.331 24.229-48.297 51.451-49.166h56.366c-7.886 14.926-11.406 30.743-11.406 46.537 0 54.446 27.017 79.177 86.72 80.937h-1.051c43.771 0.983 79.863-24.754 79.863-80.937 0-15.817-4.389-32.48-11.406-46.537h66.743c26.354 0 48.297 21.966 48.297 48.297v210.171c0 25.417 15.017 37.486 31.269 36.183 11.063-19.954 32.32-33.44 56.731-33.44 35.817 0 64.846 29.029 64.846 64.846zM1106.080 539.017c-23.703 0-44.434-12.731-55.749-31.726-13.874 0.091-25.44 12.183-25.44 36.274l0.869 67.566c0 26.331-21.943 48.297-48.297 48.297h-66.697c-32.434 0-43.109 24.457-32.069 44.686 15.703 11.84 25.829 30.629 25.829 51.794 0 35.817-29.029 64.846-64.846 64.846s-64.846-29.029-64.846-64.846c0-23.543 12.549-44.137 31.314-55.497 5.509-18.491-6.149-37.829-34.971-37.829h-135.269c-26.331 0-48.297-24.229-49.166-51.451v-13.143c6.674 1.051 13.509 1.623 20.48 1.623 71.543 0 129.531-57.989 129.531-129.531s-57.989-129.509-129.509-129.509c-6.971 0-13.806 0.571-20.48 1.623v-74.56c0-26.331 21.943-48.297 48.297-48.297h137.029c32.846 0 43.383-25.097 31.634-45.463-17.417-11.634-28.891-31.451-28.891-53.966 0-35.817 29.029-64.846 64.846-64.846s64.846 29.029 64.846 64.846c0 20.823-9.829 39.337-25.097 51.2-13.531 20.686-3.383 47.337 30.491 47.337h71.269c26.331 0 43.726 24.229 43.726 50.583v137.554c0 23.497 10.971 35.566 24.389 36.251 11.063-19.977 32.32-33.509 56.777-33.509 35.817 0 64.846 29.029 64.846 64.846s-29.029 64.846-64.846 64.846z" />
+<glyph unicode="&#xe949;" glyph-name="process-automation" data-tags="process-automation" d="M964.114 290.971h-217.897c-17.12 18.103-48.846 45.646-60.274 61.943 5.943 11.429 4.8 11.2 8.457 23.314l101.943 7.543c5.943 0.914 10.514 7.771 10.514 13.714v84.8c-0.229 5.714-4.8 11.657-11.2 13.029v0l-97.829 8c-4.114 12.8-2.057 9.143-8 21.714 12.8 17.829 47.086 53.029 60.343 70.857 1.829 2.743 3.2 5.486 3.2 8.686 0 12.8-54.171 62.4-66.057 73.371-2.743 2.286-5.943 3.657-9.6 3.657-3.2 0-6.4-0.914-9.143-3.2l-68.114-59.429c-10.971 5.486-12.571 5.486-24.686 9.143l-6.171 93.943c-0.914 6.4-7.314 11.429-13.714 11.429h-85.257c-6.4 0-11.886-4.571-13.714-10.971-5.943-22.4-2.971-72-5.257-95.086-12.343-4.114-11.2-5.029-22.857-10.971l-70.629 61.943c-2.743 1.829-5.943 3.2-9.6 3.2-5.554 0-17.783-9.737-30.789-21.943l-64.731 62.766c70.857 64.846 162.149 100.434 258.949 100.434 102.629 0 199.086-40 271.543-112.457s112.457-168.914 112.457-271.543c0-24.914-2.286-49.371-6.857-73.143h129.6c3.429 24 5.257 48.229 5.257 73.143 0 282.743-229.257 512-512 512-135.931 0-259.177-52.96-350.926-139.2l-118.56 114.971c-23.314 23.314-42.514 15.543-42.514-17.371v-264.229c0-50.971 8.229-59.886 59.886-59.886h224.069c16.091-17.28 39.451-40.046 49.989-55.086-5.943-11.429-5.029-16.686-8.686-28.8l-95.086-4.571c-5.943-0.914-10.514-7.771-10.514-13.714v-84.8c0-6.4 4.571-12.343 10.971-13.257l96-6.171c4.114-12.8 3.2-8.686 9.6-21.257-13.257-17.829-46.857-56-60.114-73.371-1.829-2.743-3.2-5.486-3.2-8.686 0-13.257 54.171-62.4 66.057-73.371 2.743-2.286 5.943-3.657 9.6-3.657 3.2 0 6.857 0.914 9.143 3.2l67.657 63.086c10.971-5.486 11.886-5.029 24-8.686l7.543-97.829c0.914-6.4 7.314-11.429 13.714-11.429h85.257c6.4 0 11.886 4.571 13.714 10.971 5.943 22.4 1.6 74.743 3.886 98.286 12.343 3.657 11.2 4.343 22.857 10.286l72-64.457c2.743-1.829 5.943-3.2 9.6-3.2 5.051 0 15.611 8.114 27.269 18.811l65.44-63.474c-70.834-64-161.349-99.109-257.509-99.109-102.629 0-199.086 40-271.543 112.457s-112.457 168.914-112.457 271.543c0 24.914 2.286 49.371 6.857 73.143h-129.6c-3.429-24-5.257-48.229-5.257-73.143 0-282.743 229.257-512 512-512 135.223 0 257.897 52.434 349.509 137.874l118.834-115.246c23.314-23.314 42.514-15.314 42.514 17.6v264c0 50.971-8.229 59.886-59.886 59.886zM511.543 324.571c-63.086 0-114.743 51.429-114.743 114.743s51.429 114.743 114.743 114.743c63.314 0 114.743-51.429 114.743-114.743s-51.429-114.743-114.743-114.743z" />
+<glyph unicode="&#xe94a;" glyph-name="pficon-network-range" data-tags="pficon-network-range" horiz-adv-x="958" d="M510.766 658.286h-73.417v-145.714h73.417c40.183 0 72.869 32.686 72.869 72.869s-32.709 72.846-72.869 72.846zM734.949 341.943c44.091 62.811 69.989 139.337 69.989 221.897 0.023 213.577-189.097 386.674-402.651 386.674s-402.674-173.097-402.674-386.651c0-82.583 25.897-159.086 69.989-221.897l0.389-0.549c0.709-1.006 1.44-2.034 2.171-3.040l283.634-375.474c23.566-40.503 47.154-35.52 47.154-35.52 26.24 0 47.040 35.726 47.040 35.726l282.4 375.223c0.869 1.189 1.714 2.4 2.56 3.611zM291.040 291.428h-72v440h72v-440zM519.909 439.428h-82.56v-145.714h-72v437.714h154.56c80.503 0 141.44-65.486 141.44-146.011s-60.937-145.989-141.44-145.989zM955.977 539.817v0c0.617 110.469-37.28 198.331-92.754 264.366-10.629 12.663-21.44 24.754-32.526 36.96-9.851 10.857-18.171 18.126-25.143 22.857-4.869 5.92-12.229 9.691-20.48 9.691-14.629 0-26.491-11.863-26.491-26.491 0-6.811 2.583-12.983 6.811-17.691 1.646-2.606 3.589-5.097 5.623-7.429 3.154-3.634 6.56-6.88 9.669-9.577 0 0 24.96-27.931 41.371-50.446 36.48-57.966 56.023-125.211 56.023-198.194 0-82.583-13.92-141.623-58.011-204.434-0.846-1.211-1.691-2.4-2.56-3.611l-294.377-392.686c0 0-2.743-4.686-7.451-10.651 21.12-29.143 56.389-25.097 56.389-25.097 40.48-0.183 60.754 35.726 60.754 35.726l278.377 378.217c0.869 1.189 1.714 2.4 2.56 3.611 50.057 76.549 41.897 136.983 42.217 194.88z" />
+<glyph unicode="&#xe94b;" glyph-name="pficon-satellite" data-tags="pficon-satellite" d="M1019.726 137.486v0l-279.543 276.549c-2.88 2.903-6.697 4.343-10.491 4.343-3.771 0-7.52-1.417-10.377-4.297l-67.36-68.731-20.251 19.68 131.611 128.686c5.851 5.669 5.966 15.040 0.297 20.869l-10.72 11.017c2.606 0.594 5.029 1.874 6.971 3.771l39.383 38.674c5.851 5.669 5.966 15.040 0.297 20.869l-135.109 138.903c-5.669 5.851-15.040 5.989-20.869 0.297l-39.383-38.651c-1.943-1.897-3.291-4.274-3.977-6.857l-7.794 8c-5.669 5.851-15.040 5.989-20.869 0.297l-133.989-130.926-19.246 18.697 66.469 69.28c2.789 2.743 4.366 6.514 4.366 10.423 0.023 3.909-1.531 7.657-4.274 10.446l-279.429 277.691c-2.88 2.903-6.697 4.343-10.491 4.343-3.771 0-7.52-1.417-10.377-4.297l-180.206-183.84c-2.789-2.766-4.366-6.514-4.366-10.423-0.023-3.909 1.531-7.657 4.274-10.446l280.549-280.48c2.903-2.903 6.674-4.343 10.469-4.343 0.457 0 0.937 0.023 1.394 0.069 3.291 0.32 6.491 1.714 8.983 4.229l68.937 71.84 17.783-17.28-66.789-65.257c-2.811-2.743-6.811-8.069-6.857-11.977s0.686-9.257 3.406-12.069l171.52-175.703c2.72-2.811 6.469-4.411 10.377-4.457 0.526 0 1.051 0.023 1.577 0.069 3.337 0.32 6.469 1.76 8.914 4.091l70.743 69.143 21.257-20.64-67.429-68.8c-2.789-2.743-4.366-6.514-4.366-10.423-0.023-3.909 1.531-7.657 4.274-10.446l275.954-278.034c2.903-2.903 6.674-4.343 10.469-4.343 0.457 0 0.937 0.023 1.394 0.069 3.291 0.32 6.491 1.714 8.983 4.229l183.794 185.349c2.789 2.766 4.366 6.514 4.366 10.423 0.046 3.84-1.509 7.589-4.251 10.377zM294.286 568.274l-184.503 184.457 85.806 87.543 184.137-182.971-85.44-89.029zM825.44 37.623l-181.074 182.446 86.103 87.84 183.246-181.28-88.274-89.006zM236.206 370.537c-66.949 0-126.491-31.634-164.526-80.777l123.749-123.749-94.4-93.943c-16-3.909-27.886-18.286-27.886-35.497 0-20.206 16.366-36.571 36.571-36.571 16.914 0 31.109 11.497 35.291 27.109l94.903 94.423 123.406-123.406c49.143 38.034 80.777 97.577 80.777 164.526 0 114.811-93.074 207.886-207.886 207.886z" />
+<glyph unicode="&#xe94c;" glyph-name="pficon-template" data-tags="pficon-template" d="M219.429 512h146.286v-73.143h-146.286v73.143zM438.857 512h146.286v-73.143h-146.286v73.143zM877.714 731.428v-292.571h-219.429v73.143h146.286v146.286h-146.286v73.143h219.429zM438.857 731.428h146.286v-73.143h-146.286v73.143zM365.714 658.286h-146.286v-219.429h-73.143v292.571h219.429v-73.143zM948.571 875.428h-873.143v-873.143h873.143v873.143zM994.126 948.571c16.503 0 29.874-13.371 29.874-29.874v-967.154c0-16.16-13.097-26.971-29.257-26.971h-964.411c-16.754 0-30.331 11.291-30.331 28.046v966.789c0 16.114 13.051 29.166 29.166 29.166h964.96zM219.429 146.286h146.286v-73.143h-146.286v73.143zM438.857 146.286h146.286v-73.143h-146.286v73.143zM877.714 365.714v-292.571h-219.429v73.143h146.286v146.286h-146.286v73.143h219.429zM438.857 365.714h146.286v-73.143h-146.286v73.143zM365.714 292.571h-146.286v-219.429h-73.143v292.571h219.429v-73.143z" />
+<glyph unicode="&#xe94d;" glyph-name="pficon-vcenter" data-tags="pficon-vcenter" d="M889.143 948.183h-461.714c-73.737 0-133.714-59.977-133.714-133.714v-157.897h-157.897c-73.737 0-133.714-59.977-133.714-133.714v-461.714c0-73.737 59.977-133.714 133.714-133.714h461.714c73.714 0 133.714 59.977 133.714 133.714v160.183h157.897c73.737 0 133.714 59.977 133.714 133.714v459.429c0 73.737-59.977 133.714-133.714 133.714zM878.857 365.348h-292.503l0.891-92.16v-201.76h-441.143v441.166h291.611v291.611h441.143v-438.857zM219.429 395.428v-205.714c0-23.886 19.543-43.429 43.429-43.429h205.714c23.886 0 43.429 19.543 43.429 43.429v205.714c0 0 12.64 44.183 42.903 44.183h205.714c23.886 0 43.429 19.543 43.429 43.429v205.714c0 23.886-19.543 43.429-43.429 43.429h-205.714c-23.886 0-43.429-19.543-43.429-43.429v-205.714c0 0 1.303-44.183-42.903-44.183h-205.714c-23.886 0-43.429-19.543-43.429-43.429z" />
+</font></defs></svg>
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.ttf b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.ttf
new file mode 100644
index 0000000..1ed274b
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.ttf differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.woff b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.woff
new file mode 100644
index 0000000..8eb1d89
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/fonts/PatternFlyIcons-webfont.woff differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-114.png b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-114.png
new file mode 100644
index 0000000..955e38d
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-114.png differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-120.png b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-120.png
new file mode 100644
index 0000000..f849f0f
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-120.png differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-144.png b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-144.png
new file mode 100644
index 0000000..c5da67c
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-144.png differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-152.png b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-152.png
new file mode 100644
index 0000000..d136a5f
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-152.png differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-180.png b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-180.png
new file mode 100644
index 0000000..e60a77b
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-180.png differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-57.png b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-57.png
new file mode 100644
index 0000000..2c692ad
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-57.png differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-72.png b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-72.png
new file mode 100644
index 0000000..4c2ac89
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-72.png differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-76.png b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-76.png
new file mode 100644
index 0000000..524eec8
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/apple-touch-icon-precomposed-76.png differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/bg-login.jpg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/bg-login.jpg
new file mode 100644
index 0000000..3872ebb
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/bg-login.jpg differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/bg-login.png b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/bg-login.png
new file mode 100644
index 0000000..c408a65
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/bg-login.png differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/bg-login-2.png b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/bg-login-2.png
new file mode 100644
index 0000000..531d563
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/bg-login-2.png differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/bg-modal-about-pf.png b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/bg-modal-about-pf.png
new file mode 100644
index 0000000..7309fa8
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/bg-modal-about-pf.png differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/bg-navbar-pf-alt.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/bg-navbar-pf-alt.svg
new file mode 100644
index 0000000..a0b1cd4
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/bg-navbar-pf-alt.svg
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="615.598px" height="57px" viewBox="25.562 0 615.598 57" enable-background="new 25.562 0 615.598 57" xml:space="preserve"
+	>
+<polygon opacity="0.1" fill="#FFFFFF" enable-background="new    " points="566.242,56.969 623.205,0 641.16,0 584.68,56.969 "/>
+<polygon opacity="0.1" fill="#FFFFFF" enable-background="new    " points="25.562,57 25.562,0 611.034,0 554.554,56.95 "/>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/brand.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/brand.svg
new file mode 100644
index 0000000..81cfe50
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/brand.svg
@@ -0,0 +1,87 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="270px" height="10px" viewBox="0 0 270 10" enable-background="new 0 0 270 10" xml:space="preserve">
+<g>
+	<g>
+		<path fill="#FFFFFF" d="M121.965,9.413h-4.883V0.656h4.883v0.903h-3.862V4.38h3.63v0.898h-3.63V8.5h3.862V9.413z"/>
+		<path fill="#FFFFFF" d="M130.988,9.413h-1.158l-4.789-7.352h-0.046c0.062,0.864,0.095,1.655,0.095,2.374v4.978h-0.94V0.656h1.15
+			l4.774,7.317h0.045c-0.006-0.107-0.022-0.453-0.051-1.041c-0.028-0.582-0.039-0.998-0.028-1.254V0.656h0.951v8.753h-0.003V9.413
+			L130.988,9.413z"/>
+		<path fill="#FFFFFF" d="M136.339,9.413h-1.018V1.561h-2.771V0.656h6.564v0.903h-2.771v7.852h-0.002v0.002H136.339z"/>
+		<path fill="#FFFFFF" d="M145.554,9.413h-4.877V0.656h4.877v0.903h-3.859V4.38h3.631v0.898h-3.631V8.5h3.859V9.413z"/>
+		<path fill="#FFFFFF" d="M148.761,5.769v3.641h-1.018V0.656h2.402c1.074,0,1.865,0.204,2.379,0.614
+			c0.514,0.412,0.771,1.032,0.771,1.858c0,1.156-0.586,1.94-1.764,2.349l2.383,3.934h-1.207l-2.121-3.645h-1.826V5.769
+			L148.761,5.769z M148.761,4.897h1.396c0.719,0,1.244-0.142,1.582-0.428c0.334-0.286,0.504-0.714,0.504-1.285
+			c0-0.582-0.17-0.997-0.512-1.254c-0.34-0.255-0.889-0.381-1.643-0.381h-1.324v3.349h-0.004V4.897z"/>
+		<path fill="#FFFFFF" d="M161.124,3.209c0,0.884-0.301,1.567-0.904,2.046c-0.605,0.477-1.475,0.714-2.6,0.714h-1.031v3.444h-1.016
+			V0.656h2.27C160.03,0.656,161.124,1.504,161.124,3.209z M156.589,5.092h0.92c0.898,0,1.555-0.146,1.959-0.435
+			c0.4-0.293,0.604-0.759,0.604-1.404c0-0.577-0.188-1.006-0.568-1.295c-0.381-0.279-0.973-0.423-1.773-0.423h-1.139v3.557H156.589z
+			"/>
+		<path fill="#FFFFFF" d="M164.22,5.769v3.641h-1.02V0.656h2.402c1.074,0,1.865,0.204,2.383,0.614
+			c0.512,0.412,0.771,1.032,0.771,1.858c0,1.156-0.588,1.94-1.762,2.349l2.379,3.934h-1.205l-2.119-3.645h-1.826v0.002H164.22z
+			 M164.22,4.897h1.395c0.719,0,1.244-0.142,1.582-0.428c0.334-0.286,0.504-0.714,0.504-1.285c0-0.582-0.17-0.997-0.51-1.254
+			c-0.34-0.255-0.887-0.381-1.645-0.381h-1.322v3.349h-0.004V4.897z"/>
+		<path fill="#FFFFFF" d="M171.03,9.413V0.656h1.018v8.753h-1.018V9.413z"/>
+		<path fill="#FFFFFF" d="M179.636,7.081c0,0.773-0.281,1.374-0.838,1.805c-0.561,0.434-1.318,0.646-2.277,0.646
+			c-1.039,0-1.836-0.134-2.395-0.4V8.147c0.357,0.152,0.75,0.272,1.174,0.357c0.422,0.088,0.844,0.131,1.258,0.131
+			c0.68,0,1.188-0.129,1.531-0.384c0.346-0.257,0.514-0.62,0.514-1.073c0-0.304-0.061-0.556-0.184-0.748
+			c-0.119-0.194-0.318-0.375-0.607-0.537c-0.285-0.162-0.721-0.351-1.301-0.558c-0.816-0.29-1.398-0.636-1.748-1.036
+			c-0.352-0.398-0.525-0.92-0.525-1.562c0-0.674,0.254-1.211,0.764-1.611c0.508-0.398,1.178-0.599,2.014-0.599
+			c0.869,0,1.672,0.161,2.398,0.48l-0.316,0.884c-0.725-0.3-1.428-0.454-2.109-0.454c-0.539,0-0.959,0.114-1.266,0.347
+			c-0.303,0.231-0.453,0.553-0.453,0.965c0,0.305,0.057,0.551,0.168,0.745c0.115,0.195,0.303,0.372,0.566,0.533
+			c0.268,0.161,0.672,0.34,1.221,0.535c0.92,0.327,1.551,0.679,1.896,1.056C179.462,5.995,179.636,6.483,179.636,7.081z"/>
+		<path fill="#FFFFFF" d="M186.556,9.413h-4.881V0.656h4.881v0.903h-3.863V4.38h3.633v0.898h-3.633V8.5h3.863V9.413z"/>
+		<path fill="#FFFFFF" d="M197.677,9.413l-1.09-2.785h-3.51l-1.078,2.785h-1.031l3.463-8.793h0.854l3.443,8.793H197.677z
+			 M196.267,5.71l-1.018-2.712c-0.131-0.345-0.271-0.766-0.406-1.263c-0.09,0.383-0.211,0.804-0.377,1.263l-1.031,2.712H196.267z"/>
+		<path fill="#FFFFFF" d="M205.733,3.209c0,0.884-0.303,1.567-0.908,2.046c-0.607,0.477-1.473,0.714-2.596,0.714h-1.031v3.444
+			h-1.021V0.656h2.273C204.642,0.656,205.733,1.504,205.733,3.209z M201.2,5.092h0.914c0.902,0,1.557-0.146,1.961-0.435
+			c0.398-0.293,0.605-0.759,0.605-1.404c0-0.577-0.189-1.006-0.57-1.295c-0.381-0.279-0.969-0.423-1.773-0.423H201.2V5.092
+			L201.2,5.092z"/>
+		<path fill="#FFFFFF" d="M213.366,3.209c0,0.884-0.307,1.567-0.908,2.046c-0.607,0.477-1.473,0.714-2.598,0.714h-1.031v3.444h-1.02
+			V0.656h2.271C212.269,0.656,213.366,1.504,213.366,3.209z M208.827,5.092h0.918c0.904,0,1.559-0.146,1.959-0.435
+			c0.404-0.293,0.604-0.759,0.604-1.404c0-0.577-0.188-1.006-0.566-1.295c-0.381-0.279-0.971-0.423-1.773-0.423h-1.141V5.092
+			L208.827,5.092z"/>
+		<path fill="#FFFFFF" d="M215.44,9.413V0.656h1.021v7.832h3.857V9.41h-4.879V9.413z"/>
+		<path fill="#FFFFFF" d="M222.052,9.413V0.656h1.021v8.753h-1.021V9.413z"/>
+		<path fill="#FFFFFF" d="M229.466,1.44c-0.959,0-1.721,0.32-2.279,0.959c-0.557,0.642-0.834,1.518-0.834,2.633
+			c0,1.146,0.27,2.031,0.807,2.656c0.537,0.621,1.303,0.937,2.299,0.937c0.611,0,1.309-0.108,2.09-0.327v0.891
+			c-0.605,0.229-1.355,0.343-2.244,0.343c-1.289,0-2.285-0.396-2.988-1.181c-0.699-0.776-1.051-1.891-1.051-3.333
+			c0-0.902,0.17-1.69,0.506-2.371c0.336-0.678,0.824-1.202,1.461-1.569s1.387-0.551,2.248-0.551c0.918,0,1.719,0.168,2.408,0.504
+			l-0.432,0.875C230.798,1.594,230.13,1.44,229.466,1.44z"/>
+		<path fill="#FFFFFF" d="M239.204,9.413l-1.09-2.785h-3.512l-1.074,2.785h-1.031l3.459-8.793h0.857l3.445,8.793H239.204z
+			 M237.798,5.71l-1.018-2.712c-0.133-0.345-0.27-0.766-0.406-1.263c-0.088,0.383-0.215,0.804-0.377,1.263l-1.033,2.712H237.798z"/>
+		<path fill="#FFFFFF" d="M244.401,9.413h-1.016V1.561h-2.773V0.656h6.564v0.903h-2.771v7.852h-0.004V9.413z"/>
+		<path fill="#FFFFFF" d="M248.743,9.413V0.656h1.018v8.753h-1.018V9.413z"/>
+		<path fill="#FFFFFF" d="M260.005,5.021c0,1.402-0.354,2.503-1.062,3.305c-0.707,0.806-1.691,1.206-2.955,1.206
+			c-1.291,0-2.285-0.396-2.988-1.186c-0.699-0.789-1.051-1.901-1.051-3.338c0-1.424,0.354-2.532,1.057-3.312
+			c0.699-0.785,1.703-1.18,2.99-1.18c1.262,0,2.24,0.399,2.951,1.2C259.655,2.513,260.005,3.614,260.005,5.021z M253.03,5.021
+			c0,1.186,0.25,2.085,0.754,2.697c0.508,0.613,1.242,0.922,2.203,0.922c0.973,0,1.705-0.311,2.201-0.918
+			c0.494-0.615,0.738-1.516,0.738-2.702c0-1.179-0.244-2.072-0.736-2.681c-0.49-0.61-1.223-0.914-2.189-0.914
+			c-0.969,0-1.705,0.306-2.213,0.918C253.282,2.96,253.03,3.851,253.03,5.021z"/>
+		<path fill="#FFFFFF" d="M269.044,9.413h-1.162l-4.783-7.352h-0.049c0.061,0.864,0.094,1.655,0.094,2.374v4.978H262.2V0.656h1.152
+			l4.771,7.319h0.049c-0.012-0.108-0.025-0.455-0.055-1.041c-0.027-0.582-0.041-0.998-0.029-1.256V0.656h0.951v8.755h0.006v0.002
+			H269.044z"/>
+	</g>
+	<g>
+		<path fill="#FFFFFF" d="M7.533,3.368c0,1.013-0.298,1.796-0.896,2.348C6.04,6.269,5.191,6.544,4.093,6.544H3.403v3.008H0.954
+			V0.485h3.139c1.145,0,2.005,0.25,2.58,0.75C7.246,1.736,7.533,2.447,7.533,3.368z M3.403,4.547h0.447
+			c0.368,0,0.66-0.103,0.877-0.31s0.326-0.492,0.326-0.856c0-0.612-0.339-0.918-1.018-0.918H3.403V4.547z"/>
+		<path fill="#FFFFFF" d="M17.652,9.552l-0.446-1.699h-2.944l-0.459,1.699h-2.691l2.958-9.104h3.268l2.995,9.104H17.652z
+			 M16.697,5.843l-0.39-1.489c-0.092-0.33-0.202-0.758-0.333-1.283c-0.13-0.525-0.216-0.901-0.257-1.128
+			c-0.037,0.211-0.111,0.558-0.221,1.042c-0.108,0.483-0.353,1.437-0.729,2.857H16.697z"/>
+		<path fill="#FFFFFF" d="M28.423,9.552h-2.449V2.488H23.76V0.485h6.871v2.003h-2.208V9.552z"/>
+		<path fill="#FFFFFF" d="M39.037,9.552h-2.449V2.488h-2.214V0.485h6.871v2.003h-2.208V9.552z"/>
+		<path fill="#FFFFFF" d="M51.035,9.552h-5.382V0.485h5.382V2.45h-2.933v1.427h2.716v1.966h-2.716v1.711h2.933V9.552z"/>
+		<path fill="#FFFFFF" d="M58.184,6.253v3.299h-2.449V0.485h2.97c2.464,0,3.696,0.893,3.696,2.679c0,1.05-0.513,1.862-1.538,2.437
+			l2.642,3.951h-2.777l-1.922-3.299H58.184z M58.184,4.41h0.459c0.855,0,1.284-0.378,1.284-1.135c0-0.625-0.42-0.937-1.26-0.937
+			h-0.483V4.41z"/>
+		<path fill="#FFFFFF" d="M76.072,9.552H72.86L69.55,3.164h-0.057c0.079,1.004,0.118,1.771,0.118,2.301v4.086h-2.17V0.485h3.2
+			l3.299,6.301h0.037c-0.059-0.914-0.086-1.648-0.086-2.202V0.485h2.183v9.066H76.072z"/>
+		<path fill="#FFFFFF" d="M83.557,9.552h-2.412V0.485h5.356V2.45h-2.944v1.73h2.716v1.965h-2.716V9.552z"/>
+		<path fill="#FFFFFF" d="M91.102,9.552V0.485h2.449v7.088h3.49v1.979H91.102z"/>
+		<path fill="#FFFFFF" d="M104.842,3.846l1.562-3.361h2.654l-2.983,5.525v3.541h-2.468V6.085l-2.983-5.6h2.667L104.842,3.846z"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/brand-alt.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/brand-alt.svg
new file mode 100644
index 0000000..bdf3ae7
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/brand-alt.svg
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="324px" height="11px" viewBox="1.145 0.538 324 11" enable-background="new 1.145 0.538 324 11" xml:space="preserve">
+<g>
+	<g>
+		<path fill="#FFFFFF" d="M147.351,11.368h-5.899V0.789h5.899V1.88h-4.666v3.408h4.386v1.085h-4.386v3.894h4.666V11.368z"/>
+		<path fill="#FFFFFF" d="M158.252,11.368h-1.399l-5.786-8.882h-0.056c0.075,1.044,0.115,2,0.115,2.868v6.014h-1.136V0.789h1.39
+			l5.768,8.84h0.054c-0.007-0.129-0.027-0.548-0.062-1.258c-0.034-0.702-0.047-1.205-0.034-1.515V0.789h1.149v10.576h-0.004V11.368
+			L158.252,11.368z"/>
+		<path fill="#FFFFFF" d="M164.719,11.368h-1.23V1.882h-3.349V0.789h7.932V1.88h-3.349v9.486h-0.002v0.002H164.719z"/>
+		<path fill="#FFFFFF" d="M175.852,11.368h-5.893V0.789h5.893V1.88h-4.662v3.408h4.386v1.085h-4.386v3.894h4.662V11.368z"/>
+		<path fill="#FFFFFF" d="M179.727,6.967v4.398h-1.231V0.789h2.903c1.298,0,2.253,0.247,2.875,0.742
+			c0.62,0.498,0.931,1.247,0.931,2.245c0,1.396-0.708,2.344-2.131,2.838l2.879,4.753h-1.459l-2.562-4.403h-2.206v0.004H179.727z
+			 M179.727,5.913h1.687c0.868,0,1.503-0.172,1.911-0.517c0.404-0.346,0.608-0.863,0.608-1.553c0-0.703-0.204-1.205-0.618-1.515
+			c-0.41-0.308-1.075-0.46-1.985-0.46h-1.6v4.046h-0.005V5.913H179.727z"/>
+		<path fill="#FFFFFF" d="M194.663,3.873c0,1.068-0.363,1.894-1.093,2.473c-0.73,0.576-1.781,0.861-3.141,0.861h-1.246v4.161h-1.228
+			V0.789h2.743C193.342,0.789,194.663,1.813,194.663,3.873z M189.184,6.148h1.111c1.085,0,1.88-0.176,2.367-0.525
+			c0.483-0.354,0.729-0.917,0.729-1.696c0-0.697-0.227-1.216-0.687-1.565c-0.46-0.337-1.175-0.511-2.142-0.511h-1.376v4.298H189.184
+			z"/>
+		<path fill="#FFFFFF" d="M198.404,6.967v4.398h-1.233V0.789h2.902c1.298,0,2.254,0.247,2.879,0.742
+			c0.619,0.498,0.933,1.247,0.933,2.245c0,1.396-0.711,2.344-2.13,2.838l2.875,4.753h-1.456l-2.561-4.403h-2.206v0.003
+			L198.404,6.967L198.404,6.967z M198.404,5.913h1.686c0.868,0,1.502-0.172,1.911-0.517c0.403-0.346,0.608-0.863,0.608-1.553
+			c0-0.703-0.205-1.205-0.616-1.515c-0.411-0.308-1.072-0.46-1.987-0.46h-1.598v4.046L198.404,5.913L198.404,5.913z"/>
+		<path fill="#FFFFFF" d="M206.632,11.368V0.789h1.229v10.576h-1.229V11.368z"/>
+		<path fill="#FFFFFF" d="M217.028,8.552c0,0.934-0.338,1.66-1.012,2.181c-0.677,0.524-1.592,0.78-2.751,0.78
+			c-1.256,0-2.218-0.162-2.894-0.482V9.84c0.431,0.184,0.906,0.329,1.418,0.432c0.51,0.105,1.021,0.157,1.521,0.157
+			c0.821,0,1.435-0.155,1.85-0.463c0.418-0.312,0.622-0.75,0.622-1.297c0-0.367-0.075-0.672-0.223-0.904
+			c-0.145-0.233-0.386-0.453-0.733-0.647c-0.345-0.197-0.871-0.425-1.572-0.675c-0.986-0.35-1.689-0.769-2.112-1.251
+			c-0.426-0.481-0.634-1.112-0.634-1.888c0-0.814,0.307-1.463,0.922-1.946c0.614-0.48,1.424-0.724,2.435-0.724
+			c1.05,0,2.02,0.195,2.897,0.58l-0.382,1.068c-0.876-0.362-1.726-0.548-2.549-0.548c-0.65,0-1.158,0.138-1.53,0.418
+			c-0.365,0.279-0.546,0.668-0.546,1.167c0,0.369,0.068,0.666,0.202,0.9c0.14,0.235,0.366,0.449,0.685,0.644
+			c0.323,0.194,0.812,0.411,1.475,0.646c1.111,0.395,1.874,0.82,2.291,1.276C216.819,7.239,217.028,7.829,217.028,8.552z"/>
+		<path fill="#FFFFFF" d="M225.391,11.368h-5.898V0.789h5.898V1.88h-4.668v3.408h4.391v1.085h-4.391v3.894h4.668V11.368z"/>
+		<path fill="#FFFFFF" d="M238.827,11.368l-1.317-3.364h-4.241l-1.303,3.364h-1.244l4.184-10.623h1.031l4.16,10.623H238.827z
+			 M237.123,6.895l-1.229-3.276c-0.159-0.417-0.328-0.926-0.491-1.526c-0.109,0.462-0.255,0.971-0.455,1.526l-1.246,3.276H237.123z"
+			/>
+		<path fill="#FFFFFF" d="M248.56,3.873c0,1.068-0.366,1.894-1.097,2.473c-0.733,0.576-1.779,0.861-3.137,0.861h-1.245v4.161h-1.233
+			V0.789h2.745C247.241,0.789,248.56,1.813,248.56,3.873z M243.083,6.148h1.104c1.09,0,1.881-0.176,2.37-0.525
+			c0.479-0.354,0.73-0.917,0.73-1.696c0-0.697-0.229-1.216-0.689-1.565c-0.46-0.337-1.17-0.511-2.142-0.511h-1.374V6.148
+			L243.083,6.148z"/>
+		<path fill="#FFFFFF" d="M257.782,3.873c0,1.068-0.371,1.894-1.098,2.473c-0.733,0.576-1.779,0.861-3.139,0.861h-1.245v4.161
+			h-1.232V0.789h2.743C256.457,0.789,257.782,1.813,257.782,3.873z M252.298,6.148h1.108c1.094,0,1.884-0.176,2.368-0.525
+			c0.487-0.354,0.729-0.917,0.729-1.696c0-0.697-0.228-1.216-0.685-1.565c-0.46-0.337-1.172-0.511-2.142-0.511H252.3v4.298H252.298z
+			"/>
+		<path fill="#FFFFFF" d="M260.287,11.368V0.789h1.235v9.463h4.659v1.113h-5.895V11.368L260.287,11.368z"/>
+		<path fill="#FFFFFF" d="M268.277,11.368V0.789h1.232v10.576h-1.232V11.368z"/>
+		<path fill="#FFFFFF" d="M277.234,1.736c-1.158,0-2.079,0.386-2.753,1.159c-0.674,0.776-1.009,1.833-1.009,3.181
+			c0,1.385,0.326,2.454,0.976,3.209c0.648,0.75,1.575,1.132,2.777,1.132c0.738,0,1.582-0.13,2.526-0.396v1.077
+			c-0.732,0.276-1.639,0.414-2.712,0.414c-1.558,0-2.761-0.479-3.61-1.427c-0.844-0.938-1.27-2.284-1.27-4.027
+			c0-1.089,0.205-2.042,0.61-2.865c0.407-0.819,0.996-1.452,1.766-1.896c0.77-0.444,1.676-0.666,2.716-0.666
+			c1.109,0,2.077,0.203,2.909,0.609l-0.521,1.057C278.843,1.922,278.037,1.736,277.234,1.736z"/>
+		<path fill="#FFFFFF" d="M289,11.368l-1.317-3.364h-4.243l-1.298,3.364h-1.245l4.18-10.623h1.035l4.162,10.623H289z M287.301,6.895
+			l-1.229-3.276c-0.162-0.417-0.327-0.926-0.492-1.526c-0.106,0.462-0.26,0.971-0.455,1.526l-1.248,3.276H287.301z"/>
+		<path fill="#FFFFFF" d="M295.279,11.368h-1.228V1.882h-3.351V0.789h7.931V1.88h-3.348v9.486h-0.005V11.368z"/>
+		<path fill="#FFFFFF" d="M300.525,11.368V0.789h1.229v10.576h-1.229V11.368z"/>
+		<path fill="#FFFFFF" d="M314.132,6.063c0,1.693-0.428,3.024-1.283,3.993c-0.854,0.975-2.043,1.457-3.57,1.457
+			c-1.56,0-2.761-0.479-3.61-1.433c-0.844-0.953-1.27-2.297-1.27-4.033c0-1.721,0.428-3.06,1.277-4.002
+			c0.844-0.948,2.057-1.426,3.612-1.426c1.525,0,2.706,0.482,3.565,1.45C313.709,3.033,314.132,4.363,314.132,6.063z M305.705,6.063
+			c0,1.432,0.301,2.519,0.91,3.258c0.614,0.74,1.501,1.114,2.662,1.114c1.175,0,2.06-0.377,2.658-1.109
+			c0.598-0.743,0.893-1.832,0.893-3.265c0-1.424-0.295-2.503-0.89-3.239c-0.592-0.737-1.478-1.104-2.645-1.104
+			c-1.17,0-2.06,0.37-2.675,1.109C306.009,3.572,305.705,4.649,305.705,6.063z"/>
+		<path fill="#FFFFFF" d="M325.053,11.368h-1.404l-5.778-8.882h-0.06c0.074,1.044,0.113,2,0.113,2.868v6.014h-1.141V0.789h1.393
+			l5.765,8.843h0.059c-0.015-0.131-0.03-0.551-0.066-1.259c-0.032-0.701-0.05-1.205-0.034-1.517V0.789h1.148v10.578h0.008v0.002
+			H325.053z"/>
+	</g>
+	<g>
+		<path fill="#FFFFFF" d="M9.094,4.065c0,1.224-0.36,2.17-1.083,2.837C7.29,7.571,6.264,7.903,4.938,7.903H4.104v3.634H1.145V0.583
+			h3.792c1.383,0,2.422,0.302,3.117,0.906C8.747,2.094,9.094,2.953,9.094,4.065z M4.104,5.49h0.541c0.444,0,0.797-0.125,1.059-0.375
+			c0.262-0.25,0.394-0.595,0.394-1.035c0-0.739-0.41-1.109-1.23-1.109H4.104V5.49z"/>
+		<path fill="#FFFFFF" d="M21.32,11.537l-0.54-2.053h-3.557l-0.555,2.053h-3.251l3.573-11h3.949l3.619,11H21.32z M20.166,7.056
+			l-0.472-1.799c-0.111-0.399-0.244-0.916-0.402-1.55c-0.157-0.634-0.261-1.088-0.311-1.363c-0.045,0.255-0.134,0.674-0.267,1.259
+			c-0.13,0.583-0.427,1.736-0.881,3.451h2.333V7.056z"/>
+		<path fill="#FFFFFF" d="M34.333,11.537h-2.959V3.002h-2.675V0.583h8.302v2.419h-2.668V11.537z"/>
+		<path fill="#FFFFFF" d="M47.157,11.537h-2.958V3.002h-2.675V0.583h8.301v2.419h-2.668V11.537z"/>
+		<path fill="#FFFFFF" d="M61.653,11.537H55.15V0.583h6.503v2.374h-3.544v1.724h3.281v2.375h-3.281v2.067h3.544V11.537z"/>
+		<path fill="#FFFFFF" d="M70.291,7.552v3.985h-2.959V0.583h3.588c2.977,0,4.466,1.079,4.466,3.237c0,1.268-0.62,2.25-1.858,2.943
+			l3.192,4.774h-3.355l-2.322-3.985H70.291z M70.291,5.325h0.554c1.033,0,1.552-0.457,1.552-1.371c0-0.755-0.508-1.132-1.522-1.132
+			h-0.583V5.325z"/>
+		<path fill="#FFFFFF" d="M91.903,11.537h-3.881l-3.999-7.718h-0.069c0.095,1.213,0.143,2.139,0.143,2.78v4.936h-2.622V0.583h3.866
+			l3.986,7.612h0.044c-0.071-1.103-0.104-1.99-0.104-2.659V0.583h2.637v10.953h-0.002V11.537z"/>
+		<path fill="#FFFFFF" d="M100.946,11.537h-2.914V0.583h6.471v2.374h-3.557v2.09h3.282v2.374h-3.282V11.537z"/>
+		<path fill="#FFFFFF" d="M110.062,11.537V0.583h2.959v8.564h4.217v2.391H110.062z"/>
+		<path fill="#FFFFFF" d="M126.663,4.643l1.887-4.061h3.207l-3.604,6.675v4.277h-2.982V7.348l-3.604-6.765h3.222L126.663,4.643z"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/dropbox-logo.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/dropbox-logo.svg
new file mode 100644
index 0000000..dce0064
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/dropbox-logo.svg
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="17px" viewBox="0 0 20 17" style="enable-background:new 0 0 20 17;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#0061FF;}
+</style>
+<g>
+	<polygon class="st0" points="5,0 0,3.2 5,6.4 10,3.2 	"/>
+	<polygon class="st0" points="15,0 10,3.2 15,6.4 20,3.2 	"/>
+	<polygon class="st0" points="0,9.6 5,12.7 10,9.6 5,6.4 	"/>
+	<polygon class="st0" points="15,6.4 10,9.6 15,12.7 20,9.6 	"/>
+	<polygon class="st0" points="5,13.8 10,17 15,13.8 10,10.6 	"/>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/facebook-logo.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/facebook-logo.svg
new file mode 100644
index 0000000..c302f57
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/facebook-logo.svg
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="20px" viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#475993;}
+</style>
+<path class="st0" d="M17.3,0H2.7C1.2,0,0,1.2,0,2.7v14.6C0,18.8,1.2,20,2.7,20h7.2l0-7.1H8.1c-0.2,0-0.4-0.2-0.4-0.4l0-2.3
+	c0-0.2,0.2-0.4,0.4-0.4h1.9V7.4c0-2.6,1.6-4,3.9-4h1.9c0.2,0,0.4,0.2,0.4,0.4v1.9c0,0.2-0.2,0.4-0.4,0.4l-1.2,0
+	c-1.3,0-1.5,0.6-1.5,1.5v1.9h2.8c0.3,0,0.5,0.2,0.4,0.5l-0.3,2.3c0,0.2-0.2,0.4-0.4,0.4H13l0,7.1h4.3c1.5,0,2.7-1.2,2.7-2.7V2.7
+	C20,1.2,18.8,0,17.3,0z"/>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/favicon.ico b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/favicon.ico
new file mode 100644
index 0000000..43c8163
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/favicon.ico differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/fedora-logo.png b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/fedora-logo.png
new file mode 100644
index 0000000..8b3186a
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/fedora-logo.png differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/github-logo.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/github-logo.svg
new file mode 100644
index 0000000..bea0e2d
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/github-logo.svg
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="16px" height="20px" viewBox="0 0 16 20" style="enable-background:new 0 0 16 20;" xml:space="preserve">
+<g id="XMLID_122_">
+	<g>
+		<path d="M15.9,8.4c0.1-0.5,0.1-1,0.1-1.6c0-2.5-1.2-3.4-1.4-3.8c0.3-1.9-0.1-2.7-0.2-3c-0.7-0.2-2.3,0.6-3.2,1.2
+			C9.6,0.8,6.5,0.9,5.3,1.4C3.1-0.2,2,0.1,2,0.1S1.2,1.4,1.8,3.3C1.1,4.2,0.5,4.9,0.5,6.6c0,0.4,0,0.8,0.1,1.2
+			c0.6,3.2,3.2,4.6,5.7,4.9c-0.4,0.3-0.8,0.8-0.9,1.5c-0.5,0.3-1.4,0.4-2.2,0.2c-1-0.3-1.4-2.4-3-2.1c-0.3,0.1-0.3,0.3,0,0.5
+			c0.5,0.3,0.9,0.7,1.3,1.5c0.3,0.6,0.8,1.8,2.6,1.8c0.7,0,1.2-0.1,1.2-0.1s0,1.6,0,2.2c0,0.7-1,0.9-1,1.3c0,0.1,0.3,0.2,0.6,0.2
+			c0.5,0,1.6-0.4,1.6-1.2c0-0.6,0-2.6,0-2.9c0-0.8,0.4-1,0.4-1S7,18.4,6.8,19c-0.2,0.6-0.5,0.6-0.5,0.8c0,0.4,1.3,0.1,1.7-0.8
+			c0.3-0.7,0.2-4.7,0.2-4.7l0.3,0c0,0,0,1.8,0,2.7c0,0.9-0.1,2,0.4,2.5c0.3,0.3,1.4,0.9,1.4,0.4c0-0.3-0.7-0.6-0.7-1.4v-4
+			c0.4,0,0.5,1.3,0.5,1.3l0.2,2.4c0,0-0.1,0.9,1,1.2c0.4,0.1,1.2,0.2,1.2-0.1c0-0.2-1-0.5-1-1.2c0-0.4,0-0.7,0-2.5
+			c0-1.8-0.2-2.5-1.1-3C12.9,12.4,15.4,11.3,15.9,8.4z"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/git-logo.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/git-logo.svg
new file mode 100644
index 0000000..825d8ec
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/git-logo.svg
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="20px" viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
+<style type="text/css">
+	.st0{clip-path:url(#SVGID_2_);fill:#F05133;}
+</style>
+<g>
+	<defs>
+		<rect id="SVGID_1_" x="0" y="0" width="20" height="20"/>
+	</defs>
+	<clipPath id="SVGID_2_">
+		<use xlink:href="#SVGID_1_"  style="overflow:visible;"/>
+	</clipPath>
+	<path class="st0" d="M19.6,9.1l-8.7-8.7c-0.5-0.5-1.3-0.5-1.8,0L7.3,2.2l2.3,2.3c0.5-0.2,1.1-0.1,1.6,0.4c0.4,0.4,0.5,1,0.4,1.6
+		l2.2,2.2c0.5-0.2,1.2-0.1,1.6,0.4c0.6,0.6,0.6,1.6,0,2.2c-0.6,0.6-1.6,0.6-2.2,0c-0.5-0.5-0.6-1.1-0.3-1.7l-2.1-2.1v5.4
+		c0.1,0.1,0.3,0.2,0.4,0.3c0.6,0.6,0.6,1.6,0,2.2C10.5,16,9.6,16,9,15.4c-0.6-0.6-0.6-1.6,0-2.2c0.1-0.1,0.3-0.3,0.5-0.3V7.4
+		C9.3,7.3,9.1,7.2,9,7C8.5,6.6,8.4,5.9,8.6,5.3L6.4,3.1l-6,6c-0.5,0.5-0.5,1.3,0,1.8l8.7,8.7c0.5,0.5,1.3,0.5,1.8,0l8.7-8.7
+		C20.1,10.4,20.1,9.6,19.6,9.1"/>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/git-Logo.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/git-Logo.svg
new file mode 100644
index 0000000..825d8ec
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/git-Logo.svg
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="20px" viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
+<style type="text/css">
+	.st0{clip-path:url(#SVGID_2_);fill:#F05133;}
+</style>
+<g>
+	<defs>
+		<rect id="SVGID_1_" x="0" y="0" width="20" height="20"/>
+	</defs>
+	<clipPath id="SVGID_2_">
+		<use xlink:href="#SVGID_1_"  style="overflow:visible;"/>
+	</clipPath>
+	<path class="st0" d="M19.6,9.1l-8.7-8.7c-0.5-0.5-1.3-0.5-1.8,0L7.3,2.2l2.3,2.3c0.5-0.2,1.1-0.1,1.6,0.4c0.4,0.4,0.5,1,0.4,1.6
+		l2.2,2.2c0.5-0.2,1.2-0.1,1.6,0.4c0.6,0.6,0.6,1.6,0,2.2c-0.6,0.6-1.6,0.6-2.2,0c-0.5-0.5-0.6-1.1-0.3-1.7l-2.1-2.1v5.4
+		c0.1,0.1,0.3,0.2,0.4,0.3c0.6,0.6,0.6,1.6,0,2.2C10.5,16,9.6,16,9,15.4c-0.6-0.6-0.6-1.6,0-2.2c0.1-0.1,0.3-0.3,0.5-0.3V7.4
+		C9.3,7.3,9.1,7.2,9,7C8.5,6.6,8.4,5.9,8.6,5.3L6.4,3.1l-6,6c-0.5,0.5-0.5,1.3,0,1.8l8.7,8.7c0.5,0.5,1.3,0.5,1.8,0l8.7-8.7
+		C20.1,10.4,20.1,9.6,19.6,9.1"/>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/gmail.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/gmail.svg
new file mode 100644
index 0000000..7f908c3
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/gmail.svg
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="32.3px" height="32.3px" viewBox="0 0 32.3 32.3" style="enable-background:new 0 0 32.3 32.3;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#FFFFFF;}
+	.st1{fill:#F2F2F2;}
+	.st2{fill:#F14336;}
+	.st3{fill:#D32E2A;}
+</style>
+<circle class="st0" cx="16.2" cy="16.2" r="15"/>
+<g>
+	<g>
+		<polygon class="st1" points="24.9,11.1 23.7,23.6 8.7,23.6 7.7,11.3 16.2,16.1 		"/>
+		<polygon class="st1" points="24.5,8.7 16.2,16.5 7.9,8.7 16.2,8.7 		"/>
+	</g>
+	<path class="st2" d="M8.7,12.3v11.3H7.3c-0.5,0-0.9-0.4-0.9-0.9v-12l1.5,0L8.7,12.3z"/>
+	<path class="st3" d="M25.9,10.7v12c0,0.5-0.4,0.9-0.9,0.9h-1.4V12.3l0.8-1.8L25.9,10.7z"/>
+	<path class="st2" d="M25.9,9.6v1l-2.3,1.7l-7.5,5.5l-7.5-5.5l-2.3-1.7v-1c0-0.5,0.4-0.9,0.9-0.9h0.5l8.3,6.1l8.3-6.1H25
+		C25.5,8.7,25.9,9.1,25.9,9.6z"/>
+	<polygon class="st3" points="8.7,12.3 6.4,12 6.4,10.7 	"/>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/google-calendar.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/google-calendar.svg
new file mode 100644
index 0000000..a9c93ae
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/google-calendar.svg
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="32.3px" height="32.3px" viewBox="0 0 32.3 32.3" style="enable-background:new 0 0 32.3 32.3;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#FFFFFF;}
+	.st1{fill:#E6E6E6;}
+	.st2{fill:#3A5BBC;}
+	.st3{fill:#518EF8;}
+</style>
+<circle class="st0" cx="16.2" cy="16.2" r="15"/>
+<g>
+	<path class="st1" d="M22.7,8.2h-13c-0.4,0-0.7,0.3-0.7,0.7v2.4h14.5V8.9C23.4,8.5,23.1,8.2,22.7,8.2z M12.6,9.6
+		c-0.2,0-0.4-0.2-0.4-0.4c0-0.2,0.2-0.4,0.4-0.4S13,9.1,13,9.3C13,9.5,12.8,9.6,12.6,9.6z M19.8,9.6c-0.2,0-0.4-0.2-0.4-0.4
+		c0-0.2,0.2-0.4,0.4-0.4c0.2,0,0.4,0.2,0.4,0.4C20.1,9.5,20,9.6,19.8,9.6z"/>
+	<path class="st2" d="M24.5,11.5l-1.1,5.8l0.5,6c0,0.4-0.3,0.8-0.8,0.8H9.2c-0.4,0-0.8-0.4-0.8-0.8l0.5-6l-1.1-5.8
+		c-0.1-0.5,0.3-1.1,0.9-1.1h15C24.2,10.5,24.6,11,24.5,11.5z"/>
+	<path class="st3" d="M23.1,24.2H9.2c-0.4,0-0.8-0.4-0.8-0.8l0.5-6h8h6.5l0.5,6C23.9,23.8,23.5,24.2,23.1,24.2z"/>
+	<g>
+		<path class="st0" d="M15.9,15.8c0-1.1-0.9-2.1-2.1-2.1s-2.1,0.9-2.1,2.1h0.7c0-0.7,0.6-1.4,1.4-1.4c0.8,0,1.4,0.6,1.4,1.4
+			s-0.6,1.4-1.4,1.4h-0.7v0.7h0.7c0.8,0,1.4,0.6,1.4,1.4c0,0.7-0.6,1.4-1.4,1.4c-0.8,0-1.4-0.6-1.4-1.4h-0.7c0,1.1,0.9,2.1,2.1,2.1
+			s2.1-0.9,2.1-2.1c0-0.7-0.4-1.3-0.9-1.7C15.5,17.1,15.9,16.5,15.9,15.8z"/>
+		<polygon class="st0" points="17.3,15 17.6,15.6 19,14.7 19,20.9 19.7,20.9 19.7,13.5 		"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/google-drive.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/google-drive.svg
new file mode 100644
index 0000000..617294d
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/google-drive.svg
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="32.3px" height="32.3px" viewBox="0 0 32.3 32.3" style="enable-background:new 0 0 32.3 32.3;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#FFFFFF;}
+	.st1{fill:#3089F3;}
+	.st2{fill:#00A76A;}
+	.st3{fill:#FDD446;}
+</style>
+<circle class="st0" cx="16.2" cy="16.2" r="15"/>
+<g>
+	<polygon class="st1" points="27.8,18.8 11.8,18.8 8.5,25.2 24.2,25.2 	"/>
+	<polygon class="st2" points="12.5,5.1 4.9,18 8.5,25.2 15.8,11.1 	"/>
+	<polygon class="st3" points="19.7,5.1 12.5,5.1 20.1,18.8 27.8,18.8 	"/>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/google-logo.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/google-logo.svg
new file mode 100644
index 0000000..a9858a6
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/google-logo.svg
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="20px" viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#FBBB00;}
+	.st1{fill:#518EF8;}
+	.st2{fill:#28B446;}
+	.st3{fill:#F14336;}
+</style>
+<path class="st0" d="M4.4,12.1l-0.7,2.6l-2.5,0.1C0.4,13.3,0,11.7,0,10c0-1.7,0.4-3.2,1.1-4.6h0l2.3,0.4l1,2.3
+	C4.2,8.7,4.1,9.3,4.1,10C4.1,10.7,4.2,11.4,4.4,12.1z"/>
+<path class="st1" d="M19.8,8.1C19.9,8.7,20,9.4,20,10c0,0.7-0.1,1.4-0.2,2.1c-0.5,2.3-1.8,4.3-3.5,5.7l0,0l-2.9-0.1L13,15.1
+	c1.2-0.7,2.1-1.8,2.6-3h-5.3v-4h5.4H19.8L19.8,8.1z"/>
+<path class="st2" d="M16.3,17.8L16.3,17.8C14.5,19.2,12.4,20,10,20c-3.8,0-7.1-2.1-8.8-5.3l3.2-2.7c0.8,2.3,3,3.9,5.6,3.9
+	c1.1,0,2.1-0.3,3-0.8L16.3,17.8z"/>
+<path class="st3" d="M16.4,2.3L13.1,5c-0.9-0.6-2-0.9-3.1-0.9c-2.6,0-4.8,1.7-5.6,4L1.1,5.4h0C2.8,2.2,6.1,0,10,0
+	C12.4,0,14.7,0.9,16.4,2.3z"/>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/instagram-logo.png b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/instagram-logo.png
new file mode 100644
index 0000000..3dec7db
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/instagram-logo.png differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/kubernetes.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/kubernetes.svg
new file mode 100644
index 0000000..50abd41
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/kubernetes.svg
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg width="256px" height="249px" viewBox="0 0 256 249" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
+	<g>
+		<path d="M82.0851613,244.934194 C76.1393548,244.934194 70.523871,242.291613 66.7251613,237.501935 L8.91870968,165.656774 C5.12,160.867097 3.63354839,154.756129 5.12,148.810323 L25.7651613,59.1277419 C27.0864516,53.1819355 31.0503226,48.3922581 36.5006452,45.7496774 L120.072258,5.78064516 C122.714839,4.45935484 125.687742,3.79870968 128.660645,3.79870968 C131.633548,3.79870968 134.606452,4.45935484 137.249032,5.78064516 L220.820645,45.5845161 C226.270968,48.2270968 230.234839,53.0167742 231.556129,58.9625806 L252.20129,148.645161 C253.522581,154.590968 252.20129,160.701935 248.402581,165.491613 L190.596129,237.336774 C186.797419,241.96129 181.181935,244.769032 175.236129,244.769032 L82.0851613,244.934194 L82.0851613,244.934194 Z" fill="#326DE6"></path>
+		<path d="M128.495484,7.92774194 C130.807742,7.92774194 133.12,8.42322581 135.267097,9.41419355 L218.83871,49.2180645 C223.132903,51.3651613 226.436129,55.3290323 227.427097,59.9535484 L248.072258,149.636129 C249.228387,154.425806 248.072258,159.380645 244.934194,163.179355 L187.127742,235.024516 C184.154839,238.823226 179.530323,240.970323 174.740645,240.970323 L82.0851613,240.970323 C77.2954839,240.970323 72.6709677,238.823226 69.6980645,235.024516 L11.8916129,163.179355 C8.91870968,159.380645 7.76258065,154.425806 8.75354839,149.636129 L29.3987097,59.9535484 C30.5548387,55.163871 33.6929032,51.2 37.9870968,49.2180645 L121.55871,9.24903226 C123.705806,8.42322581 126.183226,7.92774194 128.495484,7.92774194 L128.495484,7.92774194 Z M128.495484,0.16516129 L128.495484,0.16516129 C125.027097,0.16516129 121.55871,0.990967742 118.255484,2.47741935 L34.683871,42.4464516 C28.0774194,45.5845161 23.4529032,51.3651613 21.8012903,58.4670968 L1.15612903,148.149677 C-0.495483871,155.251613 1.15612903,162.51871 5.78064516,168.299355 L63.5870968,240.144516 C68.0464516,245.76 74.8180645,248.898065 81.92,248.898065 L174.575484,248.898065 C181.677419,248.898065 188.449032,245.76 192.908387,240.144516 L250.714839,168.299355 C255.339355,162.683871 256.990968,155.251613 255.339355,148.149677 L234.694194,58.4670968 C233.042581,51.3651613 228.418065,45.5845161 221.811613,42.4464516 L138.570323,2.47741935 C135.432258,0.990967742 131.963871,0.16516129 128.495484,0.16516129 L128.495484,0.16516129 L128.495484,0.16516129 Z" fill="#FFFFFF"></path>
+		<path d="M212.232258,142.534194 L212.232258,142.534194 L212.232258,142.534194 C212.067097,142.534194 212.067097,142.534194 212.232258,142.534194 L212.067097,142.534194 C211.901935,142.534194 211.736774,142.534194 211.736774,142.369032 C211.406452,142.369032 211.076129,142.203871 210.745806,142.203871 C209.589677,142.03871 208.59871,141.873548 207.607742,141.873548 C207.112258,141.873548 206.616774,141.873548 205.956129,141.708387 L205.790968,141.708387 C202.322581,141.378065 199.514839,141.047742 196.872258,140.221935 C195.716129,139.726452 195.385806,139.065806 195.055484,138.405161 C195.055484,138.24 194.890323,138.24 194.890323,138.074839 L194.890323,138.074839 L192.743226,137.414194 C193.734194,129.816774 193.403871,121.889032 191.587097,114.126452 C189.770323,106.363871 186.632258,99.0967742 182.338065,92.4903226 L183.989677,91.003871 L183.989677,90.6735484 C183.989677,89.8477419 184.154839,89.0219355 184.815484,88.196129 C186.797419,86.3793548 189.274839,84.8929032 192.247742,83.076129 L192.247742,83.076129 C192.743226,82.7458065 193.23871,82.5806452 193.734194,82.2503226 C194.725161,81.7548387 195.550968,81.2593548 196.541935,80.5987097 C196.707097,80.4335484 197.037419,80.2683871 197.367742,79.9380645 C197.532903,79.7729032 197.698065,79.7729032 197.698065,79.6077419 L197.698065,79.6077419 C200.010323,77.6258065 200.505806,74.3225806 198.854194,72.1754839 C198.028387,71.0193548 196.541935,70.3587097 195.055484,70.3587097 C193.734194,70.3587097 192.578065,70.8541935 191.421935,71.68 L191.421935,71.68 L191.421935,71.68 C191.256774,71.8451613 191.256774,71.8451613 191.091613,72.0103226 C190.76129,72.1754839 190.596129,72.5058065 190.265806,72.6709677 C189.44,73.4967742 188.779355,74.1574194 188.11871,74.9832258 C187.788387,75.3135484 187.458065,75.8090323 186.962581,76.1393548 L186.962581,76.1393548 C184.650323,78.6167742 182.503226,80.5987097 180.356129,82.0851613 C179.860645,82.4154839 179.365161,82.5806452 178.869677,82.5806452 C178.539355,82.5806452 178.209032,82.5806452 177.87871,82.4154839 L177.548387,82.4154839 L177.548387,82.4154839 L175.566452,83.7367742 C173.419355,81.4245161 171.107097,79.4425806 168.794839,77.4606452 C158.885161,69.6980645 146.828387,64.9083871 134.276129,63.7522581 L134.110968,61.6051613 C133.945806,61.44 133.945806,61.44 133.780645,61.2748387 C133.285161,60.7793548 132.624516,60.283871 132.459355,59.1277419 C132.294194,56.4851613 132.624516,53.5122581 132.954839,50.2090323 L132.954839,50.043871 C132.954839,49.5483871 133.12,48.8877419 133.285161,48.3922581 C133.450323,47.4012903 133.615484,46.4103226 133.780645,45.2541935 L133.780645,44.2632258 L133.780645,43.7677419 L133.780645,43.7677419 L133.780645,43.7677419 C133.780645,40.7948387 131.468387,38.3174194 128.660645,38.3174194 C127.339355,38.3174194 126.018065,38.9780645 125.027097,39.9690323 C124.036129,40.96 123.540645,42.2812903 123.540645,43.7677419 L123.540645,43.7677419 L123.540645,43.7677419 L123.540645,44.0980645 L123.540645,45.0890323 C123.540645,46.2451613 123.705806,47.236129 124.036129,48.2270968 C124.20129,48.7225806 124.20129,49.2180645 124.366452,49.8787097 L124.366452,50.043871 C124.696774,53.3470968 125.192258,56.32 124.861935,58.9625806 C124.696774,60.1187097 124.036129,60.6141935 123.540645,61.1096774 C123.375484,61.2748387 123.375484,61.2748387 123.210323,61.44 L123.210323,61.44 L123.045161,63.5870968 C120.072258,63.9174194 117.099355,64.2477419 114.126452,64.9083871 C101.409032,67.716129 90.1780645,74.1574194 81.4245161,83.4064516 L79.7729032,82.2503226 L79.4425806,82.2503226 C79.1122581,82.2503226 78.7819355,82.4154839 78.4516129,82.4154839 C77.956129,82.4154839 77.4606452,82.2503226 76.9651613,81.92 C74.8180645,80.4335484 72.6709677,78.2864516 70.3587097,75.8090323 L70.3587097,75.8090323 C70.0283871,75.4787097 69.6980645,74.9832258 69.2025806,74.6529032 C68.5419355,73.8270968 67.8812903,73.1664516 67.0554839,72.3406452 C66.8903226,72.1754839 66.56,72.0103226 66.2296774,71.68 C66.0645161,71.5148387 65.8993548,71.5148387 65.8993548,71.3496774 L65.8993548,71.3496774 C64.9083871,70.523871 63.5870968,70.0283871 62.2658065,70.0283871 C60.7793548,70.0283871 59.2929032,70.6890323 58.4670968,71.8451613 C56.8154839,73.9922581 57.3109677,77.2954839 59.6232258,79.2774194 L59.6232258,79.2774194 L59.6232258,79.2774194 C59.7883871,79.2774194 59.7883871,79.4425806 59.9535484,79.4425806 C60.283871,79.6077419 60.4490323,79.9380645 60.7793548,80.1032258 C61.7703226,80.763871 62.596129,81.2593548 63.5870968,81.7548387 C64.0825806,81.92 64.5780645,82.2503226 65.0735484,82.5806452 L65.0735484,82.5806452 C68.0464516,84.3974194 70.523871,85.883871 72.5058065,87.7006452 C73.3316129,88.5264516 73.3316129,89.3522581 73.3316129,90.1780645 L73.3316129,90.5083871 L73.3316129,90.5083871 L74.9832258,91.9948387 C74.6529032,92.4903226 74.3225806,92.8206452 74.1574194,93.316129 C65.8993548,106.363871 62.7612903,121.723871 64.9083871,136.91871 L62.7612903,137.579355 C62.7612903,137.744516 62.596129,137.744516 62.596129,137.909677 C62.2658065,138.570323 61.7703226,139.230968 60.7793548,139.726452 C58.3019355,140.552258 55.3290323,140.882581 51.8606452,141.212903 L51.6954839,141.212903 C51.2,141.212903 50.5393548,141.212903 50.043871,141.378065 C49.0529032,141.378065 48.0619355,141.543226 46.9058065,141.708387 C46.5754839,141.708387 46.2451613,141.873548 45.9148387,141.873548 C45.7496774,141.873548 45.5845161,141.873548 45.4193548,142.03871 L45.4193548,142.03871 L45.4193548,142.03871 C42.4464516,142.699355 40.6296774,145.507097 41.1251613,148.149677 C41.6206452,150.461935 43.7677419,151.948387 46.4103226,151.948387 C46.9058065,151.948387 47.236129,151.948387 47.7316129,151.783226 L47.7316129,151.783226 L47.7316129,151.783226 C47.8967742,151.783226 48.0619355,151.783226 48.0619355,151.618065 C48.3922581,151.618065 48.7225806,151.452903 49.0529032,151.452903 C50.2090323,151.122581 51.0348387,150.792258 52.0258065,150.296774 C52.5212903,150.131613 53.0167742,149.80129 53.5122581,149.636129 L53.6774194,149.636129 C56.8154839,148.48 59.6232258,147.489032 62.2658065,147.15871 L62.596129,147.15871 C63.5870968,147.15871 64.2477419,147.654194 64.7432258,147.984516 C64.9083871,147.984516 64.9083871,148.149677 65.0735484,148.149677 L65.0735484,148.149677 L67.3858065,147.819355 C71.3496774,160.04129 78.9470968,170.941935 89.0219355,178.869677 C91.3341935,180.686452 93.6464516,182.172903 96.123871,183.659355 L95.1329032,185.806452 C95.1329032,185.971613 95.2980645,185.971613 95.2980645,186.136774 C95.6283871,186.797419 95.9587097,187.623226 95.6283871,188.779355 C94.6374194,191.256774 93.1509677,193.734194 91.3341935,196.541935 L91.3341935,196.707097 C91.003871,197.202581 90.6735484,197.532903 90.3432258,198.028387 C89.6825806,198.854194 89.1870968,199.68 88.5264516,200.670968 C88.3612903,200.836129 88.196129,201.166452 88.0309677,201.496774 C88.0309677,201.661935 87.8658065,201.827097 87.8658065,201.827097 L87.8658065,201.827097 L87.8658065,201.827097 C86.5445161,204.634839 87.5354839,207.772903 90.0129032,208.929032 C90.6735484,209.259355 91.3341935,209.424516 91.9948387,209.424516 C93.9767742,209.424516 95.9587097,208.103226 96.9496774,206.286452 L96.9496774,206.286452 L96.9496774,206.286452 C96.9496774,206.12129 97.1148387,205.956129 97.1148387,205.956129 C97.28,205.625806 97.4451613,205.295484 97.6103226,205.130323 C98.1058065,203.974194 98.2709677,203.148387 98.6012903,202.157419 C98.7664516,201.661935 98.9316129,201.166452 99.0967742,200.670968 L99.0967742,200.670968 C100.252903,197.367742 101.07871,194.725161 102.565161,192.412903 C103.225806,191.421935 104.051613,191.256774 104.712258,190.926452 C104.877419,190.926452 104.877419,190.926452 105.042581,190.76129 L105.042581,190.76129 L106.19871,188.614194 C113.465806,191.421935 121.393548,192.908387 129.32129,192.908387 C134.110968,192.908387 139.065806,192.412903 143.690323,191.256774 C146.663226,190.596129 149.470968,189.770323 152.27871,188.779355 L153.269677,190.596129 C153.434839,190.596129 153.434839,190.596129 153.6,190.76129 C154.425806,190.926452 155.086452,191.256774 155.747097,192.247742 C157.068387,194.56 158.059355,197.367742 159.215484,200.505806 L159.215484,200.670968 C159.380645,201.166452 159.545806,201.661935 159.710968,202.157419 C160.04129,203.148387 160.206452,204.139355 160.701935,205.130323 C160.867097,205.460645 161.032258,205.625806 161.197419,205.956129 C161.197419,206.12129 161.362581,206.286452 161.362581,206.286452 L161.362581,206.286452 L161.362581,206.286452 C162.353548,208.268387 164.335484,209.424516 166.317419,209.424516 C166.978065,209.424516 167.63871,209.259355 168.299355,208.929032 C169.455484,208.268387 170.446452,207.277419 170.776774,205.956129 C171.107097,204.634839 171.107097,203.148387 170.446452,201.827097 L170.446452,201.827097 L170.446452,201.827097 C170.446452,201.661935 170.28129,201.661935 170.28129,201.496774 C170.116129,201.166452 169.950968,200.836129 169.785806,200.670968 C169.290323,199.68 168.629677,198.854194 167.969032,198.028387 C167.63871,197.532903 167.308387,197.202581 166.978065,196.707097 L166.978065,196.541935 C165.16129,193.734194 163.509677,191.256774 162.683871,188.779355 C162.353548,187.623226 162.683871,186.962581 162.849032,186.136774 C162.849032,185.971613 163.014194,185.971613 163.014194,185.806452 L163.014194,185.806452 L162.188387,183.824516 C170.941935,178.704516 178.374194,171.437419 183.989677,162.51871 C186.962581,157.894194 189.274839,152.774194 190.926452,147.654194 L192.908387,147.984516 C193.073548,147.984516 193.073548,147.819355 193.23871,147.819355 C193.899355,147.489032 194.394839,146.993548 195.385806,146.993548 L195.716129,146.993548 C198.35871,147.323871 201.166452,148.314839 204.304516,149.470968 L204.469677,149.470968 C204.965161,149.636129 205.460645,149.966452 205.956129,150.131613 C206.947097,150.627097 207.772903,150.957419 208.929032,151.287742 C209.259355,151.287742 209.589677,151.452903 209.92,151.452903 C210.085161,151.452903 210.250323,151.452903 210.415484,151.618065 L210.415484,151.618065 C210.910968,151.783226 211.24129,151.783226 211.736774,151.783226 C214.214194,151.783226 216.36129,150.131613 217.021935,147.984516 C217.021935,146.002581 215.205161,143.36 212.232258,142.534194 L212.232258,142.534194 Z M135.762581,134.44129 L128.495484,137.909677 L121.228387,134.44129 L119.411613,126.67871 L124.366452,120.402581 L132.459355,120.402581 L137.414194,126.67871 L135.762581,134.44129 L135.762581,134.44129 Z M178.869677,117.264516 C180.190968,122.88 180.52129,128.495484 180.025806,133.945806 L154.756129,126.67871 C152.443871,126.018065 151.122581,123.705806 151.618065,121.393548 C151.783226,120.732903 152.113548,120.072258 152.609032,119.576774 L172.593548,101.574194 C175.40129,106.19871 177.548387,111.483871 178.869677,117.264516 L178.869677,117.264516 Z M164.665806,91.6645161 L143.029677,107.024516 C141.212903,108.180645 138.735484,107.850323 137.249032,106.033548 C136.753548,105.538065 136.588387,104.877419 136.423226,104.216774 L134.936774,77.2954839 C146.332903,78.6167742 156.738065,83.7367742 164.665806,91.6645161 L164.665806,91.6645161 Z M116.769032,78.1212903 C118.585806,77.7909677 120.237419,77.4606452 122.054194,77.1303226 L120.567742,103.556129 C120.402581,105.868387 118.585806,107.850323 116.108387,107.850323 C115.447742,107.850323 114.621935,107.685161 114.126452,107.354839 L92.16,91.6645161 C98.9316129,84.8929032 107.354839,80.2683871 116.769032,78.1212903 L116.769032,78.1212903 Z M84.2322581,101.574194 L103.886452,119.08129 C105.703226,120.567742 105.868387,123.375484 104.381935,125.192258 C103.886452,125.852903 103.225806,126.348387 102.4,126.513548 L76.8,133.945806 C75.8090323,122.714839 78.2864516,111.31871 84.2322581,101.574194 L84.2322581,101.574194 Z M79.7729032,146.332903 L106.033548,141.873548 C108.180645,141.708387 110.162581,143.194839 110.658065,145.341935 C110.823226,146.332903 110.823226,147.15871 110.492903,147.984516 L110.492903,147.984516 L100.418065,172.263226 C91.1690323,166.317419 83.7367742,157.233548 79.7729032,146.332903 L79.7729032,146.332903 Z M140.056774,179.2 C136.258065,180.025806 132.459355,180.52129 128.495484,180.52129 C122.714839,180.52129 117.099355,179.530323 111.814194,177.87871 L124.861935,154.260645 C126.183226,152.774194 128.330323,152.113548 130.147097,153.104516 C130.972903,153.6 131.633548,154.260645 132.129032,154.92129 L132.129032,154.92129 L144.846452,177.87871 C143.36,178.374194 141.708387,178.704516 140.056774,179.2 L140.056774,179.2 Z M172.263226,156.242581 C168.134194,162.849032 162.683871,168.134194 156.407742,172.263226 L146.002581,147.323871 C145.507097,145.341935 146.332903,143.194839 148.314839,142.203871 C148.975484,141.873548 149.80129,141.708387 150.627097,141.708387 L177.052903,146.167742 C176.061935,149.80129 174.410323,153.104516 172.263226,156.242581 L172.263226,156.242581 Z" fill="#FFFFFF"></path>
+	</g>
+</svg>
\ No newline at end of file
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/kubernetes-Logo.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/kubernetes-Logo.svg
new file mode 100644
index 0000000..1ee245e
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/kubernetes-Logo.svg
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1"
+	 id="svg4242" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+	 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 200 199.7"
+	 style="enable-background:new 0 0 200 199.7;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#326DE6;}
+	.st1{fill:#FFFFFF;}
+</style>
+<g>
+	<path class="st0" d="M70.9,175.8c-3.8,0-7.3-1.7-9.7-4.7l-36.5-45.3c-2.4-3-3.3-6.9-2.4-10.6l13-56.6c0.8-3.8,3.3-6.8,6.8-8.4
+		l52.7-25.2c1.7-0.8,3.5-1.3,5.4-1.3c1.9,0,3.8,0.4,5.4,1.3L158.4,50c3.4,1.7,5.9,4.7,6.8,8.4l13,56.6c0.8,3.8,0,7.6-2.4,10.6
+		L139.3,171c-2.4,2.9-5.9,4.7-9.7,4.7L70.9,175.8L70.9,175.8z"/>
+	<path class="st1" d="M100.2,26.3c1.5,0,2.9,0.3,4.3,0.9l52.7,25.1c2.7,1.4,4.8,3.9,5.4,6.8l13,56.6c0.7,3,0,6.1-2,8.5l-36.5,45.3
+		c-1.9,2.4-4.8,3.8-7.8,3.8H70.9c-3,0-5.9-1.4-7.8-3.8l-36.5-45.3c-1.9-2.4-2.6-5.5-2-8.5l13-56.6c0.7-3,2.7-5.5,5.4-6.8l52.7-25.2
+		C97.1,26.6,98.7,26.3,100.2,26.3L100.2,26.3z M100.2,21.4L100.2,21.4c-2.2,0-4.4,0.5-6.5,1.5L41,48.1c-4.2,2-7.1,5.6-8.1,10.1
+		l-13,56.6c-1,4.5,0,9.1,2.9,12.7l36.5,45.3c2.8,3.5,7.1,5.5,11.6,5.5h58.5c4.5,0,8.8-2,11.6-5.5l36.5-45.3c2.9-3.5,4-8.2,2.9-12.7
+		l-13-56.6c-1-4.5-4-8.1-8.1-10.1l-52.5-25.2C104.5,21.9,102.3,21.4,100.2,21.4L100.2,21.4L100.2,21.4z"/>
+	<path class="st1" d="M153,111.2L153,111.2L153,111.2C152.9,111.2,152.9,111.2,153,111.2h-0.1c-0.1,0-0.2,0-0.2-0.1
+		c-0.2,0-0.4-0.1-0.6-0.1c-0.7-0.1-1.4-0.2-2-0.2c-0.3,0-0.6,0-1-0.1h-0.1c-2.2-0.2-4-0.4-5.6-0.9c-0.7-0.3-0.9-0.7-1.1-1.1
+		c0-0.1-0.1-0.1-0.1-0.2l0,0l-1.4-0.4c0.6-4.8,0.4-9.8-0.7-14.7c-1.1-4.9-3.1-9.5-5.8-13.7l1-0.9v-0.2c0-0.5,0.1-1,0.5-1.6
+		c1.3-1.1,2.8-2.1,4.7-3.2l0,0c0.3-0.2,0.6-0.3,0.9-0.5c0.6-0.3,1.1-0.6,1.8-1c0.1-0.1,0.3-0.2,0.5-0.4c0.1-0.1,0.2-0.1,0.2-0.2l0,0
+		c1.5-1.3,1.8-3.3,0.7-4.7c-0.5-0.7-1.5-1.1-2.4-1.1c-0.8,0-1.6,0.3-2.3,0.8l0,0l0,0c-0.1,0.1-0.1,0.1-0.2,0.2
+		c-0.2,0.1-0.3,0.3-0.5,0.4c-0.5,0.5-0.9,0.9-1.4,1.5c-0.2,0.2-0.4,0.5-0.7,0.7l0,0c-1.5,1.6-2.8,2.8-4.2,3.8
+		c-0.3,0.2-0.6,0.3-0.9,0.3c-0.2,0-0.4,0-0.6-0.1h-0.2l0,0l-1.3,0.8c-1.4-1.5-2.8-2.7-4.3-4c-6.3-4.9-13.9-7.9-21.8-8.6l-0.1-1.4
+		c-0.1-0.1-0.1-0.1-0.2-0.2c-0.3-0.3-0.7-0.6-0.8-1.4c-0.1-1.7,0.1-3.5,0.3-5.6v-0.1c0-0.3,0.1-0.7,0.2-1c0.1-0.6,0.2-1.3,0.3-2
+		v-0.6v-0.3l0,0l0,0c0-1.9-1.5-3.4-3.2-3.4c-0.8,0-1.7,0.4-2.3,1C97.3,47.1,97,48,97,48.9l0,0l0,0v0.2v0.6c0,0.7,0.1,1.4,0.3,2
+		c0.1,0.3,0.1,0.6,0.2,1v0.1c0.2,2.1,0.5,4,0.3,5.6c-0.1,0.7-0.5,1-0.8,1.4c-0.1,0.1-0.1,0.1-0.2,0.2l0,0l-0.1,1.4
+		c-1.9,0.2-3.8,0.4-5.6,0.8c-8,1.8-15.1,5.8-20.6,11.7l-1-0.7h-0.2c-0.2,0-0.4,0.1-0.6,0.1c-0.3,0-0.6-0.1-0.9-0.3
+		c-1.4-0.9-2.7-2.3-4.2-3.9l0,0c-0.2-0.2-0.4-0.5-0.7-0.7c-0.4-0.5-0.8-0.9-1.4-1.5c-0.1-0.1-0.3-0.2-0.5-0.4
+		c-0.1-0.1-0.2-0.1-0.2-0.2l0,0c-0.6-0.5-1.5-0.8-2.3-0.8c-0.9,0-1.9,0.4-2.4,1.1c-1,1.4-0.7,3.4,0.7,4.7l0,0l0,0
+		c0.1,0,0.1,0.1,0.2,0.1c0.2,0.1,0.3,0.3,0.5,0.4c0.6,0.4,1.1,0.7,1.8,1c0.3,0.1,0.6,0.3,0.9,0.5l0,0c1.9,1.1,3.4,2.1,4.7,3.2
+		c0.5,0.5,0.5,1,0.5,1.6v0.2l0,0l1,0.9c-0.2,0.3-0.4,0.5-0.5,0.8c-5.2,8.2-7.2,17.9-5.8,27.5l-1.4,0.4c0,0.1-0.1,0.1-0.1,0.2
+		c-0.2,0.4-0.5,0.8-1.1,1.1c-1.6,0.5-3.4,0.7-5.6,0.9h-0.1c-0.3,0-0.7,0-1,0.1c-0.6,0-1.3,0.1-2,0.2c-0.2,0-0.4,0.1-0.6,0.1
+		c-0.1,0-0.2,0-0.3,0.1l0,0l0,0c-1.9,0.4-3,2.2-2.7,3.9c0.3,1.5,1.7,2.4,3.3,2.4c0.3,0,0.5,0,0.8-0.1l0,0l0,0c0.1,0,0.2,0,0.2-0.1
+		c0.2,0,0.4-0.1,0.6-0.1c0.7-0.2,1.3-0.4,1.9-0.7c0.3-0.1,0.6-0.3,0.9-0.4H53c2-0.7,3.8-1.4,5.4-1.6h0.2c0.6,0,1,0.3,1.4,0.5
+		c0.1,0,0.1,0.1,0.2,0.1l0,0l1.5-0.2c2.5,7.7,7.3,14.6,13.7,19.6c1.5,1.1,2.9,2.1,4.5,3l-0.6,1.4c0,0.1,0.1,0.1,0.1,0.2
+		c0.2,0.4,0.4,0.9,0.2,1.7c-0.6,1.6-1.6,3.1-2.7,4.9v0.1c-0.2,0.3-0.4,0.5-0.6,0.8c-0.4,0.5-0.7,1-1.1,1.7c-0.1,0.1-0.2,0.3-0.3,0.5
+		c0,0.1-0.1,0.2-0.1,0.2l0,0l0,0c-0.8,1.8-0.2,3.8,1.4,4.5c0.4,0.2,0.8,0.3,1.3,0.3c1.3,0,2.5-0.8,3.1-2l0,0l0,0
+		c0-0.1,0.1-0.2,0.1-0.2c0.1-0.2,0.2-0.4,0.3-0.5c0.3-0.7,0.4-1.3,0.6-1.9c0.1-0.3,0.2-0.6,0.3-0.9l0,0c0.7-2.1,1.3-3.8,2.2-5.2
+		c0.4-0.6,0.9-0.7,1.4-0.9c0.1,0,0.1,0,0.2-0.1l0,0l0.7-1.4c4.6,1.8,9.6,2.7,14.6,2.7c3,0,6.1-0.3,9.1-1c1.9-0.4,3.6-0.9,5.4-1.6
+		l0.6,1.1c0.1,0,0.1,0,0.2,0.1c0.5,0.1,0.9,0.3,1.4,0.9c0.8,1.5,1.5,3.2,2.2,5.2v0.1c0.1,0.3,0.2,0.6,0.3,0.9
+		c0.2,0.6,0.3,1.3,0.6,1.9c0.1,0.2,0.2,0.3,0.3,0.5c0,0.1,0.1,0.2,0.1,0.2l0,0l0,0c0.6,1.3,1.9,2,3.1,2c0.4,0,0.8-0.1,1.3-0.3
+		c0.7-0.4,1.4-1,1.6-1.9c0.2-0.8,0.2-1.8-0.2-2.6l0,0l0,0c0-0.1-0.1-0.1-0.1-0.2c-0.1-0.2-0.2-0.4-0.3-0.5c-0.3-0.6-0.7-1.1-1.1-1.7
+		c-0.2-0.3-0.4-0.5-0.6-0.8v-0.1c-1.1-1.8-2.2-3.3-2.7-4.9c-0.2-0.7,0-1.1,0.1-1.7c0-0.1,0.1-0.1,0.1-0.2l0,0l-0.5-1.3
+		c5.5-3.2,10.2-7.8,13.8-13.4c1.9-2.9,3.3-6.1,4.4-9.4l1.3,0.2c0.1,0,0.1-0.1,0.2-0.1c0.4-0.2,0.7-0.5,1.4-0.5h0.2
+		c1.7,0.2,3.4,0.8,5.4,1.6h0.1c0.3,0.1,0.6,0.3,0.9,0.4c0.6,0.3,1.1,0.5,1.9,0.7c0.2,0,0.4,0.1,0.6,0.1c0.1,0,0.2,0,0.3,0.1l0,0
+		c0.3,0.1,0.5,0.1,0.8,0.1c1.6,0,2.9-1,3.3-2.4C156,113.4,154.9,111.7,153,111.2L153,111.2z M104.7,106.1l-4.6,2.2l-4.6-2.2
+		l-1.1-4.9l3.1-4h5.1l3.1,4L104.7,106.1L104.7,106.1z M131.9,95.3c0.8,3.5,1,7.1,0.7,10.5l-15.9-4.6c-1.5-0.4-2.3-1.9-2-3.3
+		c0.1-0.4,0.3-0.8,0.6-1.1L128,85.4C129.8,88.3,131.1,91.6,131.9,95.3L131.9,95.3z M123,79.1l-13.7,9.7c-1.1,0.7-2.7,0.5-3.6-0.6
+		c-0.3-0.3-0.4-0.7-0.5-1.1l-0.9-17C111.4,70.9,118,74.1,123,79.1L123,79.1z M92.8,70.6c1.1-0.2,2.2-0.4,3.3-0.6l-0.9,16.7
+		c-0.1,1.5-1.3,2.7-2.8,2.7c-0.4,0-0.9-0.1-1.3-0.3l-13.9-9.9C81.5,74.8,86.8,71.9,92.8,70.6L92.8,70.6z M72.2,85.4l12.4,11
+		c1.1,0.9,1.3,2.7,0.3,3.9c-0.3,0.4-0.7,0.7-1.3,0.8l-16.2,4.7C66.9,98.7,68.5,91.5,72.2,85.4L72.2,85.4z M69.4,113.6l16.6-2.8
+		c1.4-0.1,2.6,0.8,2.9,2.2c0.1,0.6,0.1,1.1-0.1,1.7l0,0L82.4,130C76.6,126.2,71.9,120.5,69.4,113.6L69.4,113.6z M107.5,134.3
+		c-2.4,0.5-4.8,0.8-7.3,0.8c-3.6,0-7.2-0.6-10.5-1.7l8.2-14.9c0.8-0.9,2.2-1.4,3.3-0.7c0.5,0.3,0.9,0.7,1.3,1.1l0,0l8,14.5
+		C109.5,133.8,108.5,134,107.5,134.3L107.5,134.3z M127.8,119.9c-2.6,4.2-6,7.5-10,10.1l-6.6-15.7c-0.3-1.3,0.2-2.6,1.5-3.2
+		c0.4-0.2,0.9-0.3,1.5-0.3l16.7,2.8C130.2,115.8,129.1,117.9,127.8,119.9L127.8,119.9z"/>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/linkedin-logo.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/linkedin-logo.svg
new file mode 100644
index 0000000..81ee24f
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/linkedin-logo.svg
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="20px" viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#0077B7;}
+</style>
+<path class="st0" d="M18.2,0H1.8C0.8,0,0,0.8,0,1.8v16.4c0,1,0.8,1.8,1.8,1.8h16.4c1,0,1.8-0.8,1.8-1.8V1.8C20,0.8,19.2,0,18.2,0z
+	 M6.2,17.3c0,0.3-0.2,0.5-0.5,0.5H3.4c-0.3,0-0.5-0.2-0.5-0.5V7.9c0-0.3,0.2-0.5,0.5-0.5h2.2c0.3,0,0.5,0.2,0.5,0.5V17.3z M4.5,6.5
+	c-1.2,0-2.1-1-2.1-2.1s1-2.1,2.1-2.1s2.1,1,2.1,2.1S5.7,6.5,4.5,6.5z M17.9,17.3c0,0.3-0.2,0.5-0.5,0.5H15c-0.3,0-0.5-0.2-0.5-0.5
+	v-4.4c0-0.7,0.2-2.9-1.7-2.9c-1.5,0-1.8,1.5-1.8,2.2v5.1c0,0.3-0.2,0.5-0.5,0.5H8.2c-0.3,0-0.5-0.2-0.5-0.5V7.8
+	c0-0.3,0.2-0.5,0.5-0.5h2.3c0.3,0,0.5,0.2,0.5,0.5v0.8c0.5-0.8,1.4-1.5,3.1-1.5c3.9,0,3.8,3.6,3.8,5.6L17.9,17.3L17.9,17.3z"/>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/logo.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/logo.svg
new file mode 100644
index 0000000..b9ce0ac
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/logo.svg
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="73px" height="69px" viewBox="0 0 73 69" enable-background="new 0 0 73 69" xml:space="preserve">
+<g>
+	<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="36.2046" y1="2.1504" x2="36.2046" y2="68.6623">
+		<stop  offset="0" style="stop-color:#60EFFF"/>
+		<stop  offset="1" style="stop-color:#1F89C7"/>
+	</linearGradient>
+	<path fill="url(#SVGID_1_)" d="M36.287,0.137l0.008-0.063l-0.031,0.039l-0.012-0.012L36.262,0l-0.057,0.056L36.148,0l0.011,0.101
+		l-0.013,0.012l-0.03-0.039l0.007,0.063L0,35.447l14.307,20.267l11.05-2.538l10.848,15.255l10.85-15.255l11.05,2.538l8.861-12.554
+		l5.444-7.713L36.287,0.137z M35.108,4.282L30.174,50.52l-9.642-13.151L35.108,4.282z M20.059,36.725l-6.068-8.277L35.057,2.683
+		L20.059,36.725z M29.967,51.407l-4.313,0.99l-7.251-10.193l1.807-4.104L29.967,51.407z M36.092,2.051l0.113-0.258l0.114,0.257
+		l5.102,49.711l-0.015-0.01l-4.999,7.387l-5.409-7.396l-0.007,0.004L36.092,2.051z M42.237,50.521L37.303,4.281l14.576,33.087
+		L42.237,50.521z M52.201,38.101l1.808,4.104l-7.251,10.193l-4.312-0.99L52.201,38.101z M37.355,2.684L58.42,28.448l-6.067,8.277
+		L37.355,2.684z M14.605,54.935L0.907,35.53L32.779,4.374L13.114,28.425l6.623,9.03l-2.127,4.83l7.312,10.28L14.605,54.935z
+		 M36.205,67.235L26.086,53.009l4.326-0.992l0.072,0.099l-0.045,0.034l5.988,8.191l5.552-8.201l-0.048-0.032L42,52.017l4.324,0.992
+		L36.205,67.235z M66.4,42.762l-8.594,12.173l-10.317-2.369l7.312-10.28l-2.127-4.83l6.622-9.03L39.633,4.374L71.504,35.53
+		L66.4,42.762z"/>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/Logo_Horizontal_Reversed.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/Logo_Horizontal_Reversed.svg
new file mode 100644
index 0000000..5d7d0dc
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/Logo_Horizontal_Reversed.svg
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 20.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 viewBox="0 0 600 121.3" style="enable-background:new 0 0 600 121.3;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#FFFFFF;}
+	.st1{fill:url(#SVGID_1_);}
+</style>
+<g>
+	<path class="st0" d="M164.88,75.64V45.16h12.97c1.91,0,3.52,0.28,4.83,0.84c1.31,0.56,2.37,1.3,3.18,2.21
+		c0.81,0.91,1.4,1.94,1.76,3.09c0.36,1.15,0.54,2.31,0.54,3.49c0,0.74-0.08,1.49-0.26,2.25c-0.17,0.76-0.43,1.5-0.78,2.21
+		c-0.35,0.72-0.8,1.38-1.35,2.01c-0.55,0.62-1.21,1.17-1.97,1.65c-0.76,0.47-1.64,0.85-2.63,1.11c-0.99,0.27-2.1,0.41-3.32,0.41
+		h-7.13v11.23H164.88z M178.1,58.83c0.75,0,1.37-0.12,1.88-0.36c0.5-0.25,0.92-0.55,1.23-0.94c0.32-0.38,0.55-0.82,0.69-1.29
+		c0.14-0.48,0.22-0.96,0.22-1.45c0-0.44-0.06-0.9-0.18-1.38c-0.12-0.47-0.33-0.9-0.63-1.3c-0.3-0.4-0.72-0.72-1.24-0.98
+		c-0.52-0.26-1.17-0.39-1.96-0.39h-7.38v8.08H178.1z"/>
+	<path class="st0" d="M228.45,75.64l-2.34-6.31h-11.66l-2.32,6.31h-6.27l11.58-30.49h5.69l11.58,30.49H228.45z M221.24,56.04
+		c-0.15-0.37-0.32-0.81-0.5-1.32c-0.17-0.51-0.33-0.98-0.45-1.43c-0.11,0.44-0.26,0.91-0.44,1.43c-0.18,0.51-0.35,0.95-0.51,1.32
+		l-2.99,7.93h7.87L221.24,56.04z"/>
+	<path class="st0" d="M267.52,50.83v24.81h-5.82V50.83h-8.65v-5.68h23.1v5.68H267.52z"/>
+	<path class="st0" d="M312.76,50.83v24.81h-5.82V50.83h-8.65v-5.68h23.11v5.68H312.76z"/>
+	<path class="st0" d="M345.49,75.64V45.16h20.63v5.59h-14.79v6.4h8.7v5.57h-8.7v7.36h15.7v5.57H345.49z"/>
+	<path class="st0" d="M391.55,75.64V45.16h14.04c1.91,0,3.51,0.26,4.8,0.8c1.28,0.53,2.32,1.24,3.11,2.12
+		c0.78,0.88,1.35,1.89,1.68,3.04c0.34,1.15,0.51,2.35,0.51,3.59c0,0.86-0.13,1.74-0.37,2.62c-0.25,0.89-0.62,1.73-1.11,2.52
+		c-0.49,0.8-1.1,1.51-1.84,2.16c-0.73,0.65-1.58,1.15-2.55,1.49l5.86,12.14h-6.56l-5.65-11.38h-6.09v11.38H391.55z M405.68,58.7
+		c0.74,0,1.37-0.11,1.88-0.33c0.5-0.22,0.91-0.51,1.22-0.88c0.31-0.37,0.54-0.79,0.67-1.28c0.13-0.48,0.2-0.99,0.2-1.51
+		c0-0.48-0.06-0.96-0.18-1.44c-0.12-0.48-0.33-0.9-0.62-1.28c-0.29-0.37-0.7-0.67-1.21-0.9c-0.51-0.23-1.16-0.34-1.95-0.34h-8.29
+		v7.95H405.68z"/>
+	<path class="st0" d="M459.54,75.64l-11.99-17.78c-0.2-0.29-0.41-0.66-0.64-1.09c-0.23-0.43-0.43-0.83-0.6-1.2
+		c0.05,0.32,0.07,0.71,0.1,1.15c0.02,0.44,0.03,0.82,0.03,1.15v17.78h-5.8V45.16h5.48l11.7,17.56c0.18,0.29,0.39,0.64,0.63,1.07
+		c0.24,0.43,0.45,0.84,0.63,1.23c-0.04-0.41-0.07-0.83-0.09-1.24c-0.03-0.42-0.04-0.77-0.04-1.06V45.16h5.78v30.49H459.54z"/>
+	<path class="st0" d="M490.75,75.64V45.16h20.26v5.59h-14.42v6.4h9.15v5.57h-9.15v12.93H490.75z"/>
+	<path class="st0" d="M534.67,75.64V45.16h5.84v24.83h14.59v5.66H534.67z"/>
+	<path class="st0" d="M583.03,75.64V63.76l-11.2-18.6h6.62l7.46,12.46l7.46-12.46H600l-11.19,18.6v11.88H583.03z"/>
+</g>
+<g>
+	<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="63.8196" y1="3.8115" x2="63.8196" y2="121.713">
+		<stop  offset="0" style="stop-color:#83D3E8"/>
+		<stop  offset="1" style="stop-color:#248AC8"/>
+	</linearGradient>
+	<path class="st1" d="M63.96,0.24l0.01-0.11L63.92,0.2L63.9,0.18L63.92,0l-0.1,0.1L63.72,0l0.02,0.18L63.72,0.2l-0.05-0.07
+		l0.01,0.11L0.19,62.84l25.14,35.93l19.42-4.5l19.07,27.04l19.07-27.04l19.42,4.5l15.57-22.25l9.57-13.67L63.96,0.24z M61.89,7.59
+		l-8.67,81.96L36.27,66.24L61.89,7.59z M35.44,65.1L24.78,50.43L61.8,4.75L35.44,65.1z M52.85,91.13l-7.58,1.76L32.53,74.81
+		l3.18-7.27L52.85,91.13z M63.62,3.63l0.2-0.46l0.2,0.46l8.97,88.12l-0.03-0.02l-8.79,13.1l-9.51-13.11l-0.01,0.01L63.62,3.63z
+		 M74.42,89.55L65.75,7.59l25.62,58.65L74.42,89.55z M91.93,67.54l3.18,7.27L82.37,92.88l-7.58-1.76L91.93,67.54z M65.84,4.76
+		l37.02,45.67L92.2,65.1L65.84,4.76z M25.85,97.38L1.78,62.98L57.8,7.75L23.24,50.39L34.88,66.4l-3.74,8.56l12.85,18.23L25.85,97.38
+		z M63.82,119.19L46.04,93.97l7.6-1.76l0.13,0.18l-0.08,0.06l10.53,14.52l9.76-14.54l-0.08-0.06L74,92.21l7.6,1.76L63.82,119.19z
+		 M116.89,75.8l-15.1,21.58l-18.13-4.2L96.5,74.96l-3.74-8.56l11.64-16.01L69.84,7.75l56.02,55.23L116.89,75.8z"/>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/Logo_Horizontal_Reversed.svg alias b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/Logo_Horizontal_Reversed.svg alias
new file mode 100644
index 0000000..e47a8ca
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/Logo_Horizontal_Reversed.svg alias differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/logo-alt.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/logo-alt.svg
new file mode 100644
index 0000000..748d64a
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/logo-alt.svg
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 16.0.4, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="37px" height="35px" viewBox="0 0 37 35" enable-background="new 0 0 37 35" xml:space="preserve">
+<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="231.8955" y1="-269.5547" x2="231.8955" y2="-301.7199" gradientTransform="matrix(1 0 0 -1 -213.5 -268.5)">
+	<stop  offset="0" style="stop-color:#60EFFF"/>
+	<stop  offset="1" style="stop-color:#1F89C7"/>
+</linearGradient>
+<path fill="url(#SVGID_1_)" d="M36.792,17.992L18.398,0L0,17.992l7.333,10.39l5.595-1.285l5.503,7.737l5.493-7.724l5.533,1.27
+	L36.792,17.992z M17.634,3.336L15.25,25.355l-4.549-6.205L17.634,3.336z M10.202,18.47l-2.833-3.866l9.743-11.833L10.202,18.47z
+	 M14.495,25.562L14.495,25.562l0.265,0.365l-1.52,0.348l-3.507-4.93l0.626-1.424L14.495,25.562z M18.396,3.044l2.395,23.345
+	l-2.4,3.288L16,26.389L18.396,3.044z M22.296,25.562l4.181-5.702l0.654,1.485l-3.517,4.944l-1.58-0.362l0.264-0.363L22.296,25.562z
+	 M21.542,25.355L19.189,3.318l6.946,15.77L21.542,25.355z M19.744,2.767l9.679,11.837l-2.787,3.802L19.744,2.767z M7.647,27.56
+	l-6.692-9.48L14.051,5.278l-7.605,9.302l3.417,4.661l-0.964,2.188l3.572,5.023L7.647,27.56z M18.432,33.573l-4.733-6.653
+	l1.528-0.352l3.162,4.351l3.173-4.351l1.592,0.367L18.432,33.573z M24.384,26.466l3.581-5.037l-0.99-2.248l3.372-4.6l-7.605-9.302
+	l13.095,12.801l-6.692,9.48L24.384,26.466z"/>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/open-id-logo.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/open-id-logo.svg
new file mode 100644
index 0000000..0666e61
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/open-id-logo.svg
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="18.2px" viewBox="0 0 20 18.2" style="enable-background:new 0 0 20 18.2;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#C1C1C1;}
+	.st1{fill:#FFFFFF;}
+	.st2{fill:#CC6633;}
+</style>
+<g>
+	<g>
+		<path class="st0" d="M18.7,6.4l-1.1,0.8c-1.6-1-3.5-1.6-5.4-1.8v1.9c1.8,0.4,3.1,1.1,3.4,1.3l-1.2,0.9H20v0L18.7,6.4z"/>
+		<path class="st0" d="M7.7,7.4c0.4-0.1,0.8-0.2,1.2-0.2V5.4C4.1,5.9,0,8.3,0,11.5c0,5.2,8.9,6.7,8.9,6.7V16
+			C-0.5,14.4,2.6,8.7,7.7,7.4z"/>
+	</g>
+	<rect x="8.5" y="1.1" class="st1" width="4" height="7.4"/>
+	<polygon class="st2" points="8.9,2.1 12.2,0 12.2,16.1 8.9,18.2 	"/>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/OpenShift-logo.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/OpenShift-logo.svg
new file mode 100644
index 0000000..22d69ee
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/OpenShift-logo.svg
@@ -0,0 +1,69 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+<svg id="svg4242" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://www.w3.org/2000/svg" height="285.79" viewBox="0 0 286.28177 285.78885" width="286.28" version="1.1" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <defs id="defs4244">
+  <clipPath id="clipPath3923" clipPathUnits="userSpaceOnUse">
+   <path id="path3925" d="m0 768h1024v-768h-1024v768z"/>
+  </clipPath>
+ </defs>
+ <metadata id="metadata4247">
+  <rdf:RDF>
+   <cc:Work rdf:about="">
+    <dc:format>image/svg+xml</dc:format>
+    <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
+    <dc:title/>
+   </cc:Work>
+  </rdf:RDF>
+ </metadata>
+ <g id="layer1" transform="translate(448.86 -589.47)">
+  <g id="g3367" transform="matrix(1.25 0 0 -1.25 -733.56 1212.1)">
+   <g id="g3919">
+    <g id="g3921" clip-path="url(#clipPath3923)">
+     <g id="g3927" transform="translate(304.96 416.03)">
+      <path id="path3929" d="m0 0-25.748-9.369c0.33-4.128 1.041-8.206 2.042-12.201l24.456 8.906c-0.793 4.135-1.076 8.396-0.75 12.664" fill="#c32034"/>
+     </g>
+     <g id="g3931" transform="translate(418.75 444.5)">
+      <path id="path3933" d="m0 0c-1.795 3.704-3.873 7.284-6.279 10.657l-25.741-9.369c2.995-3.064 5.508-6.508 7.563-10.191l24.457 8.903z" fill="#c32034"/>
+     </g>
+     <g id="g3935" transform="translate(362.11 451.79)">
+      <path id="path3937" d="m0 0c5.356-2.499 9.995-5.908 13.907-9.906l25.742 9.37c-7.13 10.005-16.842 18.366-28.743 23.919-36.797 17.159-80.702 1.18-97.861-35.613-5.553-11.907-7.617-24.556-6.648-36.801l25.745 9.368c0.427 5.578 1.789 11.167 4.284 16.526 11.151 23.909 39.669 34.283 63.575 23.137" fill="#db212f"/>
+     </g>
+     <g id="g3939" transform="translate(282.86 395.05)">
+      <path id="path3941" d="m0 0-24.46-8.909c2.248-8.918 6.145-17.391 11.502-24.932l25.688 9.351c-6.595 6.771-10.979 15.337-12.73 24.49" fill="#ea2227"/>
+     </g>
+     <g id="g3943" transform="translate(389.56 404.75)">
+      <path id="path3945" d="m0 0c-0.409-5.575-1.817-11.167-4.319-16.53-11.15-23.91-39.668-34.285-63.574-23.136-5.363 2.501-10.035 5.883-13.936 9.888l-25.687-9.352c7.113-10.006 16.816-18.369 28.721-23.926 36.799-17.156 80.698-1.177 97.857 35.619 5.557 11.905 7.608 24.549 6.626 36.785l-25.69-9.348z" fill="#db212f"/>
+     </g>
+     <g id="g3947" transform="translate(395.89 436.18)">
+      <path id="path3949" d="m0 0-24.458-8.903c4.542-8.139 6.689-17.513 5.986-26.938l25.688 9.345c-0.735 9.219-3.195 18.217-7.216 26.496" fill="#ea2227"/>
+     </g>
+     <g id="g3951" transform="translate(279.22 406.66)">
+      <path id="path3953" d="m0 0 25.684 9.263-0.105-5.08-24.78-9.213-0.799 5.03z" fill="#ad213a"/>
+     </g>
+     <g id="g3955" transform="translate(386.73 445.86)">
+      <path id="path3957" d="m0 0 26.085 8.814 2.712-4.028-25.345-8.821-3.452 4.035z" fill="#ad213a"/>
+     </g>
+     <g id="g3959" transform="translate(282.04 365.71)">
+      <path id="path3961" d="m0 0 25.716 9.213 7.777-7.225-26.967-9.967-6.526 7.979z" fill="#ba2034"/>
+     </g>
+     <g id="g3963" transform="translate(415.68 414.03)">
+      <path id="path3965" d="m0 0-26.119-9.274-1.924-10.293 27.848 9.771 0.195 9.796z" fill="#ba2034"/>
+     </g>
+    </g>
+   </g>
+   <g id="text3967" transform="scale(1,-1)" fill="#231f20">
+    <path id="path3359" d="m254.37-285.44c-1.2952 0-2.4565-0.16749-3.4837-0.50246-1.0273-0.34614-1.9373-0.80952-2.73-1.3901-0.78161-0.59178-1.4516-1.2841-2.0098-2.0768-0.5583-0.80393-1.0161-1.6637-1.3734-2.5793-0.34614-0.92675-0.60296-1.887-0.77044-2.8808-0.15632-1.0049-0.23448-2.0042-0.23448-2.998 0-0.98257 0.0782-1.9707 0.23448-2.9645 0.16748-1.0049 0.4243-1.9652 0.77044-2.8808 0.3573-0.92674 0.81509-1.7865 1.3734-2.5793 0.55828-0.80391 1.2282-1.4962 2.0098-2.0768 0.79276-0.59176 1.7028-1.0551 2.73-1.3901 1.0272-0.34611 2.1885-0.51918 3.4837-0.51921 1.2952 0.00003 2.4509 0.1731 3.467 0.51921 1.0272 0.335 1.9317 0.79838 2.7133 1.3901 0.78158 0.58064 1.4515 1.2729 2.0098 2.0768 0.55826 0.79279 1.0105 1.6526 1.3566 2.5793 0.35728 0.91561 0.61409 1.8759 0.77043 2.8808 0.16747 0.99377 0.25121 1.9819 0.25123 2.9645-0.00002 0.99376-0.0838 1.9931-0.25123 2.998-0.15634 0.99376-0.41315 1.954-0.77043 2.8808-0.34617 0.9156-0.79838 1.7754-1.3566 2.5793-0.55831 0.79277-1.2283 1.485-2.0098 2.0768-0.78162 0.58062-1.686 1.044-2.7133 1.3901-1.0161 0.33497-2.1718 0.50246-3.467 0.50246m0-4.4719c1.0719 0.00001 1.9708-0.25122 2.6965-0.75369 0.73693-0.50245 1.3287-1.1445 1.7754-1.9261 0.45778-0.78159 0.78717-1.6358 0.98817-2.5625 0.20096-0.93791 0.30146-1.8423 0.30147-2.7133-0.00001-0.6141-0.0447-1.2338-0.13398-1.8591-0.0782-0.63643-0.21217-1.245-0.40197-1.8256-0.18984-0.59177-0.43548-1.1445-0.73694-1.6581-0.30149-0.52478-0.66438-0.97699-1.0887-1.3566-0.42432-0.39078-0.92119-0.69784-1.4906-0.92118-0.5583-0.22329-1.1948-0.33495-1.9094-0.33497-0.72578 0.00002-1.3734 0.11726-1.9428 0.35172-0.5583 0.2345-1.0552 0.55273-1.4906 0.95467-0.4243 0.39082-0.78719 0.84862-1.0887 1.3734-0.30148 0.52481-0.54713 1.0831-0.73694 1.6749-0.18982 0.5918-0.32939 1.1948-0.41871 1.8088-0.0782 0.61413-0.11725 1.2115-0.11724 1.7921-0.00001 0.9156 0.10048 1.8479 0.30147 2.797 0.20098 0.93794 0.52479 1.7921 0.97142 2.5625 0.45779 0.75928 1.0552 1.3846 1.7921 1.8758 0.73693 0.48013 1.6469 0.7202 2.73 0.72019"/>
+    <path id="path3361" d="m270.86-285.86v-24.018h10.3c1.5185 0.00003 2.797 0.22334 3.8354 0.66995 1.0384 0.43548 1.8814 1.0161 2.529 1.7418 0.6476 0.71463 1.111 1.5242 1.3901 2.4286 0.29029 0.90444 0.43544 1.82 0.43546 2.7468-0.00002 0.58064-0.067 1.1724-0.20098 1.7754-0.13401 0.5918-0.34058 1.1724-0.6197 1.7419-0.27916 0.5583-0.63647 1.0831-1.0719 1.5744-0.43549 0.4913-0.96028 0.92676-1.5744 1.3064-0.60297 0.36848-1.3008 0.65879-2.0936 0.87093-0.78162 0.21216-1.6581 0.31823-2.6295 0.31822h-5.661v8.8433h-4.6394m10.501-13.248c0.59178 0.00002 1.0886-0.0949 1.4906-0.28472 0.40196-0.18981 0.72576-0.43545 0.97142-0.73694 0.2568-0.30146 0.44103-0.64202 0.55271-1.0217 0.11164-0.37962 0.16747-0.75926 0.16749-1.1389-0.00002-0.34612-0.0503-0.70342-0.15074-1.0719-0.0893-0.37962-0.25683-0.72576-0.50246-1.0384-0.2345-0.31262-0.5583-0.56943-0.97142-0.77043-0.41315-0.20097-0.93236-0.30146-1.5576-0.30148h-5.862v6.3645h5.862"/>
+    <path id="path3363" d="m295.76-285.86v-24.018h16.397v4.4049h-11.758v5.0413h6.9172v4.3881h-6.9172v5.795h12.478v4.3881h-17.117"/>
+    <path id="path3365" d="m334.66-285.86-9.53-14.002c-0.15633-0.23446-0.3294-0.51919-0.51921-0.85418-0.17866-0.34612-0.33498-0.66434-0.46896-0.95467 0.0335 0.25683 0.0558 0.5583 0.067 0.90443 0.0223 0.34615 0.0335 0.64763 0.0335 0.90442v14.002h-4.6059v-24.018h4.3546l9.2955 13.834c0.14514 0.22333 0.31263 0.50247 0.50246 0.83743 0.1898 0.33499 0.35729 0.65879 0.50246 0.97142-0.0335-0.32379-0.0614-0.6476-0.0837-0.97142-0.0112-0.33496-0.0168-0.6141-0.0168-0.83743v-13.834h4.5891v24.018h-4.1202"/>
+   </g>
+   <g id="text3971" transform="scale(1,-1)" fill="#231f20">
+    <path id="path3348" d="m358.06-304.42c-0.14517-0.34612-0.34615-0.66435-0.60295-0.95468-0.25683-0.30145-0.56947-0.55826-0.93793-0.77043-0.36848-0.2233-0.79278-0.39637-1.2729-0.51921-0.46897-0.1228-0.99376-0.18421-1.5744-0.18424-1.1501 0.00003-2.0489 0.25125-2.6965 0.75369-0.64762 0.50248-0.97143 1.2115-0.97142 2.1271-0.00001 0.56947 0.17864 1.0552 0.53595 1.4571 0.3573 0.39082 0.82626 0.73696 1.4069 1.0384 0.58061 0.30149 1.2394 0.58063 1.9763 0.83743 0.74809 0.24566 1.5074 0.51922 2.2778 0.82068 0.78159 0.29032 1.5409 0.63088 2.2778 1.0217 0.7481 0.37964 1.4125 0.84861 1.9931 1.4069 0.5806 0.54713 1.0496 1.2115 1.4069 1.9931 0.35728 0.77045 0.53594 1.6972 0.53595 2.7803-0.00001 1.1501-0.21216 2.1718-0.63644 3.065-0.41315 0.8821-0.98819 1.6302-1.7251 2.2443-0.73696 0.60295-1.6079 1.0663-2.6128 1.3901-0.99377 0.31264-2.0657 0.46896-3.2157 0.46896-1.0719 0-2.0768-0.13957-3.0148-0.41872-0.92677-0.26798-1.7698-0.65319-2.529-1.1556-0.74811-0.51363-1.3957-1.1277-1.9428-1.8424-0.54712-0.72577-0.97142-1.5353-1.2729-2.4286l3.3665-1.2226c0.24564 0.53597 0.54712 1.0273 0.90443 1.4739 0.36846 0.44664 0.78718 0.83186 1.2562 1.1557 0.46895 0.31264 0.98257 0.55829 1.5409 0.73694 0.56944 0.17865 1.178 0.26798 1.8256 0.26798s1.2394-0.0782 1.7754-0.23448c0.53594-0.15632 0.99374-0.3908 1.3734-0.70345 0.37963-0.31263 0.67552-0.69785 0.88768-1.1556 0.21214-0.46896 0.31821-1.0049 0.31823-1.6079-0.00002-0.7146-0.17867-1.312-0.53596-1.7921-0.35732-0.49129-0.82628-0.91559-1.4069-1.2729-0.58063-0.35729-1.245-0.66994-1.9931-0.93792-0.73695-0.26797-1.4962-0.54153-2.2778-0.82069-0.77044-0.27913-1.5297-0.59177-2.2778-0.93792-0.73695-0.34613-1.3957-0.77042-1.9763-1.2729-0.58062-0.50244-1.0496-1.1054-1.4069-1.8088-0.3573-0.70343-0.53595-1.5632-0.53595-2.5793 0-0.84858 0.16748-1.6525 0.50246-2.4118 0.34613-0.75925 0.84301-1.4236 1.4906-1.9931 0.6476-0.58059 1.446-1.0384 2.395-1.3734 0.94908-0.33495 2.0322-0.50243 3.2492-0.50246 1.0161 0.00003 1.9372 0.12285 2.7635 0.36847 0.82625 0.23451 1.5464 0.5639 2.1606 0.98817 0.62527 0.42432 1.1445 0.92678 1.5576 1.5074 0.41311 0.58064 0.72575 1.2115 0.93792 1.8926l-3.2995 1.1054"/>
+    <path id="path3350" d="m383.24-285.86v-10.702h-10.954v10.702h-3.5675v-24.018h3.5675v9.9487h10.954v-9.9487h3.5674v24.018h-3.5674"/>
+    <path id="path3352" d="m394.08-285.86v-24.018h3.5675v24.018h-3.5675"/>
+    <path id="path3354" d="m404.81-285.86v-24.018h14.89v3.3665h-11.322v6.5822h7.3192v3.3665h-7.3192v10.702h-3.5675"/>
+    <path id="path3356" d="m434.01-306.44v20.584h-3.5675v-20.584h-6.8v-3.4335h17.151v3.4335h-6.7832"/>
+   </g>
+  </g>
+ </g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/OpenShift-Logo-NoText.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/OpenShift-Logo-NoText.svg
new file mode 100644
index 0000000..263ea41
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/OpenShift-Logo-NoText.svg
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1"
+	 id="svg4242" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+	 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 200 199.7"
+	 style="enable-background:new 0 0 200 199.7;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#C32034;}
+	.st1{fill:#DB212F;}
+	.st2{fill:#EA2227;}
+	.st3{fill:#AD213A;}
+	.st4{fill:#BA2034;}
+</style>
+<g id="g3921">
+	<g id="g3927" transform="translate(304.96 416.03)">
+		<path id="path3929" class="st0" d="M-235.4-323l-23.3,8.5c0.3,3.8,0.9,7.5,1.9,11.1l22.1-8C-235.4-315.4-235.7-319.2-235.4-323"/>
+	</g>
+	<g id="g3931" transform="translate(418.75 444.5)">
+		<path id="path3933" class="st0" d="M-246.2-377.3c-1.6-3.3-3.5-6.6-5.6-9.6l-23.3,8.5c2.7,2.8,5,5.9,6.9,9.2
+			C-268.3-369.3-246.2-377.3-246.2-377.3z"/>
+	</g>
+	<g id="g3935" transform="translate(362.11 451.79)">
+		<path id="path3937" class="st1" d="M-240.8-391.2c4.8,2.2,9,5.4,12.6,9l23.3-8.5c-6.4-9-15.3-16.6-26-21.6
+			c-33.3-15.5-73-1.1-88.5,32.2c-5,10.8-6.9,22.2-6,33.3l23.3-8.5c0.4-5.1,1.6-10.1,3.9-15C-288.2-391.9-262.5-401.2-240.8-391.2"/>
+	</g>
+	<g id="g3939" transform="translate(282.86 395.05)">
+		<path id="path3941" class="st2" d="M-233.3-283.1l-22.1,8c2,8,5.6,15.7,10.4,22.6l23.2-8.5C-227.7-267.1-231.7-274.8-233.3-283.1"
+			/>
+	</g>
+	<g id="g3943" transform="translate(389.56 404.75)">
+		<path id="path3945" class="st1" d="M-243.4-301.6c-0.4,5.1-1.7,10.1-3.9,15c-10.1,21.6-35.9,31.1-57.5,20.9c-4.8-2.2-9-5.4-12.6-9
+			l-23.2,8.5c6.4,9,15.2,16.6,26,21.6c33.3,15.5,73,1.1,88.5-32.2c5-10.8,6.9-22.2,6-33.3L-243.4-301.6L-243.4-301.6z"/>
+	</g>
+	<g id="g3947" transform="translate(395.89 436.18)">
+		<path id="path3949" class="st2" d="M-244-361.5l-22.1,8c4.1,7.4,6.1,15.9,5.4,24.4l23.2-8.5C-238.1-345.8-240.4-353.9-244-361.5"
+			/>
+	</g>
+	<g id="g3951" transform="translate(279.22 406.66)">
+		<path id="path3953" class="st3" d="M-232.9-305.2l23.2-8.4l-0.1,4.6l-22.4,8.3C-232.2-300.7-232.9-305.2-232.9-305.2z"/>
+	</g>
+	<g id="g3955" transform="translate(386.73 445.86)">
+		<path id="path3957" class="st3" d="M-243.1-379.9l23.6-8l2.5,3.6l-22.9,8C-240-376.2-243.1-379.9-243.1-379.9z"/>
+	</g>
+	<g id="g3959" transform="translate(282.04 365.71)">
+		<path id="path3961" class="st4" d="M-233.2-227.2l23.2-8.3l7,6.5l-24.4,9C-227.3-220-233.2-227.2-233.2-227.2z"/>
+	</g>
+	<g id="g3963" transform="translate(415.68 414.03)">
+		<path id="path3965" class="st4" d="M-245.9-319.2l-23.6,8.4l-1.7,9.3l25.2-8.8C-246.1-310.4-245.9-319.2-245.9-319.2z"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/OpenShift-Logo-Text.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/OpenShift-Logo-Text.svg
new file mode 100644
index 0000000..35d5289
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/OpenShift-Logo-Text.svg
@@ -0,0 +1,95 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1"
+	 id="svg4242" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+	 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 200 199.7"
+	 style="enable-background:new 0 0 200 199.7;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#C32034;}
+	.st1{fill:#DB212F;}
+	.st2{fill:#EA2227;}
+	.st3{fill:#AD213A;}
+	.st4{fill:#BA2034;}
+	.st5{fill:#231F20;}
+</style>
+<g>
+	<g id="g3921">
+		<g id="g3927" transform="translate(304.96 416.03)">
+			<path id="path3929" class="st0" d="M-238.7-345.3l-23.3,8.5c0.3,3.8,0.9,7.5,1.9,11.1l22.1-8C-238.7-337.7-239-341.5-238.7-345.3
+				"/>
+		</g>
+		<g id="g3931" transform="translate(418.75 444.5)">
+			<path id="path3933" class="st0" d="M-249.5-399.6c-1.6-3.3-3.5-6.6-5.6-9.6l-23.3,8.5c2.7,2.8,5,5.9,6.9,9.2
+				C-271.7-391.6-249.5-399.6-249.5-399.6z"/>
+		</g>
+		<g id="g3935" transform="translate(362.11 451.79)">
+			<path id="path3937" class="st1" d="M-244.2-413.5c4.8,2.2,9,5.4,12.6,9l23.3-8.5c-6.4-9-15.3-16.6-26-21.6
+				c-33.3-15.5-73-1.1-88.5,32.2c-5,10.8-6.9,22.2-6,33.3l23.3-8.5c0.4-5.1,1.6-10.1,3.9-15C-291.6-414.2-265.8-423.5-244.2-413.5"
+				/>
+		</g>
+		<g id="g3939" transform="translate(282.86 395.05)">
+			<path id="path3941" class="st2" d="M-236.6-305.4l-22.1,8c2,8,5.6,15.7,10.4,22.6l23.2-8.5C-231-289.4-235-297.1-236.6-305.4"/>
+		</g>
+		<g id="g3943" transform="translate(389.56 404.75)">
+			<path id="path3945" class="st1" d="M-246.7-323.9c-0.4,5.1-1.7,10.1-3.9,15c-10.1,21.6-35.9,31.1-57.5,20.9
+				c-4.8-2.2-9-5.4-12.6-9l-23.2,8.5c6.4,9,15.2,16.6,26,21.6c33.3,15.5,73,1.1,88.5-32.2c5-10.8,6.9-22.2,6-33.3L-246.7-323.9
+				L-246.7-323.9z"/>
+		</g>
+		<g id="g3947" transform="translate(395.89 436.18)">
+			<path id="path3949" class="st2" d="M-247.3-383.8l-22.1,8c4.1,7.4,6.1,15.9,5.4,24.4l23.2-8.5
+				C-241.5-368.1-243.7-376.2-247.3-383.8"/>
+		</g>
+		<g id="g3951" transform="translate(279.22 406.66)">
+			<path id="path3953" class="st3" d="M-236.2-327.6l23.2-8.4l-0.1,4.6l-22.4,8.3C-235.5-323-236.2-327.6-236.2-327.6z"/>
+		</g>
+		<g id="g3955" transform="translate(386.73 445.86)">
+			<path id="path3957" class="st3" d="M-246.5-402.2l23.6-8l2.5,3.6l-22.9,8C-243.4-398.5-246.5-402.2-246.5-402.2z"/>
+		</g>
+		<g id="g3959" transform="translate(282.04 365.71)">
+			<path id="path3961" class="st4" d="M-236.5-249.5l23.2-8.3l7,6.5l-24.4,9C-230.6-242.3-236.5-249.5-236.5-249.5z"/>
+		</g>
+		<g id="g3963" transform="translate(415.68 414.03)">
+			<path id="path3965" class="st4" d="M-249.2-341.5l-23.6,8.4l-1.7,9.3l25.2-8.8C-249.4-332.7-249.2-341.5-249.2-341.5z"/>
+		</g>
+	</g>
+	<g>
+		<g id="text3967" transform="scale(1,-1)">
+			<path id="path3359" class="st5" d="M20.5-188.8c-1.2,0-2.2,0.1-3.2,0.4c-0.9,0.3-1.7,0.7-2.5,1.2c-0.7,0.5-1.3,1.2-1.8,1.9
+				c-0.5,0.7-0.9,1.5-1.2,2.3c-0.3,0.9-0.6,1.7-0.7,2.6c-0.1,0.9-0.2,1.8-0.2,2.7s0.1,1.8,0.2,2.7c0.1,0.9,0.4,1.8,0.7,2.6
+				c0.3,0.9,0.7,1.6,1.2,2.3c0.5,0.7,1.1,1.4,1.8,1.9c0.7,0.5,1.5,0.9,2.5,1.2s2,0.4,3.2,0.4c1.2,0,2.2-0.1,3.1-0.4
+				c0.9-0.3,1.7-0.7,2.5-1.2c0.7-0.5,1.3-1.2,1.8-1.9c0.5-0.7,0.9-1.5,1.2-2.3c0.3-0.8,0.6-1.7,0.7-2.6c0.1-0.9,0.2-1.8,0.2-2.7
+				s-0.1-1.8-0.2-2.7c-0.1-0.9-0.4-1.7-0.7-2.6c-0.3-0.8-0.7-1.6-1.2-2.3c-0.5-0.7-1.1-1.4-1.8-1.9c-0.7-0.5-1.5-0.9-2.5-1.2
+				C22.7-188.6,21.7-188.8,20.5-188.8 M20.5-184.7c0.9,0,1.8,0.2,2.5,0.7c0.7,0.4,1.2,1,1.6,1.7c0.4,0.7,0.7,1.4,0.9,2.3
+				c0.2,0.9,0.3,1.7,0.3,2.5c0,0.6-0.1,1.1-0.1,1.7c-0.1,0.6-0.2,1.2-0.4,1.7c-0.1,0.5-0.4,1-0.7,1.5c-0.3,0.5-0.6,0.9-1,1.2
+				c-0.4,0.4-0.9,0.7-1.4,0.9c-0.5,0.2-1.1,0.3-1.7,0.3c-0.7,0-1.2-0.1-1.7-0.3s-0.9-0.5-1.4-0.9c-0.4-0.4-0.7-0.8-1-1.2
+				c-0.3-0.5-0.5-1-0.7-1.5c-0.1-0.5-0.3-1.1-0.4-1.7s-0.1-1.1-0.1-1.6c0-0.8,0.1-1.7,0.3-2.5c0.2-0.9,0.5-1.6,0.9-2.3
+				c0.4-0.7,0.9-1.2,1.6-1.7C18.7-184.5,19.5-184.7,20.5-184.7"/>
+			<path id="path3361" class="st5" d="M35.4-188.4v21.7h9.3c1.4,0,2.5-0.2,3.5-0.6c0.9-0.4,1.7-0.9,2.3-1.6c0.6-0.7,1-1.4,1.2-2.2
+				c0.3-0.8,0.4-1.7,0.4-2.5c0-0.5-0.1-1.1-0.2-1.6c-0.1-0.5-0.3-1.1-0.6-1.6c-0.2-0.5-0.6-1-0.9-1.4s-0.9-0.9-1.4-1.2
+				c-0.6-0.4-1.2-0.6-1.9-0.8s-1.5-0.3-2.4-0.3h-5.1v-8H35.4 M44.9-176.4c0.5,0,1,0.1,1.4,0.3c0.4,0.1,0.7,0.4,0.9,0.7
+				c0.2,0.3,0.4,0.6,0.5,0.9c0.1,0.4,0.1,0.7,0.1,1c0,0.3-0.1,0.7-0.1,0.9c-0.1,0.4-0.2,0.7-0.4,0.9c-0.2,0.3-0.5,0.5-0.9,0.7
+				c-0.4,0.2-0.9,0.3-1.4,0.3h-5.3v-5.8H44.9"/>
+			<path id="path3363" class="st5" d="M57.9-188.4v21.7h14.8v-4H62.1v-4.6h6.2v-4h-6.2v-5.2h11.3v-4H57.9"/>
+			<path id="path3365" class="st5" d="M93.1-188.4l-8.6,12.7c-0.1,0.2-0.3,0.4-0.4,0.8c-0.1,0.3-0.3,0.6-0.4,0.9
+				c0-0.2,0.1-0.5,0.1-0.8c0-0.3,0-0.6,0-0.8v-12.7h-4.2v21.7h3.9l8.4-12.5c0.1-0.2,0.3-0.4,0.4-0.7c0.1-0.3,0.3-0.6,0.4-0.9
+				c0,0.3-0.1,0.6-0.1,0.9s0,0.6,0,0.7v12.5h4.1v-21.7L93.1-188.4"/>
+		</g>
+		<g id="text3971" transform="scale(1,-1)">
+			<path id="path3348" class="st5" d="M114.3-171.6c-0.1,0.3-0.3,0.6-0.6,0.9c-0.2,0.3-0.5,0.5-0.9,0.7c-0.4,0.2-0.7,0.4-1.2,0.4
+				c-0.4,0.1-0.9,0.1-1.4,0.1c-1,0-1.9-0.2-2.5-0.7c-0.6-0.4-0.9-1.1-0.9-2c0-0.5,0.1-0.9,0.5-1.3c0.3-0.4,0.7-0.7,1.3-0.9
+				c0.5-0.3,1.1-0.5,1.8-0.7c0.7-0.2,1.4-0.4,2-0.7c0.7-0.3,1.4-0.6,2-0.9c0.7-0.4,1.3-0.8,1.8-1.3c0.5-0.5,0.9-1.1,1.3-1.8
+				c0.3-0.7,0.5-1.5,0.5-2.5c0-1-0.2-2-0.6-2.8c-0.4-0.8-0.9-1.4-1.6-2c-0.7-0.6-1.4-0.9-2.4-1.2c-0.9-0.3-1.9-0.4-2.9-0.4
+				c-0.9,0-1.9,0.1-2.8,0.4s-1.6,0.6-2.3,1c-0.7,0.4-1.2,1-1.7,1.7s-0.9,1.4-1.2,2.2l3,1.1c0.2-0.5,0.5-0.9,0.8-1.3
+				c0.4-0.4,0.7-0.7,1.2-1c0.4-0.3,0.9-0.5,1.4-0.7c0.5-0.1,1.1-0.2,1.7-0.2c0.6,0,1.1,0.1,1.6,0.2c0.5,0.1,0.9,0.4,1.2,0.7
+				c0.4,0.3,0.6,0.7,0.8,1c0.2,0.4,0.3,0.9,0.3,1.4c0,0.7-0.1,1.2-0.5,1.6c-0.3,0.4-0.7,0.8-1.3,1.2c-0.5,0.3-1.2,0.6-1.8,0.9
+				c-0.7,0.2-1.4,0.5-2,0.7c-0.7,0.2-1.4,0.5-2,0.9c-0.7,0.3-1.2,0.7-1.8,1.2c-0.5,0.4-0.9,1-1.3,1.7c-0.3,0.7-0.5,1.4-0.5,2.3
+				c0,0.8,0.1,1.5,0.4,2.2c0.3,0.7,0.8,1.3,1.4,1.8c0.6,0.5,1.3,0.9,2.2,1.2c0.9,0.3,1.8,0.4,3,0.4c0.9,0,1.7-0.1,2.5-0.4
+				c0.7-0.2,1.4-0.5,2-0.9c0.6-0.4,1-0.9,1.4-1.4s0.7-1.1,0.9-1.7L114.3-171.6"/>
+			<path id="path3350" class="st5" d="M137.1-188.4v9.7h-9.9v-9.7h-3.3v21.7h3.3v-9h9.9v9h3.3v-21.7H137.1"/>
+			<path id="path3352" class="st5" d="M146.9-188.4v21.7h3.3v-21.7H146.9"/>
+			<path id="path3354" class="st5" d="M156.6-188.4v21.7h13.5v-3h-10.3v-5.9h6.6v-3h-6.6v-9.7H156.6"/>
+			<path id="path3356" class="st5" d="M183-169.8v-18.6h-3.3v18.6h-6.2v3.1h15.5v-3.1L183-169.8"/>
+		</g>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/RH_atomic.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/RH_atomic.svg
new file mode 100644
index 0000000..9cf7f3a
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/RH_atomic.svg
@@ -0,0 +1,88 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="612px" height="792px" viewBox="0 0 612 792" enable-background="new 0 0 612 792" xml:space="preserve">
+<g>
+	<g>
+		<path fill="#00B9E4" d="M290.9,389.7c-0.7,0.5-1.3,1.2-1.8,1.6c-4.7,4.7-9.2,9-13.5,13c2.6,1.5,4.6,4,5.6,6.9
+			c5.1-4.6,10.4-9.5,15.8-14.9c1.2-1.1,2-4.1-0.2-6.2C295.2,388.7,292.6,388.4,290.9,389.7z"/>
+		<path fill="#00B9E4" d="M238.3,277.7c1.3,2,4.2,2.9,6.3,1.4c2.3-1.5,1.8-4.5,1.2-5.5c-18.4-31.3-26.7-55.2-19.4-60.9
+			c4.5-3.5,14.3,0.4,27.4,10c1.3-4.1,4.3-7.5,8.1-9.5c-21-15.7-37.6-22.3-45.4-16.2c-10.9,8.5-1.7,39.8,21,79.5
+			C237.8,276.9,238.1,277.3,238.3,277.7z"/>
+		<path fill="#00B9E4" d="M389.5,364.1c5.5-0.7,10.7-1.6,15.7-2.5c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c1.4-1.3,2.3-3.2,2.3-5.3
+			c0-3.4-2.4-6.2-5.5-6.9c0,0,0,0,0,0c-6.1,1-12.7,1.9-19.7,2.7l0,0l0,0c-10.8-17.6-24-36.6-39-55.7c-4.4-6-13.9-17.1-21.4-25.6
+			l0.1-0.1c36.6-40.7,68.9-65.5,78.2-58.2c7.2,5.6-1,29.5-19.4,60.9c-0.6,1-1.1,4,1.2,5.5c2.2,1.5,5.1,0.7,6.3-1.4
+			c0.2-0.3,0.5-0.8,0.7-1.1c22.7-39.7,31.9-71,21-79.5c-13.3-10.4-52.5,16.2-95,62.1c0,0-0.6,0.7-1.8,2c-1.1-1.2-1.8-2-1.8-2
+			c-9.2-9.9-18.3-19-26.9-26.9v0c-0.1-0.1-0.1-0.1-0.2-0.2c-0.4-0.1-0.8-0.1-1.2-0.1c-4,0-7.2,3.2-7.2,7.2c0,1,0.2,2,0.6,2.8l0,0
+			c8.8,8.3,18.2,18,28,28.8l0.1,0.1c-7.5,8.5-17,19.6-21.4,25.6c-15,19.1-28.2,38-39,55.7c-41.3-4.7-69.1-13.4-69-23.4
+			c0-10.2,29.4-19,72.5-23.5c0.5-0.1,0.8-0.2,1.3-0.2c2.3-0.4,3.5-2.6,3.4-4.4c0-2.3-1.7-4.6-4.9-4.5c-53.5,6-90.6,19.2-90.7,34.5
+			c-0.1,14.4,32.4,26.9,80.4,33.5c-22.5,39.4-31.5,70.4-20.6,78.9c7.9,6.2,25.1-0.7,46.6-17.1l0,0c0,0,0,0,0.1,0
+			c0.1-0.5,0.2-1,0.2-1.5c0-2.9-2.4-5.3-5.3-5.3c-0.3,0-0.5,0-0.7,0.1c0,0,0,0,0,0v0c-13.4,9.9-23.5,14.1-28,10.5
+			c-7.5-5.9,1.6-30.9,21.5-63.9c18.6,2,39.1,3.1,60.7,3.2v0c0.3,0,0.6,0,0.9,0c0,0,0,0,0,0l0,0c0.2,0,0.5,0,0.7,0h0h0.2c0,0,0,0,0,0
+			h0.2c0.2,0,0.5,0,0.7,0c0.3,0,0.6,0,0.9,0v0c21.5-0.1,42.1-1.2,60.7-3.2c19.9,33,29,58.1,21.5,63.9c-7.7,6-31.1-9.8-59.6-38.5
+			c-0.5-0.5-1.1-1.1-1.8-1.6c-1.8-1.3-4.3-1-5.7,0.4c-2.2,2.2-1.5,5.1-0.2,6.2c36.6,36.3,68.5,56,80.2,46.8
+			C421,434.6,412,403.6,389.5,364.1L389.5,364.1z M313.9,355.9c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0-0.5,0c-19.3,0-37.7-0.8-54.3-2.3
+			c9.9-15.4,21.8-32,35.1-49c6-7.6,12-14.9,17.9-21.8v0c0.6-0.7,1.2-1.4,1.7-2c0.6,0.7,1.2,1.4,1.7,2v0c5.9,6.9,11.9,14.2,17.9,21.8
+			c13.4,17,25.2,33.6,35.1,49l0,0C351.6,355,333.2,355.8,313.9,355.9z"/>
+		<path fill="#00B9E4" d="M379.3,296.2c-3.2-0.1-4.9,2.2-4.9,4.5c-0.1,1.8,1.2,4,3.4,4.4c0.4,0.1,0.8,0.2,1.3,0.2
+			c43.1,4.5,72.4,13.3,72.5,23.5c0,3.6-3.6,7-10.2,10.2c2.1,3.3,3.4,7.3,3.4,11.5c0,0.3,0,0.7-0.1,1c16-6,25.2-13.2,25.2-20.8
+			C469.9,315.3,432.7,302.2,379.3,296.2z"/>
+	</g>
+	<g>
+		<path fill="#0088CE" d="M269.2,211.5c-8.9,0-16.2,7.2-16.2,16.2c0,8.9,7.2,16.2,16.2,16.2c2.7,0,5.2-0.7,7.4-1.8
+			c-0.4-0.9-0.6-1.8-0.6-2.8c0-4,3.2-7.2,7.2-7.2c0.4,0,0.8,0,1.2,0.1c0.1,0.1,0.1,0.1,0.2,0.2c0.4-1.5,0.7-3,0.7-4.6
+			C285.4,218.7,278.2,211.5,269.2,211.5z"/>
+		<path fill="#0088CE" d="M311.6,259.2c-0.7-0.8-1.4-1.5-2.2-2.3l-8.4,10c1.2,1.3,2.4,2.6,3.6,3.9l0.1,0.1c3.6-4.2,6.8-7.7,8.7-9.8
+			C312.3,259.9,311.6,259.2,311.6,259.2z"/>
+		<path fill="#0088CE" d="M313.4,280.8C313.4,280.8,313.4,280.8,313.4,280.8c0.6,0.7,1.2,1.4,1.7,2.1v0c1.9,2.2,3.7,4.4,5.6,6.6
+			l8.6-10.2c-2.5-2.9-4.9-5.7-7.2-8.3L313.4,280.8z"/>
+		<path fill="#0088CE" d="M423.4,329.2c-11.4,0-20.8,9-21.3,20.3c3.2,0.7,5.5,3.5,5.5,6.9c0,2.1-0.9,4-2.3,5.3c0,0,0,0,0,0
+			c3.8,6.1,10.5,10.2,18.1,10.2c11.8,0,21.3-9.6,21.3-21.3C444.8,338.7,435.2,329.2,423.4,329.2z"/>
+		<path fill="#0088CE" d="M237.3,364.1c-2.3,4-4.3,7.8-6.3,11.6l13.3,1.7c2.1-3.7,4.3-7.6,6.7-11.6L237.3,364.1L237.3,364.1z"/>
+		<path fill="#0088CE" d="M258.6,353.6c0.8-1.3,1.7-2.6,2.6-3.9L247,348c-0.9,1.4-1.8,2.8-2.7,4.2v0L258.6,353.6L258.6,353.6z"/>
+		<path fill="#0088CE" d="M382.5,352.2c-0.9-1.5-1.9-3-2.8-4.4l-14.2,1.8c0.9,1.4,1.9,2.8,2.7,4.1l0,0c0,0,0,0,0,0L382.5,352.2
+			L382.5,352.2z"/>
+		<path fill="#0088CE" d="M375.8,365.8C375.8,365.8,375.8,365.8,375.8,365.8c2.3,3.9,4.5,7.7,6.6,11.3l13.3-1.7
+			c-1.9-3.7-4-7.5-6.2-11.4L375.8,365.8z"/>
+		<path fill="#0088CE" d="M269.2,402.6c-6.9,0-12.5,5.6-12.5,12.5c0,1.5,0.3,2.9,0.7,4.2c0,0,0,0,0,0c0.2,0,0.5-0.1,0.7-0.1
+			c2.9,0,5.3,2.4,5.3,5.3c0,0.5-0.1,1-0.2,1.5c0,0,0,0-0.1,0c1.8,1,3.8,1.5,6,1.5c6.9,0,12.5-5.6,12.5-12.5
+			C281.7,408.2,276.1,402.6,269.2,402.6z"/>
+	</g>
+</g>
+<g>
+	<path fill="#00B9E4" d="M189.1,535.6l-3.9-7.9h-4.4v7.9h-4.4v-22h10.2c1,0,2,0.1,2.9,0.4c0.9,0.3,1.7,0.7,2.4,1.3
+		c0.7,0.6,1.2,1.3,1.6,2.2c0.4,0.9,0.6,1.9,0.6,3.1c0,1.7-0.4,3-1.1,4.1c-0.7,1.1-1.8,1.9-3.2,2.4l4.2,8.5H189.1z M188.8,518.6
+		c-0.6-0.4-1.3-0.6-2.3-0.6h-5.8v5.6h5.8c2.1,0,3.2-0.9,3.2-2.8C189.7,519.8,189.4,519,188.8,518.6z"/>
+	<path fill="#00B9E4" d="M199.7,535.6v-22H215v4.3h-10.9v3.8h6.3v4.3h-6.3v5.3h11.3v4.3H199.7z"/>
+	<path fill="#00B9E4" d="M237.9,529.6c-0.6,1.4-1.5,2.5-2.5,3.4c-1.1,0.9-2.3,1.5-3.6,2c-1.3,0.4-2.7,0.6-4.1,0.6h-6.6v-22h6.9
+		c1.6,0,3,0.2,4.3,0.6c1.3,0.4,2.5,1,3.5,1.9c1,0.9,1.7,2,2.3,3.4c0.6,1.4,0.8,3.1,0.8,5.1C238.9,526.6,238.6,528.2,237.9,529.6z
+		 M232.8,519.6c-1-1.1-2.7-1.7-5-1.7h-2.3v13.4h2.2c1.2,0,2.2-0.2,3-0.5c0.9-0.3,1.5-0.8,2.1-1.4c0.5-0.6,1-1.3,1.2-2.1
+		c0.3-0.8,0.4-1.7,0.4-2.7C234.4,522.4,233.9,520.8,232.8,519.6z"/>
+	<path fill="#00B9E4" d="M267.7,535.6v-9.2h-9v9.2h-4.4v-22h4.4v8.4h9v-8.4h4.4v22H267.7z"/>
+	<path fill="#00B9E4" d="M293.3,535.6l-1.7-4.9h-8l-1.7,4.9h-4.7l8.4-22h4.3l8.4,22H293.3z M288.7,522.6c-0.2-0.6-0.4-1.3-0.6-1.9
+		c-0.2-0.6-0.4-1.1-0.5-1.5c-0.1,0.4-0.3,0.9-0.5,1.5c-0.2,0.6-0.4,1.2-0.6,1.9l-1.4,4h5L288.7,522.6z"/>
+	<path fill="#00B9E4" d="M309.4,518v17.7h-4.4V518h-6.3v-4.3h17v4.3H309.4z"/>
+	<path fill="#00B9E4" d="M345.6,535.6l-1.7-4.9h-8l-1.7,4.9h-4.7l8.4-22h4.3l8.4,22H345.6z M341,522.6c-0.2-0.6-0.4-1.3-0.6-1.9
+		c-0.2-0.6-0.4-1.1-0.5-1.5c-0.1,0.4-0.3,0.9-0.5,1.5c-0.2,0.6-0.4,1.2-0.6,1.9l-1.4,4h5L341,522.6z"/>
+	<path fill="#00B9E4" d="M361.8,518v17.7h-4.4V518h-6.3v-4.3h17v4.3H361.8z"/>
+	<path fill="#00B9E4" d="M389.7,529.4c-0.5,1.4-1.1,2.6-2,3.6c-0.9,1-1.9,1.7-3.1,2.2c-1.2,0.5-2.5,0.8-3.9,0.8
+		c-1.4,0-2.8-0.3-3.9-0.8c-1.2-0.5-2.2-1.3-3-2.2c-0.8-1-1.5-2.2-2-3.5c-0.5-1.4-0.7-3-0.7-4.8c0-1.8,0.2-3.4,0.7-4.8
+		c0.5-1.4,1.1-2.6,2-3.6c0.9-1,1.9-1.7,3.1-2.2c1.2-0.5,2.5-0.8,4-0.8c1.4,0,2.7,0.3,3.9,0.8c1.2,0.5,2.2,1.3,3,2.2
+		c0.8,1,1.5,2.2,2,3.5c0.5,1.4,0.7,3,0.7,4.8C390.4,526.4,390.1,528,389.7,529.4z M384.4,519.5c-1-1.2-2.2-1.8-3.8-1.8
+		c-1.5,0-2.8,0.6-3.7,1.8c-0.9,1.2-1.4,2.9-1.4,5.1c0,2.2,0.5,4,1.4,5.2c1,1.2,2.2,1.8,3.8,1.8c1.5,0,2.8-0.6,3.7-1.8
+		c0.9-1.2,1.4-2.9,1.4-5.1C385.9,522.5,385.4,520.7,384.4,519.5z"/>
+	<path fill="#00B9E4" d="M411.9,535.6v-8.1c0-0.3,0-0.7,0-1.1c0-0.5,0-0.9,0-1.4c0-0.5,0-0.9,0-1.4c0-0.4,0-0.7,0-0.9
+		c-0.2,0.4-0.4,1-0.7,1.7c-0.3,0.7-0.6,1.4-0.9,2l-4.5,9.8l-4.4-9.8c-0.3-0.6-0.6-1.3-0.9-2c-0.3-0.7-0.5-1.2-0.7-1.7
+		c0,0.2,0,0.5,0,0.9c0,0.4,0,0.9,0,1.4c0,0.5,0,1,0,1.4c0,0.5,0,0.8,0,1.1v8.1h-4.3v-22h4.2l4.6,10c0.1,0.3,0.3,0.6,0.4,1
+		s0.3,0.7,0.4,1c0.1,0.3,0.3,0.6,0.4,0.9c0.1,0.3,0.2,0.5,0.3,0.7c0.1-0.4,0.4-1,0.6-1.7c0.3-0.7,0.6-1.4,0.9-2l4.4-10h4.3v22H411.9
+		z"/>
+	<path fill="#00B9E4" d="M423.2,535.6v-22h4.4v22H423.2z"/>
+	<path fill="#00B9E4" d="M447.1,520.1c-0.4-0.8-0.9-1.3-1.6-1.8c-0.6-0.4-1.5-0.6-2.5-0.6c-0.8,0-1.5,0.2-2.2,0.5s-1.2,0.8-1.6,1.4
+		c-0.4,0.6-0.8,1.3-1,2.2c-0.2,0.9-0.3,1.8-0.3,2.8c0,1,0.1,1.9,0.3,2.7c0.2,0.8,0.6,1.6,1,2.2c0.4,0.6,1,1.1,1.6,1.5
+		c0.6,0.4,1.4,0.5,2.2,0.5c1,0,1.8-0.2,2.5-0.7c0.6-0.4,1.3-1.2,1.8-2.1l3.7,2.2c-0.8,1.6-1.8,2.8-3.1,3.7c-1.3,0.9-3,1.3-5,1.3
+		c-1.4,0-2.8-0.3-3.9-0.8c-1.2-0.5-2.2-1.3-3-2.3c-0.9-1-1.5-2.2-2-3.6c-0.5-1.4-0.7-3-0.7-4.7c0-1.7,0.2-3.2,0.7-4.6
+		c0.5-1.4,1.2-2.6,2-3.6c0.9-1,1.9-1.8,3.1-2.3c1.2-0.6,2.5-0.8,4-0.8c1,0,2,0.1,2.8,0.4c0.8,0.2,1.6,0.6,2.2,1s1.2,0.9,1.7,1.5
+		c0.5,0.6,0.9,1.3,1.3,2L447.1,520.1z"/>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/RH_Atomic-Logo-NoText.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/RH_Atomic-Logo-NoText.svg
new file mode 100644
index 0000000..00ca589
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/RH_Atomic-Logo-NoText.svg
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1"
+	 id="svg4242" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+	 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 200 199.7"
+	 style="enable-background:new 0 0 200 199.7;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#00B9E4;}
+	.st1{fill:#0088CE;}
+</style>
+<g>
+	<g>
+		<path class="st0" d="M88.1,136.7c-0.4,0.3-0.7,0.6-1,0.8c-2.5,2.5-4.9,4.8-7.1,6.9c1.4,0.8,2.4,2.1,3,3.7c2.7-2.4,5.5-5,8.4-7.9
+			c0.6-0.6,1.1-2.2-0.1-3.3C90.4,136.2,89,136,88.1,136.7z"/>
+		<path class="st0" d="M60.3,77.4c0.7,1.1,2.2,1.5,3.3,0.7c1.2-0.8,1-2.4,0.6-2.9C54.5,58.7,50.1,46,54,43c2.4-1.9,7.6,0.2,14.5,5.3
+			c0.7-2.2,2.3-4,4.3-5c-11.1-8.3-19.9-11.8-24-8.6c-5.8,4.5-1,21.1,11.1,42.1C60,77,60.2,77.2,60.3,77.4z"/>
+		<path class="st0" d="M140.3,123.2c2.9-0.4,5.7-0.8,8.3-1.3l0,0l0,0l0,0c0.7-0.7,1.2-1.7,1.2-2.8c0-1.8-1.3-3.3-2.9-3.7l0,0
+			c-3.2,0.5-6.7,1-10.4,1.4l0,0l0,0c-5.7-9.3-12.7-19.4-20.6-29.5c-2.3-3.2-7.4-9.1-11.3-13.6l0.1-0.1C124,52.2,141,39.1,146,42.9
+			c3.8,3-0.5,15.6-10.3,32.2c-0.3,0.5-0.6,2.1,0.6,2.9c1.2,0.8,2.7,0.4,3.3-0.7c0.1-0.2,0.3-0.4,0.4-0.6c12-21,16.9-37.6,11.1-42.1
+			c-7-5.5-27.8,8.6-50.3,32.9c0,0-0.3,0.4-1,1.1c-0.6-0.6-1-1.1-1-1.1c-4.9-5.2-9.7-10.1-14.2-14.2l0,0c-0.1-0.1-0.1-0.1-0.1-0.1
+			c-0.2-0.1-0.4-0.1-0.6-0.1c-2.1,0-3.8,1.7-3.8,3.8c0,0.5,0.1,1.1,0.3,1.5l0,0c4.7,4.4,9.6,9.5,14.8,15.2l0.1,0.1
+			c-4,4.5-9,10.4-11.3,13.6c-7.9,10.1-14.9,20.1-20.6,29.5c-21.9-2.5-36.6-7.1-36.5-12.4c0-5.4,15.6-10.1,38.4-12.4
+			c0.3-0.1,0.4-0.1,0.7-0.1c1.2-0.2,1.9-1.4,1.8-2.3c0-1.2-0.9-2.4-2.6-2.4c-28.3,3.2-48,10.2-48,18.3c-0.1,7.6,17.2,14.2,42.6,17.7
+			c-11.9,20.9-16.7,37.3-10.9,41.8c4.2,3.3,13.3-0.4,24.7-9.1l0,0c0,0,0,0,0.1,0c0.1-0.3,0.1-0.5,0.1-0.8c0-1.5-1.3-2.8-2.8-2.8
+			c-0.2,0-0.3,0-0.4,0.1l0,0l0,0c-7.1,5.2-12.4,7.5-14.8,5.6c-4-3.1,0.8-16.4,11.4-33.8c9.8,1.1,20.7,1.6,32.1,1.7l0,0
+			c0.2,0,0.3,0,0.5,0l0,0l0,0c0.1,0,0.3,0,0.4,0l0,0h0.1l0,0h0.1c0.1,0,0.3,0,0.4,0c0.2,0,0.3,0,0.5,0l0,0
+			c11.4-0.1,22.3-0.6,32.1-1.7c10.5,17.5,15.4,30.8,11.4,33.8c-4.1,3.2-16.5-5.2-31.5-20.4c-0.3-0.3-0.6-0.6-1-0.8
+			c-1-0.7-2.3-0.5-3,0.2c-1.2,1.2-0.8,2.7-0.1,3.3c19.4,19.2,36.3,29.6,42.5,24.8C157,160.5,152.2,144.1,140.3,123.2L140.3,123.2z
+			 M100.3,118.8c-0.1,0-0.2,0-0.3,0s-0.2,0-0.3,0c-10.2,0-20-0.4-28.7-1.2c5.2-8.2,11.5-16.9,18.6-25.9c3.2-4,6.4-7.9,9.5-11.5l0,0
+			c0.3-0.4,0.6-0.7,0.9-1.1c0.3,0.4,0.6,0.7,0.9,1.1l0,0c3.1,3.7,6.3,7.5,9.5,11.5c7.1,9,13.3,17.8,18.6,25.9l0,0
+			C120.2,118.4,110.5,118.8,100.3,118.8z"/>
+		<path class="st0" d="M134.9,87.2c-1.7-0.1-2.6,1.2-2.6,2.4c-0.1,1,0.6,2.1,1.8,2.3c0.2,0.1,0.4,0.1,0.7,0.1
+			c22.8,2.4,38.3,7,38.4,12.4c0,1.9-1.9,3.7-5.4,5.4c1.1,1.7,1.8,3.9,1.8,6.1c0,0.2,0,0.4-0.1,0.5c8.5-3.2,13.3-7,13.3-11
+			C182.9,97.3,163.2,90.4,134.9,87.2z"/>
+	</g>
+	<g>
+		<path class="st1" d="M76.6,42.4c-4.7,0-8.6,3.8-8.6,8.6c0,4.7,3.8,8.6,8.6,8.6c1.4,0,2.8-0.4,3.9-1c-0.2-0.5-0.3-1-0.3-1.5
+			c0-2.1,1.7-3.8,3.8-3.8c0.2,0,0.4,0,0.6,0.1c0.1,0.1,0.1,0.1,0.1,0.1c0.2-0.8,0.4-1.6,0.4-2.4C85.2,46.2,81.4,42.4,76.6,42.4z"/>
+		<path class="st1" d="M99.1,67.6c-0.4-0.4-0.7-0.8-1.2-1.2l-4.4,5.3c0.6,0.7,1.3,1.4,1.9,2.1l0.1,0.1c1.9-2.2,3.6-4.1,4.6-5.2
+			C99.4,68,99.1,67.6,99.1,67.6z"/>
+		<path class="st1" d="M100,79.1L100,79.1c0.3,0.4,0.6,0.7,0.9,1.1l0,0c1,1.2,2,2.3,3,3.5l4.6-5.4c-1.3-1.5-2.6-3-3.8-4.4L100,79.1z
+			"/>
+		<path class="st1" d="M158.3,104.7c-6,0-11,4.8-11.3,10.7c1.7,0.4,2.9,1.9,2.9,3.7c0,1.1-0.5,2.1-1.2,2.8l0,0
+			c2,3.2,5.6,5.4,9.6,5.4c6.2,0,11.3-5.1,11.3-11.3C169.6,109.7,164.5,104.7,158.3,104.7z"/>
+		<path class="st1" d="M59.7,123.2c-1.2,2.1-2.3,4.1-3.3,6.1l7,0.9c1.1-2,2.3-4,3.5-6.1L59.7,123.2L59.7,123.2z"/>
+		<path class="st1" d="M71,117.6c0.4-0.7,0.9-1.4,1.4-2.1l-7.5-0.9c-0.5,0.7-1,1.5-1.4,2.2l0,0L71,117.6L71,117.6z"/>
+		<path class="st1" d="M136.6,116.9c-0.5-0.8-1-1.6-1.5-2.3l-7.5,1c0.5,0.7,1,1.5,1.4,2.2l0,0l0,0L136.6,116.9L136.6,116.9z"/>
+		<path class="st1" d="M133.1,124.1L133.1,124.1c1.2,2.1,2.4,4.1,3.5,6l7-0.9c-1-2-2.1-4-3.3-6L133.1,124.1z"/>
+		<path class="st1" d="M76.6,143.5c-3.7,0-6.6,3-6.6,6.6c0,0.8,0.2,1.5,0.4,2.2l0,0c0.1,0,0.3-0.1,0.4-0.1c1.5,0,2.8,1.3,2.8,2.8
+			c0,0.3-0.1,0.5-0.1,0.8c0,0,0,0-0.1,0c1,0.5,2,0.8,3.2,0.8c3.7,0,6.6-3,6.6-6.6C83.2,146.5,80.3,143.5,76.6,143.5z"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/RH_Atomic-Logo-Text.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/RH_Atomic-Logo-Text.svg
new file mode 100644
index 0000000..79a0cf7
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/RH_Atomic-Logo-Text.svg
@@ -0,0 +1,91 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1"
+	 id="svg4242" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+	 xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 200 199.7"
+	 style="enable-background:new 0 0 200 199.7;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#00B9E4;}
+	.st1{fill:#0088CE;}
+</style>
+<g>
+	<g>
+		<g>
+			<path class="st0" d="M88.1,117.9c-0.4,0.3-0.7,0.6-1,0.8c-2.5,2.5-4.9,4.8-7.1,6.9c1.4,0.8,2.4,2.1,3,3.7c2.7-2.4,5.5-5,8.4-7.9
+				c0.6-0.6,1.1-2.2-0.1-3.3C90.4,117.4,89,117.2,88.1,117.9z"/>
+			<path class="st0" d="M60.3,58.6c0.7,1.1,2.2,1.5,3.3,0.7c1.2-0.8,1-2.4,0.6-2.9C54.5,39.9,50.1,27.2,54,24.2
+				c2.4-1.9,7.6,0.2,14.5,5.3c0.7-2.2,2.3-4,4.3-5c-11.1-8.3-19.9-11.8-24-8.6C43,20.4,47.8,37,59.9,58C60,58.2,60.2,58.4,60.3,58.6
+				z"/>
+			<path class="st0" d="M140.3,104.4c2.9-0.4,5.7-0.8,8.3-1.3l0,0l0,0l0,0c0.7-0.7,1.2-1.7,1.2-2.8c0-1.8-1.3-3.3-2.9-3.7l0,0
+				c-3.2,0.5-6.7,1-10.4,1.4l0,0l0,0c-5.7-9.3-12.7-19.4-20.6-29.5c-2.3-3.2-7.4-9.1-11.3-13.6l0.1-0.1C124,33.4,141,20.3,146,24.1
+				c3.8,3-0.5,15.6-10.3,32.2c-0.3,0.5-0.6,2.1,0.6,2.9c1.2,0.8,2.7,0.4,3.3-0.7c0.1-0.2,0.3-0.4,0.4-0.6c12-21,16.9-37.6,11.1-42.1
+				c-7-5.5-27.8,8.6-50.3,32.9c0,0-0.3,0.4-1,1.1c-0.6-0.6-1-1.1-1-1.1c-4.9-5.2-9.7-10.1-14.2-14.2l0,0c-0.1-0.1-0.1-0.1-0.1-0.1
+				c-0.2-0.1-0.4-0.1-0.6-0.1c-2.1,0-3.8,1.7-3.8,3.8c0,0.5,0.1,1.1,0.3,1.5l0,0c4.7,4.4,9.6,9.5,14.8,15.2l0.1,0.1
+				c-4,4.5-9,10.4-11.3,13.6C76.1,78.6,69.1,88.6,63.4,98c-21.9-2.5-36.6-7.1-36.5-12.4c0-5.4,15.6-10.1,38.4-12.4
+				c0.3-0.1,0.4-0.1,0.7-0.1c1.2-0.2,1.9-1.4,1.8-2.3c0-1.2-0.9-2.4-2.6-2.4c-28.3,3.2-48,10.2-48,18.3
+				c-0.1,7.6,17.2,14.2,42.6,17.7c-11.9,20.9-16.7,37.3-10.9,41.8c4.2,3.3,13.3-0.4,24.7-9.1l0,0c0,0,0,0,0.1,0
+				c0.1-0.3,0.1-0.5,0.1-0.8c0-1.5-1.3-2.8-2.8-2.8c-0.2,0-0.3,0-0.4,0.1l0,0l0,0c-7.1,5.2-12.4,7.5-14.8,5.6
+				c-4-3.1,0.8-16.4,11.4-33.8c9.8,1.1,20.7,1.6,32.1,1.7l0,0c0.2,0,0.3,0,0.5,0l0,0l0,0c0.1,0,0.3,0,0.4,0l0,0h0.1l0,0h0.1
+				c0.1,0,0.3,0,0.4,0c0.2,0,0.3,0,0.5,0l0,0c11.4-0.1,22.3-0.6,32.1-1.7c10.5,17.5,15.4,30.8,11.4,33.8
+				c-4.1,3.2-16.5-5.2-31.5-20.4c-0.3-0.3-0.6-0.6-1-0.8c-1-0.7-2.3-0.5-3,0.2c-1.2,1.2-0.8,2.7-0.1,3.3
+				c19.4,19.2,36.3,29.6,42.5,24.8C157,141.7,152.2,125.3,140.3,104.4L140.3,104.4z M100.3,100c-0.1,0-0.2,0-0.3,0s-0.2,0-0.3,0
+				c-10.2,0-20-0.4-28.7-1.2c5.2-8.2,11.5-16.9,18.6-25.9c3.2-4,6.4-7.9,9.5-11.5l0,0c0.3-0.4,0.6-0.7,0.9-1.1
+				c0.3,0.4,0.6,0.7,0.9,1.1l0,0c3.1,3.7,6.3,7.5,9.5,11.5c7.1,9,13.3,17.8,18.6,25.9l0,0C120.2,99.6,110.5,100,100.3,100z"/>
+			<path class="st0" d="M134.9,68.4c-1.7-0.1-2.6,1.2-2.6,2.4c-0.1,1,0.6,2.1,1.8,2.3c0.2,0.1,0.4,0.1,0.7,0.1
+				c22.8,2.4,38.3,7,38.4,12.4c0,1.9-1.9,3.7-5.4,5.4c1.1,1.7,1.8,3.9,1.8,6.1c0,0.2,0,0.4-0.1,0.5c8.5-3.2,13.3-7,13.3-11
+				C182.9,78.5,163.2,71.6,134.9,68.4z"/>
+		</g>
+		<g>
+			<path class="st1" d="M76.6,23.6c-4.7,0-8.6,3.8-8.6,8.6c0,4.7,3.8,8.6,8.6,8.6c1.4,0,2.8-0.4,3.9-1c-0.2-0.5-0.3-1-0.3-1.5
+				c0-2.1,1.7-3.8,3.8-3.8c0.2,0,0.4,0,0.6,0.1c0.1,0.1,0.1,0.1,0.1,0.1c0.2-0.8,0.4-1.6,0.4-2.4C85.2,27.4,81.4,23.6,76.6,23.6z"/>
+			<path class="st1" d="M99.1,48.8c-0.4-0.4-0.7-0.8-1.2-1.2l-4.4,5.3c0.6,0.7,1.3,1.4,1.9,2.1l0.1,0.1c1.9-2.2,3.6-4.1,4.6-5.2
+				C99.4,49.2,99.1,48.8,99.1,48.8z"/>
+			<path class="st1" d="M100,60.3L100,60.3c0.3,0.4,0.6,0.7,0.9,1.1l0,0c1,1.2,2,2.3,3,3.5l4.6-5.4c-1.3-1.5-2.6-3-3.8-4.4L100,60.3
+				z"/>
+			<path class="st1" d="M158.3,85.9c-6,0-11,4.8-11.3,10.7c1.7,0.4,2.9,1.9,2.9,3.7c0,1.1-0.5,2.1-1.2,2.8l0,0
+				c2,3.2,5.6,5.4,9.6,5.4c6.2,0,11.3-5.1,11.3-11.3C169.6,90.9,164.5,85.9,158.3,85.9z"/>
+			<path class="st1" d="M59.7,104.4c-1.2,2.1-2.3,4.1-3.3,6.1l7,0.9c1.1-2,2.3-4,3.5-6.1L59.7,104.4L59.7,104.4z"/>
+			<path class="st1" d="M71,98.8c0.4-0.7,0.9-1.4,1.4-2.1l-7.5-0.9c-0.5,0.7-1,1.5-1.4,2.2l0,0L71,98.8L71,98.8z"/>
+			<path class="st1" d="M136.6,98.1c-0.5-0.8-1-1.6-1.5-2.3l-7.5,1c0.5,0.7,1,1.5,1.4,2.2l0,0l0,0L136.6,98.1L136.6,98.1z"/>
+			<path class="st1" d="M133.1,105.3L133.1,105.3c1.2,2.1,2.4,4.1,3.5,6l7-0.9c-1-2-2.1-4-3.3-6L133.1,105.3z"/>
+			<path class="st1" d="M76.6,124.7c-3.7,0-6.6,3-6.6,6.6c0,0.8,0.2,1.5,0.4,2.2l0,0c0.1,0,0.3-0.1,0.4-0.1c1.5,0,2.8,1.3,2.8,2.8
+				c0,0.3-0.1,0.5-0.1,0.8c0,0,0,0-0.1,0c1,0.5,2,0.8,3.2,0.8c3.7,0,6.6-3,6.6-6.6C83.2,127.7,80.3,124.7,76.6,124.7z"/>
+		</g>
+	</g>
+	<g>
+		<path class="st0" d="M34.2,184.7l-2.1-4.2h-2.3v4.2h-2.3v-11.6h5.4c0.5,0,1.1,0.1,1.5,0.2c0.5,0.2,0.9,0.4,1.3,0.7
+			c0.4,0.3,0.6,0.7,0.8,1.2c0.2,0.5,0.3,1,0.3,1.6c0,0.9-0.2,1.6-0.6,2.2c-0.4,0.6-1,1-1.7,1.3l2.2,4.5H34.2z M34.1,175.7
+			c-0.3-0.2-0.7-0.3-1.2-0.3h-3.1v3h3.1c1.1,0,1.7-0.5,1.7-1.5C34.5,176.3,34.4,175.9,34.1,175.7z"/>
+		<path class="st0" d="M39.8,184.7v-11.6h8.1v2.3h-5.8v2h3.3v2.3h-3.3v2.8h6v2.3L39.8,184.7L39.8,184.7z"/>
+		<path class="st0" d="M60.1,181.5c-0.3,0.7-0.8,1.3-1.3,1.8c-0.6,0.5-1.2,0.8-1.9,1.1c-0.7,0.2-1.4,0.3-2.2,0.3h-3.5v-11.6h3.7
+			c0.8,0,1.6,0.1,2.3,0.3c0.7,0.2,1.3,0.5,1.9,1c0.5,0.5,0.9,1.1,1.2,1.8s0.4,1.6,0.4,2.7C60.6,179.9,60.4,180.8,60.1,181.5z
+			 M57.4,176.2c-0.5-0.6-1.4-0.9-2.6-0.9h-1.2v7.1h1.2c0.6,0,1.2-0.1,1.6-0.3c0.5-0.2,0.8-0.4,1.1-0.7c0.3-0.3,0.5-0.7,0.6-1.1
+			c0.2-0.4,0.2-0.9,0.2-1.4C58.2,177.7,57.9,176.9,57.4,176.2z"/>
+		<path class="st0" d="M75.8,184.7v-4.9h-4.8v4.9h-2.3v-11.6h2.3v4.4h4.8v-4.4h2.3v11.6H75.8z"/>
+		<path class="st0" d="M89.4,184.7l-0.9-2.6h-4.2l-0.9,2.6h-2.5l4.4-11.6h2.3l4.4,11.6H89.4z M87,177.8c-0.1-0.3-0.2-0.7-0.3-1
+			c-0.1-0.3-0.2-0.6-0.3-0.8c-0.1,0.2-0.2,0.5-0.3,0.8s-0.2,0.6-0.3,1l-0.7,2.1h2.6L87,177.8z"/>
+		<path class="st0" d="M97.9,175.4v9.4h-2.3v-9.4h-3.3v-2.3h9v2.3H97.9z"/>
+		<path class="st0" d="M117.1,184.7l-0.9-2.6h-4.2l-0.9,2.6h-2.5l4.4-11.6h2.3l4.4,11.6H117.1z M114.6,177.8c-0.1-0.3-0.2-0.7-0.3-1
+			c-0.1-0.3-0.2-0.6-0.3-0.8c-0.1,0.2-0.2,0.5-0.3,0.8s-0.2,0.6-0.3,1l-0.7,2.1h2.6L114.6,177.8z"/>
+		<path class="st0" d="M125.6,175.4v9.4h-2.3v-9.4H120v-2.3h9v2.3H125.6z"/>
+		<path class="st0" d="M140.4,181.4c-0.3,0.7-0.6,1.4-1.1,1.9s-1,0.9-1.6,1.2c-0.6,0.3-1.3,0.4-2.1,0.4s-1.5-0.2-2.1-0.4
+			c-0.6-0.3-1.2-0.7-1.6-1.2c-0.4-0.5-0.8-1.2-1.1-1.9c-0.3-0.7-0.4-1.6-0.4-2.5c0-1,0.1-1.8,0.4-2.5c0.3-0.7,0.6-1.4,1.1-1.9
+			c0.5-0.5,1-0.9,1.6-1.2c0.6-0.3,1.3-0.4,2.1-0.4c0.7,0,1.4,0.2,2.1,0.4s1.2,0.7,1.6,1.2c0.4,0.5,0.8,1.2,1.1,1.9
+			c0.3,0.7,0.4,1.6,0.4,2.5C140.8,179.8,140.6,180.7,140.4,181.4z M137.6,176.2c-0.5-0.6-1.2-1-2-1c-0.8,0-1.5,0.3-2,1
+			c-0.5,0.6-0.7,1.5-0.7,2.7c0,1.2,0.3,2.1,0.7,2.8c0.5,0.6,1.2,1,2,1c0.8,0,1.5-0.3,2-1c0.5-0.6,0.7-1.5,0.7-2.7
+			C138.4,177.8,138.1,176.8,137.6,176.2z"/>
+		<path class="st0" d="M152.2,184.7v-4.3c0-0.2,0-0.4,0-0.6c0-0.3,0-0.5,0-0.7s0-0.5,0-0.7c0-0.2,0-0.4,0-0.5
+			c-0.1,0.2-0.2,0.5-0.4,0.9c-0.2,0.4-0.3,0.7-0.5,1.1l-2.4,5.2l-2.3-5.2c-0.2-0.3-0.3-0.7-0.5-1.1c-0.2-0.4-0.3-0.6-0.4-0.9
+			c0,0.1,0,0.3,0,0.5s0,0.5,0,0.7s0,0.5,0,0.7c0,0.3,0,0.4,0,0.6v4.3h-2.3v-11.6h2.2l2.4,5.3c0.1,0.2,0.2,0.3,0.2,0.5
+			s0.2,0.4,0.2,0.5c0.1,0.2,0.2,0.3,0.2,0.5c0.1,0.2,0.1,0.3,0.2,0.4c0.1-0.2,0.2-0.5,0.3-0.9c0.2-0.4,0.3-0.7,0.5-1.1l2.3-5.3h2.3
+			v11.6L152.2,184.7L152.2,184.7z"/>
+		<path class="st0" d="M158.1,184.7v-11.6h2.3v11.6H158.1z"/>
+		<path class="st0" d="M170.8,176.5c-0.2-0.4-0.5-0.7-0.8-1c-0.3-0.2-0.8-0.3-1.3-0.3c-0.4,0-0.8,0.1-1.2,0.3
+			c-0.4,0.2-0.6,0.4-0.8,0.7c-0.2,0.3-0.4,0.7-0.5,1.2c-0.1,0.5-0.2,1-0.2,1.5s0.1,1,0.2,1.4s0.3,0.8,0.5,1.2
+			c0.2,0.3,0.5,0.6,0.8,0.8s0.7,0.3,1.2,0.3c0.5,0,1-0.1,1.3-0.4c0.3-0.2,0.7-0.6,1-1.1l2,1.2c-0.4,0.8-1,1.5-1.6,2
+			c-0.7,0.5-1.6,0.7-2.6,0.7c-0.7,0-1.5-0.2-2.1-0.4c-0.6-0.3-1.2-0.7-1.6-1.2c-0.5-0.5-0.8-1.2-1.1-1.9c-0.3-0.7-0.4-1.6-0.4-2.5
+			c0-0.9,0.1-1.7,0.4-2.4c0.3-0.7,0.6-1.4,1.1-1.9c0.5-0.5,1-1,1.6-1.2c0.6-0.3,1.3-0.4,2.1-0.4c0.5,0,1.1,0.1,1.5,0.2
+			c0.4,0.1,0.8,0.3,1.2,0.5s0.6,0.5,0.9,0.8c0.3,0.3,0.5,0.7,0.7,1.1L170.8,176.5z"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/skype-logo.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/skype-logo.svg
new file mode 100644
index 0000000..84f9190
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/skype-logo.svg
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="20px" viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#00AFF0;}
+	.st1{fill:#FFFFFF;}
+</style>
+<g>
+	<path class="st0" d="M19.4,12.1c0.1-0.7,0.2-1.3,0.2-2c0-5.2-4.3-9.4-9.5-9.4c-0.6,0-1.1,0-1.6,0.1C7.6,0.3,6.6,0,5.5,0
+		C2.5,0,0,2.4,0,5.5c0,1,0.3,1.9,0.8,2.8c-0.1,0.6-0.2,1.2-0.2,1.9c0,5.2,4.3,9.3,9.5,9.3c0.6,0,1.2-0.1,1.7-0.2
+		c0.8,0.4,1.7,0.8,2.6,0.8c3.1,0,5.5-2.4,5.5-5.5C20,13.7,19.8,12.9,19.4,12.1z"/>
+	<path class="st1" d="M14.5,13.9c-0.4,0.5-0.9,0.9-1.6,1.2c-0.7,0.3-1.5,0.4-2.5,0.4c-1.2,0-2.1-0.2-2.9-0.6c-0.5-0.3-1-0.7-1.3-1.2
+		c-0.3-0.5-0.5-1-0.5-1.4c0-0.3,0.1-0.5,0.3-0.7c0.2-0.2,0.5-0.3,0.8-0.3c0.3,0,0.5,0.1,0.6,0.2c0.2,0.1,0.3,0.4,0.4,0.7
+		c0.2,0.3,0.3,0.6,0.5,0.9c0.2,0.2,0.4,0.4,0.7,0.6c0.3,0.1,0.7,0.2,1.2,0.2c0.7,0,1.3-0.2,1.7-0.5c0.4-0.3,0.7-0.7,0.7-1.1
+		c0-0.4-0.1-0.7-0.4-0.9c-0.2-0.2-0.5-0.4-0.9-0.5c-0.4-0.1-0.9-0.2-1.5-0.4C9,10.5,8.3,10.2,7.7,10c-0.6-0.2-1-0.6-1.4-1
+		C6,8.6,5.8,8.1,5.8,7.4c0-0.6,0.2-1.1,0.5-1.6C6.7,5.4,7.2,5,7.9,4.8c0.7-0.3,1.5-0.4,2.4-0.4c0.7,0,1.4,0.1,1.9,0.2
+		c0.5,0.2,1,0.4,1.3,0.7c0.3,0.3,0.6,0.6,0.8,0.9c0.2,0.3,0.2,0.6,0.2,0.9c0,0.3-0.1,0.5-0.3,0.7C14,8,13.7,8.1,13.4,8.1
+		c-0.3,0-0.5-0.1-0.6-0.2c-0.1-0.1-0.3-0.3-0.5-0.6c-0.2-0.4-0.5-0.7-0.8-1c-0.3-0.2-0.8-0.3-1.4-0.3C9.5,5.9,9,6.1,8.6,6.3
+		C8.3,6.6,8.1,6.9,8.1,7.2c0,0.2,0.1,0.4,0.2,0.6c0.1,0.2,0.3,0.3,0.5,0.4C9,8.3,9.2,8.4,9.5,8.5c0.2,0.1,0.6,0.2,1.1,0.3
+		c0.7,0.1,1.3,0.3,1.8,0.5c0.5,0.2,1,0.4,1.4,0.6c0.4,0.2,0.7,0.6,0.9,0.9c0.2,0.4,0.3,0.8,0.3,1.4C15,12.8,14.8,13.4,14.5,13.9z"/>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner.gif b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner.gif
new file mode 100644
index 0000000..4c9ea91
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner.gif differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-inverse.gif b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-inverse.gif
new file mode 100644
index 0000000..92380fe
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-inverse.gif differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-inverse-lg.gif b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-inverse-lg.gif
new file mode 100644
index 0000000..8327512
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-inverse-lg.gif differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-inverse-sm.gif b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-inverse-sm.gif
new file mode 100644
index 0000000..8cb064e
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-inverse-sm.gif differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-inverse-xs.gif b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-inverse-xs.gif
new file mode 100644
index 0000000..7cf4d6f
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-inverse-xs.gif differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-lg.gif b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-lg.gif
new file mode 100644
index 0000000..0effa66
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-lg.gif differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-sm.gif b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-sm.gif
new file mode 100644
index 0000000..eeaddc2
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-sm.gif differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-xs.gif b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-xs.gif
new file mode 100644
index 0000000..8bfd1bc
Binary files /dev/null and b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/spinner-xs.gif differ
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/stack-exchange-logo.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/stack-exchange-logo.svg
new file mode 100644
index 0000000..3bf0e11
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/stack-exchange-logo.svg
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="25.5px" viewBox="0 0 20 25.5" style="enable-background:new 0 0 20 25.5;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#CE6200;}
+	.st1{fill:#969696;}
+</style>
+<g>
+	<g>
+		<polygon class="st0" points="13.4,17.2 3.4,16.3 3.2,18.4 13.3,19.3 		"/>
+		<polygon class="st0" points="13.2,19.9 3.1,19.9 3.1,22.1 13.2,22.1 		"/>
+		<polygon class="st0" points="15.4,11.9 6.7,6.8 5.6,8.6 14.3,13.8 		"/>
+		<polygon class="st0" points="14.1,14.4 4.4,11.8 3.8,13.8 13.6,16.4 		"/>
+		<polygon class="st1" points="14.9,23.8 1.7,23.8 1.7,15 0,15 0,25.5 0,25.5 0.5,25.5 16.6,25.5 16.6,25.5 16.6,25 16.6,15 
+			14.9,15 		"/>
+		<polygon class="st0" points="18.3,0 16.2,0.4 17.9,10.3 20,9.9 		"/>
+		<polygon class="st0" points="10.1,3.3 15.7,11.6 17.5,10.4 11.8,2.1 		"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/twitter-logo.svg b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/twitter-logo.svg
new file mode 100644
index 0000000..fe38b13
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/dist/img/twitter-logo.svg
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+	 width="20px" height="20px" viewBox="0 0 20 20" style="enable-background:new 0 0 20 20;" xml:space="preserve">
+<style type="text/css">
+	.st0{fill:#55ACEE;}
+	.st1{fill:#F1F2F2;}
+</style>
+<g>
+	<circle class="st0" cx="10" cy="10" r="10"/>
+	<g>
+		<path class="st1" d="M16.1,7.2c-0.4,0.2-0.9,0.3-1.4,0.4c0.5-0.3,0.9-0.8,1.1-1.3c-0.5,0.3-1,0.5-1.5,0.6
+			c-0.4-0.5-1.1-0.8-1.7-0.8c-1.3,0-2.4,1.1-2.4,2.4c0,0.2,0,0.4,0.1,0.5c-2-0.1-3.7-1.1-4.9-2.5C5.1,6.9,5,7.3,5,7.7
+			c0,0.8,0.4,1.6,1.1,2c-0.4,0-0.8-0.1-1.1-0.3c0,0,0,0,0,0c0,1.2,0.8,2.1,1.9,2.3c-0.2,0.1-0.4,0.1-0.6,0.1c-0.2,0-0.3,0-0.4,0
+			C6.1,12.8,7,13.5,8,13.5c-0.8,0.6-1.8,1-3,1c-0.2,0-0.4,0-0.6,0c1.1,0.7,2.3,1.1,3.7,1.1c4.4,0,6.8-3.6,6.8-6.8c0-0.1,0-0.2,0-0.3
+			C15.4,8.1,15.8,7.7,16.1,7.2L16.1,7.2z"/>
+	</g>
+</g>
+</svg>
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/Gemfile b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/Gemfile
new file mode 100644
index 0000000..7896dde
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/Gemfile
@@ -0,0 +1,5 @@
+# If you do not have OpenSSL installed, update
+# the following line to use "http://" instead
+source 'https://rubygems.org'
+
+gem 'jekyll'
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/Gemfile.lock b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/Gemfile.lock
new file mode 100644
index 0000000..7f56e6f
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/Gemfile.lock
@@ -0,0 +1,45 @@
+GEM
+  remote: https://rubygems.org/
+  specs:
+    addressable (2.4.0)
+    colorator (1.1.0)
+    ffi (1.9.14)
+    forwardable-extended (2.6.0)
+    jekyll (3.3.0)
+      addressable (~> 2.4)
+      colorator (~> 1.0)
+      jekyll-sass-converter (~> 1.0)
+      jekyll-watch (~> 1.1)
+      kramdown (~> 1.3)
+      liquid (~> 3.0)
+      mercenary (~> 0.3.3)
+      pathutil (~> 0.9)
+      rouge (~> 1.7)
+      safe_yaml (~> 1.0)
+    jekyll-sass-converter (1.4.0)
+      sass (~> 3.4)
+    jekyll-watch (1.5.0)
+      listen (~> 3.0, < 3.1)
+    kramdown (1.12.0)
+    liquid (3.0.6)
+    listen (3.0.8)
+      rb-fsevent (~> 0.9, >= 0.9.4)
+      rb-inotify (~> 0.9, >= 0.9.7)
+    mercenary (0.3.6)
+    pathutil (0.14.0)
+      forwardable-extended (~> 2.6)
+    rb-fsevent (0.9.8)
+    rb-inotify (0.9.7)
+      ffi (>= 0.5.0)
+    rouge (1.11.1)
+    safe_yaml (1.0.4)
+    sass (3.4.22)
+
+PLATFORMS
+  ruby
+
+DEPENDENCIES
+  jekyll
+
+BUNDLED WITH
+   1.13.3
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/LICENSE.txt b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/LICENSE.txt
new file mode 100644
index 0000000..cc698cd
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/LICENSE.txt
@@ -0,0 +1,205 @@
+Modifications to Bootstrap are copyright 2013 Red Hat, Inc. and licensed
+under the Apache License 2.0.
+
+
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "{}"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright {yyyy} {name of copyright owner}
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
diff --git a/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/QUICKSTART.md b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/QUICKSTART.md
new file mode 100644
index 0000000..64fc099
--- /dev/null
+++ b/themes/src/main/resources/theme/keycloak/common/resources/node_modules/rcue/QUICKSTART.md
@@ -0,0 +1,100 @@
+# Using Red Hat Common User Experience (RCUE) - Guide to move from PatternFly to RCUE
+
+RCUE is based on [PatternFly](https://www.patternfly.org/), which is based on [Bootstrap v3](http://getbootstrap.com/).  Think of RCUE as a "skinned" version of PatternFly. **RCUE is meant to be used as a replacement for PatternFly**, so please don't include the PatternFly (or Bootstrap) CSS if you are including the RCUE CSS in your project.
+
+This guide will walk the steps to go from a PatternFly to RCUE styles:
+
+## 1. Installation
+
+### Get RCUE
+
+RCUE can be installed and managed through [NPM](https://www.npmjs.com/). To do so, either add `rcue` as a dependency in your `package.json` or run the following:
+
+```
+npm install rcue --save
+```
+
+### What's Included
+
+Within the `node_module/rcue/dist` folder you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:
+
+```
+rcue/
+├── dist/
+│   ├── css/
+│   │   │── rcue.min.css (* need to include)
+│   │   │── rcue-additions.min.css (* need to include)
+│   └── img/
+│   │   │── branding materials and loading indicators
+├── less/
+│   ├── variables, mixin, and component Less files (may need to include if you want to customize the already built CSS)
+└── tests/
+    ├── example markup source files
+```
+
+RCUE provides compiled CSS (`rcue.*`), as well as compiled and minified CSS (`rcue.min.*`). CSS [source maps](https://developer.chrome.com/devtools/docs/css-preprocessors) (`rcue.*.map`) are available for use with certain browsers' developer tools.
+
+## 2. Replace PatternFly with RCUE
+Look for the PatternFly folder on your project and replace it with the RCUE folder you've just downloaded.
+
+This swap will break your project paths, but don't worry! it's an easy fix we will discuss later on.
+
+## 3. Using RCUE In Your Application
+
+Your last task is to change the paths of your project and point them to the new RCUE folder.
+
+1. Add the following CSS includes to your HTML file(s), adjusting path where needed:
+
+        <!-- RCUE Styles -->
+        <!-- Note: No other CSS files are needed regardless of what other JS packages you decide to pull in -->
+        <link rel="stylesheet" href="PATH-TO/node_modules/rcue/dist/css/rcue.min.css" />
+        <link rel="stylesheet" href="PATH-TO/node_modules/rcue/dist/css/rcue-additions.min.css" />
+
+2. Add the following script includes to your HTML file(s), adjusting where necessary to pull in only what you need:
+
+        <!-- jQuery -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/jquery/dist/jquery.js"></script>
+
+        <!-- Bootstrap JS -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/bootstrap/dist/js/bootstrap.js"></script>
+
+        <!-- C3, D3 - Charting Libraries -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/c3/c3.min.js"></script>
+        <script src="PATH-TO/node_modules/rcue/node_modules/d3/d3.min.js"></script>
+
+        <!-- Datatables, jQuery Grid Component -->
+        <!-- Note: jquery.dataTables.js must occur in the html source before patternfly*.js.-->
+        <script src="PATH-TO/node_modules/rcue/node_modules/datatables/media/js/jquery.dataTables.js"></script>
+        <script src="PATH-TO/node_modules/rcue/node_modules/drmonty-datatables-colvis/js/dataTables.colVis.js"></script>
+        <script src="PATH-TO/node_modules/rcue/node_modules/datatables.net-colreorder/js/dataTables.colReorder.js"></script>
+
+        <!-- Patternfly Custom Componets -  Sidebar, Popovers and Datatables Customizations -->
+        <!-- Note: jquery.dataTables.js must occur in the html source before patternfly*.js.-->
+        <script src="PATH-TO/node_modules/rcue/dist/js/patternfly.js"></script>
+
+        <!-- Bootstrap Date Picker -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/bootstrap-datepicker/dist/js/bootstrap-datepicker.min.js"></script>
+
+        <!-- Bootstrap Combobox -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/patternfly-bootstrap-combobox/js/bootstrap-combobox.js"></script>
+
+        <!-- Bootstrap Select -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/bootstrap-select/dist/js/bootstrap-select.min.js"></script>
+
+        <!-- Bootstrap Tree View -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/patternfly-bootstrap-treeview/dist/bootstrap-treeview.min.js"></script>
+
+        <!-- Google Code Prettify - Syntax highlighting of code snippets -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/google-code-prettify/bin/prettify.min.js"></script>
+
+        <!-- MatchHeight - Used to make sure dashboard cards are the same height -->
+        <script src="PATH-TO/node_modules/rcue/node_modules/jquery-match-height/dist/jquery.matchHeight.js"></script>
+
+        <!-- Angular Application? You May Want to Consider Pulling Angular-Patternfly And Angular-UI Bootstrap instead of bootstrap.js -->
+        <!-- See https://github.com/patternfly/angular-patternfly for more information -->
+
+## 6. Enjoy
+
+You are done :smile:
+
+If you have any question please contact [the UXD team](mailto:uxd-team@redhat.com).
diff --git a/themes/src/main/resources/theme/keycloak/login/resources/css/login.css b/themes/src/main/resources/theme/keycloak/login/resources/css/login.css
index 3c1a31a..6813ecf 100644
--- a/themes/src/main/resources/theme/keycloak/login/resources/css/login.css
+++ b/themes/src/main/resources/theme/keycloak/login/resources/css/login.css
@@ -1,5 +1,5 @@
 .login-pf body {
-    background: #0f0f0f url("../img/keycloak-bg.png") top left no-repeat;
+    background-image: url("../img/keycloak-bg.png");
     background-size: cover;
 }
 
@@ -14,10 +14,11 @@
     position: absolute;
     background-color: #fff;
     list-style: none;
-    right: 20px;
-    top: 30px;
-    width: 200px;
-    padding: 2px;
+    right: 0;
+    top: 20px;
+    min-width: 100px;
+    padding: 2px 0;
+    border: solid 1px #bbb;
 }
 
 #kc-locale:hover ul {
@@ -27,9 +28,8 @@
 
 #kc-locale ul li a {
     display: block;
-    padding: 1px 11px;
+    padding: 5px 14px;
     color: #000 !important;
-    border: 1px solid #fff;
     text-decoration: none;
     line-height: 20px;
 }
@@ -37,11 +37,13 @@
 #kc-locale ul li a:hover {
     color: #4d5258;
     background-color: #d4edfa;
-    border-color: #b3d3e7;
 }
 
 #kc-locale-dropdown a {
-    color: #fff;
+    color: #4d5258;
+    background: 0 0;
+    padding: 0 15px 0 0;
+    font-weight: 300;
 }
 
 #kc-locale-dropdown a:hover {
@@ -50,12 +52,12 @@
 
 a#kc-current-locale-link {
     display: block;
-    padding: 5px;
+    padding: 0 5px;
 }
 
-a#kc-current-locale-link:hover {
+/* a#kc-current-locale-link:hover {
     background-color: rgba(0,0,0,0.2);
-}
+} */
 
 a#kc-current-locale-link::after {
     content: "\2c5";
@@ -75,18 +77,19 @@ a#kc-current-locale-link::after {
 }
 
 #kc-logo-wrapper {
-    background-image: url("../img/keycloak-logo.png");
+    background-image: url(../img/keycloak-logo-2.png);
     background-repeat: no-repeat;
-
-    height: 57px;
-    width: 125px;
+    height: 63px;
+    width: 300px;
+    margin: 62px auto 0;
 }
 
 div.kc-logo-text {
-    background-image: url("../img/keycloak-logo-text.png");
+    background-image: url(../img/keycloak-logo-text.png);
     background-repeat: no-repeat;
-    width: 250px;
-    height: 38px;
+    height: 63px;
+    width: 300px;
+    margin: 0 auto;
 }
 
 div.kc-logo-text span {
@@ -94,26 +97,27 @@ div.kc-logo-text span {
 }
 
 #kc-header {
-    color: #fff;
+    color: #ededed;
     overflow: visible;
-    padding-left: 80px;
     white-space: nowrap;
 }
 
 #kc-header-wrapper {
-    font-size: 26px;
+    font-size: 29px;
     text-transform: uppercase;
+    letter-spacing: 3px;
     line-height: 1.2em;
-    margin-bottom: 15px;
+    padding: 62px 10px 20px;
+    white-space: normal;
 }
 
 #kc-content {
-    position: relative;
+    width: 100%;
 }
 
-#kc-content-wrapper {
+/* #kc-content-wrapper {
     overflow-y: hidden;
-}
+} */
 
 #kc-info {
     padding-bottom: 200px;
@@ -128,6 +132,11 @@ div.kc-logo-text span {
     display: block;
 }
 
+#kc-form-options .checkbox {
+    margin-top: 0;
+    color: #72767b;
+}
+
 #kc-terms-text {
     margin-bottom: 20px;
 }
@@ -140,15 +149,11 @@ div.kc-logo-text span {
 
 ol#kc-totp-settings {
     margin: 0;
-    padding: 0;
+    padding-left: 20px;
 }
 
-ol#kc-totp-settings li {
-    margin-top: 1em;
-}
-
-ol#kc-totp-settings li:first-of-type {
-    margin-top: 0;
+ul#kc-totp-supported-apps {
+  margin-bottom: 10px;
 }
 
 #kc-totp-secret-qr-code {
@@ -160,7 +165,7 @@ ol#kc-totp-settings li:first-of-type {
     background-color: #fff;
     color: #333333;
     font-size: 16px;
-    padding: 10px;
+    padding: 10px 0;
 }
 
 /* OAuth */
@@ -178,7 +183,7 @@ ol#kc-totp-settings li:first-of-type {
 #kc-oauth ul li {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     font-size: 12px;
-    padding: 10px 30px;
+    padding: 10px 0;
 }
 
 #kc-oauth ul li:first-of-type {
@@ -200,24 +205,38 @@ ol#kc-totp-settings li:first-of-type {
 
 #kc-social-providers ul {
     padding: 0;
-    margin: 0;
 }
 
 #kc-social-providers li {
     display: block;
-    margin-top: 5px;
 }
 
 #kc-social-providers li:first-of-type {
     margin-top: 0;
 }
 
-.zocial {
-    width: 150px;
+.zocial,
+a.zocial  {
+    width: 100%;
+    font-weight: normal;
+    font-size: 14px;
+    text-shadow: none;
+    border: 0;
+    background: #f5f5f5;
+    color: #72767b;
+    border-radius: 0;
+    white-space: normal;
+}
+.zocial:before {
+  border-right: 0;
+  margin-right: 0;
+}
+.zocial span:before {
+    padding: 7px 10px;
+    font-size: 14px;
 }
-
 .zocial:hover {
-    color: #fff !important;
+    background: #ededed !important;
 }
 
 .zocial.facebook,
@@ -228,32 +247,16 @@ ol#kc-totp-settings li:first-of-type {
 .zocial.linkedin,
 .zocial.twitter {
     background-image: none;
-    border-radius: 2px;
-
-    font-family: "Open Sans", sans-serif;
-    font-weight: normal;
+    border: 0;
 
     box-shadow: none;
     text-shadow: none;
 }
 
-.zocial.google {
-    background-color: #dd4b39 !important;
-}
-
-.zocial.facebook:hover,
-.zocial.github:hover,
-.zocial.google:hover,
-.zocial.microsoft:hover,
-.zocial.stackoverflow:hover,
-.zocial.linkedin:hover,
-.zocial.twitter:hover {
-    background-image: linear-gradient(rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%) !important;
-}
-
 /* Copy of zocial windows classes to be used for microsoft's social provider button */
-.zocial.microsoft {background-color: #0052a4; color: #fff;}
-.zocial.microsoft:before { content: "\f15d"; }
+.zocial.microsoft:before{ content: "\f15d"; }
+.zocial.stackoverflow:before{ color: inherit; }
+
 
 @media (min-width: 768px) {
     #kc-container-wrapper {
@@ -261,20 +264,12 @@ ol#kc-totp-settings li:first-of-type {
         width: 100%;
     }
 
-    #kc-logo-wrapper {
-        position: absolute;
-        top: 50px;
-        right: 50px;
-    }
-
     .login-pf .container {
         padding-right: 80px;
     }
 
     #kc-locale {
         position: relative;
-        width: 200px;
-        left: -230px;
         text-align: right;
         z-index: 9999;
     }
@@ -282,17 +277,30 @@ ol#kc-totp-settings li:first-of-type {
 
 @media (max-width: 767px) {
 
-    #kc-logo-wrapper {
-        background-position: center;
-        width: 100%;
-        margin: 20px 0;
+    .login-pf body {
+      background: white;
     }
 
     #kc-header {
         padding-left: 15px;
         padding-right: 15px;
         float: none;
-        text-align: center;
+        text-align: left;
+    }
+
+    #kc-header-wrapper {
+      font-size: 16px;
+      font-weight: bold;
+      padding: 20px 60px 0 0;
+      color: #72767b;
+      letter-spacing: 0;
+    }
+
+    div.kc-logo-text {
+        margin: 0;
+        width: 150px;
+        height: 32px;
+        background-size: 100%;
     }
 
     #kc-form {
@@ -308,7 +316,7 @@ ol#kc-totp-settings li:first-of-type {
     }
 
     #kc-social-providers li {
-        display: inline-block;
+        display: block;
         margin-right: 5px;
     }
 
@@ -320,11 +328,19 @@ ol#kc-totp-settings li:first-of-type {
     #kc-locale {
         position: absolute;
         width: 200px;
-        top: 10px;
-        right: 0px;
+        top: 20px;
+        right: 20px;
         text-align: right;
         z-index: 9999;
     }
+
+    #kc-logo-wrapper {
+        background-size: 100px 21px;
+        height: 21px;
+        width: 100px;
+        margin: 20px 0 0 20px;
+    }
+
 }
 
 @media (min-height: 646px) {
@@ -339,3 +355,87 @@ ol#kc-totp-settings li:first-of-type {
         top: 20%;
     }
 }
+
+.card-pf form.form-actions .btn {
+    float: right;
+    margin-left: 10px;
+}
+
+#kc-form-buttons {
+  margin-top: 40px;
+}
+
+.login-pf-page .login-pf-brand {
+  margin-top: 20px;
+  max-width: 360px;
+  width: 40%;
+}
+
+.card-pf {
+  background: #fff;
+  margin: 0 auto;
+  padding: 0 20px;
+  max-width: 500px;
+  border-top: 0;
+  box-shadow: 0 0 0;
+}
+
+/*tablet*/
+@media (max-width: 840px) {
+    .login-pf-page .card-pf{
+      max-width: none;
+      margin-left: 20px;
+      margin-right: 20px;
+      padding: 20px 20px 30px 20px;
+    }
+}
+@media (max-width: 767px) {
+    .login-pf-page .card-pf{
+      max-width: none;
+      margin-left: 0;
+      margin-right: 0;
+      padding-top: 0;
+    }
+    .card-pf.login-pf-accounts{
+      max-width: none;
+    }
+}
+
+.login-pf-page .login-pf-signup {
+  font-size: 15px;
+  color: #72767b;
+}
+#kc-content-wrapper .row {
+  margin-left: 0;
+  margin-right: 0;
+}
+
+@media (min-width: 768px) {
+  .login-pf-page .login-pf-social-section:first-of-type {
+    padding-right: 39px;
+    border-right: 1px solid #d1d1d1;
+    margin-right: -1px;
+  }
+  .login-pf-page .login-pf-social-section:last-of-type {
+    padding-left: 40px;
+  }
+  .login-pf-page .login-pf-social-section .login-pf-social-link:last-of-type {
+    margin-bottom: 0;
+  }
+}
+
+.login-pf-page .login-pf-social-link {
+  margin-bottom: 25px;
+}
+.login-pf-page .login-pf-social-link a {
+  padding: 2px 0;
+}
+
+.login-pf-page.login-pf-page-accounts {
+  margin-left: auto;
+  margin-right: auto;
+}
+
+.login-pf-page .btn-primary {
+    margin-top: 0;
+}
diff --git a/themes/src/main/resources/theme/keycloak/login/resources/img/keycloak-logo-text.png b/themes/src/main/resources/theme/keycloak/login/resources/img/keycloak-logo-text.png
index 11292dd..63f3b9f 100644
Binary files a/themes/src/main/resources/theme/keycloak/login/resources/img/keycloak-logo-text.png and b/themes/src/main/resources/theme/keycloak/login/resources/img/keycloak-logo-text.png differ
diff --git a/themes/src/main/resources/theme/keycloak/login/theme.properties b/themes/src/main/resources/theme/keycloak/login/theme.properties
index f6274f1..ed1c3c1 100644
--- a/themes/src/main/resources/theme/keycloak/login/theme.properties
+++ b/themes/src/main/resources/theme/keycloak/login/theme.properties
@@ -1,22 +1,34 @@
 parent=base
 import=common/keycloak
 
-styles=lib/patternfly/css/patternfly.css lib/zocial/zocial.css css/login.css
+styles=node_modules/patternfly/dist/css/patternfly.css node_modules/patternfly/dist/css/patternfly-additions.css lib/zocial/zocial.css css/login.css
 meta=viewport==width=device-width,initial-scale=1
 
 kcHtmlClass=login-pf
+kcLoginClass=login-pf-page
 
 kcLogoLink=http://www.keycloak.org
 
-kcContentClass=col-sm-12 col-md-12 col-lg-12 container
+kcLogoClass=login-pf-brand
+
+kcContainerClass=container-fluid
+kcContentClass=col-sm-8 col-sm-offset-2 col-md-6 col-md-offset-3 col-lg-6 col-lg-offset-3
 kcContentWrapperClass=row
 
-kcHeaderClass=col-xs-12 col-sm-8 col-md-8 col-lg-7
+kcHeaderClass=login-pf-page-header
 kcFeedbackAreaClass=col-md-12
 kcLocaleClass=col-xs-12 col-sm-1
 kcAlertIconClasserror=pficon pficon-error-circle-o
 
-kcFormAreaClass=col-xs-12 col-sm-8 col-md-8 col-lg-7 login
+kcFormAreaClass=col-sm-10 col-sm-offset-1 col-md-8 col-md-offset-2 col-lg-8 col-lg-offset-2
+kcFormCardClass=card-pf
+kcFormCardAccountClass=login-pf-accounts
+kcFormSocialAccountClass=login-pf-social-section
+kcFormSocialAccountContentClass=col-xs-12 col-sm-6
+kcFormSocialAccountListClass=login-pf-social list-unstyled login-pf-social-all
+kcFormSocialAccountDoubleListClass=login-pf-social-double-col
+kcFormSocialAccountListLinkClass=login-pf-social-link
+kcFormHeaderClass=login-pf-header
 
 kcFeedbackErrorIcon=pficon pficon-error-circle-o
 kcFeedbackWarningIcon=pficon pficon-warning-triangle-o
@@ -28,12 +40,15 @@ kcFormClass=form-horizontal
 kcFormGroupClass=form-group
 kcFormGroupErrorClass=has-error
 kcLabelClass=control-label
-kcLabelWrapperClass=col-xs-12 col-sm-12 col-md-4 col-lg-3
+kcLabelWrapperClass=col-xs-12 col-sm-12 col-md-12 col-lg-12
 kcInputClass=form-control
-kcInputWrapperClass=col-xs-12 col-sm-12 col-md-8 col-lg-9
-kcFormOptionsClass=col-xs-4 col-sm-5 col-md-offset-4 col-md-4 col-lg-offset-3 col-lg-5
-kcFormButtonsClass=col-xs-8 col-sm-7 col-md-4 col-lg-4 submit
+kcInputWrapperClass=col-xs-12 col-sm-12 col-md-12 col-lg-12
+kcFormOptionsClass=col-xs-12 col-sm-12 col-md-12 col-lg-12
+kcFormButtonsClass=col-xs-12 col-sm-12 col-md-12 col-lg-12
+kcFormSettingClass=login-pf-settings
 kcTextareaClass=form-control
+kcSignUpClass=login-pf-signup
+
 
 kcInfoAreaClass=col-xs-12 col-sm-4 col-md-4 col-lg-5 details
 
@@ -45,3 +60,10 @@ kcButtonPrimaryClass=btn-primary
 kcButtonDefaultClass=btn-default
 # classes defining size of the button
 kcButtonLargeClass=btn-lg
+kcButtonBlockClass=btn-block
+
+##### css classes for input
+kcInputLargeClass=input-lg
+
+##### css classes for form accessability
+kcSrOnlyClass=sr-only
diff --git a/themes/src/main/resources-product/theme/rh-sso/login/resources/css/login-rhsso.css b/themes/src/main/resources-product/theme/rh-sso/login/resources/css/login-rhsso.css
new file mode 100644
index 0000000..71f6759
--- /dev/null
+++ b/themes/src/main/resources-product/theme/rh-sso/login/resources/css/login-rhsso.css
@@ -0,0 +1,13 @@
+.login-pf body {
+    background-image: url(../node_modules/rcue/dist/img/bg-login.png);
+    background-size: auto;
+}
+
+@media (max-width: 767px) {
+    .login-pf body {
+      background-image: none;
+    }
+    .login-pf {
+      background-color: white;
+    }
+}
diff --git a/themes/src/main/resources-product/theme/rh-sso/login/theme.properties b/themes/src/main/resources-product/theme/rh-sso/login/theme.properties
index 07b7c69..7e0ac50 100644
--- a/themes/src/main/resources-product/theme/rh-sso/login/theme.properties
+++ b/themes/src/main/resources-product/theme/rh-sso/login/theme.properties
@@ -1,47 +1,4 @@
 parent=keycloak
 import=common/rh-sso
 
-styles=lib/rcue/css/rcue.min.css lib/rcue/css/rcue-additions.min.css lib/zocial/zocial.css css/login.css
-meta=viewport==width=device-width,initial-scale=1
-
-kcHtmlClass=login-pf
-
-kcLogoLink=http://www.redhat.com
-
-kcContentClass=col-sm-12 col-md-12 col-lg-12 container
-kcContentWrapperClass=row
-
-kcHeaderClass=col-xs-12 col-sm-8 col-md-8 col-lg-7
-kcFeedbackAreaClass=col-md-12
-kcLocaleClass=col-xs-12 col-sm-1
-kcAlertIconClasserror=pficon pficon-error-circle-o
-
-kcFormAreaClass=col-xs-12 col-sm-8 col-md-8 col-lg-7 login
-
-kcFeedbackErrorIcon=pficon pficon-error-circle-o
-kcFeedbackWarningIcon=pficon pficon-warning-triangle-o
-kcFeedbackSuccessIcon=pficon pficon-ok
-kcFeedbackInfoIcon=pficon pficon-info
-
-
-kcFormClass=form-horizontal
-kcFormGroupClass=form-group
-kcFormGroupErrorClass=has-error
-kcLabelClass=control-label
-kcLabelWrapperClass=col-xs-12 col-sm-12 col-md-4 col-lg-3
-kcInputClass=form-control
-kcInputWrapperClass=col-xs-12 col-sm-12 col-md-8 col-lg-9
-kcFormOptionsClass=col-xs-4 col-sm-5 col-md-offset-4 col-md-4 col-lg-offset-3 col-lg-5
-kcFormButtonsClass=col-xs-8 col-sm-7 col-md-4 col-lg-4 submit
-kcTextareaClass=form-control
-
-kcInfoAreaClass=col-xs-12 col-sm-4 col-md-4 col-lg-5 details
-
-##### css classes for form buttons
-# main class used for all buttons
-kcButtonClass=btn
-# classes defining priority of the button - primary or default (there is typically only one priority button for the form)
-kcButtonPrimaryClass=btn-primary
-kcButtonDefaultClass=btn-default
-# classes defining size of the button
-kcButtonLargeClass=btn-lg
+styles=node_modules/rcue/dist/css/rcue.min.css node_modules/rcue/dist/css/rcue-additions.min.css lib/zocial/zocial.css css/login.css css/login-rhsso.css
\ No newline at end of file